diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..6313b56c5 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/ZAPDTR/ZAPD/ZFile.cpp b/ZAPDTR/ZAPD/ZFile.cpp index a1d9978a1..46264732c 100644 --- a/ZAPDTR/ZAPD/ZFile.cpp +++ b/ZAPDTR/ZAPD/ZFile.cpp @@ -800,19 +800,22 @@ void ZFile::GenerateSourceHeaderFiles() { OutputFormatter formatter; - formatter.Write("#pragma once\n"); + formatter.Write("#pragma once\n\n"); + formatter.Write("#include \"align_asset_macro.h\"\n"); std::set nameSet; for (ZResource* res : resources) { std::string resSrc = res->GetSourceOutputHeader("", &nameSet); - formatter.Write(resSrc); - - if (resSrc != "") - formatter.Write("\n"); + if (!resSrc.empty()) + { + formatter.Write(resSrc.front() == '\n' ? resSrc : "\n" + resSrc); + formatter.Write(res == resources.back() ? "" : "\n"); + } } for (auto& sym : symbolResources) { + formatter.Write("\n\n"); formatter.Write(sym.second->GetSourceOutputHeader("", &nameSet)); } @@ -823,8 +826,12 @@ void ZFile::GenerateSourceHeaderFiles() if (Globals::Instance->verbosity >= VerbosityLevel::VERBOSITY_INFO) printf("Writing H file: %s\n", headerFilename.c_str()); + std::string output = formatter.GetOutput(); + while (output.back() == '\n') + output.pop_back(); + if (Globals::Instance->fileMode != ZFileMode::ExtractDirectory) - File::WriteAllText(headerFilename, formatter.GetOutput()); + File::WriteAllText(headerFilename, output); else if (Globals::Instance->sourceOutputPath != "") { std::string xmlPath = xmlFilePath.string(); @@ -849,7 +856,7 @@ void ZFile::GenerateSourceHeaderFiles() outPath += "/"; } - File::WriteAllText(outPath, formatter.GetOutput()); + File::WriteAllText(outPath, output); } } diff --git a/ZAPDTR/ZAPD/ZResource.cpp b/ZAPDTR/ZAPD/ZResource.cpp index 9afd7048c..dd7a45810 100644 --- a/ZAPDTR/ZAPD/ZResource.cpp +++ b/ZAPDTR/ZAPD/ZResource.cpp @@ -309,7 +309,7 @@ std::string ZResource::GetSourceOutputHeader([[maybe_unused]] const std::string& { if (Globals::Instance->otrMode && genOTRDef) { - std::string str = "";; + std::string str = ""; std::string nameStr = StringHelper::Strip(StringHelper::Strip(name, "\n"), "\r"); std::string outName = parent->GetOutName(); @@ -344,18 +344,13 @@ std::string ZResource::GetSourceOutputHeader([[maybe_unused]] const std::string& if (prefix != "") { str += StringHelper::Sprintf("#define d%s \"__OTR__%s/%s/%s\"", name.c_str(), prefix.c_str(), outName.c_str(), nameStr.c_str()); - } + } else str += StringHelper::Sprintf("#define d%s \"__OTR__%s/%s\"", name.c_str(), outName.c_str(), nameStr.c_str()); if (nameSet && nameSet->find(name) == nameSet->end()) { - str += StringHelper::Sprintf(R"( -#ifdef _WIN32 -static const __declspec(align(2)) char %s[] = d%s; -#else -static const char %s[] __attribute__((aligned (2))) = d%s; -#endif - )", name.c_str(), name.c_str(), name.c_str(), name.c_str()); + str += StringHelper::Sprintf("\n"); + str += StringHelper::Sprintf(R"(static const ALIGN_ASSET(2) char %s[] = d%s;)", name.c_str(), name.c_str()); if (nameSet) { nameSet->insert(name); @@ -366,16 +361,11 @@ static const char %s[] __attribute__((aligned (2))) = d%s; { std::string addName = "gTitleZeldaShieldLogoTex"; nameStr = StringHelper::Strip(StringHelper::Strip(addName, "\n"), "\r"); - str += StringHelper::Sprintf("\n#define d%s \"__OTR__%s/%s/%s\"", addName.c_str(), prefix.c_str(), outName.c_str(), nameStr.c_str()); + str += StringHelper::Sprintf("\n\n#define d%s \"__OTR__%s/%s/%s\"", addName.c_str(), prefix.c_str(), outName.c_str(), nameStr.c_str()); if (nameSet && nameSet->find(addName) == nameSet->end()) { - str += StringHelper::Sprintf(R"( -#ifdef _WIN32 -static const __declspec(align(2)) char %s[] = d%s; -#else -static const char %s[] __attribute__((aligned (2))) = d%s; -#endif - )", addName.c_str(), addName.c_str(), addName.c_str(), addName.c_str()); + str += StringHelper::Sprintf("\n"); + str += StringHelper::Sprintf(R"(static const ALIGN_ASSET(2) char %s[] = d%s;)", addName.c_str(), addName.c_str()); if (nameSet) { diff --git a/soh/assets/code/fbdemo_circle/z_fbdemo_circle.h b/soh/assets/code/fbdemo_circle/z_fbdemo_circle.h index 51d7ff1ef..022fa8627 100644 --- a/soh/assets/code/fbdemo_circle/z_fbdemo_circle.h +++ b/soh/assets/code/fbdemo_circle/z_fbdemo_circle.h @@ -1,37 +1,18 @@ #pragma once -#define dsTransCircleNormalTex "__OTR__code/z_fbdemo_circle/sTransCircleNormalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTransCircleNormalTex[] = dsTransCircleNormalTex; -#else -static const char sTransCircleNormalTex[] __attribute__((aligned (2))) = dsTransCircleNormalTex; -#endif - -#define dsTransCircleWaveTex "__OTR__code/z_fbdemo_circle/sTransCircleWaveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTransCircleWaveTex[] = dsTransCircleWaveTex; -#else -static const char sTransCircleWaveTex[] __attribute__((aligned (2))) = dsTransCircleWaveTex; -#endif - -#define dsTransCircleRippleTex "__OTR__code/z_fbdemo_circle/sTransCircleRippleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTransCircleRippleTex[] = dsTransCircleRippleTex; -#else -static const char sTransCircleRippleTex[] __attribute__((aligned (2))) = dsTransCircleRippleTex; -#endif - -#define dsTransCircleStarburstTex "__OTR__code/z_fbdemo_circle/sTransCircleStarburstTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTransCircleStarburstTex[] = dsTransCircleStarburstTex; -#else -static const char sTransCircleStarburstTex[] __attribute__((aligned (2))) = dsTransCircleStarburstTex; -#endif - -#define dsCircleWipeVtx "__OTR__code/z_fbdemo_circle/sCircleWipeVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCircleWipeVtx[] = dsCircleWipeVtx; -#else -static const char sCircleWipeVtx[] __attribute__((aligned (2))) = dsCircleWipeVtx; -#endif - +#include "align_asset_macro.h" + +#define dsTransCircleNormalTex "__OTR__code/z_fbdemo_circle/sTransCircleNormalTex" +static const ALIGN_ASSET(2) char sTransCircleNormalTex[] = dsTransCircleNormalTex; + +#define dsTransCircleWaveTex "__OTR__code/z_fbdemo_circle/sTransCircleWaveTex" +static const ALIGN_ASSET(2) char sTransCircleWaveTex[] = dsTransCircleWaveTex; + +#define dsTransCircleRippleTex "__OTR__code/z_fbdemo_circle/sTransCircleRippleTex" +static const ALIGN_ASSET(2) char sTransCircleRippleTex[] = dsTransCircleRippleTex; + +#define dsTransCircleStarburstTex "__OTR__code/z_fbdemo_circle/sTransCircleStarburstTex" +static const ALIGN_ASSET(2) char sTransCircleStarburstTex[] = dsTransCircleStarburstTex; + +#define dsCircleWipeVtx "__OTR__code/z_fbdemo_circle/sCircleWipeVtx" +static const ALIGN_ASSET(2) char sCircleWipeVtx[] = dsCircleWipeVtx; \ No newline at end of file diff --git a/soh/assets/code/fbdemo_triforce/z_fbdemo_triforce.h b/soh/assets/code/fbdemo_triforce/z_fbdemo_triforce.h index e8ed4e873..7aacd9f77 100644 --- a/soh/assets/code/fbdemo_triforce/z_fbdemo_triforce.h +++ b/soh/assets/code/fbdemo_triforce/z_fbdemo_triforce.h @@ -1,16 +1,9 @@ #pragma once -#define dsTriforceWipeDL "__OTR__code/z_fbdemo_triforce/sTriforceWipeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sTriforceWipeDL[] = dsTriforceWipeDL; -#else -static const char sTriforceWipeDL[] __attribute__((aligned (2))) = dsTriforceWipeDL; -#endif - -#define dsTriforceWipeVtx "__OTR__code/z_fbdemo_triforce/sTriforceWipeVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sTriforceWipeVtx[] = dsTriforceWipeVtx; -#else -static const char sTriforceWipeVtx[] __attribute__((aligned (2))) = dsTriforceWipeVtx; -#endif - +#include "align_asset_macro.h" + +#define dsTriforceWipeDL "__OTR__code/z_fbdemo_triforce/sTriforceWipeDL" +static const ALIGN_ASSET(2) char sTriforceWipeDL[] = dsTriforceWipeDL; + +#define dsTriforceWipeVtx "__OTR__code/z_fbdemo_triforce/sTriforceWipeVtx" +static const ALIGN_ASSET(2) char sTriforceWipeVtx[] = dsTriforceWipeVtx; \ No newline at end of file diff --git a/soh/assets/code/fbdemo_wipe1/z_fbdemo_wipe1.h b/soh/assets/code/fbdemo_wipe1/z_fbdemo_wipe1.h index 3e387bd3a..3f627fcec 100644 --- a/soh/assets/code/fbdemo_wipe1/z_fbdemo_wipe1.h +++ b/soh/assets/code/fbdemo_wipe1/z_fbdemo_wipe1.h @@ -1,16 +1,9 @@ #pragma once -#define dsWipe1Vtx "__OTR__code/z_fbdemo_wipe1/sWipe1Vtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sWipe1Vtx[] = dsWipe1Vtx; -#else -static const char sWipe1Vtx[] __attribute__((aligned (2))) = dsWipe1Vtx; -#endif - -#define dsWipe1Tex "__OTR__code/z_fbdemo_wipe1/sWipe1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char sWipe1Tex[] = dsWipe1Tex; -#else -static const char sWipe1Tex[] __attribute__((aligned (2))) = dsWipe1Tex; -#endif - +#include "align_asset_macro.h" + +#define dsWipe1Vtx "__OTR__code/z_fbdemo_wipe1/sWipe1Vtx" +static const ALIGN_ASSET(2) char sWipe1Vtx[] = dsWipe1Vtx; + +#define dsWipe1Tex "__OTR__code/z_fbdemo_wipe1/sWipe1Tex" +static const ALIGN_ASSET(2) char sWipe1Tex[] = dsWipe1Tex; \ No newline at end of file diff --git a/soh/assets/misc/link_animetion/link_animetion.h b/soh/assets/misc/link_animetion/link_animetion.h index 3f59c932d..1209138af 100644 --- a/soh/assets/misc/link_animetion/link_animetion.h +++ b/soh/assets/misc/link_animetion/link_animetion.h @@ -1,2 +1,3 @@ #pragma once +#include "align_asset_macro.h" \ No newline at end of file diff --git a/soh/assets/objects/gameplay_dangeon_keep/gameplay_dangeon_keep.h b/soh/assets/objects/gameplay_dangeon_keep/gameplay_dangeon_keep.h index a07ce6f3d..4bd15e438 100644 --- a/soh/assets/objects/gameplay_dangeon_keep/gameplay_dangeon_keep.h +++ b/soh/assets/objects/gameplay_dangeon_keep/gameplay_dangeon_keep.h @@ -1,499 +1,216 @@ #pragma once -#define dgUnusedCandleDL "__OTR__objects/gameplay_dangeon_keep/gUnusedCandleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedCandleDL[] = dgUnusedCandleDL; -#else -static const char gUnusedCandleDL[] __attribute__((aligned (2))) = dgUnusedCandleDL; -#endif - -#define dgBrownFragmentDL "__OTR__objects/gameplay_dangeon_keep/gBrownFragmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrownFragmentDL[] = dgBrownFragmentDL; -#else -static const char gBrownFragmentDL[] __attribute__((aligned (2))) = dgBrownFragmentDL; -#endif - -#define dgUnusedStoneTex "__OTR__objects/gameplay_dangeon_keep/gUnusedStoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedStoneTex[] = dgUnusedStoneTex; -#else -static const char gUnusedStoneTex[] __attribute__((aligned (2))) = dgUnusedStoneTex; -#endif - -#define dgDoorLockDL "__OTR__objects/gameplay_dangeon_keep/gDoorLockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorLockDL[] = dgDoorLockDL; -#else -static const char gDoorLockDL[] __attribute__((aligned (2))) = dgDoorLockDL; -#endif - -#define dgDoorChainsDL "__OTR__objects/gameplay_dangeon_keep/gDoorChainsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorChainsDL[] = dgDoorChainsDL; -#else -static const char gDoorChainsDL[] __attribute__((aligned (2))) = dgDoorChainsDL; -#endif - -#define dgUnusedGoldLockTex "__OTR__objects/gameplay_dangeon_keep/gUnusedGoldLockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedGoldLockTex[] = dgUnusedGoldLockTex; -#else -static const char gUnusedGoldLockTex[] __attribute__((aligned (2))) = dgUnusedGoldLockTex; -#endif - -#define dgDoorChainTex "__OTR__objects/gameplay_dangeon_keep/gDoorChainTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorChainTex[] = dgDoorChainTex; -#else -static const char gDoorChainTex[] __attribute__((aligned (2))) = dgDoorChainTex; -#endif - -#define dgUnusedBombBagDL "__OTR__objects/gameplay_dangeon_keep/gUnusedBombBagDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBombBagDL[] = dgUnusedBombBagDL; -#else -static const char gUnusedBombBagDL[] __attribute__((aligned (2))) = dgUnusedBombBagDL; -#endif - -#define dgPushBlockSilverTex "__OTR__objects/gameplay_dangeon_keep/gPushBlockSilverTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPushBlockSilverTex[] = dgPushBlockSilverTex; -#else -static const char gPushBlockSilverTex[] __attribute__((aligned (2))) = dgPushBlockSilverTex; -#endif - -#define dgPushBlockBaseTex "__OTR__objects/gameplay_dangeon_keep/gPushBlockBaseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPushBlockBaseTex[] = dgPushBlockBaseTex; -#else -static const char gPushBlockBaseTex[] __attribute__((aligned (2))) = dgPushBlockBaseTex; -#endif - -#define dgPushBlockGrayTex "__OTR__objects/gameplay_dangeon_keep/gPushBlockGrayTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPushBlockGrayTex[] = dgPushBlockGrayTex; -#else -static const char gPushBlockGrayTex[] __attribute__((aligned (2))) = dgPushBlockGrayTex; -#endif - -#define dgPushBlockDL "__OTR__objects/gameplay_dangeon_keep/gPushBlockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPushBlockDL[] = dgPushBlockDL; -#else -static const char gPushBlockDL[] __attribute__((aligned (2))) = dgPushBlockDL; -#endif - -#define dgPushBlockCol "__OTR__objects/gameplay_dangeon_keep/gPushBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gPushBlockCol[] = dgPushBlockCol; -#else -static const char gPushBlockCol[] __attribute__((aligned (2))) = dgPushBlockCol; -#endif - -#define dgWoodenPlatofrmDL "__OTR__objects/gameplay_dangeon_keep/gWoodenPlatofrmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWoodenPlatofrmDL[] = dgWoodenPlatofrmDL; -#else -static const char gWoodenPlatofrmDL[] __attribute__((aligned (2))) = dgWoodenPlatofrmDL; -#endif - -#define dgSmallWoodenBoxDL "__OTR__objects/gameplay_dangeon_keep/gSmallWoodenBoxDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSmallWoodenBoxDL[] = dgSmallWoodenBoxDL; -#else -static const char gSmallWoodenBoxDL[] __attribute__((aligned (2))) = dgSmallWoodenBoxDL; -#endif - -#define dgSmallWoodenBoxFragmentDL "__OTR__objects/gameplay_dangeon_keep/gSmallWoodenBoxFragmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSmallWoodenBoxFragmentDL[] = dgSmallWoodenBoxFragmentDL; -#else -static const char gSmallWoodenBoxFragmentDL[] __attribute__((aligned (2))) = dgSmallWoodenBoxFragmentDL; -#endif - -#define dgBetaKokiriSwordSpriteDL "__OTR__objects/gameplay_dangeon_keep/gBetaKokiriSwordSpriteDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBetaKokiriSwordSpriteDL[] = dgBetaKokiriSwordSpriteDL; -#else -static const char gBetaKokiriSwordSpriteDL[] __attribute__((aligned (2))) = dgBetaKokiriSwordSpriteDL; -#endif - -#define dgMagicJarSpriteDL "__OTR__objects/gameplay_dangeon_keep/gMagicJarSpriteDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicJarSpriteDL[] = dgMagicJarSpriteDL; -#else -static const char gMagicJarSpriteDL[] __attribute__((aligned (2))) = dgMagicJarSpriteDL; -#endif - -#define dgBetaSlingshotSpriteDL "__OTR__objects/gameplay_dangeon_keep/gBetaSlingshotSpriteDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBetaSlingshotSpriteDL[] = dgBetaSlingshotSpriteDL; -#else -static const char gBetaSlingshotSpriteDL[] __attribute__((aligned (2))) = dgBetaSlingshotSpriteDL; -#endif - -#define dgFloorSwitch1DL "__OTR__objects/gameplay_dangeon_keep/gFloorSwitch1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorSwitch1DL[] = dgFloorSwitch1DL; -#else -static const char gFloorSwitch1DL[] __attribute__((aligned (2))) = dgFloorSwitch1DL; -#endif - -#define dgRustyFloorSwitchDL "__OTR__objects/gameplay_dangeon_keep/gRustyFloorSwitchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRustyFloorSwitchDL[] = dgRustyFloorSwitchDL; -#else -static const char gRustyFloorSwitchDL[] __attribute__((aligned (2))) = dgRustyFloorSwitchDL; -#endif - -#define dgFloorSwitch2DL "__OTR__objects/gameplay_dangeon_keep/gFloorSwitch2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorSwitch2DL[] = dgFloorSwitch2DL; -#else -static const char gFloorSwitch2DL[] __attribute__((aligned (2))) = dgFloorSwitch2DL; -#endif - -#define dgFloorSwitchCol "__OTR__objects/gameplay_dangeon_keep/gFloorSwitchCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorSwitchCol[] = dgFloorSwitchCol; -#else -static const char gFloorSwitchCol[] __attribute__((aligned (2))) = dgFloorSwitchCol; -#endif - -#define dgFloorSwitch3DL "__OTR__objects/gameplay_dangeon_keep/gFloorSwitch3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorSwitch3DL[] = dgFloorSwitch3DL; -#else -static const char gFloorSwitch3DL[] __attribute__((aligned (2))) = dgFloorSwitch3DL; -#endif - -#define dgBetaFloorSwitchDL "__OTR__objects/gameplay_dangeon_keep/gBetaFloorSwitchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBetaFloorSwitchDL[] = dgBetaFloorSwitchDL; -#else -static const char gBetaFloorSwitchDL[] __attribute__((aligned (2))) = dgBetaFloorSwitchDL; -#endif - -#define dgEyeSwitch1DL "__OTR__objects/gameplay_dangeon_keep/gEyeSwitch1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitch1DL[] = dgEyeSwitch1DL; -#else -static const char gEyeSwitch1DL[] __attribute__((aligned (2))) = dgEyeSwitch1DL; -#endif - -#define dgEyeSwitch2DL "__OTR__objects/gameplay_dangeon_keep/gEyeSwitch2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitch2DL[] = dgEyeSwitch2DL; -#else -static const char gEyeSwitch2DL[] __attribute__((aligned (2))) = dgEyeSwitch2DL; -#endif - -#define dgCrystalSwitchCoreOpaDL "__OTR__objects/gameplay_dangeon_keep/gCrystalSwitchCoreOpaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCrystalSwitchCoreOpaDL[] = dgCrystalSwitchCoreOpaDL; -#else -static const char gCrystalSwitchCoreOpaDL[] __attribute__((aligned (2))) = dgCrystalSwitchCoreOpaDL; -#endif - -#define dgCrystalSwitchCoreXluDL "__OTR__objects/gameplay_dangeon_keep/gCrystalSwitchCoreXluDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCrystalSwitchCoreXluDL[] = dgCrystalSwitchCoreXluDL; -#else -static const char gCrystalSwitchCoreXluDL[] __attribute__((aligned (2))) = dgCrystalSwitchCoreXluDL; -#endif - -#define dgCrystalSwitchDiamondOpaDL "__OTR__objects/gameplay_dangeon_keep/gCrystalSwitchDiamondOpaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCrystalSwitchDiamondOpaDL[] = dgCrystalSwitchDiamondOpaDL; -#else -static const char gCrystalSwitchDiamondOpaDL[] __attribute__((aligned (2))) = dgCrystalSwitchDiamondOpaDL; -#endif - -#define dgCrystalSwitchDiamondXluDL "__OTR__objects/gameplay_dangeon_keep/gCrystalSwitchDiamondXluDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCrystalSwitchDiamondXluDL[] = dgCrystalSwitchDiamondXluDL; -#else -static const char gCrystalSwitchDiamondXluDL[] __attribute__((aligned (2))) = dgCrystalSwitchDiamondXluDL; -#endif - -#define dgBetaCrystalSwitchDL "__OTR__objects/gameplay_dangeon_keep/gBetaCrystalSwitchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBetaCrystalSwitchDL[] = dgBetaCrystalSwitchDL; -#else -static const char gBetaCrystalSwitchDL[] __attribute__((aligned (2))) = dgBetaCrystalSwitchDL; -#endif - -#define dgEyeSwitchGoldClosedTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchGoldClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitchGoldClosedTex[] = dgEyeSwitchGoldClosedTex; -#else -static const char gEyeSwitchGoldClosedTex[] __attribute__((aligned (2))) = dgEyeSwitchGoldClosedTex; -#endif - -#define dgEyeSwitchGoldOpeningTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchGoldOpeningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitchGoldOpeningTex[] = dgEyeSwitchGoldOpeningTex; -#else -static const char gEyeSwitchGoldOpeningTex[] __attribute__((aligned (2))) = dgEyeSwitchGoldOpeningTex; -#endif - -#define dgEyeSwitchGoldClosingTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchGoldClosingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitchGoldClosingTex[] = dgEyeSwitchGoldClosingTex; -#else -static const char gEyeSwitchGoldClosingTex[] __attribute__((aligned (2))) = dgEyeSwitchGoldClosingTex; -#endif - -#define dgEyeSwitchGoldOpenTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchGoldOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitchGoldOpenTex[] = dgEyeSwitchGoldOpenTex; -#else -static const char gEyeSwitchGoldOpenTex[] __attribute__((aligned (2))) = dgEyeSwitchGoldOpenTex; -#endif - -#define dgEyeSwitchSilverOpenTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchSilverOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitchSilverOpenTex[] = dgEyeSwitchSilverOpenTex; -#else -static const char gEyeSwitchSilverOpenTex[] __attribute__((aligned (2))) = dgEyeSwitchSilverOpenTex; -#endif - -#define dgEyeSwitchSilverHalfTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchSilverHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitchSilverHalfTex[] = dgEyeSwitchSilverHalfTex; -#else -static const char gEyeSwitchSilverHalfTex[] __attribute__((aligned (2))) = dgEyeSwitchSilverHalfTex; -#endif - -#define dgEyeSwitchSilverClosedTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchSilverClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeSwitchSilverClosedTex[] = dgEyeSwitchSilverClosedTex; -#else -static const char gEyeSwitchSilverClosedTex[] __attribute__((aligned (2))) = dgEyeSwitchSilverClosedTex; -#endif - -#define dgDungeonKeepTex_00C8A0 "__OTR__objects/gameplay_dangeon_keep/gDungeonKeepTex_00C8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonKeepTex_00C8A0[] = dgDungeonKeepTex_00C8A0; -#else -static const char gDungeonKeepTex_00C8A0[] __attribute__((aligned (2))) = dgDungeonKeepTex_00C8A0; -#endif - -#define dgDungeonkeepTex_00D0A0 "__OTR__objects/gameplay_dangeon_keep/gDungeonkeepTex_00D0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonkeepTex_00D0A0[] = dgDungeonkeepTex_00D0A0; -#else -static const char gDungeonkeepTex_00D0A0[] __attribute__((aligned (2))) = dgDungeonkeepTex_00D0A0; -#endif - -#define dgDungeonKeepTex_00E8A0 "__OTR__objects/gameplay_dangeon_keep/gDungeonKeepTex_00E8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonKeepTex_00E8A0[] = dgDungeonKeepTex_00E8A0; -#else -static const char gDungeonKeepTex_00E8A0[] __attribute__((aligned (2))) = dgDungeonKeepTex_00E8A0; -#endif - -#define dgDungeonKeepTex_00ECA0 "__OTR__objects/gameplay_dangeon_keep/gDungeonKeepTex_00ECA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonKeepTex_00ECA0[] = dgDungeonKeepTex_00ECA0; -#else -static const char gDungeonKeepTex_00ECA0[] __attribute__((aligned (2))) = dgDungeonKeepTex_00ECA0; -#endif - -#define dgDungeonKeepTex_00F0A0 "__OTR__objects/gameplay_dangeon_keep/gDungeonKeepTex_00F0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonKeepTex_00F0A0[] = dgDungeonKeepTex_00F0A0; -#else -static const char gDungeonKeepTex_00F0A0[] __attribute__((aligned (2))) = dgDungeonKeepTex_00F0A0; -#endif - -#define dgCrstalSwitchRedTex "__OTR__objects/gameplay_dangeon_keep/gCrstalSwitchRedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCrstalSwitchRedTex[] = dgCrstalSwitchRedTex; -#else -static const char gCrstalSwitchRedTex[] __attribute__((aligned (2))) = dgCrstalSwitchRedTex; -#endif - -#define dgCrstalSwitchBlueTex "__OTR__objects/gameplay_dangeon_keep/gCrstalSwitchBlueTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCrstalSwitchBlueTex[] = dgCrstalSwitchBlueTex; -#else -static const char gCrstalSwitchBlueTex[] __attribute__((aligned (2))) = dgCrstalSwitchBlueTex; -#endif - -#define dgPotDL "__OTR__objects/gameplay_dangeon_keep/gPotDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotDL[] = dgPotDL; -#else -static const char gPotDL[] __attribute__((aligned (2))) = dgPotDL; -#endif - -#define dgPotFragmentDL "__OTR__objects/gameplay_dangeon_keep/gPotFragmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotFragmentDL[] = dgPotFragmentDL; -#else -static const char gPotFragmentDL[] __attribute__((aligned (2))) = dgPotFragmentDL; -#endif - -#define dgameplay_dangeon_keepTex_000000 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_000000[] = dgameplay_dangeon_keepTex_000000; -#else -static const char gameplay_dangeon_keepTex_000000[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_000000; -#endif - -#define dgameplay_dangeon_keepTex_000200 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_000200" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_000200[] = dgameplay_dangeon_keepTex_000200; -#else -static const char gameplay_dangeon_keepTex_000200[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_000200; -#endif - -#define dgameplay_dangeon_keepTex_0005C0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0005C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0005C0[] = dgameplay_dangeon_keepTex_0005C0; -#else -static const char gameplay_dangeon_keepTex_0005C0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0005C0; -#endif - -#define dgameplay_dangeon_keepTex_001280 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_001280" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_001280[] = dgameplay_dangeon_keepTex_001280; -#else -static const char gameplay_dangeon_keepTex_001280[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_001280; -#endif - -#define dgameplay_dangeon_keepTex_0164B0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0164B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0164B0[] = dgameplay_dangeon_keepTex_0164B0; -#else -static const char gameplay_dangeon_keepTex_0164B0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0164B0; -#endif - -#define dgameplay_dangeon_keepTex_00F8A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_00F8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_00F8A0[] = dgameplay_dangeon_keepTex_00F8A0; -#else -static const char gameplay_dangeon_keepTex_00F8A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_00F8A0; -#endif - -#define dgameplay_dangeon_keepTex_011CA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_011CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_011CA0[] = dgameplay_dangeon_keepTex_011CA0; -#else -static const char gameplay_dangeon_keepTex_011CA0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_011CA0; -#endif - -#define dgameplay_dangeon_keepTex_012CA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_012CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_012CA0[] = dgameplay_dangeon_keepTex_012CA0; -#else -static const char gameplay_dangeon_keepTex_012CA0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_012CA0; -#endif - -#define dgameplay_dangeon_keepTex_0154B0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0154B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0154B0[] = dgameplay_dangeon_keepTex_0154B0; -#else -static const char gameplay_dangeon_keepTex_0154B0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0154B0; -#endif - -#define dgameplay_dangeon_keepTex_015CB0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_015CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_015CB0[] = dgameplay_dangeon_keepTex_015CB0; -#else -static const char gameplay_dangeon_keepTex_015CB0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_015CB0; -#endif - -#define dgameplay_dangeon_keepTex_016CB0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_016CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_016CB0[] = dgameplay_dangeon_keepTex_016CB0; -#else -static const char gameplay_dangeon_keepTex_016CB0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_016CB0; -#endif - -#define dgameplay_dangeon_keepTex_007CA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_007CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_007CA0[] = dgameplay_dangeon_keepTex_007CA0; -#else -static const char gameplay_dangeon_keepTex_007CA0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_007CA0; -#endif - -#define dgameplay_dangeon_keepTex_0078A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0078A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0078A0[] = dgameplay_dangeon_keepTex_0078A0; -#else -static const char gameplay_dangeon_keepTex_0078A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0078A0; -#endif - -#define dgameplay_dangeon_keepTex_00D8A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_00D8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_00D8A0[] = dgameplay_dangeon_keepTex_00D8A0; -#else -static const char gameplay_dangeon_keepTex_00D8A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_00D8A0; -#endif - -#define dgameplay_dangeon_keepTex_00E0A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_00E0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_00E0A0[] = dgameplay_dangeon_keepTex_00E0A0; -#else -static const char gameplay_dangeon_keepTex_00E0A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_00E0A0; -#endif - -#define dgameplay_dangeon_keepTex_0080A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0080A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0080A0[] = dgameplay_dangeon_keepTex_0080A0; -#else -static const char gameplay_dangeon_keepTex_0080A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0080A0; -#endif - -#define dgameplay_dangeon_keepTex_0088A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0088A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0088A0[] = dgameplay_dangeon_keepTex_0088A0; -#else -static const char gameplay_dangeon_keepTex_0088A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0088A0; -#endif - -#define dgameplay_dangeon_keepTex_013CB0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_013CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_013CB0[] = dgameplay_dangeon_keepTex_013CB0; -#else -static const char gameplay_dangeon_keepTex_013CB0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_013CB0; -#endif - -#define dgameplay_dangeon_keepTex_0134A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0134A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0134A0[] = dgameplay_dangeon_keepTex_0134A0; -#else -static const char gameplay_dangeon_keepTex_0134A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0134A0; -#endif - -#define dgameplay_dangeon_keepTex_013CA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_013CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_013CA0[] = dgameplay_dangeon_keepTex_013CA0; -#else -static const char gameplay_dangeon_keepTex_013CA0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_013CA0; -#endif - -#define dgameplay_dangeon_keepTex_0108A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0108A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0108A0[] = dgameplay_dangeon_keepTex_0108A0; -#else -static const char gameplay_dangeon_keepTex_0108A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0108A0; -#endif - -#define dgameplay_dangeon_keepTex_0118A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0118A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_0118A0[] = dgameplay_dangeon_keepTex_0118A0; -#else -static const char gameplay_dangeon_keepTex_0118A0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_0118A0; -#endif - -#define dgameplay_dangeon_keepTex_011AA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_011AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_dangeon_keepTex_011AA0[] = dgameplay_dangeon_keepTex_011AA0; -#else -static const char gameplay_dangeon_keepTex_011AA0[] __attribute__((aligned (2))) = dgameplay_dangeon_keepTex_011AA0; -#endif - +#include "align_asset_macro.h" + +#define dgUnusedCandleDL "__OTR__objects/gameplay_dangeon_keep/gUnusedCandleDL" +static const ALIGN_ASSET(2) char gUnusedCandleDL[] = dgUnusedCandleDL; + +#define dgBrownFragmentDL "__OTR__objects/gameplay_dangeon_keep/gBrownFragmentDL" +static const ALIGN_ASSET(2) char gBrownFragmentDL[] = dgBrownFragmentDL; + +#define dgUnusedStoneTex "__OTR__objects/gameplay_dangeon_keep/gUnusedStoneTex" +static const ALIGN_ASSET(2) char gUnusedStoneTex[] = dgUnusedStoneTex; + +#define dgDoorLockDL "__OTR__objects/gameplay_dangeon_keep/gDoorLockDL" +static const ALIGN_ASSET(2) char gDoorLockDL[] = dgDoorLockDL; + +#define dgDoorChainsDL "__OTR__objects/gameplay_dangeon_keep/gDoorChainsDL" +static const ALIGN_ASSET(2) char gDoorChainsDL[] = dgDoorChainsDL; + +#define dgUnusedGoldLockTex "__OTR__objects/gameplay_dangeon_keep/gUnusedGoldLockTex" +static const ALIGN_ASSET(2) char gUnusedGoldLockTex[] = dgUnusedGoldLockTex; + +#define dgDoorChainTex "__OTR__objects/gameplay_dangeon_keep/gDoorChainTex" +static const ALIGN_ASSET(2) char gDoorChainTex[] = dgDoorChainTex; + +#define dgUnusedBombBagDL "__OTR__objects/gameplay_dangeon_keep/gUnusedBombBagDL" +static const ALIGN_ASSET(2) char gUnusedBombBagDL[] = dgUnusedBombBagDL; + +#define dgPushBlockSilverTex "__OTR__objects/gameplay_dangeon_keep/gPushBlockSilverTex" +static const ALIGN_ASSET(2) char gPushBlockSilverTex[] = dgPushBlockSilverTex; + +#define dgPushBlockBaseTex "__OTR__objects/gameplay_dangeon_keep/gPushBlockBaseTex" +static const ALIGN_ASSET(2) char gPushBlockBaseTex[] = dgPushBlockBaseTex; + +#define dgPushBlockGrayTex "__OTR__objects/gameplay_dangeon_keep/gPushBlockGrayTex" +static const ALIGN_ASSET(2) char gPushBlockGrayTex[] = dgPushBlockGrayTex; + +#define dgPushBlockDL "__OTR__objects/gameplay_dangeon_keep/gPushBlockDL" +static const ALIGN_ASSET(2) char gPushBlockDL[] = dgPushBlockDL; + +#define dgPushBlockCol "__OTR__objects/gameplay_dangeon_keep/gPushBlockCol" +static const ALIGN_ASSET(2) char gPushBlockCol[] = dgPushBlockCol; + +#define dgWoodenPlatofrmDL "__OTR__objects/gameplay_dangeon_keep/gWoodenPlatofrmDL" +static const ALIGN_ASSET(2) char gWoodenPlatofrmDL[] = dgWoodenPlatofrmDL; + +#define dgSmallWoodenBoxDL "__OTR__objects/gameplay_dangeon_keep/gSmallWoodenBoxDL" +static const ALIGN_ASSET(2) char gSmallWoodenBoxDL[] = dgSmallWoodenBoxDL; + +#define dgSmallWoodenBoxFragmentDL "__OTR__objects/gameplay_dangeon_keep/gSmallWoodenBoxFragmentDL" +static const ALIGN_ASSET(2) char gSmallWoodenBoxFragmentDL[] = dgSmallWoodenBoxFragmentDL; + +#define dgBetaKokiriSwordSpriteDL "__OTR__objects/gameplay_dangeon_keep/gBetaKokiriSwordSpriteDL" +static const ALIGN_ASSET(2) char gBetaKokiriSwordSpriteDL[] = dgBetaKokiriSwordSpriteDL; + +#define dgMagicJarSpriteDL "__OTR__objects/gameplay_dangeon_keep/gMagicJarSpriteDL" +static const ALIGN_ASSET(2) char gMagicJarSpriteDL[] = dgMagicJarSpriteDL; + +#define dgBetaSlingshotSpriteDL "__OTR__objects/gameplay_dangeon_keep/gBetaSlingshotSpriteDL" +static const ALIGN_ASSET(2) char gBetaSlingshotSpriteDL[] = dgBetaSlingshotSpriteDL; + +#define dgFloorSwitch1DL "__OTR__objects/gameplay_dangeon_keep/gFloorSwitch1DL" +static const ALIGN_ASSET(2) char gFloorSwitch1DL[] = dgFloorSwitch1DL; + +#define dgRustyFloorSwitchDL "__OTR__objects/gameplay_dangeon_keep/gRustyFloorSwitchDL" +static const ALIGN_ASSET(2) char gRustyFloorSwitchDL[] = dgRustyFloorSwitchDL; + +#define dgFloorSwitch2DL "__OTR__objects/gameplay_dangeon_keep/gFloorSwitch2DL" +static const ALIGN_ASSET(2) char gFloorSwitch2DL[] = dgFloorSwitch2DL; + +#define dgFloorSwitchCol "__OTR__objects/gameplay_dangeon_keep/gFloorSwitchCol" +static const ALIGN_ASSET(2) char gFloorSwitchCol[] = dgFloorSwitchCol; + +#define dgFloorSwitch3DL "__OTR__objects/gameplay_dangeon_keep/gFloorSwitch3DL" +static const ALIGN_ASSET(2) char gFloorSwitch3DL[] = dgFloorSwitch3DL; + +#define dgBetaFloorSwitchDL "__OTR__objects/gameplay_dangeon_keep/gBetaFloorSwitchDL" +static const ALIGN_ASSET(2) char gBetaFloorSwitchDL[] = dgBetaFloorSwitchDL; + +#define dgEyeSwitch1DL "__OTR__objects/gameplay_dangeon_keep/gEyeSwitch1DL" +static const ALIGN_ASSET(2) char gEyeSwitch1DL[] = dgEyeSwitch1DL; + +#define dgEyeSwitch2DL "__OTR__objects/gameplay_dangeon_keep/gEyeSwitch2DL" +static const ALIGN_ASSET(2) char gEyeSwitch2DL[] = dgEyeSwitch2DL; + +#define dgCrystalSwitchCoreOpaDL "__OTR__objects/gameplay_dangeon_keep/gCrystalSwitchCoreOpaDL" +static const ALIGN_ASSET(2) char gCrystalSwitchCoreOpaDL[] = dgCrystalSwitchCoreOpaDL; + +#define dgCrystalSwitchCoreXluDL "__OTR__objects/gameplay_dangeon_keep/gCrystalSwitchCoreXluDL" +static const ALIGN_ASSET(2) char gCrystalSwitchCoreXluDL[] = dgCrystalSwitchCoreXluDL; + +#define dgCrystalSwitchDiamondOpaDL "__OTR__objects/gameplay_dangeon_keep/gCrystalSwitchDiamondOpaDL" +static const ALIGN_ASSET(2) char gCrystalSwitchDiamondOpaDL[] = dgCrystalSwitchDiamondOpaDL; + +#define dgCrystalSwitchDiamondXluDL "__OTR__objects/gameplay_dangeon_keep/gCrystalSwitchDiamondXluDL" +static const ALIGN_ASSET(2) char gCrystalSwitchDiamondXluDL[] = dgCrystalSwitchDiamondXluDL; + +#define dgBetaCrystalSwitchDL "__OTR__objects/gameplay_dangeon_keep/gBetaCrystalSwitchDL" +static const ALIGN_ASSET(2) char gBetaCrystalSwitchDL[] = dgBetaCrystalSwitchDL; + +#define dgEyeSwitchGoldClosedTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchGoldClosedTex" +static const ALIGN_ASSET(2) char gEyeSwitchGoldClosedTex[] = dgEyeSwitchGoldClosedTex; + +#define dgEyeSwitchGoldOpeningTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchGoldOpeningTex" +static const ALIGN_ASSET(2) char gEyeSwitchGoldOpeningTex[] = dgEyeSwitchGoldOpeningTex; + +#define dgEyeSwitchGoldClosingTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchGoldClosingTex" +static const ALIGN_ASSET(2) char gEyeSwitchGoldClosingTex[] = dgEyeSwitchGoldClosingTex; + +#define dgEyeSwitchGoldOpenTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchGoldOpenTex" +static const ALIGN_ASSET(2) char gEyeSwitchGoldOpenTex[] = dgEyeSwitchGoldOpenTex; + +#define dgEyeSwitchSilverOpenTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchSilverOpenTex" +static const ALIGN_ASSET(2) char gEyeSwitchSilverOpenTex[] = dgEyeSwitchSilverOpenTex; + +#define dgEyeSwitchSilverHalfTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchSilverHalfTex" +static const ALIGN_ASSET(2) char gEyeSwitchSilverHalfTex[] = dgEyeSwitchSilverHalfTex; + +#define dgEyeSwitchSilverClosedTex "__OTR__objects/gameplay_dangeon_keep/gEyeSwitchSilverClosedTex" +static const ALIGN_ASSET(2) char gEyeSwitchSilverClosedTex[] = dgEyeSwitchSilverClosedTex; + +#define dgDungeonKeepTex_00C8A0 "__OTR__objects/gameplay_dangeon_keep/gDungeonKeepTex_00C8A0" +static const ALIGN_ASSET(2) char gDungeonKeepTex_00C8A0[] = dgDungeonKeepTex_00C8A0; + +#define dgDungeonkeepTex_00D0A0 "__OTR__objects/gameplay_dangeon_keep/gDungeonkeepTex_00D0A0" +static const ALIGN_ASSET(2) char gDungeonkeepTex_00D0A0[] = dgDungeonkeepTex_00D0A0; + +#define dgDungeonKeepTex_00E8A0 "__OTR__objects/gameplay_dangeon_keep/gDungeonKeepTex_00E8A0" +static const ALIGN_ASSET(2) char gDungeonKeepTex_00E8A0[] = dgDungeonKeepTex_00E8A0; + +#define dgDungeonKeepTex_00ECA0 "__OTR__objects/gameplay_dangeon_keep/gDungeonKeepTex_00ECA0" +static const ALIGN_ASSET(2) char gDungeonKeepTex_00ECA0[] = dgDungeonKeepTex_00ECA0; + +#define dgDungeonKeepTex_00F0A0 "__OTR__objects/gameplay_dangeon_keep/gDungeonKeepTex_00F0A0" +static const ALIGN_ASSET(2) char gDungeonKeepTex_00F0A0[] = dgDungeonKeepTex_00F0A0; + +#define dgCrstalSwitchRedTex "__OTR__objects/gameplay_dangeon_keep/gCrstalSwitchRedTex" +static const ALIGN_ASSET(2) char gCrstalSwitchRedTex[] = dgCrstalSwitchRedTex; + +#define dgCrstalSwitchBlueTex "__OTR__objects/gameplay_dangeon_keep/gCrstalSwitchBlueTex" +static const ALIGN_ASSET(2) char gCrstalSwitchBlueTex[] = dgCrstalSwitchBlueTex; + +#define dgPotDL "__OTR__objects/gameplay_dangeon_keep/gPotDL" +static const ALIGN_ASSET(2) char gPotDL[] = dgPotDL; + +#define dgPotFragmentDL "__OTR__objects/gameplay_dangeon_keep/gPotFragmentDL" +static const ALIGN_ASSET(2) char gPotFragmentDL[] = dgPotFragmentDL; + +#define dgameplay_dangeon_keepTex_000000 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_000000" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_000000[] = dgameplay_dangeon_keepTex_000000; + +#define dgameplay_dangeon_keepTex_000200 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_000200" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_000200[] = dgameplay_dangeon_keepTex_000200; + +#define dgameplay_dangeon_keepTex_0005C0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0005C0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0005C0[] = dgameplay_dangeon_keepTex_0005C0; + +#define dgameplay_dangeon_keepTex_001280 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_001280" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_001280[] = dgameplay_dangeon_keepTex_001280; + +#define dgameplay_dangeon_keepTex_0164B0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0164B0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0164B0[] = dgameplay_dangeon_keepTex_0164B0; + +#define dgameplay_dangeon_keepTex_00F8A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_00F8A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_00F8A0[] = dgameplay_dangeon_keepTex_00F8A0; + +#define dgameplay_dangeon_keepTex_011CA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_011CA0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_011CA0[] = dgameplay_dangeon_keepTex_011CA0; + +#define dgameplay_dangeon_keepTex_012CA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_012CA0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_012CA0[] = dgameplay_dangeon_keepTex_012CA0; + +#define dgameplay_dangeon_keepTex_0154B0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0154B0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0154B0[] = dgameplay_dangeon_keepTex_0154B0; + +#define dgameplay_dangeon_keepTex_015CB0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_015CB0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_015CB0[] = dgameplay_dangeon_keepTex_015CB0; + +#define dgameplay_dangeon_keepTex_016CB0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_016CB0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_016CB0[] = dgameplay_dangeon_keepTex_016CB0; + +#define dgameplay_dangeon_keepTex_007CA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_007CA0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_007CA0[] = dgameplay_dangeon_keepTex_007CA0; + +#define dgameplay_dangeon_keepTex_0078A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0078A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0078A0[] = dgameplay_dangeon_keepTex_0078A0; + +#define dgameplay_dangeon_keepTex_00D8A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_00D8A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_00D8A0[] = dgameplay_dangeon_keepTex_00D8A0; + +#define dgameplay_dangeon_keepTex_00E0A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_00E0A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_00E0A0[] = dgameplay_dangeon_keepTex_00E0A0; + +#define dgameplay_dangeon_keepTex_0080A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0080A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0080A0[] = dgameplay_dangeon_keepTex_0080A0; + +#define dgameplay_dangeon_keepTex_0088A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0088A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0088A0[] = dgameplay_dangeon_keepTex_0088A0; + +#define dgameplay_dangeon_keepTex_013CB0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_013CB0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_013CB0[] = dgameplay_dangeon_keepTex_013CB0; + +#define dgameplay_dangeon_keepTex_0134A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0134A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0134A0[] = dgameplay_dangeon_keepTex_0134A0; + +#define dgameplay_dangeon_keepTex_013CA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_013CA0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_013CA0[] = dgameplay_dangeon_keepTex_013CA0; + +#define dgameplay_dangeon_keepTex_0108A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0108A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0108A0[] = dgameplay_dangeon_keepTex_0108A0; + +#define dgameplay_dangeon_keepTex_0118A0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_0118A0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_0118A0[] = dgameplay_dangeon_keepTex_0118A0; + +#define dgameplay_dangeon_keepTex_011AA0 "__OTR__objects/gameplay_dangeon_keep/gameplay_dangeon_keepTex_011AA0" +static const ALIGN_ASSET(2) char gameplay_dangeon_keepTex_011AA0[] = dgameplay_dangeon_keepTex_011AA0; \ No newline at end of file diff --git a/soh/assets/objects/gameplay_field_keep/gameplay_field_keep.h b/soh/assets/objects/gameplay_field_keep/gameplay_field_keep.h index ab8ca3c8a..8a237fa6e 100644 --- a/soh/assets/objects/gameplay_field_keep/gameplay_field_keep.h +++ b/soh/assets/objects/gameplay_field_keep/gameplay_field_keep.h @@ -1,429 +1,186 @@ #pragma once -#define dgHanaFlower1DL "__OTR__objects/gameplay_field_keep/gHanaFlower1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaFlower1DL[] = dgHanaFlower1DL; -#else -static const char gHanaFlower1DL[] __attribute__((aligned (2))) = dgHanaFlower1DL; -#endif - -#define dgHanaFlower2DL "__OTR__objects/gameplay_field_keep/gHanaFlower2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaFlower2DL[] = dgHanaFlower2DL; -#else -static const char gHanaFlower2DL[] __attribute__((aligned (2))) = dgHanaFlower2DL; -#endif - -#define dgHanaFlower3DL "__OTR__objects/gameplay_field_keep/gHanaFlower3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaFlower3DL[] = dgHanaFlower3DL; -#else -static const char gHanaFlower3DL[] __attribute__((aligned (2))) = dgHanaFlower3DL; -#endif - -#define dgHanaLeaf1DL "__OTR__objects/gameplay_field_keep/gHanaLeaf1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaLeaf1DL[] = dgHanaLeaf1DL; -#else -static const char gHanaLeaf1DL[] __attribute__((aligned (2))) = dgHanaLeaf1DL; -#endif - -#define dgHanaLeaf2DL "__OTR__objects/gameplay_field_keep/gHanaLeaf2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaLeaf2DL[] = dgHanaLeaf2DL; -#else -static const char gHanaLeaf2DL[] __attribute__((aligned (2))) = dgHanaLeaf2DL; -#endif - -#define dgHanaLeaf3DL "__OTR__objects/gameplay_field_keep/gHanaLeaf3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaLeaf3DL[] = dgHanaLeaf3DL; -#else -static const char gHanaLeaf3DL[] __attribute__((aligned (2))) = dgHanaLeaf3DL; -#endif - -#define dgHanaLeaf4DL "__OTR__objects/gameplay_field_keep/gHanaLeaf4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaLeaf4DL[] = dgHanaLeaf4DL; -#else -static const char gHanaLeaf4DL[] __attribute__((aligned (2))) = dgHanaLeaf4DL; -#endif - -#define dgHanaLeaf5DL "__OTR__objects/gameplay_field_keep/gHanaLeaf5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaLeaf5DL[] = dgHanaLeaf5DL; -#else -static const char gHanaLeaf5DL[] __attribute__((aligned (2))) = dgHanaLeaf5DL; -#endif - -#define dgHanaFlowerTex "__OTR__objects/gameplay_field_keep/gHanaFlowerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaFlowerTex[] = dgHanaFlowerTex; -#else -static const char gHanaFlowerTex[] __attribute__((aligned (2))) = dgHanaFlowerTex; -#endif - -#define dgHanaLeafTex "__OTR__objects/gameplay_field_keep/gHanaLeafTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaLeafTex[] = dgHanaLeafTex; -#else -static const char gHanaLeafTex[] __attribute__((aligned (2))) = dgHanaLeafTex; -#endif - -#define dgHanaDL "__OTR__objects/gameplay_field_keep/gHanaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHanaDL[] = dgHanaDL; -#else -static const char gHanaDL[] __attribute__((aligned (2))) = dgHanaDL; -#endif - -#define dgBgBombwallCol "__OTR__objects/gameplay_field_keep/gBgBombwallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBgBombwallCol[] = dgBgBombwallCol; -#else -static const char gBgBombwallCol[] __attribute__((aligned (2))) = dgBgBombwallCol; -#endif - -#define dgBgBombwallNormalDL "__OTR__objects/gameplay_field_keep/gBgBombwallNormalDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBgBombwallNormalDL[] = dgBgBombwallNormalDL; -#else -static const char gBgBombwallNormalDL[] __attribute__((aligned (2))) = dgBgBombwallNormalDL; -#endif - -#define dgBgBombwallBrokenDL "__OTR__objects/gameplay_field_keep/gBgBombwallBrokenDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBgBombwallBrokenDL[] = dgBgBombwallBrokenDL; -#else -static const char gBgBombwallBrokenDL[] __attribute__((aligned (2))) = dgBgBombwallBrokenDL; -#endif - -#define dgGrottoDL "__OTR__objects/gameplay_field_keep/gGrottoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGrottoDL[] = dgGrottoDL; -#else -static const char gGrottoDL[] __attribute__((aligned (2))) = dgGrottoDL; -#endif - -#define dgGrottoTex "__OTR__objects/gameplay_field_keep/gGrottoTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGrottoTex[] = dgGrottoTex; -#else -static const char gGrottoTex[] __attribute__((aligned (2))) = dgGrottoTex; -#endif - -#define dgButterflyDL_002480 "__OTR__objects/gameplay_field_keep/gButterflyDL_002480" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflyDL_002480[] = dgButterflyDL_002480; -#else -static const char gButterflyDL_002480[] __attribute__((aligned (2))) = dgButterflyDL_002480; -#endif - -#define dgButterflyDL_002520 "__OTR__objects/gameplay_field_keep/gButterflyDL_002520" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflyDL_002520[] = dgButterflyDL_002520; -#else -static const char gButterflyDL_002520[] __attribute__((aligned (2))) = dgButterflyDL_002520; -#endif - -#define dgButterflyDL_002580 "__OTR__objects/gameplay_field_keep/gButterflyDL_002580" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflyDL_002580[] = dgButterflyDL_002580; -#else -static const char gButterflyDL_002580[] __attribute__((aligned (2))) = dgButterflyDL_002580; -#endif - -#define dgButterflyDL_002620 "__OTR__objects/gameplay_field_keep/gButterflyDL_002620" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflyDL_002620[] = dgButterflyDL_002620; -#else -static const char gButterflyDL_002620[] __attribute__((aligned (2))) = dgButterflyDL_002620; -#endif - -#define dgButterflyWingTex "__OTR__objects/gameplay_field_keep/gButterflyWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflyWingTex[] = dgButterflyWingTex; -#else -static const char gButterflyWingTex[] __attribute__((aligned (2))) = dgButterflyWingTex; -#endif - -#define dgButterflySkel "__OTR__objects/gameplay_field_keep/gButterflySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflySkel[] = dgButterflySkel; -#else -static const char gButterflySkel[] __attribute__((aligned (2))) = dgButterflySkel; -#endif - -#define dgButterflyAnim "__OTR__objects/gameplay_field_keep/gButterflyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflyAnim[] = dgButterflyAnim; -#else -static const char gButterflyAnim[] __attribute__((aligned (2))) = dgButterflyAnim; -#endif - -#define dgBgBombwallTLUT "__OTR__objects/gameplay_field_keep/gBgBombwallTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBgBombwallTLUT[] = dgBgBombwallTLUT; -#else -static const char gBgBombwallTLUT[] __attribute__((aligned (2))) = dgBgBombwallTLUT; -#endif - -#define dgBgBombwallNormalTex "__OTR__objects/gameplay_field_keep/gBgBombwallNormalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBgBombwallNormalTex[] = dgBgBombwallNormalTex; -#else -static const char gBgBombwallNormalTex[] __attribute__((aligned (2))) = dgBgBombwallNormalTex; -#endif - -#define dgBgBombWallBrokenTex "__OTR__objects/gameplay_field_keep/gBgBombWallBrokenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBgBombWallBrokenTex[] = dgBgBombWallBrokenTex; -#else -static const char gBgBombWallBrokenTex[] __attribute__((aligned (2))) = dgBgBombWallBrokenTex; -#endif - -#define dgFieldDoorDL_004720 "__OTR__objects/gameplay_field_keep/gFieldDoorDL_004720" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldDoorDL_004720[] = dgFieldDoorDL_004720; -#else -static const char gFieldDoorDL_004720[] __attribute__((aligned (2))) = dgFieldDoorDL_004720; -#endif - -#define dgFieldDoorLeftDL "__OTR__objects/gameplay_field_keep/gFieldDoorLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldDoorLeftDL[] = dgFieldDoorLeftDL; -#else -static const char gFieldDoorLeftDL[] __attribute__((aligned (2))) = dgFieldDoorLeftDL; -#endif - -#define dgFieldDoorRightDL "__OTR__objects/gameplay_field_keep/gFieldDoorRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldDoorRightDL[] = dgFieldDoorRightDL; -#else -static const char gFieldDoorRightDL[] __attribute__((aligned (2))) = dgFieldDoorRightDL; -#endif - -#define dgFieldDoor1Tex "__OTR__objects/gameplay_field_keep/gFieldDoor1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldDoor1Tex[] = dgFieldDoor1Tex; -#else -static const char gFieldDoor1Tex[] __attribute__((aligned (2))) = dgFieldDoor1Tex; -#endif - -#define dgFieldDoorKnobTopHalfTex "__OTR__objects/gameplay_field_keep/gFieldDoorKnobTopHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldDoorKnobTopHalfTex[] = dgFieldDoorKnobTopHalfTex; -#else -static const char gFieldDoorKnobTopHalfTex[] __attribute__((aligned (2))) = dgFieldDoorKnobTopHalfTex; -#endif - -#define dgFieldDoorKnobTex "__OTR__objects/gameplay_field_keep/gFieldDoorKnobTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldDoorKnobTex[] = dgFieldDoorKnobTex; -#else -static const char gFieldDoorKnobTex[] __attribute__((aligned (2))) = dgFieldDoorKnobTex; -#endif - -#define dgFieldUnusedFishSkel "__OTR__objects/gameplay_field_keep/gFieldUnusedFishSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldUnusedFishSkel[] = dgFieldUnusedFishSkel; -#else -static const char gFieldUnusedFishSkel[] __attribute__((aligned (2))) = dgFieldUnusedFishSkel; -#endif - -#define dgFieldUnusedFishAnim "__OTR__objects/gameplay_field_keep/gFieldUnusedFishAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldUnusedFishAnim[] = dgFieldUnusedFishAnim; -#else -static const char gFieldUnusedFishAnim[] __attribute__((aligned (2))) = dgFieldUnusedFishAnim; -#endif - -#define dgFieldUnusedFishDL "__OTR__objects/gameplay_field_keep/gFieldUnusedFishDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldUnusedFishDL[] = dgFieldUnusedFishDL; -#else -static const char gFieldUnusedFishDL[] __attribute__((aligned (2))) = dgFieldUnusedFishDL; -#endif - -#define dgFieldSkelUnusedFishDL_0061E8 "__OTR__objects/gameplay_field_keep/gFieldSkelUnusedFishDL_0061E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldSkelUnusedFishDL_0061E8[] = dgFieldSkelUnusedFishDL_0061E8; -#else -static const char gFieldSkelUnusedFishDL_0061E8[] __attribute__((aligned (2))) = dgFieldSkelUnusedFishDL_0061E8; -#endif - -#define dgFieldSkelUnusedFishDL_0063A8 "__OTR__objects/gameplay_field_keep/gFieldSkelUnusedFishDL_0063A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldSkelUnusedFishDL_0063A8[] = dgFieldSkelUnusedFishDL_0063A8; -#else -static const char gFieldSkelUnusedFishDL_0063A8[] __attribute__((aligned (2))) = dgFieldSkelUnusedFishDL_0063A8; -#endif - -#define dgFieldSkelUnusedFishDL_006448 "__OTR__objects/gameplay_field_keep/gFieldSkelUnusedFishDL_006448" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldSkelUnusedFishDL_006448[] = dgFieldSkelUnusedFishDL_006448; -#else -static const char gFieldSkelUnusedFishDL_006448[] __attribute__((aligned (2))) = dgFieldSkelUnusedFishDL_006448; -#endif - -#define dgFieldUnusedFishTex "__OTR__objects/gameplay_field_keep/gFieldUnusedFishTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldUnusedFishTex[] = dgFieldUnusedFishTex; -#else -static const char gFieldUnusedFishTex[] __attribute__((aligned (2))) = dgFieldUnusedFishTex; -#endif - -#define dgFieldUnusedFishBottomTex "__OTR__objects/gameplay_field_keep/gFieldUnusedFishBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldUnusedFishBottomTex[] = dgFieldUnusedFishBottomTex; -#else -static const char gFieldUnusedFishBottomTex[] __attribute__((aligned (2))) = dgFieldUnusedFishBottomTex; -#endif - -#define dgFieldUnusedFishFinTex "__OTR__objects/gameplay_field_keep/gFieldUnusedFishFinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldUnusedFishFinTex[] = dgFieldUnusedFishFinTex; -#else -static const char gFieldUnusedFishFinTex[] __attribute__((aligned (2))) = dgFieldUnusedFishFinTex; -#endif - -#define dgSilverRockDL "__OTR__objects/gameplay_field_keep/gSilverRockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverRockDL[] = dgSilverRockDL; -#else -static const char gSilverRockDL[] __attribute__((aligned (2))) = dgSilverRockDL; -#endif - -#define dgFieldKakeraDL "__OTR__objects/gameplay_field_keep/gFieldKakeraDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldKakeraDL[] = dgFieldKakeraDL; -#else -static const char gFieldKakeraDL[] __attribute__((aligned (2))) = dgFieldKakeraDL; -#endif - -#define dgFieldKakeraTex "__OTR__objects/gameplay_field_keep/gFieldKakeraTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldKakeraTex[] = dgFieldKakeraTex; -#else -static const char gFieldKakeraTex[] __attribute__((aligned (2))) = dgFieldKakeraTex; -#endif - -#define dgSilverRockFragmentsDL "__OTR__objects/gameplay_field_keep/gSilverRockFragmentsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverRockFragmentsDL[] = dgSilverRockFragmentsDL; -#else -static const char gSilverRockFragmentsDL[] __attribute__((aligned (2))) = dgSilverRockFragmentsDL; -#endif - -#define dgFieldBushDL "__OTR__objects/gameplay_field_keep/gFieldBushDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldBushDL[] = dgFieldBushDL; -#else -static const char gFieldBushDL[] __attribute__((aligned (2))) = dgFieldBushDL; -#endif - -#define dgFieldBushTex "__OTR__objects/gameplay_field_keep/gFieldBushTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldBushTex[] = dgFieldBushTex; -#else -static const char gFieldBushTex[] __attribute__((aligned (2))) = dgFieldBushTex; -#endif - -#define dgFieldBeehiveDL "__OTR__objects/gameplay_field_keep/gFieldBeehiveDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldBeehiveDL[] = dgFieldBeehiveDL; -#else -static const char gFieldBeehiveDL[] __attribute__((aligned (2))) = dgFieldBeehiveDL; -#endif - -#define dgFieldBeehiveFragmentDL "__OTR__objects/gameplay_field_keep/gFieldBeehiveFragmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldBeehiveFragmentDL[] = dgFieldBeehiveFragmentDL; -#else -static const char gFieldBeehiveFragmentDL[] __attribute__((aligned (2))) = dgFieldBeehiveFragmentDL; -#endif - -#define dgFieldBeehiveTex "__OTR__objects/gameplay_field_keep/gFieldBeehiveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldBeehiveTex[] = dgFieldBeehiveTex; -#else -static const char gFieldBeehiveTex[] __attribute__((aligned (2))) = dgFieldBeehiveTex; -#endif - -#define dgFieldBeehiveFragmentTex "__OTR__objects/gameplay_field_keep/gFieldBeehiveFragmentTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldBeehiveFragmentTex[] = dgFieldBeehiveFragmentTex; -#else -static const char gFieldBeehiveFragmentTex[] __attribute__((aligned (2))) = dgFieldBeehiveFragmentTex; -#endif - -#define dgFieldSilverRockTex "__OTR__objects/gameplay_field_keep/gFieldSilverRockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldSilverRockTex[] = dgFieldSilverRockTex; -#else -static const char gFieldSilverRockTex[] __attribute__((aligned (2))) = dgFieldSilverRockTex; -#endif - -#define dgFieldSilverRockTLUT "__OTR__objects/gameplay_field_keep/gFieldSilverRockTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldSilverRockTLUT[] = dgFieldSilverRockTLUT; -#else -static const char gFieldSilverRockTLUT[] __attribute__((aligned (2))) = dgFieldSilverRockTLUT; -#endif - -#define dgFieldSandstorm1Tex "__OTR__objects/gameplay_field_keep/gFieldSandstorm1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldSandstorm1Tex[] = dgFieldSandstorm1Tex; -#else -static const char gFieldSandstorm1Tex[] __attribute__((aligned (2))) = dgFieldSandstorm1Tex; -#endif - -#define dgFieldSandstorm2Tex "__OTR__objects/gameplay_field_keep/gFieldSandstorm2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldSandstorm2Tex[] = dgFieldSandstorm2Tex; -#else -static const char gFieldSandstorm2Tex[] __attribute__((aligned (2))) = dgFieldSandstorm2Tex; -#endif - -#define dgFieldSandstormDL "__OTR__objects/gameplay_field_keep/gFieldSandstormDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldSandstormDL[] = dgFieldSandstormDL; -#else -static const char gFieldSandstormDL[] __attribute__((aligned (2))) = dgFieldSandstormDL; -#endif - -#define dgFieldKeepTex_00CB30 "__OTR__objects/gameplay_field_keep/gFieldKeepTex_00CB30" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldKeepTex_00CB30[] = dgFieldKeepTex_00CB30; -#else -static const char gFieldKeepTex_00CB30[] __attribute__((aligned (2))) = dgFieldKeepTex_00CB30; -#endif - -#define dgButterflySkelLimbsLimb_0036A4DL_002530 "__OTR__objects/gameplay_field_keep/gButterflySkelLimbsLimb_0036A4DL_002530" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflySkelLimbsLimb_0036A4DL_002530[] = dgButterflySkelLimbsLimb_0036A4DL_002530; -#else -static const char gButterflySkelLimbsLimb_0036A4DL_002530[] __attribute__((aligned (2))) = dgButterflySkelLimbsLimb_0036A4DL_002530; -#endif - -#define dgButterflySkelLimbsLimb_0036C8DL_002630 "__OTR__objects/gameplay_field_keep/gButterflySkelLimbsLimb_0036C8DL_002630" -#ifdef _WIN32 -static const __declspec(align(2)) char gButterflySkelLimbsLimb_0036C8DL_002630[] = dgButterflySkelLimbsLimb_0036C8DL_002630; -#else -static const char gButterflySkelLimbsLimb_0036C8DL_002630[] __attribute__((aligned (2))) = dgButterflySkelLimbsLimb_0036C8DL_002630; -#endif - -#define dgFieldUnusedFishSkelLimbsLimb_0088CCDL_006458 "__OTR__objects/gameplay_field_keep/gFieldUnusedFishSkelLimbsLimb_0088CCDL_006458" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldUnusedFishSkelLimbsLimb_0088CCDL_006458[] = dgFieldUnusedFishSkelLimbsLimb_0088CCDL_006458; -#else -static const char gFieldUnusedFishSkelLimbsLimb_0088CCDL_006458[] __attribute__((aligned (2))) = dgFieldUnusedFishSkelLimbsLimb_0088CCDL_006458; -#endif - -#define dgFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8 "__OTR__objects/gameplay_field_keep/gFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8[] = dgFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8; -#else -static const char gFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8[] __attribute__((aligned (2))) = dgFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8; -#endif - +#include "align_asset_macro.h" + +#define dgHanaFlower1DL "__OTR__objects/gameplay_field_keep/gHanaFlower1DL" +static const ALIGN_ASSET(2) char gHanaFlower1DL[] = dgHanaFlower1DL; + +#define dgHanaFlower2DL "__OTR__objects/gameplay_field_keep/gHanaFlower2DL" +static const ALIGN_ASSET(2) char gHanaFlower2DL[] = dgHanaFlower2DL; + +#define dgHanaFlower3DL "__OTR__objects/gameplay_field_keep/gHanaFlower3DL" +static const ALIGN_ASSET(2) char gHanaFlower3DL[] = dgHanaFlower3DL; + +#define dgHanaLeaf1DL "__OTR__objects/gameplay_field_keep/gHanaLeaf1DL" +static const ALIGN_ASSET(2) char gHanaLeaf1DL[] = dgHanaLeaf1DL; + +#define dgHanaLeaf2DL "__OTR__objects/gameplay_field_keep/gHanaLeaf2DL" +static const ALIGN_ASSET(2) char gHanaLeaf2DL[] = dgHanaLeaf2DL; + +#define dgHanaLeaf3DL "__OTR__objects/gameplay_field_keep/gHanaLeaf3DL" +static const ALIGN_ASSET(2) char gHanaLeaf3DL[] = dgHanaLeaf3DL; + +#define dgHanaLeaf4DL "__OTR__objects/gameplay_field_keep/gHanaLeaf4DL" +static const ALIGN_ASSET(2) char gHanaLeaf4DL[] = dgHanaLeaf4DL; + +#define dgHanaLeaf5DL "__OTR__objects/gameplay_field_keep/gHanaLeaf5DL" +static const ALIGN_ASSET(2) char gHanaLeaf5DL[] = dgHanaLeaf5DL; + +#define dgHanaFlowerTex "__OTR__objects/gameplay_field_keep/gHanaFlowerTex" +static const ALIGN_ASSET(2) char gHanaFlowerTex[] = dgHanaFlowerTex; + +#define dgHanaLeafTex "__OTR__objects/gameplay_field_keep/gHanaLeafTex" +static const ALIGN_ASSET(2) char gHanaLeafTex[] = dgHanaLeafTex; + +#define dgHanaDL "__OTR__objects/gameplay_field_keep/gHanaDL" +static const ALIGN_ASSET(2) char gHanaDL[] = dgHanaDL; + +#define dgBgBombwallCol "__OTR__objects/gameplay_field_keep/gBgBombwallCol" +static const ALIGN_ASSET(2) char gBgBombwallCol[] = dgBgBombwallCol; + +#define dgBgBombwallNormalDL "__OTR__objects/gameplay_field_keep/gBgBombwallNormalDL" +static const ALIGN_ASSET(2) char gBgBombwallNormalDL[] = dgBgBombwallNormalDL; + +#define dgBgBombwallBrokenDL "__OTR__objects/gameplay_field_keep/gBgBombwallBrokenDL" +static const ALIGN_ASSET(2) char gBgBombwallBrokenDL[] = dgBgBombwallBrokenDL; + +#define dgGrottoDL "__OTR__objects/gameplay_field_keep/gGrottoDL" +static const ALIGN_ASSET(2) char gGrottoDL[] = dgGrottoDL; + +#define dgGrottoTex "__OTR__objects/gameplay_field_keep/gGrottoTex" +static const ALIGN_ASSET(2) char gGrottoTex[] = dgGrottoTex; + +#define dgButterflyDL_002480 "__OTR__objects/gameplay_field_keep/gButterflyDL_002480" +static const ALIGN_ASSET(2) char gButterflyDL_002480[] = dgButterflyDL_002480; + +#define dgButterflyDL_002520 "__OTR__objects/gameplay_field_keep/gButterflyDL_002520" +static const ALIGN_ASSET(2) char gButterflyDL_002520[] = dgButterflyDL_002520; + +#define dgButterflyDL_002580 "__OTR__objects/gameplay_field_keep/gButterflyDL_002580" +static const ALIGN_ASSET(2) char gButterflyDL_002580[] = dgButterflyDL_002580; + +#define dgButterflyDL_002620 "__OTR__objects/gameplay_field_keep/gButterflyDL_002620" +static const ALIGN_ASSET(2) char gButterflyDL_002620[] = dgButterflyDL_002620; + +#define dgButterflyWingTex "__OTR__objects/gameplay_field_keep/gButterflyWingTex" +static const ALIGN_ASSET(2) char gButterflyWingTex[] = dgButterflyWingTex; + +#define dgButterflySkel "__OTR__objects/gameplay_field_keep/gButterflySkel" +static const ALIGN_ASSET(2) char gButterflySkel[] = dgButterflySkel; + +#define dgButterflyAnim "__OTR__objects/gameplay_field_keep/gButterflyAnim" +static const ALIGN_ASSET(2) char gButterflyAnim[] = dgButterflyAnim; + +#define dgBgBombwallTLUT "__OTR__objects/gameplay_field_keep/gBgBombwallTLUT" +static const ALIGN_ASSET(2) char gBgBombwallTLUT[] = dgBgBombwallTLUT; + +#define dgBgBombwallNormalTex "__OTR__objects/gameplay_field_keep/gBgBombwallNormalTex" +static const ALIGN_ASSET(2) char gBgBombwallNormalTex[] = dgBgBombwallNormalTex; + +#define dgBgBombWallBrokenTex "__OTR__objects/gameplay_field_keep/gBgBombWallBrokenTex" +static const ALIGN_ASSET(2) char gBgBombWallBrokenTex[] = dgBgBombWallBrokenTex; + +#define dgFieldDoorDL_004720 "__OTR__objects/gameplay_field_keep/gFieldDoorDL_004720" +static const ALIGN_ASSET(2) char gFieldDoorDL_004720[] = dgFieldDoorDL_004720; + +#define dgFieldDoorLeftDL "__OTR__objects/gameplay_field_keep/gFieldDoorLeftDL" +static const ALIGN_ASSET(2) char gFieldDoorLeftDL[] = dgFieldDoorLeftDL; + +#define dgFieldDoorRightDL "__OTR__objects/gameplay_field_keep/gFieldDoorRightDL" +static const ALIGN_ASSET(2) char gFieldDoorRightDL[] = dgFieldDoorRightDL; + +#define dgFieldDoor1Tex "__OTR__objects/gameplay_field_keep/gFieldDoor1Tex" +static const ALIGN_ASSET(2) char gFieldDoor1Tex[] = dgFieldDoor1Tex; + +#define dgFieldDoorKnobTopHalfTex "__OTR__objects/gameplay_field_keep/gFieldDoorKnobTopHalfTex" +static const ALIGN_ASSET(2) char gFieldDoorKnobTopHalfTex[] = dgFieldDoorKnobTopHalfTex; + +#define dgFieldDoorKnobTex "__OTR__objects/gameplay_field_keep/gFieldDoorKnobTex" +static const ALIGN_ASSET(2) char gFieldDoorKnobTex[] = dgFieldDoorKnobTex; + +#define dgFieldUnusedFishSkel "__OTR__objects/gameplay_field_keep/gFieldUnusedFishSkel" +static const ALIGN_ASSET(2) char gFieldUnusedFishSkel[] = dgFieldUnusedFishSkel; + +#define dgFieldUnusedFishAnim "__OTR__objects/gameplay_field_keep/gFieldUnusedFishAnim" +static const ALIGN_ASSET(2) char gFieldUnusedFishAnim[] = dgFieldUnusedFishAnim; + +#define dgFieldUnusedFishDL "__OTR__objects/gameplay_field_keep/gFieldUnusedFishDL" +static const ALIGN_ASSET(2) char gFieldUnusedFishDL[] = dgFieldUnusedFishDL; + +#define dgFieldSkelUnusedFishDL_0061E8 "__OTR__objects/gameplay_field_keep/gFieldSkelUnusedFishDL_0061E8" +static const ALIGN_ASSET(2) char gFieldSkelUnusedFishDL_0061E8[] = dgFieldSkelUnusedFishDL_0061E8; + +#define dgFieldSkelUnusedFishDL_0063A8 "__OTR__objects/gameplay_field_keep/gFieldSkelUnusedFishDL_0063A8" +static const ALIGN_ASSET(2) char gFieldSkelUnusedFishDL_0063A8[] = dgFieldSkelUnusedFishDL_0063A8; + +#define dgFieldSkelUnusedFishDL_006448 "__OTR__objects/gameplay_field_keep/gFieldSkelUnusedFishDL_006448" +static const ALIGN_ASSET(2) char gFieldSkelUnusedFishDL_006448[] = dgFieldSkelUnusedFishDL_006448; + +#define dgFieldUnusedFishTex "__OTR__objects/gameplay_field_keep/gFieldUnusedFishTex" +static const ALIGN_ASSET(2) char gFieldUnusedFishTex[] = dgFieldUnusedFishTex; + +#define dgFieldUnusedFishBottomTex "__OTR__objects/gameplay_field_keep/gFieldUnusedFishBottomTex" +static const ALIGN_ASSET(2) char gFieldUnusedFishBottomTex[] = dgFieldUnusedFishBottomTex; + +#define dgFieldUnusedFishFinTex "__OTR__objects/gameplay_field_keep/gFieldUnusedFishFinTex" +static const ALIGN_ASSET(2) char gFieldUnusedFishFinTex[] = dgFieldUnusedFishFinTex; + +#define dgSilverRockDL "__OTR__objects/gameplay_field_keep/gSilverRockDL" +static const ALIGN_ASSET(2) char gSilverRockDL[] = dgSilverRockDL; + +#define dgFieldKakeraDL "__OTR__objects/gameplay_field_keep/gFieldKakeraDL" +static const ALIGN_ASSET(2) char gFieldKakeraDL[] = dgFieldKakeraDL; + +#define dgFieldKakeraTex "__OTR__objects/gameplay_field_keep/gFieldKakeraTex" +static const ALIGN_ASSET(2) char gFieldKakeraTex[] = dgFieldKakeraTex; + +#define dgSilverRockFragmentsDL "__OTR__objects/gameplay_field_keep/gSilverRockFragmentsDL" +static const ALIGN_ASSET(2) char gSilverRockFragmentsDL[] = dgSilverRockFragmentsDL; + +#define dgFieldBushDL "__OTR__objects/gameplay_field_keep/gFieldBushDL" +static const ALIGN_ASSET(2) char gFieldBushDL[] = dgFieldBushDL; + +#define dgFieldBushTex "__OTR__objects/gameplay_field_keep/gFieldBushTex" +static const ALIGN_ASSET(2) char gFieldBushTex[] = dgFieldBushTex; + +#define dgFieldBeehiveDL "__OTR__objects/gameplay_field_keep/gFieldBeehiveDL" +static const ALIGN_ASSET(2) char gFieldBeehiveDL[] = dgFieldBeehiveDL; + +#define dgFieldBeehiveFragmentDL "__OTR__objects/gameplay_field_keep/gFieldBeehiveFragmentDL" +static const ALIGN_ASSET(2) char gFieldBeehiveFragmentDL[] = dgFieldBeehiveFragmentDL; + +#define dgFieldBeehiveTex "__OTR__objects/gameplay_field_keep/gFieldBeehiveTex" +static const ALIGN_ASSET(2) char gFieldBeehiveTex[] = dgFieldBeehiveTex; + +#define dgFieldBeehiveFragmentTex "__OTR__objects/gameplay_field_keep/gFieldBeehiveFragmentTex" +static const ALIGN_ASSET(2) char gFieldBeehiveFragmentTex[] = dgFieldBeehiveFragmentTex; + +#define dgFieldSilverRockTex "__OTR__objects/gameplay_field_keep/gFieldSilverRockTex" +static const ALIGN_ASSET(2) char gFieldSilverRockTex[] = dgFieldSilverRockTex; + +#define dgFieldSilverRockTLUT "__OTR__objects/gameplay_field_keep/gFieldSilverRockTLUT" +static const ALIGN_ASSET(2) char gFieldSilverRockTLUT[] = dgFieldSilverRockTLUT; + +#define dgFieldSandstorm1Tex "__OTR__objects/gameplay_field_keep/gFieldSandstorm1Tex" +static const ALIGN_ASSET(2) char gFieldSandstorm1Tex[] = dgFieldSandstorm1Tex; + +#define dgFieldSandstorm2Tex "__OTR__objects/gameplay_field_keep/gFieldSandstorm2Tex" +static const ALIGN_ASSET(2) char gFieldSandstorm2Tex[] = dgFieldSandstorm2Tex; + +#define dgFieldSandstormDL "__OTR__objects/gameplay_field_keep/gFieldSandstormDL" +static const ALIGN_ASSET(2) char gFieldSandstormDL[] = dgFieldSandstormDL; + +#define dgFieldKeepTex_00CB30 "__OTR__objects/gameplay_field_keep/gFieldKeepTex_00CB30" +static const ALIGN_ASSET(2) char gFieldKeepTex_00CB30[] = dgFieldKeepTex_00CB30; + +#define dgButterflySkelLimbsLimb_0036A4DL_002530 "__OTR__objects/gameplay_field_keep/gButterflySkelLimbsLimb_0036A4DL_002530" +static const ALIGN_ASSET(2) char gButterflySkelLimbsLimb_0036A4DL_002530[] = dgButterflySkelLimbsLimb_0036A4DL_002530; + +#define dgButterflySkelLimbsLimb_0036C8DL_002630 "__OTR__objects/gameplay_field_keep/gButterflySkelLimbsLimb_0036C8DL_002630" +static const ALIGN_ASSET(2) char gButterflySkelLimbsLimb_0036C8DL_002630[] = dgButterflySkelLimbsLimb_0036C8DL_002630; + +#define dgFieldUnusedFishSkelLimbsLimb_0088CCDL_006458 "__OTR__objects/gameplay_field_keep/gFieldUnusedFishSkelLimbsLimb_0088CCDL_006458" +static const ALIGN_ASSET(2) char gFieldUnusedFishSkelLimbsLimb_0088CCDL_006458[] = dgFieldUnusedFishSkelLimbsLimb_0088CCDL_006458; + +#define dgFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8 "__OTR__objects/gameplay_field_keep/gFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8" +static const ALIGN_ASSET(2) char gFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8[] = dgFieldUnusedFishSkelLimbsLimb_0088D8DL_0061F8; \ No newline at end of file diff --git a/soh/assets/objects/gameplay_keep/gameplay_keep.h b/soh/assets/objects/gameplay_keep/gameplay_keep.h index 4bdf9f814..c67086b94 100644 --- a/soh/assets/objects/gameplay_keep/gameplay_keep.h +++ b/soh/assets/objects/gameplay_keep/gameplay_keep.h @@ -1,6624 +1,2841 @@ #pragma once -#define dgHilite1Tex "__OTR__objects/gameplay_keep/gHilite1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHilite1Tex[] = dgHilite1Tex; -#else -static const char gHilite1Tex[] __attribute__((aligned (2))) = dgHilite1Tex; -#endif - -#define dgHilite2Tex "__OTR__objects/gameplay_keep/gHilite2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHilite2Tex[] = dgHilite2Tex; -#else -static const char gHilite2Tex[] __attribute__((aligned (2))) = dgHilite2Tex; -#endif - -#define dgHylianShieldDesignTex "__OTR__objects/gameplay_keep/gHylianShieldDesignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHylianShieldDesignTex[] = dgHylianShieldDesignTex; -#else -static const char gHylianShieldDesignTex[] __attribute__((aligned (2))) = dgHylianShieldDesignTex; -#endif - -#define dgOcarinaofTimeDesignTex "__OTR__objects/gameplay_keep/gOcarinaofTimeDesignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaofTimeDesignTex[] = dgOcarinaofTimeDesignTex; -#else -static const char gOcarinaofTimeDesignTex[] __attribute__((aligned (2))) = dgOcarinaofTimeDesignTex; -#endif - -#define dgBottleGlassTex "__OTR__objects/gameplay_keep/gBottleGlassTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottleGlassTex[] = dgBottleGlassTex; -#else -static const char gBottleGlassTex[] __attribute__((aligned (2))) = dgBottleGlassTex; -#endif - -#define dgDekuStickTex "__OTR__objects/gameplay_keep/gDekuStickTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuStickTex[] = dgDekuStickTex; -#else -static const char gDekuStickTex[] __attribute__((aligned (2))) = dgDekuStickTex; -#endif - -#define dgLinkHairTex "__OTR__objects/gameplay_keep/gLinkHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkHairTex[] = dgLinkHairTex; -#else -static const char gLinkHairTex[] __attribute__((aligned (2))) = dgLinkHairTex; -#endif - -#define dgLinkTunic1Tex "__OTR__objects/gameplay_keep/gLinkTunic1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkTunic1Tex[] = dgLinkTunic1Tex; -#else -static const char gLinkTunic1Tex[] __attribute__((aligned (2))) = dgLinkTunic1Tex; -#endif - -#define dgLinkTunic2Tex "__OTR__objects/gameplay_keep/gLinkTunic2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkTunic2Tex[] = dgLinkTunic2Tex; -#else -static const char gLinkTunic2Tex[] __attribute__((aligned (2))) = dgLinkTunic2Tex; -#endif - -#define dgLinkTunic3Tex "__OTR__objects/gameplay_keep/gLinkTunic3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkTunic3Tex[] = dgLinkTunic3Tex; -#else -static const char gLinkTunic3Tex[] __attribute__((aligned (2))) = dgLinkTunic3Tex; -#endif - -#define dgLinkPauseChildJointTable "__OTR__objects/gameplay_keep/gLinkPauseChildJointTable" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkPauseChildJointTable[] = dgLinkPauseChildJointTable; -#else -static const char gLinkPauseChildJointTable[] __attribute__((aligned (2))) = dgLinkPauseChildJointTable; -#endif - -#define dgLinkPauseChildDekuShieldJointTable "__OTR__objects/gameplay_keep/gLinkPauseChildDekuShieldJointTable" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkPauseChildDekuShieldJointTable[] = dgLinkPauseChildDekuShieldJointTable; -#else -static const char gLinkPauseChildDekuShieldJointTable[] __attribute__((aligned (2))) = dgLinkPauseChildDekuShieldJointTable; -#endif - -#define dgLinkPauseAdultBgsJointTable "__OTR__objects/gameplay_keep/gLinkPauseAdultBgsJointTable" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkPauseAdultBgsJointTable[] = dgLinkPauseAdultBgsJointTable; -#else -static const char gLinkPauseAdultBgsJointTable[] __attribute__((aligned (2))) = dgLinkPauseAdultBgsJointTable; -#endif - -#define dgLinkPauseAdultJointTable "__OTR__objects/gameplay_keep/gLinkPauseAdultJointTable" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkPauseAdultJointTable[] = dgLinkPauseAdultJointTable; -#else -static const char gLinkPauseAdultJointTable[] __attribute__((aligned (2))) = dgLinkPauseAdultJointTable; -#endif - -#define dgLinkPauseAdultShieldJointTable "__OTR__objects/gameplay_keep/gLinkPauseAdultShieldJointTable" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkPauseAdultShieldJointTable[] = dgLinkPauseAdultShieldJointTable; -#else -static const char gLinkPauseAdultShieldJointTable[] __attribute__((aligned (2))) = dgLinkPauseAdultShieldJointTable; -#endif - -#define dgPlayerAnim_clink_demo_DDbox_open "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_DDbox_open" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_DDbox_open[] = dgPlayerAnim_clink_demo_DDbox_open; -#else -static const char gPlayerAnim_clink_demo_DDbox_open[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_DDbox_open; -#endif - -#define dgPlayerAnim_clink_demo_Tbox_open "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_Tbox_open" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_Tbox_open[] = dgPlayerAnim_clink_demo_Tbox_open; -#else -static const char gPlayerAnim_clink_demo_Tbox_open[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_Tbox_open; -#endif - -#define dgPlayerAnim_clink_demo_atozusari "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_atozusari" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_atozusari[] = dgPlayerAnim_clink_demo_atozusari; -#else -static const char gPlayerAnim_clink_demo_atozusari[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_atozusari; -#endif - -#define dgPlayerAnim_clink_demo_bashi "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_bashi" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_bashi[] = dgPlayerAnim_clink_demo_bashi; -#else -static const char gPlayerAnim_clink_demo_bashi[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_bashi; -#endif - -#define dgPlayerAnim_clink_demo_doorA_link "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_doorA_link" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_doorA_link[] = dgPlayerAnim_clink_demo_doorA_link; -#else -static const char gPlayerAnim_clink_demo_doorA_link[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_doorA_link; -#endif - -#define dgPlayerAnim_clink_demo_doorB_link "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_doorB_link" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_doorB_link[] = dgPlayerAnim_clink_demo_doorB_link; -#else -static const char gPlayerAnim_clink_demo_doorB_link[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_doorB_link; -#endif - -#define dgPlayerAnim_clink_demo_futtobi "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_futtobi" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_futtobi[] = dgPlayerAnim_clink_demo_futtobi; -#else -static const char gPlayerAnim_clink_demo_futtobi[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_futtobi; -#endif - -#define dgPlayerAnim_clink_demo_get1 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_get1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_get1[] = dgPlayerAnim_clink_demo_get1; -#else -static const char gPlayerAnim_clink_demo_get1[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_get1; -#endif - -#define dgPlayerAnim_clink_demo_get2 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_get2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_get2[] = dgPlayerAnim_clink_demo_get2; -#else -static const char gPlayerAnim_clink_demo_get2[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_get2; -#endif - -#define dgPlayerAnim_clink_demo_get3 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_get3" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_get3[] = dgPlayerAnim_clink_demo_get3; -#else -static const char gPlayerAnim_clink_demo_get3[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_get3; -#endif - -#define dgPlayerAnim_clink_demo_goto_future "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_goto_future" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_goto_future[] = dgPlayerAnim_clink_demo_goto_future; -#else -static const char gPlayerAnim_clink_demo_goto_future[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_goto_future; -#endif - -#define dgPlayerAnim_clink_demo_koutai "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_koutai" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_koutai[] = dgPlayerAnim_clink_demo_koutai; -#else -static const char gPlayerAnim_clink_demo_koutai[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_koutai; -#endif - -#define dgPlayerAnim_clink_demo_koutai_kennuki "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_koutai_kennuki" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_koutai_kennuki[] = dgPlayerAnim_clink_demo_koutai_kennuki; -#else -static const char gPlayerAnim_clink_demo_koutai_kennuki[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_koutai_kennuki; -#endif - -#define dgPlayerAnim_clink_demo_koutai_wait "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_koutai_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_koutai_wait[] = dgPlayerAnim_clink_demo_koutai_wait; -#else -static const char gPlayerAnim_clink_demo_koutai_wait[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_koutai_wait; -#endif - -#define dgPlayerAnim_clink_demo_mimawasi "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_mimawasi" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_mimawasi[] = dgPlayerAnim_clink_demo_mimawasi; -#else -static const char gPlayerAnim_clink_demo_mimawasi[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_mimawasi; -#endif - -#define dgPlayerAnim_clink_demo_mimawasi_wait "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_mimawasi_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_mimawasi_wait[] = dgPlayerAnim_clink_demo_mimawasi_wait; -#else -static const char gPlayerAnim_clink_demo_mimawasi_wait[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_mimawasi_wait; -#endif - -#define dgPlayerAnim_clink_demo_miokuri "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_miokuri" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_miokuri[] = dgPlayerAnim_clink_demo_miokuri; -#else -static const char gPlayerAnim_clink_demo_miokuri[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_miokuri; -#endif - -#define dgPlayerAnim_clink_demo_miokuri_wait "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_miokuri_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_miokuri_wait[] = dgPlayerAnim_clink_demo_miokuri_wait; -#else -static const char gPlayerAnim_clink_demo_miokuri_wait[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_miokuri_wait; -#endif - -#define dgPlayerAnim_clink_demo_nozoki "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_nozoki" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_nozoki[] = dgPlayerAnim_clink_demo_nozoki; -#else -static const char gPlayerAnim_clink_demo_nozoki[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_nozoki; -#endif - -#define dgPlayerAnim_clink_demo_return_to_future "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_return_to_future" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_return_to_future[] = dgPlayerAnim_clink_demo_return_to_future; -#else -static const char gPlayerAnim_clink_demo_return_to_future[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_return_to_future; -#endif - -#define dgPlayerAnim_clink_demo_standup "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_standup" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_standup[] = dgPlayerAnim_clink_demo_standup; -#else -static const char gPlayerAnim_clink_demo_standup[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_standup; -#endif - -#define dgPlayerAnim_clink_demo_standup_wait "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_standup_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_demo_standup_wait[] = dgPlayerAnim_clink_demo_standup_wait; -#else -static const char gPlayerAnim_clink_demo_standup_wait[] __attribute__((aligned (2))) = dgPlayerAnim_clink_demo_standup_wait; -#endif - -#define dgPlayerAnim_clink_normal_climb_endAL "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_endAL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_climb_endAL[] = dgPlayerAnim_clink_normal_climb_endAL; -#else -static const char gPlayerAnim_clink_normal_climb_endAL[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_climb_endAL; -#endif - -#define dgPlayerAnim_clink_normal_climb_endAR "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_endAR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_climb_endAR[] = dgPlayerAnim_clink_normal_climb_endAR; -#else -static const char gPlayerAnim_clink_normal_climb_endAR[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_climb_endAR; -#endif - -#define dgPlayerAnim_clink_normal_climb_endBL "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_endBL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_climb_endBL[] = dgPlayerAnim_clink_normal_climb_endBL; -#else -static const char gPlayerAnim_clink_normal_climb_endBL[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_climb_endBL; -#endif - -#define dgPlayerAnim_clink_normal_climb_endBR "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_endBR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_climb_endBR[] = dgPlayerAnim_clink_normal_climb_endBR; -#else -static const char gPlayerAnim_clink_normal_climb_endBR[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_climb_endBR; -#endif - -#define dgPlayerAnim_clink_normal_climb_startA "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_startA" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_climb_startA[] = dgPlayerAnim_clink_normal_climb_startA; -#else -static const char gPlayerAnim_clink_normal_climb_startA[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_climb_startA; -#endif - -#define dgPlayerAnim_clink_normal_climb_startB "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_startB" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_climb_startB[] = dgPlayerAnim_clink_normal_climb_startB; -#else -static const char gPlayerAnim_clink_normal_climb_startB[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_climb_startB; -#endif - -#define dgPlayerAnim_clink_normal_climb_upL "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_upL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_climb_upL[] = dgPlayerAnim_clink_normal_climb_upL; -#else -static const char gPlayerAnim_clink_normal_climb_upL[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_climb_upL; -#endif - -#define dgPlayerAnim_clink_normal_climb_upR "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_upR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_climb_upR[] = dgPlayerAnim_clink_normal_climb_upR; -#else -static const char gPlayerAnim_clink_normal_climb_upR[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_climb_upR; -#endif - -#define dgPlayerAnim_clink_normal_defense_ALL "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_defense_ALL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_normal_defense_ALL[] = dgPlayerAnim_clink_normal_defense_ALL; -#else -static const char gPlayerAnim_clink_normal_defense_ALL[] __attribute__((aligned (2))) = dgPlayerAnim_clink_normal_defense_ALL; -#endif - -#define dgPlayerAnim_clink_op3_negaeri "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_negaeri" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_op3_negaeri[] = dgPlayerAnim_clink_op3_negaeri; -#else -static const char gPlayerAnim_clink_op3_negaeri[] __attribute__((aligned (2))) = dgPlayerAnim_clink_op3_negaeri; -#endif - -#define dgPlayerAnim_clink_op3_okiagari "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_okiagari" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_op3_okiagari[] = dgPlayerAnim_clink_op3_okiagari; -#else -static const char gPlayerAnim_clink_op3_okiagari[] __attribute__((aligned (2))) = dgPlayerAnim_clink_op3_okiagari; -#endif - -#define dgPlayerAnim_clink_op3_tatiagari "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_tatiagari" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_op3_tatiagari[] = dgPlayerAnim_clink_op3_tatiagari; -#else -static const char gPlayerAnim_clink_op3_tatiagari[] __attribute__((aligned (2))) = dgPlayerAnim_clink_op3_tatiagari; -#endif - -#define dgPlayerAnim_clink_op3_wait1 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_wait1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_op3_wait1[] = dgPlayerAnim_clink_op3_wait1; -#else -static const char gPlayerAnim_clink_op3_wait1[] __attribute__((aligned (2))) = dgPlayerAnim_clink_op3_wait1; -#endif - -#define dgPlayerAnim_clink_op3_wait2 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_wait2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_op3_wait2[] = dgPlayerAnim_clink_op3_wait2; -#else -static const char gPlayerAnim_clink_op3_wait2[] __attribute__((aligned (2))) = dgPlayerAnim_clink_op3_wait2; -#endif - -#define dgPlayerAnim_clink_op3_wait3 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_wait3" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_clink_op3_wait3[] = dgPlayerAnim_clink_op3_wait3; -#else -static const char gPlayerAnim_clink_op3_wait3[] __attribute__((aligned (2))) = dgPlayerAnim_clink_op3_wait3; -#endif - -#define dgPlayerAnim_d_link_imanodare "__OTR__objects/gameplay_keep/gPlayerAnim_d_link_imanodare" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_d_link_imanodare[] = dgPlayerAnim_d_link_imanodare; -#else -static const char gPlayerAnim_d_link_imanodare[] __attribute__((aligned (2))) = dgPlayerAnim_d_link_imanodare; -#endif - -#define dgPlayerAnim_d_link_orooro "__OTR__objects/gameplay_keep/gPlayerAnim_d_link_orooro" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_d_link_orooro[] = dgPlayerAnim_d_link_orooro; -#else -static const char gPlayerAnim_d_link_orooro[] __attribute__((aligned (2))) = dgPlayerAnim_d_link_orooro; -#endif - -#define dgPlayerAnim_d_link_orowait "__OTR__objects/gameplay_keep/gPlayerAnim_d_link_orowait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_d_link_orowait[] = dgPlayerAnim_d_link_orowait; -#else -static const char gPlayerAnim_d_link_orowait[] __attribute__((aligned (2))) = dgPlayerAnim_d_link_orowait; -#endif - -#define dgPlayerAnim_demo_link_nwait "__OTR__objects/gameplay_keep/gPlayerAnim_demo_link_nwait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_demo_link_nwait[] = dgPlayerAnim_demo_link_nwait; -#else -static const char gPlayerAnim_demo_link_nwait[] __attribute__((aligned (2))) = dgPlayerAnim_demo_link_nwait; -#endif - -#define dgPlayerAnim_demo_link_orosuu "__OTR__objects/gameplay_keep/gPlayerAnim_demo_link_orosuu" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_demo_link_orosuu[] = dgPlayerAnim_demo_link_orosuu; -#else -static const char gPlayerAnim_demo_link_orosuu[] __attribute__((aligned (2))) = dgPlayerAnim_demo_link_orosuu; -#endif - -#define dgPlayerAnim_demo_link_tewatashi "__OTR__objects/gameplay_keep/gPlayerAnim_demo_link_tewatashi" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_demo_link_tewatashi[] = dgPlayerAnim_demo_link_tewatashi; -#else -static const char gPlayerAnim_demo_link_tewatashi[] __attribute__((aligned (2))) = dgPlayerAnim_demo_link_tewatashi; -#endif - -#define dgPlayerAnim_demo_link_twait "__OTR__objects/gameplay_keep/gPlayerAnim_demo_link_twait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_demo_link_twait[] = dgPlayerAnim_demo_link_twait; -#else -static const char gPlayerAnim_demo_link_twait[] __attribute__((aligned (2))) = dgPlayerAnim_demo_link_twait; -#endif - -#define dgPlayerAnim_kolink_odoroki_demo "__OTR__objects/gameplay_keep/gPlayerAnim_kolink_odoroki_demo" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_kolink_odoroki_demo[] = dgPlayerAnim_kolink_odoroki_demo; -#else -static const char gPlayerAnim_kolink_odoroki_demo[] __attribute__((aligned (2))) = dgPlayerAnim_kolink_odoroki_demo; -#endif - -#define dgPlayerAnim_link_anchor_LLside_kiru_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_LLside_kiru_endL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_LLside_kiru_endL[] = dgPlayerAnim_link_anchor_LLside_kiru_endL; -#else -static const char gPlayerAnim_link_anchor_LLside_kiru_endL[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_LLside_kiru_endL; -#endif - -#define dgPlayerAnim_link_anchor_LLside_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_LLside_kiru_finsh_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_LLside_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_LLside_kiru_finsh_endR; -#else -static const char gPlayerAnim_link_anchor_LLside_kiru_finsh_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_LLside_kiru_finsh_endR; -#endif - -#define dgPlayerAnim_link_anchor_LRside_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_LRside_kiru_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_LRside_kiru_endR[] = dgPlayerAnim_link_anchor_LRside_kiru_endR; -#else -static const char gPlayerAnim_link_anchor_LRside_kiru_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_LRside_kiru_endR; -#endif - -#define dgPlayerAnim_link_anchor_LRside_kiru_finsh_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_LRside_kiru_finsh_endL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_LRside_kiru_finsh_endL[] = dgPlayerAnim_link_anchor_LRside_kiru_finsh_endL; -#else -static const char gPlayerAnim_link_anchor_LRside_kiru_finsh_endL[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_LRside_kiru_finsh_endL; -#endif - -#define dgPlayerAnim_link_anchor_Lnormal_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lnormal_kiru_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Lnormal_kiru_endR[] = dgPlayerAnim_link_anchor_Lnormal_kiru_endR; -#else -static const char gPlayerAnim_link_anchor_Lnormal_kiru_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Lnormal_kiru_endR; -#endif - -#define dgPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR; -#else -static const char gPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR; -#endif - -#define dgPlayerAnim_link_anchor_Lpierce_kiru_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lpierce_kiru_endL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Lpierce_kiru_endL[] = dgPlayerAnim_link_anchor_Lpierce_kiru_endL; -#else -static const char gPlayerAnim_link_anchor_Lpierce_kiru_endL[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Lpierce_kiru_endL; -#endif - -#define dgPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR; -#else -static const char gPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR; -#endif - -#define dgPlayerAnim_link_anchor_Lrolling_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lrolling_kiru_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Lrolling_kiru_endR[] = dgPlayerAnim_link_anchor_Lrolling_kiru_endR; -#else -static const char gPlayerAnim_link_anchor_Lrolling_kiru_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Lrolling_kiru_endR; -#endif - -#define dgPlayerAnim_link_anchor_Lside_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lside_kiru_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Lside_kiru_endR[] = dgPlayerAnim_link_anchor_Lside_kiru_endR; -#else -static const char gPlayerAnim_link_anchor_Lside_kiru_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Lside_kiru_endR; -#endif - -#define dgPlayerAnim_link_anchor_Lside_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lside_kiru_finsh_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Lside_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_Lside_kiru_finsh_endR; -#else -static const char gPlayerAnim_link_anchor_Lside_kiru_finsh_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Lside_kiru_finsh_endR; -#endif - -#define dgPlayerAnim_link_anchor_Rside_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Rside_kiru_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Rside_kiru_endR[] = dgPlayerAnim_link_anchor_Rside_kiru_endR; -#else -static const char gPlayerAnim_link_anchor_Rside_kiru_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Rside_kiru_endR; -#endif - -#define dgPlayerAnim_link_anchor_Rside_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Rside_kiru_finsh_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_Rside_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_Rside_kiru_finsh_endR; -#else -static const char gPlayerAnim_link_anchor_Rside_kiru_finsh_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_Rside_kiru_finsh_endR; -#endif - -#define dgPlayerAnim_link_anchor_anchor2fighter "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_anchor2fighter" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_anchor2fighter[] = dgPlayerAnim_link_anchor_anchor2fighter; -#else -static const char gPlayerAnim_link_anchor_anchor2fighter[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_anchor2fighter; -#endif - -#define dgPlayerAnim_link_anchor_back_brake "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_back_brake" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_back_brake[] = dgPlayerAnim_link_anchor_back_brake; -#else -static const char gPlayerAnim_link_anchor_back_brake[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_back_brake; -#endif - -#define dgPlayerAnim_link_anchor_back_hitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_back_hitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_back_hitR[] = dgPlayerAnim_link_anchor_back_hitR; -#else -static const char gPlayerAnim_link_anchor_back_hitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_back_hitR; -#endif - -#define dgPlayerAnim_link_anchor_back_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_back_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_back_walk[] = dgPlayerAnim_link_anchor_back_walk; -#else -static const char gPlayerAnim_link_anchor_back_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_back_walk; -#endif - -#define dgPlayerAnim_link_anchor_bom_side_walkL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_bom_side_walkL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_bom_side_walkL[] = dgPlayerAnim_link_anchor_bom_side_walkL; -#else -static const char gPlayerAnim_link_anchor_bom_side_walkL[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_bom_side_walkL; -#endif - -#define dgPlayerAnim_link_anchor_bom_side_walkR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_bom_side_walkR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_bom_side_walkR[] = dgPlayerAnim_link_anchor_bom_side_walkR; -#else -static const char gPlayerAnim_link_anchor_bom_side_walkR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_bom_side_walkR; -#endif - -#define dgPlayerAnim_link_anchor_defense_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_defense_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_defense_hit[] = dgPlayerAnim_link_anchor_defense_hit; -#else -static const char gPlayerAnim_link_anchor_defense_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_defense_hit; -#endif - -#define dgPlayerAnim_link_anchor_defense_long_hitL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_defense_long_hitL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_defense_long_hitL[] = dgPlayerAnim_link_anchor_defense_long_hitL; -#else -static const char gPlayerAnim_link_anchor_defense_long_hitL[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_defense_long_hitL; -#endif - -#define dgPlayerAnim_link_anchor_defense_long_hitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_defense_long_hitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_defense_long_hitR[] = dgPlayerAnim_link_anchor_defense_long_hitR; -#else -static const char gPlayerAnim_link_anchor_defense_long_hitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_defense_long_hitR; -#endif - -#define dgPlayerAnim_link_anchor_front_hitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_front_hitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_front_hitR[] = dgPlayerAnim_link_anchor_front_hitR; -#else -static const char gPlayerAnim_link_anchor_front_hitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_front_hitR; -#endif - -#define dgPlayerAnim_link_anchor_jump_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_jump_kiru_finsh_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_jump_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_jump_kiru_finsh_endR; -#else -static const char gPlayerAnim_link_anchor_jump_kiru_finsh_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_jump_kiru_finsh_endR; -#endif - -#define dgPlayerAnim_link_anchor_landingR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_landingR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_landingR[] = dgPlayerAnim_link_anchor_landingR; -#else -static const char gPlayerAnim_link_anchor_landingR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_landingR; -#endif - -#define dgPlayerAnim_link_anchor_normal_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_normal_kiru_finsh_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_normal_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_normal_kiru_finsh_endR; -#else -static const char gPlayerAnim_link_anchor_normal_kiru_finsh_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_normal_kiru_finsh_endR; -#endif - -#define dgPlayerAnim_link_anchor_pierce_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_pierce_kiru_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_pierce_kiru_endR[] = dgPlayerAnim_link_anchor_pierce_kiru_endR; -#else -static const char gPlayerAnim_link_anchor_pierce_kiru_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_pierce_kiru_endR; -#endif - -#define dgPlayerAnim_link_anchor_pierce_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_pierce_kiru_finsh_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_pierce_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_pierce_kiru_finsh_endR; -#else -static const char gPlayerAnim_link_anchor_pierce_kiru_finsh_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_pierce_kiru_finsh_endR; -#endif - -#define dgPlayerAnim_link_anchor_power_kiru_wait_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_power_kiru_wait_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_power_kiru_wait_endR[] = dgPlayerAnim_link_anchor_power_kiru_wait_endR; -#else -static const char gPlayerAnim_link_anchor_power_kiru_wait_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_power_kiru_wait_endR; -#endif - -#define dgPlayerAnim_link_anchor_rolling_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_rolling_kiru_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_rolling_kiru_endR[] = dgPlayerAnim_link_anchor_rolling_kiru_endR; -#else -static const char gPlayerAnim_link_anchor_rolling_kiru_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_rolling_kiru_endR; -#endif - -#define dgPlayerAnim_link_anchor_side_walkL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_side_walkL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_side_walkL[] = dgPlayerAnim_link_anchor_side_walkL; -#else -static const char gPlayerAnim_link_anchor_side_walkL[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_side_walkL; -#endif - -#define dgPlayerAnim_link_anchor_side_walkR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_side_walkR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_side_walkR[] = dgPlayerAnim_link_anchor_side_walkR; -#else -static const char gPlayerAnim_link_anchor_side_walkR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_side_walkR; -#endif - -#define dgPlayerAnim_002578 "__OTR__objects/gameplay_keep/gPlayerAnim_002578" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002578[] = dgPlayerAnim_002578; -#else -static const char gPlayerAnim_002578[] __attribute__((aligned (2))) = dgPlayerAnim_002578; -#endif - -#define dgPlayerAnim_link_anchor_waitL2defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL2defense" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitL2defense[] = dgPlayerAnim_link_anchor_waitL2defense; -#else -static const char gPlayerAnim_link_anchor_waitL2defense[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitL2defense; -#endif - -#define dgPlayerAnim_link_anchor_waitL2defense_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL2defense_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitL2defense_long[] = dgPlayerAnim_link_anchor_waitL2defense_long; -#else -static const char gPlayerAnim_link_anchor_waitL2defense_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitL2defense_long; -#endif - -#define dgPlayerAnim_link_anchor_waitL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitL[] = dgPlayerAnim_link_anchor_waitL; -#else -static const char gPlayerAnim_link_anchor_waitL[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitL; -#endif - -#define dgPlayerAnim_link_anchor_waitL_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL_defense" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitL_defense[] = dgPlayerAnim_link_anchor_waitL_defense; -#else -static const char gPlayerAnim_link_anchor_waitL_defense[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitL_defense; -#endif - -#define dgPlayerAnim_link_anchor_waitL_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL_defense_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitL_defense_wait[] = dgPlayerAnim_link_anchor_waitL_defense_wait; -#else -static const char gPlayerAnim_link_anchor_waitL_defense_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitL_defense_wait; -#endif - -#define dgPlayerAnim_0025A8 "__OTR__objects/gameplay_keep/gPlayerAnim_0025A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_0025A8[] = dgPlayerAnim_0025A8; -#else -static const char gPlayerAnim_0025A8[] __attribute__((aligned (2))) = dgPlayerAnim_0025A8; -#endif - -#define dgPlayerAnim_link_anchor_waitL_pierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL_pierce_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitL_pierce_kiru[] = dgPlayerAnim_link_anchor_waitL_pierce_kiru; -#else -static const char gPlayerAnim_link_anchor_waitL_pierce_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitL_pierce_kiru; -#endif - -#define dgPlayerAnim_0025B8 "__OTR__objects/gameplay_keep/gPlayerAnim_0025B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_0025B8[] = dgPlayerAnim_0025B8; -#else -static const char gPlayerAnim_0025B8[] __attribute__((aligned (2))) = dgPlayerAnim_0025B8; -#endif - -#define dgPlayerAnim_link_anchor_waitR2defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR2defense" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitR2defense[] = dgPlayerAnim_link_anchor_waitR2defense; -#else -static const char gPlayerAnim_link_anchor_waitR2defense[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitR2defense; -#endif - -#define dgPlayerAnim_link_anchor_waitR2defense_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR2defense_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitR2defense_long[] = dgPlayerAnim_link_anchor_waitR2defense_long; -#else -static const char gPlayerAnim_link_anchor_waitR2defense_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitR2defense_long; -#endif - -#define dgPlayerAnim_link_anchor_waitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitR[] = dgPlayerAnim_link_anchor_waitR; -#else -static const char gPlayerAnim_link_anchor_waitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitR; -#endif - -#define dgPlayerAnim_link_anchor_waitR_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR_defense" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitR_defense[] = dgPlayerAnim_link_anchor_waitR_defense; -#else -static const char gPlayerAnim_link_anchor_waitR_defense[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitR_defense; -#endif - -#define dgPlayerAnim_link_anchor_waitR_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR_defense_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitR_defense_wait[] = dgPlayerAnim_link_anchor_waitR_defense_wait; -#else -static const char gPlayerAnim_link_anchor_waitR_defense_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitR_defense_wait; -#endif - -#define dgPlayerAnim_0025E8 "__OTR__objects/gameplay_keep/gPlayerAnim_0025E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_0025E8[] = dgPlayerAnim_0025E8; -#else -static const char gPlayerAnim_0025E8[] __attribute__((aligned (2))) = dgPlayerAnim_0025E8; -#endif - -#define dgPlayerAnim_link_anchor_waitR_pierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR_pierce_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_anchor_waitR_pierce_kiru[] = dgPlayerAnim_link_anchor_waitR_pierce_kiru; -#else -static const char gPlayerAnim_link_anchor_waitR_pierce_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_anchor_waitR_pierce_kiru; -#endif - -#define dgPlayerAnim_link_boom_catch "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_catch" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_boom_catch[] = dgPlayerAnim_link_boom_catch; -#else -static const char gPlayerAnim_link_boom_catch[] __attribute__((aligned (2))) = dgPlayerAnim_link_boom_catch; -#endif - -#define dgPlayerAnim_link_boom_throwL "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throwL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_boom_throwL[] = dgPlayerAnim_link_boom_throwL; -#else -static const char gPlayerAnim_link_boom_throwL[] __attribute__((aligned (2))) = dgPlayerAnim_link_boom_throwL; -#endif - -#define dgPlayerAnim_link_boom_throwR "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throwR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_boom_throwR[] = dgPlayerAnim_link_boom_throwR; -#else -static const char gPlayerAnim_link_boom_throwR[] __attribute__((aligned (2))) = dgPlayerAnim_link_boom_throwR; -#endif - -#define dgPlayerAnim_002610 "__OTR__objects/gameplay_keep/gPlayerAnim_002610" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002610[] = dgPlayerAnim_002610; -#else -static const char gPlayerAnim_002610[] __attribute__((aligned (2))) = dgPlayerAnim_002610; -#endif - -#define dgPlayerAnim_link_boom_throw_side_walkL "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_side_walkL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_boom_throw_side_walkL[] = dgPlayerAnim_link_boom_throw_side_walkL; -#else -static const char gPlayerAnim_link_boom_throw_side_walkL[] __attribute__((aligned (2))) = dgPlayerAnim_link_boom_throw_side_walkL; -#endif - -#define dgPlayerAnim_link_boom_throw_side_walkR "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_side_walkR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_boom_throw_side_walkR[] = dgPlayerAnim_link_boom_throw_side_walkR; -#else -static const char gPlayerAnim_link_boom_throw_side_walkR[] __attribute__((aligned (2))) = dgPlayerAnim_link_boom_throw_side_walkR; -#endif - -#define dgPlayerAnim_link_boom_throw_wait2waitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_wait2waitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_boom_throw_wait2waitR[] = dgPlayerAnim_link_boom_throw_wait2waitR; -#else -static const char gPlayerAnim_link_boom_throw_wait2waitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_boom_throw_wait2waitR; -#endif - -#define dgPlayerAnim_link_boom_throw_waitL "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_waitL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_boom_throw_waitL[] = dgPlayerAnim_link_boom_throw_waitL; -#else -static const char gPlayerAnim_link_boom_throw_waitL[] __attribute__((aligned (2))) = dgPlayerAnim_link_boom_throw_waitL; -#endif - -#define dgPlayerAnim_link_boom_throw_waitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_waitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_boom_throw_waitR[] = dgPlayerAnim_link_boom_throw_waitR; -#else -static const char gPlayerAnim_link_boom_throw_waitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_boom_throw_waitR; -#endif - -#define dgPlayerAnim_link_bottle_bug_in "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_bug_in" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_bug_in[] = dgPlayerAnim_link_bottle_bug_in; -#else -static const char gPlayerAnim_link_bottle_bug_in[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_bug_in; -#endif - -#define dgPlayerAnim_link_bottle_bug_miss "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_bug_miss" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_bug_miss[] = dgPlayerAnim_link_bottle_bug_miss; -#else -static const char gPlayerAnim_link_bottle_bug_miss[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_bug_miss; -#endif - -#define dgPlayerAnim_link_bottle_bug_out "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_bug_out" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_bug_out[] = dgPlayerAnim_link_bottle_bug_out; -#else -static const char gPlayerAnim_link_bottle_bug_out[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_bug_out; -#endif - -#define dgPlayerAnim_link_bottle_drink_demo "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_drink_demo" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_drink_demo[] = dgPlayerAnim_link_bottle_drink_demo; -#else -static const char gPlayerAnim_link_bottle_drink_demo[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_drink_demo; -#endif - -#define dgPlayerAnim_link_bottle_drink_demo_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_drink_demo_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_drink_demo_end[] = dgPlayerAnim_link_bottle_drink_demo_end; -#else -static const char gPlayerAnim_link_bottle_drink_demo_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_drink_demo_end; -#endif - -#define dgPlayerAnim_link_bottle_drink_demo_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_drink_demo_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_drink_demo_start[] = dgPlayerAnim_link_bottle_drink_demo_start; -#else -static const char gPlayerAnim_link_bottle_drink_demo_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_drink_demo_start; -#endif - -#define dgPlayerAnim_link_bottle_drink_demo_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_drink_demo_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_drink_demo_wait[] = dgPlayerAnim_link_bottle_drink_demo_wait; -#else -static const char gPlayerAnim_link_bottle_drink_demo_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_drink_demo_wait; -#endif - -#define dgPlayerAnim_link_bottle_fish_in "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_fish_in" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_fish_in[] = dgPlayerAnim_link_bottle_fish_in; -#else -static const char gPlayerAnim_link_bottle_fish_in[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_fish_in; -#endif - -#define dgPlayerAnim_link_bottle_fish_miss "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_fish_miss" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_fish_miss[] = dgPlayerAnim_link_bottle_fish_miss; -#else -static const char gPlayerAnim_link_bottle_fish_miss[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_fish_miss; -#endif - -#define dgPlayerAnim_link_bottle_fish_out "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_fish_out" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_fish_out[] = dgPlayerAnim_link_bottle_fish_out; -#else -static const char gPlayerAnim_link_bottle_fish_out[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_fish_out; -#endif - -#define dgPlayerAnim_link_bottle_read "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_read" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_read[] = dgPlayerAnim_link_bottle_read; -#else -static const char gPlayerAnim_link_bottle_read[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_read; -#endif - -#define dgPlayerAnim_link_bottle_read_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_read_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bottle_read_end[] = dgPlayerAnim_link_bottle_read_end; -#else -static const char gPlayerAnim_link_bottle_read_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_bottle_read_end; -#endif - -#define dgPlayerAnim_link_bow_bow_ready "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_ready" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_bow_ready[] = dgPlayerAnim_link_bow_bow_ready; -#else -static const char gPlayerAnim_link_bow_bow_ready[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_bow_ready; -#endif - -#define dgPlayerAnim_link_bow_bow_shoot "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_shoot" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_bow_shoot[] = dgPlayerAnim_link_bow_bow_shoot; -#else -static const char gPlayerAnim_link_bow_bow_shoot[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_bow_shoot; -#endif - -#define dgPlayerAnim_link_bow_bow_shoot_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_shoot_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_bow_shoot_end[] = dgPlayerAnim_link_bow_bow_shoot_end; -#else -static const char gPlayerAnim_link_bow_bow_shoot_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_bow_shoot_end; -#endif - -#define dgPlayerAnim_link_bow_bow_shoot_next "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_shoot_next" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_bow_shoot_next[] = dgPlayerAnim_link_bow_bow_shoot_next; -#else -static const char gPlayerAnim_link_bow_bow_shoot_next[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_bow_shoot_next; -#endif - -#define dgPlayerAnim_link_bow_bow_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_bow_wait[] = dgPlayerAnim_link_bow_bow_wait; -#else -static const char gPlayerAnim_link_bow_bow_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_bow_wait; -#endif - -#define dgPlayerAnim_link_bow_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_defense" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_defense[] = dgPlayerAnim_link_bow_defense; -#else -static const char gPlayerAnim_link_bow_defense[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_defense; -#endif - -#define dgPlayerAnim_link_bow_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_defense_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_defense_wait[] = dgPlayerAnim_link_bow_defense_wait; -#else -static const char gPlayerAnim_link_bow_defense_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_defense_wait; -#endif - -#define dgPlayerAnim_link_bow_side_runL "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_side_runL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_side_runL[] = dgPlayerAnim_link_bow_side_runL; -#else -static const char gPlayerAnim_link_bow_side_runL[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_side_runL; -#endif - -#define dgPlayerAnim_link_bow_side_runR "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_side_runR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_side_runR[] = dgPlayerAnim_link_bow_side_runR; -#else -static const char gPlayerAnim_link_bow_side_runR[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_side_runR; -#endif - -#define dgPlayerAnim_link_bow_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_side_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_side_walk[] = dgPlayerAnim_link_bow_side_walk; -#else -static const char gPlayerAnim_link_bow_side_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_side_walk; -#endif - -#define dgPlayerAnim_link_bow_walk2ready "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_walk2ready" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_bow_walk2ready[] = dgPlayerAnim_link_bow_walk2ready; -#else -static const char gPlayerAnim_link_bow_walk2ready[] __attribute__((aligned (2))) = dgPlayerAnim_link_bow_walk2ready; -#endif - -#define dgPlayerAnim_link_child_tunnel_door "__OTR__objects/gameplay_keep/gPlayerAnim_link_child_tunnel_door" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_child_tunnel_door[] = dgPlayerAnim_link_child_tunnel_door; -#else -static const char gPlayerAnim_link_child_tunnel_door[] __attribute__((aligned (2))) = dgPlayerAnim_link_child_tunnel_door; -#endif - -#define dgPlayerAnim_link_child_tunnel_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_child_tunnel_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_child_tunnel_end[] = dgPlayerAnim_link_child_tunnel_end; -#else -static const char gPlayerAnim_link_child_tunnel_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_child_tunnel_end; -#endif - -#define dgPlayerAnim_link_child_tunnel_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_child_tunnel_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_child_tunnel_start[] = dgPlayerAnim_link_child_tunnel_start; -#else -static const char gPlayerAnim_link_child_tunnel_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_child_tunnel_start; -#endif - -#define dgPlayerAnim_link_demo_DDbox_open "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_DDbox_open" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_DDbox_open[] = dgPlayerAnim_link_demo_DDbox_open; -#else -static const char gPlayerAnim_link_demo_DDbox_open[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_DDbox_open; -#endif - -#define dgPlayerAnim_link_demo_Tbox_open "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_Tbox_open" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_Tbox_open[] = dgPlayerAnim_link_demo_Tbox_open; -#else -static const char gPlayerAnim_link_demo_Tbox_open[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_Tbox_open; -#endif - -#define dgPlayerAnim_link_demo_back_to_past "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_back_to_past" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_back_to_past[] = dgPlayerAnim_link_demo_back_to_past; -#else -static const char gPlayerAnim_link_demo_back_to_past[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_back_to_past; -#endif - -#define dgPlayerAnim_link_demo_baru_op1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_baru_op1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_baru_op1[] = dgPlayerAnim_link_demo_baru_op1; -#else -static const char gPlayerAnim_link_demo_baru_op1[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_baru_op1; -#endif - -#define dgPlayerAnim_link_demo_baru_op2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_baru_op2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_baru_op2[] = dgPlayerAnim_link_demo_baru_op2; -#else -static const char gPlayerAnim_link_demo_baru_op2[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_baru_op2; -#endif - -#define dgPlayerAnim_link_demo_baru_op3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_baru_op3" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_baru_op3[] = dgPlayerAnim_link_demo_baru_op3; -#else -static const char gPlayerAnim_link_demo_baru_op3[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_baru_op3; -#endif - -#define dgPlayerAnim_link_demo_bikkuri "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_bikkuri" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_bikkuri[] = dgPlayerAnim_link_demo_bikkuri; -#else -static const char gPlayerAnim_link_demo_bikkuri[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_bikkuri; -#endif - -#define dgPlayerAnim_link_demo_doorA_link "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_doorA_link" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_doorA_link[] = dgPlayerAnim_link_demo_doorA_link; -#else -static const char gPlayerAnim_link_demo_doorA_link[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_doorA_link; -#endif - -#define dgPlayerAnim_link_demo_doorA_link_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_doorA_link_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_doorA_link_free[] = dgPlayerAnim_link_demo_doorA_link_free; -#else -static const char gPlayerAnim_link_demo_doorA_link_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_doorA_link_free; -#endif - -#define dgPlayerAnim_link_demo_doorB_link "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_doorB_link" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_doorB_link[] = dgPlayerAnim_link_demo_doorB_link; -#else -static const char gPlayerAnim_link_demo_doorB_link[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_doorB_link; -#endif - -#define dgPlayerAnim_link_demo_doorB_link_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_doorB_link_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_doorB_link_free[] = dgPlayerAnim_link_demo_doorB_link_free; -#else -static const char gPlayerAnim_link_demo_doorB_link_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_doorB_link_free; -#endif - -#define dgPlayerAnim_link_demo_furimuki2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_furimuki2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_furimuki2[] = dgPlayerAnim_link_demo_furimuki2; -#else -static const char gPlayerAnim_link_demo_furimuki2[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_furimuki2; -#endif - -#define dgPlayerAnim_link_demo_furimuki2_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_furimuki2_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_furimuki2_wait[] = dgPlayerAnim_link_demo_furimuki2_wait; -#else -static const char gPlayerAnim_link_demo_furimuki2_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_furimuki2_wait; -#endif - -#define dgPlayerAnim_link_demo_furimuki "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_furimuki" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_furimuki[] = dgPlayerAnim_link_demo_furimuki; -#else -static const char gPlayerAnim_link_demo_furimuki[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_furimuki; -#endif - -#define dgPlayerAnim_link_demo_get_itemA "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_get_itemA" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_get_itemA[] = dgPlayerAnim_link_demo_get_itemA; -#else -static const char gPlayerAnim_link_demo_get_itemA[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_get_itemA; -#endif - -#define dgPlayerAnim_link_demo_get_itemB "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_get_itemB" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_get_itemB[] = dgPlayerAnim_link_demo_get_itemB; -#else -static const char gPlayerAnim_link_demo_get_itemB[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_get_itemB; -#endif - -#define dgPlayerAnim_link_demo_goma_furimuki "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_goma_furimuki" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_goma_furimuki[] = dgPlayerAnim_link_demo_goma_furimuki; -#else -static const char gPlayerAnim_link_demo_goma_furimuki[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_goma_furimuki; -#endif - -#define dgPlayerAnim_link_demo_gurad "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_gurad" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_gurad[] = dgPlayerAnim_link_demo_gurad; -#else -static const char gPlayerAnim_link_demo_gurad[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_gurad; -#endif - -#define dgPlayerAnim_link_demo_gurad_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_gurad_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_gurad_wait[] = dgPlayerAnim_link_demo_gurad_wait; -#else -static const char gPlayerAnim_link_demo_gurad_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_gurad_wait; -#endif - -#define dgPlayerAnim_link_demo_jibunmiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_jibunmiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_jibunmiru[] = dgPlayerAnim_link_demo_jibunmiru; -#else -static const char gPlayerAnim_link_demo_jibunmiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_jibunmiru; -#endif - -#define dgPlayerAnim_link_demo_kakeyori "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kakeyori[] = dgPlayerAnim_link_demo_kakeyori; -#else -static const char gPlayerAnim_link_demo_kakeyori[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kakeyori; -#endif - -#define dgPlayerAnim_link_demo_kakeyori_mimawasi "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori_mimawasi" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kakeyori_mimawasi[] = dgPlayerAnim_link_demo_kakeyori_mimawasi; -#else -static const char gPlayerAnim_link_demo_kakeyori_mimawasi[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kakeyori_mimawasi; -#endif - -#define dgPlayerAnim_link_demo_kakeyori_miokuri "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori_miokuri" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kakeyori_miokuri[] = dgPlayerAnim_link_demo_kakeyori_miokuri; -#else -static const char gPlayerAnim_link_demo_kakeyori_miokuri[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kakeyori_miokuri; -#endif - -#define dgPlayerAnim_link_demo_kakeyori_miokuri_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori_miokuri_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kakeyori_miokuri_wait[] = dgPlayerAnim_link_demo_kakeyori_miokuri_wait; -#else -static const char gPlayerAnim_link_demo_kakeyori_miokuri_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kakeyori_miokuri_wait; -#endif - -#define dgPlayerAnim_link_demo_kakeyori_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kakeyori_wait[] = dgPlayerAnim_link_demo_kakeyori_wait; -#else -static const char gPlayerAnim_link_demo_kakeyori_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kakeyori_wait; -#endif - -#define dgPlayerAnim_link_demo_kaoage "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kaoage" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kaoage[] = dgPlayerAnim_link_demo_kaoage; -#else -static const char gPlayerAnim_link_demo_kaoage[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kaoage; -#endif - -#define dgPlayerAnim_link_demo_kaoage_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kaoage_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kaoage_wait[] = dgPlayerAnim_link_demo_kaoage_wait; -#else -static const char gPlayerAnim_link_demo_kaoage_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kaoage_wait; -#endif - -#define dgPlayerAnim_link_demo_kenmiru1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kenmiru1[] = dgPlayerAnim_link_demo_kenmiru1; -#else -static const char gPlayerAnim_link_demo_kenmiru1[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kenmiru1; -#endif - -#define dgPlayerAnim_link_demo_kenmiru1_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru1_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kenmiru1_wait[] = dgPlayerAnim_link_demo_kenmiru1_wait; -#else -static const char gPlayerAnim_link_demo_kenmiru1_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kenmiru1_wait; -#endif - -#define dgPlayerAnim_link_demo_kenmiru2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kenmiru2[] = dgPlayerAnim_link_demo_kenmiru2; -#else -static const char gPlayerAnim_link_demo_kenmiru2[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kenmiru2; -#endif - -#define dgPlayerAnim_link_demo_kenmiru2_modori "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru2_modori" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kenmiru2_modori[] = dgPlayerAnim_link_demo_kenmiru2_modori; -#else -static const char gPlayerAnim_link_demo_kenmiru2_modori[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kenmiru2_modori; -#endif - -#define dgPlayerAnim_link_demo_kenmiru2_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru2_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kenmiru2_wait[] = dgPlayerAnim_link_demo_kenmiru2_wait; -#else -static const char gPlayerAnim_link_demo_kenmiru2_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kenmiru2_wait; -#endif - -#define dgPlayerAnim_link_demo_kousan "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kousan" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_kousan[] = dgPlayerAnim_link_demo_kousan; -#else -static const char gPlayerAnim_link_demo_kousan[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_kousan; -#endif - -#define dgPlayerAnim_link_demo_look_hand "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_look_hand" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_look_hand[] = dgPlayerAnim_link_demo_look_hand; -#else -static const char gPlayerAnim_link_demo_look_hand[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_look_hand; -#endif - -#define dgPlayerAnim_link_demo_look_hand_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_look_hand_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_look_hand_wait[] = dgPlayerAnim_link_demo_look_hand_wait; -#else -static const char gPlayerAnim_link_demo_look_hand_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_look_hand_wait; -#endif - -#define dgPlayerAnim_link_demo_nozokikomi "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_nozokikomi" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_nozokikomi[] = dgPlayerAnim_link_demo_nozokikomi; -#else -static const char gPlayerAnim_link_demo_nozokikomi[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_nozokikomi; -#endif - -#define dgPlayerAnim_link_demo_nozokikomi_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_nozokikomi_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_nozokikomi_wait[] = dgPlayerAnim_link_demo_nozokikomi_wait; -#else -static const char gPlayerAnim_link_demo_nozokikomi_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_nozokikomi_wait; -#endif - -#define dgPlayerAnim_link_demo_return_to_past "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_return_to_past" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_return_to_past[] = dgPlayerAnim_link_demo_return_to_past; -#else -static const char gPlayerAnim_link_demo_return_to_past[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_return_to_past; -#endif - -#define dgPlayerAnim_002840 "__OTR__objects/gameplay_keep/gPlayerAnim_002840" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002840[] = dgPlayerAnim_002840; -#else -static const char gPlayerAnim_002840[] __attribute__((aligned (2))) = dgPlayerAnim_002840; -#endif - -#define dgPlayerAnim_link_demo_sita_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_sita_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_sita_wait[] = dgPlayerAnim_link_demo_sita_wait; -#else -static const char gPlayerAnim_link_demo_sita_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_sita_wait; -#endif - -#define dgPlayerAnim_link_demo_ue "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_ue" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_ue[] = dgPlayerAnim_link_demo_ue; -#else -static const char gPlayerAnim_link_demo_ue[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_ue; -#endif - -#define dgPlayerAnim_link_demo_ue_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_ue_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_ue_wait[] = dgPlayerAnim_link_demo_ue_wait; -#else -static const char gPlayerAnim_link_demo_ue_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_ue_wait; -#endif - -#define dgPlayerAnim_link_demo_warp "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_warp" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_warp[] = dgPlayerAnim_link_demo_warp; -#else -static const char gPlayerAnim_link_demo_warp[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_warp; -#endif - -#define dgPlayerAnim_link_demo_zeldamiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_zeldamiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_zeldamiru[] = dgPlayerAnim_link_demo_zeldamiru; -#else -static const char gPlayerAnim_link_demo_zeldamiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_zeldamiru; -#endif - -#define dgPlayerAnim_link_demo_zeldamiru_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_zeldamiru_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_demo_zeldamiru_wait[] = dgPlayerAnim_link_demo_zeldamiru_wait; -#else -static const char gPlayerAnim_link_demo_zeldamiru_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_demo_zeldamiru_wait; -#endif - -#define dgPlayerAnim_link_derth_rebirth "__OTR__objects/gameplay_keep/gPlayerAnim_link_derth_rebirth" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_derth_rebirth[] = dgPlayerAnim_link_derth_rebirth; -#else -static const char gPlayerAnim_link_derth_rebirth[] __attribute__((aligned (2))) = dgPlayerAnim_link_derth_rebirth; -#endif - -#define dgPlayerAnim_link_fighter_LLside_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LLside_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_LLside_kiru[] = dgPlayerAnim_link_fighter_LLside_kiru; -#else -static const char gPlayerAnim_link_fighter_LLside_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_LLside_kiru; -#endif - -#define dgPlayerAnim_link_fighter_LLside_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LLside_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_LLside_kiru_end[] = dgPlayerAnim_link_fighter_LLside_kiru_end; -#else -static const char gPlayerAnim_link_fighter_LLside_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_LLside_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_LLside_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LLside_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_LLside_kiru_finsh[] = dgPlayerAnim_link_fighter_LLside_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_LLside_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_LLside_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_LLside_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LLside_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_LLside_kiru_finsh_end[] = dgPlayerAnim_link_fighter_LLside_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_LLside_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_LLside_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_LRside_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LRside_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_LRside_kiru[] = dgPlayerAnim_link_fighter_LRside_kiru; -#else -static const char gPlayerAnim_link_fighter_LRside_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_LRside_kiru; -#endif - -#define dgPlayerAnim_link_fighter_LRside_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LRside_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_LRside_kiru_end[] = dgPlayerAnim_link_fighter_LRside_kiru_end; -#else -static const char gPlayerAnim_link_fighter_LRside_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_LRside_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_LRside_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LRside_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_LRside_kiru_finsh[] = dgPlayerAnim_link_fighter_LRside_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_LRside_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_LRside_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_LRside_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LRside_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_LRside_kiru_finsh_end[] = dgPlayerAnim_link_fighter_LRside_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_LRside_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_LRside_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_Lnormal_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lnormal_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lnormal_kiru[] = dgPlayerAnim_link_fighter_Lnormal_kiru; -#else -static const char gPlayerAnim_link_fighter_Lnormal_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lnormal_kiru; -#endif - -#define dgPlayerAnim_link_fighter_Lnormal_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lnormal_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lnormal_kiru_end[] = dgPlayerAnim_link_fighter_Lnormal_kiru_end; -#else -static const char gPlayerAnim_link_fighter_Lnormal_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lnormal_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_Lnormal_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lnormal_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lnormal_kiru_finsh[] = dgPlayerAnim_link_fighter_Lnormal_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_Lnormal_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lnormal_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_Lnormal_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lnormal_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lnormal_kiru_finsh_end[] = dgPlayerAnim_link_fighter_Lnormal_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_Lnormal_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lnormal_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_Lpierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpierce_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpierce_kiru[] = dgPlayerAnim_link_fighter_Lpierce_kiru; -#else -static const char gPlayerAnim_link_fighter_Lpierce_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpierce_kiru; -#endif - -#define dgPlayerAnim_link_fighter_Lpierce_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpierce_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpierce_kiru_end[] = dgPlayerAnim_link_fighter_Lpierce_kiru_end; -#else -static const char gPlayerAnim_link_fighter_Lpierce_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpierce_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_Lpierce_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpierce_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpierce_kiru_finsh[] = dgPlayerAnim_link_fighter_Lpierce_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_Lpierce_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpierce_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_Lpierce_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpierce_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpierce_kiru_finsh_end[] = dgPlayerAnim_link_fighter_Lpierce_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_Lpierce_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpierce_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_Lpower_jump_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_jump_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpower_jump_kiru[] = dgPlayerAnim_link_fighter_Lpower_jump_kiru; -#else -static const char gPlayerAnim_link_fighter_Lpower_jump_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpower_jump_kiru; -#endif - -#define dgPlayerAnim_link_fighter_Lpower_jump_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_jump_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpower_jump_kiru_end[] = dgPlayerAnim_link_fighter_Lpower_jump_kiru_end; -#else -static const char gPlayerAnim_link_fighter_Lpower_jump_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpower_jump_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_Lpower_jump_kiru_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_jump_kiru_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpower_jump_kiru_hit[] = dgPlayerAnim_link_fighter_Lpower_jump_kiru_hit; -#else -static const char gPlayerAnim_link_fighter_Lpower_jump_kiru_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpower_jump_kiru_hit; -#endif - -#define dgPlayerAnim_link_fighter_Lpower_kiru_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_side_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpower_kiru_side_walk[] = dgPlayerAnim_link_fighter_Lpower_kiru_side_walk; -#else -static const char gPlayerAnim_link_fighter_Lpower_kiru_side_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpower_kiru_side_walk; -#endif - -#define dgPlayerAnim_link_fighter_Lpower_kiru_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpower_kiru_start[] = dgPlayerAnim_link_fighter_Lpower_kiru_start; -#else -static const char gPlayerAnim_link_fighter_Lpower_kiru_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpower_kiru_start; -#endif - -#define dgPlayerAnim_link_fighter_Lpower_kiru_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpower_kiru_wait[] = dgPlayerAnim_link_fighter_Lpower_kiru_wait; -#else -static const char gPlayerAnim_link_fighter_Lpower_kiru_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpower_kiru_wait; -#endif - -#define dgPlayerAnim_link_fighter_Lpower_kiru_wait_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_wait_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpower_kiru_wait_end[] = dgPlayerAnim_link_fighter_Lpower_kiru_wait_end; -#else -static const char gPlayerAnim_link_fighter_Lpower_kiru_wait_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpower_kiru_wait_end; -#endif - -#define dgPlayerAnim_link_fighter_Lpower_kiru_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lpower_kiru_walk[] = dgPlayerAnim_link_fighter_Lpower_kiru_walk; -#else -static const char gPlayerAnim_link_fighter_Lpower_kiru_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lpower_kiru_walk; -#endif - -#define dgPlayerAnim_link_fighter_Lrolling_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lrolling_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lrolling_kiru[] = dgPlayerAnim_link_fighter_Lrolling_kiru; -#else -static const char gPlayerAnim_link_fighter_Lrolling_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lrolling_kiru; -#endif - -#define dgPlayerAnim_link_fighter_Lrolling_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lrolling_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lrolling_kiru_end[] = dgPlayerAnim_link_fighter_Lrolling_kiru_end; -#else -static const char gPlayerAnim_link_fighter_Lrolling_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lrolling_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_Lside_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_jump" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lside_jump[] = dgPlayerAnim_link_fighter_Lside_jump; -#else -static const char gPlayerAnim_link_fighter_Lside_jump[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lside_jump; -#endif - -#define dgPlayerAnim_link_fighter_Lside_jump_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_jump_endL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lside_jump_endL[] = dgPlayerAnim_link_fighter_Lside_jump_endL; -#else -static const char gPlayerAnim_link_fighter_Lside_jump_endL[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lside_jump_endL; -#endif - -#define dgPlayerAnim_link_fighter_Lside_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_jump_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lside_jump_end[] = dgPlayerAnim_link_fighter_Lside_jump_end; -#else -static const char gPlayerAnim_link_fighter_Lside_jump_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lside_jump_end; -#endif - -#define dgPlayerAnim_link_fighter_Lside_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lside_kiru[] = dgPlayerAnim_link_fighter_Lside_kiru; -#else -static const char gPlayerAnim_link_fighter_Lside_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lside_kiru; -#endif - -#define dgPlayerAnim_link_fighter_Lside_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lside_kiru_end[] = dgPlayerAnim_link_fighter_Lside_kiru_end; -#else -static const char gPlayerAnim_link_fighter_Lside_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lside_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_Lside_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lside_kiru_finsh[] = dgPlayerAnim_link_fighter_Lside_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_Lside_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lside_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_Lside_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Lside_kiru_finsh_end[] = dgPlayerAnim_link_fighter_Lside_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_Lside_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Lside_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_Rside_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_jump" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Rside_jump[] = dgPlayerAnim_link_fighter_Rside_jump; -#else -static const char gPlayerAnim_link_fighter_Rside_jump[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Rside_jump; -#endif - -#define dgPlayerAnim_link_fighter_Rside_jump_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_jump_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Rside_jump_endR[] = dgPlayerAnim_link_fighter_Rside_jump_endR; -#else -static const char gPlayerAnim_link_fighter_Rside_jump_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Rside_jump_endR; -#endif - -#define dgPlayerAnim_link_fighter_Rside_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_jump_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Rside_jump_end[] = dgPlayerAnim_link_fighter_Rside_jump_end; -#else -static const char gPlayerAnim_link_fighter_Rside_jump_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Rside_jump_end; -#endif - -#define dgPlayerAnim_link_fighter_Rside_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Rside_kiru[] = dgPlayerAnim_link_fighter_Rside_kiru; -#else -static const char gPlayerAnim_link_fighter_Rside_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Rside_kiru; -#endif - -#define dgPlayerAnim_link_fighter_Rside_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Rside_kiru_end[] = dgPlayerAnim_link_fighter_Rside_kiru_end; -#else -static const char gPlayerAnim_link_fighter_Rside_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Rside_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_Rside_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Rside_kiru_finsh[] = dgPlayerAnim_link_fighter_Rside_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_Rside_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Rside_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_Rside_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Rside_kiru_finsh_end[] = dgPlayerAnim_link_fighter_Rside_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_Rside_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Rside_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_Wrolling_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Wrolling_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Wrolling_kiru[] = dgPlayerAnim_link_fighter_Wrolling_kiru; -#else -static const char gPlayerAnim_link_fighter_Wrolling_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Wrolling_kiru; -#endif - -#define dgPlayerAnim_link_fighter_Wrolling_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Wrolling_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_Wrolling_kiru_end[] = dgPlayerAnim_link_fighter_Wrolling_kiru_end; -#else -static const char gPlayerAnim_link_fighter_Wrolling_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_Wrolling_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_backturn_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_backturn_jump" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_backturn_jump[] = dgPlayerAnim_link_fighter_backturn_jump; -#else -static const char gPlayerAnim_link_fighter_backturn_jump[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_backturn_jump; -#endif - -#define dgPlayerAnim_link_fighter_backturn_jump_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_backturn_jump_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_backturn_jump_endR[] = dgPlayerAnim_link_fighter_backturn_jump_endR; -#else -static const char gPlayerAnim_link_fighter_backturn_jump_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_backturn_jump_endR; -#endif - -#define dgPlayerAnim_link_fighter_backturn_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_backturn_jump_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_backturn_jump_end[] = dgPlayerAnim_link_fighter_backturn_jump_end; -#else -static const char gPlayerAnim_link_fighter_backturn_jump_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_backturn_jump_end; -#endif - -#define dgPlayerAnim_link_fighter_damage_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_damage_run" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_damage_run[] = dgPlayerAnim_link_fighter_damage_run; -#else -static const char gPlayerAnim_link_fighter_damage_run[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_damage_run; -#endif - -#define dgPlayerAnim_link_fighter_damage_run_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_damage_run_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_damage_run_long[] = dgPlayerAnim_link_fighter_damage_run_long; -#else -static const char gPlayerAnim_link_fighter_damage_run_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_damage_run_long; -#endif - -#define dgPlayerAnim_link_fighter_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_defense[] = dgPlayerAnim_link_fighter_defense; -#else -static const char gPlayerAnim_link_fighter_defense[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_defense; -#endif - -#define dgPlayerAnim_link_fighter_defense_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_defense_long[] = dgPlayerAnim_link_fighter_defense_long; -#else -static const char gPlayerAnim_link_fighter_defense_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_defense_long; -#endif - -#define dgPlayerAnim_link_fighter_defense_long_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense_long_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_defense_long_hit[] = dgPlayerAnim_link_fighter_defense_long_hit; -#else -static const char gPlayerAnim_link_fighter_defense_long_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_defense_long_hit; -#endif - -#define dgPlayerAnim_link_fighter_defense_long_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense_long_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_defense_long_wait[] = dgPlayerAnim_link_fighter_defense_long_wait; -#else -static const char gPlayerAnim_link_fighter_defense_long_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_defense_long_wait; -#endif - -#define dgPlayerAnim_link_fighter_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_defense_wait[] = dgPlayerAnim_link_fighter_defense_wait; -#else -static const char gPlayerAnim_link_fighter_defense_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_defense_wait; -#endif - -#define dgPlayerAnim_link_fighter_fighter2long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_fighter2long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_fighter2long[] = dgPlayerAnim_link_fighter_fighter2long; -#else -static const char gPlayerAnim_link_fighter_fighter2long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_fighter2long; -#endif - -#define dgPlayerAnim_link_fighter_front_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_front_jump" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_front_jump[] = dgPlayerAnim_link_fighter_front_jump; -#else -static const char gPlayerAnim_link_fighter_front_jump[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_front_jump; -#endif - -#define dgPlayerAnim_link_fighter_front_jump_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_front_jump_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_front_jump_endR[] = dgPlayerAnim_link_fighter_front_jump_endR; -#else -static const char gPlayerAnim_link_fighter_front_jump_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_front_jump_endR; -#endif - -#define dgPlayerAnim_link_fighter_front_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_front_jump_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_front_jump_end[] = dgPlayerAnim_link_fighter_front_jump_end; -#else -static const char gPlayerAnim_link_fighter_front_jump_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_front_jump_end; -#endif - -#define dgPlayerAnim_link_fighter_heavy_run_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_heavy_run_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_heavy_run_long[] = dgPlayerAnim_link_fighter_heavy_run_long; -#else -static const char gPlayerAnim_link_fighter_heavy_run_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_heavy_run_long; -#endif - -#define dgPlayerAnim_link_fighter_jump_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_jump_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_jump_kiru[] = dgPlayerAnim_link_fighter_jump_kiru; -#else -static const char gPlayerAnim_link_fighter_jump_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_jump_kiru; -#endif - -#define dgPlayerAnim_link_fighter_jump_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_jump_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_jump_kiru_finsh[] = dgPlayerAnim_link_fighter_jump_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_jump_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_jump_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_jump_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_jump_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_jump_kiru_finsh_end[] = dgPlayerAnim_link_fighter_jump_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_jump_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_jump_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_jump_rollkiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_jump_rollkiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_jump_rollkiru[] = dgPlayerAnim_link_fighter_jump_rollkiru; -#else -static const char gPlayerAnim_link_fighter_jump_rollkiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_jump_rollkiru; -#endif - -#define dgPlayerAnim_link_fighter_landing_roll_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_landing_roll_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_landing_roll_long[] = dgPlayerAnim_link_fighter_landing_roll_long; -#else -static const char gPlayerAnim_link_fighter_landing_roll_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_landing_roll_long; -#endif - -#define dgPlayerAnim_link_fighter_normal2fighter "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal2fighter" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_normal2fighter[] = dgPlayerAnim_link_fighter_normal2fighter; -#else -static const char gPlayerAnim_link_fighter_normal2fighter[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_normal2fighter; -#endif - -#define dgPlayerAnim_002A78 "__OTR__objects/gameplay_keep/gPlayerAnim_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002A78[] = dgPlayerAnim_002A78; -#else -static const char gPlayerAnim_002A78[] __attribute__((aligned (2))) = dgPlayerAnim_002A78; -#endif - -#define dgPlayerAnim_link_fighter_normal_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_normal_kiru[] = dgPlayerAnim_link_fighter_normal_kiru; -#else -static const char gPlayerAnim_link_fighter_normal_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_normal_kiru; -#endif - -#define dgPlayerAnim_link_fighter_normal_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_normal_kiru_endR[] = dgPlayerAnim_link_fighter_normal_kiru_endR; -#else -static const char gPlayerAnim_link_fighter_normal_kiru_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_normal_kiru_endR; -#endif - -#define dgPlayerAnim_link_fighter_normal_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_normal_kiru_end[] = dgPlayerAnim_link_fighter_normal_kiru_end; -#else -static const char gPlayerAnim_link_fighter_normal_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_normal_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_normal_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_normal_kiru_finsh[] = dgPlayerAnim_link_fighter_normal_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_normal_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_normal_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_normal_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_normal_kiru_finsh_end[] = dgPlayerAnim_link_fighter_normal_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_normal_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_normal_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_pierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_pierce_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_pierce_kiru[] = dgPlayerAnim_link_fighter_pierce_kiru; -#else -static const char gPlayerAnim_link_fighter_pierce_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_pierce_kiru; -#endif - -#define dgPlayerAnim_link_fighter_pierce_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_pierce_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_pierce_kiru_end[] = dgPlayerAnim_link_fighter_pierce_kiru_end; -#else -static const char gPlayerAnim_link_fighter_pierce_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_pierce_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_pierce_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_pierce_kiru_finsh" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_pierce_kiru_finsh[] = dgPlayerAnim_link_fighter_pierce_kiru_finsh; -#else -static const char gPlayerAnim_link_fighter_pierce_kiru_finsh[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_pierce_kiru_finsh; -#endif - -#define dgPlayerAnim_link_fighter_pierce_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_pierce_kiru_finsh_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_pierce_kiru_finsh_end[] = dgPlayerAnim_link_fighter_pierce_kiru_finsh_end; -#else -static const char gPlayerAnim_link_fighter_pierce_kiru_finsh_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_pierce_kiru_finsh_end; -#endif - -#define dgPlayerAnim_link_fighter_power_jump_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_jump_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_power_jump_kiru_end[] = dgPlayerAnim_link_fighter_power_jump_kiru_end; -#else -static const char gPlayerAnim_link_fighter_power_jump_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_power_jump_kiru_end; -#endif - -#define dgPlayerAnim_002AD0 "__OTR__objects/gameplay_keep/gPlayerAnim_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002AD0[] = dgPlayerAnim_002AD0; -#else -static const char gPlayerAnim_002AD0[] __attribute__((aligned (2))) = dgPlayerAnim_002AD0; -#endif - -#define dgPlayerAnim_link_fighter_power_kiru_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_side_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_power_kiru_side_walk[] = dgPlayerAnim_link_fighter_power_kiru_side_walk; -#else -static const char gPlayerAnim_link_fighter_power_kiru_side_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_power_kiru_side_walk; -#endif - -#define dgPlayerAnim_link_fighter_power_kiru_startL "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_startL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_power_kiru_startL[] = dgPlayerAnim_link_fighter_power_kiru_startL; -#else -static const char gPlayerAnim_link_fighter_power_kiru_startL[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_power_kiru_startL; -#endif - -#define dgPlayerAnim_link_fighter_power_kiru_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_power_kiru_start[] = dgPlayerAnim_link_fighter_power_kiru_start; -#else -static const char gPlayerAnim_link_fighter_power_kiru_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_power_kiru_start; -#endif - -#define dgPlayerAnim_link_fighter_power_kiru_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_power_kiru_wait[] = dgPlayerAnim_link_fighter_power_kiru_wait; -#else -static const char gPlayerAnim_link_fighter_power_kiru_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_power_kiru_wait; -#endif - -#define dgPlayerAnim_link_fighter_power_kiru_wait_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_wait_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_power_kiru_wait_end[] = dgPlayerAnim_link_fighter_power_kiru_wait_end; -#else -static const char gPlayerAnim_link_fighter_power_kiru_wait_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_power_kiru_wait_end; -#endif - -#define dgPlayerAnim_link_fighter_power_kiru_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_power_kiru_walk[] = dgPlayerAnim_link_fighter_power_kiru_walk; -#else -static const char gPlayerAnim_link_fighter_power_kiru_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_power_kiru_walk; -#endif - -#define dgPlayerAnim_link_fighter_reboundR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_reboundR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_reboundR[] = dgPlayerAnim_link_fighter_reboundR; -#else -static const char gPlayerAnim_link_fighter_reboundR[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_reboundR; -#endif - -#define dgPlayerAnim_link_fighter_rebound "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rebound" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_rebound[] = dgPlayerAnim_link_fighter_rebound; -#else -static const char gPlayerAnim_link_fighter_rebound[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_rebound; -#endif - -#define dgPlayerAnim_link_fighter_rebound_longR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rebound_longR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_rebound_longR[] = dgPlayerAnim_link_fighter_rebound_longR; -#else -static const char gPlayerAnim_link_fighter_rebound_longR[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_rebound_longR; -#endif - -#define dgPlayerAnim_link_fighter_rebound_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rebound_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_rebound_long[] = dgPlayerAnim_link_fighter_rebound_long; -#else -static const char gPlayerAnim_link_fighter_rebound_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_rebound_long; -#endif - -#define dgPlayerAnim_link_fighter_rolling_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rolling_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_rolling_kiru[] = dgPlayerAnim_link_fighter_rolling_kiru; -#else -static const char gPlayerAnim_link_fighter_rolling_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_rolling_kiru; -#endif - -#define dgPlayerAnim_link_fighter_rolling_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rolling_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_rolling_kiru_end[] = dgPlayerAnim_link_fighter_rolling_kiru_end; -#else -static const char gPlayerAnim_link_fighter_rolling_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_rolling_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_run" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_run[] = dgPlayerAnim_link_fighter_run; -#else -static const char gPlayerAnim_link_fighter_run[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_run; -#endif - -#define dgPlayerAnim_link_fighter_run_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_run_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_run_long[] = dgPlayerAnim_link_fighter_run_long; -#else -static const char gPlayerAnim_link_fighter_run_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_run_long; -#endif - -#define dgPlayerAnim_002B48 "__OTR__objects/gameplay_keep/gPlayerAnim_002B48" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002B48[] = dgPlayerAnim_002B48; -#else -static const char gPlayerAnim_002B48[] __attribute__((aligned (2))) = dgPlayerAnim_002B48; -#endif - -#define dgPlayerAnim_002B50 "__OTR__objects/gameplay_keep/gPlayerAnim_002B50" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002B50[] = dgPlayerAnim_002B50; -#else -static const char gPlayerAnim_002B50[] __attribute__((aligned (2))) = dgPlayerAnim_002B50; -#endif - -#define dgPlayerAnim_link_fighter_side_walkL_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_side_walkL_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_side_walkL_long[] = dgPlayerAnim_link_fighter_side_walkL_long; -#else -static const char gPlayerAnim_link_fighter_side_walkL_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_side_walkL_long; -#endif - -#define dgPlayerAnim_link_fighter_side_walkR_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_side_walkR_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_side_walkR_long[] = dgPlayerAnim_link_fighter_side_walkR_long; -#else -static const char gPlayerAnim_link_fighter_side_walkR_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_side_walkR_long; -#endif - -#define dgPlayerAnim_link_fighter_side_walk_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_side_walk_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_side_walk_long[] = dgPlayerAnim_link_fighter_side_walk_long; -#else -static const char gPlayerAnim_link_fighter_side_walk_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_side_walk_long; -#endif - -#define dgPlayerAnim_link_fighter_turn_kiruL "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_turn_kiruL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_turn_kiruL[] = dgPlayerAnim_link_fighter_turn_kiruL; -#else -static const char gPlayerAnim_link_fighter_turn_kiruL[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_turn_kiruL; -#endif - -#define dgPlayerAnim_link_fighter_turn_kiruL_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_turn_kiruL_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_turn_kiruL_end[] = dgPlayerAnim_link_fighter_turn_kiruL_end; -#else -static const char gPlayerAnim_link_fighter_turn_kiruL_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_turn_kiruL_end; -#endif - -#define dgPlayerAnim_link_fighter_turn_kiruR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_turn_kiruR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_turn_kiruR[] = dgPlayerAnim_link_fighter_turn_kiruR; -#else -static const char gPlayerAnim_link_fighter_turn_kiruR[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_turn_kiruR; -#endif - -#define dgPlayerAnim_link_fighter_turn_kiruR_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_turn_kiruR_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_turn_kiruR_end[] = dgPlayerAnim_link_fighter_turn_kiruR_end; -#else -static const char gPlayerAnim_link_fighter_turn_kiruR_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_turn_kiruR_end; -#endif - -#define dgPlayerAnim_link_fighter_upper_kiruR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_upper_kiruR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_upper_kiruR[] = dgPlayerAnim_link_fighter_upper_kiruR; -#else -static const char gPlayerAnim_link_fighter_upper_kiruR[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_upper_kiruR; -#endif - -#define dgPlayerAnim_link_fighter_upper_pierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_upper_pierce_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_upper_pierce_kiru[] = dgPlayerAnim_link_fighter_upper_pierce_kiru; -#else -static const char gPlayerAnim_link_fighter_upper_pierce_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_upper_pierce_kiru; -#endif - -#define dgPlayerAnim_link_fighter_upper_pierce_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_upper_pierce_kiru_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_upper_pierce_kiru_end[] = dgPlayerAnim_link_fighter_upper_pierce_kiru_end; -#else -static const char gPlayerAnim_link_fighter_upper_pierce_kiru_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_upper_pierce_kiru_end; -#endif - -#define dgPlayerAnim_link_fighter_wait2waitL_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_wait2waitL_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_wait2waitL_long[] = dgPlayerAnim_link_fighter_wait2waitL_long; -#else -static const char gPlayerAnim_link_fighter_wait2waitL_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_wait2waitL_long; -#endif - -#define dgPlayerAnim_link_fighter_wait2waitR_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_wait2waitR_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_wait2waitR_long[] = dgPlayerAnim_link_fighter_wait2waitR_long; -#else -static const char gPlayerAnim_link_fighter_wait2waitR_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_wait2waitR_long; -#endif - -#define dgPlayerAnim_link_fighter_waitL2wait_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_waitL2wait_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_waitL2wait_long[] = dgPlayerAnim_link_fighter_waitL2wait_long; -#else -static const char gPlayerAnim_link_fighter_waitL2wait_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_waitL2wait_long; -#endif - -#define dgPlayerAnim_link_fighter_waitL_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_waitL_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_waitL_long[] = dgPlayerAnim_link_fighter_waitL_long; -#else -static const char gPlayerAnim_link_fighter_waitL_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_waitL_long; -#endif - -#define dgPlayerAnim_link_fighter_waitR2wait_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_waitR2wait_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_waitR2wait_long[] = dgPlayerAnim_link_fighter_waitR2wait_long; -#else -static const char gPlayerAnim_link_fighter_waitR2wait_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_waitR2wait_long; -#endif - -#define dgPlayerAnim_link_fighter_waitR_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_waitR_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_waitR_long[] = dgPlayerAnim_link_fighter_waitR_long; -#else -static const char gPlayerAnim_link_fighter_waitR_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_waitR_long; -#endif - -#define dgPlayerAnim_002BD8 "__OTR__objects/gameplay_keep/gPlayerAnim_002BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002BD8[] = dgPlayerAnim_002BD8; -#else -static const char gPlayerAnim_002BD8[] __attribute__((aligned (2))) = dgPlayerAnim_002BD8; -#endif - -#define dgPlayerAnim_link_fighter_wait_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_wait_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_wait_long[] = dgPlayerAnim_link_fighter_wait_long; -#else -static const char gPlayerAnim_link_fighter_wait_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_wait_long; -#endif - -#define dgPlayerAnim_link_fighter_walk_endL_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_walk_endL_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_walk_endL_long[] = dgPlayerAnim_link_fighter_walk_endL_long; -#else -static const char gPlayerAnim_link_fighter_walk_endL_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_walk_endL_long; -#endif - -#define dgPlayerAnim_link_fighter_walk_endR_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_walk_endR_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_walk_endR_long[] = dgPlayerAnim_link_fighter_walk_endR_long; -#else -static const char gPlayerAnim_link_fighter_walk_endR_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_walk_endR_long; -#endif - -#define dgPlayerAnim_link_fighter_walk_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_walk_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fighter_walk_long[] = dgPlayerAnim_link_fighter_walk_long; -#else -static const char gPlayerAnim_link_fighter_walk_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_fighter_walk_long; -#endif - -#define dgPlayerAnim_link_fishing_fish_catch "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_fish_catch" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fishing_fish_catch[] = dgPlayerAnim_link_fishing_fish_catch; -#else -static const char gPlayerAnim_link_fishing_fish_catch[] __attribute__((aligned (2))) = dgPlayerAnim_link_fishing_fish_catch; -#endif - -#define dgPlayerAnim_link_fishing_fish_catch_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_fish_catch_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fishing_fish_catch_end[] = dgPlayerAnim_link_fishing_fish_catch_end; -#else -static const char gPlayerAnim_link_fishing_fish_catch_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_fishing_fish_catch_end; -#endif - -#define dgPlayerAnim_link_fishing_reel_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_reel_down" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fishing_reel_down[] = dgPlayerAnim_link_fishing_reel_down; -#else -static const char gPlayerAnim_link_fishing_reel_down[] __attribute__((aligned (2))) = dgPlayerAnim_link_fishing_reel_down; -#endif - -#define dgPlayerAnim_link_fishing_reel_left "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_reel_left" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fishing_reel_left[] = dgPlayerAnim_link_fishing_reel_left; -#else -static const char gPlayerAnim_link_fishing_reel_left[] __attribute__((aligned (2))) = dgPlayerAnim_link_fishing_reel_left; -#endif - -#define dgPlayerAnim_link_fishing_reel_right "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_reel_right" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fishing_reel_right[] = dgPlayerAnim_link_fishing_reel_right; -#else -static const char gPlayerAnim_link_fishing_reel_right[] __attribute__((aligned (2))) = dgPlayerAnim_link_fishing_reel_right; -#endif - -#define dgPlayerAnim_link_fishing_reel_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_reel_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fishing_reel_up[] = dgPlayerAnim_link_fishing_reel_up; -#else -static const char gPlayerAnim_link_fishing_reel_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_fishing_reel_up; -#endif - -#define dgPlayerAnim_link_fishing_throw "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_throw" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fishing_throw[] = dgPlayerAnim_link_fishing_throw; -#else -static const char gPlayerAnim_link_fishing_throw[] __attribute__((aligned (2))) = dgPlayerAnim_link_fishing_throw; -#endif - -#define dgPlayerAnim_link_fishing_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_fishing_wait[] = dgPlayerAnim_link_fishing_wait; -#else -static const char gPlayerAnim_link_fishing_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_fishing_wait; -#endif - -#define dgPlayerAnim_link_hammer_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_hit[] = dgPlayerAnim_link_hammer_hit; -#else -static const char gPlayerAnim_link_hammer_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_hit; -#endif - -#define dgPlayerAnim_link_hammer_hit_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_hit_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_hit_endR[] = dgPlayerAnim_link_hammer_hit_endR; -#else -static const char gPlayerAnim_link_hammer_hit_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_hit_endR; -#endif - -#define dgPlayerAnim_link_hammer_hit_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_hit_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_hit_end[] = dgPlayerAnim_link_hammer_hit_end; -#else -static const char gPlayerAnim_link_hammer_hit_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_hit_end; -#endif - -#define dgPlayerAnim_link_hammer_long2free "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_long2free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_long2free[] = dgPlayerAnim_link_hammer_long2free; -#else -static const char gPlayerAnim_link_hammer_long2free[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_long2free; -#endif - -#define dgPlayerAnim_link_hammer_long2long "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_long2long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_long2long[] = dgPlayerAnim_link_hammer_long2long; -#else -static const char gPlayerAnim_link_hammer_long2long[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_long2long; -#endif - -#define dgPlayerAnim_link_hammer_normal2long "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_normal2long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_normal2long[] = dgPlayerAnim_link_hammer_normal2long; -#else -static const char gPlayerAnim_link_hammer_normal2long[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_normal2long; -#endif - -#define dgPlayerAnim_link_hammer_side_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_side_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_side_hit[] = dgPlayerAnim_link_hammer_side_hit; -#else -static const char gPlayerAnim_link_hammer_side_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_side_hit; -#endif - -#define dgPlayerAnim_link_hammer_side_hit_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_side_hit_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_side_hit_endR[] = dgPlayerAnim_link_hammer_side_hit_endR; -#else -static const char gPlayerAnim_link_hammer_side_hit_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_side_hit_endR; -#endif - -#define dgPlayerAnim_link_hammer_side_hit_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_side_hit_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hammer_side_hit_end[] = dgPlayerAnim_link_hammer_side_hit_end; -#else -static const char gPlayerAnim_link_hammer_side_hit_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_hammer_side_hit_end; -#endif - -#define dgPlayerAnim_link_hatto_demo "__OTR__objects/gameplay_keep/gPlayerAnim_link_hatto_demo" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hatto_demo[] = dgPlayerAnim_link_hatto_demo; -#else -static const char gPlayerAnim_link_hatto_demo[] __attribute__((aligned (2))) = dgPlayerAnim_link_hatto_demo; -#endif - -#define dgPlayerAnim_link_hook_fly_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_fly_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hook_fly_start[] = dgPlayerAnim_link_hook_fly_start; -#else -static const char gPlayerAnim_link_hook_fly_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_hook_fly_start; -#endif - -#define dgPlayerAnim_link_hook_fly_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_fly_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hook_fly_wait[] = dgPlayerAnim_link_hook_fly_wait; -#else -static const char gPlayerAnim_link_hook_fly_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_hook_fly_wait; -#endif - -#define dgPlayerAnim_link_hook_shot_ready "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_shot_ready" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hook_shot_ready[] = dgPlayerAnim_link_hook_shot_ready; -#else -static const char gPlayerAnim_link_hook_shot_ready[] __attribute__((aligned (2))) = dgPlayerAnim_link_hook_shot_ready; -#endif - -#define dgPlayerAnim_link_hook_side_runL "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_side_runL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hook_side_runL[] = dgPlayerAnim_link_hook_side_runL; -#else -static const char gPlayerAnim_link_hook_side_runL[] __attribute__((aligned (2))) = dgPlayerAnim_link_hook_side_runL; -#endif - -#define dgPlayerAnim_link_hook_side_runR "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_side_runR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hook_side_runR[] = dgPlayerAnim_link_hook_side_runR; -#else -static const char gPlayerAnim_link_hook_side_runR[] __attribute__((aligned (2))) = dgPlayerAnim_link_hook_side_runR; -#endif - -#define dgPlayerAnim_link_hook_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_side_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hook_side_walk[] = dgPlayerAnim_link_hook_side_walk; -#else -static const char gPlayerAnim_link_hook_side_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_hook_side_walk; -#endif - -#define dgPlayerAnim_link_hook_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hook_wait[] = dgPlayerAnim_link_hook_wait; -#else -static const char gPlayerAnim_link_hook_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_hook_wait; -#endif - -#define dgPlayerAnim_link_hook_walk2ready "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_walk2ready" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_hook_walk2ready[] = dgPlayerAnim_link_hook_walk2ready; -#else -static const char gPlayerAnim_link_hook_walk2ready[] __attribute__((aligned (2))) = dgPlayerAnim_link_hook_walk2ready; -#endif - -#define dgPlayerAnim_link_last_hit_motion1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_last_hit_motion1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_last_hit_motion1[] = dgPlayerAnim_link_last_hit_motion1; -#else -static const char gPlayerAnim_link_last_hit_motion1[] __attribute__((aligned (2))) = dgPlayerAnim_link_last_hit_motion1; -#endif - -#define dgPlayerAnim_link_last_hit_motion2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_last_hit_motion2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_last_hit_motion2[] = dgPlayerAnim_link_last_hit_motion2; -#else -static const char gPlayerAnim_link_last_hit_motion2[] __attribute__((aligned (2))) = dgPlayerAnim_link_last_hit_motion2; -#endif - -#define dgPlayerAnim_link_magic_honoo1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_honoo1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_honoo1[] = dgPlayerAnim_link_magic_honoo1; -#else -static const char gPlayerAnim_link_magic_honoo1[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_honoo1; -#endif - -#define dgPlayerAnim_link_magic_honoo2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_honoo2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_honoo2[] = dgPlayerAnim_link_magic_honoo2; -#else -static const char gPlayerAnim_link_magic_honoo2[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_honoo2; -#endif - -#define dgPlayerAnim_link_magic_honoo3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_honoo3" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_honoo3[] = dgPlayerAnim_link_magic_honoo3; -#else -static const char gPlayerAnim_link_magic_honoo3[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_honoo3; -#endif - -#define dgPlayerAnim_link_magic_kaze1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_kaze1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_kaze1[] = dgPlayerAnim_link_magic_kaze1; -#else -static const char gPlayerAnim_link_magic_kaze1[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_kaze1; -#endif - -#define dgPlayerAnim_link_magic_kaze2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_kaze2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_kaze2[] = dgPlayerAnim_link_magic_kaze2; -#else -static const char gPlayerAnim_link_magic_kaze2[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_kaze2; -#endif - -#define dgPlayerAnim_link_magic_kaze3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_kaze3" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_kaze3[] = dgPlayerAnim_link_magic_kaze3; -#else -static const char gPlayerAnim_link_magic_kaze3[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_kaze3; -#endif - -#define dgPlayerAnim_link_magic_tamashii1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tamashii1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_tamashii1[] = dgPlayerAnim_link_magic_tamashii1; -#else -static const char gPlayerAnim_link_magic_tamashii1[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_tamashii1; -#endif - -#define dgPlayerAnim_link_magic_tamashii2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tamashii2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_tamashii2[] = dgPlayerAnim_link_magic_tamashii2; -#else -static const char gPlayerAnim_link_magic_tamashii2[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_tamashii2; -#endif - -#define dgPlayerAnim_link_magic_tamashii3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tamashii3" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_tamashii3[] = dgPlayerAnim_link_magic_tamashii3; -#else -static const char gPlayerAnim_link_magic_tamashii3[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_tamashii3; -#endif - -#define dgPlayerAnim_link_magic_tame "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tame" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_tame[] = dgPlayerAnim_link_magic_tame; -#else -static const char gPlayerAnim_link_magic_tame[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_tame; -#endif - -#define dgPlayerAnim_link_magic_tame_kaijyo "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tame_kaijyo" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_magic_tame_kaijyo[] = dgPlayerAnim_link_magic_tame_kaijyo; -#else -static const char gPlayerAnim_link_magic_tame_kaijyo[] __attribute__((aligned (2))) = dgPlayerAnim_link_magic_tame_kaijyo; -#endif - -#define dgPlayerAnim_link_normal_100step_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_100step_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_100step_up[] = dgPlayerAnim_link_normal_100step_up; -#else -static const char gPlayerAnim_link_normal_100step_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_100step_up; -#endif - -#define dgPlayerAnim_link_normal_150step_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_150step_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_150step_up[] = dgPlayerAnim_link_normal_150step_up; -#else -static const char gPlayerAnim_link_normal_150step_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_150step_up; -#endif - -#define dgPlayerAnim_link_normal_250jump_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_250jump_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_250jump_start[] = dgPlayerAnim_link_normal_250jump_start; -#else -static const char gPlayerAnim_link_normal_250jump_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_250jump_start; -#endif - -#define dgPlayerAnim_002D50 "__OTR__objects/gameplay_keep/gPlayerAnim_002D50" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_002D50[] = dgPlayerAnim_002D50; -#else -static const char gPlayerAnim_002D50[] __attribute__((aligned (2))) = dgPlayerAnim_002D50; -#endif - -#define dgPlayerAnim_link_normal_45_turn "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_45_turn" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_45_turn[] = dgPlayerAnim_link_normal_45_turn; -#else -static const char gPlayerAnim_link_normal_45_turn[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_45_turn; -#endif - -#define dgPlayerAnim_link_normal_45_turn_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_45_turn_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_45_turn_free[] = dgPlayerAnim_link_normal_45_turn_free; -#else -static const char gPlayerAnim_link_normal_45_turn_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_45_turn_free; -#endif - -#define dgPlayerAnim_link_normal_Fclimb_hold2upL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_hold2upL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_Fclimb_hold2upL[] = dgPlayerAnim_link_normal_Fclimb_hold2upL; -#else -static const char gPlayerAnim_link_normal_Fclimb_hold2upL[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_Fclimb_hold2upL; -#endif - -#define dgPlayerAnim_link_normal_Fclimb_sideL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_sideL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_Fclimb_sideL[] = dgPlayerAnim_link_normal_Fclimb_sideL; -#else -static const char gPlayerAnim_link_normal_Fclimb_sideL[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_Fclimb_sideL; -#endif - -#define dgPlayerAnim_link_normal_Fclimb_sideR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_sideR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_Fclimb_sideR[] = dgPlayerAnim_link_normal_Fclimb_sideR; -#else -static const char gPlayerAnim_link_normal_Fclimb_sideR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_Fclimb_sideR; -#endif - -#define dgPlayerAnim_link_normal_Fclimb_startA "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_startA" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_Fclimb_startA[] = dgPlayerAnim_link_normal_Fclimb_startA; -#else -static const char gPlayerAnim_link_normal_Fclimb_startA[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_Fclimb_startA; -#endif - -#define dgPlayerAnim_link_normal_Fclimb_startB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_startB" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_Fclimb_startB[] = dgPlayerAnim_link_normal_Fclimb_startB; -#else -static const char gPlayerAnim_link_normal_Fclimb_startB[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_Fclimb_startB; -#endif - -#define dgPlayerAnim_link_normal_Fclimb_upL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_upL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_Fclimb_upL[] = dgPlayerAnim_link_normal_Fclimb_upL; -#else -static const char gPlayerAnim_link_normal_Fclimb_upL[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_Fclimb_upL; -#endif - -#define dgPlayerAnim_link_normal_Fclimb_upR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_upR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_Fclimb_upR[] = dgPlayerAnim_link_normal_Fclimb_upR; -#else -static const char gPlayerAnim_link_normal_Fclimb_upR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_Fclimb_upR; -#endif - -#define dgPlayerAnim_link_normal_back_brake "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_brake" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_brake[] = dgPlayerAnim_link_normal_back_brake; -#else -static const char gPlayerAnim_link_normal_back_brake[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_brake; -#endif - -#define dgPlayerAnim_link_normal_back_brake_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_brake_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_brake_end[] = dgPlayerAnim_link_normal_back_brake_end; -#else -static const char gPlayerAnim_link_normal_back_brake_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_brake_end; -#endif - -#define dgPlayerAnim_link_normal_back_downA "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_downA" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_downA[] = dgPlayerAnim_link_normal_back_downA; -#else -static const char gPlayerAnim_link_normal_back_downA[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_downA; -#endif - -#define dgPlayerAnim_link_normal_back_downB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_downB" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_downB[] = dgPlayerAnim_link_normal_back_downB; -#else -static const char gPlayerAnim_link_normal_back_downB[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_downB; -#endif - -#define dgPlayerAnim_link_normal_back_down_wake "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_down_wake" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_down_wake[] = dgPlayerAnim_link_normal_back_down_wake; -#else -static const char gPlayerAnim_link_normal_back_down_wake[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_down_wake; -#endif - -#define dgPlayerAnim_link_normal_back_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_hit[] = dgPlayerAnim_link_normal_back_hit; -#else -static const char gPlayerAnim_link_normal_back_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_hit; -#endif - -#define dgPlayerAnim_link_normal_back_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_run" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_run[] = dgPlayerAnim_link_normal_back_run; -#else -static const char gPlayerAnim_link_normal_back_run[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_run; -#endif - -#define dgPlayerAnim_link_normal_back_shitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_shitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_shitR[] = dgPlayerAnim_link_normal_back_shitR; -#else -static const char gPlayerAnim_link_normal_back_shitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_shitR; -#endif - -#define dgPlayerAnim_link_normal_back_shit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_shit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_shit[] = dgPlayerAnim_link_normal_back_shit; -#else -static const char gPlayerAnim_link_normal_back_shit[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_shit; -#endif - -#define dgPlayerAnim_link_normal_back_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_back_walk[] = dgPlayerAnim_link_normal_back_walk; -#else -static const char gPlayerAnim_link_normal_back_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_back_walk; -#endif - -#define dgPlayerAnim_link_normal_backspace "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_backspace" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_backspace[] = dgPlayerAnim_link_normal_backspace; -#else -static const char gPlayerAnim_link_normal_backspace[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_backspace; -#endif - -#define dgPlayerAnim_link_normal_box_kick "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_box_kick" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_box_kick[] = dgPlayerAnim_link_normal_box_kick; -#else -static const char gPlayerAnim_link_normal_box_kick[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_box_kick; -#endif - -#define dgPlayerAnim_link_normal_carryB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_carryB" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_carryB[] = dgPlayerAnim_link_normal_carryB; -#else -static const char gPlayerAnim_link_normal_carryB[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_carryB; -#endif - -#define dgPlayerAnim_link_normal_carryB_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_carryB_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_carryB_free[] = dgPlayerAnim_link_normal_carryB_free; -#else -static const char gPlayerAnim_link_normal_carryB_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_carryB_free; -#endif - -#define dgPlayerAnim_link_normal_carryB_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_carryB_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_carryB_wait[] = dgPlayerAnim_link_normal_carryB_wait; -#else -static const char gPlayerAnim_link_normal_carryB_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_carryB_wait; -#endif - -#define dgPlayerAnim_link_normal_check "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_check[] = dgPlayerAnim_link_normal_check; -#else -static const char gPlayerAnim_link_normal_check[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_check; -#endif - -#define dgPlayerAnim_link_normal_check_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_check_end[] = dgPlayerAnim_link_normal_check_end; -#else -static const char gPlayerAnim_link_normal_check_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_check_end; -#endif - -#define dgPlayerAnim_link_normal_check_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_end_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_check_end_free[] = dgPlayerAnim_link_normal_check_end_free; -#else -static const char gPlayerAnim_link_normal_check_end_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_check_end_free; -#endif - -#define dgPlayerAnim_link_normal_check_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_check_free[] = dgPlayerAnim_link_normal_check_free; -#else -static const char gPlayerAnim_link_normal_check_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_check_free; -#endif - -#define dgPlayerAnim_link_normal_check_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_check_wait[] = dgPlayerAnim_link_normal_check_wait; -#else -static const char gPlayerAnim_link_normal_check_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_check_wait; -#endif - -#define dgPlayerAnim_link_normal_check_wait_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_wait_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_check_wait_free[] = dgPlayerAnim_link_normal_check_wait_free; -#else -static const char gPlayerAnim_link_normal_check_wait_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_check_wait_free; -#endif - -#define dgPlayerAnim_link_normal_climb_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_down" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_down[] = dgPlayerAnim_link_normal_climb_down; -#else -static const char gPlayerAnim_link_normal_climb_down[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_down; -#endif - -#define dgPlayerAnim_link_normal_climb_endAL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_endAL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_endAL[] = dgPlayerAnim_link_normal_climb_endAL; -#else -static const char gPlayerAnim_link_normal_climb_endAL[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_endAL; -#endif - -#define dgPlayerAnim_link_normal_climb_endAR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_endAR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_endAR[] = dgPlayerAnim_link_normal_climb_endAR; -#else -static const char gPlayerAnim_link_normal_climb_endAR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_endAR; -#endif - -#define dgPlayerAnim_link_normal_climb_endBL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_endBL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_endBL[] = dgPlayerAnim_link_normal_climb_endBL; -#else -static const char gPlayerAnim_link_normal_climb_endBL[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_endBL; -#endif - -#define dgPlayerAnim_link_normal_climb_endBR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_endBR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_endBR[] = dgPlayerAnim_link_normal_climb_endBR; -#else -static const char gPlayerAnim_link_normal_climb_endBR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_endBR; -#endif - -#define dgPlayerAnim_link_normal_climb_startA "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_startA" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_startA[] = dgPlayerAnim_link_normal_climb_startA; -#else -static const char gPlayerAnim_link_normal_climb_startA[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_startA; -#endif - -#define dgPlayerAnim_link_normal_climb_startB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_startB" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_startB[] = dgPlayerAnim_link_normal_climb_startB; -#else -static const char gPlayerAnim_link_normal_climb_startB[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_startB; -#endif - -#define dgPlayerAnim_link_normal_climb_upL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_upL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_upL[] = dgPlayerAnim_link_normal_climb_upL; -#else -static const char gPlayerAnim_link_normal_climb_upL[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_upL; -#endif - -#define dgPlayerAnim_link_normal_climb_upR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_upR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_upR[] = dgPlayerAnim_link_normal_climb_upR; -#else -static const char gPlayerAnim_link_normal_climb_upR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_upR; -#endif - -#define dgPlayerAnim_link_normal_climb_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_climb_up[] = dgPlayerAnim_link_normal_climb_up; -#else -static const char gPlayerAnim_link_normal_climb_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_climb_up; -#endif - -#define dgPlayerAnim_link_normal_damage_run_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_damage_run_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_damage_run_free[] = dgPlayerAnim_link_normal_damage_run_free; -#else -static const char gPlayerAnim_link_normal_damage_run_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_damage_run_free; -#endif - -#define dgPlayerAnim_link_normal_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_defense[] = dgPlayerAnim_link_normal_defense; -#else -static const char gPlayerAnim_link_normal_defense[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_defense; -#endif - -#define dgPlayerAnim_link_normal_defense_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_defense_end[] = dgPlayerAnim_link_normal_defense_end; -#else -static const char gPlayerAnim_link_normal_defense_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_defense_end; -#endif - -#define dgPlayerAnim_link_normal_defense_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_end_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_defense_end_free[] = dgPlayerAnim_link_normal_defense_end_free; -#else -static const char gPlayerAnim_link_normal_defense_end_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_defense_end_free; -#endif - -#define dgPlayerAnim_link_normal_defense_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_defense_free[] = dgPlayerAnim_link_normal_defense_free; -#else -static const char gPlayerAnim_link_normal_defense_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_defense_free; -#endif - -#define dgPlayerAnim_link_normal_defense_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_defense_hit[] = dgPlayerAnim_link_normal_defense_hit; -#else -static const char gPlayerAnim_link_normal_defense_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_defense_hit; -#endif - -#define dgPlayerAnim_link_normal_defense_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_kiru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_defense_kiru[] = dgPlayerAnim_link_normal_defense_kiru; -#else -static const char gPlayerAnim_link_normal_defense_kiru[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_defense_kiru; -#endif - -#define dgPlayerAnim_link_normal_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_defense_wait[] = dgPlayerAnim_link_normal_defense_wait; -#else -static const char gPlayerAnim_link_normal_defense_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_defense_wait; -#endif - -#define dgPlayerAnim_link_normal_defense_wait_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_wait_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_defense_wait_free[] = dgPlayerAnim_link_normal_defense_wait_free; -#else -static const char gPlayerAnim_link_normal_defense_wait_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_defense_wait_free; -#endif - -#define dgPlayerAnim_link_normal_down_slope_slip "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_down_slope_slip" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_down_slope_slip[] = dgPlayerAnim_link_normal_down_slope_slip; -#else -static const char gPlayerAnim_link_normal_down_slope_slip[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_down_slope_slip; -#endif - -#define dgPlayerAnim_link_normal_down_slope_slip_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_down_slope_slip_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_down_slope_slip_end[] = dgPlayerAnim_link_normal_down_slope_slip_end; -#else -static const char gPlayerAnim_link_normal_down_slope_slip_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_down_slope_slip_end; -#endif - -#define dgPlayerAnim_link_normal_down_slope_slip_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_down_slope_slip_end_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_down_slope_slip_end_free[] = dgPlayerAnim_link_normal_down_slope_slip_end_free; -#else -static const char gPlayerAnim_link_normal_down_slope_slip_end_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_down_slope_slip_end_free; -#endif - -#define dgPlayerAnim_link_normal_down_slope_slip_end_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_down_slope_slip_end_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_down_slope_slip_end_long[] = dgPlayerAnim_link_normal_down_slope_slip_end_long; -#else -static const char gPlayerAnim_link_normal_down_slope_slip_end_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_down_slope_slip_end_long; -#endif - -#define dgPlayerAnim_link_normal_electric_shock "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_electric_shock" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_electric_shock[] = dgPlayerAnim_link_normal_electric_shock; -#else -static const char gPlayerAnim_link_normal_electric_shock[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_electric_shock; -#endif - -#define dgPlayerAnim_link_normal_electric_shock_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_electric_shock_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_electric_shock_end[] = dgPlayerAnim_link_normal_electric_shock_end; -#else -static const char gPlayerAnim_link_normal_electric_shock_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_electric_shock_end; -#endif - -#define dgPlayerAnim_link_normal_fall "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fall" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_fall[] = dgPlayerAnim_link_normal_fall; -#else -static const char gPlayerAnim_link_normal_fall[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_fall; -#endif - -#define dgPlayerAnim_link_normal_fall_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fall_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_fall_up[] = dgPlayerAnim_link_normal_fall_up; -#else -static const char gPlayerAnim_link_normal_fall_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_fall_up; -#endif - -#define dgPlayerAnim_link_normal_fall_up_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fall_up_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_fall_up_free[] = dgPlayerAnim_link_normal_fall_up_free; -#else -static const char gPlayerAnim_link_normal_fall_up_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_fall_up_free; -#endif - -#define dgPlayerAnim_link_normal_fall_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fall_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_fall_wait[] = dgPlayerAnim_link_normal_fall_wait; -#else -static const char gPlayerAnim_link_normal_fall_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_fall_wait; -#endif - -#define dgPlayerAnim_link_normal_fighter2free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fighter2free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_fighter2free[] = dgPlayerAnim_link_normal_fighter2free; -#else -static const char gPlayerAnim_link_normal_fighter2free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_fighter2free; -#endif - -#define dgPlayerAnim_link_normal_free2bom "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_free2bom" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_free2bom[] = dgPlayerAnim_link_normal_free2bom; -#else -static const char gPlayerAnim_link_normal_free2bom[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_free2bom; -#endif - -#define dgPlayerAnim_link_normal_free2fighter_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_free2fighter_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_free2fighter_free[] = dgPlayerAnim_link_normal_free2fighter_free; -#else -static const char gPlayerAnim_link_normal_free2fighter_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_free2fighter_free; -#endif - -#define dgPlayerAnim_link_normal_free2freeB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_free2freeB" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_free2freeB[] = dgPlayerAnim_link_normal_free2freeB; -#else -static const char gPlayerAnim_link_normal_free2freeB[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_free2freeB; -#endif - -#define dgPlayerAnim_link_normal_free2free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_free2free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_free2free[] = dgPlayerAnim_link_normal_free2free; -#else -static const char gPlayerAnim_link_normal_free2free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_free2free; -#endif - -#define dgPlayerAnim_link_normal_front_downA "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_downA" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_front_downA[] = dgPlayerAnim_link_normal_front_downA; -#else -static const char gPlayerAnim_link_normal_front_downA[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_front_downA; -#endif - -#define dgPlayerAnim_link_normal_front_downB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_downB" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_front_downB[] = dgPlayerAnim_link_normal_front_downB; -#else -static const char gPlayerAnim_link_normal_front_downB[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_front_downB; -#endif - -#define dgPlayerAnim_link_normal_front_down_wake "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_down_wake" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_front_down_wake[] = dgPlayerAnim_link_normal_front_down_wake; -#else -static const char gPlayerAnim_link_normal_front_down_wake[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_front_down_wake; -#endif - -#define dgPlayerAnim_link_normal_front_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_front_hit[] = dgPlayerAnim_link_normal_front_hit; -#else -static const char gPlayerAnim_link_normal_front_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_front_hit; -#endif - -#define dgPlayerAnim_link_normal_front_shitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_shitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_front_shitR[] = dgPlayerAnim_link_normal_front_shitR; -#else -static const char gPlayerAnim_link_normal_front_shitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_front_shitR; -#endif - -#define dgPlayerAnim_link_normal_front_shit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_shit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_front_shit[] = dgPlayerAnim_link_normal_front_shit; -#else -static const char gPlayerAnim_link_normal_front_shit[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_front_shit; -#endif - -#define dgPlayerAnim_link_normal_give_other "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_give_other" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_give_other[] = dgPlayerAnim_link_normal_give_other; -#else -static const char gPlayerAnim_link_normal_give_other[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_give_other; -#endif - -#define dgPlayerAnim_link_normal_hang_up_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_hang_up_down" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_hang_up_down[] = dgPlayerAnim_link_normal_hang_up_down; -#else -static const char gPlayerAnim_link_normal_hang_up_down[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_hang_up_down; -#endif - -#define dgPlayerAnim_link_normal_heavy_carry "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_heavy_carry" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_heavy_carry[] = dgPlayerAnim_link_normal_heavy_carry; -#else -static const char gPlayerAnim_link_normal_heavy_carry[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_heavy_carry; -#endif - -#define dgPlayerAnim_link_normal_heavy_carry_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_heavy_carry_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_heavy_carry_end[] = dgPlayerAnim_link_normal_heavy_carry_end; -#else -static const char gPlayerAnim_link_normal_heavy_carry_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_heavy_carry_end; -#endif - -#define dgPlayerAnim_link_normal_heavy_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_heavy_run" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_heavy_run[] = dgPlayerAnim_link_normal_heavy_run; -#else -static const char gPlayerAnim_link_normal_heavy_run[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_heavy_run; -#endif - -#define dgPlayerAnim_link_normal_heavy_run_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_heavy_run_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_heavy_run_free[] = dgPlayerAnim_link_normal_heavy_run_free; -#else -static const char gPlayerAnim_link_normal_heavy_run_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_heavy_run_free; -#endif - -#define dgPlayerAnim_link_normal_hip_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_hip_down" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_hip_down[] = dgPlayerAnim_link_normal_hip_down; -#else -static const char gPlayerAnim_link_normal_hip_down[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_hip_down; -#endif - -#define dgPlayerAnim_link_normal_hip_down_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_hip_down_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_hip_down_free[] = dgPlayerAnim_link_normal_hip_down_free; -#else -static const char gPlayerAnim_link_normal_hip_down_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_hip_down_free; -#endif - -#define dgPlayerAnim_link_normal_hip_down_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_hip_down_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_hip_down_long[] = dgPlayerAnim_link_normal_hip_down_long; -#else -static const char gPlayerAnim_link_normal_hip_down_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_hip_down_long; -#endif - -#define dgPlayerAnim_link_normal_ice_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_ice_down" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_ice_down[] = dgPlayerAnim_link_normal_ice_down; -#else -static const char gPlayerAnim_link_normal_ice_down[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_ice_down; -#endif - -#define dgPlayerAnim_link_normal_jump2landing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump2landing" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump2landing[] = dgPlayerAnim_link_normal_jump2landing; -#else -static const char gPlayerAnim_link_normal_jump2landing[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump2landing; -#endif - -#define dgPlayerAnim_link_normal_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump[] = dgPlayerAnim_link_normal_jump; -#else -static const char gPlayerAnim_link_normal_jump[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump; -#endif - -#define dgPlayerAnim_link_normal_jump_climb_hold "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_hold" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump_climb_hold[] = dgPlayerAnim_link_normal_jump_climb_hold; -#else -static const char gPlayerAnim_link_normal_jump_climb_hold[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump_climb_hold; -#endif - -#define dgPlayerAnim_link_normal_jump_climb_hold_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_hold_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump_climb_hold_free[] = dgPlayerAnim_link_normal_jump_climb_hold_free; -#else -static const char gPlayerAnim_link_normal_jump_climb_hold_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump_climb_hold_free; -#endif - -#define dgPlayerAnim_link_normal_jump_climb_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump_climb_up[] = dgPlayerAnim_link_normal_jump_climb_up; -#else -static const char gPlayerAnim_link_normal_jump_climb_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump_climb_up; -#endif - -#define dgPlayerAnim_link_normal_jump_climb_up_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_up_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump_climb_up_free[] = dgPlayerAnim_link_normal_jump_climb_up_free; -#else -static const char gPlayerAnim_link_normal_jump_climb_up_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump_climb_up_free; -#endif - -#define dgPlayerAnim_link_normal_jump_climb_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump_climb_wait[] = dgPlayerAnim_link_normal_jump_climb_wait; -#else -static const char gPlayerAnim_link_normal_jump_climb_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump_climb_wait; -#endif - -#define dgPlayerAnim_link_normal_jump_climb_wait_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_wait_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump_climb_wait_free[] = dgPlayerAnim_link_normal_jump_climb_wait_free; -#else -static const char gPlayerAnim_link_normal_jump_climb_wait_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump_climb_wait_free; -#endif - -#define dgPlayerAnim_link_normal_jump_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_jump_up[] = dgPlayerAnim_link_normal_jump_up; -#else -static const char gPlayerAnim_link_normal_jump_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_jump_up; -#endif - -#define dgPlayerAnim_link_normal_landing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_landing[] = dgPlayerAnim_link_normal_landing; -#else -static const char gPlayerAnim_link_normal_landing[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_landing; -#endif - -#define dgPlayerAnim_link_normal_landing_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_landing_free[] = dgPlayerAnim_link_normal_landing_free; -#else -static const char gPlayerAnim_link_normal_landing_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_landing_free; -#endif - -#define dgPlayerAnim_link_normal_landing_roll "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing_roll" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_landing_roll[] = dgPlayerAnim_link_normal_landing_roll; -#else -static const char gPlayerAnim_link_normal_landing_roll[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_landing_roll; -#endif - -#define dgPlayerAnim_link_normal_landing_roll_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing_roll_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_landing_roll_free[] = dgPlayerAnim_link_normal_landing_roll_free; -#else -static const char gPlayerAnim_link_normal_landing_roll_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_landing_roll_free; -#endif - -#define dgPlayerAnim_link_normal_landing_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_landing_wait[] = dgPlayerAnim_link_normal_landing_wait; -#else -static const char gPlayerAnim_link_normal_landing_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_landing_wait; -#endif - -#define dgPlayerAnim_link_normal_light_bom "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_light_bom" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_light_bom[] = dgPlayerAnim_link_normal_light_bom; -#else -static const char gPlayerAnim_link_normal_light_bom[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_light_bom; -#endif - -#define dgPlayerAnim_link_normal_light_bom_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_light_bom_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_light_bom_end[] = dgPlayerAnim_link_normal_light_bom_end; -#else -static const char gPlayerAnim_link_normal_light_bom_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_light_bom_end; -#endif - -#define dgPlayerAnim_link_normal_long2bom "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_long2bom" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_long2bom[] = dgPlayerAnim_link_normal_long2bom; -#else -static const char gPlayerAnim_link_normal_long2bom[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_long2bom; -#endif - -#define dgPlayerAnim_link_normal_nocarry_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_nocarry_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_nocarry_free[] = dgPlayerAnim_link_normal_nocarry_free; -#else -static const char gPlayerAnim_link_normal_nocarry_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_nocarry_free; -#endif - -#define dgPlayerAnim_link_normal_nocarry_free_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_nocarry_free_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_nocarry_free_end[] = dgPlayerAnim_link_normal_nocarry_free_end; -#else -static const char gPlayerAnim_link_normal_nocarry_free_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_nocarry_free_end; -#endif - -#define dgPlayerAnim_link_normal_nocarry_free_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_nocarry_free_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_nocarry_free_wait[] = dgPlayerAnim_link_normal_nocarry_free_wait; -#else -static const char gPlayerAnim_link_normal_nocarry_free_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_nocarry_free_wait; -#endif - -#define dgPlayerAnim_link_normal_normal2bom "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_normal2bom" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_normal2bom[] = dgPlayerAnim_link_normal_normal2bom; -#else -static const char gPlayerAnim_link_normal_normal2bom[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_normal2bom; -#endif - -#define dgPlayerAnim_link_normal_normal2fighter "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_normal2fighter" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_normal2fighter[] = dgPlayerAnim_link_normal_normal2fighter; -#else -static const char gPlayerAnim_link_normal_normal2fighter[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_normal2fighter; -#endif - -#define dgPlayerAnim_link_normal_normal2fighter_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_normal2fighter_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_normal2fighter_free[] = dgPlayerAnim_link_normal_normal2fighter_free; -#else -static const char gPlayerAnim_link_normal_normal2fighter_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_normal2fighter_free; -#endif - -#define dgPlayerAnim_link_normal_normal2free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_normal2free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_normal2free[] = dgPlayerAnim_link_normal_normal2free; -#else -static const char gPlayerAnim_link_normal_normal2free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_normal2free; -#endif - -#define dgPlayerAnim_link_normal_okarina_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_okarina_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_okarina_end[] = dgPlayerAnim_link_normal_okarina_end; -#else -static const char gPlayerAnim_link_normal_okarina_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_okarina_end; -#endif - -#define dgPlayerAnim_link_normal_okarina_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_okarina_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_okarina_start[] = dgPlayerAnim_link_normal_okarina_start; -#else -static const char gPlayerAnim_link_normal_okarina_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_okarina_start; -#endif - -#define dgPlayerAnim_link_normal_okarina_swing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_okarina_swing" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_okarina_swing[] = dgPlayerAnim_link_normal_okarina_swing; -#else -static const char gPlayerAnim_link_normal_okarina_swing[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_okarina_swing; -#endif - -#define dgPlayerAnim_link_normal_pull_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pull_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_pull_end[] = dgPlayerAnim_link_normal_pull_end; -#else -static const char gPlayerAnim_link_normal_pull_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_pull_end; -#endif - -#define dgPlayerAnim_link_normal_pull_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pull_end_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_pull_end_free[] = dgPlayerAnim_link_normal_pull_end_free; -#else -static const char gPlayerAnim_link_normal_pull_end_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_pull_end_free; -#endif - -#define dgPlayerAnim_link_normal_pull_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pull_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_pull_start[] = dgPlayerAnim_link_normal_pull_start; -#else -static const char gPlayerAnim_link_normal_pull_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_pull_start; -#endif - -#define dgPlayerAnim_link_normal_pull_start_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pull_start_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_pull_start_free[] = dgPlayerAnim_link_normal_pull_start_free; -#else -static const char gPlayerAnim_link_normal_pull_start_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_pull_start_free; -#endif - -#define dgPlayerAnim_link_normal_pulling "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pulling" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_pulling[] = dgPlayerAnim_link_normal_pulling; -#else -static const char gPlayerAnim_link_normal_pulling[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_pulling; -#endif - -#define dgPlayerAnim_link_normal_pulling_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pulling_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_pulling_free[] = dgPlayerAnim_link_normal_pulling_free; -#else -static const char gPlayerAnim_link_normal_pulling_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_pulling_free; -#endif - -#define dgPlayerAnim_link_normal_push_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_push_end[] = dgPlayerAnim_link_normal_push_end; -#else -static const char gPlayerAnim_link_normal_push_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_push_end; -#endif - -#define dgPlayerAnim_link_normal_push_fall "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_fall" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_push_fall[] = dgPlayerAnim_link_normal_push_fall; -#else -static const char gPlayerAnim_link_normal_push_fall[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_push_fall; -#endif - -#define dgPlayerAnim_link_normal_push_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_push_start[] = dgPlayerAnim_link_normal_push_start; -#else -static const char gPlayerAnim_link_normal_push_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_push_start; -#endif - -#define dgPlayerAnim_link_normal_push_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_push_wait[] = dgPlayerAnim_link_normal_push_wait; -#else -static const char gPlayerAnim_link_normal_push_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_push_wait; -#endif - -#define dgPlayerAnim_link_normal_push_wait_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_wait_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_push_wait_end[] = dgPlayerAnim_link_normal_push_wait_end; -#else -static const char gPlayerAnim_link_normal_push_wait_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_push_wait_end; -#endif - -#define dgPlayerAnim_link_normal_pushing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pushing" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_pushing[] = dgPlayerAnim_link_normal_pushing; -#else -static const char gPlayerAnim_link_normal_pushing[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_pushing; -#endif - -#define dgPlayerAnim_link_normal_put "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_put" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_put[] = dgPlayerAnim_link_normal_put; -#else -static const char gPlayerAnim_link_normal_put[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_put; -#endif - -#define dgPlayerAnim_link_normal_put_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_put_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_put_free[] = dgPlayerAnim_link_normal_put_free; -#else -static const char gPlayerAnim_link_normal_put_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_put_free; -#endif - -#define dgPlayerAnim_link_normal_re_dead_attack "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_re_dead_attack" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_re_dead_attack[] = dgPlayerAnim_link_normal_re_dead_attack; -#else -static const char gPlayerAnim_link_normal_re_dead_attack[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_re_dead_attack; -#endif - -#define dgPlayerAnim_link_normal_re_dead_attack_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_re_dead_attack_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_re_dead_attack_wait[] = dgPlayerAnim_link_normal_re_dead_attack_wait; -#else -static const char gPlayerAnim_link_normal_re_dead_attack_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_re_dead_attack_wait; -#endif - -#define dgPlayerAnim_link_normal_rebound "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_rebound" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_rebound[] = dgPlayerAnim_link_normal_rebound; -#else -static const char gPlayerAnim_link_normal_rebound[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_rebound; -#endif - -#define dgPlayerAnim_link_normal_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_run[] = dgPlayerAnim_link_normal_run; -#else -static const char gPlayerAnim_link_normal_run[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_run; -#endif - -#define dgPlayerAnim_link_normal_run_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_run_free[] = dgPlayerAnim_link_normal_run_free; -#else -static const char gPlayerAnim_link_normal_run_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_run_free; -#endif - -#define dgPlayerAnim_link_normal_run_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_jump" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_run_jump[] = dgPlayerAnim_link_normal_run_jump; -#else -static const char gPlayerAnim_link_normal_run_jump[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_run_jump; -#endif - -#define dgPlayerAnim_link_normal_run_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_jump_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_run_jump_end[] = dgPlayerAnim_link_normal_run_jump_end; -#else -static const char gPlayerAnim_link_normal_run_jump_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_run_jump_end; -#endif - -#define dgPlayerAnim_link_normal_run_jump_water_fall "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_jump_water_fall" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_run_jump_water_fall[] = dgPlayerAnim_link_normal_run_jump_water_fall; -#else -static const char gPlayerAnim_link_normal_run_jump_water_fall[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_run_jump_water_fall; -#endif - -#define dgPlayerAnim_link_normal_run_jump_water_fall_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_jump_water_fall_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_run_jump_water_fall_wait[] = dgPlayerAnim_link_normal_run_jump_water_fall_wait; -#else -static const char gPlayerAnim_link_normal_run_jump_water_fall_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_run_jump_water_fall_wait; -#endif - -#define dgPlayerAnim_link_normal_short_landing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_short_landing" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_short_landing[] = dgPlayerAnim_link_normal_short_landing; -#else -static const char gPlayerAnim_link_normal_short_landing[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_short_landing; -#endif - -#define dgPlayerAnim_link_normal_short_landing_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_short_landing_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_short_landing_free[] = dgPlayerAnim_link_normal_short_landing_free; -#else -static const char gPlayerAnim_link_normal_short_landing_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_short_landing_free; -#endif - -#define dgPlayerAnim_link_normal_side_walkL_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_side_walkL_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_side_walkL_free[] = dgPlayerAnim_link_normal_side_walkL_free; -#else -static const char gPlayerAnim_link_normal_side_walkL_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_side_walkL_free; -#endif - -#define dgPlayerAnim_link_normal_side_walkR_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_side_walkR_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_side_walkR_free[] = dgPlayerAnim_link_normal_side_walkR_free; -#else -static const char gPlayerAnim_link_normal_side_walkR_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_side_walkR_free; -#endif - -#define dgPlayerAnim_link_normal_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_side_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_side_walk[] = dgPlayerAnim_link_normal_side_walk; -#else -static const char gPlayerAnim_link_normal_side_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_side_walk; -#endif - -#define dgPlayerAnim_link_normal_side_walk_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_side_walk_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_side_walk_free[] = dgPlayerAnim_link_normal_side_walk_free; -#else -static const char gPlayerAnim_link_normal_side_walk_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_side_walk_free; -#endif - -#define dgPlayerAnim_link_normal_take_out "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_take_out" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_take_out[] = dgPlayerAnim_link_normal_take_out; -#else -static const char gPlayerAnim_link_normal_take_out[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_take_out; -#endif - -#define dgPlayerAnim_link_normal_talk_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_talk_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_talk_free[] = dgPlayerAnim_link_normal_talk_free; -#else -static const char gPlayerAnim_link_normal_talk_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_talk_free; -#endif - -#define dgPlayerAnim_link_normal_talk_free_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_talk_free_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_talk_free_wait[] = dgPlayerAnim_link_normal_talk_free_wait; -#else -static const char gPlayerAnim_link_normal_talk_free_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_talk_free_wait; -#endif - -#define dgPlayerAnim_link_normal_talk_navi "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_talk_navi" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_talk_navi[] = dgPlayerAnim_link_normal_talk_navi; -#else -static const char gPlayerAnim_link_normal_talk_navi[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_talk_navi; -#endif - -#define dgPlayerAnim_link_normal_talk_navi_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_talk_navi_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_talk_navi_wait[] = dgPlayerAnim_link_normal_talk_navi_wait; -#else -static const char gPlayerAnim_link_normal_talk_navi_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_talk_navi_wait; -#endif - -#define dgPlayerAnim_link_normal_throw "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_throw" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_throw[] = dgPlayerAnim_link_normal_throw; -#else -static const char gPlayerAnim_link_normal_throw[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_throw; -#endif - -#define dgPlayerAnim_link_normal_throw_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_throw_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_throw_free[] = dgPlayerAnim_link_normal_throw_free; -#else -static const char gPlayerAnim_link_normal_throw_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_throw_free; -#endif - -#define dgPlayerAnim_link_normal_up_slope_slip "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_up_slope_slip" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_up_slope_slip[] = dgPlayerAnim_link_normal_up_slope_slip; -#else -static const char gPlayerAnim_link_normal_up_slope_slip[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_up_slope_slip; -#endif - -#define dgPlayerAnim_link_normal_up_slope_slip_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_up_slope_slip_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_up_slope_slip_end[] = dgPlayerAnim_link_normal_up_slope_slip_end; -#else -static const char gPlayerAnim_link_normal_up_slope_slip_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_up_slope_slip_end; -#endif - -#define dgPlayerAnim_link_normal_up_slope_slip_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_up_slope_slip_end_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_up_slope_slip_end_free[] = dgPlayerAnim_link_normal_up_slope_slip_end_free; -#else -static const char gPlayerAnim_link_normal_up_slope_slip_end_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_up_slope_slip_end_free; -#endif - -#define dgPlayerAnim_link_normal_up_slope_slip_end_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_up_slope_slip_end_long" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_up_slope_slip_end_long[] = dgPlayerAnim_link_normal_up_slope_slip_end_long; -#else -static const char gPlayerAnim_link_normal_up_slope_slip_end_long[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_up_slope_slip_end_long; -#endif - -#define dgPlayerAnim_link_normal_wait2waitL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait2waitL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_wait2waitL[] = dgPlayerAnim_link_normal_wait2waitL; -#else -static const char gPlayerAnim_link_normal_wait2waitL[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_wait2waitL; -#endif - -#define dgPlayerAnim_link_normal_wait2waitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait2waitR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_wait2waitR[] = dgPlayerAnim_link_normal_wait2waitR; -#else -static const char gPlayerAnim_link_normal_wait2waitR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_wait2waitR; -#endif - -#define dgPlayerAnim_link_normal_waitF_typeA_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitF_typeA_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_waitF_typeA_20f[] = dgPlayerAnim_link_normal_waitF_typeA_20f; -#else -static const char gPlayerAnim_link_normal_waitF_typeA_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_waitF_typeA_20f; -#endif - -#define dgPlayerAnim_link_normal_waitF_typeB_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitF_typeB_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_waitF_typeB_20f[] = dgPlayerAnim_link_normal_waitF_typeB_20f; -#else -static const char gPlayerAnim_link_normal_waitF_typeB_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_waitF_typeB_20f; -#endif - -#define dgPlayerAnim_link_normal_waitF_typeC_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitF_typeC_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_waitF_typeC_20f[] = dgPlayerAnim_link_normal_waitF_typeC_20f; -#else -static const char gPlayerAnim_link_normal_waitF_typeC_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_waitF_typeC_20f; -#endif - -#define dgPlayerAnim_link_normal_waitL2wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitL2wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_waitL2wait[] = dgPlayerAnim_link_normal_waitL2wait; -#else -static const char gPlayerAnim_link_normal_waitL2wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_waitL2wait; -#endif - -#define dgPlayerAnim_link_normal_waitL_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitL_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_waitL_free[] = dgPlayerAnim_link_normal_waitL_free; -#else -static const char gPlayerAnim_link_normal_waitL_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_waitL_free; -#endif - -#define dgPlayerAnim_link_normal_waitR2wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitR2wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_waitR2wait[] = dgPlayerAnim_link_normal_waitR2wait; -#else -static const char gPlayerAnim_link_normal_waitR2wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_waitR2wait; -#endif - -#define dgPlayerAnim_link_normal_waitR_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitR_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_waitR_free[] = dgPlayerAnim_link_normal_waitR_free; -#else -static const char gPlayerAnim_link_normal_waitR_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_waitR_free; -#endif - -#define dgPlayerAnim_link_normal_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_wait[] = dgPlayerAnim_link_normal_wait; -#else -static const char gPlayerAnim_link_normal_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_wait; -#endif - -#define dgPlayerAnim_link_normal_wait_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_wait_free[] = dgPlayerAnim_link_normal_wait_free; -#else -static const char gPlayerAnim_link_normal_wait_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_wait_free; -#endif - -#define dgPlayerAnim_link_normal_wait_typeA_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait_typeA_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_wait_typeA_20f[] = dgPlayerAnim_link_normal_wait_typeA_20f; -#else -static const char gPlayerAnim_link_normal_wait_typeA_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_wait_typeA_20f; -#endif - -#define dgPlayerAnim_link_normal_wait_typeB_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait_typeB_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_wait_typeB_20f[] = dgPlayerAnim_link_normal_wait_typeB_20f; -#else -static const char gPlayerAnim_link_normal_wait_typeB_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_wait_typeB_20f; -#endif - -#define dgPlayerAnim_link_normal_wait_typeC_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait_typeC_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_wait_typeC_20f[] = dgPlayerAnim_link_normal_wait_typeC_20f; -#else -static const char gPlayerAnim_link_normal_wait_typeC_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_wait_typeC_20f; -#endif - -#define dgPlayerAnim_link_normal_wakeup "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wakeup" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_wakeup[] = dgPlayerAnim_link_normal_wakeup; -#else -static const char gPlayerAnim_link_normal_wakeup[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_wakeup; -#endif - -#define dgPlayerAnim_link_normal_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_walk[] = dgPlayerAnim_link_normal_walk; -#else -static const char gPlayerAnim_link_normal_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_walk; -#endif - -#define dgPlayerAnim_link_normal_walk_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_endL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_walk_endL[] = dgPlayerAnim_link_normal_walk_endL; -#else -static const char gPlayerAnim_link_normal_walk_endL[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_walk_endL; -#endif - -#define dgPlayerAnim_link_normal_walk_endL_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_endL_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_walk_endL_free[] = dgPlayerAnim_link_normal_walk_endL_free; -#else -static const char gPlayerAnim_link_normal_walk_endL_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_walk_endL_free; -#endif - -#define dgPlayerAnim_link_normal_walk_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_endR" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_walk_endR[] = dgPlayerAnim_link_normal_walk_endR; -#else -static const char gPlayerAnim_link_normal_walk_endR[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_walk_endR; -#endif - -#define dgPlayerAnim_link_normal_walk_endR_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_endR_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_walk_endR_free[] = dgPlayerAnim_link_normal_walk_endR_free; -#else -static const char gPlayerAnim_link_normal_walk_endR_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_walk_endR_free; -#endif - -#define dgPlayerAnim_link_normal_walk_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_free" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_normal_walk_free[] = dgPlayerAnim_link_normal_walk_free; -#else -static const char gPlayerAnim_link_normal_walk_free[] __attribute__((aligned (2))) = dgPlayerAnim_link_normal_walk_free; -#endif - -#define dgPlayerAnim_link_okarina_warp_goal "__OTR__objects/gameplay_keep/gPlayerAnim_link_okarina_warp_goal" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_okarina_warp_goal[] = dgPlayerAnim_link_okarina_warp_goal; -#else -static const char gPlayerAnim_link_okarina_warp_goal[] __attribute__((aligned (2))) = dgPlayerAnim_link_okarina_warp_goal; -#endif - -#define dgPlayerAnim_link_okiru_demo "__OTR__objects/gameplay_keep/gPlayerAnim_link_okiru_demo" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_okiru_demo[] = dgPlayerAnim_link_okiru_demo; -#else -static const char gPlayerAnim_link_okiru_demo[] __attribute__((aligned (2))) = dgPlayerAnim_link_okiru_demo; -#endif - -#define dgPlayerAnim_link_shagamu_demo "__OTR__objects/gameplay_keep/gPlayerAnim_link_shagamu_demo" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_shagamu_demo[] = dgPlayerAnim_link_shagamu_demo; -#else -static const char gPlayerAnim_link_shagamu_demo[] __attribute__((aligned (2))) = dgPlayerAnim_link_shagamu_demo; -#endif - -#define dgPlayerAnim_link_silver_carry "__OTR__objects/gameplay_keep/gPlayerAnim_link_silver_carry" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_silver_carry[] = dgPlayerAnim_link_silver_carry; -#else -static const char gPlayerAnim_link_silver_carry[] __attribute__((aligned (2))) = dgPlayerAnim_link_silver_carry; -#endif - -#define dgPlayerAnim_link_silver_throw "__OTR__objects/gameplay_keep/gPlayerAnim_link_silver_throw" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_silver_throw[] = dgPlayerAnim_link_silver_throw; -#else -static const char gPlayerAnim_link_silver_throw[] __attribute__((aligned (2))) = dgPlayerAnim_link_silver_throw; -#endif - -#define dgPlayerAnim_link_silver_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_silver_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_silver_wait[] = dgPlayerAnim_link_silver_wait; -#else -static const char gPlayerAnim_link_silver_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_silver_wait; -#endif - -#define dgPlayerAnim_link_swimer_Lside_swim "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_Lside_swim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_Lside_swim[] = dgPlayerAnim_link_swimer_Lside_swim; -#else -static const char gPlayerAnim_link_swimer_Lside_swim[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_Lside_swim; -#endif - -#define dgPlayerAnim_link_swimer_Rside_swim "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_Rside_swim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_Rside_swim[] = dgPlayerAnim_link_swimer_Rside_swim; -#else -static const char gPlayerAnim_link_swimer_Rside_swim[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_Rside_swim; -#endif - -#define dgPlayerAnim_link_swimer_back_swim "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_back_swim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_back_swim[] = dgPlayerAnim_link_swimer_back_swim; -#else -static const char gPlayerAnim_link_swimer_back_swim[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_back_swim; -#endif - -#define dgPlayerAnim_link_swimer_land2swim_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_land2swim_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_land2swim_wait[] = dgPlayerAnim_link_swimer_land2swim_wait; -#else -static const char gPlayerAnim_link_swimer_land2swim_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_land2swim_wait; -#endif - -#define dgPlayerAnim_link_swimer_swim_15step_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_15step_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim_15step_up[] = dgPlayerAnim_link_swimer_swim_15step_up; -#else -static const char gPlayerAnim_link_swimer_swim_15step_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim_15step_up; -#endif - -#define dgPlayerAnim_link_swimer_swim "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim[] = dgPlayerAnim_link_swimer_swim; -#else -static const char gPlayerAnim_link_swimer_swim[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim; -#endif - -#define dgPlayerAnim_link_swimer_swim_dead "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_dead" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim_dead[] = dgPlayerAnim_link_swimer_swim_dead; -#else -static const char gPlayerAnim_link_swimer_swim_dead[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim_dead; -#endif - -#define dgPlayerAnim_link_swimer_swim_deep_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_deep_end" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim_deep_end[] = dgPlayerAnim_link_swimer_swim_deep_end; -#else -static const char gPlayerAnim_link_swimer_swim_deep_end[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim_deep_end; -#endif - -#define dgPlayerAnim_link_swimer_swim_deep_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_deep_start" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim_deep_start[] = dgPlayerAnim_link_swimer_swim_deep_start; -#else -static const char gPlayerAnim_link_swimer_swim_deep_start[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim_deep_start; -#endif - -#define dgPlayerAnim_link_swimer_swim_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_down" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim_down[] = dgPlayerAnim_link_swimer_swim_down; -#else -static const char gPlayerAnim_link_swimer_swim_down[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim_down; -#endif - -#define dgPlayerAnim_link_swimer_swim_get "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_get" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim_get[] = dgPlayerAnim_link_swimer_swim_get; -#else -static const char gPlayerAnim_link_swimer_swim_get[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim_get; -#endif - -#define dgPlayerAnim_link_swimer_swim_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_hit" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim_hit[] = dgPlayerAnim_link_swimer_swim_hit; -#else -static const char gPlayerAnim_link_swimer_swim_hit[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim_hit; -#endif - -#define dgPlayerAnim_link_swimer_swim_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_swim_wait[] = dgPlayerAnim_link_swimer_swim_wait; -#else -static const char gPlayerAnim_link_swimer_swim_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_swim_wait; -#endif - -#define dgPlayerAnim_link_swimer_wait2swim_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_wait2swim_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_swimer_wait2swim_wait[] = dgPlayerAnim_link_swimer_wait2swim_wait; -#else -static const char gPlayerAnim_link_swimer_wait2swim_wait[] __attribute__((aligned (2))) = dgPlayerAnim_link_swimer_wait2swim_wait; -#endif - -#define dgPlayerAnim_link_uma_anim_fastrun "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_fastrun" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_fastrun[] = dgPlayerAnim_link_uma_anim_fastrun; -#else -static const char gPlayerAnim_link_uma_anim_fastrun[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_fastrun; -#endif - -#define dgPlayerAnim_link_uma_anim_fastrun_muti "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_fastrun_muti" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_fastrun_muti[] = dgPlayerAnim_link_uma_anim_fastrun_muti; -#else -static const char gPlayerAnim_link_uma_anim_fastrun_muti[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_fastrun_muti; -#endif - -#define dgPlayerAnim_link_uma_anim_jump100 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_jump100" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_jump100[] = dgPlayerAnim_link_uma_anim_jump100; -#else -static const char gPlayerAnim_link_uma_anim_jump100[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_jump100; -#endif - -#define dgPlayerAnim_link_uma_anim_jump200 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_jump200" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_jump200[] = dgPlayerAnim_link_uma_anim_jump200; -#else -static const char gPlayerAnim_link_uma_anim_jump200[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_jump200; -#endif - -#define dgPlayerAnim_link_uma_anim_slowrun "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_slowrun" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_slowrun[] = dgPlayerAnim_link_uma_anim_slowrun; -#else -static const char gPlayerAnim_link_uma_anim_slowrun[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_slowrun; -#endif - -#define dgPlayerAnim_link_uma_anim_slowrun_muti "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_slowrun_muti" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_slowrun_muti[] = dgPlayerAnim_link_uma_anim_slowrun_muti; -#else -static const char gPlayerAnim_link_uma_anim_slowrun_muti[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_slowrun_muti; -#endif - -#define dgPlayerAnim_link_uma_anim_stand "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_stand" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_stand[] = dgPlayerAnim_link_uma_anim_stand; -#else -static const char gPlayerAnim_link_uma_anim_stand[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_stand; -#endif - -#define dgPlayerAnim_link_uma_anim_stop "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_stop" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_stop[] = dgPlayerAnim_link_uma_anim_stop; -#else -static const char gPlayerAnim_link_uma_anim_stop[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_stop; -#endif - -#define dgPlayerAnim_link_uma_anim_walk2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_walk2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_walk2[] = dgPlayerAnim_link_uma_anim_walk2; -#else -static const char gPlayerAnim_link_uma_anim_walk2[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_walk2; -#endif - -#define dgPlayerAnim_link_uma_anim_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_walk" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_walk[] = dgPlayerAnim_link_uma_anim_walk; -#else -static const char gPlayerAnim_link_uma_anim_walk[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_walk; -#endif - -#define dgPlayerAnim_link_uma_anim_walk_muti "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_walk_muti" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_anim_walk_muti[] = dgPlayerAnim_link_uma_anim_walk_muti; -#else -static const char gPlayerAnim_link_uma_anim_walk_muti[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_anim_walk_muti; -#endif - -#define dgPlayerAnim_link_uma_left_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_left_down" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_left_down[] = dgPlayerAnim_link_uma_left_down; -#else -static const char gPlayerAnim_link_uma_left_down[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_left_down; -#endif - -#define dgPlayerAnim_link_uma_left_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_left_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_left_up[] = dgPlayerAnim_link_uma_left_up; -#else -static const char gPlayerAnim_link_uma_left_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_left_up; -#endif - -#define dgPlayerAnim_link_uma_right_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_right_down" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_right_down[] = dgPlayerAnim_link_uma_right_down; -#else -static const char gPlayerAnim_link_uma_right_down[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_right_down; -#endif - -#define dgPlayerAnim_link_uma_right_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_right_up" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_right_up[] = dgPlayerAnim_link_uma_right_up; -#else -static const char gPlayerAnim_link_uma_right_up[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_right_up; -#endif - -#define dgPlayerAnim_link_uma_stop_muti "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_stop_muti" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_stop_muti[] = dgPlayerAnim_link_uma_stop_muti; -#else -static const char gPlayerAnim_link_uma_stop_muti[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_stop_muti; -#endif - -#define dgPlayerAnim_link_uma_wait_1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_wait_1" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_wait_1[] = dgPlayerAnim_link_uma_wait_1; -#else -static const char gPlayerAnim_link_uma_wait_1[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_wait_1; -#endif - -#define dgPlayerAnim_link_uma_wait_2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_wait_2" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_wait_2[] = dgPlayerAnim_link_uma_wait_2; -#else -static const char gPlayerAnim_link_uma_wait_2[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_wait_2; -#endif - -#define dgPlayerAnim_link_uma_wait_3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_wait_3" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_uma_wait_3[] = dgPlayerAnim_link_uma_wait_3; -#else -static const char gPlayerAnim_link_uma_wait_3[] __attribute__((aligned (2))) = dgPlayerAnim_link_uma_wait_3; -#endif - -#define dgPlayerAnim_link_waitF_heat1_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_heat1_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_waitF_heat1_20f[] = dgPlayerAnim_link_waitF_heat1_20f; -#else -static const char gPlayerAnim_link_waitF_heat1_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_waitF_heat1_20f; -#endif - -#define dgPlayerAnim_link_waitF_heat2_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_heat2_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_waitF_heat2_20f[] = dgPlayerAnim_link_waitF_heat2_20f; -#else -static const char gPlayerAnim_link_waitF_heat2_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_waitF_heat2_20f; -#endif - -#define dgPlayerAnim_link_waitF_itemA_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_itemA_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_waitF_itemA_20f[] = dgPlayerAnim_link_waitF_itemA_20f; -#else -static const char gPlayerAnim_link_waitF_itemA_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_waitF_itemA_20f; -#endif - -#define dgPlayerAnim_link_waitF_itemB_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_itemB_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_waitF_itemB_20f[] = dgPlayerAnim_link_waitF_itemB_20f; -#else -static const char gPlayerAnim_link_waitF_itemB_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_waitF_itemB_20f; -#endif - -#define dgPlayerAnim_link_waitF_typeD_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_typeD_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_waitF_typeD_20f[] = dgPlayerAnim_link_waitF_typeD_20f; -#else -static const char gPlayerAnim_link_waitF_typeD_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_waitF_typeD_20f; -#endif - -#define dgPlayerAnim_link_wait_heat1_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_heat1_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_wait_heat1_20f[] = dgPlayerAnim_link_wait_heat1_20f; -#else -static const char gPlayerAnim_link_wait_heat1_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_wait_heat1_20f; -#endif - -#define dgPlayerAnim_link_wait_heat2_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_heat2_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_wait_heat2_20f[] = dgPlayerAnim_link_wait_heat2_20f; -#else -static const char gPlayerAnim_link_wait_heat2_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_wait_heat2_20f; -#endif - -#define dgPlayerAnim_link_wait_itemA_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemA_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_wait_itemA_20f[] = dgPlayerAnim_link_wait_itemA_20f; -#else -static const char gPlayerAnim_link_wait_itemA_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_wait_itemA_20f; -#endif - -#define dgPlayerAnim_link_wait_itemB_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemB_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_wait_itemB_20f[] = dgPlayerAnim_link_wait_itemB_20f; -#else -static const char gPlayerAnim_link_wait_itemB_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_wait_itemB_20f; -#endif - -#define dgPlayerAnim_link_wait_itemC_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemC_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_wait_itemC_20f[] = dgPlayerAnim_link_wait_itemC_20f; -#else -static const char gPlayerAnim_link_wait_itemC_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_wait_itemC_20f; -#endif - -#define dgPlayerAnim_link_wait_itemD1_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemD1_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_wait_itemD1_20f[] = dgPlayerAnim_link_wait_itemD1_20f; -#else -static const char gPlayerAnim_link_wait_itemD1_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_wait_itemD1_20f; -#endif - -#define dgPlayerAnim_link_wait_itemD2_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemD2_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_wait_itemD2_20f[] = dgPlayerAnim_link_wait_itemD2_20f; -#else -static const char gPlayerAnim_link_wait_itemD2_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_wait_itemD2_20f; -#endif - -#define dgPlayerAnim_link_wait_typeD_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_typeD_20f" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_link_wait_typeD_20f[] = dgPlayerAnim_link_wait_typeD_20f; -#else -static const char gPlayerAnim_link_wait_typeD_20f[] __attribute__((aligned (2))) = dgPlayerAnim_link_wait_typeD_20f; -#endif - -#define dgPlayerAnim_lkt_nwait "__OTR__objects/gameplay_keep/gPlayerAnim_lkt_nwait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_lkt_nwait[] = dgPlayerAnim_lkt_nwait; -#else -static const char gPlayerAnim_lkt_nwait[] __attribute__((aligned (2))) = dgPlayerAnim_lkt_nwait; -#endif - -#define dgPlayerAnim_nw_modoru "__OTR__objects/gameplay_keep/gPlayerAnim_nw_modoru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_nw_modoru[] = dgPlayerAnim_nw_modoru; -#else -static const char gPlayerAnim_nw_modoru[] __attribute__((aligned (2))) = dgPlayerAnim_nw_modoru; -#endif - -#define dgPlayerAnim_o_get_ato "__OTR__objects/gameplay_keep/gPlayerAnim_o_get_ato" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_o_get_ato[] = dgPlayerAnim_o_get_ato; -#else -static const char gPlayerAnim_o_get_ato[] __attribute__((aligned (2))) = dgPlayerAnim_o_get_ato; -#endif - -#define dgPlayerAnim_o_get_mae "__OTR__objects/gameplay_keep/gPlayerAnim_o_get_mae" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_o_get_mae[] = dgPlayerAnim_o_get_mae; -#else -static const char gPlayerAnim_o_get_mae[] __attribute__((aligned (2))) = dgPlayerAnim_o_get_mae; -#endif - -#define dgPlayerAnim_om_get "__OTR__objects/gameplay_keep/gPlayerAnim_om_get" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_om_get[] = dgPlayerAnim_om_get; -#else -static const char gPlayerAnim_om_get[] __attribute__((aligned (2))) = dgPlayerAnim_om_get; -#endif - -#define dgPlayerAnim_om_get_mae "__OTR__objects/gameplay_keep/gPlayerAnim_om_get_mae" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_om_get_mae[] = dgPlayerAnim_om_get_mae; -#else -static const char gPlayerAnim_om_get_mae[] __attribute__((aligned (2))) = dgPlayerAnim_om_get_mae; -#endif - -#define dgPlayerAnim_sude_nwait "__OTR__objects/gameplay_keep/gPlayerAnim_sude_nwait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_sude_nwait[] = dgPlayerAnim_sude_nwait; -#else -static const char gPlayerAnim_sude_nwait[] __attribute__((aligned (2))) = dgPlayerAnim_sude_nwait; -#endif - -#define dgPlayerAnim_L_1kyoro "__OTR__objects/gameplay_keep/gPlayerAnim_L_1kyoro" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_1kyoro[] = dgPlayerAnim_L_1kyoro; -#else -static const char gPlayerAnim_L_1kyoro[] __attribute__((aligned (2))) = dgPlayerAnim_L_1kyoro; -#endif - -#define dgPlayerAnim_L_2kyoro "__OTR__objects/gameplay_keep/gPlayerAnim_L_2kyoro" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_2kyoro[] = dgPlayerAnim_L_2kyoro; -#else -static const char gPlayerAnim_L_2kyoro[] __attribute__((aligned (2))) = dgPlayerAnim_L_2kyoro; -#endif - -#define dgPlayerAnim_L_bouzen "__OTR__objects/gameplay_keep/gPlayerAnim_L_bouzen" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_bouzen[] = dgPlayerAnim_L_bouzen; -#else -static const char gPlayerAnim_L_bouzen[] __attribute__((aligned (2))) = dgPlayerAnim_L_bouzen; -#endif - -#define dgPlayerAnim_L_hajikareru "__OTR__objects/gameplay_keep/gPlayerAnim_L_hajikareru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_hajikareru[] = dgPlayerAnim_L_hajikareru; -#else -static const char gPlayerAnim_L_hajikareru[] __attribute__((aligned (2))) = dgPlayerAnim_L_hajikareru; -#endif - -#define dgPlayerAnim_L_kamaeru "__OTR__objects/gameplay_keep/gPlayerAnim_L_kamaeru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_kamaeru[] = dgPlayerAnim_L_kamaeru; -#else -static const char gPlayerAnim_L_kamaeru[] __attribute__((aligned (2))) = dgPlayerAnim_L_kamaeru; -#endif - -#define dgPlayerAnim_L_ken_miru "__OTR__objects/gameplay_keep/gPlayerAnim_L_ken_miru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_ken_miru[] = dgPlayerAnim_L_ken_miru; -#else -static const char gPlayerAnim_L_ken_miru[] __attribute__((aligned (2))) = dgPlayerAnim_L_ken_miru; -#endif - -#define dgPlayerAnim_L_kennasi_w "__OTR__objects/gameplay_keep/gPlayerAnim_L_kennasi_w" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_kennasi_w[] = dgPlayerAnim_L_kennasi_w; -#else -static const char gPlayerAnim_L_kennasi_w[] __attribute__((aligned (2))) = dgPlayerAnim_L_kennasi_w; -#endif - -#define dgPlayerAnim_L_kw "__OTR__objects/gameplay_keep/gPlayerAnim_L_kw" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_kw[] = dgPlayerAnim_L_kw; -#else -static const char gPlayerAnim_L_kw[] __attribute__((aligned (2))) = dgPlayerAnim_L_kw; -#endif - -#define dgPlayerAnim_L_mukinaoru "__OTR__objects/gameplay_keep/gPlayerAnim_L_mukinaoru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_mukinaoru[] = dgPlayerAnim_L_mukinaoru; -#else -static const char gPlayerAnim_L_mukinaoru[] __attribute__((aligned (2))) = dgPlayerAnim_L_mukinaoru; -#endif - -#define dgPlayerAnim_L_okarina_get "__OTR__objects/gameplay_keep/gPlayerAnim_L_okarina_get" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_okarina_get[] = dgPlayerAnim_L_okarina_get; -#else -static const char gPlayerAnim_L_okarina_get[] __attribute__((aligned (2))) = dgPlayerAnim_L_okarina_get; -#endif - -#define dgPlayerAnim_L_sagaru "__OTR__objects/gameplay_keep/gPlayerAnim_L_sagaru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_L_sagaru[] = dgPlayerAnim_L_sagaru; -#else -static const char gPlayerAnim_L_sagaru[] __attribute__((aligned (2))) = dgPlayerAnim_L_sagaru; -#endif - -#define dgPlayerAnim_Link_ha "__OTR__objects/gameplay_keep/gPlayerAnim_Link_ha" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_Link_ha[] = dgPlayerAnim_Link_ha; -#else -static const char gPlayerAnim_Link_ha[] __attribute__((aligned (2))) = dgPlayerAnim_Link_ha; -#endif - -#define dgPlayerAnim_Link_m_wait "__OTR__objects/gameplay_keep/gPlayerAnim_Link_m_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_Link_m_wait[] = dgPlayerAnim_Link_m_wait; -#else -static const char gPlayerAnim_Link_m_wait[] __attribute__((aligned (2))) = dgPlayerAnim_Link_m_wait; -#endif - -#define dgPlayerAnim_Link_miageru "__OTR__objects/gameplay_keep/gPlayerAnim_Link_miageru" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_Link_miageru[] = dgPlayerAnim_Link_miageru; -#else -static const char gPlayerAnim_Link_miageru[] __attribute__((aligned (2))) = dgPlayerAnim_Link_miageru; -#endif - -#define dgPlayerAnim_Link_muku "__OTR__objects/gameplay_keep/gPlayerAnim_Link_muku" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_Link_muku[] = dgPlayerAnim_Link_muku; -#else -static const char gPlayerAnim_Link_muku[] __attribute__((aligned (2))) = dgPlayerAnim_Link_muku; -#endif - -#define dgPlayerAnim_Link_otituku_w "__OTR__objects/gameplay_keep/gPlayerAnim_Link_otituku_w" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_Link_otituku_w[] = dgPlayerAnim_Link_otituku_w; -#else -static const char gPlayerAnim_Link_otituku_w[] __attribute__((aligned (2))) = dgPlayerAnim_Link_otituku_w; -#endif - -#define dgPlayerAnim_Link_ue_wait "__OTR__objects/gameplay_keep/gPlayerAnim_Link_ue_wait" -#ifdef _WIN32 -static const __declspec(align(2)) char gPlayerAnim_Link_ue_wait[] = dgPlayerAnim_Link_ue_wait; -#else -static const char gPlayerAnim_Link_ue_wait[] __attribute__((aligned (2))) = dgPlayerAnim_Link_ue_wait; -#endif - -#define dgDebugPyramidDL "__OTR__objects/gameplay_keep/gDebugPyramidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugPyramidDL[] = dgDebugPyramidDL; -#else -static const char gDebugPyramidDL[] __attribute__((aligned (2))) = dgDebugPyramidDL; -#endif - -#define dgDebugCircleTex "__OTR__objects/gameplay_keep/gDebugCircleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugCircleTex[] = dgDebugCircleTex; -#else -static const char gDebugCircleTex[] __attribute__((aligned (2))) = dgDebugCircleTex; -#endif - -#define dgDebugBallTex "__OTR__objects/gameplay_keep/gDebugBallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugBallTex[] = dgDebugBallTex; -#else -static const char gDebugBallTex[] __attribute__((aligned (2))) = dgDebugBallTex; -#endif - -#define dgDebugCursorTex "__OTR__objects/gameplay_keep/gDebugCursorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugCursorTex[] = dgDebugCursorTex; -#else -static const char gDebugCursorTex[] __attribute__((aligned (2))) = dgDebugCursorTex; -#endif - -#define dgDebugCrossTex "__OTR__objects/gameplay_keep/gDebugCrossTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugCrossTex[] = dgDebugCrossTex; -#else -static const char gDebugCrossTex[] __attribute__((aligned (2))) = dgDebugCrossTex; -#endif - -#define dgDebugArrowDL "__OTR__objects/gameplay_keep/gDebugArrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugArrowDL[] = dgDebugArrowDL; -#else -static const char gDebugArrowDL[] __attribute__((aligned (2))) = dgDebugArrowDL; -#endif - -#define dgDebugCameraDL "__OTR__objects/gameplay_keep/gDebugCameraDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugCameraDL[] = dgDebugCameraDL; -#else -static const char gDebugCameraDL[] __attribute__((aligned (2))) = dgDebugCameraDL; -#endif - -#define dgDebugCheckeredFloorDL "__OTR__objects/gameplay_keep/gDebugCheckeredFloorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugCheckeredFloorDL[] = dgDebugCheckeredFloorDL; -#else -static const char gDebugCheckeredFloorDL[] __attribute__((aligned (2))) = dgDebugCheckeredFloorDL; -#endif - -#define dgDebugCheckeredFloorTex "__OTR__objects/gameplay_keep/gDebugCheckeredFloorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugCheckeredFloorTex[] = dgDebugCheckeredFloorTex; -#else -static const char gDebugCheckeredFloorTex[] __attribute__((aligned (2))) = dgDebugCheckeredFloorTex; -#endif - -#define dgDebugSpriteDL "__OTR__objects/gameplay_keep/gDebugSpriteDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDebugSpriteDL[] = dgDebugSpriteDL; -#else -static const char gDebugSpriteDL[] __attribute__((aligned (2))) = dgDebugSpriteDL; -#endif - -#define dgArrow1Anim "__OTR__objects/gameplay_keep/gArrow1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gArrow1Anim[] = dgArrow1Anim; -#else -static const char gArrow1Anim[] __attribute__((aligned (2))) = dgArrow1Anim; -#endif - -#define dgArrow2Anim "__OTR__objects/gameplay_keep/gArrow2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gArrow2Anim[] = dgArrow2Anim; -#else -static const char gArrow2Anim[] __attribute__((aligned (2))) = dgArrow2Anim; -#endif - -#define dgArrowShaftTex "__OTR__objects/gameplay_keep/gArrowShaftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gArrowShaftTex[] = dgArrowShaftTex; -#else -static const char gArrowShaftTex[] __attribute__((aligned (2))) = dgArrowShaftTex; -#endif - -#define dgArrowFletchingTex "__OTR__objects/gameplay_keep/gArrowFletchingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gArrowFletchingTex[] = dgArrowFletchingTex; -#else -static const char gArrowFletchingTex[] __attribute__((aligned (2))) = dgArrowFletchingTex; -#endif - -#define dgArrowNearDL "__OTR__objects/gameplay_keep/gArrowNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArrowNearDL[] = dgArrowNearDL; -#else -static const char gArrowNearDL[] __attribute__((aligned (2))) = dgArrowNearDL; -#endif - -#define dgArrowFarDL "__OTR__objects/gameplay_keep/gArrowFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArrowFarDL[] = dgArrowFarDL; -#else -static const char gArrowFarDL[] __attribute__((aligned (2))) = dgArrowFarDL; -#endif - -#define dgArrowSkel "__OTR__objects/gameplay_keep/gArrowSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gArrowSkel[] = dgArrowSkel; -#else -static const char gArrowSkel[] __attribute__((aligned (2))) = dgArrowSkel; -#endif - -#define dgUnknownEffBlureTex "__OTR__objects/gameplay_keep/gUnknownEffBlureTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffBlureTex[] = dgUnknownEffBlureTex; -#else -static const char gUnknownEffBlureTex[] __attribute__((aligned (2))) = dgUnknownEffBlureTex; -#endif - -#define dgBombBodyTex "__OTR__objects/gameplay_keep/gBombBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBodyTex[] = dgBombBodyTex; -#else -static const char gBombBodyTex[] __attribute__((aligned (2))) = dgBombBodyTex; -#endif - -#define dgBombBodyDL "__OTR__objects/gameplay_keep/gBombBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBodyDL[] = dgBombBodyDL; -#else -static const char gBombBodyDL[] __attribute__((aligned (2))) = dgBombBodyDL; -#endif - -#define dgBombCapTex "__OTR__objects/gameplay_keep/gBombCapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombCapTex[] = dgBombCapTex; -#else -static const char gBombCapTex[] __attribute__((aligned (2))) = dgBombCapTex; -#endif - -#define dgBombCapDL "__OTR__objects/gameplay_keep/gBombCapDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombCapDL[] = dgBombCapDL; -#else -static const char gBombCapDL[] __attribute__((aligned (2))) = dgBombCapDL; -#endif - -#define dgBombchuBodyTex "__OTR__objects/gameplay_keep/gBombchuBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuBodyTex[] = dgBombchuBodyTex; -#else -static const char gBombchuBodyTex[] __attribute__((aligned (2))) = dgBombchuBodyTex; -#endif - -#define dgBombchuDL "__OTR__objects/gameplay_keep/gBombchuDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuDL[] = dgBombchuDL; -#else -static const char gBombchuDL[] __attribute__((aligned (2))) = dgBombchuDL; -#endif - -#define dgEffBombExplosion1Tex "__OTR__objects/gameplay_keep/gEffBombExplosion1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion1Tex[] = dgEffBombExplosion1Tex; -#else -static const char gEffBombExplosion1Tex[] __attribute__((aligned (2))) = dgEffBombExplosion1Tex; -#endif - -#define dgEffBombExplosion2Tex "__OTR__objects/gameplay_keep/gEffBombExplosion2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion2Tex[] = dgEffBombExplosion2Tex; -#else -static const char gEffBombExplosion2Tex[] __attribute__((aligned (2))) = dgEffBombExplosion2Tex; -#endif - -#define dgEffBombExplosion3Tex "__OTR__objects/gameplay_keep/gEffBombExplosion3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion3Tex[] = dgEffBombExplosion3Tex; -#else -static const char gEffBombExplosion3Tex[] __attribute__((aligned (2))) = dgEffBombExplosion3Tex; -#endif - -#define dgEffBombExplosion4Tex "__OTR__objects/gameplay_keep/gEffBombExplosion4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion4Tex[] = dgEffBombExplosion4Tex; -#else -static const char gEffBombExplosion4Tex[] __attribute__((aligned (2))) = dgEffBombExplosion4Tex; -#endif - -#define dgEffBombExplosion5Tex "__OTR__objects/gameplay_keep/gEffBombExplosion5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion5Tex[] = dgEffBombExplosion5Tex; -#else -static const char gEffBombExplosion5Tex[] __attribute__((aligned (2))) = dgEffBombExplosion5Tex; -#endif - -#define dgEffBombExplosion6Tex "__OTR__objects/gameplay_keep/gEffBombExplosion6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion6Tex[] = dgEffBombExplosion6Tex; -#else -static const char gEffBombExplosion6Tex[] __attribute__((aligned (2))) = dgEffBombExplosion6Tex; -#endif - -#define dgEffBombExplosion7Tex "__OTR__objects/gameplay_keep/gEffBombExplosion7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion7Tex[] = dgEffBombExplosion7Tex; -#else -static const char gEffBombExplosion7Tex[] __attribute__((aligned (2))) = dgEffBombExplosion7Tex; -#endif - -#define dgEffBombExplosion8Tex "__OTR__objects/gameplay_keep/gEffBombExplosion8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion8Tex[] = dgEffBombExplosion8Tex; -#else -static const char gEffBombExplosion8Tex[] __attribute__((aligned (2))) = dgEffBombExplosion8Tex; -#endif - -#define dgEffBombExplosion1DL "__OTR__objects/gameplay_keep/gEffBombExplosion1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion1DL[] = dgEffBombExplosion1DL; -#else -static const char gEffBombExplosion1DL[] __attribute__((aligned (2))) = dgEffBombExplosion1DL; -#endif - -#define dgEffBombExplosion2DL "__OTR__objects/gameplay_keep/gEffBombExplosion2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion2DL[] = dgEffBombExplosion2DL; -#else -static const char gEffBombExplosion2DL[] __attribute__((aligned (2))) = dgEffBombExplosion2DL; -#endif - -#define dgEffBombExplosion3DL "__OTR__objects/gameplay_keep/gEffBombExplosion3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBombExplosion3DL[] = dgEffBombExplosion3DL; -#else -static const char gEffBombExplosion3DL[] __attribute__((aligned (2))) = dgEffBombExplosion3DL; -#endif - -#define dgEffFragments1DL "__OTR__objects/gameplay_keep/gEffFragments1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFragments1DL[] = dgEffFragments1DL; -#else -static const char gEffFragments1DL[] __attribute__((aligned (2))) = dgEffFragments1DL; -#endif - -#define dgWitheredLeafTex "__OTR__objects/gameplay_keep/gWitheredLeafTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWitheredLeafTex[] = dgWitheredLeafTex; -#else -static const char gWitheredLeafTex[] __attribute__((aligned (2))) = dgWitheredLeafTex; -#endif - -#define dgUnknownBlankDL "__OTR__objects/gameplay_keep/gUnknownBlankDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownBlankDL[] = dgUnknownBlankDL; -#else -static const char gUnknownBlankDL[] __attribute__((aligned (2))) = dgUnknownBlankDL; -#endif - -#define dgBoomerangDL "__OTR__objects/gameplay_keep/gBoomerangDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoomerangDL[] = dgBoomerangDL; -#else -static const char gBoomerangDL[] __attribute__((aligned (2))) = dgBoomerangDL; -#endif - -#define dgBoomerangRefDL "__OTR__objects/gameplay_keep/gBoomerangRefDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoomerangRefDL[] = dgBoomerangRefDL; -#else -static const char gBoomerangRefDL[] __attribute__((aligned (2))) = dgBoomerangRefDL; -#endif - -#define dgCompassArrowDL "__OTR__objects/gameplay_keep/gCompassArrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCompassArrowDL[] = dgCompassArrowDL; -#else -static const char gCompassArrowDL[] __attribute__((aligned (2))) = dgCompassArrowDL; -#endif - -#define dgZTargetArrowDL "__OTR__objects/gameplay_keep/gZTargetArrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZTargetArrowDL[] = dgZTargetArrowDL; -#else -static const char gZTargetArrowDL[] __attribute__((aligned (2))) = dgZTargetArrowDL; -#endif - -#define dgHilite3Tex "__OTR__objects/gameplay_keep/gHilite3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHilite3Tex[] = dgHilite3Tex; -#else -static const char gHilite3Tex[] __attribute__((aligned (2))) = dgHilite3Tex; -#endif - -#define dgEffFragments2DL "__OTR__objects/gameplay_keep/gEffFragments2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFragments2DL[] = dgEffFragments2DL; -#else -static const char gEffFragments2DL[] __attribute__((aligned (2))) = dgEffFragments2DL; -#endif - -#define dgSelectionCursorTex "__OTR__objects/gameplay_keep/gSelectionCursorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSelectionCursorTex[] = dgSelectionCursorTex; -#else -static const char gSelectionCursorTex[] __attribute__((aligned (2))) = dgSelectionCursorTex; -#endif - -#define dgControlStickTex "__OTR__objects/gameplay_keep/gControlStickTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gControlStickTex[] = dgControlStickTex; -#else -static const char gControlStickTex[] __attribute__((aligned (2))) = dgControlStickTex; -#endif - -#define dgArrowCursorTex "__OTR__objects/gameplay_keep/gArrowCursorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gArrowCursorTex[] = dgArrowCursorTex; -#else -static const char gArrowCursorTex[] __attribute__((aligned (2))) = dgArrowCursorTex; -#endif - -#define dgUnusedRockFragmentDL "__OTR__objects/gameplay_keep/gUnusedRockFragmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedRockFragmentDL[] = dgUnusedRockFragmentDL; -#else -static const char gUnusedRockFragmentDL[] __attribute__((aligned (2))) = dgUnusedRockFragmentDL; -#endif - -#define dgBoulderFragmentsDL "__OTR__objects/gameplay_keep/gBoulderFragmentsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoulderFragmentsDL[] = dgBoulderFragmentsDL; -#else -static const char gBoulderFragmentsDL[] __attribute__((aligned (2))) = dgBoulderFragmentsDL; -#endif - -#define dgRockFragment1Tex "__OTR__objects/gameplay_keep/gRockFragment1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRockFragment1Tex[] = dgRockFragment1Tex; -#else -static const char gRockFragment1Tex[] __attribute__((aligned (2))) = dgRockFragment1Tex; -#endif - -#define dgRockFragment2Tex "__OTR__objects/gameplay_keep/gRockFragment2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRockFragment2Tex[] = dgRockFragment2Tex; -#else -static const char gRockFragment2Tex[] __attribute__((aligned (2))) = dgRockFragment2Tex; -#endif - -#define dgDoorChildOpeningLeftAnim "__OTR__objects/gameplay_keep/gDoorChildOpeningLeftAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorChildOpeningLeftAnim[] = dgDoorChildOpeningLeftAnim; -#else -static const char gDoorChildOpeningLeftAnim[] __attribute__((aligned (2))) = dgDoorChildOpeningLeftAnim; -#endif - -#define dgDoorChildOpeningRightAnim "__OTR__objects/gameplay_keep/gDoorChildOpeningRightAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorChildOpeningRightAnim[] = dgDoorChildOpeningRightAnim; -#else -static const char gDoorChildOpeningRightAnim[] __attribute__((aligned (2))) = dgDoorChildOpeningRightAnim; -#endif - -#define dgDoorAdultOpeningLeftAnim "__OTR__objects/gameplay_keep/gDoorAdultOpeningLeftAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorAdultOpeningLeftAnim[] = dgDoorAdultOpeningLeftAnim; -#else -static const char gDoorAdultOpeningLeftAnim[] __attribute__((aligned (2))) = dgDoorAdultOpeningLeftAnim; -#endif - -#define dgDoorFrameDL "__OTR__objects/gameplay_keep/gDoorFrameDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorFrameDL[] = dgDoorFrameDL; -#else -static const char gDoorFrameDL[] __attribute__((aligned (2))) = dgDoorFrameDL; -#endif - -#define dgDoorLeftDL "__OTR__objects/gameplay_keep/gDoorLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorLeftDL[] = dgDoorLeftDL; -#else -static const char gDoorLeftDL[] __attribute__((aligned (2))) = dgDoorLeftDL; -#endif - -#define dgDoorRightDL "__OTR__objects/gameplay_keep/gDoorRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorRightDL[] = dgDoorRightDL; -#else -static const char gDoorRightDL[] __attribute__((aligned (2))) = dgDoorRightDL; -#endif - -#define dgWoodenDoorTex "__OTR__objects/gameplay_keep/gWoodenDoorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWoodenDoorTex[] = dgWoodenDoorTex; -#else -static const char gWoodenDoorTex[] __attribute__((aligned (2))) = dgWoodenDoorTex; -#endif - -#define dgDoorSkel "__OTR__objects/gameplay_keep/gDoorSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorSkel[] = dgDoorSkel; -#else -static const char gDoorSkel[] __attribute__((aligned (2))) = dgDoorSkel; -#endif - -#define dgDoorAdultOpeningRightAnim "__OTR__objects/gameplay_keep/gDoorAdultOpeningRightAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorAdultOpeningRightAnim[] = dgDoorAdultOpeningRightAnim; -#else -static const char gDoorAdultOpeningRightAnim[] __attribute__((aligned (2))) = dgDoorAdultOpeningRightAnim; -#endif - -#define dgEffDustDL "__OTR__objects/gameplay_keep/gEffDustDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffDustDL[] = dgEffDustDL; -#else -static const char gEffDustDL[] __attribute__((aligned (2))) = dgEffDustDL; -#endif - -#define dgEffFlash1DL "__OTR__objects/gameplay_keep/gEffFlash1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFlash1DL[] = dgEffFlash1DL; -#else -static const char gEffFlash1DL[] __attribute__((aligned (2))) = dgEffFlash1DL; -#endif - -#define dgEffFlash2DL "__OTR__objects/gameplay_keep/gEffFlash2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFlash2DL[] = dgEffFlash2DL; -#else -static const char gEffFlash2DL[] __attribute__((aligned (2))) = dgEffFlash2DL; -#endif - -#define dgFlashTex "__OTR__objects/gameplay_keep/gFlashTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlashTex[] = dgFlashTex; -#else -static const char gFlashTex[] __attribute__((aligned (2))) = dgFlashTex; -#endif - -#define dgTorchFlameTex "__OTR__objects/gameplay_keep/gTorchFlameTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTorchFlameTex[] = dgTorchFlameTex; -#else -static const char gTorchFlameTex[] __attribute__((aligned (2))) = dgTorchFlameTex; -#endif - -#define dgEffUnknown1Tex "__OTR__objects/gameplay_keep/gEffUnknown1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown1Tex[] = dgEffUnknown1Tex; -#else -static const char gEffUnknown1Tex[] __attribute__((aligned (2))) = dgEffUnknown1Tex; -#endif - -#define dgSpinAttack1DL "__OTR__objects/gameplay_keep/gSpinAttack1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpinAttack1DL[] = dgSpinAttack1DL; -#else -static const char gSpinAttack1DL[] __attribute__((aligned (2))) = dgSpinAttack1DL; -#endif - -#define dgSpinAttack2DL "__OTR__objects/gameplay_keep/gSpinAttack2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpinAttack2DL[] = dgSpinAttack2DL; -#else -static const char gSpinAttack2DL[] __attribute__((aligned (2))) = dgSpinAttack2DL; -#endif - -#define dgSpinAttack3DL "__OTR__objects/gameplay_keep/gSpinAttack3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpinAttack3DL[] = dgSpinAttack3DL; -#else -static const char gSpinAttack3DL[] __attribute__((aligned (2))) = dgSpinAttack3DL; -#endif - -#define dgSpinAttack4DL "__OTR__objects/gameplay_keep/gSpinAttack4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpinAttack4DL[] = dgSpinAttack4DL; -#else -static const char gSpinAttack4DL[] __attribute__((aligned (2))) = dgSpinAttack4DL; -#endif - -#define dgFlameWall1Tex "__OTR__objects/gameplay_keep/gFlameWall1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlameWall1Tex[] = dgFlameWall1Tex; -#else -static const char gFlameWall1Tex[] __attribute__((aligned (2))) = dgFlameWall1Tex; -#endif - -#define dgFlameWall2Tex "__OTR__objects/gameplay_keep/gFlameWall2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlameWall2Tex[] = dgFlameWall2Tex; -#else -static const char gFlameWall2Tex[] __attribute__((aligned (2))) = dgFlameWall2Tex; -#endif - -#define dgSpinAttackChargingDL "__OTR__objects/gameplay_keep/gSpinAttackChargingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpinAttackChargingDL[] = dgSpinAttackChargingDL; -#else -static const char gSpinAttackChargingDL[] __attribute__((aligned (2))) = dgSpinAttackChargingDL; -#endif - -#define dgEffUnknown2Tex "__OTR__objects/gameplay_keep/gEffUnknown2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown2Tex[] = dgEffUnknown2Tex; -#else -static const char gEffUnknown2Tex[] __attribute__((aligned (2))) = dgEffUnknown2Tex; -#endif - -#define dgEffUnknown3Tex "__OTR__objects/gameplay_keep/gEffUnknown3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown3Tex[] = dgEffUnknown3Tex; -#else -static const char gEffUnknown3Tex[] __attribute__((aligned (2))) = dgEffUnknown3Tex; -#endif - -#define dgUnusedBeamBladeDL "__OTR__objects/gameplay_keep/gUnusedBeamBladeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBeamBladeDL[] = dgUnusedBeamBladeDL; -#else -static const char gUnusedBeamBladeDL[] __attribute__((aligned (2))) = dgUnusedBeamBladeDL; -#endif - -#define dgFairyAnim "__OTR__objects/gameplay_keep/gFairyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyAnim[] = dgFairyAnim; -#else -static const char gFairyAnim[] __attribute__((aligned (2))) = dgFairyAnim; -#endif - -#define dgFairyWingTex "__OTR__objects/gameplay_keep/gFairyWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyWingTex[] = dgFairyWingTex; -#else -static const char gFairyWingTex[] __attribute__((aligned (2))) = dgFairyWingTex; -#endif - -#define dgFairyWing1DL "__OTR__objects/gameplay_keep/gFairyWing1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyWing1DL[] = dgFairyWing1DL; -#else -static const char gFairyWing1DL[] __attribute__((aligned (2))) = dgFairyWing1DL; -#endif - -#define dgFairyWing2DL "__OTR__objects/gameplay_keep/gFairyWing2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyWing2DL[] = dgFairyWing2DL; -#else -static const char gFairyWing2DL[] __attribute__((aligned (2))) = dgFairyWing2DL; -#endif - -#define dgFairyWing3DL "__OTR__objects/gameplay_keep/gFairyWing3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyWing3DL[] = dgFairyWing3DL; -#else -static const char gFairyWing3DL[] __attribute__((aligned (2))) = dgFairyWing3DL; -#endif - -#define dgFairyWing4DL "__OTR__objects/gameplay_keep/gFairyWing4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyWing4DL[] = dgFairyWing4DL; -#else -static const char gFairyWing4DL[] __attribute__((aligned (2))) = dgFairyWing4DL; -#endif - -#define dgGlowCircleTextureLoadDL "__OTR__objects/gameplay_keep/gGlowCircleTextureLoadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGlowCircleTextureLoadDL[] = dgGlowCircleTextureLoadDL; -#else -static const char gGlowCircleTextureLoadDL[] __attribute__((aligned (2))) = dgGlowCircleTextureLoadDL; -#endif - -#define dgGlowCircleDL "__OTR__objects/gameplay_keep/gGlowCircleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGlowCircleDL[] = dgGlowCircleDL; -#else -static const char gGlowCircleDL[] __attribute__((aligned (2))) = dgGlowCircleDL; -#endif - -#define dgGlowCircleSmallDL "__OTR__objects/gameplay_keep/gGlowCircleSmallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGlowCircleSmallDL[] = dgGlowCircleSmallDL; -#else -static const char gGlowCircleSmallDL[] __attribute__((aligned (2))) = dgGlowCircleSmallDL; -#endif - -#define dgUnusedFairyWingTex "__OTR__objects/gameplay_keep/gUnusedFairyWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedFairyWingTex[] = dgUnusedFairyWingTex; -#else -static const char gUnusedFairyWingTex[] __attribute__((aligned (2))) = dgUnusedFairyWingTex; -#endif - -#define dgFairySkel "__OTR__objects/gameplay_keep/gFairySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairySkel[] = dgFairySkel; -#else -static const char gFairySkel[] __attribute__((aligned (2))) = dgFairySkel; -#endif - -#define dgUnknownCircle3Tex "__OTR__objects/gameplay_keep/gUnknownCircle3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownCircle3Tex[] = dgUnknownCircle3Tex; -#else -static const char gUnknownCircle3Tex[] __attribute__((aligned (2))) = dgUnknownCircle3Tex; -#endif - -#define dgUnknownCircle4Tex "__OTR__objects/gameplay_keep/gUnknownCircle4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownCircle4Tex[] = dgUnknownCircle4Tex; -#else -static const char gUnknownCircle4Tex[] __attribute__((aligned (2))) = dgUnknownCircle4Tex; -#endif - -#define dgHilite4Tex "__OTR__objects/gameplay_keep/gHilite4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHilite4Tex[] = dgHilite4Tex; -#else -static const char gHilite4Tex[] __attribute__((aligned (2))) = dgHilite4Tex; -#endif - -#define dgEffUnknown4Tex "__OTR__objects/gameplay_keep/gEffUnknown4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown4Tex[] = dgEffUnknown4Tex; -#else -static const char gEffUnknown4Tex[] __attribute__((aligned (2))) = dgEffUnknown4Tex; -#endif - -#define dgEffUnknown5Tex "__OTR__objects/gameplay_keep/gEffUnknown5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown5Tex[] = dgEffUnknown5Tex; -#else -static const char gEffUnknown5Tex[] __attribute__((aligned (2))) = dgEffUnknown5Tex; -#endif - -#define dgEffFireCircleDL "__OTR__objects/gameplay_keep/gEffFireCircleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireCircleDL[] = dgEffFireCircleDL; -#else -static const char gEffFireCircleDL[] __attribute__((aligned (2))) = dgEffFireCircleDL; -#endif - -#define dgFishOutOfWaterAnim "__OTR__objects/gameplay_keep/gFishOutOfWaterAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishOutOfWaterAnim[] = dgFishOutOfWaterAnim; -#else -static const char gFishOutOfWaterAnim[] __attribute__((aligned (2))) = dgFishOutOfWaterAnim; -#endif - -#define dgFishSkel "__OTR__objects/gameplay_keep/gFishSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishSkel[] = dgFishSkel; -#else -static const char gFishSkel[] __attribute__((aligned (2))) = dgFishSkel; -#endif - -#define dgFishInWaterAnim "__OTR__objects/gameplay_keep/gFishInWaterAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishInWaterAnim[] = dgFishInWaterAnim; -#else -static const char gFishInWaterAnim[] __attribute__((aligned (2))) = dgFishInWaterAnim; -#endif - -#define dgFishTailTex "__OTR__objects/gameplay_keep/gFishTailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishTailTex[] = dgFishTailTex; -#else -static const char gFishTailTex[] __attribute__((aligned (2))) = dgFishTailTex; -#endif - -#define dgFishBodyTex "__OTR__objects/gameplay_keep/gFishBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishBodyTex[] = dgFishBodyTex; -#else -static const char gFishBodyTex[] __attribute__((aligned (2))) = dgFishBodyTex; -#endif - -#define dgEffShockwaveTex "__OTR__objects/gameplay_keep/gEffShockwaveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffShockwaveTex[] = dgEffShockwaveTex; -#else -static const char gEffShockwaveTex[] __attribute__((aligned (2))) = dgEffShockwaveTex; -#endif - -#define dgEffShockwaveDL "__OTR__objects/gameplay_keep/gEffShockwaveDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffShockwaveDL[] = dgEffShockwaveDL; -#else -static const char gEffShockwaveDL[] __attribute__((aligned (2))) = dgEffShockwaveDL; -#endif - -#define dgEffBubbleDL "__OTR__objects/gameplay_keep/gEffBubbleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBubbleDL[] = dgEffBubbleDL; -#else -static const char gEffBubbleDL[] __attribute__((aligned (2))) = dgEffBubbleDL; -#endif - -#define dgGameplayKeepVtx_01A120 "__OTR__objects/gameplay_keep/gGameplayKeepVtx_01A120" -#ifdef _WIN32 -static const __declspec(align(2)) char gGameplayKeepVtx_01A120[] = dgGameplayKeepVtx_01A120; -#else -static const char gGameplayKeepVtx_01A120[] __attribute__((aligned (2))) = dgGameplayKeepVtx_01A120; -#endif - -#define dgEffFireFootprint1Tex "__OTR__objects/gameplay_keep/gEffFireFootprint1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprint1Tex[] = dgEffFireFootprint1Tex; -#else -static const char gEffFireFootprint1Tex[] __attribute__((aligned (2))) = dgEffFireFootprint1Tex; -#endif - -#define dgEffFireFootprint2Tex "__OTR__objects/gameplay_keep/gEffFireFootprint2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprint2Tex[] = dgEffFireFootprint2Tex; -#else -static const char gEffFireFootprint2Tex[] __attribute__((aligned (2))) = dgEffFireFootprint2Tex; -#endif - -#define dgEffFireFootprint3Tex "__OTR__objects/gameplay_keep/gEffFireFootprint3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprint3Tex[] = dgEffFireFootprint3Tex; -#else -static const char gEffFireFootprint3Tex[] __attribute__((aligned (2))) = dgEffFireFootprint3Tex; -#endif - -#define dgEffFireFootprint4Tex "__OTR__objects/gameplay_keep/gEffFireFootprint4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprint4Tex[] = dgEffFireFootprint4Tex; -#else -static const char gEffFireFootprint4Tex[] __attribute__((aligned (2))) = dgEffFireFootprint4Tex; -#endif - -#define dgEffFireFootprint5Tex "__OTR__objects/gameplay_keep/gEffFireFootprint5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprint5Tex[] = dgEffFireFootprint5Tex; -#else -static const char gEffFireFootprint5Tex[] __attribute__((aligned (2))) = dgEffFireFootprint5Tex; -#endif - -#define dgEffFireFootprint6Tex "__OTR__objects/gameplay_keep/gEffFireFootprint6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprint6Tex[] = dgEffFireFootprint6Tex; -#else -static const char gEffFireFootprint6Tex[] __attribute__((aligned (2))) = dgEffFireFootprint6Tex; -#endif - -#define dgEffFireFootprint7Tex "__OTR__objects/gameplay_keep/gEffFireFootprint7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprint7Tex[] = dgEffFireFootprint7Tex; -#else -static const char gEffFireFootprint7Tex[] __attribute__((aligned (2))) = dgEffFireFootprint7Tex; -#endif - -#define dgEffFireFootprint8Tex "__OTR__objects/gameplay_keep/gEffFireFootprint8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprint8Tex[] = dgEffFireFootprint8Tex; -#else -static const char gEffFireFootprint8Tex[] __attribute__((aligned (2))) = dgEffFireFootprint8Tex; -#endif - -#define dgEffFireFootprintDL "__OTR__objects/gameplay_keep/gEffFireFootprintDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFireFootprintDL[] = dgEffFireFootprintDL; -#else -static const char gEffFireFootprintDL[] __attribute__((aligned (2))) = dgEffFireFootprintDL; -#endif - -#define dgEffUnusedBubbles1Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubbles1Tex[] = dgEffUnusedBubbles1Tex; -#else -static const char gEffUnusedBubbles1Tex[] __attribute__((aligned (2))) = dgEffUnusedBubbles1Tex; -#endif - -#define dgEffUnusedBubbles2Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubbles2Tex[] = dgEffUnusedBubbles2Tex; -#else -static const char gEffUnusedBubbles2Tex[] __attribute__((aligned (2))) = dgEffUnusedBubbles2Tex; -#endif - -#define dgEffUnusedBubbles3Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubbles3Tex[] = dgEffUnusedBubbles3Tex; -#else -static const char gEffUnusedBubbles3Tex[] __attribute__((aligned (2))) = dgEffUnusedBubbles3Tex; -#endif - -#define dgEffUnusedBubbles4Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubbles4Tex[] = dgEffUnusedBubbles4Tex; -#else -static const char gEffUnusedBubbles4Tex[] __attribute__((aligned (2))) = dgEffUnusedBubbles4Tex; -#endif - -#define dgEffUnusedBubbles5Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubbles5Tex[] = dgEffUnusedBubbles5Tex; -#else -static const char gEffUnusedBubbles5Tex[] __attribute__((aligned (2))) = dgEffUnusedBubbles5Tex; -#endif - -#define dgEffUnusedBubbles6Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubbles6Tex[] = dgEffUnusedBubbles6Tex; -#else -static const char gEffUnusedBubbles6Tex[] __attribute__((aligned (2))) = dgEffUnusedBubbles6Tex; -#endif - -#define dgEffUnusedBubbles7Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubbles7Tex[] = dgEffUnusedBubbles7Tex; -#else -static const char gEffUnusedBubbles7Tex[] __attribute__((aligned (2))) = dgEffUnusedBubbles7Tex; -#endif - -#define dgEffUnusedBubbles8Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubbles8Tex[] = dgEffUnusedBubbles8Tex; -#else -static const char gEffUnusedBubbles8Tex[] __attribute__((aligned (2))) = dgEffUnusedBubbles8Tex; -#endif - -#define dgEffUnusedBubblesDL "__OTR__objects/gameplay_keep/gEffUnusedBubblesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnusedBubblesDL[] = dgEffUnusedBubblesDL; -#else -static const char gEffUnusedBubblesDL[] __attribute__((aligned (2))) = dgEffUnusedBubblesDL; -#endif - -#define dgLensOfTruthMaskTex "__OTR__objects/gameplay_keep/gLensOfTruthMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensOfTruthMaskTex[] = dgLensOfTruthMaskTex; -#else -static const char gLensOfTruthMaskTex[] __attribute__((aligned (2))) = dgLensOfTruthMaskTex; -#endif - -#define dgEffHitMark1Tex "__OTR__objects/gameplay_keep/gEffHitMark1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark1Tex[] = dgEffHitMark1Tex; -#else -static const char gEffHitMark1Tex[] __attribute__((aligned (2))) = dgEffHitMark1Tex; -#endif - -#define dgEffHitMark2Tex "__OTR__objects/gameplay_keep/gEffHitMark2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark2Tex[] = dgEffHitMark2Tex; -#else -static const char gEffHitMark2Tex[] __attribute__((aligned (2))) = dgEffHitMark2Tex; -#endif - -#define dgEffHitMark3Tex "__OTR__objects/gameplay_keep/gEffHitMark3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark3Tex[] = dgEffHitMark3Tex; -#else -static const char gEffHitMark3Tex[] __attribute__((aligned (2))) = dgEffHitMark3Tex; -#endif - -#define dgEffHitMark4Tex "__OTR__objects/gameplay_keep/gEffHitMark4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark4Tex[] = dgEffHitMark4Tex; -#else -static const char gEffHitMark4Tex[] __attribute__((aligned (2))) = dgEffHitMark4Tex; -#endif - -#define dgEffHitMark5Tex "__OTR__objects/gameplay_keep/gEffHitMark5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark5Tex[] = dgEffHitMark5Tex; -#else -static const char gEffHitMark5Tex[] __attribute__((aligned (2))) = dgEffHitMark5Tex; -#endif - -#define dgEffHitMark6Tex "__OTR__objects/gameplay_keep/gEffHitMark6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark6Tex[] = dgEffHitMark6Tex; -#else -static const char gEffHitMark6Tex[] __attribute__((aligned (2))) = dgEffHitMark6Tex; -#endif - -#define dgEffHitMark7Tex "__OTR__objects/gameplay_keep/gEffHitMark7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark7Tex[] = dgEffHitMark7Tex; -#else -static const char gEffHitMark7Tex[] __attribute__((aligned (2))) = dgEffHitMark7Tex; -#endif - -#define dgEffHitMark8Tex "__OTR__objects/gameplay_keep/gEffHitMark8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark8Tex[] = dgEffHitMark8Tex; -#else -static const char gEffHitMark8Tex[] __attribute__((aligned (2))) = dgEffHitMark8Tex; -#endif - -#define dgEffHitMark9Tex "__OTR__objects/gameplay_keep/gEffHitMark9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark9Tex[] = dgEffHitMark9Tex; -#else -static const char gEffHitMark9Tex[] __attribute__((aligned (2))) = dgEffHitMark9Tex; -#endif - -#define dgEffHitMark10Tex "__OTR__objects/gameplay_keep/gEffHitMark10Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark10Tex[] = dgEffHitMark10Tex; -#else -static const char gEffHitMark10Tex[] __attribute__((aligned (2))) = dgEffHitMark10Tex; -#endif - -#define dgEffHitMark11Tex "__OTR__objects/gameplay_keep/gEffHitMark11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark11Tex[] = dgEffHitMark11Tex; -#else -static const char gEffHitMark11Tex[] __attribute__((aligned (2))) = dgEffHitMark11Tex; -#endif - -#define dgEffHitMark12Tex "__OTR__objects/gameplay_keep/gEffHitMark12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark12Tex[] = dgEffHitMark12Tex; -#else -static const char gEffHitMark12Tex[] __attribute__((aligned (2))) = dgEffHitMark12Tex; -#endif - -#define dgEffHitMark13Tex "__OTR__objects/gameplay_keep/gEffHitMark13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark13Tex[] = dgEffHitMark13Tex; -#else -static const char gEffHitMark13Tex[] __attribute__((aligned (2))) = dgEffHitMark13Tex; -#endif - -#define dgEffHitMark14Tex "__OTR__objects/gameplay_keep/gEffHitMark14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark14Tex[] = dgEffHitMark14Tex; -#else -static const char gEffHitMark14Tex[] __attribute__((aligned (2))) = dgEffHitMark14Tex; -#endif - -#define dgEffHitMark15Tex "__OTR__objects/gameplay_keep/gEffHitMark15Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark15Tex[] = dgEffHitMark15Tex; -#else -static const char gEffHitMark15Tex[] __attribute__((aligned (2))) = dgEffHitMark15Tex; -#endif - -#define dgEffHitMark16Tex "__OTR__objects/gameplay_keep/gEffHitMark16Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark16Tex[] = dgEffHitMark16Tex; -#else -static const char gEffHitMark16Tex[] __attribute__((aligned (2))) = dgEffHitMark16Tex; -#endif - -#define dgEffHitMark17Tex "__OTR__objects/gameplay_keep/gEffHitMark17Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark17Tex[] = dgEffHitMark17Tex; -#else -static const char gEffHitMark17Tex[] __attribute__((aligned (2))) = dgEffHitMark17Tex; -#endif - -#define dgEffHitMark18Tex "__OTR__objects/gameplay_keep/gEffHitMark18Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark18Tex[] = dgEffHitMark18Tex; -#else -static const char gEffHitMark18Tex[] __attribute__((aligned (2))) = dgEffHitMark18Tex; -#endif - -#define dgEffHitMark19Tex "__OTR__objects/gameplay_keep/gEffHitMark19Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark19Tex[] = dgEffHitMark19Tex; -#else -static const char gEffHitMark19Tex[] __attribute__((aligned (2))) = dgEffHitMark19Tex; -#endif - -#define dgEffHitMark20Tex "__OTR__objects/gameplay_keep/gEffHitMark20Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark20Tex[] = dgEffHitMark20Tex; -#else -static const char gEffHitMark20Tex[] __attribute__((aligned (2))) = dgEffHitMark20Tex; -#endif - -#define dgEffHitMark21Tex "__OTR__objects/gameplay_keep/gEffHitMark21Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark21Tex[] = dgEffHitMark21Tex; -#else -static const char gEffHitMark21Tex[] __attribute__((aligned (2))) = dgEffHitMark21Tex; -#endif - -#define dgEffHitMark22Tex "__OTR__objects/gameplay_keep/gEffHitMark22Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark22Tex[] = dgEffHitMark22Tex; -#else -static const char gEffHitMark22Tex[] __attribute__((aligned (2))) = dgEffHitMark22Tex; -#endif - -#define dgEffHitMark23Tex "__OTR__objects/gameplay_keep/gEffHitMark23Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark23Tex[] = dgEffHitMark23Tex; -#else -static const char gEffHitMark23Tex[] __attribute__((aligned (2))) = dgEffHitMark23Tex; -#endif - -#define dgEffHitMark24Tex "__OTR__objects/gameplay_keep/gEffHitMark24Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMark24Tex[] = dgEffHitMark24Tex; -#else -static const char gEffHitMark24Tex[] __attribute__((aligned (2))) = dgEffHitMark24Tex; -#endif - -#define dgEffHitMarkDL "__OTR__objects/gameplay_keep/gEffHitMarkDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffHitMarkDL[] = dgEffHitMarkDL; -#else -static const char gEffHitMarkDL[] __attribute__((aligned (2))) = dgEffHitMarkDL; -#endif - -#define dgEffUnknown6Tex "__OTR__objects/gameplay_keep/gEffUnknown6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown6Tex[] = dgEffUnknown6Tex; -#else -static const char gEffUnknown6Tex[] __attribute__((aligned (2))) = dgEffUnknown6Tex; -#endif - -#define dgEffFleckTex "__OTR__objects/gameplay_keep/gEffFleckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFleckTex[] = dgEffFleckTex; -#else -static const char gEffFleckTex[] __attribute__((aligned (2))) = dgEffFleckTex; -#endif - -#define dgEffUnknown8Tex "__OTR__objects/gameplay_keep/gEffUnknown8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown8Tex[] = dgEffUnknown8Tex; -#else -static const char gEffUnknown8Tex[] __attribute__((aligned (2))) = dgEffUnknown8Tex; -#endif - -#define dgEffMagmaBubble1Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubble1Tex[] = dgEffMagmaBubble1Tex; -#else -static const char gEffMagmaBubble1Tex[] __attribute__((aligned (2))) = dgEffMagmaBubble1Tex; -#endif - -#define dgEffMagmaBubble2Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubble2Tex[] = dgEffMagmaBubble2Tex; -#else -static const char gEffMagmaBubble2Tex[] __attribute__((aligned (2))) = dgEffMagmaBubble2Tex; -#endif - -#define dgEffMagmaBubble3Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubble3Tex[] = dgEffMagmaBubble3Tex; -#else -static const char gEffMagmaBubble3Tex[] __attribute__((aligned (2))) = dgEffMagmaBubble3Tex; -#endif - -#define dgEffMagmaBubble4Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubble4Tex[] = dgEffMagmaBubble4Tex; -#else -static const char gEffMagmaBubble4Tex[] __attribute__((aligned (2))) = dgEffMagmaBubble4Tex; -#endif - -#define dgEffMagmaBubble5Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubble5Tex[] = dgEffMagmaBubble5Tex; -#else -static const char gEffMagmaBubble5Tex[] __attribute__((aligned (2))) = dgEffMagmaBubble5Tex; -#endif - -#define dgEffMagmaBubble6Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubble6Tex[] = dgEffMagmaBubble6Tex; -#else -static const char gEffMagmaBubble6Tex[] __attribute__((aligned (2))) = dgEffMagmaBubble6Tex; -#endif - -#define dgEffMagmaBubble7Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubble7Tex[] = dgEffMagmaBubble7Tex; -#else -static const char gEffMagmaBubble7Tex[] __attribute__((aligned (2))) = dgEffMagmaBubble7Tex; -#endif - -#define dgEffMagmaBubble8Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubble8Tex[] = dgEffMagmaBubble8Tex; -#else -static const char gEffMagmaBubble8Tex[] __attribute__((aligned (2))) = dgEffMagmaBubble8Tex; -#endif - -#define dgEffMagmaBubbleDL "__OTR__objects/gameplay_keep/gEffMagmaBubbleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffMagmaBubbleDL[] = dgEffMagmaBubbleDL; -#else -static const char gEffMagmaBubbleDL[] __attribute__((aligned (2))) = dgEffMagmaBubbleDL; -#endif - -#define dgEffWaterRippleTex "__OTR__objects/gameplay_keep/gEffWaterRippleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterRippleTex[] = dgEffWaterRippleTex; -#else -static const char gEffWaterRippleTex[] __attribute__((aligned (2))) = dgEffWaterRippleTex; -#endif - -#define dgEffWaterRippleDL "__OTR__objects/gameplay_keep/gEffWaterRippleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterRippleDL[] = dgEffWaterRippleDL; -#else -static const char gEffWaterRippleDL[] __attribute__((aligned (2))) = dgEffWaterRippleDL; -#endif - -#define dgEffSparkDL "__OTR__objects/gameplay_keep/gEffSparkDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSparkDL[] = dgEffSparkDL; -#else -static const char gEffSparkDL[] __attribute__((aligned (2))) = dgEffSparkDL; -#endif - -#define dgEffWaterSplash1Tex "__OTR__objects/gameplay_keep/gEffWaterSplash1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplash1Tex[] = dgEffWaterSplash1Tex; -#else -static const char gEffWaterSplash1Tex[] __attribute__((aligned (2))) = dgEffWaterSplash1Tex; -#endif - -#define dgEffWaterSplash2Tex "__OTR__objects/gameplay_keep/gEffWaterSplash2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplash2Tex[] = dgEffWaterSplash2Tex; -#else -static const char gEffWaterSplash2Tex[] __attribute__((aligned (2))) = dgEffWaterSplash2Tex; -#endif - -#define dgEffWaterSplash3Tex "__OTR__objects/gameplay_keep/gEffWaterSplash3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplash3Tex[] = dgEffWaterSplash3Tex; -#else -static const char gEffWaterSplash3Tex[] __attribute__((aligned (2))) = dgEffWaterSplash3Tex; -#endif - -#define dgEffWaterSplash4Tex "__OTR__objects/gameplay_keep/gEffWaterSplash4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplash4Tex[] = dgEffWaterSplash4Tex; -#else -static const char gEffWaterSplash4Tex[] __attribute__((aligned (2))) = dgEffWaterSplash4Tex; -#endif - -#define dgEffWaterSplash5Tex "__OTR__objects/gameplay_keep/gEffWaterSplash5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplash5Tex[] = dgEffWaterSplash5Tex; -#else -static const char gEffWaterSplash5Tex[] __attribute__((aligned (2))) = dgEffWaterSplash5Tex; -#endif - -#define dgEffWaterSplash6Tex "__OTR__objects/gameplay_keep/gEffWaterSplash6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplash6Tex[] = dgEffWaterSplash6Tex; -#else -static const char gEffWaterSplash6Tex[] __attribute__((aligned (2))) = dgEffWaterSplash6Tex; -#endif - -#define dgEffWaterSplash7Tex "__OTR__objects/gameplay_keep/gEffWaterSplash7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplash7Tex[] = dgEffWaterSplash7Tex; -#else -static const char gEffWaterSplash7Tex[] __attribute__((aligned (2))) = dgEffWaterSplash7Tex; -#endif - -#define dgEffWaterSplash8Tex "__OTR__objects/gameplay_keep/gEffWaterSplash8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplash8Tex[] = dgEffWaterSplash8Tex; -#else -static const char gEffWaterSplash8Tex[] __attribute__((aligned (2))) = dgEffWaterSplash8Tex; -#endif - -#define dgEffWaterSplashDL "__OTR__objects/gameplay_keep/gEffWaterSplashDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffWaterSplashDL[] = dgEffWaterSplashDL; -#else -static const char gEffWaterSplashDL[] __attribute__((aligned (2))) = dgEffWaterSplashDL; -#endif - -#define dgUnknownEffStone1Tex "__OTR__objects/gameplay_keep/gUnknownEffStone1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStone1Tex[] = dgUnknownEffStone1Tex; -#else -static const char gUnknownEffStone1Tex[] __attribute__((aligned (2))) = dgUnknownEffStone1Tex; -#endif - -#define dgUnknownEffStone2Tex "__OTR__objects/gameplay_keep/gUnknownEffStone2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStone2Tex[] = dgUnknownEffStone2Tex; -#else -static const char gUnknownEffStone2Tex[] __attribute__((aligned (2))) = dgUnknownEffStone2Tex; -#endif - -#define dgUnknownEffStone3Tex "__OTR__objects/gameplay_keep/gUnknownEffStone3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStone3Tex[] = dgUnknownEffStone3Tex; -#else -static const char gUnknownEffStone3Tex[] __attribute__((aligned (2))) = dgUnknownEffStone3Tex; -#endif - -#define dgUnknownEffStone4Tex "__OTR__objects/gameplay_keep/gUnknownEffStone4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStone4Tex[] = dgUnknownEffStone4Tex; -#else -static const char gUnknownEffStone4Tex[] __attribute__((aligned (2))) = dgUnknownEffStone4Tex; -#endif - -#define dgUnknownEffStone5Tex "__OTR__objects/gameplay_keep/gUnknownEffStone5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStone5Tex[] = dgUnknownEffStone5Tex; -#else -static const char gUnknownEffStone5Tex[] __attribute__((aligned (2))) = dgUnknownEffStone5Tex; -#endif - -#define dgUnknownEffStone6Tex "__OTR__objects/gameplay_keep/gUnknownEffStone6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStone6Tex[] = dgUnknownEffStone6Tex; -#else -static const char gUnknownEffStone6Tex[] __attribute__((aligned (2))) = dgUnknownEffStone6Tex; -#endif - -#define dgUnknownEffStone7Tex "__OTR__objects/gameplay_keep/gUnknownEffStone7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStone7Tex[] = dgUnknownEffStone7Tex; -#else -static const char gUnknownEffStone7Tex[] __attribute__((aligned (2))) = dgUnknownEffStone7Tex; -#endif - -#define dgUnknownEffStone8Tex "__OTR__objects/gameplay_keep/gUnknownEffStone8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStone8Tex[] = dgUnknownEffStone8Tex; -#else -static const char gUnknownEffStone8Tex[] __attribute__((aligned (2))) = dgUnknownEffStone8Tex; -#endif - -#define dgUnknownEffStoneDL "__OTR__objects/gameplay_keep/gUnknownEffStoneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownEffStoneDL[] = dgUnknownEffStoneDL; -#else -static const char gUnknownEffStoneDL[] __attribute__((aligned (2))) = dgUnknownEffStoneDL; -#endif - -#define dgEffLightning1Tex "__OTR__objects/gameplay_keep/gEffLightning1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightning1Tex[] = dgEffLightning1Tex; -#else -static const char gEffLightning1Tex[] __attribute__((aligned (2))) = dgEffLightning1Tex; -#endif - -#define dgEffLightning2Tex "__OTR__objects/gameplay_keep/gEffLightning2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightning2Tex[] = dgEffLightning2Tex; -#else -static const char gEffLightning2Tex[] __attribute__((aligned (2))) = dgEffLightning2Tex; -#endif - -#define dgEffLightning3Tex "__OTR__objects/gameplay_keep/gEffLightning3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightning3Tex[] = dgEffLightning3Tex; -#else -static const char gEffLightning3Tex[] __attribute__((aligned (2))) = dgEffLightning3Tex; -#endif - -#define dgEffLightning4Tex "__OTR__objects/gameplay_keep/gEffLightning4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightning4Tex[] = dgEffLightning4Tex; -#else -static const char gEffLightning4Tex[] __attribute__((aligned (2))) = dgEffLightning4Tex; -#endif - -#define dgEffLightning5Tex "__OTR__objects/gameplay_keep/gEffLightning5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightning5Tex[] = dgEffLightning5Tex; -#else -static const char gEffLightning5Tex[] __attribute__((aligned (2))) = dgEffLightning5Tex; -#endif - -#define dgEffLightning6Tex "__OTR__objects/gameplay_keep/gEffLightning6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightning6Tex[] = dgEffLightning6Tex; -#else -static const char gEffLightning6Tex[] __attribute__((aligned (2))) = dgEffLightning6Tex; -#endif - -#define dgEffLightning7Tex "__OTR__objects/gameplay_keep/gEffLightning7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightning7Tex[] = dgEffLightning7Tex; -#else -static const char gEffLightning7Tex[] __attribute__((aligned (2))) = dgEffLightning7Tex; -#endif - -#define dgEffLightning8Tex "__OTR__objects/gameplay_keep/gEffLightning8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightning8Tex[] = dgEffLightning8Tex; -#else -static const char gEffLightning8Tex[] __attribute__((aligned (2))) = dgEffLightning8Tex; -#endif - -#define dgEffLightningDL "__OTR__objects/gameplay_keep/gEffLightningDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffLightningDL[] = dgEffLightningDL; -#else -static const char gEffLightningDL[] __attribute__((aligned (2))) = dgEffLightningDL; -#endif - -#define dgEffEnemyDeathFlame1Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame1Tex[] = dgEffEnemyDeathFlame1Tex; -#else -static const char gEffEnemyDeathFlame1Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame1Tex; -#endif - -#define dgEffEnemyDeathFlame2Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame2Tex[] = dgEffEnemyDeathFlame2Tex; -#else -static const char gEffEnemyDeathFlame2Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame2Tex; -#endif - -#define dgEffEnemyDeathFlame3Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame3Tex[] = dgEffEnemyDeathFlame3Tex; -#else -static const char gEffEnemyDeathFlame3Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame3Tex; -#endif - -#define dgEffEnemyDeathFlame4Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame4Tex[] = dgEffEnemyDeathFlame4Tex; -#else -static const char gEffEnemyDeathFlame4Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame4Tex; -#endif - -#define dgEffEnemyDeathFlame5Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame5Tex[] = dgEffEnemyDeathFlame5Tex; -#else -static const char gEffEnemyDeathFlame5Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame5Tex; -#endif - -#define dgEffEnemyDeathFlame6Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame6Tex[] = dgEffEnemyDeathFlame6Tex; -#else -static const char gEffEnemyDeathFlame6Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame6Tex; -#endif - -#define dgEffEnemyDeathFlame7Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame7Tex[] = dgEffEnemyDeathFlame7Tex; -#else -static const char gEffEnemyDeathFlame7Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame7Tex; -#endif - -#define dgEffEnemyDeathFlame8Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame8Tex[] = dgEffEnemyDeathFlame8Tex; -#else -static const char gEffEnemyDeathFlame8Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame8Tex; -#endif - -#define dgEffEnemyDeathFlame9Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame9Tex[] = dgEffEnemyDeathFlame9Tex; -#else -static const char gEffEnemyDeathFlame9Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame9Tex; -#endif - -#define dgEffEnemyDeathFlame10Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame10Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlame10Tex[] = dgEffEnemyDeathFlame10Tex; -#else -static const char gEffEnemyDeathFlame10Tex[] __attribute__((aligned (2))) = dgEffEnemyDeathFlame10Tex; -#endif - -#define dgEffEnemyDeathFlameDL "__OTR__objects/gameplay_keep/gEffEnemyDeathFlameDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffEnemyDeathFlameDL[] = dgEffEnemyDeathFlameDL; -#else -static const char gEffEnemyDeathFlameDL[] __attribute__((aligned (2))) = dgEffEnemyDeathFlameDL; -#endif - -#define dgEffUnknown9Tex "__OTR__objects/gameplay_keep/gEffUnknown9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown9Tex[] = dgEffUnknown9Tex; -#else -static const char gEffUnknown9Tex[] __attribute__((aligned (2))) = dgEffUnknown9Tex; -#endif - -#define dgEffUnknown10Tex "__OTR__objects/gameplay_keep/gEffUnknown10Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown10Tex[] = dgEffUnknown10Tex; -#else -static const char gEffUnknown10Tex[] __attribute__((aligned (2))) = dgEffUnknown10Tex; -#endif - -#define dgEffUnknown11Tex "__OTR__objects/gameplay_keep/gEffUnknown11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown11Tex[] = dgEffUnknown11Tex; -#else -static const char gEffUnknown11Tex[] __attribute__((aligned (2))) = dgEffUnknown11Tex; -#endif - -#define dgEffUnknown12Tex "__OTR__objects/gameplay_keep/gEffUnknown12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown12Tex[] = dgEffUnknown12Tex; -#else -static const char gEffUnknown12Tex[] __attribute__((aligned (2))) = dgEffUnknown12Tex; -#endif - -#define dgUnknownWoodBoardTex "__OTR__objects/gameplay_keep/gUnknownWoodBoardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownWoodBoardTex[] = dgUnknownWoodBoardTex; -#else -static const char gUnknownWoodBoardTex[] __attribute__((aligned (2))) = dgUnknownWoodBoardTex; -#endif - -#define dgEffIceFragment1DL "__OTR__objects/gameplay_keep/gEffIceFragment1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffIceFragment1DL[] = dgEffIceFragment1DL; -#else -static const char gEffIceFragment1DL[] __attribute__((aligned (2))) = dgEffIceFragment1DL; -#endif - -#define dgEffIceFragment2DL "__OTR__objects/gameplay_keep/gEffIceFragment2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffIceFragment2DL[] = dgEffIceFragment2DL; -#else -static const char gEffIceFragment2DL[] __attribute__((aligned (2))) = dgEffIceFragment2DL; -#endif - -#define dgEffIceFragment3DL "__OTR__objects/gameplay_keep/gEffIceFragment3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffIceFragment3DL[] = dgEffIceFragment3DL; -#else -static const char gEffIceFragment3DL[] __attribute__((aligned (2))) = dgEffIceFragment3DL; -#endif - -#define dgBugCrawlAnim "__OTR__objects/gameplay_keep/gBugCrawlAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugCrawlAnim[] = dgBugCrawlAnim; -#else -static const char gBugCrawlAnim[] __attribute__((aligned (2))) = dgBugCrawlAnim; -#endif - -#define dgBugLimb1DL "__OTR__objects/gameplay_keep/gBugLimb1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb1DL[] = dgBugLimb1DL; -#else -static const char gBugLimb1DL[] __attribute__((aligned (2))) = dgBugLimb1DL; -#endif - -#define dgBugLimb1WrapperDL "__OTR__objects/gameplay_keep/gBugLimb1WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb1WrapperDL[] = dgBugLimb1WrapperDL; -#else -static const char gBugLimb1WrapperDL[] __attribute__((aligned (2))) = dgBugLimb1WrapperDL; -#endif - -#define dgBugLimb1WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb1WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb1WrapperWrapperDL[] = dgBugLimb1WrapperWrapperDL; -#else -static const char gBugLimb1WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb1WrapperWrapperDL; -#endif - -#define dgBugLimb2DL "__OTR__objects/gameplay_keep/gBugLimb2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb2DL[] = dgBugLimb2DL; -#else -static const char gBugLimb2DL[] __attribute__((aligned (2))) = dgBugLimb2DL; -#endif - -#define dgBugLimb2WrapperDL "__OTR__objects/gameplay_keep/gBugLimb2WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb2WrapperDL[] = dgBugLimb2WrapperDL; -#else -static const char gBugLimb2WrapperDL[] __attribute__((aligned (2))) = dgBugLimb2WrapperDL; -#endif - -#define dgBugLimb2WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb2WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb2WrapperWrapperDL[] = dgBugLimb2WrapperWrapperDL; -#else -static const char gBugLimb2WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb2WrapperWrapperDL; -#endif - -#define dgBugLimb3DL "__OTR__objects/gameplay_keep/gBugLimb3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb3DL[] = dgBugLimb3DL; -#else -static const char gBugLimb3DL[] __attribute__((aligned (2))) = dgBugLimb3DL; -#endif - -#define dgBugLimb3WrapperDL "__OTR__objects/gameplay_keep/gBugLimb3WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb3WrapperDL[] = dgBugLimb3WrapperDL; -#else -static const char gBugLimb3WrapperDL[] __attribute__((aligned (2))) = dgBugLimb3WrapperDL; -#endif - -#define dgBugLimb3WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb3WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb3WrapperWrapperDL[] = dgBugLimb3WrapperWrapperDL; -#else -static const char gBugLimb3WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb3WrapperWrapperDL; -#endif - -#define dgBugLimb4DL "__OTR__objects/gameplay_keep/gBugLimb4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb4DL[] = dgBugLimb4DL; -#else -static const char gBugLimb4DL[] __attribute__((aligned (2))) = dgBugLimb4DL; -#endif - -#define dgBugLimb4WrapperDL "__OTR__objects/gameplay_keep/gBugLimb4WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb4WrapperDL[] = dgBugLimb4WrapperDL; -#else -static const char gBugLimb4WrapperDL[] __attribute__((aligned (2))) = dgBugLimb4WrapperDL; -#endif - -#define dgBugLimb4WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb4WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb4WrapperWrapperDL[] = dgBugLimb4WrapperWrapperDL; -#else -static const char gBugLimb4WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb4WrapperWrapperDL; -#endif - -#define dgBugLimb5DL "__OTR__objects/gameplay_keep/gBugLimb5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb5DL[] = dgBugLimb5DL; -#else -static const char gBugLimb5DL[] __attribute__((aligned (2))) = dgBugLimb5DL; -#endif - -#define dgBugLimb5WrapperDL "__OTR__objects/gameplay_keep/gBugLimb5WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb5WrapperDL[] = dgBugLimb5WrapperDL; -#else -static const char gBugLimb5WrapperDL[] __attribute__((aligned (2))) = dgBugLimb5WrapperDL; -#endif - -#define dgBugLimb5WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb5WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb5WrapperWrapperDL[] = dgBugLimb5WrapperWrapperDL; -#else -static const char gBugLimb5WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb5WrapperWrapperDL; -#endif - -#define dgBugLimb6DL "__OTR__objects/gameplay_keep/gBugLimb6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb6DL[] = dgBugLimb6DL; -#else -static const char gBugLimb6DL[] __attribute__((aligned (2))) = dgBugLimb6DL; -#endif - -#define dgBugLimb6WrapperDL "__OTR__objects/gameplay_keep/gBugLimb6WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb6WrapperDL[] = dgBugLimb6WrapperDL; -#else -static const char gBugLimb6WrapperDL[] __attribute__((aligned (2))) = dgBugLimb6WrapperDL; -#endif - -#define dgBugLimb6WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb6WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb6WrapperWrapperDL[] = dgBugLimb6WrapperWrapperDL; -#else -static const char gBugLimb6WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb6WrapperWrapperDL; -#endif - -#define dgBugLimb7DL "__OTR__objects/gameplay_keep/gBugLimb7DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb7DL[] = dgBugLimb7DL; -#else -static const char gBugLimb7DL[] __attribute__((aligned (2))) = dgBugLimb7DL; -#endif - -#define dgBugLimb7WrapperDL "__OTR__objects/gameplay_keep/gBugLimb7WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb7WrapperDL[] = dgBugLimb7WrapperDL; -#else -static const char gBugLimb7WrapperDL[] __attribute__((aligned (2))) = dgBugLimb7WrapperDL; -#endif - -#define dgBugLimb7WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb7WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb7WrapperWrapperDL[] = dgBugLimb7WrapperWrapperDL; -#else -static const char gBugLimb7WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb7WrapperWrapperDL; -#endif - -#define dgBugLimb8DL "__OTR__objects/gameplay_keep/gBugLimb8DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb8DL[] = dgBugLimb8DL; -#else -static const char gBugLimb8DL[] __attribute__((aligned (2))) = dgBugLimb8DL; -#endif - -#define dgBugLimb8WrapperDL "__OTR__objects/gameplay_keep/gBugLimb8WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb8WrapperDL[] = dgBugLimb8WrapperDL; -#else -static const char gBugLimb8WrapperDL[] __attribute__((aligned (2))) = dgBugLimb8WrapperDL; -#endif - -#define dgBugLimb8WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb8WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb8WrapperWrapperDL[] = dgBugLimb8WrapperWrapperDL; -#else -static const char gBugLimb8WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb8WrapperWrapperDL; -#endif - -#define dgBugLimb9DL "__OTR__objects/gameplay_keep/gBugLimb9DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb9DL[] = dgBugLimb9DL; -#else -static const char gBugLimb9DL[] __attribute__((aligned (2))) = dgBugLimb9DL; -#endif - -#define dgBugLimb9WrapperDL "__OTR__objects/gameplay_keep/gBugLimb9WrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb9WrapperDL[] = dgBugLimb9WrapperDL; -#else -static const char gBugLimb9WrapperDL[] __attribute__((aligned (2))) = dgBugLimb9WrapperDL; -#endif - -#define dgBugLimb9WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb9WrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLimb9WrapperWrapperDL[] = dgBugLimb9WrapperWrapperDL; -#else -static const char gBugLimb9WrapperWrapperDL[] __attribute__((aligned (2))) = dgBugLimb9WrapperWrapperDL; -#endif - -#define dgBugSkel "__OTR__objects/gameplay_keep/gBugSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugSkel[] = dgBugSkel; -#else -static const char gBugSkel[] __attribute__((aligned (2))) = dgBugSkel; -#endif - -#define dgBugBodyTex "__OTR__objects/gameplay_keep/gBugBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugBodyTex[] = dgBugBodyTex; -#else -static const char gBugBodyTex[] __attribute__((aligned (2))) = dgBugBodyTex; -#endif - -#define dgBugLegTex "__OTR__objects/gameplay_keep/gBugLegTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugLegTex[] = dgBugLegTex; -#else -static const char gBugLegTex[] __attribute__((aligned (2))) = dgBugLegTex; -#endif - -#define dgCuttableShrubStalkDL "__OTR__objects/gameplay_keep/gCuttableShrubStalkDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuttableShrubStalkDL[] = dgCuttableShrubStalkDL; -#else -static const char gCuttableShrubStalkDL[] __attribute__((aligned (2))) = dgCuttableShrubStalkDL; -#endif - -#define dgCuttableShrubTipDL "__OTR__objects/gameplay_keep/gCuttableShrubTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuttableShrubTipDL[] = dgCuttableShrubTipDL; -#else -static const char gCuttableShrubTipDL[] __attribute__((aligned (2))) = dgCuttableShrubTipDL; -#endif - -#define dgCuttableShrubLeafTFragmentTex "__OTR__objects/gameplay_keep/gCuttableShrubLeafTFragmentTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuttableShrubLeafTFragmentTex[] = dgCuttableShrubLeafTFragmentTex; -#else -static const char gCuttableShrubLeafTFragmentTex[] __attribute__((aligned (2))) = dgCuttableShrubLeafTFragmentTex; -#endif - -#define dgCuttableShrubTex "__OTR__objects/gameplay_keep/gCuttableShrubTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuttableShrubTex[] = dgCuttableShrubTex; -#else -static const char gCuttableShrubTex[] __attribute__((aligned (2))) = dgCuttableShrubTex; -#endif - -#define dgLensFlareCircleTex "__OTR__objects/gameplay_keep/gLensFlareCircleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensFlareCircleTex[] = dgLensFlareCircleTex; -#else -static const char gLensFlareCircleTex[] __attribute__((aligned (2))) = dgLensFlareCircleTex; -#endif - -#define dgLensFlareRingTex "__OTR__objects/gameplay_keep/gLensFlareRingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensFlareRingTex[] = dgLensFlareRingTex; -#else -static const char gLensFlareRingTex[] __attribute__((aligned (2))) = dgLensFlareRingTex; -#endif - -#define dgLensFlareCircleDL "__OTR__objects/gameplay_keep/gLensFlareCircleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensFlareCircleDL[] = dgLensFlareCircleDL; -#else -static const char gLensFlareCircleDL[] __attribute__((aligned (2))) = dgLensFlareCircleDL; -#endif - -#define dgLensFlareRingDL "__OTR__objects/gameplay_keep/gLensFlareRingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensFlareRingDL[] = dgLensFlareRingDL; -#else -static const char gLensFlareRingDL[] __attribute__((aligned (2))) = dgLensFlareRingDL; -#endif - -#define dgEffSparklesDL "__OTR__objects/gameplay_keep/gEffSparklesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSparklesDL[] = dgEffSparklesDL; -#else -static const char gEffSparklesDL[] __attribute__((aligned (2))) = dgEffSparklesDL; -#endif - -#define dgEffSparklesTex "__OTR__objects/gameplay_keep/gEffSparklesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSparklesTex[] = dgEffSparklesTex; -#else -static const char gEffSparklesTex[] __attribute__((aligned (2))) = dgEffSparklesTex; -#endif - -#define dgEffUnknown13Tex "__OTR__objects/gameplay_keep/gEffUnknown13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown13Tex[] = dgEffUnknown13Tex; -#else -static const char gEffUnknown13Tex[] __attribute__((aligned (2))) = dgEffUnknown13Tex; -#endif - -#define dgEffUnknown14Tex "__OTR__objects/gameplay_keep/gEffUnknown14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffUnknown14Tex[] = dgEffUnknown14Tex; -#else -static const char gEffUnknown14Tex[] __attribute__((aligned (2))) = dgEffUnknown14Tex; -#endif - -#define dgHoverBootsCircleDL "__OTR__objects/gameplay_keep/gHoverBootsCircleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoverBootsCircleDL[] = dgHoverBootsCircleDL; -#else -static const char gHoverBootsCircleDL[] __attribute__((aligned (2))) = dgHoverBootsCircleDL; -#endif - -#define dgMoonTex "__OTR__objects/gameplay_keep/gMoonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoonTex[] = dgMoonTex; -#else -static const char gMoonTex[] __attribute__((aligned (2))) = dgMoonTex; -#endif - -#define dgMoonDL "__OTR__objects/gameplay_keep/gMoonDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoonDL[] = dgMoonDL; -#else -static const char gMoonDL[] __attribute__((aligned (2))) = dgMoonDL; -#endif - -#define dgUnknownCircle6Tex "__OTR__objects/gameplay_keep/gUnknownCircle6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownCircle6Tex[] = dgUnknownCircle6Tex; -#else -static const char gUnknownCircle6Tex[] __attribute__((aligned (2))) = dgUnknownCircle6Tex; -#endif - -#define dgLargerCubeCol "__OTR__objects/gameplay_keep/gLargerCubeCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargerCubeCol[] = dgLargerCubeCol; -#else -static const char gLargerCubeCol[] __attribute__((aligned (2))) = dgLargerCubeCol; -#endif - -#define dgLiftableRockDL "__OTR__objects/gameplay_keep/gLiftableRockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLiftableRockDL[] = dgLiftableRockDL; -#else -static const char gLiftableRockDL[] __attribute__((aligned (2))) = dgLiftableRockDL; -#endif - -#define dgUnusedRockRectangularPrism1DL "__OTR__objects/gameplay_keep/gUnusedRockRectangularPrism1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedRockRectangularPrism1DL[] = dgUnusedRockRectangularPrism1DL; -#else -static const char gUnusedRockRectangularPrism1DL[] __attribute__((aligned (2))) = dgUnusedRockRectangularPrism1DL; -#endif - -#define dgWideTallBlockCol "__OTR__objects/gameplay_keep/gWideTallBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gWideTallBlockCol[] = dgWideTallBlockCol; -#else -static const char gWideTallBlockCol[] __attribute__((aligned (2))) = dgWideTallBlockCol; -#endif - -#define dgFlatBlockDL "__OTR__objects/gameplay_keep/gFlatBlockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlatBlockDL[] = dgFlatBlockDL; -#else -static const char gFlatBlockDL[] __attribute__((aligned (2))) = dgFlatBlockDL; -#endif - -#define dgTallBlockCol "__OTR__objects/gameplay_keep/gTallBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gTallBlockCol[] = dgTallBlockCol; -#else -static const char gTallBlockCol[] __attribute__((aligned (2))) = dgTallBlockCol; -#endif - -#define dgUnusedRockRectangularPrism3DL "__OTR__objects/gameplay_keep/gUnusedRockRectangularPrism3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedRockRectangularPrism3DL[] = dgUnusedRockRectangularPrism3DL; -#else -static const char gUnusedRockRectangularPrism3DL[] __attribute__((aligned (2))) = dgUnusedRockRectangularPrism3DL; -#endif - -#define dgSmallerFlatBlockCol "__OTR__objects/gameplay_keep/gSmallerFlatBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gSmallerFlatBlockCol[] = dgSmallerFlatBlockCol; -#else -static const char gSmallerFlatBlockCol[] __attribute__((aligned (2))) = dgSmallerFlatBlockCol; -#endif - -#define dgFlatRotBlockDL "__OTR__objects/gameplay_keep/gFlatRotBlockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlatRotBlockDL[] = dgFlatRotBlockDL; -#else -static const char gFlatRotBlockDL[] __attribute__((aligned (2))) = dgFlatRotBlockDL; -#endif - -#define dgLargerFlatBlockCol "__OTR__objects/gameplay_keep/gLargerFlatBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargerFlatBlockCol[] = dgLargerFlatBlockCol; -#else -static const char gLargerFlatBlockCol[] __attribute__((aligned (2))) = dgLargerFlatBlockCol; -#endif - -#define dgSmallCubeDL "__OTR__objects/gameplay_keep/gSmallCubeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSmallCubeDL[] = dgSmallCubeDL; -#else -static const char gSmallCubeDL[] __attribute__((aligned (2))) = dgSmallCubeDL; -#endif - -#define dgSmallerCubeCol "__OTR__objects/gameplay_keep/gSmallerCubeCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gSmallerCubeCol[] = dgSmallerCubeCol; -#else -static const char gSmallerCubeCol[] __attribute__((aligned (2))) = dgSmallerCubeCol; -#endif - -#define dgTreeStumpDL "__OTR__objects/gameplay_keep/gTreeStumpDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreeStumpDL[] = dgTreeStumpDL; -#else -static const char gTreeStumpDL[] __attribute__((aligned (2))) = dgTreeStumpDL; -#endif - -#define dgGrassBladesDL "__OTR__objects/gameplay_keep/gGrassBladesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGrassBladesDL[] = dgGrassBladesDL; -#else -static const char gGrassBladesDL[] __attribute__((aligned (2))) = dgGrassBladesDL; -#endif - -#define dgHeartShapeTex "__OTR__objects/gameplay_keep/gHeartShapeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartShapeTex[] = dgHeartShapeTex; -#else -static const char gHeartShapeTex[] __attribute__((aligned (2))) = dgHeartShapeTex; -#endif - -#define dgHeartPieceInteriorDL "__OTR__objects/gameplay_keep/gHeartPieceInteriorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartPieceInteriorDL[] = dgHeartPieceInteriorDL; -#else -static const char gHeartPieceInteriorDL[] __attribute__((aligned (2))) = dgHeartPieceInteriorDL; -#endif - -#define dgHeartPieceExteriorDL "__OTR__objects/gameplay_keep/gHeartPieceExteriorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartPieceExteriorDL[] = dgHeartPieceExteriorDL; -#else -static const char gHeartPieceExteriorDL[] __attribute__((aligned (2))) = dgHeartPieceExteriorDL; -#endif - -#define dgHeartContainerInteriorDL "__OTR__objects/gameplay_keep/gHeartContainerInteriorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartContainerInteriorDL[] = dgHeartContainerInteriorDL; -#else -static const char gHeartContainerInteriorDL[] __attribute__((aligned (2))) = dgHeartContainerInteriorDL; -#endif - -#define dgSignRectangularDL "__OTR__objects/gameplay_keep/gSignRectangularDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSignRectangularDL[] = dgSignRectangularDL; -#else -static const char gSignRectangularDL[] __attribute__((aligned (2))) = dgSignRectangularDL; -#endif - -#define dgSignDirectionalDL "__OTR__objects/gameplay_keep/gSignDirectionalDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSignDirectionalDL[] = dgSignDirectionalDL; -#else -static const char gSignDirectionalDL[] __attribute__((aligned (2))) = dgSignDirectionalDL; -#endif - -#define dgDropArrows2Tex "__OTR__objects/gameplay_keep/gDropArrows2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropArrows2Tex[] = dgDropArrows2Tex; -#else -static const char gDropArrows2Tex[] __attribute__((aligned (2))) = dgDropArrows2Tex; -#endif - -#define dgDropArrows1Tex "__OTR__objects/gameplay_keep/gDropArrows1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropArrows1Tex[] = dgDropArrows1Tex; -#else -static const char gDropArrows1Tex[] __attribute__((aligned (2))) = dgDropArrows1Tex; -#endif - -#define dgDropArrows3Tex "__OTR__objects/gameplay_keep/gDropArrows3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropArrows3Tex[] = dgDropArrows3Tex; -#else -static const char gDropArrows3Tex[] __attribute__((aligned (2))) = dgDropArrows3Tex; -#endif - -#define dgDropBombTex "__OTR__objects/gameplay_keep/gDropBombTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropBombTex[] = dgDropBombTex; -#else -static const char gDropBombTex[] __attribute__((aligned (2))) = dgDropBombTex; -#endif - -#define dgDropRecoveryHeartTex "__OTR__objects/gameplay_keep/gDropRecoveryHeartTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropRecoveryHeartTex[] = dgDropRecoveryHeartTex; -#else -static const char gDropRecoveryHeartTex[] __attribute__((aligned (2))) = dgDropRecoveryHeartTex; -#endif - -#define dgItemDropDL "__OTR__objects/gameplay_keep/gItemDropDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gItemDropDL[] = dgItemDropDL; -#else -static const char gItemDropDL[] __attribute__((aligned (2))) = dgItemDropDL; -#endif - -#define dgDropKeySmallTex "__OTR__objects/gameplay_keep/gDropKeySmallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropKeySmallTex[] = dgDropKeySmallTex; -#else -static const char gDropKeySmallTex[] __attribute__((aligned (2))) = dgDropKeySmallTex; -#endif - -#define dgDropMagicSmallTex "__OTR__objects/gameplay_keep/gDropMagicSmallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropMagicSmallTex[] = dgDropMagicSmallTex; -#else -static const char gDropMagicSmallTex[] __attribute__((aligned (2))) = dgDropMagicSmallTex; -#endif - -#define dgDropDekuNutTex "__OTR__objects/gameplay_keep/gDropDekuNutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropDekuNutTex[] = dgDropDekuNutTex; -#else -static const char gDropDekuNutTex[] __attribute__((aligned (2))) = dgDropDekuNutTex; -#endif - -#define dgDropDekuSeedsTex "__OTR__objects/gameplay_keep/gDropDekuSeedsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropDekuSeedsTex[] = dgDropDekuSeedsTex; -#else -static const char gDropDekuSeedsTex[] __attribute__((aligned (2))) = dgDropDekuSeedsTex; -#endif - -#define dgDropDekuStickTex "__OTR__objects/gameplay_keep/gDropDekuStickTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropDekuStickTex[] = dgDropDekuStickTex; -#else -static const char gDropDekuStickTex[] __attribute__((aligned (2))) = dgDropDekuStickTex; -#endif - -#define dgDropMagicLargeTex "__OTR__objects/gameplay_keep/gDropMagicLargeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropMagicLargeTex[] = dgDropMagicLargeTex; -#else -static const char gDropMagicLargeTex[] __attribute__((aligned (2))) = dgDropMagicLargeTex; -#endif - -#define dgRupeeGreenTex "__OTR__objects/gameplay_keep/gRupeeGreenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeeGreenTex[] = dgRupeeGreenTex; -#else -static const char gRupeeGreenTex[] __attribute__((aligned (2))) = dgRupeeGreenTex; -#endif - -#define dgRupeeBlueTex "__OTR__objects/gameplay_keep/gRupeeBlueTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeeBlueTex[] = dgRupeeBlueTex; -#else -static const char gRupeeBlueTex[] __attribute__((aligned (2))) = dgRupeeBlueTex; -#endif - -#define dgRupeeRedTex "__OTR__objects/gameplay_keep/gRupeeRedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeeRedTex[] = dgRupeeRedTex; -#else -static const char gRupeeRedTex[] __attribute__((aligned (2))) = dgRupeeRedTex; -#endif - -#define dgRupeePinkTex "__OTR__objects/gameplay_keep/gRupeePinkTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeePinkTex[] = dgRupeePinkTex; -#else -static const char gRupeePinkTex[] __attribute__((aligned (2))) = dgRupeePinkTex; -#endif - -#define dgRupeeOrangeTex "__OTR__objects/gameplay_keep/gRupeeOrangeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeeOrangeTex[] = dgRupeeOrangeTex; -#else -static const char gRupeeOrangeTex[] __attribute__((aligned (2))) = dgRupeeOrangeTex; -#endif - -#define dgRupeeSilverTex "__OTR__objects/gameplay_keep/gRupeeSilverTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeeSilverTex[] = dgRupeeSilverTex; -#else -static const char gRupeeSilverTex[] __attribute__((aligned (2))) = dgRupeeSilverTex; -#endif - -#define dgRupeeDL "__OTR__objects/gameplay_keep/gRupeeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeeDL[] = dgRupeeDL; -#else -static const char gRupeeDL[] __attribute__((aligned (2))) = dgRupeeDL; -#endif - -#define dgRupeeLightRedTex "__OTR__objects/gameplay_keep/gRupeeLightRedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeeLightRedTex[] = dgRupeeLightRedTex; -#else -static const char gRupeeLightRedTex[] __attribute__((aligned (2))) = dgRupeeLightRedTex; -#endif - -#define dgUnknownStone1Tex "__OTR__objects/gameplay_keep/gUnknownStone1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownStone1Tex[] = dgUnknownStone1Tex; -#else -static const char gUnknownStone1Tex[] __attribute__((aligned (2))) = dgUnknownStone1Tex; -#endif - -#define dgUnknownStone2Tex "__OTR__objects/gameplay_keep/gUnknownStone2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownStone2Tex[] = dgUnknownStone2Tex; -#else -static const char gUnknownStone2Tex[] __attribute__((aligned (2))) = dgUnknownStone2Tex; -#endif - -#define dgUnusedTreeStumpTopTex "__OTR__objects/gameplay_keep/gUnusedTreeStumpTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedTreeStumpTopTex[] = dgUnusedTreeStumpTopTex; -#else -static const char gUnusedTreeStumpTopTex[] __attribute__((aligned (2))) = dgUnusedTreeStumpTopTex; -#endif - -#define dgUnusedTreeStumpBarkTex "__OTR__objects/gameplay_keep/gUnusedTreeStumpBarkTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedTreeStumpBarkTex[] = dgUnusedTreeStumpBarkTex; -#else -static const char gUnusedTreeStumpBarkTex[] __attribute__((aligned (2))) = dgUnusedTreeStumpBarkTex; -#endif - -#define dgUnusedGrassBladesTex "__OTR__objects/gameplay_keep/gUnusedGrassBladesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedGrassBladesTex[] = dgUnusedGrassBladesTex; -#else -static const char gUnusedGrassBladesTex[] __attribute__((aligned (2))) = dgUnusedGrassBladesTex; -#endif - -#define dgUnusedStoneHookshotTargetTex "__OTR__objects/gameplay_keep/gUnusedStoneHookshotTargetTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedStoneHookshotTargetTex[] = dgUnusedStoneHookshotTargetTex; -#else -static const char gUnusedStoneHookshotTargetTex[] __attribute__((aligned (2))) = dgUnusedStoneHookshotTargetTex; -#endif - -#define dgUnknownStone3Tex "__OTR__objects/gameplay_keep/gUnknownStone3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownStone3Tex[] = dgUnknownStone3Tex; -#else -static const char gUnknownStone3Tex[] __attribute__((aligned (2))) = dgUnknownStone3Tex; -#endif - -#define dgSignRectangularSideTex "__OTR__objects/gameplay_keep/gSignRectangularSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSignRectangularSideTex[] = dgSignRectangularSideTex; -#else -static const char gSignRectangularSideTex[] __attribute__((aligned (2))) = dgSignRectangularSideTex; -#endif - -#define dgSignRectangularFrontTex "__OTR__objects/gameplay_keep/gSignRectangularFrontTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSignRectangularFrontTex[] = dgSignRectangularFrontTex; -#else -static const char gSignRectangularFrontTex[] __attribute__((aligned (2))) = dgSignRectangularFrontTex; -#endif - -#define dgSignPostWoodTex "__OTR__objects/gameplay_keep/gSignPostWoodTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSignPostWoodTex[] = dgSignPostWoodTex; -#else -static const char gSignPostWoodTex[] __attribute__((aligned (2))) = dgSignPostWoodTex; -#endif - -#define dgSignLetteringTex "__OTR__objects/gameplay_keep/gSignLetteringTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSignLetteringTex[] = dgSignLetteringTex; -#else -static const char gSignLetteringTex[] __attribute__((aligned (2))) = dgSignLetteringTex; -#endif - -#define dgRaindropDL "__OTR__objects/gameplay_keep/gRaindropDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRaindropDL[] = dgRaindropDL; -#else -static const char gRaindropDL[] __attribute__((aligned (2))) = dgRaindropDL; -#endif - -#define dgFootShadowDL "__OTR__objects/gameplay_keep/gFootShadowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFootShadowDL[] = dgFootShadowDL; -#else -static const char gFootShadowDL[] __attribute__((aligned (2))) = dgFootShadowDL; -#endif - -#define dgFootShadowTex "__OTR__objects/gameplay_keep/gFootShadowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFootShadowTex[] = dgFootShadowTex; -#else -static const char gFootShadowTex[] __attribute__((aligned (2))) = dgFootShadowTex; -#endif - -#define dgCircleShadowDL "__OTR__objects/gameplay_keep/gCircleShadowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCircleShadowDL[] = dgCircleShadowDL; -#else -static const char gCircleShadowDL[] __attribute__((aligned (2))) = dgCircleShadowDL; -#endif - -#define dgCircleShadowTex "__OTR__objects/gameplay_keep/gCircleShadowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCircleShadowTex[] = dgCircleShadowTex; -#else -static const char gCircleShadowTex[] __attribute__((aligned (2))) = dgCircleShadowTex; -#endif - -#define dgHorseShadowDL "__OTR__objects/gameplay_keep/gHorseShadowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseShadowDL[] = dgHorseShadowDL; -#else -static const char gHorseShadowDL[] __attribute__((aligned (2))) = dgHorseShadowDL; -#endif - -#define dgHorseShadowTex "__OTR__objects/gameplay_keep/gHorseShadowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseShadowTex[] = dgHorseShadowTex; -#else -static const char gHorseShadowTex[] __attribute__((aligned (2))) = dgHorseShadowTex; -#endif - -#define dgDungeonDoorDL "__OTR__objects/gameplay_keep/gDungeonDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonDoorDL[] = dgDungeonDoorDL; -#else -static const char gDungeonDoorDL[] __attribute__((aligned (2))) = dgDungeonDoorDL; -#endif - -#define dgDoorMetalBarsTex "__OTR__objects/gameplay_keep/gDoorMetalBarsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorMetalBarsTex[] = dgDoorMetalBarsTex; -#else -static const char gDoorMetalBarsTex[] __attribute__((aligned (2))) = dgDoorMetalBarsTex; -#endif - -#define dgDoorMetalBarsDL "__OTR__objects/gameplay_keep/gDoorMetalBarsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorMetalBarsDL[] = dgDoorMetalBarsDL; -#else -static const char gDoorMetalBarsDL[] __attribute__((aligned (2))) = dgDoorMetalBarsDL; -#endif - -#define dgGenericDungeonDoorTex "__OTR__objects/gameplay_keep/gGenericDungeonDoorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGenericDungeonDoorTex[] = dgGenericDungeonDoorTex; -#else -static const char gGenericDungeonDoorTex[] __attribute__((aligned (2))) = dgGenericDungeonDoorTex; -#endif - -#define dgSunTex "__OTR__objects/gameplay_keep/gSunTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunTex[] = dgSunTex; -#else -static const char gSunTex[] __attribute__((aligned (2))) = dgSunTex; -#endif - -#define dgSunEveningTex "__OTR__objects/gameplay_keep/gSunEveningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunEveningTex[] = dgSunEveningTex; -#else -static const char gSunEveningTex[] __attribute__((aligned (2))) = dgSunEveningTex; -#endif - -#define dgKokiriDustMoteTextureLoadDL "__OTR__objects/gameplay_keep/gKokiriDustMoteTextureLoadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriDustMoteTextureLoadDL[] = dgKokiriDustMoteTextureLoadDL; -#else -static const char gKokiriDustMoteTextureLoadDL[] __attribute__((aligned (2))) = dgKokiriDustMoteTextureLoadDL; -#endif - -#define dgKokiriDustMoteDL "__OTR__objects/gameplay_keep/gKokiriDustMoteDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriDustMoteDL[] = dgKokiriDustMoteDL; -#else -static const char gKokiriDustMoteDL[] __attribute__((aligned (2))) = dgKokiriDustMoteDL; -#endif - -#define dgSunDL "__OTR__objects/gameplay_keep/gSunDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunDL[] = dgSunDL; -#else -static const char gSunDL[] __attribute__((aligned (2))) = dgSunDL; -#endif - -#define dgZTargetLockOnTriangleDL "__OTR__objects/gameplay_keep/gZTargetLockOnTriangleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZTargetLockOnTriangleDL[] = dgZTargetLockOnTriangleDL; -#else -static const char gZTargetLockOnTriangleDL[] __attribute__((aligned (2))) = dgZTargetLockOnTriangleDL; -#endif - -#define dgEffFire1DL "__OTR__objects/gameplay_keep/gEffFire1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFire1DL[] = dgEffFire1DL; -#else -static const char gEffFire1DL[] __attribute__((aligned (2))) = dgEffFire1DL; -#endif - -#define dgEffFire2DL "__OTR__objects/gameplay_keep/gEffFire2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffFire2DL[] = dgEffFire2DL; -#else -static const char gEffFire2DL[] __attribute__((aligned (2))) = dgEffFire2DL; -#endif - -#define dgDecorativeFlameMaskTex "__OTR__objects/gameplay_keep/gDecorativeFlameMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDecorativeFlameMaskTex[] = dgDecorativeFlameMaskTex; -#else -static const char gDecorativeFlameMaskTex[] __attribute__((aligned (2))) = dgDecorativeFlameMaskTex; -#endif - -#define dgDecorativeFlameTex "__OTR__objects/gameplay_keep/gDecorativeFlameTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDecorativeFlameTex[] = dgDecorativeFlameTex; -#else -static const char gDecorativeFlameTex[] __attribute__((aligned (2))) = dgDecorativeFlameTex; -#endif - -#define dgUnusedUnknownShape1DL "__OTR__objects/gameplay_keep/gUnusedUnknownShape1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedUnknownShape1DL[] = dgUnusedUnknownShape1DL; -#else -static const char gUnusedUnknownShape1DL[] __attribute__((aligned (2))) = dgUnusedUnknownShape1DL; -#endif - -#define dgUnusedUnknownShape1RefDL "__OTR__objects/gameplay_keep/gUnusedUnknownShape1RefDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedUnknownShape1RefDL[] = dgUnusedUnknownShape1RefDL; -#else -static const char gUnusedUnknownShape1RefDL[] __attribute__((aligned (2))) = dgUnusedUnknownShape1RefDL; -#endif - -#define dgUnusedUnknownShape2DL "__OTR__objects/gameplay_keep/gUnusedUnknownShape2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedUnknownShape2DL[] = dgUnusedUnknownShape2DL; -#else -static const char gUnusedUnknownShape2DL[] __attribute__((aligned (2))) = dgUnusedUnknownShape2DL; -#endif - -#define dgUnusedUnknownShape2RefDL "__OTR__objects/gameplay_keep/gUnusedUnknownShape2RefDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedUnknownShape2RefDL[] = dgUnusedUnknownShape2RefDL; -#else -static const char gUnusedUnknownShape2RefDL[] __attribute__((aligned (2))) = dgUnusedUnknownShape2RefDL; -#endif - -#define dgUnusedUnknownShape3DL "__OTR__objects/gameplay_keep/gUnusedUnknownShape3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedUnknownShape3DL[] = dgUnusedUnknownShape3DL; -#else -static const char gUnusedUnknownShape3DL[] __attribute__((aligned (2))) = dgUnusedUnknownShape3DL; -#endif - -#define dgUnusedUnknownShape3RefDL "__OTR__objects/gameplay_keep/gUnusedUnknownShape3RefDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedUnknownShape3RefDL[] = dgUnusedUnknownShape3RefDL; -#else -static const char gUnusedUnknownShape3RefDL[] __attribute__((aligned (2))) = dgUnusedUnknownShape3RefDL; -#endif - -#define dgUnusedUpsideDownZeldaTex "__OTR__objects/gameplay_keep/gUnusedUpsideDownZeldaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedUpsideDownZeldaTex[] = dgUnusedUpsideDownZeldaTex; -#else -static const char gUnusedUpsideDownZeldaTex[] __attribute__((aligned (2))) = dgUnusedUpsideDownZeldaTex; -#endif - -#define dgDust1Tex "__OTR__objects/gameplay_keep/gDust1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDust1Tex[] = dgDust1Tex; -#else -static const char gDust1Tex[] __attribute__((aligned (2))) = dgDust1Tex; -#endif - -#define dgDust2Tex "__OTR__objects/gameplay_keep/gDust2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDust2Tex[] = dgDust2Tex; -#else -static const char gDust2Tex[] __attribute__((aligned (2))) = dgDust2Tex; -#endif - -#define dgDust3Tex "__OTR__objects/gameplay_keep/gDust3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDust3Tex[] = dgDust3Tex; -#else -static const char gDust3Tex[] __attribute__((aligned (2))) = dgDust3Tex; -#endif - -#define dgDust4Tex "__OTR__objects/gameplay_keep/gDust4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDust4Tex[] = dgDust4Tex; -#else -static const char gDust4Tex[] __attribute__((aligned (2))) = dgDust4Tex; -#endif - -#define dgDust5Tex "__OTR__objects/gameplay_keep/gDust5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDust5Tex[] = dgDust5Tex; -#else -static const char gDust5Tex[] __attribute__((aligned (2))) = dgDust5Tex; -#endif - -#define dgDust6Tex "__OTR__objects/gameplay_keep/gDust6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDust6Tex[] = dgDust6Tex; -#else -static const char gDust6Tex[] __attribute__((aligned (2))) = dgDust6Tex; -#endif - -#define dgDust7Tex "__OTR__objects/gameplay_keep/gDust7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDust7Tex[] = dgDust7Tex; -#else -static const char gDust7Tex[] __attribute__((aligned (2))) = dgDust7Tex; -#endif - -#define dgDust8Tex "__OTR__objects/gameplay_keep/gDust8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDust8Tex[] = dgDust8Tex; -#else -static const char gDust8Tex[] __attribute__((aligned (2))) = dgDust8Tex; -#endif - -#define dgCircleGlowLTex "__OTR__objects/gameplay_keep/gCircleGlowLTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCircleGlowLTex[] = dgCircleGlowLTex; -#else -static const char gCircleGlowLTex[] __attribute__((aligned (2))) = dgCircleGlowLTex; -#endif - -#define dgCircleGlowRTex "__OTR__objects/gameplay_keep/gCircleGlowRTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCircleGlowRTex[] = dgCircleGlowRTex; -#else -static const char gCircleGlowRTex[] __attribute__((aligned (2))) = dgCircleGlowRTex; -#endif - -#define dgCircleGlowSLTex "__OTR__objects/gameplay_keep/gCircleGlowSLTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCircleGlowSLTex[] = dgCircleGlowSLTex; -#else -static const char gCircleGlowSLTex[] __attribute__((aligned (2))) = dgCircleGlowSLTex; -#endif - -#define dgCircleGlowSRTex "__OTR__objects/gameplay_keep/gCircleGlowSRTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCircleGlowSRTex[] = dgCircleGlowSRTex; -#else -static const char gCircleGlowSRTex[] __attribute__((aligned (2))) = dgCircleGlowSRTex; -#endif - -#define dgEffBubble1Tex "__OTR__objects/gameplay_keep/gEffBubble1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBubble1Tex[] = dgEffBubble1Tex; -#else -static const char gEffBubble1Tex[] __attribute__((aligned (2))) = dgEffBubble1Tex; -#endif - -#define dgEffBubble2Tex "__OTR__objects/gameplay_keep/gEffBubble2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffBubble2Tex[] = dgEffBubble2Tex; -#else -static const char gEffBubble2Tex[] __attribute__((aligned (2))) = dgEffBubble2Tex; -#endif - -#define dgEffSpark1Tex "__OTR__objects/gameplay_keep/gEffSpark1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSpark1Tex[] = dgEffSpark1Tex; -#else -static const char gEffSpark1Tex[] __attribute__((aligned (2))) = dgEffSpark1Tex; -#endif - -#define dgEffSpark2Tex "__OTR__objects/gameplay_keep/gEffSpark2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSpark2Tex[] = dgEffSpark2Tex; -#else -static const char gEffSpark2Tex[] __attribute__((aligned (2))) = dgEffSpark2Tex; -#endif - -#define dgEffSpark3Tex "__OTR__objects/gameplay_keep/gEffSpark3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSpark3Tex[] = dgEffSpark3Tex; -#else -static const char gEffSpark3Tex[] __attribute__((aligned (2))) = dgEffSpark3Tex; -#endif - -#define dgEffSpark4Tex "__OTR__objects/gameplay_keep/gEffSpark4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSpark4Tex[] = dgEffSpark4Tex; -#else -static const char gEffSpark4Tex[] __attribute__((aligned (2))) = dgEffSpark4Tex; -#endif - -#define dgFishSkelLimbsLimb_018F98DL_018A68 "__OTR__objects/gameplay_keep/gFishSkelLimbsLimb_018F98DL_018A68" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishSkelLimbsLimb_018F98DL_018A68[] = dgFishSkelLimbsLimb_018F98DL_018A68; -#else -static const char gFishSkelLimbsLimb_018F98DL_018A68[] __attribute__((aligned (2))) = dgFishSkelLimbsLimb_018F98DL_018A68; -#endif - -#define dgFishSkelLimbsLimb_018FB0DL_018950 "__OTR__objects/gameplay_keep/gFishSkelLimbsLimb_018FB0DL_018950" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishSkelLimbsLimb_018FB0DL_018950[] = dgFishSkelLimbsLimb_018FB0DL_018950; -#else -static const char gFishSkelLimbsLimb_018FB0DL_018950[] __attribute__((aligned (2))) = dgFishSkelLimbsLimb_018FB0DL_018950; -#endif - -#define dgFishSkelLimbsLimb_018FBCDL_0188B0 "__OTR__objects/gameplay_keep/gFishSkelLimbsLimb_018FBCDL_0188B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishSkelLimbsLimb_018FBCDL_0188B0[] = dgFishSkelLimbsLimb_018FBCDL_0188B0; -#else -static const char gFishSkelLimbsLimb_018FBCDL_0188B0[] __attribute__((aligned (2))) = dgFishSkelLimbsLimb_018FBCDL_0188B0; -#endif - -#define dgameplay_keepTex_04C540 "__OTR__objects/gameplay_keep/gameplay_keepTex_04C540" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_keepTex_04C540[] = dgameplay_keepTex_04C540; -#else -static const char gameplay_keepTex_04C540[] __attribute__((aligned (2))) = dgameplay_keepTex_04C540; -#endif - -#define dgameplay_keepTex_04CD40 "__OTR__objects/gameplay_keep/gameplay_keepTex_04CD40" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_keepTex_04CD40[] = dgameplay_keepTex_04CD40; -#else -static const char gameplay_keepTex_04CD40[] __attribute__((aligned (2))) = dgameplay_keepTex_04CD40; -#endif - -#define dgameplay_keepTex_04C740 "__OTR__objects/gameplay_keep/gameplay_keepTex_04C740" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_keepTex_04C740[] = dgameplay_keepTex_04C740; -#else -static const char gameplay_keepTex_04C740[] __attribute__((aligned (2))) = dgameplay_keepTex_04C740; -#endif - -#define dgameplay_keepTex_04CF40 "__OTR__objects/gameplay_keep/gameplay_keepTex_04CF40" -#ifdef _WIN32 -static const __declspec(align(2)) char gameplay_keepTex_04CF40[] = dgameplay_keepTex_04CF40; -#else -static const char gameplay_keepTex_04CF40[] __attribute__((aligned (2))) = dgameplay_keepTex_04CF40; -#endif - +#include "align_asset_macro.h" + +#define dgHilite1Tex "__OTR__objects/gameplay_keep/gHilite1Tex" +static const ALIGN_ASSET(2) char gHilite1Tex[] = dgHilite1Tex; + +#define dgHilite2Tex "__OTR__objects/gameplay_keep/gHilite2Tex" +static const ALIGN_ASSET(2) char gHilite2Tex[] = dgHilite2Tex; + +#define dgHylianShieldDesignTex "__OTR__objects/gameplay_keep/gHylianShieldDesignTex" +static const ALIGN_ASSET(2) char gHylianShieldDesignTex[] = dgHylianShieldDesignTex; + +#define dgOcarinaofTimeDesignTex "__OTR__objects/gameplay_keep/gOcarinaofTimeDesignTex" +static const ALIGN_ASSET(2) char gOcarinaofTimeDesignTex[] = dgOcarinaofTimeDesignTex; + +#define dgBottleGlassTex "__OTR__objects/gameplay_keep/gBottleGlassTex" +static const ALIGN_ASSET(2) char gBottleGlassTex[] = dgBottleGlassTex; + +#define dgDekuStickTex "__OTR__objects/gameplay_keep/gDekuStickTex" +static const ALIGN_ASSET(2) char gDekuStickTex[] = dgDekuStickTex; + +#define dgLinkHairTex "__OTR__objects/gameplay_keep/gLinkHairTex" +static const ALIGN_ASSET(2) char gLinkHairTex[] = dgLinkHairTex; + +#define dgLinkTunic1Tex "__OTR__objects/gameplay_keep/gLinkTunic1Tex" +static const ALIGN_ASSET(2) char gLinkTunic1Tex[] = dgLinkTunic1Tex; + +#define dgLinkTunic2Tex "__OTR__objects/gameplay_keep/gLinkTunic2Tex" +static const ALIGN_ASSET(2) char gLinkTunic2Tex[] = dgLinkTunic2Tex; + +#define dgLinkTunic3Tex "__OTR__objects/gameplay_keep/gLinkTunic3Tex" +static const ALIGN_ASSET(2) char gLinkTunic3Tex[] = dgLinkTunic3Tex; + +#define dgLinkPauseChildJointTable "__OTR__objects/gameplay_keep/gLinkPauseChildJointTable" +static const ALIGN_ASSET(2) char gLinkPauseChildJointTable[] = dgLinkPauseChildJointTable; + +#define dgLinkPauseChildDekuShieldJointTable "__OTR__objects/gameplay_keep/gLinkPauseChildDekuShieldJointTable" +static const ALIGN_ASSET(2) char gLinkPauseChildDekuShieldJointTable[] = dgLinkPauseChildDekuShieldJointTable; + +#define dgLinkPauseAdultBgsJointTable "__OTR__objects/gameplay_keep/gLinkPauseAdultBgsJointTable" +static const ALIGN_ASSET(2) char gLinkPauseAdultBgsJointTable[] = dgLinkPauseAdultBgsJointTable; + +#define dgLinkPauseAdultJointTable "__OTR__objects/gameplay_keep/gLinkPauseAdultJointTable" +static const ALIGN_ASSET(2) char gLinkPauseAdultJointTable[] = dgLinkPauseAdultJointTable; + +#define dgLinkPauseAdultShieldJointTable "__OTR__objects/gameplay_keep/gLinkPauseAdultShieldJointTable" +static const ALIGN_ASSET(2) char gLinkPauseAdultShieldJointTable[] = dgLinkPauseAdultShieldJointTable; + +#define dgPlayerAnim_clink_demo_DDbox_open "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_DDbox_open" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_DDbox_open[] = dgPlayerAnim_clink_demo_DDbox_open; + +#define dgPlayerAnim_clink_demo_Tbox_open "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_Tbox_open" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_Tbox_open[] = dgPlayerAnim_clink_demo_Tbox_open; + +#define dgPlayerAnim_clink_demo_atozusari "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_atozusari" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_atozusari[] = dgPlayerAnim_clink_demo_atozusari; + +#define dgPlayerAnim_clink_demo_bashi "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_bashi" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_bashi[] = dgPlayerAnim_clink_demo_bashi; + +#define dgPlayerAnim_clink_demo_doorA_link "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_doorA_link" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_doorA_link[] = dgPlayerAnim_clink_demo_doorA_link; + +#define dgPlayerAnim_clink_demo_doorB_link "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_doorB_link" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_doorB_link[] = dgPlayerAnim_clink_demo_doorB_link; + +#define dgPlayerAnim_clink_demo_futtobi "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_futtobi" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_futtobi[] = dgPlayerAnim_clink_demo_futtobi; + +#define dgPlayerAnim_clink_demo_get1 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_get1" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_get1[] = dgPlayerAnim_clink_demo_get1; + +#define dgPlayerAnim_clink_demo_get2 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_get2" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_get2[] = dgPlayerAnim_clink_demo_get2; + +#define dgPlayerAnim_clink_demo_get3 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_get3" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_get3[] = dgPlayerAnim_clink_demo_get3; + +#define dgPlayerAnim_clink_demo_goto_future "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_goto_future" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_goto_future[] = dgPlayerAnim_clink_demo_goto_future; + +#define dgPlayerAnim_clink_demo_koutai "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_koutai" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_koutai[] = dgPlayerAnim_clink_demo_koutai; + +#define dgPlayerAnim_clink_demo_koutai_kennuki "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_koutai_kennuki" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_koutai_kennuki[] = dgPlayerAnim_clink_demo_koutai_kennuki; + +#define dgPlayerAnim_clink_demo_koutai_wait "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_koutai_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_koutai_wait[] = dgPlayerAnim_clink_demo_koutai_wait; + +#define dgPlayerAnim_clink_demo_mimawasi "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_mimawasi" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_mimawasi[] = dgPlayerAnim_clink_demo_mimawasi; + +#define dgPlayerAnim_clink_demo_mimawasi_wait "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_mimawasi_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_mimawasi_wait[] = dgPlayerAnim_clink_demo_mimawasi_wait; + +#define dgPlayerAnim_clink_demo_miokuri "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_miokuri" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_miokuri[] = dgPlayerAnim_clink_demo_miokuri; + +#define dgPlayerAnim_clink_demo_miokuri_wait "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_miokuri_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_miokuri_wait[] = dgPlayerAnim_clink_demo_miokuri_wait; + +#define dgPlayerAnim_clink_demo_nozoki "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_nozoki" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_nozoki[] = dgPlayerAnim_clink_demo_nozoki; + +#define dgPlayerAnim_clink_demo_return_to_future "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_return_to_future" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_return_to_future[] = dgPlayerAnim_clink_demo_return_to_future; + +#define dgPlayerAnim_clink_demo_standup "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_standup" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_standup[] = dgPlayerAnim_clink_demo_standup; + +#define dgPlayerAnim_clink_demo_standup_wait "__OTR__objects/gameplay_keep/gPlayerAnim_clink_demo_standup_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_demo_standup_wait[] = dgPlayerAnim_clink_demo_standup_wait; + +#define dgPlayerAnim_clink_normal_climb_endAL "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_endAL" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_climb_endAL[] = dgPlayerAnim_clink_normal_climb_endAL; + +#define dgPlayerAnim_clink_normal_climb_endAR "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_endAR" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_climb_endAR[] = dgPlayerAnim_clink_normal_climb_endAR; + +#define dgPlayerAnim_clink_normal_climb_endBL "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_endBL" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_climb_endBL[] = dgPlayerAnim_clink_normal_climb_endBL; + +#define dgPlayerAnim_clink_normal_climb_endBR "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_endBR" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_climb_endBR[] = dgPlayerAnim_clink_normal_climb_endBR; + +#define dgPlayerAnim_clink_normal_climb_startA "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_startA" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_climb_startA[] = dgPlayerAnim_clink_normal_climb_startA; + +#define dgPlayerAnim_clink_normal_climb_startB "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_startB" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_climb_startB[] = dgPlayerAnim_clink_normal_climb_startB; + +#define dgPlayerAnim_clink_normal_climb_upL "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_upL" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_climb_upL[] = dgPlayerAnim_clink_normal_climb_upL; + +#define dgPlayerAnim_clink_normal_climb_upR "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_climb_upR" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_climb_upR[] = dgPlayerAnim_clink_normal_climb_upR; + +#define dgPlayerAnim_clink_normal_defense_ALL "__OTR__objects/gameplay_keep/gPlayerAnim_clink_normal_defense_ALL" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_normal_defense_ALL[] = dgPlayerAnim_clink_normal_defense_ALL; + +#define dgPlayerAnim_clink_op3_negaeri "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_negaeri" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_op3_negaeri[] = dgPlayerAnim_clink_op3_negaeri; + +#define dgPlayerAnim_clink_op3_okiagari "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_okiagari" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_op3_okiagari[] = dgPlayerAnim_clink_op3_okiagari; + +#define dgPlayerAnim_clink_op3_tatiagari "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_tatiagari" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_op3_tatiagari[] = dgPlayerAnim_clink_op3_tatiagari; + +#define dgPlayerAnim_clink_op3_wait1 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_wait1" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_op3_wait1[] = dgPlayerAnim_clink_op3_wait1; + +#define dgPlayerAnim_clink_op3_wait2 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_wait2" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_op3_wait2[] = dgPlayerAnim_clink_op3_wait2; + +#define dgPlayerAnim_clink_op3_wait3 "__OTR__objects/gameplay_keep/gPlayerAnim_clink_op3_wait3" +static const ALIGN_ASSET(2) char gPlayerAnim_clink_op3_wait3[] = dgPlayerAnim_clink_op3_wait3; + +#define dgPlayerAnim_d_link_imanodare "__OTR__objects/gameplay_keep/gPlayerAnim_d_link_imanodare" +static const ALIGN_ASSET(2) char gPlayerAnim_d_link_imanodare[] = dgPlayerAnim_d_link_imanodare; + +#define dgPlayerAnim_d_link_orooro "__OTR__objects/gameplay_keep/gPlayerAnim_d_link_orooro" +static const ALIGN_ASSET(2) char gPlayerAnim_d_link_orooro[] = dgPlayerAnim_d_link_orooro; + +#define dgPlayerAnim_d_link_orowait "__OTR__objects/gameplay_keep/gPlayerAnim_d_link_orowait" +static const ALIGN_ASSET(2) char gPlayerAnim_d_link_orowait[] = dgPlayerAnim_d_link_orowait; + +#define dgPlayerAnim_demo_link_nwait "__OTR__objects/gameplay_keep/gPlayerAnim_demo_link_nwait" +static const ALIGN_ASSET(2) char gPlayerAnim_demo_link_nwait[] = dgPlayerAnim_demo_link_nwait; + +#define dgPlayerAnim_demo_link_orosuu "__OTR__objects/gameplay_keep/gPlayerAnim_demo_link_orosuu" +static const ALIGN_ASSET(2) char gPlayerAnim_demo_link_orosuu[] = dgPlayerAnim_demo_link_orosuu; + +#define dgPlayerAnim_demo_link_tewatashi "__OTR__objects/gameplay_keep/gPlayerAnim_demo_link_tewatashi" +static const ALIGN_ASSET(2) char gPlayerAnim_demo_link_tewatashi[] = dgPlayerAnim_demo_link_tewatashi; + +#define dgPlayerAnim_demo_link_twait "__OTR__objects/gameplay_keep/gPlayerAnim_demo_link_twait" +static const ALIGN_ASSET(2) char gPlayerAnim_demo_link_twait[] = dgPlayerAnim_demo_link_twait; + +#define dgPlayerAnim_kolink_odoroki_demo "__OTR__objects/gameplay_keep/gPlayerAnim_kolink_odoroki_demo" +static const ALIGN_ASSET(2) char gPlayerAnim_kolink_odoroki_demo[] = dgPlayerAnim_kolink_odoroki_demo; + +#define dgPlayerAnim_link_anchor_LLside_kiru_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_LLside_kiru_endL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_LLside_kiru_endL[] = dgPlayerAnim_link_anchor_LLside_kiru_endL; + +#define dgPlayerAnim_link_anchor_LLside_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_LLside_kiru_finsh_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_LLside_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_LLside_kiru_finsh_endR; + +#define dgPlayerAnim_link_anchor_LRside_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_LRside_kiru_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_LRside_kiru_endR[] = dgPlayerAnim_link_anchor_LRside_kiru_endR; + +#define dgPlayerAnim_link_anchor_LRside_kiru_finsh_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_LRside_kiru_finsh_endL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_LRside_kiru_finsh_endL[] = dgPlayerAnim_link_anchor_LRside_kiru_finsh_endL; + +#define dgPlayerAnim_link_anchor_Lnormal_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lnormal_kiru_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Lnormal_kiru_endR[] = dgPlayerAnim_link_anchor_Lnormal_kiru_endR; + +#define dgPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_Lnormal_kiru_finsh_endR; + +#define dgPlayerAnim_link_anchor_Lpierce_kiru_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lpierce_kiru_endL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Lpierce_kiru_endL[] = dgPlayerAnim_link_anchor_Lpierce_kiru_endL; + +#define dgPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_Lpierce_kiru_finsh_endR; + +#define dgPlayerAnim_link_anchor_Lrolling_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lrolling_kiru_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Lrolling_kiru_endR[] = dgPlayerAnim_link_anchor_Lrolling_kiru_endR; + +#define dgPlayerAnim_link_anchor_Lside_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lside_kiru_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Lside_kiru_endR[] = dgPlayerAnim_link_anchor_Lside_kiru_endR; + +#define dgPlayerAnim_link_anchor_Lside_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Lside_kiru_finsh_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Lside_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_Lside_kiru_finsh_endR; + +#define dgPlayerAnim_link_anchor_Rside_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Rside_kiru_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Rside_kiru_endR[] = dgPlayerAnim_link_anchor_Rside_kiru_endR; + +#define dgPlayerAnim_link_anchor_Rside_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_Rside_kiru_finsh_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_Rside_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_Rside_kiru_finsh_endR; + +#define dgPlayerAnim_link_anchor_anchor2fighter "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_anchor2fighter" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_anchor2fighter[] = dgPlayerAnim_link_anchor_anchor2fighter; + +#define dgPlayerAnim_link_anchor_back_brake "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_back_brake" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_back_brake[] = dgPlayerAnim_link_anchor_back_brake; + +#define dgPlayerAnim_link_anchor_back_hitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_back_hitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_back_hitR[] = dgPlayerAnim_link_anchor_back_hitR; + +#define dgPlayerAnim_link_anchor_back_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_back_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_back_walk[] = dgPlayerAnim_link_anchor_back_walk; + +#define dgPlayerAnim_link_anchor_bom_side_walkL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_bom_side_walkL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_bom_side_walkL[] = dgPlayerAnim_link_anchor_bom_side_walkL; + +#define dgPlayerAnim_link_anchor_bom_side_walkR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_bom_side_walkR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_bom_side_walkR[] = dgPlayerAnim_link_anchor_bom_side_walkR; + +#define dgPlayerAnim_link_anchor_defense_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_defense_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_defense_hit[] = dgPlayerAnim_link_anchor_defense_hit; + +#define dgPlayerAnim_link_anchor_defense_long_hitL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_defense_long_hitL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_defense_long_hitL[] = dgPlayerAnim_link_anchor_defense_long_hitL; + +#define dgPlayerAnim_link_anchor_defense_long_hitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_defense_long_hitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_defense_long_hitR[] = dgPlayerAnim_link_anchor_defense_long_hitR; + +#define dgPlayerAnim_link_anchor_front_hitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_front_hitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_front_hitR[] = dgPlayerAnim_link_anchor_front_hitR; + +#define dgPlayerAnim_link_anchor_jump_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_jump_kiru_finsh_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_jump_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_jump_kiru_finsh_endR; + +#define dgPlayerAnim_link_anchor_landingR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_landingR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_landingR[] = dgPlayerAnim_link_anchor_landingR; + +#define dgPlayerAnim_link_anchor_normal_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_normal_kiru_finsh_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_normal_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_normal_kiru_finsh_endR; + +#define dgPlayerAnim_link_anchor_pierce_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_pierce_kiru_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_pierce_kiru_endR[] = dgPlayerAnim_link_anchor_pierce_kiru_endR; + +#define dgPlayerAnim_link_anchor_pierce_kiru_finsh_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_pierce_kiru_finsh_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_pierce_kiru_finsh_endR[] = dgPlayerAnim_link_anchor_pierce_kiru_finsh_endR; + +#define dgPlayerAnim_link_anchor_power_kiru_wait_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_power_kiru_wait_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_power_kiru_wait_endR[] = dgPlayerAnim_link_anchor_power_kiru_wait_endR; + +#define dgPlayerAnim_link_anchor_rolling_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_rolling_kiru_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_rolling_kiru_endR[] = dgPlayerAnim_link_anchor_rolling_kiru_endR; + +#define dgPlayerAnim_link_anchor_side_walkL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_side_walkL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_side_walkL[] = dgPlayerAnim_link_anchor_side_walkL; + +#define dgPlayerAnim_link_anchor_side_walkR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_side_walkR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_side_walkR[] = dgPlayerAnim_link_anchor_side_walkR; + +#define dgPlayerAnim_002578 "__OTR__objects/gameplay_keep/gPlayerAnim_002578" +static const ALIGN_ASSET(2) char gPlayerAnim_002578[] = dgPlayerAnim_002578; + +#define dgPlayerAnim_link_anchor_waitL2defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL2defense" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitL2defense[] = dgPlayerAnim_link_anchor_waitL2defense; + +#define dgPlayerAnim_link_anchor_waitL2defense_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL2defense_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitL2defense_long[] = dgPlayerAnim_link_anchor_waitL2defense_long; + +#define dgPlayerAnim_link_anchor_waitL "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitL[] = dgPlayerAnim_link_anchor_waitL; + +#define dgPlayerAnim_link_anchor_waitL_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL_defense" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitL_defense[] = dgPlayerAnim_link_anchor_waitL_defense; + +#define dgPlayerAnim_link_anchor_waitL_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL_defense_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitL_defense_wait[] = dgPlayerAnim_link_anchor_waitL_defense_wait; + +#define dgPlayerAnim_0025A8 "__OTR__objects/gameplay_keep/gPlayerAnim_0025A8" +static const ALIGN_ASSET(2) char gPlayerAnim_0025A8[] = dgPlayerAnim_0025A8; + +#define dgPlayerAnim_link_anchor_waitL_pierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitL_pierce_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitL_pierce_kiru[] = dgPlayerAnim_link_anchor_waitL_pierce_kiru; + +#define dgPlayerAnim_0025B8 "__OTR__objects/gameplay_keep/gPlayerAnim_0025B8" +static const ALIGN_ASSET(2) char gPlayerAnim_0025B8[] = dgPlayerAnim_0025B8; + +#define dgPlayerAnim_link_anchor_waitR2defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR2defense" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitR2defense[] = dgPlayerAnim_link_anchor_waitR2defense; + +#define dgPlayerAnim_link_anchor_waitR2defense_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR2defense_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitR2defense_long[] = dgPlayerAnim_link_anchor_waitR2defense_long; + +#define dgPlayerAnim_link_anchor_waitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitR[] = dgPlayerAnim_link_anchor_waitR; + +#define dgPlayerAnim_link_anchor_waitR_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR_defense" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitR_defense[] = dgPlayerAnim_link_anchor_waitR_defense; + +#define dgPlayerAnim_link_anchor_waitR_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR_defense_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitR_defense_wait[] = dgPlayerAnim_link_anchor_waitR_defense_wait; + +#define dgPlayerAnim_0025E8 "__OTR__objects/gameplay_keep/gPlayerAnim_0025E8" +static const ALIGN_ASSET(2) char gPlayerAnim_0025E8[] = dgPlayerAnim_0025E8; + +#define dgPlayerAnim_link_anchor_waitR_pierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_anchor_waitR_pierce_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_anchor_waitR_pierce_kiru[] = dgPlayerAnim_link_anchor_waitR_pierce_kiru; + +#define dgPlayerAnim_link_boom_catch "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_catch" +static const ALIGN_ASSET(2) char gPlayerAnim_link_boom_catch[] = dgPlayerAnim_link_boom_catch; + +#define dgPlayerAnim_link_boom_throwL "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throwL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_boom_throwL[] = dgPlayerAnim_link_boom_throwL; + +#define dgPlayerAnim_link_boom_throwR "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throwR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_boom_throwR[] = dgPlayerAnim_link_boom_throwR; + +#define dgPlayerAnim_002610 "__OTR__objects/gameplay_keep/gPlayerAnim_002610" +static const ALIGN_ASSET(2) char gPlayerAnim_002610[] = dgPlayerAnim_002610; + +#define dgPlayerAnim_link_boom_throw_side_walkL "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_side_walkL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_boom_throw_side_walkL[] = dgPlayerAnim_link_boom_throw_side_walkL; + +#define dgPlayerAnim_link_boom_throw_side_walkR "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_side_walkR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_boom_throw_side_walkR[] = dgPlayerAnim_link_boom_throw_side_walkR; + +#define dgPlayerAnim_link_boom_throw_wait2waitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_wait2waitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_boom_throw_wait2waitR[] = dgPlayerAnim_link_boom_throw_wait2waitR; + +#define dgPlayerAnim_link_boom_throw_waitL "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_waitL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_boom_throw_waitL[] = dgPlayerAnim_link_boom_throw_waitL; + +#define dgPlayerAnim_link_boom_throw_waitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_boom_throw_waitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_boom_throw_waitR[] = dgPlayerAnim_link_boom_throw_waitR; + +#define dgPlayerAnim_link_bottle_bug_in "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_bug_in" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_bug_in[] = dgPlayerAnim_link_bottle_bug_in; + +#define dgPlayerAnim_link_bottle_bug_miss "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_bug_miss" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_bug_miss[] = dgPlayerAnim_link_bottle_bug_miss; + +#define dgPlayerAnim_link_bottle_bug_out "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_bug_out" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_bug_out[] = dgPlayerAnim_link_bottle_bug_out; + +#define dgPlayerAnim_link_bottle_drink_demo "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_drink_demo" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_drink_demo[] = dgPlayerAnim_link_bottle_drink_demo; + +#define dgPlayerAnim_link_bottle_drink_demo_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_drink_demo_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_drink_demo_end[] = dgPlayerAnim_link_bottle_drink_demo_end; + +#define dgPlayerAnim_link_bottle_drink_demo_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_drink_demo_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_drink_demo_start[] = dgPlayerAnim_link_bottle_drink_demo_start; + +#define dgPlayerAnim_link_bottle_drink_demo_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_drink_demo_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_drink_demo_wait[] = dgPlayerAnim_link_bottle_drink_demo_wait; + +#define dgPlayerAnim_link_bottle_fish_in "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_fish_in" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_fish_in[] = dgPlayerAnim_link_bottle_fish_in; + +#define dgPlayerAnim_link_bottle_fish_miss "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_fish_miss" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_fish_miss[] = dgPlayerAnim_link_bottle_fish_miss; + +#define dgPlayerAnim_link_bottle_fish_out "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_fish_out" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_fish_out[] = dgPlayerAnim_link_bottle_fish_out; + +#define dgPlayerAnim_link_bottle_read "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_read" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_read[] = dgPlayerAnim_link_bottle_read; + +#define dgPlayerAnim_link_bottle_read_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_bottle_read_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bottle_read_end[] = dgPlayerAnim_link_bottle_read_end; + +#define dgPlayerAnim_link_bow_bow_ready "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_ready" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_bow_ready[] = dgPlayerAnim_link_bow_bow_ready; + +#define dgPlayerAnim_link_bow_bow_shoot "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_shoot" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_bow_shoot[] = dgPlayerAnim_link_bow_bow_shoot; + +#define dgPlayerAnim_link_bow_bow_shoot_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_shoot_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_bow_shoot_end[] = dgPlayerAnim_link_bow_bow_shoot_end; + +#define dgPlayerAnim_link_bow_bow_shoot_next "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_shoot_next" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_bow_shoot_next[] = dgPlayerAnim_link_bow_bow_shoot_next; + +#define dgPlayerAnim_link_bow_bow_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_bow_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_bow_wait[] = dgPlayerAnim_link_bow_bow_wait; + +#define dgPlayerAnim_link_bow_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_defense" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_defense[] = dgPlayerAnim_link_bow_defense; + +#define dgPlayerAnim_link_bow_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_defense_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_defense_wait[] = dgPlayerAnim_link_bow_defense_wait; + +#define dgPlayerAnim_link_bow_side_runL "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_side_runL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_side_runL[] = dgPlayerAnim_link_bow_side_runL; + +#define dgPlayerAnim_link_bow_side_runR "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_side_runR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_side_runR[] = dgPlayerAnim_link_bow_side_runR; + +#define dgPlayerAnim_link_bow_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_side_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_side_walk[] = dgPlayerAnim_link_bow_side_walk; + +#define dgPlayerAnim_link_bow_walk2ready "__OTR__objects/gameplay_keep/gPlayerAnim_link_bow_walk2ready" +static const ALIGN_ASSET(2) char gPlayerAnim_link_bow_walk2ready[] = dgPlayerAnim_link_bow_walk2ready; + +#define dgPlayerAnim_link_child_tunnel_door "__OTR__objects/gameplay_keep/gPlayerAnim_link_child_tunnel_door" +static const ALIGN_ASSET(2) char gPlayerAnim_link_child_tunnel_door[] = dgPlayerAnim_link_child_tunnel_door; + +#define dgPlayerAnim_link_child_tunnel_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_child_tunnel_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_child_tunnel_end[] = dgPlayerAnim_link_child_tunnel_end; + +#define dgPlayerAnim_link_child_tunnel_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_child_tunnel_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_child_tunnel_start[] = dgPlayerAnim_link_child_tunnel_start; + +#define dgPlayerAnim_link_demo_DDbox_open "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_DDbox_open" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_DDbox_open[] = dgPlayerAnim_link_demo_DDbox_open; + +#define dgPlayerAnim_link_demo_Tbox_open "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_Tbox_open" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_Tbox_open[] = dgPlayerAnim_link_demo_Tbox_open; + +#define dgPlayerAnim_link_demo_back_to_past "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_back_to_past" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_back_to_past[] = dgPlayerAnim_link_demo_back_to_past; + +#define dgPlayerAnim_link_demo_baru_op1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_baru_op1" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_baru_op1[] = dgPlayerAnim_link_demo_baru_op1; + +#define dgPlayerAnim_link_demo_baru_op2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_baru_op2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_baru_op2[] = dgPlayerAnim_link_demo_baru_op2; + +#define dgPlayerAnim_link_demo_baru_op3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_baru_op3" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_baru_op3[] = dgPlayerAnim_link_demo_baru_op3; + +#define dgPlayerAnim_link_demo_bikkuri "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_bikkuri" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_bikkuri[] = dgPlayerAnim_link_demo_bikkuri; + +#define dgPlayerAnim_link_demo_doorA_link "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_doorA_link" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_doorA_link[] = dgPlayerAnim_link_demo_doorA_link; + +#define dgPlayerAnim_link_demo_doorA_link_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_doorA_link_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_doorA_link_free[] = dgPlayerAnim_link_demo_doorA_link_free; + +#define dgPlayerAnim_link_demo_doorB_link "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_doorB_link" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_doorB_link[] = dgPlayerAnim_link_demo_doorB_link; + +#define dgPlayerAnim_link_demo_doorB_link_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_doorB_link_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_doorB_link_free[] = dgPlayerAnim_link_demo_doorB_link_free; + +#define dgPlayerAnim_link_demo_furimuki2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_furimuki2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_furimuki2[] = dgPlayerAnim_link_demo_furimuki2; + +#define dgPlayerAnim_link_demo_furimuki2_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_furimuki2_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_furimuki2_wait[] = dgPlayerAnim_link_demo_furimuki2_wait; + +#define dgPlayerAnim_link_demo_furimuki "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_furimuki" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_furimuki[] = dgPlayerAnim_link_demo_furimuki; + +#define dgPlayerAnim_link_demo_get_itemA "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_get_itemA" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_get_itemA[] = dgPlayerAnim_link_demo_get_itemA; + +#define dgPlayerAnim_link_demo_get_itemB "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_get_itemB" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_get_itemB[] = dgPlayerAnim_link_demo_get_itemB; + +#define dgPlayerAnim_link_demo_goma_furimuki "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_goma_furimuki" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_goma_furimuki[] = dgPlayerAnim_link_demo_goma_furimuki; + +#define dgPlayerAnim_link_demo_gurad "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_gurad" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_gurad[] = dgPlayerAnim_link_demo_gurad; + +#define dgPlayerAnim_link_demo_gurad_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_gurad_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_gurad_wait[] = dgPlayerAnim_link_demo_gurad_wait; + +#define dgPlayerAnim_link_demo_jibunmiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_jibunmiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_jibunmiru[] = dgPlayerAnim_link_demo_jibunmiru; + +#define dgPlayerAnim_link_demo_kakeyori "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kakeyori[] = dgPlayerAnim_link_demo_kakeyori; + +#define dgPlayerAnim_link_demo_kakeyori_mimawasi "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori_mimawasi" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kakeyori_mimawasi[] = dgPlayerAnim_link_demo_kakeyori_mimawasi; + +#define dgPlayerAnim_link_demo_kakeyori_miokuri "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori_miokuri" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kakeyori_miokuri[] = dgPlayerAnim_link_demo_kakeyori_miokuri; + +#define dgPlayerAnim_link_demo_kakeyori_miokuri_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori_miokuri_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kakeyori_miokuri_wait[] = dgPlayerAnim_link_demo_kakeyori_miokuri_wait; + +#define dgPlayerAnim_link_demo_kakeyori_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kakeyori_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kakeyori_wait[] = dgPlayerAnim_link_demo_kakeyori_wait; + +#define dgPlayerAnim_link_demo_kaoage "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kaoage" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kaoage[] = dgPlayerAnim_link_demo_kaoage; + +#define dgPlayerAnim_link_demo_kaoage_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kaoage_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kaoage_wait[] = dgPlayerAnim_link_demo_kaoage_wait; + +#define dgPlayerAnim_link_demo_kenmiru1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru1" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kenmiru1[] = dgPlayerAnim_link_demo_kenmiru1; + +#define dgPlayerAnim_link_demo_kenmiru1_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru1_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kenmiru1_wait[] = dgPlayerAnim_link_demo_kenmiru1_wait; + +#define dgPlayerAnim_link_demo_kenmiru2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kenmiru2[] = dgPlayerAnim_link_demo_kenmiru2; + +#define dgPlayerAnim_link_demo_kenmiru2_modori "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru2_modori" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kenmiru2_modori[] = dgPlayerAnim_link_demo_kenmiru2_modori; + +#define dgPlayerAnim_link_demo_kenmiru2_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kenmiru2_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kenmiru2_wait[] = dgPlayerAnim_link_demo_kenmiru2_wait; + +#define dgPlayerAnim_link_demo_kousan "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_kousan" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_kousan[] = dgPlayerAnim_link_demo_kousan; + +#define dgPlayerAnim_link_demo_look_hand "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_look_hand" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_look_hand[] = dgPlayerAnim_link_demo_look_hand; + +#define dgPlayerAnim_link_demo_look_hand_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_look_hand_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_look_hand_wait[] = dgPlayerAnim_link_demo_look_hand_wait; + +#define dgPlayerAnim_link_demo_nozokikomi "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_nozokikomi" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_nozokikomi[] = dgPlayerAnim_link_demo_nozokikomi; + +#define dgPlayerAnim_link_demo_nozokikomi_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_nozokikomi_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_nozokikomi_wait[] = dgPlayerAnim_link_demo_nozokikomi_wait; + +#define dgPlayerAnim_link_demo_return_to_past "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_return_to_past" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_return_to_past[] = dgPlayerAnim_link_demo_return_to_past; + +#define dgPlayerAnim_002840 "__OTR__objects/gameplay_keep/gPlayerAnim_002840" +static const ALIGN_ASSET(2) char gPlayerAnim_002840[] = dgPlayerAnim_002840; + +#define dgPlayerAnim_link_demo_sita_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_sita_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_sita_wait[] = dgPlayerAnim_link_demo_sita_wait; + +#define dgPlayerAnim_link_demo_ue "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_ue" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_ue[] = dgPlayerAnim_link_demo_ue; + +#define dgPlayerAnim_link_demo_ue_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_ue_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_ue_wait[] = dgPlayerAnim_link_demo_ue_wait; + +#define dgPlayerAnim_link_demo_warp "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_warp" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_warp[] = dgPlayerAnim_link_demo_warp; + +#define dgPlayerAnim_link_demo_zeldamiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_zeldamiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_zeldamiru[] = dgPlayerAnim_link_demo_zeldamiru; + +#define dgPlayerAnim_link_demo_zeldamiru_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_demo_zeldamiru_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_demo_zeldamiru_wait[] = dgPlayerAnim_link_demo_zeldamiru_wait; + +#define dgPlayerAnim_link_derth_rebirth "__OTR__objects/gameplay_keep/gPlayerAnim_link_derth_rebirth" +static const ALIGN_ASSET(2) char gPlayerAnim_link_derth_rebirth[] = dgPlayerAnim_link_derth_rebirth; + +#define dgPlayerAnim_link_fighter_LLside_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LLside_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_LLside_kiru[] = dgPlayerAnim_link_fighter_LLside_kiru; + +#define dgPlayerAnim_link_fighter_LLside_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LLside_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_LLside_kiru_end[] = dgPlayerAnim_link_fighter_LLside_kiru_end; + +#define dgPlayerAnim_link_fighter_LLside_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LLside_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_LLside_kiru_finsh[] = dgPlayerAnim_link_fighter_LLside_kiru_finsh; + +#define dgPlayerAnim_link_fighter_LLside_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LLside_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_LLside_kiru_finsh_end[] = dgPlayerAnim_link_fighter_LLside_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_LRside_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LRside_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_LRside_kiru[] = dgPlayerAnim_link_fighter_LRside_kiru; + +#define dgPlayerAnim_link_fighter_LRside_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LRside_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_LRside_kiru_end[] = dgPlayerAnim_link_fighter_LRside_kiru_end; + +#define dgPlayerAnim_link_fighter_LRside_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LRside_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_LRside_kiru_finsh[] = dgPlayerAnim_link_fighter_LRside_kiru_finsh; + +#define dgPlayerAnim_link_fighter_LRside_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_LRside_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_LRside_kiru_finsh_end[] = dgPlayerAnim_link_fighter_LRside_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_Lnormal_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lnormal_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lnormal_kiru[] = dgPlayerAnim_link_fighter_Lnormal_kiru; + +#define dgPlayerAnim_link_fighter_Lnormal_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lnormal_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lnormal_kiru_end[] = dgPlayerAnim_link_fighter_Lnormal_kiru_end; + +#define dgPlayerAnim_link_fighter_Lnormal_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lnormal_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lnormal_kiru_finsh[] = dgPlayerAnim_link_fighter_Lnormal_kiru_finsh; + +#define dgPlayerAnim_link_fighter_Lnormal_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lnormal_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lnormal_kiru_finsh_end[] = dgPlayerAnim_link_fighter_Lnormal_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_Lpierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpierce_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpierce_kiru[] = dgPlayerAnim_link_fighter_Lpierce_kiru; + +#define dgPlayerAnim_link_fighter_Lpierce_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpierce_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpierce_kiru_end[] = dgPlayerAnim_link_fighter_Lpierce_kiru_end; + +#define dgPlayerAnim_link_fighter_Lpierce_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpierce_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpierce_kiru_finsh[] = dgPlayerAnim_link_fighter_Lpierce_kiru_finsh; + +#define dgPlayerAnim_link_fighter_Lpierce_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpierce_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpierce_kiru_finsh_end[] = dgPlayerAnim_link_fighter_Lpierce_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_Lpower_jump_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_jump_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpower_jump_kiru[] = dgPlayerAnim_link_fighter_Lpower_jump_kiru; + +#define dgPlayerAnim_link_fighter_Lpower_jump_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_jump_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpower_jump_kiru_end[] = dgPlayerAnim_link_fighter_Lpower_jump_kiru_end; + +#define dgPlayerAnim_link_fighter_Lpower_jump_kiru_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_jump_kiru_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpower_jump_kiru_hit[] = dgPlayerAnim_link_fighter_Lpower_jump_kiru_hit; + +#define dgPlayerAnim_link_fighter_Lpower_kiru_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_side_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpower_kiru_side_walk[] = dgPlayerAnim_link_fighter_Lpower_kiru_side_walk; + +#define dgPlayerAnim_link_fighter_Lpower_kiru_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpower_kiru_start[] = dgPlayerAnim_link_fighter_Lpower_kiru_start; + +#define dgPlayerAnim_link_fighter_Lpower_kiru_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpower_kiru_wait[] = dgPlayerAnim_link_fighter_Lpower_kiru_wait; + +#define dgPlayerAnim_link_fighter_Lpower_kiru_wait_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_wait_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpower_kiru_wait_end[] = dgPlayerAnim_link_fighter_Lpower_kiru_wait_end; + +#define dgPlayerAnim_link_fighter_Lpower_kiru_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lpower_kiru_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lpower_kiru_walk[] = dgPlayerAnim_link_fighter_Lpower_kiru_walk; + +#define dgPlayerAnim_link_fighter_Lrolling_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lrolling_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lrolling_kiru[] = dgPlayerAnim_link_fighter_Lrolling_kiru; + +#define dgPlayerAnim_link_fighter_Lrolling_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lrolling_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lrolling_kiru_end[] = dgPlayerAnim_link_fighter_Lrolling_kiru_end; + +#define dgPlayerAnim_link_fighter_Lside_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_jump" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lside_jump[] = dgPlayerAnim_link_fighter_Lside_jump; + +#define dgPlayerAnim_link_fighter_Lside_jump_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_jump_endL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lside_jump_endL[] = dgPlayerAnim_link_fighter_Lside_jump_endL; + +#define dgPlayerAnim_link_fighter_Lside_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_jump_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lside_jump_end[] = dgPlayerAnim_link_fighter_Lside_jump_end; + +#define dgPlayerAnim_link_fighter_Lside_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lside_kiru[] = dgPlayerAnim_link_fighter_Lside_kiru; + +#define dgPlayerAnim_link_fighter_Lside_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lside_kiru_end[] = dgPlayerAnim_link_fighter_Lside_kiru_end; + +#define dgPlayerAnim_link_fighter_Lside_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lside_kiru_finsh[] = dgPlayerAnim_link_fighter_Lside_kiru_finsh; + +#define dgPlayerAnim_link_fighter_Lside_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Lside_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Lside_kiru_finsh_end[] = dgPlayerAnim_link_fighter_Lside_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_Rside_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_jump" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Rside_jump[] = dgPlayerAnim_link_fighter_Rside_jump; + +#define dgPlayerAnim_link_fighter_Rside_jump_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_jump_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Rside_jump_endR[] = dgPlayerAnim_link_fighter_Rside_jump_endR; + +#define dgPlayerAnim_link_fighter_Rside_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_jump_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Rside_jump_end[] = dgPlayerAnim_link_fighter_Rside_jump_end; + +#define dgPlayerAnim_link_fighter_Rside_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Rside_kiru[] = dgPlayerAnim_link_fighter_Rside_kiru; + +#define dgPlayerAnim_link_fighter_Rside_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Rside_kiru_end[] = dgPlayerAnim_link_fighter_Rside_kiru_end; + +#define dgPlayerAnim_link_fighter_Rside_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Rside_kiru_finsh[] = dgPlayerAnim_link_fighter_Rside_kiru_finsh; + +#define dgPlayerAnim_link_fighter_Rside_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Rside_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Rside_kiru_finsh_end[] = dgPlayerAnim_link_fighter_Rside_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_Wrolling_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Wrolling_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Wrolling_kiru[] = dgPlayerAnim_link_fighter_Wrolling_kiru; + +#define dgPlayerAnim_link_fighter_Wrolling_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_Wrolling_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_Wrolling_kiru_end[] = dgPlayerAnim_link_fighter_Wrolling_kiru_end; + +#define dgPlayerAnim_link_fighter_backturn_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_backturn_jump" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_backturn_jump[] = dgPlayerAnim_link_fighter_backturn_jump; + +#define dgPlayerAnim_link_fighter_backturn_jump_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_backturn_jump_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_backturn_jump_endR[] = dgPlayerAnim_link_fighter_backturn_jump_endR; + +#define dgPlayerAnim_link_fighter_backturn_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_backturn_jump_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_backturn_jump_end[] = dgPlayerAnim_link_fighter_backturn_jump_end; + +#define dgPlayerAnim_link_fighter_damage_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_damage_run" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_damage_run[] = dgPlayerAnim_link_fighter_damage_run; + +#define dgPlayerAnim_link_fighter_damage_run_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_damage_run_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_damage_run_long[] = dgPlayerAnim_link_fighter_damage_run_long; + +#define dgPlayerAnim_link_fighter_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_defense[] = dgPlayerAnim_link_fighter_defense; + +#define dgPlayerAnim_link_fighter_defense_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_defense_long[] = dgPlayerAnim_link_fighter_defense_long; + +#define dgPlayerAnim_link_fighter_defense_long_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense_long_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_defense_long_hit[] = dgPlayerAnim_link_fighter_defense_long_hit; + +#define dgPlayerAnim_link_fighter_defense_long_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense_long_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_defense_long_wait[] = dgPlayerAnim_link_fighter_defense_long_wait; + +#define dgPlayerAnim_link_fighter_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_defense_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_defense_wait[] = dgPlayerAnim_link_fighter_defense_wait; + +#define dgPlayerAnim_link_fighter_fighter2long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_fighter2long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_fighter2long[] = dgPlayerAnim_link_fighter_fighter2long; + +#define dgPlayerAnim_link_fighter_front_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_front_jump" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_front_jump[] = dgPlayerAnim_link_fighter_front_jump; + +#define dgPlayerAnim_link_fighter_front_jump_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_front_jump_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_front_jump_endR[] = dgPlayerAnim_link_fighter_front_jump_endR; + +#define dgPlayerAnim_link_fighter_front_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_front_jump_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_front_jump_end[] = dgPlayerAnim_link_fighter_front_jump_end; + +#define dgPlayerAnim_link_fighter_heavy_run_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_heavy_run_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_heavy_run_long[] = dgPlayerAnim_link_fighter_heavy_run_long; + +#define dgPlayerAnim_link_fighter_jump_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_jump_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_jump_kiru[] = dgPlayerAnim_link_fighter_jump_kiru; + +#define dgPlayerAnim_link_fighter_jump_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_jump_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_jump_kiru_finsh[] = dgPlayerAnim_link_fighter_jump_kiru_finsh; + +#define dgPlayerAnim_link_fighter_jump_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_jump_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_jump_kiru_finsh_end[] = dgPlayerAnim_link_fighter_jump_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_jump_rollkiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_jump_rollkiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_jump_rollkiru[] = dgPlayerAnim_link_fighter_jump_rollkiru; + +#define dgPlayerAnim_link_fighter_landing_roll_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_landing_roll_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_landing_roll_long[] = dgPlayerAnim_link_fighter_landing_roll_long; + +#define dgPlayerAnim_link_fighter_normal2fighter "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal2fighter" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_normal2fighter[] = dgPlayerAnim_link_fighter_normal2fighter; + +#define dgPlayerAnim_002A78 "__OTR__objects/gameplay_keep/gPlayerAnim_002A78" +static const ALIGN_ASSET(2) char gPlayerAnim_002A78[] = dgPlayerAnim_002A78; + +#define dgPlayerAnim_link_fighter_normal_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_normal_kiru[] = dgPlayerAnim_link_fighter_normal_kiru; + +#define dgPlayerAnim_link_fighter_normal_kiru_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_normal_kiru_endR[] = dgPlayerAnim_link_fighter_normal_kiru_endR; + +#define dgPlayerAnim_link_fighter_normal_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_normal_kiru_end[] = dgPlayerAnim_link_fighter_normal_kiru_end; + +#define dgPlayerAnim_link_fighter_normal_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_normal_kiru_finsh[] = dgPlayerAnim_link_fighter_normal_kiru_finsh; + +#define dgPlayerAnim_link_fighter_normal_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_normal_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_normal_kiru_finsh_end[] = dgPlayerAnim_link_fighter_normal_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_pierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_pierce_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_pierce_kiru[] = dgPlayerAnim_link_fighter_pierce_kiru; + +#define dgPlayerAnim_link_fighter_pierce_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_pierce_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_pierce_kiru_end[] = dgPlayerAnim_link_fighter_pierce_kiru_end; + +#define dgPlayerAnim_link_fighter_pierce_kiru_finsh "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_pierce_kiru_finsh" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_pierce_kiru_finsh[] = dgPlayerAnim_link_fighter_pierce_kiru_finsh; + +#define dgPlayerAnim_link_fighter_pierce_kiru_finsh_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_pierce_kiru_finsh_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_pierce_kiru_finsh_end[] = dgPlayerAnim_link_fighter_pierce_kiru_finsh_end; + +#define dgPlayerAnim_link_fighter_power_jump_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_jump_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_power_jump_kiru_end[] = dgPlayerAnim_link_fighter_power_jump_kiru_end; + +#define dgPlayerAnim_002AD0 "__OTR__objects/gameplay_keep/gPlayerAnim_002AD0" +static const ALIGN_ASSET(2) char gPlayerAnim_002AD0[] = dgPlayerAnim_002AD0; + +#define dgPlayerAnim_link_fighter_power_kiru_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_side_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_power_kiru_side_walk[] = dgPlayerAnim_link_fighter_power_kiru_side_walk; + +#define dgPlayerAnim_link_fighter_power_kiru_startL "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_startL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_power_kiru_startL[] = dgPlayerAnim_link_fighter_power_kiru_startL; + +#define dgPlayerAnim_link_fighter_power_kiru_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_power_kiru_start[] = dgPlayerAnim_link_fighter_power_kiru_start; + +#define dgPlayerAnim_link_fighter_power_kiru_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_power_kiru_wait[] = dgPlayerAnim_link_fighter_power_kiru_wait; + +#define dgPlayerAnim_link_fighter_power_kiru_wait_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_wait_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_power_kiru_wait_end[] = dgPlayerAnim_link_fighter_power_kiru_wait_end; + +#define dgPlayerAnim_link_fighter_power_kiru_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_power_kiru_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_power_kiru_walk[] = dgPlayerAnim_link_fighter_power_kiru_walk; + +#define dgPlayerAnim_link_fighter_reboundR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_reboundR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_reboundR[] = dgPlayerAnim_link_fighter_reboundR; + +#define dgPlayerAnim_link_fighter_rebound "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rebound" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_rebound[] = dgPlayerAnim_link_fighter_rebound; + +#define dgPlayerAnim_link_fighter_rebound_longR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rebound_longR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_rebound_longR[] = dgPlayerAnim_link_fighter_rebound_longR; + +#define dgPlayerAnim_link_fighter_rebound_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rebound_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_rebound_long[] = dgPlayerAnim_link_fighter_rebound_long; + +#define dgPlayerAnim_link_fighter_rolling_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rolling_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_rolling_kiru[] = dgPlayerAnim_link_fighter_rolling_kiru; + +#define dgPlayerAnim_link_fighter_rolling_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_rolling_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_rolling_kiru_end[] = dgPlayerAnim_link_fighter_rolling_kiru_end; + +#define dgPlayerAnim_link_fighter_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_run" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_run[] = dgPlayerAnim_link_fighter_run; + +#define dgPlayerAnim_link_fighter_run_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_run_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_run_long[] = dgPlayerAnim_link_fighter_run_long; + +#define dgPlayerAnim_002B48 "__OTR__objects/gameplay_keep/gPlayerAnim_002B48" +static const ALIGN_ASSET(2) char gPlayerAnim_002B48[] = dgPlayerAnim_002B48; + +#define dgPlayerAnim_002B50 "__OTR__objects/gameplay_keep/gPlayerAnim_002B50" +static const ALIGN_ASSET(2) char gPlayerAnim_002B50[] = dgPlayerAnim_002B50; + +#define dgPlayerAnim_link_fighter_side_walkL_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_side_walkL_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_side_walkL_long[] = dgPlayerAnim_link_fighter_side_walkL_long; + +#define dgPlayerAnim_link_fighter_side_walkR_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_side_walkR_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_side_walkR_long[] = dgPlayerAnim_link_fighter_side_walkR_long; + +#define dgPlayerAnim_link_fighter_side_walk_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_side_walk_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_side_walk_long[] = dgPlayerAnim_link_fighter_side_walk_long; + +#define dgPlayerAnim_link_fighter_turn_kiruL "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_turn_kiruL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_turn_kiruL[] = dgPlayerAnim_link_fighter_turn_kiruL; + +#define dgPlayerAnim_link_fighter_turn_kiruL_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_turn_kiruL_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_turn_kiruL_end[] = dgPlayerAnim_link_fighter_turn_kiruL_end; + +#define dgPlayerAnim_link_fighter_turn_kiruR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_turn_kiruR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_turn_kiruR[] = dgPlayerAnim_link_fighter_turn_kiruR; + +#define dgPlayerAnim_link_fighter_turn_kiruR_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_turn_kiruR_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_turn_kiruR_end[] = dgPlayerAnim_link_fighter_turn_kiruR_end; + +#define dgPlayerAnim_link_fighter_upper_kiruR "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_upper_kiruR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_upper_kiruR[] = dgPlayerAnim_link_fighter_upper_kiruR; + +#define dgPlayerAnim_link_fighter_upper_pierce_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_upper_pierce_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_upper_pierce_kiru[] = dgPlayerAnim_link_fighter_upper_pierce_kiru; + +#define dgPlayerAnim_link_fighter_upper_pierce_kiru_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_upper_pierce_kiru_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_upper_pierce_kiru_end[] = dgPlayerAnim_link_fighter_upper_pierce_kiru_end; + +#define dgPlayerAnim_link_fighter_wait2waitL_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_wait2waitL_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_wait2waitL_long[] = dgPlayerAnim_link_fighter_wait2waitL_long; + +#define dgPlayerAnim_link_fighter_wait2waitR_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_wait2waitR_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_wait2waitR_long[] = dgPlayerAnim_link_fighter_wait2waitR_long; + +#define dgPlayerAnim_link_fighter_waitL2wait_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_waitL2wait_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_waitL2wait_long[] = dgPlayerAnim_link_fighter_waitL2wait_long; + +#define dgPlayerAnim_link_fighter_waitL_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_waitL_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_waitL_long[] = dgPlayerAnim_link_fighter_waitL_long; + +#define dgPlayerAnim_link_fighter_waitR2wait_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_waitR2wait_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_waitR2wait_long[] = dgPlayerAnim_link_fighter_waitR2wait_long; + +#define dgPlayerAnim_link_fighter_waitR_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_waitR_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_waitR_long[] = dgPlayerAnim_link_fighter_waitR_long; + +#define dgPlayerAnim_002BD8 "__OTR__objects/gameplay_keep/gPlayerAnim_002BD8" +static const ALIGN_ASSET(2) char gPlayerAnim_002BD8[] = dgPlayerAnim_002BD8; + +#define dgPlayerAnim_link_fighter_wait_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_wait_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_wait_long[] = dgPlayerAnim_link_fighter_wait_long; + +#define dgPlayerAnim_link_fighter_walk_endL_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_walk_endL_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_walk_endL_long[] = dgPlayerAnim_link_fighter_walk_endL_long; + +#define dgPlayerAnim_link_fighter_walk_endR_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_walk_endR_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_walk_endR_long[] = dgPlayerAnim_link_fighter_walk_endR_long; + +#define dgPlayerAnim_link_fighter_walk_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_fighter_walk_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fighter_walk_long[] = dgPlayerAnim_link_fighter_walk_long; + +#define dgPlayerAnim_link_fishing_fish_catch "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_fish_catch" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fishing_fish_catch[] = dgPlayerAnim_link_fishing_fish_catch; + +#define dgPlayerAnim_link_fishing_fish_catch_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_fish_catch_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fishing_fish_catch_end[] = dgPlayerAnim_link_fishing_fish_catch_end; + +#define dgPlayerAnim_link_fishing_reel_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_reel_down" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fishing_reel_down[] = dgPlayerAnim_link_fishing_reel_down; + +#define dgPlayerAnim_link_fishing_reel_left "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_reel_left" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fishing_reel_left[] = dgPlayerAnim_link_fishing_reel_left; + +#define dgPlayerAnim_link_fishing_reel_right "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_reel_right" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fishing_reel_right[] = dgPlayerAnim_link_fishing_reel_right; + +#define dgPlayerAnim_link_fishing_reel_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_reel_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fishing_reel_up[] = dgPlayerAnim_link_fishing_reel_up; + +#define dgPlayerAnim_link_fishing_throw "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_throw" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fishing_throw[] = dgPlayerAnim_link_fishing_throw; + +#define dgPlayerAnim_link_fishing_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_fishing_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_fishing_wait[] = dgPlayerAnim_link_fishing_wait; + +#define dgPlayerAnim_link_hammer_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_hit[] = dgPlayerAnim_link_hammer_hit; + +#define dgPlayerAnim_link_hammer_hit_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_hit_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_hit_endR[] = dgPlayerAnim_link_hammer_hit_endR; + +#define dgPlayerAnim_link_hammer_hit_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_hit_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_hit_end[] = dgPlayerAnim_link_hammer_hit_end; + +#define dgPlayerAnim_link_hammer_long2free "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_long2free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_long2free[] = dgPlayerAnim_link_hammer_long2free; + +#define dgPlayerAnim_link_hammer_long2long "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_long2long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_long2long[] = dgPlayerAnim_link_hammer_long2long; + +#define dgPlayerAnim_link_hammer_normal2long "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_normal2long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_normal2long[] = dgPlayerAnim_link_hammer_normal2long; + +#define dgPlayerAnim_link_hammer_side_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_side_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_side_hit[] = dgPlayerAnim_link_hammer_side_hit; + +#define dgPlayerAnim_link_hammer_side_hit_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_side_hit_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_side_hit_endR[] = dgPlayerAnim_link_hammer_side_hit_endR; + +#define dgPlayerAnim_link_hammer_side_hit_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_hammer_side_hit_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hammer_side_hit_end[] = dgPlayerAnim_link_hammer_side_hit_end; + +#define dgPlayerAnim_link_hatto_demo "__OTR__objects/gameplay_keep/gPlayerAnim_link_hatto_demo" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hatto_demo[] = dgPlayerAnim_link_hatto_demo; + +#define dgPlayerAnim_link_hook_fly_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_fly_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hook_fly_start[] = dgPlayerAnim_link_hook_fly_start; + +#define dgPlayerAnim_link_hook_fly_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_fly_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hook_fly_wait[] = dgPlayerAnim_link_hook_fly_wait; + +#define dgPlayerAnim_link_hook_shot_ready "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_shot_ready" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hook_shot_ready[] = dgPlayerAnim_link_hook_shot_ready; + +#define dgPlayerAnim_link_hook_side_runL "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_side_runL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hook_side_runL[] = dgPlayerAnim_link_hook_side_runL; + +#define dgPlayerAnim_link_hook_side_runR "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_side_runR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hook_side_runR[] = dgPlayerAnim_link_hook_side_runR; + +#define dgPlayerAnim_link_hook_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_side_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hook_side_walk[] = dgPlayerAnim_link_hook_side_walk; + +#define dgPlayerAnim_link_hook_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hook_wait[] = dgPlayerAnim_link_hook_wait; + +#define dgPlayerAnim_link_hook_walk2ready "__OTR__objects/gameplay_keep/gPlayerAnim_link_hook_walk2ready" +static const ALIGN_ASSET(2) char gPlayerAnim_link_hook_walk2ready[] = dgPlayerAnim_link_hook_walk2ready; + +#define dgPlayerAnim_link_last_hit_motion1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_last_hit_motion1" +static const ALIGN_ASSET(2) char gPlayerAnim_link_last_hit_motion1[] = dgPlayerAnim_link_last_hit_motion1; + +#define dgPlayerAnim_link_last_hit_motion2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_last_hit_motion2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_last_hit_motion2[] = dgPlayerAnim_link_last_hit_motion2; + +#define dgPlayerAnim_link_magic_honoo1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_honoo1" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_honoo1[] = dgPlayerAnim_link_magic_honoo1; + +#define dgPlayerAnim_link_magic_honoo2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_honoo2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_honoo2[] = dgPlayerAnim_link_magic_honoo2; + +#define dgPlayerAnim_link_magic_honoo3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_honoo3" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_honoo3[] = dgPlayerAnim_link_magic_honoo3; + +#define dgPlayerAnim_link_magic_kaze1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_kaze1" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_kaze1[] = dgPlayerAnim_link_magic_kaze1; + +#define dgPlayerAnim_link_magic_kaze2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_kaze2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_kaze2[] = dgPlayerAnim_link_magic_kaze2; + +#define dgPlayerAnim_link_magic_kaze3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_kaze3" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_kaze3[] = dgPlayerAnim_link_magic_kaze3; + +#define dgPlayerAnim_link_magic_tamashii1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tamashii1" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_tamashii1[] = dgPlayerAnim_link_magic_tamashii1; + +#define dgPlayerAnim_link_magic_tamashii2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tamashii2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_tamashii2[] = dgPlayerAnim_link_magic_tamashii2; + +#define dgPlayerAnim_link_magic_tamashii3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tamashii3" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_tamashii3[] = dgPlayerAnim_link_magic_tamashii3; + +#define dgPlayerAnim_link_magic_tame "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tame" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_tame[] = dgPlayerAnim_link_magic_tame; + +#define dgPlayerAnim_link_magic_tame_kaijyo "__OTR__objects/gameplay_keep/gPlayerAnim_link_magic_tame_kaijyo" +static const ALIGN_ASSET(2) char gPlayerAnim_link_magic_tame_kaijyo[] = dgPlayerAnim_link_magic_tame_kaijyo; + +#define dgPlayerAnim_link_normal_100step_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_100step_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_100step_up[] = dgPlayerAnim_link_normal_100step_up; + +#define dgPlayerAnim_link_normal_150step_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_150step_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_150step_up[] = dgPlayerAnim_link_normal_150step_up; + +#define dgPlayerAnim_link_normal_250jump_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_250jump_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_250jump_start[] = dgPlayerAnim_link_normal_250jump_start; + +#define dgPlayerAnim_002D50 "__OTR__objects/gameplay_keep/gPlayerAnim_002D50" +static const ALIGN_ASSET(2) char gPlayerAnim_002D50[] = dgPlayerAnim_002D50; + +#define dgPlayerAnim_link_normal_45_turn "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_45_turn" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_45_turn[] = dgPlayerAnim_link_normal_45_turn; + +#define dgPlayerAnim_link_normal_45_turn_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_45_turn_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_45_turn_free[] = dgPlayerAnim_link_normal_45_turn_free; + +#define dgPlayerAnim_link_normal_Fclimb_hold2upL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_hold2upL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_Fclimb_hold2upL[] = dgPlayerAnim_link_normal_Fclimb_hold2upL; + +#define dgPlayerAnim_link_normal_Fclimb_sideL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_sideL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_Fclimb_sideL[] = dgPlayerAnim_link_normal_Fclimb_sideL; + +#define dgPlayerAnim_link_normal_Fclimb_sideR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_sideR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_Fclimb_sideR[] = dgPlayerAnim_link_normal_Fclimb_sideR; + +#define dgPlayerAnim_link_normal_Fclimb_startA "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_startA" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_Fclimb_startA[] = dgPlayerAnim_link_normal_Fclimb_startA; + +#define dgPlayerAnim_link_normal_Fclimb_startB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_startB" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_Fclimb_startB[] = dgPlayerAnim_link_normal_Fclimb_startB; + +#define dgPlayerAnim_link_normal_Fclimb_upL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_upL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_Fclimb_upL[] = dgPlayerAnim_link_normal_Fclimb_upL; + +#define dgPlayerAnim_link_normal_Fclimb_upR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_Fclimb_upR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_Fclimb_upR[] = dgPlayerAnim_link_normal_Fclimb_upR; + +#define dgPlayerAnim_link_normal_back_brake "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_brake" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_brake[] = dgPlayerAnim_link_normal_back_brake; + +#define dgPlayerAnim_link_normal_back_brake_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_brake_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_brake_end[] = dgPlayerAnim_link_normal_back_brake_end; + +#define dgPlayerAnim_link_normal_back_downA "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_downA" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_downA[] = dgPlayerAnim_link_normal_back_downA; + +#define dgPlayerAnim_link_normal_back_downB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_downB" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_downB[] = dgPlayerAnim_link_normal_back_downB; + +#define dgPlayerAnim_link_normal_back_down_wake "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_down_wake" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_down_wake[] = dgPlayerAnim_link_normal_back_down_wake; + +#define dgPlayerAnim_link_normal_back_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_hit[] = dgPlayerAnim_link_normal_back_hit; + +#define dgPlayerAnim_link_normal_back_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_run" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_run[] = dgPlayerAnim_link_normal_back_run; + +#define dgPlayerAnim_link_normal_back_shitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_shitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_shitR[] = dgPlayerAnim_link_normal_back_shitR; + +#define dgPlayerAnim_link_normal_back_shit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_shit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_shit[] = dgPlayerAnim_link_normal_back_shit; + +#define dgPlayerAnim_link_normal_back_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_back_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_back_walk[] = dgPlayerAnim_link_normal_back_walk; + +#define dgPlayerAnim_link_normal_backspace "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_backspace" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_backspace[] = dgPlayerAnim_link_normal_backspace; + +#define dgPlayerAnim_link_normal_box_kick "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_box_kick" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_box_kick[] = dgPlayerAnim_link_normal_box_kick; + +#define dgPlayerAnim_link_normal_carryB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_carryB" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_carryB[] = dgPlayerAnim_link_normal_carryB; + +#define dgPlayerAnim_link_normal_carryB_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_carryB_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_carryB_free[] = dgPlayerAnim_link_normal_carryB_free; + +#define dgPlayerAnim_link_normal_carryB_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_carryB_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_carryB_wait[] = dgPlayerAnim_link_normal_carryB_wait; + +#define dgPlayerAnim_link_normal_check "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_check[] = dgPlayerAnim_link_normal_check; + +#define dgPlayerAnim_link_normal_check_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_check_end[] = dgPlayerAnim_link_normal_check_end; + +#define dgPlayerAnim_link_normal_check_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_end_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_check_end_free[] = dgPlayerAnim_link_normal_check_end_free; + +#define dgPlayerAnim_link_normal_check_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_check_free[] = dgPlayerAnim_link_normal_check_free; + +#define dgPlayerAnim_link_normal_check_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_check_wait[] = dgPlayerAnim_link_normal_check_wait; + +#define dgPlayerAnim_link_normal_check_wait_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_check_wait_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_check_wait_free[] = dgPlayerAnim_link_normal_check_wait_free; + +#define dgPlayerAnim_link_normal_climb_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_down" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_down[] = dgPlayerAnim_link_normal_climb_down; + +#define dgPlayerAnim_link_normal_climb_endAL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_endAL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_endAL[] = dgPlayerAnim_link_normal_climb_endAL; + +#define dgPlayerAnim_link_normal_climb_endAR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_endAR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_endAR[] = dgPlayerAnim_link_normal_climb_endAR; + +#define dgPlayerAnim_link_normal_climb_endBL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_endBL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_endBL[] = dgPlayerAnim_link_normal_climb_endBL; + +#define dgPlayerAnim_link_normal_climb_endBR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_endBR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_endBR[] = dgPlayerAnim_link_normal_climb_endBR; + +#define dgPlayerAnim_link_normal_climb_startA "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_startA" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_startA[] = dgPlayerAnim_link_normal_climb_startA; + +#define dgPlayerAnim_link_normal_climb_startB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_startB" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_startB[] = dgPlayerAnim_link_normal_climb_startB; + +#define dgPlayerAnim_link_normal_climb_upL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_upL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_upL[] = dgPlayerAnim_link_normal_climb_upL; + +#define dgPlayerAnim_link_normal_climb_upR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_upR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_upR[] = dgPlayerAnim_link_normal_climb_upR; + +#define dgPlayerAnim_link_normal_climb_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_climb_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_climb_up[] = dgPlayerAnim_link_normal_climb_up; + +#define dgPlayerAnim_link_normal_damage_run_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_damage_run_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_damage_run_free[] = dgPlayerAnim_link_normal_damage_run_free; + +#define dgPlayerAnim_link_normal_defense "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_defense[] = dgPlayerAnim_link_normal_defense; + +#define dgPlayerAnim_link_normal_defense_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_defense_end[] = dgPlayerAnim_link_normal_defense_end; + +#define dgPlayerAnim_link_normal_defense_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_end_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_defense_end_free[] = dgPlayerAnim_link_normal_defense_end_free; + +#define dgPlayerAnim_link_normal_defense_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_defense_free[] = dgPlayerAnim_link_normal_defense_free; + +#define dgPlayerAnim_link_normal_defense_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_defense_hit[] = dgPlayerAnim_link_normal_defense_hit; + +#define dgPlayerAnim_link_normal_defense_kiru "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_kiru" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_defense_kiru[] = dgPlayerAnim_link_normal_defense_kiru; + +#define dgPlayerAnim_link_normal_defense_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_defense_wait[] = dgPlayerAnim_link_normal_defense_wait; + +#define dgPlayerAnim_link_normal_defense_wait_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_defense_wait_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_defense_wait_free[] = dgPlayerAnim_link_normal_defense_wait_free; + +#define dgPlayerAnim_link_normal_down_slope_slip "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_down_slope_slip" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_down_slope_slip[] = dgPlayerAnim_link_normal_down_slope_slip; + +#define dgPlayerAnim_link_normal_down_slope_slip_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_down_slope_slip_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_down_slope_slip_end[] = dgPlayerAnim_link_normal_down_slope_slip_end; + +#define dgPlayerAnim_link_normal_down_slope_slip_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_down_slope_slip_end_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_down_slope_slip_end_free[] = dgPlayerAnim_link_normal_down_slope_slip_end_free; + +#define dgPlayerAnim_link_normal_down_slope_slip_end_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_down_slope_slip_end_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_down_slope_slip_end_long[] = dgPlayerAnim_link_normal_down_slope_slip_end_long; + +#define dgPlayerAnim_link_normal_electric_shock "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_electric_shock" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_electric_shock[] = dgPlayerAnim_link_normal_electric_shock; + +#define dgPlayerAnim_link_normal_electric_shock_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_electric_shock_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_electric_shock_end[] = dgPlayerAnim_link_normal_electric_shock_end; + +#define dgPlayerAnim_link_normal_fall "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fall" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_fall[] = dgPlayerAnim_link_normal_fall; + +#define dgPlayerAnim_link_normal_fall_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fall_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_fall_up[] = dgPlayerAnim_link_normal_fall_up; + +#define dgPlayerAnim_link_normal_fall_up_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fall_up_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_fall_up_free[] = dgPlayerAnim_link_normal_fall_up_free; + +#define dgPlayerAnim_link_normal_fall_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fall_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_fall_wait[] = dgPlayerAnim_link_normal_fall_wait; + +#define dgPlayerAnim_link_normal_fighter2free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_fighter2free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_fighter2free[] = dgPlayerAnim_link_normal_fighter2free; + +#define dgPlayerAnim_link_normal_free2bom "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_free2bom" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_free2bom[] = dgPlayerAnim_link_normal_free2bom; + +#define dgPlayerAnim_link_normal_free2fighter_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_free2fighter_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_free2fighter_free[] = dgPlayerAnim_link_normal_free2fighter_free; + +#define dgPlayerAnim_link_normal_free2freeB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_free2freeB" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_free2freeB[] = dgPlayerAnim_link_normal_free2freeB; + +#define dgPlayerAnim_link_normal_free2free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_free2free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_free2free[] = dgPlayerAnim_link_normal_free2free; + +#define dgPlayerAnim_link_normal_front_downA "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_downA" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_front_downA[] = dgPlayerAnim_link_normal_front_downA; + +#define dgPlayerAnim_link_normal_front_downB "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_downB" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_front_downB[] = dgPlayerAnim_link_normal_front_downB; + +#define dgPlayerAnim_link_normal_front_down_wake "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_down_wake" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_front_down_wake[] = dgPlayerAnim_link_normal_front_down_wake; + +#define dgPlayerAnim_link_normal_front_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_front_hit[] = dgPlayerAnim_link_normal_front_hit; + +#define dgPlayerAnim_link_normal_front_shitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_shitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_front_shitR[] = dgPlayerAnim_link_normal_front_shitR; + +#define dgPlayerAnim_link_normal_front_shit "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_front_shit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_front_shit[] = dgPlayerAnim_link_normal_front_shit; + +#define dgPlayerAnim_link_normal_give_other "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_give_other" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_give_other[] = dgPlayerAnim_link_normal_give_other; + +#define dgPlayerAnim_link_normal_hang_up_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_hang_up_down" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_hang_up_down[] = dgPlayerAnim_link_normal_hang_up_down; + +#define dgPlayerAnim_link_normal_heavy_carry "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_heavy_carry" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_heavy_carry[] = dgPlayerAnim_link_normal_heavy_carry; + +#define dgPlayerAnim_link_normal_heavy_carry_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_heavy_carry_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_heavy_carry_end[] = dgPlayerAnim_link_normal_heavy_carry_end; + +#define dgPlayerAnim_link_normal_heavy_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_heavy_run" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_heavy_run[] = dgPlayerAnim_link_normal_heavy_run; + +#define dgPlayerAnim_link_normal_heavy_run_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_heavy_run_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_heavy_run_free[] = dgPlayerAnim_link_normal_heavy_run_free; + +#define dgPlayerAnim_link_normal_hip_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_hip_down" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_hip_down[] = dgPlayerAnim_link_normal_hip_down; + +#define dgPlayerAnim_link_normal_hip_down_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_hip_down_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_hip_down_free[] = dgPlayerAnim_link_normal_hip_down_free; + +#define dgPlayerAnim_link_normal_hip_down_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_hip_down_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_hip_down_long[] = dgPlayerAnim_link_normal_hip_down_long; + +#define dgPlayerAnim_link_normal_ice_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_ice_down" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_ice_down[] = dgPlayerAnim_link_normal_ice_down; + +#define dgPlayerAnim_link_normal_jump2landing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump2landing" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump2landing[] = dgPlayerAnim_link_normal_jump2landing; + +#define dgPlayerAnim_link_normal_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump[] = dgPlayerAnim_link_normal_jump; + +#define dgPlayerAnim_link_normal_jump_climb_hold "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_hold" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump_climb_hold[] = dgPlayerAnim_link_normal_jump_climb_hold; + +#define dgPlayerAnim_link_normal_jump_climb_hold_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_hold_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump_climb_hold_free[] = dgPlayerAnim_link_normal_jump_climb_hold_free; + +#define dgPlayerAnim_link_normal_jump_climb_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump_climb_up[] = dgPlayerAnim_link_normal_jump_climb_up; + +#define dgPlayerAnim_link_normal_jump_climb_up_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_up_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump_climb_up_free[] = dgPlayerAnim_link_normal_jump_climb_up_free; + +#define dgPlayerAnim_link_normal_jump_climb_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump_climb_wait[] = dgPlayerAnim_link_normal_jump_climb_wait; + +#define dgPlayerAnim_link_normal_jump_climb_wait_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_climb_wait_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump_climb_wait_free[] = dgPlayerAnim_link_normal_jump_climb_wait_free; + +#define dgPlayerAnim_link_normal_jump_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_jump_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_jump_up[] = dgPlayerAnim_link_normal_jump_up; + +#define dgPlayerAnim_link_normal_landing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_landing[] = dgPlayerAnim_link_normal_landing; + +#define dgPlayerAnim_link_normal_landing_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_landing_free[] = dgPlayerAnim_link_normal_landing_free; + +#define dgPlayerAnim_link_normal_landing_roll "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing_roll" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_landing_roll[] = dgPlayerAnim_link_normal_landing_roll; + +#define dgPlayerAnim_link_normal_landing_roll_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing_roll_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_landing_roll_free[] = dgPlayerAnim_link_normal_landing_roll_free; + +#define dgPlayerAnim_link_normal_landing_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_landing_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_landing_wait[] = dgPlayerAnim_link_normal_landing_wait; + +#define dgPlayerAnim_link_normal_light_bom "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_light_bom" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_light_bom[] = dgPlayerAnim_link_normal_light_bom; + +#define dgPlayerAnim_link_normal_light_bom_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_light_bom_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_light_bom_end[] = dgPlayerAnim_link_normal_light_bom_end; + +#define dgPlayerAnim_link_normal_long2bom "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_long2bom" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_long2bom[] = dgPlayerAnim_link_normal_long2bom; + +#define dgPlayerAnim_link_normal_nocarry_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_nocarry_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_nocarry_free[] = dgPlayerAnim_link_normal_nocarry_free; + +#define dgPlayerAnim_link_normal_nocarry_free_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_nocarry_free_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_nocarry_free_end[] = dgPlayerAnim_link_normal_nocarry_free_end; + +#define dgPlayerAnim_link_normal_nocarry_free_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_nocarry_free_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_nocarry_free_wait[] = dgPlayerAnim_link_normal_nocarry_free_wait; + +#define dgPlayerAnim_link_normal_normal2bom "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_normal2bom" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_normal2bom[] = dgPlayerAnim_link_normal_normal2bom; + +#define dgPlayerAnim_link_normal_normal2fighter "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_normal2fighter" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_normal2fighter[] = dgPlayerAnim_link_normal_normal2fighter; + +#define dgPlayerAnim_link_normal_normal2fighter_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_normal2fighter_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_normal2fighter_free[] = dgPlayerAnim_link_normal_normal2fighter_free; + +#define dgPlayerAnim_link_normal_normal2free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_normal2free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_normal2free[] = dgPlayerAnim_link_normal_normal2free; + +#define dgPlayerAnim_link_normal_okarina_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_okarina_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_okarina_end[] = dgPlayerAnim_link_normal_okarina_end; + +#define dgPlayerAnim_link_normal_okarina_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_okarina_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_okarina_start[] = dgPlayerAnim_link_normal_okarina_start; + +#define dgPlayerAnim_link_normal_okarina_swing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_okarina_swing" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_okarina_swing[] = dgPlayerAnim_link_normal_okarina_swing; + +#define dgPlayerAnim_link_normal_pull_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pull_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_pull_end[] = dgPlayerAnim_link_normal_pull_end; + +#define dgPlayerAnim_link_normal_pull_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pull_end_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_pull_end_free[] = dgPlayerAnim_link_normal_pull_end_free; + +#define dgPlayerAnim_link_normal_pull_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pull_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_pull_start[] = dgPlayerAnim_link_normal_pull_start; + +#define dgPlayerAnim_link_normal_pull_start_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pull_start_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_pull_start_free[] = dgPlayerAnim_link_normal_pull_start_free; + +#define dgPlayerAnim_link_normal_pulling "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pulling" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_pulling[] = dgPlayerAnim_link_normal_pulling; + +#define dgPlayerAnim_link_normal_pulling_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pulling_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_pulling_free[] = dgPlayerAnim_link_normal_pulling_free; + +#define dgPlayerAnim_link_normal_push_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_push_end[] = dgPlayerAnim_link_normal_push_end; + +#define dgPlayerAnim_link_normal_push_fall "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_fall" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_push_fall[] = dgPlayerAnim_link_normal_push_fall; + +#define dgPlayerAnim_link_normal_push_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_push_start[] = dgPlayerAnim_link_normal_push_start; + +#define dgPlayerAnim_link_normal_push_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_push_wait[] = dgPlayerAnim_link_normal_push_wait; + +#define dgPlayerAnim_link_normal_push_wait_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_push_wait_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_push_wait_end[] = dgPlayerAnim_link_normal_push_wait_end; + +#define dgPlayerAnim_link_normal_pushing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_pushing" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_pushing[] = dgPlayerAnim_link_normal_pushing; + +#define dgPlayerAnim_link_normal_put "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_put" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_put[] = dgPlayerAnim_link_normal_put; + +#define dgPlayerAnim_link_normal_put_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_put_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_put_free[] = dgPlayerAnim_link_normal_put_free; + +#define dgPlayerAnim_link_normal_re_dead_attack "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_re_dead_attack" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_re_dead_attack[] = dgPlayerAnim_link_normal_re_dead_attack; + +#define dgPlayerAnim_link_normal_re_dead_attack_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_re_dead_attack_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_re_dead_attack_wait[] = dgPlayerAnim_link_normal_re_dead_attack_wait; + +#define dgPlayerAnim_link_normal_rebound "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_rebound" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_rebound[] = dgPlayerAnim_link_normal_rebound; + +#define dgPlayerAnim_link_normal_run "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_run[] = dgPlayerAnim_link_normal_run; + +#define dgPlayerAnim_link_normal_run_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_run_free[] = dgPlayerAnim_link_normal_run_free; + +#define dgPlayerAnim_link_normal_run_jump "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_jump" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_run_jump[] = dgPlayerAnim_link_normal_run_jump; + +#define dgPlayerAnim_link_normal_run_jump_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_jump_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_run_jump_end[] = dgPlayerAnim_link_normal_run_jump_end; + +#define dgPlayerAnim_link_normal_run_jump_water_fall "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_jump_water_fall" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_run_jump_water_fall[] = dgPlayerAnim_link_normal_run_jump_water_fall; + +#define dgPlayerAnim_link_normal_run_jump_water_fall_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_run_jump_water_fall_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_run_jump_water_fall_wait[] = dgPlayerAnim_link_normal_run_jump_water_fall_wait; + +#define dgPlayerAnim_link_normal_short_landing "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_short_landing" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_short_landing[] = dgPlayerAnim_link_normal_short_landing; + +#define dgPlayerAnim_link_normal_short_landing_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_short_landing_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_short_landing_free[] = dgPlayerAnim_link_normal_short_landing_free; + +#define dgPlayerAnim_link_normal_side_walkL_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_side_walkL_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_side_walkL_free[] = dgPlayerAnim_link_normal_side_walkL_free; + +#define dgPlayerAnim_link_normal_side_walkR_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_side_walkR_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_side_walkR_free[] = dgPlayerAnim_link_normal_side_walkR_free; + +#define dgPlayerAnim_link_normal_side_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_side_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_side_walk[] = dgPlayerAnim_link_normal_side_walk; + +#define dgPlayerAnim_link_normal_side_walk_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_side_walk_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_side_walk_free[] = dgPlayerAnim_link_normal_side_walk_free; + +#define dgPlayerAnim_link_normal_take_out "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_take_out" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_take_out[] = dgPlayerAnim_link_normal_take_out; + +#define dgPlayerAnim_link_normal_talk_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_talk_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_talk_free[] = dgPlayerAnim_link_normal_talk_free; + +#define dgPlayerAnim_link_normal_talk_free_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_talk_free_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_talk_free_wait[] = dgPlayerAnim_link_normal_talk_free_wait; + +#define dgPlayerAnim_link_normal_talk_navi "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_talk_navi" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_talk_navi[] = dgPlayerAnim_link_normal_talk_navi; + +#define dgPlayerAnim_link_normal_talk_navi_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_talk_navi_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_talk_navi_wait[] = dgPlayerAnim_link_normal_talk_navi_wait; + +#define dgPlayerAnim_link_normal_throw "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_throw" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_throw[] = dgPlayerAnim_link_normal_throw; + +#define dgPlayerAnim_link_normal_throw_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_throw_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_throw_free[] = dgPlayerAnim_link_normal_throw_free; + +#define dgPlayerAnim_link_normal_up_slope_slip "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_up_slope_slip" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_up_slope_slip[] = dgPlayerAnim_link_normal_up_slope_slip; + +#define dgPlayerAnim_link_normal_up_slope_slip_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_up_slope_slip_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_up_slope_slip_end[] = dgPlayerAnim_link_normal_up_slope_slip_end; + +#define dgPlayerAnim_link_normal_up_slope_slip_end_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_up_slope_slip_end_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_up_slope_slip_end_free[] = dgPlayerAnim_link_normal_up_slope_slip_end_free; + +#define dgPlayerAnim_link_normal_up_slope_slip_end_long "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_up_slope_slip_end_long" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_up_slope_slip_end_long[] = dgPlayerAnim_link_normal_up_slope_slip_end_long; + +#define dgPlayerAnim_link_normal_wait2waitL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait2waitL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_wait2waitL[] = dgPlayerAnim_link_normal_wait2waitL; + +#define dgPlayerAnim_link_normal_wait2waitR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait2waitR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_wait2waitR[] = dgPlayerAnim_link_normal_wait2waitR; + +#define dgPlayerAnim_link_normal_waitF_typeA_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitF_typeA_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_waitF_typeA_20f[] = dgPlayerAnim_link_normal_waitF_typeA_20f; + +#define dgPlayerAnim_link_normal_waitF_typeB_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitF_typeB_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_waitF_typeB_20f[] = dgPlayerAnim_link_normal_waitF_typeB_20f; + +#define dgPlayerAnim_link_normal_waitF_typeC_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitF_typeC_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_waitF_typeC_20f[] = dgPlayerAnim_link_normal_waitF_typeC_20f; + +#define dgPlayerAnim_link_normal_waitL2wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitL2wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_waitL2wait[] = dgPlayerAnim_link_normal_waitL2wait; + +#define dgPlayerAnim_link_normal_waitL_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitL_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_waitL_free[] = dgPlayerAnim_link_normal_waitL_free; + +#define dgPlayerAnim_link_normal_waitR2wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitR2wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_waitR2wait[] = dgPlayerAnim_link_normal_waitR2wait; + +#define dgPlayerAnim_link_normal_waitR_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_waitR_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_waitR_free[] = dgPlayerAnim_link_normal_waitR_free; + +#define dgPlayerAnim_link_normal_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_wait[] = dgPlayerAnim_link_normal_wait; + +#define dgPlayerAnim_link_normal_wait_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_wait_free[] = dgPlayerAnim_link_normal_wait_free; + +#define dgPlayerAnim_link_normal_wait_typeA_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait_typeA_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_wait_typeA_20f[] = dgPlayerAnim_link_normal_wait_typeA_20f; + +#define dgPlayerAnim_link_normal_wait_typeB_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait_typeB_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_wait_typeB_20f[] = dgPlayerAnim_link_normal_wait_typeB_20f; + +#define dgPlayerAnim_link_normal_wait_typeC_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wait_typeC_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_wait_typeC_20f[] = dgPlayerAnim_link_normal_wait_typeC_20f; + +#define dgPlayerAnim_link_normal_wakeup "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_wakeup" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_wakeup[] = dgPlayerAnim_link_normal_wakeup; + +#define dgPlayerAnim_link_normal_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_walk[] = dgPlayerAnim_link_normal_walk; + +#define dgPlayerAnim_link_normal_walk_endL "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_endL" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_walk_endL[] = dgPlayerAnim_link_normal_walk_endL; + +#define dgPlayerAnim_link_normal_walk_endL_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_endL_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_walk_endL_free[] = dgPlayerAnim_link_normal_walk_endL_free; + +#define dgPlayerAnim_link_normal_walk_endR "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_endR" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_walk_endR[] = dgPlayerAnim_link_normal_walk_endR; + +#define dgPlayerAnim_link_normal_walk_endR_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_endR_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_walk_endR_free[] = dgPlayerAnim_link_normal_walk_endR_free; + +#define dgPlayerAnim_link_normal_walk_free "__OTR__objects/gameplay_keep/gPlayerAnim_link_normal_walk_free" +static const ALIGN_ASSET(2) char gPlayerAnim_link_normal_walk_free[] = dgPlayerAnim_link_normal_walk_free; + +#define dgPlayerAnim_link_okarina_warp_goal "__OTR__objects/gameplay_keep/gPlayerAnim_link_okarina_warp_goal" +static const ALIGN_ASSET(2) char gPlayerAnim_link_okarina_warp_goal[] = dgPlayerAnim_link_okarina_warp_goal; + +#define dgPlayerAnim_link_okiru_demo "__OTR__objects/gameplay_keep/gPlayerAnim_link_okiru_demo" +static const ALIGN_ASSET(2) char gPlayerAnim_link_okiru_demo[] = dgPlayerAnim_link_okiru_demo; + +#define dgPlayerAnim_link_shagamu_demo "__OTR__objects/gameplay_keep/gPlayerAnim_link_shagamu_demo" +static const ALIGN_ASSET(2) char gPlayerAnim_link_shagamu_demo[] = dgPlayerAnim_link_shagamu_demo; + +#define dgPlayerAnim_link_silver_carry "__OTR__objects/gameplay_keep/gPlayerAnim_link_silver_carry" +static const ALIGN_ASSET(2) char gPlayerAnim_link_silver_carry[] = dgPlayerAnim_link_silver_carry; + +#define dgPlayerAnim_link_silver_throw "__OTR__objects/gameplay_keep/gPlayerAnim_link_silver_throw" +static const ALIGN_ASSET(2) char gPlayerAnim_link_silver_throw[] = dgPlayerAnim_link_silver_throw; + +#define dgPlayerAnim_link_silver_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_silver_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_silver_wait[] = dgPlayerAnim_link_silver_wait; + +#define dgPlayerAnim_link_swimer_Lside_swim "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_Lside_swim" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_Lside_swim[] = dgPlayerAnim_link_swimer_Lside_swim; + +#define dgPlayerAnim_link_swimer_Rside_swim "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_Rside_swim" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_Rside_swim[] = dgPlayerAnim_link_swimer_Rside_swim; + +#define dgPlayerAnim_link_swimer_back_swim "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_back_swim" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_back_swim[] = dgPlayerAnim_link_swimer_back_swim; + +#define dgPlayerAnim_link_swimer_land2swim_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_land2swim_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_land2swim_wait[] = dgPlayerAnim_link_swimer_land2swim_wait; + +#define dgPlayerAnim_link_swimer_swim_15step_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_15step_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim_15step_up[] = dgPlayerAnim_link_swimer_swim_15step_up; + +#define dgPlayerAnim_link_swimer_swim "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim[] = dgPlayerAnim_link_swimer_swim; + +#define dgPlayerAnim_link_swimer_swim_dead "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_dead" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim_dead[] = dgPlayerAnim_link_swimer_swim_dead; + +#define dgPlayerAnim_link_swimer_swim_deep_end "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_deep_end" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim_deep_end[] = dgPlayerAnim_link_swimer_swim_deep_end; + +#define dgPlayerAnim_link_swimer_swim_deep_start "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_deep_start" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim_deep_start[] = dgPlayerAnim_link_swimer_swim_deep_start; + +#define dgPlayerAnim_link_swimer_swim_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_down" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim_down[] = dgPlayerAnim_link_swimer_swim_down; + +#define dgPlayerAnim_link_swimer_swim_get "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_get" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim_get[] = dgPlayerAnim_link_swimer_swim_get; + +#define dgPlayerAnim_link_swimer_swim_hit "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_hit" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim_hit[] = dgPlayerAnim_link_swimer_swim_hit; + +#define dgPlayerAnim_link_swimer_swim_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_swim_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_swim_wait[] = dgPlayerAnim_link_swimer_swim_wait; + +#define dgPlayerAnim_link_swimer_wait2swim_wait "__OTR__objects/gameplay_keep/gPlayerAnim_link_swimer_wait2swim_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_link_swimer_wait2swim_wait[] = dgPlayerAnim_link_swimer_wait2swim_wait; + +#define dgPlayerAnim_link_uma_anim_fastrun "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_fastrun" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_fastrun[] = dgPlayerAnim_link_uma_anim_fastrun; + +#define dgPlayerAnim_link_uma_anim_fastrun_muti "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_fastrun_muti" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_fastrun_muti[] = dgPlayerAnim_link_uma_anim_fastrun_muti; + +#define dgPlayerAnim_link_uma_anim_jump100 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_jump100" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_jump100[] = dgPlayerAnim_link_uma_anim_jump100; + +#define dgPlayerAnim_link_uma_anim_jump200 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_jump200" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_jump200[] = dgPlayerAnim_link_uma_anim_jump200; + +#define dgPlayerAnim_link_uma_anim_slowrun "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_slowrun" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_slowrun[] = dgPlayerAnim_link_uma_anim_slowrun; + +#define dgPlayerAnim_link_uma_anim_slowrun_muti "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_slowrun_muti" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_slowrun_muti[] = dgPlayerAnim_link_uma_anim_slowrun_muti; + +#define dgPlayerAnim_link_uma_anim_stand "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_stand" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_stand[] = dgPlayerAnim_link_uma_anim_stand; + +#define dgPlayerAnim_link_uma_anim_stop "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_stop" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_stop[] = dgPlayerAnim_link_uma_anim_stop; + +#define dgPlayerAnim_link_uma_anim_walk2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_walk2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_walk2[] = dgPlayerAnim_link_uma_anim_walk2; + +#define dgPlayerAnim_link_uma_anim_walk "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_walk" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_walk[] = dgPlayerAnim_link_uma_anim_walk; + +#define dgPlayerAnim_link_uma_anim_walk_muti "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_anim_walk_muti" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_anim_walk_muti[] = dgPlayerAnim_link_uma_anim_walk_muti; + +#define dgPlayerAnim_link_uma_left_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_left_down" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_left_down[] = dgPlayerAnim_link_uma_left_down; + +#define dgPlayerAnim_link_uma_left_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_left_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_left_up[] = dgPlayerAnim_link_uma_left_up; + +#define dgPlayerAnim_link_uma_right_down "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_right_down" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_right_down[] = dgPlayerAnim_link_uma_right_down; + +#define dgPlayerAnim_link_uma_right_up "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_right_up" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_right_up[] = dgPlayerAnim_link_uma_right_up; + +#define dgPlayerAnim_link_uma_stop_muti "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_stop_muti" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_stop_muti[] = dgPlayerAnim_link_uma_stop_muti; + +#define dgPlayerAnim_link_uma_wait_1 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_wait_1" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_wait_1[] = dgPlayerAnim_link_uma_wait_1; + +#define dgPlayerAnim_link_uma_wait_2 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_wait_2" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_wait_2[] = dgPlayerAnim_link_uma_wait_2; + +#define dgPlayerAnim_link_uma_wait_3 "__OTR__objects/gameplay_keep/gPlayerAnim_link_uma_wait_3" +static const ALIGN_ASSET(2) char gPlayerAnim_link_uma_wait_3[] = dgPlayerAnim_link_uma_wait_3; + +#define dgPlayerAnim_link_waitF_heat1_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_heat1_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_waitF_heat1_20f[] = dgPlayerAnim_link_waitF_heat1_20f; + +#define dgPlayerAnim_link_waitF_heat2_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_heat2_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_waitF_heat2_20f[] = dgPlayerAnim_link_waitF_heat2_20f; + +#define dgPlayerAnim_link_waitF_itemA_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_itemA_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_waitF_itemA_20f[] = dgPlayerAnim_link_waitF_itemA_20f; + +#define dgPlayerAnim_link_waitF_itemB_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_itemB_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_waitF_itemB_20f[] = dgPlayerAnim_link_waitF_itemB_20f; + +#define dgPlayerAnim_link_waitF_typeD_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_waitF_typeD_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_waitF_typeD_20f[] = dgPlayerAnim_link_waitF_typeD_20f; + +#define dgPlayerAnim_link_wait_heat1_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_heat1_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_wait_heat1_20f[] = dgPlayerAnim_link_wait_heat1_20f; + +#define dgPlayerAnim_link_wait_heat2_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_heat2_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_wait_heat2_20f[] = dgPlayerAnim_link_wait_heat2_20f; + +#define dgPlayerAnim_link_wait_itemA_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemA_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_wait_itemA_20f[] = dgPlayerAnim_link_wait_itemA_20f; + +#define dgPlayerAnim_link_wait_itemB_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemB_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_wait_itemB_20f[] = dgPlayerAnim_link_wait_itemB_20f; + +#define dgPlayerAnim_link_wait_itemC_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemC_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_wait_itemC_20f[] = dgPlayerAnim_link_wait_itemC_20f; + +#define dgPlayerAnim_link_wait_itemD1_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemD1_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_wait_itemD1_20f[] = dgPlayerAnim_link_wait_itemD1_20f; + +#define dgPlayerAnim_link_wait_itemD2_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_itemD2_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_wait_itemD2_20f[] = dgPlayerAnim_link_wait_itemD2_20f; + +#define dgPlayerAnim_link_wait_typeD_20f "__OTR__objects/gameplay_keep/gPlayerAnim_link_wait_typeD_20f" +static const ALIGN_ASSET(2) char gPlayerAnim_link_wait_typeD_20f[] = dgPlayerAnim_link_wait_typeD_20f; + +#define dgPlayerAnim_lkt_nwait "__OTR__objects/gameplay_keep/gPlayerAnim_lkt_nwait" +static const ALIGN_ASSET(2) char gPlayerAnim_lkt_nwait[] = dgPlayerAnim_lkt_nwait; + +#define dgPlayerAnim_nw_modoru "__OTR__objects/gameplay_keep/gPlayerAnim_nw_modoru" +static const ALIGN_ASSET(2) char gPlayerAnim_nw_modoru[] = dgPlayerAnim_nw_modoru; + +#define dgPlayerAnim_o_get_ato "__OTR__objects/gameplay_keep/gPlayerAnim_o_get_ato" +static const ALIGN_ASSET(2) char gPlayerAnim_o_get_ato[] = dgPlayerAnim_o_get_ato; + +#define dgPlayerAnim_o_get_mae "__OTR__objects/gameplay_keep/gPlayerAnim_o_get_mae" +static const ALIGN_ASSET(2) char gPlayerAnim_o_get_mae[] = dgPlayerAnim_o_get_mae; + +#define dgPlayerAnim_om_get "__OTR__objects/gameplay_keep/gPlayerAnim_om_get" +static const ALIGN_ASSET(2) char gPlayerAnim_om_get[] = dgPlayerAnim_om_get; + +#define dgPlayerAnim_om_get_mae "__OTR__objects/gameplay_keep/gPlayerAnim_om_get_mae" +static const ALIGN_ASSET(2) char gPlayerAnim_om_get_mae[] = dgPlayerAnim_om_get_mae; + +#define dgPlayerAnim_sude_nwait "__OTR__objects/gameplay_keep/gPlayerAnim_sude_nwait" +static const ALIGN_ASSET(2) char gPlayerAnim_sude_nwait[] = dgPlayerAnim_sude_nwait; + +#define dgPlayerAnim_L_1kyoro "__OTR__objects/gameplay_keep/gPlayerAnim_L_1kyoro" +static const ALIGN_ASSET(2) char gPlayerAnim_L_1kyoro[] = dgPlayerAnim_L_1kyoro; + +#define dgPlayerAnim_L_2kyoro "__OTR__objects/gameplay_keep/gPlayerAnim_L_2kyoro" +static const ALIGN_ASSET(2) char gPlayerAnim_L_2kyoro[] = dgPlayerAnim_L_2kyoro; + +#define dgPlayerAnim_L_bouzen "__OTR__objects/gameplay_keep/gPlayerAnim_L_bouzen" +static const ALIGN_ASSET(2) char gPlayerAnim_L_bouzen[] = dgPlayerAnim_L_bouzen; + +#define dgPlayerAnim_L_hajikareru "__OTR__objects/gameplay_keep/gPlayerAnim_L_hajikareru" +static const ALIGN_ASSET(2) char gPlayerAnim_L_hajikareru[] = dgPlayerAnim_L_hajikareru; + +#define dgPlayerAnim_L_kamaeru "__OTR__objects/gameplay_keep/gPlayerAnim_L_kamaeru" +static const ALIGN_ASSET(2) char gPlayerAnim_L_kamaeru[] = dgPlayerAnim_L_kamaeru; + +#define dgPlayerAnim_L_ken_miru "__OTR__objects/gameplay_keep/gPlayerAnim_L_ken_miru" +static const ALIGN_ASSET(2) char gPlayerAnim_L_ken_miru[] = dgPlayerAnim_L_ken_miru; + +#define dgPlayerAnim_L_kennasi_w "__OTR__objects/gameplay_keep/gPlayerAnim_L_kennasi_w" +static const ALIGN_ASSET(2) char gPlayerAnim_L_kennasi_w[] = dgPlayerAnim_L_kennasi_w; + +#define dgPlayerAnim_L_kw "__OTR__objects/gameplay_keep/gPlayerAnim_L_kw" +static const ALIGN_ASSET(2) char gPlayerAnim_L_kw[] = dgPlayerAnim_L_kw; + +#define dgPlayerAnim_L_mukinaoru "__OTR__objects/gameplay_keep/gPlayerAnim_L_mukinaoru" +static const ALIGN_ASSET(2) char gPlayerAnim_L_mukinaoru[] = dgPlayerAnim_L_mukinaoru; + +#define dgPlayerAnim_L_okarina_get "__OTR__objects/gameplay_keep/gPlayerAnim_L_okarina_get" +static const ALIGN_ASSET(2) char gPlayerAnim_L_okarina_get[] = dgPlayerAnim_L_okarina_get; + +#define dgPlayerAnim_L_sagaru "__OTR__objects/gameplay_keep/gPlayerAnim_L_sagaru" +static const ALIGN_ASSET(2) char gPlayerAnim_L_sagaru[] = dgPlayerAnim_L_sagaru; + +#define dgPlayerAnim_Link_ha "__OTR__objects/gameplay_keep/gPlayerAnim_Link_ha" +static const ALIGN_ASSET(2) char gPlayerAnim_Link_ha[] = dgPlayerAnim_Link_ha; + +#define dgPlayerAnim_Link_m_wait "__OTR__objects/gameplay_keep/gPlayerAnim_Link_m_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_Link_m_wait[] = dgPlayerAnim_Link_m_wait; + +#define dgPlayerAnim_Link_miageru "__OTR__objects/gameplay_keep/gPlayerAnim_Link_miageru" +static const ALIGN_ASSET(2) char gPlayerAnim_Link_miageru[] = dgPlayerAnim_Link_miageru; + +#define dgPlayerAnim_Link_muku "__OTR__objects/gameplay_keep/gPlayerAnim_Link_muku" +static const ALIGN_ASSET(2) char gPlayerAnim_Link_muku[] = dgPlayerAnim_Link_muku; + +#define dgPlayerAnim_Link_otituku_w "__OTR__objects/gameplay_keep/gPlayerAnim_Link_otituku_w" +static const ALIGN_ASSET(2) char gPlayerAnim_Link_otituku_w[] = dgPlayerAnim_Link_otituku_w; + +#define dgPlayerAnim_Link_ue_wait "__OTR__objects/gameplay_keep/gPlayerAnim_Link_ue_wait" +static const ALIGN_ASSET(2) char gPlayerAnim_Link_ue_wait[] = dgPlayerAnim_Link_ue_wait; + +#define dgDebugPyramidDL "__OTR__objects/gameplay_keep/gDebugPyramidDL" +static const ALIGN_ASSET(2) char gDebugPyramidDL[] = dgDebugPyramidDL; + +#define dgDebugCircleTex "__OTR__objects/gameplay_keep/gDebugCircleTex" +static const ALIGN_ASSET(2) char gDebugCircleTex[] = dgDebugCircleTex; + +#define dgDebugBallTex "__OTR__objects/gameplay_keep/gDebugBallTex" +static const ALIGN_ASSET(2) char gDebugBallTex[] = dgDebugBallTex; + +#define dgDebugCursorTex "__OTR__objects/gameplay_keep/gDebugCursorTex" +static const ALIGN_ASSET(2) char gDebugCursorTex[] = dgDebugCursorTex; + +#define dgDebugCrossTex "__OTR__objects/gameplay_keep/gDebugCrossTex" +static const ALIGN_ASSET(2) char gDebugCrossTex[] = dgDebugCrossTex; + +#define dgDebugArrowDL "__OTR__objects/gameplay_keep/gDebugArrowDL" +static const ALIGN_ASSET(2) char gDebugArrowDL[] = dgDebugArrowDL; + +#define dgDebugCameraDL "__OTR__objects/gameplay_keep/gDebugCameraDL" +static const ALIGN_ASSET(2) char gDebugCameraDL[] = dgDebugCameraDL; + +#define dgDebugCheckeredFloorDL "__OTR__objects/gameplay_keep/gDebugCheckeredFloorDL" +static const ALIGN_ASSET(2) char gDebugCheckeredFloorDL[] = dgDebugCheckeredFloorDL; + +#define dgDebugCheckeredFloorTex "__OTR__objects/gameplay_keep/gDebugCheckeredFloorTex" +static const ALIGN_ASSET(2) char gDebugCheckeredFloorTex[] = dgDebugCheckeredFloorTex; + +#define dgDebugSpriteDL "__OTR__objects/gameplay_keep/gDebugSpriteDL" +static const ALIGN_ASSET(2) char gDebugSpriteDL[] = dgDebugSpriteDL; + +#define dgArrow1Anim "__OTR__objects/gameplay_keep/gArrow1Anim" +static const ALIGN_ASSET(2) char gArrow1Anim[] = dgArrow1Anim; + +#define dgArrow2Anim "__OTR__objects/gameplay_keep/gArrow2Anim" +static const ALIGN_ASSET(2) char gArrow2Anim[] = dgArrow2Anim; + +#define dgArrowShaftTex "__OTR__objects/gameplay_keep/gArrowShaftTex" +static const ALIGN_ASSET(2) char gArrowShaftTex[] = dgArrowShaftTex; + +#define dgArrowFletchingTex "__OTR__objects/gameplay_keep/gArrowFletchingTex" +static const ALIGN_ASSET(2) char gArrowFletchingTex[] = dgArrowFletchingTex; + +#define dgArrowNearDL "__OTR__objects/gameplay_keep/gArrowNearDL" +static const ALIGN_ASSET(2) char gArrowNearDL[] = dgArrowNearDL; + +#define dgArrowFarDL "__OTR__objects/gameplay_keep/gArrowFarDL" +static const ALIGN_ASSET(2) char gArrowFarDL[] = dgArrowFarDL; + +#define dgArrowSkel "__OTR__objects/gameplay_keep/gArrowSkel" +static const ALIGN_ASSET(2) char gArrowSkel[] = dgArrowSkel; + +#define dgUnknownEffBlureTex "__OTR__objects/gameplay_keep/gUnknownEffBlureTex" +static const ALIGN_ASSET(2) char gUnknownEffBlureTex[] = dgUnknownEffBlureTex; + +#define dgBombBodyTex "__OTR__objects/gameplay_keep/gBombBodyTex" +static const ALIGN_ASSET(2) char gBombBodyTex[] = dgBombBodyTex; + +#define dgBombBodyDL "__OTR__objects/gameplay_keep/gBombBodyDL" +static const ALIGN_ASSET(2) char gBombBodyDL[] = dgBombBodyDL; + +#define dgBombCapTex "__OTR__objects/gameplay_keep/gBombCapTex" +static const ALIGN_ASSET(2) char gBombCapTex[] = dgBombCapTex; + +#define dgBombCapDL "__OTR__objects/gameplay_keep/gBombCapDL" +static const ALIGN_ASSET(2) char gBombCapDL[] = dgBombCapDL; + +#define dgBombchuBodyTex "__OTR__objects/gameplay_keep/gBombchuBodyTex" +static const ALIGN_ASSET(2) char gBombchuBodyTex[] = dgBombchuBodyTex; + +#define dgBombchuDL "__OTR__objects/gameplay_keep/gBombchuDL" +static const ALIGN_ASSET(2) char gBombchuDL[] = dgBombchuDL; + +#define dgEffBombExplosion1Tex "__OTR__objects/gameplay_keep/gEffBombExplosion1Tex" +static const ALIGN_ASSET(2) char gEffBombExplosion1Tex[] = dgEffBombExplosion1Tex; + +#define dgEffBombExplosion2Tex "__OTR__objects/gameplay_keep/gEffBombExplosion2Tex" +static const ALIGN_ASSET(2) char gEffBombExplosion2Tex[] = dgEffBombExplosion2Tex; + +#define dgEffBombExplosion3Tex "__OTR__objects/gameplay_keep/gEffBombExplosion3Tex" +static const ALIGN_ASSET(2) char gEffBombExplosion3Tex[] = dgEffBombExplosion3Tex; + +#define dgEffBombExplosion4Tex "__OTR__objects/gameplay_keep/gEffBombExplosion4Tex" +static const ALIGN_ASSET(2) char gEffBombExplosion4Tex[] = dgEffBombExplosion4Tex; + +#define dgEffBombExplosion5Tex "__OTR__objects/gameplay_keep/gEffBombExplosion5Tex" +static const ALIGN_ASSET(2) char gEffBombExplosion5Tex[] = dgEffBombExplosion5Tex; + +#define dgEffBombExplosion6Tex "__OTR__objects/gameplay_keep/gEffBombExplosion6Tex" +static const ALIGN_ASSET(2) char gEffBombExplosion6Tex[] = dgEffBombExplosion6Tex; + +#define dgEffBombExplosion7Tex "__OTR__objects/gameplay_keep/gEffBombExplosion7Tex" +static const ALIGN_ASSET(2) char gEffBombExplosion7Tex[] = dgEffBombExplosion7Tex; + +#define dgEffBombExplosion8Tex "__OTR__objects/gameplay_keep/gEffBombExplosion8Tex" +static const ALIGN_ASSET(2) char gEffBombExplosion8Tex[] = dgEffBombExplosion8Tex; + +#define dgEffBombExplosion1DL "__OTR__objects/gameplay_keep/gEffBombExplosion1DL" +static const ALIGN_ASSET(2) char gEffBombExplosion1DL[] = dgEffBombExplosion1DL; + +#define dgEffBombExplosion2DL "__OTR__objects/gameplay_keep/gEffBombExplosion2DL" +static const ALIGN_ASSET(2) char gEffBombExplosion2DL[] = dgEffBombExplosion2DL; + +#define dgEffBombExplosion3DL "__OTR__objects/gameplay_keep/gEffBombExplosion3DL" +static const ALIGN_ASSET(2) char gEffBombExplosion3DL[] = dgEffBombExplosion3DL; + +#define dgEffFragments1DL "__OTR__objects/gameplay_keep/gEffFragments1DL" +static const ALIGN_ASSET(2) char gEffFragments1DL[] = dgEffFragments1DL; + +#define dgWitheredLeafTex "__OTR__objects/gameplay_keep/gWitheredLeafTex" +static const ALIGN_ASSET(2) char gWitheredLeafTex[] = dgWitheredLeafTex; + +#define dgUnknownBlankDL "__OTR__objects/gameplay_keep/gUnknownBlankDL" +static const ALIGN_ASSET(2) char gUnknownBlankDL[] = dgUnknownBlankDL; + +#define dgBoomerangDL "__OTR__objects/gameplay_keep/gBoomerangDL" +static const ALIGN_ASSET(2) char gBoomerangDL[] = dgBoomerangDL; + +#define dgBoomerangRefDL "__OTR__objects/gameplay_keep/gBoomerangRefDL" +static const ALIGN_ASSET(2) char gBoomerangRefDL[] = dgBoomerangRefDL; + +#define dgCompassArrowDL "__OTR__objects/gameplay_keep/gCompassArrowDL" +static const ALIGN_ASSET(2) char gCompassArrowDL[] = dgCompassArrowDL; + +#define dgZTargetArrowDL "__OTR__objects/gameplay_keep/gZTargetArrowDL" +static const ALIGN_ASSET(2) char gZTargetArrowDL[] = dgZTargetArrowDL; + +#define dgHilite3Tex "__OTR__objects/gameplay_keep/gHilite3Tex" +static const ALIGN_ASSET(2) char gHilite3Tex[] = dgHilite3Tex; + +#define dgEffFragments2DL "__OTR__objects/gameplay_keep/gEffFragments2DL" +static const ALIGN_ASSET(2) char gEffFragments2DL[] = dgEffFragments2DL; + +#define dgSelectionCursorTex "__OTR__objects/gameplay_keep/gSelectionCursorTex" +static const ALIGN_ASSET(2) char gSelectionCursorTex[] = dgSelectionCursorTex; + +#define dgControlStickTex "__OTR__objects/gameplay_keep/gControlStickTex" +static const ALIGN_ASSET(2) char gControlStickTex[] = dgControlStickTex; + +#define dgArrowCursorTex "__OTR__objects/gameplay_keep/gArrowCursorTex" +static const ALIGN_ASSET(2) char gArrowCursorTex[] = dgArrowCursorTex; + +#define dgUnusedRockFragmentDL "__OTR__objects/gameplay_keep/gUnusedRockFragmentDL" +static const ALIGN_ASSET(2) char gUnusedRockFragmentDL[] = dgUnusedRockFragmentDL; + +#define dgBoulderFragmentsDL "__OTR__objects/gameplay_keep/gBoulderFragmentsDL" +static const ALIGN_ASSET(2) char gBoulderFragmentsDL[] = dgBoulderFragmentsDL; + +#define dgRockFragment1Tex "__OTR__objects/gameplay_keep/gRockFragment1Tex" +static const ALIGN_ASSET(2) char gRockFragment1Tex[] = dgRockFragment1Tex; + +#define dgRockFragment2Tex "__OTR__objects/gameplay_keep/gRockFragment2Tex" +static const ALIGN_ASSET(2) char gRockFragment2Tex[] = dgRockFragment2Tex; + +#define dgDoorChildOpeningLeftAnim "__OTR__objects/gameplay_keep/gDoorChildOpeningLeftAnim" +static const ALIGN_ASSET(2) char gDoorChildOpeningLeftAnim[] = dgDoorChildOpeningLeftAnim; + +#define dgDoorChildOpeningRightAnim "__OTR__objects/gameplay_keep/gDoorChildOpeningRightAnim" +static const ALIGN_ASSET(2) char gDoorChildOpeningRightAnim[] = dgDoorChildOpeningRightAnim; + +#define dgDoorAdultOpeningLeftAnim "__OTR__objects/gameplay_keep/gDoorAdultOpeningLeftAnim" +static const ALIGN_ASSET(2) char gDoorAdultOpeningLeftAnim[] = dgDoorAdultOpeningLeftAnim; + +#define dgDoorFrameDL "__OTR__objects/gameplay_keep/gDoorFrameDL" +static const ALIGN_ASSET(2) char gDoorFrameDL[] = dgDoorFrameDL; + +#define dgDoorLeftDL "__OTR__objects/gameplay_keep/gDoorLeftDL" +static const ALIGN_ASSET(2) char gDoorLeftDL[] = dgDoorLeftDL; + +#define dgDoorRightDL "__OTR__objects/gameplay_keep/gDoorRightDL" +static const ALIGN_ASSET(2) char gDoorRightDL[] = dgDoorRightDL; + +#define dgWoodenDoorTex "__OTR__objects/gameplay_keep/gWoodenDoorTex" +static const ALIGN_ASSET(2) char gWoodenDoorTex[] = dgWoodenDoorTex; + +#define dgDoorSkel "__OTR__objects/gameplay_keep/gDoorSkel" +static const ALIGN_ASSET(2) char gDoorSkel[] = dgDoorSkel; + +#define dgDoorAdultOpeningRightAnim "__OTR__objects/gameplay_keep/gDoorAdultOpeningRightAnim" +static const ALIGN_ASSET(2) char gDoorAdultOpeningRightAnim[] = dgDoorAdultOpeningRightAnim; + +#define dgEffDustDL "__OTR__objects/gameplay_keep/gEffDustDL" +static const ALIGN_ASSET(2) char gEffDustDL[] = dgEffDustDL; + +#define dgEffFlash1DL "__OTR__objects/gameplay_keep/gEffFlash1DL" +static const ALIGN_ASSET(2) char gEffFlash1DL[] = dgEffFlash1DL; + +#define dgEffFlash2DL "__OTR__objects/gameplay_keep/gEffFlash2DL" +static const ALIGN_ASSET(2) char gEffFlash2DL[] = dgEffFlash2DL; + +#define dgFlashTex "__OTR__objects/gameplay_keep/gFlashTex" +static const ALIGN_ASSET(2) char gFlashTex[] = dgFlashTex; + +#define dgTorchFlameTex "__OTR__objects/gameplay_keep/gTorchFlameTex" +static const ALIGN_ASSET(2) char gTorchFlameTex[] = dgTorchFlameTex; + +#define dgEffUnknown1Tex "__OTR__objects/gameplay_keep/gEffUnknown1Tex" +static const ALIGN_ASSET(2) char gEffUnknown1Tex[] = dgEffUnknown1Tex; + +#define dgSpinAttack1DL "__OTR__objects/gameplay_keep/gSpinAttack1DL" +static const ALIGN_ASSET(2) char gSpinAttack1DL[] = dgSpinAttack1DL; + +#define dgSpinAttack2DL "__OTR__objects/gameplay_keep/gSpinAttack2DL" +static const ALIGN_ASSET(2) char gSpinAttack2DL[] = dgSpinAttack2DL; + +#define dgSpinAttack3DL "__OTR__objects/gameplay_keep/gSpinAttack3DL" +static const ALIGN_ASSET(2) char gSpinAttack3DL[] = dgSpinAttack3DL; + +#define dgSpinAttack4DL "__OTR__objects/gameplay_keep/gSpinAttack4DL" +static const ALIGN_ASSET(2) char gSpinAttack4DL[] = dgSpinAttack4DL; + +#define dgFlameWall1Tex "__OTR__objects/gameplay_keep/gFlameWall1Tex" +static const ALIGN_ASSET(2) char gFlameWall1Tex[] = dgFlameWall1Tex; + +#define dgFlameWall2Tex "__OTR__objects/gameplay_keep/gFlameWall2Tex" +static const ALIGN_ASSET(2) char gFlameWall2Tex[] = dgFlameWall2Tex; + +#define dgSpinAttackChargingDL "__OTR__objects/gameplay_keep/gSpinAttackChargingDL" +static const ALIGN_ASSET(2) char gSpinAttackChargingDL[] = dgSpinAttackChargingDL; + +#define dgEffUnknown2Tex "__OTR__objects/gameplay_keep/gEffUnknown2Tex" +static const ALIGN_ASSET(2) char gEffUnknown2Tex[] = dgEffUnknown2Tex; + +#define dgEffUnknown3Tex "__OTR__objects/gameplay_keep/gEffUnknown3Tex" +static const ALIGN_ASSET(2) char gEffUnknown3Tex[] = dgEffUnknown3Tex; + +#define dgUnusedBeamBladeDL "__OTR__objects/gameplay_keep/gUnusedBeamBladeDL" +static const ALIGN_ASSET(2) char gUnusedBeamBladeDL[] = dgUnusedBeamBladeDL; + +#define dgFairyAnim "__OTR__objects/gameplay_keep/gFairyAnim" +static const ALIGN_ASSET(2) char gFairyAnim[] = dgFairyAnim; + +#define dgFairyWingTex "__OTR__objects/gameplay_keep/gFairyWingTex" +static const ALIGN_ASSET(2) char gFairyWingTex[] = dgFairyWingTex; + +#define dgFairyWing1DL "__OTR__objects/gameplay_keep/gFairyWing1DL" +static const ALIGN_ASSET(2) char gFairyWing1DL[] = dgFairyWing1DL; + +#define dgFairyWing2DL "__OTR__objects/gameplay_keep/gFairyWing2DL" +static const ALIGN_ASSET(2) char gFairyWing2DL[] = dgFairyWing2DL; + +#define dgFairyWing3DL "__OTR__objects/gameplay_keep/gFairyWing3DL" +static const ALIGN_ASSET(2) char gFairyWing3DL[] = dgFairyWing3DL; + +#define dgFairyWing4DL "__OTR__objects/gameplay_keep/gFairyWing4DL" +static const ALIGN_ASSET(2) char gFairyWing4DL[] = dgFairyWing4DL; + +#define dgGlowCircleTextureLoadDL "__OTR__objects/gameplay_keep/gGlowCircleTextureLoadDL" +static const ALIGN_ASSET(2) char gGlowCircleTextureLoadDL[] = dgGlowCircleTextureLoadDL; + +#define dgGlowCircleDL "__OTR__objects/gameplay_keep/gGlowCircleDL" +static const ALIGN_ASSET(2) char gGlowCircleDL[] = dgGlowCircleDL; + +#define dgGlowCircleSmallDL "__OTR__objects/gameplay_keep/gGlowCircleSmallDL" +static const ALIGN_ASSET(2) char gGlowCircleSmallDL[] = dgGlowCircleSmallDL; + +#define dgUnusedFairyWingTex "__OTR__objects/gameplay_keep/gUnusedFairyWingTex" +static const ALIGN_ASSET(2) char gUnusedFairyWingTex[] = dgUnusedFairyWingTex; + +#define dgFairySkel "__OTR__objects/gameplay_keep/gFairySkel" +static const ALIGN_ASSET(2) char gFairySkel[] = dgFairySkel; + +#define dgUnknownCircle3Tex "__OTR__objects/gameplay_keep/gUnknownCircle3Tex" +static const ALIGN_ASSET(2) char gUnknownCircle3Tex[] = dgUnknownCircle3Tex; + +#define dgUnknownCircle4Tex "__OTR__objects/gameplay_keep/gUnknownCircle4Tex" +static const ALIGN_ASSET(2) char gUnknownCircle4Tex[] = dgUnknownCircle4Tex; + +#define dgHilite4Tex "__OTR__objects/gameplay_keep/gHilite4Tex" +static const ALIGN_ASSET(2) char gHilite4Tex[] = dgHilite4Tex; + +#define dgEffUnknown4Tex "__OTR__objects/gameplay_keep/gEffUnknown4Tex" +static const ALIGN_ASSET(2) char gEffUnknown4Tex[] = dgEffUnknown4Tex; + +#define dgEffUnknown5Tex "__OTR__objects/gameplay_keep/gEffUnknown5Tex" +static const ALIGN_ASSET(2) char gEffUnknown5Tex[] = dgEffUnknown5Tex; + +#define dgEffFireCircleDL "__OTR__objects/gameplay_keep/gEffFireCircleDL" +static const ALIGN_ASSET(2) char gEffFireCircleDL[] = dgEffFireCircleDL; + +#define dgFishOutOfWaterAnim "__OTR__objects/gameplay_keep/gFishOutOfWaterAnim" +static const ALIGN_ASSET(2) char gFishOutOfWaterAnim[] = dgFishOutOfWaterAnim; + +#define dgFishSkel "__OTR__objects/gameplay_keep/gFishSkel" +static const ALIGN_ASSET(2) char gFishSkel[] = dgFishSkel; + +#define dgFishInWaterAnim "__OTR__objects/gameplay_keep/gFishInWaterAnim" +static const ALIGN_ASSET(2) char gFishInWaterAnim[] = dgFishInWaterAnim; + +#define dgFishTailTex "__OTR__objects/gameplay_keep/gFishTailTex" +static const ALIGN_ASSET(2) char gFishTailTex[] = dgFishTailTex; + +#define dgFishBodyTex "__OTR__objects/gameplay_keep/gFishBodyTex" +static const ALIGN_ASSET(2) char gFishBodyTex[] = dgFishBodyTex; + +#define dgEffShockwaveTex "__OTR__objects/gameplay_keep/gEffShockwaveTex" +static const ALIGN_ASSET(2) char gEffShockwaveTex[] = dgEffShockwaveTex; + +#define dgEffShockwaveDL "__OTR__objects/gameplay_keep/gEffShockwaveDL" +static const ALIGN_ASSET(2) char gEffShockwaveDL[] = dgEffShockwaveDL; + +#define dgEffBubbleDL "__OTR__objects/gameplay_keep/gEffBubbleDL" +static const ALIGN_ASSET(2) char gEffBubbleDL[] = dgEffBubbleDL; + +#define dgGameplayKeepVtx_01A120 "__OTR__objects/gameplay_keep/gGameplayKeepVtx_01A120" +static const ALIGN_ASSET(2) char gGameplayKeepVtx_01A120[] = dgGameplayKeepVtx_01A120; + +#define dgEffFireFootprint1Tex "__OTR__objects/gameplay_keep/gEffFireFootprint1Tex" +static const ALIGN_ASSET(2) char gEffFireFootprint1Tex[] = dgEffFireFootprint1Tex; + +#define dgEffFireFootprint2Tex "__OTR__objects/gameplay_keep/gEffFireFootprint2Tex" +static const ALIGN_ASSET(2) char gEffFireFootprint2Tex[] = dgEffFireFootprint2Tex; + +#define dgEffFireFootprint3Tex "__OTR__objects/gameplay_keep/gEffFireFootprint3Tex" +static const ALIGN_ASSET(2) char gEffFireFootprint3Tex[] = dgEffFireFootprint3Tex; + +#define dgEffFireFootprint4Tex "__OTR__objects/gameplay_keep/gEffFireFootprint4Tex" +static const ALIGN_ASSET(2) char gEffFireFootprint4Tex[] = dgEffFireFootprint4Tex; + +#define dgEffFireFootprint5Tex "__OTR__objects/gameplay_keep/gEffFireFootprint5Tex" +static const ALIGN_ASSET(2) char gEffFireFootprint5Tex[] = dgEffFireFootprint5Tex; + +#define dgEffFireFootprint6Tex "__OTR__objects/gameplay_keep/gEffFireFootprint6Tex" +static const ALIGN_ASSET(2) char gEffFireFootprint6Tex[] = dgEffFireFootprint6Tex; + +#define dgEffFireFootprint7Tex "__OTR__objects/gameplay_keep/gEffFireFootprint7Tex" +static const ALIGN_ASSET(2) char gEffFireFootprint7Tex[] = dgEffFireFootprint7Tex; + +#define dgEffFireFootprint8Tex "__OTR__objects/gameplay_keep/gEffFireFootprint8Tex" +static const ALIGN_ASSET(2) char gEffFireFootprint8Tex[] = dgEffFireFootprint8Tex; + +#define dgEffFireFootprintDL "__OTR__objects/gameplay_keep/gEffFireFootprintDL" +static const ALIGN_ASSET(2) char gEffFireFootprintDL[] = dgEffFireFootprintDL; + +#define dgEffUnusedBubbles1Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles1Tex" +static const ALIGN_ASSET(2) char gEffUnusedBubbles1Tex[] = dgEffUnusedBubbles1Tex; + +#define dgEffUnusedBubbles2Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles2Tex" +static const ALIGN_ASSET(2) char gEffUnusedBubbles2Tex[] = dgEffUnusedBubbles2Tex; + +#define dgEffUnusedBubbles3Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles3Tex" +static const ALIGN_ASSET(2) char gEffUnusedBubbles3Tex[] = dgEffUnusedBubbles3Tex; + +#define dgEffUnusedBubbles4Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles4Tex" +static const ALIGN_ASSET(2) char gEffUnusedBubbles4Tex[] = dgEffUnusedBubbles4Tex; + +#define dgEffUnusedBubbles5Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles5Tex" +static const ALIGN_ASSET(2) char gEffUnusedBubbles5Tex[] = dgEffUnusedBubbles5Tex; + +#define dgEffUnusedBubbles6Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles6Tex" +static const ALIGN_ASSET(2) char gEffUnusedBubbles6Tex[] = dgEffUnusedBubbles6Tex; + +#define dgEffUnusedBubbles7Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles7Tex" +static const ALIGN_ASSET(2) char gEffUnusedBubbles7Tex[] = dgEffUnusedBubbles7Tex; + +#define dgEffUnusedBubbles8Tex "__OTR__objects/gameplay_keep/gEffUnusedBubbles8Tex" +static const ALIGN_ASSET(2) char gEffUnusedBubbles8Tex[] = dgEffUnusedBubbles8Tex; + +#define dgEffUnusedBubblesDL "__OTR__objects/gameplay_keep/gEffUnusedBubblesDL" +static const ALIGN_ASSET(2) char gEffUnusedBubblesDL[] = dgEffUnusedBubblesDL; + +#define dgLensOfTruthMaskTex "__OTR__objects/gameplay_keep/gLensOfTruthMaskTex" +static const ALIGN_ASSET(2) char gLensOfTruthMaskTex[] = dgLensOfTruthMaskTex; + +#define dgEffHitMark1Tex "__OTR__objects/gameplay_keep/gEffHitMark1Tex" +static const ALIGN_ASSET(2) char gEffHitMark1Tex[] = dgEffHitMark1Tex; + +#define dgEffHitMark2Tex "__OTR__objects/gameplay_keep/gEffHitMark2Tex" +static const ALIGN_ASSET(2) char gEffHitMark2Tex[] = dgEffHitMark2Tex; + +#define dgEffHitMark3Tex "__OTR__objects/gameplay_keep/gEffHitMark3Tex" +static const ALIGN_ASSET(2) char gEffHitMark3Tex[] = dgEffHitMark3Tex; + +#define dgEffHitMark4Tex "__OTR__objects/gameplay_keep/gEffHitMark4Tex" +static const ALIGN_ASSET(2) char gEffHitMark4Tex[] = dgEffHitMark4Tex; + +#define dgEffHitMark5Tex "__OTR__objects/gameplay_keep/gEffHitMark5Tex" +static const ALIGN_ASSET(2) char gEffHitMark5Tex[] = dgEffHitMark5Tex; + +#define dgEffHitMark6Tex "__OTR__objects/gameplay_keep/gEffHitMark6Tex" +static const ALIGN_ASSET(2) char gEffHitMark6Tex[] = dgEffHitMark6Tex; + +#define dgEffHitMark7Tex "__OTR__objects/gameplay_keep/gEffHitMark7Tex" +static const ALIGN_ASSET(2) char gEffHitMark7Tex[] = dgEffHitMark7Tex; + +#define dgEffHitMark8Tex "__OTR__objects/gameplay_keep/gEffHitMark8Tex" +static const ALIGN_ASSET(2) char gEffHitMark8Tex[] = dgEffHitMark8Tex; + +#define dgEffHitMark9Tex "__OTR__objects/gameplay_keep/gEffHitMark9Tex" +static const ALIGN_ASSET(2) char gEffHitMark9Tex[] = dgEffHitMark9Tex; + +#define dgEffHitMark10Tex "__OTR__objects/gameplay_keep/gEffHitMark10Tex" +static const ALIGN_ASSET(2) char gEffHitMark10Tex[] = dgEffHitMark10Tex; + +#define dgEffHitMark11Tex "__OTR__objects/gameplay_keep/gEffHitMark11Tex" +static const ALIGN_ASSET(2) char gEffHitMark11Tex[] = dgEffHitMark11Tex; + +#define dgEffHitMark12Tex "__OTR__objects/gameplay_keep/gEffHitMark12Tex" +static const ALIGN_ASSET(2) char gEffHitMark12Tex[] = dgEffHitMark12Tex; + +#define dgEffHitMark13Tex "__OTR__objects/gameplay_keep/gEffHitMark13Tex" +static const ALIGN_ASSET(2) char gEffHitMark13Tex[] = dgEffHitMark13Tex; + +#define dgEffHitMark14Tex "__OTR__objects/gameplay_keep/gEffHitMark14Tex" +static const ALIGN_ASSET(2) char gEffHitMark14Tex[] = dgEffHitMark14Tex; + +#define dgEffHitMark15Tex "__OTR__objects/gameplay_keep/gEffHitMark15Tex" +static const ALIGN_ASSET(2) char gEffHitMark15Tex[] = dgEffHitMark15Tex; + +#define dgEffHitMark16Tex "__OTR__objects/gameplay_keep/gEffHitMark16Tex" +static const ALIGN_ASSET(2) char gEffHitMark16Tex[] = dgEffHitMark16Tex; + +#define dgEffHitMark17Tex "__OTR__objects/gameplay_keep/gEffHitMark17Tex" +static const ALIGN_ASSET(2) char gEffHitMark17Tex[] = dgEffHitMark17Tex; + +#define dgEffHitMark18Tex "__OTR__objects/gameplay_keep/gEffHitMark18Tex" +static const ALIGN_ASSET(2) char gEffHitMark18Tex[] = dgEffHitMark18Tex; + +#define dgEffHitMark19Tex "__OTR__objects/gameplay_keep/gEffHitMark19Tex" +static const ALIGN_ASSET(2) char gEffHitMark19Tex[] = dgEffHitMark19Tex; + +#define dgEffHitMark20Tex "__OTR__objects/gameplay_keep/gEffHitMark20Tex" +static const ALIGN_ASSET(2) char gEffHitMark20Tex[] = dgEffHitMark20Tex; + +#define dgEffHitMark21Tex "__OTR__objects/gameplay_keep/gEffHitMark21Tex" +static const ALIGN_ASSET(2) char gEffHitMark21Tex[] = dgEffHitMark21Tex; + +#define dgEffHitMark22Tex "__OTR__objects/gameplay_keep/gEffHitMark22Tex" +static const ALIGN_ASSET(2) char gEffHitMark22Tex[] = dgEffHitMark22Tex; + +#define dgEffHitMark23Tex "__OTR__objects/gameplay_keep/gEffHitMark23Tex" +static const ALIGN_ASSET(2) char gEffHitMark23Tex[] = dgEffHitMark23Tex; + +#define dgEffHitMark24Tex "__OTR__objects/gameplay_keep/gEffHitMark24Tex" +static const ALIGN_ASSET(2) char gEffHitMark24Tex[] = dgEffHitMark24Tex; + +#define dgEffHitMarkDL "__OTR__objects/gameplay_keep/gEffHitMarkDL" +static const ALIGN_ASSET(2) char gEffHitMarkDL[] = dgEffHitMarkDL; + +#define dgEffUnknown6Tex "__OTR__objects/gameplay_keep/gEffUnknown6Tex" +static const ALIGN_ASSET(2) char gEffUnknown6Tex[] = dgEffUnknown6Tex; + +#define dgEffFleckTex "__OTR__objects/gameplay_keep/gEffFleckTex" +static const ALIGN_ASSET(2) char gEffFleckTex[] = dgEffFleckTex; + +#define dgEffUnknown8Tex "__OTR__objects/gameplay_keep/gEffUnknown8Tex" +static const ALIGN_ASSET(2) char gEffUnknown8Tex[] = dgEffUnknown8Tex; + +#define dgEffMagmaBubble1Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble1Tex" +static const ALIGN_ASSET(2) char gEffMagmaBubble1Tex[] = dgEffMagmaBubble1Tex; + +#define dgEffMagmaBubble2Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble2Tex" +static const ALIGN_ASSET(2) char gEffMagmaBubble2Tex[] = dgEffMagmaBubble2Tex; + +#define dgEffMagmaBubble3Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble3Tex" +static const ALIGN_ASSET(2) char gEffMagmaBubble3Tex[] = dgEffMagmaBubble3Tex; + +#define dgEffMagmaBubble4Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble4Tex" +static const ALIGN_ASSET(2) char gEffMagmaBubble4Tex[] = dgEffMagmaBubble4Tex; + +#define dgEffMagmaBubble5Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble5Tex" +static const ALIGN_ASSET(2) char gEffMagmaBubble5Tex[] = dgEffMagmaBubble5Tex; + +#define dgEffMagmaBubble6Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble6Tex" +static const ALIGN_ASSET(2) char gEffMagmaBubble6Tex[] = dgEffMagmaBubble6Tex; + +#define dgEffMagmaBubble7Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble7Tex" +static const ALIGN_ASSET(2) char gEffMagmaBubble7Tex[] = dgEffMagmaBubble7Tex; + +#define dgEffMagmaBubble8Tex "__OTR__objects/gameplay_keep/gEffMagmaBubble8Tex" +static const ALIGN_ASSET(2) char gEffMagmaBubble8Tex[] = dgEffMagmaBubble8Tex; + +#define dgEffMagmaBubbleDL "__OTR__objects/gameplay_keep/gEffMagmaBubbleDL" +static const ALIGN_ASSET(2) char gEffMagmaBubbleDL[] = dgEffMagmaBubbleDL; + +#define dgEffWaterRippleTex "__OTR__objects/gameplay_keep/gEffWaterRippleTex" +static const ALIGN_ASSET(2) char gEffWaterRippleTex[] = dgEffWaterRippleTex; + +#define dgEffWaterRippleDL "__OTR__objects/gameplay_keep/gEffWaterRippleDL" +static const ALIGN_ASSET(2) char gEffWaterRippleDL[] = dgEffWaterRippleDL; + +#define dgEffSparkDL "__OTR__objects/gameplay_keep/gEffSparkDL" +static const ALIGN_ASSET(2) char gEffSparkDL[] = dgEffSparkDL; + +#define dgEffWaterSplash1Tex "__OTR__objects/gameplay_keep/gEffWaterSplash1Tex" +static const ALIGN_ASSET(2) char gEffWaterSplash1Tex[] = dgEffWaterSplash1Tex; + +#define dgEffWaterSplash2Tex "__OTR__objects/gameplay_keep/gEffWaterSplash2Tex" +static const ALIGN_ASSET(2) char gEffWaterSplash2Tex[] = dgEffWaterSplash2Tex; + +#define dgEffWaterSplash3Tex "__OTR__objects/gameplay_keep/gEffWaterSplash3Tex" +static const ALIGN_ASSET(2) char gEffWaterSplash3Tex[] = dgEffWaterSplash3Tex; + +#define dgEffWaterSplash4Tex "__OTR__objects/gameplay_keep/gEffWaterSplash4Tex" +static const ALIGN_ASSET(2) char gEffWaterSplash4Tex[] = dgEffWaterSplash4Tex; + +#define dgEffWaterSplash5Tex "__OTR__objects/gameplay_keep/gEffWaterSplash5Tex" +static const ALIGN_ASSET(2) char gEffWaterSplash5Tex[] = dgEffWaterSplash5Tex; + +#define dgEffWaterSplash6Tex "__OTR__objects/gameplay_keep/gEffWaterSplash6Tex" +static const ALIGN_ASSET(2) char gEffWaterSplash6Tex[] = dgEffWaterSplash6Tex; + +#define dgEffWaterSplash7Tex "__OTR__objects/gameplay_keep/gEffWaterSplash7Tex" +static const ALIGN_ASSET(2) char gEffWaterSplash7Tex[] = dgEffWaterSplash7Tex; + +#define dgEffWaterSplash8Tex "__OTR__objects/gameplay_keep/gEffWaterSplash8Tex" +static const ALIGN_ASSET(2) char gEffWaterSplash8Tex[] = dgEffWaterSplash8Tex; + +#define dgEffWaterSplashDL "__OTR__objects/gameplay_keep/gEffWaterSplashDL" +static const ALIGN_ASSET(2) char gEffWaterSplashDL[] = dgEffWaterSplashDL; + +#define dgUnknownEffStone1Tex "__OTR__objects/gameplay_keep/gUnknownEffStone1Tex" +static const ALIGN_ASSET(2) char gUnknownEffStone1Tex[] = dgUnknownEffStone1Tex; + +#define dgUnknownEffStone2Tex "__OTR__objects/gameplay_keep/gUnknownEffStone2Tex" +static const ALIGN_ASSET(2) char gUnknownEffStone2Tex[] = dgUnknownEffStone2Tex; + +#define dgUnknownEffStone3Tex "__OTR__objects/gameplay_keep/gUnknownEffStone3Tex" +static const ALIGN_ASSET(2) char gUnknownEffStone3Tex[] = dgUnknownEffStone3Tex; + +#define dgUnknownEffStone4Tex "__OTR__objects/gameplay_keep/gUnknownEffStone4Tex" +static const ALIGN_ASSET(2) char gUnknownEffStone4Tex[] = dgUnknownEffStone4Tex; + +#define dgUnknownEffStone5Tex "__OTR__objects/gameplay_keep/gUnknownEffStone5Tex" +static const ALIGN_ASSET(2) char gUnknownEffStone5Tex[] = dgUnknownEffStone5Tex; + +#define dgUnknownEffStone6Tex "__OTR__objects/gameplay_keep/gUnknownEffStone6Tex" +static const ALIGN_ASSET(2) char gUnknownEffStone6Tex[] = dgUnknownEffStone6Tex; + +#define dgUnknownEffStone7Tex "__OTR__objects/gameplay_keep/gUnknownEffStone7Tex" +static const ALIGN_ASSET(2) char gUnknownEffStone7Tex[] = dgUnknownEffStone7Tex; + +#define dgUnknownEffStone8Tex "__OTR__objects/gameplay_keep/gUnknownEffStone8Tex" +static const ALIGN_ASSET(2) char gUnknownEffStone8Tex[] = dgUnknownEffStone8Tex; + +#define dgUnknownEffStoneDL "__OTR__objects/gameplay_keep/gUnknownEffStoneDL" +static const ALIGN_ASSET(2) char gUnknownEffStoneDL[] = dgUnknownEffStoneDL; + +#define dgEffLightning1Tex "__OTR__objects/gameplay_keep/gEffLightning1Tex" +static const ALIGN_ASSET(2) char gEffLightning1Tex[] = dgEffLightning1Tex; + +#define dgEffLightning2Tex "__OTR__objects/gameplay_keep/gEffLightning2Tex" +static const ALIGN_ASSET(2) char gEffLightning2Tex[] = dgEffLightning2Tex; + +#define dgEffLightning3Tex "__OTR__objects/gameplay_keep/gEffLightning3Tex" +static const ALIGN_ASSET(2) char gEffLightning3Tex[] = dgEffLightning3Tex; + +#define dgEffLightning4Tex "__OTR__objects/gameplay_keep/gEffLightning4Tex" +static const ALIGN_ASSET(2) char gEffLightning4Tex[] = dgEffLightning4Tex; + +#define dgEffLightning5Tex "__OTR__objects/gameplay_keep/gEffLightning5Tex" +static const ALIGN_ASSET(2) char gEffLightning5Tex[] = dgEffLightning5Tex; + +#define dgEffLightning6Tex "__OTR__objects/gameplay_keep/gEffLightning6Tex" +static const ALIGN_ASSET(2) char gEffLightning6Tex[] = dgEffLightning6Tex; + +#define dgEffLightning7Tex "__OTR__objects/gameplay_keep/gEffLightning7Tex" +static const ALIGN_ASSET(2) char gEffLightning7Tex[] = dgEffLightning7Tex; + +#define dgEffLightning8Tex "__OTR__objects/gameplay_keep/gEffLightning8Tex" +static const ALIGN_ASSET(2) char gEffLightning8Tex[] = dgEffLightning8Tex; + +#define dgEffLightningDL "__OTR__objects/gameplay_keep/gEffLightningDL" +static const ALIGN_ASSET(2) char gEffLightningDL[] = dgEffLightningDL; + +#define dgEffEnemyDeathFlame1Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame1Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame1Tex[] = dgEffEnemyDeathFlame1Tex; + +#define dgEffEnemyDeathFlame2Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame2Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame2Tex[] = dgEffEnemyDeathFlame2Tex; + +#define dgEffEnemyDeathFlame3Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame3Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame3Tex[] = dgEffEnemyDeathFlame3Tex; + +#define dgEffEnemyDeathFlame4Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame4Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame4Tex[] = dgEffEnemyDeathFlame4Tex; + +#define dgEffEnemyDeathFlame5Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame5Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame5Tex[] = dgEffEnemyDeathFlame5Tex; + +#define dgEffEnemyDeathFlame6Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame6Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame6Tex[] = dgEffEnemyDeathFlame6Tex; + +#define dgEffEnemyDeathFlame7Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame7Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame7Tex[] = dgEffEnemyDeathFlame7Tex; + +#define dgEffEnemyDeathFlame8Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame8Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame8Tex[] = dgEffEnemyDeathFlame8Tex; + +#define dgEffEnemyDeathFlame9Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame9Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame9Tex[] = dgEffEnemyDeathFlame9Tex; + +#define dgEffEnemyDeathFlame10Tex "__OTR__objects/gameplay_keep/gEffEnemyDeathFlame10Tex" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlame10Tex[] = dgEffEnemyDeathFlame10Tex; + +#define dgEffEnemyDeathFlameDL "__OTR__objects/gameplay_keep/gEffEnemyDeathFlameDL" +static const ALIGN_ASSET(2) char gEffEnemyDeathFlameDL[] = dgEffEnemyDeathFlameDL; + +#define dgEffUnknown9Tex "__OTR__objects/gameplay_keep/gEffUnknown9Tex" +static const ALIGN_ASSET(2) char gEffUnknown9Tex[] = dgEffUnknown9Tex; + +#define dgEffUnknown10Tex "__OTR__objects/gameplay_keep/gEffUnknown10Tex" +static const ALIGN_ASSET(2) char gEffUnknown10Tex[] = dgEffUnknown10Tex; + +#define dgEffUnknown11Tex "__OTR__objects/gameplay_keep/gEffUnknown11Tex" +static const ALIGN_ASSET(2) char gEffUnknown11Tex[] = dgEffUnknown11Tex; + +#define dgEffUnknown12Tex "__OTR__objects/gameplay_keep/gEffUnknown12Tex" +static const ALIGN_ASSET(2) char gEffUnknown12Tex[] = dgEffUnknown12Tex; + +#define dgUnknownWoodBoardTex "__OTR__objects/gameplay_keep/gUnknownWoodBoardTex" +static const ALIGN_ASSET(2) char gUnknownWoodBoardTex[] = dgUnknownWoodBoardTex; + +#define dgEffIceFragment1DL "__OTR__objects/gameplay_keep/gEffIceFragment1DL" +static const ALIGN_ASSET(2) char gEffIceFragment1DL[] = dgEffIceFragment1DL; + +#define dgEffIceFragment2DL "__OTR__objects/gameplay_keep/gEffIceFragment2DL" +static const ALIGN_ASSET(2) char gEffIceFragment2DL[] = dgEffIceFragment2DL; + +#define dgEffIceFragment3DL "__OTR__objects/gameplay_keep/gEffIceFragment3DL" +static const ALIGN_ASSET(2) char gEffIceFragment3DL[] = dgEffIceFragment3DL; + +#define dgBugCrawlAnim "__OTR__objects/gameplay_keep/gBugCrawlAnim" +static const ALIGN_ASSET(2) char gBugCrawlAnim[] = dgBugCrawlAnim; + +#define dgBugLimb1DL "__OTR__objects/gameplay_keep/gBugLimb1DL" +static const ALIGN_ASSET(2) char gBugLimb1DL[] = dgBugLimb1DL; + +#define dgBugLimb1WrapperDL "__OTR__objects/gameplay_keep/gBugLimb1WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb1WrapperDL[] = dgBugLimb1WrapperDL; + +#define dgBugLimb1WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb1WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb1WrapperWrapperDL[] = dgBugLimb1WrapperWrapperDL; + +#define dgBugLimb2DL "__OTR__objects/gameplay_keep/gBugLimb2DL" +static const ALIGN_ASSET(2) char gBugLimb2DL[] = dgBugLimb2DL; + +#define dgBugLimb2WrapperDL "__OTR__objects/gameplay_keep/gBugLimb2WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb2WrapperDL[] = dgBugLimb2WrapperDL; + +#define dgBugLimb2WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb2WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb2WrapperWrapperDL[] = dgBugLimb2WrapperWrapperDL; + +#define dgBugLimb3DL "__OTR__objects/gameplay_keep/gBugLimb3DL" +static const ALIGN_ASSET(2) char gBugLimb3DL[] = dgBugLimb3DL; + +#define dgBugLimb3WrapperDL "__OTR__objects/gameplay_keep/gBugLimb3WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb3WrapperDL[] = dgBugLimb3WrapperDL; + +#define dgBugLimb3WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb3WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb3WrapperWrapperDL[] = dgBugLimb3WrapperWrapperDL; + +#define dgBugLimb4DL "__OTR__objects/gameplay_keep/gBugLimb4DL" +static const ALIGN_ASSET(2) char gBugLimb4DL[] = dgBugLimb4DL; + +#define dgBugLimb4WrapperDL "__OTR__objects/gameplay_keep/gBugLimb4WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb4WrapperDL[] = dgBugLimb4WrapperDL; + +#define dgBugLimb4WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb4WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb4WrapperWrapperDL[] = dgBugLimb4WrapperWrapperDL; + +#define dgBugLimb5DL "__OTR__objects/gameplay_keep/gBugLimb5DL" +static const ALIGN_ASSET(2) char gBugLimb5DL[] = dgBugLimb5DL; + +#define dgBugLimb5WrapperDL "__OTR__objects/gameplay_keep/gBugLimb5WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb5WrapperDL[] = dgBugLimb5WrapperDL; + +#define dgBugLimb5WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb5WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb5WrapperWrapperDL[] = dgBugLimb5WrapperWrapperDL; + +#define dgBugLimb6DL "__OTR__objects/gameplay_keep/gBugLimb6DL" +static const ALIGN_ASSET(2) char gBugLimb6DL[] = dgBugLimb6DL; + +#define dgBugLimb6WrapperDL "__OTR__objects/gameplay_keep/gBugLimb6WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb6WrapperDL[] = dgBugLimb6WrapperDL; + +#define dgBugLimb6WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb6WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb6WrapperWrapperDL[] = dgBugLimb6WrapperWrapperDL; + +#define dgBugLimb7DL "__OTR__objects/gameplay_keep/gBugLimb7DL" +static const ALIGN_ASSET(2) char gBugLimb7DL[] = dgBugLimb7DL; + +#define dgBugLimb7WrapperDL "__OTR__objects/gameplay_keep/gBugLimb7WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb7WrapperDL[] = dgBugLimb7WrapperDL; + +#define dgBugLimb7WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb7WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb7WrapperWrapperDL[] = dgBugLimb7WrapperWrapperDL; + +#define dgBugLimb8DL "__OTR__objects/gameplay_keep/gBugLimb8DL" +static const ALIGN_ASSET(2) char gBugLimb8DL[] = dgBugLimb8DL; + +#define dgBugLimb8WrapperDL "__OTR__objects/gameplay_keep/gBugLimb8WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb8WrapperDL[] = dgBugLimb8WrapperDL; + +#define dgBugLimb8WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb8WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb8WrapperWrapperDL[] = dgBugLimb8WrapperWrapperDL; + +#define dgBugLimb9DL "__OTR__objects/gameplay_keep/gBugLimb9DL" +static const ALIGN_ASSET(2) char gBugLimb9DL[] = dgBugLimb9DL; + +#define dgBugLimb9WrapperDL "__OTR__objects/gameplay_keep/gBugLimb9WrapperDL" +static const ALIGN_ASSET(2) char gBugLimb9WrapperDL[] = dgBugLimb9WrapperDL; + +#define dgBugLimb9WrapperWrapperDL "__OTR__objects/gameplay_keep/gBugLimb9WrapperWrapperDL" +static const ALIGN_ASSET(2) char gBugLimb9WrapperWrapperDL[] = dgBugLimb9WrapperWrapperDL; + +#define dgBugSkel "__OTR__objects/gameplay_keep/gBugSkel" +static const ALIGN_ASSET(2) char gBugSkel[] = dgBugSkel; + +#define dgBugBodyTex "__OTR__objects/gameplay_keep/gBugBodyTex" +static const ALIGN_ASSET(2) char gBugBodyTex[] = dgBugBodyTex; + +#define dgBugLegTex "__OTR__objects/gameplay_keep/gBugLegTex" +static const ALIGN_ASSET(2) char gBugLegTex[] = dgBugLegTex; + +#define dgCuttableShrubStalkDL "__OTR__objects/gameplay_keep/gCuttableShrubStalkDL" +static const ALIGN_ASSET(2) char gCuttableShrubStalkDL[] = dgCuttableShrubStalkDL; + +#define dgCuttableShrubTipDL "__OTR__objects/gameplay_keep/gCuttableShrubTipDL" +static const ALIGN_ASSET(2) char gCuttableShrubTipDL[] = dgCuttableShrubTipDL; + +#define dgCuttableShrubLeafTFragmentTex "__OTR__objects/gameplay_keep/gCuttableShrubLeafTFragmentTex" +static const ALIGN_ASSET(2) char gCuttableShrubLeafTFragmentTex[] = dgCuttableShrubLeafTFragmentTex; + +#define dgCuttableShrubTex "__OTR__objects/gameplay_keep/gCuttableShrubTex" +static const ALIGN_ASSET(2) char gCuttableShrubTex[] = dgCuttableShrubTex; + +#define dgLensFlareCircleTex "__OTR__objects/gameplay_keep/gLensFlareCircleTex" +static const ALIGN_ASSET(2) char gLensFlareCircleTex[] = dgLensFlareCircleTex; + +#define dgLensFlareRingTex "__OTR__objects/gameplay_keep/gLensFlareRingTex" +static const ALIGN_ASSET(2) char gLensFlareRingTex[] = dgLensFlareRingTex; + +#define dgLensFlareCircleDL "__OTR__objects/gameplay_keep/gLensFlareCircleDL" +static const ALIGN_ASSET(2) char gLensFlareCircleDL[] = dgLensFlareCircleDL; + +#define dgLensFlareRingDL "__OTR__objects/gameplay_keep/gLensFlareRingDL" +static const ALIGN_ASSET(2) char gLensFlareRingDL[] = dgLensFlareRingDL; + +#define dgEffSparklesDL "__OTR__objects/gameplay_keep/gEffSparklesDL" +static const ALIGN_ASSET(2) char gEffSparklesDL[] = dgEffSparklesDL; + +#define dgEffSparklesTex "__OTR__objects/gameplay_keep/gEffSparklesTex" +static const ALIGN_ASSET(2) char gEffSparklesTex[] = dgEffSparklesTex; + +#define dgEffUnknown13Tex "__OTR__objects/gameplay_keep/gEffUnknown13Tex" +static const ALIGN_ASSET(2) char gEffUnknown13Tex[] = dgEffUnknown13Tex; + +#define dgEffUnknown14Tex "__OTR__objects/gameplay_keep/gEffUnknown14Tex" +static const ALIGN_ASSET(2) char gEffUnknown14Tex[] = dgEffUnknown14Tex; + +#define dgHoverBootsCircleDL "__OTR__objects/gameplay_keep/gHoverBootsCircleDL" +static const ALIGN_ASSET(2) char gHoverBootsCircleDL[] = dgHoverBootsCircleDL; + +#define dgMoonTex "__OTR__objects/gameplay_keep/gMoonTex" +static const ALIGN_ASSET(2) char gMoonTex[] = dgMoonTex; + +#define dgMoonDL "__OTR__objects/gameplay_keep/gMoonDL" +static const ALIGN_ASSET(2) char gMoonDL[] = dgMoonDL; + +#define dgUnknownCircle6Tex "__OTR__objects/gameplay_keep/gUnknownCircle6Tex" +static const ALIGN_ASSET(2) char gUnknownCircle6Tex[] = dgUnknownCircle6Tex; + +#define dgLargerCubeCol "__OTR__objects/gameplay_keep/gLargerCubeCol" +static const ALIGN_ASSET(2) char gLargerCubeCol[] = dgLargerCubeCol; + +#define dgLiftableRockDL "__OTR__objects/gameplay_keep/gLiftableRockDL" +static const ALIGN_ASSET(2) char gLiftableRockDL[] = dgLiftableRockDL; + +#define dgUnusedRockRectangularPrism1DL "__OTR__objects/gameplay_keep/gUnusedRockRectangularPrism1DL" +static const ALIGN_ASSET(2) char gUnusedRockRectangularPrism1DL[] = dgUnusedRockRectangularPrism1DL; + +#define dgWideTallBlockCol "__OTR__objects/gameplay_keep/gWideTallBlockCol" +static const ALIGN_ASSET(2) char gWideTallBlockCol[] = dgWideTallBlockCol; + +#define dgFlatBlockDL "__OTR__objects/gameplay_keep/gFlatBlockDL" +static const ALIGN_ASSET(2) char gFlatBlockDL[] = dgFlatBlockDL; + +#define dgTallBlockCol "__OTR__objects/gameplay_keep/gTallBlockCol" +static const ALIGN_ASSET(2) char gTallBlockCol[] = dgTallBlockCol; + +#define dgUnusedRockRectangularPrism3DL "__OTR__objects/gameplay_keep/gUnusedRockRectangularPrism3DL" +static const ALIGN_ASSET(2) char gUnusedRockRectangularPrism3DL[] = dgUnusedRockRectangularPrism3DL; + +#define dgSmallerFlatBlockCol "__OTR__objects/gameplay_keep/gSmallerFlatBlockCol" +static const ALIGN_ASSET(2) char gSmallerFlatBlockCol[] = dgSmallerFlatBlockCol; + +#define dgFlatRotBlockDL "__OTR__objects/gameplay_keep/gFlatRotBlockDL" +static const ALIGN_ASSET(2) char gFlatRotBlockDL[] = dgFlatRotBlockDL; + +#define dgLargerFlatBlockCol "__OTR__objects/gameplay_keep/gLargerFlatBlockCol" +static const ALIGN_ASSET(2) char gLargerFlatBlockCol[] = dgLargerFlatBlockCol; + +#define dgSmallCubeDL "__OTR__objects/gameplay_keep/gSmallCubeDL" +static const ALIGN_ASSET(2) char gSmallCubeDL[] = dgSmallCubeDL; + +#define dgSmallerCubeCol "__OTR__objects/gameplay_keep/gSmallerCubeCol" +static const ALIGN_ASSET(2) char gSmallerCubeCol[] = dgSmallerCubeCol; + +#define dgTreeStumpDL "__OTR__objects/gameplay_keep/gTreeStumpDL" +static const ALIGN_ASSET(2) char gTreeStumpDL[] = dgTreeStumpDL; + +#define dgGrassBladesDL "__OTR__objects/gameplay_keep/gGrassBladesDL" +static const ALIGN_ASSET(2) char gGrassBladesDL[] = dgGrassBladesDL; + +#define dgHeartShapeTex "__OTR__objects/gameplay_keep/gHeartShapeTex" +static const ALIGN_ASSET(2) char gHeartShapeTex[] = dgHeartShapeTex; + +#define dgHeartPieceInteriorDL "__OTR__objects/gameplay_keep/gHeartPieceInteriorDL" +static const ALIGN_ASSET(2) char gHeartPieceInteriorDL[] = dgHeartPieceInteriorDL; + +#define dgHeartPieceExteriorDL "__OTR__objects/gameplay_keep/gHeartPieceExteriorDL" +static const ALIGN_ASSET(2) char gHeartPieceExteriorDL[] = dgHeartPieceExteriorDL; + +#define dgHeartContainerInteriorDL "__OTR__objects/gameplay_keep/gHeartContainerInteriorDL" +static const ALIGN_ASSET(2) char gHeartContainerInteriorDL[] = dgHeartContainerInteriorDL; + +#define dgSignRectangularDL "__OTR__objects/gameplay_keep/gSignRectangularDL" +static const ALIGN_ASSET(2) char gSignRectangularDL[] = dgSignRectangularDL; + +#define dgSignDirectionalDL "__OTR__objects/gameplay_keep/gSignDirectionalDL" +static const ALIGN_ASSET(2) char gSignDirectionalDL[] = dgSignDirectionalDL; + +#define dgDropArrows2Tex "__OTR__objects/gameplay_keep/gDropArrows2Tex" +static const ALIGN_ASSET(2) char gDropArrows2Tex[] = dgDropArrows2Tex; + +#define dgDropArrows1Tex "__OTR__objects/gameplay_keep/gDropArrows1Tex" +static const ALIGN_ASSET(2) char gDropArrows1Tex[] = dgDropArrows1Tex; + +#define dgDropArrows3Tex "__OTR__objects/gameplay_keep/gDropArrows3Tex" +static const ALIGN_ASSET(2) char gDropArrows3Tex[] = dgDropArrows3Tex; + +#define dgDropBombTex "__OTR__objects/gameplay_keep/gDropBombTex" +static const ALIGN_ASSET(2) char gDropBombTex[] = dgDropBombTex; + +#define dgDropRecoveryHeartTex "__OTR__objects/gameplay_keep/gDropRecoveryHeartTex" +static const ALIGN_ASSET(2) char gDropRecoveryHeartTex[] = dgDropRecoveryHeartTex; + +#define dgItemDropDL "__OTR__objects/gameplay_keep/gItemDropDL" +static const ALIGN_ASSET(2) char gItemDropDL[] = dgItemDropDL; + +#define dgDropKeySmallTex "__OTR__objects/gameplay_keep/gDropKeySmallTex" +static const ALIGN_ASSET(2) char gDropKeySmallTex[] = dgDropKeySmallTex; + +#define dgDropMagicSmallTex "__OTR__objects/gameplay_keep/gDropMagicSmallTex" +static const ALIGN_ASSET(2) char gDropMagicSmallTex[] = dgDropMagicSmallTex; + +#define dgDropDekuNutTex "__OTR__objects/gameplay_keep/gDropDekuNutTex" +static const ALIGN_ASSET(2) char gDropDekuNutTex[] = dgDropDekuNutTex; + +#define dgDropDekuSeedsTex "__OTR__objects/gameplay_keep/gDropDekuSeedsTex" +static const ALIGN_ASSET(2) char gDropDekuSeedsTex[] = dgDropDekuSeedsTex; + +#define dgDropDekuStickTex "__OTR__objects/gameplay_keep/gDropDekuStickTex" +static const ALIGN_ASSET(2) char gDropDekuStickTex[] = dgDropDekuStickTex; + +#define dgDropMagicLargeTex "__OTR__objects/gameplay_keep/gDropMagicLargeTex" +static const ALIGN_ASSET(2) char gDropMagicLargeTex[] = dgDropMagicLargeTex; + +#define dgRupeeGreenTex "__OTR__objects/gameplay_keep/gRupeeGreenTex" +static const ALIGN_ASSET(2) char gRupeeGreenTex[] = dgRupeeGreenTex; + +#define dgRupeeBlueTex "__OTR__objects/gameplay_keep/gRupeeBlueTex" +static const ALIGN_ASSET(2) char gRupeeBlueTex[] = dgRupeeBlueTex; + +#define dgRupeeRedTex "__OTR__objects/gameplay_keep/gRupeeRedTex" +static const ALIGN_ASSET(2) char gRupeeRedTex[] = dgRupeeRedTex; + +#define dgRupeePinkTex "__OTR__objects/gameplay_keep/gRupeePinkTex" +static const ALIGN_ASSET(2) char gRupeePinkTex[] = dgRupeePinkTex; + +#define dgRupeeOrangeTex "__OTR__objects/gameplay_keep/gRupeeOrangeTex" +static const ALIGN_ASSET(2) char gRupeeOrangeTex[] = dgRupeeOrangeTex; + +#define dgRupeeSilverTex "__OTR__objects/gameplay_keep/gRupeeSilverTex" +static const ALIGN_ASSET(2) char gRupeeSilverTex[] = dgRupeeSilverTex; + +#define dgRupeeDL "__OTR__objects/gameplay_keep/gRupeeDL" +static const ALIGN_ASSET(2) char gRupeeDL[] = dgRupeeDL; + +#define dgRupeeLightRedTex "__OTR__objects/gameplay_keep/gRupeeLightRedTex" +static const ALIGN_ASSET(2) char gRupeeLightRedTex[] = dgRupeeLightRedTex; + +#define dgUnknownStone1Tex "__OTR__objects/gameplay_keep/gUnknownStone1Tex" +static const ALIGN_ASSET(2) char gUnknownStone1Tex[] = dgUnknownStone1Tex; + +#define dgUnknownStone2Tex "__OTR__objects/gameplay_keep/gUnknownStone2Tex" +static const ALIGN_ASSET(2) char gUnknownStone2Tex[] = dgUnknownStone2Tex; + +#define dgUnusedTreeStumpTopTex "__OTR__objects/gameplay_keep/gUnusedTreeStumpTopTex" +static const ALIGN_ASSET(2) char gUnusedTreeStumpTopTex[] = dgUnusedTreeStumpTopTex; + +#define dgUnusedTreeStumpBarkTex "__OTR__objects/gameplay_keep/gUnusedTreeStumpBarkTex" +static const ALIGN_ASSET(2) char gUnusedTreeStumpBarkTex[] = dgUnusedTreeStumpBarkTex; + +#define dgUnusedGrassBladesTex "__OTR__objects/gameplay_keep/gUnusedGrassBladesTex" +static const ALIGN_ASSET(2) char gUnusedGrassBladesTex[] = dgUnusedGrassBladesTex; + +#define dgUnusedStoneHookshotTargetTex "__OTR__objects/gameplay_keep/gUnusedStoneHookshotTargetTex" +static const ALIGN_ASSET(2) char gUnusedStoneHookshotTargetTex[] = dgUnusedStoneHookshotTargetTex; + +#define dgUnknownStone3Tex "__OTR__objects/gameplay_keep/gUnknownStone3Tex" +static const ALIGN_ASSET(2) char gUnknownStone3Tex[] = dgUnknownStone3Tex; + +#define dgSignRectangularSideTex "__OTR__objects/gameplay_keep/gSignRectangularSideTex" +static const ALIGN_ASSET(2) char gSignRectangularSideTex[] = dgSignRectangularSideTex; + +#define dgSignRectangularFrontTex "__OTR__objects/gameplay_keep/gSignRectangularFrontTex" +static const ALIGN_ASSET(2) char gSignRectangularFrontTex[] = dgSignRectangularFrontTex; + +#define dgSignPostWoodTex "__OTR__objects/gameplay_keep/gSignPostWoodTex" +static const ALIGN_ASSET(2) char gSignPostWoodTex[] = dgSignPostWoodTex; + +#define dgSignLetteringTex "__OTR__objects/gameplay_keep/gSignLetteringTex" +static const ALIGN_ASSET(2) char gSignLetteringTex[] = dgSignLetteringTex; + +#define dgRaindropDL "__OTR__objects/gameplay_keep/gRaindropDL" +static const ALIGN_ASSET(2) char gRaindropDL[] = dgRaindropDL; + +#define dgFootShadowDL "__OTR__objects/gameplay_keep/gFootShadowDL" +static const ALIGN_ASSET(2) char gFootShadowDL[] = dgFootShadowDL; + +#define dgFootShadowTex "__OTR__objects/gameplay_keep/gFootShadowTex" +static const ALIGN_ASSET(2) char gFootShadowTex[] = dgFootShadowTex; + +#define dgCircleShadowDL "__OTR__objects/gameplay_keep/gCircleShadowDL" +static const ALIGN_ASSET(2) char gCircleShadowDL[] = dgCircleShadowDL; + +#define dgCircleShadowTex "__OTR__objects/gameplay_keep/gCircleShadowTex" +static const ALIGN_ASSET(2) char gCircleShadowTex[] = dgCircleShadowTex; + +#define dgHorseShadowDL "__OTR__objects/gameplay_keep/gHorseShadowDL" +static const ALIGN_ASSET(2) char gHorseShadowDL[] = dgHorseShadowDL; + +#define dgHorseShadowTex "__OTR__objects/gameplay_keep/gHorseShadowTex" +static const ALIGN_ASSET(2) char gHorseShadowTex[] = dgHorseShadowTex; + +#define dgDungeonDoorDL "__OTR__objects/gameplay_keep/gDungeonDoorDL" +static const ALIGN_ASSET(2) char gDungeonDoorDL[] = dgDungeonDoorDL; + +#define dgDoorMetalBarsTex "__OTR__objects/gameplay_keep/gDoorMetalBarsTex" +static const ALIGN_ASSET(2) char gDoorMetalBarsTex[] = dgDoorMetalBarsTex; + +#define dgDoorMetalBarsDL "__OTR__objects/gameplay_keep/gDoorMetalBarsDL" +static const ALIGN_ASSET(2) char gDoorMetalBarsDL[] = dgDoorMetalBarsDL; + +#define dgGenericDungeonDoorTex "__OTR__objects/gameplay_keep/gGenericDungeonDoorTex" +static const ALIGN_ASSET(2) char gGenericDungeonDoorTex[] = dgGenericDungeonDoorTex; + +#define dgSunTex "__OTR__objects/gameplay_keep/gSunTex" +static const ALIGN_ASSET(2) char gSunTex[] = dgSunTex; + +#define dgSunEveningTex "__OTR__objects/gameplay_keep/gSunEveningTex" +static const ALIGN_ASSET(2) char gSunEveningTex[] = dgSunEveningTex; + +#define dgKokiriDustMoteTextureLoadDL "__OTR__objects/gameplay_keep/gKokiriDustMoteTextureLoadDL" +static const ALIGN_ASSET(2) char gKokiriDustMoteTextureLoadDL[] = dgKokiriDustMoteTextureLoadDL; + +#define dgKokiriDustMoteDL "__OTR__objects/gameplay_keep/gKokiriDustMoteDL" +static const ALIGN_ASSET(2) char gKokiriDustMoteDL[] = dgKokiriDustMoteDL; + +#define dgSunDL "__OTR__objects/gameplay_keep/gSunDL" +static const ALIGN_ASSET(2) char gSunDL[] = dgSunDL; + +#define dgZTargetLockOnTriangleDL "__OTR__objects/gameplay_keep/gZTargetLockOnTriangleDL" +static const ALIGN_ASSET(2) char gZTargetLockOnTriangleDL[] = dgZTargetLockOnTriangleDL; + +#define dgEffFire1DL "__OTR__objects/gameplay_keep/gEffFire1DL" +static const ALIGN_ASSET(2) char gEffFire1DL[] = dgEffFire1DL; + +#define dgEffFire2DL "__OTR__objects/gameplay_keep/gEffFire2DL" +static const ALIGN_ASSET(2) char gEffFire2DL[] = dgEffFire2DL; + +#define dgDecorativeFlameMaskTex "__OTR__objects/gameplay_keep/gDecorativeFlameMaskTex" +static const ALIGN_ASSET(2) char gDecorativeFlameMaskTex[] = dgDecorativeFlameMaskTex; + +#define dgDecorativeFlameTex "__OTR__objects/gameplay_keep/gDecorativeFlameTex" +static const ALIGN_ASSET(2) char gDecorativeFlameTex[] = dgDecorativeFlameTex; + +#define dgUnusedUnknownShape1DL "__OTR__objects/gameplay_keep/gUnusedUnknownShape1DL" +static const ALIGN_ASSET(2) char gUnusedUnknownShape1DL[] = dgUnusedUnknownShape1DL; + +#define dgUnusedUnknownShape1RefDL "__OTR__objects/gameplay_keep/gUnusedUnknownShape1RefDL" +static const ALIGN_ASSET(2) char gUnusedUnknownShape1RefDL[] = dgUnusedUnknownShape1RefDL; + +#define dgUnusedUnknownShape2DL "__OTR__objects/gameplay_keep/gUnusedUnknownShape2DL" +static const ALIGN_ASSET(2) char gUnusedUnknownShape2DL[] = dgUnusedUnknownShape2DL; + +#define dgUnusedUnknownShape2RefDL "__OTR__objects/gameplay_keep/gUnusedUnknownShape2RefDL" +static const ALIGN_ASSET(2) char gUnusedUnknownShape2RefDL[] = dgUnusedUnknownShape2RefDL; + +#define dgUnusedUnknownShape3DL "__OTR__objects/gameplay_keep/gUnusedUnknownShape3DL" +static const ALIGN_ASSET(2) char gUnusedUnknownShape3DL[] = dgUnusedUnknownShape3DL; + +#define dgUnusedUnknownShape3RefDL "__OTR__objects/gameplay_keep/gUnusedUnknownShape3RefDL" +static const ALIGN_ASSET(2) char gUnusedUnknownShape3RefDL[] = dgUnusedUnknownShape3RefDL; + +#define dgUnusedUpsideDownZeldaTex "__OTR__objects/gameplay_keep/gUnusedUpsideDownZeldaTex" +static const ALIGN_ASSET(2) char gUnusedUpsideDownZeldaTex[] = dgUnusedUpsideDownZeldaTex; + +#define dgDust1Tex "__OTR__objects/gameplay_keep/gDust1Tex" +static const ALIGN_ASSET(2) char gDust1Tex[] = dgDust1Tex; + +#define dgDust2Tex "__OTR__objects/gameplay_keep/gDust2Tex" +static const ALIGN_ASSET(2) char gDust2Tex[] = dgDust2Tex; + +#define dgDust3Tex "__OTR__objects/gameplay_keep/gDust3Tex" +static const ALIGN_ASSET(2) char gDust3Tex[] = dgDust3Tex; + +#define dgDust4Tex "__OTR__objects/gameplay_keep/gDust4Tex" +static const ALIGN_ASSET(2) char gDust4Tex[] = dgDust4Tex; + +#define dgDust5Tex "__OTR__objects/gameplay_keep/gDust5Tex" +static const ALIGN_ASSET(2) char gDust5Tex[] = dgDust5Tex; + +#define dgDust6Tex "__OTR__objects/gameplay_keep/gDust6Tex" +static const ALIGN_ASSET(2) char gDust6Tex[] = dgDust6Tex; + +#define dgDust7Tex "__OTR__objects/gameplay_keep/gDust7Tex" +static const ALIGN_ASSET(2) char gDust7Tex[] = dgDust7Tex; + +#define dgDust8Tex "__OTR__objects/gameplay_keep/gDust8Tex" +static const ALIGN_ASSET(2) char gDust8Tex[] = dgDust8Tex; + +#define dgCircleGlowLTex "__OTR__objects/gameplay_keep/gCircleGlowLTex" +static const ALIGN_ASSET(2) char gCircleGlowLTex[] = dgCircleGlowLTex; + +#define dgCircleGlowRTex "__OTR__objects/gameplay_keep/gCircleGlowRTex" +static const ALIGN_ASSET(2) char gCircleGlowRTex[] = dgCircleGlowRTex; + +#define dgCircleGlowSLTex "__OTR__objects/gameplay_keep/gCircleGlowSLTex" +static const ALIGN_ASSET(2) char gCircleGlowSLTex[] = dgCircleGlowSLTex; + +#define dgCircleGlowSRTex "__OTR__objects/gameplay_keep/gCircleGlowSRTex" +static const ALIGN_ASSET(2) char gCircleGlowSRTex[] = dgCircleGlowSRTex; + +#define dgEffBubble1Tex "__OTR__objects/gameplay_keep/gEffBubble1Tex" +static const ALIGN_ASSET(2) char gEffBubble1Tex[] = dgEffBubble1Tex; + +#define dgEffBubble2Tex "__OTR__objects/gameplay_keep/gEffBubble2Tex" +static const ALIGN_ASSET(2) char gEffBubble2Tex[] = dgEffBubble2Tex; + +#define dgEffSpark1Tex "__OTR__objects/gameplay_keep/gEffSpark1Tex" +static const ALIGN_ASSET(2) char gEffSpark1Tex[] = dgEffSpark1Tex; + +#define dgEffSpark2Tex "__OTR__objects/gameplay_keep/gEffSpark2Tex" +static const ALIGN_ASSET(2) char gEffSpark2Tex[] = dgEffSpark2Tex; + +#define dgEffSpark3Tex "__OTR__objects/gameplay_keep/gEffSpark3Tex" +static const ALIGN_ASSET(2) char gEffSpark3Tex[] = dgEffSpark3Tex; + +#define dgEffSpark4Tex "__OTR__objects/gameplay_keep/gEffSpark4Tex" +static const ALIGN_ASSET(2) char gEffSpark4Tex[] = dgEffSpark4Tex; + +#define dgFishSkelLimbsLimb_018F98DL_018A68 "__OTR__objects/gameplay_keep/gFishSkelLimbsLimb_018F98DL_018A68" +static const ALIGN_ASSET(2) char gFishSkelLimbsLimb_018F98DL_018A68[] = dgFishSkelLimbsLimb_018F98DL_018A68; + +#define dgFishSkelLimbsLimb_018FB0DL_018950 "__OTR__objects/gameplay_keep/gFishSkelLimbsLimb_018FB0DL_018950" +static const ALIGN_ASSET(2) char gFishSkelLimbsLimb_018FB0DL_018950[] = dgFishSkelLimbsLimb_018FB0DL_018950; + +#define dgFishSkelLimbsLimb_018FBCDL_0188B0 "__OTR__objects/gameplay_keep/gFishSkelLimbsLimb_018FBCDL_0188B0" +static const ALIGN_ASSET(2) char gFishSkelLimbsLimb_018FBCDL_0188B0[] = dgFishSkelLimbsLimb_018FBCDL_0188B0; + +#define dgameplay_keepTex_04C540 "__OTR__objects/gameplay_keep/gameplay_keepTex_04C540" +static const ALIGN_ASSET(2) char gameplay_keepTex_04C540[] = dgameplay_keepTex_04C540; + +#define dgameplay_keepTex_04CD40 "__OTR__objects/gameplay_keep/gameplay_keepTex_04CD40" +static const ALIGN_ASSET(2) char gameplay_keepTex_04CD40[] = dgameplay_keepTex_04CD40; + +#define dgameplay_keepTex_04C740 "__OTR__objects/gameplay_keep/gameplay_keepTex_04C740" +static const ALIGN_ASSET(2) char gameplay_keepTex_04C740[] = dgameplay_keepTex_04C740; + +#define dgameplay_keepTex_04CF40 "__OTR__objects/gameplay_keep/gameplay_keepTex_04CF40" +static const ALIGN_ASSET(2) char gameplay_keepTex_04CF40[] = dgameplay_keepTex_04CF40; \ No newline at end of file diff --git a/soh/assets/objects/object_Bb/object_Bb.h b/soh/assets/objects/object_Bb/object_Bb.h index 3bc5b37e3..878739d85 100644 --- a/soh/assets/objects/object_Bb/object_Bb.h +++ b/soh/assets/objects/object_Bb/object_Bb.h @@ -1,128 +1,57 @@ #pragma once -#define dobject_Bb_Anim_000184 "__OTR__objects/object_Bb/object_Bb_Anim_000184" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Anim_000184[] = dobject_Bb_Anim_000184; -#else -static const char object_Bb_Anim_000184[] __attribute__((aligned (2))) = dobject_Bb_Anim_000184; -#endif - -#define dobject_Bb_Anim_0002AC "__OTR__objects/object_Bb/object_Bb_Anim_0002AC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Anim_0002AC[] = dobject_Bb_Anim_0002AC; -#else -static const char object_Bb_Anim_0002AC[] __attribute__((aligned (2))) = dobject_Bb_Anim_0002AC; -#endif - -#define dobject_Bb_Anim_000444 "__OTR__objects/object_Bb/object_Bb_Anim_000444" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Anim_000444[] = dobject_Bb_Anim_000444; -#else -static const char object_Bb_Anim_000444[] __attribute__((aligned (2))) = dobject_Bb_Anim_000444; -#endif - -#define dobject_Bb_DL_000C20 "__OTR__objects/object_Bb/object_Bb_DL_000C20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_DL_000C20[] = dobject_Bb_DL_000C20; -#else -static const char object_Bb_DL_000C20[] __attribute__((aligned (2))) = dobject_Bb_DL_000C20; -#endif - -#define dobject_Bb_DL_000CB0 "__OTR__objects/object_Bb/object_Bb_DL_000CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_DL_000CB0[] = dobject_Bb_DL_000CB0; -#else -static const char object_Bb_DL_000CB0[] __attribute__((aligned (2))) = dobject_Bb_DL_000CB0; -#endif - -#define dobject_Bb_DL_000D40 "__OTR__objects/object_Bb/object_Bb_DL_000D40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_DL_000D40[] = dobject_Bb_DL_000D40; -#else -static const char object_Bb_DL_000D40[] __attribute__((aligned (2))) = dobject_Bb_DL_000D40; -#endif - -#define dobject_Bb_DL_000E08 "__OTR__objects/object_Bb/object_Bb_DL_000E08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_DL_000E08[] = dobject_Bb_DL_000E08; -#else -static const char object_Bb_DL_000E08[] __attribute__((aligned (2))) = dobject_Bb_DL_000E08; -#endif - -#define dobject_Bb_DL_001100 "__OTR__objects/object_Bb/object_Bb_DL_001100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_DL_001100[] = dobject_Bb_DL_001100; -#else -static const char object_Bb_DL_001100[] __attribute__((aligned (2))) = dobject_Bb_DL_001100; -#endif - -#define dobject_Bb_DL_001190 "__OTR__objects/object_Bb/object_Bb_DL_001190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_DL_001190[] = dobject_Bb_DL_001190; -#else -static const char object_Bb_DL_001190[] __attribute__((aligned (2))) = dobject_Bb_DL_001190; -#endif - -#define dobject_Bb_Tex_001220 "__OTR__objects/object_Bb/object_Bb_Tex_001220" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Tex_001220[] = dobject_Bb_Tex_001220; -#else -static const char object_Bb_Tex_001220[] __attribute__((aligned (2))) = dobject_Bb_Tex_001220; -#endif - -#define dobject_Bb_Tex_001420 "__OTR__objects/object_Bb/object_Bb_Tex_001420" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Tex_001420[] = dobject_Bb_Tex_001420; -#else -static const char object_Bb_Tex_001420[] __attribute__((aligned (2))) = dobject_Bb_Tex_001420; -#endif - -#define dobject_Bb_Tex_0014A0 "__OTR__objects/object_Bb/object_Bb_Tex_0014A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Tex_0014A0[] = dobject_Bb_Tex_0014A0; -#else -static const char object_Bb_Tex_0014A0[] __attribute__((aligned (2))) = dobject_Bb_Tex_0014A0; -#endif - -#define dobject_Bb_Tex_0014C0 "__OTR__objects/object_Bb/object_Bb_Tex_0014C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Tex_0014C0[] = dobject_Bb_Tex_0014C0; -#else -static const char object_Bb_Tex_0014C0[] __attribute__((aligned (2))) = dobject_Bb_Tex_0014C0; -#endif - -#define dobject_Bb_Tex_001540 "__OTR__objects/object_Bb/object_Bb_Tex_001540" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Tex_001540[] = dobject_Bb_Tex_001540; -#else -static const char object_Bb_Tex_001540[] __attribute__((aligned (2))) = dobject_Bb_Tex_001540; -#endif - -#define dobject_Bb_Tex_0015C0 "__OTR__objects/object_Bb/object_Bb_Tex_0015C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Tex_0015C0[] = dobject_Bb_Tex_0015C0; -#else -static const char object_Bb_Tex_0015C0[] __attribute__((aligned (2))) = dobject_Bb_Tex_0015C0; -#endif - -#define dobject_Bb_Tex_001640 "__OTR__objects/object_Bb/object_Bb_Tex_001640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Tex_001640[] = dobject_Bb_Tex_001640; -#else -static const char object_Bb_Tex_001640[] __attribute__((aligned (2))) = dobject_Bb_Tex_001640; -#endif - -#define dobject_Bb_Tex_001740 "__OTR__objects/object_Bb/object_Bb_Tex_001740" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Tex_001740[] = dobject_Bb_Tex_001740; -#else -static const char object_Bb_Tex_001740[] __attribute__((aligned (2))) = dobject_Bb_Tex_001740; -#endif - -#define dobject_Bb_Skel_001A30 "__OTR__objects/object_Bb/object_Bb_Skel_001A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_Bb_Skel_001A30[] = dobject_Bb_Skel_001A30; -#else -static const char object_Bb_Skel_001A30[] __attribute__((aligned (2))) = dobject_Bb_Skel_001A30; -#endif - +#include "align_asset_macro.h" + +#define dobject_Bb_Anim_000184 "__OTR__objects/object_Bb/object_Bb_Anim_000184" +static const ALIGN_ASSET(2) char object_Bb_Anim_000184[] = dobject_Bb_Anim_000184; + +#define dobject_Bb_Anim_0002AC "__OTR__objects/object_Bb/object_Bb_Anim_0002AC" +static const ALIGN_ASSET(2) char object_Bb_Anim_0002AC[] = dobject_Bb_Anim_0002AC; + +#define dobject_Bb_Anim_000444 "__OTR__objects/object_Bb/object_Bb_Anim_000444" +static const ALIGN_ASSET(2) char object_Bb_Anim_000444[] = dobject_Bb_Anim_000444; + +#define dobject_Bb_DL_000C20 "__OTR__objects/object_Bb/object_Bb_DL_000C20" +static const ALIGN_ASSET(2) char object_Bb_DL_000C20[] = dobject_Bb_DL_000C20; + +#define dobject_Bb_DL_000CB0 "__OTR__objects/object_Bb/object_Bb_DL_000CB0" +static const ALIGN_ASSET(2) char object_Bb_DL_000CB0[] = dobject_Bb_DL_000CB0; + +#define dobject_Bb_DL_000D40 "__OTR__objects/object_Bb/object_Bb_DL_000D40" +static const ALIGN_ASSET(2) char object_Bb_DL_000D40[] = dobject_Bb_DL_000D40; + +#define dobject_Bb_DL_000E08 "__OTR__objects/object_Bb/object_Bb_DL_000E08" +static const ALIGN_ASSET(2) char object_Bb_DL_000E08[] = dobject_Bb_DL_000E08; + +#define dobject_Bb_DL_001100 "__OTR__objects/object_Bb/object_Bb_DL_001100" +static const ALIGN_ASSET(2) char object_Bb_DL_001100[] = dobject_Bb_DL_001100; + +#define dobject_Bb_DL_001190 "__OTR__objects/object_Bb/object_Bb_DL_001190" +static const ALIGN_ASSET(2) char object_Bb_DL_001190[] = dobject_Bb_DL_001190; + +#define dobject_Bb_Tex_001220 "__OTR__objects/object_Bb/object_Bb_Tex_001220" +static const ALIGN_ASSET(2) char object_Bb_Tex_001220[] = dobject_Bb_Tex_001220; + +#define dobject_Bb_Tex_001420 "__OTR__objects/object_Bb/object_Bb_Tex_001420" +static const ALIGN_ASSET(2) char object_Bb_Tex_001420[] = dobject_Bb_Tex_001420; + +#define dobject_Bb_Tex_0014A0 "__OTR__objects/object_Bb/object_Bb_Tex_0014A0" +static const ALIGN_ASSET(2) char object_Bb_Tex_0014A0[] = dobject_Bb_Tex_0014A0; + +#define dobject_Bb_Tex_0014C0 "__OTR__objects/object_Bb/object_Bb_Tex_0014C0" +static const ALIGN_ASSET(2) char object_Bb_Tex_0014C0[] = dobject_Bb_Tex_0014C0; + +#define dobject_Bb_Tex_001540 "__OTR__objects/object_Bb/object_Bb_Tex_001540" +static const ALIGN_ASSET(2) char object_Bb_Tex_001540[] = dobject_Bb_Tex_001540; + +#define dobject_Bb_Tex_0015C0 "__OTR__objects/object_Bb/object_Bb_Tex_0015C0" +static const ALIGN_ASSET(2) char object_Bb_Tex_0015C0[] = dobject_Bb_Tex_0015C0; + +#define dobject_Bb_Tex_001640 "__OTR__objects/object_Bb/object_Bb_Tex_001640" +static const ALIGN_ASSET(2) char object_Bb_Tex_001640[] = dobject_Bb_Tex_001640; + +#define dobject_Bb_Tex_001740 "__OTR__objects/object_Bb/object_Bb_Tex_001740" +static const ALIGN_ASSET(2) char object_Bb_Tex_001740[] = dobject_Bb_Tex_001740; + +#define dobject_Bb_Skel_001A30 "__OTR__objects/object_Bb/object_Bb_Skel_001A30" +static const ALIGN_ASSET(2) char object_Bb_Skel_001A30[] = dobject_Bb_Skel_001A30; \ No newline at end of file diff --git a/soh/assets/objects/object_ahg/object_ahg.h b/soh/assets/objects/object_ahg/object_ahg.h index 208e73548..11243d46c 100644 --- a/soh/assets/objects/object_ahg/object_ahg.h +++ b/soh/assets/objects/object_ahg/object_ahg.h @@ -1,254 +1,111 @@ #pragma once -#define dobject_ahg_Skel_0000F0 "__OTR__objects/object_ahg/object_ahg_Skel_0000F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Skel_0000F0[] = dobject_ahg_Skel_0000F0; -#else -static const char object_ahg_Skel_0000F0[] __attribute__((aligned (2))) = dobject_ahg_Skel_0000F0; -#endif - -#define dobject_ahg_TLUT_0000FC "__OTR__objects/object_ahg/object_ahg_TLUT_0000FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_TLUT_0000FC[] = dobject_ahg_TLUT_0000FC; -#else -static const char object_ahg_TLUT_0000FC[] __attribute__((aligned (2))) = dobject_ahg_TLUT_0000FC; -#endif - -#define dobject_ahg_Tex_0002FC "__OTR__objects/object_ahg/object_ahg_Tex_0002FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_0002FC[] = dobject_ahg_Tex_0002FC; -#else -static const char object_ahg_Tex_0002FC[] __attribute__((aligned (2))) = dobject_ahg_Tex_0002FC; -#endif - -#define dobject_ahg_Tex_0003FC "__OTR__objects/object_ahg/object_ahg_Tex_0003FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_0003FC[] = dobject_ahg_Tex_0003FC; -#else -static const char object_ahg_Tex_0003FC[] __attribute__((aligned (2))) = dobject_ahg_Tex_0003FC; -#endif - -#define dobject_ahg_Tex_0004FC "__OTR__objects/object_ahg/object_ahg_Tex_0004FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_0004FC[] = dobject_ahg_Tex_0004FC; -#else -static const char object_ahg_Tex_0004FC[] __attribute__((aligned (2))) = dobject_ahg_Tex_0004FC; -#endif - -#define dobject_ahg_Tex_00053C "__OTR__objects/object_ahg/object_ahg_Tex_00053C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_00053C[] = dobject_ahg_Tex_00053C; -#else -static const char object_ahg_Tex_00053C[] __attribute__((aligned (2))) = dobject_ahg_Tex_00053C; -#endif - -#define dobject_ahg_Tex_00057C "__OTR__objects/object_ahg/object_ahg_Tex_00057C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_00057C[] = dobject_ahg_Tex_00057C; -#else -static const char object_ahg_Tex_00057C[] __attribute__((aligned (2))) = dobject_ahg_Tex_00057C; -#endif - -#define dobject_ahg_Tex_00067C "__OTR__objects/object_ahg/object_ahg_Tex_00067C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_00067C[] = dobject_ahg_Tex_00067C; -#else -static const char object_ahg_Tex_00067C[] __attribute__((aligned (2))) = dobject_ahg_Tex_00067C; -#endif - -#define dobject_ahg_Tex_00077C "__OTR__objects/object_ahg/object_ahg_Tex_00077C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_00077C[] = dobject_ahg_Tex_00077C; -#else -static const char object_ahg_Tex_00077C[] __attribute__((aligned (2))) = dobject_ahg_Tex_00077C; -#endif - -#define dobject_ahg_Tex_00087C "__OTR__objects/object_ahg/object_ahg_Tex_00087C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_00087C[] = dobject_ahg_Tex_00087C; -#else -static const char object_ahg_Tex_00087C[] __attribute__((aligned (2))) = dobject_ahg_Tex_00087C; -#endif - -#define dobject_ahg_Tex_00097C "__OTR__objects/object_ahg/object_ahg_Tex_00097C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_00097C[] = dobject_ahg_Tex_00097C; -#else -static const char object_ahg_Tex_00097C[] __attribute__((aligned (2))) = dobject_ahg_Tex_00097C; -#endif - -#define dobject_ahg_Tex_0009BC "__OTR__objects/object_ahg/object_ahg_Tex_0009BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_0009BC[] = dobject_ahg_Tex_0009BC; -#else -static const char object_ahg_Tex_0009BC[] __attribute__((aligned (2))) = dobject_ahg_Tex_0009BC; -#endif - -#define dobject_ahg_Tex_0009FC "__OTR__objects/object_ahg/object_ahg_Tex_0009FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_0009FC[] = dobject_ahg_Tex_0009FC; -#else -static const char object_ahg_Tex_0009FC[] __attribute__((aligned (2))) = dobject_ahg_Tex_0009FC; -#endif - -#define dobject_ahg_Tex_000BFC "__OTR__objects/object_ahg/object_ahg_Tex_000BFC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_000BFC[] = dobject_ahg_Tex_000BFC; -#else -static const char object_ahg_Tex_000BFC[] __attribute__((aligned (2))) = dobject_ahg_Tex_000BFC; -#endif - -#define dobject_ahg_DL_0030F0 "__OTR__objects/object_ahg/object_ahg_DL_0030F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_0030F0[] = dobject_ahg_DL_0030F0; -#else -static const char object_ahg_DL_0030F0[] __attribute__((aligned (2))) = dobject_ahg_DL_0030F0; -#endif - -#define dobject_ahg_DL_003500 "__OTR__objects/object_ahg/object_ahg_DL_003500" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_003500[] = dobject_ahg_DL_003500; -#else -static const char object_ahg_DL_003500[] __attribute__((aligned (2))) = dobject_ahg_DL_003500; -#endif - -#define dobject_ahg_DL_003670 "__OTR__objects/object_ahg/object_ahg_DL_003670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_003670[] = dobject_ahg_DL_003670; -#else -static const char object_ahg_DL_003670[] __attribute__((aligned (2))) = dobject_ahg_DL_003670; -#endif - -#define dobject_ahg_DL_0037A0 "__OTR__objects/object_ahg/object_ahg_DL_0037A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_0037A0[] = dobject_ahg_DL_0037A0; -#else -static const char object_ahg_DL_0037A0[] __attribute__((aligned (2))) = dobject_ahg_DL_0037A0; -#endif - -#define dobject_ahg_DL_0038D8 "__OTR__objects/object_ahg/object_ahg_DL_0038D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_0038D8[] = dobject_ahg_DL_0038D8; -#else -static const char object_ahg_DL_0038D8[] __attribute__((aligned (2))) = dobject_ahg_DL_0038D8; -#endif - -#define dobject_ahg_DL_003A48 "__OTR__objects/object_ahg/object_ahg_DL_003A48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_003A48[] = dobject_ahg_DL_003A48; -#else -static const char object_ahg_DL_003A48[] __attribute__((aligned (2))) = dobject_ahg_DL_003A48; -#endif - -#define dobject_ahg_DL_003B78 "__OTR__objects/object_ahg/object_ahg_DL_003B78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_003B78[] = dobject_ahg_DL_003B78; -#else -static const char object_ahg_DL_003B78[] __attribute__((aligned (2))) = dobject_ahg_DL_003B78; -#endif - -#define dobject_ahg_DL_003CB0 "__OTR__objects/object_ahg/object_ahg_DL_003CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_003CB0[] = dobject_ahg_DL_003CB0; -#else -static const char object_ahg_DL_003CB0[] __attribute__((aligned (2))) = dobject_ahg_DL_003CB0; -#endif - -#define dobject_ahg_DL_003ED8 "__OTR__objects/object_ahg/object_ahg_DL_003ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_003ED8[] = dobject_ahg_DL_003ED8; -#else -static const char object_ahg_DL_003ED8[] __attribute__((aligned (2))) = dobject_ahg_DL_003ED8; -#endif - -#define dobject_ahg_DL_004018 "__OTR__objects/object_ahg/object_ahg_DL_004018" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_004018[] = dobject_ahg_DL_004018; -#else -static const char object_ahg_DL_004018[] __attribute__((aligned (2))) = dobject_ahg_DL_004018; -#endif - -#define dobject_ahg_DL_004148 "__OTR__objects/object_ahg/object_ahg_DL_004148" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_004148[] = dobject_ahg_DL_004148; -#else -static const char object_ahg_DL_004148[] __attribute__((aligned (2))) = dobject_ahg_DL_004148; -#endif - -#define dobject_ahg_DL_004280 "__OTR__objects/object_ahg/object_ahg_DL_004280" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_004280[] = dobject_ahg_DL_004280; -#else -static const char object_ahg_DL_004280[] __attribute__((aligned (2))) = dobject_ahg_DL_004280; -#endif - -#define dobject_ahg_DL_0043C0 "__OTR__objects/object_ahg/object_ahg_DL_0043C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_0043C0[] = dobject_ahg_DL_0043C0; -#else -static const char object_ahg_DL_0043C0[] __attribute__((aligned (2))) = dobject_ahg_DL_0043C0; -#endif - -#define dobject_ahg_DL_0044F0 "__OTR__objects/object_ahg/object_ahg_DL_0044F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_0044F0[] = dobject_ahg_DL_0044F0; -#else -static const char object_ahg_DL_0044F0[] __attribute__((aligned (2))) = dobject_ahg_DL_0044F0; -#endif - -#define dobject_ahg_DL_004628 "__OTR__objects/object_ahg/object_ahg_DL_004628" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_004628[] = dobject_ahg_DL_004628; -#else -static const char object_ahg_DL_004628[] __attribute__((aligned (2))) = dobject_ahg_DL_004628; -#endif - -#define dobject_ahg_TLUT_0047C8 "__OTR__objects/object_ahg/object_ahg_TLUT_0047C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_TLUT_0047C8[] = dobject_ahg_TLUT_0047C8; -#else -static const char object_ahg_TLUT_0047C8[] __attribute__((aligned (2))) = dobject_ahg_TLUT_0047C8; -#endif - -#define dobject_ahg_Tex_004948 "__OTR__objects/object_ahg/object_ahg_Tex_004948" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_004948[] = dobject_ahg_Tex_004948; -#else -static const char object_ahg_Tex_004948[] __attribute__((aligned (2))) = dobject_ahg_Tex_004948; -#endif - -#define dobject_ahg_Tex_004988 "__OTR__objects/object_ahg/object_ahg_Tex_004988" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_004988[] = dobject_ahg_Tex_004988; -#else -static const char object_ahg_Tex_004988[] __attribute__((aligned (2))) = dobject_ahg_Tex_004988; -#endif - -#define dobject_ahg_Tex_004B88 "__OTR__objects/object_ahg/object_ahg_Tex_004B88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_004B88[] = dobject_ahg_Tex_004B88; -#else -static const char object_ahg_Tex_004B88[] __attribute__((aligned (2))) = dobject_ahg_Tex_004B88; -#endif - -#define dobject_ahg_Tex_004C88 "__OTR__objects/object_ahg/object_ahg_Tex_004C88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_Tex_004C88[] = dobject_ahg_Tex_004C88; -#else -static const char object_ahg_Tex_004C88[] __attribute__((aligned (2))) = dobject_ahg_Tex_004C88; -#endif - -#define dobject_ahg_DL_005508 "__OTR__objects/object_ahg/object_ahg_DL_005508" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_005508[] = dobject_ahg_DL_005508; -#else -static const char object_ahg_DL_005508[] __attribute__((aligned (2))) = dobject_ahg_DL_005508; -#endif - -#define dobject_ahg_DL_005728 "__OTR__objects/object_ahg/object_ahg_DL_005728" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ahg_DL_005728[] = dobject_ahg_DL_005728; -#else -static const char object_ahg_DL_005728[] __attribute__((aligned (2))) = dobject_ahg_DL_005728; -#endif - +#include "align_asset_macro.h" + +#define dobject_ahg_Skel_0000F0 "__OTR__objects/object_ahg/object_ahg_Skel_0000F0" +static const ALIGN_ASSET(2) char object_ahg_Skel_0000F0[] = dobject_ahg_Skel_0000F0; + +#define dobject_ahg_TLUT_0000FC "__OTR__objects/object_ahg/object_ahg_TLUT_0000FC" +static const ALIGN_ASSET(2) char object_ahg_TLUT_0000FC[] = dobject_ahg_TLUT_0000FC; + +#define dobject_ahg_Tex_0002FC "__OTR__objects/object_ahg/object_ahg_Tex_0002FC" +static const ALIGN_ASSET(2) char object_ahg_Tex_0002FC[] = dobject_ahg_Tex_0002FC; + +#define dobject_ahg_Tex_0003FC "__OTR__objects/object_ahg/object_ahg_Tex_0003FC" +static const ALIGN_ASSET(2) char object_ahg_Tex_0003FC[] = dobject_ahg_Tex_0003FC; + +#define dobject_ahg_Tex_0004FC "__OTR__objects/object_ahg/object_ahg_Tex_0004FC" +static const ALIGN_ASSET(2) char object_ahg_Tex_0004FC[] = dobject_ahg_Tex_0004FC; + +#define dobject_ahg_Tex_00053C "__OTR__objects/object_ahg/object_ahg_Tex_00053C" +static const ALIGN_ASSET(2) char object_ahg_Tex_00053C[] = dobject_ahg_Tex_00053C; + +#define dobject_ahg_Tex_00057C "__OTR__objects/object_ahg/object_ahg_Tex_00057C" +static const ALIGN_ASSET(2) char object_ahg_Tex_00057C[] = dobject_ahg_Tex_00057C; + +#define dobject_ahg_Tex_00067C "__OTR__objects/object_ahg/object_ahg_Tex_00067C" +static const ALIGN_ASSET(2) char object_ahg_Tex_00067C[] = dobject_ahg_Tex_00067C; + +#define dobject_ahg_Tex_00077C "__OTR__objects/object_ahg/object_ahg_Tex_00077C" +static const ALIGN_ASSET(2) char object_ahg_Tex_00077C[] = dobject_ahg_Tex_00077C; + +#define dobject_ahg_Tex_00087C "__OTR__objects/object_ahg/object_ahg_Tex_00087C" +static const ALIGN_ASSET(2) char object_ahg_Tex_00087C[] = dobject_ahg_Tex_00087C; + +#define dobject_ahg_Tex_00097C "__OTR__objects/object_ahg/object_ahg_Tex_00097C" +static const ALIGN_ASSET(2) char object_ahg_Tex_00097C[] = dobject_ahg_Tex_00097C; + +#define dobject_ahg_Tex_0009BC "__OTR__objects/object_ahg/object_ahg_Tex_0009BC" +static const ALIGN_ASSET(2) char object_ahg_Tex_0009BC[] = dobject_ahg_Tex_0009BC; + +#define dobject_ahg_Tex_0009FC "__OTR__objects/object_ahg/object_ahg_Tex_0009FC" +static const ALIGN_ASSET(2) char object_ahg_Tex_0009FC[] = dobject_ahg_Tex_0009FC; + +#define dobject_ahg_Tex_000BFC "__OTR__objects/object_ahg/object_ahg_Tex_000BFC" +static const ALIGN_ASSET(2) char object_ahg_Tex_000BFC[] = dobject_ahg_Tex_000BFC; + +#define dobject_ahg_DL_0030F0 "__OTR__objects/object_ahg/object_ahg_DL_0030F0" +static const ALIGN_ASSET(2) char object_ahg_DL_0030F0[] = dobject_ahg_DL_0030F0; + +#define dobject_ahg_DL_003500 "__OTR__objects/object_ahg/object_ahg_DL_003500" +static const ALIGN_ASSET(2) char object_ahg_DL_003500[] = dobject_ahg_DL_003500; + +#define dobject_ahg_DL_003670 "__OTR__objects/object_ahg/object_ahg_DL_003670" +static const ALIGN_ASSET(2) char object_ahg_DL_003670[] = dobject_ahg_DL_003670; + +#define dobject_ahg_DL_0037A0 "__OTR__objects/object_ahg/object_ahg_DL_0037A0" +static const ALIGN_ASSET(2) char object_ahg_DL_0037A0[] = dobject_ahg_DL_0037A0; + +#define dobject_ahg_DL_0038D8 "__OTR__objects/object_ahg/object_ahg_DL_0038D8" +static const ALIGN_ASSET(2) char object_ahg_DL_0038D8[] = dobject_ahg_DL_0038D8; + +#define dobject_ahg_DL_003A48 "__OTR__objects/object_ahg/object_ahg_DL_003A48" +static const ALIGN_ASSET(2) char object_ahg_DL_003A48[] = dobject_ahg_DL_003A48; + +#define dobject_ahg_DL_003B78 "__OTR__objects/object_ahg/object_ahg_DL_003B78" +static const ALIGN_ASSET(2) char object_ahg_DL_003B78[] = dobject_ahg_DL_003B78; + +#define dobject_ahg_DL_003CB0 "__OTR__objects/object_ahg/object_ahg_DL_003CB0" +static const ALIGN_ASSET(2) char object_ahg_DL_003CB0[] = dobject_ahg_DL_003CB0; + +#define dobject_ahg_DL_003ED8 "__OTR__objects/object_ahg/object_ahg_DL_003ED8" +static const ALIGN_ASSET(2) char object_ahg_DL_003ED8[] = dobject_ahg_DL_003ED8; + +#define dobject_ahg_DL_004018 "__OTR__objects/object_ahg/object_ahg_DL_004018" +static const ALIGN_ASSET(2) char object_ahg_DL_004018[] = dobject_ahg_DL_004018; + +#define dobject_ahg_DL_004148 "__OTR__objects/object_ahg/object_ahg_DL_004148" +static const ALIGN_ASSET(2) char object_ahg_DL_004148[] = dobject_ahg_DL_004148; + +#define dobject_ahg_DL_004280 "__OTR__objects/object_ahg/object_ahg_DL_004280" +static const ALIGN_ASSET(2) char object_ahg_DL_004280[] = dobject_ahg_DL_004280; + +#define dobject_ahg_DL_0043C0 "__OTR__objects/object_ahg/object_ahg_DL_0043C0" +static const ALIGN_ASSET(2) char object_ahg_DL_0043C0[] = dobject_ahg_DL_0043C0; + +#define dobject_ahg_DL_0044F0 "__OTR__objects/object_ahg/object_ahg_DL_0044F0" +static const ALIGN_ASSET(2) char object_ahg_DL_0044F0[] = dobject_ahg_DL_0044F0; + +#define dobject_ahg_DL_004628 "__OTR__objects/object_ahg/object_ahg_DL_004628" +static const ALIGN_ASSET(2) char object_ahg_DL_004628[] = dobject_ahg_DL_004628; + +#define dobject_ahg_TLUT_0047C8 "__OTR__objects/object_ahg/object_ahg_TLUT_0047C8" +static const ALIGN_ASSET(2) char object_ahg_TLUT_0047C8[] = dobject_ahg_TLUT_0047C8; + +#define dobject_ahg_Tex_004948 "__OTR__objects/object_ahg/object_ahg_Tex_004948" +static const ALIGN_ASSET(2) char object_ahg_Tex_004948[] = dobject_ahg_Tex_004948; + +#define dobject_ahg_Tex_004988 "__OTR__objects/object_ahg/object_ahg_Tex_004988" +static const ALIGN_ASSET(2) char object_ahg_Tex_004988[] = dobject_ahg_Tex_004988; + +#define dobject_ahg_Tex_004B88 "__OTR__objects/object_ahg/object_ahg_Tex_004B88" +static const ALIGN_ASSET(2) char object_ahg_Tex_004B88[] = dobject_ahg_Tex_004B88; + +#define dobject_ahg_Tex_004C88 "__OTR__objects/object_ahg/object_ahg_Tex_004C88" +static const ALIGN_ASSET(2) char object_ahg_Tex_004C88[] = dobject_ahg_Tex_004C88; + +#define dobject_ahg_DL_005508 "__OTR__objects/object_ahg/object_ahg_DL_005508" +static const ALIGN_ASSET(2) char object_ahg_DL_005508[] = dobject_ahg_DL_005508; + +#define dobject_ahg_DL_005728 "__OTR__objects/object_ahg/object_ahg_DL_005728" +static const ALIGN_ASSET(2) char object_ahg_DL_005728[] = dobject_ahg_DL_005728; \ No newline at end of file diff --git a/soh/assets/objects/object_am/object_am.h b/soh/assets/objects/object_am/object_am.h index 925d2c7b8..371326a6f 100644 --- a/soh/assets/objects/object_am/object_am.h +++ b/soh/assets/objects/object_am/object_am.h @@ -1,156 +1,69 @@ #pragma once -#define dgArmosSkel "__OTR__objects/object_am/gArmosSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosSkel[] = dgArmosSkel; -#else -static const char gArmosSkel[] __attribute__((aligned (2))) = dgArmosSkel; -#endif - -#define dgArmosRicochetAnim "__OTR__objects/object_am/gArmosRicochetAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosRicochetAnim[] = dgArmosRicochetAnim; -#else -static const char gArmosRicochetAnim[] __attribute__((aligned (2))) = dgArmosRicochetAnim; -#endif - -#define dgArmosHopAnim "__OTR__objects/object_am/gArmosHopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosHopAnim[] = dgArmosHopAnim; -#else -static const char gArmosHopAnim[] __attribute__((aligned (2))) = dgArmosHopAnim; -#endif - -#define dgArmosDamagedAnim "__OTR__objects/object_am/gArmosDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosDamagedAnim[] = dgArmosDamagedAnim; -#else -static const char gArmosDamagedAnim[] __attribute__((aligned (2))) = dgArmosDamagedAnim; -#endif - -#define dgArmosCol "__OTR__objects/object_am/gArmosCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosCol[] = dgArmosCol; -#else -static const char gArmosCol[] __attribute__((aligned (2))) = dgArmosCol; -#endif - -#define dgArmosSkelLimbsLimb_00589CDL_0016C8 "__OTR__objects/object_am/gArmosSkelLimbsLimb_00589CDL_0016C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosSkelLimbsLimb_00589CDL_0016C8[] = dgArmosSkelLimbsLimb_00589CDL_0016C8; -#else -static const char gArmosSkelLimbsLimb_00589CDL_0016C8[] __attribute__((aligned (2))) = dgArmosSkelLimbsLimb_00589CDL_0016C8; -#endif - -#define dgArmosSkelLimbsLimb_0058C0DL_002550 "__OTR__objects/object_am/gArmosSkelLimbsLimb_0058C0DL_002550" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosSkelLimbsLimb_0058C0DL_002550[] = dgArmosSkelLimbsLimb_0058C0DL_002550; -#else -static const char gArmosSkelLimbsLimb_0058C0DL_002550[] __attribute__((aligned (2))) = dgArmosSkelLimbsLimb_0058C0DL_002550; -#endif - -#define dgArmosSkelLimbsLimb_0058E4DL_002278 "__OTR__objects/object_am/gArmosSkelLimbsLimb_0058E4DL_002278" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosSkelLimbsLimb_0058E4DL_002278[] = dgArmosSkelLimbsLimb_0058E4DL_002278; -#else -static const char gArmosSkelLimbsLimb_0058E4DL_002278[] __attribute__((aligned (2))) = dgArmosSkelLimbsLimb_0058E4DL_002278; -#endif - -#define dgArmosSkelLimbsLimb_005908DL_0005D0 "__OTR__objects/object_am/gArmosSkelLimbsLimb_005908DL_0005D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gArmosSkelLimbsLimb_005908DL_0005D0[] = dgArmosSkelLimbsLimb_005908DL_0005D0; -#else -static const char gArmosSkelLimbsLimb_005908DL_0005D0[] __attribute__((aligned (2))) = dgArmosSkelLimbsLimb_005908DL_0005D0; -#endif - -#define dobject_amTex_002638 "__OTR__objects/object_am/object_amTex_002638" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_002638[] = dobject_amTex_002638; -#else -static const char object_amTex_002638[] __attribute__((aligned (2))) = dobject_amTex_002638; -#endif - -#define dobject_amTex_003C38 "__OTR__objects/object_am/object_amTex_003C38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_003C38[] = dobject_amTex_003C38; -#else -static const char object_amTex_003C38[] __attribute__((aligned (2))) = dobject_amTex_003C38; -#endif - -#define dobject_amTex_003238 "__OTR__objects/object_am/object_amTex_003238" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_003238[] = dobject_amTex_003238; -#else -static const char object_amTex_003238[] __attribute__((aligned (2))) = dobject_amTex_003238; -#endif - -#define dobject_amTex_002838 "__OTR__objects/object_am/object_amTex_002838" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_002838[] = dobject_amTex_002838; -#else -static const char object_amTex_002838[] __attribute__((aligned (2))) = dobject_amTex_002838; -#endif - -#define dobject_amTex_004C38 "__OTR__objects/object_am/object_amTex_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_004C38[] = dobject_amTex_004C38; -#else -static const char object_amTex_004C38[] __attribute__((aligned (2))) = dobject_amTex_004C38; -#endif - -#define dobject_amTex_003A38 "__OTR__objects/object_am/object_amTex_003A38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_003A38[] = dobject_amTex_003A38; -#else -static const char object_amTex_003A38[] __attribute__((aligned (2))) = dobject_amTex_003A38; -#endif - -#define dobject_amTex_003038 "__OTR__objects/object_am/object_amTex_003038" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_003038[] = dobject_amTex_003038; -#else -static const char object_amTex_003038[] __attribute__((aligned (2))) = dobject_amTex_003038; -#endif - -#define dobject_amTex_004438 "__OTR__objects/object_am/object_amTex_004438" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_004438[] = dobject_amTex_004438; -#else -static const char object_amTex_004438[] __attribute__((aligned (2))) = dobject_amTex_004438; -#endif - -#define dobject_amTex_002938 "__OTR__objects/object_am/object_amTex_002938" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_002938[] = dobject_amTex_002938; -#else -static const char object_amTex_002938[] __attribute__((aligned (2))) = dobject_amTex_002938; -#endif - -#define dobject_amTex_002D38 "__OTR__objects/object_am/object_amTex_002D38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_002D38[] = dobject_amTex_002D38; -#else -static const char object_amTex_002D38[] __attribute__((aligned (2))) = dobject_amTex_002D38; -#endif - -#define dobject_amTex_002E38 "__OTR__objects/object_am/object_amTex_002E38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_002E38[] = dobject_amTex_002E38; -#else -static const char object_amTex_002E38[] __attribute__((aligned (2))) = dobject_amTex_002E38; -#endif - -#define dobject_amTex_005478 "__OTR__objects/object_am/object_amTex_005478" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_005478[] = dobject_amTex_005478; -#else -static const char object_amTex_005478[] __attribute__((aligned (2))) = dobject_amTex_005478; -#endif - -#define dobject_amTex_005438 "__OTR__objects/object_am/object_amTex_005438" -#ifdef _WIN32 -static const __declspec(align(2)) char object_amTex_005438[] = dobject_amTex_005438; -#else -static const char object_amTex_005438[] __attribute__((aligned (2))) = dobject_amTex_005438; -#endif - +#include "align_asset_macro.h" + +#define dgArmosSkel "__OTR__objects/object_am/gArmosSkel" +static const ALIGN_ASSET(2) char gArmosSkel[] = dgArmosSkel; + +#define dgArmosRicochetAnim "__OTR__objects/object_am/gArmosRicochetAnim" +static const ALIGN_ASSET(2) char gArmosRicochetAnim[] = dgArmosRicochetAnim; + +#define dgArmosHopAnim "__OTR__objects/object_am/gArmosHopAnim" +static const ALIGN_ASSET(2) char gArmosHopAnim[] = dgArmosHopAnim; + +#define dgArmosDamagedAnim "__OTR__objects/object_am/gArmosDamagedAnim" +static const ALIGN_ASSET(2) char gArmosDamagedAnim[] = dgArmosDamagedAnim; + +#define dgArmosCol "__OTR__objects/object_am/gArmosCol" +static const ALIGN_ASSET(2) char gArmosCol[] = dgArmosCol; + +#define dgArmosSkelLimbsLimb_00589CDL_0016C8 "__OTR__objects/object_am/gArmosSkelLimbsLimb_00589CDL_0016C8" +static const ALIGN_ASSET(2) char gArmosSkelLimbsLimb_00589CDL_0016C8[] = dgArmosSkelLimbsLimb_00589CDL_0016C8; + +#define dgArmosSkelLimbsLimb_0058C0DL_002550 "__OTR__objects/object_am/gArmosSkelLimbsLimb_0058C0DL_002550" +static const ALIGN_ASSET(2) char gArmosSkelLimbsLimb_0058C0DL_002550[] = dgArmosSkelLimbsLimb_0058C0DL_002550; + +#define dgArmosSkelLimbsLimb_0058E4DL_002278 "__OTR__objects/object_am/gArmosSkelLimbsLimb_0058E4DL_002278" +static const ALIGN_ASSET(2) char gArmosSkelLimbsLimb_0058E4DL_002278[] = dgArmosSkelLimbsLimb_0058E4DL_002278; + +#define dgArmosSkelLimbsLimb_005908DL_0005D0 "__OTR__objects/object_am/gArmosSkelLimbsLimb_005908DL_0005D0" +static const ALIGN_ASSET(2) char gArmosSkelLimbsLimb_005908DL_0005D0[] = dgArmosSkelLimbsLimb_005908DL_0005D0; + +#define dobject_amTex_002638 "__OTR__objects/object_am/object_amTex_002638" +static const ALIGN_ASSET(2) char object_amTex_002638[] = dobject_amTex_002638; + +#define dobject_amTex_003C38 "__OTR__objects/object_am/object_amTex_003C38" +static const ALIGN_ASSET(2) char object_amTex_003C38[] = dobject_amTex_003C38; + +#define dobject_amTex_003238 "__OTR__objects/object_am/object_amTex_003238" +static const ALIGN_ASSET(2) char object_amTex_003238[] = dobject_amTex_003238; + +#define dobject_amTex_002838 "__OTR__objects/object_am/object_amTex_002838" +static const ALIGN_ASSET(2) char object_amTex_002838[] = dobject_amTex_002838; + +#define dobject_amTex_004C38 "__OTR__objects/object_am/object_amTex_004C38" +static const ALIGN_ASSET(2) char object_amTex_004C38[] = dobject_amTex_004C38; + +#define dobject_amTex_003A38 "__OTR__objects/object_am/object_amTex_003A38" +static const ALIGN_ASSET(2) char object_amTex_003A38[] = dobject_amTex_003A38; + +#define dobject_amTex_003038 "__OTR__objects/object_am/object_amTex_003038" +static const ALIGN_ASSET(2) char object_amTex_003038[] = dobject_amTex_003038; + +#define dobject_amTex_004438 "__OTR__objects/object_am/object_amTex_004438" +static const ALIGN_ASSET(2) char object_amTex_004438[] = dobject_amTex_004438; + +#define dobject_amTex_002938 "__OTR__objects/object_am/object_amTex_002938" +static const ALIGN_ASSET(2) char object_amTex_002938[] = dobject_amTex_002938; + +#define dobject_amTex_002D38 "__OTR__objects/object_am/object_amTex_002D38" +static const ALIGN_ASSET(2) char object_amTex_002D38[] = dobject_amTex_002D38; + +#define dobject_amTex_002E38 "__OTR__objects/object_am/object_amTex_002E38" +static const ALIGN_ASSET(2) char object_amTex_002E38[] = dobject_amTex_002E38; + +#define dobject_amTex_005478 "__OTR__objects/object_am/object_amTex_005478" +static const ALIGN_ASSET(2) char object_amTex_005478[] = dobject_amTex_005478; + +#define dobject_amTex_005438 "__OTR__objects/object_am/object_amTex_005438" +static const ALIGN_ASSET(2) char object_amTex_005438[] = dobject_amTex_005438; \ No newline at end of file diff --git a/soh/assets/objects/object_ane/object_ane.h b/soh/assets/objects/object_ane/object_ane.h index 0ee38f47e..1fe35b290 100644 --- a/soh/assets/objects/object_ane/object_ane.h +++ b/soh/assets/objects/object_ane/object_ane.h @@ -1,205 +1,90 @@ #pragma once -#define dgCuccoLadySkel "__OTR__objects/object_ane/gCuccoLadySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadySkel[] = dgCuccoLadySkel; -#else -static const char gCuccoLadySkel[] __attribute__((aligned (2))) = dgCuccoLadySkel; -#endif - -#define dgCuccoLadyDressDL "__OTR__objects/object_ane/gCuccoLadyDressDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDressDL[] = dgCuccoLadyDressDL; -#else -static const char gCuccoLadyDressDL[] __attribute__((aligned (2))) = dgCuccoLadyDressDL; -#endif - -#define dgCuccoLadyDL_6D20 "__OTR__objects/object_ane/gCuccoLadyDL_6D20" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_6D20[] = dgCuccoLadyDL_6D20; -#else -static const char gCuccoLadyDL_6D20[] __attribute__((aligned (2))) = dgCuccoLadyDL_6D20; -#endif - -#define dgCuccoLadyDL_6C38 "__OTR__objects/object_ane/gCuccoLadyDL_6C38" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_6C38[] = dgCuccoLadyDL_6C38; -#else -static const char gCuccoLadyDL_6C38[] __attribute__((aligned (2))) = dgCuccoLadyDL_6C38; -#endif - -#define dgCuccoLadyShoe1DL "__OTR__objects/object_ane/gCuccoLadyShoe1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyShoe1DL[] = dgCuccoLadyShoe1DL; -#else -static const char gCuccoLadyShoe1DL[] __attribute__((aligned (2))) = dgCuccoLadyShoe1DL; -#endif - -#define dgCuccoLadyDL_68E0 "__OTR__objects/object_ane/gCuccoLadyDL_68E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_68E0[] = dgCuccoLadyDL_68E0; -#else -static const char gCuccoLadyDL_68E0[] __attribute__((aligned (2))) = dgCuccoLadyDL_68E0; -#endif - -#define dgCuccoLadyDL_67F8 "__OTR__objects/object_ane/gCuccoLadyDL_67F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_67F8[] = dgCuccoLadyDL_67F8; -#else -static const char gCuccoLadyDL_67F8[] __attribute__((aligned (2))) = dgCuccoLadyDL_67F8; -#endif - -#define dgCuccoLadyShoe2DL "__OTR__objects/object_ane/gCuccoLadyShoe2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyShoe2DL[] = dgCuccoLadyShoe2DL; -#else -static const char gCuccoLadyShoe2DL[] __attribute__((aligned (2))) = dgCuccoLadyShoe2DL; -#endif - -#define dgCuccoLadyTorsoDL "__OTR__objects/object_ane/gCuccoLadyTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyTorsoDL[] = dgCuccoLadyTorsoDL; -#else -static const char gCuccoLadyTorsoDL[] __attribute__((aligned (2))) = dgCuccoLadyTorsoDL; -#endif - -#define dgCuccoLadyDL_6148 "__OTR__objects/object_ane/gCuccoLadyDL_6148" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_6148[] = dgCuccoLadyDL_6148; -#else -static const char gCuccoLadyDL_6148[] __attribute__((aligned (2))) = dgCuccoLadyDL_6148; -#endif - -#define dgCuccoLadyDL_6018 "__OTR__objects/object_ane/gCuccoLadyDL_6018" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_6018[] = dgCuccoLadyDL_6018; -#else -static const char gCuccoLadyDL_6018[] __attribute__((aligned (2))) = dgCuccoLadyDL_6018; -#endif - -#define dgCuccoLadyDL_5E28 "__OTR__objects/object_ane/gCuccoLadyDL_5E28" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_5E28[] = dgCuccoLadyDL_5E28; -#else -static const char gCuccoLadyDL_5E28[] __attribute__((aligned (2))) = dgCuccoLadyDL_5E28; -#endif - -#define dgCuccoLadyDL_5CF0 "__OTR__objects/object_ane/gCuccoLadyDL_5CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_5CF0[] = dgCuccoLadyDL_5CF0; -#else -static const char gCuccoLadyDL_5CF0[] __attribute__((aligned (2))) = dgCuccoLadyDL_5CF0; -#endif - -#define dgCuccoLadyDL_5BC0 "__OTR__objects/object_ane/gCuccoLadyDL_5BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_5BC0[] = dgCuccoLadyDL_5BC0; -#else -static const char gCuccoLadyDL_5BC0[] __attribute__((aligned (2))) = dgCuccoLadyDL_5BC0; -#endif - -#define dgCuccoLadyDL_59D0 "__OTR__objects/object_ane/gCuccoLadyDL_59D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyDL_59D0[] = dgCuccoLadyDL_59D0; -#else -static const char gCuccoLadyDL_59D0[] __attribute__((aligned (2))) = dgCuccoLadyDL_59D0; -#endif - -#define dgCuccoLadyHeadDL "__OTR__objects/object_ane/gCuccoLadyHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyHeadDL[] = dgCuccoLadyHeadDL; -#else -static const char gCuccoLadyHeadDL[] __attribute__((aligned (2))) = dgCuccoLadyHeadDL; -#endif - -#define dgCuccoLadyTLUT "__OTR__objects/object_ane/gCuccoLadyTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyTLUT[] = dgCuccoLadyTLUT; -#else -static const char gCuccoLadyTLUT[] __attribute__((aligned (2))) = dgCuccoLadyTLUT; -#endif - -#define dgCuccoLadyHairTex "__OTR__objects/object_ane/gCuccoLadyHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyHairTex[] = dgCuccoLadyHairTex; -#else -static const char gCuccoLadyHairTex[] __attribute__((aligned (2))) = dgCuccoLadyHairTex; -#endif - -#define dgCuccoLadyTex_0388 "__OTR__objects/object_ane/gCuccoLadyTex_0388" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyTex_0388[] = dgCuccoLadyTex_0388; -#else -static const char gCuccoLadyTex_0388[] __attribute__((aligned (2))) = dgCuccoLadyTex_0388; -#endif - -#define dgCuccoLadyEarTex "__OTR__objects/object_ane/gCuccoLadyEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyEarTex[] = dgCuccoLadyEarTex; -#else -static const char gCuccoLadyEarTex[] __attribute__((aligned (2))) = dgCuccoLadyEarTex; -#endif - -#define dgCuccoLadyMouthTex "__OTR__objects/object_ane/gCuccoLadyMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyMouthTex[] = dgCuccoLadyMouthTex; -#else -static const char gCuccoLadyMouthTex[] __attribute__((aligned (2))) = dgCuccoLadyMouthTex; -#endif - -#define dgCuccoLadyBackOfHandTex "__OTR__objects/object_ane/gCuccoLadyBackOfHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyBackOfHandTex[] = dgCuccoLadyBackOfHandTex; -#else -static const char gCuccoLadyBackOfHandTex[] __attribute__((aligned (2))) = dgCuccoLadyBackOfHandTex; -#endif - -#define dgCuccoLadySleeveTex "__OTR__objects/object_ane/gCuccoLadySleeveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadySleeveTex[] = dgCuccoLadySleeveTex; -#else -static const char gCuccoLadySleeveTex[] __attribute__((aligned (2))) = dgCuccoLadySleeveTex; -#endif - -#define dgCuccoLadyShirtButtonTex "__OTR__objects/object_ane/gCuccoLadyShirtButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyShirtButtonTex[] = dgCuccoLadyShirtButtonTex; -#else -static const char gCuccoLadyShirtButtonTex[] __attribute__((aligned (2))) = dgCuccoLadyShirtButtonTex; -#endif - -#define dgCuccoLadyWaistTex "__OTR__objects/object_ane/gCuccoLadyWaistTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyWaistTex[] = dgCuccoLadyWaistTex; -#else -static const char gCuccoLadyWaistTex[] __attribute__((aligned (2))) = dgCuccoLadyWaistTex; -#endif - -#define dgCuccoLadySkirtTex "__OTR__objects/object_ane/gCuccoLadySkirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadySkirtTex[] = dgCuccoLadySkirtTex; -#else -static const char gCuccoLadySkirtTex[] __attribute__((aligned (2))) = dgCuccoLadySkirtTex; -#endif - -#define dgCuccoLadyEyeOpenTex "__OTR__objects/object_ane/gCuccoLadyEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyEyeOpenTex[] = dgCuccoLadyEyeOpenTex; -#else -static const char gCuccoLadyEyeOpenTex[] __attribute__((aligned (2))) = dgCuccoLadyEyeOpenTex; -#endif - -#define dgCuccoLadyEyeHalfTex "__OTR__objects/object_ane/gCuccoLadyEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyEyeHalfTex[] = dgCuccoLadyEyeHalfTex; -#else -static const char gCuccoLadyEyeHalfTex[] __attribute__((aligned (2))) = dgCuccoLadyEyeHalfTex; -#endif - -#define dgCuccoLadyEyeClosedTex "__OTR__objects/object_ane/gCuccoLadyEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLadyEyeClosedTex[] = dgCuccoLadyEyeClosedTex; -#else -static const char gCuccoLadyEyeClosedTex[] __attribute__((aligned (2))) = dgCuccoLadyEyeClosedTex; -#endif - +#include "align_asset_macro.h" + +#define dgCuccoLadySkel "__OTR__objects/object_ane/gCuccoLadySkel" +static const ALIGN_ASSET(2) char gCuccoLadySkel[] = dgCuccoLadySkel; + +#define dgCuccoLadyDressDL "__OTR__objects/object_ane/gCuccoLadyDressDL" +static const ALIGN_ASSET(2) char gCuccoLadyDressDL[] = dgCuccoLadyDressDL; + +#define dgCuccoLadyDL_6D20 "__OTR__objects/object_ane/gCuccoLadyDL_6D20" +static const ALIGN_ASSET(2) char gCuccoLadyDL_6D20[] = dgCuccoLadyDL_6D20; + +#define dgCuccoLadyDL_6C38 "__OTR__objects/object_ane/gCuccoLadyDL_6C38" +static const ALIGN_ASSET(2) char gCuccoLadyDL_6C38[] = dgCuccoLadyDL_6C38; + +#define dgCuccoLadyShoe1DL "__OTR__objects/object_ane/gCuccoLadyShoe1DL" +static const ALIGN_ASSET(2) char gCuccoLadyShoe1DL[] = dgCuccoLadyShoe1DL; + +#define dgCuccoLadyDL_68E0 "__OTR__objects/object_ane/gCuccoLadyDL_68E0" +static const ALIGN_ASSET(2) char gCuccoLadyDL_68E0[] = dgCuccoLadyDL_68E0; + +#define dgCuccoLadyDL_67F8 "__OTR__objects/object_ane/gCuccoLadyDL_67F8" +static const ALIGN_ASSET(2) char gCuccoLadyDL_67F8[] = dgCuccoLadyDL_67F8; + +#define dgCuccoLadyShoe2DL "__OTR__objects/object_ane/gCuccoLadyShoe2DL" +static const ALIGN_ASSET(2) char gCuccoLadyShoe2DL[] = dgCuccoLadyShoe2DL; + +#define dgCuccoLadyTorsoDL "__OTR__objects/object_ane/gCuccoLadyTorsoDL" +static const ALIGN_ASSET(2) char gCuccoLadyTorsoDL[] = dgCuccoLadyTorsoDL; + +#define dgCuccoLadyDL_6148 "__OTR__objects/object_ane/gCuccoLadyDL_6148" +static const ALIGN_ASSET(2) char gCuccoLadyDL_6148[] = dgCuccoLadyDL_6148; + +#define dgCuccoLadyDL_6018 "__OTR__objects/object_ane/gCuccoLadyDL_6018" +static const ALIGN_ASSET(2) char gCuccoLadyDL_6018[] = dgCuccoLadyDL_6018; + +#define dgCuccoLadyDL_5E28 "__OTR__objects/object_ane/gCuccoLadyDL_5E28" +static const ALIGN_ASSET(2) char gCuccoLadyDL_5E28[] = dgCuccoLadyDL_5E28; + +#define dgCuccoLadyDL_5CF0 "__OTR__objects/object_ane/gCuccoLadyDL_5CF0" +static const ALIGN_ASSET(2) char gCuccoLadyDL_5CF0[] = dgCuccoLadyDL_5CF0; + +#define dgCuccoLadyDL_5BC0 "__OTR__objects/object_ane/gCuccoLadyDL_5BC0" +static const ALIGN_ASSET(2) char gCuccoLadyDL_5BC0[] = dgCuccoLadyDL_5BC0; + +#define dgCuccoLadyDL_59D0 "__OTR__objects/object_ane/gCuccoLadyDL_59D0" +static const ALIGN_ASSET(2) char gCuccoLadyDL_59D0[] = dgCuccoLadyDL_59D0; + +#define dgCuccoLadyHeadDL "__OTR__objects/object_ane/gCuccoLadyHeadDL" +static const ALIGN_ASSET(2) char gCuccoLadyHeadDL[] = dgCuccoLadyHeadDL; + +#define dgCuccoLadyTLUT "__OTR__objects/object_ane/gCuccoLadyTLUT" +static const ALIGN_ASSET(2) char gCuccoLadyTLUT[] = dgCuccoLadyTLUT; + +#define dgCuccoLadyHairTex "__OTR__objects/object_ane/gCuccoLadyHairTex" +static const ALIGN_ASSET(2) char gCuccoLadyHairTex[] = dgCuccoLadyHairTex; + +#define dgCuccoLadyTex_0388 "__OTR__objects/object_ane/gCuccoLadyTex_0388" +static const ALIGN_ASSET(2) char gCuccoLadyTex_0388[] = dgCuccoLadyTex_0388; + +#define dgCuccoLadyEarTex "__OTR__objects/object_ane/gCuccoLadyEarTex" +static const ALIGN_ASSET(2) char gCuccoLadyEarTex[] = dgCuccoLadyEarTex; + +#define dgCuccoLadyMouthTex "__OTR__objects/object_ane/gCuccoLadyMouthTex" +static const ALIGN_ASSET(2) char gCuccoLadyMouthTex[] = dgCuccoLadyMouthTex; + +#define dgCuccoLadyBackOfHandTex "__OTR__objects/object_ane/gCuccoLadyBackOfHandTex" +static const ALIGN_ASSET(2) char gCuccoLadyBackOfHandTex[] = dgCuccoLadyBackOfHandTex; + +#define dgCuccoLadySleeveTex "__OTR__objects/object_ane/gCuccoLadySleeveTex" +static const ALIGN_ASSET(2) char gCuccoLadySleeveTex[] = dgCuccoLadySleeveTex; + +#define dgCuccoLadyShirtButtonTex "__OTR__objects/object_ane/gCuccoLadyShirtButtonTex" +static const ALIGN_ASSET(2) char gCuccoLadyShirtButtonTex[] = dgCuccoLadyShirtButtonTex; + +#define dgCuccoLadyWaistTex "__OTR__objects/object_ane/gCuccoLadyWaistTex" +static const ALIGN_ASSET(2) char gCuccoLadyWaistTex[] = dgCuccoLadyWaistTex; + +#define dgCuccoLadySkirtTex "__OTR__objects/object_ane/gCuccoLadySkirtTex" +static const ALIGN_ASSET(2) char gCuccoLadySkirtTex[] = dgCuccoLadySkirtTex; + +#define dgCuccoLadyEyeOpenTex "__OTR__objects/object_ane/gCuccoLadyEyeOpenTex" +static const ALIGN_ASSET(2) char gCuccoLadyEyeOpenTex[] = dgCuccoLadyEyeOpenTex; + +#define dgCuccoLadyEyeHalfTex "__OTR__objects/object_ane/gCuccoLadyEyeHalfTex" +static const ALIGN_ASSET(2) char gCuccoLadyEyeHalfTex[] = dgCuccoLadyEyeHalfTex; + +#define dgCuccoLadyEyeClosedTex "__OTR__objects/object_ane/gCuccoLadyEyeClosedTex" +static const ALIGN_ASSET(2) char gCuccoLadyEyeClosedTex[] = dgCuccoLadyEyeClosedTex; \ No newline at end of file diff --git a/soh/assets/objects/object_ani/object_ani.h b/soh/assets/objects/object_ani/object_ani.h index 3b2de9c5b..b61feda0f 100644 --- a/soh/assets/objects/object_ani/object_ani.h +++ b/soh/assets/objects/object_ani/object_ani.h @@ -1,233 +1,102 @@ #pragma once -#define dgRoofManSkel "__OTR__objects/object_ani/gRoofManSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManSkel[] = dgRoofManSkel; -#else -static const char gRoofManSkel[] __attribute__((aligned (2))) = dgRoofManSkel; -#endif - -#define dgRoofManWaistDL "__OTR__objects/object_ani/gRoofManWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManWaistDL[] = dgRoofManWaistDL; -#else -static const char gRoofManWaistDL[] __attribute__((aligned (2))) = dgRoofManWaistDL; -#endif - -#define dgRoofManLeftThighDL "__OTR__objects/object_ani/gRoofManLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManLeftThighDL[] = dgRoofManLeftThighDL; -#else -static const char gRoofManLeftThighDL[] __attribute__((aligned (2))) = dgRoofManLeftThighDL; -#endif - -#define dgRoofManLeftLegDL "__OTR__objects/object_ani/gRoofManLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManLeftLegDL[] = dgRoofManLeftLegDL; -#else -static const char gRoofManLeftLegDL[] __attribute__((aligned (2))) = dgRoofManLeftLegDL; -#endif - -#define dgRoofManLeftFootDL "__OTR__objects/object_ani/gRoofManLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManLeftFootDL[] = dgRoofManLeftFootDL; -#else -static const char gRoofManLeftFootDL[] __attribute__((aligned (2))) = dgRoofManLeftFootDL; -#endif - -#define dgRoofManRightThighDL "__OTR__objects/object_ani/gRoofManRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManRightThighDL[] = dgRoofManRightThighDL; -#else -static const char gRoofManRightThighDL[] __attribute__((aligned (2))) = dgRoofManRightThighDL; -#endif - -#define dgRoofManRightLegDL "__OTR__objects/object_ani/gRoofManRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManRightLegDL[] = dgRoofManRightLegDL; -#else -static const char gRoofManRightLegDL[] __attribute__((aligned (2))) = dgRoofManRightLegDL; -#endif - -#define dgRoofManRightFootDL "__OTR__objects/object_ani/gRoofManRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManRightFootDL[] = dgRoofManRightFootDL; -#else -static const char gRoofManRightFootDL[] __attribute__((aligned (2))) = dgRoofManRightFootDL; -#endif - -#define dgRoofManTorsoDL "__OTR__objects/object_ani/gRoofManTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManTorsoDL[] = dgRoofManTorsoDL; -#else -static const char gRoofManTorsoDL[] __attribute__((aligned (2))) = dgRoofManTorsoDL; -#endif - -#define dgRoofManLeftUpperArmDL "__OTR__objects/object_ani/gRoofManLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManLeftUpperArmDL[] = dgRoofManLeftUpperArmDL; -#else -static const char gRoofManLeftUpperArmDL[] __attribute__((aligned (2))) = dgRoofManLeftUpperArmDL; -#endif - -#define dgRoofManLeftForearmDL "__OTR__objects/object_ani/gRoofManLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManLeftForearmDL[] = dgRoofManLeftForearmDL; -#else -static const char gRoofManLeftForearmDL[] __attribute__((aligned (2))) = dgRoofManLeftForearmDL; -#endif - -#define dgRoofManLeftHandDL "__OTR__objects/object_ani/gRoofManLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManLeftHandDL[] = dgRoofManLeftHandDL; -#else -static const char gRoofManLeftHandDL[] __attribute__((aligned (2))) = dgRoofManLeftHandDL; -#endif - -#define dgRoofManRightUpperArmDL "__OTR__objects/object_ani/gRoofManRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManRightUpperArmDL[] = dgRoofManRightUpperArmDL; -#else -static const char gRoofManRightUpperArmDL[] __attribute__((aligned (2))) = dgRoofManRightUpperArmDL; -#endif - -#define dgRoofManRightForearmDL "__OTR__objects/object_ani/gRoofManRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManRightForearmDL[] = dgRoofManRightForearmDL; -#else -static const char gRoofManRightForearmDL[] __attribute__((aligned (2))) = dgRoofManRightForearmDL; -#endif - -#define dgRoofManRightHandDL "__OTR__objects/object_ani/gRoofManRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManRightHandDL[] = dgRoofManRightHandDL; -#else -static const char gRoofManRightHandDL[] __attribute__((aligned (2))) = dgRoofManRightHandDL; -#endif - -#define dgRoofManHeadDL "__OTR__objects/object_ani/gRoofManHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManHeadDL[] = dgRoofManHeadDL; -#else -static const char gRoofManHeadDL[] __attribute__((aligned (2))) = dgRoofManHeadDL; -#endif - -#define dgRoofMan1TLUT "__OTR__objects/object_ani/gRoofMan1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofMan1TLUT[] = dgRoofMan1TLUT; -#else -static const char gRoofMan1TLUT[] __attribute__((aligned (2))) = dgRoofMan1TLUT; -#endif - -#define dgRoofMan2TLUT "__OTR__objects/object_ani/gRoofMan2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofMan2TLUT[] = dgRoofMan2TLUT; -#else -static const char gRoofMan2TLUT[] __attribute__((aligned (2))) = dgRoofMan2TLUT; -#endif - -#define dgRoofManHandBackTex "__OTR__objects/object_ani/gRoofManHandBackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManHandBackTex[] = dgRoofManHandBackTex; -#else -static const char gRoofManHandBackTex[] __attribute__((aligned (2))) = dgRoofManHandBackTex; -#endif - -#define dgRoofManForearmGradientTex "__OTR__objects/object_ani/gRoofManForearmGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManForearmGradientTex[] = dgRoofManForearmGradientTex; -#else -static const char gRoofManForearmGradientTex[] __attribute__((aligned (2))) = dgRoofManForearmGradientTex; -#endif - -#define dgRoofManThighGradientTex "__OTR__objects/object_ani/gRoofManThighGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManThighGradientTex[] = dgRoofManThighGradientTex; -#else -static const char gRoofManThighGradientTex[] __attribute__((aligned (2))) = dgRoofManThighGradientTex; -#endif - -#define dgRoofManSandalBuckleTex "__OTR__objects/object_ani/gRoofManSandalBuckleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManSandalBuckleTex[] = dgRoofManSandalBuckleTex; -#else -static const char gRoofManSandalBuckleTex[] __attribute__((aligned (2))) = dgRoofManSandalBuckleTex; -#endif - -#define dgRoofManTrouserPatternTex "__OTR__objects/object_ani/gRoofManTrouserPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManTrouserPatternTex[] = dgRoofManTrouserPatternTex; -#else -static const char gRoofManTrouserPatternTex[] __attribute__((aligned (2))) = dgRoofManTrouserPatternTex; -#endif - -#define dgRoofManSkinGradientTex "__OTR__objects/object_ani/gRoofManSkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManSkinGradientTex[] = dgRoofManSkinGradientTex; -#else -static const char gRoofManSkinGradientTex[] __attribute__((aligned (2))) = dgRoofManSkinGradientTex; -#endif - -#define dgRoofManEarTex "__OTR__objects/object_ani/gRoofManEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManEarTex[] = dgRoofManEarTex; -#else -static const char gRoofManEarTex[] __attribute__((aligned (2))) = dgRoofManEarTex; -#endif - -#define dgRoofManHairTex "__OTR__objects/object_ani/gRoofManHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManHairTex[] = dgRoofManHairTex; -#else -static const char gRoofManHairTex[] __attribute__((aligned (2))) = dgRoofManHairTex; -#endif - -#define dgRoofManEyeOpenTex "__OTR__objects/object_ani/gRoofManEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManEyeOpenTex[] = dgRoofManEyeOpenTex; -#else -static const char gRoofManEyeOpenTex[] __attribute__((aligned (2))) = dgRoofManEyeOpenTex; -#endif - -#define dgRoofManEyeHalfTex "__OTR__objects/object_ani/gRoofManEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManEyeHalfTex[] = dgRoofManEyeHalfTex; -#else -static const char gRoofManEyeHalfTex[] __attribute__((aligned (2))) = dgRoofManEyeHalfTex; -#endif - -#define dgRoofManEyeClosedTex "__OTR__objects/object_ani/gRoofManEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManEyeClosedTex[] = dgRoofManEyeClosedTex; -#else -static const char gRoofManEyeClosedTex[] __attribute__((aligned (2))) = dgRoofManEyeClosedTex; -#endif - -#define dgRoofManKnockbackAnim "__OTR__objects/object_ani/gRoofManKnockbackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManKnockbackAnim[] = dgRoofManKnockbackAnim; -#else -static const char gRoofManKnockbackAnim[] __attribute__((aligned (2))) = dgRoofManKnockbackAnim; -#endif - -#define dgRoofManGettingUpAfterKnockbackAnim "__OTR__objects/object_ani/gRoofManGettingUpAfterKnockbackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManGettingUpAfterKnockbackAnim[] = dgRoofManGettingUpAfterKnockbackAnim; -#else -static const char gRoofManGettingUpAfterKnockbackAnim[] __attribute__((aligned (2))) = dgRoofManGettingUpAfterKnockbackAnim; -#endif - -#define dgRoofManIdleAnim "__OTR__objects/object_ani/gRoofManIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoofManIdleAnim[] = dgRoofManIdleAnim; -#else -static const char gRoofManIdleAnim[] __attribute__((aligned (2))) = dgRoofManIdleAnim; -#endif - -#define dobject_aniTex_0011D8 "__OTR__objects/object_ani/object_aniTex_0011D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_aniTex_0011D8[] = dobject_aniTex_0011D8; -#else -static const char object_aniTex_0011D8[] __attribute__((aligned (2))) = dobject_aniTex_0011D8; -#endif - +#include "align_asset_macro.h" + +#define dgRoofManSkel "__OTR__objects/object_ani/gRoofManSkel" +static const ALIGN_ASSET(2) char gRoofManSkel[] = dgRoofManSkel; + +#define dgRoofManWaistDL "__OTR__objects/object_ani/gRoofManWaistDL" +static const ALIGN_ASSET(2) char gRoofManWaistDL[] = dgRoofManWaistDL; + +#define dgRoofManLeftThighDL "__OTR__objects/object_ani/gRoofManLeftThighDL" +static const ALIGN_ASSET(2) char gRoofManLeftThighDL[] = dgRoofManLeftThighDL; + +#define dgRoofManLeftLegDL "__OTR__objects/object_ani/gRoofManLeftLegDL" +static const ALIGN_ASSET(2) char gRoofManLeftLegDL[] = dgRoofManLeftLegDL; + +#define dgRoofManLeftFootDL "__OTR__objects/object_ani/gRoofManLeftFootDL" +static const ALIGN_ASSET(2) char gRoofManLeftFootDL[] = dgRoofManLeftFootDL; + +#define dgRoofManRightThighDL "__OTR__objects/object_ani/gRoofManRightThighDL" +static const ALIGN_ASSET(2) char gRoofManRightThighDL[] = dgRoofManRightThighDL; + +#define dgRoofManRightLegDL "__OTR__objects/object_ani/gRoofManRightLegDL" +static const ALIGN_ASSET(2) char gRoofManRightLegDL[] = dgRoofManRightLegDL; + +#define dgRoofManRightFootDL "__OTR__objects/object_ani/gRoofManRightFootDL" +static const ALIGN_ASSET(2) char gRoofManRightFootDL[] = dgRoofManRightFootDL; + +#define dgRoofManTorsoDL "__OTR__objects/object_ani/gRoofManTorsoDL" +static const ALIGN_ASSET(2) char gRoofManTorsoDL[] = dgRoofManTorsoDL; + +#define dgRoofManLeftUpperArmDL "__OTR__objects/object_ani/gRoofManLeftUpperArmDL" +static const ALIGN_ASSET(2) char gRoofManLeftUpperArmDL[] = dgRoofManLeftUpperArmDL; + +#define dgRoofManLeftForearmDL "__OTR__objects/object_ani/gRoofManLeftForearmDL" +static const ALIGN_ASSET(2) char gRoofManLeftForearmDL[] = dgRoofManLeftForearmDL; + +#define dgRoofManLeftHandDL "__OTR__objects/object_ani/gRoofManLeftHandDL" +static const ALIGN_ASSET(2) char gRoofManLeftHandDL[] = dgRoofManLeftHandDL; + +#define dgRoofManRightUpperArmDL "__OTR__objects/object_ani/gRoofManRightUpperArmDL" +static const ALIGN_ASSET(2) char gRoofManRightUpperArmDL[] = dgRoofManRightUpperArmDL; + +#define dgRoofManRightForearmDL "__OTR__objects/object_ani/gRoofManRightForearmDL" +static const ALIGN_ASSET(2) char gRoofManRightForearmDL[] = dgRoofManRightForearmDL; + +#define dgRoofManRightHandDL "__OTR__objects/object_ani/gRoofManRightHandDL" +static const ALIGN_ASSET(2) char gRoofManRightHandDL[] = dgRoofManRightHandDL; + +#define dgRoofManHeadDL "__OTR__objects/object_ani/gRoofManHeadDL" +static const ALIGN_ASSET(2) char gRoofManHeadDL[] = dgRoofManHeadDL; + +#define dgRoofMan1TLUT "__OTR__objects/object_ani/gRoofMan1TLUT" +static const ALIGN_ASSET(2) char gRoofMan1TLUT[] = dgRoofMan1TLUT; + +#define dgRoofMan2TLUT "__OTR__objects/object_ani/gRoofMan2TLUT" +static const ALIGN_ASSET(2) char gRoofMan2TLUT[] = dgRoofMan2TLUT; + +#define dgRoofManHandBackTex "__OTR__objects/object_ani/gRoofManHandBackTex" +static const ALIGN_ASSET(2) char gRoofManHandBackTex[] = dgRoofManHandBackTex; + +#define dgRoofManForearmGradientTex "__OTR__objects/object_ani/gRoofManForearmGradientTex" +static const ALIGN_ASSET(2) char gRoofManForearmGradientTex[] = dgRoofManForearmGradientTex; + +#define dgRoofManThighGradientTex "__OTR__objects/object_ani/gRoofManThighGradientTex" +static const ALIGN_ASSET(2) char gRoofManThighGradientTex[] = dgRoofManThighGradientTex; + +#define dgRoofManSandalBuckleTex "__OTR__objects/object_ani/gRoofManSandalBuckleTex" +static const ALIGN_ASSET(2) char gRoofManSandalBuckleTex[] = dgRoofManSandalBuckleTex; + +#define dgRoofManTrouserPatternTex "__OTR__objects/object_ani/gRoofManTrouserPatternTex" +static const ALIGN_ASSET(2) char gRoofManTrouserPatternTex[] = dgRoofManTrouserPatternTex; + +#define dgRoofManSkinGradientTex "__OTR__objects/object_ani/gRoofManSkinGradientTex" +static const ALIGN_ASSET(2) char gRoofManSkinGradientTex[] = dgRoofManSkinGradientTex; + +#define dgRoofManEarTex "__OTR__objects/object_ani/gRoofManEarTex" +static const ALIGN_ASSET(2) char gRoofManEarTex[] = dgRoofManEarTex; + +#define dgRoofManHairTex "__OTR__objects/object_ani/gRoofManHairTex" +static const ALIGN_ASSET(2) char gRoofManHairTex[] = dgRoofManHairTex; + +#define dgRoofManEyeOpenTex "__OTR__objects/object_ani/gRoofManEyeOpenTex" +static const ALIGN_ASSET(2) char gRoofManEyeOpenTex[] = dgRoofManEyeOpenTex; + +#define dgRoofManEyeHalfTex "__OTR__objects/object_ani/gRoofManEyeHalfTex" +static const ALIGN_ASSET(2) char gRoofManEyeHalfTex[] = dgRoofManEyeHalfTex; + +#define dgRoofManEyeClosedTex "__OTR__objects/object_ani/gRoofManEyeClosedTex" +static const ALIGN_ASSET(2) char gRoofManEyeClosedTex[] = dgRoofManEyeClosedTex; + +#define dgRoofManKnockbackAnim "__OTR__objects/object_ani/gRoofManKnockbackAnim" +static const ALIGN_ASSET(2) char gRoofManKnockbackAnim[] = dgRoofManKnockbackAnim; + +#define dgRoofManGettingUpAfterKnockbackAnim "__OTR__objects/object_ani/gRoofManGettingUpAfterKnockbackAnim" +static const ALIGN_ASSET(2) char gRoofManGettingUpAfterKnockbackAnim[] = dgRoofManGettingUpAfterKnockbackAnim; + +#define dgRoofManIdleAnim "__OTR__objects/object_ani/gRoofManIdleAnim" +static const ALIGN_ASSET(2) char gRoofManIdleAnim[] = dgRoofManIdleAnim; + +#define dobject_aniTex_0011D8 "__OTR__objects/object_ani/object_aniTex_0011D8" +static const ALIGN_ASSET(2) char object_aniTex_0011D8[] = dobject_aniTex_0011D8; \ No newline at end of file diff --git a/soh/assets/objects/object_anubice/object_anubice.h b/soh/assets/objects/object_anubice/object_anubice.h index a6e08fd9e..2b4c47e1c 100644 --- a/soh/assets/objects/object_anubice/object_anubice.h +++ b/soh/assets/objects/object_anubice/object_anubice.h @@ -1,205 +1,90 @@ #pragma once -#define dgAnubiceSkel "__OTR__objects/object_anubice/gAnubiceSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkel[] = dgAnubiceSkel; -#else -static const char gAnubiceSkel[] __attribute__((aligned (2))) = dgAnubiceSkel; -#endif - -#define dgAnubiceFallDownAnim "__OTR__objects/object_anubice/gAnubiceFallDownAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceFallDownAnim[] = dgAnubiceFallDownAnim; -#else -static const char gAnubiceFallDownAnim[] __attribute__((aligned (2))) = dgAnubiceFallDownAnim; -#endif - -#define dgAnubiceAttackingAnim "__OTR__objects/object_anubice/gAnubiceAttackingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceAttackingAnim[] = dgAnubiceAttackingAnim; -#else -static const char gAnubiceAttackingAnim[] __attribute__((aligned (2))) = dgAnubiceAttackingAnim; -#endif - -#define dgAnubiceIdleAnim "__OTR__objects/object_anubice/gAnubiceIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceIdleAnim[] = dgAnubiceIdleAnim; -#else -static const char gAnubiceIdleAnim[] __attribute__((aligned (2))) = dgAnubiceIdleAnim; -#endif - -#define dgAnubiceEyesDL "__OTR__objects/object_anubice/gAnubiceEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceEyesDL[] = dgAnubiceEyesDL; -#else -static const char gAnubiceEyesDL[] __attribute__((aligned (2))) = dgAnubiceEyesDL; -#endif - -#define dgAnubiceFireAttackDL "__OTR__objects/object_anubice/gAnubiceFireAttackDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceFireAttackDL[] = dgAnubiceFireAttackDL; -#else -static const char gAnubiceFireAttackDL[] __attribute__((aligned (2))) = dgAnubiceFireAttackDL; -#endif - -#define dgAnubiceLaughingAnim "__OTR__objects/object_anubice/gAnubiceLaughingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceLaughingAnim[] = dgAnubiceLaughingAnim; -#else -static const char gAnubiceLaughingAnim[] __attribute__((aligned (2))) = dgAnubiceLaughingAnim; -#endif - -#define dgAnubiceStandUpAnim "__OTR__objects/object_anubice/gAnubiceStandUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceStandUpAnim[] = dgAnubiceStandUpAnim; -#else -static const char gAnubiceStandUpAnim[] __attribute__((aligned (2))) = dgAnubiceStandUpAnim; -#endif - -#define dgAnubiceUnusedParticleMaterialDL "__OTR__objects/object_anubice/gAnubiceUnusedParticleMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceUnusedParticleMaterialDL[] = dgAnubiceUnusedParticleMaterialDL; -#else -static const char gAnubiceUnusedParticleMaterialDL[] __attribute__((aligned (2))) = dgAnubiceUnusedParticleMaterialDL; -#endif - -#define dgAnubiceUnusedParticleModelDL "__OTR__objects/object_anubice/gAnubiceUnusedParticleModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceUnusedParticleModelDL[] = dgAnubiceUnusedParticleModelDL; -#else -static const char gAnubiceUnusedParticleModelDL[] __attribute__((aligned (2))) = dgAnubiceUnusedParticleModelDL; -#endif - -#define dgAnubiceAnim_000A48 "__OTR__objects/object_anubice/gAnubiceAnim_000A48" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceAnim_000A48[] = dgAnubiceAnim_000A48; -#else -static const char gAnubiceAnim_000A48[] __attribute__((aligned (2))) = dgAnubiceAnim_000A48; -#endif - -#define dgAnubiceAnim_000BAC "__OTR__objects/object_anubice/gAnubiceAnim_000BAC" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceAnim_000BAC[] = dgAnubiceAnim_000BAC; -#else -static const char gAnubiceAnim_000BAC[] __attribute__((aligned (2))) = dgAnubiceAnim_000BAC; -#endif - -#define dgAnubiceSkelLimbsLimb_0038B8DL_002CE0 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_0038B8DL_002CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkelLimbsLimb_0038B8DL_002CE0[] = dgAnubiceSkelLimbsLimb_0038B8DL_002CE0; -#else -static const char gAnubiceSkelLimbsLimb_0038B8DL_002CE0[] __attribute__((aligned (2))) = dgAnubiceSkelLimbsLimb_0038B8DL_002CE0; -#endif - -#define dgAnubiceSkelLimbsLimb_0038D0DL_002E30 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_0038D0DL_002E30" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkelLimbsLimb_0038D0DL_002E30[] = dgAnubiceSkelLimbsLimb_0038D0DL_002E30; -#else -static const char gAnubiceSkelLimbsLimb_0038D0DL_002E30[] __attribute__((aligned (2))) = dgAnubiceSkelLimbsLimb_0038D0DL_002E30; -#endif - -#define dgAnubiceSkelLimbsLimb_0038DCDL_002EE0 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_0038DCDL_002EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkelLimbsLimb_0038DCDL_002EE0[] = dgAnubiceSkelLimbsLimb_0038DCDL_002EE0; -#else -static const char gAnubiceSkelLimbsLimb_0038DCDL_002EE0[] __attribute__((aligned (2))) = dgAnubiceSkelLimbsLimb_0038DCDL_002EE0; -#endif - -#define dgAnubiceSkelLimbsLimb_0038F4DL_002F90 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_0038F4DL_002F90" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkelLimbsLimb_0038F4DL_002F90[] = dgAnubiceSkelLimbsLimb_0038F4DL_002F90; -#else -static const char gAnubiceSkelLimbsLimb_0038F4DL_002F90[] __attribute__((aligned (2))) = dgAnubiceSkelLimbsLimb_0038F4DL_002F90; -#endif - -#define dgAnubiceSkelLimbsLimb_003900DL_003040 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_003900DL_003040" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkelLimbsLimb_003900DL_003040[] = dgAnubiceSkelLimbsLimb_003900DL_003040; -#else -static const char gAnubiceSkelLimbsLimb_003900DL_003040[] __attribute__((aligned (2))) = dgAnubiceSkelLimbsLimb_003900DL_003040; -#endif - -#define dgAnubiceSkelLimbsLimb_003918DL_003108 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_003918DL_003108" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkelLimbsLimb_003918DL_003108[] = dgAnubiceSkelLimbsLimb_003918DL_003108; -#else -static const char gAnubiceSkelLimbsLimb_003918DL_003108[] __attribute__((aligned (2))) = dgAnubiceSkelLimbsLimb_003918DL_003108; -#endif - -#define dgAnubiceSkelLimbsLimb_003930DL_003288 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_003930DL_003288" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkelLimbsLimb_003930DL_003288[] = dgAnubiceSkelLimbsLimb_003930DL_003288; -#else -static const char gAnubiceSkelLimbsLimb_003930DL_003288[] __attribute__((aligned (2))) = dgAnubiceSkelLimbsLimb_003930DL_003288; -#endif - -#define dgAnubiceSkelLimbsLimb_003948DL_0031A0 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_003948DL_0031A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gAnubiceSkelLimbsLimb_003948DL_0031A0[] = dgAnubiceSkelLimbsLimb_003948DL_0031A0; -#else -static const char gAnubiceSkelLimbsLimb_003948DL_0031A0[] __attribute__((aligned (2))) = dgAnubiceSkelLimbsLimb_003948DL_0031A0; -#endif - -#define dobject_anubiceTex_001690 "__OTR__objects/object_anubice/object_anubiceTex_001690" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_001690[] = dobject_anubiceTex_001690; -#else -static const char object_anubiceTex_001690[] __attribute__((aligned (2))) = dobject_anubiceTex_001690; -#endif - -#define dobject_anubiceTex_0036A0 "__OTR__objects/object_anubice/object_anubiceTex_0036A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_0036A0[] = dobject_anubiceTex_0036A0; -#else -static const char object_anubiceTex_0036A0[] __attribute__((aligned (2))) = dobject_anubiceTex_0036A0; -#endif - -#define dobject_anubiceTex_001090 "__OTR__objects/object_anubice/object_anubiceTex_001090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_001090[] = dobject_anubiceTex_001090; -#else -static const char object_anubiceTex_001090[] __attribute__((aligned (2))) = dobject_anubiceTex_001090; -#endif - -#define dobject_anubiceTex_000F90 "__OTR__objects/object_anubice/object_anubiceTex_000F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_000F90[] = dobject_anubiceTex_000F90; -#else -static const char object_anubiceTex_000F90[] __attribute__((aligned (2))) = dobject_anubiceTex_000F90; -#endif - -#define dobject_anubiceTex_001110 "__OTR__objects/object_anubice/object_anubiceTex_001110" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_001110[] = dobject_anubiceTex_001110; -#else -static const char object_anubiceTex_001110[] __attribute__((aligned (2))) = dobject_anubiceTex_001110; -#endif - -#define dobject_anubiceTex_001510 "__OTR__objects/object_anubice/object_anubiceTex_001510" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_001510[] = dobject_anubiceTex_001510; -#else -static const char object_anubiceTex_001510[] __attribute__((aligned (2))) = dobject_anubiceTex_001510; -#endif - -#define dobject_anubiceTex_001590 "__OTR__objects/object_anubice/object_anubiceTex_001590" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_001590[] = dobject_anubiceTex_001590; -#else -static const char object_anubiceTex_001590[] __attribute__((aligned (2))) = dobject_anubiceTex_001590; -#endif - -#define dobject_anubiceTex_001610 "__OTR__objects/object_anubice/object_anubiceTex_001610" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_001610[] = dobject_anubiceTex_001610; -#else -static const char object_anubiceTex_001610[] __attribute__((aligned (2))) = dobject_anubiceTex_001610; -#endif - -#define dobject_anubiceTex_001A90 "__OTR__objects/object_anubice/object_anubiceTex_001A90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_anubiceTex_001A90[] = dobject_anubiceTex_001A90; -#else -static const char object_anubiceTex_001A90[] __attribute__((aligned (2))) = dobject_anubiceTex_001A90; -#endif - +#include "align_asset_macro.h" + +#define dgAnubiceSkel "__OTR__objects/object_anubice/gAnubiceSkel" +static const ALIGN_ASSET(2) char gAnubiceSkel[] = dgAnubiceSkel; + +#define dgAnubiceFallDownAnim "__OTR__objects/object_anubice/gAnubiceFallDownAnim" +static const ALIGN_ASSET(2) char gAnubiceFallDownAnim[] = dgAnubiceFallDownAnim; + +#define dgAnubiceAttackingAnim "__OTR__objects/object_anubice/gAnubiceAttackingAnim" +static const ALIGN_ASSET(2) char gAnubiceAttackingAnim[] = dgAnubiceAttackingAnim; + +#define dgAnubiceIdleAnim "__OTR__objects/object_anubice/gAnubiceIdleAnim" +static const ALIGN_ASSET(2) char gAnubiceIdleAnim[] = dgAnubiceIdleAnim; + +#define dgAnubiceEyesDL "__OTR__objects/object_anubice/gAnubiceEyesDL" +static const ALIGN_ASSET(2) char gAnubiceEyesDL[] = dgAnubiceEyesDL; + +#define dgAnubiceFireAttackDL "__OTR__objects/object_anubice/gAnubiceFireAttackDL" +static const ALIGN_ASSET(2) char gAnubiceFireAttackDL[] = dgAnubiceFireAttackDL; + +#define dgAnubiceLaughingAnim "__OTR__objects/object_anubice/gAnubiceLaughingAnim" +static const ALIGN_ASSET(2) char gAnubiceLaughingAnim[] = dgAnubiceLaughingAnim; + +#define dgAnubiceStandUpAnim "__OTR__objects/object_anubice/gAnubiceStandUpAnim" +static const ALIGN_ASSET(2) char gAnubiceStandUpAnim[] = dgAnubiceStandUpAnim; + +#define dgAnubiceUnusedParticleMaterialDL "__OTR__objects/object_anubice/gAnubiceUnusedParticleMaterialDL" +static const ALIGN_ASSET(2) char gAnubiceUnusedParticleMaterialDL[] = dgAnubiceUnusedParticleMaterialDL; + +#define dgAnubiceUnusedParticleModelDL "__OTR__objects/object_anubice/gAnubiceUnusedParticleModelDL" +static const ALIGN_ASSET(2) char gAnubiceUnusedParticleModelDL[] = dgAnubiceUnusedParticleModelDL; + +#define dgAnubiceAnim_000A48 "__OTR__objects/object_anubice/gAnubiceAnim_000A48" +static const ALIGN_ASSET(2) char gAnubiceAnim_000A48[] = dgAnubiceAnim_000A48; + +#define dgAnubiceAnim_000BAC "__OTR__objects/object_anubice/gAnubiceAnim_000BAC" +static const ALIGN_ASSET(2) char gAnubiceAnim_000BAC[] = dgAnubiceAnim_000BAC; + +#define dgAnubiceSkelLimbsLimb_0038B8DL_002CE0 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_0038B8DL_002CE0" +static const ALIGN_ASSET(2) char gAnubiceSkelLimbsLimb_0038B8DL_002CE0[] = dgAnubiceSkelLimbsLimb_0038B8DL_002CE0; + +#define dgAnubiceSkelLimbsLimb_0038D0DL_002E30 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_0038D0DL_002E30" +static const ALIGN_ASSET(2) char gAnubiceSkelLimbsLimb_0038D0DL_002E30[] = dgAnubiceSkelLimbsLimb_0038D0DL_002E30; + +#define dgAnubiceSkelLimbsLimb_0038DCDL_002EE0 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_0038DCDL_002EE0" +static const ALIGN_ASSET(2) char gAnubiceSkelLimbsLimb_0038DCDL_002EE0[] = dgAnubiceSkelLimbsLimb_0038DCDL_002EE0; + +#define dgAnubiceSkelLimbsLimb_0038F4DL_002F90 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_0038F4DL_002F90" +static const ALIGN_ASSET(2) char gAnubiceSkelLimbsLimb_0038F4DL_002F90[] = dgAnubiceSkelLimbsLimb_0038F4DL_002F90; + +#define dgAnubiceSkelLimbsLimb_003900DL_003040 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_003900DL_003040" +static const ALIGN_ASSET(2) char gAnubiceSkelLimbsLimb_003900DL_003040[] = dgAnubiceSkelLimbsLimb_003900DL_003040; + +#define dgAnubiceSkelLimbsLimb_003918DL_003108 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_003918DL_003108" +static const ALIGN_ASSET(2) char gAnubiceSkelLimbsLimb_003918DL_003108[] = dgAnubiceSkelLimbsLimb_003918DL_003108; + +#define dgAnubiceSkelLimbsLimb_003930DL_003288 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_003930DL_003288" +static const ALIGN_ASSET(2) char gAnubiceSkelLimbsLimb_003930DL_003288[] = dgAnubiceSkelLimbsLimb_003930DL_003288; + +#define dgAnubiceSkelLimbsLimb_003948DL_0031A0 "__OTR__objects/object_anubice/gAnubiceSkelLimbsLimb_003948DL_0031A0" +static const ALIGN_ASSET(2) char gAnubiceSkelLimbsLimb_003948DL_0031A0[] = dgAnubiceSkelLimbsLimb_003948DL_0031A0; + +#define dobject_anubiceTex_001690 "__OTR__objects/object_anubice/object_anubiceTex_001690" +static const ALIGN_ASSET(2) char object_anubiceTex_001690[] = dobject_anubiceTex_001690; + +#define dobject_anubiceTex_0036A0 "__OTR__objects/object_anubice/object_anubiceTex_0036A0" +static const ALIGN_ASSET(2) char object_anubiceTex_0036A0[] = dobject_anubiceTex_0036A0; + +#define dobject_anubiceTex_001090 "__OTR__objects/object_anubice/object_anubiceTex_001090" +static const ALIGN_ASSET(2) char object_anubiceTex_001090[] = dobject_anubiceTex_001090; + +#define dobject_anubiceTex_000F90 "__OTR__objects/object_anubice/object_anubiceTex_000F90" +static const ALIGN_ASSET(2) char object_anubiceTex_000F90[] = dobject_anubiceTex_000F90; + +#define dobject_anubiceTex_001110 "__OTR__objects/object_anubice/object_anubiceTex_001110" +static const ALIGN_ASSET(2) char object_anubiceTex_001110[] = dobject_anubiceTex_001110; + +#define dobject_anubiceTex_001510 "__OTR__objects/object_anubice/object_anubiceTex_001510" +static const ALIGN_ASSET(2) char object_anubiceTex_001510[] = dobject_anubiceTex_001510; + +#define dobject_anubiceTex_001590 "__OTR__objects/object_anubice/object_anubiceTex_001590" +static const ALIGN_ASSET(2) char object_anubiceTex_001590[] = dobject_anubiceTex_001590; + +#define dobject_anubiceTex_001610 "__OTR__objects/object_anubice/object_anubiceTex_001610" +static const ALIGN_ASSET(2) char object_anubiceTex_001610[] = dobject_anubiceTex_001610; + +#define dobject_anubiceTex_001A90 "__OTR__objects/object_anubice/object_anubiceTex_001A90" +static const ALIGN_ASSET(2) char object_anubiceTex_001A90[] = dobject_anubiceTex_001A90; \ No newline at end of file diff --git a/soh/assets/objects/object_aob/object_aob.h b/soh/assets/objects/object_aob/object_aob.h index f06d509ed..f74720dc4 100644 --- a/soh/assets/objects/object_aob/object_aob.h +++ b/soh/assets/objects/object_aob/object_aob.h @@ -1,198 +1,87 @@ #pragma once -#define dgDogLadySkel "__OTR__objects/object_aob/gDogLadySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadySkel[] = dgDogLadySkel; -#else -static const char gDogLadySkel[] __attribute__((aligned (2))) = dgDogLadySkel; -#endif - -#define dgDogLadyDressDL "__OTR__objects/object_aob/gDogLadyDressDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDressDL[] = dgDogLadyDressDL; -#else -static const char gDogLadyDressDL[] __attribute__((aligned (2))) = dgDogLadyDressDL; -#endif - -#define dgDogLadyDL_54B8 "__OTR__objects/object_aob/gDogLadyDL_54B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_54B8[] = dgDogLadyDL_54B8; -#else -static const char gDogLadyDL_54B8[] __attribute__((aligned (2))) = dgDogLadyDL_54B8; -#endif - -#define dgDogLadyDL_53E8 "__OTR__objects/object_aob/gDogLadyDL_53E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_53E8[] = dgDogLadyDL_53E8; -#else -static const char gDogLadyDL_53E8[] __attribute__((aligned (2))) = dgDogLadyDL_53E8; -#endif - -#define dgDogLadyDL_5318 "__OTR__objects/object_aob/gDogLadyDL_5318" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_5318[] = dgDogLadyDL_5318; -#else -static const char gDogLadyDL_5318[] __attribute__((aligned (2))) = dgDogLadyDL_5318; -#endif - -#define dgDogLadyDL_5248 "__OTR__objects/object_aob/gDogLadyDL_5248" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_5248[] = dgDogLadyDL_5248; -#else -static const char gDogLadyDL_5248[] __attribute__((aligned (2))) = dgDogLadyDL_5248; -#endif - -#define dgDogLadyDL_5178 "__OTR__objects/object_aob/gDogLadyDL_5178" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_5178[] = dgDogLadyDL_5178; -#else -static const char gDogLadyDL_5178[] __attribute__((aligned (2))) = dgDogLadyDL_5178; -#endif - -#define dgDogLadyDL_50A8 "__OTR__objects/object_aob/gDogLadyDL_50A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_50A8[] = dgDogLadyDL_50A8; -#else -static const char gDogLadyDL_50A8[] __attribute__((aligned (2))) = dgDogLadyDL_50A8; -#endif - -#define dgDogLadyTorsoDL "__OTR__objects/object_aob/gDogLadyTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyTorsoDL[] = dgDogLadyTorsoDL; -#else -static const char gDogLadyTorsoDL[] __attribute__((aligned (2))) = dgDogLadyTorsoDL; -#endif - -#define dgDogLadyDL_4C60 "__OTR__objects/object_aob/gDogLadyDL_4C60" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_4C60[] = dgDogLadyDL_4C60; -#else -static const char gDogLadyDL_4C60[] __attribute__((aligned (2))) = dgDogLadyDL_4C60; -#endif - -#define dgDogLadyDL_4B30 "__OTR__objects/object_aob/gDogLadyDL_4B30" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_4B30[] = dgDogLadyDL_4B30; -#else -static const char gDogLadyDL_4B30[] __attribute__((aligned (2))) = dgDogLadyDL_4B30; -#endif - -#define dgDogLadyDL_4928 "__OTR__objects/object_aob/gDogLadyDL_4928" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_4928[] = dgDogLadyDL_4928; -#else -static const char gDogLadyDL_4928[] __attribute__((aligned (2))) = dgDogLadyDL_4928; -#endif - -#define dgDogLadyDL_4780 "__OTR__objects/object_aob/gDogLadyDL_4780" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_4780[] = dgDogLadyDL_4780; -#else -static const char gDogLadyDL_4780[] __attribute__((aligned (2))) = dgDogLadyDL_4780; -#endif - -#define dgDogLadyDL_4650 "__OTR__objects/object_aob/gDogLadyDL_4650" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_4650[] = dgDogLadyDL_4650; -#else -static const char gDogLadyDL_4650[] __attribute__((aligned (2))) = dgDogLadyDL_4650; -#endif - -#define dgDogLadyDL_4448 "__OTR__objects/object_aob/gDogLadyDL_4448" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDL_4448[] = dgDogLadyDL_4448; -#else -static const char gDogLadyDL_4448[] __attribute__((aligned (2))) = dgDogLadyDL_4448; -#endif - -#define dgDogLadyHeadDL "__OTR__objects/object_aob/gDogLadyHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyHeadDL[] = dgDogLadyHeadDL; -#else -static const char gDogLadyHeadDL[] __attribute__((aligned (2))) = dgDogLadyHeadDL; -#endif - -#define dgDogLadyTLUT "__OTR__objects/object_aob/gDogLadyTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyTLUT[] = dgDogLadyTLUT; -#else -static const char gDogLadyTLUT[] __attribute__((aligned (2))) = dgDogLadyTLUT; -#endif - -#define dgDogLadyHairTex "__OTR__objects/object_aob/gDogLadyHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyHairTex[] = dgDogLadyHairTex; -#else -static const char gDogLadyHairTex[] __attribute__((aligned (2))) = dgDogLadyHairTex; -#endif - -#define dgDogLadySkinGradientTex "__OTR__objects/object_aob/gDogLadySkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadySkinGradientTex[] = dgDogLadySkinGradientTex; -#else -static const char gDogLadySkinGradientTex[] __attribute__((aligned (2))) = dgDogLadySkinGradientTex; -#endif - -#define dgDogLadyEarTex "__OTR__objects/object_aob/gDogLadyEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyEarTex[] = dgDogLadyEarTex; -#else -static const char gDogLadyEarTex[] __attribute__((aligned (2))) = dgDogLadyEarTex; -#endif - -#define dgDogLadyLipGradientTex "__OTR__objects/object_aob/gDogLadyLipGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyLipGradientTex[] = dgDogLadyLipGradientTex; -#else -static const char gDogLadyLipGradientTex[] __attribute__((aligned (2))) = dgDogLadyLipGradientTex; -#endif - -#define dgDogLadyNostrilTex "__OTR__objects/object_aob/gDogLadyNostrilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyNostrilTex[] = dgDogLadyNostrilTex; -#else -static const char gDogLadyNostrilTex[] __attribute__((aligned (2))) = dgDogLadyNostrilTex; -#endif - -#define dgDogLadyBackOfHandTex "__OTR__objects/object_aob/gDogLadyBackOfHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyBackOfHandTex[] = dgDogLadyBackOfHandTex; -#else -static const char gDogLadyBackOfHandTex[] __attribute__((aligned (2))) = dgDogLadyBackOfHandTex; -#endif - -#define dgDogLadyDressShoulderPatternTex "__OTR__objects/object_aob/gDogLadyDressShoulderPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDressShoulderPatternTex[] = dgDogLadyDressShoulderPatternTex; -#else -static const char gDogLadyDressShoulderPatternTex[] __attribute__((aligned (2))) = dgDogLadyDressShoulderPatternTex; -#endif - -#define dgDogLadyDressTex "__OTR__objects/object_aob/gDogLadyDressTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyDressTex[] = dgDogLadyDressTex; -#else -static const char gDogLadyDressTex[] __attribute__((aligned (2))) = dgDogLadyDressTex; -#endif - -#define dgDogLadyEyeOpenTex "__OTR__objects/object_aob/gDogLadyEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyEyeOpenTex[] = dgDogLadyEyeOpenTex; -#else -static const char gDogLadyEyeOpenTex[] __attribute__((aligned (2))) = dgDogLadyEyeOpenTex; -#endif - -#define dgDogLadyEyeHalfTex "__OTR__objects/object_aob/gDogLadyEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyEyeHalfTex[] = dgDogLadyEyeHalfTex; -#else -static const char gDogLadyEyeHalfTex[] __attribute__((aligned (2))) = dgDogLadyEyeHalfTex; -#endif - -#define dgDogLadyEyeClosedTex "__OTR__objects/object_aob/gDogLadyEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLadyEyeClosedTex[] = dgDogLadyEyeClosedTex; -#else -static const char gDogLadyEyeClosedTex[] __attribute__((aligned (2))) = dgDogLadyEyeClosedTex; -#endif - +#include "align_asset_macro.h" + +#define dgDogLadySkel "__OTR__objects/object_aob/gDogLadySkel" +static const ALIGN_ASSET(2) char gDogLadySkel[] = dgDogLadySkel; + +#define dgDogLadyDressDL "__OTR__objects/object_aob/gDogLadyDressDL" +static const ALIGN_ASSET(2) char gDogLadyDressDL[] = dgDogLadyDressDL; + +#define dgDogLadyDL_54B8 "__OTR__objects/object_aob/gDogLadyDL_54B8" +static const ALIGN_ASSET(2) char gDogLadyDL_54B8[] = dgDogLadyDL_54B8; + +#define dgDogLadyDL_53E8 "__OTR__objects/object_aob/gDogLadyDL_53E8" +static const ALIGN_ASSET(2) char gDogLadyDL_53E8[] = dgDogLadyDL_53E8; + +#define dgDogLadyDL_5318 "__OTR__objects/object_aob/gDogLadyDL_5318" +static const ALIGN_ASSET(2) char gDogLadyDL_5318[] = dgDogLadyDL_5318; + +#define dgDogLadyDL_5248 "__OTR__objects/object_aob/gDogLadyDL_5248" +static const ALIGN_ASSET(2) char gDogLadyDL_5248[] = dgDogLadyDL_5248; + +#define dgDogLadyDL_5178 "__OTR__objects/object_aob/gDogLadyDL_5178" +static const ALIGN_ASSET(2) char gDogLadyDL_5178[] = dgDogLadyDL_5178; + +#define dgDogLadyDL_50A8 "__OTR__objects/object_aob/gDogLadyDL_50A8" +static const ALIGN_ASSET(2) char gDogLadyDL_50A8[] = dgDogLadyDL_50A8; + +#define dgDogLadyTorsoDL "__OTR__objects/object_aob/gDogLadyTorsoDL" +static const ALIGN_ASSET(2) char gDogLadyTorsoDL[] = dgDogLadyTorsoDL; + +#define dgDogLadyDL_4C60 "__OTR__objects/object_aob/gDogLadyDL_4C60" +static const ALIGN_ASSET(2) char gDogLadyDL_4C60[] = dgDogLadyDL_4C60; + +#define dgDogLadyDL_4B30 "__OTR__objects/object_aob/gDogLadyDL_4B30" +static const ALIGN_ASSET(2) char gDogLadyDL_4B30[] = dgDogLadyDL_4B30; + +#define dgDogLadyDL_4928 "__OTR__objects/object_aob/gDogLadyDL_4928" +static const ALIGN_ASSET(2) char gDogLadyDL_4928[] = dgDogLadyDL_4928; + +#define dgDogLadyDL_4780 "__OTR__objects/object_aob/gDogLadyDL_4780" +static const ALIGN_ASSET(2) char gDogLadyDL_4780[] = dgDogLadyDL_4780; + +#define dgDogLadyDL_4650 "__OTR__objects/object_aob/gDogLadyDL_4650" +static const ALIGN_ASSET(2) char gDogLadyDL_4650[] = dgDogLadyDL_4650; + +#define dgDogLadyDL_4448 "__OTR__objects/object_aob/gDogLadyDL_4448" +static const ALIGN_ASSET(2) char gDogLadyDL_4448[] = dgDogLadyDL_4448; + +#define dgDogLadyHeadDL "__OTR__objects/object_aob/gDogLadyHeadDL" +static const ALIGN_ASSET(2) char gDogLadyHeadDL[] = dgDogLadyHeadDL; + +#define dgDogLadyTLUT "__OTR__objects/object_aob/gDogLadyTLUT" +static const ALIGN_ASSET(2) char gDogLadyTLUT[] = dgDogLadyTLUT; + +#define dgDogLadyHairTex "__OTR__objects/object_aob/gDogLadyHairTex" +static const ALIGN_ASSET(2) char gDogLadyHairTex[] = dgDogLadyHairTex; + +#define dgDogLadySkinGradientTex "__OTR__objects/object_aob/gDogLadySkinGradientTex" +static const ALIGN_ASSET(2) char gDogLadySkinGradientTex[] = dgDogLadySkinGradientTex; + +#define dgDogLadyEarTex "__OTR__objects/object_aob/gDogLadyEarTex" +static const ALIGN_ASSET(2) char gDogLadyEarTex[] = dgDogLadyEarTex; + +#define dgDogLadyLipGradientTex "__OTR__objects/object_aob/gDogLadyLipGradientTex" +static const ALIGN_ASSET(2) char gDogLadyLipGradientTex[] = dgDogLadyLipGradientTex; + +#define dgDogLadyNostrilTex "__OTR__objects/object_aob/gDogLadyNostrilTex" +static const ALIGN_ASSET(2) char gDogLadyNostrilTex[] = dgDogLadyNostrilTex; + +#define dgDogLadyBackOfHandTex "__OTR__objects/object_aob/gDogLadyBackOfHandTex" +static const ALIGN_ASSET(2) char gDogLadyBackOfHandTex[] = dgDogLadyBackOfHandTex; + +#define dgDogLadyDressShoulderPatternTex "__OTR__objects/object_aob/gDogLadyDressShoulderPatternTex" +static const ALIGN_ASSET(2) char gDogLadyDressShoulderPatternTex[] = dgDogLadyDressShoulderPatternTex; + +#define dgDogLadyDressTex "__OTR__objects/object_aob/gDogLadyDressTex" +static const ALIGN_ASSET(2) char gDogLadyDressTex[] = dgDogLadyDressTex; + +#define dgDogLadyEyeOpenTex "__OTR__objects/object_aob/gDogLadyEyeOpenTex" +static const ALIGN_ASSET(2) char gDogLadyEyeOpenTex[] = dgDogLadyEyeOpenTex; + +#define dgDogLadyEyeHalfTex "__OTR__objects/object_aob/gDogLadyEyeHalfTex" +static const ALIGN_ASSET(2) char gDogLadyEyeHalfTex[] = dgDogLadyEyeHalfTex; + +#define dgDogLadyEyeClosedTex "__OTR__objects/object_aob/gDogLadyEyeClosedTex" +static const ALIGN_ASSET(2) char gDogLadyEyeClosedTex[] = dgDogLadyEyeClosedTex; \ No newline at end of file diff --git a/soh/assets/objects/object_b_heart/object_b_heart.h b/soh/assets/objects/object_b_heart/object_b_heart.h index 2a95694c4..5c1f6f2a7 100644 --- a/soh/assets/objects/object_b_heart/object_b_heart.h +++ b/soh/assets/objects/object_b_heart/object_b_heart.h @@ -1,30 +1,15 @@ #pragma once -#define dobject_b_heart_DL_000240 "__OTR__objects/object_b_heart/object_b_heart_DL_000240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_b_heart_DL_000240[] = dobject_b_heart_DL_000240; -#else -static const char object_b_heart_DL_000240[] __attribute__((aligned (2))) = dobject_b_heart_DL_000240; -#endif - -#define dobject_b_heart_DL_000348 "__OTR__objects/object_b_heart/object_b_heart_DL_000348" -#ifdef _WIN32 -static const __declspec(align(2)) char object_b_heart_DL_000348[] = dobject_b_heart_DL_000348; -#else -static const char object_b_heart_DL_000348[] __attribute__((aligned (2))) = dobject_b_heart_DL_000348; -#endif - -#define dobject_b_heart_Tex_0003C0 "__OTR__objects/object_b_heart/object_b_heart_Tex_0003C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_b_heart_Tex_0003C0[] = dobject_b_heart_Tex_0003C0; -#else -static const char object_b_heart_Tex_0003C0[] __attribute__((aligned (2))) = dobject_b_heart_Tex_0003C0; -#endif - -#define dobject_b_heart_Tex_0005C0 "__OTR__objects/object_b_heart/object_b_heart_Tex_0005C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_b_heart_Tex_0005C0[] = dobject_b_heart_Tex_0005C0; -#else -static const char object_b_heart_Tex_0005C0[] __attribute__((aligned (2))) = dobject_b_heart_Tex_0005C0; -#endif - +#include "align_asset_macro.h" + +#define dobject_b_heart_DL_000240 "__OTR__objects/object_b_heart/object_b_heart_DL_000240" +static const ALIGN_ASSET(2) char object_b_heart_DL_000240[] = dobject_b_heart_DL_000240; + +#define dobject_b_heart_DL_000348 "__OTR__objects/object_b_heart/object_b_heart_DL_000348" +static const ALIGN_ASSET(2) char object_b_heart_DL_000348[] = dobject_b_heart_DL_000348; + +#define dobject_b_heart_Tex_0003C0 "__OTR__objects/object_b_heart/object_b_heart_Tex_0003C0" +static const ALIGN_ASSET(2) char object_b_heart_Tex_0003C0[] = dobject_b_heart_Tex_0003C0; + +#define dobject_b_heart_Tex_0005C0 "__OTR__objects/object_b_heart/object_b_heart_Tex_0005C0" +static const ALIGN_ASSET(2) char object_b_heart_Tex_0005C0[] = dobject_b_heart_Tex_0005C0; \ No newline at end of file diff --git a/soh/assets/objects/object_bba/object_bba.h b/soh/assets/objects/object_bba/object_bba.h index de92b75e1..b8c09e602 100644 --- a/soh/assets/objects/object_bba/object_bba.h +++ b/soh/assets/objects/object_bba/object_bba.h @@ -1,184 +1,81 @@ #pragma once -#define dobject_bba_Skel_0000F0 "__OTR__objects/object_bba/object_bba_Skel_0000F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Skel_0000F0[] = dobject_bba_Skel_0000F0; -#else -static const char object_bba_Skel_0000F0[] __attribute__((aligned (2))) = dobject_bba_Skel_0000F0; -#endif - -#define dobject_bba_TLUT_000108 "__OTR__objects/object_bba/object_bba_TLUT_000108" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_TLUT_000108[] = dobject_bba_TLUT_000108; -#else -static const char object_bba_TLUT_000108[] __attribute__((aligned (2))) = dobject_bba_TLUT_000108; -#endif - -#define dobject_bba_Tex_000308 "__OTR__objects/object_bba/object_bba_Tex_000308" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_000308[] = dobject_bba_Tex_000308; -#else -static const char object_bba_Tex_000308[] __attribute__((aligned (2))) = dobject_bba_Tex_000308; -#endif - -#define dobject_bba_Tex_000348 "__OTR__objects/object_bba/object_bba_Tex_000348" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_000348[] = dobject_bba_Tex_000348; -#else -static const char object_bba_Tex_000348[] __attribute__((aligned (2))) = dobject_bba_Tex_000348; -#endif - -#define dobject_bba_Tex_000388 "__OTR__objects/object_bba/object_bba_Tex_000388" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_000388[] = dobject_bba_Tex_000388; -#else -static const char object_bba_Tex_000388[] __attribute__((aligned (2))) = dobject_bba_Tex_000388; -#endif - -#define dobject_bba_Tex_000488 "__OTR__objects/object_bba/object_bba_Tex_000488" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_000488[] = dobject_bba_Tex_000488; -#else -static const char object_bba_Tex_000488[] __attribute__((aligned (2))) = dobject_bba_Tex_000488; -#endif - -#define dobject_bba_Tex_0004C8 "__OTR__objects/object_bba/object_bba_Tex_0004C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_0004C8[] = dobject_bba_Tex_0004C8; -#else -static const char object_bba_Tex_0004C8[] __attribute__((aligned (2))) = dobject_bba_Tex_0004C8; -#endif - -#define dobject_bba_Tex_000CC8 "__OTR__objects/object_bba/object_bba_Tex_000CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_000CC8[] = dobject_bba_Tex_000CC8; -#else -static const char object_bba_Tex_000CC8[] __attribute__((aligned (2))) = dobject_bba_Tex_000CC8; -#endif - -#define dobject_bba_Tex_000DC8 "__OTR__objects/object_bba/object_bba_Tex_000DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_000DC8[] = dobject_bba_Tex_000DC8; -#else -static const char object_bba_Tex_000DC8[] __attribute__((aligned (2))) = dobject_bba_Tex_000DC8; -#endif - -#define dobject_bba_Tex_000E08 "__OTR__objects/object_bba/object_bba_Tex_000E08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_000E08[] = dobject_bba_Tex_000E08; -#else -static const char object_bba_Tex_000E08[] __attribute__((aligned (2))) = dobject_bba_Tex_000E08; -#endif - -#define dobject_bba_Tex_000F08 "__OTR__objects/object_bba/object_bba_Tex_000F08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_Tex_000F08[] = dobject_bba_Tex_000F08; -#else -static const char object_bba_Tex_000F08[] __attribute__((aligned (2))) = dobject_bba_Tex_000F08; -#endif - -#define dobject_bba_DL_002948 "__OTR__objects/object_bba/object_bba_DL_002948" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_002948[] = dobject_bba_DL_002948; -#else -static const char object_bba_DL_002948[] __attribute__((aligned (2))) = dobject_bba_DL_002948; -#endif - -#define dobject_bba_DL_003298 "__OTR__objects/object_bba/object_bba_DL_003298" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003298[] = dobject_bba_DL_003298; -#else -static const char object_bba_DL_003298[] __attribute__((aligned (2))) = dobject_bba_DL_003298; -#endif - -#define dobject_bba_DL_0033A8 "__OTR__objects/object_bba/object_bba_DL_0033A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_0033A8[] = dobject_bba_DL_0033A8; -#else -static const char object_bba_DL_0033A8[] __attribute__((aligned (2))) = dobject_bba_DL_0033A8; -#endif - -#define dobject_bba_DL_0034C8 "__OTR__objects/object_bba/object_bba_DL_0034C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_0034C8[] = dobject_bba_DL_0034C8; -#else -static const char object_bba_DL_0034C8[] __attribute__((aligned (2))) = dobject_bba_DL_0034C8; -#endif - -#define dobject_bba_DL_0035F0 "__OTR__objects/object_bba/object_bba_DL_0035F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_0035F0[] = dobject_bba_DL_0035F0; -#else -static const char object_bba_DL_0035F0[] __attribute__((aligned (2))) = dobject_bba_DL_0035F0; -#endif - -#define dobject_bba_DL_003700 "__OTR__objects/object_bba/object_bba_DL_003700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003700[] = dobject_bba_DL_003700; -#else -static const char object_bba_DL_003700[] __attribute__((aligned (2))) = dobject_bba_DL_003700; -#endif - -#define dobject_bba_DL_003820 "__OTR__objects/object_bba/object_bba_DL_003820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003820[] = dobject_bba_DL_003820; -#else -static const char object_bba_DL_003820[] __attribute__((aligned (2))) = dobject_bba_DL_003820; -#endif - -#define dobject_bba_DL_003948 "__OTR__objects/object_bba/object_bba_DL_003948" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003948[] = dobject_bba_DL_003948; -#else -static const char object_bba_DL_003948[] __attribute__((aligned (2))) = dobject_bba_DL_003948; -#endif - -#define dobject_bba_DL_003C80 "__OTR__objects/object_bba/object_bba_DL_003C80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003C80[] = dobject_bba_DL_003C80; -#else -static const char object_bba_DL_003C80[] __attribute__((aligned (2))) = dobject_bba_DL_003C80; -#endif - -#define dobject_bba_DL_003D50 "__OTR__objects/object_bba/object_bba_DL_003D50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003D50[] = dobject_bba_DL_003D50; -#else -static const char object_bba_DL_003D50[] __attribute__((aligned (2))) = dobject_bba_DL_003D50; -#endif - -#define dobject_bba_DL_003E20 "__OTR__objects/object_bba/object_bba_DL_003E20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003E20[] = dobject_bba_DL_003E20; -#else -static const char object_bba_DL_003E20[] __attribute__((aligned (2))) = dobject_bba_DL_003E20; -#endif - -#define dobject_bba_DL_003EF0 "__OTR__objects/object_bba/object_bba_DL_003EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003EF0[] = dobject_bba_DL_003EF0; -#else -static const char object_bba_DL_003EF0[] __attribute__((aligned (2))) = dobject_bba_DL_003EF0; -#endif - -#define dobject_bba_DL_003FC0 "__OTR__objects/object_bba/object_bba_DL_003FC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_003FC0[] = dobject_bba_DL_003FC0; -#else -static const char object_bba_DL_003FC0[] __attribute__((aligned (2))) = dobject_bba_DL_003FC0; -#endif - -#define dobject_bba_DL_004090 "__OTR__objects/object_bba/object_bba_DL_004090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_004090[] = dobject_bba_DL_004090; -#else -static const char object_bba_DL_004090[] __attribute__((aligned (2))) = dobject_bba_DL_004090; -#endif - -#define dobject_bba_DL_004160 "__OTR__objects/object_bba/object_bba_DL_004160" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bba_DL_004160[] = dobject_bba_DL_004160; -#else -static const char object_bba_DL_004160[] __attribute__((aligned (2))) = dobject_bba_DL_004160; -#endif - +#include "align_asset_macro.h" + +#define dobject_bba_Skel_0000F0 "__OTR__objects/object_bba/object_bba_Skel_0000F0" +static const ALIGN_ASSET(2) char object_bba_Skel_0000F0[] = dobject_bba_Skel_0000F0; + +#define dobject_bba_TLUT_000108 "__OTR__objects/object_bba/object_bba_TLUT_000108" +static const ALIGN_ASSET(2) char object_bba_TLUT_000108[] = dobject_bba_TLUT_000108; + +#define dobject_bba_Tex_000308 "__OTR__objects/object_bba/object_bba_Tex_000308" +static const ALIGN_ASSET(2) char object_bba_Tex_000308[] = dobject_bba_Tex_000308; + +#define dobject_bba_Tex_000348 "__OTR__objects/object_bba/object_bba_Tex_000348" +static const ALIGN_ASSET(2) char object_bba_Tex_000348[] = dobject_bba_Tex_000348; + +#define dobject_bba_Tex_000388 "__OTR__objects/object_bba/object_bba_Tex_000388" +static const ALIGN_ASSET(2) char object_bba_Tex_000388[] = dobject_bba_Tex_000388; + +#define dobject_bba_Tex_000488 "__OTR__objects/object_bba/object_bba_Tex_000488" +static const ALIGN_ASSET(2) char object_bba_Tex_000488[] = dobject_bba_Tex_000488; + +#define dobject_bba_Tex_0004C8 "__OTR__objects/object_bba/object_bba_Tex_0004C8" +static const ALIGN_ASSET(2) char object_bba_Tex_0004C8[] = dobject_bba_Tex_0004C8; + +#define dobject_bba_Tex_000CC8 "__OTR__objects/object_bba/object_bba_Tex_000CC8" +static const ALIGN_ASSET(2) char object_bba_Tex_000CC8[] = dobject_bba_Tex_000CC8; + +#define dobject_bba_Tex_000DC8 "__OTR__objects/object_bba/object_bba_Tex_000DC8" +static const ALIGN_ASSET(2) char object_bba_Tex_000DC8[] = dobject_bba_Tex_000DC8; + +#define dobject_bba_Tex_000E08 "__OTR__objects/object_bba/object_bba_Tex_000E08" +static const ALIGN_ASSET(2) char object_bba_Tex_000E08[] = dobject_bba_Tex_000E08; + +#define dobject_bba_Tex_000F08 "__OTR__objects/object_bba/object_bba_Tex_000F08" +static const ALIGN_ASSET(2) char object_bba_Tex_000F08[] = dobject_bba_Tex_000F08; + +#define dobject_bba_DL_002948 "__OTR__objects/object_bba/object_bba_DL_002948" +static const ALIGN_ASSET(2) char object_bba_DL_002948[] = dobject_bba_DL_002948; + +#define dobject_bba_DL_003298 "__OTR__objects/object_bba/object_bba_DL_003298" +static const ALIGN_ASSET(2) char object_bba_DL_003298[] = dobject_bba_DL_003298; + +#define dobject_bba_DL_0033A8 "__OTR__objects/object_bba/object_bba_DL_0033A8" +static const ALIGN_ASSET(2) char object_bba_DL_0033A8[] = dobject_bba_DL_0033A8; + +#define dobject_bba_DL_0034C8 "__OTR__objects/object_bba/object_bba_DL_0034C8" +static const ALIGN_ASSET(2) char object_bba_DL_0034C8[] = dobject_bba_DL_0034C8; + +#define dobject_bba_DL_0035F0 "__OTR__objects/object_bba/object_bba_DL_0035F0" +static const ALIGN_ASSET(2) char object_bba_DL_0035F0[] = dobject_bba_DL_0035F0; + +#define dobject_bba_DL_003700 "__OTR__objects/object_bba/object_bba_DL_003700" +static const ALIGN_ASSET(2) char object_bba_DL_003700[] = dobject_bba_DL_003700; + +#define dobject_bba_DL_003820 "__OTR__objects/object_bba/object_bba_DL_003820" +static const ALIGN_ASSET(2) char object_bba_DL_003820[] = dobject_bba_DL_003820; + +#define dobject_bba_DL_003948 "__OTR__objects/object_bba/object_bba_DL_003948" +static const ALIGN_ASSET(2) char object_bba_DL_003948[] = dobject_bba_DL_003948; + +#define dobject_bba_DL_003C80 "__OTR__objects/object_bba/object_bba_DL_003C80" +static const ALIGN_ASSET(2) char object_bba_DL_003C80[] = dobject_bba_DL_003C80; + +#define dobject_bba_DL_003D50 "__OTR__objects/object_bba/object_bba_DL_003D50" +static const ALIGN_ASSET(2) char object_bba_DL_003D50[] = dobject_bba_DL_003D50; + +#define dobject_bba_DL_003E20 "__OTR__objects/object_bba/object_bba_DL_003E20" +static const ALIGN_ASSET(2) char object_bba_DL_003E20[] = dobject_bba_DL_003E20; + +#define dobject_bba_DL_003EF0 "__OTR__objects/object_bba/object_bba_DL_003EF0" +static const ALIGN_ASSET(2) char object_bba_DL_003EF0[] = dobject_bba_DL_003EF0; + +#define dobject_bba_DL_003FC0 "__OTR__objects/object_bba/object_bba_DL_003FC0" +static const ALIGN_ASSET(2) char object_bba_DL_003FC0[] = dobject_bba_DL_003FC0; + +#define dobject_bba_DL_004090 "__OTR__objects/object_bba/object_bba_DL_004090" +static const ALIGN_ASSET(2) char object_bba_DL_004090[] = dobject_bba_DL_004090; + +#define dobject_bba_DL_004160 "__OTR__objects/object_bba/object_bba_DL_004160" +static const ALIGN_ASSET(2) char object_bba_DL_004160[] = dobject_bba_DL_004160; \ No newline at end of file diff --git a/soh/assets/objects/object_bdan_objects/object_bdan_objects.h b/soh/assets/objects/object_bdan_objects/object_bdan_objects.h index f757d90db..cfb236742 100644 --- a/soh/assets/objects/object_bdan_objects/object_bdan_objects.h +++ b/soh/assets/objects/object_bdan_objects/object_bdan_objects.h @@ -1,352 +1,153 @@ #pragma once -#define dgJabuObjectsTex_00140 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_00140" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_00140[] = dgJabuObjectsTex_00140; -#else -static const char gJabuObjectsTex_00140[] __attribute__((aligned (2))) = dgJabuObjectsTex_00140; -#endif - -#define dgJabuObjectsTex_007A0 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_007A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_007A0[] = dgJabuObjectsTex_007A0; -#else -static const char gJabuObjectsTex_007A0[] __attribute__((aligned (2))) = dgJabuObjectsTex_007A0; -#endif - -#define dgJabuObjectsTex_00E00 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_00E00" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_00E00[] = dgJabuObjectsTex_00E00; -#else -static const char gJabuObjectsTex_00E00[] __attribute__((aligned (2))) = dgJabuObjectsTex_00E00; -#endif - -#define dgJabuObjectsTex_01460 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_01460" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_01460[] = dgJabuObjectsTex_01460; -#else -static const char gJabuObjectsTex_01460[] __attribute__((aligned (2))) = dgJabuObjectsTex_01460; -#endif - -#define dgJabuObjectsTex_01AC0 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_01AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_01AC0[] = dgJabuObjectsTex_01AC0; -#else -static const char gJabuObjectsTex_01AC0[] __attribute__((aligned (2))) = dgJabuObjectsTex_01AC0; -#endif - -#define dgJabuObjectsTex_02120 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_02120" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_02120[] = dgJabuObjectsTex_02120; -#else -static const char gJabuObjectsTex_02120[] __attribute__((aligned (2))) = dgJabuObjectsTex_02120; -#endif - -#define dgJabuObjectsTex_02780 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_02780" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_02780[] = dgJabuObjectsTex_02780; -#else -static const char gJabuObjectsTex_02780[] __attribute__((aligned (2))) = dgJabuObjectsTex_02780; -#endif - -#define dgJabuObjectsTex_02DE0 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_02DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_02DE0[] = dgJabuObjectsTex_02DE0; -#else -static const char gJabuObjectsTex_02DE0[] __attribute__((aligned (2))) = dgJabuObjectsTex_02DE0; -#endif - -#define dgJabuObjectsTex_03498 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_03498" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_03498[] = dgJabuObjectsTex_03498; -#else -static const char gJabuObjectsTex_03498[] __attribute__((aligned (2))) = dgJabuObjectsTex_03498; -#endif - -#define dgJabuObjectsTex_03BB8 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_03BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_03BB8[] = dgJabuObjectsTex_03BB8; -#else -static const char gJabuObjectsTex_03BB8[] __attribute__((aligned (2))) = dgJabuObjectsTex_03BB8; -#endif - -#define dgJabuObjectsTex_043B8 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_043B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_043B8[] = dgJabuObjectsTex_043B8; -#else -static const char gJabuObjectsTex_043B8[] __attribute__((aligned (2))) = dgJabuObjectsTex_043B8; -#endif - -#define dgJabuObjectsTex_06748 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_06748" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_06748[] = dgJabuObjectsTex_06748; -#else -static const char gJabuObjectsTex_06748[] __attribute__((aligned (2))) = dgJabuObjectsTex_06748; -#endif - -#define dgJabuObjectsTex_06B48 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_06B48" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_06B48[] = dgJabuObjectsTex_06B48; -#else -static const char gJabuObjectsTex_06B48[] __attribute__((aligned (2))) = dgJabuObjectsTex_06B48; -#endif - -#define dgJabuObjectsTex_07348 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_07348" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_07348[] = dgJabuObjectsTex_07348; -#else -static const char gJabuObjectsTex_07348[] __attribute__((aligned (2))) = dgJabuObjectsTex_07348; -#endif - -#define dgJabuObjectsTex_08D10 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_08D10" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_08D10[] = dgJabuObjectsTex_08D10; -#else -static const char gJabuObjectsTex_08D10[] __attribute__((aligned (2))) = dgJabuObjectsTex_08D10; -#endif - -#define dgJabuObjectsTex_09D10 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_09D10" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_09D10[] = dgJabuObjectsTex_09D10; -#else -static const char gJabuObjectsTex_09D10[] __attribute__((aligned (2))) = dgJabuObjectsTex_09D10; -#endif - -#define dgJabuObjectsTex_0A510 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_0A510" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_0A510[] = dgJabuObjectsTex_0A510; -#else -static const char gJabuObjectsTex_0A510[] __attribute__((aligned (2))) = dgJabuObjectsTex_0A510; -#endif - -#define dgJabuObjectsTex_0B510 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_0B510" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_0B510[] = dgJabuObjectsTex_0B510; -#else -static const char gJabuObjectsTex_0B510[] __attribute__((aligned (2))) = dgJabuObjectsTex_0B510; -#endif - -#define dgJabuObjectsTex_0BD10 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_0BD10" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_0BD10[] = dgJabuObjectsTex_0BD10; -#else -static const char gJabuObjectsTex_0BD10[] __attribute__((aligned (2))) = dgJabuObjectsTex_0BD10; -#endif - -#define dgJabuObjectsTex_0C510 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_0C510" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsTex_0C510[] = dgJabuObjectsTex_0C510; -#else -static const char gJabuObjectsTex_0C510[] __attribute__((aligned (2))) = dgJabuObjectsTex_0C510; -#endif - -#define dgJabuObjects1TLUT "__OTR__objects/object_bdan_objects/gJabuObjects1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects1TLUT[] = dgJabuObjects1TLUT; -#else -static const char gJabuObjects1TLUT[] __attribute__((aligned (2))) = dgJabuObjects1TLUT; -#endif - -#define dgJabuObjects2TLUT "__OTR__objects/object_bdan_objects/gJabuObjects2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects2TLUT[] = dgJabuObjects2TLUT; -#else -static const char gJabuObjects2TLUT[] __attribute__((aligned (2))) = dgJabuObjects2TLUT; -#endif - -#define dgJabuObjects3TLUT "__OTR__objects/object_bdan_objects/gJabuObjects3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects3TLUT[] = dgJabuObjects3TLUT; -#else -static const char gJabuObjects3TLUT[] __attribute__((aligned (2))) = dgJabuObjects3TLUT; -#endif - -#define dgJabuObjects4TLUT "__OTR__objects/object_bdan_objects/gJabuObjects4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects4TLUT[] = dgJabuObjects4TLUT; -#else -static const char gJabuObjects4TLUT[] __attribute__((aligned (2))) = dgJabuObjects4TLUT; -#endif - -#define dgJabuObjects5TLUT "__OTR__objects/object_bdan_objects/gJabuObjects5TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects5TLUT[] = dgJabuObjects5TLUT; -#else -static const char gJabuObjects5TLUT[] __attribute__((aligned (2))) = dgJabuObjects5TLUT; -#endif - -#define dgJabuObjects6TLUT "__OTR__objects/object_bdan_objects/gJabuObjects6TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects6TLUT[] = dgJabuObjects6TLUT; -#else -static const char gJabuObjects6TLUT[] __attribute__((aligned (2))) = dgJabuObjects6TLUT; -#endif - -#define dgJabuObjects7TLUT "__OTR__objects/object_bdan_objects/gJabuObjects7TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects7TLUT[] = dgJabuObjects7TLUT; -#else -static const char gJabuObjects7TLUT[] __attribute__((aligned (2))) = dgJabuObjects7TLUT; -#endif - -#define dgJabuObjects8TLUT "__OTR__objects/object_bdan_objects/gJabuObjects8TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects8TLUT[] = dgJabuObjects8TLUT; -#else -static const char gJabuObjects8TLUT[] __attribute__((aligned (2))) = dgJabuObjects8TLUT; -#endif - -#define dgJabuObjects9TLUT "__OTR__objects/object_bdan_objects/gJabuObjects9TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects9TLUT[] = dgJabuObjects9TLUT; -#else -static const char gJabuObjects9TLUT[] __attribute__((aligned (2))) = dgJabuObjects9TLUT; -#endif - -#define dgJabuObjects10TLUT "__OTR__objects/object_bdan_objects/gJabuObjects10TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects10TLUT[] = dgJabuObjects10TLUT; -#else -static const char gJabuObjects10TLUT[] __attribute__((aligned (2))) = dgJabuObjects10TLUT; -#endif - -#define dgJabuObjects11TLUT "__OTR__objects/object_bdan_objects/gJabuObjects11TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjects11TLUT[] = dgJabuObjects11TLUT; -#else -static const char gJabuObjects11TLUT[] __attribute__((aligned (2))) = dgJabuObjects11TLUT; -#endif - -#define dgJabuDoorSection1DL "__OTR__objects/object_bdan_objects/gJabuDoorSection1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuDoorSection1DL[] = dgJabuDoorSection1DL; -#else -static const char gJabuDoorSection1DL[] __attribute__((aligned (2))) = dgJabuDoorSection1DL; -#endif - -#define dgJabuDoorSection2DL "__OTR__objects/object_bdan_objects/gJabuDoorSection2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuDoorSection2DL[] = dgJabuDoorSection2DL; -#else -static const char gJabuDoorSection2DL[] __attribute__((aligned (2))) = dgJabuDoorSection2DL; -#endif - -#define dgJabuDoorSection3DL "__OTR__objects/object_bdan_objects/gJabuDoorSection3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuDoorSection3DL[] = dgJabuDoorSection3DL; -#else -static const char gJabuDoorSection3DL[] __attribute__((aligned (2))) = dgJabuDoorSection3DL; -#endif - -#define dgJabuDoorSection4DL "__OTR__objects/object_bdan_objects/gJabuDoorSection4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuDoorSection4DL[] = dgJabuDoorSection4DL; -#else -static const char gJabuDoorSection4DL[] __attribute__((aligned (2))) = dgJabuDoorSection4DL; -#endif - -#define dgJabuDoorSection5DL "__OTR__objects/object_bdan_objects/gJabuDoorSection5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuDoorSection5DL[] = dgJabuDoorSection5DL; -#else -static const char gJabuDoorSection5DL[] __attribute__((aligned (2))) = dgJabuDoorSection5DL; -#endif - -#define dgJabuDoorSection6DL "__OTR__objects/object_bdan_objects/gJabuDoorSection6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuDoorSection6DL[] = dgJabuDoorSection6DL; -#else -static const char gJabuDoorSection6DL[] __attribute__((aligned (2))) = dgJabuDoorSection6DL; -#endif - -#define dgJabuDoorSection7DL "__OTR__objects/object_bdan_objects/gJabuDoorSection7DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuDoorSection7DL[] = dgJabuDoorSection7DL; -#else -static const char gJabuDoorSection7DL[] __attribute__((aligned (2))) = dgJabuDoorSection7DL; -#endif - -#define dgJabuDoorSection8DL "__OTR__objects/object_bdan_objects/gJabuDoorSection8DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuDoorSection8DL[] = dgJabuDoorSection8DL; -#else -static const char gJabuDoorSection8DL[] __attribute__((aligned (2))) = dgJabuDoorSection8DL; -#endif - -#define dgJabuWaterDL "__OTR__objects/object_bdan_objects/gJabuWaterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuWaterDL[] = dgJabuWaterDL; -#else -static const char gJabuWaterDL[] __attribute__((aligned (2))) = dgJabuWaterDL; -#endif - -#define dgJabuElevatorPlatformDL "__OTR__objects/object_bdan_objects/gJabuElevatorPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuElevatorPlatformDL[] = dgJabuElevatorPlatformDL; -#else -static const char gJabuElevatorPlatformDL[] __attribute__((aligned (2))) = dgJabuElevatorPlatformDL; -#endif - -#define dgJabuFallingPlatformDL "__OTR__objects/object_bdan_objects/gJabuFallingPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuFallingPlatformDL[] = dgJabuFallingPlatformDL; -#else -static const char gJabuFallingPlatformDL[] __attribute__((aligned (2))) = dgJabuFallingPlatformDL; -#endif - -#define dgJabuBlueFloorSwitchDL "__OTR__objects/object_bdan_objects/gJabuBlueFloorSwitchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuBlueFloorSwitchDL[] = dgJabuBlueFloorSwitchDL; -#else -static const char gJabuBlueFloorSwitchDL[] __attribute__((aligned (2))) = dgJabuBlueFloorSwitchDL; -#endif - -#define dgJabuYellowFloorSwitchDL "__OTR__objects/object_bdan_objects/gJabuYellowFloorSwitchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuYellowFloorSwitchDL[] = dgJabuYellowFloorSwitchDL; -#else -static const char gJabuYellowFloorSwitchDL[] __attribute__((aligned (2))) = dgJabuYellowFloorSwitchDL; -#endif - -#define dgJabuWebDoorDL "__OTR__objects/object_bdan_objects/gJabuWebDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuWebDoorDL[] = dgJabuWebDoorDL; -#else -static const char gJabuWebDoorDL[] __attribute__((aligned (2))) = dgJabuWebDoorDL; -#endif - -#define dgJabuObjectsLargeRotatingSpikePlatformDL "__OTR__objects/object_bdan_objects/gJabuObjectsLargeRotatingSpikePlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuObjectsLargeRotatingSpikePlatformDL[] = dgJabuObjectsLargeRotatingSpikePlatformDL; -#else -static const char gJabuObjectsLargeRotatingSpikePlatformDL[] __attribute__((aligned (2))) = dgJabuObjectsLargeRotatingSpikePlatformDL; -#endif - -#define dgJabuElevatorCol "__OTR__objects/object_bdan_objects/gJabuElevatorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuElevatorCol[] = dgJabuElevatorCol; -#else -static const char gJabuElevatorCol[] __attribute__((aligned (2))) = dgJabuElevatorCol; -#endif - -#define dgJabuLoweringPlatformCol "__OTR__objects/object_bdan_objects/gJabuLoweringPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuLoweringPlatformCol[] = dgJabuLoweringPlatformCol; -#else -static const char gJabuLoweringPlatformCol[] __attribute__((aligned (2))) = dgJabuLoweringPlatformCol; -#endif - -#define dgJabuFloorSwitchCol "__OTR__objects/object_bdan_objects/gJabuFloorSwitchCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuFloorSwitchCol[] = dgJabuFloorSwitchCol; -#else -static const char gJabuFloorSwitchCol[] __attribute__((aligned (2))) = dgJabuFloorSwitchCol; -#endif - -#define dgJabuBigOctoPlatformCol "__OTR__objects/object_bdan_objects/gJabuBigOctoPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuBigOctoPlatformCol[] = dgJabuBigOctoPlatformCol; -#else -static const char gJabuBigOctoPlatformCol[] __attribute__((aligned (2))) = dgJabuBigOctoPlatformCol; -#endif - +#include "align_asset_macro.h" + +#define dgJabuObjectsTex_00140 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_00140" +static const ALIGN_ASSET(2) char gJabuObjectsTex_00140[] = dgJabuObjectsTex_00140; + +#define dgJabuObjectsTex_007A0 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_007A0" +static const ALIGN_ASSET(2) char gJabuObjectsTex_007A0[] = dgJabuObjectsTex_007A0; + +#define dgJabuObjectsTex_00E00 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_00E00" +static const ALIGN_ASSET(2) char gJabuObjectsTex_00E00[] = dgJabuObjectsTex_00E00; + +#define dgJabuObjectsTex_01460 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_01460" +static const ALIGN_ASSET(2) char gJabuObjectsTex_01460[] = dgJabuObjectsTex_01460; + +#define dgJabuObjectsTex_01AC0 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_01AC0" +static const ALIGN_ASSET(2) char gJabuObjectsTex_01AC0[] = dgJabuObjectsTex_01AC0; + +#define dgJabuObjectsTex_02120 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_02120" +static const ALIGN_ASSET(2) char gJabuObjectsTex_02120[] = dgJabuObjectsTex_02120; + +#define dgJabuObjectsTex_02780 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_02780" +static const ALIGN_ASSET(2) char gJabuObjectsTex_02780[] = dgJabuObjectsTex_02780; + +#define dgJabuObjectsTex_02DE0 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_02DE0" +static const ALIGN_ASSET(2) char gJabuObjectsTex_02DE0[] = dgJabuObjectsTex_02DE0; + +#define dgJabuObjectsTex_03498 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_03498" +static const ALIGN_ASSET(2) char gJabuObjectsTex_03498[] = dgJabuObjectsTex_03498; + +#define dgJabuObjectsTex_03BB8 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_03BB8" +static const ALIGN_ASSET(2) char gJabuObjectsTex_03BB8[] = dgJabuObjectsTex_03BB8; + +#define dgJabuObjectsTex_043B8 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_043B8" +static const ALIGN_ASSET(2) char gJabuObjectsTex_043B8[] = dgJabuObjectsTex_043B8; + +#define dgJabuObjectsTex_06748 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_06748" +static const ALIGN_ASSET(2) char gJabuObjectsTex_06748[] = dgJabuObjectsTex_06748; + +#define dgJabuObjectsTex_06B48 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_06B48" +static const ALIGN_ASSET(2) char gJabuObjectsTex_06B48[] = dgJabuObjectsTex_06B48; + +#define dgJabuObjectsTex_07348 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_07348" +static const ALIGN_ASSET(2) char gJabuObjectsTex_07348[] = dgJabuObjectsTex_07348; + +#define dgJabuObjectsTex_08D10 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_08D10" +static const ALIGN_ASSET(2) char gJabuObjectsTex_08D10[] = dgJabuObjectsTex_08D10; + +#define dgJabuObjectsTex_09D10 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_09D10" +static const ALIGN_ASSET(2) char gJabuObjectsTex_09D10[] = dgJabuObjectsTex_09D10; + +#define dgJabuObjectsTex_0A510 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_0A510" +static const ALIGN_ASSET(2) char gJabuObjectsTex_0A510[] = dgJabuObjectsTex_0A510; + +#define dgJabuObjectsTex_0B510 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_0B510" +static const ALIGN_ASSET(2) char gJabuObjectsTex_0B510[] = dgJabuObjectsTex_0B510; + +#define dgJabuObjectsTex_0BD10 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_0BD10" +static const ALIGN_ASSET(2) char gJabuObjectsTex_0BD10[] = dgJabuObjectsTex_0BD10; + +#define dgJabuObjectsTex_0C510 "__OTR__objects/object_bdan_objects/gJabuObjectsTex_0C510" +static const ALIGN_ASSET(2) char gJabuObjectsTex_0C510[] = dgJabuObjectsTex_0C510; + +#define dgJabuObjects1TLUT "__OTR__objects/object_bdan_objects/gJabuObjects1TLUT" +static const ALIGN_ASSET(2) char gJabuObjects1TLUT[] = dgJabuObjects1TLUT; + +#define dgJabuObjects2TLUT "__OTR__objects/object_bdan_objects/gJabuObjects2TLUT" +static const ALIGN_ASSET(2) char gJabuObjects2TLUT[] = dgJabuObjects2TLUT; + +#define dgJabuObjects3TLUT "__OTR__objects/object_bdan_objects/gJabuObjects3TLUT" +static const ALIGN_ASSET(2) char gJabuObjects3TLUT[] = dgJabuObjects3TLUT; + +#define dgJabuObjects4TLUT "__OTR__objects/object_bdan_objects/gJabuObjects4TLUT" +static const ALIGN_ASSET(2) char gJabuObjects4TLUT[] = dgJabuObjects4TLUT; + +#define dgJabuObjects5TLUT "__OTR__objects/object_bdan_objects/gJabuObjects5TLUT" +static const ALIGN_ASSET(2) char gJabuObjects5TLUT[] = dgJabuObjects5TLUT; + +#define dgJabuObjects6TLUT "__OTR__objects/object_bdan_objects/gJabuObjects6TLUT" +static const ALIGN_ASSET(2) char gJabuObjects6TLUT[] = dgJabuObjects6TLUT; + +#define dgJabuObjects7TLUT "__OTR__objects/object_bdan_objects/gJabuObjects7TLUT" +static const ALIGN_ASSET(2) char gJabuObjects7TLUT[] = dgJabuObjects7TLUT; + +#define dgJabuObjects8TLUT "__OTR__objects/object_bdan_objects/gJabuObjects8TLUT" +static const ALIGN_ASSET(2) char gJabuObjects8TLUT[] = dgJabuObjects8TLUT; + +#define dgJabuObjects9TLUT "__OTR__objects/object_bdan_objects/gJabuObjects9TLUT" +static const ALIGN_ASSET(2) char gJabuObjects9TLUT[] = dgJabuObjects9TLUT; + +#define dgJabuObjects10TLUT "__OTR__objects/object_bdan_objects/gJabuObjects10TLUT" +static const ALIGN_ASSET(2) char gJabuObjects10TLUT[] = dgJabuObjects10TLUT; + +#define dgJabuObjects11TLUT "__OTR__objects/object_bdan_objects/gJabuObjects11TLUT" +static const ALIGN_ASSET(2) char gJabuObjects11TLUT[] = dgJabuObjects11TLUT; + +#define dgJabuDoorSection1DL "__OTR__objects/object_bdan_objects/gJabuDoorSection1DL" +static const ALIGN_ASSET(2) char gJabuDoorSection1DL[] = dgJabuDoorSection1DL; + +#define dgJabuDoorSection2DL "__OTR__objects/object_bdan_objects/gJabuDoorSection2DL" +static const ALIGN_ASSET(2) char gJabuDoorSection2DL[] = dgJabuDoorSection2DL; + +#define dgJabuDoorSection3DL "__OTR__objects/object_bdan_objects/gJabuDoorSection3DL" +static const ALIGN_ASSET(2) char gJabuDoorSection3DL[] = dgJabuDoorSection3DL; + +#define dgJabuDoorSection4DL "__OTR__objects/object_bdan_objects/gJabuDoorSection4DL" +static const ALIGN_ASSET(2) char gJabuDoorSection4DL[] = dgJabuDoorSection4DL; + +#define dgJabuDoorSection5DL "__OTR__objects/object_bdan_objects/gJabuDoorSection5DL" +static const ALIGN_ASSET(2) char gJabuDoorSection5DL[] = dgJabuDoorSection5DL; + +#define dgJabuDoorSection6DL "__OTR__objects/object_bdan_objects/gJabuDoorSection6DL" +static const ALIGN_ASSET(2) char gJabuDoorSection6DL[] = dgJabuDoorSection6DL; + +#define dgJabuDoorSection7DL "__OTR__objects/object_bdan_objects/gJabuDoorSection7DL" +static const ALIGN_ASSET(2) char gJabuDoorSection7DL[] = dgJabuDoorSection7DL; + +#define dgJabuDoorSection8DL "__OTR__objects/object_bdan_objects/gJabuDoorSection8DL" +static const ALIGN_ASSET(2) char gJabuDoorSection8DL[] = dgJabuDoorSection8DL; + +#define dgJabuWaterDL "__OTR__objects/object_bdan_objects/gJabuWaterDL" +static const ALIGN_ASSET(2) char gJabuWaterDL[] = dgJabuWaterDL; + +#define dgJabuElevatorPlatformDL "__OTR__objects/object_bdan_objects/gJabuElevatorPlatformDL" +static const ALIGN_ASSET(2) char gJabuElevatorPlatformDL[] = dgJabuElevatorPlatformDL; + +#define dgJabuFallingPlatformDL "__OTR__objects/object_bdan_objects/gJabuFallingPlatformDL" +static const ALIGN_ASSET(2) char gJabuFallingPlatformDL[] = dgJabuFallingPlatformDL; + +#define dgJabuBlueFloorSwitchDL "__OTR__objects/object_bdan_objects/gJabuBlueFloorSwitchDL" +static const ALIGN_ASSET(2) char gJabuBlueFloorSwitchDL[] = dgJabuBlueFloorSwitchDL; + +#define dgJabuYellowFloorSwitchDL "__OTR__objects/object_bdan_objects/gJabuYellowFloorSwitchDL" +static const ALIGN_ASSET(2) char gJabuYellowFloorSwitchDL[] = dgJabuYellowFloorSwitchDL; + +#define dgJabuWebDoorDL "__OTR__objects/object_bdan_objects/gJabuWebDoorDL" +static const ALIGN_ASSET(2) char gJabuWebDoorDL[] = dgJabuWebDoorDL; + +#define dgJabuObjectsLargeRotatingSpikePlatformDL "__OTR__objects/object_bdan_objects/gJabuObjectsLargeRotatingSpikePlatformDL" +static const ALIGN_ASSET(2) char gJabuObjectsLargeRotatingSpikePlatformDL[] = dgJabuObjectsLargeRotatingSpikePlatformDL; + +#define dgJabuElevatorCol "__OTR__objects/object_bdan_objects/gJabuElevatorCol" +static const ALIGN_ASSET(2) char gJabuElevatorCol[] = dgJabuElevatorCol; + +#define dgJabuLoweringPlatformCol "__OTR__objects/object_bdan_objects/gJabuLoweringPlatformCol" +static const ALIGN_ASSET(2) char gJabuLoweringPlatformCol[] = dgJabuLoweringPlatformCol; + +#define dgJabuFloorSwitchCol "__OTR__objects/object_bdan_objects/gJabuFloorSwitchCol" +static const ALIGN_ASSET(2) char gJabuFloorSwitchCol[] = dgJabuFloorSwitchCol; + +#define dgJabuBigOctoPlatformCol "__OTR__objects/object_bdan_objects/gJabuBigOctoPlatformCol" +static const ALIGN_ASSET(2) char gJabuBigOctoPlatformCol[] = dgJabuBigOctoPlatformCol; \ No newline at end of file diff --git a/soh/assets/objects/object_bdoor/object_bdoor.h b/soh/assets/objects/object_bdoor/object_bdoor.h index 2217a00d8..09629f38f 100644 --- a/soh/assets/objects/object_bdoor/object_bdoor.h +++ b/soh/assets/objects/object_bdoor/object_bdoor.h @@ -1,72 +1,33 @@ #pragma once -#define dobject_bdoor_Tex_000000 "__OTR__objects/object_bdoor/object_bdoor_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_Tex_000000[] = dobject_bdoor_Tex_000000; -#else -static const char object_bdoor_Tex_000000[] __attribute__((aligned (2))) = dobject_bdoor_Tex_000000; -#endif - -#define dobject_bdoor_DL_0010C0 "__OTR__objects/object_bdoor/object_bdoor_DL_0010C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_DL_0010C0[] = dobject_bdoor_DL_0010C0; -#else -static const char object_bdoor_DL_0010C0[] __attribute__((aligned (2))) = dobject_bdoor_DL_0010C0; -#endif - -#define dobject_bdoor_DL_001400 "__OTR__objects/object_bdoor/object_bdoor_DL_001400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_DL_001400[] = dobject_bdoor_DL_001400; -#else -static const char object_bdoor_DL_001400[] __attribute__((aligned (2))) = dobject_bdoor_DL_001400; -#endif - -#define dobject_bdoor_DL_001530 "__OTR__objects/object_bdoor/object_bdoor_DL_001530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_DL_001530[] = dobject_bdoor_DL_001530; -#else -static const char object_bdoor_DL_001530[] __attribute__((aligned (2))) = dobject_bdoor_DL_001530; -#endif - -#define dobject_bdoor_Tex_0015C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0015C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_Tex_0015C0[] = dobject_bdoor_Tex_0015C0; -#else -static const char object_bdoor_Tex_0015C0[] __attribute__((aligned (2))) = dobject_bdoor_Tex_0015C0; -#endif - -#define dobject_bdoor_Tex_0025C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0025C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_Tex_0025C0[] = dobject_bdoor_Tex_0025C0; -#else -static const char object_bdoor_Tex_0025C0[] __attribute__((aligned (2))) = dobject_bdoor_Tex_0025C0; -#endif - -#define dobject_bdoor_Tex_0035C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0035C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_Tex_0035C0[] = dobject_bdoor_Tex_0035C0; -#else -static const char object_bdoor_Tex_0035C0[] __attribute__((aligned (2))) = dobject_bdoor_Tex_0035C0; -#endif - -#define dobject_bdoor_Tex_0045C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0045C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_Tex_0045C0[] = dobject_bdoor_Tex_0045C0; -#else -static const char object_bdoor_Tex_0045C0[] __attribute__((aligned (2))) = dobject_bdoor_Tex_0045C0; -#endif - -#define dobject_bdoor_Tex_0055C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_Tex_0055C0[] = dobject_bdoor_Tex_0055C0; -#else -static const char object_bdoor_Tex_0055C0[] __attribute__((aligned (2))) = dobject_bdoor_Tex_0055C0; -#endif - -#define dobject_bdoor_Tex_0065C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0065C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bdoor_Tex_0065C0[] = dobject_bdoor_Tex_0065C0; -#else -static const char object_bdoor_Tex_0065C0[] __attribute__((aligned (2))) = dobject_bdoor_Tex_0065C0; -#endif - +#include "align_asset_macro.h" + +#define dobject_bdoor_Tex_000000 "__OTR__objects/object_bdoor/object_bdoor_Tex_000000" +static const ALIGN_ASSET(2) char object_bdoor_Tex_000000[] = dobject_bdoor_Tex_000000; + +#define dobject_bdoor_DL_0010C0 "__OTR__objects/object_bdoor/object_bdoor_DL_0010C0" +static const ALIGN_ASSET(2) char object_bdoor_DL_0010C0[] = dobject_bdoor_DL_0010C0; + +#define dobject_bdoor_DL_001400 "__OTR__objects/object_bdoor/object_bdoor_DL_001400" +static const ALIGN_ASSET(2) char object_bdoor_DL_001400[] = dobject_bdoor_DL_001400; + +#define dobject_bdoor_DL_001530 "__OTR__objects/object_bdoor/object_bdoor_DL_001530" +static const ALIGN_ASSET(2) char object_bdoor_DL_001530[] = dobject_bdoor_DL_001530; + +#define dobject_bdoor_Tex_0015C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0015C0" +static const ALIGN_ASSET(2) char object_bdoor_Tex_0015C0[] = dobject_bdoor_Tex_0015C0; + +#define dobject_bdoor_Tex_0025C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0025C0" +static const ALIGN_ASSET(2) char object_bdoor_Tex_0025C0[] = dobject_bdoor_Tex_0025C0; + +#define dobject_bdoor_Tex_0035C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0035C0" +static const ALIGN_ASSET(2) char object_bdoor_Tex_0035C0[] = dobject_bdoor_Tex_0035C0; + +#define dobject_bdoor_Tex_0045C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0045C0" +static const ALIGN_ASSET(2) char object_bdoor_Tex_0045C0[] = dobject_bdoor_Tex_0045C0; + +#define dobject_bdoor_Tex_0055C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0055C0" +static const ALIGN_ASSET(2) char object_bdoor_Tex_0055C0[] = dobject_bdoor_Tex_0055C0; + +#define dobject_bdoor_Tex_0065C0 "__OTR__objects/object_bdoor/object_bdoor_Tex_0065C0" +static const ALIGN_ASSET(2) char object_bdoor_Tex_0065C0[] = dobject_bdoor_Tex_0065C0; \ No newline at end of file diff --git a/soh/assets/objects/object_bg/object_bg.h b/soh/assets/objects/object_bg/object_bg.h index 3a76197eb..330d4b90e 100644 --- a/soh/assets/objects/object_bg/object_bg.h +++ b/soh/assets/objects/object_bg/object_bg.h @@ -1,156 +1,69 @@ #pragma once -#define dgChuGirlSkel "__OTR__objects/object_bg/gChuGirlSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlSkel[] = dgChuGirlSkel; -#else -static const char gChuGirlSkel[] __attribute__((aligned (2))) = dgChuGirlSkel; -#endif - -#define dgChuGirlWakeUpAnim "__OTR__objects/object_bg/gChuGirlWakeUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlWakeUpAnim[] = dgChuGirlWakeUpAnim; -#else -static const char gChuGirlWakeUpAnim[] __attribute__((aligned (2))) = dgChuGirlWakeUpAnim; -#endif - -#define dgChuGirlNoddingOffAnim "__OTR__objects/object_bg/gChuGirlNoddingOffAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlNoddingOffAnim[] = dgChuGirlNoddingOffAnim; -#else -static const char gChuGirlNoddingOffAnim[] __attribute__((aligned (2))) = dgChuGirlNoddingOffAnim; -#endif - -#define dgChuGirlLeanOverCounterAnim "__OTR__objects/object_bg/gChuGirlLeanOverCounterAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlLeanOverCounterAnim[] = dgChuGirlLeanOverCounterAnim; -#else -static const char gChuGirlLeanOverCounterAnim[] __attribute__((aligned (2))) = dgChuGirlLeanOverCounterAnim; -#endif - -#define dgChuGirlWaistDL "__OTR__objects/object_bg/gChuGirlWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlWaistDL[] = dgChuGirlWaistDL; -#else -static const char gChuGirlWaistDL[] __attribute__((aligned (2))) = dgChuGirlWaistDL; -#endif - -#define dgChuGirlTorsoDL "__OTR__objects/object_bg/gChuGirlTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlTorsoDL[] = dgChuGirlTorsoDL; -#else -static const char gChuGirlTorsoDL[] __attribute__((aligned (2))) = dgChuGirlTorsoDL; -#endif - -#define dgChuGirlNeckDL "__OTR__objects/object_bg/gChuGirlNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlNeckDL[] = dgChuGirlNeckDL; -#else -static const char gChuGirlNeckDL[] __attribute__((aligned (2))) = dgChuGirlNeckDL; -#endif - -#define dgChuGirlHeadDL "__OTR__objects/object_bg/gChuGirlHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlHeadDL[] = dgChuGirlHeadDL; -#else -static const char gChuGirlHeadDL[] __attribute__((aligned (2))) = dgChuGirlHeadDL; -#endif - -#define dgChuGirlLeftUpperArmDL "__OTR__objects/object_bg/gChuGirlLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlLeftUpperArmDL[] = dgChuGirlLeftUpperArmDL; -#else -static const char gChuGirlLeftUpperArmDL[] __attribute__((aligned (2))) = dgChuGirlLeftUpperArmDL; -#endif - -#define dgChuGirlLeftForearmDL "__OTR__objects/object_bg/gChuGirlLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlLeftForearmDL[] = dgChuGirlLeftForearmDL; -#else -static const char gChuGirlLeftForearmDL[] __attribute__((aligned (2))) = dgChuGirlLeftForearmDL; -#endif - -#define dgChuGirlLeftHandDL "__OTR__objects/object_bg/gChuGirlLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlLeftHandDL[] = dgChuGirlLeftHandDL; -#else -static const char gChuGirlLeftHandDL[] __attribute__((aligned (2))) = dgChuGirlLeftHandDL; -#endif - -#define dgChuGirlRightUpperArmDL "__OTR__objects/object_bg/gChuGirlRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlRightUpperArmDL[] = dgChuGirlRightUpperArmDL; -#else -static const char gChuGirlRightUpperArmDL[] __attribute__((aligned (2))) = dgChuGirlRightUpperArmDL; -#endif - -#define dgChuGirlRightForearmDL "__OTR__objects/object_bg/gChuGirlRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlRightForearmDL[] = dgChuGirlRightForearmDL; -#else -static const char gChuGirlRightForearmDL[] __attribute__((aligned (2))) = dgChuGirlRightForearmDL; -#endif - -#define dgChuGirlRightHandDL "__OTR__objects/object_bg/gChuGirlRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlRightHandDL[] = dgChuGirlRightHandDL; -#else -static const char gChuGirlRightHandDL[] __attribute__((aligned (2))) = dgChuGirlRightHandDL; -#endif - -#define dgChuGirlMouthTex "__OTR__objects/object_bg/gChuGirlMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlMouthTex[] = dgChuGirlMouthTex; -#else -static const char gChuGirlMouthTex[] __attribute__((aligned (2))) = dgChuGirlMouthTex; -#endif - -#define dgChuGirlSkinGradientTex "__OTR__objects/object_bg/gChuGirlSkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlSkinGradientTex[] = dgChuGirlSkinGradientTex; -#else -static const char gChuGirlSkinGradientTex[] __attribute__((aligned (2))) = dgChuGirlSkinGradientTex; -#endif - -#define dgChuGirlSweaterTex "__OTR__objects/object_bg/gChuGirlSweaterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlSweaterTex[] = dgChuGirlSweaterTex; -#else -static const char gChuGirlSweaterTex[] __attribute__((aligned (2))) = dgChuGirlSweaterTex; -#endif - -#define dgChuGirlUmbEarLicusTex "__OTR__objects/object_bg/gChuGirlUmbEarLicusTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlUmbEarLicusTex[] = dgChuGirlUmbEarLicusTex; -#else -static const char gChuGirlUmbEarLicusTex[] __attribute__((aligned (2))) = dgChuGirlUmbEarLicusTex; -#endif - -#define dgChuGirlHairTex "__OTR__objects/object_bg/gChuGirlHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlHairTex[] = dgChuGirlHairTex; -#else -static const char gChuGirlHairTex[] __attribute__((aligned (2))) = dgChuGirlHairTex; -#endif - -#define dgChuGirlEyeOpenTex "__OTR__objects/object_bg/gChuGirlEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlEyeOpenTex[] = dgChuGirlEyeOpenTex; -#else -static const char gChuGirlEyeOpenTex[] __attribute__((aligned (2))) = dgChuGirlEyeOpenTex; -#endif - -#define dgChuGirlEyeHalfTex "__OTR__objects/object_bg/gChuGirlEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlEyeHalfTex[] = dgChuGirlEyeHalfTex; -#else -static const char gChuGirlEyeHalfTex[] __attribute__((aligned (2))) = dgChuGirlEyeHalfTex; -#endif - -#define dgChuGirlEyeClosedTex "__OTR__objects/object_bg/gChuGirlEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChuGirlEyeClosedTex[] = dgChuGirlEyeClosedTex; -#else -static const char gChuGirlEyeClosedTex[] __attribute__((aligned (2))) = dgChuGirlEyeClosedTex; -#endif - +#include "align_asset_macro.h" + +#define dgChuGirlSkel "__OTR__objects/object_bg/gChuGirlSkel" +static const ALIGN_ASSET(2) char gChuGirlSkel[] = dgChuGirlSkel; + +#define dgChuGirlWakeUpAnim "__OTR__objects/object_bg/gChuGirlWakeUpAnim" +static const ALIGN_ASSET(2) char gChuGirlWakeUpAnim[] = dgChuGirlWakeUpAnim; + +#define dgChuGirlNoddingOffAnim "__OTR__objects/object_bg/gChuGirlNoddingOffAnim" +static const ALIGN_ASSET(2) char gChuGirlNoddingOffAnim[] = dgChuGirlNoddingOffAnim; + +#define dgChuGirlLeanOverCounterAnim "__OTR__objects/object_bg/gChuGirlLeanOverCounterAnim" +static const ALIGN_ASSET(2) char gChuGirlLeanOverCounterAnim[] = dgChuGirlLeanOverCounterAnim; + +#define dgChuGirlWaistDL "__OTR__objects/object_bg/gChuGirlWaistDL" +static const ALIGN_ASSET(2) char gChuGirlWaistDL[] = dgChuGirlWaistDL; + +#define dgChuGirlTorsoDL "__OTR__objects/object_bg/gChuGirlTorsoDL" +static const ALIGN_ASSET(2) char gChuGirlTorsoDL[] = dgChuGirlTorsoDL; + +#define dgChuGirlNeckDL "__OTR__objects/object_bg/gChuGirlNeckDL" +static const ALIGN_ASSET(2) char gChuGirlNeckDL[] = dgChuGirlNeckDL; + +#define dgChuGirlHeadDL "__OTR__objects/object_bg/gChuGirlHeadDL" +static const ALIGN_ASSET(2) char gChuGirlHeadDL[] = dgChuGirlHeadDL; + +#define dgChuGirlLeftUpperArmDL "__OTR__objects/object_bg/gChuGirlLeftUpperArmDL" +static const ALIGN_ASSET(2) char gChuGirlLeftUpperArmDL[] = dgChuGirlLeftUpperArmDL; + +#define dgChuGirlLeftForearmDL "__OTR__objects/object_bg/gChuGirlLeftForearmDL" +static const ALIGN_ASSET(2) char gChuGirlLeftForearmDL[] = dgChuGirlLeftForearmDL; + +#define dgChuGirlLeftHandDL "__OTR__objects/object_bg/gChuGirlLeftHandDL" +static const ALIGN_ASSET(2) char gChuGirlLeftHandDL[] = dgChuGirlLeftHandDL; + +#define dgChuGirlRightUpperArmDL "__OTR__objects/object_bg/gChuGirlRightUpperArmDL" +static const ALIGN_ASSET(2) char gChuGirlRightUpperArmDL[] = dgChuGirlRightUpperArmDL; + +#define dgChuGirlRightForearmDL "__OTR__objects/object_bg/gChuGirlRightForearmDL" +static const ALIGN_ASSET(2) char gChuGirlRightForearmDL[] = dgChuGirlRightForearmDL; + +#define dgChuGirlRightHandDL "__OTR__objects/object_bg/gChuGirlRightHandDL" +static const ALIGN_ASSET(2) char gChuGirlRightHandDL[] = dgChuGirlRightHandDL; + +#define dgChuGirlMouthTex "__OTR__objects/object_bg/gChuGirlMouthTex" +static const ALIGN_ASSET(2) char gChuGirlMouthTex[] = dgChuGirlMouthTex; + +#define dgChuGirlSkinGradientTex "__OTR__objects/object_bg/gChuGirlSkinGradientTex" +static const ALIGN_ASSET(2) char gChuGirlSkinGradientTex[] = dgChuGirlSkinGradientTex; + +#define dgChuGirlSweaterTex "__OTR__objects/object_bg/gChuGirlSweaterTex" +static const ALIGN_ASSET(2) char gChuGirlSweaterTex[] = dgChuGirlSweaterTex; + +#define dgChuGirlUmbEarLicusTex "__OTR__objects/object_bg/gChuGirlUmbEarLicusTex" +static const ALIGN_ASSET(2) char gChuGirlUmbEarLicusTex[] = dgChuGirlUmbEarLicusTex; + +#define dgChuGirlHairTex "__OTR__objects/object_bg/gChuGirlHairTex" +static const ALIGN_ASSET(2) char gChuGirlHairTex[] = dgChuGirlHairTex; + +#define dgChuGirlEyeOpenTex "__OTR__objects/object_bg/gChuGirlEyeOpenTex" +static const ALIGN_ASSET(2) char gChuGirlEyeOpenTex[] = dgChuGirlEyeOpenTex; + +#define dgChuGirlEyeHalfTex "__OTR__objects/object_bg/gChuGirlEyeHalfTex" +static const ALIGN_ASSET(2) char gChuGirlEyeHalfTex[] = dgChuGirlEyeHalfTex; + +#define dgChuGirlEyeClosedTex "__OTR__objects/object_bg/gChuGirlEyeClosedTex" +static const ALIGN_ASSET(2) char gChuGirlEyeClosedTex[] = dgChuGirlEyeClosedTex; \ No newline at end of file diff --git a/soh/assets/objects/object_bigokuta/object_bigokuta.h b/soh/assets/objects/object_bigokuta/object_bigokuta.h index 0756df3b9..85b0187e1 100644 --- a/soh/assets/objects/object_bigokuta/object_bigokuta.h +++ b/soh/assets/objects/object_bigokuta/object_bigokuta.h @@ -1,247 +1,108 @@ #pragma once -#define dobject_bigokuta_Anim_000444 "__OTR__objects/object_bigokuta/object_bigokuta_Anim_000444" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Anim_000444[] = dobject_bigokuta_Anim_000444; -#else -static const char object_bigokuta_Anim_000444[] __attribute__((aligned (2))) = dobject_bigokuta_Anim_000444; -#endif - -#define dobject_bigokuta_Anim_000A74 "__OTR__objects/object_bigokuta/object_bigokuta_Anim_000A74" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Anim_000A74[] = dobject_bigokuta_Anim_000A74; -#else -static const char object_bigokuta_Anim_000A74[] __attribute__((aligned (2))) = dobject_bigokuta_Anim_000A74; -#endif - -#define dobject_bigokuta_Anim_000D1C "__OTR__objects/object_bigokuta/object_bigokuta_Anim_000D1C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Anim_000D1C[] = dobject_bigokuta_Anim_000D1C; -#else -static const char object_bigokuta_Anim_000D1C[] __attribute__((aligned (2))) = dobject_bigokuta_Anim_000D1C; -#endif - -#define dobject_bigokuta_Anim_0014B8 "__OTR__objects/object_bigokuta/object_bigokuta_Anim_0014B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Anim_0014B8[] = dobject_bigokuta_Anim_0014B8; -#else -static const char object_bigokuta_Anim_0014B8[] __attribute__((aligned (2))) = dobject_bigokuta_Anim_0014B8; -#endif - -#define dobject_bigokuta_Anim_001CA4 "__OTR__objects/object_bigokuta/object_bigokuta_Anim_001CA4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Anim_001CA4[] = dobject_bigokuta_Anim_001CA4; -#else -static const char object_bigokuta_Anim_001CA4[] __attribute__((aligned (2))) = dobject_bigokuta_Anim_001CA4; -#endif - -#define dobject_bigokuta_DL_004090 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_004090[] = dobject_bigokuta_DL_004090; -#else -static const char object_bigokuta_DL_004090[] __attribute__((aligned (2))) = dobject_bigokuta_DL_004090; -#endif - -#define dobject_bigokuta_DL_004158 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004158" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_004158[] = dobject_bigokuta_DL_004158; -#else -static const char object_bigokuta_DL_004158[] __attribute__((aligned (2))) = dobject_bigokuta_DL_004158; -#endif - -#define dobject_bigokuta_DL_0042A8 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_0042A8[] = dobject_bigokuta_DL_0042A8; -#else -static const char object_bigokuta_DL_0042A8[] __attribute__((aligned (2))) = dobject_bigokuta_DL_0042A8; -#endif - -#define dobject_bigokuta_DL_0043D0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0043D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_0043D0[] = dobject_bigokuta_DL_0043D0; -#else -static const char object_bigokuta_DL_0043D0[] __attribute__((aligned (2))) = dobject_bigokuta_DL_0043D0; -#endif - -#define dobject_bigokuta_DL_0044F8 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0044F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_0044F8[] = dobject_bigokuta_DL_0044F8; -#else -static const char object_bigokuta_DL_0044F8[] __attribute__((aligned (2))) = dobject_bigokuta_DL_0044F8; -#endif - -#define dobject_bigokuta_DL_004AB8 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_004AB8[] = dobject_bigokuta_DL_004AB8; -#else -static const char object_bigokuta_DL_004AB8[] __attribute__((aligned (2))) = dobject_bigokuta_DL_004AB8; -#endif - -#define dobject_bigokuta_DL_004CA0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_004CA0[] = dobject_bigokuta_DL_004CA0; -#else -static const char object_bigokuta_DL_004CA0[] __attribute__((aligned (2))) = dobject_bigokuta_DL_004CA0; -#endif - -#define dobject_bigokuta_DL_004E10 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004E10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_004E10[] = dobject_bigokuta_DL_004E10; -#else -static const char object_bigokuta_DL_004E10[] __attribute__((aligned (2))) = dobject_bigokuta_DL_004E10; -#endif - -#define dobject_bigokuta_DL_004EB8 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_004EB8[] = dobject_bigokuta_DL_004EB8; -#else -static const char object_bigokuta_DL_004EB8[] __attribute__((aligned (2))) = dobject_bigokuta_DL_004EB8; -#endif - -#define dobject_bigokuta_DL_004F90 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_004F90[] = dobject_bigokuta_DL_004F90; -#else -static const char object_bigokuta_DL_004F90[] __attribute__((aligned (2))) = dobject_bigokuta_DL_004F90; -#endif - -#define dobject_bigokuta_DL_005038 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005038" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_005038[] = dobject_bigokuta_DL_005038; -#else -static const char object_bigokuta_DL_005038[] __attribute__((aligned (2))) = dobject_bigokuta_DL_005038; -#endif - -#define dobject_bigokuta_DL_005110 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005110" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_005110[] = dobject_bigokuta_DL_005110; -#else -static const char object_bigokuta_DL_005110[] __attribute__((aligned (2))) = dobject_bigokuta_DL_005110; -#endif - -#define dobject_bigokuta_DL_0051D0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0051D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_0051D0[] = dobject_bigokuta_DL_0051D0; -#else -static const char object_bigokuta_DL_0051D0[] __attribute__((aligned (2))) = dobject_bigokuta_DL_0051D0; -#endif - -#define dobject_bigokuta_DL_0053B0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0053B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_0053B0[] = dobject_bigokuta_DL_0053B0; -#else -static const char object_bigokuta_DL_0053B0[] __attribute__((aligned (2))) = dobject_bigokuta_DL_0053B0; -#endif - -#define dobject_bigokuta_DL_005470 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005470" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_005470[] = dobject_bigokuta_DL_005470; -#else -static const char object_bigokuta_DL_005470[] __attribute__((aligned (2))) = dobject_bigokuta_DL_005470; -#endif - -#define dobject_bigokuta_DL_005650 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_005650[] = dobject_bigokuta_DL_005650; -#else -static const char object_bigokuta_DL_005650[] __attribute__((aligned (2))) = dobject_bigokuta_DL_005650; -#endif - -#define dobject_bigokuta_DL_005710 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005710" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_005710[] = dobject_bigokuta_DL_005710; -#else -static const char object_bigokuta_DL_005710[] __attribute__((aligned (2))) = dobject_bigokuta_DL_005710; -#endif - -#define dobject_bigokuta_DL_0058F0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0058F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_0058F0[] = dobject_bigokuta_DL_0058F0; -#else -static const char object_bigokuta_DL_0058F0[] __attribute__((aligned (2))) = dobject_bigokuta_DL_0058F0; -#endif - -#define dobject_bigokuta_DL_0059B0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0059B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_DL_0059B0[] = dobject_bigokuta_DL_0059B0; -#else -static const char object_bigokuta_DL_0059B0[] __attribute__((aligned (2))) = dobject_bigokuta_DL_0059B0; -#endif - -#define dobject_bigokuta_Tex_005B90 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_005B90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_005B90[] = dobject_bigokuta_Tex_005B90; -#else -static const char object_bigokuta_Tex_005B90[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_005B90; -#endif - -#define dobject_bigokuta_Tex_005D90 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_005D90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_005D90[] = dobject_bigokuta_Tex_005D90; -#else -static const char object_bigokuta_Tex_005D90[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_005D90; -#endif - -#define dobject_bigokuta_Tex_005E90 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_005E90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_005E90[] = dobject_bigokuta_Tex_005E90; -#else -static const char object_bigokuta_Tex_005E90[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_005E90; -#endif - -#define dobject_bigokuta_Tex_006090 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_006090[] = dobject_bigokuta_Tex_006090; -#else -static const char object_bigokuta_Tex_006090[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_006090; -#endif - -#define dobject_bigokuta_Tex_006290 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006290" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_006290[] = dobject_bigokuta_Tex_006290; -#else -static const char object_bigokuta_Tex_006290[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_006290; -#endif - -#define dobject_bigokuta_Tex_006310 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006310" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_006310[] = dobject_bigokuta_Tex_006310; -#else -static const char object_bigokuta_Tex_006310[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_006310; -#endif - -#define dobject_bigokuta_Tex_006390 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006390" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_006390[] = dobject_bigokuta_Tex_006390; -#else -static const char object_bigokuta_Tex_006390[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_006390; -#endif - -#define dobject_bigokuta_Tex_006590 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006590" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_006590[] = dobject_bigokuta_Tex_006590; -#else -static const char object_bigokuta_Tex_006590[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_006590; -#endif - -#define dobject_bigokuta_Tex_006790 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_006790[] = dobject_bigokuta_Tex_006790; -#else -static const char object_bigokuta_Tex_006790[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_006790; -#endif - -#define dobject_bigokuta_Tex_006890 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Tex_006890[] = dobject_bigokuta_Tex_006890; -#else -static const char object_bigokuta_Tex_006890[] __attribute__((aligned (2))) = dobject_bigokuta_Tex_006890; -#endif - -#define dobject_bigokuta_Skel_006BC0 "__OTR__objects/object_bigokuta/object_bigokuta_Skel_006BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bigokuta_Skel_006BC0[] = dobject_bigokuta_Skel_006BC0; -#else -static const char object_bigokuta_Skel_006BC0[] __attribute__((aligned (2))) = dobject_bigokuta_Skel_006BC0; -#endif - +#include "align_asset_macro.h" + +#define dobject_bigokuta_Anim_000444 "__OTR__objects/object_bigokuta/object_bigokuta_Anim_000444" +static const ALIGN_ASSET(2) char object_bigokuta_Anim_000444[] = dobject_bigokuta_Anim_000444; + +#define dobject_bigokuta_Anim_000A74 "__OTR__objects/object_bigokuta/object_bigokuta_Anim_000A74" +static const ALIGN_ASSET(2) char object_bigokuta_Anim_000A74[] = dobject_bigokuta_Anim_000A74; + +#define dobject_bigokuta_Anim_000D1C "__OTR__objects/object_bigokuta/object_bigokuta_Anim_000D1C" +static const ALIGN_ASSET(2) char object_bigokuta_Anim_000D1C[] = dobject_bigokuta_Anim_000D1C; + +#define dobject_bigokuta_Anim_0014B8 "__OTR__objects/object_bigokuta/object_bigokuta_Anim_0014B8" +static const ALIGN_ASSET(2) char object_bigokuta_Anim_0014B8[] = dobject_bigokuta_Anim_0014B8; + +#define dobject_bigokuta_Anim_001CA4 "__OTR__objects/object_bigokuta/object_bigokuta_Anim_001CA4" +static const ALIGN_ASSET(2) char object_bigokuta_Anim_001CA4[] = dobject_bigokuta_Anim_001CA4; + +#define dobject_bigokuta_DL_004090 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004090" +static const ALIGN_ASSET(2) char object_bigokuta_DL_004090[] = dobject_bigokuta_DL_004090; + +#define dobject_bigokuta_DL_004158 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004158" +static const ALIGN_ASSET(2) char object_bigokuta_DL_004158[] = dobject_bigokuta_DL_004158; + +#define dobject_bigokuta_DL_0042A8 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0042A8" +static const ALIGN_ASSET(2) char object_bigokuta_DL_0042A8[] = dobject_bigokuta_DL_0042A8; + +#define dobject_bigokuta_DL_0043D0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0043D0" +static const ALIGN_ASSET(2) char object_bigokuta_DL_0043D0[] = dobject_bigokuta_DL_0043D0; + +#define dobject_bigokuta_DL_0044F8 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0044F8" +static const ALIGN_ASSET(2) char object_bigokuta_DL_0044F8[] = dobject_bigokuta_DL_0044F8; + +#define dobject_bigokuta_DL_004AB8 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004AB8" +static const ALIGN_ASSET(2) char object_bigokuta_DL_004AB8[] = dobject_bigokuta_DL_004AB8; + +#define dobject_bigokuta_DL_004CA0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004CA0" +static const ALIGN_ASSET(2) char object_bigokuta_DL_004CA0[] = dobject_bigokuta_DL_004CA0; + +#define dobject_bigokuta_DL_004E10 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004E10" +static const ALIGN_ASSET(2) char object_bigokuta_DL_004E10[] = dobject_bigokuta_DL_004E10; + +#define dobject_bigokuta_DL_004EB8 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004EB8" +static const ALIGN_ASSET(2) char object_bigokuta_DL_004EB8[] = dobject_bigokuta_DL_004EB8; + +#define dobject_bigokuta_DL_004F90 "__OTR__objects/object_bigokuta/object_bigokuta_DL_004F90" +static const ALIGN_ASSET(2) char object_bigokuta_DL_004F90[] = dobject_bigokuta_DL_004F90; + +#define dobject_bigokuta_DL_005038 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005038" +static const ALIGN_ASSET(2) char object_bigokuta_DL_005038[] = dobject_bigokuta_DL_005038; + +#define dobject_bigokuta_DL_005110 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005110" +static const ALIGN_ASSET(2) char object_bigokuta_DL_005110[] = dobject_bigokuta_DL_005110; + +#define dobject_bigokuta_DL_0051D0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0051D0" +static const ALIGN_ASSET(2) char object_bigokuta_DL_0051D0[] = dobject_bigokuta_DL_0051D0; + +#define dobject_bigokuta_DL_0053B0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0053B0" +static const ALIGN_ASSET(2) char object_bigokuta_DL_0053B0[] = dobject_bigokuta_DL_0053B0; + +#define dobject_bigokuta_DL_005470 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005470" +static const ALIGN_ASSET(2) char object_bigokuta_DL_005470[] = dobject_bigokuta_DL_005470; + +#define dobject_bigokuta_DL_005650 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005650" +static const ALIGN_ASSET(2) char object_bigokuta_DL_005650[] = dobject_bigokuta_DL_005650; + +#define dobject_bigokuta_DL_005710 "__OTR__objects/object_bigokuta/object_bigokuta_DL_005710" +static const ALIGN_ASSET(2) char object_bigokuta_DL_005710[] = dobject_bigokuta_DL_005710; + +#define dobject_bigokuta_DL_0058F0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0058F0" +static const ALIGN_ASSET(2) char object_bigokuta_DL_0058F0[] = dobject_bigokuta_DL_0058F0; + +#define dobject_bigokuta_DL_0059B0 "__OTR__objects/object_bigokuta/object_bigokuta_DL_0059B0" +static const ALIGN_ASSET(2) char object_bigokuta_DL_0059B0[] = dobject_bigokuta_DL_0059B0; + +#define dobject_bigokuta_Tex_005B90 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_005B90" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_005B90[] = dobject_bigokuta_Tex_005B90; + +#define dobject_bigokuta_Tex_005D90 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_005D90" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_005D90[] = dobject_bigokuta_Tex_005D90; + +#define dobject_bigokuta_Tex_005E90 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_005E90" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_005E90[] = dobject_bigokuta_Tex_005E90; + +#define dobject_bigokuta_Tex_006090 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006090" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_006090[] = dobject_bigokuta_Tex_006090; + +#define dobject_bigokuta_Tex_006290 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006290" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_006290[] = dobject_bigokuta_Tex_006290; + +#define dobject_bigokuta_Tex_006310 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006310" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_006310[] = dobject_bigokuta_Tex_006310; + +#define dobject_bigokuta_Tex_006390 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006390" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_006390[] = dobject_bigokuta_Tex_006390; + +#define dobject_bigokuta_Tex_006590 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006590" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_006590[] = dobject_bigokuta_Tex_006590; + +#define dobject_bigokuta_Tex_006790 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006790" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_006790[] = dobject_bigokuta_Tex_006790; + +#define dobject_bigokuta_Tex_006890 "__OTR__objects/object_bigokuta/object_bigokuta_Tex_006890" +static const ALIGN_ASSET(2) char object_bigokuta_Tex_006890[] = dobject_bigokuta_Tex_006890; + +#define dobject_bigokuta_Skel_006BC0 "__OTR__objects/object_bigokuta/object_bigokuta_Skel_006BC0" +static const ALIGN_ASSET(2) char object_bigokuta_Skel_006BC0[] = dobject_bigokuta_Skel_006BC0; \ No newline at end of file diff --git a/soh/assets/objects/object_bird/object_bird.h b/soh/assets/objects/object_bird/object_bird.h index 660871198..6066d3cb5 100644 --- a/soh/assets/objects/object_bird/object_bird.h +++ b/soh/assets/objects/object_bird/object_bird.h @@ -1,100 +1,45 @@ #pragma once -#define dgBirdFlyAnim "__OTR__objects/object_bird/gBirdFlyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdFlyAnim[] = dgBirdFlyAnim; -#else -static const char gBirdFlyAnim[] __attribute__((aligned (2))) = dgBirdFlyAnim; -#endif - -#define dgBirdLeftWingDL "__OTR__objects/object_bird/gBirdLeftWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdLeftWingDL[] = dgBirdLeftWingDL; -#else -static const char gBirdLeftWingDL[] __attribute__((aligned (2))) = dgBirdLeftWingDL; -#endif - -#define dgBirdLeftWingWrapper1DL "__OTR__objects/object_bird/gBirdLeftWingWrapper1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdLeftWingWrapper1DL[] = dgBirdLeftWingWrapper1DL; -#else -static const char gBirdLeftWingWrapper1DL[] __attribute__((aligned (2))) = dgBirdLeftWingWrapper1DL; -#endif - -#define dgBirdLeftWingWrapper2DL "__OTR__objects/object_bird/gBirdLeftWingWrapper2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdLeftWingWrapper2DL[] = dgBirdLeftWingWrapper2DL; -#else -static const char gBirdLeftWingWrapper2DL[] __attribute__((aligned (2))) = dgBirdLeftWingWrapper2DL; -#endif - -#define dgBirdRightWingDL "__OTR__objects/object_bird/gBirdRightWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdRightWingDL[] = dgBirdRightWingDL; -#else -static const char gBirdRightWingDL[] __attribute__((aligned (2))) = dgBirdRightWingDL; -#endif - -#define dgBirdRightWingWrapper1DL "__OTR__objects/object_bird/gBirdRightWingWrapper1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdRightWingWrapper1DL[] = dgBirdRightWingWrapper1DL; -#else -static const char gBirdRightWingWrapper1DL[] __attribute__((aligned (2))) = dgBirdRightWingWrapper1DL; -#endif - -#define dgBirdRightWingWrapper2DL "__OTR__objects/object_bird/gBirdRightWingWrapper2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdRightWingWrapper2DL[] = dgBirdRightWingWrapper2DL; -#else -static const char gBirdRightWingWrapper2DL[] __attribute__((aligned (2))) = dgBirdRightWingWrapper2DL; -#endif - -#define dgBirdBodyDL "__OTR__objects/object_bird/gBirdBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdBodyDL[] = dgBirdBodyDL; -#else -static const char gBirdBodyDL[] __attribute__((aligned (2))) = dgBirdBodyDL; -#endif - -#define dgBirdBodyWrapper1DL "__OTR__objects/object_bird/gBirdBodyWrapper1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdBodyWrapper1DL[] = dgBirdBodyWrapper1DL; -#else -static const char gBirdBodyWrapper1DL[] __attribute__((aligned (2))) = dgBirdBodyWrapper1DL; -#endif - -#define dgBirdBodyWrapper2DL "__OTR__objects/object_bird/gBirdBodyWrapper2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdBodyWrapper2DL[] = dgBirdBodyWrapper2DL; -#else -static const char gBirdBodyWrapper2DL[] __attribute__((aligned (2))) = dgBirdBodyWrapper2DL; -#endif - -#define dgBirdFaceTex "__OTR__objects/object_bird/gBirdFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdFaceTex[] = dgBirdFaceTex; -#else -static const char gBirdFaceTex[] __attribute__((aligned (2))) = dgBirdFaceTex; -#endif - -#define dgBirdTailTex "__OTR__objects/object_bird/gBirdTailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdTailTex[] = dgBirdTailTex; -#else -static const char gBirdTailTex[] __attribute__((aligned (2))) = dgBirdTailTex; -#endif - -#define dgBirdWingTex "__OTR__objects/object_bird/gBirdWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdWingTex[] = dgBirdWingTex; -#else -static const char gBirdWingTex[] __attribute__((aligned (2))) = dgBirdWingTex; -#endif - -#define dgBirdSkel "__OTR__objects/object_bird/gBirdSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBirdSkel[] = dgBirdSkel; -#else -static const char gBirdSkel[] __attribute__((aligned (2))) = dgBirdSkel; -#endif - +#include "align_asset_macro.h" + +#define dgBirdFlyAnim "__OTR__objects/object_bird/gBirdFlyAnim" +static const ALIGN_ASSET(2) char gBirdFlyAnim[] = dgBirdFlyAnim; + +#define dgBirdLeftWingDL "__OTR__objects/object_bird/gBirdLeftWingDL" +static const ALIGN_ASSET(2) char gBirdLeftWingDL[] = dgBirdLeftWingDL; + +#define dgBirdLeftWingWrapper1DL "__OTR__objects/object_bird/gBirdLeftWingWrapper1DL" +static const ALIGN_ASSET(2) char gBirdLeftWingWrapper1DL[] = dgBirdLeftWingWrapper1DL; + +#define dgBirdLeftWingWrapper2DL "__OTR__objects/object_bird/gBirdLeftWingWrapper2DL" +static const ALIGN_ASSET(2) char gBirdLeftWingWrapper2DL[] = dgBirdLeftWingWrapper2DL; + +#define dgBirdRightWingDL "__OTR__objects/object_bird/gBirdRightWingDL" +static const ALIGN_ASSET(2) char gBirdRightWingDL[] = dgBirdRightWingDL; + +#define dgBirdRightWingWrapper1DL "__OTR__objects/object_bird/gBirdRightWingWrapper1DL" +static const ALIGN_ASSET(2) char gBirdRightWingWrapper1DL[] = dgBirdRightWingWrapper1DL; + +#define dgBirdRightWingWrapper2DL "__OTR__objects/object_bird/gBirdRightWingWrapper2DL" +static const ALIGN_ASSET(2) char gBirdRightWingWrapper2DL[] = dgBirdRightWingWrapper2DL; + +#define dgBirdBodyDL "__OTR__objects/object_bird/gBirdBodyDL" +static const ALIGN_ASSET(2) char gBirdBodyDL[] = dgBirdBodyDL; + +#define dgBirdBodyWrapper1DL "__OTR__objects/object_bird/gBirdBodyWrapper1DL" +static const ALIGN_ASSET(2) char gBirdBodyWrapper1DL[] = dgBirdBodyWrapper1DL; + +#define dgBirdBodyWrapper2DL "__OTR__objects/object_bird/gBirdBodyWrapper2DL" +static const ALIGN_ASSET(2) char gBirdBodyWrapper2DL[] = dgBirdBodyWrapper2DL; + +#define dgBirdFaceTex "__OTR__objects/object_bird/gBirdFaceTex" +static const ALIGN_ASSET(2) char gBirdFaceTex[] = dgBirdFaceTex; + +#define dgBirdTailTex "__OTR__objects/object_bird/gBirdTailTex" +static const ALIGN_ASSET(2) char gBirdTailTex[] = dgBirdTailTex; + +#define dgBirdWingTex "__OTR__objects/object_bird/gBirdWingTex" +static const ALIGN_ASSET(2) char gBirdWingTex[] = dgBirdWingTex; + +#define dgBirdSkel "__OTR__objects/object_bird/gBirdSkel" +static const ALIGN_ASSET(2) char gBirdSkel[] = dgBirdSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_bji/object_bji.h b/soh/assets/objects/object_bji/object_bji.h index 27794aa5c..b9a2d82ce 100644 --- a/soh/assets/objects/object_bji/object_bji.h +++ b/soh/assets/objects/object_bji/object_bji.h @@ -1,219 +1,96 @@ #pragma once -#define dobject_bji_Skel_0000F0 "__OTR__objects/object_bji/object_bji_Skel_0000F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Skel_0000F0[] = dobject_bji_Skel_0000F0; -#else -static const char object_bji_Skel_0000F0[] __attribute__((aligned (2))) = dobject_bji_Skel_0000F0; -#endif - -#define dobject_bji_TLUT_0000FC "__OTR__objects/object_bji/object_bji_TLUT_0000FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_TLUT_0000FC[] = dobject_bji_TLUT_0000FC; -#else -static const char object_bji_TLUT_0000FC[] __attribute__((aligned (2))) = dobject_bji_TLUT_0000FC; -#endif - -#define dobject_bji_Tex_0002FC "__OTR__objects/object_bji/object_bji_Tex_0002FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_0002FC[] = dobject_bji_Tex_0002FC; -#else -static const char object_bji_Tex_0002FC[] __attribute__((aligned (2))) = dobject_bji_Tex_0002FC; -#endif - -#define dobject_bji_Tex_00033C "__OTR__objects/object_bji/object_bji_Tex_00033C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_00033C[] = dobject_bji_Tex_00033C; -#else -static const char object_bji_Tex_00033C[] __attribute__((aligned (2))) = dobject_bji_Tex_00033C; -#endif - -#define dobject_bji_Tex_00037C "__OTR__objects/object_bji/object_bji_Tex_00037C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_00037C[] = dobject_bji_Tex_00037C; -#else -static const char object_bji_Tex_00037C[] __attribute__((aligned (2))) = dobject_bji_Tex_00037C; -#endif - -#define dobject_bji_Tex_00047C "__OTR__objects/object_bji/object_bji_Tex_00047C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_00047C[] = dobject_bji_Tex_00047C; -#else -static const char object_bji_Tex_00047C[] __attribute__((aligned (2))) = dobject_bji_Tex_00047C; -#endif - -#define dobject_bji_Tex_0004BC "__OTR__objects/object_bji/object_bji_Tex_0004BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_0004BC[] = dobject_bji_Tex_0004BC; -#else -static const char object_bji_Tex_0004BC[] __attribute__((aligned (2))) = dobject_bji_Tex_0004BC; -#endif - -#define dobject_bji_Tex_0004FC "__OTR__objects/object_bji/object_bji_Tex_0004FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_0004FC[] = dobject_bji_Tex_0004FC; -#else -static const char object_bji_Tex_0004FC[] __attribute__((aligned (2))) = dobject_bji_Tex_0004FC; -#endif - -#define dobject_bji_Tex_0005FC "__OTR__objects/object_bji/object_bji_Tex_0005FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_0005FC[] = dobject_bji_Tex_0005FC; -#else -static const char object_bji_Tex_0005FC[] __attribute__((aligned (2))) = dobject_bji_Tex_0005FC; -#endif - -#define dobject_bji_Tex_0009FC "__OTR__objects/object_bji/object_bji_Tex_0009FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_0009FC[] = dobject_bji_Tex_0009FC; -#else -static const char object_bji_Tex_0009FC[] __attribute__((aligned (2))) = dobject_bji_Tex_0009FC; -#endif - -#define dobject_bji_Tex_000DFC "__OTR__objects/object_bji/object_bji_Tex_000DFC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_000DFC[] = dobject_bji_Tex_000DFC; -#else -static const char object_bji_Tex_000DFC[] __attribute__((aligned (2))) = dobject_bji_Tex_000DFC; -#endif - -#define dobject_bji_Tex_0011FC "__OTR__objects/object_bji/object_bji_Tex_0011FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_0011FC[] = dobject_bji_Tex_0011FC; -#else -static const char object_bji_Tex_0011FC[] __attribute__((aligned (2))) = dobject_bji_Tex_0011FC; -#endif - -#define dobject_bji_DL_002560 "__OTR__objects/object_bji/object_bji_DL_002560" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_002560[] = dobject_bji_DL_002560; -#else -static const char object_bji_DL_002560[] __attribute__((aligned (2))) = dobject_bji_DL_002560; -#endif - -#define dobject_bji_DL_002B88 "__OTR__objects/object_bji/object_bji_DL_002B88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_002B88[] = dobject_bji_DL_002B88; -#else -static const char object_bji_DL_002B88[] __attribute__((aligned (2))) = dobject_bji_DL_002B88; -#endif - -#define dobject_bji_DL_002C50 "__OTR__objects/object_bji/object_bji_DL_002C50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_002C50[] = dobject_bji_DL_002C50; -#else -static const char object_bji_DL_002C50[] __attribute__((aligned (2))) = dobject_bji_DL_002C50; -#endif - -#define dobject_bji_DL_002D40 "__OTR__objects/object_bji/object_bji_DL_002D40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_002D40[] = dobject_bji_DL_002D40; -#else -static const char object_bji_DL_002D40[] __attribute__((aligned (2))) = dobject_bji_DL_002D40; -#endif - -#define dobject_bji_DL_002E40 "__OTR__objects/object_bji/object_bji_DL_002E40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_002E40[] = dobject_bji_DL_002E40; -#else -static const char object_bji_DL_002E40[] __attribute__((aligned (2))) = dobject_bji_DL_002E40; -#endif - -#define dobject_bji_DL_002F08 "__OTR__objects/object_bji/object_bji_DL_002F08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_002F08[] = dobject_bji_DL_002F08; -#else -static const char object_bji_DL_002F08[] __attribute__((aligned (2))) = dobject_bji_DL_002F08; -#endif - -#define dobject_bji_DL_002FF8 "__OTR__objects/object_bji/object_bji_DL_002FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_002FF8[] = dobject_bji_DL_002FF8; -#else -static const char object_bji_DL_002FF8[] __attribute__((aligned (2))) = dobject_bji_DL_002FF8; -#endif - -#define dobject_bji_DL_0030F8 "__OTR__objects/object_bji/object_bji_DL_0030F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_0030F8[] = dobject_bji_DL_0030F8; -#else -static const char object_bji_DL_0030F8[] __attribute__((aligned (2))) = dobject_bji_DL_0030F8; -#endif - -#define dobject_bji_DL_003328 "__OTR__objects/object_bji/object_bji_DL_003328" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_003328[] = dobject_bji_DL_003328; -#else -static const char object_bji_DL_003328[] __attribute__((aligned (2))) = dobject_bji_DL_003328; -#endif - -#define dobject_bji_DL_0033F0 "__OTR__objects/object_bji/object_bji_DL_0033F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_0033F0[] = dobject_bji_DL_0033F0; -#else -static const char object_bji_DL_0033F0[] __attribute__((aligned (2))) = dobject_bji_DL_0033F0; -#endif - -#define dobject_bji_DL_0034B8 "__OTR__objects/object_bji/object_bji_DL_0034B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_0034B8[] = dobject_bji_DL_0034B8; -#else -static const char object_bji_DL_0034B8[] __attribute__((aligned (2))) = dobject_bji_DL_0034B8; -#endif - -#define dobject_bji_DL_003580 "__OTR__objects/object_bji/object_bji_DL_003580" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_003580[] = dobject_bji_DL_003580; -#else -static const char object_bji_DL_003580[] __attribute__((aligned (2))) = dobject_bji_DL_003580; -#endif - -#define dobject_bji_DL_003648 "__OTR__objects/object_bji/object_bji_DL_003648" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_003648[] = dobject_bji_DL_003648; -#else -static const char object_bji_DL_003648[] __attribute__((aligned (2))) = dobject_bji_DL_003648; -#endif - -#define dobject_bji_DL_003710 "__OTR__objects/object_bji/object_bji_DL_003710" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_003710[] = dobject_bji_DL_003710; -#else -static const char object_bji_DL_003710[] __attribute__((aligned (2))) = dobject_bji_DL_003710; -#endif - -#define dobject_bji_DL_0037D8 "__OTR__objects/object_bji/object_bji_DL_0037D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_0037D8[] = dobject_bji_DL_0037D8; -#else -static const char object_bji_DL_0037D8[] __attribute__((aligned (2))) = dobject_bji_DL_0037D8; -#endif - -#define dobject_bji_Tex_003908 "__OTR__objects/object_bji/object_bji_Tex_003908" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_003908[] = dobject_bji_Tex_003908; -#else -static const char object_bji_Tex_003908[] __attribute__((aligned (2))) = dobject_bji_Tex_003908; -#endif - -#define dobject_bji_Tex_003988 "__OTR__objects/object_bji/object_bji_Tex_003988" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_003988[] = dobject_bji_Tex_003988; -#else -static const char object_bji_Tex_003988[] __attribute__((aligned (2))) = dobject_bji_Tex_003988; -#endif - -#define dobject_bji_Tex_003A08 "__OTR__objects/object_bji/object_bji_Tex_003A08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_Tex_003A08[] = dobject_bji_Tex_003A08; -#else -static const char object_bji_Tex_003A08[] __attribute__((aligned (2))) = dobject_bji_Tex_003A08; -#endif - -#define dobject_bji_DL_003F68 "__OTR__objects/object_bji/object_bji_DL_003F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bji_DL_003F68[] = dobject_bji_DL_003F68; -#else -static const char object_bji_DL_003F68[] __attribute__((aligned (2))) = dobject_bji_DL_003F68; -#endif - +#include "align_asset_macro.h" + +#define dobject_bji_Skel_0000F0 "__OTR__objects/object_bji/object_bji_Skel_0000F0" +static const ALIGN_ASSET(2) char object_bji_Skel_0000F0[] = dobject_bji_Skel_0000F0; + +#define dobject_bji_TLUT_0000FC "__OTR__objects/object_bji/object_bji_TLUT_0000FC" +static const ALIGN_ASSET(2) char object_bji_TLUT_0000FC[] = dobject_bji_TLUT_0000FC; + +#define dobject_bji_Tex_0002FC "__OTR__objects/object_bji/object_bji_Tex_0002FC" +static const ALIGN_ASSET(2) char object_bji_Tex_0002FC[] = dobject_bji_Tex_0002FC; + +#define dobject_bji_Tex_00033C "__OTR__objects/object_bji/object_bji_Tex_00033C" +static const ALIGN_ASSET(2) char object_bji_Tex_00033C[] = dobject_bji_Tex_00033C; + +#define dobject_bji_Tex_00037C "__OTR__objects/object_bji/object_bji_Tex_00037C" +static const ALIGN_ASSET(2) char object_bji_Tex_00037C[] = dobject_bji_Tex_00037C; + +#define dobject_bji_Tex_00047C "__OTR__objects/object_bji/object_bji_Tex_00047C" +static const ALIGN_ASSET(2) char object_bji_Tex_00047C[] = dobject_bji_Tex_00047C; + +#define dobject_bji_Tex_0004BC "__OTR__objects/object_bji/object_bji_Tex_0004BC" +static const ALIGN_ASSET(2) char object_bji_Tex_0004BC[] = dobject_bji_Tex_0004BC; + +#define dobject_bji_Tex_0004FC "__OTR__objects/object_bji/object_bji_Tex_0004FC" +static const ALIGN_ASSET(2) char object_bji_Tex_0004FC[] = dobject_bji_Tex_0004FC; + +#define dobject_bji_Tex_0005FC "__OTR__objects/object_bji/object_bji_Tex_0005FC" +static const ALIGN_ASSET(2) char object_bji_Tex_0005FC[] = dobject_bji_Tex_0005FC; + +#define dobject_bji_Tex_0009FC "__OTR__objects/object_bji/object_bji_Tex_0009FC" +static const ALIGN_ASSET(2) char object_bji_Tex_0009FC[] = dobject_bji_Tex_0009FC; + +#define dobject_bji_Tex_000DFC "__OTR__objects/object_bji/object_bji_Tex_000DFC" +static const ALIGN_ASSET(2) char object_bji_Tex_000DFC[] = dobject_bji_Tex_000DFC; + +#define dobject_bji_Tex_0011FC "__OTR__objects/object_bji/object_bji_Tex_0011FC" +static const ALIGN_ASSET(2) char object_bji_Tex_0011FC[] = dobject_bji_Tex_0011FC; + +#define dobject_bji_DL_002560 "__OTR__objects/object_bji/object_bji_DL_002560" +static const ALIGN_ASSET(2) char object_bji_DL_002560[] = dobject_bji_DL_002560; + +#define dobject_bji_DL_002B88 "__OTR__objects/object_bji/object_bji_DL_002B88" +static const ALIGN_ASSET(2) char object_bji_DL_002B88[] = dobject_bji_DL_002B88; + +#define dobject_bji_DL_002C50 "__OTR__objects/object_bji/object_bji_DL_002C50" +static const ALIGN_ASSET(2) char object_bji_DL_002C50[] = dobject_bji_DL_002C50; + +#define dobject_bji_DL_002D40 "__OTR__objects/object_bji/object_bji_DL_002D40" +static const ALIGN_ASSET(2) char object_bji_DL_002D40[] = dobject_bji_DL_002D40; + +#define dobject_bji_DL_002E40 "__OTR__objects/object_bji/object_bji_DL_002E40" +static const ALIGN_ASSET(2) char object_bji_DL_002E40[] = dobject_bji_DL_002E40; + +#define dobject_bji_DL_002F08 "__OTR__objects/object_bji/object_bji_DL_002F08" +static const ALIGN_ASSET(2) char object_bji_DL_002F08[] = dobject_bji_DL_002F08; + +#define dobject_bji_DL_002FF8 "__OTR__objects/object_bji/object_bji_DL_002FF8" +static const ALIGN_ASSET(2) char object_bji_DL_002FF8[] = dobject_bji_DL_002FF8; + +#define dobject_bji_DL_0030F8 "__OTR__objects/object_bji/object_bji_DL_0030F8" +static const ALIGN_ASSET(2) char object_bji_DL_0030F8[] = dobject_bji_DL_0030F8; + +#define dobject_bji_DL_003328 "__OTR__objects/object_bji/object_bji_DL_003328" +static const ALIGN_ASSET(2) char object_bji_DL_003328[] = dobject_bji_DL_003328; + +#define dobject_bji_DL_0033F0 "__OTR__objects/object_bji/object_bji_DL_0033F0" +static const ALIGN_ASSET(2) char object_bji_DL_0033F0[] = dobject_bji_DL_0033F0; + +#define dobject_bji_DL_0034B8 "__OTR__objects/object_bji/object_bji_DL_0034B8" +static const ALIGN_ASSET(2) char object_bji_DL_0034B8[] = dobject_bji_DL_0034B8; + +#define dobject_bji_DL_003580 "__OTR__objects/object_bji/object_bji_DL_003580" +static const ALIGN_ASSET(2) char object_bji_DL_003580[] = dobject_bji_DL_003580; + +#define dobject_bji_DL_003648 "__OTR__objects/object_bji/object_bji_DL_003648" +static const ALIGN_ASSET(2) char object_bji_DL_003648[] = dobject_bji_DL_003648; + +#define dobject_bji_DL_003710 "__OTR__objects/object_bji/object_bji_DL_003710" +static const ALIGN_ASSET(2) char object_bji_DL_003710[] = dobject_bji_DL_003710; + +#define dobject_bji_DL_0037D8 "__OTR__objects/object_bji/object_bji_DL_0037D8" +static const ALIGN_ASSET(2) char object_bji_DL_0037D8[] = dobject_bji_DL_0037D8; + +#define dobject_bji_Tex_003908 "__OTR__objects/object_bji/object_bji_Tex_003908" +static const ALIGN_ASSET(2) char object_bji_Tex_003908[] = dobject_bji_Tex_003908; + +#define dobject_bji_Tex_003988 "__OTR__objects/object_bji/object_bji_Tex_003988" +static const ALIGN_ASSET(2) char object_bji_Tex_003988[] = dobject_bji_Tex_003988; + +#define dobject_bji_Tex_003A08 "__OTR__objects/object_bji/object_bji_Tex_003A08" +static const ALIGN_ASSET(2) char object_bji_Tex_003A08[] = dobject_bji_Tex_003A08; + +#define dobject_bji_DL_003F68 "__OTR__objects/object_bji/object_bji_DL_003F68" +static const ALIGN_ASSET(2) char object_bji_DL_003F68[] = dobject_bji_DL_003F68; \ No newline at end of file diff --git a/soh/assets/objects/object_bl/object_bl.h b/soh/assets/objects/object_bl/object_bl.h index f4374ba8d..c376adb0e 100644 --- a/soh/assets/objects/object_bl/object_bl.h +++ b/soh/assets/objects/object_bl/object_bl.h @@ -1,121 +1,54 @@ #pragma once -#define dgBiriDischargeLightningAnim "__OTR__objects/object_bl/gBiriDischargeLightningAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriDischargeLightningAnim[] = dgBiriDischargeLightningAnim; -#else -static const char gBiriDischargeLightningAnim[] __attribute__((aligned (2))) = dgBiriDischargeLightningAnim; -#endif - -#define dgBiriClimbAnim "__OTR__objects/object_bl/gBiriClimbAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriClimbAnim[] = dgBiriClimbAnim; -#else -static const char gBiriClimbAnim[] __attribute__((aligned (2))) = dgBiriClimbAnim; -#endif - -#define dgBiriDefaultAnim "__OTR__objects/object_bl/gBiriDefaultAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriDefaultAnim[] = dgBiriDefaultAnim; -#else -static const char gBiriDefaultAnim[] __attribute__((aligned (2))) = dgBiriDefaultAnim; -#endif - -#define dgBiriTentaclesDL "__OTR__objects/object_bl/gBiriTentaclesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentaclesDL[] = dgBiriTentaclesDL; -#else -static const char gBiriTentaclesDL[] __attribute__((aligned (2))) = dgBiriTentaclesDL; -#endif - -#define dgBiriInnerHoodDL "__OTR__objects/object_bl/gBiriInnerHoodDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriInnerHoodDL[] = dgBiriInnerHoodDL; -#else -static const char gBiriInnerHoodDL[] __attribute__((aligned (2))) = dgBiriInnerHoodDL; -#endif - -#define dgBiriOuterHoodDL "__OTR__objects/object_bl/gBiriOuterHoodDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriOuterHoodDL[] = dgBiriOuterHoodDL; -#else -static const char gBiriOuterHoodDL[] __attribute__((aligned (2))) = dgBiriOuterHoodDL; -#endif - -#define dgBiriOuterHoodTex "__OTR__objects/object_bl/gBiriOuterHoodTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriOuterHoodTex[] = dgBiriOuterHoodTex; -#else -static const char gBiriOuterHoodTex[] __attribute__((aligned (2))) = dgBiriOuterHoodTex; -#endif - -#define dgBiriTentacles0Tex "__OTR__objects/object_bl/gBiriTentacles0Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentacles0Tex[] = dgBiriTentacles0Tex; -#else -static const char gBiriTentacles0Tex[] __attribute__((aligned (2))) = dgBiriTentacles0Tex; -#endif - -#define dgBiriTentacles1Tex "__OTR__objects/object_bl/gBiriTentacles1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentacles1Tex[] = dgBiriTentacles1Tex; -#else -static const char gBiriTentacles1Tex[] __attribute__((aligned (2))) = dgBiriTentacles1Tex; -#endif - -#define dgBiriTentacles2Tex "__OTR__objects/object_bl/gBiriTentacles2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentacles2Tex[] = dgBiriTentacles2Tex; -#else -static const char gBiriTentacles2Tex[] __attribute__((aligned (2))) = dgBiriTentacles2Tex; -#endif - -#define dgBiriTentacles3Tex "__OTR__objects/object_bl/gBiriTentacles3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentacles3Tex[] = dgBiriTentacles3Tex; -#else -static const char gBiriTentacles3Tex[] __attribute__((aligned (2))) = dgBiriTentacles3Tex; -#endif - -#define dgBiriTentacles4Tex "__OTR__objects/object_bl/gBiriTentacles4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentacles4Tex[] = dgBiriTentacles4Tex; -#else -static const char gBiriTentacles4Tex[] __attribute__((aligned (2))) = dgBiriTentacles4Tex; -#endif - -#define dgBiriTentacles5Tex "__OTR__objects/object_bl/gBiriTentacles5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentacles5Tex[] = dgBiriTentacles5Tex; -#else -static const char gBiriTentacles5Tex[] __attribute__((aligned (2))) = dgBiriTentacles5Tex; -#endif - -#define dgBiriTentacles6Tex "__OTR__objects/object_bl/gBiriTentacles6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentacles6Tex[] = dgBiriTentacles6Tex; -#else -static const char gBiriTentacles6Tex[] __attribute__((aligned (2))) = dgBiriTentacles6Tex; -#endif - -#define dgBiriTentacles7Tex "__OTR__objects/object_bl/gBiriTentacles7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriTentacles7Tex[] = dgBiriTentacles7Tex; -#else -static const char gBiriTentacles7Tex[] __attribute__((aligned (2))) = dgBiriTentacles7Tex; -#endif - -#define dgBiriInnerHoodTex "__OTR__objects/object_bl/gBiriInnerHoodTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriInnerHoodTex[] = dgBiriInnerHoodTex; -#else -static const char gBiriInnerHoodTex[] __attribute__((aligned (2))) = dgBiriInnerHoodTex; -#endif - -#define dgBiriSkel "__OTR__objects/object_bl/gBiriSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiriSkel[] = dgBiriSkel; -#else -static const char gBiriSkel[] __attribute__((aligned (2))) = dgBiriSkel; -#endif - +#include "align_asset_macro.h" + +#define dgBiriDischargeLightningAnim "__OTR__objects/object_bl/gBiriDischargeLightningAnim" +static const ALIGN_ASSET(2) char gBiriDischargeLightningAnim[] = dgBiriDischargeLightningAnim; + +#define dgBiriClimbAnim "__OTR__objects/object_bl/gBiriClimbAnim" +static const ALIGN_ASSET(2) char gBiriClimbAnim[] = dgBiriClimbAnim; + +#define dgBiriDefaultAnim "__OTR__objects/object_bl/gBiriDefaultAnim" +static const ALIGN_ASSET(2) char gBiriDefaultAnim[] = dgBiriDefaultAnim; + +#define dgBiriTentaclesDL "__OTR__objects/object_bl/gBiriTentaclesDL" +static const ALIGN_ASSET(2) char gBiriTentaclesDL[] = dgBiriTentaclesDL; + +#define dgBiriInnerHoodDL "__OTR__objects/object_bl/gBiriInnerHoodDL" +static const ALIGN_ASSET(2) char gBiriInnerHoodDL[] = dgBiriInnerHoodDL; + +#define dgBiriOuterHoodDL "__OTR__objects/object_bl/gBiriOuterHoodDL" +static const ALIGN_ASSET(2) char gBiriOuterHoodDL[] = dgBiriOuterHoodDL; + +#define dgBiriOuterHoodTex "__OTR__objects/object_bl/gBiriOuterHoodTex" +static const ALIGN_ASSET(2) char gBiriOuterHoodTex[] = dgBiriOuterHoodTex; + +#define dgBiriTentacles0Tex "__OTR__objects/object_bl/gBiriTentacles0Tex" +static const ALIGN_ASSET(2) char gBiriTentacles0Tex[] = dgBiriTentacles0Tex; + +#define dgBiriTentacles1Tex "__OTR__objects/object_bl/gBiriTentacles1Tex" +static const ALIGN_ASSET(2) char gBiriTentacles1Tex[] = dgBiriTentacles1Tex; + +#define dgBiriTentacles2Tex "__OTR__objects/object_bl/gBiriTentacles2Tex" +static const ALIGN_ASSET(2) char gBiriTentacles2Tex[] = dgBiriTentacles2Tex; + +#define dgBiriTentacles3Tex "__OTR__objects/object_bl/gBiriTentacles3Tex" +static const ALIGN_ASSET(2) char gBiriTentacles3Tex[] = dgBiriTentacles3Tex; + +#define dgBiriTentacles4Tex "__OTR__objects/object_bl/gBiriTentacles4Tex" +static const ALIGN_ASSET(2) char gBiriTentacles4Tex[] = dgBiriTentacles4Tex; + +#define dgBiriTentacles5Tex "__OTR__objects/object_bl/gBiriTentacles5Tex" +static const ALIGN_ASSET(2) char gBiriTentacles5Tex[] = dgBiriTentacles5Tex; + +#define dgBiriTentacles6Tex "__OTR__objects/object_bl/gBiriTentacles6Tex" +static const ALIGN_ASSET(2) char gBiriTentacles6Tex[] = dgBiriTentacles6Tex; + +#define dgBiriTentacles7Tex "__OTR__objects/object_bl/gBiriTentacles7Tex" +static const ALIGN_ASSET(2) char gBiriTentacles7Tex[] = dgBiriTentacles7Tex; + +#define dgBiriInnerHoodTex "__OTR__objects/object_bl/gBiriInnerHoodTex" +static const ALIGN_ASSET(2) char gBiriInnerHoodTex[] = dgBiriInnerHoodTex; + +#define dgBiriSkel "__OTR__objects/object_bl/gBiriSkel" +static const ALIGN_ASSET(2) char gBiriSkel[] = dgBiriSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_blkobj/object_blkobj.h b/soh/assets/objects/object_blkobj/object_blkobj.h index d53d88dee..1f8150b02 100644 --- a/soh/assets/objects/object_blkobj/object_blkobj.h +++ b/soh/assets/objects/object_blkobj/object_blkobj.h @@ -1,184 +1,81 @@ #pragma once -#define dgIllusionRoomCol "__OTR__objects/object_blkobj/gIllusionRoomCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gIllusionRoomCol[] = dgIllusionRoomCol; -#else -static const char gIllusionRoomCol[] __attribute__((aligned (2))) = dgIllusionRoomCol; -#endif - -#define dgIllusionRoomNormalDL "__OTR__objects/object_blkobj/gIllusionRoomNormalDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIllusionRoomNormalDL[] = dgIllusionRoomNormalDL; -#else -static const char gIllusionRoomNormalDL[] __attribute__((aligned (2))) = dgIllusionRoomNormalDL; -#endif - -#define dgIllusionRoomIllusionDL "__OTR__objects/object_blkobj/gIllusionRoomIllusionDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIllusionRoomIllusionDL[] = dgIllusionRoomIllusionDL; -#else -static const char gIllusionRoomIllusionDL[] __attribute__((aligned (2))) = dgIllusionRoomIllusionDL; -#endif - -#define dgIllusionRoomTreeDL "__OTR__objects/object_blkobj/gIllusionRoomTreeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIllusionRoomTreeDL[] = dgIllusionRoomTreeDL; -#else -static const char gIllusionRoomTreeDL[] __attribute__((aligned (2))) = dgIllusionRoomTreeDL; -#endif - -#define dobject_blkobjTex_008890 "__OTR__objects/object_blkobj/object_blkobjTex_008890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_008890[] = dobject_blkobjTex_008890; -#else -static const char object_blkobjTex_008890[] __attribute__((aligned (2))) = dobject_blkobjTex_008890; -#endif - -#define dobject_blkobjTex_009090 "__OTR__objects/object_blkobj/object_blkobjTex_009090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_009090[] = dobject_blkobjTex_009090; -#else -static const char object_blkobjTex_009090[] __attribute__((aligned (2))) = dobject_blkobjTex_009090; -#endif - -#define dobject_blkobjTex_00C090 "__OTR__objects/object_blkobj/object_blkobjTex_00C090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00C090[] = dobject_blkobjTex_00C090; -#else -static const char object_blkobjTex_00C090[] __attribute__((aligned (2))) = dobject_blkobjTex_00C090; -#endif - -#define dobject_blkobjTex_00D090 "__OTR__objects/object_blkobj/object_blkobjTex_00D090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00D090[] = dobject_blkobjTex_00D090; -#else -static const char object_blkobjTex_00D090[] __attribute__((aligned (2))) = dobject_blkobjTex_00D090; -#endif - -#define dobject_blkobjTex_009890 "__OTR__objects/object_blkobj/object_blkobjTex_009890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_009890[] = dobject_blkobjTex_009890; -#else -static const char object_blkobjTex_009890[] __attribute__((aligned (2))) = dobject_blkobjTex_009890; -#endif - -#define dobject_blkobjTex_00B890 "__OTR__objects/object_blkobj/object_blkobjTex_00B890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00B890[] = dobject_blkobjTex_00B890; -#else -static const char object_blkobjTex_00B890[] __attribute__((aligned (2))) = dobject_blkobjTex_00B890; -#endif - -#define dobject_blkobjTex_00C890 "__OTR__objects/object_blkobj/object_blkobjTex_00C890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00C890[] = dobject_blkobjTex_00C890; -#else -static const char object_blkobjTex_00C890[] __attribute__((aligned (2))) = dobject_blkobjTex_00C890; -#endif - -#define dobject_blkobjTex_00B090 "__OTR__objects/object_blkobj/object_blkobjTex_00B090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00B090[] = dobject_blkobjTex_00B090; -#else -static const char object_blkobjTex_00B090[] __attribute__((aligned (2))) = dobject_blkobjTex_00B090; -#endif - -#define dobject_blkobjTex_00E090 "__OTR__objects/object_blkobj/object_blkobjTex_00E090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00E090[] = dobject_blkobjTex_00E090; -#else -static const char object_blkobjTex_00E090[] __attribute__((aligned (2))) = dobject_blkobjTex_00E090; -#endif - -#define dobject_blkobjTex_008090 "__OTR__objects/object_blkobj/object_blkobjTex_008090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_008090[] = dobject_blkobjTex_008090; -#else -static const char object_blkobjTex_008090[] __attribute__((aligned (2))) = dobject_blkobjTex_008090; -#endif - -#define dobject_blkobjTex_00A890 "__OTR__objects/object_blkobj/object_blkobjTex_00A890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00A890[] = dobject_blkobjTex_00A890; -#else -static const char object_blkobjTex_00A890[] __attribute__((aligned (2))) = dobject_blkobjTex_00A890; -#endif - -#define dobject_blkobjTex_00D890 "__OTR__objects/object_blkobj/object_blkobjTex_00D890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00D890[] = dobject_blkobjTex_00D890; -#else -static const char object_blkobjTex_00D890[] __attribute__((aligned (2))) = dobject_blkobjTex_00D890; -#endif - -#define dobject_blkobjTex_00A090 "__OTR__objects/object_blkobj/object_blkobjTex_00A090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00A090[] = dobject_blkobjTex_00A090; -#else -static const char object_blkobjTex_00A090[] __attribute__((aligned (2))) = dobject_blkobjTex_00A090; -#endif - -#define dobject_blkobjTex_00E890 "__OTR__objects/object_blkobj/object_blkobjTex_00E890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00E890[] = dobject_blkobjTex_00E890; -#else -static const char object_blkobjTex_00E890[] __attribute__((aligned (2))) = dobject_blkobjTex_00E890; -#endif - -#define dobject_blkobjTex_013090 "__OTR__objects/object_blkobj/object_blkobjTex_013090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_013090[] = dobject_blkobjTex_013090; -#else -static const char object_blkobjTex_013090[] __attribute__((aligned (2))) = dobject_blkobjTex_013090; -#endif - -#define dobject_blkobjTex_012890 "__OTR__objects/object_blkobj/object_blkobjTex_012890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_012890[] = dobject_blkobjTex_012890; -#else -static const char object_blkobjTex_012890[] __attribute__((aligned (2))) = dobject_blkobjTex_012890; -#endif - -#define dobject_blkobjTex_012090 "__OTR__objects/object_blkobj/object_blkobjTex_012090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_012090[] = dobject_blkobjTex_012090; -#else -static const char object_blkobjTex_012090[] __attribute__((aligned (2))) = dobject_blkobjTex_012090; -#endif - -#define dobject_blkobjTex_010090 "__OTR__objects/object_blkobj/object_blkobjTex_010090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_010090[] = dobject_blkobjTex_010090; -#else -static const char object_blkobjTex_010090[] __attribute__((aligned (2))) = dobject_blkobjTex_010090; -#endif - -#define dobject_blkobjTex_010890 "__OTR__objects/object_blkobj/object_blkobjTex_010890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_010890[] = dobject_blkobjTex_010890; -#else -static const char object_blkobjTex_010890[] __attribute__((aligned (2))) = dobject_blkobjTex_010890; -#endif - -#define dobject_blkobjTex_011090 "__OTR__objects/object_blkobj/object_blkobjTex_011090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_011090[] = dobject_blkobjTex_011090; -#else -static const char object_blkobjTex_011090[] __attribute__((aligned (2))) = dobject_blkobjTex_011090; -#endif - -#define dobject_blkobjTex_011890 "__OTR__objects/object_blkobj/object_blkobjTex_011890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_011890[] = dobject_blkobjTex_011890; -#else -static const char object_blkobjTex_011890[] __attribute__((aligned (2))) = dobject_blkobjTex_011890; -#endif - -#define dobject_blkobjTex_00F890 "__OTR__objects/object_blkobj/object_blkobjTex_00F890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_blkobjTex_00F890[] = dobject_blkobjTex_00F890; -#else -static const char object_blkobjTex_00F890[] __attribute__((aligned (2))) = dobject_blkobjTex_00F890; -#endif - +#include "align_asset_macro.h" + +#define dgIllusionRoomCol "__OTR__objects/object_blkobj/gIllusionRoomCol" +static const ALIGN_ASSET(2) char gIllusionRoomCol[] = dgIllusionRoomCol; + +#define dgIllusionRoomNormalDL "__OTR__objects/object_blkobj/gIllusionRoomNormalDL" +static const ALIGN_ASSET(2) char gIllusionRoomNormalDL[] = dgIllusionRoomNormalDL; + +#define dgIllusionRoomIllusionDL "__OTR__objects/object_blkobj/gIllusionRoomIllusionDL" +static const ALIGN_ASSET(2) char gIllusionRoomIllusionDL[] = dgIllusionRoomIllusionDL; + +#define dgIllusionRoomTreeDL "__OTR__objects/object_blkobj/gIllusionRoomTreeDL" +static const ALIGN_ASSET(2) char gIllusionRoomTreeDL[] = dgIllusionRoomTreeDL; + +#define dobject_blkobjTex_008890 "__OTR__objects/object_blkobj/object_blkobjTex_008890" +static const ALIGN_ASSET(2) char object_blkobjTex_008890[] = dobject_blkobjTex_008890; + +#define dobject_blkobjTex_009090 "__OTR__objects/object_blkobj/object_blkobjTex_009090" +static const ALIGN_ASSET(2) char object_blkobjTex_009090[] = dobject_blkobjTex_009090; + +#define dobject_blkobjTex_00C090 "__OTR__objects/object_blkobj/object_blkobjTex_00C090" +static const ALIGN_ASSET(2) char object_blkobjTex_00C090[] = dobject_blkobjTex_00C090; + +#define dobject_blkobjTex_00D090 "__OTR__objects/object_blkobj/object_blkobjTex_00D090" +static const ALIGN_ASSET(2) char object_blkobjTex_00D090[] = dobject_blkobjTex_00D090; + +#define dobject_blkobjTex_009890 "__OTR__objects/object_blkobj/object_blkobjTex_009890" +static const ALIGN_ASSET(2) char object_blkobjTex_009890[] = dobject_blkobjTex_009890; + +#define dobject_blkobjTex_00B890 "__OTR__objects/object_blkobj/object_blkobjTex_00B890" +static const ALIGN_ASSET(2) char object_blkobjTex_00B890[] = dobject_blkobjTex_00B890; + +#define dobject_blkobjTex_00C890 "__OTR__objects/object_blkobj/object_blkobjTex_00C890" +static const ALIGN_ASSET(2) char object_blkobjTex_00C890[] = dobject_blkobjTex_00C890; + +#define dobject_blkobjTex_00B090 "__OTR__objects/object_blkobj/object_blkobjTex_00B090" +static const ALIGN_ASSET(2) char object_blkobjTex_00B090[] = dobject_blkobjTex_00B090; + +#define dobject_blkobjTex_00E090 "__OTR__objects/object_blkobj/object_blkobjTex_00E090" +static const ALIGN_ASSET(2) char object_blkobjTex_00E090[] = dobject_blkobjTex_00E090; + +#define dobject_blkobjTex_008090 "__OTR__objects/object_blkobj/object_blkobjTex_008090" +static const ALIGN_ASSET(2) char object_blkobjTex_008090[] = dobject_blkobjTex_008090; + +#define dobject_blkobjTex_00A890 "__OTR__objects/object_blkobj/object_blkobjTex_00A890" +static const ALIGN_ASSET(2) char object_blkobjTex_00A890[] = dobject_blkobjTex_00A890; + +#define dobject_blkobjTex_00D890 "__OTR__objects/object_blkobj/object_blkobjTex_00D890" +static const ALIGN_ASSET(2) char object_blkobjTex_00D890[] = dobject_blkobjTex_00D890; + +#define dobject_blkobjTex_00A090 "__OTR__objects/object_blkobj/object_blkobjTex_00A090" +static const ALIGN_ASSET(2) char object_blkobjTex_00A090[] = dobject_blkobjTex_00A090; + +#define dobject_blkobjTex_00E890 "__OTR__objects/object_blkobj/object_blkobjTex_00E890" +static const ALIGN_ASSET(2) char object_blkobjTex_00E890[] = dobject_blkobjTex_00E890; + +#define dobject_blkobjTex_013090 "__OTR__objects/object_blkobj/object_blkobjTex_013090" +static const ALIGN_ASSET(2) char object_blkobjTex_013090[] = dobject_blkobjTex_013090; + +#define dobject_blkobjTex_012890 "__OTR__objects/object_blkobj/object_blkobjTex_012890" +static const ALIGN_ASSET(2) char object_blkobjTex_012890[] = dobject_blkobjTex_012890; + +#define dobject_blkobjTex_012090 "__OTR__objects/object_blkobj/object_blkobjTex_012090" +static const ALIGN_ASSET(2) char object_blkobjTex_012090[] = dobject_blkobjTex_012090; + +#define dobject_blkobjTex_010090 "__OTR__objects/object_blkobj/object_blkobjTex_010090" +static const ALIGN_ASSET(2) char object_blkobjTex_010090[] = dobject_blkobjTex_010090; + +#define dobject_blkobjTex_010890 "__OTR__objects/object_blkobj/object_blkobjTex_010890" +static const ALIGN_ASSET(2) char object_blkobjTex_010890[] = dobject_blkobjTex_010890; + +#define dobject_blkobjTex_011090 "__OTR__objects/object_blkobj/object_blkobjTex_011090" +static const ALIGN_ASSET(2) char object_blkobjTex_011090[] = dobject_blkobjTex_011090; + +#define dobject_blkobjTex_011890 "__OTR__objects/object_blkobj/object_blkobjTex_011890" +static const ALIGN_ASSET(2) char object_blkobjTex_011890[] = dobject_blkobjTex_011890; + +#define dobject_blkobjTex_00F890 "__OTR__objects/object_blkobj/object_blkobjTex_00F890" +static const ALIGN_ASSET(2) char object_blkobjTex_00F890[] = dobject_blkobjTex_00F890; \ No newline at end of file diff --git a/soh/assets/objects/object_bob/object_bob.h b/soh/assets/objects/object_bob/object_bob.h index 78c353374..e1a485bf4 100644 --- a/soh/assets/objects/object_bob/object_bob.h +++ b/soh/assets/objects/object_bob/object_bob.h @@ -1,198 +1,87 @@ #pragma once -#define dobject_bob_Skel_0000F0 "__OTR__objects/object_bob/object_bob_Skel_0000F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Skel_0000F0[] = dobject_bob_Skel_0000F0; -#else -static const char object_bob_Skel_0000F0[] __attribute__((aligned (2))) = dobject_bob_Skel_0000F0; -#endif - -#define dobject_bob_TLUT_000108 "__OTR__objects/object_bob/object_bob_TLUT_000108" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_TLUT_000108[] = dobject_bob_TLUT_000108; -#else -static const char object_bob_TLUT_000108[] __attribute__((aligned (2))) = dobject_bob_TLUT_000108; -#endif - -#define dobject_bob_Tex_000308 "__OTR__objects/object_bob/object_bob_Tex_000308" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_000308[] = dobject_bob_Tex_000308; -#else -static const char object_bob_Tex_000308[] __attribute__((aligned (2))) = dobject_bob_Tex_000308; -#endif - -#define dobject_bob_Tex_000348 "__OTR__objects/object_bob/object_bob_Tex_000348" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_000348[] = dobject_bob_Tex_000348; -#else -static const char object_bob_Tex_000348[] __attribute__((aligned (2))) = dobject_bob_Tex_000348; -#endif - -#define dobject_bob_Tex_000388 "__OTR__objects/object_bob/object_bob_Tex_000388" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_000388[] = dobject_bob_Tex_000388; -#else -static const char object_bob_Tex_000388[] __attribute__((aligned (2))) = dobject_bob_Tex_000388; -#endif - -#define dobject_bob_Tex_000788 "__OTR__objects/object_bob/object_bob_Tex_000788" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_000788[] = dobject_bob_Tex_000788; -#else -static const char object_bob_Tex_000788[] __attribute__((aligned (2))) = dobject_bob_Tex_000788; -#endif - -#define dobject_bob_Tex_0007C8 "__OTR__objects/object_bob/object_bob_Tex_0007C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_0007C8[] = dobject_bob_Tex_0007C8; -#else -static const char object_bob_Tex_0007C8[] __attribute__((aligned (2))) = dobject_bob_Tex_0007C8; -#endif - -#define dobject_bob_Tex_000FC8 "__OTR__objects/object_bob/object_bob_Tex_000FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_000FC8[] = dobject_bob_Tex_000FC8; -#else -static const char object_bob_Tex_000FC8[] __attribute__((aligned (2))) = dobject_bob_Tex_000FC8; -#endif - -#define dobject_bob_Tex_0017C8 "__OTR__objects/object_bob/object_bob_Tex_0017C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_0017C8[] = dobject_bob_Tex_0017C8; -#else -static const char object_bob_Tex_0017C8[] __attribute__((aligned (2))) = dobject_bob_Tex_0017C8; -#endif - -#define dobject_bob_Tex_001FC8 "__OTR__objects/object_bob/object_bob_Tex_001FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_001FC8[] = dobject_bob_Tex_001FC8; -#else -static const char object_bob_Tex_001FC8[] __attribute__((aligned (2))) = dobject_bob_Tex_001FC8; -#endif - -#define dobject_bob_Tex_0020C8 "__OTR__objects/object_bob/object_bob_Tex_0020C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_0020C8[] = dobject_bob_Tex_0020C8; -#else -static const char object_bob_Tex_0020C8[] __attribute__((aligned (2))) = dobject_bob_Tex_0020C8; -#endif - -#define dobject_bob_Tex_0021C8 "__OTR__objects/object_bob/object_bob_Tex_0021C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_0021C8[] = dobject_bob_Tex_0021C8; -#else -static const char object_bob_Tex_0021C8[] __attribute__((aligned (2))) = dobject_bob_Tex_0021C8; -#endif - -#define dobject_bob_Tex_002208 "__OTR__objects/object_bob/object_bob_Tex_002208" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_Tex_002208[] = dobject_bob_Tex_002208; -#else -static const char object_bob_Tex_002208[] __attribute__((aligned (2))) = dobject_bob_Tex_002208; -#endif - -#define dobject_bob_DL_003B78 "__OTR__objects/object_bob/object_bob_DL_003B78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_003B78[] = dobject_bob_DL_003B78; -#else -static const char object_bob_DL_003B78[] __attribute__((aligned (2))) = dobject_bob_DL_003B78; -#endif - -#define dobject_bob_DL_003F68 "__OTR__objects/object_bob/object_bob_DL_003F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_003F68[] = dobject_bob_DL_003F68; -#else -static const char object_bob_DL_003F68[] __attribute__((aligned (2))) = dobject_bob_DL_003F68; -#endif - -#define dobject_bob_DL_0040B0 "__OTR__objects/object_bob/object_bob_DL_0040B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_0040B0[] = dobject_bob_DL_0040B0; -#else -static const char object_bob_DL_0040B0[] __attribute__((aligned (2))) = dobject_bob_DL_0040B0; -#endif - -#define dobject_bob_DL_0041E0 "__OTR__objects/object_bob/object_bob_DL_0041E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_0041E0[] = dobject_bob_DL_0041E0; -#else -static const char object_bob_DL_0041E0[] __attribute__((aligned (2))) = dobject_bob_DL_0041E0; -#endif - -#define dobject_bob_DL_004310 "__OTR__objects/object_bob/object_bob_DL_004310" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004310[] = dobject_bob_DL_004310; -#else -static const char object_bob_DL_004310[] __attribute__((aligned (2))) = dobject_bob_DL_004310; -#endif - -#define dobject_bob_DL_004458 "__OTR__objects/object_bob/object_bob_DL_004458" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004458[] = dobject_bob_DL_004458; -#else -static const char object_bob_DL_004458[] __attribute__((aligned (2))) = dobject_bob_DL_004458; -#endif - -#define dobject_bob_DL_004588 "__OTR__objects/object_bob/object_bob_DL_004588" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004588[] = dobject_bob_DL_004588; -#else -static const char object_bob_DL_004588[] __attribute__((aligned (2))) = dobject_bob_DL_004588; -#endif - -#define dobject_bob_DL_0046B8 "__OTR__objects/object_bob/object_bob_DL_0046B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_0046B8[] = dobject_bob_DL_0046B8; -#else -static const char object_bob_DL_0046B8[] __attribute__((aligned (2))) = dobject_bob_DL_0046B8; -#endif - -#define dobject_bob_DL_004A48 "__OTR__objects/object_bob/object_bob_DL_004A48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004A48[] = dobject_bob_DL_004A48; -#else -static const char object_bob_DL_004A48[] __attribute__((aligned (2))) = dobject_bob_DL_004A48; -#endif - -#define dobject_bob_DL_004B18 "__OTR__objects/object_bob/object_bob_DL_004B18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004B18[] = dobject_bob_DL_004B18; -#else -static const char object_bob_DL_004B18[] __attribute__((aligned (2))) = dobject_bob_DL_004B18; -#endif - -#define dobject_bob_DL_004BE8 "__OTR__objects/object_bob/object_bob_DL_004BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004BE8[] = dobject_bob_DL_004BE8; -#else -static const char object_bob_DL_004BE8[] __attribute__((aligned (2))) = dobject_bob_DL_004BE8; -#endif - -#define dobject_bob_DL_004C38 "__OTR__objects/object_bob/object_bob_DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004C38[] = dobject_bob_DL_004C38; -#else -static const char object_bob_DL_004C38[] __attribute__((aligned (2))) = dobject_bob_DL_004C38; -#endif - -#define dobject_bob_DL_004D08 "__OTR__objects/object_bob/object_bob_DL_004D08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004D08[] = dobject_bob_DL_004D08; -#else -static const char object_bob_DL_004D08[] __attribute__((aligned (2))) = dobject_bob_DL_004D08; -#endif - -#define dobject_bob_DL_004DD8 "__OTR__objects/object_bob/object_bob_DL_004DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004DD8[] = dobject_bob_DL_004DD8; -#else -static const char object_bob_DL_004DD8[] __attribute__((aligned (2))) = dobject_bob_DL_004DD8; -#endif - -#define dobject_bob_DL_004E28 "__OTR__objects/object_bob/object_bob_DL_004E28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bob_DL_004E28[] = dobject_bob_DL_004E28; -#else -static const char object_bob_DL_004E28[] __attribute__((aligned (2))) = dobject_bob_DL_004E28; -#endif - +#include "align_asset_macro.h" + +#define dobject_bob_Skel_0000F0 "__OTR__objects/object_bob/object_bob_Skel_0000F0" +static const ALIGN_ASSET(2) char object_bob_Skel_0000F0[] = dobject_bob_Skel_0000F0; + +#define dobject_bob_TLUT_000108 "__OTR__objects/object_bob/object_bob_TLUT_000108" +static const ALIGN_ASSET(2) char object_bob_TLUT_000108[] = dobject_bob_TLUT_000108; + +#define dobject_bob_Tex_000308 "__OTR__objects/object_bob/object_bob_Tex_000308" +static const ALIGN_ASSET(2) char object_bob_Tex_000308[] = dobject_bob_Tex_000308; + +#define dobject_bob_Tex_000348 "__OTR__objects/object_bob/object_bob_Tex_000348" +static const ALIGN_ASSET(2) char object_bob_Tex_000348[] = dobject_bob_Tex_000348; + +#define dobject_bob_Tex_000388 "__OTR__objects/object_bob/object_bob_Tex_000388" +static const ALIGN_ASSET(2) char object_bob_Tex_000388[] = dobject_bob_Tex_000388; + +#define dobject_bob_Tex_000788 "__OTR__objects/object_bob/object_bob_Tex_000788" +static const ALIGN_ASSET(2) char object_bob_Tex_000788[] = dobject_bob_Tex_000788; + +#define dobject_bob_Tex_0007C8 "__OTR__objects/object_bob/object_bob_Tex_0007C8" +static const ALIGN_ASSET(2) char object_bob_Tex_0007C8[] = dobject_bob_Tex_0007C8; + +#define dobject_bob_Tex_000FC8 "__OTR__objects/object_bob/object_bob_Tex_000FC8" +static const ALIGN_ASSET(2) char object_bob_Tex_000FC8[] = dobject_bob_Tex_000FC8; + +#define dobject_bob_Tex_0017C8 "__OTR__objects/object_bob/object_bob_Tex_0017C8" +static const ALIGN_ASSET(2) char object_bob_Tex_0017C8[] = dobject_bob_Tex_0017C8; + +#define dobject_bob_Tex_001FC8 "__OTR__objects/object_bob/object_bob_Tex_001FC8" +static const ALIGN_ASSET(2) char object_bob_Tex_001FC8[] = dobject_bob_Tex_001FC8; + +#define dobject_bob_Tex_0020C8 "__OTR__objects/object_bob/object_bob_Tex_0020C8" +static const ALIGN_ASSET(2) char object_bob_Tex_0020C8[] = dobject_bob_Tex_0020C8; + +#define dobject_bob_Tex_0021C8 "__OTR__objects/object_bob/object_bob_Tex_0021C8" +static const ALIGN_ASSET(2) char object_bob_Tex_0021C8[] = dobject_bob_Tex_0021C8; + +#define dobject_bob_Tex_002208 "__OTR__objects/object_bob/object_bob_Tex_002208" +static const ALIGN_ASSET(2) char object_bob_Tex_002208[] = dobject_bob_Tex_002208; + +#define dobject_bob_DL_003B78 "__OTR__objects/object_bob/object_bob_DL_003B78" +static const ALIGN_ASSET(2) char object_bob_DL_003B78[] = dobject_bob_DL_003B78; + +#define dobject_bob_DL_003F68 "__OTR__objects/object_bob/object_bob_DL_003F68" +static const ALIGN_ASSET(2) char object_bob_DL_003F68[] = dobject_bob_DL_003F68; + +#define dobject_bob_DL_0040B0 "__OTR__objects/object_bob/object_bob_DL_0040B0" +static const ALIGN_ASSET(2) char object_bob_DL_0040B0[] = dobject_bob_DL_0040B0; + +#define dobject_bob_DL_0041E0 "__OTR__objects/object_bob/object_bob_DL_0041E0" +static const ALIGN_ASSET(2) char object_bob_DL_0041E0[] = dobject_bob_DL_0041E0; + +#define dobject_bob_DL_004310 "__OTR__objects/object_bob/object_bob_DL_004310" +static const ALIGN_ASSET(2) char object_bob_DL_004310[] = dobject_bob_DL_004310; + +#define dobject_bob_DL_004458 "__OTR__objects/object_bob/object_bob_DL_004458" +static const ALIGN_ASSET(2) char object_bob_DL_004458[] = dobject_bob_DL_004458; + +#define dobject_bob_DL_004588 "__OTR__objects/object_bob/object_bob_DL_004588" +static const ALIGN_ASSET(2) char object_bob_DL_004588[] = dobject_bob_DL_004588; + +#define dobject_bob_DL_0046B8 "__OTR__objects/object_bob/object_bob_DL_0046B8" +static const ALIGN_ASSET(2) char object_bob_DL_0046B8[] = dobject_bob_DL_0046B8; + +#define dobject_bob_DL_004A48 "__OTR__objects/object_bob/object_bob_DL_004A48" +static const ALIGN_ASSET(2) char object_bob_DL_004A48[] = dobject_bob_DL_004A48; + +#define dobject_bob_DL_004B18 "__OTR__objects/object_bob/object_bob_DL_004B18" +static const ALIGN_ASSET(2) char object_bob_DL_004B18[] = dobject_bob_DL_004B18; + +#define dobject_bob_DL_004BE8 "__OTR__objects/object_bob/object_bob_DL_004BE8" +static const ALIGN_ASSET(2) char object_bob_DL_004BE8[] = dobject_bob_DL_004BE8; + +#define dobject_bob_DL_004C38 "__OTR__objects/object_bob/object_bob_DL_004C38" +static const ALIGN_ASSET(2) char object_bob_DL_004C38[] = dobject_bob_DL_004C38; + +#define dobject_bob_DL_004D08 "__OTR__objects/object_bob/object_bob_DL_004D08" +static const ALIGN_ASSET(2) char object_bob_DL_004D08[] = dobject_bob_DL_004D08; + +#define dobject_bob_DL_004DD8 "__OTR__objects/object_bob/object_bob_DL_004DD8" +static const ALIGN_ASSET(2) char object_bob_DL_004DD8[] = dobject_bob_DL_004DD8; + +#define dobject_bob_DL_004E28 "__OTR__objects/object_bob/object_bob_DL_004E28" +static const ALIGN_ASSET(2) char object_bob_DL_004E28[] = dobject_bob_DL_004E28; \ No newline at end of file diff --git a/soh/assets/objects/object_boj/object_boj.h b/soh/assets/objects/object_boj/object_boj.h index 10047e47f..41944eb44 100644 --- a/soh/assets/objects/object_boj/object_boj.h +++ b/soh/assets/objects/object_boj/object_boj.h @@ -1,289 +1,126 @@ #pragma once -#define dobject_boj_Skel_0000F0 "__OTR__objects/object_boj/object_boj_Skel_0000F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Skel_0000F0[] = dobject_boj_Skel_0000F0; -#else -static const char object_boj_Skel_0000F0[] __attribute__((aligned (2))) = dobject_boj_Skel_0000F0; -#endif - -#define dobject_boj_TLUT_0000FC "__OTR__objects/object_boj/object_boj_TLUT_0000FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_TLUT_0000FC[] = dobject_boj_TLUT_0000FC; -#else -static const char object_boj_TLUT_0000FC[] __attribute__((aligned (2))) = dobject_boj_TLUT_0000FC; -#endif - -#define dobject_boj_Tex_0002FC "__OTR__objects/object_boj/object_boj_Tex_0002FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_0002FC[] = dobject_boj_Tex_0002FC; -#else -static const char object_boj_Tex_0002FC[] __attribute__((aligned (2))) = dobject_boj_Tex_0002FC; -#endif - -#define dobject_boj_Tex_00037C "__OTR__objects/object_boj/object_boj_Tex_00037C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_00037C[] = dobject_boj_Tex_00037C; -#else -static const char object_boj_Tex_00037C[] __attribute__((aligned (2))) = dobject_boj_Tex_00037C; -#endif - -#define dobject_boj_Tex_0003BC "__OTR__objects/object_boj/object_boj_Tex_0003BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_0003BC[] = dobject_boj_Tex_0003BC; -#else -static const char object_boj_Tex_0003BC[] __attribute__((aligned (2))) = dobject_boj_Tex_0003BC; -#endif - -#define dobject_boj_Tex_0005BC "__OTR__objects/object_boj/object_boj_Tex_0005BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_0005BC[] = dobject_boj_Tex_0005BC; -#else -static const char object_boj_Tex_0005BC[] __attribute__((aligned (2))) = dobject_boj_Tex_0005BC; -#endif - -#define dobject_boj_Tex_0005FC "__OTR__objects/object_boj/object_boj_Tex_0005FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_0005FC[] = dobject_boj_Tex_0005FC; -#else -static const char object_boj_Tex_0005FC[] __attribute__((aligned (2))) = dobject_boj_Tex_0005FC; -#endif - -#define dobject_boj_Tex_0006FC "__OTR__objects/object_boj/object_boj_Tex_0006FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_0006FC[] = dobject_boj_Tex_0006FC; -#else -static const char object_boj_Tex_0006FC[] __attribute__((aligned (2))) = dobject_boj_Tex_0006FC; -#endif - -#define dobject_boj_Tex_0007FC "__OTR__objects/object_boj/object_boj_Tex_0007FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_0007FC[] = dobject_boj_Tex_0007FC; -#else -static const char object_boj_Tex_0007FC[] __attribute__((aligned (2))) = dobject_boj_Tex_0007FC; -#endif - -#define dobject_boj_Tex_0008FC "__OTR__objects/object_boj/object_boj_Tex_0008FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_0008FC[] = dobject_boj_Tex_0008FC; -#else -static const char object_boj_Tex_0008FC[] __attribute__((aligned (2))) = dobject_boj_Tex_0008FC; -#endif - -#define dobject_boj_Tex_00093C "__OTR__objects/object_boj/object_boj_Tex_00093C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_00093C[] = dobject_boj_Tex_00093C; -#else -static const char object_boj_Tex_00093C[] __attribute__((aligned (2))) = dobject_boj_Tex_00093C; -#endif - -#define dobject_boj_Tex_000A3C "__OTR__objects/object_boj/object_boj_Tex_000A3C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_000A3C[] = dobject_boj_Tex_000A3C; -#else -static const char object_boj_Tex_000A3C[] __attribute__((aligned (2))) = dobject_boj_Tex_000A3C; -#endif - -#define dobject_boj_Tex_000A7C "__OTR__objects/object_boj/object_boj_Tex_000A7C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_000A7C[] = dobject_boj_Tex_000A7C; -#else -static const char object_boj_Tex_000A7C[] __attribute__((aligned (2))) = dobject_boj_Tex_000A7C; -#endif - -#define dobject_boj_DL_0026F0 "__OTR__objects/object_boj/object_boj_DL_0026F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_0026F0[] = dobject_boj_DL_0026F0; -#else -static const char object_boj_DL_0026F0[] __attribute__((aligned (2))) = dobject_boj_DL_0026F0; -#endif - -#define dobject_boj_DL_002AC8 "__OTR__objects/object_boj/object_boj_DL_002AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_002AC8[] = dobject_boj_DL_002AC8; -#else -static const char object_boj_DL_002AC8[] __attribute__((aligned (2))) = dobject_boj_DL_002AC8; -#endif - -#define dobject_boj_DL_002C10 "__OTR__objects/object_boj/object_boj_DL_002C10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_002C10[] = dobject_boj_DL_002C10; -#else -static const char object_boj_DL_002C10[] __attribute__((aligned (2))) = dobject_boj_DL_002C10; -#endif - -#define dobject_boj_DL_002D18 "__OTR__objects/object_boj/object_boj_DL_002D18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_002D18[] = dobject_boj_DL_002D18; -#else -static const char object_boj_DL_002D18[] __attribute__((aligned (2))) = dobject_boj_DL_002D18; -#endif - -#define dobject_boj_DL_002E20 "__OTR__objects/object_boj/object_boj_DL_002E20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_002E20[] = dobject_boj_DL_002E20; -#else -static const char object_boj_DL_002E20[] __attribute__((aligned (2))) = dobject_boj_DL_002E20; -#endif - -#define dobject_boj_DL_002F68 "__OTR__objects/object_boj/object_boj_DL_002F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_002F68[] = dobject_boj_DL_002F68; -#else -static const char object_boj_DL_002F68[] __attribute__((aligned (2))) = dobject_boj_DL_002F68; -#endif - -#define dobject_boj_DL_003070 "__OTR__objects/object_boj/object_boj_DL_003070" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_003070[] = dobject_boj_DL_003070; -#else -static const char object_boj_DL_003070[] __attribute__((aligned (2))) = dobject_boj_DL_003070; -#endif - -#define dobject_boj_DL_003178 "__OTR__objects/object_boj/object_boj_DL_003178" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_003178[] = dobject_boj_DL_003178; -#else -static const char object_boj_DL_003178[] __attribute__((aligned (2))) = dobject_boj_DL_003178; -#endif - -#define dobject_boj_DL_003350 "__OTR__objects/object_boj/object_boj_DL_003350" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_003350[] = dobject_boj_DL_003350; -#else -static const char object_boj_DL_003350[] __attribute__((aligned (2))) = dobject_boj_DL_003350; -#endif - -#define dobject_boj_DL_003468 "__OTR__objects/object_boj/object_boj_DL_003468" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_003468[] = dobject_boj_DL_003468; -#else -static const char object_boj_DL_003468[] __attribute__((aligned (2))) = dobject_boj_DL_003468; -#endif - -#define dobject_boj_DL_003578 "__OTR__objects/object_boj/object_boj_DL_003578" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_003578[] = dobject_boj_DL_003578; -#else -static const char object_boj_DL_003578[] __attribute__((aligned (2))) = dobject_boj_DL_003578; -#endif - -#define dobject_boj_DL_003680 "__OTR__objects/object_boj/object_boj_DL_003680" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_003680[] = dobject_boj_DL_003680; -#else -static const char object_boj_DL_003680[] __attribute__((aligned (2))) = dobject_boj_DL_003680; -#endif - -#define dobject_boj_DL_003798 "__OTR__objects/object_boj/object_boj_DL_003798" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_003798[] = dobject_boj_DL_003798; -#else -static const char object_boj_DL_003798[] __attribute__((aligned (2))) = dobject_boj_DL_003798; -#endif - -#define dobject_boj_DL_0038A8 "__OTR__objects/object_boj/object_boj_DL_0038A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_0038A8[] = dobject_boj_DL_0038A8; -#else -static const char object_boj_DL_0038A8[] __attribute__((aligned (2))) = dobject_boj_DL_0038A8; -#endif - -#define dobject_boj_DL_0039B0 "__OTR__objects/object_boj/object_boj_DL_0039B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_0039B0[] = dobject_boj_DL_0039B0; -#else -static const char object_boj_DL_0039B0[] __attribute__((aligned (2))) = dobject_boj_DL_0039B0; -#endif - -#define dobject_boj_TLUT_003B98 "__OTR__objects/object_boj/object_boj_TLUT_003B98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_TLUT_003B98[] = dobject_boj_TLUT_003B98; -#else -static const char object_boj_TLUT_003B98[] __attribute__((aligned (2))) = dobject_boj_TLUT_003B98; -#endif - -#define dobject_boj_Tex_003D90 "__OTR__objects/object_boj/object_boj_Tex_003D90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_003D90[] = dobject_boj_Tex_003D90; -#else -static const char object_boj_Tex_003D90[] __attribute__((aligned (2))) = dobject_boj_Tex_003D90; -#endif - -#define dobject_boj_Tex_003DD0 "__OTR__objects/object_boj/object_boj_Tex_003DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_003DD0[] = dobject_boj_Tex_003DD0; -#else -static const char object_boj_Tex_003DD0[] __attribute__((aligned (2))) = dobject_boj_Tex_003DD0; -#endif - -#define dobject_boj_Tex_003ED0 "__OTR__objects/object_boj/object_boj_Tex_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_003ED0[] = dobject_boj_Tex_003ED0; -#else -static const char object_boj_Tex_003ED0[] __attribute__((aligned (2))) = dobject_boj_Tex_003ED0; -#endif - -#define dobject_boj_Tex_003FD0 "__OTR__objects/object_boj/object_boj_Tex_003FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_003FD0[] = dobject_boj_Tex_003FD0; -#else -static const char object_boj_Tex_003FD0[] __attribute__((aligned (2))) = dobject_boj_Tex_003FD0; -#endif - -#define dobject_boj_Tex_004050 "__OTR__objects/object_boj/object_boj_Tex_004050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_004050[] = dobject_boj_Tex_004050; -#else -static const char object_boj_Tex_004050[] __attribute__((aligned (2))) = dobject_boj_Tex_004050; -#endif - -#define dobject_boj_Tex_004150 "__OTR__objects/object_boj/object_boj_Tex_004150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_004150[] = dobject_boj_Tex_004150; -#else -static const char object_boj_Tex_004150[] __attribute__((aligned (2))) = dobject_boj_Tex_004150; -#endif - -#define dobject_boj_Tex_004250 "__OTR__objects/object_boj/object_boj_Tex_004250" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_Tex_004250[] = dobject_boj_Tex_004250; -#else -static const char object_boj_Tex_004250[] __attribute__((aligned (2))) = dobject_boj_Tex_004250; -#endif - -#define dobject_boj_DL_0052E0 "__OTR__objects/object_boj/object_boj_DL_0052E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_0052E0[] = dobject_boj_DL_0052E0; -#else -static const char object_boj_DL_0052E0[] __attribute__((aligned (2))) = dobject_boj_DL_0052E0; -#endif - -#define dobject_boj_DL_005528 "__OTR__objects/object_boj/object_boj_DL_005528" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_005528[] = dobject_boj_DL_005528; -#else -static const char object_boj_DL_005528[] __attribute__((aligned (2))) = dobject_boj_DL_005528; -#endif - -#define dobject_boj_DL_005738 "__OTR__objects/object_boj/object_boj_DL_005738" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_005738[] = dobject_boj_DL_005738; -#else -static const char object_boj_DL_005738[] __attribute__((aligned (2))) = dobject_boj_DL_005738; -#endif - -#define dobject_boj_DL_0059B0 "__OTR__objects/object_boj/object_boj_DL_0059B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_0059B0[] = dobject_boj_DL_0059B0; -#else -static const char object_boj_DL_0059B0[] __attribute__((aligned (2))) = dobject_boj_DL_0059B0; -#endif - -#define dobject_boj_DL_005BC8 "__OTR__objects/object_boj/object_boj_DL_005BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boj_DL_005BC8[] = dobject_boj_DL_005BC8; -#else -static const char object_boj_DL_005BC8[] __attribute__((aligned (2))) = dobject_boj_DL_005BC8; -#endif - +#include "align_asset_macro.h" + +#define dobject_boj_Skel_0000F0 "__OTR__objects/object_boj/object_boj_Skel_0000F0" +static const ALIGN_ASSET(2) char object_boj_Skel_0000F0[] = dobject_boj_Skel_0000F0; + +#define dobject_boj_TLUT_0000FC "__OTR__objects/object_boj/object_boj_TLUT_0000FC" +static const ALIGN_ASSET(2) char object_boj_TLUT_0000FC[] = dobject_boj_TLUT_0000FC; + +#define dobject_boj_Tex_0002FC "__OTR__objects/object_boj/object_boj_Tex_0002FC" +static const ALIGN_ASSET(2) char object_boj_Tex_0002FC[] = dobject_boj_Tex_0002FC; + +#define dobject_boj_Tex_00037C "__OTR__objects/object_boj/object_boj_Tex_00037C" +static const ALIGN_ASSET(2) char object_boj_Tex_00037C[] = dobject_boj_Tex_00037C; + +#define dobject_boj_Tex_0003BC "__OTR__objects/object_boj/object_boj_Tex_0003BC" +static const ALIGN_ASSET(2) char object_boj_Tex_0003BC[] = dobject_boj_Tex_0003BC; + +#define dobject_boj_Tex_0005BC "__OTR__objects/object_boj/object_boj_Tex_0005BC" +static const ALIGN_ASSET(2) char object_boj_Tex_0005BC[] = dobject_boj_Tex_0005BC; + +#define dobject_boj_Tex_0005FC "__OTR__objects/object_boj/object_boj_Tex_0005FC" +static const ALIGN_ASSET(2) char object_boj_Tex_0005FC[] = dobject_boj_Tex_0005FC; + +#define dobject_boj_Tex_0006FC "__OTR__objects/object_boj/object_boj_Tex_0006FC" +static const ALIGN_ASSET(2) char object_boj_Tex_0006FC[] = dobject_boj_Tex_0006FC; + +#define dobject_boj_Tex_0007FC "__OTR__objects/object_boj/object_boj_Tex_0007FC" +static const ALIGN_ASSET(2) char object_boj_Tex_0007FC[] = dobject_boj_Tex_0007FC; + +#define dobject_boj_Tex_0008FC "__OTR__objects/object_boj/object_boj_Tex_0008FC" +static const ALIGN_ASSET(2) char object_boj_Tex_0008FC[] = dobject_boj_Tex_0008FC; + +#define dobject_boj_Tex_00093C "__OTR__objects/object_boj/object_boj_Tex_00093C" +static const ALIGN_ASSET(2) char object_boj_Tex_00093C[] = dobject_boj_Tex_00093C; + +#define dobject_boj_Tex_000A3C "__OTR__objects/object_boj/object_boj_Tex_000A3C" +static const ALIGN_ASSET(2) char object_boj_Tex_000A3C[] = dobject_boj_Tex_000A3C; + +#define dobject_boj_Tex_000A7C "__OTR__objects/object_boj/object_boj_Tex_000A7C" +static const ALIGN_ASSET(2) char object_boj_Tex_000A7C[] = dobject_boj_Tex_000A7C; + +#define dobject_boj_DL_0026F0 "__OTR__objects/object_boj/object_boj_DL_0026F0" +static const ALIGN_ASSET(2) char object_boj_DL_0026F0[] = dobject_boj_DL_0026F0; + +#define dobject_boj_DL_002AC8 "__OTR__objects/object_boj/object_boj_DL_002AC8" +static const ALIGN_ASSET(2) char object_boj_DL_002AC8[] = dobject_boj_DL_002AC8; + +#define dobject_boj_DL_002C10 "__OTR__objects/object_boj/object_boj_DL_002C10" +static const ALIGN_ASSET(2) char object_boj_DL_002C10[] = dobject_boj_DL_002C10; + +#define dobject_boj_DL_002D18 "__OTR__objects/object_boj/object_boj_DL_002D18" +static const ALIGN_ASSET(2) char object_boj_DL_002D18[] = dobject_boj_DL_002D18; + +#define dobject_boj_DL_002E20 "__OTR__objects/object_boj/object_boj_DL_002E20" +static const ALIGN_ASSET(2) char object_boj_DL_002E20[] = dobject_boj_DL_002E20; + +#define dobject_boj_DL_002F68 "__OTR__objects/object_boj/object_boj_DL_002F68" +static const ALIGN_ASSET(2) char object_boj_DL_002F68[] = dobject_boj_DL_002F68; + +#define dobject_boj_DL_003070 "__OTR__objects/object_boj/object_boj_DL_003070" +static const ALIGN_ASSET(2) char object_boj_DL_003070[] = dobject_boj_DL_003070; + +#define dobject_boj_DL_003178 "__OTR__objects/object_boj/object_boj_DL_003178" +static const ALIGN_ASSET(2) char object_boj_DL_003178[] = dobject_boj_DL_003178; + +#define dobject_boj_DL_003350 "__OTR__objects/object_boj/object_boj_DL_003350" +static const ALIGN_ASSET(2) char object_boj_DL_003350[] = dobject_boj_DL_003350; + +#define dobject_boj_DL_003468 "__OTR__objects/object_boj/object_boj_DL_003468" +static const ALIGN_ASSET(2) char object_boj_DL_003468[] = dobject_boj_DL_003468; + +#define dobject_boj_DL_003578 "__OTR__objects/object_boj/object_boj_DL_003578" +static const ALIGN_ASSET(2) char object_boj_DL_003578[] = dobject_boj_DL_003578; + +#define dobject_boj_DL_003680 "__OTR__objects/object_boj/object_boj_DL_003680" +static const ALIGN_ASSET(2) char object_boj_DL_003680[] = dobject_boj_DL_003680; + +#define dobject_boj_DL_003798 "__OTR__objects/object_boj/object_boj_DL_003798" +static const ALIGN_ASSET(2) char object_boj_DL_003798[] = dobject_boj_DL_003798; + +#define dobject_boj_DL_0038A8 "__OTR__objects/object_boj/object_boj_DL_0038A8" +static const ALIGN_ASSET(2) char object_boj_DL_0038A8[] = dobject_boj_DL_0038A8; + +#define dobject_boj_DL_0039B0 "__OTR__objects/object_boj/object_boj_DL_0039B0" +static const ALIGN_ASSET(2) char object_boj_DL_0039B0[] = dobject_boj_DL_0039B0; + +#define dobject_boj_TLUT_003B98 "__OTR__objects/object_boj/object_boj_TLUT_003B98" +static const ALIGN_ASSET(2) char object_boj_TLUT_003B98[] = dobject_boj_TLUT_003B98; + +#define dobject_boj_Tex_003D90 "__OTR__objects/object_boj/object_boj_Tex_003D90" +static const ALIGN_ASSET(2) char object_boj_Tex_003D90[] = dobject_boj_Tex_003D90; + +#define dobject_boj_Tex_003DD0 "__OTR__objects/object_boj/object_boj_Tex_003DD0" +static const ALIGN_ASSET(2) char object_boj_Tex_003DD0[] = dobject_boj_Tex_003DD0; + +#define dobject_boj_Tex_003ED0 "__OTR__objects/object_boj/object_boj_Tex_003ED0" +static const ALIGN_ASSET(2) char object_boj_Tex_003ED0[] = dobject_boj_Tex_003ED0; + +#define dobject_boj_Tex_003FD0 "__OTR__objects/object_boj/object_boj_Tex_003FD0" +static const ALIGN_ASSET(2) char object_boj_Tex_003FD0[] = dobject_boj_Tex_003FD0; + +#define dobject_boj_Tex_004050 "__OTR__objects/object_boj/object_boj_Tex_004050" +static const ALIGN_ASSET(2) char object_boj_Tex_004050[] = dobject_boj_Tex_004050; + +#define dobject_boj_Tex_004150 "__OTR__objects/object_boj/object_boj_Tex_004150" +static const ALIGN_ASSET(2) char object_boj_Tex_004150[] = dobject_boj_Tex_004150; + +#define dobject_boj_Tex_004250 "__OTR__objects/object_boj/object_boj_Tex_004250" +static const ALIGN_ASSET(2) char object_boj_Tex_004250[] = dobject_boj_Tex_004250; + +#define dobject_boj_DL_0052E0 "__OTR__objects/object_boj/object_boj_DL_0052E0" +static const ALIGN_ASSET(2) char object_boj_DL_0052E0[] = dobject_boj_DL_0052E0; + +#define dobject_boj_DL_005528 "__OTR__objects/object_boj/object_boj_DL_005528" +static const ALIGN_ASSET(2) char object_boj_DL_005528[] = dobject_boj_DL_005528; + +#define dobject_boj_DL_005738 "__OTR__objects/object_boj/object_boj_DL_005738" +static const ALIGN_ASSET(2) char object_boj_DL_005738[] = dobject_boj_DL_005738; + +#define dobject_boj_DL_0059B0 "__OTR__objects/object_boj/object_boj_DL_0059B0" +static const ALIGN_ASSET(2) char object_boj_DL_0059B0[] = dobject_boj_DL_0059B0; + +#define dobject_boj_DL_005BC8 "__OTR__objects/object_boj/object_boj_DL_005BC8" +static const ALIGN_ASSET(2) char object_boj_DL_005BC8[] = dobject_boj_DL_005BC8; \ No newline at end of file diff --git a/soh/assets/objects/object_bombf/object_bombf.h b/soh/assets/objects/object_bombf/object_bombf.h index 84c699778..9709f4f71 100644 --- a/soh/assets/objects/object_bombf/object_bombf.h +++ b/soh/assets/objects/object_bombf/object_bombf.h @@ -1,51 +1,24 @@ #pragma once -#define dgBombFlowerLeafOutwardsTex "__OTR__objects/object_bombf/gBombFlowerLeafOutwardsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombFlowerLeafOutwardsTex[] = dgBombFlowerLeafOutwardsTex; -#else -static const char gBombFlowerLeafOutwardsTex[] __attribute__((aligned (2))) = dgBombFlowerLeafOutwardsTex; -#endif - -#define dgBombFlowerLeafUpwardsTex "__OTR__objects/object_bombf/gBombFlowerLeafUpwardsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombFlowerLeafUpwardsTex[] = dgBombFlowerLeafUpwardsTex; -#else -static const char gBombFlowerLeafUpwardsTex[] __attribute__((aligned (2))) = dgBombFlowerLeafUpwardsTex; -#endif - -#define dgBombFlowerBombTex "__OTR__objects/object_bombf/gBombFlowerBombTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombFlowerBombTex[] = dgBombFlowerBombTex; -#else -static const char gBombFlowerBombTex[] __attribute__((aligned (2))) = dgBombFlowerBombTex; -#endif - -#define dgBombFlowerFuseTex "__OTR__objects/object_bombf/gBombFlowerFuseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombFlowerFuseTex[] = dgBombFlowerFuseTex; -#else -static const char gBombFlowerFuseTex[] __attribute__((aligned (2))) = dgBombFlowerFuseTex; -#endif - -#define dgBombFlowerLeavesDL "__OTR__objects/object_bombf/gBombFlowerLeavesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombFlowerLeavesDL[] = dgBombFlowerLeavesDL; -#else -static const char gBombFlowerLeavesDL[] __attribute__((aligned (2))) = dgBombFlowerLeavesDL; -#endif - -#define dgBombFlowerBombAndSparkDL "__OTR__objects/object_bombf/gBombFlowerBombAndSparkDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombFlowerBombAndSparkDL[] = dgBombFlowerBombAndSparkDL; -#else -static const char gBombFlowerBombAndSparkDL[] __attribute__((aligned (2))) = dgBombFlowerBombAndSparkDL; -#endif - -#define dgBombFlowerBaseLeavesDL "__OTR__objects/object_bombf/gBombFlowerBaseLeavesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombFlowerBaseLeavesDL[] = dgBombFlowerBaseLeavesDL; -#else -static const char gBombFlowerBaseLeavesDL[] __attribute__((aligned (2))) = dgBombFlowerBaseLeavesDL; -#endif - +#include "align_asset_macro.h" + +#define dgBombFlowerLeafOutwardsTex "__OTR__objects/object_bombf/gBombFlowerLeafOutwardsTex" +static const ALIGN_ASSET(2) char gBombFlowerLeafOutwardsTex[] = dgBombFlowerLeafOutwardsTex; + +#define dgBombFlowerLeafUpwardsTex "__OTR__objects/object_bombf/gBombFlowerLeafUpwardsTex" +static const ALIGN_ASSET(2) char gBombFlowerLeafUpwardsTex[] = dgBombFlowerLeafUpwardsTex; + +#define dgBombFlowerBombTex "__OTR__objects/object_bombf/gBombFlowerBombTex" +static const ALIGN_ASSET(2) char gBombFlowerBombTex[] = dgBombFlowerBombTex; + +#define dgBombFlowerFuseTex "__OTR__objects/object_bombf/gBombFlowerFuseTex" +static const ALIGN_ASSET(2) char gBombFlowerFuseTex[] = dgBombFlowerFuseTex; + +#define dgBombFlowerLeavesDL "__OTR__objects/object_bombf/gBombFlowerLeavesDL" +static const ALIGN_ASSET(2) char gBombFlowerLeavesDL[] = dgBombFlowerLeavesDL; + +#define dgBombFlowerBombAndSparkDL "__OTR__objects/object_bombf/gBombFlowerBombAndSparkDL" +static const ALIGN_ASSET(2) char gBombFlowerBombAndSparkDL[] = dgBombFlowerBombAndSparkDL; + +#define dgBombFlowerBaseLeavesDL "__OTR__objects/object_bombf/gBombFlowerBaseLeavesDL" +static const ALIGN_ASSET(2) char gBombFlowerBaseLeavesDL[] = dgBombFlowerBaseLeavesDL; \ No newline at end of file diff --git a/soh/assets/objects/object_bombiwa/object_bombiwa.h b/soh/assets/objects/object_bombiwa/object_bombiwa.h index c250f5b75..f646f0e7f 100644 --- a/soh/assets/objects/object_bombiwa/object_bombiwa.h +++ b/soh/assets/objects/object_bombiwa/object_bombiwa.h @@ -1,23 +1,12 @@ #pragma once -#define dobject_bombiwa_TLUT_000000 "__OTR__objects/object_bombiwa/object_bombiwa_TLUT_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bombiwa_TLUT_000000[] = dobject_bombiwa_TLUT_000000; -#else -static const char object_bombiwa_TLUT_000000[] __attribute__((aligned (2))) = dobject_bombiwa_TLUT_000000; -#endif - -#define dobject_bombiwa_Tex_000020 "__OTR__objects/object_bombiwa/object_bombiwa_Tex_000020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bombiwa_Tex_000020[] = dobject_bombiwa_Tex_000020; -#else -static const char object_bombiwa_Tex_000020[] __attribute__((aligned (2))) = dobject_bombiwa_Tex_000020; -#endif - -#define dobject_bombiwa_DL_0009E0 "__OTR__objects/object_bombiwa/object_bombiwa_DL_0009E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bombiwa_DL_0009E0[] = dobject_bombiwa_DL_0009E0; -#else -static const char object_bombiwa_DL_0009E0[] __attribute__((aligned (2))) = dobject_bombiwa_DL_0009E0; -#endif - +#include "align_asset_macro.h" + +#define dobject_bombiwa_TLUT_000000 "__OTR__objects/object_bombiwa/object_bombiwa_TLUT_000000" +static const ALIGN_ASSET(2) char object_bombiwa_TLUT_000000[] = dobject_bombiwa_TLUT_000000; + +#define dobject_bombiwa_Tex_000020 "__OTR__objects/object_bombiwa/object_bombiwa_Tex_000020" +static const ALIGN_ASSET(2) char object_bombiwa_Tex_000020[] = dobject_bombiwa_Tex_000020; + +#define dobject_bombiwa_DL_0009E0 "__OTR__objects/object_bombiwa/object_bombiwa_DL_0009E0" +static const ALIGN_ASSET(2) char object_bombiwa_DL_0009E0[] = dobject_bombiwa_DL_0009E0; \ No newline at end of file diff --git a/soh/assets/objects/object_bowl/object_bowl.h b/soh/assets/objects/object_bowl/object_bowl.h index afe77f8fe..b6d85f959 100644 --- a/soh/assets/objects/object_bowl/object_bowl.h +++ b/soh/assets/objects/object_bowl/object_bowl.h @@ -1,65 +1,30 @@ #pragma once -#define dgBowlingWoodPanelTex "__OTR__objects/object_bowl/gBowlingWoodPanelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingWoodPanelTex[] = dgBowlingWoodPanelTex; -#else -static const char gBowlingWoodPanelTex[] __attribute__((aligned (2))) = dgBowlingWoodPanelTex; -#endif - -#define dgBowlingStoneWallTex "__OTR__objects/object_bowl/gBowlingStoneWallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingStoneWallTex[] = dgBowlingStoneWallTex; -#else -static const char gBowlingStoneWallTex[] __attribute__((aligned (2))) = dgBowlingStoneWallTex; -#endif - -#define dgBowlingStripesTex "__OTR__objects/object_bowl/gBowlingStripesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingStripesTex[] = dgBowlingStripesTex; -#else -static const char gBowlingStripesTex[] __attribute__((aligned (2))) = dgBowlingStripesTex; -#endif - -#define dgBowlingRound1WallDL "__OTR__objects/object_bowl/gBowlingRound1WallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingRound1WallDL[] = dgBowlingRound1WallDL; -#else -static const char gBowlingRound1WallDL[] __attribute__((aligned (2))) = dgBowlingRound1WallDL; -#endif - -#define dgBowlingRound2WallDL "__OTR__objects/object_bowl/gBowlingRound2WallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingRound2WallDL[] = dgBowlingRound2WallDL; -#else -static const char gBowlingRound2WallDL[] __attribute__((aligned (2))) = dgBowlingRound2WallDL; -#endif - -#define dgBowlingDL_1B80 "__OTR__objects/object_bowl/gBowlingDL_1B80" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingDL_1B80[] = dgBowlingDL_1B80; -#else -static const char gBowlingDL_1B80[] __attribute__((aligned (2))) = dgBowlingDL_1B80; -#endif - -#define dgBowlingFirstAndFinalRoundCol "__OTR__objects/object_bowl/gBowlingFirstAndFinalRoundCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingFirstAndFinalRoundCol[] = dgBowlingFirstAndFinalRoundCol; -#else -static const char gBowlingFirstAndFinalRoundCol[] __attribute__((aligned (2))) = dgBowlingFirstAndFinalRoundCol; -#endif - -#define dgBowlingSecondRoundCol "__OTR__objects/object_bowl/gBowlingSecondRoundCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingSecondRoundCol[] = dgBowlingSecondRoundCol; -#else -static const char gBowlingSecondRoundCol[] __attribute__((aligned (2))) = dgBowlingSecondRoundCol; -#endif - -#define dgBowlingDefaultCol "__OTR__objects/object_bowl/gBowlingDefaultCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBowlingDefaultCol[] = dgBowlingDefaultCol; -#else -static const char gBowlingDefaultCol[] __attribute__((aligned (2))) = dgBowlingDefaultCol; -#endif - +#include "align_asset_macro.h" + +#define dgBowlingWoodPanelTex "__OTR__objects/object_bowl/gBowlingWoodPanelTex" +static const ALIGN_ASSET(2) char gBowlingWoodPanelTex[] = dgBowlingWoodPanelTex; + +#define dgBowlingStoneWallTex "__OTR__objects/object_bowl/gBowlingStoneWallTex" +static const ALIGN_ASSET(2) char gBowlingStoneWallTex[] = dgBowlingStoneWallTex; + +#define dgBowlingStripesTex "__OTR__objects/object_bowl/gBowlingStripesTex" +static const ALIGN_ASSET(2) char gBowlingStripesTex[] = dgBowlingStripesTex; + +#define dgBowlingRound1WallDL "__OTR__objects/object_bowl/gBowlingRound1WallDL" +static const ALIGN_ASSET(2) char gBowlingRound1WallDL[] = dgBowlingRound1WallDL; + +#define dgBowlingRound2WallDL "__OTR__objects/object_bowl/gBowlingRound2WallDL" +static const ALIGN_ASSET(2) char gBowlingRound2WallDL[] = dgBowlingRound2WallDL; + +#define dgBowlingDL_1B80 "__OTR__objects/object_bowl/gBowlingDL_1B80" +static const ALIGN_ASSET(2) char gBowlingDL_1B80[] = dgBowlingDL_1B80; + +#define dgBowlingFirstAndFinalRoundCol "__OTR__objects/object_bowl/gBowlingFirstAndFinalRoundCol" +static const ALIGN_ASSET(2) char gBowlingFirstAndFinalRoundCol[] = dgBowlingFirstAndFinalRoundCol; + +#define dgBowlingSecondRoundCol "__OTR__objects/object_bowl/gBowlingSecondRoundCol" +static const ALIGN_ASSET(2) char gBowlingSecondRoundCol[] = dgBowlingSecondRoundCol; + +#define dgBowlingDefaultCol "__OTR__objects/object_bowl/gBowlingDefaultCol" +static const ALIGN_ASSET(2) char gBowlingDefaultCol[] = dgBowlingDefaultCol; \ No newline at end of file diff --git a/soh/assets/objects/object_box/object_box.h b/soh/assets/objects/object_box/object_box.h index 07cf7c491..cf6f77973 100644 --- a/soh/assets/objects/object_box/object_box.h +++ b/soh/assets/objects/object_box/object_box.h @@ -1,170 +1,75 @@ #pragma once -#define dgTreasureChestCurveSkel "__OTR__objects/object_box/gTreasureChestCurveSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCurveSkel[] = dgTreasureChestCurveSkel; -#else -static const char gTreasureChestCurveSkel[] __attribute__((aligned (2))) = dgTreasureChestCurveSkel; -#endif - -#define dgTreasureChestCurveAnim_4B60 "__OTR__objects/object_box/gTreasureChestCurveAnim_4B60" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCurveAnim_4B60[] = dgTreasureChestCurveAnim_4B60; -#else -static const char gTreasureChestCurveAnim_4B60[] __attribute__((aligned (2))) = dgTreasureChestCurveAnim_4B60; -#endif - -#define dgTreasureChestCurveAnim_4F70 "__OTR__objects/object_box/gTreasureChestCurveAnim_4F70" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCurveAnim_4F70[] = dgTreasureChestCurveAnim_4F70; -#else -static const char gTreasureChestCurveAnim_4F70[] __attribute__((aligned (2))) = dgTreasureChestCurveAnim_4F70; -#endif - -#define dgTreasureChestAnim_000128 "__OTR__objects/object_box/gTreasureChestAnim_000128" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestAnim_000128[] = dgTreasureChestAnim_000128; -#else -static const char gTreasureChestAnim_000128[] __attribute__((aligned (2))) = dgTreasureChestAnim_000128; -#endif - -#define dgTreasureChestAnim_00024C "__OTR__objects/object_box/gTreasureChestAnim_00024C" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestAnim_00024C[] = dgTreasureChestAnim_00024C; -#else -static const char gTreasureChestAnim_00024C[] __attribute__((aligned (2))) = dgTreasureChestAnim_00024C; -#endif - -#define dgTreasureChestAnim_00043C "__OTR__objects/object_box/gTreasureChestAnim_00043C" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestAnim_00043C[] = dgTreasureChestAnim_00043C; -#else -static const char gTreasureChestAnim_00043C[] __attribute__((aligned (2))) = dgTreasureChestAnim_00043C; -#endif - -#define dgTreasureChestChestFrontDL "__OTR__objects/object_box/gTreasureChestChestFrontDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestChestFrontDL[] = dgTreasureChestChestFrontDL; -#else -static const char gTreasureChestChestFrontDL[] __attribute__((aligned (2))) = dgTreasureChestChestFrontDL; -#endif - -#define dgTreasureChestFrontTex "__OTR__objects/object_box/gTreasureChestFrontTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestFrontTex[] = dgTreasureChestFrontTex; -#else -static const char gTreasureChestFrontTex[] __attribute__((aligned (2))) = dgTreasureChestFrontTex; -#endif - -#define dgTreasureChestBossKeyChestFrontDL "__OTR__objects/object_box/gTreasureChestBossKeyChestFrontDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestBossKeyChestFrontDL[] = dgTreasureChestBossKeyChestFrontDL; -#else -static const char gTreasureChestBossKeyChestFrontDL[] __attribute__((aligned (2))) = dgTreasureChestBossKeyChestFrontDL; -#endif - -#define dgTreasureChestBossKeyFrontTex "__OTR__objects/object_box/gTreasureChestBossKeyFrontTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestBossKeyFrontTex[] = dgTreasureChestBossKeyFrontTex; -#else -static const char gTreasureChestBossKeyFrontTex[] __attribute__((aligned (2))) = dgTreasureChestBossKeyFrontTex; -#endif - -#define dgTreasureChestChestSideAndLidDL "__OTR__objects/object_box/gTreasureChestChestSideAndLidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestChestSideAndLidDL[] = dgTreasureChestChestSideAndLidDL; -#else -static const char gTreasureChestChestSideAndLidDL[] __attribute__((aligned (2))) = dgTreasureChestChestSideAndLidDL; -#endif - -#define dgTreasureChestSideAndTopTex "__OTR__objects/object_box/gTreasureChestSideAndTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestSideAndTopTex[] = dgTreasureChestSideAndTopTex; -#else -static const char gTreasureChestSideAndTopTex[] __attribute__((aligned (2))) = dgTreasureChestSideAndTopTex; -#endif - -#define dgTreasureChestBossKeyChestSideAndTopDL "__OTR__objects/object_box/gTreasureChestBossKeyChestSideAndTopDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestBossKeyChestSideAndTopDL[] = dgTreasureChestBossKeyChestSideAndTopDL; -#else -static const char gTreasureChestBossKeyChestSideAndTopDL[] __attribute__((aligned (2))) = dgTreasureChestBossKeyChestSideAndTopDL; -#endif - -#define dgTreasureChestBossKeySideAndTopTex "__OTR__objects/object_box/gTreasureChestBossKeySideAndTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestBossKeySideAndTopTex[] = dgTreasureChestBossKeySideAndTopTex; -#else -static const char gTreasureChestBossKeySideAndTopTex[] __attribute__((aligned (2))) = dgTreasureChestBossKeySideAndTopTex; -#endif - -#define dgTreasureChestSkel "__OTR__objects/object_box/gTreasureChestSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestSkel[] = dgTreasureChestSkel; -#else -static const char gTreasureChestSkel[] __attribute__((aligned (2))) = dgTreasureChestSkel; -#endif - -#define dgTreasureChestCol "__OTR__objects/object_box/gTreasureChestCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCol[] = dgTreasureChestCol; -#else -static const char gTreasureChestCol[] __attribute__((aligned (2))) = dgTreasureChestCol; -#endif - -#define dgBoxBlob_00025C "__OTR__objects/object_box/gBoxBlob_00025C" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoxBlob_00025C[] = dgBoxBlob_00025C; -#else -static const char gBoxBlob_00025C[] __attribute__((aligned (2))) = dgBoxBlob_00025C; -#endif - -#define dgBoxBlob_00044C "__OTR__objects/object_box/gBoxBlob_00044C" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoxBlob_00044C[] = dgBoxBlob_00044C; -#else -static const char gBoxBlob_00044C[] __attribute__((aligned (2))) = dgBoxBlob_00044C; -#endif - -#define dgTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0[] = dgTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0; -#else -static const char gTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0[] __attribute__((aligned (2))) = dgTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0; -#endif - -#define dgTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48[] = dgTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48; -#else -static const char gTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48[] __attribute__((aligned (2))) = dgTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48; -#endif - -#define dgTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80[] = dgTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80; -#else -static const char gTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80[] __attribute__((aligned (2))) = dgTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80; -#endif - -#define dgTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10[] = dgTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10; -#else -static const char gTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10[] __attribute__((aligned (2))) = dgTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10; -#endif - -#define dgTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8[] = dgTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8; -#else -static const char gTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8[] __attribute__((aligned (2))) = dgTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8; -#endif - -#define dobject_boxTex_004F80 "__OTR__objects/object_box/object_boxTex_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_boxTex_004F80[] = dobject_boxTex_004F80; -#else -static const char object_boxTex_004F80[] __attribute__((aligned (2))) = dobject_boxTex_004F80; -#endif - +#include "align_asset_macro.h" + +#define dgTreasureChestCurveSkel "__OTR__objects/object_box/gTreasureChestCurveSkel" +static const ALIGN_ASSET(2) char gTreasureChestCurveSkel[] = dgTreasureChestCurveSkel; + +#define dgTreasureChestCurveAnim_4B60 "__OTR__objects/object_box/gTreasureChestCurveAnim_4B60" +static const ALIGN_ASSET(2) char gTreasureChestCurveAnim_4B60[] = dgTreasureChestCurveAnim_4B60; + +#define dgTreasureChestCurveAnim_4F70 "__OTR__objects/object_box/gTreasureChestCurveAnim_4F70" +static const ALIGN_ASSET(2) char gTreasureChestCurveAnim_4F70[] = dgTreasureChestCurveAnim_4F70; + +#define dgTreasureChestAnim_000128 "__OTR__objects/object_box/gTreasureChestAnim_000128" +static const ALIGN_ASSET(2) char gTreasureChestAnim_000128[] = dgTreasureChestAnim_000128; + +#define dgTreasureChestAnim_00024C "__OTR__objects/object_box/gTreasureChestAnim_00024C" +static const ALIGN_ASSET(2) char gTreasureChestAnim_00024C[] = dgTreasureChestAnim_00024C; + +#define dgTreasureChestAnim_00043C "__OTR__objects/object_box/gTreasureChestAnim_00043C" +static const ALIGN_ASSET(2) char gTreasureChestAnim_00043C[] = dgTreasureChestAnim_00043C; + +#define dgTreasureChestChestFrontDL "__OTR__objects/object_box/gTreasureChestChestFrontDL" +static const ALIGN_ASSET(2) char gTreasureChestChestFrontDL[] = dgTreasureChestChestFrontDL; + +#define dgTreasureChestFrontTex "__OTR__objects/object_box/gTreasureChestFrontTex" +static const ALIGN_ASSET(2) char gTreasureChestFrontTex[] = dgTreasureChestFrontTex; + +#define dgTreasureChestBossKeyChestFrontDL "__OTR__objects/object_box/gTreasureChestBossKeyChestFrontDL" +static const ALIGN_ASSET(2) char gTreasureChestBossKeyChestFrontDL[] = dgTreasureChestBossKeyChestFrontDL; + +#define dgTreasureChestBossKeyFrontTex "__OTR__objects/object_box/gTreasureChestBossKeyFrontTex" +static const ALIGN_ASSET(2) char gTreasureChestBossKeyFrontTex[] = dgTreasureChestBossKeyFrontTex; + +#define dgTreasureChestChestSideAndLidDL "__OTR__objects/object_box/gTreasureChestChestSideAndLidDL" +static const ALIGN_ASSET(2) char gTreasureChestChestSideAndLidDL[] = dgTreasureChestChestSideAndLidDL; + +#define dgTreasureChestSideAndTopTex "__OTR__objects/object_box/gTreasureChestSideAndTopTex" +static const ALIGN_ASSET(2) char gTreasureChestSideAndTopTex[] = dgTreasureChestSideAndTopTex; + +#define dgTreasureChestBossKeyChestSideAndTopDL "__OTR__objects/object_box/gTreasureChestBossKeyChestSideAndTopDL" +static const ALIGN_ASSET(2) char gTreasureChestBossKeyChestSideAndTopDL[] = dgTreasureChestBossKeyChestSideAndTopDL; + +#define dgTreasureChestBossKeySideAndTopTex "__OTR__objects/object_box/gTreasureChestBossKeySideAndTopTex" +static const ALIGN_ASSET(2) char gTreasureChestBossKeySideAndTopTex[] = dgTreasureChestBossKeySideAndTopTex; + +#define dgTreasureChestSkel "__OTR__objects/object_box/gTreasureChestSkel" +static const ALIGN_ASSET(2) char gTreasureChestSkel[] = dgTreasureChestSkel; + +#define dgTreasureChestCol "__OTR__objects/object_box/gTreasureChestCol" +static const ALIGN_ASSET(2) char gTreasureChestCol[] = dgTreasureChestCol; + +#define dgBoxBlob_00025C "__OTR__objects/object_box/gBoxBlob_00025C" +static const ALIGN_ASSET(2) char gBoxBlob_00025C[] = dgBoxBlob_00025C; + +#define dgBoxBlob_00044C "__OTR__objects/object_box/gBoxBlob_00044C" +static const ALIGN_ASSET(2) char gBoxBlob_00044C[] = dgBoxBlob_00044C; + +#define dgTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0" +static const ALIGN_ASSET(2) char gTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0[] = dgTreasureChestCurveSkelLimbsLimb_005DE4Curve2DL_0059D0; + +#define dgTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48" +static const ALIGN_ASSET(2) char gTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48[] = dgTreasureChestCurveSkelLimbsLimb_005E08Curve2DL_005C48; + +#define dgTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80" +static const ALIGN_ASSET(2) char gTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80[] = dgTreasureChestCurveSkelLimbsLimb_005E2CCurve2DL_005B80; + +#define dgTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10" +static const ALIGN_ASSET(2) char gTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10[] = dgTreasureChestCurveSkelLimbsLimb_005E50Curve2DL_005D10; + +#define dgTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8 "__OTR__objects/object_box/gTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8" +static const ALIGN_ASSET(2) char gTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8[] = dgTreasureChestCurveSkelLimbsLimb_005E74Curve2DL_005AB8; + +#define dobject_boxTex_004F80 "__OTR__objects/object_box/object_boxTex_004F80" +static const ALIGN_ASSET(2) char object_boxTex_004F80[] = dobject_boxTex_004F80; \ No newline at end of file diff --git a/soh/assets/objects/object_brob/object_brob.h b/soh/assets/objects/object_brob/object_brob.h index c3945d0cf..05294de32 100644 --- a/soh/assets/objects/object_brob/object_brob.h +++ b/soh/assets/objects/object_brob/object_brob.h @@ -1,86 +1,39 @@ #pragma once -#define dobject_brob_Anim_000290 "__OTR__objects/object_brob/object_brob_Anim_000290" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_Anim_000290[] = dobject_brob_Anim_000290; -#else -static const char object_brob_Anim_000290[] __attribute__((aligned (2))) = dobject_brob_Anim_000290; -#endif - -#define dobject_brob_DL_0007E0 "__OTR__objects/object_brob/object_brob_DL_0007E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_DL_0007E0[] = dobject_brob_DL_0007E0; -#else -static const char object_brob_DL_0007E0[] __attribute__((aligned (2))) = dobject_brob_DL_0007E0; -#endif - -#define dobject_brob_DL_000898 "__OTR__objects/object_brob/object_brob_DL_000898" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_DL_000898[] = dobject_brob_DL_000898; -#else -static const char object_brob_DL_000898[] __attribute__((aligned (2))) = dobject_brob_DL_000898; -#endif - -#define dobject_brob_DL_0009D0 "__OTR__objects/object_brob/object_brob_DL_0009D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_DL_0009D0[] = dobject_brob_DL_0009D0; -#else -static const char object_brob_DL_0009D0[] __attribute__((aligned (2))) = dobject_brob_DL_0009D0; -#endif - -#define dobject_brob_DL_000AE8 "__OTR__objects/object_brob/object_brob_DL_000AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_DL_000AE8[] = dobject_brob_DL_000AE8; -#else -static const char object_brob_DL_000AE8[] __attribute__((aligned (2))) = dobject_brob_DL_000AE8; -#endif - -#define dobject_brob_DL_000C00 "__OTR__objects/object_brob/object_brob_DL_000C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_DL_000C00[] = dobject_brob_DL_000C00; -#else -static const char object_brob_DL_000C00[] __attribute__((aligned (2))) = dobject_brob_DL_000C00; -#endif - -#define dobject_brob_Tex_000D48 "__OTR__objects/object_brob/object_brob_Tex_000D48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_Tex_000D48[] = dobject_brob_Tex_000D48; -#else -static const char object_brob_Tex_000D48[] __attribute__((aligned (2))) = dobject_brob_Tex_000D48; -#endif - -#define dobject_brob_Skel_0015D8 "__OTR__objects/object_brob/object_brob_Skel_0015D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_Skel_0015D8[] = dobject_brob_Skel_0015D8; -#else -static const char object_brob_Skel_0015D8[] __attribute__((aligned (2))) = dobject_brob_Skel_0015D8; -#endif - -#define dobject_brob_Anim_001678 "__OTR__objects/object_brob/object_brob_Anim_001678" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_Anim_001678[] = dobject_brob_Anim_001678; -#else -static const char object_brob_Anim_001678[] __attribute__((aligned (2))) = dobject_brob_Anim_001678; -#endif - -#define dobject_brob_Anim_001750 "__OTR__objects/object_brob/object_brob_Anim_001750" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_Anim_001750[] = dobject_brob_Anim_001750; -#else -static const char object_brob_Anim_001750[] __attribute__((aligned (2))) = dobject_brob_Anim_001750; -#endif - -#define dobject_brob_Anim_001958 "__OTR__objects/object_brob/object_brob_Anim_001958" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_Anim_001958[] = dobject_brob_Anim_001958; -#else -static const char object_brob_Anim_001958[] __attribute__((aligned (2))) = dobject_brob_Anim_001958; -#endif - -#define dobject_brob_Col_001A70 "__OTR__objects/object_brob/object_brob_Col_001A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_brob_Col_001A70[] = dobject_brob_Col_001A70; -#else -static const char object_brob_Col_001A70[] __attribute__((aligned (2))) = dobject_brob_Col_001A70; -#endif - +#include "align_asset_macro.h" + +#define dobject_brob_Anim_000290 "__OTR__objects/object_brob/object_brob_Anim_000290" +static const ALIGN_ASSET(2) char object_brob_Anim_000290[] = dobject_brob_Anim_000290; + +#define dobject_brob_DL_0007E0 "__OTR__objects/object_brob/object_brob_DL_0007E0" +static const ALIGN_ASSET(2) char object_brob_DL_0007E0[] = dobject_brob_DL_0007E0; + +#define dobject_brob_DL_000898 "__OTR__objects/object_brob/object_brob_DL_000898" +static const ALIGN_ASSET(2) char object_brob_DL_000898[] = dobject_brob_DL_000898; + +#define dobject_brob_DL_0009D0 "__OTR__objects/object_brob/object_brob_DL_0009D0" +static const ALIGN_ASSET(2) char object_brob_DL_0009D0[] = dobject_brob_DL_0009D0; + +#define dobject_brob_DL_000AE8 "__OTR__objects/object_brob/object_brob_DL_000AE8" +static const ALIGN_ASSET(2) char object_brob_DL_000AE8[] = dobject_brob_DL_000AE8; + +#define dobject_brob_DL_000C00 "__OTR__objects/object_brob/object_brob_DL_000C00" +static const ALIGN_ASSET(2) char object_brob_DL_000C00[] = dobject_brob_DL_000C00; + +#define dobject_brob_Tex_000D48 "__OTR__objects/object_brob/object_brob_Tex_000D48" +static const ALIGN_ASSET(2) char object_brob_Tex_000D48[] = dobject_brob_Tex_000D48; + +#define dobject_brob_Skel_0015D8 "__OTR__objects/object_brob/object_brob_Skel_0015D8" +static const ALIGN_ASSET(2) char object_brob_Skel_0015D8[] = dobject_brob_Skel_0015D8; + +#define dobject_brob_Anim_001678 "__OTR__objects/object_brob/object_brob_Anim_001678" +static const ALIGN_ASSET(2) char object_brob_Anim_001678[] = dobject_brob_Anim_001678; + +#define dobject_brob_Anim_001750 "__OTR__objects/object_brob/object_brob_Anim_001750" +static const ALIGN_ASSET(2) char object_brob_Anim_001750[] = dobject_brob_Anim_001750; + +#define dobject_brob_Anim_001958 "__OTR__objects/object_brob/object_brob_Anim_001958" +static const ALIGN_ASSET(2) char object_brob_Anim_001958[] = dobject_brob_Anim_001958; + +#define dobject_brob_Col_001A70 "__OTR__objects/object_brob/object_brob_Col_001A70" +static const ALIGN_ASSET(2) char object_brob_Col_001A70[] = dobject_brob_Col_001A70; \ No newline at end of file diff --git a/soh/assets/objects/object_bubble/object_bubble.h b/soh/assets/objects/object_bubble/object_bubble.h index 058310fa0..872a4ccc8 100644 --- a/soh/assets/objects/object_bubble/object_bubble.h +++ b/soh/assets/objects/object_bubble/object_bubble.h @@ -1,16 +1,9 @@ #pragma once -#define dgBubbleTex "__OTR__objects/object_bubble/gBubbleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBubbleTex[] = dgBubbleTex; -#else -static const char gBubbleTex[] __attribute__((aligned (2))) = dgBubbleTex; -#endif - -#define dgBubbleDL "__OTR__objects/object_bubble/gBubbleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBubbleDL[] = dgBubbleDL; -#else -static const char gBubbleDL[] __attribute__((aligned (2))) = dgBubbleDL; -#endif - +#include "align_asset_macro.h" + +#define dgBubbleTex "__OTR__objects/object_bubble/gBubbleTex" +static const ALIGN_ASSET(2) char gBubbleTex[] = dgBubbleTex; + +#define dgBubbleDL "__OTR__objects/object_bubble/gBubbleDL" +static const ALIGN_ASSET(2) char gBubbleDL[] = dgBubbleDL; \ No newline at end of file diff --git a/soh/assets/objects/object_bv/object_bv.h b/soh/assets/objects/object_bv/object_bv.h index 9b7af91ab..92b02f164 100644 --- a/soh/assets/objects/object_bv/object_bv.h +++ b/soh/assets/objects/object_bv/object_bv.h @@ -1,905 +1,390 @@ #pragma once -#define dgBarinadeTitleCardTex "__OTR__objects/object_bv/gBarinadeTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeTitleCardTex[] = dgBarinadeTitleCardTex; -#else -static const char gBarinadeTitleCardTex[] __attribute__((aligned (2))) = dgBarinadeTitleCardTex; -#endif - -#define dgBarinadeBodySkel "__OTR__objects/object_bv/gBarinadeBodySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkel[] = dgBarinadeBodySkel; -#else -static const char gBarinadeBodySkel[] __attribute__((aligned (2))) = dgBarinadeBodySkel; -#endif - -#define dgBarinadeSupportSkel "__OTR__objects/object_bv/gBarinadeSupportSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportSkel[] = dgBarinadeSupportSkel; -#else -static const char gBarinadeSupportSkel[] __attribute__((aligned (2))) = dgBarinadeSupportSkel; -#endif - -#define dgBarinadeZapperSkel "__OTR__objects/object_bv/gBarinadeZapperSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeZapperSkel[] = dgBarinadeZapperSkel; -#else -static const char gBarinadeZapperSkel[] __attribute__((aligned (2))) = dgBarinadeZapperSkel; -#endif - -#define dgBarinadeStumpSkel "__OTR__objects/object_bv/gBarinadeStumpSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeStumpSkel[] = dgBarinadeStumpSkel; -#else -static const char gBarinadeStumpSkel[] __attribute__((aligned (2))) = dgBarinadeStumpSkel; -#endif - -#define dgBarinadeBariSkel "__OTR__objects/object_bv/gBarinadeBariSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBariSkel[] = dgBarinadeBariSkel; -#else -static const char gBarinadeBariSkel[] __attribute__((aligned (2))) = dgBarinadeBariSkel; -#endif - -#define dgBarinadeCutSupportSkel "__OTR__objects/object_bv/gBarinadeCutSupportSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeCutSupportSkel[] = dgBarinadeCutSupportSkel; -#else -static const char gBarinadeCutSupportSkel[] __attribute__((aligned (2))) = dgBarinadeCutSupportSkel; -#endif - -#define dgBarinadeBodyAnim "__OTR__objects/object_bv/gBarinadeBodyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodyAnim[] = dgBarinadeBodyAnim; -#else -static const char gBarinadeBodyAnim[] __attribute__((aligned (2))) = dgBarinadeBodyAnim; -#endif - -#define dgBarinadeSupportAttachedAnim "__OTR__objects/object_bv/gBarinadeSupportAttachedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportAttachedAnim[] = dgBarinadeSupportAttachedAnim; -#else -static const char gBarinadeSupportAttachedAnim[] __attribute__((aligned (2))) = dgBarinadeSupportAttachedAnim; -#endif - -#define dgBarinadeZapperIdleAnim "__OTR__objects/object_bv/gBarinadeZapperIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeZapperIdleAnim[] = dgBarinadeZapperIdleAnim; -#else -static const char gBarinadeZapperIdleAnim[] __attribute__((aligned (2))) = dgBarinadeZapperIdleAnim; -#endif - -#define dgBarinadeStumpAnim "__OTR__objects/object_bv/gBarinadeStumpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeStumpAnim[] = dgBarinadeStumpAnim; -#else -static const char gBarinadeStumpAnim[] __attribute__((aligned (2))) = dgBarinadeStumpAnim; -#endif - -#define dgBarinadeBariAnim "__OTR__objects/object_bv/gBarinadeBariAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBariAnim[] = dgBarinadeBariAnim; -#else -static const char gBarinadeBariAnim[] __attribute__((aligned (2))) = dgBarinadeBariAnim; -#endif - -#define dgBarinadeSupportDamage1Anim "__OTR__objects/object_bv/gBarinadeSupportDamage1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportDamage1Anim[] = dgBarinadeSupportDamage1Anim; -#else -static const char gBarinadeSupportDamage1Anim[] __attribute__((aligned (2))) = dgBarinadeSupportDamage1Anim; -#endif - -#define dgBarinadeSupportDamage2Anim "__OTR__objects/object_bv/gBarinadeSupportDamage2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportDamage2Anim[] = dgBarinadeSupportDamage2Anim; -#else -static const char gBarinadeSupportDamage2Anim[] __attribute__((aligned (2))) = dgBarinadeSupportDamage2Anim; -#endif - -#define dgBarinadeSupportCutAnim "__OTR__objects/object_bv/gBarinadeSupportCutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportCutAnim[] = dgBarinadeSupportCutAnim; -#else -static const char gBarinadeSupportCutAnim[] __attribute__((aligned (2))) = dgBarinadeSupportCutAnim; -#endif - -#define dgBarinadeSupportDetachedAnim "__OTR__objects/object_bv/gBarinadeSupportDetachedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportDetachedAnim[] = dgBarinadeSupportDetachedAnim; -#else -static const char gBarinadeSupportDetachedAnim[] __attribute__((aligned (2))) = dgBarinadeSupportDetachedAnim; -#endif - -#define dgBarinadeZapperDamage1Anim "__OTR__objects/object_bv/gBarinadeZapperDamage1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeZapperDamage1Anim[] = dgBarinadeZapperDamage1Anim; -#else -static const char gBarinadeZapperDamage1Anim[] __attribute__((aligned (2))) = dgBarinadeZapperDamage1Anim; -#endif - -#define dgBarinadeZapperDamage2Anim "__OTR__objects/object_bv/gBarinadeZapperDamage2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeZapperDamage2Anim[] = dgBarinadeZapperDamage2Anim; -#else -static const char gBarinadeZapperDamage2Anim[] __attribute__((aligned (2))) = dgBarinadeZapperDamage2Anim; -#endif - -#define dgBarinadeDL_008D70 "__OTR__objects/object_bv/gBarinadeDL_008D70" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_008D70[] = dgBarinadeDL_008D70; -#else -static const char gBarinadeDL_008D70[] __attribute__((aligned (2))) = dgBarinadeDL_008D70; -#endif - -#define dgBarinadeDL_008BB8 "__OTR__objects/object_bv/gBarinadeDL_008BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_008BB8[] = dgBarinadeDL_008BB8; -#else -static const char gBarinadeDL_008BB8[] __attribute__((aligned (2))) = dgBarinadeDL_008BB8; -#endif - -#define dgBarinadeDL_000FA0 "__OTR__objects/object_bv/gBarinadeDL_000FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_000FA0[] = dgBarinadeDL_000FA0; -#else -static const char gBarinadeDL_000FA0[] __attribute__((aligned (2))) = dgBarinadeDL_000FA0; -#endif - -#define dgBarinadeDL_0156A0 "__OTR__objects/object_bv/gBarinadeDL_0156A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_0156A0[] = dgBarinadeDL_0156A0; -#else -static const char gBarinadeDL_0156A0[] __attribute__((aligned (2))) = dgBarinadeDL_0156A0; -#endif - -#define dgBarinadeDL_015710 "__OTR__objects/object_bv/gBarinadeDL_015710" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_015710[] = dgBarinadeDL_015710; -#else -static const char gBarinadeDL_015710[] __attribute__((aligned (2))) = dgBarinadeDL_015710; -#endif - -#define dgBarinadeDL_011738 "__OTR__objects/object_bv/gBarinadeDL_011738" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_011738[] = dgBarinadeDL_011738; -#else -static const char gBarinadeDL_011738[] __attribute__((aligned (2))) = dgBarinadeDL_011738; -#endif - -#define dgBarinadeDL_011768 "__OTR__objects/object_bv/gBarinadeDL_011768" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_011768[] = dgBarinadeDL_011768; -#else -static const char gBarinadeDL_011768[] __attribute__((aligned (2))) = dgBarinadeDL_011768; -#endif - -#define dgBarinadeDL_009430 "__OTR__objects/object_bv/gBarinadeDL_009430" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_009430[] = dgBarinadeDL_009430; -#else -static const char gBarinadeDL_009430[] __attribute__((aligned (2))) = dgBarinadeDL_009430; -#endif - -#define dgBarinadeDL_009468 "__OTR__objects/object_bv/gBarinadeDL_009468" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_009468[] = dgBarinadeDL_009468; -#else -static const char gBarinadeDL_009468[] __attribute__((aligned (2))) = dgBarinadeDL_009468; -#endif - -#define dgBarinadeDL_0128B8 "__OTR__objects/object_bv/gBarinadeDL_0128B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_0128B8[] = dgBarinadeDL_0128B8; -#else -static const char gBarinadeDL_0128B8[] __attribute__((aligned (2))) = dgBarinadeDL_0128B8; -#endif - -#define dgBarinadeDL_012948 "__OTR__objects/object_bv/gBarinadeDL_012948" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_012948[] = dgBarinadeDL_012948; -#else -static const char gBarinadeDL_012948[] __attribute__((aligned (2))) = dgBarinadeDL_012948; -#endif - -#define dgBarinadeDL_012BA0 "__OTR__objects/object_bv/gBarinadeDL_012BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_012BA0[] = dgBarinadeDL_012BA0; -#else -static const char gBarinadeDL_012BA0[] __attribute__((aligned (2))) = dgBarinadeDL_012BA0; -#endif - -#define dgBarinadeDL_012C50 "__OTR__objects/object_bv/gBarinadeDL_012C50" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_012C50[] = dgBarinadeDL_012C50; -#else -static const char gBarinadeDL_012C50[] __attribute__((aligned (2))) = dgBarinadeDL_012C50; -#endif - -#define dgBarinadeDL_0135B0 "__OTR__objects/object_bv/gBarinadeDL_0135B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_0135B0[] = dgBarinadeDL_0135B0; -#else -static const char gBarinadeDL_0135B0[] __attribute__((aligned (2))) = dgBarinadeDL_0135B0; -#endif - -#define dgBarinadeDL_013638 "__OTR__objects/object_bv/gBarinadeDL_013638" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_013638[] = dgBarinadeDL_013638; -#else -static const char gBarinadeDL_013638[] __attribute__((aligned (2))) = dgBarinadeDL_013638; -#endif - -#define dgBarinadeDL_008F08 "__OTR__objects/object_bv/gBarinadeDL_008F08" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_008F08[] = dgBarinadeDL_008F08; -#else -static const char gBarinadeDL_008F08[] __attribute__((aligned (2))) = dgBarinadeDL_008F08; -#endif - -#define dgBarinadeDL_008F70 "__OTR__objects/object_bv/gBarinadeDL_008F70" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_008F70[] = dgBarinadeDL_008F70; -#else -static const char gBarinadeDL_008F70[] __attribute__((aligned (2))) = dgBarinadeDL_008F70; -#endif - -#define dgBarinadeSparkBall1Tex "__OTR__objects/object_bv/gBarinadeSparkBall1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSparkBall1Tex[] = dgBarinadeSparkBall1Tex; -#else -static const char gBarinadeSparkBall1Tex[] __attribute__((aligned (2))) = dgBarinadeSparkBall1Tex; -#endif - -#define dgBarinadeSparkBall2Tex "__OTR__objects/object_bv/gBarinadeSparkBall2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSparkBall2Tex[] = dgBarinadeSparkBall2Tex; -#else -static const char gBarinadeSparkBall2Tex[] __attribute__((aligned (2))) = dgBarinadeSparkBall2Tex; -#endif - -#define dgBarinadeSparkBall3Tex "__OTR__objects/object_bv/gBarinadeSparkBall3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSparkBall3Tex[] = dgBarinadeSparkBall3Tex; -#else -static const char gBarinadeSparkBall3Tex[] __attribute__((aligned (2))) = dgBarinadeSparkBall3Tex; -#endif - -#define dgBarinadeSparkBall4Tex "__OTR__objects/object_bv/gBarinadeSparkBall4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSparkBall4Tex[] = dgBarinadeSparkBall4Tex; -#else -static const char gBarinadeSparkBall4Tex[] __attribute__((aligned (2))) = dgBarinadeSparkBall4Tex; -#endif - -#define dgBarinadeSparkBall5Tex "__OTR__objects/object_bv/gBarinadeSparkBall5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSparkBall5Tex[] = dgBarinadeSparkBall5Tex; -#else -static const char gBarinadeSparkBall5Tex[] __attribute__((aligned (2))) = dgBarinadeSparkBall5Tex; -#endif - -#define dgBarinadeSparkBall6Tex "__OTR__objects/object_bv/gBarinadeSparkBall6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSparkBall6Tex[] = dgBarinadeSparkBall6Tex; -#else -static const char gBarinadeSparkBall6Tex[] __attribute__((aligned (2))) = dgBarinadeSparkBall6Tex; -#endif - -#define dgBarinadeSparkBall7Tex "__OTR__objects/object_bv/gBarinadeSparkBall7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSparkBall7Tex[] = dgBarinadeSparkBall7Tex; -#else -static const char gBarinadeSparkBall7Tex[] __attribute__((aligned (2))) = dgBarinadeSparkBall7Tex; -#endif - -#define dgBarinadeSparkBall8Tex "__OTR__objects/object_bv/gBarinadeSparkBall8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSparkBall8Tex[] = dgBarinadeSparkBall8Tex; -#else -static const char gBarinadeSparkBall8Tex[] __attribute__((aligned (2))) = dgBarinadeSparkBall8Tex; -#endif - -#define dgBarinadeDoorPiece1DL "__OTR__objects/object_bv/gBarinadeDoorPiece1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDoorPiece1DL[] = dgBarinadeDoorPiece1DL; -#else -static const char gBarinadeDoorPiece1DL[] __attribute__((aligned (2))) = dgBarinadeDoorPiece1DL; -#endif - -#define dgBarinadeDoorPiece2DL "__OTR__objects/object_bv/gBarinadeDoorPiece2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDoorPiece2DL[] = dgBarinadeDoorPiece2DL; -#else -static const char gBarinadeDoorPiece2DL[] __attribute__((aligned (2))) = dgBarinadeDoorPiece2DL; -#endif - -#define dgBarinadeDoorPiece3DL "__OTR__objects/object_bv/gBarinadeDoorPiece3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDoorPiece3DL[] = dgBarinadeDoorPiece3DL; -#else -static const char gBarinadeDoorPiece3DL[] __attribute__((aligned (2))) = dgBarinadeDoorPiece3DL; -#endif - -#define dgBarinadeDoorPiece4DL "__OTR__objects/object_bv/gBarinadeDoorPiece4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDoorPiece4DL[] = dgBarinadeDoorPiece4DL; -#else -static const char gBarinadeDoorPiece4DL[] __attribute__((aligned (2))) = dgBarinadeDoorPiece4DL; -#endif - -#define dgBarinadeDoorPiece5DL "__OTR__objects/object_bv/gBarinadeDoorPiece5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDoorPiece5DL[] = dgBarinadeDoorPiece5DL; -#else -static const char gBarinadeDoorPiece5DL[] __attribute__((aligned (2))) = dgBarinadeDoorPiece5DL; -#endif - -#define dgBarinadeDoorPiece6DL "__OTR__objects/object_bv/gBarinadeDoorPiece6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDoorPiece6DL[] = dgBarinadeDoorPiece6DL; -#else -static const char gBarinadeDoorPiece6DL[] __attribute__((aligned (2))) = dgBarinadeDoorPiece6DL; -#endif - -#define dgBarinadeDoorPiece7DL "__OTR__objects/object_bv/gBarinadeDoorPiece7DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDoorPiece7DL[] = dgBarinadeDoorPiece7DL; -#else -static const char gBarinadeDoorPiece7DL[] __attribute__((aligned (2))) = dgBarinadeDoorPiece7DL; -#endif - -#define dgBarinadeDoorPiece8DL "__OTR__objects/object_bv/gBarinadeDoorPiece8DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDoorPiece8DL[] = dgBarinadeDoorPiece8DL; -#else -static const char gBarinadeDoorPiece8DL[] __attribute__((aligned (2))) = dgBarinadeDoorPiece8DL; -#endif - -#define dgBarinadeAnim_018A00 "__OTR__objects/object_bv/gBarinadeAnim_018A00" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeAnim_018A00[] = dgBarinadeAnim_018A00; -#else -static const char gBarinadeAnim_018A00[] __attribute__((aligned (2))) = dgBarinadeAnim_018A00; -#endif - -#define dgBarinadeAnim_015F10 "__OTR__objects/object_bv/gBarinadeAnim_015F10" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeAnim_015F10[] = dgBarinadeAnim_015F10; -#else -static const char gBarinadeAnim_015F10[] __attribute__((aligned (2))) = dgBarinadeAnim_015F10; -#endif - -#define dgBarinadeAnim_015D10 "__OTR__objects/object_bv/gBarinadeAnim_015D10" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeAnim_015D10[] = dgBarinadeAnim_015D10; -#else -static const char gBarinadeAnim_015D10[] __attribute__((aligned (2))) = dgBarinadeAnim_015D10; -#endif - -#define dgBarinadeDL_008E88 "__OTR__objects/object_bv/gBarinadeDL_008E88" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_008E88[] = dgBarinadeDL_008E88; -#else -static const char gBarinadeDL_008E88[] __attribute__((aligned (2))) = dgBarinadeDL_008E88; -#endif - -#define dgBarinadeDL_008EF0 "__OTR__objects/object_bv/gBarinadeDL_008EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_008EF0[] = dgBarinadeDL_008EF0; -#else -static const char gBarinadeDL_008EF0[] __attribute__((aligned (2))) = dgBarinadeDL_008EF0; -#endif - -#define dgBarinadeDL_009388 "__OTR__objects/object_bv/gBarinadeDL_009388" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_009388[] = dgBarinadeDL_009388; -#else -static const char gBarinadeDL_009388[] __attribute__((aligned (2))) = dgBarinadeDL_009388; -#endif - -#define dgBarinadeDL_0093A0 "__OTR__objects/object_bv/gBarinadeDL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_0093A0[] = dgBarinadeDL_0093A0; -#else -static const char gBarinadeDL_0093A0[] __attribute__((aligned (2))) = dgBarinadeDL_0093A0; -#endif - -#define dgBarinadeDL_0094F8 "__OTR__objects/object_bv/gBarinadeDL_0094F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_0094F8[] = dgBarinadeDL_0094F8; -#else -static const char gBarinadeDL_0094F8[] __attribute__((aligned (2))) = dgBarinadeDL_0094F8; -#endif - -#define dgBarinadeDL_0095B0 "__OTR__objects/object_bv/gBarinadeDL_0095B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeDL_0095B0[] = dgBarinadeDL_0095B0; -#else -static const char gBarinadeDL_0095B0[] __attribute__((aligned (2))) = dgBarinadeDL_0095B0; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015770DL_007FD8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015770DL_007FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015770DL_007FD8[] = dgBarinadeBodySkelLimbsLimb_015770DL_007FD8; -#else -static const char gBarinadeBodySkelLimbsLimb_015770DL_007FD8[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015770DL_007FD8; -#endif - -#define dgBarinadeBodySkelLimbsLimb_01580CDL_0080B0 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_01580CDL_0080B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_01580CDL_0080B0[] = dgBarinadeBodySkelLimbsLimb_01580CDL_0080B0; -#else -static const char gBarinadeBodySkelLimbsLimb_01580CDL_0080B0[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_01580CDL_0080B0; -#endif - -#define dgBarinadeBodySkelLimbsLimb_01583CDL_007F40 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_01583CDL_007F40" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_01583CDL_007F40[] = dgBarinadeBodySkelLimbsLimb_01583CDL_007F40; -#else -static const char gBarinadeBodySkelLimbsLimb_01583CDL_007F40[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_01583CDL_007F40; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015854DL_008388 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015854DL_008388" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015854DL_008388[] = dgBarinadeBodySkelLimbsLimb_015854DL_008388; -#else -static const char gBarinadeBodySkelLimbsLimb_015854DL_008388[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015854DL_008388; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015878DL_008458 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015878DL_008458" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015878DL_008458[] = dgBarinadeBodySkelLimbsLimb_015878DL_008458; -#else -static const char gBarinadeBodySkelLimbsLimb_015878DL_008458[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015878DL_008458; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015890DL_0084E8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015890DL_0084E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015890DL_0084E8[] = dgBarinadeBodySkelLimbsLimb_015890DL_0084E8; -#else -static const char gBarinadeBodySkelLimbsLimb_015890DL_0084E8[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015890DL_0084E8; -#endif - -#define dgBarinadeBodySkelLimbsLimb_0158C0DL_008578 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_0158C0DL_008578" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_0158C0DL_008578[] = dgBarinadeBodySkelLimbsLimb_0158C0DL_008578; -#else -static const char gBarinadeBodySkelLimbsLimb_0158C0DL_008578[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_0158C0DL_008578; -#endif - -#define dgBarinadeBodySkelLimbsLimb_0158D8DL_008608 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_0158D8DL_008608" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_0158D8DL_008608[] = dgBarinadeBodySkelLimbsLimb_0158D8DL_008608; -#else -static const char gBarinadeBodySkelLimbsLimb_0158D8DL_008608[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_0158D8DL_008608; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015908DL_008698 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015908DL_008698" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015908DL_008698[] = dgBarinadeBodySkelLimbsLimb_015908DL_008698; -#else -static const char gBarinadeBodySkelLimbsLimb_015908DL_008698[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015908DL_008698; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015920DL_008728 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015920DL_008728" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015920DL_008728[] = dgBarinadeBodySkelLimbsLimb_015920DL_008728; -#else -static const char gBarinadeBodySkelLimbsLimb_015920DL_008728[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015920DL_008728; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015950DL_0087B8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015950DL_0087B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015950DL_0087B8[] = dgBarinadeBodySkelLimbsLimb_015950DL_0087B8; -#else -static const char gBarinadeBodySkelLimbsLimb_015950DL_0087B8[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015950DL_0087B8; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015968DL_008848 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015968DL_008848" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015968DL_008848[] = dgBarinadeBodySkelLimbsLimb_015968DL_008848; -#else -static const char gBarinadeBodySkelLimbsLimb_015968DL_008848[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015968DL_008848; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015998DL_0088D8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015998DL_0088D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015998DL_0088D8[] = dgBarinadeBodySkelLimbsLimb_015998DL_0088D8; -#else -static const char gBarinadeBodySkelLimbsLimb_015998DL_0088D8[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015998DL_0088D8; -#endif - -#define dgBarinadeBodySkelLimbsLimb_0159B0DL_008968 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_0159B0DL_008968" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_0159B0DL_008968[] = dgBarinadeBodySkelLimbsLimb_0159B0DL_008968; -#else -static const char gBarinadeBodySkelLimbsLimb_0159B0DL_008968[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_0159B0DL_008968; -#endif - -#define dgBarinadeBodySkelLimbsLimb_015A04DL_0082A8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015A04DL_0082A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBodySkelLimbsLimb_015A04DL_0082A8[] = dgBarinadeBodySkelLimbsLimb_015A04DL_0082A8; -#else -static const char gBarinadeBodySkelLimbsLimb_015A04DL_0082A8[] __attribute__((aligned (2))) = dgBarinadeBodySkelLimbsLimb_015A04DL_0082A8; -#endif - -#define dgBarinadeSupportSkelLimbsLimb_01742CDL_016FC8 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_01742CDL_016FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportSkelLimbsLimb_01742CDL_016FC8[] = dgBarinadeSupportSkelLimbsLimb_01742CDL_016FC8; -#else -static const char gBarinadeSupportSkelLimbsLimb_01742CDL_016FC8[] __attribute__((aligned (2))) = dgBarinadeSupportSkelLimbsLimb_01742CDL_016FC8; -#endif - -#define dgBarinadeSupportSkelLimbsLimb_017438DL_016EC8 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_017438DL_016EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportSkelLimbsLimb_017438DL_016EC8[] = dgBarinadeSupportSkelLimbsLimb_017438DL_016EC8; -#else -static const char gBarinadeSupportSkelLimbsLimb_017438DL_016EC8[] __attribute__((aligned (2))) = dgBarinadeSupportSkelLimbsLimb_017438DL_016EC8; -#endif - -#define dgBarinadeSupportSkelLimbsLimb_017444DL_016DC8 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_017444DL_016DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportSkelLimbsLimb_017444DL_016DC8[] = dgBarinadeSupportSkelLimbsLimb_017444DL_016DC8; -#else -static const char gBarinadeSupportSkelLimbsLimb_017444DL_016DC8[] __attribute__((aligned (2))) = dgBarinadeSupportSkelLimbsLimb_017444DL_016DC8; -#endif - -#define dgBarinadeSupportSkelLimbsLimb_017450DL_016CC8 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_017450DL_016CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportSkelLimbsLimb_017450DL_016CC8[] = dgBarinadeSupportSkelLimbsLimb_017450DL_016CC8; -#else -static const char gBarinadeSupportSkelLimbsLimb_017450DL_016CC8[] __attribute__((aligned (2))) = dgBarinadeSupportSkelLimbsLimb_017450DL_016CC8; -#endif - -#define dgBarinadeSupportSkelLimbsLimb_01745CDL_016BA0 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_01745CDL_016BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeSupportSkelLimbsLimb_01745CDL_016BA0[] = dgBarinadeSupportSkelLimbsLimb_01745CDL_016BA0; -#else -static const char gBarinadeSupportSkelLimbsLimb_01745CDL_016BA0[] __attribute__((aligned (2))) = dgBarinadeSupportSkelLimbsLimb_01745CDL_016BA0; -#endif - -#define dgBarinadeZapperSkelLimbsLimb_019948DL_0194A0 "__OTR__objects/object_bv/gBarinadeZapperSkelLimbsLimb_019948DL_0194A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeZapperSkelLimbsLimb_019948DL_0194A0[] = dgBarinadeZapperSkelLimbsLimb_019948DL_0194A0; -#else -static const char gBarinadeZapperSkelLimbsLimb_019948DL_0194A0[] __attribute__((aligned (2))) = dgBarinadeZapperSkelLimbsLimb_019948DL_0194A0; -#endif - -#define dgBarinadeZapperSkelLimbsLimb_019954DL_0195C8 "__OTR__objects/object_bv/gBarinadeZapperSkelLimbsLimb_019954DL_0195C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeZapperSkelLimbsLimb_019954DL_0195C8[] = dgBarinadeZapperSkelLimbsLimb_019954DL_0195C8; -#else -static const char gBarinadeZapperSkelLimbsLimb_019954DL_0195C8[] __attribute__((aligned (2))) = dgBarinadeZapperSkelLimbsLimb_019954DL_0195C8; -#endif - -#define dgBarinadeZapperSkelLimbsLimb_01996CDL_0196C8 "__OTR__objects/object_bv/gBarinadeZapperSkelLimbsLimb_01996CDL_0196C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeZapperSkelLimbsLimb_01996CDL_0196C8[] = dgBarinadeZapperSkelLimbsLimb_01996CDL_0196C8; -#else -static const char gBarinadeZapperSkelLimbsLimb_01996CDL_0196C8[] __attribute__((aligned (2))) = dgBarinadeZapperSkelLimbsLimb_01996CDL_0196C8; -#endif - -#define dgBarinadeZapperSkelLimbsLimb_019978DL_0197C8 "__OTR__objects/object_bv/gBarinadeZapperSkelLimbsLimb_019978DL_0197C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeZapperSkelLimbsLimb_019978DL_0197C8[] = dgBarinadeZapperSkelLimbsLimb_019978DL_0197C8; -#else -static const char gBarinadeZapperSkelLimbsLimb_019978DL_0197C8[] __attribute__((aligned (2))) = dgBarinadeZapperSkelLimbsLimb_019978DL_0197C8; -#endif - -#define dgBarinadeStumpSkelLimbsLimb_01882CDL_0185E8 "__OTR__objects/object_bv/gBarinadeStumpSkelLimbsLimb_01882CDL_0185E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeStumpSkelLimbsLimb_01882CDL_0185E8[] = dgBarinadeStumpSkelLimbsLimb_01882CDL_0185E8; -#else -static const char gBarinadeStumpSkelLimbsLimb_01882CDL_0185E8[] __attribute__((aligned (2))) = dgBarinadeStumpSkelLimbsLimb_01882CDL_0185E8; -#endif - -#define dgBarinadeStumpSkelLimbsLimb_018838DL_0184D0 "__OTR__objects/object_bv/gBarinadeStumpSkelLimbsLimb_018838DL_0184D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeStumpSkelLimbsLimb_018838DL_0184D0[] = dgBarinadeStumpSkelLimbsLimb_018838DL_0184D0; -#else -static const char gBarinadeStumpSkelLimbsLimb_018838DL_0184D0[] __attribute__((aligned (2))) = dgBarinadeStumpSkelLimbsLimb_018838DL_0184D0; -#endif - -#define dgBarinadeStumpSkelLimbsLimb_018844DL_018410 "__OTR__objects/object_bv/gBarinadeStumpSkelLimbsLimb_018844DL_018410" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeStumpSkelLimbsLimb_018844DL_018410[] = dgBarinadeStumpSkelLimbsLimb_018844DL_018410; -#else -static const char gBarinadeStumpSkelLimbsLimb_018844DL_018410[] __attribute__((aligned (2))) = dgBarinadeStumpSkelLimbsLimb_018844DL_018410; -#endif - -#define dgBarinadeBariSkelLimbsLimb_004E48DL_001070 "__OTR__objects/object_bv/gBarinadeBariSkelLimbsLimb_004E48DL_001070" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBariSkelLimbsLimb_004E48DL_001070[] = dgBarinadeBariSkelLimbsLimb_004E48DL_001070; -#else -static const char gBarinadeBariSkelLimbsLimb_004E48DL_001070[] __attribute__((aligned (2))) = dgBarinadeBariSkelLimbsLimb_004E48DL_001070; -#endif - -#define dgBarinadeBariSkelLimbsLimb_004E54DL_001158 "__OTR__objects/object_bv/gBarinadeBariSkelLimbsLimb_004E54DL_001158" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeBariSkelLimbsLimb_004E54DL_001158[] = dgBarinadeBariSkelLimbsLimb_004E54DL_001158; -#else -static const char gBarinadeBariSkelLimbsLimb_004E54DL_001158[] __attribute__((aligned (2))) = dgBarinadeBariSkelLimbsLimb_004E54DL_001158; -#endif - -#define dgBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8 "__OTR__objects/object_bv/gBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8[] = dgBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8; -#else -static const char gBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8[] __attribute__((aligned (2))) = dgBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8; -#endif - -#define dgBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8 "__OTR__objects/object_bv/gBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8[] = dgBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8; -#else -static const char gBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8[] __attribute__((aligned (2))) = dgBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8; -#endif - -#define dgBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90 "__OTR__objects/object_bv/gBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90[] = dgBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90; -#else -static const char gBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90[] __attribute__((aligned (2))) = dgBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90; -#endif - -#define dobject_bvTex_0065A0 "__OTR__objects/object_bv/object_bvTex_0065A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0065A0[] = dobject_bvTex_0065A0; -#else -static const char object_bvTex_0065A0[] __attribute__((aligned (2))) = dobject_bvTex_0065A0; -#endif - -#define dobject_bvTex_005DA0 "__OTR__objects/object_bv/object_bvTex_005DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_005DA0[] = dobject_bvTex_005DA0; -#else -static const char object_bvTex_005DA0[] __attribute__((aligned (2))) = dobject_bvTex_005DA0; -#endif - -#define dobject_bvTex_000A40 "__OTR__objects/object_bv/object_bvTex_000A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_000A40[] = dobject_bvTex_000A40; -#else -static const char object_bvTex_000A40[] __attribute__((aligned (2))) = dobject_bvTex_000A40; -#endif - -#define dobject_bvTex_013660 "__OTR__objects/object_bv/object_bvTex_013660" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_013660[] = dobject_bvTex_013660; -#else -static const char object_bvTex_013660[] __attribute__((aligned (2))) = dobject_bvTex_013660; -#endif - -#define dobject_bvTex_0117B8 "__OTR__objects/object_bv/object_bvTex_0117B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0117B8[] = dobject_bvTex_0117B8; -#else -static const char object_bvTex_0117B8[] __attribute__((aligned (2))) = dobject_bvTex_0117B8; -#endif - -#define dobject_bvTex_011BB8 "__OTR__objects/object_bv/object_bvTex_011BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_011BB8[] = dobject_bvTex_011BB8; -#else -static const char object_bvTex_011BB8[] __attribute__((aligned (2))) = dobject_bvTex_011BB8; -#endif - -#define dobject_bvTex_0119B8 "__OTR__objects/object_bv/object_bvTex_0119B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0119B8[] = dobject_bvTex_0119B8; -#else -static const char object_bvTex_0119B8[] __attribute__((aligned (2))) = dobject_bvTex_0119B8; -#endif - -#define dobject_bvTex_012CE0 "__OTR__objects/object_bv/object_bvTex_012CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_012CE0[] = dobject_bvTex_012CE0; -#else -static const char object_bvTex_012CE0[] __attribute__((aligned (2))) = dobject_bvTex_012CE0; -#endif - -#define dobject_bvTex_008F88 "__OTR__objects/object_bv/object_bvTex_008F88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_008F88[] = dobject_bvTex_008F88; -#else -static const char object_bvTex_008F88[] __attribute__((aligned (2))) = dobject_bvTex_008F88; -#endif - -#define dobject_bvTex_019BB8 "__OTR__objects/object_bv/object_bvTex_019BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_019BB8[] = dobject_bvTex_019BB8; -#else -static const char object_bvTex_019BB8[] __attribute__((aligned (2))) = dobject_bvTex_019BB8; -#endif - -#define dobject_bvTLUT_0199B0 "__OTR__objects/object_bv/object_bvTLUT_0199B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTLUT_0199B0[] = dobject_bvTLUT_0199B0; -#else -static const char object_bvTLUT_0199B0[] __attribute__((aligned (2))) = dobject_bvTLUT_0199B0; -#endif - -#define dobject_bvTex_01A6B8 "__OTR__objects/object_bv/object_bvTex_01A6B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_01A6B8[] = dobject_bvTex_01A6B8; -#else -static const char object_bvTex_01A6B8[] __attribute__((aligned (2))) = dobject_bvTex_01A6B8; -#endif - -#define dobject_bvTLUT_01A4B0 "__OTR__objects/object_bv/object_bvTLUT_01A4B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTLUT_01A4B0[] = dobject_bvTLUT_01A4B0; -#else -static const char object_bvTLUT_01A4B0[] __attribute__((aligned (2))) = dobject_bvTLUT_01A4B0; -#endif - -#define dobject_bvTex_01B1B8 "__OTR__objects/object_bv/object_bvTex_01B1B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_01B1B8[] = dobject_bvTex_01B1B8; -#else -static const char object_bvTex_01B1B8[] __attribute__((aligned (2))) = dobject_bvTex_01B1B8; -#endif - -#define dobject_bvTLUT_01AFB0 "__OTR__objects/object_bv/object_bvTLUT_01AFB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTLUT_01AFB0[] = dobject_bvTLUT_01AFB0; -#else -static const char object_bvTLUT_01AFB0[] __attribute__((aligned (2))) = dobject_bvTLUT_01AFB0; -#endif - -#define dobject_bvTex_01BCB8 "__OTR__objects/object_bv/object_bvTex_01BCB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_01BCB8[] = dobject_bvTex_01BCB8; -#else -static const char object_bvTex_01BCB8[] __attribute__((aligned (2))) = dobject_bvTex_01BCB8; -#endif - -#define dobject_bvTLUT_01BAB0 "__OTR__objects/object_bv/object_bvTLUT_01BAB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTLUT_01BAB0[] = dobject_bvTLUT_01BAB0; -#else -static const char object_bvTLUT_01BAB0[] __attribute__((aligned (2))) = dobject_bvTLUT_01BAB0; -#endif - -#define dobject_bvTex_01C7B8 "__OTR__objects/object_bv/object_bvTex_01C7B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_01C7B8[] = dobject_bvTex_01C7B8; -#else -static const char object_bvTex_01C7B8[] __attribute__((aligned (2))) = dobject_bvTex_01C7B8; -#endif - -#define dobject_bvTLUT_01C5B0 "__OTR__objects/object_bv/object_bvTLUT_01C5B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTLUT_01C5B0[] = dobject_bvTLUT_01C5B0; -#else -static const char object_bvTLUT_01C5B0[] __attribute__((aligned (2))) = dobject_bvTLUT_01C5B0; -#endif - -#define dobject_bvTex_01D2B8 "__OTR__objects/object_bv/object_bvTex_01D2B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_01D2B8[] = dobject_bvTex_01D2B8; -#else -static const char object_bvTex_01D2B8[] __attribute__((aligned (2))) = dobject_bvTex_01D2B8; -#endif - -#define dobject_bvTLUT_01D0B0 "__OTR__objects/object_bv/object_bvTLUT_01D0B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTLUT_01D0B0[] = dobject_bvTLUT_01D0B0; -#else -static const char object_bvTLUT_01D0B0[] __attribute__((aligned (2))) = dobject_bvTLUT_01D0B0; -#endif - -#define dobject_bvTex_01DDB8 "__OTR__objects/object_bv/object_bvTex_01DDB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_01DDB8[] = dobject_bvTex_01DDB8; -#else -static const char object_bvTex_01DDB8[] __attribute__((aligned (2))) = dobject_bvTex_01DDB8; -#endif - -#define dobject_bvTLUT_01DBB0 "__OTR__objects/object_bv/object_bvTLUT_01DBB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTLUT_01DBB0[] = dobject_bvTLUT_01DBB0; -#else -static const char object_bvTLUT_01DBB0[] __attribute__((aligned (2))) = dobject_bvTLUT_01DBB0; -#endif - -#define dobject_bvTex_01E8B8 "__OTR__objects/object_bv/object_bvTex_01E8B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_01E8B8[] = dobject_bvTex_01E8B8; -#else -static const char object_bvTex_01E8B8[] __attribute__((aligned (2))) = dobject_bvTex_01E8B8; -#endif - -#define dobject_bvTLUT_01E6B0 "__OTR__objects/object_bv/object_bvTLUT_01E6B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTLUT_01E6B0[] = dobject_bvTLUT_01E6B0; -#else -static const char object_bvTLUT_01E6B0[] __attribute__((aligned (2))) = dobject_bvTLUT_01E6B0; -#endif - -#define dobject_bvTex_0052A0 "__OTR__objects/object_bv/object_bvTex_0052A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0052A0[] = dobject_bvTex_0052A0; -#else -static const char object_bvTex_0052A0[] __attribute__((aligned (2))) = dobject_bvTex_0052A0; -#endif - -#define dobject_bvTex_0053A0 "__OTR__objects/object_bv/object_bvTex_0053A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0053A0[] = dobject_bvTex_0053A0; -#else -static const char object_bvTex_0053A0[] __attribute__((aligned (2))) = dobject_bvTex_0053A0; -#endif - -#define dobject_bvTex_0051A0 "__OTR__objects/object_bv/object_bvTex_0051A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0051A0[] = dobject_bvTex_0051A0; -#else -static const char object_bvTex_0051A0[] __attribute__((aligned (2))) = dobject_bvTex_0051A0; -#endif - -#define dobject_bvTex_0055A0 "__OTR__objects/object_bv/object_bvTex_0055A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0055A0[] = dobject_bvTex_0055A0; -#else -static const char object_bvTex_0055A0[] __attribute__((aligned (2))) = dobject_bvTex_0055A0; -#endif - -#define dobject_bvTex_0059A0 "__OTR__objects/object_bv/object_bvTex_0059A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0059A0[] = dobject_bvTex_0059A0; -#else -static const char object_bvTex_0059A0[] __attribute__((aligned (2))) = dobject_bvTex_0059A0; -#endif - -#define dobject_bvTex_0170D8 "__OTR__objects/object_bv/object_bvTex_0170D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0170D8[] = dobject_bvTex_0170D8; -#else -static const char object_bvTex_0170D8[] __attribute__((aligned (2))) = dobject_bvTex_0170D8; -#endif - -#define dobject_bvTex_0171D8 "__OTR__objects/object_bv/object_bvTex_0171D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_0171D8[] = dobject_bvTex_0171D8; -#else -static const char object_bvTex_0171D8[] __attribute__((aligned (2))) = dobject_bvTex_0171D8; -#endif - -#define dobject_bvTex_018E30 "__OTR__objects/object_bv/object_bvTex_018E30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_018E30[] = dobject_bvTex_018E30; -#else -static const char object_bvTex_018E30[] __attribute__((aligned (2))) = dobject_bvTex_018E30; -#endif - -#define dobject_bvTex_018D30 "__OTR__objects/object_bv/object_bvTex_018D30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_018D30[] = dobject_bvTex_018D30; -#else -static const char object_bvTex_018D30[] __attribute__((aligned (2))) = dobject_bvTex_018D30; -#endif - -#define dobject_bvTex_018770 "__OTR__objects/object_bv/object_bvTex_018770" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_018770[] = dobject_bvTex_018770; -#else -static const char object_bvTex_018770[] __attribute__((aligned (2))) = dobject_bvTex_018770; -#endif - -#define dobject_bvTex_000840 "__OTR__objects/object_bv/object_bvTex_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_000840[] = dobject_bvTex_000840; -#else -static const char object_bvTex_000840[] __attribute__((aligned (2))) = dobject_bvTex_000840; -#endif - -#define dobject_bvTex_000040 "__OTR__objects/object_bv/object_bvTex_000040" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bvTex_000040[] = dobject_bvTex_000040; -#else -static const char object_bvTex_000040[] __attribute__((aligned (2))) = dobject_bvTex_000040; -#endif - +#include "align_asset_macro.h" + +#define dgBarinadeTitleCardTex "__OTR__objects/object_bv/gBarinadeTitleCardTex" +static const ALIGN_ASSET(2) char gBarinadeTitleCardTex[] = dgBarinadeTitleCardTex; + +#define dgBarinadeBodySkel "__OTR__objects/object_bv/gBarinadeBodySkel" +static const ALIGN_ASSET(2) char gBarinadeBodySkel[] = dgBarinadeBodySkel; + +#define dgBarinadeSupportSkel "__OTR__objects/object_bv/gBarinadeSupportSkel" +static const ALIGN_ASSET(2) char gBarinadeSupportSkel[] = dgBarinadeSupportSkel; + +#define dgBarinadeZapperSkel "__OTR__objects/object_bv/gBarinadeZapperSkel" +static const ALIGN_ASSET(2) char gBarinadeZapperSkel[] = dgBarinadeZapperSkel; + +#define dgBarinadeStumpSkel "__OTR__objects/object_bv/gBarinadeStumpSkel" +static const ALIGN_ASSET(2) char gBarinadeStumpSkel[] = dgBarinadeStumpSkel; + +#define dgBarinadeBariSkel "__OTR__objects/object_bv/gBarinadeBariSkel" +static const ALIGN_ASSET(2) char gBarinadeBariSkel[] = dgBarinadeBariSkel; + +#define dgBarinadeCutSupportSkel "__OTR__objects/object_bv/gBarinadeCutSupportSkel" +static const ALIGN_ASSET(2) char gBarinadeCutSupportSkel[] = dgBarinadeCutSupportSkel; + +#define dgBarinadeBodyAnim "__OTR__objects/object_bv/gBarinadeBodyAnim" +static const ALIGN_ASSET(2) char gBarinadeBodyAnim[] = dgBarinadeBodyAnim; + +#define dgBarinadeSupportAttachedAnim "__OTR__objects/object_bv/gBarinadeSupportAttachedAnim" +static const ALIGN_ASSET(2) char gBarinadeSupportAttachedAnim[] = dgBarinadeSupportAttachedAnim; + +#define dgBarinadeZapperIdleAnim "__OTR__objects/object_bv/gBarinadeZapperIdleAnim" +static const ALIGN_ASSET(2) char gBarinadeZapperIdleAnim[] = dgBarinadeZapperIdleAnim; + +#define dgBarinadeStumpAnim "__OTR__objects/object_bv/gBarinadeStumpAnim" +static const ALIGN_ASSET(2) char gBarinadeStumpAnim[] = dgBarinadeStumpAnim; + +#define dgBarinadeBariAnim "__OTR__objects/object_bv/gBarinadeBariAnim" +static const ALIGN_ASSET(2) char gBarinadeBariAnim[] = dgBarinadeBariAnim; + +#define dgBarinadeSupportDamage1Anim "__OTR__objects/object_bv/gBarinadeSupportDamage1Anim" +static const ALIGN_ASSET(2) char gBarinadeSupportDamage1Anim[] = dgBarinadeSupportDamage1Anim; + +#define dgBarinadeSupportDamage2Anim "__OTR__objects/object_bv/gBarinadeSupportDamage2Anim" +static const ALIGN_ASSET(2) char gBarinadeSupportDamage2Anim[] = dgBarinadeSupportDamage2Anim; + +#define dgBarinadeSupportCutAnim "__OTR__objects/object_bv/gBarinadeSupportCutAnim" +static const ALIGN_ASSET(2) char gBarinadeSupportCutAnim[] = dgBarinadeSupportCutAnim; + +#define dgBarinadeSupportDetachedAnim "__OTR__objects/object_bv/gBarinadeSupportDetachedAnim" +static const ALIGN_ASSET(2) char gBarinadeSupportDetachedAnim[] = dgBarinadeSupportDetachedAnim; + +#define dgBarinadeZapperDamage1Anim "__OTR__objects/object_bv/gBarinadeZapperDamage1Anim" +static const ALIGN_ASSET(2) char gBarinadeZapperDamage1Anim[] = dgBarinadeZapperDamage1Anim; + +#define dgBarinadeZapperDamage2Anim "__OTR__objects/object_bv/gBarinadeZapperDamage2Anim" +static const ALIGN_ASSET(2) char gBarinadeZapperDamage2Anim[] = dgBarinadeZapperDamage2Anim; + +#define dgBarinadeDL_008D70 "__OTR__objects/object_bv/gBarinadeDL_008D70" +static const ALIGN_ASSET(2) char gBarinadeDL_008D70[] = dgBarinadeDL_008D70; + +#define dgBarinadeDL_008BB8 "__OTR__objects/object_bv/gBarinadeDL_008BB8" +static const ALIGN_ASSET(2) char gBarinadeDL_008BB8[] = dgBarinadeDL_008BB8; + +#define dgBarinadeDL_000FA0 "__OTR__objects/object_bv/gBarinadeDL_000FA0" +static const ALIGN_ASSET(2) char gBarinadeDL_000FA0[] = dgBarinadeDL_000FA0; + +#define dgBarinadeDL_0156A0 "__OTR__objects/object_bv/gBarinadeDL_0156A0" +static const ALIGN_ASSET(2) char gBarinadeDL_0156A0[] = dgBarinadeDL_0156A0; + +#define dgBarinadeDL_015710 "__OTR__objects/object_bv/gBarinadeDL_015710" +static const ALIGN_ASSET(2) char gBarinadeDL_015710[] = dgBarinadeDL_015710; + +#define dgBarinadeDL_011738 "__OTR__objects/object_bv/gBarinadeDL_011738" +static const ALIGN_ASSET(2) char gBarinadeDL_011738[] = dgBarinadeDL_011738; + +#define dgBarinadeDL_011768 "__OTR__objects/object_bv/gBarinadeDL_011768" +static const ALIGN_ASSET(2) char gBarinadeDL_011768[] = dgBarinadeDL_011768; + +#define dgBarinadeDL_009430 "__OTR__objects/object_bv/gBarinadeDL_009430" +static const ALIGN_ASSET(2) char gBarinadeDL_009430[] = dgBarinadeDL_009430; + +#define dgBarinadeDL_009468 "__OTR__objects/object_bv/gBarinadeDL_009468" +static const ALIGN_ASSET(2) char gBarinadeDL_009468[] = dgBarinadeDL_009468; + +#define dgBarinadeDL_0128B8 "__OTR__objects/object_bv/gBarinadeDL_0128B8" +static const ALIGN_ASSET(2) char gBarinadeDL_0128B8[] = dgBarinadeDL_0128B8; + +#define dgBarinadeDL_012948 "__OTR__objects/object_bv/gBarinadeDL_012948" +static const ALIGN_ASSET(2) char gBarinadeDL_012948[] = dgBarinadeDL_012948; + +#define dgBarinadeDL_012BA0 "__OTR__objects/object_bv/gBarinadeDL_012BA0" +static const ALIGN_ASSET(2) char gBarinadeDL_012BA0[] = dgBarinadeDL_012BA0; + +#define dgBarinadeDL_012C50 "__OTR__objects/object_bv/gBarinadeDL_012C50" +static const ALIGN_ASSET(2) char gBarinadeDL_012C50[] = dgBarinadeDL_012C50; + +#define dgBarinadeDL_0135B0 "__OTR__objects/object_bv/gBarinadeDL_0135B0" +static const ALIGN_ASSET(2) char gBarinadeDL_0135B0[] = dgBarinadeDL_0135B0; + +#define dgBarinadeDL_013638 "__OTR__objects/object_bv/gBarinadeDL_013638" +static const ALIGN_ASSET(2) char gBarinadeDL_013638[] = dgBarinadeDL_013638; + +#define dgBarinadeDL_008F08 "__OTR__objects/object_bv/gBarinadeDL_008F08" +static const ALIGN_ASSET(2) char gBarinadeDL_008F08[] = dgBarinadeDL_008F08; + +#define dgBarinadeDL_008F70 "__OTR__objects/object_bv/gBarinadeDL_008F70" +static const ALIGN_ASSET(2) char gBarinadeDL_008F70[] = dgBarinadeDL_008F70; + +#define dgBarinadeSparkBall1Tex "__OTR__objects/object_bv/gBarinadeSparkBall1Tex" +static const ALIGN_ASSET(2) char gBarinadeSparkBall1Tex[] = dgBarinadeSparkBall1Tex; + +#define dgBarinadeSparkBall2Tex "__OTR__objects/object_bv/gBarinadeSparkBall2Tex" +static const ALIGN_ASSET(2) char gBarinadeSparkBall2Tex[] = dgBarinadeSparkBall2Tex; + +#define dgBarinadeSparkBall3Tex "__OTR__objects/object_bv/gBarinadeSparkBall3Tex" +static const ALIGN_ASSET(2) char gBarinadeSparkBall3Tex[] = dgBarinadeSparkBall3Tex; + +#define dgBarinadeSparkBall4Tex "__OTR__objects/object_bv/gBarinadeSparkBall4Tex" +static const ALIGN_ASSET(2) char gBarinadeSparkBall4Tex[] = dgBarinadeSparkBall4Tex; + +#define dgBarinadeSparkBall5Tex "__OTR__objects/object_bv/gBarinadeSparkBall5Tex" +static const ALIGN_ASSET(2) char gBarinadeSparkBall5Tex[] = dgBarinadeSparkBall5Tex; + +#define dgBarinadeSparkBall6Tex "__OTR__objects/object_bv/gBarinadeSparkBall6Tex" +static const ALIGN_ASSET(2) char gBarinadeSparkBall6Tex[] = dgBarinadeSparkBall6Tex; + +#define dgBarinadeSparkBall7Tex "__OTR__objects/object_bv/gBarinadeSparkBall7Tex" +static const ALIGN_ASSET(2) char gBarinadeSparkBall7Tex[] = dgBarinadeSparkBall7Tex; + +#define dgBarinadeSparkBall8Tex "__OTR__objects/object_bv/gBarinadeSparkBall8Tex" +static const ALIGN_ASSET(2) char gBarinadeSparkBall8Tex[] = dgBarinadeSparkBall8Tex; + +#define dgBarinadeDoorPiece1DL "__OTR__objects/object_bv/gBarinadeDoorPiece1DL" +static const ALIGN_ASSET(2) char gBarinadeDoorPiece1DL[] = dgBarinadeDoorPiece1DL; + +#define dgBarinadeDoorPiece2DL "__OTR__objects/object_bv/gBarinadeDoorPiece2DL" +static const ALIGN_ASSET(2) char gBarinadeDoorPiece2DL[] = dgBarinadeDoorPiece2DL; + +#define dgBarinadeDoorPiece3DL "__OTR__objects/object_bv/gBarinadeDoorPiece3DL" +static const ALIGN_ASSET(2) char gBarinadeDoorPiece3DL[] = dgBarinadeDoorPiece3DL; + +#define dgBarinadeDoorPiece4DL "__OTR__objects/object_bv/gBarinadeDoorPiece4DL" +static const ALIGN_ASSET(2) char gBarinadeDoorPiece4DL[] = dgBarinadeDoorPiece4DL; + +#define dgBarinadeDoorPiece5DL "__OTR__objects/object_bv/gBarinadeDoorPiece5DL" +static const ALIGN_ASSET(2) char gBarinadeDoorPiece5DL[] = dgBarinadeDoorPiece5DL; + +#define dgBarinadeDoorPiece6DL "__OTR__objects/object_bv/gBarinadeDoorPiece6DL" +static const ALIGN_ASSET(2) char gBarinadeDoorPiece6DL[] = dgBarinadeDoorPiece6DL; + +#define dgBarinadeDoorPiece7DL "__OTR__objects/object_bv/gBarinadeDoorPiece7DL" +static const ALIGN_ASSET(2) char gBarinadeDoorPiece7DL[] = dgBarinadeDoorPiece7DL; + +#define dgBarinadeDoorPiece8DL "__OTR__objects/object_bv/gBarinadeDoorPiece8DL" +static const ALIGN_ASSET(2) char gBarinadeDoorPiece8DL[] = dgBarinadeDoorPiece8DL; + +#define dgBarinadeAnim_018A00 "__OTR__objects/object_bv/gBarinadeAnim_018A00" +static const ALIGN_ASSET(2) char gBarinadeAnim_018A00[] = dgBarinadeAnim_018A00; + +#define dgBarinadeAnim_015F10 "__OTR__objects/object_bv/gBarinadeAnim_015F10" +static const ALIGN_ASSET(2) char gBarinadeAnim_015F10[] = dgBarinadeAnim_015F10; + +#define dgBarinadeAnim_015D10 "__OTR__objects/object_bv/gBarinadeAnim_015D10" +static const ALIGN_ASSET(2) char gBarinadeAnim_015D10[] = dgBarinadeAnim_015D10; + +#define dgBarinadeDL_008E88 "__OTR__objects/object_bv/gBarinadeDL_008E88" +static const ALIGN_ASSET(2) char gBarinadeDL_008E88[] = dgBarinadeDL_008E88; + +#define dgBarinadeDL_008EF0 "__OTR__objects/object_bv/gBarinadeDL_008EF0" +static const ALIGN_ASSET(2) char gBarinadeDL_008EF0[] = dgBarinadeDL_008EF0; + +#define dgBarinadeDL_009388 "__OTR__objects/object_bv/gBarinadeDL_009388" +static const ALIGN_ASSET(2) char gBarinadeDL_009388[] = dgBarinadeDL_009388; + +#define dgBarinadeDL_0093A0 "__OTR__objects/object_bv/gBarinadeDL_0093A0" +static const ALIGN_ASSET(2) char gBarinadeDL_0093A0[] = dgBarinadeDL_0093A0; + +#define dgBarinadeDL_0094F8 "__OTR__objects/object_bv/gBarinadeDL_0094F8" +static const ALIGN_ASSET(2) char gBarinadeDL_0094F8[] = dgBarinadeDL_0094F8; + +#define dgBarinadeDL_0095B0 "__OTR__objects/object_bv/gBarinadeDL_0095B0" +static const ALIGN_ASSET(2) char gBarinadeDL_0095B0[] = dgBarinadeDL_0095B0; + +#define dgBarinadeBodySkelLimbsLimb_015770DL_007FD8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015770DL_007FD8" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015770DL_007FD8[] = dgBarinadeBodySkelLimbsLimb_015770DL_007FD8; + +#define dgBarinadeBodySkelLimbsLimb_01580CDL_0080B0 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_01580CDL_0080B0" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_01580CDL_0080B0[] = dgBarinadeBodySkelLimbsLimb_01580CDL_0080B0; + +#define dgBarinadeBodySkelLimbsLimb_01583CDL_007F40 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_01583CDL_007F40" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_01583CDL_007F40[] = dgBarinadeBodySkelLimbsLimb_01583CDL_007F40; + +#define dgBarinadeBodySkelLimbsLimb_015854DL_008388 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015854DL_008388" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015854DL_008388[] = dgBarinadeBodySkelLimbsLimb_015854DL_008388; + +#define dgBarinadeBodySkelLimbsLimb_015878DL_008458 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015878DL_008458" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015878DL_008458[] = dgBarinadeBodySkelLimbsLimb_015878DL_008458; + +#define dgBarinadeBodySkelLimbsLimb_015890DL_0084E8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015890DL_0084E8" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015890DL_0084E8[] = dgBarinadeBodySkelLimbsLimb_015890DL_0084E8; + +#define dgBarinadeBodySkelLimbsLimb_0158C0DL_008578 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_0158C0DL_008578" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_0158C0DL_008578[] = dgBarinadeBodySkelLimbsLimb_0158C0DL_008578; + +#define dgBarinadeBodySkelLimbsLimb_0158D8DL_008608 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_0158D8DL_008608" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_0158D8DL_008608[] = dgBarinadeBodySkelLimbsLimb_0158D8DL_008608; + +#define dgBarinadeBodySkelLimbsLimb_015908DL_008698 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015908DL_008698" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015908DL_008698[] = dgBarinadeBodySkelLimbsLimb_015908DL_008698; + +#define dgBarinadeBodySkelLimbsLimb_015920DL_008728 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015920DL_008728" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015920DL_008728[] = dgBarinadeBodySkelLimbsLimb_015920DL_008728; + +#define dgBarinadeBodySkelLimbsLimb_015950DL_0087B8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015950DL_0087B8" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015950DL_0087B8[] = dgBarinadeBodySkelLimbsLimb_015950DL_0087B8; + +#define dgBarinadeBodySkelLimbsLimb_015968DL_008848 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015968DL_008848" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015968DL_008848[] = dgBarinadeBodySkelLimbsLimb_015968DL_008848; + +#define dgBarinadeBodySkelLimbsLimb_015998DL_0088D8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015998DL_0088D8" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015998DL_0088D8[] = dgBarinadeBodySkelLimbsLimb_015998DL_0088D8; + +#define dgBarinadeBodySkelLimbsLimb_0159B0DL_008968 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_0159B0DL_008968" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_0159B0DL_008968[] = dgBarinadeBodySkelLimbsLimb_0159B0DL_008968; + +#define dgBarinadeBodySkelLimbsLimb_015A04DL_0082A8 "__OTR__objects/object_bv/gBarinadeBodySkelLimbsLimb_015A04DL_0082A8" +static const ALIGN_ASSET(2) char gBarinadeBodySkelLimbsLimb_015A04DL_0082A8[] = dgBarinadeBodySkelLimbsLimb_015A04DL_0082A8; + +#define dgBarinadeSupportSkelLimbsLimb_01742CDL_016FC8 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_01742CDL_016FC8" +static const ALIGN_ASSET(2) char gBarinadeSupportSkelLimbsLimb_01742CDL_016FC8[] = dgBarinadeSupportSkelLimbsLimb_01742CDL_016FC8; + +#define dgBarinadeSupportSkelLimbsLimb_017438DL_016EC8 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_017438DL_016EC8" +static const ALIGN_ASSET(2) char gBarinadeSupportSkelLimbsLimb_017438DL_016EC8[] = dgBarinadeSupportSkelLimbsLimb_017438DL_016EC8; + +#define dgBarinadeSupportSkelLimbsLimb_017444DL_016DC8 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_017444DL_016DC8" +static const ALIGN_ASSET(2) char gBarinadeSupportSkelLimbsLimb_017444DL_016DC8[] = dgBarinadeSupportSkelLimbsLimb_017444DL_016DC8; + +#define dgBarinadeSupportSkelLimbsLimb_017450DL_016CC8 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_017450DL_016CC8" +static const ALIGN_ASSET(2) char gBarinadeSupportSkelLimbsLimb_017450DL_016CC8[] = dgBarinadeSupportSkelLimbsLimb_017450DL_016CC8; + +#define dgBarinadeSupportSkelLimbsLimb_01745CDL_016BA0 "__OTR__objects/object_bv/gBarinadeSupportSkelLimbsLimb_01745CDL_016BA0" +static const ALIGN_ASSET(2) char gBarinadeSupportSkelLimbsLimb_01745CDL_016BA0[] = dgBarinadeSupportSkelLimbsLimb_01745CDL_016BA0; + +#define dgBarinadeZapperSkelLimbsLimb_019948DL_0194A0 "__OTR__objects/object_bv/gBarinadeZapperSkelLimbsLimb_019948DL_0194A0" +static const ALIGN_ASSET(2) char gBarinadeZapperSkelLimbsLimb_019948DL_0194A0[] = dgBarinadeZapperSkelLimbsLimb_019948DL_0194A0; + +#define dgBarinadeZapperSkelLimbsLimb_019954DL_0195C8 "__OTR__objects/object_bv/gBarinadeZapperSkelLimbsLimb_019954DL_0195C8" +static const ALIGN_ASSET(2) char gBarinadeZapperSkelLimbsLimb_019954DL_0195C8[] = dgBarinadeZapperSkelLimbsLimb_019954DL_0195C8; + +#define dgBarinadeZapperSkelLimbsLimb_01996CDL_0196C8 "__OTR__objects/object_bv/gBarinadeZapperSkelLimbsLimb_01996CDL_0196C8" +static const ALIGN_ASSET(2) char gBarinadeZapperSkelLimbsLimb_01996CDL_0196C8[] = dgBarinadeZapperSkelLimbsLimb_01996CDL_0196C8; + +#define dgBarinadeZapperSkelLimbsLimb_019978DL_0197C8 "__OTR__objects/object_bv/gBarinadeZapperSkelLimbsLimb_019978DL_0197C8" +static const ALIGN_ASSET(2) char gBarinadeZapperSkelLimbsLimb_019978DL_0197C8[] = dgBarinadeZapperSkelLimbsLimb_019978DL_0197C8; + +#define dgBarinadeStumpSkelLimbsLimb_01882CDL_0185E8 "__OTR__objects/object_bv/gBarinadeStumpSkelLimbsLimb_01882CDL_0185E8" +static const ALIGN_ASSET(2) char gBarinadeStumpSkelLimbsLimb_01882CDL_0185E8[] = dgBarinadeStumpSkelLimbsLimb_01882CDL_0185E8; + +#define dgBarinadeStumpSkelLimbsLimb_018838DL_0184D0 "__OTR__objects/object_bv/gBarinadeStumpSkelLimbsLimb_018838DL_0184D0" +static const ALIGN_ASSET(2) char gBarinadeStumpSkelLimbsLimb_018838DL_0184D0[] = dgBarinadeStumpSkelLimbsLimb_018838DL_0184D0; + +#define dgBarinadeStumpSkelLimbsLimb_018844DL_018410 "__OTR__objects/object_bv/gBarinadeStumpSkelLimbsLimb_018844DL_018410" +static const ALIGN_ASSET(2) char gBarinadeStumpSkelLimbsLimb_018844DL_018410[] = dgBarinadeStumpSkelLimbsLimb_018844DL_018410; + +#define dgBarinadeBariSkelLimbsLimb_004E48DL_001070 "__OTR__objects/object_bv/gBarinadeBariSkelLimbsLimb_004E48DL_001070" +static const ALIGN_ASSET(2) char gBarinadeBariSkelLimbsLimb_004E48DL_001070[] = dgBarinadeBariSkelLimbsLimb_004E48DL_001070; + +#define dgBarinadeBariSkelLimbsLimb_004E54DL_001158 "__OTR__objects/object_bv/gBarinadeBariSkelLimbsLimb_004E54DL_001158" +static const ALIGN_ASSET(2) char gBarinadeBariSkelLimbsLimb_004E54DL_001158[] = dgBarinadeBariSkelLimbsLimb_004E54DL_001158; + +#define dgBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8 "__OTR__objects/object_bv/gBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8" +static const ALIGN_ASSET(2) char gBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8[] = dgBarinadeCutSupportSkelLimbsLimb_017F7CDL_017DB8; + +#define dgBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8 "__OTR__objects/object_bv/gBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8" +static const ALIGN_ASSET(2) char gBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8[] = dgBarinadeCutSupportSkelLimbsLimb_017F88DL_017CB8; + +#define dgBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90 "__OTR__objects/object_bv/gBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90" +static const ALIGN_ASSET(2) char gBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90[] = dgBarinadeCutSupportSkelLimbsLimb_017F94DL_017B90; + +#define dobject_bvTex_0065A0 "__OTR__objects/object_bv/object_bvTex_0065A0" +static const ALIGN_ASSET(2) char object_bvTex_0065A0[] = dobject_bvTex_0065A0; + +#define dobject_bvTex_005DA0 "__OTR__objects/object_bv/object_bvTex_005DA0" +static const ALIGN_ASSET(2) char object_bvTex_005DA0[] = dobject_bvTex_005DA0; + +#define dobject_bvTex_000A40 "__OTR__objects/object_bv/object_bvTex_000A40" +static const ALIGN_ASSET(2) char object_bvTex_000A40[] = dobject_bvTex_000A40; + +#define dobject_bvTex_013660 "__OTR__objects/object_bv/object_bvTex_013660" +static const ALIGN_ASSET(2) char object_bvTex_013660[] = dobject_bvTex_013660; + +#define dobject_bvTex_0117B8 "__OTR__objects/object_bv/object_bvTex_0117B8" +static const ALIGN_ASSET(2) char object_bvTex_0117B8[] = dobject_bvTex_0117B8; + +#define dobject_bvTex_011BB8 "__OTR__objects/object_bv/object_bvTex_011BB8" +static const ALIGN_ASSET(2) char object_bvTex_011BB8[] = dobject_bvTex_011BB8; + +#define dobject_bvTex_0119B8 "__OTR__objects/object_bv/object_bvTex_0119B8" +static const ALIGN_ASSET(2) char object_bvTex_0119B8[] = dobject_bvTex_0119B8; + +#define dobject_bvTex_012CE0 "__OTR__objects/object_bv/object_bvTex_012CE0" +static const ALIGN_ASSET(2) char object_bvTex_012CE0[] = dobject_bvTex_012CE0; + +#define dobject_bvTex_008F88 "__OTR__objects/object_bv/object_bvTex_008F88" +static const ALIGN_ASSET(2) char object_bvTex_008F88[] = dobject_bvTex_008F88; + +#define dobject_bvTex_019BB8 "__OTR__objects/object_bv/object_bvTex_019BB8" +static const ALIGN_ASSET(2) char object_bvTex_019BB8[] = dobject_bvTex_019BB8; + +#define dobject_bvTLUT_0199B0 "__OTR__objects/object_bv/object_bvTLUT_0199B0" +static const ALIGN_ASSET(2) char object_bvTLUT_0199B0[] = dobject_bvTLUT_0199B0; + +#define dobject_bvTex_01A6B8 "__OTR__objects/object_bv/object_bvTex_01A6B8" +static const ALIGN_ASSET(2) char object_bvTex_01A6B8[] = dobject_bvTex_01A6B8; + +#define dobject_bvTLUT_01A4B0 "__OTR__objects/object_bv/object_bvTLUT_01A4B0" +static const ALIGN_ASSET(2) char object_bvTLUT_01A4B0[] = dobject_bvTLUT_01A4B0; + +#define dobject_bvTex_01B1B8 "__OTR__objects/object_bv/object_bvTex_01B1B8" +static const ALIGN_ASSET(2) char object_bvTex_01B1B8[] = dobject_bvTex_01B1B8; + +#define dobject_bvTLUT_01AFB0 "__OTR__objects/object_bv/object_bvTLUT_01AFB0" +static const ALIGN_ASSET(2) char object_bvTLUT_01AFB0[] = dobject_bvTLUT_01AFB0; + +#define dobject_bvTex_01BCB8 "__OTR__objects/object_bv/object_bvTex_01BCB8" +static const ALIGN_ASSET(2) char object_bvTex_01BCB8[] = dobject_bvTex_01BCB8; + +#define dobject_bvTLUT_01BAB0 "__OTR__objects/object_bv/object_bvTLUT_01BAB0" +static const ALIGN_ASSET(2) char object_bvTLUT_01BAB0[] = dobject_bvTLUT_01BAB0; + +#define dobject_bvTex_01C7B8 "__OTR__objects/object_bv/object_bvTex_01C7B8" +static const ALIGN_ASSET(2) char object_bvTex_01C7B8[] = dobject_bvTex_01C7B8; + +#define dobject_bvTLUT_01C5B0 "__OTR__objects/object_bv/object_bvTLUT_01C5B0" +static const ALIGN_ASSET(2) char object_bvTLUT_01C5B0[] = dobject_bvTLUT_01C5B0; + +#define dobject_bvTex_01D2B8 "__OTR__objects/object_bv/object_bvTex_01D2B8" +static const ALIGN_ASSET(2) char object_bvTex_01D2B8[] = dobject_bvTex_01D2B8; + +#define dobject_bvTLUT_01D0B0 "__OTR__objects/object_bv/object_bvTLUT_01D0B0" +static const ALIGN_ASSET(2) char object_bvTLUT_01D0B0[] = dobject_bvTLUT_01D0B0; + +#define dobject_bvTex_01DDB8 "__OTR__objects/object_bv/object_bvTex_01DDB8" +static const ALIGN_ASSET(2) char object_bvTex_01DDB8[] = dobject_bvTex_01DDB8; + +#define dobject_bvTLUT_01DBB0 "__OTR__objects/object_bv/object_bvTLUT_01DBB0" +static const ALIGN_ASSET(2) char object_bvTLUT_01DBB0[] = dobject_bvTLUT_01DBB0; + +#define dobject_bvTex_01E8B8 "__OTR__objects/object_bv/object_bvTex_01E8B8" +static const ALIGN_ASSET(2) char object_bvTex_01E8B8[] = dobject_bvTex_01E8B8; + +#define dobject_bvTLUT_01E6B0 "__OTR__objects/object_bv/object_bvTLUT_01E6B0" +static const ALIGN_ASSET(2) char object_bvTLUT_01E6B0[] = dobject_bvTLUT_01E6B0; + +#define dobject_bvTex_0052A0 "__OTR__objects/object_bv/object_bvTex_0052A0" +static const ALIGN_ASSET(2) char object_bvTex_0052A0[] = dobject_bvTex_0052A0; + +#define dobject_bvTex_0053A0 "__OTR__objects/object_bv/object_bvTex_0053A0" +static const ALIGN_ASSET(2) char object_bvTex_0053A0[] = dobject_bvTex_0053A0; + +#define dobject_bvTex_0051A0 "__OTR__objects/object_bv/object_bvTex_0051A0" +static const ALIGN_ASSET(2) char object_bvTex_0051A0[] = dobject_bvTex_0051A0; + +#define dobject_bvTex_0055A0 "__OTR__objects/object_bv/object_bvTex_0055A0" +static const ALIGN_ASSET(2) char object_bvTex_0055A0[] = dobject_bvTex_0055A0; + +#define dobject_bvTex_0059A0 "__OTR__objects/object_bv/object_bvTex_0059A0" +static const ALIGN_ASSET(2) char object_bvTex_0059A0[] = dobject_bvTex_0059A0; + +#define dobject_bvTex_0170D8 "__OTR__objects/object_bv/object_bvTex_0170D8" +static const ALIGN_ASSET(2) char object_bvTex_0170D8[] = dobject_bvTex_0170D8; + +#define dobject_bvTex_0171D8 "__OTR__objects/object_bv/object_bvTex_0171D8" +static const ALIGN_ASSET(2) char object_bvTex_0171D8[] = dobject_bvTex_0171D8; + +#define dobject_bvTex_018E30 "__OTR__objects/object_bv/object_bvTex_018E30" +static const ALIGN_ASSET(2) char object_bvTex_018E30[] = dobject_bvTex_018E30; + +#define dobject_bvTex_018D30 "__OTR__objects/object_bv/object_bvTex_018D30" +static const ALIGN_ASSET(2) char object_bvTex_018D30[] = dobject_bvTex_018D30; + +#define dobject_bvTex_018770 "__OTR__objects/object_bv/object_bvTex_018770" +static const ALIGN_ASSET(2) char object_bvTex_018770[] = dobject_bvTex_018770; + +#define dobject_bvTex_000840 "__OTR__objects/object_bv/object_bvTex_000840" +static const ALIGN_ASSET(2) char object_bvTex_000840[] = dobject_bvTex_000840; + +#define dobject_bvTex_000040 "__OTR__objects/object_bv/object_bvTex_000040" +static const ALIGN_ASSET(2) char object_bvTex_000040[] = dobject_bvTex_000040; \ No newline at end of file diff --git a/soh/assets/objects/object_bw/object_bw.h b/soh/assets/objects/object_bw/object_bw.h index 28a963c28..5843a075b 100644 --- a/soh/assets/objects/object_bw/object_bw.h +++ b/soh/assets/objects/object_bw/object_bw.h @@ -1,100 +1,45 @@ #pragma once -#define dobject_bw_Anim_000228 "__OTR__objects/object_bw/object_bw_Anim_000228" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_Anim_000228[] = dobject_bw_Anim_000228; -#else -static const char object_bw_Anim_000228[] __attribute__((aligned (2))) = dobject_bw_Anim_000228; -#endif - -#define dobject_bw_DL_0002C0 "__OTR__objects/object_bw/object_bw_DL_0002C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_DL_0002C0[] = dobject_bw_DL_0002C0; -#else -static const char object_bw_DL_0002C0[] __attribute__((aligned (2))) = dobject_bw_DL_0002C0; -#endif - -#define dobject_bw_DL_0003E8 "__OTR__objects/object_bw/object_bw_DL_0003E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_DL_0003E8[] = dobject_bw_DL_0003E8; -#else -static const char object_bw_DL_0003E8[] __attribute__((aligned (2))) = dobject_bw_DL_0003E8; -#endif - -#define dobject_bw_DL_000558 "__OTR__objects/object_bw/object_bw_DL_000558" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_DL_000558[] = dobject_bw_DL_000558; -#else -static const char object_bw_DL_000558[] __attribute__((aligned (2))) = dobject_bw_DL_000558; -#endif - -#define dobject_bw_DL_000680 "__OTR__objects/object_bw/object_bw_DL_000680" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_DL_000680[] = dobject_bw_DL_000680; -#else -static const char object_bw_DL_000680[] __attribute__((aligned (2))) = dobject_bw_DL_000680; -#endif - -#define dobject_bw_DL_001050 "__OTR__objects/object_bw/object_bw_DL_001050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_DL_001050[] = dobject_bw_DL_001050; -#else -static const char object_bw_DL_001050[] __attribute__((aligned (2))) = dobject_bw_DL_001050; -#endif - -#define dobject_bw_Tex_001240 "__OTR__objects/object_bw/object_bw_Tex_001240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_Tex_001240[] = dobject_bw_Tex_001240; -#else -static const char object_bw_Tex_001240[] __attribute__((aligned (2))) = dobject_bw_Tex_001240; -#endif - -#define dobject_bw_Tex_001440 "__OTR__objects/object_bw/object_bw_Tex_001440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_Tex_001440[] = dobject_bw_Tex_001440; -#else -static const char object_bw_Tex_001440[] __attribute__((aligned (2))) = dobject_bw_Tex_001440; -#endif - -#define dobject_bw_TLUT_001640 "__OTR__objects/object_bw/object_bw_TLUT_001640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_TLUT_001640[] = dobject_bw_TLUT_001640; -#else -static const char object_bw_TLUT_001640[] __attribute__((aligned (2))) = dobject_bw_TLUT_001640; -#endif - -#define dobject_bw_Tex_001840 "__OTR__objects/object_bw/object_bw_Tex_001840" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_Tex_001840[] = dobject_bw_Tex_001840; -#else -static const char object_bw_Tex_001840[] __attribute__((aligned (2))) = dobject_bw_Tex_001840; -#endif - -#define dobject_bw_Tex_001C40 "__OTR__objects/object_bw/object_bw_Tex_001C40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_Tex_001C40[] = dobject_bw_Tex_001C40; -#else -static const char object_bw_Tex_001C40[] __attribute__((aligned (2))) = dobject_bw_Tex_001C40; -#endif - -#define dobject_bw_Skel_0020F0 "__OTR__objects/object_bw/object_bw_Skel_0020F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_Skel_0020F0[] = dobject_bw_Skel_0020F0; -#else -static const char object_bw_Skel_0020F0[] __attribute__((aligned (2))) = dobject_bw_Skel_0020F0; -#endif - -#define dobject_bw_Anim_0021A0 "__OTR__objects/object_bw/object_bw_Anim_0021A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_Anim_0021A0[] = dobject_bw_Anim_0021A0; -#else -static const char object_bw_Anim_0021A0[] __attribute__((aligned (2))) = dobject_bw_Anim_0021A0; -#endif - -#define dobject_bw_Anim_002250 "__OTR__objects/object_bw/object_bw_Anim_002250" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bw_Anim_002250[] = dobject_bw_Anim_002250; -#else -static const char object_bw_Anim_002250[] __attribute__((aligned (2))) = dobject_bw_Anim_002250; -#endif - +#include "align_asset_macro.h" + +#define dobject_bw_Anim_000228 "__OTR__objects/object_bw/object_bw_Anim_000228" +static const ALIGN_ASSET(2) char object_bw_Anim_000228[] = dobject_bw_Anim_000228; + +#define dobject_bw_DL_0002C0 "__OTR__objects/object_bw/object_bw_DL_0002C0" +static const ALIGN_ASSET(2) char object_bw_DL_0002C0[] = dobject_bw_DL_0002C0; + +#define dobject_bw_DL_0003E8 "__OTR__objects/object_bw/object_bw_DL_0003E8" +static const ALIGN_ASSET(2) char object_bw_DL_0003E8[] = dobject_bw_DL_0003E8; + +#define dobject_bw_DL_000558 "__OTR__objects/object_bw/object_bw_DL_000558" +static const ALIGN_ASSET(2) char object_bw_DL_000558[] = dobject_bw_DL_000558; + +#define dobject_bw_DL_000680 "__OTR__objects/object_bw/object_bw_DL_000680" +static const ALIGN_ASSET(2) char object_bw_DL_000680[] = dobject_bw_DL_000680; + +#define dobject_bw_DL_001050 "__OTR__objects/object_bw/object_bw_DL_001050" +static const ALIGN_ASSET(2) char object_bw_DL_001050[] = dobject_bw_DL_001050; + +#define dobject_bw_Tex_001240 "__OTR__objects/object_bw/object_bw_Tex_001240" +static const ALIGN_ASSET(2) char object_bw_Tex_001240[] = dobject_bw_Tex_001240; + +#define dobject_bw_Tex_001440 "__OTR__objects/object_bw/object_bw_Tex_001440" +static const ALIGN_ASSET(2) char object_bw_Tex_001440[] = dobject_bw_Tex_001440; + +#define dobject_bw_TLUT_001640 "__OTR__objects/object_bw/object_bw_TLUT_001640" +static const ALIGN_ASSET(2) char object_bw_TLUT_001640[] = dobject_bw_TLUT_001640; + +#define dobject_bw_Tex_001840 "__OTR__objects/object_bw/object_bw_Tex_001840" +static const ALIGN_ASSET(2) char object_bw_Tex_001840[] = dobject_bw_Tex_001840; + +#define dobject_bw_Tex_001C40 "__OTR__objects/object_bw/object_bw_Tex_001C40" +static const ALIGN_ASSET(2) char object_bw_Tex_001C40[] = dobject_bw_Tex_001C40; + +#define dobject_bw_Skel_0020F0 "__OTR__objects/object_bw/object_bw_Skel_0020F0" +static const ALIGN_ASSET(2) char object_bw_Skel_0020F0[] = dobject_bw_Skel_0020F0; + +#define dobject_bw_Anim_0021A0 "__OTR__objects/object_bw/object_bw_Anim_0021A0" +static const ALIGN_ASSET(2) char object_bw_Anim_0021A0[] = dobject_bw_Anim_0021A0; + +#define dobject_bw_Anim_002250 "__OTR__objects/object_bw/object_bw_Anim_002250" +static const ALIGN_ASSET(2) char object_bw_Anim_002250[] = dobject_bw_Anim_002250; \ No newline at end of file diff --git a/soh/assets/objects/object_bwall/object_bwall.h b/soh/assets/objects/object_bwall/object_bwall.h index 05a06105c..9715cee73 100644 --- a/soh/assets/objects/object_bwall/object_bwall.h +++ b/soh/assets/objects/object_bwall/object_bwall.h @@ -1,23 +1,12 @@ #pragma once -#define dobject_bwall_DL_000040 "__OTR__objects/object_bwall/object_bwall_DL_000040" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bwall_DL_000040[] = dobject_bwall_DL_000040; -#else -static const char object_bwall_DL_000040[] __attribute__((aligned (2))) = dobject_bwall_DL_000040; -#endif - -#define dobject_bwall_Col_000118 "__OTR__objects/object_bwall/object_bwall_Col_000118" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bwall_Col_000118[] = dobject_bwall_Col_000118; -#else -static const char object_bwall_Col_000118[] __attribute__((aligned (2))) = dobject_bwall_Col_000118; -#endif - -#define dobject_bwall_Tex_000150 "__OTR__objects/object_bwall/object_bwall_Tex_000150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bwall_Tex_000150[] = dobject_bwall_Tex_000150; -#else -static const char object_bwall_Tex_000150[] __attribute__((aligned (2))) = dobject_bwall_Tex_000150; -#endif - +#include "align_asset_macro.h" + +#define dobject_bwall_DL_000040 "__OTR__objects/object_bwall/object_bwall_DL_000040" +static const ALIGN_ASSET(2) char object_bwall_DL_000040[] = dobject_bwall_DL_000040; + +#define dobject_bwall_Col_000118 "__OTR__objects/object_bwall/object_bwall_Col_000118" +static const ALIGN_ASSET(2) char object_bwall_Col_000118[] = dobject_bwall_Col_000118; + +#define dobject_bwall_Tex_000150 "__OTR__objects/object_bwall/object_bwall_Tex_000150" +static const ALIGN_ASSET(2) char object_bwall_Tex_000150[] = dobject_bwall_Tex_000150; \ No newline at end of file diff --git a/soh/assets/objects/object_bxa/object_bxa.h b/soh/assets/objects/object_bxa/object_bxa.h index 8766f7c98..915e433d7 100644 --- a/soh/assets/objects/object_bxa/object_bxa.h +++ b/soh/assets/objects/object_bxa/object_bxa.h @@ -1,65 +1,30 @@ #pragma once -#define dobject_bxa_DL_000890 "__OTR__objects/object_bxa/object_bxa_DL_000890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_DL_000890[] = dobject_bxa_DL_000890; -#else -static const char object_bxa_DL_000890[] __attribute__((aligned (2))) = dobject_bxa_DL_000890; -#endif - -#define dobject_bxa_Tex_000C40 "__OTR__objects/object_bxa/object_bxa_Tex_000C40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_Tex_000C40[] = dobject_bxa_Tex_000C40; -#else -static const char object_bxa_Tex_000C40[] __attribute__((aligned (2))) = dobject_bxa_Tex_000C40; -#endif - -#define dobject_bxa_Tex_001440 "__OTR__objects/object_bxa/object_bxa_Tex_001440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_Tex_001440[] = dobject_bxa_Tex_001440; -#else -static const char object_bxa_Tex_001440[] __attribute__((aligned (2))) = dobject_bxa_Tex_001440; -#endif - -#define dobject_bxa_DL_001D80 "__OTR__objects/object_bxa/object_bxa_DL_001D80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_DL_001D80[] = dobject_bxa_DL_001D80; -#else -static const char object_bxa_DL_001D80[] __attribute__((aligned (2))) = dobject_bxa_DL_001D80; -#endif - -#define dobject_bxa_DL_0022F0 "__OTR__objects/object_bxa/object_bxa_DL_0022F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_DL_0022F0[] = dobject_bxa_DL_0022F0; -#else -static const char object_bxa_DL_0022F0[] __attribute__((aligned (2))) = dobject_bxa_DL_0022F0; -#endif - -#define dobject_bxa_Tex_0024F0 "__OTR__objects/object_bxa/object_bxa_Tex_0024F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_Tex_0024F0[] = dobject_bxa_Tex_0024F0; -#else -static const char object_bxa_Tex_0024F0[] __attribute__((aligned (2))) = dobject_bxa_Tex_0024F0; -#endif - -#define dobject_bxa_Tex_0026F0 "__OTR__objects/object_bxa/object_bxa_Tex_0026F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_Tex_0026F0[] = dobject_bxa_Tex_0026F0; -#else -static const char object_bxa_Tex_0026F0[] __attribute__((aligned (2))) = dobject_bxa_Tex_0026F0; -#endif - -#define dobject_bxa_Tex_0027F0 "__OTR__objects/object_bxa/object_bxa_Tex_0027F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_Tex_0027F0[] = dobject_bxa_Tex_0027F0; -#else -static const char object_bxa_Tex_0027F0[] __attribute__((aligned (2))) = dobject_bxa_Tex_0027F0; -#endif - -#define dobject_bxa_Tex_0029F0 "__OTR__objects/object_bxa/object_bxa_Tex_0029F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_bxa_Tex_0029F0[] = dobject_bxa_Tex_0029F0; -#else -static const char object_bxa_Tex_0029F0[] __attribute__((aligned (2))) = dobject_bxa_Tex_0029F0; -#endif - +#include "align_asset_macro.h" + +#define dobject_bxa_DL_000890 "__OTR__objects/object_bxa/object_bxa_DL_000890" +static const ALIGN_ASSET(2) char object_bxa_DL_000890[] = dobject_bxa_DL_000890; + +#define dobject_bxa_Tex_000C40 "__OTR__objects/object_bxa/object_bxa_Tex_000C40" +static const ALIGN_ASSET(2) char object_bxa_Tex_000C40[] = dobject_bxa_Tex_000C40; + +#define dobject_bxa_Tex_001440 "__OTR__objects/object_bxa/object_bxa_Tex_001440" +static const ALIGN_ASSET(2) char object_bxa_Tex_001440[] = dobject_bxa_Tex_001440; + +#define dobject_bxa_DL_001D80 "__OTR__objects/object_bxa/object_bxa_DL_001D80" +static const ALIGN_ASSET(2) char object_bxa_DL_001D80[] = dobject_bxa_DL_001D80; + +#define dobject_bxa_DL_0022F0 "__OTR__objects/object_bxa/object_bxa_DL_0022F0" +static const ALIGN_ASSET(2) char object_bxa_DL_0022F0[] = dobject_bxa_DL_0022F0; + +#define dobject_bxa_Tex_0024F0 "__OTR__objects/object_bxa/object_bxa_Tex_0024F0" +static const ALIGN_ASSET(2) char object_bxa_Tex_0024F0[] = dobject_bxa_Tex_0024F0; + +#define dobject_bxa_Tex_0026F0 "__OTR__objects/object_bxa/object_bxa_Tex_0026F0" +static const ALIGN_ASSET(2) char object_bxa_Tex_0026F0[] = dobject_bxa_Tex_0026F0; + +#define dobject_bxa_Tex_0027F0 "__OTR__objects/object_bxa/object_bxa_Tex_0027F0" +static const ALIGN_ASSET(2) char object_bxa_Tex_0027F0[] = dobject_bxa_Tex_0027F0; + +#define dobject_bxa_Tex_0029F0 "__OTR__objects/object_bxa/object_bxa_Tex_0029F0" +static const ALIGN_ASSET(2) char object_bxa_Tex_0029F0[] = dobject_bxa_Tex_0029F0; \ No newline at end of file diff --git a/soh/assets/objects/object_cne/object_cne.h b/soh/assets/objects/object_cne/object_cne.h index a3ca653b6..839a85fca 100644 --- a/soh/assets/objects/object_cne/object_cne.h +++ b/soh/assets/objects/object_cne/object_cne.h @@ -1,191 +1,84 @@ #pragma once -#define dgCneSkel "__OTR__objects/object_cne/gCneSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneSkel[] = dgCneSkel; -#else -static const char gCneSkel[] __attribute__((aligned (2))) = dgCneSkel; -#endif - -#define dgCneTLUT "__OTR__objects/object_cne/gCneTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneTLUT[] = dgCneTLUT; -#else -static const char gCneTLUT[] __attribute__((aligned (2))) = dgCneTLUT; -#endif - -#define dgCneSkinTex "__OTR__objects/object_cne/gCneSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneSkinTex[] = dgCneSkinTex; -#else -static const char gCneSkinTex[] __attribute__((aligned (2))) = dgCneSkinTex; -#endif - -#define dgCneBrownHairTex "__OTR__objects/object_cne/gCneBrownHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneBrownHairTex[] = dgCneBrownHairTex; -#else -static const char gCneBrownHairTex[] __attribute__((aligned (2))) = dgCneBrownHairTex; -#endif - -#define dgCneHandTex "__OTR__objects/object_cne/gCneHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneHandTex[] = dgCneHandTex; -#else -static const char gCneHandTex[] __attribute__((aligned (2))) = dgCneHandTex; -#endif - -#define dgCneBrownHairSkinTex "__OTR__objects/object_cne/gCneBrownHairSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneBrownHairSkinTex[] = dgCneBrownHairSkinTex; -#else -static const char gCneBrownHairSkinTex[] __attribute__((aligned (2))) = dgCneBrownHairSkinTex; -#endif - -#define dgCneBrownHairFaceTex "__OTR__objects/object_cne/gCneBrownHairFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneBrownHairFaceTex[] = dgCneBrownHairFaceTex; -#else -static const char gCneBrownHairFaceTex[] __attribute__((aligned (2))) = dgCneBrownHairFaceTex; -#endif - -#define dgCneDressTex "__OTR__objects/object_cne/gCneDressTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneDressTex[] = dgCneDressTex; -#else -static const char gCneDressTex[] __attribute__((aligned (2))) = dgCneDressTex; -#endif - -#define dgCneDressNeckTex "__OTR__objects/object_cne/gCneDressNeckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneDressNeckTex[] = dgCneDressNeckTex; -#else -static const char gCneDressNeckTex[] __attribute__((aligned (2))) = dgCneDressNeckTex; -#endif - -#define dgCneHeadBrownHairDL "__OTR__objects/object_cne/gCneHeadBrownHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneHeadBrownHairDL[] = dgCneHeadBrownHairDL; -#else -static const char gCneHeadBrownHairDL[] __attribute__((aligned (2))) = dgCneHeadBrownHairDL; -#endif - -#define dgCneRightHandDL "__OTR__objects/object_cne/gCneRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneRightHandDL[] = dgCneRightHandDL; -#else -static const char gCneRightHandDL[] __attribute__((aligned (2))) = dgCneRightHandDL; -#endif - -#define dgCneRightForearmDL "__OTR__objects/object_cne/gCneRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneRightForearmDL[] = dgCneRightForearmDL; -#else -static const char gCneRightForearmDL[] __attribute__((aligned (2))) = dgCneRightForearmDL; -#endif - -#define dgCneRightUpperArmDL "__OTR__objects/object_cne/gCneRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneRightUpperArmDL[] = dgCneRightUpperArmDL; -#else -static const char gCneRightUpperArmDL[] __attribute__((aligned (2))) = dgCneRightUpperArmDL; -#endif - -#define dgCneLeftHandDL "__OTR__objects/object_cne/gCneLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneLeftHandDL[] = dgCneLeftHandDL; -#else -static const char gCneLeftHandDL[] __attribute__((aligned (2))) = dgCneLeftHandDL; -#endif - -#define dgCneLeftForearmDL "__OTR__objects/object_cne/gCneLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneLeftForearmDL[] = dgCneLeftForearmDL; -#else -static const char gCneLeftForearmDL[] __attribute__((aligned (2))) = dgCneLeftForearmDL; -#endif - -#define dgCneLeftUpperArmDL "__OTR__objects/object_cne/gCneLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneLeftUpperArmDL[] = dgCneLeftUpperArmDL; -#else -static const char gCneLeftUpperArmDL[] __attribute__((aligned (2))) = dgCneLeftUpperArmDL; -#endif - -#define dgCneTorsoDL "__OTR__objects/object_cne/gCneTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneTorsoDL[] = dgCneTorsoDL; -#else -static const char gCneTorsoDL[] __attribute__((aligned (2))) = dgCneTorsoDL; -#endif - -#define dgCneRightFootDL "__OTR__objects/object_cne/gCneRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneRightFootDL[] = dgCneRightFootDL; -#else -static const char gCneRightFootDL[] __attribute__((aligned (2))) = dgCneRightFootDL; -#endif - -#define dgCneRightShinDL "__OTR__objects/object_cne/gCneRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneRightShinDL[] = dgCneRightShinDL; -#else -static const char gCneRightShinDL[] __attribute__((aligned (2))) = dgCneRightShinDL; -#endif - -#define dgCneRightThighDL "__OTR__objects/object_cne/gCneRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneRightThighDL[] = dgCneRightThighDL; -#else -static const char gCneRightThighDL[] __attribute__((aligned (2))) = dgCneRightThighDL; -#endif - -#define dgCneLeftFootDL "__OTR__objects/object_cne/gCneLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneLeftFootDL[] = dgCneLeftFootDL; -#else -static const char gCneLeftFootDL[] __attribute__((aligned (2))) = dgCneLeftFootDL; -#endif - -#define dgCneLeftShinDL "__OTR__objects/object_cne/gCneLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneLeftShinDL[] = dgCneLeftShinDL; -#else -static const char gCneLeftShinDL[] __attribute__((aligned (2))) = dgCneLeftShinDL; -#endif - -#define dgCneLeftThighDL "__OTR__objects/object_cne/gCneLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneLeftThighDL[] = dgCneLeftThighDL; -#else -static const char gCneLeftThighDL[] __attribute__((aligned (2))) = dgCneLeftThighDL; -#endif - -#define dgCnePelvisDL "__OTR__objects/object_cne/gCnePelvisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCnePelvisDL[] = dgCnePelvisDL; -#else -static const char gCnePelvisDL[] __attribute__((aligned (2))) = dgCnePelvisDL; -#endif - -#define dgCneOrangeHairFaceTex "__OTR__objects/object_cne/gCneOrangeHairFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneOrangeHairFaceTex[] = dgCneOrangeHairFaceTex; -#else -static const char gCneOrangeHairFaceTex[] __attribute__((aligned (2))) = dgCneOrangeHairFaceTex; -#endif - -#define dgCneOrangeHairSkinTex "__OTR__objects/object_cne/gCneOrangeHairSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneOrangeHairSkinTex[] = dgCneOrangeHairSkinTex; -#else -static const char gCneOrangeHairSkinTex[] __attribute__((aligned (2))) = dgCneOrangeHairSkinTex; -#endif - -#define dgCneHeadOrangeHairDL "__OTR__objects/object_cne/gCneHeadOrangeHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCneHeadOrangeHairDL[] = dgCneHeadOrangeHairDL; -#else -static const char gCneHeadOrangeHairDL[] __attribute__((aligned (2))) = dgCneHeadOrangeHairDL; -#endif - +#include "align_asset_macro.h" + +#define dgCneSkel "__OTR__objects/object_cne/gCneSkel" +static const ALIGN_ASSET(2) char gCneSkel[] = dgCneSkel; + +#define dgCneTLUT "__OTR__objects/object_cne/gCneTLUT" +static const ALIGN_ASSET(2) char gCneTLUT[] = dgCneTLUT; + +#define dgCneSkinTex "__OTR__objects/object_cne/gCneSkinTex" +static const ALIGN_ASSET(2) char gCneSkinTex[] = dgCneSkinTex; + +#define dgCneBrownHairTex "__OTR__objects/object_cne/gCneBrownHairTex" +static const ALIGN_ASSET(2) char gCneBrownHairTex[] = dgCneBrownHairTex; + +#define dgCneHandTex "__OTR__objects/object_cne/gCneHandTex" +static const ALIGN_ASSET(2) char gCneHandTex[] = dgCneHandTex; + +#define dgCneBrownHairSkinTex "__OTR__objects/object_cne/gCneBrownHairSkinTex" +static const ALIGN_ASSET(2) char gCneBrownHairSkinTex[] = dgCneBrownHairSkinTex; + +#define dgCneBrownHairFaceTex "__OTR__objects/object_cne/gCneBrownHairFaceTex" +static const ALIGN_ASSET(2) char gCneBrownHairFaceTex[] = dgCneBrownHairFaceTex; + +#define dgCneDressTex "__OTR__objects/object_cne/gCneDressTex" +static const ALIGN_ASSET(2) char gCneDressTex[] = dgCneDressTex; + +#define dgCneDressNeckTex "__OTR__objects/object_cne/gCneDressNeckTex" +static const ALIGN_ASSET(2) char gCneDressNeckTex[] = dgCneDressNeckTex; + +#define dgCneHeadBrownHairDL "__OTR__objects/object_cne/gCneHeadBrownHairDL" +static const ALIGN_ASSET(2) char gCneHeadBrownHairDL[] = dgCneHeadBrownHairDL; + +#define dgCneRightHandDL "__OTR__objects/object_cne/gCneRightHandDL" +static const ALIGN_ASSET(2) char gCneRightHandDL[] = dgCneRightHandDL; + +#define dgCneRightForearmDL "__OTR__objects/object_cne/gCneRightForearmDL" +static const ALIGN_ASSET(2) char gCneRightForearmDL[] = dgCneRightForearmDL; + +#define dgCneRightUpperArmDL "__OTR__objects/object_cne/gCneRightUpperArmDL" +static const ALIGN_ASSET(2) char gCneRightUpperArmDL[] = dgCneRightUpperArmDL; + +#define dgCneLeftHandDL "__OTR__objects/object_cne/gCneLeftHandDL" +static const ALIGN_ASSET(2) char gCneLeftHandDL[] = dgCneLeftHandDL; + +#define dgCneLeftForearmDL "__OTR__objects/object_cne/gCneLeftForearmDL" +static const ALIGN_ASSET(2) char gCneLeftForearmDL[] = dgCneLeftForearmDL; + +#define dgCneLeftUpperArmDL "__OTR__objects/object_cne/gCneLeftUpperArmDL" +static const ALIGN_ASSET(2) char gCneLeftUpperArmDL[] = dgCneLeftUpperArmDL; + +#define dgCneTorsoDL "__OTR__objects/object_cne/gCneTorsoDL" +static const ALIGN_ASSET(2) char gCneTorsoDL[] = dgCneTorsoDL; + +#define dgCneRightFootDL "__OTR__objects/object_cne/gCneRightFootDL" +static const ALIGN_ASSET(2) char gCneRightFootDL[] = dgCneRightFootDL; + +#define dgCneRightShinDL "__OTR__objects/object_cne/gCneRightShinDL" +static const ALIGN_ASSET(2) char gCneRightShinDL[] = dgCneRightShinDL; + +#define dgCneRightThighDL "__OTR__objects/object_cne/gCneRightThighDL" +static const ALIGN_ASSET(2) char gCneRightThighDL[] = dgCneRightThighDL; + +#define dgCneLeftFootDL "__OTR__objects/object_cne/gCneLeftFootDL" +static const ALIGN_ASSET(2) char gCneLeftFootDL[] = dgCneLeftFootDL; + +#define dgCneLeftShinDL "__OTR__objects/object_cne/gCneLeftShinDL" +static const ALIGN_ASSET(2) char gCneLeftShinDL[] = dgCneLeftShinDL; + +#define dgCneLeftThighDL "__OTR__objects/object_cne/gCneLeftThighDL" +static const ALIGN_ASSET(2) char gCneLeftThighDL[] = dgCneLeftThighDL; + +#define dgCnePelvisDL "__OTR__objects/object_cne/gCnePelvisDL" +static const ALIGN_ASSET(2) char gCnePelvisDL[] = dgCnePelvisDL; + +#define dgCneOrangeHairFaceTex "__OTR__objects/object_cne/gCneOrangeHairFaceTex" +static const ALIGN_ASSET(2) char gCneOrangeHairFaceTex[] = dgCneOrangeHairFaceTex; + +#define dgCneOrangeHairSkinTex "__OTR__objects/object_cne/gCneOrangeHairSkinTex" +static const ALIGN_ASSET(2) char gCneOrangeHairSkinTex[] = dgCneOrangeHairSkinTex; + +#define dgCneHeadOrangeHairDL "__OTR__objects/object_cne/gCneHeadOrangeHairDL" +static const ALIGN_ASSET(2) char gCneHeadOrangeHairDL[] = dgCneHeadOrangeHairDL; \ No newline at end of file diff --git a/soh/assets/objects/object_cob/object_cob.h b/soh/assets/objects/object_cob/object_cob.h index 33884f409..45fc6e85a 100644 --- a/soh/assets/objects/object_cob/object_cob.h +++ b/soh/assets/objects/object_cob/object_cob.h @@ -1,156 +1,69 @@ #pragma once -#define dobject_cob_TLUT_000000 "__OTR__objects/object_cob/object_cob_TLUT_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_TLUT_000000[] = dobject_cob_TLUT_000000; -#else -static const char object_cob_TLUT_000000[] __attribute__((aligned (2))) = dobject_cob_TLUT_000000; -#endif - -#define dobject_cob_Tex_000200 "__OTR__objects/object_cob/object_cob_Tex_000200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_Tex_000200[] = dobject_cob_Tex_000200; -#else -static const char object_cob_Tex_000200[] __attribute__((aligned (2))) = dobject_cob_Tex_000200; -#endif - -#define dobject_cob_Tex_000280 "__OTR__objects/object_cob/object_cob_Tex_000280" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_Tex_000280[] = dobject_cob_Tex_000280; -#else -static const char object_cob_Tex_000280[] __attribute__((aligned (2))) = dobject_cob_Tex_000280; -#endif - -#define dobject_cob_Tex_0002C0 "__OTR__objects/object_cob/object_cob_Tex_0002C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_Tex_0002C0[] = dobject_cob_Tex_0002C0; -#else -static const char object_cob_Tex_0002C0[] __attribute__((aligned (2))) = dobject_cob_Tex_0002C0; -#endif - -#define dobject_cob_Tex_000300 "__OTR__objects/object_cob/object_cob_Tex_000300" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_Tex_000300[] = dobject_cob_Tex_000300; -#else -static const char object_cob_Tex_000300[] __attribute__((aligned (2))) = dobject_cob_Tex_000300; -#endif - -#define dobject_cob_Tex_000340 "__OTR__objects/object_cob/object_cob_Tex_000340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_Tex_000340[] = dobject_cob_Tex_000340; -#else -static const char object_cob_Tex_000340[] __attribute__((aligned (2))) = dobject_cob_Tex_000340; -#endif - -#define dobject_cob_DL_001300 "__OTR__objects/object_cob/object_cob_DL_001300" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001300[] = dobject_cob_DL_001300; -#else -static const char object_cob_DL_001300[] __attribute__((aligned (2))) = dobject_cob_DL_001300; -#endif - -#define dobject_cob_DL_001678 "__OTR__objects/object_cob/object_cob_DL_001678" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001678[] = dobject_cob_DL_001678; -#else -static const char object_cob_DL_001678[] __attribute__((aligned (2))) = dobject_cob_DL_001678; -#endif - -#define dobject_cob_DL_001780 "__OTR__objects/object_cob/object_cob_DL_001780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001780[] = dobject_cob_DL_001780; -#else -static const char object_cob_DL_001780[] __attribute__((aligned (2))) = dobject_cob_DL_001780; -#endif - -#define dobject_cob_DL_001898 "__OTR__objects/object_cob/object_cob_DL_001898" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001898[] = dobject_cob_DL_001898; -#else -static const char object_cob_DL_001898[] __attribute__((aligned (2))) = dobject_cob_DL_001898; -#endif - -#define dobject_cob_DL_0019B0 "__OTR__objects/object_cob/object_cob_DL_0019B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_0019B0[] = dobject_cob_DL_0019B0; -#else -static const char object_cob_DL_0019B0[] __attribute__((aligned (2))) = dobject_cob_DL_0019B0; -#endif - -#define dobject_cob_DL_001AB8 "__OTR__objects/object_cob/object_cob_DL_001AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001AB8[] = dobject_cob_DL_001AB8; -#else -static const char object_cob_DL_001AB8[] __attribute__((aligned (2))) = dobject_cob_DL_001AB8; -#endif - -#define dobject_cob_DL_001BD0 "__OTR__objects/object_cob/object_cob_DL_001BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001BD0[] = dobject_cob_DL_001BD0; -#else -static const char object_cob_DL_001BD0[] __attribute__((aligned (2))) = dobject_cob_DL_001BD0; -#endif - -#define dobject_cob_DL_001CE8 "__OTR__objects/object_cob/object_cob_DL_001CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001CE8[] = dobject_cob_DL_001CE8; -#else -static const char object_cob_DL_001CE8[] __attribute__((aligned (2))) = dobject_cob_DL_001CE8; -#endif - -#define dobject_cob_DL_001E40 "__OTR__objects/object_cob/object_cob_DL_001E40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001E40[] = dobject_cob_DL_001E40; -#else -static const char object_cob_DL_001E40[] __attribute__((aligned (2))) = dobject_cob_DL_001E40; -#endif - -#define dobject_cob_DL_001E90 "__OTR__objects/object_cob/object_cob_DL_001E90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001E90[] = dobject_cob_DL_001E90; -#else -static const char object_cob_DL_001E90[] __attribute__((aligned (2))) = dobject_cob_DL_001E90; -#endif - -#define dobject_cob_DL_001EE0 "__OTR__objects/object_cob/object_cob_DL_001EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001EE0[] = dobject_cob_DL_001EE0; -#else -static const char object_cob_DL_001EE0[] __attribute__((aligned (2))) = dobject_cob_DL_001EE0; -#endif - -#define dobject_cob_DL_001F30 "__OTR__objects/object_cob/object_cob_DL_001F30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001F30[] = dobject_cob_DL_001F30; -#else -static const char object_cob_DL_001F30[] __attribute__((aligned (2))) = dobject_cob_DL_001F30; -#endif - -#define dobject_cob_DL_001F80 "__OTR__objects/object_cob/object_cob_DL_001F80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001F80[] = dobject_cob_DL_001F80; -#else -static const char object_cob_DL_001F80[] __attribute__((aligned (2))) = dobject_cob_DL_001F80; -#endif - -#define dobject_cob_DL_001FD0 "__OTR__objects/object_cob/object_cob_DL_001FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_001FD0[] = dobject_cob_DL_001FD0; -#else -static const char object_cob_DL_001FD0[] __attribute__((aligned (2))) = dobject_cob_DL_001FD0; -#endif - -#define dobject_cob_DL_002020 "__OTR__objects/object_cob/object_cob_DL_002020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_DL_002020[] = dobject_cob_DL_002020; -#else -static const char object_cob_DL_002020[] __attribute__((aligned (2))) = dobject_cob_DL_002020; -#endif - -#define dobject_cob_Skel_0021F8 "__OTR__objects/object_cob/object_cob_Skel_0021F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_cob_Skel_0021F8[] = dobject_cob_Skel_0021F8; -#else -static const char object_cob_Skel_0021F8[] __attribute__((aligned (2))) = dobject_cob_Skel_0021F8; -#endif - +#include "align_asset_macro.h" + +#define dobject_cob_TLUT_000000 "__OTR__objects/object_cob/object_cob_TLUT_000000" +static const ALIGN_ASSET(2) char object_cob_TLUT_000000[] = dobject_cob_TLUT_000000; + +#define dobject_cob_Tex_000200 "__OTR__objects/object_cob/object_cob_Tex_000200" +static const ALIGN_ASSET(2) char object_cob_Tex_000200[] = dobject_cob_Tex_000200; + +#define dobject_cob_Tex_000280 "__OTR__objects/object_cob/object_cob_Tex_000280" +static const ALIGN_ASSET(2) char object_cob_Tex_000280[] = dobject_cob_Tex_000280; + +#define dobject_cob_Tex_0002C0 "__OTR__objects/object_cob/object_cob_Tex_0002C0" +static const ALIGN_ASSET(2) char object_cob_Tex_0002C0[] = dobject_cob_Tex_0002C0; + +#define dobject_cob_Tex_000300 "__OTR__objects/object_cob/object_cob_Tex_000300" +static const ALIGN_ASSET(2) char object_cob_Tex_000300[] = dobject_cob_Tex_000300; + +#define dobject_cob_Tex_000340 "__OTR__objects/object_cob/object_cob_Tex_000340" +static const ALIGN_ASSET(2) char object_cob_Tex_000340[] = dobject_cob_Tex_000340; + +#define dobject_cob_DL_001300 "__OTR__objects/object_cob/object_cob_DL_001300" +static const ALIGN_ASSET(2) char object_cob_DL_001300[] = dobject_cob_DL_001300; + +#define dobject_cob_DL_001678 "__OTR__objects/object_cob/object_cob_DL_001678" +static const ALIGN_ASSET(2) char object_cob_DL_001678[] = dobject_cob_DL_001678; + +#define dobject_cob_DL_001780 "__OTR__objects/object_cob/object_cob_DL_001780" +static const ALIGN_ASSET(2) char object_cob_DL_001780[] = dobject_cob_DL_001780; + +#define dobject_cob_DL_001898 "__OTR__objects/object_cob/object_cob_DL_001898" +static const ALIGN_ASSET(2) char object_cob_DL_001898[] = dobject_cob_DL_001898; + +#define dobject_cob_DL_0019B0 "__OTR__objects/object_cob/object_cob_DL_0019B0" +static const ALIGN_ASSET(2) char object_cob_DL_0019B0[] = dobject_cob_DL_0019B0; + +#define dobject_cob_DL_001AB8 "__OTR__objects/object_cob/object_cob_DL_001AB8" +static const ALIGN_ASSET(2) char object_cob_DL_001AB8[] = dobject_cob_DL_001AB8; + +#define dobject_cob_DL_001BD0 "__OTR__objects/object_cob/object_cob_DL_001BD0" +static const ALIGN_ASSET(2) char object_cob_DL_001BD0[] = dobject_cob_DL_001BD0; + +#define dobject_cob_DL_001CE8 "__OTR__objects/object_cob/object_cob_DL_001CE8" +static const ALIGN_ASSET(2) char object_cob_DL_001CE8[] = dobject_cob_DL_001CE8; + +#define dobject_cob_DL_001E40 "__OTR__objects/object_cob/object_cob_DL_001E40" +static const ALIGN_ASSET(2) char object_cob_DL_001E40[] = dobject_cob_DL_001E40; + +#define dobject_cob_DL_001E90 "__OTR__objects/object_cob/object_cob_DL_001E90" +static const ALIGN_ASSET(2) char object_cob_DL_001E90[] = dobject_cob_DL_001E90; + +#define dobject_cob_DL_001EE0 "__OTR__objects/object_cob/object_cob_DL_001EE0" +static const ALIGN_ASSET(2) char object_cob_DL_001EE0[] = dobject_cob_DL_001EE0; + +#define dobject_cob_DL_001F30 "__OTR__objects/object_cob/object_cob_DL_001F30" +static const ALIGN_ASSET(2) char object_cob_DL_001F30[] = dobject_cob_DL_001F30; + +#define dobject_cob_DL_001F80 "__OTR__objects/object_cob/object_cob_DL_001F80" +static const ALIGN_ASSET(2) char object_cob_DL_001F80[] = dobject_cob_DL_001F80; + +#define dobject_cob_DL_001FD0 "__OTR__objects/object_cob/object_cob_DL_001FD0" +static const ALIGN_ASSET(2) char object_cob_DL_001FD0[] = dobject_cob_DL_001FD0; + +#define dobject_cob_DL_002020 "__OTR__objects/object_cob/object_cob_DL_002020" +static const ALIGN_ASSET(2) char object_cob_DL_002020[] = dobject_cob_DL_002020; + +#define dobject_cob_Skel_0021F8 "__OTR__objects/object_cob/object_cob_Skel_0021F8" +static const ALIGN_ASSET(2) char object_cob_Skel_0021F8[] = dobject_cob_Skel_0021F8; \ No newline at end of file diff --git a/soh/assets/objects/object_cow/object_cow.h b/soh/assets/objects/object_cow/object_cow.h index 5a239c22e..8f0bb49f5 100644 --- a/soh/assets/objects/object_cow/object_cow.h +++ b/soh/assets/objects/object_cow/object_cow.h @@ -1,170 +1,75 @@ #pragma once -#define dgCowBodySkel "__OTR__objects/object_cow/gCowBodySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowBodySkel[] = dgCowBodySkel; -#else -static const char gCowBodySkel[] __attribute__((aligned (2))) = dgCowBodySkel; -#endif - -#define dgCowTorsoDL "__OTR__objects/object_cow/gCowTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTorsoDL[] = dgCowTorsoDL; -#else -static const char gCowTorsoDL[] __attribute__((aligned (2))) = dgCowTorsoDL; -#endif - -#define dgCowHeadDL "__OTR__objects/object_cow/gCowHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHeadDL[] = dgCowHeadDL; -#else -static const char gCowHeadDL[] __attribute__((aligned (2))) = dgCowHeadDL; -#endif - -#define dgCowJawDL "__OTR__objects/object_cow/gCowJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowJawDL[] = dgCowJawDL; -#else -static const char gCowJawDL[] __attribute__((aligned (2))) = dgCowJawDL; -#endif - -#define dgCowNoseDL "__OTR__objects/object_cow/gCowNoseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowNoseDL[] = dgCowNoseDL; -#else -static const char gCowNoseDL[] __attribute__((aligned (2))) = dgCowNoseDL; -#endif - -#define dgCowNoseRingDL "__OTR__objects/object_cow/gCowNoseRingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowNoseRingDL[] = dgCowNoseRingDL; -#else -static const char gCowNoseRingDL[] __attribute__((aligned (2))) = dgCowNoseRingDL; -#endif - -#define dgCowTailSkel "__OTR__objects/object_cow/gCowTailSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailSkel[] = dgCowTailSkel; -#else -static const char gCowTailSkel[] __attribute__((aligned (2))) = dgCowTailSkel; -#endif - -#define dgCowTailConnectionDL "__OTR__objects/object_cow/gCowTailConnectionDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailConnectionDL[] = dgCowTailConnectionDL; -#else -static const char gCowTailConnectionDL[] __attribute__((aligned (2))) = dgCowTailConnectionDL; -#endif - -#define dgCowTailUpperDL "__OTR__objects/object_cow/gCowTailUpperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailUpperDL[] = dgCowTailUpperDL; -#else -static const char gCowTailUpperDL[] __attribute__((aligned (2))) = dgCowTailUpperDL; -#endif - -#define dgCowTailMiddleDL "__OTR__objects/object_cow/gCowTailMiddleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailMiddleDL[] = dgCowTailMiddleDL; -#else -static const char gCowTailMiddleDL[] __attribute__((aligned (2))) = dgCowTailMiddleDL; -#endif - -#define dgCowTailLowerDL "__OTR__objects/object_cow/gCowTailLowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailLowerDL[] = dgCowTailLowerDL; -#else -static const char gCowTailLowerDL[] __attribute__((aligned (2))) = dgCowTailLowerDL; -#endif - -#define dgCowTailEndDL "__OTR__objects/object_cow/gCowTailEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailEndDL[] = dgCowTailEndDL; -#else -static const char gCowTailEndDL[] __attribute__((aligned (2))) = dgCowTailEndDL; -#endif - -#define dgCowBodyChewAnim "__OTR__objects/object_cow/gCowBodyChewAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowBodyChewAnim[] = dgCowBodyChewAnim; -#else -static const char gCowBodyChewAnim[] __attribute__((aligned (2))) = dgCowBodyChewAnim; -#endif - -#define dgCowBodyMoveHeadAnim "__OTR__objects/object_cow/gCowBodyMoveHeadAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowBodyMoveHeadAnim[] = dgCowBodyMoveHeadAnim; -#else -static const char gCowBodyMoveHeadAnim[] __attribute__((aligned (2))) = dgCowBodyMoveHeadAnim; -#endif - -#define dgCowTailIdleAnim "__OTR__objects/object_cow/gCowTailIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailIdleAnim[] = dgCowTailIdleAnim; -#else -static const char gCowTailIdleAnim[] __attribute__((aligned (2))) = dgCowTailIdleAnim; -#endif - -#define dgCowTailSwishAnim "__OTR__objects/object_cow/gCowTailSwishAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailSwishAnim[] = dgCowTailSwishAnim; -#else -static const char gCowTailSwishAnim[] __attribute__((aligned (2))) = dgCowTailSwishAnim; -#endif - -#define dgCowTLUT "__OTR__objects/object_cow/gCowTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTLUT[] = dgCowTLUT; -#else -static const char gCowTLUT[] __attribute__((aligned (2))) = dgCowTLUT; -#endif - -#define dgCowUdderTex "__OTR__objects/object_cow/gCowUdderTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowUdderTex[] = dgCowUdderTex; -#else -static const char gCowUdderTex[] __attribute__((aligned (2))) = dgCowUdderTex; -#endif - -#define dgCowNoseRingTex "__OTR__objects/object_cow/gCowNoseRingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowNoseRingTex[] = dgCowNoseRingTex; -#else -static const char gCowNoseRingTex[] __attribute__((aligned (2))) = dgCowNoseRingTex; -#endif - -#define dgCowNoseTex "__OTR__objects/object_cow/gCowNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowNoseTex[] = dgCowNoseTex; -#else -static const char gCowNoseTex[] __attribute__((aligned (2))) = dgCowNoseTex; -#endif - -#define dgCowSpottedPatternTex "__OTR__objects/object_cow/gCowSpottedPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowSpottedPatternTex[] = dgCowSpottedPatternTex; -#else -static const char gCowSpottedPatternTex[] __attribute__((aligned (2))) = dgCowSpottedPatternTex; -#endif - -#define dgCowEarTex "__OTR__objects/object_cow/gCowEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowEarTex[] = dgCowEarTex; -#else -static const char gCowEarTex[] __attribute__((aligned (2))) = dgCowEarTex; -#endif - -#define dgCowEyelidTex "__OTR__objects/object_cow/gCowEyelidTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowEyelidTex[] = dgCowEyelidTex; -#else -static const char gCowEyelidTex[] __attribute__((aligned (2))) = dgCowEyelidTex; -#endif - -#define dgCowTailTex "__OTR__objects/object_cow/gCowTailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowTailTex[] = dgCowTailTex; -#else -static const char gCowTailTex[] __attribute__((aligned (2))) = dgCowTailTex; -#endif - +#include "align_asset_macro.h" + +#define dgCowBodySkel "__OTR__objects/object_cow/gCowBodySkel" +static const ALIGN_ASSET(2) char gCowBodySkel[] = dgCowBodySkel; + +#define dgCowTorsoDL "__OTR__objects/object_cow/gCowTorsoDL" +static const ALIGN_ASSET(2) char gCowTorsoDL[] = dgCowTorsoDL; + +#define dgCowHeadDL "__OTR__objects/object_cow/gCowHeadDL" +static const ALIGN_ASSET(2) char gCowHeadDL[] = dgCowHeadDL; + +#define dgCowJawDL "__OTR__objects/object_cow/gCowJawDL" +static const ALIGN_ASSET(2) char gCowJawDL[] = dgCowJawDL; + +#define dgCowNoseDL "__OTR__objects/object_cow/gCowNoseDL" +static const ALIGN_ASSET(2) char gCowNoseDL[] = dgCowNoseDL; + +#define dgCowNoseRingDL "__OTR__objects/object_cow/gCowNoseRingDL" +static const ALIGN_ASSET(2) char gCowNoseRingDL[] = dgCowNoseRingDL; + +#define dgCowTailSkel "__OTR__objects/object_cow/gCowTailSkel" +static const ALIGN_ASSET(2) char gCowTailSkel[] = dgCowTailSkel; + +#define dgCowTailConnectionDL "__OTR__objects/object_cow/gCowTailConnectionDL" +static const ALIGN_ASSET(2) char gCowTailConnectionDL[] = dgCowTailConnectionDL; + +#define dgCowTailUpperDL "__OTR__objects/object_cow/gCowTailUpperDL" +static const ALIGN_ASSET(2) char gCowTailUpperDL[] = dgCowTailUpperDL; + +#define dgCowTailMiddleDL "__OTR__objects/object_cow/gCowTailMiddleDL" +static const ALIGN_ASSET(2) char gCowTailMiddleDL[] = dgCowTailMiddleDL; + +#define dgCowTailLowerDL "__OTR__objects/object_cow/gCowTailLowerDL" +static const ALIGN_ASSET(2) char gCowTailLowerDL[] = dgCowTailLowerDL; + +#define dgCowTailEndDL "__OTR__objects/object_cow/gCowTailEndDL" +static const ALIGN_ASSET(2) char gCowTailEndDL[] = dgCowTailEndDL; + +#define dgCowBodyChewAnim "__OTR__objects/object_cow/gCowBodyChewAnim" +static const ALIGN_ASSET(2) char gCowBodyChewAnim[] = dgCowBodyChewAnim; + +#define dgCowBodyMoveHeadAnim "__OTR__objects/object_cow/gCowBodyMoveHeadAnim" +static const ALIGN_ASSET(2) char gCowBodyMoveHeadAnim[] = dgCowBodyMoveHeadAnim; + +#define dgCowTailIdleAnim "__OTR__objects/object_cow/gCowTailIdleAnim" +static const ALIGN_ASSET(2) char gCowTailIdleAnim[] = dgCowTailIdleAnim; + +#define dgCowTailSwishAnim "__OTR__objects/object_cow/gCowTailSwishAnim" +static const ALIGN_ASSET(2) char gCowTailSwishAnim[] = dgCowTailSwishAnim; + +#define dgCowTLUT "__OTR__objects/object_cow/gCowTLUT" +static const ALIGN_ASSET(2) char gCowTLUT[] = dgCowTLUT; + +#define dgCowUdderTex "__OTR__objects/object_cow/gCowUdderTex" +static const ALIGN_ASSET(2) char gCowUdderTex[] = dgCowUdderTex; + +#define dgCowNoseRingTex "__OTR__objects/object_cow/gCowNoseRingTex" +static const ALIGN_ASSET(2) char gCowNoseRingTex[] = dgCowNoseRingTex; + +#define dgCowNoseTex "__OTR__objects/object_cow/gCowNoseTex" +static const ALIGN_ASSET(2) char gCowNoseTex[] = dgCowNoseTex; + +#define dgCowSpottedPatternTex "__OTR__objects/object_cow/gCowSpottedPatternTex" +static const ALIGN_ASSET(2) char gCowSpottedPatternTex[] = dgCowSpottedPatternTex; + +#define dgCowEarTex "__OTR__objects/object_cow/gCowEarTex" +static const ALIGN_ASSET(2) char gCowEarTex[] = dgCowEarTex; + +#define dgCowEyelidTex "__OTR__objects/object_cow/gCowEyelidTex" +static const ALIGN_ASSET(2) char gCowEyelidTex[] = dgCowEyelidTex; + +#define dgCowTailTex "__OTR__objects/object_cow/gCowTailTex" +static const ALIGN_ASSET(2) char gCowTailTex[] = dgCowTailTex; \ No newline at end of file diff --git a/soh/assets/objects/object_crow/object_crow.h b/soh/assets/objects/object_crow/object_crow.h index ac1ed3a04..9e20a9a76 100644 --- a/soh/assets/objects/object_crow/object_crow.h +++ b/soh/assets/objects/object_crow/object_crow.h @@ -1,86 +1,39 @@ #pragma once -#define dgGuayFlyAnim "__OTR__objects/object_crow/gGuayFlyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuayFlyAnim[] = dgGuayFlyAnim; -#else -static const char gGuayFlyAnim[] __attribute__((aligned (2))) = dgGuayFlyAnim; -#endif - -#define dgGuayEyeTex "__OTR__objects/object_crow/gGuayEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuayEyeTex[] = dgGuayEyeTex; -#else -static const char gGuayEyeTex[] __attribute__((aligned (2))) = dgGuayEyeTex; -#endif - -#define dgGuayBodyTex "__OTR__objects/object_crow/gGuayBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuayBodyTex[] = dgGuayBodyTex; -#else -static const char gGuayBodyTex[] __attribute__((aligned (2))) = dgGuayBodyTex; -#endif - -#define dgGuayTailTex "__OTR__objects/object_crow/gGuayTailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuayTailTex[] = dgGuayTailTex; -#else -static const char gGuayTailTex[] __attribute__((aligned (2))) = dgGuayTailTex; -#endif - -#define dgGuaySkel "__OTR__objects/object_crow/gGuaySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuaySkel[] = dgGuaySkel; -#else -static const char gGuaySkel[] __attribute__((aligned (2))) = dgGuaySkel; -#endif - -#define dgGuaySkelLimbsLimb_00104CDL_000490 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_00104CDL_000490" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuaySkelLimbsLimb_00104CDL_000490[] = dgGuaySkelLimbsLimb_00104CDL_000490; -#else -static const char gGuaySkelLimbsLimb_00104CDL_000490[] __attribute__((aligned (2))) = dgGuaySkelLimbsLimb_00104CDL_000490; -#endif - -#define dgGuaySkelLimbsLimb_001058DL_0006B0 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001058DL_0006B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuaySkelLimbsLimb_001058DL_0006B0[] = dgGuaySkelLimbsLimb_001058DL_0006B0; -#else -static const char gGuaySkelLimbsLimb_001058DL_0006B0[] __attribute__((aligned (2))) = dgGuaySkelLimbsLimb_001058DL_0006B0; -#endif - -#define dgGuaySkelLimbsLimb_001064DL_0005E0 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001064DL_0005E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuaySkelLimbsLimb_001064DL_0005E0[] = dgGuaySkelLimbsLimb_001064DL_0005E0; -#else -static const char gGuaySkelLimbsLimb_001064DL_0005E0[] __attribute__((aligned (2))) = dgGuaySkelLimbsLimb_001064DL_0005E0; -#endif - -#define dgGuaySkelLimbsLimb_001070DL_000840 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001070DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuaySkelLimbsLimb_001070DL_000840[] = dgGuaySkelLimbsLimb_001070DL_000840; -#else -static const char gGuaySkelLimbsLimb_001070DL_000840[] __attribute__((aligned (2))) = dgGuaySkelLimbsLimb_001070DL_000840; -#endif - -#define dgGuaySkelLimbsLimb_00107CDL_000770 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_00107CDL_000770" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuaySkelLimbsLimb_00107CDL_000770[] = dgGuaySkelLimbsLimb_00107CDL_000770; -#else -static const char gGuaySkelLimbsLimb_00107CDL_000770[] __attribute__((aligned (2))) = dgGuaySkelLimbsLimb_00107CDL_000770; -#endif - -#define dgGuaySkelLimbsLimb_001088DL_0009A0 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001088DL_0009A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuaySkelLimbsLimb_001088DL_0009A0[] = dgGuaySkelLimbsLimb_001088DL_0009A0; -#else -static const char gGuaySkelLimbsLimb_001088DL_0009A0[] __attribute__((aligned (2))) = dgGuaySkelLimbsLimb_001088DL_0009A0; -#endif - -#define dgGuaySkelLimbsLimb_001094DL_000900 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001094DL_000900" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuaySkelLimbsLimb_001094DL_000900[] = dgGuaySkelLimbsLimb_001094DL_000900; -#else -static const char gGuaySkelLimbsLimb_001094DL_000900[] __attribute__((aligned (2))) = dgGuaySkelLimbsLimb_001094DL_000900; -#endif - +#include "align_asset_macro.h" + +#define dgGuayFlyAnim "__OTR__objects/object_crow/gGuayFlyAnim" +static const ALIGN_ASSET(2) char gGuayFlyAnim[] = dgGuayFlyAnim; + +#define dgGuayEyeTex "__OTR__objects/object_crow/gGuayEyeTex" +static const ALIGN_ASSET(2) char gGuayEyeTex[] = dgGuayEyeTex; + +#define dgGuayBodyTex "__OTR__objects/object_crow/gGuayBodyTex" +static const ALIGN_ASSET(2) char gGuayBodyTex[] = dgGuayBodyTex; + +#define dgGuayTailTex "__OTR__objects/object_crow/gGuayTailTex" +static const ALIGN_ASSET(2) char gGuayTailTex[] = dgGuayTailTex; + +#define dgGuaySkel "__OTR__objects/object_crow/gGuaySkel" +static const ALIGN_ASSET(2) char gGuaySkel[] = dgGuaySkel; + +#define dgGuaySkelLimbsLimb_00104CDL_000490 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_00104CDL_000490" +static const ALIGN_ASSET(2) char gGuaySkelLimbsLimb_00104CDL_000490[] = dgGuaySkelLimbsLimb_00104CDL_000490; + +#define dgGuaySkelLimbsLimb_001058DL_0006B0 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001058DL_0006B0" +static const ALIGN_ASSET(2) char gGuaySkelLimbsLimb_001058DL_0006B0[] = dgGuaySkelLimbsLimb_001058DL_0006B0; + +#define dgGuaySkelLimbsLimb_001064DL_0005E0 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001064DL_0005E0" +static const ALIGN_ASSET(2) char gGuaySkelLimbsLimb_001064DL_0005E0[] = dgGuaySkelLimbsLimb_001064DL_0005E0; + +#define dgGuaySkelLimbsLimb_001070DL_000840 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001070DL_000840" +static const ALIGN_ASSET(2) char gGuaySkelLimbsLimb_001070DL_000840[] = dgGuaySkelLimbsLimb_001070DL_000840; + +#define dgGuaySkelLimbsLimb_00107CDL_000770 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_00107CDL_000770" +static const ALIGN_ASSET(2) char gGuaySkelLimbsLimb_00107CDL_000770[] = dgGuaySkelLimbsLimb_00107CDL_000770; + +#define dgGuaySkelLimbsLimb_001088DL_0009A0 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001088DL_0009A0" +static const ALIGN_ASSET(2) char gGuaySkelLimbsLimb_001088DL_0009A0[] = dgGuaySkelLimbsLimb_001088DL_0009A0; + +#define dgGuaySkelLimbsLimb_001094DL_000900 "__OTR__objects/object_crow/gGuaySkelLimbsLimb_001094DL_000900" +static const ALIGN_ASSET(2) char gGuaySkelLimbsLimb_001094DL_000900[] = dgGuaySkelLimbsLimb_001094DL_000900; \ No newline at end of file diff --git a/soh/assets/objects/object_cs/object_cs.h b/soh/assets/objects/object_cs/object_cs.h index d7e76655a..cd293b8d7 100644 --- a/soh/assets/objects/object_cs/object_cs.h +++ b/soh/assets/objects/object_cs/object_cs.h @@ -1,254 +1,111 @@ #pragma once -#define dgGraveyardKidSkel "__OTR__objects/object_cs/gGraveyardKidSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidSkel[] = dgGraveyardKidSkel; -#else -static const char gGraveyardKidSkel[] __attribute__((aligned (2))) = dgGraveyardKidSkel; -#endif - -#define dgGraveyardKidTorsoDL "__OTR__objects/object_cs/gGraveyardKidTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidTorsoDL[] = dgGraveyardKidTorsoDL; -#else -static const char gGraveyardKidTorsoDL[] __attribute__((aligned (2))) = dgGraveyardKidTorsoDL; -#endif - -#define dgGraveyardKidLeftThighDL "__OTR__objects/object_cs/gGraveyardKidLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidLeftThighDL[] = dgGraveyardKidLeftThighDL; -#else -static const char gGraveyardKidLeftThighDL[] __attribute__((aligned (2))) = dgGraveyardKidLeftThighDL; -#endif - -#define dgGraveyardKidLeftShinDL "__OTR__objects/object_cs/gGraveyardKidLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidLeftShinDL[] = dgGraveyardKidLeftShinDL; -#else -static const char gGraveyardKidLeftShinDL[] __attribute__((aligned (2))) = dgGraveyardKidLeftShinDL; -#endif - -#define dgGraveyardKidLeftFootDL "__OTR__objects/object_cs/gGraveyardKidLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidLeftFootDL[] = dgGraveyardKidLeftFootDL; -#else -static const char gGraveyardKidLeftFootDL[] __attribute__((aligned (2))) = dgGraveyardKidLeftFootDL; -#endif - -#define dgGraveyardKidRightThighDL "__OTR__objects/object_cs/gGraveyardKidRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidRightThighDL[] = dgGraveyardKidRightThighDL; -#else -static const char gGraveyardKidRightThighDL[] __attribute__((aligned (2))) = dgGraveyardKidRightThighDL; -#endif - -#define dgGraveyardKidRightShinDL "__OTR__objects/object_cs/gGraveyardKidRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidRightShinDL[] = dgGraveyardKidRightShinDL; -#else -static const char gGraveyardKidRightShinDL[] __attribute__((aligned (2))) = dgGraveyardKidRightShinDL; -#endif - -#define dgGraveyardKidRightFootDL "__OTR__objects/object_cs/gGraveyardKidRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidRightFootDL[] = dgGraveyardKidRightFootDL; -#else -static const char gGraveyardKidRightFootDL[] __attribute__((aligned (2))) = dgGraveyardKidRightFootDL; -#endif - -#define dgGraveyardKidChestDL "__OTR__objects/object_cs/gGraveyardKidChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidChestDL[] = dgGraveyardKidChestDL; -#else -static const char gGraveyardKidChestDL[] __attribute__((aligned (2))) = dgGraveyardKidChestDL; -#endif - -#define dgGraveyardKidLeftUpperArmDL "__OTR__objects/object_cs/gGraveyardKidLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidLeftUpperArmDL[] = dgGraveyardKidLeftUpperArmDL; -#else -static const char gGraveyardKidLeftUpperArmDL[] __attribute__((aligned (2))) = dgGraveyardKidLeftUpperArmDL; -#endif - -#define dgGraveyardKidLeftArmDL "__OTR__objects/object_cs/gGraveyardKidLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidLeftArmDL[] = dgGraveyardKidLeftArmDL; -#else -static const char gGraveyardKidLeftArmDL[] __attribute__((aligned (2))) = dgGraveyardKidLeftArmDL; -#endif - -#define dgGraveyardKidLeftHandDL "__OTR__objects/object_cs/gGraveyardKidLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidLeftHandDL[] = dgGraveyardKidLeftHandDL; -#else -static const char gGraveyardKidLeftHandDL[] __attribute__((aligned (2))) = dgGraveyardKidLeftHandDL; -#endif - -#define dgGraveyardKidRightUpperArmDL "__OTR__objects/object_cs/gGraveyardKidRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidRightUpperArmDL[] = dgGraveyardKidRightUpperArmDL; -#else -static const char gGraveyardKidRightUpperArmDL[] __attribute__((aligned (2))) = dgGraveyardKidRightUpperArmDL; -#endif - -#define dgGraveyardKidRightArmDL "__OTR__objects/object_cs/gGraveyardKidRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidRightArmDL[] = dgGraveyardKidRightArmDL; -#else -static const char gGraveyardKidRightArmDL[] __attribute__((aligned (2))) = dgGraveyardKidRightArmDL; -#endif - -#define dgGraveyardKidRightHandDL "__OTR__objects/object_cs/gGraveyardKidRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidRightHandDL[] = dgGraveyardKidRightHandDL; -#else -static const char gGraveyardKidRightHandDL[] __attribute__((aligned (2))) = dgGraveyardKidRightHandDL; -#endif - -#define dgGraveyardKidHeadDL "__OTR__objects/object_cs/gGraveyardKidHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidHeadDL[] = dgGraveyardKidHeadDL; -#else -static const char gGraveyardKidHeadDL[] __attribute__((aligned (2))) = dgGraveyardKidHeadDL; -#endif - -#define dgGraveyardKidWalkAnim "__OTR__objects/object_cs/gGraveyardKidWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidWalkAnim[] = dgGraveyardKidWalkAnim; -#else -static const char gGraveyardKidWalkAnim[] __attribute__((aligned (2))) = dgGraveyardKidWalkAnim; -#endif - -#define dgGraveyardKidSwingStickUpAnim "__OTR__objects/object_cs/gGraveyardKidSwingStickUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidSwingStickUpAnim[] = dgGraveyardKidSwingStickUpAnim; -#else -static const char gGraveyardKidSwingStickUpAnim[] __attribute__((aligned (2))) = dgGraveyardKidSwingStickUpAnim; -#endif - -#define dgGraveyardKidGrabStickTwoHandsAnim "__OTR__objects/object_cs/gGraveyardKidGrabStickTwoHandsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidGrabStickTwoHandsAnim[] = dgGraveyardKidGrabStickTwoHandsAnim; -#else -static const char gGraveyardKidGrabStickTwoHandsAnim[] __attribute__((aligned (2))) = dgGraveyardKidGrabStickTwoHandsAnim; -#endif - -#define dgGraveyardKidIdleAnim "__OTR__objects/object_cs/gGraveyardKidIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidIdleAnim[] = dgGraveyardKidIdleAnim; -#else -static const char gGraveyardKidIdleAnim[] __attribute__((aligned (2))) = dgGraveyardKidIdleAnim; -#endif - -#define dgGraveyardKidEyesOpenTex "__OTR__objects/object_cs/gGraveyardKidEyesOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidEyesOpenTex[] = dgGraveyardKidEyesOpenTex; -#else -static const char gGraveyardKidEyesOpenTex[] __attribute__((aligned (2))) = dgGraveyardKidEyesOpenTex; -#endif - -#define dgGraveyardKidEyesHalfTex "__OTR__objects/object_cs/gGraveyardKidEyesHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidEyesHalfTex[] = dgGraveyardKidEyesHalfTex; -#else -static const char gGraveyardKidEyesHalfTex[] __attribute__((aligned (2))) = dgGraveyardKidEyesHalfTex; -#endif - -#define dgGraveyardKidEyesClosedTex "__OTR__objects/object_cs/gGraveyardKidEyesClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidEyesClosedTex[] = dgGraveyardKidEyesClosedTex; -#else -static const char gGraveyardKidEyesClosedTex[] __attribute__((aligned (2))) = dgGraveyardKidEyesClosedTex; -#endif - -#define dgGraveyardKidTLUT "__OTR__objects/object_cs/gGraveyardKidTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidTLUT[] = dgGraveyardKidTLUT; -#else -static const char gGraveyardKidTLUT[] __attribute__((aligned (2))) = dgGraveyardKidTLUT; -#endif - -#define dgGraveyardKidGradientTex "__OTR__objects/object_cs/gGraveyardKidGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidGradientTex[] = dgGraveyardKidGradientTex; -#else -static const char gGraveyardKidGradientTex[] __attribute__((aligned (2))) = dgGraveyardKidGradientTex; -#endif - -#define dgGraveyardKidPantsTex "__OTR__objects/object_cs/gGraveyardKidPantsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidPantsTex[] = dgGraveyardKidPantsTex; -#else -static const char gGraveyardKidPantsTex[] __attribute__((aligned (2))) = dgGraveyardKidPantsTex; -#endif - -#define dgGraveyardKidBoot1Tex "__OTR__objects/object_cs/gGraveyardKidBoot1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidBoot1Tex[] = dgGraveyardKidBoot1Tex; -#else -static const char gGraveyardKidBoot1Tex[] __attribute__((aligned (2))) = dgGraveyardKidBoot1Tex; -#endif - -#define dgGraveyardKidBoot2Tex "__OTR__objects/object_cs/gGraveyardKidBoot2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidBoot2Tex[] = dgGraveyardKidBoot2Tex; -#else -static const char gGraveyardKidBoot2Tex[] __attribute__((aligned (2))) = dgGraveyardKidBoot2Tex; -#endif - -#define dgGraveyardKidHairTex "__OTR__objects/object_cs/gGraveyardKidHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidHairTex[] = dgGraveyardKidHairTex; -#else -static const char gGraveyardKidHairTex[] __attribute__((aligned (2))) = dgGraveyardKidHairTex; -#endif - -#define dgGraveyardKidEarTex "__OTR__objects/object_cs/gGraveyardKidEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidEarTex[] = dgGraveyardKidEarTex; -#else -static const char gGraveyardKidEarTex[] __attribute__((aligned (2))) = dgGraveyardKidEarTex; -#endif - -#define dgGraveyardKidNoseTex "__OTR__objects/object_cs/gGraveyardKidNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidNoseTex[] = dgGraveyardKidNoseTex; -#else -static const char gGraveyardKidNoseTex[] __attribute__((aligned (2))) = dgGraveyardKidNoseTex; -#endif - -#define dgGraveyardKidMouthTex "__OTR__objects/object_cs/gGraveyardKidMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidMouthTex[] = dgGraveyardKidMouthTex; -#else -static const char gGraveyardKidMouthTex[] __attribute__((aligned (2))) = dgGraveyardKidMouthTex; -#endif - -#define dgGraveyardKidShirt1Tex "__OTR__objects/object_cs/gGraveyardKidShirt1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidShirt1Tex[] = dgGraveyardKidShirt1Tex; -#else -static const char gGraveyardKidShirt1Tex[] __attribute__((aligned (2))) = dgGraveyardKidShirt1Tex; -#endif - -#define dgGraveyardKidShirt2Tex "__OTR__objects/object_cs/gGraveyardKidShirt2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidShirt2Tex[] = dgGraveyardKidShirt2Tex; -#else -static const char gGraveyardKidShirt2Tex[] __attribute__((aligned (2))) = dgGraveyardKidShirt2Tex; -#endif - -#define dgGraveyardKidFingersTex "__OTR__objects/object_cs/gGraveyardKidFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidFingersTex[] = dgGraveyardKidFingersTex; -#else -static const char gGraveyardKidFingersTex[] __attribute__((aligned (2))) = dgGraveyardKidFingersTex; -#endif - -#define dgGraveyardKidStickTex "__OTR__objects/object_cs/gGraveyardKidStickTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardKidStickTex[] = dgGraveyardKidStickTex; -#else -static const char gGraveyardKidStickTex[] __attribute__((aligned (2))) = dgGraveyardKidStickTex; -#endif - +#include "align_asset_macro.h" + +#define dgGraveyardKidSkel "__OTR__objects/object_cs/gGraveyardKidSkel" +static const ALIGN_ASSET(2) char gGraveyardKidSkel[] = dgGraveyardKidSkel; + +#define dgGraveyardKidTorsoDL "__OTR__objects/object_cs/gGraveyardKidTorsoDL" +static const ALIGN_ASSET(2) char gGraveyardKidTorsoDL[] = dgGraveyardKidTorsoDL; + +#define dgGraveyardKidLeftThighDL "__OTR__objects/object_cs/gGraveyardKidLeftThighDL" +static const ALIGN_ASSET(2) char gGraveyardKidLeftThighDL[] = dgGraveyardKidLeftThighDL; + +#define dgGraveyardKidLeftShinDL "__OTR__objects/object_cs/gGraveyardKidLeftShinDL" +static const ALIGN_ASSET(2) char gGraveyardKidLeftShinDL[] = dgGraveyardKidLeftShinDL; + +#define dgGraveyardKidLeftFootDL "__OTR__objects/object_cs/gGraveyardKidLeftFootDL" +static const ALIGN_ASSET(2) char gGraveyardKidLeftFootDL[] = dgGraveyardKidLeftFootDL; + +#define dgGraveyardKidRightThighDL "__OTR__objects/object_cs/gGraveyardKidRightThighDL" +static const ALIGN_ASSET(2) char gGraveyardKidRightThighDL[] = dgGraveyardKidRightThighDL; + +#define dgGraveyardKidRightShinDL "__OTR__objects/object_cs/gGraveyardKidRightShinDL" +static const ALIGN_ASSET(2) char gGraveyardKidRightShinDL[] = dgGraveyardKidRightShinDL; + +#define dgGraveyardKidRightFootDL "__OTR__objects/object_cs/gGraveyardKidRightFootDL" +static const ALIGN_ASSET(2) char gGraveyardKidRightFootDL[] = dgGraveyardKidRightFootDL; + +#define dgGraveyardKidChestDL "__OTR__objects/object_cs/gGraveyardKidChestDL" +static const ALIGN_ASSET(2) char gGraveyardKidChestDL[] = dgGraveyardKidChestDL; + +#define dgGraveyardKidLeftUpperArmDL "__OTR__objects/object_cs/gGraveyardKidLeftUpperArmDL" +static const ALIGN_ASSET(2) char gGraveyardKidLeftUpperArmDL[] = dgGraveyardKidLeftUpperArmDL; + +#define dgGraveyardKidLeftArmDL "__OTR__objects/object_cs/gGraveyardKidLeftArmDL" +static const ALIGN_ASSET(2) char gGraveyardKidLeftArmDL[] = dgGraveyardKidLeftArmDL; + +#define dgGraveyardKidLeftHandDL "__OTR__objects/object_cs/gGraveyardKidLeftHandDL" +static const ALIGN_ASSET(2) char gGraveyardKidLeftHandDL[] = dgGraveyardKidLeftHandDL; + +#define dgGraveyardKidRightUpperArmDL "__OTR__objects/object_cs/gGraveyardKidRightUpperArmDL" +static const ALIGN_ASSET(2) char gGraveyardKidRightUpperArmDL[] = dgGraveyardKidRightUpperArmDL; + +#define dgGraveyardKidRightArmDL "__OTR__objects/object_cs/gGraveyardKidRightArmDL" +static const ALIGN_ASSET(2) char gGraveyardKidRightArmDL[] = dgGraveyardKidRightArmDL; + +#define dgGraveyardKidRightHandDL "__OTR__objects/object_cs/gGraveyardKidRightHandDL" +static const ALIGN_ASSET(2) char gGraveyardKidRightHandDL[] = dgGraveyardKidRightHandDL; + +#define dgGraveyardKidHeadDL "__OTR__objects/object_cs/gGraveyardKidHeadDL" +static const ALIGN_ASSET(2) char gGraveyardKidHeadDL[] = dgGraveyardKidHeadDL; + +#define dgGraveyardKidWalkAnim "__OTR__objects/object_cs/gGraveyardKidWalkAnim" +static const ALIGN_ASSET(2) char gGraveyardKidWalkAnim[] = dgGraveyardKidWalkAnim; + +#define dgGraveyardKidSwingStickUpAnim "__OTR__objects/object_cs/gGraveyardKidSwingStickUpAnim" +static const ALIGN_ASSET(2) char gGraveyardKidSwingStickUpAnim[] = dgGraveyardKidSwingStickUpAnim; + +#define dgGraveyardKidGrabStickTwoHandsAnim "__OTR__objects/object_cs/gGraveyardKidGrabStickTwoHandsAnim" +static const ALIGN_ASSET(2) char gGraveyardKidGrabStickTwoHandsAnim[] = dgGraveyardKidGrabStickTwoHandsAnim; + +#define dgGraveyardKidIdleAnim "__OTR__objects/object_cs/gGraveyardKidIdleAnim" +static const ALIGN_ASSET(2) char gGraveyardKidIdleAnim[] = dgGraveyardKidIdleAnim; + +#define dgGraveyardKidEyesOpenTex "__OTR__objects/object_cs/gGraveyardKidEyesOpenTex" +static const ALIGN_ASSET(2) char gGraveyardKidEyesOpenTex[] = dgGraveyardKidEyesOpenTex; + +#define dgGraveyardKidEyesHalfTex "__OTR__objects/object_cs/gGraveyardKidEyesHalfTex" +static const ALIGN_ASSET(2) char gGraveyardKidEyesHalfTex[] = dgGraveyardKidEyesHalfTex; + +#define dgGraveyardKidEyesClosedTex "__OTR__objects/object_cs/gGraveyardKidEyesClosedTex" +static const ALIGN_ASSET(2) char gGraveyardKidEyesClosedTex[] = dgGraveyardKidEyesClosedTex; + +#define dgGraveyardKidTLUT "__OTR__objects/object_cs/gGraveyardKidTLUT" +static const ALIGN_ASSET(2) char gGraveyardKidTLUT[] = dgGraveyardKidTLUT; + +#define dgGraveyardKidGradientTex "__OTR__objects/object_cs/gGraveyardKidGradientTex" +static const ALIGN_ASSET(2) char gGraveyardKidGradientTex[] = dgGraveyardKidGradientTex; + +#define dgGraveyardKidPantsTex "__OTR__objects/object_cs/gGraveyardKidPantsTex" +static const ALIGN_ASSET(2) char gGraveyardKidPantsTex[] = dgGraveyardKidPantsTex; + +#define dgGraveyardKidBoot1Tex "__OTR__objects/object_cs/gGraveyardKidBoot1Tex" +static const ALIGN_ASSET(2) char gGraveyardKidBoot1Tex[] = dgGraveyardKidBoot1Tex; + +#define dgGraveyardKidBoot2Tex "__OTR__objects/object_cs/gGraveyardKidBoot2Tex" +static const ALIGN_ASSET(2) char gGraveyardKidBoot2Tex[] = dgGraveyardKidBoot2Tex; + +#define dgGraveyardKidHairTex "__OTR__objects/object_cs/gGraveyardKidHairTex" +static const ALIGN_ASSET(2) char gGraveyardKidHairTex[] = dgGraveyardKidHairTex; + +#define dgGraveyardKidEarTex "__OTR__objects/object_cs/gGraveyardKidEarTex" +static const ALIGN_ASSET(2) char gGraveyardKidEarTex[] = dgGraveyardKidEarTex; + +#define dgGraveyardKidNoseTex "__OTR__objects/object_cs/gGraveyardKidNoseTex" +static const ALIGN_ASSET(2) char gGraveyardKidNoseTex[] = dgGraveyardKidNoseTex; + +#define dgGraveyardKidMouthTex "__OTR__objects/object_cs/gGraveyardKidMouthTex" +static const ALIGN_ASSET(2) char gGraveyardKidMouthTex[] = dgGraveyardKidMouthTex; + +#define dgGraveyardKidShirt1Tex "__OTR__objects/object_cs/gGraveyardKidShirt1Tex" +static const ALIGN_ASSET(2) char gGraveyardKidShirt1Tex[] = dgGraveyardKidShirt1Tex; + +#define dgGraveyardKidShirt2Tex "__OTR__objects/object_cs/gGraveyardKidShirt2Tex" +static const ALIGN_ASSET(2) char gGraveyardKidShirt2Tex[] = dgGraveyardKidShirt2Tex; + +#define dgGraveyardKidFingersTex "__OTR__objects/object_cs/gGraveyardKidFingersTex" +static const ALIGN_ASSET(2) char gGraveyardKidFingersTex[] = dgGraveyardKidFingersTex; + +#define dgGraveyardKidStickTex "__OTR__objects/object_cs/gGraveyardKidStickTex" +static const ALIGN_ASSET(2) char gGraveyardKidStickTex[] = dgGraveyardKidStickTex; \ No newline at end of file diff --git a/soh/assets/objects/object_d_elevator/object_d_elevator.h b/soh/assets/objects/object_d_elevator/object_d_elevator.h index 711e7e9e1..63f51e197 100644 --- a/soh/assets/objects/object_d_elevator/object_d_elevator.h +++ b/soh/assets/objects/object_d_elevator/object_d_elevator.h @@ -1,23 +1,12 @@ #pragma once -#define dobject_d_elevator_DL_000180 "__OTR__objects/object_d_elevator/object_d_elevator_DL_000180" -#ifdef _WIN32 -static const __declspec(align(2)) char object_d_elevator_DL_000180[] = dobject_d_elevator_DL_000180; -#else -static const char object_d_elevator_DL_000180[] __attribute__((aligned (2))) = dobject_d_elevator_DL_000180; -#endif - -#define dobject_d_elevator_Col_000360 "__OTR__objects/object_d_elevator/object_d_elevator_Col_000360" -#ifdef _WIN32 -static const __declspec(align(2)) char object_d_elevator_Col_000360[] = dobject_d_elevator_Col_000360; -#else -static const char object_d_elevator_Col_000360[] __attribute__((aligned (2))) = dobject_d_elevator_Col_000360; -#endif - -#define dobject_d_elevator_Tex_000390 "__OTR__objects/object_d_elevator/object_d_elevator_Tex_000390" -#ifdef _WIN32 -static const __declspec(align(2)) char object_d_elevator_Tex_000390[] = dobject_d_elevator_Tex_000390; -#else -static const char object_d_elevator_Tex_000390[] __attribute__((aligned (2))) = dobject_d_elevator_Tex_000390; -#endif - +#include "align_asset_macro.h" + +#define dobject_d_elevator_DL_000180 "__OTR__objects/object_d_elevator/object_d_elevator_DL_000180" +static const ALIGN_ASSET(2) char object_d_elevator_DL_000180[] = dobject_d_elevator_DL_000180; + +#define dobject_d_elevator_Col_000360 "__OTR__objects/object_d_elevator/object_d_elevator_Col_000360" +static const ALIGN_ASSET(2) char object_d_elevator_Col_000360[] = dobject_d_elevator_Col_000360; + +#define dobject_d_elevator_Tex_000390 "__OTR__objects/object_d_elevator/object_d_elevator_Tex_000390" +static const ALIGN_ASSET(2) char object_d_elevator_Tex_000390[] = dobject_d_elevator_Tex_000390; \ No newline at end of file diff --git a/soh/assets/objects/object_d_hsblock/object_d_hsblock.h b/soh/assets/objects/object_d_hsblock/object_d_hsblock.h index 0c05be3c1..f2aad8cdc 100644 --- a/soh/assets/objects/object_d_hsblock/object_d_hsblock.h +++ b/soh/assets/objects/object_d_hsblock/object_d_hsblock.h @@ -1,44 +1,21 @@ #pragma once -#define dgHookshotTargetCol "__OTR__objects/object_d_hsblock/gHookshotTargetCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotTargetCol[] = dgHookshotTargetCol; -#else -static const char gHookshotTargetCol[] __attribute__((aligned (2))) = dgHookshotTargetCol; -#endif - -#define dgHookshotPostCol "__OTR__objects/object_d_hsblock/gHookshotPostCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotPostCol[] = dgHookshotPostCol; -#else -static const char gHookshotPostCol[] __attribute__((aligned (2))) = dgHookshotPostCol; -#endif - -#define dgHookshotPostDL "__OTR__objects/object_d_hsblock/gHookshotPostDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotPostDL[] = dgHookshotPostDL; -#else -static const char gHookshotPostDL[] __attribute__((aligned (2))) = dgHookshotPostDL; -#endif - -#define dgHookshotTargetDL "__OTR__objects/object_d_hsblock/gHookshotTargetDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotTargetDL[] = dgHookshotTargetDL; -#else -static const char gHookshotTargetDL[] __attribute__((aligned (2))) = dgHookshotTargetDL; -#endif - -#define dgHookshotTargetTex "__OTR__objects/object_d_hsblock/gHookshotTargetTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotTargetTex[] = dgHookshotTargetTex; -#else -static const char gHookshotTargetTex[] __attribute__((aligned (2))) = dgHookshotTargetTex; -#endif - -#define dgHookshotPostTex "__OTR__objects/object_d_hsblock/gHookshotPostTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotPostTex[] = dgHookshotPostTex; -#else -static const char gHookshotPostTex[] __attribute__((aligned (2))) = dgHookshotPostTex; -#endif - +#include "align_asset_macro.h" + +#define dgHookshotTargetCol "__OTR__objects/object_d_hsblock/gHookshotTargetCol" +static const ALIGN_ASSET(2) char gHookshotTargetCol[] = dgHookshotTargetCol; + +#define dgHookshotPostCol "__OTR__objects/object_d_hsblock/gHookshotPostCol" +static const ALIGN_ASSET(2) char gHookshotPostCol[] = dgHookshotPostCol; + +#define dgHookshotPostDL "__OTR__objects/object_d_hsblock/gHookshotPostDL" +static const ALIGN_ASSET(2) char gHookshotPostDL[] = dgHookshotPostDL; + +#define dgHookshotTargetDL "__OTR__objects/object_d_hsblock/gHookshotTargetDL" +static const ALIGN_ASSET(2) char gHookshotTargetDL[] = dgHookshotTargetDL; + +#define dgHookshotTargetTex "__OTR__objects/object_d_hsblock/gHookshotTargetTex" +static const ALIGN_ASSET(2) char gHookshotTargetTex[] = dgHookshotTargetTex; + +#define dgHookshotPostTex "__OTR__objects/object_d_hsblock/gHookshotPostTex" +static const ALIGN_ASSET(2) char gHookshotPostTex[] = dgHookshotPostTex; \ No newline at end of file diff --git a/soh/assets/objects/object_d_lift/object_d_lift.h b/soh/assets/objects/object_d_lift/object_d_lift.h index 10d3a27b1..63e017c60 100644 --- a/soh/assets/objects/object_d_lift/object_d_lift.h +++ b/soh/assets/objects/object_d_lift/object_d_lift.h @@ -1,30 +1,15 @@ #pragma once -#define dgCollapsingPlatformDL "__OTR__objects/object_d_lift/gCollapsingPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCollapsingPlatformDL[] = dgCollapsingPlatformDL; -#else -static const char gCollapsingPlatformDL[] __attribute__((aligned (2))) = dgCollapsingPlatformDL; -#endif - -#define dgCollapsingPlatformCol "__OTR__objects/object_d_lift/gCollapsingPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gCollapsingPlatformCol[] = dgCollapsingPlatformCol; -#else -static const char gCollapsingPlatformCol[] __attribute__((aligned (2))) = dgCollapsingPlatformCol; -#endif - -#define dgCollapsingPlatformSideTex "__OTR__objects/object_d_lift/gCollapsingPlatformSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCollapsingPlatformSideTex[] = dgCollapsingPlatformSideTex; -#else -static const char gCollapsingPlatformSideTex[] __attribute__((aligned (2))) = dgCollapsingPlatformSideTex; -#endif - -#define dgCollapsingPlatformTopTex "__OTR__objects/object_d_lift/gCollapsingPlatformTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCollapsingPlatformTopTex[] = dgCollapsingPlatformTopTex; -#else -static const char gCollapsingPlatformTopTex[] __attribute__((aligned (2))) = dgCollapsingPlatformTopTex; -#endif - +#include "align_asset_macro.h" + +#define dgCollapsingPlatformDL "__OTR__objects/object_d_lift/gCollapsingPlatformDL" +static const ALIGN_ASSET(2) char gCollapsingPlatformDL[] = dgCollapsingPlatformDL; + +#define dgCollapsingPlatformCol "__OTR__objects/object_d_lift/gCollapsingPlatformCol" +static const ALIGN_ASSET(2) char gCollapsingPlatformCol[] = dgCollapsingPlatformCol; + +#define dgCollapsingPlatformSideTex "__OTR__objects/object_d_lift/gCollapsingPlatformSideTex" +static const ALIGN_ASSET(2) char gCollapsingPlatformSideTex[] = dgCollapsingPlatformSideTex; + +#define dgCollapsingPlatformTopTex "__OTR__objects/object_d_lift/gCollapsingPlatformTopTex" +static const ALIGN_ASSET(2) char gCollapsingPlatformTopTex[] = dgCollapsingPlatformTopTex; \ No newline at end of file diff --git a/soh/assets/objects/object_daiku/object_daiku.h b/soh/assets/objects/object_daiku/object_daiku.h index 409f1375d..c9b733959 100644 --- a/soh/assets/objects/object_daiku/object_daiku.h +++ b/soh/assets/objects/object_daiku/object_daiku.h @@ -1,282 +1,123 @@ #pragma once -#define dobject_daiku_Anim_000600 "__OTR__objects/object_daiku/object_daiku_Anim_000600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Anim_000600[] = dobject_daiku_Anim_000600; -#else -static const char object_daiku_Anim_000600[] __attribute__((aligned (2))) = dobject_daiku_Anim_000600; -#endif - -#define dobject_daiku_Anim_000C44 "__OTR__objects/object_daiku/object_daiku_Anim_000C44" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Anim_000C44[] = dobject_daiku_Anim_000C44; -#else -static const char object_daiku_Anim_000C44[] __attribute__((aligned (2))) = dobject_daiku_Anim_000C44; -#endif - -#define dobject_daiku_Anim_001AB0 "__OTR__objects/object_daiku/object_daiku_Anim_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Anim_001AB0[] = dobject_daiku_Anim_001AB0; -#else -static const char object_daiku_Anim_001AB0[] __attribute__((aligned (2))) = dobject_daiku_Anim_001AB0; -#endif - -#define dobject_daiku_TLUT_001AC0 "__OTR__objects/object_daiku/object_daiku_TLUT_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_TLUT_001AC0[] = dobject_daiku_TLUT_001AC0; -#else -static const char object_daiku_TLUT_001AC0[] __attribute__((aligned (2))) = dobject_daiku_TLUT_001AC0; -#endif - -#define dobject_daiku_Tex_001CC0 "__OTR__objects/object_daiku/object_daiku_Tex_001CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_001CC0[] = dobject_daiku_Tex_001CC0; -#else -static const char object_daiku_Tex_001CC0[] __attribute__((aligned (2))) = dobject_daiku_Tex_001CC0; -#endif - -#define dobject_daiku_Tex_001D00 "__OTR__objects/object_daiku/object_daiku_Tex_001D00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_001D00[] = dobject_daiku_Tex_001D00; -#else -static const char object_daiku_Tex_001D00[] __attribute__((aligned (2))) = dobject_daiku_Tex_001D00; -#endif - -#define dobject_daiku_Tex_001E00 "__OTR__objects/object_daiku/object_daiku_Tex_001E00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_001E00[] = dobject_daiku_Tex_001E00; -#else -static const char object_daiku_Tex_001E00[] __attribute__((aligned (2))) = dobject_daiku_Tex_001E00; -#endif - -#define dobject_daiku_Tex_001E20 "__OTR__objects/object_daiku/object_daiku_Tex_001E20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_001E20[] = dobject_daiku_Tex_001E20; -#else -static const char object_daiku_Tex_001E20[] __attribute__((aligned (2))) = dobject_daiku_Tex_001E20; -#endif - -#define dobject_daiku_Tex_001EA0 "__OTR__objects/object_daiku/object_daiku_Tex_001EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_001EA0[] = dobject_daiku_Tex_001EA0; -#else -static const char object_daiku_Tex_001EA0[] __attribute__((aligned (2))) = dobject_daiku_Tex_001EA0; -#endif - -#define dobject_daiku_Tex_001EE0 "__OTR__objects/object_daiku/object_daiku_Tex_001EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_001EE0[] = dobject_daiku_Tex_001EE0; -#else -static const char object_daiku_Tex_001EE0[] __attribute__((aligned (2))) = dobject_daiku_Tex_001EE0; -#endif - -#define dobject_daiku_Tex_001FE0 "__OTR__objects/object_daiku/object_daiku_Tex_001FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_001FE0[] = dobject_daiku_Tex_001FE0; -#else -static const char object_daiku_Tex_001FE0[] __attribute__((aligned (2))) = dobject_daiku_Tex_001FE0; -#endif - -#define dobject_daiku_Tex_002020 "__OTR__objects/object_daiku/object_daiku_Tex_002020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_002020[] = dobject_daiku_Tex_002020; -#else -static const char object_daiku_Tex_002020[] __attribute__((aligned (2))) = dobject_daiku_Tex_002020; -#endif - -#define dobject_daiku_Tex_002820 "__OTR__objects/object_daiku/object_daiku_Tex_002820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_002820[] = dobject_daiku_Tex_002820; -#else -static const char object_daiku_Tex_002820[] __attribute__((aligned (2))) = dobject_daiku_Tex_002820; -#endif - -#define dobject_daiku_Tex_002920 "__OTR__objects/object_daiku/object_daiku_Tex_002920" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_002920[] = dobject_daiku_Tex_002920; -#else -static const char object_daiku_Tex_002920[] __attribute__((aligned (2))) = dobject_daiku_Tex_002920; -#endif - -#define dobject_daiku_Tex_002960 "__OTR__objects/object_daiku/object_daiku_Tex_002960" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_002960[] = dobject_daiku_Tex_002960; -#else -static const char object_daiku_Tex_002960[] __attribute__((aligned (2))) = dobject_daiku_Tex_002960; -#endif - -#define dobject_daiku_Tex_0029A0 "__OTR__objects/object_daiku/object_daiku_Tex_0029A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Tex_0029A0[] = dobject_daiku_Tex_0029A0; -#else -static const char object_daiku_Tex_0029A0[] __attribute__((aligned (2))) = dobject_daiku_Tex_0029A0; -#endif - -#define dobject_daiku_DL_005490 "__OTR__objects/object_daiku/object_daiku_DL_005490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_005490[] = dobject_daiku_DL_005490; -#else -static const char object_daiku_DL_005490[] __attribute__((aligned (2))) = dobject_daiku_DL_005490; -#endif - -#define dobject_daiku_DL_005880 "__OTR__objects/object_daiku/object_daiku_DL_005880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_005880[] = dobject_daiku_DL_005880; -#else -static const char object_daiku_DL_005880[] __attribute__((aligned (2))) = dobject_daiku_DL_005880; -#endif - -#define dobject_daiku_DL_005990 "__OTR__objects/object_daiku/object_daiku_DL_005990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_005990[] = dobject_daiku_DL_005990; -#else -static const char object_daiku_DL_005990[] __attribute__((aligned (2))) = dobject_daiku_DL_005990; -#endif - -#define dobject_daiku_DL_005AC0 "__OTR__objects/object_daiku/object_daiku_DL_005AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_005AC0[] = dobject_daiku_DL_005AC0; -#else -static const char object_daiku_DL_005AC0[] __attribute__((aligned (2))) = dobject_daiku_DL_005AC0; -#endif - -#define dobject_daiku_DL_005BD0 "__OTR__objects/object_daiku/object_daiku_DL_005BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_005BD0[] = dobject_daiku_DL_005BD0; -#else -static const char object_daiku_DL_005BD0[] __attribute__((aligned (2))) = dobject_daiku_DL_005BD0; -#endif - -#define dobject_daiku_DL_005CF0 "__OTR__objects/object_daiku/object_daiku_DL_005CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_005CF0[] = dobject_daiku_DL_005CF0; -#else -static const char object_daiku_DL_005CF0[] __attribute__((aligned (2))) = dobject_daiku_DL_005CF0; -#endif - -#define dobject_daiku_DL_006210 "__OTR__objects/object_daiku/object_daiku_DL_006210" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_006210[] = dobject_daiku_DL_006210; -#else -static const char object_daiku_DL_006210[] __attribute__((aligned (2))) = dobject_daiku_DL_006210; -#endif - -#define dobject_daiku_DL_006520 "__OTR__objects/object_daiku/object_daiku_DL_006520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_006520[] = dobject_daiku_DL_006520; -#else -static const char object_daiku_DL_006520[] __attribute__((aligned (2))) = dobject_daiku_DL_006520; -#endif - -#define dobject_daiku_DL_006650 "__OTR__objects/object_daiku/object_daiku_DL_006650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_006650[] = dobject_daiku_DL_006650; -#else -static const char object_daiku_DL_006650[] __attribute__((aligned (2))) = dobject_daiku_DL_006650; -#endif - -#define dobject_daiku_DL_006780 "__OTR__objects/object_daiku/object_daiku_DL_006780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_006780[] = dobject_daiku_DL_006780; -#else -static const char object_daiku_DL_006780[] __attribute__((aligned (2))) = dobject_daiku_DL_006780; -#endif - -#define dobject_daiku_DL_0068F0 "__OTR__objects/object_daiku/object_daiku_DL_0068F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_0068F0[] = dobject_daiku_DL_0068F0; -#else -static const char object_daiku_DL_0068F0[] __attribute__((aligned (2))) = dobject_daiku_DL_0068F0; -#endif - -#define dobject_daiku_DL_006A20 "__OTR__objects/object_daiku/object_daiku_DL_006A20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_006A20[] = dobject_daiku_DL_006A20; -#else -static const char object_daiku_DL_006A20[] __attribute__((aligned (2))) = dobject_daiku_DL_006A20; -#endif - -#define dobject_daiku_DL_006B50 "__OTR__objects/object_daiku/object_daiku_DL_006B50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_006B50[] = dobject_daiku_DL_006B50; -#else -static const char object_daiku_DL_006B50[] __attribute__((aligned (2))) = dobject_daiku_DL_006B50; -#endif - -#define dobject_daiku_DL_006CC0 "__OTR__objects/object_daiku/object_daiku_DL_006CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_006CC0[] = dobject_daiku_DL_006CC0; -#else -static const char object_daiku_DL_006CC0[] __attribute__((aligned (2))) = dobject_daiku_DL_006CC0; -#endif - -#define dobject_daiku_DL_006EB0 "__OTR__objects/object_daiku/object_daiku_DL_006EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_006EB0[] = dobject_daiku_DL_006EB0; -#else -static const char object_daiku_DL_006EB0[] __attribute__((aligned (2))) = dobject_daiku_DL_006EB0; -#endif - -#define dobject_daiku_DL_007158 "__OTR__objects/object_daiku/object_daiku_DL_007158" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_007158[] = dobject_daiku_DL_007158; -#else -static const char object_daiku_DL_007158[] __attribute__((aligned (2))) = dobject_daiku_DL_007158; -#endif - -#define dobject_daiku_DL_007268 "__OTR__objects/object_daiku/object_daiku_DL_007268" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_007268[] = dobject_daiku_DL_007268; -#else -static const char object_daiku_DL_007268[] __attribute__((aligned (2))) = dobject_daiku_DL_007268; -#endif - -#define dobject_daiku_DL_007380 "__OTR__objects/object_daiku/object_daiku_DL_007380" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_007380[] = dobject_daiku_DL_007380; -#else -static const char object_daiku_DL_007380[] __attribute__((aligned (2))) = dobject_daiku_DL_007380; -#endif - -#define dobject_daiku_DL_007630 "__OTR__objects/object_daiku/object_daiku_DL_007630" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_007630[] = dobject_daiku_DL_007630; -#else -static const char object_daiku_DL_007630[] __attribute__((aligned (2))) = dobject_daiku_DL_007630; -#endif - -#define dobject_daiku_DL_007740 "__OTR__objects/object_daiku/object_daiku_DL_007740" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_DL_007740[] = dobject_daiku_DL_007740; -#else -static const char object_daiku_DL_007740[] __attribute__((aligned (2))) = dobject_daiku_DL_007740; -#endif - -#define dobject_daiku_Skel_007958 "__OTR__objects/object_daiku/object_daiku_Skel_007958" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Skel_007958[] = dobject_daiku_Skel_007958; -#else -static const char object_daiku_Skel_007958[] __attribute__((aligned (2))) = dobject_daiku_Skel_007958; -#endif - -#define dobject_daiku_Anim_007DE0 "__OTR__objects/object_daiku/object_daiku_Anim_007DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Anim_007DE0[] = dobject_daiku_Anim_007DE0; -#else -static const char object_daiku_Anim_007DE0[] __attribute__((aligned (2))) = dobject_daiku_Anim_007DE0; -#endif - -#define dobject_daiku_Anim_008164 "__OTR__objects/object_daiku/object_daiku_Anim_008164" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Anim_008164[] = dobject_daiku_Anim_008164; -#else -static const char object_daiku_Anim_008164[] __attribute__((aligned (2))) = dobject_daiku_Anim_008164; -#endif - -#define dobject_daiku_Anim_00885C "__OTR__objects/object_daiku/object_daiku_Anim_00885C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_daiku_Anim_00885C[] = dobject_daiku_Anim_00885C; -#else -static const char object_daiku_Anim_00885C[] __attribute__((aligned (2))) = dobject_daiku_Anim_00885C; -#endif - +#include "align_asset_macro.h" + +#define dobject_daiku_Anim_000600 "__OTR__objects/object_daiku/object_daiku_Anim_000600" +static const ALIGN_ASSET(2) char object_daiku_Anim_000600[] = dobject_daiku_Anim_000600; + +#define dobject_daiku_Anim_000C44 "__OTR__objects/object_daiku/object_daiku_Anim_000C44" +static const ALIGN_ASSET(2) char object_daiku_Anim_000C44[] = dobject_daiku_Anim_000C44; + +#define dobject_daiku_Anim_001AB0 "__OTR__objects/object_daiku/object_daiku_Anim_001AB0" +static const ALIGN_ASSET(2) char object_daiku_Anim_001AB0[] = dobject_daiku_Anim_001AB0; + +#define dobject_daiku_TLUT_001AC0 "__OTR__objects/object_daiku/object_daiku_TLUT_001AC0" +static const ALIGN_ASSET(2) char object_daiku_TLUT_001AC0[] = dobject_daiku_TLUT_001AC0; + +#define dobject_daiku_Tex_001CC0 "__OTR__objects/object_daiku/object_daiku_Tex_001CC0" +static const ALIGN_ASSET(2) char object_daiku_Tex_001CC0[] = dobject_daiku_Tex_001CC0; + +#define dobject_daiku_Tex_001D00 "__OTR__objects/object_daiku/object_daiku_Tex_001D00" +static const ALIGN_ASSET(2) char object_daiku_Tex_001D00[] = dobject_daiku_Tex_001D00; + +#define dobject_daiku_Tex_001E00 "__OTR__objects/object_daiku/object_daiku_Tex_001E00" +static const ALIGN_ASSET(2) char object_daiku_Tex_001E00[] = dobject_daiku_Tex_001E00; + +#define dobject_daiku_Tex_001E20 "__OTR__objects/object_daiku/object_daiku_Tex_001E20" +static const ALIGN_ASSET(2) char object_daiku_Tex_001E20[] = dobject_daiku_Tex_001E20; + +#define dobject_daiku_Tex_001EA0 "__OTR__objects/object_daiku/object_daiku_Tex_001EA0" +static const ALIGN_ASSET(2) char object_daiku_Tex_001EA0[] = dobject_daiku_Tex_001EA0; + +#define dobject_daiku_Tex_001EE0 "__OTR__objects/object_daiku/object_daiku_Tex_001EE0" +static const ALIGN_ASSET(2) char object_daiku_Tex_001EE0[] = dobject_daiku_Tex_001EE0; + +#define dobject_daiku_Tex_001FE0 "__OTR__objects/object_daiku/object_daiku_Tex_001FE0" +static const ALIGN_ASSET(2) char object_daiku_Tex_001FE0[] = dobject_daiku_Tex_001FE0; + +#define dobject_daiku_Tex_002020 "__OTR__objects/object_daiku/object_daiku_Tex_002020" +static const ALIGN_ASSET(2) char object_daiku_Tex_002020[] = dobject_daiku_Tex_002020; + +#define dobject_daiku_Tex_002820 "__OTR__objects/object_daiku/object_daiku_Tex_002820" +static const ALIGN_ASSET(2) char object_daiku_Tex_002820[] = dobject_daiku_Tex_002820; + +#define dobject_daiku_Tex_002920 "__OTR__objects/object_daiku/object_daiku_Tex_002920" +static const ALIGN_ASSET(2) char object_daiku_Tex_002920[] = dobject_daiku_Tex_002920; + +#define dobject_daiku_Tex_002960 "__OTR__objects/object_daiku/object_daiku_Tex_002960" +static const ALIGN_ASSET(2) char object_daiku_Tex_002960[] = dobject_daiku_Tex_002960; + +#define dobject_daiku_Tex_0029A0 "__OTR__objects/object_daiku/object_daiku_Tex_0029A0" +static const ALIGN_ASSET(2) char object_daiku_Tex_0029A0[] = dobject_daiku_Tex_0029A0; + +#define dobject_daiku_DL_005490 "__OTR__objects/object_daiku/object_daiku_DL_005490" +static const ALIGN_ASSET(2) char object_daiku_DL_005490[] = dobject_daiku_DL_005490; + +#define dobject_daiku_DL_005880 "__OTR__objects/object_daiku/object_daiku_DL_005880" +static const ALIGN_ASSET(2) char object_daiku_DL_005880[] = dobject_daiku_DL_005880; + +#define dobject_daiku_DL_005990 "__OTR__objects/object_daiku/object_daiku_DL_005990" +static const ALIGN_ASSET(2) char object_daiku_DL_005990[] = dobject_daiku_DL_005990; + +#define dobject_daiku_DL_005AC0 "__OTR__objects/object_daiku/object_daiku_DL_005AC0" +static const ALIGN_ASSET(2) char object_daiku_DL_005AC0[] = dobject_daiku_DL_005AC0; + +#define dobject_daiku_DL_005BD0 "__OTR__objects/object_daiku/object_daiku_DL_005BD0" +static const ALIGN_ASSET(2) char object_daiku_DL_005BD0[] = dobject_daiku_DL_005BD0; + +#define dobject_daiku_DL_005CF0 "__OTR__objects/object_daiku/object_daiku_DL_005CF0" +static const ALIGN_ASSET(2) char object_daiku_DL_005CF0[] = dobject_daiku_DL_005CF0; + +#define dobject_daiku_DL_006210 "__OTR__objects/object_daiku/object_daiku_DL_006210" +static const ALIGN_ASSET(2) char object_daiku_DL_006210[] = dobject_daiku_DL_006210; + +#define dobject_daiku_DL_006520 "__OTR__objects/object_daiku/object_daiku_DL_006520" +static const ALIGN_ASSET(2) char object_daiku_DL_006520[] = dobject_daiku_DL_006520; + +#define dobject_daiku_DL_006650 "__OTR__objects/object_daiku/object_daiku_DL_006650" +static const ALIGN_ASSET(2) char object_daiku_DL_006650[] = dobject_daiku_DL_006650; + +#define dobject_daiku_DL_006780 "__OTR__objects/object_daiku/object_daiku_DL_006780" +static const ALIGN_ASSET(2) char object_daiku_DL_006780[] = dobject_daiku_DL_006780; + +#define dobject_daiku_DL_0068F0 "__OTR__objects/object_daiku/object_daiku_DL_0068F0" +static const ALIGN_ASSET(2) char object_daiku_DL_0068F0[] = dobject_daiku_DL_0068F0; + +#define dobject_daiku_DL_006A20 "__OTR__objects/object_daiku/object_daiku_DL_006A20" +static const ALIGN_ASSET(2) char object_daiku_DL_006A20[] = dobject_daiku_DL_006A20; + +#define dobject_daiku_DL_006B50 "__OTR__objects/object_daiku/object_daiku_DL_006B50" +static const ALIGN_ASSET(2) char object_daiku_DL_006B50[] = dobject_daiku_DL_006B50; + +#define dobject_daiku_DL_006CC0 "__OTR__objects/object_daiku/object_daiku_DL_006CC0" +static const ALIGN_ASSET(2) char object_daiku_DL_006CC0[] = dobject_daiku_DL_006CC0; + +#define dobject_daiku_DL_006EB0 "__OTR__objects/object_daiku/object_daiku_DL_006EB0" +static const ALIGN_ASSET(2) char object_daiku_DL_006EB0[] = dobject_daiku_DL_006EB0; + +#define dobject_daiku_DL_007158 "__OTR__objects/object_daiku/object_daiku_DL_007158" +static const ALIGN_ASSET(2) char object_daiku_DL_007158[] = dobject_daiku_DL_007158; + +#define dobject_daiku_DL_007268 "__OTR__objects/object_daiku/object_daiku_DL_007268" +static const ALIGN_ASSET(2) char object_daiku_DL_007268[] = dobject_daiku_DL_007268; + +#define dobject_daiku_DL_007380 "__OTR__objects/object_daiku/object_daiku_DL_007380" +static const ALIGN_ASSET(2) char object_daiku_DL_007380[] = dobject_daiku_DL_007380; + +#define dobject_daiku_DL_007630 "__OTR__objects/object_daiku/object_daiku_DL_007630" +static const ALIGN_ASSET(2) char object_daiku_DL_007630[] = dobject_daiku_DL_007630; + +#define dobject_daiku_DL_007740 "__OTR__objects/object_daiku/object_daiku_DL_007740" +static const ALIGN_ASSET(2) char object_daiku_DL_007740[] = dobject_daiku_DL_007740; + +#define dobject_daiku_Skel_007958 "__OTR__objects/object_daiku/object_daiku_Skel_007958" +static const ALIGN_ASSET(2) char object_daiku_Skel_007958[] = dobject_daiku_Skel_007958; + +#define dobject_daiku_Anim_007DE0 "__OTR__objects/object_daiku/object_daiku_Anim_007DE0" +static const ALIGN_ASSET(2) char object_daiku_Anim_007DE0[] = dobject_daiku_Anim_007DE0; + +#define dobject_daiku_Anim_008164 "__OTR__objects/object_daiku/object_daiku_Anim_008164" +static const ALIGN_ASSET(2) char object_daiku_Anim_008164[] = dobject_daiku_Anim_008164; + +#define dobject_daiku_Anim_00885C "__OTR__objects/object_daiku/object_daiku_Anim_00885C" +static const ALIGN_ASSET(2) char object_daiku_Anim_00885C[] = dobject_daiku_Anim_00885C; \ No newline at end of file diff --git a/soh/assets/objects/object_ddan_objects/object_ddan_objects.h b/soh/assets/objects/object_ddan_objects/object_ddan_objects.h index 334b7092f..bb50ff09c 100644 --- a/soh/assets/objects/object_ddan_objects/object_ddan_objects.h +++ b/soh/assets/objects/object_ddan_objects/object_ddan_objects.h @@ -1,149 +1,66 @@ #pragma once -#define dgDodongoTex_0410 "__OTR__objects/object_ddan_objects/gDodongoTex_0410" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoTex_0410[] = dgDodongoTex_0410; -#else -static const char gDodongoTex_0410[] __attribute__((aligned (2))) = dgDodongoTex_0410; -#endif - -#define dgDodongoRisingPlatformSide1Tex "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformSide1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoRisingPlatformSide1Tex[] = dgDodongoRisingPlatformSide1Tex; -#else -static const char gDodongoRisingPlatformSide1Tex[] __attribute__((aligned (2))) = dgDodongoRisingPlatformSide1Tex; -#endif - -#define dgDodongoRisingPlatformTopTex "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoRisingPlatformTopTex[] = dgDodongoRisingPlatformTopTex; -#else -static const char gDodongoRisingPlatformTopTex[] __attribute__((aligned (2))) = dgDodongoRisingPlatformTopTex; -#endif - -#define dgDodongoRisingPlatformSide2Tex "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformSide2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoRisingPlatformSide2Tex[] = dgDodongoRisingPlatformSide2Tex; -#else -static const char gDodongoRisingPlatformSide2Tex[] __attribute__((aligned (2))) = dgDodongoRisingPlatformSide2Tex; -#endif - -#define dgDodongoFallingStairsTex "__OTR__objects/object_ddan_objects/gDodongoFallingStairsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFallingStairsTex[] = dgDodongoFallingStairsTex; -#else -static const char gDodongoFallingStairsTex[] __attribute__((aligned (2))) = dgDodongoFallingStairsTex; -#endif - -#define dgDodongoDoorLeftSideTex "__OTR__objects/object_ddan_objects/gDodongoDoorLeftSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoDoorLeftSideTex[] = dgDodongoDoorLeftSideTex; -#else -static const char gDodongoDoorLeftSideTex[] __attribute__((aligned (2))) = dgDodongoDoorLeftSideTex; -#endif - -#define dgDodongoBarsTex "__OTR__objects/object_ddan_objects/gDodongoBarsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoBarsTex[] = dgDodongoBarsTex; -#else -static const char gDodongoBarsTex[] __attribute__((aligned (2))) = dgDodongoBarsTex; -#endif - -#define dgDodongoBarsBottomTex "__OTR__objects/object_ddan_objects/gDodongoBarsBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoBarsBottomTex[] = dgDodongoBarsBottomTex; -#else -static const char gDodongoBarsBottomTex[] __attribute__((aligned (2))) = dgDodongoBarsBottomTex; -#endif - -#define dgDodongoTex_6F60 "__OTR__objects/object_ddan_objects/gDodongoTex_6F60" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoTex_6F60[] = dgDodongoTex_6F60; -#else -static const char gDodongoTex_6F60[] __attribute__((aligned (2))) = dgDodongoTex_6F60; -#endif - -#define dgDodongoFallingStairsVinesTex "__OTR__objects/object_ddan_objects/gDodongoFallingStairsVinesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFallingStairsVinesTex[] = dgDodongoFallingStairsVinesTex; -#else -static const char gDodongoFallingStairsVinesTex[] __attribute__((aligned (2))) = dgDodongoFallingStairsVinesTex; -#endif - -#define dgDodongo1TLUT "__OTR__objects/object_ddan_objects/gDodongo1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongo1TLUT[] = dgDodongo1TLUT; -#else -static const char gDodongo1TLUT[] __attribute__((aligned (2))) = dgDodongo1TLUT; -#endif - -#define dgDodongo2TLUT "__OTR__objects/object_ddan_objects/gDodongo2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongo2TLUT[] = dgDodongo2TLUT; -#else -static const char gDodongo2TLUT[] __attribute__((aligned (2))) = dgDodongo2TLUT; -#endif - -#define dgDodongo3TLUT "__OTR__objects/object_ddan_objects/gDodongo3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongo3TLUT[] = dgDodongo3TLUT; -#else -static const char gDodongo3TLUT[] __attribute__((aligned (2))) = dgDodongo3TLUT; -#endif - -#define dgDodongoDoorDL "__OTR__objects/object_ddan_objects/gDodongoDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoDoorDL[] = dgDodongoDoorDL; -#else -static const char gDodongoDoorDL[] __attribute__((aligned (2))) = dgDodongoDoorDL; -#endif - -#define dgDodongoBarsDL "__OTR__objects/object_ddan_objects/gDodongoBarsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoBarsDL[] = dgDodongoBarsDL; -#else -static const char gDodongoBarsDL[] __attribute__((aligned (2))) = dgDodongoBarsDL; -#endif - -#define dgDodongoLowerJawDL "__OTR__objects/object_ddan_objects/gDodongoLowerJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoLowerJawDL[] = dgDodongoLowerJawDL; -#else -static const char gDodongoLowerJawDL[] __attribute__((aligned (2))) = dgDodongoLowerJawDL; -#endif - -#define dgDodongoRisingPlatformDL "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoRisingPlatformDL[] = dgDodongoRisingPlatformDL; -#else -static const char gDodongoRisingPlatformDL[] __attribute__((aligned (2))) = dgDodongoRisingPlatformDL; -#endif - -#define dgDodongoFallingStairsDL "__OTR__objects/object_ddan_objects/gDodongoFallingStairsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFallingStairsDL[] = dgDodongoFallingStairsDL; -#else -static const char gDodongoFallingStairsDL[] __attribute__((aligned (2))) = dgDodongoFallingStairsDL; -#endif - -#define dgDodongoLowerJawCol "__OTR__objects/object_ddan_objects/gDodongoLowerJawCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoLowerJawCol[] = dgDodongoLowerJawCol; -#else -static const char gDodongoLowerJawCol[] __attribute__((aligned (2))) = dgDodongoLowerJawCol; -#endif - -#define dgDodongoRisingPlatformCol "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoRisingPlatformCol[] = dgDodongoRisingPlatformCol; -#else -static const char gDodongoRisingPlatformCol[] __attribute__((aligned (2))) = dgDodongoRisingPlatformCol; -#endif - -#define dgDodongoFallingStairsCol "__OTR__objects/object_ddan_objects/gDodongoFallingStairsCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFallingStairsCol[] = dgDodongoFallingStairsCol; -#else -static const char gDodongoFallingStairsCol[] __attribute__((aligned (2))) = dgDodongoFallingStairsCol; -#endif - +#include "align_asset_macro.h" + +#define dgDodongoTex_0410 "__OTR__objects/object_ddan_objects/gDodongoTex_0410" +static const ALIGN_ASSET(2) char gDodongoTex_0410[] = dgDodongoTex_0410; + +#define dgDodongoRisingPlatformSide1Tex "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformSide1Tex" +static const ALIGN_ASSET(2) char gDodongoRisingPlatformSide1Tex[] = dgDodongoRisingPlatformSide1Tex; + +#define dgDodongoRisingPlatformTopTex "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformTopTex" +static const ALIGN_ASSET(2) char gDodongoRisingPlatformTopTex[] = dgDodongoRisingPlatformTopTex; + +#define dgDodongoRisingPlatformSide2Tex "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformSide2Tex" +static const ALIGN_ASSET(2) char gDodongoRisingPlatformSide2Tex[] = dgDodongoRisingPlatformSide2Tex; + +#define dgDodongoFallingStairsTex "__OTR__objects/object_ddan_objects/gDodongoFallingStairsTex" +static const ALIGN_ASSET(2) char gDodongoFallingStairsTex[] = dgDodongoFallingStairsTex; + +#define dgDodongoDoorLeftSideTex "__OTR__objects/object_ddan_objects/gDodongoDoorLeftSideTex" +static const ALIGN_ASSET(2) char gDodongoDoorLeftSideTex[] = dgDodongoDoorLeftSideTex; + +#define dgDodongoBarsTex "__OTR__objects/object_ddan_objects/gDodongoBarsTex" +static const ALIGN_ASSET(2) char gDodongoBarsTex[] = dgDodongoBarsTex; + +#define dgDodongoBarsBottomTex "__OTR__objects/object_ddan_objects/gDodongoBarsBottomTex" +static const ALIGN_ASSET(2) char gDodongoBarsBottomTex[] = dgDodongoBarsBottomTex; + +#define dgDodongoTex_6F60 "__OTR__objects/object_ddan_objects/gDodongoTex_6F60" +static const ALIGN_ASSET(2) char gDodongoTex_6F60[] = dgDodongoTex_6F60; + +#define dgDodongoFallingStairsVinesTex "__OTR__objects/object_ddan_objects/gDodongoFallingStairsVinesTex" +static const ALIGN_ASSET(2) char gDodongoFallingStairsVinesTex[] = dgDodongoFallingStairsVinesTex; + +#define dgDodongo1TLUT "__OTR__objects/object_ddan_objects/gDodongo1TLUT" +static const ALIGN_ASSET(2) char gDodongo1TLUT[] = dgDodongo1TLUT; + +#define dgDodongo2TLUT "__OTR__objects/object_ddan_objects/gDodongo2TLUT" +static const ALIGN_ASSET(2) char gDodongo2TLUT[] = dgDodongo2TLUT; + +#define dgDodongo3TLUT "__OTR__objects/object_ddan_objects/gDodongo3TLUT" +static const ALIGN_ASSET(2) char gDodongo3TLUT[] = dgDodongo3TLUT; + +#define dgDodongoDoorDL "__OTR__objects/object_ddan_objects/gDodongoDoorDL" +static const ALIGN_ASSET(2) char gDodongoDoorDL[] = dgDodongoDoorDL; + +#define dgDodongoBarsDL "__OTR__objects/object_ddan_objects/gDodongoBarsDL" +static const ALIGN_ASSET(2) char gDodongoBarsDL[] = dgDodongoBarsDL; + +#define dgDodongoLowerJawDL "__OTR__objects/object_ddan_objects/gDodongoLowerJawDL" +static const ALIGN_ASSET(2) char gDodongoLowerJawDL[] = dgDodongoLowerJawDL; + +#define dgDodongoRisingPlatformDL "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformDL" +static const ALIGN_ASSET(2) char gDodongoRisingPlatformDL[] = dgDodongoRisingPlatformDL; + +#define dgDodongoFallingStairsDL "__OTR__objects/object_ddan_objects/gDodongoFallingStairsDL" +static const ALIGN_ASSET(2) char gDodongoFallingStairsDL[] = dgDodongoFallingStairsDL; + +#define dgDodongoLowerJawCol "__OTR__objects/object_ddan_objects/gDodongoLowerJawCol" +static const ALIGN_ASSET(2) char gDodongoLowerJawCol[] = dgDodongoLowerJawCol; + +#define dgDodongoRisingPlatformCol "__OTR__objects/object_ddan_objects/gDodongoRisingPlatformCol" +static const ALIGN_ASSET(2) char gDodongoRisingPlatformCol[] = dgDodongoRisingPlatformCol; + +#define dgDodongoFallingStairsCol "__OTR__objects/object_ddan_objects/gDodongoFallingStairsCol" +static const ALIGN_ASSET(2) char gDodongoFallingStairsCol[] = dgDodongoFallingStairsCol; \ No newline at end of file diff --git a/soh/assets/objects/object_dekubaba/object_dekubaba.h b/soh/assets/objects/object_dekubaba/object_dekubaba.h index 97085302b..3cfdfe168 100644 --- a/soh/assets/objects/object_dekubaba/object_dekubaba.h +++ b/soh/assets/objects/object_dekubaba/object_dekubaba.h @@ -1,114 +1,51 @@ #pragma once -#define dgDekuBabaPauseChompAnim "__OTR__objects/object_dekubaba/gDekuBabaPauseChompAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaPauseChompAnim[] = dgDekuBabaPauseChompAnim; -#else -static const char gDekuBabaPauseChompAnim[] __attribute__((aligned (2))) = dgDekuBabaPauseChompAnim; -#endif - -#define dgDekuBabaFastChompAnim "__OTR__objects/object_dekubaba/gDekuBabaFastChompAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaFastChompAnim[] = dgDekuBabaFastChompAnim; -#else -static const char gDekuBabaFastChompAnim[] __attribute__((aligned (2))) = dgDekuBabaFastChompAnim; -#endif - -#define dgDekuBabaLowerJawDL "__OTR__objects/object_dekubaba/gDekuBabaLowerJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaLowerJawDL[] = dgDekuBabaLowerJawDL; -#else -static const char gDekuBabaLowerJawDL[] __attribute__((aligned (2))) = dgDekuBabaLowerJawDL; -#endif - -#define dgDekuBabaUpperJawDL "__OTR__objects/object_dekubaba/gDekuBabaUpperJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaUpperJawDL[] = dgDekuBabaUpperJawDL; -#else -static const char gDekuBabaUpperJawDL[] __attribute__((aligned (2))) = dgDekuBabaUpperJawDL; -#endif - -#define dgDekuBabaBaseLeavesDL "__OTR__objects/object_dekubaba/gDekuBabaBaseLeavesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaBaseLeavesDL[] = dgDekuBabaBaseLeavesDL; -#else -static const char gDekuBabaBaseLeavesDL[] __attribute__((aligned (2))) = dgDekuBabaBaseLeavesDL; -#endif - -#define dgDekuBabaStemTopDL "__OTR__objects/object_dekubaba/gDekuBabaStemTopDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaStemTopDL[] = dgDekuBabaStemTopDL; -#else -static const char gDekuBabaStemTopDL[] __attribute__((aligned (2))) = dgDekuBabaStemTopDL; -#endif - -#define dgDekuBabaStemMiddleDL "__OTR__objects/object_dekubaba/gDekuBabaStemMiddleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaStemMiddleDL[] = dgDekuBabaStemMiddleDL; -#else -static const char gDekuBabaStemMiddleDL[] __attribute__((aligned (2))) = dgDekuBabaStemMiddleDL; -#endif - -#define dgDekuBabaStemBaseDL "__OTR__objects/object_dekubaba/gDekuBabaStemBaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaStemBaseDL[] = dgDekuBabaStemBaseDL; -#else -static const char gDekuBabaStemBaseDL[] __attribute__((aligned (2))) = dgDekuBabaStemBaseDL; -#endif - -#define dgDekuBabaJawOuterTex "__OTR__objects/object_dekubaba/gDekuBabaJawOuterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaJawOuterTex[] = dgDekuBabaJawOuterTex; -#else -static const char gDekuBabaJawOuterTex[] __attribute__((aligned (2))) = dgDekuBabaJawOuterTex; -#endif - -#define dgDekuBabaJawInnerTex "__OTR__objects/object_dekubaba/gDekuBabaJawInnerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaJawInnerTex[] = dgDekuBabaJawInnerTex; -#else -static const char gDekuBabaJawInnerTex[] __attribute__((aligned (2))) = dgDekuBabaJawInnerTex; -#endif - -#define dgDekuBabaLeafTex "__OTR__objects/object_dekubaba/gDekuBabaLeafTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaLeafTex[] = dgDekuBabaLeafTex; -#else -static const char gDekuBabaLeafTex[] __attribute__((aligned (2))) = dgDekuBabaLeafTex; -#endif - -#define dgDekuBabaBulbTex "__OTR__objects/object_dekubaba/gDekuBabaBulbTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaBulbTex[] = dgDekuBabaBulbTex; -#else -static const char gDekuBabaBulbTex[] __attribute__((aligned (2))) = dgDekuBabaBulbTex; -#endif - -#define dgDekuBabaStemTex "__OTR__objects/object_dekubaba/gDekuBabaStemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaStemTex[] = dgDekuBabaStemTex; -#else -static const char gDekuBabaStemTex[] __attribute__((aligned (2))) = dgDekuBabaStemTex; -#endif - -#define dgDekuBabaSkel "__OTR__objects/object_dekubaba/gDekuBabaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaSkel[] = dgDekuBabaSkel; -#else -static const char gDekuBabaSkel[] __attribute__((aligned (2))) = dgDekuBabaSkel; -#endif - -#define dgDekuBabaStickDropDL "__OTR__objects/object_dekubaba/gDekuBabaStickDropDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaStickDropDL[] = dgDekuBabaStickDropDL; -#else -static const char gDekuBabaStickDropDL[] __attribute__((aligned (2))) = dgDekuBabaStickDropDL; -#endif - -#define dgDekuBabaStickDropTex "__OTR__objects/object_dekubaba/gDekuBabaStickDropTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuBabaStickDropTex[] = dgDekuBabaStickDropTex; -#else -static const char gDekuBabaStickDropTex[] __attribute__((aligned (2))) = dgDekuBabaStickDropTex; -#endif - +#include "align_asset_macro.h" + +#define dgDekuBabaPauseChompAnim "__OTR__objects/object_dekubaba/gDekuBabaPauseChompAnim" +static const ALIGN_ASSET(2) char gDekuBabaPauseChompAnim[] = dgDekuBabaPauseChompAnim; + +#define dgDekuBabaFastChompAnim "__OTR__objects/object_dekubaba/gDekuBabaFastChompAnim" +static const ALIGN_ASSET(2) char gDekuBabaFastChompAnim[] = dgDekuBabaFastChompAnim; + +#define dgDekuBabaLowerJawDL "__OTR__objects/object_dekubaba/gDekuBabaLowerJawDL" +static const ALIGN_ASSET(2) char gDekuBabaLowerJawDL[] = dgDekuBabaLowerJawDL; + +#define dgDekuBabaUpperJawDL "__OTR__objects/object_dekubaba/gDekuBabaUpperJawDL" +static const ALIGN_ASSET(2) char gDekuBabaUpperJawDL[] = dgDekuBabaUpperJawDL; + +#define dgDekuBabaBaseLeavesDL "__OTR__objects/object_dekubaba/gDekuBabaBaseLeavesDL" +static const ALIGN_ASSET(2) char gDekuBabaBaseLeavesDL[] = dgDekuBabaBaseLeavesDL; + +#define dgDekuBabaStemTopDL "__OTR__objects/object_dekubaba/gDekuBabaStemTopDL" +static const ALIGN_ASSET(2) char gDekuBabaStemTopDL[] = dgDekuBabaStemTopDL; + +#define dgDekuBabaStemMiddleDL "__OTR__objects/object_dekubaba/gDekuBabaStemMiddleDL" +static const ALIGN_ASSET(2) char gDekuBabaStemMiddleDL[] = dgDekuBabaStemMiddleDL; + +#define dgDekuBabaStemBaseDL "__OTR__objects/object_dekubaba/gDekuBabaStemBaseDL" +static const ALIGN_ASSET(2) char gDekuBabaStemBaseDL[] = dgDekuBabaStemBaseDL; + +#define dgDekuBabaJawOuterTex "__OTR__objects/object_dekubaba/gDekuBabaJawOuterTex" +static const ALIGN_ASSET(2) char gDekuBabaJawOuterTex[] = dgDekuBabaJawOuterTex; + +#define dgDekuBabaJawInnerTex "__OTR__objects/object_dekubaba/gDekuBabaJawInnerTex" +static const ALIGN_ASSET(2) char gDekuBabaJawInnerTex[] = dgDekuBabaJawInnerTex; + +#define dgDekuBabaLeafTex "__OTR__objects/object_dekubaba/gDekuBabaLeafTex" +static const ALIGN_ASSET(2) char gDekuBabaLeafTex[] = dgDekuBabaLeafTex; + +#define dgDekuBabaBulbTex "__OTR__objects/object_dekubaba/gDekuBabaBulbTex" +static const ALIGN_ASSET(2) char gDekuBabaBulbTex[] = dgDekuBabaBulbTex; + +#define dgDekuBabaStemTex "__OTR__objects/object_dekubaba/gDekuBabaStemTex" +static const ALIGN_ASSET(2) char gDekuBabaStemTex[] = dgDekuBabaStemTex; + +#define dgDekuBabaSkel "__OTR__objects/object_dekubaba/gDekuBabaSkel" +static const ALIGN_ASSET(2) char gDekuBabaSkel[] = dgDekuBabaSkel; + +#define dgDekuBabaStickDropDL "__OTR__objects/object_dekubaba/gDekuBabaStickDropDL" +static const ALIGN_ASSET(2) char gDekuBabaStickDropDL[] = dgDekuBabaStickDropDL; + +#define dgDekuBabaStickDropTex "__OTR__objects/object_dekubaba/gDekuBabaStickDropTex" +static const ALIGN_ASSET(2) char gDekuBabaStickDropTex[] = dgDekuBabaStickDropTex; \ No newline at end of file diff --git a/soh/assets/objects/object_dekujr/object_dekujr.h b/soh/assets/objects/object_dekujr/object_dekujr.h index 9e722bafc..3a4af5c80 100644 --- a/soh/assets/objects/object_dekujr/object_dekujr.h +++ b/soh/assets/objects/object_dekujr/object_dekujr.h @@ -1,65 +1,30 @@ #pragma once -#define dobject_dekujr_Tex_000000 "__OTR__objects/object_dekujr/object_dekujr_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_Tex_000000[] = dobject_dekujr_Tex_000000; -#else -static const char object_dekujr_Tex_000000[] __attribute__((aligned (2))) = dobject_dekujr_Tex_000000; -#endif - -#define dobject_dekujr_Tex_000800 "__OTR__objects/object_dekujr/object_dekujr_Tex_000800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_Tex_000800[] = dobject_dekujr_Tex_000800; -#else -static const char object_dekujr_Tex_000800[] __attribute__((aligned (2))) = dobject_dekujr_Tex_000800; -#endif - -#define dobject_dekujr_Tex_001000 "__OTR__objects/object_dekujr/object_dekujr_Tex_001000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_Tex_001000[] = dobject_dekujr_Tex_001000; -#else -static const char object_dekujr_Tex_001000[] __attribute__((aligned (2))) = dobject_dekujr_Tex_001000; -#endif - -#define dobject_dekujr_Tex_001400 "__OTR__objects/object_dekujr/object_dekujr_Tex_001400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_Tex_001400[] = dobject_dekujr_Tex_001400; -#else -static const char object_dekujr_Tex_001400[] __attribute__((aligned (2))) = dobject_dekujr_Tex_001400; -#endif - -#define dobject_dekujr_Tex_001600 "__OTR__objects/object_dekujr/object_dekujr_Tex_001600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_Tex_001600[] = dobject_dekujr_Tex_001600; -#else -static const char object_dekujr_Tex_001600[] __attribute__((aligned (2))) = dobject_dekujr_Tex_001600; -#endif - -#define dobject_dekujr_Tex_001640 "__OTR__objects/object_dekujr/object_dekujr_Tex_001640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_Tex_001640[] = dobject_dekujr_Tex_001640; -#else -static const char object_dekujr_Tex_001640[] __attribute__((aligned (2))) = dobject_dekujr_Tex_001640; -#endif - -#define dobject_dekujr_Tex_002640 "__OTR__objects/object_dekujr/object_dekujr_Tex_002640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_Tex_002640[] = dobject_dekujr_Tex_002640; -#else -static const char object_dekujr_Tex_002640[] __attribute__((aligned (2))) = dobject_dekujr_Tex_002640; -#endif - -#define dobject_dekujr_DL_0030D0 "__OTR__objects/object_dekujr/object_dekujr_DL_0030D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_DL_0030D0[] = dobject_dekujr_DL_0030D0; -#else -static const char object_dekujr_DL_0030D0[] __attribute__((aligned (2))) = dobject_dekujr_DL_0030D0; -#endif - -#define dobject_dekujr_DL_0032D8 "__OTR__objects/object_dekujr/object_dekujr_DL_0032D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dekujr_DL_0032D8[] = dobject_dekujr_DL_0032D8; -#else -static const char object_dekujr_DL_0032D8[] __attribute__((aligned (2))) = dobject_dekujr_DL_0032D8; -#endif - +#include "align_asset_macro.h" + +#define dobject_dekujr_Tex_000000 "__OTR__objects/object_dekujr/object_dekujr_Tex_000000" +static const ALIGN_ASSET(2) char object_dekujr_Tex_000000[] = dobject_dekujr_Tex_000000; + +#define dobject_dekujr_Tex_000800 "__OTR__objects/object_dekujr/object_dekujr_Tex_000800" +static const ALIGN_ASSET(2) char object_dekujr_Tex_000800[] = dobject_dekujr_Tex_000800; + +#define dobject_dekujr_Tex_001000 "__OTR__objects/object_dekujr/object_dekujr_Tex_001000" +static const ALIGN_ASSET(2) char object_dekujr_Tex_001000[] = dobject_dekujr_Tex_001000; + +#define dobject_dekujr_Tex_001400 "__OTR__objects/object_dekujr/object_dekujr_Tex_001400" +static const ALIGN_ASSET(2) char object_dekujr_Tex_001400[] = dobject_dekujr_Tex_001400; + +#define dobject_dekujr_Tex_001600 "__OTR__objects/object_dekujr/object_dekujr_Tex_001600" +static const ALIGN_ASSET(2) char object_dekujr_Tex_001600[] = dobject_dekujr_Tex_001600; + +#define dobject_dekujr_Tex_001640 "__OTR__objects/object_dekujr/object_dekujr_Tex_001640" +static const ALIGN_ASSET(2) char object_dekujr_Tex_001640[] = dobject_dekujr_Tex_001640; + +#define dobject_dekujr_Tex_002640 "__OTR__objects/object_dekujr/object_dekujr_Tex_002640" +static const ALIGN_ASSET(2) char object_dekujr_Tex_002640[] = dobject_dekujr_Tex_002640; + +#define dobject_dekujr_DL_0030D0 "__OTR__objects/object_dekujr/object_dekujr_DL_0030D0" +static const ALIGN_ASSET(2) char object_dekujr_DL_0030D0[] = dobject_dekujr_DL_0030D0; + +#define dobject_dekujr_DL_0032D8 "__OTR__objects/object_dekujr/object_dekujr_DL_0032D8" +static const ALIGN_ASSET(2) char object_dekujr_DL_0032D8[] = dobject_dekujr_DL_0032D8; \ No newline at end of file diff --git a/soh/assets/objects/object_dekunuts/object_dekunuts.h b/soh/assets/objects/object_dekunuts/object_dekunuts.h index d391ac5eb..a9c3d44bc 100644 --- a/soh/assets/objects/object_dekunuts/object_dekunuts.h +++ b/soh/assets/objects/object_dekunuts/object_dekunuts.h @@ -1,198 +1,87 @@ #pragma once -#define dgDekuNutsSkel "__OTR__objects/object_dekunuts/gDekuNutsSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkel[] = dgDekuNutsSkel; -#else -static const char gDekuNutsSkel[] __attribute__((aligned (2))) = dgDekuNutsSkel; -#endif - -#define dgDekuNutsSpitAnim "__OTR__objects/object_dekunuts/gDekuNutsSpitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSpitAnim[] = dgDekuNutsSpitAnim; -#else -static const char gDekuNutsSpitAnim[] __attribute__((aligned (2))) = dgDekuNutsSpitAnim; -#endif - -#define dgDekuNutsDamageAnim "__OTR__objects/object_dekunuts/gDekuNutsDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsDamageAnim[] = dgDekuNutsDamageAnim; -#else -static const char gDekuNutsDamageAnim[] __attribute__((aligned (2))) = dgDekuNutsDamageAnim; -#endif - -#define dgDekuNutsBurrowAnim "__OTR__objects/object_dekunuts/gDekuNutsBurrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsBurrowAnim[] = dgDekuNutsBurrowAnim; -#else -static const char gDekuNutsBurrowAnim[] __attribute__((aligned (2))) = dgDekuNutsBurrowAnim; -#endif - -#define dgDekuNutsDieAnim "__OTR__objects/object_dekunuts/gDekuNutsDieAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsDieAnim[] = dgDekuNutsDieAnim; -#else -static const char gDekuNutsDieAnim[] __attribute__((aligned (2))) = dgDekuNutsDieAnim; -#endif - -#define dgDekuNutsUnburrowAnim "__OTR__objects/object_dekunuts/gDekuNutsUnburrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsUnburrowAnim[] = dgDekuNutsUnburrowAnim; -#else -static const char gDekuNutsUnburrowAnim[] __attribute__((aligned (2))) = dgDekuNutsUnburrowAnim; -#endif - -#define dgDekuNutsLookAroundAnim "__OTR__objects/object_dekunuts/gDekuNutsLookAroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsLookAroundAnim[] = dgDekuNutsLookAroundAnim; -#else -static const char gDekuNutsLookAroundAnim[] __attribute__((aligned (2))) = dgDekuNutsLookAroundAnim; -#endif - -#define dgDekuNutsUpAnim "__OTR__objects/object_dekunuts/gDekuNutsUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsUpAnim[] = dgDekuNutsUpAnim; -#else -static const char gDekuNutsUpAnim[] __attribute__((aligned (2))) = dgDekuNutsUpAnim; -#endif - -#define dgDekuNutsStandAnim "__OTR__objects/object_dekunuts/gDekuNutsStandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsStandAnim[] = dgDekuNutsStandAnim; -#else -static const char gDekuNutsStandAnim[] __attribute__((aligned (2))) = dgDekuNutsStandAnim; -#endif - -#define dgDekuNutsGaspAnim "__OTR__objects/object_dekunuts/gDekuNutsGaspAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsGaspAnim[] = dgDekuNutsGaspAnim; -#else -static const char gDekuNutsGaspAnim[] __attribute__((aligned (2))) = dgDekuNutsGaspAnim; -#endif - -#define dgDekuNutsRunAnim "__OTR__objects/object_dekunuts/gDekuNutsRunAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsRunAnim[] = dgDekuNutsRunAnim; -#else -static const char gDekuNutsRunAnim[] __attribute__((aligned (2))) = dgDekuNutsRunAnim; -#endif - -#define dgDekuNutsLeafTex "__OTR__objects/object_dekunuts/gDekuNutsLeafTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsLeafTex[] = dgDekuNutsLeafTex; -#else -static const char gDekuNutsLeafTex[] __attribute__((aligned (2))) = dgDekuNutsLeafTex; -#endif - -#define dgDekuNutsBodyTex "__OTR__objects/object_dekunuts/gDekuNutsBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsBodyTex[] = dgDekuNutsBodyTex; -#else -static const char gDekuNutsBodyTex[] __attribute__((aligned (2))) = dgDekuNutsBodyTex; -#endif - -#define dgDekuNutsEyeTex "__OTR__objects/object_dekunuts/gDekuNutsEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsEyeTex[] = dgDekuNutsEyeTex; -#else -static const char gDekuNutsEyeTex[] __attribute__((aligned (2))) = dgDekuNutsEyeTex; -#endif - -#define dgDekuNutsSnoutTex "__OTR__objects/object_dekunuts/gDekuNutsSnoutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSnoutTex[] = dgDekuNutsSnoutTex; -#else -static const char gDekuNutsSnoutTex[] __attribute__((aligned (2))) = dgDekuNutsSnoutTex; -#endif - -#define dgDekuNutsMouthTex "__OTR__objects/object_dekunuts/gDekuNutsMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsMouthTex[] = dgDekuNutsMouthTex; -#else -static const char gDekuNutsMouthTex[] __attribute__((aligned (2))) = dgDekuNutsMouthTex; -#endif - -#define dgDekuNutsFlowerDL "__OTR__objects/object_dekunuts/gDekuNutsFlowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsFlowerDL[] = dgDekuNutsFlowerDL; -#else -static const char gDekuNutsFlowerDL[] __attribute__((aligned (2))) = dgDekuNutsFlowerDL; -#endif - -#define dgDekuNutsDekuNutDL "__OTR__objects/object_dekunuts/gDekuNutsDekuNutDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsDekuNutDL[] = dgDekuNutsDekuNutDL; -#else -static const char gDekuNutsDekuNutDL[] __attribute__((aligned (2))) = dgDekuNutsDekuNutDL; -#endif - -#define dgDekuNutsDekuNutTex "__OTR__objects/object_dekunuts/gDekuNutsDekuNutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsDekuNutTex[] = dgDekuNutsDekuNutTex; -#else -static const char gDekuNutsDekuNutTex[] __attribute__((aligned (2))) = dgDekuNutsDekuNutTex; -#endif - -#define dgDekuNutsSkelLimbsLimb_00310CDL_0018C0 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_00310CDL_0018C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_00310CDL_0018C0[] = dgDekuNutsSkelLimbsLimb_00310CDL_0018C0; -#else -static const char gDekuNutsSkelLimbsLimb_00310CDL_0018C0[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_00310CDL_0018C0; -#endif - -#define dgDekuNutsSkelLimbsLimb_003130DL_001BF0 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_003130DL_001BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_003130DL_001BF0[] = dgDekuNutsSkelLimbsLimb_003130DL_001BF0; -#else -static const char gDekuNutsSkelLimbsLimb_003130DL_001BF0[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_003130DL_001BF0; -#endif - -#define dgDekuNutsSkelLimbsLimb_003154DL_001E58 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_003154DL_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_003154DL_001E58[] = dgDekuNutsSkelLimbsLimb_003154DL_001E58; -#else -static const char gDekuNutsSkelLimbsLimb_003154DL_001E58[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_003154DL_001E58; -#endif - -#define dgDekuNutsSkelLimbsLimb_003178DL_001F50 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_003178DL_001F50" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_003178DL_001F50[] = dgDekuNutsSkelLimbsLimb_003178DL_001F50; -#else -static const char gDekuNutsSkelLimbsLimb_003178DL_001F50[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_003178DL_001F50; -#endif - -#define dgDekuNutsSkelLimbsLimb_003184DL_001B48 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_003184DL_001B48" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_003184DL_001B48[] = dgDekuNutsSkelLimbsLimb_003184DL_001B48; -#else -static const char gDekuNutsSkelLimbsLimb_003184DL_001B48[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_003184DL_001B48; -#endif - -#define dgDekuNutsSkelLimbsLimb_0031B4DL_0019F8 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_0031B4DL_0019F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_0031B4DL_0019F8[] = dgDekuNutsSkelLimbsLimb_0031B4DL_0019F8; -#else -static const char gDekuNutsSkelLimbsLimb_0031B4DL_0019F8[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_0031B4DL_0019F8; -#endif - -#define dgDekuNutsSkelLimbsLimb_0031C0DL_001AA8 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_0031C0DL_001AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_0031C0DL_001AA8[] = dgDekuNutsSkelLimbsLimb_0031C0DL_001AA8; -#else -static const char gDekuNutsSkelLimbsLimb_0031C0DL_001AA8[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_0031C0DL_001AA8; -#endif - -#define dgDekuNutsSkelLimbsLimb_0031F0DL_001DA8 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_0031F0DL_001DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_0031F0DL_001DA8[] = dgDekuNutsSkelLimbsLimb_0031F0DL_001DA8; -#else -static const char gDekuNutsSkelLimbsLimb_0031F0DL_001DA8[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_0031F0DL_001DA8; -#endif - -#define dgDekuNutsSkelLimbsLimb_0031FCDL_001D08 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_0031FCDL_001D08" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutsSkelLimbsLimb_0031FCDL_001D08[] = dgDekuNutsSkelLimbsLimb_0031FCDL_001D08; -#else -static const char gDekuNutsSkelLimbsLimb_0031FCDL_001D08[] __attribute__((aligned (2))) = dgDekuNutsSkelLimbsLimb_0031FCDL_001D08; -#endif - +#include "align_asset_macro.h" + +#define dgDekuNutsSkel "__OTR__objects/object_dekunuts/gDekuNutsSkel" +static const ALIGN_ASSET(2) char gDekuNutsSkel[] = dgDekuNutsSkel; + +#define dgDekuNutsSpitAnim "__OTR__objects/object_dekunuts/gDekuNutsSpitAnim" +static const ALIGN_ASSET(2) char gDekuNutsSpitAnim[] = dgDekuNutsSpitAnim; + +#define dgDekuNutsDamageAnim "__OTR__objects/object_dekunuts/gDekuNutsDamageAnim" +static const ALIGN_ASSET(2) char gDekuNutsDamageAnim[] = dgDekuNutsDamageAnim; + +#define dgDekuNutsBurrowAnim "__OTR__objects/object_dekunuts/gDekuNutsBurrowAnim" +static const ALIGN_ASSET(2) char gDekuNutsBurrowAnim[] = dgDekuNutsBurrowAnim; + +#define dgDekuNutsDieAnim "__OTR__objects/object_dekunuts/gDekuNutsDieAnim" +static const ALIGN_ASSET(2) char gDekuNutsDieAnim[] = dgDekuNutsDieAnim; + +#define dgDekuNutsUnburrowAnim "__OTR__objects/object_dekunuts/gDekuNutsUnburrowAnim" +static const ALIGN_ASSET(2) char gDekuNutsUnburrowAnim[] = dgDekuNutsUnburrowAnim; + +#define dgDekuNutsLookAroundAnim "__OTR__objects/object_dekunuts/gDekuNutsLookAroundAnim" +static const ALIGN_ASSET(2) char gDekuNutsLookAroundAnim[] = dgDekuNutsLookAroundAnim; + +#define dgDekuNutsUpAnim "__OTR__objects/object_dekunuts/gDekuNutsUpAnim" +static const ALIGN_ASSET(2) char gDekuNutsUpAnim[] = dgDekuNutsUpAnim; + +#define dgDekuNutsStandAnim "__OTR__objects/object_dekunuts/gDekuNutsStandAnim" +static const ALIGN_ASSET(2) char gDekuNutsStandAnim[] = dgDekuNutsStandAnim; + +#define dgDekuNutsGaspAnim "__OTR__objects/object_dekunuts/gDekuNutsGaspAnim" +static const ALIGN_ASSET(2) char gDekuNutsGaspAnim[] = dgDekuNutsGaspAnim; + +#define dgDekuNutsRunAnim "__OTR__objects/object_dekunuts/gDekuNutsRunAnim" +static const ALIGN_ASSET(2) char gDekuNutsRunAnim[] = dgDekuNutsRunAnim; + +#define dgDekuNutsLeafTex "__OTR__objects/object_dekunuts/gDekuNutsLeafTex" +static const ALIGN_ASSET(2) char gDekuNutsLeafTex[] = dgDekuNutsLeafTex; + +#define dgDekuNutsBodyTex "__OTR__objects/object_dekunuts/gDekuNutsBodyTex" +static const ALIGN_ASSET(2) char gDekuNutsBodyTex[] = dgDekuNutsBodyTex; + +#define dgDekuNutsEyeTex "__OTR__objects/object_dekunuts/gDekuNutsEyeTex" +static const ALIGN_ASSET(2) char gDekuNutsEyeTex[] = dgDekuNutsEyeTex; + +#define dgDekuNutsSnoutTex "__OTR__objects/object_dekunuts/gDekuNutsSnoutTex" +static const ALIGN_ASSET(2) char gDekuNutsSnoutTex[] = dgDekuNutsSnoutTex; + +#define dgDekuNutsMouthTex "__OTR__objects/object_dekunuts/gDekuNutsMouthTex" +static const ALIGN_ASSET(2) char gDekuNutsMouthTex[] = dgDekuNutsMouthTex; + +#define dgDekuNutsFlowerDL "__OTR__objects/object_dekunuts/gDekuNutsFlowerDL" +static const ALIGN_ASSET(2) char gDekuNutsFlowerDL[] = dgDekuNutsFlowerDL; + +#define dgDekuNutsDekuNutDL "__OTR__objects/object_dekunuts/gDekuNutsDekuNutDL" +static const ALIGN_ASSET(2) char gDekuNutsDekuNutDL[] = dgDekuNutsDekuNutDL; + +#define dgDekuNutsDekuNutTex "__OTR__objects/object_dekunuts/gDekuNutsDekuNutTex" +static const ALIGN_ASSET(2) char gDekuNutsDekuNutTex[] = dgDekuNutsDekuNutTex; + +#define dgDekuNutsSkelLimbsLimb_00310CDL_0018C0 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_00310CDL_0018C0" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_00310CDL_0018C0[] = dgDekuNutsSkelLimbsLimb_00310CDL_0018C0; + +#define dgDekuNutsSkelLimbsLimb_003130DL_001BF0 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_003130DL_001BF0" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_003130DL_001BF0[] = dgDekuNutsSkelLimbsLimb_003130DL_001BF0; + +#define dgDekuNutsSkelLimbsLimb_003154DL_001E58 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_003154DL_001E58" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_003154DL_001E58[] = dgDekuNutsSkelLimbsLimb_003154DL_001E58; + +#define dgDekuNutsSkelLimbsLimb_003178DL_001F50 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_003178DL_001F50" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_003178DL_001F50[] = dgDekuNutsSkelLimbsLimb_003178DL_001F50; + +#define dgDekuNutsSkelLimbsLimb_003184DL_001B48 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_003184DL_001B48" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_003184DL_001B48[] = dgDekuNutsSkelLimbsLimb_003184DL_001B48; + +#define dgDekuNutsSkelLimbsLimb_0031B4DL_0019F8 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_0031B4DL_0019F8" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_0031B4DL_0019F8[] = dgDekuNutsSkelLimbsLimb_0031B4DL_0019F8; + +#define dgDekuNutsSkelLimbsLimb_0031C0DL_001AA8 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_0031C0DL_001AA8" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_0031C0DL_001AA8[] = dgDekuNutsSkelLimbsLimb_0031C0DL_001AA8; + +#define dgDekuNutsSkelLimbsLimb_0031F0DL_001DA8 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_0031F0DL_001DA8" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_0031F0DL_001DA8[] = dgDekuNutsSkelLimbsLimb_0031F0DL_001DA8; + +#define dgDekuNutsSkelLimbsLimb_0031FCDL_001D08 "__OTR__objects/object_dekunuts/gDekuNutsSkelLimbsLimb_0031FCDL_001D08" +static const ALIGN_ASSET(2) char gDekuNutsSkelLimbsLimb_0031FCDL_001D08[] = dgDekuNutsSkelLimbsLimb_0031FCDL_001D08; \ No newline at end of file diff --git a/soh/assets/objects/object_demo_6k/object_demo_6k.h b/soh/assets/objects/object_demo_6k/object_demo_6k.h index ea684061a..304dddecf 100644 --- a/soh/assets/objects/object_demo_6k/object_demo_6k.h +++ b/soh/assets/objects/object_demo_6k/object_demo_6k.h @@ -1,51 +1,24 @@ #pragma once -#define dobject_demo_6k_Tex_000000 "__OTR__objects/object_demo_6k/object_demo_6k_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_6k_Tex_000000[] = dobject_demo_6k_Tex_000000; -#else -static const char object_demo_6k_Tex_000000[] __attribute__((aligned (2))) = dobject_demo_6k_Tex_000000; -#endif - -#define dobject_demo_6k_DL_001040 "__OTR__objects/object_demo_6k/object_demo_6k_DL_001040" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_6k_DL_001040[] = dobject_demo_6k_DL_001040; -#else -static const char object_demo_6k_DL_001040[] __attribute__((aligned (2))) = dobject_demo_6k_DL_001040; -#endif - -#define dobject_demo_6k_Tex_0010D0 "__OTR__objects/object_demo_6k/object_demo_6k_Tex_0010D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_6k_Tex_0010D0[] = dobject_demo_6k_Tex_0010D0; -#else -static const char object_demo_6k_Tex_0010D0[] __attribute__((aligned (2))) = dobject_demo_6k_Tex_0010D0; -#endif - -#define dobject_demo_6k_DL_0022B0 "__OTR__objects/object_demo_6k/object_demo_6k_DL_0022B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_6k_DL_0022B0[] = dobject_demo_6k_DL_0022B0; -#else -static const char object_demo_6k_DL_0022B0[] __attribute__((aligned (2))) = dobject_demo_6k_DL_0022B0; -#endif - -#define dobject_demo_6k_Tex_0025E0 "__OTR__objects/object_demo_6k/object_demo_6k_Tex_0025E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_6k_Tex_0025E0[] = dobject_demo_6k_Tex_0025E0; -#else -static const char object_demo_6k_Tex_0025E0[] __attribute__((aligned (2))) = dobject_demo_6k_Tex_0025E0; -#endif - -#define dobject_demo_6kVtx_0035E0 "__OTR__objects/object_demo_6k/object_demo_6kVtx_0035E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_6kVtx_0035E0[] = dobject_demo_6kVtx_0035E0; -#else -static const char object_demo_6kVtx_0035E0[] __attribute__((aligned (2))) = dobject_demo_6kVtx_0035E0; -#endif - -#define dobject_demo_6k_DL_0039D0 "__OTR__objects/object_demo_6k/object_demo_6k_DL_0039D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_6k_DL_0039D0[] = dobject_demo_6k_DL_0039D0; -#else -static const char object_demo_6k_DL_0039D0[] __attribute__((aligned (2))) = dobject_demo_6k_DL_0039D0; -#endif - +#include "align_asset_macro.h" + +#define dobject_demo_6k_Tex_000000 "__OTR__objects/object_demo_6k/object_demo_6k_Tex_000000" +static const ALIGN_ASSET(2) char object_demo_6k_Tex_000000[] = dobject_demo_6k_Tex_000000; + +#define dobject_demo_6k_DL_001040 "__OTR__objects/object_demo_6k/object_demo_6k_DL_001040" +static const ALIGN_ASSET(2) char object_demo_6k_DL_001040[] = dobject_demo_6k_DL_001040; + +#define dobject_demo_6k_Tex_0010D0 "__OTR__objects/object_demo_6k/object_demo_6k_Tex_0010D0" +static const ALIGN_ASSET(2) char object_demo_6k_Tex_0010D0[] = dobject_demo_6k_Tex_0010D0; + +#define dobject_demo_6k_DL_0022B0 "__OTR__objects/object_demo_6k/object_demo_6k_DL_0022B0" +static const ALIGN_ASSET(2) char object_demo_6k_DL_0022B0[] = dobject_demo_6k_DL_0022B0; + +#define dobject_demo_6k_Tex_0025E0 "__OTR__objects/object_demo_6k/object_demo_6k_Tex_0025E0" +static const ALIGN_ASSET(2) char object_demo_6k_Tex_0025E0[] = dobject_demo_6k_Tex_0025E0; + +#define dobject_demo_6kVtx_0035E0 "__OTR__objects/object_demo_6k/object_demo_6kVtx_0035E0" +static const ALIGN_ASSET(2) char object_demo_6kVtx_0035E0[] = dobject_demo_6kVtx_0035E0; + +#define dobject_demo_6k_DL_0039D0 "__OTR__objects/object_demo_6k/object_demo_6k_DL_0039D0" +static const ALIGN_ASSET(2) char object_demo_6k_DL_0039D0[] = dobject_demo_6k_DL_0039D0; \ No newline at end of file diff --git a/soh/assets/objects/object_demo_kekkai/object_demo_kekkai.h b/soh/assets/objects/object_demo_kekkai/object_demo_kekkai.h index 7d7ed4976..c66084a79 100644 --- a/soh/assets/objects/object_demo_kekkai/object_demo_kekkai.h +++ b/soh/assets/objects/object_demo_kekkai/object_demo_kekkai.h @@ -1,254 +1,111 @@ #pragma once -#define dgTowerBarrierDL "__OTR__objects/object_demo_kekkai/gTowerBarrierDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerBarrierDL[] = dgTowerBarrierDL; -#else -static const char gTowerBarrierDL[] __attribute__((aligned (2))) = dgTowerBarrierDL; -#endif - -#define dgTrialBarrierFloorDL "__OTR__objects/object_demo_kekkai/gTrialBarrierFloorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTrialBarrierFloorDL[] = dgTrialBarrierFloorDL; -#else -static const char gTrialBarrierFloorDL[] __attribute__((aligned (2))) = dgTrialBarrierFloorDL; -#endif - -#define dgTrialBarrierEnergyVtx "__OTR__objects/object_demo_kekkai/gTrialBarrierEnergyVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gTrialBarrierEnergyVtx[] = dgTrialBarrierEnergyVtx; -#else -static const char gTrialBarrierEnergyVtx[] __attribute__((aligned (2))) = dgTrialBarrierEnergyVtx; -#endif - -#define dgTrialBarrierEnergyDL "__OTR__objects/object_demo_kekkai/gTrialBarrierEnergyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTrialBarrierEnergyDL[] = dgTrialBarrierEnergyDL; -#else -static const char gTrialBarrierEnergyDL[] __attribute__((aligned (2))) = dgTrialBarrierEnergyDL; -#endif - -#define dgTrialBarrierOrbDL "__OTR__objects/object_demo_kekkai/gTrialBarrierOrbDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTrialBarrierOrbDL[] = dgTrialBarrierOrbDL; -#else -static const char gTrialBarrierOrbDL[] __attribute__((aligned (2))) = dgTrialBarrierOrbDL; -#endif - -#define dgShadowTrialPathDL "__OTR__objects/object_demo_kekkai/gShadowTrialPathDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTrialPathDL[] = dgShadowTrialPathDL; -#else -static const char gShadowTrialPathDL[] __attribute__((aligned (2))) = dgShadowTrialPathDL; -#endif - -#define dgClearBlockDL "__OTR__objects/object_demo_kekkai/gClearBlockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gClearBlockDL[] = dgClearBlockDL; -#else -static const char gClearBlockDL[] __attribute__((aligned (2))) = dgClearBlockDL; -#endif - -#define dgClearBlockCol "__OTR__objects/object_demo_kekkai/gClearBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gClearBlockCol[] = dgClearBlockCol; -#else -static const char gClearBlockCol[] __attribute__((aligned (2))) = dgClearBlockCol; -#endif - -#define dgFireTrialPlatformDL "__OTR__objects/object_demo_kekkai/gFireTrialPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTrialPlatformDL[] = dgFireTrialPlatformDL; -#else -static const char gFireTrialPlatformDL[] __attribute__((aligned (2))) = dgFireTrialPlatformDL; -#endif - -#define dgFireTrialPlatformCol "__OTR__objects/object_demo_kekkai/gFireTrialPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTrialPlatformCol[] = dgFireTrialPlatformCol; -#else -static const char gFireTrialPlatformCol[] __attribute__((aligned (2))) = dgFireTrialPlatformCol; -#endif - -#define dgWaterTrialIceBlockDL "__OTR__objects/object_demo_kekkai/gWaterTrialIceBlockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTrialIceBlockDL[] = dgWaterTrialIceBlockDL; -#else -static const char gWaterTrialIceBlockDL[] __attribute__((aligned (2))) = dgWaterTrialIceBlockDL; -#endif - -#define dgWaterTrialIceBlockCol "__OTR__objects/object_demo_kekkai/gWaterTrialIceBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTrialIceBlockCol[] = dgWaterTrialIceBlockCol; -#else -static const char gWaterTrialIceBlockCol[] __attribute__((aligned (2))) = dgWaterTrialIceBlockCol; -#endif - -#define dgLightTrialFakeWallDL "__OTR__objects/object_demo_kekkai/gLightTrialFakeWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightTrialFakeWallDL[] = dgLightTrialFakeWallDL; -#else -static const char gLightTrialFakeWallDL[] __attribute__((aligned (2))) = dgLightTrialFakeWallDL; -#endif - -#define dgGanonsCastleUnusedFakeWallDL "__OTR__objects/object_demo_kekkai/gGanonsCastleUnusedFakeWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleUnusedFakeWallDL[] = dgGanonsCastleUnusedFakeWallDL; -#else -static const char gGanonsCastleUnusedFakeWallDL[] __attribute__((aligned (2))) = dgGanonsCastleUnusedFakeWallDL; -#endif - -#define dgGanonsCastleScrubsFakeWallDL "__OTR__objects/object_demo_kekkai/gGanonsCastleScrubsFakeWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleScrubsFakeWallDL[] = dgGanonsCastleScrubsFakeWallDL; -#else -static const char gGanonsCastleScrubsFakeWallDL[] __attribute__((aligned (2))) = dgGanonsCastleScrubsFakeWallDL; -#endif - -#define dgSpiritTrialWebDL "__OTR__objects/object_demo_kekkai/gSpiritTrialWebDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTrialWebDL[] = dgSpiritTrialWebDL; -#else -static const char gSpiritTrialWebDL[] __attribute__((aligned (2))) = dgSpiritTrialWebDL; -#endif - -#define dgSpiritTrialLightSourceDL "__OTR__objects/object_demo_kekkai/gSpiritTrialLightSourceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTrialLightSourceDL[] = dgSpiritTrialLightSourceDL; -#else -static const char gSpiritTrialLightSourceDL[] __attribute__((aligned (2))) = dgSpiritTrialLightSourceDL; -#endif - -#define dgSpiritTrialLightFloorDL "__OTR__objects/object_demo_kekkai/gSpiritTrialLightFloorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTrialLightFloorDL[] = dgSpiritTrialLightFloorDL; -#else -static const char gSpiritTrialLightFloorDL[] __attribute__((aligned (2))) = dgSpiritTrialLightFloorDL; -#endif - -#define dgDemoKekkaiDL_005FF0 "__OTR__objects/object_demo_kekkai/gDemoKekkaiDL_005FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoKekkaiDL_005FF0[] = dgDemoKekkaiDL_005FF0; -#else -static const char gDemoKekkaiDL_005FF0[] __attribute__((aligned (2))) = dgDemoKekkaiDL_005FF0; -#endif - -#define dgGanonsCastleDoorDL "__OTR__objects/object_demo_kekkai/gGanonsCastleDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleDoorDL[] = dgGanonsCastleDoorDL; -#else -static const char gGanonsCastleDoorDL[] __attribute__((aligned (2))) = dgGanonsCastleDoorDL; -#endif - -#define dobject_demo_kekkaiTex_000000 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_000000[] = dobject_demo_kekkaiTex_000000; -#else -static const char object_demo_kekkaiTex_000000[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_000000; -#endif - -#define dobject_demo_kekkaiTex_004AC0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_004AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_004AC0[] = dobject_demo_kekkaiTex_004AC0; -#else -static const char object_demo_kekkaiTex_004AC0[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_004AC0; -#endif - -#define dobject_demo_kekkaiTex_000800 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_000800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_000800[] = dobject_demo_kekkaiTex_000800; -#else -static const char object_demo_kekkaiTex_000800[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_000800; -#endif - -#define dobject_demo_kekkaiTex_007DB0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_007DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_007DB0[] = dobject_demo_kekkaiTex_007DB0; -#else -static const char object_demo_kekkaiTex_007DB0[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_007DB0; -#endif - -#define dobject_demo_kekkaiTex_00B540 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_00B540" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_00B540[] = dobject_demo_kekkaiTex_00B540; -#else -static const char object_demo_kekkaiTex_00B540[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_00B540; -#endif - -#define dobject_demo_kekkaiTex_00C8B0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_00C8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_00C8B0[] = dobject_demo_kekkaiTex_00C8B0; -#else -static const char object_demo_kekkaiTex_00C8B0[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_00C8B0; -#endif - -#define dobject_demo_kekkaiTex_00C0B0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_00C0B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_00C0B0[] = dobject_demo_kekkaiTex_00C0B0; -#else -static const char object_demo_kekkaiTex_00C0B0[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_00C0B0; -#endif - -#define dobject_demo_kekkaiTex_0036A0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_0036A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_0036A0[] = dobject_demo_kekkaiTex_0036A0; -#else -static const char object_demo_kekkaiTex_0036A0[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_0036A0; -#endif - -#define dobject_demo_kekkaiTex_003EA0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_003EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_003EA0[] = dobject_demo_kekkaiTex_003EA0; -#else -static const char object_demo_kekkaiTex_003EA0[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_003EA0; -#endif - -#define dobject_demo_kekkaiTex_0089D0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_0089D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_0089D0[] = dobject_demo_kekkaiTex_0089D0; -#else -static const char object_demo_kekkaiTex_0089D0[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_0089D0; -#endif - -#define dobject_demo_kekkaiTex_0092D0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_0092D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_0092D0[] = dobject_demo_kekkaiTex_0092D0; -#else -static const char object_demo_kekkaiTex_0092D0[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_0092D0; -#endif - -#define dobject_demo_kekkaiTex_00A440 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_00A440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_00A440[] = dobject_demo_kekkaiTex_00A440; -#else -static const char object_demo_kekkaiTex_00A440[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_00A440; -#endif - -#define dobject_demo_kekkaiTex_006140 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_006140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_006140[] = dobject_demo_kekkaiTex_006140; -#else -static const char object_demo_kekkaiTex_006140[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_006140; -#endif - -#define dobject_demo_kekkaiTex_006940 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_006940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_006940[] = dobject_demo_kekkaiTex_006940; -#else -static const char object_demo_kekkaiTex_006940[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_006940; -#endif - -#define dobject_demo_kekkaiTex_002450 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_002450" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_002450[] = dobject_demo_kekkaiTex_002450; -#else -static const char object_demo_kekkaiTex_002450[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_002450; -#endif - -#define dobject_demo_kekkaiTex_001000 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_001000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_demo_kekkaiTex_001000[] = dobject_demo_kekkaiTex_001000; -#else -static const char object_demo_kekkaiTex_001000[] __attribute__((aligned (2))) = dobject_demo_kekkaiTex_001000; -#endif - +#include "align_asset_macro.h" + +#define dgTowerBarrierDL "__OTR__objects/object_demo_kekkai/gTowerBarrierDL" +static const ALIGN_ASSET(2) char gTowerBarrierDL[] = dgTowerBarrierDL; + +#define dgTrialBarrierFloorDL "__OTR__objects/object_demo_kekkai/gTrialBarrierFloorDL" +static const ALIGN_ASSET(2) char gTrialBarrierFloorDL[] = dgTrialBarrierFloorDL; + +#define dgTrialBarrierEnergyVtx "__OTR__objects/object_demo_kekkai/gTrialBarrierEnergyVtx" +static const ALIGN_ASSET(2) char gTrialBarrierEnergyVtx[] = dgTrialBarrierEnergyVtx; + +#define dgTrialBarrierEnergyDL "__OTR__objects/object_demo_kekkai/gTrialBarrierEnergyDL" +static const ALIGN_ASSET(2) char gTrialBarrierEnergyDL[] = dgTrialBarrierEnergyDL; + +#define dgTrialBarrierOrbDL "__OTR__objects/object_demo_kekkai/gTrialBarrierOrbDL" +static const ALIGN_ASSET(2) char gTrialBarrierOrbDL[] = dgTrialBarrierOrbDL; + +#define dgShadowTrialPathDL "__OTR__objects/object_demo_kekkai/gShadowTrialPathDL" +static const ALIGN_ASSET(2) char gShadowTrialPathDL[] = dgShadowTrialPathDL; + +#define dgClearBlockDL "__OTR__objects/object_demo_kekkai/gClearBlockDL" +static const ALIGN_ASSET(2) char gClearBlockDL[] = dgClearBlockDL; + +#define dgClearBlockCol "__OTR__objects/object_demo_kekkai/gClearBlockCol" +static const ALIGN_ASSET(2) char gClearBlockCol[] = dgClearBlockCol; + +#define dgFireTrialPlatformDL "__OTR__objects/object_demo_kekkai/gFireTrialPlatformDL" +static const ALIGN_ASSET(2) char gFireTrialPlatformDL[] = dgFireTrialPlatformDL; + +#define dgFireTrialPlatformCol "__OTR__objects/object_demo_kekkai/gFireTrialPlatformCol" +static const ALIGN_ASSET(2) char gFireTrialPlatformCol[] = dgFireTrialPlatformCol; + +#define dgWaterTrialIceBlockDL "__OTR__objects/object_demo_kekkai/gWaterTrialIceBlockDL" +static const ALIGN_ASSET(2) char gWaterTrialIceBlockDL[] = dgWaterTrialIceBlockDL; + +#define dgWaterTrialIceBlockCol "__OTR__objects/object_demo_kekkai/gWaterTrialIceBlockCol" +static const ALIGN_ASSET(2) char gWaterTrialIceBlockCol[] = dgWaterTrialIceBlockCol; + +#define dgLightTrialFakeWallDL "__OTR__objects/object_demo_kekkai/gLightTrialFakeWallDL" +static const ALIGN_ASSET(2) char gLightTrialFakeWallDL[] = dgLightTrialFakeWallDL; + +#define dgGanonsCastleUnusedFakeWallDL "__OTR__objects/object_demo_kekkai/gGanonsCastleUnusedFakeWallDL" +static const ALIGN_ASSET(2) char gGanonsCastleUnusedFakeWallDL[] = dgGanonsCastleUnusedFakeWallDL; + +#define dgGanonsCastleScrubsFakeWallDL "__OTR__objects/object_demo_kekkai/gGanonsCastleScrubsFakeWallDL" +static const ALIGN_ASSET(2) char gGanonsCastleScrubsFakeWallDL[] = dgGanonsCastleScrubsFakeWallDL; + +#define dgSpiritTrialWebDL "__OTR__objects/object_demo_kekkai/gSpiritTrialWebDL" +static const ALIGN_ASSET(2) char gSpiritTrialWebDL[] = dgSpiritTrialWebDL; + +#define dgSpiritTrialLightSourceDL "__OTR__objects/object_demo_kekkai/gSpiritTrialLightSourceDL" +static const ALIGN_ASSET(2) char gSpiritTrialLightSourceDL[] = dgSpiritTrialLightSourceDL; + +#define dgSpiritTrialLightFloorDL "__OTR__objects/object_demo_kekkai/gSpiritTrialLightFloorDL" +static const ALIGN_ASSET(2) char gSpiritTrialLightFloorDL[] = dgSpiritTrialLightFloorDL; + +#define dgDemoKekkaiDL_005FF0 "__OTR__objects/object_demo_kekkai/gDemoKekkaiDL_005FF0" +static const ALIGN_ASSET(2) char gDemoKekkaiDL_005FF0[] = dgDemoKekkaiDL_005FF0; + +#define dgGanonsCastleDoorDL "__OTR__objects/object_demo_kekkai/gGanonsCastleDoorDL" +static const ALIGN_ASSET(2) char gGanonsCastleDoorDL[] = dgGanonsCastleDoorDL; + +#define dobject_demo_kekkaiTex_000000 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_000000" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_000000[] = dobject_demo_kekkaiTex_000000; + +#define dobject_demo_kekkaiTex_004AC0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_004AC0" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_004AC0[] = dobject_demo_kekkaiTex_004AC0; + +#define dobject_demo_kekkaiTex_000800 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_000800" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_000800[] = dobject_demo_kekkaiTex_000800; + +#define dobject_demo_kekkaiTex_007DB0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_007DB0" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_007DB0[] = dobject_demo_kekkaiTex_007DB0; + +#define dobject_demo_kekkaiTex_00B540 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_00B540" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_00B540[] = dobject_demo_kekkaiTex_00B540; + +#define dobject_demo_kekkaiTex_00C8B0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_00C8B0" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_00C8B0[] = dobject_demo_kekkaiTex_00C8B0; + +#define dobject_demo_kekkaiTex_00C0B0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_00C0B0" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_00C0B0[] = dobject_demo_kekkaiTex_00C0B0; + +#define dobject_demo_kekkaiTex_0036A0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_0036A0" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_0036A0[] = dobject_demo_kekkaiTex_0036A0; + +#define dobject_demo_kekkaiTex_003EA0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_003EA0" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_003EA0[] = dobject_demo_kekkaiTex_003EA0; + +#define dobject_demo_kekkaiTex_0089D0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_0089D0" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_0089D0[] = dobject_demo_kekkaiTex_0089D0; + +#define dobject_demo_kekkaiTex_0092D0 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_0092D0" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_0092D0[] = dobject_demo_kekkaiTex_0092D0; + +#define dobject_demo_kekkaiTex_00A440 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_00A440" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_00A440[] = dobject_demo_kekkaiTex_00A440; + +#define dobject_demo_kekkaiTex_006140 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_006140" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_006140[] = dobject_demo_kekkaiTex_006140; + +#define dobject_demo_kekkaiTex_006940 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_006940" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_006940[] = dobject_demo_kekkaiTex_006940; + +#define dobject_demo_kekkaiTex_002450 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_002450" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_002450[] = dobject_demo_kekkaiTex_002450; + +#define dobject_demo_kekkaiTex_001000 "__OTR__objects/object_demo_kekkai/object_demo_kekkaiTex_001000" +static const ALIGN_ASSET(2) char object_demo_kekkaiTex_001000[] = dobject_demo_kekkaiTex_001000; \ No newline at end of file diff --git a/soh/assets/objects/object_demo_tre_lgt/object_demo_tre_lgt.h b/soh/assets/objects/object_demo_tre_lgt/object_demo_tre_lgt.h index 1479ec8c4..4d030e29a 100644 --- a/soh/assets/objects/object_demo_tre_lgt/object_demo_tre_lgt.h +++ b/soh/assets/objects/object_demo_tre_lgt/object_demo_tre_lgt.h @@ -1,9 +1,6 @@ #pragma once -#define dgWarpDemoTreLgtBlob_000000 "__OTR__objects/object_demo_tre_lgt/gWarpDemoTreLgtBlob_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpDemoTreLgtBlob_000000[] = dgWarpDemoTreLgtBlob_000000; -#else -static const char gWarpDemoTreLgtBlob_000000[] __attribute__((aligned (2))) = dgWarpDemoTreLgtBlob_000000; -#endif - +#include "align_asset_macro.h" + +#define dgWarpDemoTreLgtBlob_000000 "__OTR__objects/object_demo_tre_lgt/gWarpDemoTreLgtBlob_000000" +static const ALIGN_ASSET(2) char gWarpDemoTreLgtBlob_000000[] = dgWarpDemoTreLgtBlob_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_dh/object_dh.h b/soh/assets/objects/object_dh/object_dh.h index 078504833..2e40ac36f 100644 --- a/soh/assets/objects/object_dh/object_dh.h +++ b/soh/assets/objects/object_dh/object_dh.h @@ -1,261 +1,114 @@ #pragma once -#define dobject_dh_DL_000760 "__OTR__objects/object_dh/object_dh_DL_000760" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_000760[] = dobject_dh_DL_000760; -#else -static const char object_dh_DL_000760[] __attribute__((aligned (2))) = dobject_dh_DL_000760; -#endif - -#define dobject_dh_DL_000808 "__OTR__objects/object_dh/object_dh_DL_000808" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_000808[] = dobject_dh_DL_000808; -#else -static const char object_dh_DL_000808[] __attribute__((aligned (2))) = dobject_dh_DL_000808; -#endif - -#define dobject_dh_DL_000910 "__OTR__objects/object_dh/object_dh_DL_000910" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_000910[] = dobject_dh_DL_000910; -#else -static const char object_dh_DL_000910[] __attribute__((aligned (2))) = dobject_dh_DL_000910; -#endif - -#define dobject_dh_Skel_000BD8 "__OTR__objects/object_dh/object_dh_Skel_000BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Skel_000BD8[] = dobject_dh_Skel_000BD8; -#else -static const char object_dh_Skel_000BD8[] __attribute__((aligned (2))) = dobject_dh_Skel_000BD8; -#endif - -#define dobject_dh_Tex_000BF0 "__OTR__objects/object_dh/object_dh_Tex_000BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Tex_000BF0[] = dobject_dh_Tex_000BF0; -#else -static const char object_dh_Tex_000BF0[] __attribute__((aligned (2))) = dobject_dh_Tex_000BF0; -#endif - -#define dobject_dh_Tex_000FF0 "__OTR__objects/object_dh/object_dh_Tex_000FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Tex_000FF0[] = dobject_dh_Tex_000FF0; -#else -static const char object_dh_Tex_000FF0[] __attribute__((aligned (2))) = dobject_dh_Tex_000FF0; -#endif - -#define dobject_dh_Anim_0015B0 "__OTR__objects/object_dh/object_dh_Anim_0015B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_0015B0[] = dobject_dh_Anim_0015B0; -#else -static const char object_dh_Anim_0015B0[] __attribute__((aligned (2))) = dobject_dh_Anim_0015B0; -#endif - -#define dobject_dh_Anim_001A3C "__OTR__objects/object_dh/object_dh_Anim_001A3C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_001A3C[] = dobject_dh_Anim_001A3C; -#else -static const char object_dh_Anim_001A3C[] __attribute__((aligned (2))) = dobject_dh_Anim_001A3C; -#endif - -#define dobject_dh_Anim_002148 "__OTR__objects/object_dh/object_dh_Anim_002148" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_002148[] = dobject_dh_Anim_002148; -#else -static const char object_dh_Anim_002148[] __attribute__((aligned (2))) = dobject_dh_Anim_002148; -#endif - -#define dobject_dh_Anim_0032BC "__OTR__objects/object_dh/object_dh_Anim_0032BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_0032BC[] = dobject_dh_Anim_0032BC; -#else -static const char object_dh_Anim_0032BC[] __attribute__((aligned (2))) = dobject_dh_Anim_0032BC; -#endif - -#define dobject_dh_Anim_00375C "__OTR__objects/object_dh/object_dh_Anim_00375C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_00375C[] = dobject_dh_Anim_00375C; -#else -static const char object_dh_Anim_00375C[] __attribute__((aligned (2))) = dobject_dh_Anim_00375C; -#endif - -#define dobject_dh_Anim_003A8C "__OTR__objects/object_dh/object_dh_Anim_003A8C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_003A8C[] = dobject_dh_Anim_003A8C; -#else -static const char object_dh_Anim_003A8C[] __attribute__((aligned (2))) = dobject_dh_Anim_003A8C; -#endif - -#define dobject_dh_Anim_003D6C "__OTR__objects/object_dh/object_dh_Anim_003D6C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_003D6C[] = dobject_dh_Anim_003D6C; -#else -static const char object_dh_Anim_003D6C[] __attribute__((aligned (2))) = dobject_dh_Anim_003D6C; -#endif - -#define dobject_dh_Anim_004658 "__OTR__objects/object_dh/object_dh_Anim_004658" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_004658[] = dobject_dh_Anim_004658; -#else -static const char object_dh_Anim_004658[] __attribute__((aligned (2))) = dobject_dh_Anim_004658; -#endif - -#define dobject_dh_Tex_004670 "__OTR__objects/object_dh/object_dh_Tex_004670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Tex_004670[] = dobject_dh_Tex_004670; -#else -static const char object_dh_Tex_004670[] __attribute__((aligned (2))) = dobject_dh_Tex_004670; -#endif - -#define dobject_dh_Tex_004A70 "__OTR__objects/object_dh/object_dh_Tex_004A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Tex_004A70[] = dobject_dh_Tex_004A70; -#else -static const char object_dh_Tex_004A70[] __attribute__((aligned (2))) = dobject_dh_Tex_004A70; -#endif - -#define dobject_dh_Tex_004E70 "__OTR__objects/object_dh/object_dh_Tex_004E70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Tex_004E70[] = dobject_dh_Tex_004E70; -#else -static const char object_dh_Tex_004E70[] __attribute__((aligned (2))) = dobject_dh_Tex_004E70; -#endif - -#define dobject_dh_Tex_005070 "__OTR__objects/object_dh/object_dh_Tex_005070" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Tex_005070[] = dobject_dh_Tex_005070; -#else -static const char object_dh_Tex_005070[] __attribute__((aligned (2))) = dobject_dh_Tex_005070; -#endif - -#define dobject_dh_Anim_005880 "__OTR__objects/object_dh/object_dh_Anim_005880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Anim_005880[] = dobject_dh_Anim_005880; -#else -static const char object_dh_Anim_005880[] __attribute__((aligned (2))) = dobject_dh_Anim_005880; -#endif - -#define dobject_dh_DL_006D10 "__OTR__objects/object_dh/object_dh_DL_006D10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_006D10[] = dobject_dh_DL_006D10; -#else -static const char object_dh_DL_006D10[] __attribute__((aligned (2))) = dobject_dh_DL_006D10; -#endif - -#define dobject_dh_DL_006DD8 "__OTR__objects/object_dh/object_dh_DL_006DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_006DD8[] = dobject_dh_DL_006DD8; -#else -static const char object_dh_DL_006DD8[] __attribute__((aligned (2))) = dobject_dh_DL_006DD8; -#endif - -#define dobject_dh_DL_006EF8 "__OTR__objects/object_dh/object_dh_DL_006EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_006EF8[] = dobject_dh_DL_006EF8; -#else -static const char object_dh_DL_006EF8[] __attribute__((aligned (2))) = dobject_dh_DL_006EF8; -#endif - -#define dobject_dh_DL_006FE0 "__OTR__objects/object_dh/object_dh_DL_006FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_006FE0[] = dobject_dh_DL_006FE0; -#else -static const char object_dh_DL_006FE0[] __attribute__((aligned (2))) = dobject_dh_DL_006FE0; -#endif - -#define dobject_dh_DL_007108 "__OTR__objects/object_dh/object_dh_DL_007108" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007108[] = dobject_dh_DL_007108; -#else -static const char object_dh_DL_007108[] __attribute__((aligned (2))) = dobject_dh_DL_007108; -#endif - -#define dobject_dh_DL_007228 "__OTR__objects/object_dh/object_dh_DL_007228" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007228[] = dobject_dh_DL_007228; -#else -static const char object_dh_DL_007228[] __attribute__((aligned (2))) = dobject_dh_DL_007228; -#endif - -#define dobject_dh_DL_007338 "__OTR__objects/object_dh/object_dh_DL_007338" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007338[] = dobject_dh_DL_007338; -#else -static const char object_dh_DL_007338[] __attribute__((aligned (2))) = dobject_dh_DL_007338; -#endif - -#define dobject_dh_DL_007420 "__OTR__objects/object_dh/object_dh_DL_007420" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007420[] = dobject_dh_DL_007420; -#else -static const char object_dh_DL_007420[] __attribute__((aligned (2))) = dobject_dh_DL_007420; -#endif - -#define dobject_dh_DL_007540 "__OTR__objects/object_dh/object_dh_DL_007540" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007540[] = dobject_dh_DL_007540; -#else -static const char object_dh_DL_007540[] __attribute__((aligned (2))) = dobject_dh_DL_007540; -#endif - -#define dobject_dh_DL_007650 "__OTR__objects/object_dh/object_dh_DL_007650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007650[] = dobject_dh_DL_007650; -#else -static const char object_dh_DL_007650[] __attribute__((aligned (2))) = dobject_dh_DL_007650; -#endif - -#define dobject_dh_DL_007738 "__OTR__objects/object_dh/object_dh_DL_007738" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007738[] = dobject_dh_DL_007738; -#else -static const char object_dh_DL_007738[] __attribute__((aligned (2))) = dobject_dh_DL_007738; -#endif - -#define dobject_dh_DL_007818 "__OTR__objects/object_dh/object_dh_DL_007818" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007818[] = dobject_dh_DL_007818; -#else -static const char object_dh_DL_007818[] __attribute__((aligned (2))) = dobject_dh_DL_007818; -#endif - -#define dobject_dh_DL_0078F8 "__OTR__objects/object_dh/object_dh_DL_0078F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_0078F8[] = dobject_dh_DL_0078F8; -#else -static const char object_dh_DL_0078F8[] __attribute__((aligned (2))) = dobject_dh_DL_0078F8; -#endif - -#define dobject_dh_DL_007BA8 "__OTR__objects/object_dh/object_dh_DL_007BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007BA8[] = dobject_dh_DL_007BA8; -#else -static const char object_dh_DL_007BA8[] __attribute__((aligned (2))) = dobject_dh_DL_007BA8; -#endif - -#define dobject_dh_Skel_007E88 "__OTR__objects/object_dh/object_dh_Skel_007E88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Skel_007E88[] = dobject_dh_Skel_007E88; -#else -static const char object_dh_Skel_007E88[] __attribute__((aligned (2))) = dobject_dh_Skel_007E88; -#endif - -#define dobject_dh_DL_007FC0 "__OTR__objects/object_dh/object_dh_DL_007FC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_DL_007FC0[] = dobject_dh_DL_007FC0; -#else -static const char object_dh_DL_007FC0[] __attribute__((aligned (2))) = dobject_dh_DL_007FC0; -#endif - -#define dobject_dh_Tex_0080C0 "__OTR__objects/object_dh/object_dh_Tex_0080C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Tex_0080C0[] = dobject_dh_Tex_0080C0; -#else -static const char object_dh_Tex_0080C0[] __attribute__((aligned (2))) = dobject_dh_Tex_0080C0; -#endif - -#define dobject_dh_Tex_0088C0 "__OTR__objects/object_dh/object_dh_Tex_0088C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dh_Tex_0088C0[] = dobject_dh_Tex_0088C0; -#else -static const char object_dh_Tex_0088C0[] __attribute__((aligned (2))) = dobject_dh_Tex_0088C0; -#endif - +#include "align_asset_macro.h" + +#define dobject_dh_DL_000760 "__OTR__objects/object_dh/object_dh_DL_000760" +static const ALIGN_ASSET(2) char object_dh_DL_000760[] = dobject_dh_DL_000760; + +#define dobject_dh_DL_000808 "__OTR__objects/object_dh/object_dh_DL_000808" +static const ALIGN_ASSET(2) char object_dh_DL_000808[] = dobject_dh_DL_000808; + +#define dobject_dh_DL_000910 "__OTR__objects/object_dh/object_dh_DL_000910" +static const ALIGN_ASSET(2) char object_dh_DL_000910[] = dobject_dh_DL_000910; + +#define dobject_dh_Skel_000BD8 "__OTR__objects/object_dh/object_dh_Skel_000BD8" +static const ALIGN_ASSET(2) char object_dh_Skel_000BD8[] = dobject_dh_Skel_000BD8; + +#define dobject_dh_Tex_000BF0 "__OTR__objects/object_dh/object_dh_Tex_000BF0" +static const ALIGN_ASSET(2) char object_dh_Tex_000BF0[] = dobject_dh_Tex_000BF0; + +#define dobject_dh_Tex_000FF0 "__OTR__objects/object_dh/object_dh_Tex_000FF0" +static const ALIGN_ASSET(2) char object_dh_Tex_000FF0[] = dobject_dh_Tex_000FF0; + +#define dobject_dh_Anim_0015B0 "__OTR__objects/object_dh/object_dh_Anim_0015B0" +static const ALIGN_ASSET(2) char object_dh_Anim_0015B0[] = dobject_dh_Anim_0015B0; + +#define dobject_dh_Anim_001A3C "__OTR__objects/object_dh/object_dh_Anim_001A3C" +static const ALIGN_ASSET(2) char object_dh_Anim_001A3C[] = dobject_dh_Anim_001A3C; + +#define dobject_dh_Anim_002148 "__OTR__objects/object_dh/object_dh_Anim_002148" +static const ALIGN_ASSET(2) char object_dh_Anim_002148[] = dobject_dh_Anim_002148; + +#define dobject_dh_Anim_0032BC "__OTR__objects/object_dh/object_dh_Anim_0032BC" +static const ALIGN_ASSET(2) char object_dh_Anim_0032BC[] = dobject_dh_Anim_0032BC; + +#define dobject_dh_Anim_00375C "__OTR__objects/object_dh/object_dh_Anim_00375C" +static const ALIGN_ASSET(2) char object_dh_Anim_00375C[] = dobject_dh_Anim_00375C; + +#define dobject_dh_Anim_003A8C "__OTR__objects/object_dh/object_dh_Anim_003A8C" +static const ALIGN_ASSET(2) char object_dh_Anim_003A8C[] = dobject_dh_Anim_003A8C; + +#define dobject_dh_Anim_003D6C "__OTR__objects/object_dh/object_dh_Anim_003D6C" +static const ALIGN_ASSET(2) char object_dh_Anim_003D6C[] = dobject_dh_Anim_003D6C; + +#define dobject_dh_Anim_004658 "__OTR__objects/object_dh/object_dh_Anim_004658" +static const ALIGN_ASSET(2) char object_dh_Anim_004658[] = dobject_dh_Anim_004658; + +#define dobject_dh_Tex_004670 "__OTR__objects/object_dh/object_dh_Tex_004670" +static const ALIGN_ASSET(2) char object_dh_Tex_004670[] = dobject_dh_Tex_004670; + +#define dobject_dh_Tex_004A70 "__OTR__objects/object_dh/object_dh_Tex_004A70" +static const ALIGN_ASSET(2) char object_dh_Tex_004A70[] = dobject_dh_Tex_004A70; + +#define dobject_dh_Tex_004E70 "__OTR__objects/object_dh/object_dh_Tex_004E70" +static const ALIGN_ASSET(2) char object_dh_Tex_004E70[] = dobject_dh_Tex_004E70; + +#define dobject_dh_Tex_005070 "__OTR__objects/object_dh/object_dh_Tex_005070" +static const ALIGN_ASSET(2) char object_dh_Tex_005070[] = dobject_dh_Tex_005070; + +#define dobject_dh_Anim_005880 "__OTR__objects/object_dh/object_dh_Anim_005880" +static const ALIGN_ASSET(2) char object_dh_Anim_005880[] = dobject_dh_Anim_005880; + +#define dobject_dh_DL_006D10 "__OTR__objects/object_dh/object_dh_DL_006D10" +static const ALIGN_ASSET(2) char object_dh_DL_006D10[] = dobject_dh_DL_006D10; + +#define dobject_dh_DL_006DD8 "__OTR__objects/object_dh/object_dh_DL_006DD8" +static const ALIGN_ASSET(2) char object_dh_DL_006DD8[] = dobject_dh_DL_006DD8; + +#define dobject_dh_DL_006EF8 "__OTR__objects/object_dh/object_dh_DL_006EF8" +static const ALIGN_ASSET(2) char object_dh_DL_006EF8[] = dobject_dh_DL_006EF8; + +#define dobject_dh_DL_006FE0 "__OTR__objects/object_dh/object_dh_DL_006FE0" +static const ALIGN_ASSET(2) char object_dh_DL_006FE0[] = dobject_dh_DL_006FE0; + +#define dobject_dh_DL_007108 "__OTR__objects/object_dh/object_dh_DL_007108" +static const ALIGN_ASSET(2) char object_dh_DL_007108[] = dobject_dh_DL_007108; + +#define dobject_dh_DL_007228 "__OTR__objects/object_dh/object_dh_DL_007228" +static const ALIGN_ASSET(2) char object_dh_DL_007228[] = dobject_dh_DL_007228; + +#define dobject_dh_DL_007338 "__OTR__objects/object_dh/object_dh_DL_007338" +static const ALIGN_ASSET(2) char object_dh_DL_007338[] = dobject_dh_DL_007338; + +#define dobject_dh_DL_007420 "__OTR__objects/object_dh/object_dh_DL_007420" +static const ALIGN_ASSET(2) char object_dh_DL_007420[] = dobject_dh_DL_007420; + +#define dobject_dh_DL_007540 "__OTR__objects/object_dh/object_dh_DL_007540" +static const ALIGN_ASSET(2) char object_dh_DL_007540[] = dobject_dh_DL_007540; + +#define dobject_dh_DL_007650 "__OTR__objects/object_dh/object_dh_DL_007650" +static const ALIGN_ASSET(2) char object_dh_DL_007650[] = dobject_dh_DL_007650; + +#define dobject_dh_DL_007738 "__OTR__objects/object_dh/object_dh_DL_007738" +static const ALIGN_ASSET(2) char object_dh_DL_007738[] = dobject_dh_DL_007738; + +#define dobject_dh_DL_007818 "__OTR__objects/object_dh/object_dh_DL_007818" +static const ALIGN_ASSET(2) char object_dh_DL_007818[] = dobject_dh_DL_007818; + +#define dobject_dh_DL_0078F8 "__OTR__objects/object_dh/object_dh_DL_0078F8" +static const ALIGN_ASSET(2) char object_dh_DL_0078F8[] = dobject_dh_DL_0078F8; + +#define dobject_dh_DL_007BA8 "__OTR__objects/object_dh/object_dh_DL_007BA8" +static const ALIGN_ASSET(2) char object_dh_DL_007BA8[] = dobject_dh_DL_007BA8; + +#define dobject_dh_Skel_007E88 "__OTR__objects/object_dh/object_dh_Skel_007E88" +static const ALIGN_ASSET(2) char object_dh_Skel_007E88[] = dobject_dh_Skel_007E88; + +#define dobject_dh_DL_007FC0 "__OTR__objects/object_dh/object_dh_DL_007FC0" +static const ALIGN_ASSET(2) char object_dh_DL_007FC0[] = dobject_dh_DL_007FC0; + +#define dobject_dh_Tex_0080C0 "__OTR__objects/object_dh/object_dh_Tex_0080C0" +static const ALIGN_ASSET(2) char object_dh_Tex_0080C0[] = dobject_dh_Tex_0080C0; + +#define dobject_dh_Tex_0088C0 "__OTR__objects/object_dh/object_dh_Tex_0088C0" +static const ALIGN_ASSET(2) char object_dh_Tex_0088C0[] = dobject_dh_Tex_0088C0; \ No newline at end of file diff --git a/soh/assets/objects/object_dnk/object_dnk.h b/soh/assets/objects/object_dnk/object_dnk.h index 259083d9f..dafc1c761 100644 --- a/soh/assets/objects/object_dnk/object_dnk.h +++ b/soh/assets/objects/object_dnk/object_dnk.h @@ -1,198 +1,87 @@ #pragma once -#define dgDntStageSkel "__OTR__objects/object_dnk/gDntStageSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkel[] = dgDntStageSkel; -#else -static const char gDntStageSkel[] __attribute__((aligned (2))) = dgDntStageSkel; -#endif - -#define dgDntStageSpitAnim "__OTR__objects/object_dnk/gDntStageSpitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSpitAnim[] = dgDntStageSpitAnim; -#else -static const char gDntStageSpitAnim[] __attribute__((aligned (2))) = dgDntStageSpitAnim; -#endif - -#define dgDntStageHideAnim "__OTR__objects/object_dnk/gDntStageHideAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageHideAnim[] = dgDntStageHideAnim; -#else -static const char gDntStageHideAnim[] __attribute__((aligned (2))) = dgDntStageHideAnim; -#endif - -#define dgDntStageDanceAnim "__OTR__objects/object_dnk/gDntStageDanceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageDanceAnim[] = dgDntStageDanceAnim; -#else -static const char gDntStageDanceAnim[] __attribute__((aligned (2))) = dgDntStageDanceAnim; -#endif - -#define dgDntStageUnburrowAnim "__OTR__objects/object_dnk/gDntStageUnburrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageUnburrowAnim[] = dgDntStageUnburrowAnim; -#else -static const char gDntStageUnburrowAnim[] __attribute__((aligned (2))) = dgDntStageUnburrowAnim; -#endif - -#define dgDntStageUpAnim "__OTR__objects/object_dnk/gDntStageUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageUpAnim[] = dgDntStageUpAnim; -#else -static const char gDntStageUpAnim[] __attribute__((aligned (2))) = dgDntStageUpAnim; -#endif - -#define dgDntStageWalkAnim "__OTR__objects/object_dnk/gDntStageWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageWalkAnim[] = dgDntStageWalkAnim; -#else -static const char gDntStageWalkAnim[] __attribute__((aligned (2))) = dgDntStageWalkAnim; -#endif - -#define dgDntStageEyeOpenTex "__OTR__objects/object_dnk/gDntStageEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageEyeOpenTex[] = dgDntStageEyeOpenTex; -#else -static const char gDntStageEyeOpenTex[] __attribute__((aligned (2))) = dgDntStageEyeOpenTex; -#endif - -#define dgDntStageEyeHalfTex "__OTR__objects/object_dnk/gDntStageEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageEyeHalfTex[] = dgDntStageEyeHalfTex; -#else -static const char gDntStageEyeHalfTex[] __attribute__((aligned (2))) = dgDntStageEyeHalfTex; -#endif - -#define dgDntStageEyeShutTex "__OTR__objects/object_dnk/gDntStageEyeShutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageEyeShutTex[] = dgDntStageEyeShutTex; -#else -static const char gDntStageEyeShutTex[] __attribute__((aligned (2))) = dgDntStageEyeShutTex; -#endif - -#define dgDntStageFlowerDL "__OTR__objects/object_dnk/gDntStageFlowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageFlowerDL[] = dgDntStageFlowerDL; -#else -static const char gDntStageFlowerDL[] __attribute__((aligned (2))) = dgDntStageFlowerDL; -#endif - -#define dgDntStageNutDL "__OTR__objects/object_dnk/gDntStageNutDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageNutDL[] = dgDntStageNutDL; -#else -static const char gDntStageNutDL[] __attribute__((aligned (2))) = dgDntStageNutDL; -#endif - -#define dgDntStageWaitAnim "__OTR__objects/object_dnk/gDntStageWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageWaitAnim[] = dgDntStageWaitAnim; -#else -static const char gDntStageWaitAnim[] __attribute__((aligned (2))) = dgDntStageWaitAnim; -#endif - -#define dgDntStageSkelLimbsLimb_002A50DL_0011E0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A50DL_0011E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002A50DL_0011E0[] = dgDntStageSkelLimbsLimb_002A50DL_0011E0; -#else -static const char gDntStageSkelLimbsLimb_002A50DL_0011E0[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002A50DL_0011E0; -#endif - -#define dgDntStageSkelLimbsLimb_002A5CDL_0013B0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A5CDL_0013B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002A5CDL_0013B0[] = dgDntStageSkelLimbsLimb_002A5CDL_0013B0; -#else -static const char gDntStageSkelLimbsLimb_002A5CDL_0013B0[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002A5CDL_0013B0; -#endif - -#define dgDntStageSkelLimbsLimb_002A68DL_0015E0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A68DL_0015E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002A68DL_0015E0[] = dgDntStageSkelLimbsLimb_002A68DL_0015E0; -#else -static const char gDntStageSkelLimbsLimb_002A68DL_0015E0[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002A68DL_0015E0; -#endif - -#define dgDntStageSkelLimbsLimb_002A74DL_001670 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A74DL_001670" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002A74DL_001670[] = dgDntStageSkelLimbsLimb_002A74DL_001670; -#else -static const char gDntStageSkelLimbsLimb_002A74DL_001670[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002A74DL_001670; -#endif - -#define dgDntStageSkelLimbsLimb_002A80DL_0014B0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A80DL_0014B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002A80DL_0014B0[] = dgDntStageSkelLimbsLimb_002A80DL_0014B0; -#else -static const char gDntStageSkelLimbsLimb_002A80DL_0014B0[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002A80DL_0014B0; -#endif - -#define dgDntStageSkelLimbsLimb_002A8CDL_001548 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A8CDL_001548" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002A8CDL_001548[] = dgDntStageSkelLimbsLimb_002A8CDL_001548; -#else -static const char gDntStageSkelLimbsLimb_002A8CDL_001548[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002A8CDL_001548; -#endif - -#define dgDntStageSkelLimbsLimb_002A98DL_001298 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A98DL_001298" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002A98DL_001298[] = dgDntStageSkelLimbsLimb_002A98DL_001298; -#else -static const char gDntStageSkelLimbsLimb_002A98DL_001298[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002A98DL_001298; -#endif - -#define dgDntStageSkelLimbsLimb_002AA4DL_001150 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002AA4DL_001150" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002AA4DL_001150[] = dgDntStageSkelLimbsLimb_002AA4DL_001150; -#else -static const char gDntStageSkelLimbsLimb_002AA4DL_001150[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002AA4DL_001150; -#endif - -#define dgDntStageSkelLimbsLimb_002AB0DL_001700 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002AB0DL_001700" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002AB0DL_001700[] = dgDntStageSkelLimbsLimb_002AB0DL_001700; -#else -static const char gDntStageSkelLimbsLimb_002AB0DL_001700[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002AB0DL_001700; -#endif - -#define dgDntStageSkelLimbsLimb_002ABCDL_0017B0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002ABCDL_0017B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntStageSkelLimbsLimb_002ABCDL_0017B0[] = dgDntStageSkelLimbsLimb_002ABCDL_0017B0; -#else -static const char gDntStageSkelLimbsLimb_002ABCDL_0017B0[] __attribute__((aligned (2))) = dgDntStageSkelLimbsLimb_002ABCDL_0017B0; -#endif - -#define dobject_dnkTex_001BD0 "__OTR__objects/object_dnk/object_dnkTex_001BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnkTex_001BD0[] = dobject_dnkTex_001BD0; -#else -static const char object_dnkTex_001BD0[] __attribute__((aligned (2))) = dobject_dnkTex_001BD0; -#endif - -#define dobject_dnkTex_002850 "__OTR__objects/object_dnk/object_dnkTex_002850" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnkTex_002850[] = dobject_dnkTex_002850; -#else -static const char object_dnkTex_002850[] __attribute__((aligned (2))) = dobject_dnkTex_002850; -#endif - -#define dobject_dnkTex_0023D0 "__OTR__objects/object_dnk/object_dnkTex_0023D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnkTex_0023D0[] = dobject_dnkTex_0023D0; -#else -static const char object_dnkTex_0023D0[] __attribute__((aligned (2))) = dobject_dnkTex_0023D0; -#endif - -#define dobject_dnkTex_002650 "__OTR__objects/object_dnk/object_dnkTex_002650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnkTex_002650[] = dobject_dnkTex_002650; -#else -static const char object_dnkTex_002650[] __attribute__((aligned (2))) = dobject_dnkTex_002650; -#endif - -#define dobject_dnkTex_0026D0 "__OTR__objects/object_dnk/object_dnkTex_0026D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnkTex_0026D0[] = dobject_dnkTex_0026D0; -#else -static const char object_dnkTex_0026D0[] __attribute__((aligned (2))) = dobject_dnkTex_0026D0; -#endif - +#include "align_asset_macro.h" + +#define dgDntStageSkel "__OTR__objects/object_dnk/gDntStageSkel" +static const ALIGN_ASSET(2) char gDntStageSkel[] = dgDntStageSkel; + +#define dgDntStageSpitAnim "__OTR__objects/object_dnk/gDntStageSpitAnim" +static const ALIGN_ASSET(2) char gDntStageSpitAnim[] = dgDntStageSpitAnim; + +#define dgDntStageHideAnim "__OTR__objects/object_dnk/gDntStageHideAnim" +static const ALIGN_ASSET(2) char gDntStageHideAnim[] = dgDntStageHideAnim; + +#define dgDntStageDanceAnim "__OTR__objects/object_dnk/gDntStageDanceAnim" +static const ALIGN_ASSET(2) char gDntStageDanceAnim[] = dgDntStageDanceAnim; + +#define dgDntStageUnburrowAnim "__OTR__objects/object_dnk/gDntStageUnburrowAnim" +static const ALIGN_ASSET(2) char gDntStageUnburrowAnim[] = dgDntStageUnburrowAnim; + +#define dgDntStageUpAnim "__OTR__objects/object_dnk/gDntStageUpAnim" +static const ALIGN_ASSET(2) char gDntStageUpAnim[] = dgDntStageUpAnim; + +#define dgDntStageWalkAnim "__OTR__objects/object_dnk/gDntStageWalkAnim" +static const ALIGN_ASSET(2) char gDntStageWalkAnim[] = dgDntStageWalkAnim; + +#define dgDntStageEyeOpenTex "__OTR__objects/object_dnk/gDntStageEyeOpenTex" +static const ALIGN_ASSET(2) char gDntStageEyeOpenTex[] = dgDntStageEyeOpenTex; + +#define dgDntStageEyeHalfTex "__OTR__objects/object_dnk/gDntStageEyeHalfTex" +static const ALIGN_ASSET(2) char gDntStageEyeHalfTex[] = dgDntStageEyeHalfTex; + +#define dgDntStageEyeShutTex "__OTR__objects/object_dnk/gDntStageEyeShutTex" +static const ALIGN_ASSET(2) char gDntStageEyeShutTex[] = dgDntStageEyeShutTex; + +#define dgDntStageFlowerDL "__OTR__objects/object_dnk/gDntStageFlowerDL" +static const ALIGN_ASSET(2) char gDntStageFlowerDL[] = dgDntStageFlowerDL; + +#define dgDntStageNutDL "__OTR__objects/object_dnk/gDntStageNutDL" +static const ALIGN_ASSET(2) char gDntStageNutDL[] = dgDntStageNutDL; + +#define dgDntStageWaitAnim "__OTR__objects/object_dnk/gDntStageWaitAnim" +static const ALIGN_ASSET(2) char gDntStageWaitAnim[] = dgDntStageWaitAnim; + +#define dgDntStageSkelLimbsLimb_002A50DL_0011E0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A50DL_0011E0" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002A50DL_0011E0[] = dgDntStageSkelLimbsLimb_002A50DL_0011E0; + +#define dgDntStageSkelLimbsLimb_002A5CDL_0013B0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A5CDL_0013B0" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002A5CDL_0013B0[] = dgDntStageSkelLimbsLimb_002A5CDL_0013B0; + +#define dgDntStageSkelLimbsLimb_002A68DL_0015E0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A68DL_0015E0" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002A68DL_0015E0[] = dgDntStageSkelLimbsLimb_002A68DL_0015E0; + +#define dgDntStageSkelLimbsLimb_002A74DL_001670 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A74DL_001670" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002A74DL_001670[] = dgDntStageSkelLimbsLimb_002A74DL_001670; + +#define dgDntStageSkelLimbsLimb_002A80DL_0014B0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A80DL_0014B0" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002A80DL_0014B0[] = dgDntStageSkelLimbsLimb_002A80DL_0014B0; + +#define dgDntStageSkelLimbsLimb_002A8CDL_001548 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A8CDL_001548" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002A8CDL_001548[] = dgDntStageSkelLimbsLimb_002A8CDL_001548; + +#define dgDntStageSkelLimbsLimb_002A98DL_001298 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002A98DL_001298" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002A98DL_001298[] = dgDntStageSkelLimbsLimb_002A98DL_001298; + +#define dgDntStageSkelLimbsLimb_002AA4DL_001150 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002AA4DL_001150" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002AA4DL_001150[] = dgDntStageSkelLimbsLimb_002AA4DL_001150; + +#define dgDntStageSkelLimbsLimb_002AB0DL_001700 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002AB0DL_001700" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002AB0DL_001700[] = dgDntStageSkelLimbsLimb_002AB0DL_001700; + +#define dgDntStageSkelLimbsLimb_002ABCDL_0017B0 "__OTR__objects/object_dnk/gDntStageSkelLimbsLimb_002ABCDL_0017B0" +static const ALIGN_ASSET(2) char gDntStageSkelLimbsLimb_002ABCDL_0017B0[] = dgDntStageSkelLimbsLimb_002ABCDL_0017B0; + +#define dobject_dnkTex_001BD0 "__OTR__objects/object_dnk/object_dnkTex_001BD0" +static const ALIGN_ASSET(2) char object_dnkTex_001BD0[] = dobject_dnkTex_001BD0; + +#define dobject_dnkTex_002850 "__OTR__objects/object_dnk/object_dnkTex_002850" +static const ALIGN_ASSET(2) char object_dnkTex_002850[] = dobject_dnkTex_002850; + +#define dobject_dnkTex_0023D0 "__OTR__objects/object_dnk/object_dnkTex_0023D0" +static const ALIGN_ASSET(2) char object_dnkTex_0023D0[] = dobject_dnkTex_0023D0; + +#define dobject_dnkTex_002650 "__OTR__objects/object_dnk/object_dnkTex_002650" +static const ALIGN_ASSET(2) char object_dnkTex_002650[] = dobject_dnkTex_002650; + +#define dobject_dnkTex_0026D0 "__OTR__objects/object_dnk/object_dnkTex_0026D0" +static const ALIGN_ASSET(2) char object_dnkTex_0026D0[] = dobject_dnkTex_0026D0; \ No newline at end of file diff --git a/soh/assets/objects/object_dns/object_dns.h b/soh/assets/objects/object_dns/object_dns.h index c4dbb08eb..7ecb42b18 100644 --- a/soh/assets/objects/object_dns/object_dns.h +++ b/soh/assets/objects/object_dns/object_dns.h @@ -1,240 +1,105 @@ #pragma once -#define dgDntJijiSkel "__OTR__objects/object_dns/gDntJijiSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkel[] = dgDntJijiSkel; -#else -static const char gDntJijiSkel[] __attribute__((aligned (2))) = dgDntJijiSkel; -#endif - -#define dgDntJijiBurrowAnim "__OTR__objects/object_dns/gDntJijiBurrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiBurrowAnim[] = dgDntJijiBurrowAnim; -#else -static const char gDntJijiBurrowAnim[] __attribute__((aligned (2))) = dgDntJijiBurrowAnim; -#endif - -#define dgDntJijiCowerAnim "__OTR__objects/object_dns/gDntJijiCowerAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiCowerAnim[] = dgDntJijiCowerAnim; -#else -static const char gDntJijiCowerAnim[] __attribute__((aligned (2))) = dgDntJijiCowerAnim; -#endif - -#define dgDntJijiHideAnim "__OTR__objects/object_dns/gDntJijiHideAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiHideAnim[] = dgDntJijiHideAnim; -#else -static const char gDntJijiHideAnim[] __attribute__((aligned (2))) = dgDntJijiHideAnim; -#endif - -#define dgDntJijiTalkAnim "__OTR__objects/object_dns/gDntJijiTalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiTalkAnim[] = dgDntJijiTalkAnim; -#else -static const char gDntJijiTalkAnim[] __attribute__((aligned (2))) = dgDntJijiTalkAnim; -#endif - -#define dgDntJijiUnburrowAnim "__OTR__objects/object_dns/gDntJijiUnburrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiUnburrowAnim[] = dgDntJijiUnburrowAnim; -#else -static const char gDntJijiUnburrowAnim[] __attribute__((aligned (2))) = dgDntJijiUnburrowAnim; -#endif - -#define dgDntJijiUpAnim "__OTR__objects/object_dns/gDntJijiUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiUpAnim[] = dgDntJijiUpAnim; -#else -static const char gDntJijiUpAnim[] __attribute__((aligned (2))) = dgDntJijiUpAnim; -#endif - -#define dgDntJijiWalkAnim "__OTR__objects/object_dns/gDntJijiWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiWalkAnim[] = dgDntJijiWalkAnim; -#else -static const char gDntJijiWalkAnim[] __attribute__((aligned (2))) = dgDntJijiWalkAnim; -#endif - -#define dgDntJijiEyeOpenTex "__OTR__objects/object_dns/gDntJijiEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiEyeOpenTex[] = dgDntJijiEyeOpenTex; -#else -static const char gDntJijiEyeOpenTex[] __attribute__((aligned (2))) = dgDntJijiEyeOpenTex; -#endif - -#define dgDntJijiEyeHalfTex "__OTR__objects/object_dns/gDntJijiEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiEyeHalfTex[] = dgDntJijiEyeHalfTex; -#else -static const char gDntJijiEyeHalfTex[] __attribute__((aligned (2))) = dgDntJijiEyeHalfTex; -#endif - -#define dgDntJijiEyeShutTex "__OTR__objects/object_dns/gDntJijiEyeShutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiEyeShutTex[] = dgDntJijiEyeShutTex; -#else -static const char gDntJijiEyeShutTex[] __attribute__((aligned (2))) = dgDntJijiEyeShutTex; -#endif - -#define dgDntJijiFlowerDL "__OTR__objects/object_dns/gDntJijiFlowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiFlowerDL[] = dgDntJijiFlowerDL; -#else -static const char gDntJijiFlowerDL[] __attribute__((aligned (2))) = dgDntJijiFlowerDL; -#endif - -#define dgDntJijiNutDL "__OTR__objects/object_dns/gDntJijiNutDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiNutDL[] = dgDntJijiNutDL; -#else -static const char gDntJijiNutDL[] __attribute__((aligned (2))) = dgDntJijiNutDL; -#endif - -#define dgDntJijiSpitAnim "__OTR__objects/object_dns/gDntJijiSpitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSpitAnim[] = dgDntJijiSpitAnim; -#else -static const char gDntJijiSpitAnim[] __attribute__((aligned (2))) = dgDntJijiSpitAnim; -#endif - -#define dgDntJijiDanceAnim "__OTR__objects/object_dns/gDntJijiDanceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiDanceAnim[] = dgDntJijiDanceAnim; -#else -static const char gDntJijiDanceAnim[] __attribute__((aligned (2))) = dgDntJijiDanceAnim; -#endif - -#define dgDntJijiUnkAnim "__OTR__objects/object_dns/gDntJijiUnkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiUnkAnim[] = dgDntJijiUnkAnim; -#else -static const char gDntJijiUnkAnim[] __attribute__((aligned (2))) = dgDntJijiUnkAnim; -#endif - -#define dgDntJijiWaitAnim "__OTR__objects/object_dns/gDntJijiWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiWaitAnim[] = dgDntJijiWaitAnim; -#else -static const char gDntJijiWaitAnim[] __attribute__((aligned (2))) = dgDntJijiWaitAnim; -#endif - -#define dgDntJijiSkelLimbsLimb_003320DL_001AF0 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003320DL_001AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_003320DL_001AF0[] = dgDntJijiSkelLimbsLimb_003320DL_001AF0; -#else -static const char gDntJijiSkelLimbsLimb_003320DL_001AF0[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_003320DL_001AF0; -#endif - -#define dgDntJijiSkelLimbsLimb_00332CDL_001CC0 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_00332CDL_001CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_00332CDL_001CC0[] = dgDntJijiSkelLimbsLimb_00332CDL_001CC0; -#else -static const char gDntJijiSkelLimbsLimb_00332CDL_001CC0[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_00332CDL_001CC0; -#endif - -#define dgDntJijiSkelLimbsLimb_003338DL_001DC0 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003338DL_001DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_003338DL_001DC0[] = dgDntJijiSkelLimbsLimb_003338DL_001DC0; -#else -static const char gDntJijiSkelLimbsLimb_003338DL_001DC0[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_003338DL_001DC0; -#endif - -#define dgDntJijiSkelLimbsLimb_003344DL_001F78 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003344DL_001F78" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_003344DL_001F78[] = dgDntJijiSkelLimbsLimb_003344DL_001F78; -#else -static const char gDntJijiSkelLimbsLimb_003344DL_001F78[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_003344DL_001F78; -#endif - -#define dgDntJijiSkelLimbsLimb_003350DL_0020A0 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003350DL_0020A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_003350DL_0020A0[] = dgDntJijiSkelLimbsLimb_003350DL_0020A0; -#else -static const char gDntJijiSkelLimbsLimb_003350DL_0020A0[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_003350DL_0020A0; -#endif - -#define dgDntJijiSkelLimbsLimb_00335CDL_002008 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_00335CDL_002008" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_00335CDL_002008[] = dgDntJijiSkelLimbsLimb_00335CDL_002008; -#else -static const char gDntJijiSkelLimbsLimb_00335CDL_002008[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_00335CDL_002008; -#endif - -#define dgDntJijiSkelLimbsLimb_003368DL_001BA8 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003368DL_001BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_003368DL_001BA8[] = dgDntJijiSkelLimbsLimb_003368DL_001BA8; -#else -static const char gDntJijiSkelLimbsLimb_003368DL_001BA8[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_003368DL_001BA8; -#endif - -#define dgDntJijiSkelLimbsLimb_003374DL_001EE8 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003374DL_001EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_003374DL_001EE8[] = dgDntJijiSkelLimbsLimb_003374DL_001EE8; -#else -static const char gDntJijiSkelLimbsLimb_003374DL_001EE8[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_003374DL_001EE8; -#endif - -#define dgDntJijiSkelLimbsLimb_003380DL_001E58 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003380DL_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_003380DL_001E58[] = dgDntJijiSkelLimbsLimb_003380DL_001E58; -#else -static const char gDntJijiSkelLimbsLimb_003380DL_001E58[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_003380DL_001E58; -#endif - -#define dgDntJijiSkelLimbsLimb_00338CDL_001900 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_00338CDL_001900" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_00338CDL_001900[] = dgDntJijiSkelLimbsLimb_00338CDL_001900; -#else -static const char gDntJijiSkelLimbsLimb_00338CDL_001900[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_00338CDL_001900; -#endif - -#define dgDntJijiSkelLimbsLimb_003398DL_001A40 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003398DL_001A40" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_003398DL_001A40[] = dgDntJijiSkelLimbsLimb_003398DL_001A40; -#else -static const char gDntJijiSkelLimbsLimb_003398DL_001A40[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_003398DL_001A40; -#endif - -#define dgDntJijiSkelLimbsLimb_0033A4DL_001990 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_0033A4DL_001990" -#ifdef _WIN32 -static const __declspec(align(2)) char gDntJijiSkelLimbsLimb_0033A4DL_001990[] = dgDntJijiSkelLimbsLimb_0033A4DL_001990; -#else -static const char gDntJijiSkelLimbsLimb_0033A4DL_001990[] __attribute__((aligned (2))) = dgDntJijiSkelLimbsLimb_0033A4DL_001990; -#endif - -#define dobject_dnsTex_0024A0 "__OTR__objects/object_dns/object_dnsTex_0024A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnsTex_0024A0[] = dobject_dnsTex_0024A0; -#else -static const char object_dnsTex_0024A0[] __attribute__((aligned (2))) = dobject_dnsTex_0024A0; -#endif - -#define dobject_dnsTex_003120 "__OTR__objects/object_dns/object_dnsTex_003120" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnsTex_003120[] = dobject_dnsTex_003120; -#else -static const char object_dnsTex_003120[] __attribute__((aligned (2))) = dobject_dnsTex_003120; -#endif - -#define dobject_dnsTex_002CA0 "__OTR__objects/object_dns/object_dnsTex_002CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnsTex_002CA0[] = dobject_dnsTex_002CA0; -#else -static const char object_dnsTex_002CA0[] __attribute__((aligned (2))) = dobject_dnsTex_002CA0; -#endif - -#define dobject_dnsTex_002F20 "__OTR__objects/object_dns/object_dnsTex_002F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnsTex_002F20[] = dobject_dnsTex_002F20; -#else -static const char object_dnsTex_002F20[] __attribute__((aligned (2))) = dobject_dnsTex_002F20; -#endif - -#define dobject_dnsTex_002FA0 "__OTR__objects/object_dns/object_dnsTex_002FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dnsTex_002FA0[] = dobject_dnsTex_002FA0; -#else -static const char object_dnsTex_002FA0[] __attribute__((aligned (2))) = dobject_dnsTex_002FA0; -#endif - +#include "align_asset_macro.h" + +#define dgDntJijiSkel "__OTR__objects/object_dns/gDntJijiSkel" +static const ALIGN_ASSET(2) char gDntJijiSkel[] = dgDntJijiSkel; + +#define dgDntJijiBurrowAnim "__OTR__objects/object_dns/gDntJijiBurrowAnim" +static const ALIGN_ASSET(2) char gDntJijiBurrowAnim[] = dgDntJijiBurrowAnim; + +#define dgDntJijiCowerAnim "__OTR__objects/object_dns/gDntJijiCowerAnim" +static const ALIGN_ASSET(2) char gDntJijiCowerAnim[] = dgDntJijiCowerAnim; + +#define dgDntJijiHideAnim "__OTR__objects/object_dns/gDntJijiHideAnim" +static const ALIGN_ASSET(2) char gDntJijiHideAnim[] = dgDntJijiHideAnim; + +#define dgDntJijiTalkAnim "__OTR__objects/object_dns/gDntJijiTalkAnim" +static const ALIGN_ASSET(2) char gDntJijiTalkAnim[] = dgDntJijiTalkAnim; + +#define dgDntJijiUnburrowAnim "__OTR__objects/object_dns/gDntJijiUnburrowAnim" +static const ALIGN_ASSET(2) char gDntJijiUnburrowAnim[] = dgDntJijiUnburrowAnim; + +#define dgDntJijiUpAnim "__OTR__objects/object_dns/gDntJijiUpAnim" +static const ALIGN_ASSET(2) char gDntJijiUpAnim[] = dgDntJijiUpAnim; + +#define dgDntJijiWalkAnim "__OTR__objects/object_dns/gDntJijiWalkAnim" +static const ALIGN_ASSET(2) char gDntJijiWalkAnim[] = dgDntJijiWalkAnim; + +#define dgDntJijiEyeOpenTex "__OTR__objects/object_dns/gDntJijiEyeOpenTex" +static const ALIGN_ASSET(2) char gDntJijiEyeOpenTex[] = dgDntJijiEyeOpenTex; + +#define dgDntJijiEyeHalfTex "__OTR__objects/object_dns/gDntJijiEyeHalfTex" +static const ALIGN_ASSET(2) char gDntJijiEyeHalfTex[] = dgDntJijiEyeHalfTex; + +#define dgDntJijiEyeShutTex "__OTR__objects/object_dns/gDntJijiEyeShutTex" +static const ALIGN_ASSET(2) char gDntJijiEyeShutTex[] = dgDntJijiEyeShutTex; + +#define dgDntJijiFlowerDL "__OTR__objects/object_dns/gDntJijiFlowerDL" +static const ALIGN_ASSET(2) char gDntJijiFlowerDL[] = dgDntJijiFlowerDL; + +#define dgDntJijiNutDL "__OTR__objects/object_dns/gDntJijiNutDL" +static const ALIGN_ASSET(2) char gDntJijiNutDL[] = dgDntJijiNutDL; + +#define dgDntJijiSpitAnim "__OTR__objects/object_dns/gDntJijiSpitAnim" +static const ALIGN_ASSET(2) char gDntJijiSpitAnim[] = dgDntJijiSpitAnim; + +#define dgDntJijiDanceAnim "__OTR__objects/object_dns/gDntJijiDanceAnim" +static const ALIGN_ASSET(2) char gDntJijiDanceAnim[] = dgDntJijiDanceAnim; + +#define dgDntJijiUnkAnim "__OTR__objects/object_dns/gDntJijiUnkAnim" +static const ALIGN_ASSET(2) char gDntJijiUnkAnim[] = dgDntJijiUnkAnim; + +#define dgDntJijiWaitAnim "__OTR__objects/object_dns/gDntJijiWaitAnim" +static const ALIGN_ASSET(2) char gDntJijiWaitAnim[] = dgDntJijiWaitAnim; + +#define dgDntJijiSkelLimbsLimb_003320DL_001AF0 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003320DL_001AF0" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_003320DL_001AF0[] = dgDntJijiSkelLimbsLimb_003320DL_001AF0; + +#define dgDntJijiSkelLimbsLimb_00332CDL_001CC0 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_00332CDL_001CC0" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_00332CDL_001CC0[] = dgDntJijiSkelLimbsLimb_00332CDL_001CC0; + +#define dgDntJijiSkelLimbsLimb_003338DL_001DC0 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003338DL_001DC0" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_003338DL_001DC0[] = dgDntJijiSkelLimbsLimb_003338DL_001DC0; + +#define dgDntJijiSkelLimbsLimb_003344DL_001F78 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003344DL_001F78" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_003344DL_001F78[] = dgDntJijiSkelLimbsLimb_003344DL_001F78; + +#define dgDntJijiSkelLimbsLimb_003350DL_0020A0 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003350DL_0020A0" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_003350DL_0020A0[] = dgDntJijiSkelLimbsLimb_003350DL_0020A0; + +#define dgDntJijiSkelLimbsLimb_00335CDL_002008 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_00335CDL_002008" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_00335CDL_002008[] = dgDntJijiSkelLimbsLimb_00335CDL_002008; + +#define dgDntJijiSkelLimbsLimb_003368DL_001BA8 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003368DL_001BA8" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_003368DL_001BA8[] = dgDntJijiSkelLimbsLimb_003368DL_001BA8; + +#define dgDntJijiSkelLimbsLimb_003374DL_001EE8 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003374DL_001EE8" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_003374DL_001EE8[] = dgDntJijiSkelLimbsLimb_003374DL_001EE8; + +#define dgDntJijiSkelLimbsLimb_003380DL_001E58 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003380DL_001E58" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_003380DL_001E58[] = dgDntJijiSkelLimbsLimb_003380DL_001E58; + +#define dgDntJijiSkelLimbsLimb_00338CDL_001900 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_00338CDL_001900" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_00338CDL_001900[] = dgDntJijiSkelLimbsLimb_00338CDL_001900; + +#define dgDntJijiSkelLimbsLimb_003398DL_001A40 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_003398DL_001A40" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_003398DL_001A40[] = dgDntJijiSkelLimbsLimb_003398DL_001A40; + +#define dgDntJijiSkelLimbsLimb_0033A4DL_001990 "__OTR__objects/object_dns/gDntJijiSkelLimbsLimb_0033A4DL_001990" +static const ALIGN_ASSET(2) char gDntJijiSkelLimbsLimb_0033A4DL_001990[] = dgDntJijiSkelLimbsLimb_0033A4DL_001990; + +#define dobject_dnsTex_0024A0 "__OTR__objects/object_dns/object_dnsTex_0024A0" +static const ALIGN_ASSET(2) char object_dnsTex_0024A0[] = dobject_dnsTex_0024A0; + +#define dobject_dnsTex_003120 "__OTR__objects/object_dns/object_dnsTex_003120" +static const ALIGN_ASSET(2) char object_dnsTex_003120[] = dobject_dnsTex_003120; + +#define dobject_dnsTex_002CA0 "__OTR__objects/object_dns/object_dnsTex_002CA0" +static const ALIGN_ASSET(2) char object_dnsTex_002CA0[] = dobject_dnsTex_002CA0; + +#define dobject_dnsTex_002F20 "__OTR__objects/object_dns/object_dnsTex_002F20" +static const ALIGN_ASSET(2) char object_dnsTex_002F20[] = dobject_dnsTex_002F20; + +#define dobject_dnsTex_002FA0 "__OTR__objects/object_dns/object_dnsTex_002FA0" +static const ALIGN_ASSET(2) char object_dnsTex_002FA0[] = dobject_dnsTex_002FA0; \ No newline at end of file diff --git a/soh/assets/objects/object_dodojr/object_dodojr.h b/soh/assets/objects/object_dodojr/object_dodojr.h index 0e842c5ac..e9f6ffffb 100644 --- a/soh/assets/objects/object_dodojr/object_dodojr.h +++ b/soh/assets/objects/object_dodojr/object_dodojr.h @@ -1,107 +1,48 @@ #pragma once -#define dobject_dodojr_Anim_0004A0 "__OTR__objects/object_dodojr/object_dodojr_Anim_0004A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Anim_0004A0[] = dobject_dodojr_Anim_0004A0; -#else -static const char object_dodojr_Anim_0004A0[] __attribute__((aligned (2))) = dobject_dodojr_Anim_0004A0; -#endif - -#define dobject_dodojr_Anim_0005F0 "__OTR__objects/object_dodojr/object_dodojr_Anim_0005F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Anim_0005F0[] = dobject_dodojr_Anim_0005F0; -#else -static const char object_dodojr_Anim_0005F0[] __attribute__((aligned (2))) = dobject_dodojr_Anim_0005F0; -#endif - -#define dobject_dodojr_Anim_000724 "__OTR__objects/object_dodojr/object_dodojr_Anim_000724" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Anim_000724[] = dobject_dodojr_Anim_000724; -#else -static const char object_dodojr_Anim_000724[] __attribute__((aligned (2))) = dobject_dodojr_Anim_000724; -#endif - -#define dobject_dodojr_Anim_000860 "__OTR__objects/object_dodojr/object_dodojr_Anim_000860" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Anim_000860[] = dobject_dodojr_Anim_000860; -#else -static const char object_dodojr_Anim_000860[] __attribute__((aligned (2))) = dobject_dodojr_Anim_000860; -#endif - -#define dobject_dodojr_Anim_0009D4 "__OTR__objects/object_dodojr/object_dodojr_Anim_0009D4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Anim_0009D4[] = dobject_dodojr_Anim_0009D4; -#else -static const char object_dodojr_Anim_0009D4[] __attribute__((aligned (2))) = dobject_dodojr_Anim_0009D4; -#endif - -#define dobject_dodojr_DL_001180 "__OTR__objects/object_dodojr/object_dodojr_DL_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_DL_001180[] = dobject_dodojr_DL_001180; -#else -static const char object_dodojr_DL_001180[] __attribute__((aligned (2))) = dobject_dodojr_DL_001180; -#endif - -#define dobject_dodojr_DL_0012E0 "__OTR__objects/object_dodojr/object_dodojr_DL_0012E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_DL_0012E0[] = dobject_dodojr_DL_0012E0; -#else -static const char object_dodojr_DL_0012E0[] __attribute__((aligned (2))) = dobject_dodojr_DL_0012E0; -#endif - -#define dobject_dodojr_DL_0013E8 "__OTR__objects/object_dodojr/object_dodojr_DL_0013E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_DL_0013E8[] = dobject_dodojr_DL_0013E8; -#else -static const char object_dodojr_DL_0013E8[] __attribute__((aligned (2))) = dobject_dodojr_DL_0013E8; -#endif - -#define dobject_dodojr_DL_001508 "__OTR__objects/object_dodojr/object_dodojr_DL_001508" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_DL_001508[] = dobject_dodojr_DL_001508; -#else -static const char object_dodojr_DL_001508[] __attribute__((aligned (2))) = dobject_dodojr_DL_001508; -#endif - -#define dobject_dodojr_DL_001618 "__OTR__objects/object_dodojr/object_dodojr_DL_001618" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_DL_001618[] = dobject_dodojr_DL_001618; -#else -static const char object_dodojr_DL_001618[] __attribute__((aligned (2))) = dobject_dodojr_DL_001618; -#endif - -#define dobject_dodojr_Tex_001700 "__OTR__objects/object_dodojr/object_dodojr_Tex_001700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Tex_001700[] = dobject_dodojr_Tex_001700; -#else -static const char object_dodojr_Tex_001700[] __attribute__((aligned (2))) = dobject_dodojr_Tex_001700; -#endif - -#define dobject_dodojr_Tex_001900 "__OTR__objects/object_dodojr/object_dodojr_Tex_001900" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Tex_001900[] = dobject_dodojr_Tex_001900; -#else -static const char object_dodojr_Tex_001900[] __attribute__((aligned (2))) = dobject_dodojr_Tex_001900; -#endif - -#define dobject_dodojr_Tex_001A00 "__OTR__objects/object_dodojr/object_dodojr_Tex_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Tex_001A00[] = dobject_dodojr_Tex_001A00; -#else -static const char object_dodojr_Tex_001A00[] __attribute__((aligned (2))) = dobject_dodojr_Tex_001A00; -#endif - -#define dobject_dodojr_Tex_001C00 "__OTR__objects/object_dodojr/object_dodojr_Tex_001C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Tex_001C00[] = dobject_dodojr_Tex_001C00; -#else -static const char object_dodojr_Tex_001C00[] __attribute__((aligned (2))) = dobject_dodojr_Tex_001C00; -#endif - -#define dobject_dodojr_Skel_0020E0 "__OTR__objects/object_dodojr/object_dodojr_Skel_0020E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_dodojr_Skel_0020E0[] = dobject_dodojr_Skel_0020E0; -#else -static const char object_dodojr_Skel_0020E0[] __attribute__((aligned (2))) = dobject_dodojr_Skel_0020E0; -#endif - +#include "align_asset_macro.h" + +#define dobject_dodojr_Anim_0004A0 "__OTR__objects/object_dodojr/object_dodojr_Anim_0004A0" +static const ALIGN_ASSET(2) char object_dodojr_Anim_0004A0[] = dobject_dodojr_Anim_0004A0; + +#define dobject_dodojr_Anim_0005F0 "__OTR__objects/object_dodojr/object_dodojr_Anim_0005F0" +static const ALIGN_ASSET(2) char object_dodojr_Anim_0005F0[] = dobject_dodojr_Anim_0005F0; + +#define dobject_dodojr_Anim_000724 "__OTR__objects/object_dodojr/object_dodojr_Anim_000724" +static const ALIGN_ASSET(2) char object_dodojr_Anim_000724[] = dobject_dodojr_Anim_000724; + +#define dobject_dodojr_Anim_000860 "__OTR__objects/object_dodojr/object_dodojr_Anim_000860" +static const ALIGN_ASSET(2) char object_dodojr_Anim_000860[] = dobject_dodojr_Anim_000860; + +#define dobject_dodojr_Anim_0009D4 "__OTR__objects/object_dodojr/object_dodojr_Anim_0009D4" +static const ALIGN_ASSET(2) char object_dodojr_Anim_0009D4[] = dobject_dodojr_Anim_0009D4; + +#define dobject_dodojr_DL_001180 "__OTR__objects/object_dodojr/object_dodojr_DL_001180" +static const ALIGN_ASSET(2) char object_dodojr_DL_001180[] = dobject_dodojr_DL_001180; + +#define dobject_dodojr_DL_0012E0 "__OTR__objects/object_dodojr/object_dodojr_DL_0012E0" +static const ALIGN_ASSET(2) char object_dodojr_DL_0012E0[] = dobject_dodojr_DL_0012E0; + +#define dobject_dodojr_DL_0013E8 "__OTR__objects/object_dodojr/object_dodojr_DL_0013E8" +static const ALIGN_ASSET(2) char object_dodojr_DL_0013E8[] = dobject_dodojr_DL_0013E8; + +#define dobject_dodojr_DL_001508 "__OTR__objects/object_dodojr/object_dodojr_DL_001508" +static const ALIGN_ASSET(2) char object_dodojr_DL_001508[] = dobject_dodojr_DL_001508; + +#define dobject_dodojr_DL_001618 "__OTR__objects/object_dodojr/object_dodojr_DL_001618" +static const ALIGN_ASSET(2) char object_dodojr_DL_001618[] = dobject_dodojr_DL_001618; + +#define dobject_dodojr_Tex_001700 "__OTR__objects/object_dodojr/object_dodojr_Tex_001700" +static const ALIGN_ASSET(2) char object_dodojr_Tex_001700[] = dobject_dodojr_Tex_001700; + +#define dobject_dodojr_Tex_001900 "__OTR__objects/object_dodojr/object_dodojr_Tex_001900" +static const ALIGN_ASSET(2) char object_dodojr_Tex_001900[] = dobject_dodojr_Tex_001900; + +#define dobject_dodojr_Tex_001A00 "__OTR__objects/object_dodojr/object_dodojr_Tex_001A00" +static const ALIGN_ASSET(2) char object_dodojr_Tex_001A00[] = dobject_dodojr_Tex_001A00; + +#define dobject_dodojr_Tex_001C00 "__OTR__objects/object_dodojr/object_dodojr_Tex_001C00" +static const ALIGN_ASSET(2) char object_dodojr_Tex_001C00[] = dobject_dodojr_Tex_001C00; + +#define dobject_dodojr_Skel_0020E0 "__OTR__objects/object_dodojr/object_dodojr_Skel_0020E0" +static const ALIGN_ASSET(2) char object_dodojr_Skel_0020E0[] = dobject_dodojr_Skel_0020E0; \ No newline at end of file diff --git a/soh/assets/objects/object_dodongo/object_dodongo.h b/soh/assets/objects/object_dodongo/object_dodongo.h index 0d29a3d97..df9de624c 100644 --- a/soh/assets/objects/object_dodongo/object_dodongo.h +++ b/soh/assets/objects/object_dodongo/object_dodongo.h @@ -1,261 +1,114 @@ #pragma once -#define dgDodongoDieAnim "__OTR__objects/object_dodongo/gDodongoDieAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoDieAnim[] = dgDodongoDieAnim; -#else -static const char gDodongoDieAnim[] __attribute__((aligned (2))) = dgDodongoDieAnim; -#endif - -#define dgDodongoDamageAnim "__OTR__objects/object_dodongo/gDodongoDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoDamageAnim[] = dgDodongoDamageAnim; -#else -static const char gDodongoDamageAnim[] __attribute__((aligned (2))) = dgDodongoDamageAnim; -#endif - -#define dgDodongoBreatheFireAnim "__OTR__objects/object_dodongo/gDodongoBreatheFireAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoBreatheFireAnim[] = dgDodongoBreatheFireAnim; -#else -static const char gDodongoBreatheFireAnim[] __attribute__((aligned (2))) = dgDodongoBreatheFireAnim; -#endif - -#define dgDodongoAfterBreatheFireAnim "__OTR__objects/object_dodongo/gDodongoAfterBreatheFireAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoAfterBreatheFireAnim[] = dgDodongoAfterBreatheFireAnim; -#else -static const char gDodongoAfterBreatheFireAnim[] __attribute__((aligned (2))) = dgDodongoAfterBreatheFireAnim; -#endif - -#define dgDodongoSweepTailRightAnim "__OTR__objects/object_dodongo/gDodongoSweepTailRightAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSweepTailRightAnim[] = dgDodongoSweepTailRightAnim; -#else -static const char gDodongoSweepTailRightAnim[] __attribute__((aligned (2))) = dgDodongoSweepTailRightAnim; -#endif - -#define dgDodongoSweepTailLeftAnim "__OTR__objects/object_dodongo/gDodongoSweepTailLeftAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSweepTailLeftAnim[] = dgDodongoSweepTailLeftAnim; -#else -static const char gDodongoSweepTailLeftAnim[] __attribute__((aligned (2))) = dgDodongoSweepTailLeftAnim; -#endif - -#define dgDodongoWaitAnim "__OTR__objects/object_dodongo/gDodongoWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoWaitAnim[] = dgDodongoWaitAnim; -#else -static const char gDodongoWaitAnim[] __attribute__((aligned (2))) = dgDodongoWaitAnim; -#endif - -#define dgDodongoWalkAnim "__OTR__objects/object_dodongo/gDodongoWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoWalkAnim[] = dgDodongoWalkAnim; -#else -static const char gDodongoWalkAnim[] __attribute__((aligned (2))) = dgDodongoWalkAnim; -#endif - -#define dgDodongoTwitchAnim "__OTR__objects/object_dodongo/gDodongoTwitchAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoTwitchAnim[] = dgDodongoTwitchAnim; -#else -static const char gDodongoTwitchAnim[] __attribute__((aligned (2))) = dgDodongoTwitchAnim; -#endif - -#define dgDodongoGetUpAnim "__OTR__objects/object_dodongo/gDodongoGetUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoGetUpAnim[] = dgDodongoGetUpAnim; -#else -static const char gDodongoGetUpAnim[] __attribute__((aligned (2))) = dgDodongoGetUpAnim; -#endif - -#define dgDodongoLowerTailAnim "__OTR__objects/object_dodongo/gDodongoLowerTailAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoLowerTailAnim[] = dgDodongoLowerTailAnim; -#else -static const char gDodongoLowerTailAnim[] __attribute__((aligned (2))) = dgDodongoLowerTailAnim; -#endif - -#define dgDodongoRightStepAnim "__OTR__objects/object_dodongo/gDodongoRightStepAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoRightStepAnim[] = dgDodongoRightStepAnim; -#else -static const char gDodongoRightStepAnim[] __attribute__((aligned (2))) = dgDodongoRightStepAnim; -#endif - -#define dgDodongoLeftStepAnim "__OTR__objects/object_dodongo/gDodongoLeftStepAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoLeftStepAnim[] = dgDodongoLeftStepAnim; -#else -static const char gDodongoLeftStepAnim[] __attribute__((aligned (2))) = dgDodongoLeftStepAnim; -#endif - -#define dgDodongoSpikeTex "__OTR__objects/object_dodongo/gDodongoSpikeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSpikeTex[] = dgDodongoSpikeTex; -#else -static const char gDodongoSpikeTex[] __attribute__((aligned (2))) = dgDodongoSpikeTex; -#endif - -#define dgDodongoRoughSkinTex "__OTR__objects/object_dodongo/gDodongoRoughSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoRoughSkinTex[] = dgDodongoRoughSkinTex; -#else -static const char gDodongoRoughSkinTex[] __attribute__((aligned (2))) = dgDodongoRoughSkinTex; -#endif - -#define dgDodongoSkinTex "__OTR__objects/object_dodongo/gDodongoSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkinTex[] = dgDodongoSkinTex; -#else -static const char gDodongoSkinTex[] __attribute__((aligned (2))) = dgDodongoSkinTex; -#endif - -#define dgDodongoFaceTex "__OTR__objects/object_dodongo/gDodongoFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFaceTex[] = dgDodongoFaceTex; -#else -static const char gDodongoFaceTex[] __attribute__((aligned (2))) = dgDodongoFaceTex; -#endif - -#define dgDodongoInsideMouthTex "__OTR__objects/object_dodongo/gDodongoInsideMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoInsideMouthTex[] = dgDodongoInsideMouthTex; -#else -static const char gDodongoInsideMouthTex[] __attribute__((aligned (2))) = dgDodongoInsideMouthTex; -#endif - -#define dgDodongoToothTex "__OTR__objects/object_dodongo/gDodongoToothTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoToothTex[] = dgDodongoToothTex; -#else -static const char gDodongoToothTex[] __attribute__((aligned (2))) = dgDodongoToothTex; -#endif - -#define dgDodongoSkel "__OTR__objects/object_dodongo/gDodongoSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkel[] = dgDodongoSkel; -#else -static const char gDodongoSkel[] __attribute__((aligned (2))) = dgDodongoSkel; -#endif - -#define dgDodongoFire0Tex "__OTR__objects/object_dodongo/gDodongoFire0Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFire0Tex[] = dgDodongoFire0Tex; -#else -static const char gDodongoFire0Tex[] __attribute__((aligned (2))) = dgDodongoFire0Tex; -#endif - -#define dgDodongoFire1Tex "__OTR__objects/object_dodongo/gDodongoFire1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFire1Tex[] = dgDodongoFire1Tex; -#else -static const char gDodongoFire1Tex[] __attribute__((aligned (2))) = dgDodongoFire1Tex; -#endif - -#define dgDodongoFire2Tex "__OTR__objects/object_dodongo/gDodongoFire2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFire2Tex[] = dgDodongoFire2Tex; -#else -static const char gDodongoFire2Tex[] __attribute__((aligned (2))) = dgDodongoFire2Tex; -#endif - -#define dgDodongoFire3Tex "__OTR__objects/object_dodongo/gDodongoFire3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFire3Tex[] = dgDodongoFire3Tex; -#else -static const char gDodongoFire3Tex[] __attribute__((aligned (2))) = dgDodongoFire3Tex; -#endif - -#define dgDodongoFireDL "__OTR__objects/object_dodongo/gDodongoFireDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoFireDL[] = dgDodongoFireDL; -#else -static const char gDodongoFireDL[] __attribute__((aligned (2))) = dgDodongoFireDL; -#endif - -#define dgDodongoSkelLimbsLimb_008174DL_006FD8 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008174DL_006FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_008174DL_006FD8[] = dgDodongoSkelLimbsLimb_008174DL_006FD8; -#else -static const char gDodongoSkelLimbsLimb_008174DL_006FD8[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_008174DL_006FD8; -#endif - -#define dgDodongoSkelLimbsLimb_008180DL_006D88 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008180DL_006D88" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_008180DL_006D88[] = dgDodongoSkelLimbsLimb_008180DL_006D88; -#else -static const char gDodongoSkelLimbsLimb_008180DL_006D88[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_008180DL_006D88; -#endif - -#define dgDodongoSkelLimbsLimb_0081C8DL_006CA8 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_0081C8DL_006CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_0081C8DL_006CA8[] = dgDodongoSkelLimbsLimb_0081C8DL_006CA8; -#else -static const char gDodongoSkelLimbsLimb_0081C8DL_006CA8[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_0081C8DL_006CA8; -#endif - -#define dgDodongoSkelLimbsLimb_0081D4DL_006BA8 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_0081D4DL_006BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_0081D4DL_006BA8[] = dgDodongoSkelLimbsLimb_0081D4DL_006BA8; -#else -static const char gDodongoSkelLimbsLimb_0081D4DL_006BA8[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_0081D4DL_006BA8; -#endif - -#define dgDodongoSkelLimbsLimb_0081E0DL_006AA0 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_0081E0DL_006AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_0081E0DL_006AA0[] = dgDodongoSkelLimbsLimb_0081E0DL_006AA0; -#else -static const char gDodongoSkelLimbsLimb_0081E0DL_006AA0[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_0081E0DL_006AA0; -#endif - -#define dgDodongoSkelLimbsLimb_0081ECDL_006960 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_0081ECDL_006960" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_0081ECDL_006960[] = dgDodongoSkelLimbsLimb_0081ECDL_006960; -#else -static const char gDodongoSkelLimbsLimb_0081ECDL_006960[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_0081ECDL_006960; -#endif - -#define dgDodongoSkelLimbsLimb_008228DL_006640 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008228DL_006640" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_008228DL_006640[] = dgDodongoSkelLimbsLimb_008228DL_006640; -#else -static const char gDodongoSkelLimbsLimb_008228DL_006640[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_008228DL_006640; -#endif - -#define dgDodongoSkelLimbsLimb_008234DL_006750 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008234DL_006750" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_008234DL_006750[] = dgDodongoSkelLimbsLimb_008234DL_006750; -#else -static const char gDodongoSkelLimbsLimb_008234DL_006750[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_008234DL_006750; -#endif - -#define dgDodongoSkelLimbsLimb_008240DL_006860 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008240DL_006860" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_008240DL_006860[] = dgDodongoSkelLimbsLimb_008240DL_006860; -#else -static const char gDodongoSkelLimbsLimb_008240DL_006860[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_008240DL_006860; -#endif - -#define dgDodongoSkelLimbsLimb_00827CDL_0073A8 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_00827CDL_0073A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_00827CDL_0073A8[] = dgDodongoSkelLimbsLimb_00827CDL_0073A8; -#else -static const char gDodongoSkelLimbsLimb_00827CDL_0073A8[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_00827CDL_0073A8; -#endif - -#define dgDodongoSkelLimbsLimb_008288DL_007298 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008288DL_007298" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_008288DL_007298[] = dgDodongoSkelLimbsLimb_008288DL_007298; -#else -static const char gDodongoSkelLimbsLimb_008288DL_007298[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_008288DL_007298; -#endif - -#define dgDodongoSkelLimbsLimb_008294DL_007198 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008294DL_007198" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongoSkelLimbsLimb_008294DL_007198[] = dgDodongoSkelLimbsLimb_008294DL_007198; -#else -static const char gDodongoSkelLimbsLimb_008294DL_007198[] __attribute__((aligned (2))) = dgDodongoSkelLimbsLimb_008294DL_007198; -#endif - +#include "align_asset_macro.h" + +#define dgDodongoDieAnim "__OTR__objects/object_dodongo/gDodongoDieAnim" +static const ALIGN_ASSET(2) char gDodongoDieAnim[] = dgDodongoDieAnim; + +#define dgDodongoDamageAnim "__OTR__objects/object_dodongo/gDodongoDamageAnim" +static const ALIGN_ASSET(2) char gDodongoDamageAnim[] = dgDodongoDamageAnim; + +#define dgDodongoBreatheFireAnim "__OTR__objects/object_dodongo/gDodongoBreatheFireAnim" +static const ALIGN_ASSET(2) char gDodongoBreatheFireAnim[] = dgDodongoBreatheFireAnim; + +#define dgDodongoAfterBreatheFireAnim "__OTR__objects/object_dodongo/gDodongoAfterBreatheFireAnim" +static const ALIGN_ASSET(2) char gDodongoAfterBreatheFireAnim[] = dgDodongoAfterBreatheFireAnim; + +#define dgDodongoSweepTailRightAnim "__OTR__objects/object_dodongo/gDodongoSweepTailRightAnim" +static const ALIGN_ASSET(2) char gDodongoSweepTailRightAnim[] = dgDodongoSweepTailRightAnim; + +#define dgDodongoSweepTailLeftAnim "__OTR__objects/object_dodongo/gDodongoSweepTailLeftAnim" +static const ALIGN_ASSET(2) char gDodongoSweepTailLeftAnim[] = dgDodongoSweepTailLeftAnim; + +#define dgDodongoWaitAnim "__OTR__objects/object_dodongo/gDodongoWaitAnim" +static const ALIGN_ASSET(2) char gDodongoWaitAnim[] = dgDodongoWaitAnim; + +#define dgDodongoWalkAnim "__OTR__objects/object_dodongo/gDodongoWalkAnim" +static const ALIGN_ASSET(2) char gDodongoWalkAnim[] = dgDodongoWalkAnim; + +#define dgDodongoTwitchAnim "__OTR__objects/object_dodongo/gDodongoTwitchAnim" +static const ALIGN_ASSET(2) char gDodongoTwitchAnim[] = dgDodongoTwitchAnim; + +#define dgDodongoGetUpAnim "__OTR__objects/object_dodongo/gDodongoGetUpAnim" +static const ALIGN_ASSET(2) char gDodongoGetUpAnim[] = dgDodongoGetUpAnim; + +#define dgDodongoLowerTailAnim "__OTR__objects/object_dodongo/gDodongoLowerTailAnim" +static const ALIGN_ASSET(2) char gDodongoLowerTailAnim[] = dgDodongoLowerTailAnim; + +#define dgDodongoRightStepAnim "__OTR__objects/object_dodongo/gDodongoRightStepAnim" +static const ALIGN_ASSET(2) char gDodongoRightStepAnim[] = dgDodongoRightStepAnim; + +#define dgDodongoLeftStepAnim "__OTR__objects/object_dodongo/gDodongoLeftStepAnim" +static const ALIGN_ASSET(2) char gDodongoLeftStepAnim[] = dgDodongoLeftStepAnim; + +#define dgDodongoSpikeTex "__OTR__objects/object_dodongo/gDodongoSpikeTex" +static const ALIGN_ASSET(2) char gDodongoSpikeTex[] = dgDodongoSpikeTex; + +#define dgDodongoRoughSkinTex "__OTR__objects/object_dodongo/gDodongoRoughSkinTex" +static const ALIGN_ASSET(2) char gDodongoRoughSkinTex[] = dgDodongoRoughSkinTex; + +#define dgDodongoSkinTex "__OTR__objects/object_dodongo/gDodongoSkinTex" +static const ALIGN_ASSET(2) char gDodongoSkinTex[] = dgDodongoSkinTex; + +#define dgDodongoFaceTex "__OTR__objects/object_dodongo/gDodongoFaceTex" +static const ALIGN_ASSET(2) char gDodongoFaceTex[] = dgDodongoFaceTex; + +#define dgDodongoInsideMouthTex "__OTR__objects/object_dodongo/gDodongoInsideMouthTex" +static const ALIGN_ASSET(2) char gDodongoInsideMouthTex[] = dgDodongoInsideMouthTex; + +#define dgDodongoToothTex "__OTR__objects/object_dodongo/gDodongoToothTex" +static const ALIGN_ASSET(2) char gDodongoToothTex[] = dgDodongoToothTex; + +#define dgDodongoSkel "__OTR__objects/object_dodongo/gDodongoSkel" +static const ALIGN_ASSET(2) char gDodongoSkel[] = dgDodongoSkel; + +#define dgDodongoFire0Tex "__OTR__objects/object_dodongo/gDodongoFire0Tex" +static const ALIGN_ASSET(2) char gDodongoFire0Tex[] = dgDodongoFire0Tex; + +#define dgDodongoFire1Tex "__OTR__objects/object_dodongo/gDodongoFire1Tex" +static const ALIGN_ASSET(2) char gDodongoFire1Tex[] = dgDodongoFire1Tex; + +#define dgDodongoFire2Tex "__OTR__objects/object_dodongo/gDodongoFire2Tex" +static const ALIGN_ASSET(2) char gDodongoFire2Tex[] = dgDodongoFire2Tex; + +#define dgDodongoFire3Tex "__OTR__objects/object_dodongo/gDodongoFire3Tex" +static const ALIGN_ASSET(2) char gDodongoFire3Tex[] = dgDodongoFire3Tex; + +#define dgDodongoFireDL "__OTR__objects/object_dodongo/gDodongoFireDL" +static const ALIGN_ASSET(2) char gDodongoFireDL[] = dgDodongoFireDL; + +#define dgDodongoSkelLimbsLimb_008174DL_006FD8 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008174DL_006FD8" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_008174DL_006FD8[] = dgDodongoSkelLimbsLimb_008174DL_006FD8; + +#define dgDodongoSkelLimbsLimb_008180DL_006D88 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008180DL_006D88" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_008180DL_006D88[] = dgDodongoSkelLimbsLimb_008180DL_006D88; + +#define dgDodongoSkelLimbsLimb_0081C8DL_006CA8 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_0081C8DL_006CA8" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_0081C8DL_006CA8[] = dgDodongoSkelLimbsLimb_0081C8DL_006CA8; + +#define dgDodongoSkelLimbsLimb_0081D4DL_006BA8 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_0081D4DL_006BA8" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_0081D4DL_006BA8[] = dgDodongoSkelLimbsLimb_0081D4DL_006BA8; + +#define dgDodongoSkelLimbsLimb_0081E0DL_006AA0 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_0081E0DL_006AA0" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_0081E0DL_006AA0[] = dgDodongoSkelLimbsLimb_0081E0DL_006AA0; + +#define dgDodongoSkelLimbsLimb_0081ECDL_006960 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_0081ECDL_006960" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_0081ECDL_006960[] = dgDodongoSkelLimbsLimb_0081ECDL_006960; + +#define dgDodongoSkelLimbsLimb_008228DL_006640 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008228DL_006640" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_008228DL_006640[] = dgDodongoSkelLimbsLimb_008228DL_006640; + +#define dgDodongoSkelLimbsLimb_008234DL_006750 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008234DL_006750" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_008234DL_006750[] = dgDodongoSkelLimbsLimb_008234DL_006750; + +#define dgDodongoSkelLimbsLimb_008240DL_006860 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008240DL_006860" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_008240DL_006860[] = dgDodongoSkelLimbsLimb_008240DL_006860; + +#define dgDodongoSkelLimbsLimb_00827CDL_0073A8 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_00827CDL_0073A8" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_00827CDL_0073A8[] = dgDodongoSkelLimbsLimb_00827CDL_0073A8; + +#define dgDodongoSkelLimbsLimb_008288DL_007298 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008288DL_007298" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_008288DL_007298[] = dgDodongoSkelLimbsLimb_008288DL_007298; + +#define dgDodongoSkelLimbsLimb_008294DL_007198 "__OTR__objects/object_dodongo/gDodongoSkelLimbsLimb_008294DL_007198" +static const ALIGN_ASSET(2) char gDodongoSkelLimbsLimb_008294DL_007198[] = dgDodongoSkelLimbsLimb_008294DL_007198; \ No newline at end of file diff --git a/soh/assets/objects/object_dog/object_dog.h b/soh/assets/objects/object_dog/object_dog.h index 1266058eb..21455d738 100644 --- a/soh/assets/objects/object_dog/object_dog.h +++ b/soh/assets/objects/object_dog/object_dog.h @@ -1,177 +1,78 @@ #pragma once -#define dgDogBarkAnim "__OTR__objects/object_dog/gDogBarkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogBarkAnim[] = dgDogBarkAnim; -#else -static const char gDogBarkAnim[] __attribute__((aligned (2))) = dgDogBarkAnim; -#endif - -#define dgDogBowAnim "__OTR__objects/object_dog/gDogBowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogBowAnim[] = dgDogBowAnim; -#else -static const char gDogBowAnim[] __attribute__((aligned (2))) = dgDogBowAnim; -#endif - -#define dgDogBow2Anim "__OTR__objects/object_dog/gDogBow2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogBow2Anim[] = dgDogBow2Anim; -#else -static const char gDogBow2Anim[] __attribute__((aligned (2))) = dgDogBow2Anim; -#endif - -#define dgDogRunAnim "__OTR__objects/object_dog/gDogRunAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogRunAnim[] = dgDogRunAnim; -#else -static const char gDogRunAnim[] __attribute__((aligned (2))) = dgDogRunAnim; -#endif - -#define dgDogSitAnim "__OTR__objects/object_dog/gDogSitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogSitAnim[] = dgDogSitAnim; -#else -static const char gDogSitAnim[] __attribute__((aligned (2))) = dgDogSitAnim; -#endif - -#define dgDogWalkAnim "__OTR__objects/object_dog/gDogWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogWalkAnim[] = dgDogWalkAnim; -#else -static const char gDogWalkAnim[] __attribute__((aligned (2))) = dgDogWalkAnim; -#endif - -#define dgDogFur1Tex "__OTR__objects/object_dog/gDogFur1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFur1Tex[] = dgDogFur1Tex; -#else -static const char gDogFur1Tex[] __attribute__((aligned (2))) = dgDogFur1Tex; -#endif - -#define dgDogFur2Tex "__OTR__objects/object_dog/gDogFur2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFur2Tex[] = dgDogFur2Tex; -#else -static const char gDogFur2Tex[] __attribute__((aligned (2))) = dgDogFur2Tex; -#endif - -#define dgDogFur3Tex "__OTR__objects/object_dog/gDogFur3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFur3Tex[] = dgDogFur3Tex; -#else -static const char gDogFur3Tex[] __attribute__((aligned (2))) = dgDogFur3Tex; -#endif - -#define dgDogFaceEyeTex "__OTR__objects/object_dog/gDogFaceEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFaceEyeTex[] = dgDogFaceEyeTex; -#else -static const char gDogFaceEyeTex[] __attribute__((aligned (2))) = dgDogFaceEyeTex; -#endif - -#define dgDogFaceNoseTex "__OTR__objects/object_dog/gDogFaceNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFaceNoseTex[] = dgDogFaceNoseTex; -#else -static const char gDogFaceNoseTex[] __attribute__((aligned (2))) = dgDogFaceNoseTex; -#endif - -#define dgDogFur4Tex "__OTR__objects/object_dog/gDogFur4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFur4Tex[] = dgDogFur4Tex; -#else -static const char gDogFur4Tex[] __attribute__((aligned (2))) = dgDogFur4Tex; -#endif - -#define dgDogPawTex "__OTR__objects/object_dog/gDogPawTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogPawTex[] = dgDogPawTex; -#else -static const char gDogPawTex[] __attribute__((aligned (2))) = dgDogPawTex; -#endif - -#define dgDogFaceHairTex "__OTR__objects/object_dog/gDogFaceHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFaceHairTex[] = dgDogFaceHairTex; -#else -static const char gDogFaceHairTex[] __attribute__((aligned (2))) = dgDogFaceHairTex; -#endif - -#define dgDogHeadDL "__OTR__objects/object_dog/gDogHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogHeadDL[] = dgDogHeadDL; -#else -static const char gDogHeadDL[] __attribute__((aligned (2))) = dgDogHeadDL; -#endif - -#define dgDogRightFaceHairDL "__OTR__objects/object_dog/gDogRightFaceHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogRightFaceHairDL[] = dgDogRightFaceHairDL; -#else -static const char gDogRightFaceHairDL[] __attribute__((aligned (2))) = dgDogRightFaceHairDL; -#endif - -#define dgDogLeftFaceHairDL "__OTR__objects/object_dog/gDogLeftFaceHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogLeftFaceHairDL[] = dgDogLeftFaceHairDL; -#else -static const char gDogLeftFaceHairDL[] __attribute__((aligned (2))) = dgDogLeftFaceHairDL; -#endif - -#define dgDogFrontBodyDL "__OTR__objects/object_dog/gDogFrontBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFrontBodyDL[] = dgDogFrontBodyDL; -#else -static const char gDogFrontBodyDL[] __attribute__((aligned (2))) = dgDogFrontBodyDL; -#endif - -#define dgDogFrontRightLegDL "__OTR__objects/object_dog/gDogFrontRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFrontRightLegDL[] = dgDogFrontRightLegDL; -#else -static const char gDogFrontRightLegDL[] __attribute__((aligned (2))) = dgDogFrontRightLegDL; -#endif - -#define dgDogFrontLeftLegDL "__OTR__objects/object_dog/gDogFrontLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogFrontLeftLegDL[] = dgDogFrontLeftLegDL; -#else -static const char gDogFrontLeftLegDL[] __attribute__((aligned (2))) = dgDogFrontLeftLegDL; -#endif - -#define dgDogBackBodyDL "__OTR__objects/object_dog/gDogBackBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogBackBodyDL[] = dgDogBackBodyDL; -#else -static const char gDogBackBodyDL[] __attribute__((aligned (2))) = dgDogBackBodyDL; -#endif - -#define dgDogBackRightLegDL "__OTR__objects/object_dog/gDogBackRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogBackRightLegDL[] = dgDogBackRightLegDL; -#else -static const char gDogBackRightLegDL[] __attribute__((aligned (2))) = dgDogBackRightLegDL; -#endif - -#define dgDogBackLeftLegDL "__OTR__objects/object_dog/gDogBackLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogBackLeftLegDL[] = dgDogBackLeftLegDL; -#else -static const char gDogBackLeftLegDL[] __attribute__((aligned (2))) = dgDogBackLeftLegDL; -#endif - -#define dgDogTailDL "__OTR__objects/object_dog/gDogTailDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogTailDL[] = dgDogTailDL; -#else -static const char gDogTailDL[] __attribute__((aligned (2))) = dgDogTailDL; -#endif - -#define dgDogSkel "__OTR__objects/object_dog/gDogSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDogSkel[] = dgDogSkel; -#else -static const char gDogSkel[] __attribute__((aligned (2))) = dgDogSkel; -#endif - +#include "align_asset_macro.h" + +#define dgDogBarkAnim "__OTR__objects/object_dog/gDogBarkAnim" +static const ALIGN_ASSET(2) char gDogBarkAnim[] = dgDogBarkAnim; + +#define dgDogBowAnim "__OTR__objects/object_dog/gDogBowAnim" +static const ALIGN_ASSET(2) char gDogBowAnim[] = dgDogBowAnim; + +#define dgDogBow2Anim "__OTR__objects/object_dog/gDogBow2Anim" +static const ALIGN_ASSET(2) char gDogBow2Anim[] = dgDogBow2Anim; + +#define dgDogRunAnim "__OTR__objects/object_dog/gDogRunAnim" +static const ALIGN_ASSET(2) char gDogRunAnim[] = dgDogRunAnim; + +#define dgDogSitAnim "__OTR__objects/object_dog/gDogSitAnim" +static const ALIGN_ASSET(2) char gDogSitAnim[] = dgDogSitAnim; + +#define dgDogWalkAnim "__OTR__objects/object_dog/gDogWalkAnim" +static const ALIGN_ASSET(2) char gDogWalkAnim[] = dgDogWalkAnim; + +#define dgDogFur1Tex "__OTR__objects/object_dog/gDogFur1Tex" +static const ALIGN_ASSET(2) char gDogFur1Tex[] = dgDogFur1Tex; + +#define dgDogFur2Tex "__OTR__objects/object_dog/gDogFur2Tex" +static const ALIGN_ASSET(2) char gDogFur2Tex[] = dgDogFur2Tex; + +#define dgDogFur3Tex "__OTR__objects/object_dog/gDogFur3Tex" +static const ALIGN_ASSET(2) char gDogFur3Tex[] = dgDogFur3Tex; + +#define dgDogFaceEyeTex "__OTR__objects/object_dog/gDogFaceEyeTex" +static const ALIGN_ASSET(2) char gDogFaceEyeTex[] = dgDogFaceEyeTex; + +#define dgDogFaceNoseTex "__OTR__objects/object_dog/gDogFaceNoseTex" +static const ALIGN_ASSET(2) char gDogFaceNoseTex[] = dgDogFaceNoseTex; + +#define dgDogFur4Tex "__OTR__objects/object_dog/gDogFur4Tex" +static const ALIGN_ASSET(2) char gDogFur4Tex[] = dgDogFur4Tex; + +#define dgDogPawTex "__OTR__objects/object_dog/gDogPawTex" +static const ALIGN_ASSET(2) char gDogPawTex[] = dgDogPawTex; + +#define dgDogFaceHairTex "__OTR__objects/object_dog/gDogFaceHairTex" +static const ALIGN_ASSET(2) char gDogFaceHairTex[] = dgDogFaceHairTex; + +#define dgDogHeadDL "__OTR__objects/object_dog/gDogHeadDL" +static const ALIGN_ASSET(2) char gDogHeadDL[] = dgDogHeadDL; + +#define dgDogRightFaceHairDL "__OTR__objects/object_dog/gDogRightFaceHairDL" +static const ALIGN_ASSET(2) char gDogRightFaceHairDL[] = dgDogRightFaceHairDL; + +#define dgDogLeftFaceHairDL "__OTR__objects/object_dog/gDogLeftFaceHairDL" +static const ALIGN_ASSET(2) char gDogLeftFaceHairDL[] = dgDogLeftFaceHairDL; + +#define dgDogFrontBodyDL "__OTR__objects/object_dog/gDogFrontBodyDL" +static const ALIGN_ASSET(2) char gDogFrontBodyDL[] = dgDogFrontBodyDL; + +#define dgDogFrontRightLegDL "__OTR__objects/object_dog/gDogFrontRightLegDL" +static const ALIGN_ASSET(2) char gDogFrontRightLegDL[] = dgDogFrontRightLegDL; + +#define dgDogFrontLeftLegDL "__OTR__objects/object_dog/gDogFrontLeftLegDL" +static const ALIGN_ASSET(2) char gDogFrontLeftLegDL[] = dgDogFrontLeftLegDL; + +#define dgDogBackBodyDL "__OTR__objects/object_dog/gDogBackBodyDL" +static const ALIGN_ASSET(2) char gDogBackBodyDL[] = dgDogBackBodyDL; + +#define dgDogBackRightLegDL "__OTR__objects/object_dog/gDogBackRightLegDL" +static const ALIGN_ASSET(2) char gDogBackRightLegDL[] = dgDogBackRightLegDL; + +#define dgDogBackLeftLegDL "__OTR__objects/object_dog/gDogBackLeftLegDL" +static const ALIGN_ASSET(2) char gDogBackLeftLegDL[] = dgDogBackLeftLegDL; + +#define dgDogTailDL "__OTR__objects/object_dog/gDogTailDL" +static const ALIGN_ASSET(2) char gDogTailDL[] = dgDogTailDL; + +#define dgDogSkel "__OTR__objects/object_dog/gDogSkel" +static const ALIGN_ASSET(2) char gDogSkel[] = dgDogSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_door_gerudo/object_door_gerudo.h b/soh/assets/objects/object_door_gerudo/object_door_gerudo.h index 226d542e7..d50ef58b2 100644 --- a/soh/assets/objects/object_door_gerudo/object_door_gerudo.h +++ b/soh/assets/objects/object_door_gerudo/object_door_gerudo.h @@ -1,23 +1,12 @@ #pragma once -#define dgGerudoCellDoorTex "__OTR__objects/object_door_gerudo/gGerudoCellDoorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoCellDoorTex[] = dgGerudoCellDoorTex; -#else -static const char gGerudoCellDoorTex[] __attribute__((aligned (2))) = dgGerudoCellDoorTex; -#endif - -#define dgGerudoCellDoorDL "__OTR__objects/object_door_gerudo/gGerudoCellDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoCellDoorDL[] = dgGerudoCellDoorDL; -#else -static const char gGerudoCellDoorDL[] __attribute__((aligned (2))) = dgGerudoCellDoorDL; -#endif - -#define dgGerudoCellDoorCol "__OTR__objects/object_door_gerudo/gGerudoCellDoorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoCellDoorCol[] = dgGerudoCellDoorCol; -#else -static const char gGerudoCellDoorCol[] __attribute__((aligned (2))) = dgGerudoCellDoorCol; -#endif - +#include "align_asset_macro.h" + +#define dgGerudoCellDoorTex "__OTR__objects/object_door_gerudo/gGerudoCellDoorTex" +static const ALIGN_ASSET(2) char gGerudoCellDoorTex[] = dgGerudoCellDoorTex; + +#define dgGerudoCellDoorDL "__OTR__objects/object_door_gerudo/gGerudoCellDoorDL" +static const ALIGN_ASSET(2) char gGerudoCellDoorDL[] = dgGerudoCellDoorDL; + +#define dgGerudoCellDoorCol "__OTR__objects/object_door_gerudo/gGerudoCellDoorCol" +static const ALIGN_ASSET(2) char gGerudoCellDoorCol[] = dgGerudoCellDoorCol; \ No newline at end of file diff --git a/soh/assets/objects/object_door_killer/object_door_killer.h b/soh/assets/objects/object_door_killer/object_door_killer.h index d4ccc7f17..0c93360a7 100644 --- a/soh/assets/objects/object_door_killer/object_door_killer.h +++ b/soh/assets/objects/object_door_killer/object_door_killer.h @@ -1,93 +1,42 @@ #pragma once -#define dobject_door_killer_DL_000A20 "__OTR__objects/object_door_killer/object_door_killer_DL_000A20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_000A20[] = dobject_door_killer_DL_000A20; -#else -static const char object_door_killer_DL_000A20[] __attribute__((aligned (2))) = dobject_door_killer_DL_000A20; -#endif - -#define dobject_door_killer_DL_000AD8 "__OTR__objects/object_door_killer/object_door_killer_DL_000AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_000AD8[] = dobject_door_killer_DL_000AD8; -#else -static const char object_door_killer_DL_000AD8[] __attribute__((aligned (2))) = dobject_door_killer_DL_000AD8; -#endif - -#define dobject_door_killer_DL_000BB0 "__OTR__objects/object_door_killer/object_door_killer_DL_000BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_000BB0[] = dobject_door_killer_DL_000BB0; -#else -static const char object_door_killer_DL_000BB0[] __attribute__((aligned (2))) = dobject_door_killer_DL_000BB0; -#endif - -#define dobject_door_killer_DL_000C88 "__OTR__objects/object_door_killer/object_door_killer_DL_000C88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_000C88[] = dobject_door_killer_DL_000C88; -#else -static const char object_door_killer_DL_000C88[] __attribute__((aligned (2))) = dobject_door_killer_DL_000C88; -#endif - -#define dobject_door_killer_DL_000D60 "__OTR__objects/object_door_killer/object_door_killer_DL_000D60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_000D60[] = dobject_door_killer_DL_000D60; -#else -static const char object_door_killer_DL_000D60[] __attribute__((aligned (2))) = dobject_door_killer_DL_000D60; -#endif - -#define dobject_door_killer_DL_000E38 "__OTR__objects/object_door_killer/object_door_killer_DL_000E38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_000E38[] = dobject_door_killer_DL_000E38; -#else -static const char object_door_killer_DL_000E38[] __attribute__((aligned (2))) = dobject_door_killer_DL_000E38; -#endif - -#define dobject_door_killer_DL_000F10 "__OTR__objects/object_door_killer/object_door_killer_DL_000F10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_000F10[] = dobject_door_killer_DL_000F10; -#else -static const char object_door_killer_DL_000F10[] __attribute__((aligned (2))) = dobject_door_killer_DL_000F10; -#endif - -#define dobject_door_killer_DL_000FE8 "__OTR__objects/object_door_killer/object_door_killer_DL_000FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_000FE8[] = dobject_door_killer_DL_000FE8; -#else -static const char object_door_killer_DL_000FE8[] __attribute__((aligned (2))) = dobject_door_killer_DL_000FE8; -#endif - -#define dobject_door_killer_DL_001250 "__OTR__objects/object_door_killer/object_door_killer_DL_001250" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_001250[] = dobject_door_killer_DL_001250; -#else -static const char object_door_killer_DL_001250[] __attribute__((aligned (2))) = dobject_door_killer_DL_001250; -#endif - -#define dobject_door_killer_DL_001550 "__OTR__objects/object_door_killer/object_door_killer_DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_001550[] = dobject_door_killer_DL_001550; -#else -static const char object_door_killer_DL_001550[] __attribute__((aligned (2))) = dobject_door_killer_DL_001550; -#endif - -#define dobject_door_killer_DL_0017B8 "__OTR__objects/object_door_killer/object_door_killer_DL_0017B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_0017B8[] = dobject_door_killer_DL_0017B8; -#else -static const char object_door_killer_DL_0017B8[] __attribute__((aligned (2))) = dobject_door_killer_DL_0017B8; -#endif - -#define dobject_door_killer_DL_001A58 "__OTR__objects/object_door_killer/object_door_killer_DL_001A58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_DL_001A58[] = dobject_door_killer_DL_001A58; -#else -static const char object_door_killer_DL_001A58[] __attribute__((aligned (2))) = dobject_door_killer_DL_001A58; -#endif - -#define dobject_door_killer_Skel_001BC8 "__OTR__objects/object_door_killer/object_door_killer_Skel_001BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_door_killer_Skel_001BC8[] = dobject_door_killer_Skel_001BC8; -#else -static const char object_door_killer_Skel_001BC8[] __attribute__((aligned (2))) = dobject_door_killer_Skel_001BC8; -#endif - +#include "align_asset_macro.h" + +#define dobject_door_killer_DL_000A20 "__OTR__objects/object_door_killer/object_door_killer_DL_000A20" +static const ALIGN_ASSET(2) char object_door_killer_DL_000A20[] = dobject_door_killer_DL_000A20; + +#define dobject_door_killer_DL_000AD8 "__OTR__objects/object_door_killer/object_door_killer_DL_000AD8" +static const ALIGN_ASSET(2) char object_door_killer_DL_000AD8[] = dobject_door_killer_DL_000AD8; + +#define dobject_door_killer_DL_000BB0 "__OTR__objects/object_door_killer/object_door_killer_DL_000BB0" +static const ALIGN_ASSET(2) char object_door_killer_DL_000BB0[] = dobject_door_killer_DL_000BB0; + +#define dobject_door_killer_DL_000C88 "__OTR__objects/object_door_killer/object_door_killer_DL_000C88" +static const ALIGN_ASSET(2) char object_door_killer_DL_000C88[] = dobject_door_killer_DL_000C88; + +#define dobject_door_killer_DL_000D60 "__OTR__objects/object_door_killer/object_door_killer_DL_000D60" +static const ALIGN_ASSET(2) char object_door_killer_DL_000D60[] = dobject_door_killer_DL_000D60; + +#define dobject_door_killer_DL_000E38 "__OTR__objects/object_door_killer/object_door_killer_DL_000E38" +static const ALIGN_ASSET(2) char object_door_killer_DL_000E38[] = dobject_door_killer_DL_000E38; + +#define dobject_door_killer_DL_000F10 "__OTR__objects/object_door_killer/object_door_killer_DL_000F10" +static const ALIGN_ASSET(2) char object_door_killer_DL_000F10[] = dobject_door_killer_DL_000F10; + +#define dobject_door_killer_DL_000FE8 "__OTR__objects/object_door_killer/object_door_killer_DL_000FE8" +static const ALIGN_ASSET(2) char object_door_killer_DL_000FE8[] = dobject_door_killer_DL_000FE8; + +#define dobject_door_killer_DL_001250 "__OTR__objects/object_door_killer/object_door_killer_DL_001250" +static const ALIGN_ASSET(2) char object_door_killer_DL_001250[] = dobject_door_killer_DL_001250; + +#define dobject_door_killer_DL_001550 "__OTR__objects/object_door_killer/object_door_killer_DL_001550" +static const ALIGN_ASSET(2) char object_door_killer_DL_001550[] = dobject_door_killer_DL_001550; + +#define dobject_door_killer_DL_0017B8 "__OTR__objects/object_door_killer/object_door_killer_DL_0017B8" +static const ALIGN_ASSET(2) char object_door_killer_DL_0017B8[] = dobject_door_killer_DL_0017B8; + +#define dobject_door_killer_DL_001A58 "__OTR__objects/object_door_killer/object_door_killer_DL_001A58" +static const ALIGN_ASSET(2) char object_door_killer_DL_001A58[] = dobject_door_killer_DL_001A58; + +#define dobject_door_killer_Skel_001BC8 "__OTR__objects/object_door_killer/object_door_killer_Skel_001BC8" +static const ALIGN_ASSET(2) char object_door_killer_Skel_001BC8[] = dobject_door_killer_Skel_001BC8; \ No newline at end of file diff --git a/soh/assets/objects/object_ds/object_ds.h b/soh/assets/objects/object_ds/object_ds.h index 5a3571efa..2da5d9660 100644 --- a/soh/assets/objects/object_ds/object_ds.h +++ b/soh/assets/objects/object_ds/object_ds.h @@ -1,128 +1,57 @@ #pragma once -#define dgPotionShopLadySkel "__OTR__objects/object_ds/gPotionShopLadySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadySkel[] = dgPotionShopLadySkel; -#else -static const char gPotionShopLadySkel[] __attribute__((aligned (2))) = dgPotionShopLadySkel; -#endif - -#define dgPotionShopLadyCatDL "__OTR__objects/object_ds/gPotionShopLadyCatDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyCatDL[] = dgPotionShopLadyCatDL; -#else -static const char gPotionShopLadyCatDL[] __attribute__((aligned (2))) = dgPotionShopLadyCatDL; -#endif - -#define dgPotionShopLadyTorsoDL "__OTR__objects/object_ds/gPotionShopLadyTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyTorsoDL[] = dgPotionShopLadyTorsoDL; -#else -static const char gPotionShopLadyTorsoDL[] __attribute__((aligned (2))) = dgPotionShopLadyTorsoDL; -#endif - -#define dgPotionShopLadyArmDL "__OTR__objects/object_ds/gPotionShopLadyArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyArmDL[] = dgPotionShopLadyArmDL; -#else -static const char gPotionShopLadyArmDL[] __attribute__((aligned (2))) = dgPotionShopLadyArmDL; -#endif - -#define dgPotionShopLadyHeadDL "__OTR__objects/object_ds/gPotionShopLadyHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyHeadDL[] = dgPotionShopLadyHeadDL; -#else -static const char gPotionShopLadyHeadDL[] __attribute__((aligned (2))) = dgPotionShopLadyHeadDL; -#endif - -#define dgPotionShopLadyTLUT "__OTR__objects/object_ds/gPotionShopLadyTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyTLUT[] = dgPotionShopLadyTLUT; -#else -static const char gPotionShopLadyTLUT[] __attribute__((aligned (2))) = dgPotionShopLadyTLUT; -#endif - -#define dgPotionShopLadySkinGradientTex "__OTR__objects/object_ds/gPotionShopLadySkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadySkinGradientTex[] = dgPotionShopLadySkinGradientTex; -#else -static const char gPotionShopLadySkinGradientTex[] __attribute__((aligned (2))) = dgPotionShopLadySkinGradientTex; -#endif - -#define dgPotionShopLadyEyelashBottomTex "__OTR__objects/object_ds/gPotionShopLadyEyelashBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyEyelashBottomTex[] = dgPotionShopLadyEyelashBottomTex; -#else -static const char gPotionShopLadyEyelashBottomTex[] __attribute__((aligned (2))) = dgPotionShopLadyEyelashBottomTex; -#endif - -#define dgPotionShopLadyEyelashTopTex "__OTR__objects/object_ds/gPotionShopLadyEyelashTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyEyelashTopTex[] = dgPotionShopLadyEyelashTopTex; -#else -static const char gPotionShopLadyEyelashTopTex[] __attribute__((aligned (2))) = dgPotionShopLadyEyelashTopTex; -#endif - -#define dgPotionShopLadyEar1Tex "__OTR__objects/object_ds/gPotionShopLadyEar1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyEar1Tex[] = dgPotionShopLadyEar1Tex; -#else -static const char gPotionShopLadyEar1Tex[] __attribute__((aligned (2))) = dgPotionShopLadyEar1Tex; -#endif - -#define dgPotionShopLadyHairTex "__OTR__objects/object_ds/gPotionShopLadyHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyHairTex[] = dgPotionShopLadyHairTex; -#else -static const char gPotionShopLadyHairTex[] __attribute__((aligned (2))) = dgPotionShopLadyHairTex; -#endif - -#define dgPotionShopLadyEyeTex "__OTR__objects/object_ds/gPotionShopLadyEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyEyeTex[] = dgPotionShopLadyEyeTex; -#else -static const char gPotionShopLadyEyeTex[] __attribute__((aligned (2))) = dgPotionShopLadyEyeTex; -#endif - -#define dgPotionShopLadyEar2Tex "__OTR__objects/object_ds/gPotionShopLadyEar2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyEar2Tex[] = dgPotionShopLadyEar2Tex; -#else -static const char gPotionShopLadyEar2Tex[] __attribute__((aligned (2))) = dgPotionShopLadyEar2Tex; -#endif - -#define dgPotionShopLadyArmGradientTex "__OTR__objects/object_ds/gPotionShopLadyArmGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyArmGradientTex[] = dgPotionShopLadyArmGradientTex; -#else -static const char gPotionShopLadyArmGradientTex[] __attribute__((aligned (2))) = dgPotionShopLadyArmGradientTex; -#endif - -#define dgPotionShopLadyShirtPatternTex "__OTR__objects/object_ds/gPotionShopLadyShirtPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyShirtPatternTex[] = dgPotionShopLadyShirtPatternTex; -#else -static const char gPotionShopLadyShirtPatternTex[] __attribute__((aligned (2))) = dgPotionShopLadyShirtPatternTex; -#endif - -#define dgPotionShopLadyCatPattern1Tex "__OTR__objects/object_ds/gPotionShopLadyCatPattern1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyCatPattern1Tex[] = dgPotionShopLadyCatPattern1Tex; -#else -static const char gPotionShopLadyCatPattern1Tex[] __attribute__((aligned (2))) = dgPotionShopLadyCatPattern1Tex; -#endif - -#define dgPotionShopLadyCatPattern2Tex "__OTR__objects/object_ds/gPotionShopLadyCatPattern2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyCatPattern2Tex[] = dgPotionShopLadyCatPattern2Tex; -#else -static const char gPotionShopLadyCatPattern2Tex[] __attribute__((aligned (2))) = dgPotionShopLadyCatPattern2Tex; -#endif - -#define dgPotionShopLadyAnim "__OTR__objects/object_ds/gPotionShopLadyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopLadyAnim[] = dgPotionShopLadyAnim; -#else -static const char gPotionShopLadyAnim[] __attribute__((aligned (2))) = dgPotionShopLadyAnim; -#endif - +#include "align_asset_macro.h" + +#define dgPotionShopLadySkel "__OTR__objects/object_ds/gPotionShopLadySkel" +static const ALIGN_ASSET(2) char gPotionShopLadySkel[] = dgPotionShopLadySkel; + +#define dgPotionShopLadyCatDL "__OTR__objects/object_ds/gPotionShopLadyCatDL" +static const ALIGN_ASSET(2) char gPotionShopLadyCatDL[] = dgPotionShopLadyCatDL; + +#define dgPotionShopLadyTorsoDL "__OTR__objects/object_ds/gPotionShopLadyTorsoDL" +static const ALIGN_ASSET(2) char gPotionShopLadyTorsoDL[] = dgPotionShopLadyTorsoDL; + +#define dgPotionShopLadyArmDL "__OTR__objects/object_ds/gPotionShopLadyArmDL" +static const ALIGN_ASSET(2) char gPotionShopLadyArmDL[] = dgPotionShopLadyArmDL; + +#define dgPotionShopLadyHeadDL "__OTR__objects/object_ds/gPotionShopLadyHeadDL" +static const ALIGN_ASSET(2) char gPotionShopLadyHeadDL[] = dgPotionShopLadyHeadDL; + +#define dgPotionShopLadyTLUT "__OTR__objects/object_ds/gPotionShopLadyTLUT" +static const ALIGN_ASSET(2) char gPotionShopLadyTLUT[] = dgPotionShopLadyTLUT; + +#define dgPotionShopLadySkinGradientTex "__OTR__objects/object_ds/gPotionShopLadySkinGradientTex" +static const ALIGN_ASSET(2) char gPotionShopLadySkinGradientTex[] = dgPotionShopLadySkinGradientTex; + +#define dgPotionShopLadyEyelashBottomTex "__OTR__objects/object_ds/gPotionShopLadyEyelashBottomTex" +static const ALIGN_ASSET(2) char gPotionShopLadyEyelashBottomTex[] = dgPotionShopLadyEyelashBottomTex; + +#define dgPotionShopLadyEyelashTopTex "__OTR__objects/object_ds/gPotionShopLadyEyelashTopTex" +static const ALIGN_ASSET(2) char gPotionShopLadyEyelashTopTex[] = dgPotionShopLadyEyelashTopTex; + +#define dgPotionShopLadyEar1Tex "__OTR__objects/object_ds/gPotionShopLadyEar1Tex" +static const ALIGN_ASSET(2) char gPotionShopLadyEar1Tex[] = dgPotionShopLadyEar1Tex; + +#define dgPotionShopLadyHairTex "__OTR__objects/object_ds/gPotionShopLadyHairTex" +static const ALIGN_ASSET(2) char gPotionShopLadyHairTex[] = dgPotionShopLadyHairTex; + +#define dgPotionShopLadyEyeTex "__OTR__objects/object_ds/gPotionShopLadyEyeTex" +static const ALIGN_ASSET(2) char gPotionShopLadyEyeTex[] = dgPotionShopLadyEyeTex; + +#define dgPotionShopLadyEar2Tex "__OTR__objects/object_ds/gPotionShopLadyEar2Tex" +static const ALIGN_ASSET(2) char gPotionShopLadyEar2Tex[] = dgPotionShopLadyEar2Tex; + +#define dgPotionShopLadyArmGradientTex "__OTR__objects/object_ds/gPotionShopLadyArmGradientTex" +static const ALIGN_ASSET(2) char gPotionShopLadyArmGradientTex[] = dgPotionShopLadyArmGradientTex; + +#define dgPotionShopLadyShirtPatternTex "__OTR__objects/object_ds/gPotionShopLadyShirtPatternTex" +static const ALIGN_ASSET(2) char gPotionShopLadyShirtPatternTex[] = dgPotionShopLadyShirtPatternTex; + +#define dgPotionShopLadyCatPattern1Tex "__OTR__objects/object_ds/gPotionShopLadyCatPattern1Tex" +static const ALIGN_ASSET(2) char gPotionShopLadyCatPattern1Tex[] = dgPotionShopLadyCatPattern1Tex; + +#define dgPotionShopLadyCatPattern2Tex "__OTR__objects/object_ds/gPotionShopLadyCatPattern2Tex" +static const ALIGN_ASSET(2) char gPotionShopLadyCatPattern2Tex[] = dgPotionShopLadyCatPattern2Tex; + +#define dgPotionShopLadyAnim "__OTR__objects/object_ds/gPotionShopLadyAnim" +static const ALIGN_ASSET(2) char gPotionShopLadyAnim[] = dgPotionShopLadyAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_ds2/object_ds2.h b/soh/assets/objects/object_ds2/object_ds2.h index 707370705..9d386b89b 100644 --- a/soh/assets/objects/object_ds2/object_ds2.h +++ b/soh/assets/objects/object_ds2/object_ds2.h @@ -1,156 +1,69 @@ #pragma once -#define dobject_ds2_Anim_0002E4 "__OTR__objects/object_ds2/object_ds2_Anim_0002E4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Anim_0002E4[] = dobject_ds2_Anim_0002E4; -#else -static const char object_ds2_Anim_0002E4[] __attribute__((aligned (2))) = dobject_ds2_Anim_0002E4; -#endif - -#define dobject_ds2_DL_001990 "__OTR__objects/object_ds2/object_ds2_DL_001990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_DL_001990[] = dobject_ds2_DL_001990; -#else -static const char object_ds2_DL_001990[] __attribute__((aligned (2))) = dobject_ds2_DL_001990; -#endif - -#define dobject_ds2_DL_001C98 "__OTR__objects/object_ds2/object_ds2_DL_001C98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_DL_001C98[] = dobject_ds2_DL_001C98; -#else -static const char object_ds2_DL_001C98[] __attribute__((aligned (2))) = dobject_ds2_DL_001C98; -#endif - -#define dobject_ds2_DL_002188 "__OTR__objects/object_ds2/object_ds2_DL_002188" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_DL_002188[] = dobject_ds2_DL_002188; -#else -static const char object_ds2_DL_002188[] __attribute__((aligned (2))) = dobject_ds2_DL_002188; -#endif - -#define dobject_ds2_DL_0022B0 "__OTR__objects/object_ds2/object_ds2_DL_0022B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_DL_0022B0[] = dobject_ds2_DL_0022B0; -#else -static const char object_ds2_DL_0022B0[] __attribute__((aligned (2))) = dobject_ds2_DL_0022B0; -#endif - -#define dobject_ds2_DL_002480 "__OTR__objects/object_ds2/object_ds2_DL_002480" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_DL_002480[] = dobject_ds2_DL_002480; -#else -static const char object_ds2_DL_002480[] __attribute__((aligned (2))) = dobject_ds2_DL_002480; -#endif - -#define dobject_ds2_DL_002610 "__OTR__objects/object_ds2/object_ds2_DL_002610" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_DL_002610[] = dobject_ds2_DL_002610; -#else -static const char object_ds2_DL_002610[] __attribute__((aligned (2))) = dobject_ds2_DL_002610; -#endif - -#define dobject_ds2_DL_002738 "__OTR__objects/object_ds2/object_ds2_DL_002738" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_DL_002738[] = dobject_ds2_DL_002738; -#else -static const char object_ds2_DL_002738[] __attribute__((aligned (2))) = dobject_ds2_DL_002738; -#endif - -#define dobject_ds2_DL_002908 "__OTR__objects/object_ds2/object_ds2_DL_002908" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_DL_002908[] = dobject_ds2_DL_002908; -#else -static const char object_ds2_DL_002908[] __attribute__((aligned (2))) = dobject_ds2_DL_002908; -#endif - -#define dobject_ds2_TLUT_002A98 "__OTR__objects/object_ds2/object_ds2_TLUT_002A98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_TLUT_002A98[] = dobject_ds2_TLUT_002A98; -#else -static const char object_ds2_TLUT_002A98[] __attribute__((aligned (2))) = dobject_ds2_TLUT_002A98; -#endif - -#define dobject_ds2_Tex_002C98 "__OTR__objects/object_ds2/object_ds2_Tex_002C98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Tex_002C98[] = dobject_ds2_Tex_002C98; -#else -static const char object_ds2_Tex_002C98[] __attribute__((aligned (2))) = dobject_ds2_Tex_002C98; -#endif - -#define dobject_ds2_Tex_002D98 "__OTR__objects/object_ds2/object_ds2_Tex_002D98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Tex_002D98[] = dobject_ds2_Tex_002D98; -#else -static const char object_ds2_Tex_002D98[] __attribute__((aligned (2))) = dobject_ds2_Tex_002D98; -#endif - -#define dobject_ds2_Tex_002DD8 "__OTR__objects/object_ds2/object_ds2_Tex_002DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Tex_002DD8[] = dobject_ds2_Tex_002DD8; -#else -static const char object_ds2_Tex_002DD8[] __attribute__((aligned (2))) = dobject_ds2_Tex_002DD8; -#endif - -#define dobject_ds2_Tex_002ED8 "__OTR__objects/object_ds2/object_ds2_Tex_002ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Tex_002ED8[] = dobject_ds2_Tex_002ED8; -#else -static const char object_ds2_Tex_002ED8[] __attribute__((aligned (2))) = dobject_ds2_Tex_002ED8; -#endif - -#define dgPotionShopkeeperEyeOpenTex "__OTR__objects/object_ds2/gPotionShopkeeperEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopkeeperEyeOpenTex[] = dgPotionShopkeeperEyeOpenTex; -#else -static const char gPotionShopkeeperEyeOpenTex[] __attribute__((aligned (2))) = dgPotionShopkeeperEyeOpenTex; -#endif - -#define dgPotionShopkeeperEyeHalfTex "__OTR__objects/object_ds2/gPotionShopkeeperEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopkeeperEyeHalfTex[] = dgPotionShopkeeperEyeHalfTex; -#else -static const char gPotionShopkeeperEyeHalfTex[] __attribute__((aligned (2))) = dgPotionShopkeeperEyeHalfTex; -#endif - -#define dgPotionShopkeeperEyeClosedTex "__OTR__objects/object_ds2/gPotionShopkeeperEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopkeeperEyeClosedTex[] = dgPotionShopkeeperEyeClosedTex; -#else -static const char gPotionShopkeeperEyeClosedTex[] __attribute__((aligned (2))) = dgPotionShopkeeperEyeClosedTex; -#endif - -#define dobject_ds2_Tex_003CD8 "__OTR__objects/object_ds2/object_ds2_Tex_003CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Tex_003CD8[] = dobject_ds2_Tex_003CD8; -#else -static const char object_ds2_Tex_003CD8[] __attribute__((aligned (2))) = dobject_ds2_Tex_003CD8; -#endif - -#define dobject_ds2_Tex_003DD8 "__OTR__objects/object_ds2/object_ds2_Tex_003DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Tex_003DD8[] = dobject_ds2_Tex_003DD8; -#else -static const char object_ds2_Tex_003DD8[] __attribute__((aligned (2))) = dobject_ds2_Tex_003DD8; -#endif - -#define dobject_ds2_Tex_003ED8 "__OTR__objects/object_ds2/object_ds2_Tex_003ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Tex_003ED8[] = dobject_ds2_Tex_003ED8; -#else -static const char object_ds2_Tex_003ED8[] __attribute__((aligned (2))) = dobject_ds2_Tex_003ED8; -#endif - -#define dobject_ds2_Tex_003FD8 "__OTR__objects/object_ds2/object_ds2_Tex_003FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Tex_003FD8[] = dobject_ds2_Tex_003FD8; -#else -static const char object_ds2_Tex_003FD8[] __attribute__((aligned (2))) = dobject_ds2_Tex_003FD8; -#endif - -#define dobject_ds2_Skel_004258 "__OTR__objects/object_ds2/object_ds2_Skel_004258" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ds2_Skel_004258[] = dobject_ds2_Skel_004258; -#else -static const char object_ds2_Skel_004258[] __attribute__((aligned (2))) = dobject_ds2_Skel_004258; -#endif - +#include "align_asset_macro.h" + +#define dobject_ds2_Anim_0002E4 "__OTR__objects/object_ds2/object_ds2_Anim_0002E4" +static const ALIGN_ASSET(2) char object_ds2_Anim_0002E4[] = dobject_ds2_Anim_0002E4; + +#define dobject_ds2_DL_001990 "__OTR__objects/object_ds2/object_ds2_DL_001990" +static const ALIGN_ASSET(2) char object_ds2_DL_001990[] = dobject_ds2_DL_001990; + +#define dobject_ds2_DL_001C98 "__OTR__objects/object_ds2/object_ds2_DL_001C98" +static const ALIGN_ASSET(2) char object_ds2_DL_001C98[] = dobject_ds2_DL_001C98; + +#define dobject_ds2_DL_002188 "__OTR__objects/object_ds2/object_ds2_DL_002188" +static const ALIGN_ASSET(2) char object_ds2_DL_002188[] = dobject_ds2_DL_002188; + +#define dobject_ds2_DL_0022B0 "__OTR__objects/object_ds2/object_ds2_DL_0022B0" +static const ALIGN_ASSET(2) char object_ds2_DL_0022B0[] = dobject_ds2_DL_0022B0; + +#define dobject_ds2_DL_002480 "__OTR__objects/object_ds2/object_ds2_DL_002480" +static const ALIGN_ASSET(2) char object_ds2_DL_002480[] = dobject_ds2_DL_002480; + +#define dobject_ds2_DL_002610 "__OTR__objects/object_ds2/object_ds2_DL_002610" +static const ALIGN_ASSET(2) char object_ds2_DL_002610[] = dobject_ds2_DL_002610; + +#define dobject_ds2_DL_002738 "__OTR__objects/object_ds2/object_ds2_DL_002738" +static const ALIGN_ASSET(2) char object_ds2_DL_002738[] = dobject_ds2_DL_002738; + +#define dobject_ds2_DL_002908 "__OTR__objects/object_ds2/object_ds2_DL_002908" +static const ALIGN_ASSET(2) char object_ds2_DL_002908[] = dobject_ds2_DL_002908; + +#define dobject_ds2_TLUT_002A98 "__OTR__objects/object_ds2/object_ds2_TLUT_002A98" +static const ALIGN_ASSET(2) char object_ds2_TLUT_002A98[] = dobject_ds2_TLUT_002A98; + +#define dobject_ds2_Tex_002C98 "__OTR__objects/object_ds2/object_ds2_Tex_002C98" +static const ALIGN_ASSET(2) char object_ds2_Tex_002C98[] = dobject_ds2_Tex_002C98; + +#define dobject_ds2_Tex_002D98 "__OTR__objects/object_ds2/object_ds2_Tex_002D98" +static const ALIGN_ASSET(2) char object_ds2_Tex_002D98[] = dobject_ds2_Tex_002D98; + +#define dobject_ds2_Tex_002DD8 "__OTR__objects/object_ds2/object_ds2_Tex_002DD8" +static const ALIGN_ASSET(2) char object_ds2_Tex_002DD8[] = dobject_ds2_Tex_002DD8; + +#define dobject_ds2_Tex_002ED8 "__OTR__objects/object_ds2/object_ds2_Tex_002ED8" +static const ALIGN_ASSET(2) char object_ds2_Tex_002ED8[] = dobject_ds2_Tex_002ED8; + +#define dgPotionShopkeeperEyeOpenTex "__OTR__objects/object_ds2/gPotionShopkeeperEyeOpenTex" +static const ALIGN_ASSET(2) char gPotionShopkeeperEyeOpenTex[] = dgPotionShopkeeperEyeOpenTex; + +#define dgPotionShopkeeperEyeHalfTex "__OTR__objects/object_ds2/gPotionShopkeeperEyeHalfTex" +static const ALIGN_ASSET(2) char gPotionShopkeeperEyeHalfTex[] = dgPotionShopkeeperEyeHalfTex; + +#define dgPotionShopkeeperEyeClosedTex "__OTR__objects/object_ds2/gPotionShopkeeperEyeClosedTex" +static const ALIGN_ASSET(2) char gPotionShopkeeperEyeClosedTex[] = dgPotionShopkeeperEyeClosedTex; + +#define dobject_ds2_Tex_003CD8 "__OTR__objects/object_ds2/object_ds2_Tex_003CD8" +static const ALIGN_ASSET(2) char object_ds2_Tex_003CD8[] = dobject_ds2_Tex_003CD8; + +#define dobject_ds2_Tex_003DD8 "__OTR__objects/object_ds2/object_ds2_Tex_003DD8" +static const ALIGN_ASSET(2) char object_ds2_Tex_003DD8[] = dobject_ds2_Tex_003DD8; + +#define dobject_ds2_Tex_003ED8 "__OTR__objects/object_ds2/object_ds2_Tex_003ED8" +static const ALIGN_ASSET(2) char object_ds2_Tex_003ED8[] = dobject_ds2_Tex_003ED8; + +#define dobject_ds2_Tex_003FD8 "__OTR__objects/object_ds2/object_ds2_Tex_003FD8" +static const ALIGN_ASSET(2) char object_ds2_Tex_003FD8[] = dobject_ds2_Tex_003FD8; + +#define dobject_ds2_Skel_004258 "__OTR__objects/object_ds2/object_ds2_Skel_004258" +static const ALIGN_ASSET(2) char object_ds2_Skel_004258[] = dobject_ds2_Skel_004258; \ No newline at end of file diff --git a/soh/assets/objects/object_du/object_du.h b/soh/assets/objects/object_du/object_du.h index 925fe72af..6993d2f78 100644 --- a/soh/assets/objects/object_du/object_du.h +++ b/soh/assets/objects/object_du/object_du.h @@ -1,422 +1,183 @@ #pragma once -#define dgDaruniaSkel "__OTR__objects/object_du/gDaruniaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkel[] = dgDaruniaSkel; -#else -static const char gDaruniaSkel[] __attribute__((aligned (2))) = dgDaruniaSkel; -#endif - -#define dgDaruniaIdleAnim "__OTR__objects/object_du/gDaruniaIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaIdleAnim[] = dgDaruniaIdleAnim; -#else -static const char gDaruniaIdleAnim[] __attribute__((aligned (2))) = dgDaruniaIdleAnim; -#endif - -#define dgDaruniaItemGiveAnim "__OTR__objects/object_du/gDaruniaItemGiveAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaItemGiveAnim[] = dgDaruniaItemGiveAnim; -#else -static const char gDaruniaItemGiveAnim[] __attribute__((aligned (2))) = dgDaruniaItemGiveAnim; -#endif - -#define dgDaruniaItemGiveIdleAnim "__OTR__objects/object_du/gDaruniaItemGiveIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaItemGiveIdleAnim[] = dgDaruniaItemGiveIdleAnim; -#else -static const char gDaruniaItemGiveIdleAnim[] __attribute__((aligned (2))) = dgDaruniaItemGiveIdleAnim; -#endif - -#define dgDaruniaHitLinkAnim "__OTR__objects/object_du/gDaruniaHitLinkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaHitLinkAnim[] = dgDaruniaHitLinkAnim; -#else -static const char gDaruniaHitLinkAnim[] __attribute__((aligned (2))) = dgDaruniaHitLinkAnim; -#endif - -#define dgDaruniaHitBreastAnim "__OTR__objects/object_du/gDaruniaHitBreastAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaHitBreastAnim[] = dgDaruniaHitBreastAnim; -#else -static const char gDaruniaHitBreastAnim[] __attribute__((aligned (2))) = dgDaruniaHitBreastAnim; -#endif - -#define dgDaruniaStandUpAfterFallingAnim "__OTR__objects/object_du/gDaruniaStandUpAfterFallingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaStandUpAfterFallingAnim[] = dgDaruniaStandUpAfterFallingAnim; -#else -static const char gDaruniaStandUpAfterFallingAnim[] __attribute__((aligned (2))) = dgDaruniaStandUpAfterFallingAnim; -#endif - -#define dgDaruniaDancingLoop1Anim "__OTR__objects/object_du/gDaruniaDancingLoop1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaDancingLoop1Anim[] = dgDaruniaDancingLoop1Anim; -#else -static const char gDaruniaDancingLoop1Anim[] __attribute__((aligned (2))) = dgDaruniaDancingLoop1Anim; -#endif - -#define dgDaruniaDancingLoop2Anim "__OTR__objects/object_du/gDaruniaDancingLoop2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaDancingLoop2Anim[] = dgDaruniaDancingLoop2Anim; -#else -static const char gDaruniaDancingLoop2Anim[] __attribute__((aligned (2))) = dgDaruniaDancingLoop2Anim; -#endif - -#define dgDaruniaDancingLoop3Anim "__OTR__objects/object_du/gDaruniaDancingLoop3Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaDancingLoop3Anim[] = dgDaruniaDancingLoop3Anim; -#else -static const char gDaruniaDancingLoop3Anim[] __attribute__((aligned (2))) = dgDaruniaDancingLoop3Anim; -#endif - -#define dgDaruniaDancingLoop4Anim "__OTR__objects/object_du/gDaruniaDancingLoop4Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaDancingLoop4Anim[] = dgDaruniaDancingLoop4Anim; -#else -static const char gDaruniaDancingLoop4Anim[] __attribute__((aligned (2))) = dgDaruniaDancingLoop4Anim; -#endif - -#define dgDaruniaDancingEndAnim "__OTR__objects/object_du/gDaruniaDancingEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaDancingEndAnim[] = dgDaruniaDancingEndAnim; -#else -static const char gDaruniaDancingEndAnim[] __attribute__((aligned (2))) = dgDaruniaDancingEndAnim; -#endif - -#define dgDaruniaWrongSongAnim "__OTR__objects/object_du/gDaruniaWrongSongAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaWrongSongAnim[] = dgDaruniaWrongSongAnim; -#else -static const char gDaruniaWrongSongAnim[] __attribute__((aligned (2))) = dgDaruniaWrongSongAnim; -#endif - -#define dgDaruniaWrongSongEndAnim "__OTR__objects/object_du/gDaruniaWrongSongEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaWrongSongEndAnim[] = dgDaruniaWrongSongEndAnim; -#else -static const char gDaruniaWrongSongEndAnim[] __attribute__((aligned (2))) = dgDaruniaWrongSongEndAnim; -#endif - -#define dgDaruniaSageFormationAnim "__OTR__objects/object_du/gDaruniaSageFormationAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSageFormationAnim[] = dgDaruniaSageFormationAnim; -#else -static const char gDaruniaSageFormationAnim[] __attribute__((aligned (2))) = dgDaruniaSageFormationAnim; -#endif - -#define dgDaruniaLookingUpToSariaAnim "__OTR__objects/object_du/gDaruniaLookingUpToSariaAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaLookingUpToSariaAnim[] = dgDaruniaLookingUpToSariaAnim; -#else -static const char gDaruniaLookingUpToSariaAnim[] __attribute__((aligned (2))) = dgDaruniaLookingUpToSariaAnim; -#endif - -#define dgDaruniaCreditsHitBreastAnim "__OTR__objects/object_du/gDaruniaCreditsHitBreastAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaCreditsHitBreastAnim[] = dgDaruniaCreditsHitBreastAnim; -#else -static const char gDaruniaCreditsHitBreastAnim[] __attribute__((aligned (2))) = dgDaruniaCreditsHitBreastAnim; -#endif - -#define dgDaruniaCreditsIdleAnim "__OTR__objects/object_du/gDaruniaCreditsIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaCreditsIdleAnim[] = dgDaruniaCreditsIdleAnim; -#else -static const char gDaruniaCreditsIdleAnim[] __attribute__((aligned (2))) = dgDaruniaCreditsIdleAnim; -#endif - -#define dgDaruniaEyeOpenTex "__OTR__objects/object_du/gDaruniaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaEyeOpenTex[] = dgDaruniaEyeOpenTex; -#else -static const char gDaruniaEyeOpenTex[] __attribute__((aligned (2))) = dgDaruniaEyeOpenTex; -#endif - -#define dgDaruniaEyeOpeningTex "__OTR__objects/object_du/gDaruniaEyeOpeningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaEyeOpeningTex[] = dgDaruniaEyeOpeningTex; -#else -static const char gDaruniaEyeOpeningTex[] __attribute__((aligned (2))) = dgDaruniaEyeOpeningTex; -#endif - -#define dgDaruniaEyeShutTex "__OTR__objects/object_du/gDaruniaEyeShutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaEyeShutTex[] = dgDaruniaEyeShutTex; -#else -static const char gDaruniaEyeShutTex[] __attribute__((aligned (2))) = dgDaruniaEyeShutTex; -#endif - -#define dgDaruniaEyeClosingTex "__OTR__objects/object_du/gDaruniaEyeClosingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaEyeClosingTex[] = dgDaruniaEyeClosingTex; -#else -static const char gDaruniaEyeClosingTex[] __attribute__((aligned (2))) = dgDaruniaEyeClosingTex; -#endif - -#define dgDaruniaMouthSeriousTex "__OTR__objects/object_du/gDaruniaMouthSeriousTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaMouthSeriousTex[] = dgDaruniaMouthSeriousTex; -#else -static const char gDaruniaMouthSeriousTex[] __attribute__((aligned (2))) = dgDaruniaMouthSeriousTex; -#endif - -#define dgDaruniaMouthGrinningTex "__OTR__objects/object_du/gDaruniaMouthGrinningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaMouthGrinningTex[] = dgDaruniaMouthGrinningTex; -#else -static const char gDaruniaMouthGrinningTex[] __attribute__((aligned (2))) = dgDaruniaMouthGrinningTex; -#endif - -#define dgDaruniaMouthOpenTex "__OTR__objects/object_du/gDaruniaMouthOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaMouthOpenTex[] = dgDaruniaMouthOpenTex; -#else -static const char gDaruniaMouthOpenTex[] __attribute__((aligned (2))) = dgDaruniaMouthOpenTex; -#endif - -#define dgDaruniaMouthHappyTex "__OTR__objects/object_du/gDaruniaMouthHappyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaMouthHappyTex[] = dgDaruniaMouthHappyTex; -#else -static const char gDaruniaMouthHappyTex[] __attribute__((aligned (2))) = dgDaruniaMouthHappyTex; -#endif - -#define dgDaruniaNoseSeriousTex "__OTR__objects/object_du/gDaruniaNoseSeriousTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaNoseSeriousTex[] = dgDaruniaNoseSeriousTex; -#else -static const char gDaruniaNoseSeriousTex[] __attribute__((aligned (2))) = dgDaruniaNoseSeriousTex; -#endif - -#define dgDaruniaNoseHappyTex "__OTR__objects/object_du/gDaruniaNoseHappyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaNoseHappyTex[] = dgDaruniaNoseHappyTex; -#else -static const char gDaruniaNoseHappyTex[] __attribute__((aligned (2))) = dgDaruniaNoseHappyTex; -#endif - -#define dgDaruniaTLUT_6EC0 "__OTR__objects/object_du/gDaruniaTLUT_6EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaTLUT_6EC0[] = dgDaruniaTLUT_6EC0; -#else -static const char gDaruniaTLUT_6EC0[] __attribute__((aligned (2))) = dgDaruniaTLUT_6EC0; -#endif - -#define dgDaruniaTLUT_7AF8 "__OTR__objects/object_du/gDaruniaTLUT_7AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaTLUT_7AF8[] = dgDaruniaTLUT_7AF8; -#else -static const char gDaruniaTLUT_7AF8[] __attribute__((aligned (2))) = dgDaruniaTLUT_7AF8; -#endif - -#define dgDaruniaTLUT_7CC8 "__OTR__objects/object_du/gDaruniaTLUT_7CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaTLUT_7CC8[] = dgDaruniaTLUT_7CC8; -#else -static const char gDaruniaTLUT_7CC8[] __attribute__((aligned (2))) = dgDaruniaTLUT_7CC8; -#endif - -#define dgDaruniaTLUT_7980 "__OTR__objects/object_du/gDaruniaTLUT_7980" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaTLUT_7980[] = dgDaruniaTLUT_7980; -#else -static const char gDaruniaTLUT_7980[] __attribute__((aligned (2))) = dgDaruniaTLUT_7980; -#endif - -#define dgDaruniaSkelTex_70C0 "__OTR__objects/object_du/gDaruniaSkelTex_70C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_70C0[] = dgDaruniaSkelTex_70C0; -#else -static const char gDaruniaSkelTex_70C0[] __attribute__((aligned (2))) = dgDaruniaSkelTex_70C0; -#endif - -#define dgDaruniaSkelTex_72C0 "__OTR__objects/object_du/gDaruniaSkelTex_72C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_72C0[] = dgDaruniaSkelTex_72C0; -#else -static const char gDaruniaSkelTex_72C0[] __attribute__((aligned (2))) = dgDaruniaSkelTex_72C0; -#endif - -#define dgDaruniaSkelTex_73C0 "__OTR__objects/object_du/gDaruniaSkelTex_73C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_73C0[] = dgDaruniaSkelTex_73C0; -#else -static const char gDaruniaSkelTex_73C0[] __attribute__((aligned (2))) = dgDaruniaSkelTex_73C0; -#endif - -#define dgDaruniaSkelTex_7440 "__OTR__objects/object_du/gDaruniaSkelTex_7440" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_7440[] = dgDaruniaSkelTex_7440; -#else -static const char gDaruniaSkelTex_7440[] __attribute__((aligned (2))) = dgDaruniaSkelTex_7440; -#endif - -#define dgDaruniaSkelTex_7480 "__OTR__objects/object_du/gDaruniaSkelTex_7480" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_7480[] = dgDaruniaSkelTex_7480; -#else -static const char gDaruniaSkelTex_7480[] __attribute__((aligned (2))) = dgDaruniaSkelTex_7480; -#endif - -#define dgDaruniaSkelTex_7580 "__OTR__objects/object_du/gDaruniaSkelTex_7580" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_7580[] = dgDaruniaSkelTex_7580; -#else -static const char gDaruniaSkelTex_7580[] __attribute__((aligned (2))) = dgDaruniaSkelTex_7580; -#endif - -#define dgDaruniaSkelTex_7EC0 "__OTR__objects/object_du/gDaruniaSkelTex_7EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_7EC0[] = dgDaruniaSkelTex_7EC0; -#else -static const char gDaruniaSkelTex_7EC0[] __attribute__((aligned (2))) = dgDaruniaSkelTex_7EC0; -#endif - -#define dgDaruniaSkelTex_7F40 "__OTR__objects/object_du/gDaruniaSkelTex_7F40" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_7F40[] = dgDaruniaSkelTex_7F40; -#else -static const char gDaruniaSkelTex_7F40[] __attribute__((aligned (2))) = dgDaruniaSkelTex_7F40; -#endif - -#define dgDaruniaSkelTex_8000 "__OTR__objects/object_du/gDaruniaSkelTex_8000" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_8000[] = dgDaruniaSkelTex_8000; -#else -static const char gDaruniaSkelTex_8000[] __attribute__((aligned (2))) = dgDaruniaSkelTex_8000; -#endif - -#define dgDaruniaSkelTex_9480 "__OTR__objects/object_du/gDaruniaSkelTex_9480" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_9480[] = dgDaruniaSkelTex_9480; -#else -static const char gDaruniaSkelTex_9480[] __attribute__((aligned (2))) = dgDaruniaSkelTex_9480; -#endif - -#define dgDaruniaSkelTex_9500 "__OTR__objects/object_du/gDaruniaSkelTex_9500" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_9500[] = dgDaruniaSkelTex_9500; -#else -static const char gDaruniaSkelTex_9500[] __attribute__((aligned (2))) = dgDaruniaSkelTex_9500; -#endif - -#define dgDaruniaSkelTex_9D00 "__OTR__objects/object_du/gDaruniaSkelTex_9D00" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelTex_9D00[] = dgDaruniaSkelTex_9D00; -#else -static const char gDaruniaSkelTex_9D00[] __attribute__((aligned (2))) = dgDaruniaSkelTex_9D00; -#endif - -#define dgDaruniaSkelLimbsLimb_011BA4DL_00D170 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BA4DL_00D170" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011BA4DL_00D170[] = dgDaruniaSkelLimbsLimb_011BA4DL_00D170; -#else -static const char gDaruniaSkelLimbsLimb_011BA4DL_00D170[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011BA4DL_00D170; -#endif - -#define dgDaruniaSkelLimbsLimb_011BB0DL_011608 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BB0DL_011608" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011BB0DL_011608[] = dgDaruniaSkelLimbsLimb_011BB0DL_011608; -#else -static const char gDaruniaSkelLimbsLimb_011BB0DL_011608[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011BB0DL_011608; -#endif - -#define dgDaruniaSkelLimbsLimb_011BBCDL_011708 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BBCDL_011708" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011BBCDL_011708[] = dgDaruniaSkelLimbsLimb_011BBCDL_011708; -#else -static const char gDaruniaSkelLimbsLimb_011BBCDL_011708[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011BBCDL_011708; -#endif - -#define dgDaruniaSkelLimbsLimb_011BC8DL_011948 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BC8DL_011948" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011BC8DL_011948[] = dgDaruniaSkelLimbsLimb_011BC8DL_011948; -#else -static const char gDaruniaSkelLimbsLimb_011BC8DL_011948[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011BC8DL_011948; -#endif - -#define dgDaruniaSkelLimbsLimb_011BD4DL_011078 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BD4DL_011078" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011BD4DL_011078[] = dgDaruniaSkelLimbsLimb_011BD4DL_011078; -#else -static const char gDaruniaSkelLimbsLimb_011BD4DL_011078[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011BD4DL_011078; -#endif - -#define dgDaruniaSkelLimbsLimb_011BE0DL_011178 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BE0DL_011178" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011BE0DL_011178[] = dgDaruniaSkelLimbsLimb_011BE0DL_011178; -#else -static const char gDaruniaSkelLimbsLimb_011BE0DL_011178[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011BE0DL_011178; -#endif - -#define dgDaruniaSkelLimbsLimb_011BECDL_0113B8 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BECDL_0113B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011BECDL_0113B8[] = dgDaruniaSkelLimbsLimb_011BECDL_0113B8; -#else -static const char gDaruniaSkelLimbsLimb_011BECDL_0113B8[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011BECDL_0113B8; -#endif - -#define dgDaruniaSkelLimbsLimb_011BF8DL_00D230 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BF8DL_00D230" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011BF8DL_00D230[] = dgDaruniaSkelLimbsLimb_011BF8DL_00D230; -#else -static const char gDaruniaSkelLimbsLimb_011BF8DL_00D230[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011BF8DL_00D230; -#endif - -#define dgDaruniaSkelLimbsLimb_011C04DL_010B58 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C04DL_010B58" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011C04DL_010B58[] = dgDaruniaSkelLimbsLimb_011C04DL_010B58; -#else -static const char gDaruniaSkelLimbsLimb_011C04DL_010B58[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011C04DL_010B58; -#endif - -#define dgDaruniaSkelLimbsLimb_011C10DL_010D10 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C10DL_010D10" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011C10DL_010D10[] = dgDaruniaSkelLimbsLimb_011C10DL_010D10; -#else -static const char gDaruniaSkelLimbsLimb_011C10DL_010D10[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011C10DL_010D10; -#endif - -#define dgDaruniaSkelLimbsLimb_011C1CDL_010E50 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C1CDL_010E50" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011C1CDL_010E50[] = dgDaruniaSkelLimbsLimb_011C1CDL_010E50; -#else -static const char gDaruniaSkelLimbsLimb_011C1CDL_010E50[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011C1CDL_010E50; -#endif - -#define dgDaruniaSkelLimbsLimb_011C28DL_010638 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C28DL_010638" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011C28DL_010638[] = dgDaruniaSkelLimbsLimb_011C28DL_010638; -#else -static const char gDaruniaSkelLimbsLimb_011C28DL_010638[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011C28DL_010638; -#endif - -#define dgDaruniaSkelLimbsLimb_011C34DL_0107F0 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C34DL_0107F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011C34DL_0107F0[] = dgDaruniaSkelLimbsLimb_011C34DL_0107F0; -#else -static const char gDaruniaSkelLimbsLimb_011C34DL_0107F0[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011C34DL_0107F0; -#endif - -#define dgDaruniaSkelLimbsLimb_011C40DL_010930 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C40DL_010930" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011C40DL_010930[] = dgDaruniaSkelLimbsLimb_011C40DL_010930; -#else -static const char gDaruniaSkelLimbsLimb_011C40DL_010930[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011C40DL_010930; -#endif - -#define dgDaruniaSkelLimbsLimb_011C4CDL_00D1D0 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C4CDL_00D1D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011C4CDL_00D1D0[] = dgDaruniaSkelLimbsLimb_011C4CDL_00D1D0; -#else -static const char gDaruniaSkelLimbsLimb_011C4CDL_00D1D0[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011C4CDL_00D1D0; -#endif - -#define dgDaruniaSkelLimbsLimb_011C58DL_00D810 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C58DL_00D810" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaruniaSkelLimbsLimb_011C58DL_00D810[] = dgDaruniaSkelLimbsLimb_011C58DL_00D810; -#else -static const char gDaruniaSkelLimbsLimb_011C58DL_00D810[] __attribute__((aligned (2))) = dgDaruniaSkelLimbsLimb_011C58DL_00D810; -#endif - +#include "align_asset_macro.h" + +#define dgDaruniaSkel "__OTR__objects/object_du/gDaruniaSkel" +static const ALIGN_ASSET(2) char gDaruniaSkel[] = dgDaruniaSkel; + +#define dgDaruniaIdleAnim "__OTR__objects/object_du/gDaruniaIdleAnim" +static const ALIGN_ASSET(2) char gDaruniaIdleAnim[] = dgDaruniaIdleAnim; + +#define dgDaruniaItemGiveAnim "__OTR__objects/object_du/gDaruniaItemGiveAnim" +static const ALIGN_ASSET(2) char gDaruniaItemGiveAnim[] = dgDaruniaItemGiveAnim; + +#define dgDaruniaItemGiveIdleAnim "__OTR__objects/object_du/gDaruniaItemGiveIdleAnim" +static const ALIGN_ASSET(2) char gDaruniaItemGiveIdleAnim[] = dgDaruniaItemGiveIdleAnim; + +#define dgDaruniaHitLinkAnim "__OTR__objects/object_du/gDaruniaHitLinkAnim" +static const ALIGN_ASSET(2) char gDaruniaHitLinkAnim[] = dgDaruniaHitLinkAnim; + +#define dgDaruniaHitBreastAnim "__OTR__objects/object_du/gDaruniaHitBreastAnim" +static const ALIGN_ASSET(2) char gDaruniaHitBreastAnim[] = dgDaruniaHitBreastAnim; + +#define dgDaruniaStandUpAfterFallingAnim "__OTR__objects/object_du/gDaruniaStandUpAfterFallingAnim" +static const ALIGN_ASSET(2) char gDaruniaStandUpAfterFallingAnim[] = dgDaruniaStandUpAfterFallingAnim; + +#define dgDaruniaDancingLoop1Anim "__OTR__objects/object_du/gDaruniaDancingLoop1Anim" +static const ALIGN_ASSET(2) char gDaruniaDancingLoop1Anim[] = dgDaruniaDancingLoop1Anim; + +#define dgDaruniaDancingLoop2Anim "__OTR__objects/object_du/gDaruniaDancingLoop2Anim" +static const ALIGN_ASSET(2) char gDaruniaDancingLoop2Anim[] = dgDaruniaDancingLoop2Anim; + +#define dgDaruniaDancingLoop3Anim "__OTR__objects/object_du/gDaruniaDancingLoop3Anim" +static const ALIGN_ASSET(2) char gDaruniaDancingLoop3Anim[] = dgDaruniaDancingLoop3Anim; + +#define dgDaruniaDancingLoop4Anim "__OTR__objects/object_du/gDaruniaDancingLoop4Anim" +static const ALIGN_ASSET(2) char gDaruniaDancingLoop4Anim[] = dgDaruniaDancingLoop4Anim; + +#define dgDaruniaDancingEndAnim "__OTR__objects/object_du/gDaruniaDancingEndAnim" +static const ALIGN_ASSET(2) char gDaruniaDancingEndAnim[] = dgDaruniaDancingEndAnim; + +#define dgDaruniaWrongSongAnim "__OTR__objects/object_du/gDaruniaWrongSongAnim" +static const ALIGN_ASSET(2) char gDaruniaWrongSongAnim[] = dgDaruniaWrongSongAnim; + +#define dgDaruniaWrongSongEndAnim "__OTR__objects/object_du/gDaruniaWrongSongEndAnim" +static const ALIGN_ASSET(2) char gDaruniaWrongSongEndAnim[] = dgDaruniaWrongSongEndAnim; + +#define dgDaruniaSageFormationAnim "__OTR__objects/object_du/gDaruniaSageFormationAnim" +static const ALIGN_ASSET(2) char gDaruniaSageFormationAnim[] = dgDaruniaSageFormationAnim; + +#define dgDaruniaLookingUpToSariaAnim "__OTR__objects/object_du/gDaruniaLookingUpToSariaAnim" +static const ALIGN_ASSET(2) char gDaruniaLookingUpToSariaAnim[] = dgDaruniaLookingUpToSariaAnim; + +#define dgDaruniaCreditsHitBreastAnim "__OTR__objects/object_du/gDaruniaCreditsHitBreastAnim" +static const ALIGN_ASSET(2) char gDaruniaCreditsHitBreastAnim[] = dgDaruniaCreditsHitBreastAnim; + +#define dgDaruniaCreditsIdleAnim "__OTR__objects/object_du/gDaruniaCreditsIdleAnim" +static const ALIGN_ASSET(2) char gDaruniaCreditsIdleAnim[] = dgDaruniaCreditsIdleAnim; + +#define dgDaruniaEyeOpenTex "__OTR__objects/object_du/gDaruniaEyeOpenTex" +static const ALIGN_ASSET(2) char gDaruniaEyeOpenTex[] = dgDaruniaEyeOpenTex; + +#define dgDaruniaEyeOpeningTex "__OTR__objects/object_du/gDaruniaEyeOpeningTex" +static const ALIGN_ASSET(2) char gDaruniaEyeOpeningTex[] = dgDaruniaEyeOpeningTex; + +#define dgDaruniaEyeShutTex "__OTR__objects/object_du/gDaruniaEyeShutTex" +static const ALIGN_ASSET(2) char gDaruniaEyeShutTex[] = dgDaruniaEyeShutTex; + +#define dgDaruniaEyeClosingTex "__OTR__objects/object_du/gDaruniaEyeClosingTex" +static const ALIGN_ASSET(2) char gDaruniaEyeClosingTex[] = dgDaruniaEyeClosingTex; + +#define dgDaruniaMouthSeriousTex "__OTR__objects/object_du/gDaruniaMouthSeriousTex" +static const ALIGN_ASSET(2) char gDaruniaMouthSeriousTex[] = dgDaruniaMouthSeriousTex; + +#define dgDaruniaMouthGrinningTex "__OTR__objects/object_du/gDaruniaMouthGrinningTex" +static const ALIGN_ASSET(2) char gDaruniaMouthGrinningTex[] = dgDaruniaMouthGrinningTex; + +#define dgDaruniaMouthOpenTex "__OTR__objects/object_du/gDaruniaMouthOpenTex" +static const ALIGN_ASSET(2) char gDaruniaMouthOpenTex[] = dgDaruniaMouthOpenTex; + +#define dgDaruniaMouthHappyTex "__OTR__objects/object_du/gDaruniaMouthHappyTex" +static const ALIGN_ASSET(2) char gDaruniaMouthHappyTex[] = dgDaruniaMouthHappyTex; + +#define dgDaruniaNoseSeriousTex "__OTR__objects/object_du/gDaruniaNoseSeriousTex" +static const ALIGN_ASSET(2) char gDaruniaNoseSeriousTex[] = dgDaruniaNoseSeriousTex; + +#define dgDaruniaNoseHappyTex "__OTR__objects/object_du/gDaruniaNoseHappyTex" +static const ALIGN_ASSET(2) char gDaruniaNoseHappyTex[] = dgDaruniaNoseHappyTex; + +#define dgDaruniaTLUT_6EC0 "__OTR__objects/object_du/gDaruniaTLUT_6EC0" +static const ALIGN_ASSET(2) char gDaruniaTLUT_6EC0[] = dgDaruniaTLUT_6EC0; + +#define dgDaruniaTLUT_7AF8 "__OTR__objects/object_du/gDaruniaTLUT_7AF8" +static const ALIGN_ASSET(2) char gDaruniaTLUT_7AF8[] = dgDaruniaTLUT_7AF8; + +#define dgDaruniaTLUT_7CC8 "__OTR__objects/object_du/gDaruniaTLUT_7CC8" +static const ALIGN_ASSET(2) char gDaruniaTLUT_7CC8[] = dgDaruniaTLUT_7CC8; + +#define dgDaruniaTLUT_7980 "__OTR__objects/object_du/gDaruniaTLUT_7980" +static const ALIGN_ASSET(2) char gDaruniaTLUT_7980[] = dgDaruniaTLUT_7980; + +#define dgDaruniaSkelTex_70C0 "__OTR__objects/object_du/gDaruniaSkelTex_70C0" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_70C0[] = dgDaruniaSkelTex_70C0; + +#define dgDaruniaSkelTex_72C0 "__OTR__objects/object_du/gDaruniaSkelTex_72C0" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_72C0[] = dgDaruniaSkelTex_72C0; + +#define dgDaruniaSkelTex_73C0 "__OTR__objects/object_du/gDaruniaSkelTex_73C0" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_73C0[] = dgDaruniaSkelTex_73C0; + +#define dgDaruniaSkelTex_7440 "__OTR__objects/object_du/gDaruniaSkelTex_7440" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_7440[] = dgDaruniaSkelTex_7440; + +#define dgDaruniaSkelTex_7480 "__OTR__objects/object_du/gDaruniaSkelTex_7480" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_7480[] = dgDaruniaSkelTex_7480; + +#define dgDaruniaSkelTex_7580 "__OTR__objects/object_du/gDaruniaSkelTex_7580" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_7580[] = dgDaruniaSkelTex_7580; + +#define dgDaruniaSkelTex_7EC0 "__OTR__objects/object_du/gDaruniaSkelTex_7EC0" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_7EC0[] = dgDaruniaSkelTex_7EC0; + +#define dgDaruniaSkelTex_7F40 "__OTR__objects/object_du/gDaruniaSkelTex_7F40" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_7F40[] = dgDaruniaSkelTex_7F40; + +#define dgDaruniaSkelTex_8000 "__OTR__objects/object_du/gDaruniaSkelTex_8000" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_8000[] = dgDaruniaSkelTex_8000; + +#define dgDaruniaSkelTex_9480 "__OTR__objects/object_du/gDaruniaSkelTex_9480" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_9480[] = dgDaruniaSkelTex_9480; + +#define dgDaruniaSkelTex_9500 "__OTR__objects/object_du/gDaruniaSkelTex_9500" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_9500[] = dgDaruniaSkelTex_9500; + +#define dgDaruniaSkelTex_9D00 "__OTR__objects/object_du/gDaruniaSkelTex_9D00" +static const ALIGN_ASSET(2) char gDaruniaSkelTex_9D00[] = dgDaruniaSkelTex_9D00; + +#define dgDaruniaSkelLimbsLimb_011BA4DL_00D170 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BA4DL_00D170" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011BA4DL_00D170[] = dgDaruniaSkelLimbsLimb_011BA4DL_00D170; + +#define dgDaruniaSkelLimbsLimb_011BB0DL_011608 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BB0DL_011608" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011BB0DL_011608[] = dgDaruniaSkelLimbsLimb_011BB0DL_011608; + +#define dgDaruniaSkelLimbsLimb_011BBCDL_011708 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BBCDL_011708" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011BBCDL_011708[] = dgDaruniaSkelLimbsLimb_011BBCDL_011708; + +#define dgDaruniaSkelLimbsLimb_011BC8DL_011948 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BC8DL_011948" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011BC8DL_011948[] = dgDaruniaSkelLimbsLimb_011BC8DL_011948; + +#define dgDaruniaSkelLimbsLimb_011BD4DL_011078 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BD4DL_011078" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011BD4DL_011078[] = dgDaruniaSkelLimbsLimb_011BD4DL_011078; + +#define dgDaruniaSkelLimbsLimb_011BE0DL_011178 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BE0DL_011178" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011BE0DL_011178[] = dgDaruniaSkelLimbsLimb_011BE0DL_011178; + +#define dgDaruniaSkelLimbsLimb_011BECDL_0113B8 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BECDL_0113B8" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011BECDL_0113B8[] = dgDaruniaSkelLimbsLimb_011BECDL_0113B8; + +#define dgDaruniaSkelLimbsLimb_011BF8DL_00D230 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011BF8DL_00D230" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011BF8DL_00D230[] = dgDaruniaSkelLimbsLimb_011BF8DL_00D230; + +#define dgDaruniaSkelLimbsLimb_011C04DL_010B58 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C04DL_010B58" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011C04DL_010B58[] = dgDaruniaSkelLimbsLimb_011C04DL_010B58; + +#define dgDaruniaSkelLimbsLimb_011C10DL_010D10 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C10DL_010D10" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011C10DL_010D10[] = dgDaruniaSkelLimbsLimb_011C10DL_010D10; + +#define dgDaruniaSkelLimbsLimb_011C1CDL_010E50 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C1CDL_010E50" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011C1CDL_010E50[] = dgDaruniaSkelLimbsLimb_011C1CDL_010E50; + +#define dgDaruniaSkelLimbsLimb_011C28DL_010638 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C28DL_010638" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011C28DL_010638[] = dgDaruniaSkelLimbsLimb_011C28DL_010638; + +#define dgDaruniaSkelLimbsLimb_011C34DL_0107F0 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C34DL_0107F0" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011C34DL_0107F0[] = dgDaruniaSkelLimbsLimb_011C34DL_0107F0; + +#define dgDaruniaSkelLimbsLimb_011C40DL_010930 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C40DL_010930" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011C40DL_010930[] = dgDaruniaSkelLimbsLimb_011C40DL_010930; + +#define dgDaruniaSkelLimbsLimb_011C4CDL_00D1D0 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C4CDL_00D1D0" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011C4CDL_00D1D0[] = dgDaruniaSkelLimbsLimb_011C4CDL_00D1D0; + +#define dgDaruniaSkelLimbsLimb_011C58DL_00D810 "__OTR__objects/object_du/gDaruniaSkelLimbsLimb_011C58DL_00D810" +static const ALIGN_ASSET(2) char gDaruniaSkelLimbsLimb_011C58DL_00D810[] = dgDaruniaSkelLimbsLimb_011C58DL_00D810; \ No newline at end of file diff --git a/soh/assets/objects/object_dy_obj/object_dy_obj.h b/soh/assets/objects/object_dy_obj/object_dy_obj.h index 898dc2576..b7f655bef 100644 --- a/soh/assets/objects/object_dy_obj/object_dy_obj.h +++ b/soh/assets/objects/object_dy_obj/object_dy_obj.h @@ -1,471 +1,204 @@ #pragma once -#define dgGreatFairySkel "__OTR__objects/object_dy_obj/gGreatFairySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySkel[] = dgGreatFairySkel; -#else -static const char gGreatFairySkel[] __attribute__((aligned (2))) = dgGreatFairySkel; -#endif - -#define dgGreatFairyWaistDL "__OTR__objects/object_dy_obj/gGreatFairyWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyWaistDL[] = dgGreatFairyWaistDL; -#else -static const char gGreatFairyWaistDL[] __attribute__((aligned (2))) = dgGreatFairyWaistDL; -#endif - -#define dgGreatFairyLeftThighDL "__OTR__objects/object_dy_obj/gGreatFairyLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftThighDL[] = dgGreatFairyLeftThighDL; -#else -static const char gGreatFairyLeftThighDL[] __attribute__((aligned (2))) = dgGreatFairyLeftThighDL; -#endif - -#define dgGreatFairyLeftLegDL "__OTR__objects/object_dy_obj/gGreatFairyLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftLegDL[] = dgGreatFairyLeftLegDL; -#else -static const char gGreatFairyLeftLegDL[] __attribute__((aligned (2))) = dgGreatFairyLeftLegDL; -#endif - -#define dgGreatFairyLeftFootDL "__OTR__objects/object_dy_obj/gGreatFairyLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftFootDL[] = dgGreatFairyLeftFootDL; -#else -static const char gGreatFairyLeftFootDL[] __attribute__((aligned (2))) = dgGreatFairyLeftFootDL; -#endif - -#define dgGreatFairyRightThighDL "__OTR__objects/object_dy_obj/gGreatFairyRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightThighDL[] = dgGreatFairyRightThighDL; -#else -static const char gGreatFairyRightThighDL[] __attribute__((aligned (2))) = dgGreatFairyRightThighDL; -#endif - -#define dgGreatFairyRightLegDL "__OTR__objects/object_dy_obj/gGreatFairyRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightLegDL[] = dgGreatFairyRightLegDL; -#else -static const char gGreatFairyRightLegDL[] __attribute__((aligned (2))) = dgGreatFairyRightLegDL; -#endif - -#define dgGreatFairyRightFootDL "__OTR__objects/object_dy_obj/gGreatFairyRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightFootDL[] = dgGreatFairyRightFootDL; -#else -static const char gGreatFairyRightFootDL[] __attribute__((aligned (2))) = dgGreatFairyRightFootDL; -#endif - -#define dgGreatFairyTorsoDL "__OTR__objects/object_dy_obj/gGreatFairyTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyTorsoDL[] = dgGreatFairyTorsoDL; -#else -static const char gGreatFairyTorsoDL[] __attribute__((aligned (2))) = dgGreatFairyTorsoDL; -#endif - -#define dgGreatFairyLeftUpperArmDL "__OTR__objects/object_dy_obj/gGreatFairyLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftUpperArmDL[] = dgGreatFairyLeftUpperArmDL; -#else -static const char gGreatFairyLeftUpperArmDL[] __attribute__((aligned (2))) = dgGreatFairyLeftUpperArmDL; -#endif - -#define dgGreatFairyLeftForearmDL "__OTR__objects/object_dy_obj/gGreatFairyLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftForearmDL[] = dgGreatFairyLeftForearmDL; -#else -static const char gGreatFairyLeftForearmDL[] __attribute__((aligned (2))) = dgGreatFairyLeftForearmDL; -#endif - -#define dgGreatFairyLeftHandDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftHandDL[] = dgGreatFairyLeftHandDL; -#else -static const char gGreatFairyLeftHandDL[] __attribute__((aligned (2))) = dgGreatFairyLeftHandDL; -#endif - -#define dgGreatFairyRightUpperArmDL "__OTR__objects/object_dy_obj/gGreatFairyRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightUpperArmDL[] = dgGreatFairyRightUpperArmDL; -#else -static const char gGreatFairyRightUpperArmDL[] __attribute__((aligned (2))) = dgGreatFairyRightUpperArmDL; -#endif - -#define dgGreatFairyRightForearmDL "__OTR__objects/object_dy_obj/gGreatFairyRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightForearmDL[] = dgGreatFairyRightForearmDL; -#else -static const char gGreatFairyRightForearmDL[] __attribute__((aligned (2))) = dgGreatFairyRightForearmDL; -#endif - -#define dgGreatFairyRightHandDL "__OTR__objects/object_dy_obj/gGreatFairyRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightHandDL[] = dgGreatFairyRightHandDL; -#else -static const char gGreatFairyRightHandDL[] __attribute__((aligned (2))) = dgGreatFairyRightHandDL; -#endif - -#define dgGreatFairyHeadDL "__OTR__objects/object_dy_obj/gGreatFairyHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyHeadDL[] = dgGreatFairyHeadDL; -#else -static const char gGreatFairyHeadDL[] __attribute__((aligned (2))) = dgGreatFairyHeadDL; -#endif - -#define dgGreatFairyMiddleHairLowerPartDL "__OTR__objects/object_dy_obj/gGreatFairyMiddleHairLowerPartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyMiddleHairLowerPartDL[] = dgGreatFairyMiddleHairLowerPartDL; -#else -static const char gGreatFairyMiddleHairLowerPartDL[] __attribute__((aligned (2))) = dgGreatFairyMiddleHairLowerPartDL; -#endif - -#define dgGreatFairyMiddleHairMiddlePartDL "__OTR__objects/object_dy_obj/gGreatFairyMiddleHairMiddlePartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyMiddleHairMiddlePartDL[] = dgGreatFairyMiddleHairMiddlePartDL; -#else -static const char gGreatFairyMiddleHairMiddlePartDL[] __attribute__((aligned (2))) = dgGreatFairyMiddleHairMiddlePartDL; -#endif - -#define dgGreatFairyMiddleHairUpperPartDL "__OTR__objects/object_dy_obj/gGreatFairyMiddleHairUpperPartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyMiddleHairUpperPartDL[] = dgGreatFairyMiddleHairUpperPartDL; -#else -static const char gGreatFairyMiddleHairUpperPartDL[] __attribute__((aligned (2))) = dgGreatFairyMiddleHairUpperPartDL; -#endif - -#define dgGreatFairyMiddleHairTipDL "__OTR__objects/object_dy_obj/gGreatFairyMiddleHairTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyMiddleHairTipDL[] = dgGreatFairyMiddleHairTipDL; -#else -static const char gGreatFairyMiddleHairTipDL[] __attribute__((aligned (2))) = dgGreatFairyMiddleHairTipDL; -#endif - -#define dgGreatFairyLeftHairLowerPartDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHairLowerPartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftHairLowerPartDL[] = dgGreatFairyLeftHairLowerPartDL; -#else -static const char gGreatFairyLeftHairLowerPartDL[] __attribute__((aligned (2))) = dgGreatFairyLeftHairLowerPartDL; -#endif - -#define dgGreatFairyLeftHairMiddlePartDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHairMiddlePartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftHairMiddlePartDL[] = dgGreatFairyLeftHairMiddlePartDL; -#else -static const char gGreatFairyLeftHairMiddlePartDL[] __attribute__((aligned (2))) = dgGreatFairyLeftHairMiddlePartDL; -#endif - -#define dgGreatFairyLeftHairUpperPartDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHairUpperPartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftHairUpperPartDL[] = dgGreatFairyLeftHairUpperPartDL; -#else -static const char gGreatFairyLeftHairUpperPartDL[] __attribute__((aligned (2))) = dgGreatFairyLeftHairUpperPartDL; -#endif - -#define dgGreatFairyLeftHairTipDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHairTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeftHairTipDL[] = dgGreatFairyLeftHairTipDL; -#else -static const char gGreatFairyLeftHairTipDL[] __attribute__((aligned (2))) = dgGreatFairyLeftHairTipDL; -#endif - -#define dgGreatFairyRightHairLowerPartDL "__OTR__objects/object_dy_obj/gGreatFairyRightHairLowerPartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightHairLowerPartDL[] = dgGreatFairyRightHairLowerPartDL; -#else -static const char gGreatFairyRightHairLowerPartDL[] __attribute__((aligned (2))) = dgGreatFairyRightHairLowerPartDL; -#endif - -#define dgGreatFairyRightHairMiddlePartDL "__OTR__objects/object_dy_obj/gGreatFairyRightHairMiddlePartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightHairMiddlePartDL[] = dgGreatFairyRightHairMiddlePartDL; -#else -static const char gGreatFairyRightHairMiddlePartDL[] __attribute__((aligned (2))) = dgGreatFairyRightHairMiddlePartDL; -#endif - -#define dgGreatFairyRightHairUpperPartDL "__OTR__objects/object_dy_obj/gGreatFairyRightHairUpperPartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightHairUpperPartDL[] = dgGreatFairyRightHairUpperPartDL; -#else -static const char gGreatFairyRightHairUpperPartDL[] __attribute__((aligned (2))) = dgGreatFairyRightHairUpperPartDL; -#endif - -#define dgGreatFairyRightHairTipDL "__OTR__objects/object_dy_obj/gGreatFairyRightHairTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyRightHairTipDL[] = dgGreatFairyRightHairTipDL; -#else -static const char gGreatFairyRightHairTipDL[] __attribute__((aligned (2))) = dgGreatFairyRightHairTipDL; -#endif - -#define dgGreatFairyBetaDL "__OTR__objects/object_dy_obj/gGreatFairyBetaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyBetaDL[] = dgGreatFairyBetaDL; -#else -static const char gGreatFairyBetaDL[] __attribute__((aligned (2))) = dgGreatFairyBetaDL; -#endif - -#define dgGreatFairyFlowerDL "__OTR__objects/object_dy_obj/gGreatFairyFlowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyFlowerDL[] = dgGreatFairyFlowerDL; -#else -static const char gGreatFairyFlowerDL[] __attribute__((aligned (2))) = dgGreatFairyFlowerDL; -#endif - -#define dgGreatFairyParticleMaterialDL "__OTR__objects/object_dy_obj/gGreatFairyParticleMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyParticleMaterialDL[] = dgGreatFairyParticleMaterialDL; -#else -static const char gGreatFairyParticleMaterialDL[] __attribute__((aligned (2))) = dgGreatFairyParticleMaterialDL; -#endif - -#define dgGreatFairyParticleModelDL "__OTR__objects/object_dy_obj/gGreatFairyParticleModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyParticleModelDL[] = dgGreatFairyParticleModelDL; -#else -static const char gGreatFairyParticleModelDL[] __attribute__((aligned (2))) = dgGreatFairyParticleModelDL; -#endif - -#define dgGreatFairySpiralBeamDL "__OTR__objects/object_dy_obj/gGreatFairySpiralBeamDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySpiralBeamDL[] = dgGreatFairySpiralBeamDL; -#else -static const char gGreatFairySpiralBeamDL[] __attribute__((aligned (2))) = dgGreatFairySpiralBeamDL; -#endif - -#define dgGreatFairyTLUT "__OTR__objects/object_dy_obj/gGreatFairyTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyTLUT[] = dgGreatFairyTLUT; -#else -static const char gGreatFairyTLUT[] __attribute__((aligned (2))) = dgGreatFairyTLUT; -#endif - -#define dgGreatFairyParticleTex "__OTR__objects/object_dy_obj/gGreatFairyParticleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyParticleTex[] = dgGreatFairyParticleTex; -#else -static const char gGreatFairyParticleTex[] __attribute__((aligned (2))) = dgGreatFairyParticleTex; -#endif - -#define dgGreatFairyBetaGradient1Tex "__OTR__objects/object_dy_obj/gGreatFairyBetaGradient1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyBetaGradient1Tex[] = dgGreatFairyBetaGradient1Tex; -#else -static const char gGreatFairyBetaGradient1Tex[] __attribute__((aligned (2))) = dgGreatFairyBetaGradient1Tex; -#endif - -#define dgGreatFairyBetaGradient2Tex "__OTR__objects/object_dy_obj/gGreatFairyBetaGradient2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyBetaGradient2Tex[] = dgGreatFairyBetaGradient2Tex; -#else -static const char gGreatFairyBetaGradient2Tex[] __attribute__((aligned (2))) = dgGreatFairyBetaGradient2Tex; -#endif - -#define dgGreatFairyBetaClothesTex "__OTR__objects/object_dy_obj/gGreatFairyBetaClothesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyBetaClothesTex[] = dgGreatFairyBetaClothesTex; -#else -static const char gGreatFairyBetaClothesTex[] __attribute__((aligned (2))) = dgGreatFairyBetaClothesTex; -#endif - -#define dgGreatFairyFlowerTex "__OTR__objects/object_dy_obj/gGreatFairyFlowerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyFlowerTex[] = dgGreatFairyFlowerTex; -#else -static const char gGreatFairyFlowerTex[] __attribute__((aligned (2))) = dgGreatFairyFlowerTex; -#endif - -#define dgGreatFairyBootPatternTex "__OTR__objects/object_dy_obj/gGreatFairyBootPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyBootPatternTex[] = dgGreatFairyBootPatternTex; -#else -static const char gGreatFairyBootPatternTex[] __attribute__((aligned (2))) = dgGreatFairyBootPatternTex; -#endif - -#define dgGreatFairyLeavesPattern1Tex "__OTR__objects/object_dy_obj/gGreatFairyLeavesPattern1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeavesPattern1Tex[] = dgGreatFairyLeavesPattern1Tex; -#else -static const char gGreatFairyLeavesPattern1Tex[] __attribute__((aligned (2))) = dgGreatFairyLeavesPattern1Tex; -#endif - -#define dgGreatFairySkinGradient "__OTR__objects/object_dy_obj/gGreatFairySkinGradient" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySkinGradient[] = dgGreatFairySkinGradient; -#else -static const char gGreatFairySkinGradient[] __attribute__((aligned (2))) = dgGreatFairySkinGradient; -#endif - -#define dgGreatFairyLeavesPattern2Tex "__OTR__objects/object_dy_obj/gGreatFairyLeavesPattern2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeavesPattern2Tex[] = dgGreatFairyLeavesPattern2Tex; -#else -static const char gGreatFairyLeavesPattern2Tex[] __attribute__((aligned (2))) = dgGreatFairyLeavesPattern2Tex; -#endif - -#define dgGreatFairyHairTex "__OTR__objects/object_dy_obj/gGreatFairyHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyHairTex[] = dgGreatFairyHairTex; -#else -static const char gGreatFairyHairTex[] __attribute__((aligned (2))) = dgGreatFairyHairTex; -#endif - -#define dgGreatFairyEar1Tex "__OTR__objects/object_dy_obj/gGreatFairyEar1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyEar1Tex[] = dgGreatFairyEar1Tex; -#else -static const char gGreatFairyEar1Tex[] __attribute__((aligned (2))) = dgGreatFairyEar1Tex; -#endif - -#define dgGreatFairyEar2Tex "__OTR__objects/object_dy_obj/gGreatFairyEar2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyEar2Tex[] = dgGreatFairyEar2Tex; -#else -static const char gGreatFairyEar2Tex[] __attribute__((aligned (2))) = dgGreatFairyEar2Tex; -#endif - -#define dgGreatFairyBackOfHandTex "__OTR__objects/object_dy_obj/gGreatFairyBackOfHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyBackOfHandTex[] = dgGreatFairyBackOfHandTex; -#else -static const char gGreatFairyBackOfHandTex[] __attribute__((aligned (2))) = dgGreatFairyBackOfHandTex; -#endif - -#define dgGreatFairyLeavesPattern3Tex "__OTR__objects/object_dy_obj/gGreatFairyLeavesPattern3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLeavesPattern3Tex[] = dgGreatFairyLeavesPattern3Tex; -#else -static const char gGreatFairyLeavesPattern3Tex[] __attribute__((aligned (2))) = dgGreatFairyLeavesPattern3Tex; -#endif - -#define dgGreatFairySpiralBeamPatternTex "__OTR__objects/object_dy_obj/gGreatFairySpiralBeamPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySpiralBeamPatternTex[] = dgGreatFairySpiralBeamPatternTex; -#else -static const char gGreatFairySpiralBeamPatternTex[] __attribute__((aligned (2))) = dgGreatFairySpiralBeamPatternTex; -#endif - -#define dgGreatFairySpiralBeamGradientTex "__OTR__objects/object_dy_obj/gGreatFairySpiralBeamGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySpiralBeamGradientTex[] = dgGreatFairySpiralBeamGradientTex; -#else -static const char gGreatFairySpiralBeamGradientTex[] __attribute__((aligned (2))) = dgGreatFairySpiralBeamGradientTex; -#endif - -#define dgGreatFairyEyeOpenTex "__OTR__objects/object_dy_obj/gGreatFairyEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyEyeOpenTex[] = dgGreatFairyEyeOpenTex; -#else -static const char gGreatFairyEyeOpenTex[] __attribute__((aligned (2))) = dgGreatFairyEyeOpenTex; -#endif - -#define dgGreatFairyEyeHalfTex "__OTR__objects/object_dy_obj/gGreatFairyEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyEyeHalfTex[] = dgGreatFairyEyeHalfTex; -#else -static const char gGreatFairyEyeHalfTex[] __attribute__((aligned (2))) = dgGreatFairyEyeHalfTex; -#endif - -#define dgGreatFairyEyeClosedTex "__OTR__objects/object_dy_obj/gGreatFairyEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyEyeClosedTex[] = dgGreatFairyEyeClosedTex; -#else -static const char gGreatFairyEyeClosedTex[] __attribute__((aligned (2))) = dgGreatFairyEyeClosedTex; -#endif - -#define dgGreatFairyMouthClosedTex "__OTR__objects/object_dy_obj/gGreatFairyMouthClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyMouthClosedTex[] = dgGreatFairyMouthClosedTex; -#else -static const char gGreatFairyMouthClosedTex[] __attribute__((aligned (2))) = dgGreatFairyMouthClosedTex; -#endif - -#define dgGreatFairyMouthOpenTex "__OTR__objects/object_dy_obj/gGreatFairyMouthOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyMouthOpenTex[] = dgGreatFairyMouthOpenTex; -#else -static const char gGreatFairyMouthOpenTex[] __attribute__((aligned (2))) = dgGreatFairyMouthOpenTex; -#endif - -#define dgGreatFairyAnim_000108 "__OTR__objects/object_dy_obj/gGreatFairyAnim_000108" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyAnim_000108[] = dgGreatFairyAnim_000108; -#else -static const char gGreatFairyAnim_000108[] __attribute__((aligned (2))) = dgGreatFairyAnim_000108; -#endif - -#define dgGreatFairySpellFountainSpinShrinkAnim "__OTR__objects/object_dy_obj/gGreatFairySpellFountainSpinShrinkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySpellFountainSpinShrinkAnim[] = dgGreatFairySpellFountainSpinShrinkAnim; -#else -static const char gGreatFairySpellFountainSpinShrinkAnim[] __attribute__((aligned (2))) = dgGreatFairySpellFountainSpinShrinkAnim; -#endif - -#define dgGreatFairyLayingSidewaysAnim "__OTR__objects/object_dy_obj/gGreatFairyLayingSidewaysAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLayingSidewaysAnim[] = dgGreatFairyLayingSidewaysAnim; -#else -static const char gGreatFairyLayingSidewaysAnim[] __attribute__((aligned (2))) = dgGreatFairyLayingSidewaysAnim; -#endif - -#define dgGreatFairyLayingDownTransitionAnim "__OTR__objects/object_dy_obj/gGreatFairyLayingDownTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyLayingDownTransitionAnim[] = dgGreatFairyLayingDownTransitionAnim; -#else -static const char gGreatFairyLayingDownTransitionAnim[] __attribute__((aligned (2))) = dgGreatFairyLayingDownTransitionAnim; -#endif - -#define dgGreatFairyAfterSpellAnim "__OTR__objects/object_dy_obj/gGreatFairyAfterSpellAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyAfterSpellAnim[] = dgGreatFairyAfterSpellAnim; -#else -static const char gGreatFairyAfterSpellAnim[] __attribute__((aligned (2))) = dgGreatFairyAfterSpellAnim; -#endif - -#define dgGreatFairyAnim_005810 "__OTR__objects/object_dy_obj/gGreatFairyAnim_005810" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyAnim_005810[] = dgGreatFairyAnim_005810; -#else -static const char gGreatFairyAnim_005810[] __attribute__((aligned (2))) = dgGreatFairyAnim_005810; -#endif - -#define dgGreatFairyJewelFountainSpinShrinkAnim "__OTR__objects/object_dy_obj/gGreatFairyJewelFountainSpinShrinkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyJewelFountainSpinShrinkAnim[] = dgGreatFairyJewelFountainSpinShrinkAnim; -#else -static const char gGreatFairyJewelFountainSpinShrinkAnim[] __attribute__((aligned (2))) = dgGreatFairyJewelFountainSpinShrinkAnim; -#endif - -#define dgGreatFairyGivingUpgradeAnim "__OTR__objects/object_dy_obj/gGreatFairyGivingUpgradeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyGivingUpgradeAnim[] = dgGreatFairyGivingUpgradeAnim; -#else -static const char gGreatFairyGivingUpgradeAnim[] __attribute__((aligned (2))) = dgGreatFairyGivingUpgradeAnim; -#endif - -#define dgGreatFairyAfterUpgradeAnim "__OTR__objects/object_dy_obj/gGreatFairyAfterUpgradeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyAfterUpgradeAnim[] = dgGreatFairyAfterUpgradeAnim; -#else -static const char gGreatFairyAfterUpgradeAnim[] __attribute__((aligned (2))) = dgGreatFairyAfterUpgradeAnim; -#endif - -#define dgGreatFairySittingTransitionAnim "__OTR__objects/object_dy_obj/gGreatFairySittingTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySittingTransitionAnim[] = dgGreatFairySittingTransitionAnim; -#else -static const char gGreatFairySittingTransitionAnim[] __attribute__((aligned (2))) = dgGreatFairySittingTransitionAnim; -#endif - -#define dgGreatFairySittingAnim "__OTR__objects/object_dy_obj/gGreatFairySittingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySittingAnim[] = dgGreatFairySittingAnim; -#else -static const char gGreatFairySittingAnim[] __attribute__((aligned (2))) = dgGreatFairySittingAnim; -#endif - -#define dgGreatFairySpiralBeamVtx "__OTR__objects/object_dy_obj/gGreatFairySpiralBeamVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairySpiralBeamVtx[] = dgGreatFairySpiralBeamVtx; -#else -static const char gGreatFairySpiralBeamVtx[] __attribute__((aligned (2))) = dgGreatFairySpiralBeamVtx; -#endif - +#include "align_asset_macro.h" + +#define dgGreatFairySkel "__OTR__objects/object_dy_obj/gGreatFairySkel" +static const ALIGN_ASSET(2) char gGreatFairySkel[] = dgGreatFairySkel; + +#define dgGreatFairyWaistDL "__OTR__objects/object_dy_obj/gGreatFairyWaistDL" +static const ALIGN_ASSET(2) char gGreatFairyWaistDL[] = dgGreatFairyWaistDL; + +#define dgGreatFairyLeftThighDL "__OTR__objects/object_dy_obj/gGreatFairyLeftThighDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftThighDL[] = dgGreatFairyLeftThighDL; + +#define dgGreatFairyLeftLegDL "__OTR__objects/object_dy_obj/gGreatFairyLeftLegDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftLegDL[] = dgGreatFairyLeftLegDL; + +#define dgGreatFairyLeftFootDL "__OTR__objects/object_dy_obj/gGreatFairyLeftFootDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftFootDL[] = dgGreatFairyLeftFootDL; + +#define dgGreatFairyRightThighDL "__OTR__objects/object_dy_obj/gGreatFairyRightThighDL" +static const ALIGN_ASSET(2) char gGreatFairyRightThighDL[] = dgGreatFairyRightThighDL; + +#define dgGreatFairyRightLegDL "__OTR__objects/object_dy_obj/gGreatFairyRightLegDL" +static const ALIGN_ASSET(2) char gGreatFairyRightLegDL[] = dgGreatFairyRightLegDL; + +#define dgGreatFairyRightFootDL "__OTR__objects/object_dy_obj/gGreatFairyRightFootDL" +static const ALIGN_ASSET(2) char gGreatFairyRightFootDL[] = dgGreatFairyRightFootDL; + +#define dgGreatFairyTorsoDL "__OTR__objects/object_dy_obj/gGreatFairyTorsoDL" +static const ALIGN_ASSET(2) char gGreatFairyTorsoDL[] = dgGreatFairyTorsoDL; + +#define dgGreatFairyLeftUpperArmDL "__OTR__objects/object_dy_obj/gGreatFairyLeftUpperArmDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftUpperArmDL[] = dgGreatFairyLeftUpperArmDL; + +#define dgGreatFairyLeftForearmDL "__OTR__objects/object_dy_obj/gGreatFairyLeftForearmDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftForearmDL[] = dgGreatFairyLeftForearmDL; + +#define dgGreatFairyLeftHandDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHandDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftHandDL[] = dgGreatFairyLeftHandDL; + +#define dgGreatFairyRightUpperArmDL "__OTR__objects/object_dy_obj/gGreatFairyRightUpperArmDL" +static const ALIGN_ASSET(2) char gGreatFairyRightUpperArmDL[] = dgGreatFairyRightUpperArmDL; + +#define dgGreatFairyRightForearmDL "__OTR__objects/object_dy_obj/gGreatFairyRightForearmDL" +static const ALIGN_ASSET(2) char gGreatFairyRightForearmDL[] = dgGreatFairyRightForearmDL; + +#define dgGreatFairyRightHandDL "__OTR__objects/object_dy_obj/gGreatFairyRightHandDL" +static const ALIGN_ASSET(2) char gGreatFairyRightHandDL[] = dgGreatFairyRightHandDL; + +#define dgGreatFairyHeadDL "__OTR__objects/object_dy_obj/gGreatFairyHeadDL" +static const ALIGN_ASSET(2) char gGreatFairyHeadDL[] = dgGreatFairyHeadDL; + +#define dgGreatFairyMiddleHairLowerPartDL "__OTR__objects/object_dy_obj/gGreatFairyMiddleHairLowerPartDL" +static const ALIGN_ASSET(2) char gGreatFairyMiddleHairLowerPartDL[] = dgGreatFairyMiddleHairLowerPartDL; + +#define dgGreatFairyMiddleHairMiddlePartDL "__OTR__objects/object_dy_obj/gGreatFairyMiddleHairMiddlePartDL" +static const ALIGN_ASSET(2) char gGreatFairyMiddleHairMiddlePartDL[] = dgGreatFairyMiddleHairMiddlePartDL; + +#define dgGreatFairyMiddleHairUpperPartDL "__OTR__objects/object_dy_obj/gGreatFairyMiddleHairUpperPartDL" +static const ALIGN_ASSET(2) char gGreatFairyMiddleHairUpperPartDL[] = dgGreatFairyMiddleHairUpperPartDL; + +#define dgGreatFairyMiddleHairTipDL "__OTR__objects/object_dy_obj/gGreatFairyMiddleHairTipDL" +static const ALIGN_ASSET(2) char gGreatFairyMiddleHairTipDL[] = dgGreatFairyMiddleHairTipDL; + +#define dgGreatFairyLeftHairLowerPartDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHairLowerPartDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftHairLowerPartDL[] = dgGreatFairyLeftHairLowerPartDL; + +#define dgGreatFairyLeftHairMiddlePartDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHairMiddlePartDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftHairMiddlePartDL[] = dgGreatFairyLeftHairMiddlePartDL; + +#define dgGreatFairyLeftHairUpperPartDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHairUpperPartDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftHairUpperPartDL[] = dgGreatFairyLeftHairUpperPartDL; + +#define dgGreatFairyLeftHairTipDL "__OTR__objects/object_dy_obj/gGreatFairyLeftHairTipDL" +static const ALIGN_ASSET(2) char gGreatFairyLeftHairTipDL[] = dgGreatFairyLeftHairTipDL; + +#define dgGreatFairyRightHairLowerPartDL "__OTR__objects/object_dy_obj/gGreatFairyRightHairLowerPartDL" +static const ALIGN_ASSET(2) char gGreatFairyRightHairLowerPartDL[] = dgGreatFairyRightHairLowerPartDL; + +#define dgGreatFairyRightHairMiddlePartDL "__OTR__objects/object_dy_obj/gGreatFairyRightHairMiddlePartDL" +static const ALIGN_ASSET(2) char gGreatFairyRightHairMiddlePartDL[] = dgGreatFairyRightHairMiddlePartDL; + +#define dgGreatFairyRightHairUpperPartDL "__OTR__objects/object_dy_obj/gGreatFairyRightHairUpperPartDL" +static const ALIGN_ASSET(2) char gGreatFairyRightHairUpperPartDL[] = dgGreatFairyRightHairUpperPartDL; + +#define dgGreatFairyRightHairTipDL "__OTR__objects/object_dy_obj/gGreatFairyRightHairTipDL" +static const ALIGN_ASSET(2) char gGreatFairyRightHairTipDL[] = dgGreatFairyRightHairTipDL; + +#define dgGreatFairyBetaDL "__OTR__objects/object_dy_obj/gGreatFairyBetaDL" +static const ALIGN_ASSET(2) char gGreatFairyBetaDL[] = dgGreatFairyBetaDL; + +#define dgGreatFairyFlowerDL "__OTR__objects/object_dy_obj/gGreatFairyFlowerDL" +static const ALIGN_ASSET(2) char gGreatFairyFlowerDL[] = dgGreatFairyFlowerDL; + +#define dgGreatFairyParticleMaterialDL "__OTR__objects/object_dy_obj/gGreatFairyParticleMaterialDL" +static const ALIGN_ASSET(2) char gGreatFairyParticleMaterialDL[] = dgGreatFairyParticleMaterialDL; + +#define dgGreatFairyParticleModelDL "__OTR__objects/object_dy_obj/gGreatFairyParticleModelDL" +static const ALIGN_ASSET(2) char gGreatFairyParticleModelDL[] = dgGreatFairyParticleModelDL; + +#define dgGreatFairySpiralBeamDL "__OTR__objects/object_dy_obj/gGreatFairySpiralBeamDL" +static const ALIGN_ASSET(2) char gGreatFairySpiralBeamDL[] = dgGreatFairySpiralBeamDL; + +#define dgGreatFairyTLUT "__OTR__objects/object_dy_obj/gGreatFairyTLUT" +static const ALIGN_ASSET(2) char gGreatFairyTLUT[] = dgGreatFairyTLUT; + +#define dgGreatFairyParticleTex "__OTR__objects/object_dy_obj/gGreatFairyParticleTex" +static const ALIGN_ASSET(2) char gGreatFairyParticleTex[] = dgGreatFairyParticleTex; + +#define dgGreatFairyBetaGradient1Tex "__OTR__objects/object_dy_obj/gGreatFairyBetaGradient1Tex" +static const ALIGN_ASSET(2) char gGreatFairyBetaGradient1Tex[] = dgGreatFairyBetaGradient1Tex; + +#define dgGreatFairyBetaGradient2Tex "__OTR__objects/object_dy_obj/gGreatFairyBetaGradient2Tex" +static const ALIGN_ASSET(2) char gGreatFairyBetaGradient2Tex[] = dgGreatFairyBetaGradient2Tex; + +#define dgGreatFairyBetaClothesTex "__OTR__objects/object_dy_obj/gGreatFairyBetaClothesTex" +static const ALIGN_ASSET(2) char gGreatFairyBetaClothesTex[] = dgGreatFairyBetaClothesTex; + +#define dgGreatFairyFlowerTex "__OTR__objects/object_dy_obj/gGreatFairyFlowerTex" +static const ALIGN_ASSET(2) char gGreatFairyFlowerTex[] = dgGreatFairyFlowerTex; + +#define dgGreatFairyBootPatternTex "__OTR__objects/object_dy_obj/gGreatFairyBootPatternTex" +static const ALIGN_ASSET(2) char gGreatFairyBootPatternTex[] = dgGreatFairyBootPatternTex; + +#define dgGreatFairyLeavesPattern1Tex "__OTR__objects/object_dy_obj/gGreatFairyLeavesPattern1Tex" +static const ALIGN_ASSET(2) char gGreatFairyLeavesPattern1Tex[] = dgGreatFairyLeavesPattern1Tex; + +#define dgGreatFairySkinGradient "__OTR__objects/object_dy_obj/gGreatFairySkinGradient" +static const ALIGN_ASSET(2) char gGreatFairySkinGradient[] = dgGreatFairySkinGradient; + +#define dgGreatFairyLeavesPattern2Tex "__OTR__objects/object_dy_obj/gGreatFairyLeavesPattern2Tex" +static const ALIGN_ASSET(2) char gGreatFairyLeavesPattern2Tex[] = dgGreatFairyLeavesPattern2Tex; + +#define dgGreatFairyHairTex "__OTR__objects/object_dy_obj/gGreatFairyHairTex" +static const ALIGN_ASSET(2) char gGreatFairyHairTex[] = dgGreatFairyHairTex; + +#define dgGreatFairyEar1Tex "__OTR__objects/object_dy_obj/gGreatFairyEar1Tex" +static const ALIGN_ASSET(2) char gGreatFairyEar1Tex[] = dgGreatFairyEar1Tex; + +#define dgGreatFairyEar2Tex "__OTR__objects/object_dy_obj/gGreatFairyEar2Tex" +static const ALIGN_ASSET(2) char gGreatFairyEar2Tex[] = dgGreatFairyEar2Tex; + +#define dgGreatFairyBackOfHandTex "__OTR__objects/object_dy_obj/gGreatFairyBackOfHandTex" +static const ALIGN_ASSET(2) char gGreatFairyBackOfHandTex[] = dgGreatFairyBackOfHandTex; + +#define dgGreatFairyLeavesPattern3Tex "__OTR__objects/object_dy_obj/gGreatFairyLeavesPattern3Tex" +static const ALIGN_ASSET(2) char gGreatFairyLeavesPattern3Tex[] = dgGreatFairyLeavesPattern3Tex; + +#define dgGreatFairySpiralBeamPatternTex "__OTR__objects/object_dy_obj/gGreatFairySpiralBeamPatternTex" +static const ALIGN_ASSET(2) char gGreatFairySpiralBeamPatternTex[] = dgGreatFairySpiralBeamPatternTex; + +#define dgGreatFairySpiralBeamGradientTex "__OTR__objects/object_dy_obj/gGreatFairySpiralBeamGradientTex" +static const ALIGN_ASSET(2) char gGreatFairySpiralBeamGradientTex[] = dgGreatFairySpiralBeamGradientTex; + +#define dgGreatFairyEyeOpenTex "__OTR__objects/object_dy_obj/gGreatFairyEyeOpenTex" +static const ALIGN_ASSET(2) char gGreatFairyEyeOpenTex[] = dgGreatFairyEyeOpenTex; + +#define dgGreatFairyEyeHalfTex "__OTR__objects/object_dy_obj/gGreatFairyEyeHalfTex" +static const ALIGN_ASSET(2) char gGreatFairyEyeHalfTex[] = dgGreatFairyEyeHalfTex; + +#define dgGreatFairyEyeClosedTex "__OTR__objects/object_dy_obj/gGreatFairyEyeClosedTex" +static const ALIGN_ASSET(2) char gGreatFairyEyeClosedTex[] = dgGreatFairyEyeClosedTex; + +#define dgGreatFairyMouthClosedTex "__OTR__objects/object_dy_obj/gGreatFairyMouthClosedTex" +static const ALIGN_ASSET(2) char gGreatFairyMouthClosedTex[] = dgGreatFairyMouthClosedTex; + +#define dgGreatFairyMouthOpenTex "__OTR__objects/object_dy_obj/gGreatFairyMouthOpenTex" +static const ALIGN_ASSET(2) char gGreatFairyMouthOpenTex[] = dgGreatFairyMouthOpenTex; + +#define dgGreatFairyAnim_000108 "__OTR__objects/object_dy_obj/gGreatFairyAnim_000108" +static const ALIGN_ASSET(2) char gGreatFairyAnim_000108[] = dgGreatFairyAnim_000108; + +#define dgGreatFairySpellFountainSpinShrinkAnim "__OTR__objects/object_dy_obj/gGreatFairySpellFountainSpinShrinkAnim" +static const ALIGN_ASSET(2) char gGreatFairySpellFountainSpinShrinkAnim[] = dgGreatFairySpellFountainSpinShrinkAnim; + +#define dgGreatFairyLayingSidewaysAnim "__OTR__objects/object_dy_obj/gGreatFairyLayingSidewaysAnim" +static const ALIGN_ASSET(2) char gGreatFairyLayingSidewaysAnim[] = dgGreatFairyLayingSidewaysAnim; + +#define dgGreatFairyLayingDownTransitionAnim "__OTR__objects/object_dy_obj/gGreatFairyLayingDownTransitionAnim" +static const ALIGN_ASSET(2) char gGreatFairyLayingDownTransitionAnim[] = dgGreatFairyLayingDownTransitionAnim; + +#define dgGreatFairyAfterSpellAnim "__OTR__objects/object_dy_obj/gGreatFairyAfterSpellAnim" +static const ALIGN_ASSET(2) char gGreatFairyAfterSpellAnim[] = dgGreatFairyAfterSpellAnim; + +#define dgGreatFairyAnim_005810 "__OTR__objects/object_dy_obj/gGreatFairyAnim_005810" +static const ALIGN_ASSET(2) char gGreatFairyAnim_005810[] = dgGreatFairyAnim_005810; + +#define dgGreatFairyJewelFountainSpinShrinkAnim "__OTR__objects/object_dy_obj/gGreatFairyJewelFountainSpinShrinkAnim" +static const ALIGN_ASSET(2) char gGreatFairyJewelFountainSpinShrinkAnim[] = dgGreatFairyJewelFountainSpinShrinkAnim; + +#define dgGreatFairyGivingUpgradeAnim "__OTR__objects/object_dy_obj/gGreatFairyGivingUpgradeAnim" +static const ALIGN_ASSET(2) char gGreatFairyGivingUpgradeAnim[] = dgGreatFairyGivingUpgradeAnim; + +#define dgGreatFairyAfterUpgradeAnim "__OTR__objects/object_dy_obj/gGreatFairyAfterUpgradeAnim" +static const ALIGN_ASSET(2) char gGreatFairyAfterUpgradeAnim[] = dgGreatFairyAfterUpgradeAnim; + +#define dgGreatFairySittingTransitionAnim "__OTR__objects/object_dy_obj/gGreatFairySittingTransitionAnim" +static const ALIGN_ASSET(2) char gGreatFairySittingTransitionAnim[] = dgGreatFairySittingTransitionAnim; + +#define dgGreatFairySittingAnim "__OTR__objects/object_dy_obj/gGreatFairySittingAnim" +static const ALIGN_ASSET(2) char gGreatFairySittingAnim[] = dgGreatFairySittingAnim; + +#define dgGreatFairySpiralBeamVtx "__OTR__objects/object_dy_obj/gGreatFairySpiralBeamVtx" +static const ALIGN_ASSET(2) char gGreatFairySpiralBeamVtx[] = dgGreatFairySpiralBeamVtx; \ No newline at end of file diff --git a/soh/assets/objects/object_ec/object_ec.h b/soh/assets/objects/object_ec/object_ec.h index 2830a906c..5580a6fe7 100644 --- a/soh/assets/objects/object_ec/object_ec.h +++ b/soh/assets/objects/object_ec/object_ec.h @@ -1,156 +1,69 @@ #pragma once -#define dgDemoEcCuccoLadyAnim "__OTR__objects/object_ec/gDemoEcCuccoLadyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcCuccoLadyAnim[] = dgDemoEcCuccoLadyAnim; -#else -static const char gDemoEcCuccoLadyAnim[] __attribute__((aligned (2))) = dgDemoEcCuccoLadyAnim; -#endif - -#define dgDemoEcCarpenterAnim "__OTR__objects/object_ec/gDemoEcCarpenterAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcCarpenterAnim[] = dgDemoEcCarpenterAnim; -#else -static const char gDemoEcCarpenterAnim[] __attribute__((aligned (2))) = dgDemoEcCarpenterAnim; -#endif - -#define dgDemoEcWindmillManAnim "__OTR__objects/object_ec/gDemoEcWindmillManAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcWindmillManAnim[] = dgDemoEcWindmillManAnim; -#else -static const char gDemoEcWindmillManAnim[] __attribute__((aligned (2))) = dgDemoEcWindmillManAnim; -#endif - -#define dgDemoEcGerudoAnim "__OTR__objects/object_ec/gDemoEcGerudoAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcGerudoAnim[] = dgDemoEcGerudoAnim; -#else -static const char gDemoEcGerudoAnim[] __attribute__((aligned (2))) = dgDemoEcGerudoAnim; -#endif - -#define dgDemoEcGoronAnim "__OTR__objects/object_ec/gDemoEcGoronAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcGoronAnim[] = dgDemoEcGoronAnim; -#else -static const char gDemoEcGoronAnim[] __attribute__((aligned (2))) = dgDemoEcGoronAnim; -#endif - -#define dgDemoEcGoron2Anim "__OTR__objects/object_ec/gDemoEcGoron2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcGoron2Anim[] = dgDemoEcGoron2Anim; -#else -static const char gDemoEcGoron2Anim[] __attribute__((aligned (2))) = dgDemoEcGoron2Anim; -#endif - -#define dgDemoEcIngoAnim "__OTR__objects/object_ec/gDemoEcIngoAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcIngoAnim[] = dgDemoEcIngoAnim; -#else -static const char gDemoEcIngoAnim[] __attribute__((aligned (2))) = dgDemoEcIngoAnim; -#endif - -#define dgDemoEcDancingKokiriAnim "__OTR__objects/object_ec/gDemoEcDancingKokiriAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcDancingKokiriAnim[] = dgDemoEcDancingKokiriAnim; -#else -static const char gDemoEcDancingKokiriAnim[] __attribute__((aligned (2))) = dgDemoEcDancingKokiriAnim; -#endif - -#define dgDemoEcKokiriAnim "__OTR__objects/object_ec/gDemoEcKokiriAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcKokiriAnim[] = dgDemoEcKokiriAnim; -#else -static const char gDemoEcKokiriAnim[] __attribute__((aligned (2))) = dgDemoEcKokiriAnim; -#endif - -#define dgDemoEcOldManAnim "__OTR__objects/object_ec/gDemoEcOldManAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcOldManAnim[] = dgDemoEcOldManAnim; -#else -static const char gDemoEcOldManAnim[] __attribute__((aligned (2))) = dgDemoEcOldManAnim; -#endif - -#define dgDemoEcAnim_006220 "__OTR__objects/object_ec/gDemoEcAnim_006220" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcAnim_006220[] = dgDemoEcAnim_006220; -#else -static const char gDemoEcAnim_006220[] __attribute__((aligned (2))) = dgDemoEcAnim_006220; -#endif - -#define dgDemoEcAnim_006930 "__OTR__objects/object_ec/gDemoEcAnim_006930" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcAnim_006930[] = dgDemoEcAnim_006930; -#else -static const char gDemoEcAnim_006930[] __attribute__((aligned (2))) = dgDemoEcAnim_006930; -#endif - -#define dgDemoEcKingZoraAnim "__OTR__objects/object_ec/gDemoEcKingZoraAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcKingZoraAnim[] = dgDemoEcKingZoraAnim; -#else -static const char gDemoEcKingZoraAnim[] __attribute__((aligned (2))) = dgDemoEcKingZoraAnim; -#endif - -#define dgDemoEcAnim_008D1C "__OTR__objects/object_ec/gDemoEcAnim_008D1C" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcAnim_008D1C[] = dgDemoEcAnim_008D1C; -#else -static const char gDemoEcAnim_008D1C[] __attribute__((aligned (2))) = dgDemoEcAnim_008D1C; -#endif - -#define dgDemoEcAnim_009234 "__OTR__objects/object_ec/gDemoEcAnim_009234" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcAnim_009234[] = dgDemoEcAnim_009234; -#else -static const char gDemoEcAnim_009234[] __attribute__((aligned (2))) = dgDemoEcAnim_009234; -#endif - -#define dgDemoEcMidoAnim "__OTR__objects/object_ec/gDemoEcMidoAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcMidoAnim[] = dgDemoEcMidoAnim; -#else -static const char gDemoEcMidoAnim[] __attribute__((aligned (2))) = dgDemoEcMidoAnim; -#endif - -#define dgDemoEcJumpingCuccoAnim "__OTR__objects/object_ec/gDemoEcJumpingCuccoAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcJumpingCuccoAnim[] = dgDemoEcJumpingCuccoAnim; -#else -static const char gDemoEcJumpingCuccoAnim[] __attribute__((aligned (2))) = dgDemoEcJumpingCuccoAnim; -#endif - -#define dgDemoEcJumpingCucco2Anim "__OTR__objects/object_ec/gDemoEcJumpingCucco2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcJumpingCucco2Anim[] = dgDemoEcJumpingCucco2Anim; -#else -static const char gDemoEcJumpingCucco2Anim[] __attribute__((aligned (2))) = dgDemoEcJumpingCucco2Anim; -#endif - -#define dgDemoEcWalkingCuccoAnim "__OTR__objects/object_ec/gDemoEcWalkingCuccoAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcWalkingCuccoAnim[] = dgDemoEcWalkingCuccoAnim; -#else -static const char gDemoEcWalkingCuccoAnim[] __attribute__((aligned (2))) = dgDemoEcWalkingCuccoAnim; -#endif - -#define dgDemoEcPotionShopOwnerAnim "__OTR__objects/object_ec/gDemoEcPotionShopOwnerAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcPotionShopOwnerAnim[] = dgDemoEcPotionShopOwnerAnim; -#else -static const char gDemoEcPotionShopOwnerAnim[] __attribute__((aligned (2))) = dgDemoEcPotionShopOwnerAnim; -#endif - -#define dgDemoEcTalonAnim "__OTR__objects/object_ec/gDemoEcTalonAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcTalonAnim[] = dgDemoEcTalonAnim; -#else -static const char gDemoEcTalonAnim[] __attribute__((aligned (2))) = dgDemoEcTalonAnim; -#endif - -#define dgDemoEcDancingZoraAnim "__OTR__objects/object_ec/gDemoEcDancingZoraAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDemoEcDancingZoraAnim[] = dgDemoEcDancingZoraAnim; -#else -static const char gDemoEcDancingZoraAnim[] __attribute__((aligned (2))) = dgDemoEcDancingZoraAnim; -#endif - +#include "align_asset_macro.h" + +#define dgDemoEcCuccoLadyAnim "__OTR__objects/object_ec/gDemoEcCuccoLadyAnim" +static const ALIGN_ASSET(2) char gDemoEcCuccoLadyAnim[] = dgDemoEcCuccoLadyAnim; + +#define dgDemoEcCarpenterAnim "__OTR__objects/object_ec/gDemoEcCarpenterAnim" +static const ALIGN_ASSET(2) char gDemoEcCarpenterAnim[] = dgDemoEcCarpenterAnim; + +#define dgDemoEcWindmillManAnim "__OTR__objects/object_ec/gDemoEcWindmillManAnim" +static const ALIGN_ASSET(2) char gDemoEcWindmillManAnim[] = dgDemoEcWindmillManAnim; + +#define dgDemoEcGerudoAnim "__OTR__objects/object_ec/gDemoEcGerudoAnim" +static const ALIGN_ASSET(2) char gDemoEcGerudoAnim[] = dgDemoEcGerudoAnim; + +#define dgDemoEcGoronAnim "__OTR__objects/object_ec/gDemoEcGoronAnim" +static const ALIGN_ASSET(2) char gDemoEcGoronAnim[] = dgDemoEcGoronAnim; + +#define dgDemoEcGoron2Anim "__OTR__objects/object_ec/gDemoEcGoron2Anim" +static const ALIGN_ASSET(2) char gDemoEcGoron2Anim[] = dgDemoEcGoron2Anim; + +#define dgDemoEcIngoAnim "__OTR__objects/object_ec/gDemoEcIngoAnim" +static const ALIGN_ASSET(2) char gDemoEcIngoAnim[] = dgDemoEcIngoAnim; + +#define dgDemoEcDancingKokiriAnim "__OTR__objects/object_ec/gDemoEcDancingKokiriAnim" +static const ALIGN_ASSET(2) char gDemoEcDancingKokiriAnim[] = dgDemoEcDancingKokiriAnim; + +#define dgDemoEcKokiriAnim "__OTR__objects/object_ec/gDemoEcKokiriAnim" +static const ALIGN_ASSET(2) char gDemoEcKokiriAnim[] = dgDemoEcKokiriAnim; + +#define dgDemoEcOldManAnim "__OTR__objects/object_ec/gDemoEcOldManAnim" +static const ALIGN_ASSET(2) char gDemoEcOldManAnim[] = dgDemoEcOldManAnim; + +#define dgDemoEcAnim_006220 "__OTR__objects/object_ec/gDemoEcAnim_006220" +static const ALIGN_ASSET(2) char gDemoEcAnim_006220[] = dgDemoEcAnim_006220; + +#define dgDemoEcAnim_006930 "__OTR__objects/object_ec/gDemoEcAnim_006930" +static const ALIGN_ASSET(2) char gDemoEcAnim_006930[] = dgDemoEcAnim_006930; + +#define dgDemoEcKingZoraAnim "__OTR__objects/object_ec/gDemoEcKingZoraAnim" +static const ALIGN_ASSET(2) char gDemoEcKingZoraAnim[] = dgDemoEcKingZoraAnim; + +#define dgDemoEcAnim_008D1C "__OTR__objects/object_ec/gDemoEcAnim_008D1C" +static const ALIGN_ASSET(2) char gDemoEcAnim_008D1C[] = dgDemoEcAnim_008D1C; + +#define dgDemoEcAnim_009234 "__OTR__objects/object_ec/gDemoEcAnim_009234" +static const ALIGN_ASSET(2) char gDemoEcAnim_009234[] = dgDemoEcAnim_009234; + +#define dgDemoEcMidoAnim "__OTR__objects/object_ec/gDemoEcMidoAnim" +static const ALIGN_ASSET(2) char gDemoEcMidoAnim[] = dgDemoEcMidoAnim; + +#define dgDemoEcJumpingCuccoAnim "__OTR__objects/object_ec/gDemoEcJumpingCuccoAnim" +static const ALIGN_ASSET(2) char gDemoEcJumpingCuccoAnim[] = dgDemoEcJumpingCuccoAnim; + +#define dgDemoEcJumpingCucco2Anim "__OTR__objects/object_ec/gDemoEcJumpingCucco2Anim" +static const ALIGN_ASSET(2) char gDemoEcJumpingCucco2Anim[] = dgDemoEcJumpingCucco2Anim; + +#define dgDemoEcWalkingCuccoAnim "__OTR__objects/object_ec/gDemoEcWalkingCuccoAnim" +static const ALIGN_ASSET(2) char gDemoEcWalkingCuccoAnim[] = dgDemoEcWalkingCuccoAnim; + +#define dgDemoEcPotionShopOwnerAnim "__OTR__objects/object_ec/gDemoEcPotionShopOwnerAnim" +static const ALIGN_ASSET(2) char gDemoEcPotionShopOwnerAnim[] = dgDemoEcPotionShopOwnerAnim; + +#define dgDemoEcTalonAnim "__OTR__objects/object_ec/gDemoEcTalonAnim" +static const ALIGN_ASSET(2) char gDemoEcTalonAnim[] = dgDemoEcTalonAnim; + +#define dgDemoEcDancingZoraAnim "__OTR__objects/object_ec/gDemoEcDancingZoraAnim" +static const ALIGN_ASSET(2) char gDemoEcDancingZoraAnim[] = dgDemoEcDancingZoraAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_efc_crystal_light/object_efc_crystal_light.h b/soh/assets/objects/object_efc_crystal_light/object_efc_crystal_light.h index d3851721f..33c626bab 100644 --- a/soh/assets/objects/object_efc_crystal_light/object_efc_crystal_light.h +++ b/soh/assets/objects/object_efc_crystal_light/object_efc_crystal_light.h @@ -1,16 +1,9 @@ #pragma once -#define dgCrystalLightTex "__OTR__objects/object_efc_crystal_light/gCrystalLightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCrystalLightTex[] = dgCrystalLightTex; -#else -static const char gCrystalLightTex[] __attribute__((aligned (2))) = dgCrystalLightTex; -#endif - -#define dgCrystalLightDL "__OTR__objects/object_efc_crystal_light/gCrystalLightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCrystalLightDL[] = dgCrystalLightDL; -#else -static const char gCrystalLightDL[] __attribute__((aligned (2))) = dgCrystalLightDL; -#endif - +#include "align_asset_macro.h" + +#define dgCrystalLightTex "__OTR__objects/object_efc_crystal_light/gCrystalLightTex" +static const ALIGN_ASSET(2) char gCrystalLightTex[] = dgCrystalLightTex; + +#define dgCrystalLightDL "__OTR__objects/object_efc_crystal_light/gCrystalLightDL" +static const ALIGN_ASSET(2) char gCrystalLightDL[] = dgCrystalLightDL; \ No newline at end of file diff --git a/soh/assets/objects/object_efc_doughnut/object_efc_doughnut.h b/soh/assets/objects/object_efc_doughnut/object_efc_doughnut.h index fba31803f..e0c1e2bf8 100644 --- a/soh/assets/objects/object_efc_doughnut/object_efc_doughnut.h +++ b/soh/assets/objects/object_efc_doughnut/object_efc_doughnut.h @@ -1,30 +1,15 @@ #pragma once -#define dgDeathMountainCloudFireTex "__OTR__objects/object_efc_doughnut/gDeathMountainCloudFireTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCloudFireTex[] = dgDeathMountainCloudFireTex; -#else -static const char gDeathMountainCloudFireTex[] __attribute__((aligned (2))) = dgDeathMountainCloudFireTex; -#endif - -#define dgDeathMountainCloudNormalTex "__OTR__objects/object_efc_doughnut/gDeathMountainCloudNormalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCloudNormalTex[] = dgDeathMountainCloudNormalTex; -#else -static const char gDeathMountainCloudNormalTex[] __attribute__((aligned (2))) = dgDeathMountainCloudNormalTex; -#endif - -#define dgDeathMountainCloudCircleFieryDL "__OTR__objects/object_efc_doughnut/gDeathMountainCloudCircleFieryDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCloudCircleFieryDL[] = dgDeathMountainCloudCircleFieryDL; -#else -static const char gDeathMountainCloudCircleFieryDL[] __attribute__((aligned (2))) = dgDeathMountainCloudCircleFieryDL; -#endif - -#define dgDeathMountainCloudCircleNormalDL "__OTR__objects/object_efc_doughnut/gDeathMountainCloudCircleNormalDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCloudCircleNormalDL[] = dgDeathMountainCloudCircleNormalDL; -#else -static const char gDeathMountainCloudCircleNormalDL[] __attribute__((aligned (2))) = dgDeathMountainCloudCircleNormalDL; -#endif - +#include "align_asset_macro.h" + +#define dgDeathMountainCloudFireTex "__OTR__objects/object_efc_doughnut/gDeathMountainCloudFireTex" +static const ALIGN_ASSET(2) char gDeathMountainCloudFireTex[] = dgDeathMountainCloudFireTex; + +#define dgDeathMountainCloudNormalTex "__OTR__objects/object_efc_doughnut/gDeathMountainCloudNormalTex" +static const ALIGN_ASSET(2) char gDeathMountainCloudNormalTex[] = dgDeathMountainCloudNormalTex; + +#define dgDeathMountainCloudCircleFieryDL "__OTR__objects/object_efc_doughnut/gDeathMountainCloudCircleFieryDL" +static const ALIGN_ASSET(2) char gDeathMountainCloudCircleFieryDL[] = dgDeathMountainCloudCircleFieryDL; + +#define dgDeathMountainCloudCircleNormalDL "__OTR__objects/object_efc_doughnut/gDeathMountainCloudCircleNormalDL" +static const ALIGN_ASSET(2) char gDeathMountainCloudCircleNormalDL[] = dgDeathMountainCloudCircleNormalDL; \ No newline at end of file diff --git a/soh/assets/objects/object_efc_erupc/object_efc_erupc.h b/soh/assets/objects/object_efc_erupc/object_efc_erupc.h index 35d7f7468..9eff5a724 100644 --- a/soh/assets/objects/object_efc_erupc/object_efc_erupc.h +++ b/soh/assets/objects/object_efc_erupc/object_efc_erupc.h @@ -1,58 +1,27 @@ #pragma once -#define dobject_efc_erupc_Tex_000000 "__OTR__objects/object_efc_erupc/object_efc_erupc_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_erupc_Tex_000000[] = dobject_efc_erupc_Tex_000000; -#else -static const char object_efc_erupc_Tex_000000[] __attribute__((aligned (2))) = dobject_efc_erupc_Tex_000000; -#endif - -#define dobject_efc_erupc_Tex_000800 "__OTR__objects/object_efc_erupc/object_efc_erupc_Tex_000800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_erupc_Tex_000800[] = dobject_efc_erupc_Tex_000800; -#else -static const char object_efc_erupc_Tex_000800[] __attribute__((aligned (2))) = dobject_efc_erupc_Tex_000800; -#endif - -#define dobject_efc_erupc_DL_001720 "__OTR__objects/object_efc_erupc/object_efc_erupc_DL_001720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_erupc_DL_001720[] = dobject_efc_erupc_DL_001720; -#else -static const char object_efc_erupc_DL_001720[] __attribute__((aligned (2))) = dobject_efc_erupc_DL_001720; -#endif - -#define dobject_efc_erupc_Tex_001A30 "__OTR__objects/object_efc_erupc/object_efc_erupc_Tex_001A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_erupc_Tex_001A30[] = dobject_efc_erupc_Tex_001A30; -#else -static const char object_efc_erupc_Tex_001A30[] __attribute__((aligned (2))) = dobject_efc_erupc_Tex_001A30; -#endif - -#define dobject_efc_erupc_DL_002570 "__OTR__objects/object_efc_erupc/object_efc_erupc_DL_002570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_erupc_DL_002570[] = dobject_efc_erupc_DL_002570; -#else -static const char object_efc_erupc_DL_002570[] __attribute__((aligned (2))) = dobject_efc_erupc_DL_002570; -#endif - -#define dobject_efc_erupc_DL_002760 "__OTR__objects/object_efc_erupc/object_efc_erupc_DL_002760" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_erupc_DL_002760[] = dobject_efc_erupc_DL_002760; -#else -static const char object_efc_erupc_DL_002760[] __attribute__((aligned (2))) = dobject_efc_erupc_DL_002760; -#endif - -#define dobject_efc_erupc_DL_0027D8 "__OTR__objects/object_efc_erupc/object_efc_erupc_DL_0027D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_erupc_DL_0027D8[] = dobject_efc_erupc_DL_0027D8; -#else -static const char object_efc_erupc_DL_0027D8[] __attribute__((aligned (2))) = dobject_efc_erupc_DL_0027D8; -#endif - -#define dobject_efc_erupc_Tex_0027F0 "__OTR__objects/object_efc_erupc/object_efc_erupc_Tex_0027F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_erupc_Tex_0027F0[] = dobject_efc_erupc_Tex_0027F0; -#else -static const char object_efc_erupc_Tex_0027F0[] __attribute__((aligned (2))) = dobject_efc_erupc_Tex_0027F0; -#endif - +#include "align_asset_macro.h" + +#define dobject_efc_erupc_Tex_000000 "__OTR__objects/object_efc_erupc/object_efc_erupc_Tex_000000" +static const ALIGN_ASSET(2) char object_efc_erupc_Tex_000000[] = dobject_efc_erupc_Tex_000000; + +#define dobject_efc_erupc_Tex_000800 "__OTR__objects/object_efc_erupc/object_efc_erupc_Tex_000800" +static const ALIGN_ASSET(2) char object_efc_erupc_Tex_000800[] = dobject_efc_erupc_Tex_000800; + +#define dobject_efc_erupc_DL_001720 "__OTR__objects/object_efc_erupc/object_efc_erupc_DL_001720" +static const ALIGN_ASSET(2) char object_efc_erupc_DL_001720[] = dobject_efc_erupc_DL_001720; + +#define dobject_efc_erupc_Tex_001A30 "__OTR__objects/object_efc_erupc/object_efc_erupc_Tex_001A30" +static const ALIGN_ASSET(2) char object_efc_erupc_Tex_001A30[] = dobject_efc_erupc_Tex_001A30; + +#define dobject_efc_erupc_DL_002570 "__OTR__objects/object_efc_erupc/object_efc_erupc_DL_002570" +static const ALIGN_ASSET(2) char object_efc_erupc_DL_002570[] = dobject_efc_erupc_DL_002570; + +#define dobject_efc_erupc_DL_002760 "__OTR__objects/object_efc_erupc/object_efc_erupc_DL_002760" +static const ALIGN_ASSET(2) char object_efc_erupc_DL_002760[] = dobject_efc_erupc_DL_002760; + +#define dobject_efc_erupc_DL_0027D8 "__OTR__objects/object_efc_erupc/object_efc_erupc_DL_0027D8" +static const ALIGN_ASSET(2) char object_efc_erupc_DL_0027D8[] = dobject_efc_erupc_DL_0027D8; + +#define dobject_efc_erupc_Tex_0027F0 "__OTR__objects/object_efc_erupc/object_efc_erupc_Tex_0027F0" +static const ALIGN_ASSET(2) char object_efc_erupc_Tex_0027F0[] = dobject_efc_erupc_Tex_0027F0; \ No newline at end of file diff --git a/soh/assets/objects/object_efc_fire_ball/object_efc_fire_ball.h b/soh/assets/objects/object_efc_fire_ball/object_efc_fire_ball.h index 16268c173..e3481e57b 100644 --- a/soh/assets/objects/object_efc_fire_ball/object_efc_fire_ball.h +++ b/soh/assets/objects/object_efc_fire_ball/object_efc_fire_ball.h @@ -1,23 +1,12 @@ #pragma once -#define dgCreationFireBallDL "__OTR__objects/object_efc_fire_ball/gCreationFireBallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCreationFireBallDL[] = dgCreationFireBallDL; -#else -static const char gCreationFireBallDL[] __attribute__((aligned (2))) = dgCreationFireBallDL; -#endif - -#define dgCreationFireBallMaskTex "__OTR__objects/object_efc_fire_ball/gCreationFireBallMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCreationFireBallMaskTex[] = dgCreationFireBallMaskTex; -#else -static const char gCreationFireBallMaskTex[] __attribute__((aligned (2))) = dgCreationFireBallMaskTex; -#endif - -#define dgCreationFireBallFlameEffectTex "__OTR__objects/object_efc_fire_ball/gCreationFireBallFlameEffectTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCreationFireBallFlameEffectTex[] = dgCreationFireBallFlameEffectTex; -#else -static const char gCreationFireBallFlameEffectTex[] __attribute__((aligned (2))) = dgCreationFireBallFlameEffectTex; -#endif - +#include "align_asset_macro.h" + +#define dgCreationFireBallDL "__OTR__objects/object_efc_fire_ball/gCreationFireBallDL" +static const ALIGN_ASSET(2) char gCreationFireBallDL[] = dgCreationFireBallDL; + +#define dgCreationFireBallMaskTex "__OTR__objects/object_efc_fire_ball/gCreationFireBallMaskTex" +static const ALIGN_ASSET(2) char gCreationFireBallMaskTex[] = dgCreationFireBallMaskTex; + +#define dgCreationFireBallFlameEffectTex "__OTR__objects/object_efc_fire_ball/gCreationFireBallFlameEffectTex" +static const ALIGN_ASSET(2) char gCreationFireBallFlameEffectTex[] = dgCreationFireBallFlameEffectTex; \ No newline at end of file diff --git a/soh/assets/objects/object_efc_flash/object_efc_flash.h b/soh/assets/objects/object_efc_flash/object_efc_flash.h index 80131eb3b..5a26ec4a6 100644 --- a/soh/assets/objects/object_efc_flash/object_efc_flash.h +++ b/soh/assets/objects/object_efc_flash/object_efc_flash.h @@ -1,9 +1,6 @@ #pragma once -#define dgEfcFlashBlob_000000 "__OTR__objects/object_efc_flash/gEfcFlashBlob_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char gEfcFlashBlob_000000[] = dgEfcFlashBlob_000000; -#else -static const char gEfcFlashBlob_000000[] __attribute__((aligned (2))) = dgEfcFlashBlob_000000; -#endif - +#include "align_asset_macro.h" + +#define dgEfcFlashBlob_000000 "__OTR__objects/object_efc_flash/gEfcFlashBlob_000000" +static const ALIGN_ASSET(2) char gEfcFlashBlob_000000[] = dgEfcFlashBlob_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_efc_lgt_shower/object_efc_lgt_shower.h b/soh/assets/objects/object_efc_lgt_shower/object_efc_lgt_shower.h index 954bfe941..846c5c052 100644 --- a/soh/assets/objects/object_efc_lgt_shower/object_efc_lgt_shower.h +++ b/soh/assets/objects/object_efc_lgt_shower/object_efc_lgt_shower.h @@ -1,16 +1,9 @@ #pragma once -#define dgEnliveningLightTex "__OTR__objects/object_efc_lgt_shower/gEnliveningLightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnliveningLightTex[] = dgEnliveningLightTex; -#else -static const char gEnliveningLightTex[] __attribute__((aligned (2))) = dgEnliveningLightTex; -#endif - -#define dgEnliveningLightDL "__OTR__objects/object_efc_lgt_shower/gEnliveningLightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnliveningLightDL[] = dgEnliveningLightDL; -#else -static const char gEnliveningLightDL[] __attribute__((aligned (2))) = dgEnliveningLightDL; -#endif - +#include "align_asset_macro.h" + +#define dgEnliveningLightTex "__OTR__objects/object_efc_lgt_shower/gEnliveningLightTex" +static const ALIGN_ASSET(2) char gEnliveningLightTex[] = dgEnliveningLightTex; + +#define dgEnliveningLightDL "__OTR__objects/object_efc_lgt_shower/gEnliveningLightDL" +static const ALIGN_ASSET(2) char gEnliveningLightDL[] = dgEnliveningLightDL; \ No newline at end of file diff --git a/soh/assets/objects/object_efc_star_field/object_efc_star_field.h b/soh/assets/objects/object_efc_star_field/object_efc_star_field.h index 61ab7b745..0e79b5bb1 100644 --- a/soh/assets/objects/object_efc_star_field/object_efc_star_field.h +++ b/soh/assets/objects/object_efc_star_field/object_efc_star_field.h @@ -1,30 +1,15 @@ #pragma once -#define dobject_efc_star_field_DL_000080 "__OTR__objects/object_efc_star_field/object_efc_star_field_DL_000080" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_star_field_DL_000080[] = dobject_efc_star_field_DL_000080; -#else -static const char object_efc_star_field_DL_000080[] __attribute__((aligned (2))) = dobject_efc_star_field_DL_000080; -#endif - -#define dobject_efc_star_field_Tex_000108 "__OTR__objects/object_efc_star_field/object_efc_star_field_Tex_000108" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_star_field_Tex_000108[] = dobject_efc_star_field_Tex_000108; -#else -static const char object_efc_star_field_Tex_000108[] __attribute__((aligned (2))) = dobject_efc_star_field_Tex_000108; -#endif - -#define dobject_efc_star_field_DL_000DE0 "__OTR__objects/object_efc_star_field/object_efc_star_field_DL_000DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_star_field_DL_000DE0[] = dobject_efc_star_field_DL_000DE0; -#else -static const char object_efc_star_field_DL_000DE0[] __attribute__((aligned (2))) = dobject_efc_star_field_DL_000DE0; -#endif - -#define dobject_efc_star_field_Tex_000FD0 "__OTR__objects/object_efc_star_field/object_efc_star_field_Tex_000FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_efc_star_field_Tex_000FD0[] = dobject_efc_star_field_Tex_000FD0; -#else -static const char object_efc_star_field_Tex_000FD0[] __attribute__((aligned (2))) = dobject_efc_star_field_Tex_000FD0; -#endif - +#include "align_asset_macro.h" + +#define dobject_efc_star_field_DL_000080 "__OTR__objects/object_efc_star_field/object_efc_star_field_DL_000080" +static const ALIGN_ASSET(2) char object_efc_star_field_DL_000080[] = dobject_efc_star_field_DL_000080; + +#define dobject_efc_star_field_Tex_000108 "__OTR__objects/object_efc_star_field/object_efc_star_field_Tex_000108" +static const ALIGN_ASSET(2) char object_efc_star_field_Tex_000108[] = dobject_efc_star_field_Tex_000108; + +#define dobject_efc_star_field_DL_000DE0 "__OTR__objects/object_efc_star_field/object_efc_star_field_DL_000DE0" +static const ALIGN_ASSET(2) char object_efc_star_field_DL_000DE0[] = dobject_efc_star_field_DL_000DE0; + +#define dobject_efc_star_field_Tex_000FD0 "__OTR__objects/object_efc_star_field/object_efc_star_field_Tex_000FD0" +static const ALIGN_ASSET(2) char object_efc_star_field_Tex_000FD0[] = dobject_efc_star_field_Tex_000FD0; \ No newline at end of file diff --git a/soh/assets/objects/object_efc_tw/object_efc_tw.h b/soh/assets/objects/object_efc_tw/object_efc_tw.h index 859b1015f..37da95044 100644 --- a/soh/assets/objects/object_efc_tw/object_efc_tw.h +++ b/soh/assets/objects/object_efc_tw/object_efc_tw.h @@ -1,37 +1,18 @@ #pragma once -#define dgTimeWarpSkel "__OTR__objects/object_efc_tw/gTimeWarpSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gTimeWarpSkel[] = dgTimeWarpSkel; -#else -static const char gTimeWarpSkel[] __attribute__((aligned (2))) = dgTimeWarpSkel; -#endif - -#define dgTimeWarpAnim "__OTR__objects/object_efc_tw/gTimeWarpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTimeWarpAnim[] = dgTimeWarpAnim; -#else -static const char gTimeWarpAnim[] __attribute__((aligned (2))) = dgTimeWarpAnim; -#endif - -#define dgTimeWarpVtx "__OTR__objects/object_efc_tw/gTimeWarpVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gTimeWarpVtx[] = dgTimeWarpVtx; -#else -static const char gTimeWarpVtx[] __attribute__((aligned (2))) = dgTimeWarpVtx; -#endif - -#define dgTimeWarpDL "__OTR__objects/object_efc_tw/gTimeWarpDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTimeWarpDL[] = dgTimeWarpDL; -#else -static const char gTimeWarpDL[] __attribute__((aligned (2))) = dgTimeWarpDL; -#endif - -#define dgTimeWarpTex "__OTR__objects/object_efc_tw/gTimeWarpTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTimeWarpTex[] = dgTimeWarpTex; -#else -static const char gTimeWarpTex[] __attribute__((aligned (2))) = dgTimeWarpTex; -#endif - +#include "align_asset_macro.h" + +#define dgTimeWarpSkel "__OTR__objects/object_efc_tw/gTimeWarpSkel" +static const ALIGN_ASSET(2) char gTimeWarpSkel[] = dgTimeWarpSkel; + +#define dgTimeWarpAnim "__OTR__objects/object_efc_tw/gTimeWarpAnim" +static const ALIGN_ASSET(2) char gTimeWarpAnim[] = dgTimeWarpAnim; + +#define dgTimeWarpVtx "__OTR__objects/object_efc_tw/gTimeWarpVtx" +static const ALIGN_ASSET(2) char gTimeWarpVtx[] = dgTimeWarpVtx; + +#define dgTimeWarpDL "__OTR__objects/object_efc_tw/gTimeWarpDL" +static const ALIGN_ASSET(2) char gTimeWarpDL[] = dgTimeWarpDL; + +#define dgTimeWarpTex "__OTR__objects/object_efc_tw/gTimeWarpTex" +static const ALIGN_ASSET(2) char gTimeWarpTex[] = dgTimeWarpTex; \ No newline at end of file diff --git a/soh/assets/objects/object_ei/object_ei.h b/soh/assets/objects/object_ei/object_ei.h index 1c2e770ea..2a32c349b 100644 --- a/soh/assets/objects/object_ei/object_ei.h +++ b/soh/assets/objects/object_ei/object_ei.h @@ -1,177 +1,78 @@ #pragma once -#define dgStingerSkel "__OTR__objects/object_ei/gStingerSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerSkel[] = dgStingerSkel; -#else -static const char gStingerSkel[] __attribute__((aligned (2))) = dgStingerSkel; -#endif - -#define dgStingerBodyDL "__OTR__objects/object_ei/gStingerBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerBodyDL[] = dgStingerBodyDL; -#else -static const char gStingerBodyDL[] __attribute__((aligned (2))) = dgStingerBodyDL; -#endif - -#define dgStingerTailRootDL "__OTR__objects/object_ei/gStingerTailRootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerTailRootDL[] = dgStingerTailRootDL; -#else -static const char gStingerTailRootDL[] __attribute__((aligned (2))) = dgStingerTailRootDL; -#endif - -#define dgStingerTailUpperDL "__OTR__objects/object_ei/gStingerTailUpperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerTailUpperDL[] = dgStingerTailUpperDL; -#else -static const char gStingerTailUpperDL[] __attribute__((aligned (2))) = dgStingerTailUpperDL; -#endif - -#define dgStingerTailLowerDL "__OTR__objects/object_ei/gStingerTailLowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerTailLowerDL[] = dgStingerTailLowerDL; -#else -static const char gStingerTailLowerDL[] __attribute__((aligned (2))) = dgStingerTailLowerDL; -#endif - -#define dgStingerFinUpperDL "__OTR__objects/object_ei/gStingerFinUpperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerFinUpperDL[] = dgStingerFinUpperDL; -#else -static const char gStingerFinUpperDL[] __attribute__((aligned (2))) = dgStingerFinUpperDL; -#endif - -#define dgStingerFinLowerDL "__OTR__objects/object_ei/gStingerFinLowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerFinLowerDL[] = dgStingerFinLowerDL; -#else -static const char gStingerFinLowerDL[] __attribute__((aligned (2))) = dgStingerFinLowerDL; -#endif - -#define dgStingerHeadDL "__OTR__objects/object_ei/gStingerHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerHeadDL[] = dgStingerHeadDL; -#else -static const char gStingerHeadDL[] __attribute__((aligned (2))) = dgStingerHeadDL; -#endif - -#define dgStingerLeftWingBaseDL "__OTR__objects/object_ei/gStingerLeftWingBaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerLeftWingBaseDL[] = dgStingerLeftWingBaseDL; -#else -static const char gStingerLeftWingBaseDL[] __attribute__((aligned (2))) = dgStingerLeftWingBaseDL; -#endif - -#define dgStingerLeftWingEndDL "__OTR__objects/object_ei/gStingerLeftWingEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerLeftWingEndDL[] = dgStingerLeftWingEndDL; -#else -static const char gStingerLeftWingEndDL[] __attribute__((aligned (2))) = dgStingerLeftWingEndDL; -#endif - -#define dgStingerRightWingBaseDL "__OTR__objects/object_ei/gStingerRightWingBaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerRightWingBaseDL[] = dgStingerRightWingBaseDL; -#else -static const char gStingerRightWingBaseDL[] __attribute__((aligned (2))) = dgStingerRightWingBaseDL; -#endif - -#define dgStingerRightWingEndDL "__OTR__objects/object_ei/gStingerRightWingEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerRightWingEndDL[] = dgStingerRightWingEndDL; -#else -static const char gStingerRightWingEndDL[] __attribute__((aligned (2))) = dgStingerRightWingEndDL; -#endif - -#define dgStingerWingTex "__OTR__objects/object_ei/gStingerWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerWingTex[] = dgStingerWingTex; -#else -static const char gStingerWingTex[] __attribute__((aligned (2))) = dgStingerWingTex; -#endif - -#define dgStingerBodyGradientTex "__OTR__objects/object_ei/gStingerBodyGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerBodyGradientTex[] = dgStingerBodyGradientTex; -#else -static const char gStingerBodyGradientTex[] __attribute__((aligned (2))) = dgStingerBodyGradientTex; -#endif - -#define dgStingerWingEndTex "__OTR__objects/object_ei/gStingerWingEndTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerWingEndTex[] = dgStingerWingEndTex; -#else -static const char gStingerWingEndTex[] __attribute__((aligned (2))) = dgStingerWingEndTex; -#endif - -#define dgStingerEyeTex "__OTR__objects/object_ei/gStingerEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerEyeTex[] = dgStingerEyeTex; -#else -static const char gStingerEyeTex[] __attribute__((aligned (2))) = dgStingerEyeTex; -#endif - -#define dgStingerUndersideTex "__OTR__objects/object_ei/gStingerUndersideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerUndersideTex[] = dgStingerUndersideTex; -#else -static const char gStingerUndersideTex[] __attribute__((aligned (2))) = dgStingerUndersideTex; -#endif - -#define dgStingerFinTex "__OTR__objects/object_ei/gStingerFinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerFinTex[] = dgStingerFinTex; -#else -static const char gStingerFinTex[] __attribute__((aligned (2))) = dgStingerFinTex; -#endif - -#define dgStingerTailGradientTex "__OTR__objects/object_ei/gStingerTailGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerTailGradientTex[] = dgStingerTailGradientTex; -#else -static const char gStingerTailGradientTex[] __attribute__((aligned (2))) = dgStingerTailGradientTex; -#endif - -#define dgStingerTailConnectionGradientTex "__OTR__objects/object_ei/gStingerTailConnectionGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerTailConnectionGradientTex[] = dgStingerTailConnectionGradientTex; -#else -static const char gStingerTailConnectionGradientTex[] __attribute__((aligned (2))) = dgStingerTailConnectionGradientTex; -#endif - -#define dgStingerPopOutAnim "__OTR__objects/object_ei/gStingerPopOutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerPopOutAnim[] = dgStingerPopOutAnim; -#else -static const char gStingerPopOutAnim[] __attribute__((aligned (2))) = dgStingerPopOutAnim; -#endif - -#define dgStingerDiveAnim "__OTR__objects/object_ei/gStingerDiveAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerDiveAnim[] = dgStingerDiveAnim; -#else -static const char gStingerDiveAnim[] __attribute__((aligned (2))) = dgStingerDiveAnim; -#endif - -#define dgStingerBackflipAnim "__OTR__objects/object_ei/gStingerBackflipAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerBackflipAnim[] = dgStingerBackflipAnim; -#else -static const char gStingerBackflipAnim[] __attribute__((aligned (2))) = dgStingerBackflipAnim; -#endif - -#define dgStingerHitAnim "__OTR__objects/object_ei/gStingerHitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerHitAnim[] = dgStingerHitAnim; -#else -static const char gStingerHitAnim[] __attribute__((aligned (2))) = dgStingerHitAnim; -#endif - -#define dgStingerIdleAnim "__OTR__objects/object_ei/gStingerIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStingerIdleAnim[] = dgStingerIdleAnim; -#else -static const char gStingerIdleAnim[] __attribute__((aligned (2))) = dgStingerIdleAnim; -#endif - +#include "align_asset_macro.h" + +#define dgStingerSkel "__OTR__objects/object_ei/gStingerSkel" +static const ALIGN_ASSET(2) char gStingerSkel[] = dgStingerSkel; + +#define dgStingerBodyDL "__OTR__objects/object_ei/gStingerBodyDL" +static const ALIGN_ASSET(2) char gStingerBodyDL[] = dgStingerBodyDL; + +#define dgStingerTailRootDL "__OTR__objects/object_ei/gStingerTailRootDL" +static const ALIGN_ASSET(2) char gStingerTailRootDL[] = dgStingerTailRootDL; + +#define dgStingerTailUpperDL "__OTR__objects/object_ei/gStingerTailUpperDL" +static const ALIGN_ASSET(2) char gStingerTailUpperDL[] = dgStingerTailUpperDL; + +#define dgStingerTailLowerDL "__OTR__objects/object_ei/gStingerTailLowerDL" +static const ALIGN_ASSET(2) char gStingerTailLowerDL[] = dgStingerTailLowerDL; + +#define dgStingerFinUpperDL "__OTR__objects/object_ei/gStingerFinUpperDL" +static const ALIGN_ASSET(2) char gStingerFinUpperDL[] = dgStingerFinUpperDL; + +#define dgStingerFinLowerDL "__OTR__objects/object_ei/gStingerFinLowerDL" +static const ALIGN_ASSET(2) char gStingerFinLowerDL[] = dgStingerFinLowerDL; + +#define dgStingerHeadDL "__OTR__objects/object_ei/gStingerHeadDL" +static const ALIGN_ASSET(2) char gStingerHeadDL[] = dgStingerHeadDL; + +#define dgStingerLeftWingBaseDL "__OTR__objects/object_ei/gStingerLeftWingBaseDL" +static const ALIGN_ASSET(2) char gStingerLeftWingBaseDL[] = dgStingerLeftWingBaseDL; + +#define dgStingerLeftWingEndDL "__OTR__objects/object_ei/gStingerLeftWingEndDL" +static const ALIGN_ASSET(2) char gStingerLeftWingEndDL[] = dgStingerLeftWingEndDL; + +#define dgStingerRightWingBaseDL "__OTR__objects/object_ei/gStingerRightWingBaseDL" +static const ALIGN_ASSET(2) char gStingerRightWingBaseDL[] = dgStingerRightWingBaseDL; + +#define dgStingerRightWingEndDL "__OTR__objects/object_ei/gStingerRightWingEndDL" +static const ALIGN_ASSET(2) char gStingerRightWingEndDL[] = dgStingerRightWingEndDL; + +#define dgStingerWingTex "__OTR__objects/object_ei/gStingerWingTex" +static const ALIGN_ASSET(2) char gStingerWingTex[] = dgStingerWingTex; + +#define dgStingerBodyGradientTex "__OTR__objects/object_ei/gStingerBodyGradientTex" +static const ALIGN_ASSET(2) char gStingerBodyGradientTex[] = dgStingerBodyGradientTex; + +#define dgStingerWingEndTex "__OTR__objects/object_ei/gStingerWingEndTex" +static const ALIGN_ASSET(2) char gStingerWingEndTex[] = dgStingerWingEndTex; + +#define dgStingerEyeTex "__OTR__objects/object_ei/gStingerEyeTex" +static const ALIGN_ASSET(2) char gStingerEyeTex[] = dgStingerEyeTex; + +#define dgStingerUndersideTex "__OTR__objects/object_ei/gStingerUndersideTex" +static const ALIGN_ASSET(2) char gStingerUndersideTex[] = dgStingerUndersideTex; + +#define dgStingerFinTex "__OTR__objects/object_ei/gStingerFinTex" +static const ALIGN_ASSET(2) char gStingerFinTex[] = dgStingerFinTex; + +#define dgStingerTailGradientTex "__OTR__objects/object_ei/gStingerTailGradientTex" +static const ALIGN_ASSET(2) char gStingerTailGradientTex[] = dgStingerTailGradientTex; + +#define dgStingerTailConnectionGradientTex "__OTR__objects/object_ei/gStingerTailConnectionGradientTex" +static const ALIGN_ASSET(2) char gStingerTailConnectionGradientTex[] = dgStingerTailConnectionGradientTex; + +#define dgStingerPopOutAnim "__OTR__objects/object_ei/gStingerPopOutAnim" +static const ALIGN_ASSET(2) char gStingerPopOutAnim[] = dgStingerPopOutAnim; + +#define dgStingerDiveAnim "__OTR__objects/object_ei/gStingerDiveAnim" +static const ALIGN_ASSET(2) char gStingerDiveAnim[] = dgStingerDiveAnim; + +#define dgStingerBackflipAnim "__OTR__objects/object_ei/gStingerBackflipAnim" +static const ALIGN_ASSET(2) char gStingerBackflipAnim[] = dgStingerBackflipAnim; + +#define dgStingerHitAnim "__OTR__objects/object_ei/gStingerHitAnim" +static const ALIGN_ASSET(2) char gStingerHitAnim[] = dgStingerHitAnim; + +#define dgStingerIdleAnim "__OTR__objects/object_ei/gStingerIdleAnim" +static const ALIGN_ASSET(2) char gStingerIdleAnim[] = dgStingerIdleAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_fa/object_fa.h b/soh/assets/objects/object_fa/object_fa.h index b05e73d24..0240d324b 100644 --- a/soh/assets/objects/object_fa/object_fa.h +++ b/soh/assets/objects/object_fa/object_fa.h @@ -1,79 +1,36 @@ #pragma once -#define dgFaTLUT "__OTR__objects/object_fa/gFaTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaTLUT[] = dgFaTLUT; -#else -static const char gFaTLUT[] __attribute__((aligned (2))) = dgFaTLUT; -#endif - -#define dgFaSkinTex "__OTR__objects/object_fa/gFaSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaSkinTex[] = dgFaSkinTex; -#else -static const char gFaSkinTex[] __attribute__((aligned (2))) = dgFaSkinTex; -#endif - -#define dgFaEyeOpenTex "__OTR__objects/object_fa/gFaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaEyeOpenTex[] = dgFaEyeOpenTex; -#else -static const char gFaEyeOpenTex[] __attribute__((aligned (2))) = dgFaEyeOpenTex; -#endif - -#define dgFaMouthTex "__OTR__objects/object_fa/gFaMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaMouthTex[] = dgFaMouthTex; -#else -static const char gFaMouthTex[] __attribute__((aligned (2))) = dgFaMouthTex; -#endif - -#define dgFaHair1Tex "__OTR__objects/object_fa/gFaHair1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaHair1Tex[] = dgFaHair1Tex; -#else -static const char gFaHair1Tex[] __attribute__((aligned (2))) = dgFaHair1Tex; -#endif - -#define dgFaEarTex "__OTR__objects/object_fa/gFaEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaEarTex[] = dgFaEarTex; -#else -static const char gFaEarTex[] __attribute__((aligned (2))) = dgFaEarTex; -#endif - -#define dgFaHair2Tex "__OTR__objects/object_fa/gFaHair2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaHair2Tex[] = dgFaHair2Tex; -#else -static const char gFaHair2Tex[] __attribute__((aligned (2))) = dgFaHair2Tex; -#endif - -#define dgFaHeadbandTex "__OTR__objects/object_fa/gFaHeadbandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaHeadbandTex[] = dgFaHeadbandTex; -#else -static const char gFaHeadbandTex[] __attribute__((aligned (2))) = dgFaHeadbandTex; -#endif - -#define dgFaEyeHalfTex "__OTR__objects/object_fa/gFaEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaEyeHalfTex[] = dgFaEyeHalfTex; -#else -static const char gFaEyeHalfTex[] __attribute__((aligned (2))) = dgFaEyeHalfTex; -#endif - -#define dgFaEyeClosedTex "__OTR__objects/object_fa/gFaEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaEyeClosedTex[] = dgFaEyeClosedTex; -#else -static const char gFaEyeClosedTex[] __attribute__((aligned (2))) = dgFaEyeClosedTex; -#endif - -#define dgFaDL "__OTR__objects/object_fa/gFaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaDL[] = dgFaDL; -#else -static const char gFaDL[] __attribute__((aligned (2))) = dgFaDL; -#endif - +#include "align_asset_macro.h" + +#define dgFaTLUT "__OTR__objects/object_fa/gFaTLUT" +static const ALIGN_ASSET(2) char gFaTLUT[] = dgFaTLUT; + +#define dgFaSkinTex "__OTR__objects/object_fa/gFaSkinTex" +static const ALIGN_ASSET(2) char gFaSkinTex[] = dgFaSkinTex; + +#define dgFaEyeOpenTex "__OTR__objects/object_fa/gFaEyeOpenTex" +static const ALIGN_ASSET(2) char gFaEyeOpenTex[] = dgFaEyeOpenTex; + +#define dgFaMouthTex "__OTR__objects/object_fa/gFaMouthTex" +static const ALIGN_ASSET(2) char gFaMouthTex[] = dgFaMouthTex; + +#define dgFaHair1Tex "__OTR__objects/object_fa/gFaHair1Tex" +static const ALIGN_ASSET(2) char gFaHair1Tex[] = dgFaHair1Tex; + +#define dgFaEarTex "__OTR__objects/object_fa/gFaEarTex" +static const ALIGN_ASSET(2) char gFaEarTex[] = dgFaEarTex; + +#define dgFaHair2Tex "__OTR__objects/object_fa/gFaHair2Tex" +static const ALIGN_ASSET(2) char gFaHair2Tex[] = dgFaHair2Tex; + +#define dgFaHeadbandTex "__OTR__objects/object_fa/gFaHeadbandTex" +static const ALIGN_ASSET(2) char gFaHeadbandTex[] = dgFaHeadbandTex; + +#define dgFaEyeHalfTex "__OTR__objects/object_fa/gFaEyeHalfTex" +static const ALIGN_ASSET(2) char gFaEyeHalfTex[] = dgFaEyeHalfTex; + +#define dgFaEyeClosedTex "__OTR__objects/object_fa/gFaEyeClosedTex" +static const ALIGN_ASSET(2) char gFaEyeClosedTex[] = dgFaEyeClosedTex; + +#define dgFaDL "__OTR__objects/object_fa/gFaDL" +static const ALIGN_ASSET(2) char gFaDL[] = dgFaDL; \ No newline at end of file diff --git a/soh/assets/objects/object_fd/object_fd.h b/soh/assets/objects/object_fd/object_fd.h index 867381e67..1466ed4b6 100644 --- a/soh/assets/objects/object_fd/object_fd.h +++ b/soh/assets/objects/object_fd/object_fd.h @@ -1,653 +1,282 @@ #pragma once -#define dgVolvagiaBossTitleCardTex "__OTR__objects/object_fd/gVolvagiaBossTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBossTitleCardTex[] = dgVolvagiaBossTitleCardTex; -#else -static const char gVolvagiaBossTitleCardTex[] __attribute__((aligned (2))) = dgVolvagiaBossTitleCardTex; -#endif - -#define dgVolvagiaLeftArmSkel "__OTR__objects/object_fd/gVolvagiaLeftArmSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaLeftArmSkel[] = dgVolvagiaLeftArmSkel; -#else -static const char gVolvagiaLeftArmSkel[] __attribute__((aligned (2))) = dgVolvagiaLeftArmSkel; -#endif - -#define dgVolvagiaRightArmSkel "__OTR__objects/object_fd/gVolvagiaRightArmSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRightArmSkel[] = dgVolvagiaRightArmSkel; -#else -static const char gVolvagiaRightArmSkel[] __attribute__((aligned (2))) = dgVolvagiaRightArmSkel; -#endif - -#define dgVolvagiaHeadSkel "__OTR__objects/object_fd/gVolvagiaHeadSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaHeadSkel[] = dgVolvagiaHeadSkel; -#else -static const char gVolvagiaHeadSkel[] __attribute__((aligned (2))) = dgVolvagiaHeadSkel; -#endif - -#define dgVolvagiaLeftArmEmergeAnim "__OTR__objects/object_fd/gVolvagiaLeftArmEmergeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaLeftArmEmergeAnim[] = dgVolvagiaLeftArmEmergeAnim; -#else -static const char gVolvagiaLeftArmEmergeAnim[] __attribute__((aligned (2))) = dgVolvagiaLeftArmEmergeAnim; -#endif - -#define dgVolvagiaRightArmEmergeAnim "__OTR__objects/object_fd/gVolvagiaRightArmEmergeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRightArmEmergeAnim[] = dgVolvagiaRightArmEmergeAnim; -#else -static const char gVolvagiaRightArmEmergeAnim[] __attribute__((aligned (2))) = dgVolvagiaRightArmEmergeAnim; -#endif - -#define dgVolvagiaHeadEmergeAnim "__OTR__objects/object_fd/gVolvagiaHeadEmergeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaHeadEmergeAnim[] = dgVolvagiaHeadEmergeAnim; -#else -static const char gVolvagiaHeadEmergeAnim[] __attribute__((aligned (2))) = dgVolvagiaHeadEmergeAnim; -#endif - -#define dgVolvagiaBrokenFaceDL "__OTR__objects/object_fd/gVolvagiaBrokenFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBrokenFaceDL[] = dgVolvagiaBrokenFaceDL; -#else -static const char gVolvagiaBrokenFaceDL[] __attribute__((aligned (2))) = dgVolvagiaBrokenFaceDL; -#endif - -#define dgVolvagiaManeMaterialDL "__OTR__objects/object_fd/gVolvagiaManeMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaManeMaterialDL[] = dgVolvagiaManeMaterialDL; -#else -static const char gVolvagiaManeMaterialDL[] __attribute__((aligned (2))) = dgVolvagiaManeMaterialDL; -#endif - -#define dgVolvagiaManeModelDL "__OTR__objects/object_fd/gVolvagiaManeModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaManeModelDL[] = dgVolvagiaManeModelDL; -#else -static const char gVolvagiaManeModelDL[] __attribute__((aligned (2))) = dgVolvagiaManeModelDL; -#endif - -#define dgVolvagiaEyeOpenTex "__OTR__objects/object_fd/gVolvagiaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaEyeOpenTex[] = dgVolvagiaEyeOpenTex; -#else -static const char gVolvagiaEyeOpenTex[] __attribute__((aligned (2))) = dgVolvagiaEyeOpenTex; -#endif - -#define dgVolvagiaEyeHalfTex "__OTR__objects/object_fd/gVolvagiaEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaEyeHalfTex[] = dgVolvagiaEyeHalfTex; -#else -static const char gVolvagiaEyeHalfTex[] __attribute__((aligned (2))) = dgVolvagiaEyeHalfTex; -#endif - -#define dgVolvagiaEyeClosedTex "__OTR__objects/object_fd/gVolvagiaEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaEyeClosedTex[] = dgVolvagiaEyeClosedTex; -#else -static const char gVolvagiaEyeClosedTex[] __attribute__((aligned (2))) = dgVolvagiaEyeClosedTex; -#endif - -#define dgVolvagiaRibsDL "__OTR__objects/object_fd/gVolvagiaRibsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRibsDL[] = dgVolvagiaRibsDL; -#else -static const char gVolvagiaRibsDL[] __attribute__((aligned (2))) = dgVolvagiaRibsDL; -#endif - -#define dgVolvagiaSkullDL "__OTR__objects/object_fd/gVolvagiaSkullDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaSkullDL[] = dgVolvagiaSkullDL; -#else -static const char gVolvagiaSkullDL[] __attribute__((aligned (2))) = dgVolvagiaSkullDL; -#endif - -#define dgVolvagiaJawboneDL "__OTR__objects/object_fd/gVolvagiaJawboneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaJawboneDL[] = dgVolvagiaJawboneDL; -#else -static const char gVolvagiaJawboneDL[] __attribute__((aligned (2))) = dgVolvagiaJawboneDL; -#endif - -#define dgVolvagiaBodySeg1DL "__OTR__objects/object_fd/gVolvagiaBodySeg1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg1DL[] = dgVolvagiaBodySeg1DL; -#else -static const char gVolvagiaBodySeg1DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg1DL; -#endif - -#define dgVolvagiaBodySeg2DL "__OTR__objects/object_fd/gVolvagiaBodySeg2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg2DL[] = dgVolvagiaBodySeg2DL; -#else -static const char gVolvagiaBodySeg2DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg2DL; -#endif - -#define dgVolvagiaBodySeg3DL "__OTR__objects/object_fd/gVolvagiaBodySeg3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg3DL[] = dgVolvagiaBodySeg3DL; -#else -static const char gVolvagiaBodySeg3DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg3DL; -#endif - -#define dgVolvagiaBodySeg4DL "__OTR__objects/object_fd/gVolvagiaBodySeg4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg4DL[] = dgVolvagiaBodySeg4DL; -#else -static const char gVolvagiaBodySeg4DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg4DL; -#endif - -#define dgVolvagiaBodySeg5DL "__OTR__objects/object_fd/gVolvagiaBodySeg5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg5DL[] = dgVolvagiaBodySeg5DL; -#else -static const char gVolvagiaBodySeg5DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg5DL; -#endif - -#define dgVolvagiaBodySeg6DL "__OTR__objects/object_fd/gVolvagiaBodySeg6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg6DL[] = dgVolvagiaBodySeg6DL; -#else -static const char gVolvagiaBodySeg6DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg6DL; -#endif - -#define dgVolvagiaBodySeg7DL "__OTR__objects/object_fd/gVolvagiaBodySeg7DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg7DL[] = dgVolvagiaBodySeg7DL; -#else -static const char gVolvagiaBodySeg7DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg7DL; -#endif - -#define dgVolvagiaBodySeg8DL "__OTR__objects/object_fd/gVolvagiaBodySeg8DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg8DL[] = dgVolvagiaBodySeg8DL; -#else -static const char gVolvagiaBodySeg8DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg8DL; -#endif - -#define dgVolvagiaBodySeg9DL "__OTR__objects/object_fd/gVolvagiaBodySeg9DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg9DL[] = dgVolvagiaBodySeg9DL; -#else -static const char gVolvagiaBodySeg9DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg9DL; -#endif - -#define dgVolvagiaBodySeg10DL "__OTR__objects/object_fd/gVolvagiaBodySeg10DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg10DL[] = dgVolvagiaBodySeg10DL; -#else -static const char gVolvagiaBodySeg10DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg10DL; -#endif - -#define dgVolvagiaBodySeg11DL "__OTR__objects/object_fd/gVolvagiaBodySeg11DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg11DL[] = dgVolvagiaBodySeg11DL; -#else -static const char gVolvagiaBodySeg11DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg11DL; -#endif - -#define dgVolvagiaBodySeg12DL "__OTR__objects/object_fd/gVolvagiaBodySeg12DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg12DL[] = dgVolvagiaBodySeg12DL; -#else -static const char gVolvagiaBodySeg12DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg12DL; -#endif - -#define dgVolvagiaBodySeg13DL "__OTR__objects/object_fd/gVolvagiaBodySeg13DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg13DL[] = dgVolvagiaBodySeg13DL; -#else -static const char gVolvagiaBodySeg13DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg13DL; -#endif - -#define dgVolvagiaBodySeg14DL "__OTR__objects/object_fd/gVolvagiaBodySeg14DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg14DL[] = dgVolvagiaBodySeg14DL; -#else -static const char gVolvagiaBodySeg14DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg14DL; -#endif - -#define dgVolvagiaBodySeg15DL "__OTR__objects/object_fd/gVolvagiaBodySeg15DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg15DL[] = dgVolvagiaBodySeg15DL; -#else -static const char gVolvagiaBodySeg15DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg15DL; -#endif - -#define dgVolvagiaBodySeg16DL "__OTR__objects/object_fd/gVolvagiaBodySeg16DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg16DL[] = dgVolvagiaBodySeg16DL; -#else -static const char gVolvagiaBodySeg16DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg16DL; -#endif - -#define dgVolvagiaBodySeg17DL "__OTR__objects/object_fd/gVolvagiaBodySeg17DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg17DL[] = dgVolvagiaBodySeg17DL; -#else -static const char gVolvagiaBodySeg17DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg17DL; -#endif - -#define dgVolvagiaBodySeg18DL "__OTR__objects/object_fd/gVolvagiaBodySeg18DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySeg18DL[] = dgVolvagiaBodySeg18DL; -#else -static const char gVolvagiaBodySeg18DL[] __attribute__((aligned (2))) = dgVolvagiaBodySeg18DL; -#endif - -#define dgVolvagiaEmberMaterialDL "__OTR__objects/object_fd/gVolvagiaEmberMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaEmberMaterialDL[] = dgVolvagiaEmberMaterialDL; -#else -static const char gVolvagiaEmberMaterialDL[] __attribute__((aligned (2))) = dgVolvagiaEmberMaterialDL; -#endif - -#define dgVolvagiaEmberModelDL "__OTR__objects/object_fd/gVolvagiaEmberModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaEmberModelDL[] = dgVolvagiaEmberModelDL; -#else -static const char gVolvagiaEmberModelDL[] __attribute__((aligned (2))) = dgVolvagiaEmberModelDL; -#endif - -#define dgVolvagiaDustMaterialDL "__OTR__objects/object_fd/gVolvagiaDustMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaDustMaterialDL[] = dgVolvagiaDustMaterialDL; -#else -static const char gVolvagiaDustMaterialDL[] __attribute__((aligned (2))) = dgVolvagiaDustMaterialDL; -#endif - -#define dgVolvagiaDustModelDL "__OTR__objects/object_fd/gVolvagiaDustModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaDustModelDL[] = dgVolvagiaDustModelDL; -#else -static const char gVolvagiaDustModelDL[] __attribute__((aligned (2))) = dgVolvagiaDustModelDL; -#endif - -#define dgVolvagiaDebrisMaterialDL "__OTR__objects/object_fd/gVolvagiaDebrisMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaDebrisMaterialDL[] = dgVolvagiaDebrisMaterialDL; -#else -static const char gVolvagiaDebrisMaterialDL[] __attribute__((aligned (2))) = dgVolvagiaDebrisMaterialDL; -#endif - -#define dgVolvagiaDebrisModelDL "__OTR__objects/object_fd/gVolvagiaDebrisModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaDebrisModelDL[] = dgVolvagiaDebrisModelDL; -#else -static const char gVolvagiaDebrisModelDL[] __attribute__((aligned (2))) = dgVolvagiaDebrisModelDL; -#endif - -#define dgVolvagiaSkullPieceMaterialDL "__OTR__objects/object_fd/gVolvagiaSkullPieceMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaSkullPieceMaterialDL[] = dgVolvagiaSkullPieceMaterialDL; -#else -static const char gVolvagiaSkullPieceMaterialDL[] __attribute__((aligned (2))) = dgVolvagiaSkullPieceMaterialDL; -#endif - -#define dgVolvagiaSkullPieceModelDL "__OTR__objects/object_fd/gVolvagiaSkullPieceModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaSkullPieceModelDL[] = dgVolvagiaSkullPieceModelDL; -#else -static const char gVolvagiaSkullPieceModelDL[] __attribute__((aligned (2))) = dgVolvagiaSkullPieceModelDL; -#endif - -#define dgVolvagiaBodySkel "__OTR__objects/object_fd/gVolvagiaBodySkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodySkel[] = dgVolvagiaBodySkel; -#else -static const char gVolvagiaBodySkel[] __attribute__((aligned (2))) = dgVolvagiaBodySkel; -#endif - -#define dgVolvagiaBodyStaticAnim "__OTR__objects/object_fd/gVolvagiaBodyStaticAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodyStaticAnim[] = dgVolvagiaBodyStaticAnim; -#else -static const char gVolvagiaBodyStaticAnim[] __attribute__((aligned (2))) = dgVolvagiaBodyStaticAnim; -#endif - -#define dgVolvagiaBodyTex "__OTR__objects/object_fd/gVolvagiaBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaBodyTex[] = dgVolvagiaBodyTex; -#else -static const char gVolvagiaBodyTex[] __attribute__((aligned (2))) = dgVolvagiaBodyTex; -#endif - -#define dgVolvagiaDL_009668 "__OTR__objects/object_fd/gVolvagiaDL_009668" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaDL_009668[] = dgVolvagiaDL_009668; -#else -static const char gVolvagiaDL_009668[] __attribute__((aligned (2))) = dgVolvagiaDL_009668; -#endif - -#define dgVolvagiaPlatformCol "__OTR__objects/object_fd/gVolvagiaPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaPlatformCol[] = dgVolvagiaPlatformCol; -#else -static const char gVolvagiaPlatformCol[] __attribute__((aligned (2))) = dgVolvagiaPlatformCol; -#endif - -#define dgVolvagiaPlatformDL "__OTR__objects/object_fd/gVolvagiaPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaPlatformDL[] = dgVolvagiaPlatformDL; -#else -static const char gVolvagiaPlatformDL[] __attribute__((aligned (2))) = dgVolvagiaPlatformDL; -#endif - -#define dgVolvagiaRockDL "__OTR__objects/object_fd/gVolvagiaRockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRockDL[] = dgVolvagiaRockDL; -#else -static const char gVolvagiaRockDL[] __attribute__((aligned (2))) = dgVolvagiaRockDL; -#endif - -#define dgVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8[] = dgVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8; -#else -static const char gVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8[] __attribute__((aligned (2))) = dgVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8; -#endif - -#define dgVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678[] = dgVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678; -#else -static const char gVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678[] __attribute__((aligned (2))) = dgVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678; -#endif - -#define dgVolvagiaLeftArmSkelLimbsLimb_011498DL_002770 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_011498DL_002770" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaLeftArmSkelLimbsLimb_011498DL_002770[] = dgVolvagiaLeftArmSkelLimbsLimb_011498DL_002770; -#else -static const char gVolvagiaLeftArmSkelLimbsLimb_011498DL_002770[] __attribute__((aligned (2))) = dgVolvagiaLeftArmSkelLimbsLimb_011498DL_002770; -#endif - -#define dgVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850[] = dgVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850; -#else -static const char gVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850[] __attribute__((aligned (2))) = dgVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850; -#endif - -#define dgVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0[] = dgVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0; -#else -static const char gVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0[] __attribute__((aligned (2))) = dgVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0; -#endif - -#define dgVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990[] = dgVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990; -#else -static const char gVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990[] __attribute__((aligned (2))) = dgVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990; -#endif - -#define dgVolvagiaRightArmSkelLimbsLimb_011540DL_002C10 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_011540DL_002C10" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRightArmSkelLimbsLimb_011540DL_002C10[] = dgVolvagiaRightArmSkelLimbsLimb_011540DL_002C10; -#else -static const char gVolvagiaRightArmSkelLimbsLimb_011540DL_002C10[] __attribute__((aligned (2))) = dgVolvagiaRightArmSkelLimbsLimb_011540DL_002C10; -#endif - -#define dgVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10[] = dgVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10; -#else -static const char gVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10[] __attribute__((aligned (2))) = dgVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10; -#endif - -#define dgVolvagiaRightArmSkelLimbsLimb_011558DL_002E08 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_011558DL_002E08" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRightArmSkelLimbsLimb_011558DL_002E08[] = dgVolvagiaRightArmSkelLimbsLimb_011558DL_002E08; -#else -static const char gVolvagiaRightArmSkelLimbsLimb_011558DL_002E08[] __attribute__((aligned (2))) = dgVolvagiaRightArmSkelLimbsLimb_011558DL_002E08; -#endif - -#define dgVolvagiaRightArmSkelLimbsLimb_011564DL_003028 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_011564DL_003028" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRightArmSkelLimbsLimb_011564DL_003028[] = dgVolvagiaRightArmSkelLimbsLimb_011564DL_003028; -#else -static const char gVolvagiaRightArmSkelLimbsLimb_011564DL_003028[] __attribute__((aligned (2))) = dgVolvagiaRightArmSkelLimbsLimb_011564DL_003028; -#endif - -#define dgVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8[] = dgVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8; -#else -static const char gVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8[] __attribute__((aligned (2))) = dgVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8; -#endif - -#define dgVolvagiaRightArmSkelLimbsLimb_01157CDL_003168 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_01157CDL_003168" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaRightArmSkelLimbsLimb_01157CDL_003168[] = dgVolvagiaRightArmSkelLimbsLimb_01157CDL_003168; -#else -static const char gVolvagiaRightArmSkelLimbsLimb_01157CDL_003168[] __attribute__((aligned (2))) = dgVolvagiaRightArmSkelLimbsLimb_01157CDL_003168; -#endif - -#define dgVolvagiaHeadSkelLimbsLimb_01160CDL_002180 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_01160CDL_002180" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaHeadSkelLimbsLimb_01160CDL_002180[] = dgVolvagiaHeadSkelLimbsLimb_01160CDL_002180; -#else -static const char gVolvagiaHeadSkelLimbsLimb_01160CDL_002180[] __attribute__((aligned (2))) = dgVolvagiaHeadSkelLimbsLimb_01160CDL_002180; -#endif - -#define dgVolvagiaHeadSkelLimbsLimb_011618DL_002358 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_011618DL_002358" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaHeadSkelLimbsLimb_011618DL_002358[] = dgVolvagiaHeadSkelLimbsLimb_011618DL_002358; -#else -static const char gVolvagiaHeadSkelLimbsLimb_011618DL_002358[] __attribute__((aligned (2))) = dgVolvagiaHeadSkelLimbsLimb_011618DL_002358; -#endif - -#define dgVolvagiaHeadSkelLimbsLimb_011624DL_002420 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_011624DL_002420" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaHeadSkelLimbsLimb_011624DL_002420[] = dgVolvagiaHeadSkelLimbsLimb_011624DL_002420; -#else -static const char gVolvagiaHeadSkelLimbsLimb_011624DL_002420[] __attribute__((aligned (2))) = dgVolvagiaHeadSkelLimbsLimb_011624DL_002420; -#endif - -#define dgVolvagiaHeadSkelLimbsLimb_011630DL_0020A8 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_011630DL_0020A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaHeadSkelLimbsLimb_011630DL_0020A8[] = dgVolvagiaHeadSkelLimbsLimb_011630DL_0020A8; -#else -static const char gVolvagiaHeadSkelLimbsLimb_011630DL_0020A8[] __attribute__((aligned (2))) = dgVolvagiaHeadSkelLimbsLimb_011630DL_0020A8; -#endif - -#define dgVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0[] = dgVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0; -#else -static const char gVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0[] __attribute__((aligned (2))) = dgVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0; -#endif - -#define dobject_fdTex_005B60 "__OTR__objects/object_fd/object_fdTex_005B60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_005B60[] = dobject_fdTex_005B60; -#else -static const char object_fdTex_005B60[] __attribute__((aligned (2))) = dobject_fdTex_005B60; -#endif - -#define dobject_fdTex_005F60 "__OTR__objects/object_fd/object_fdTex_005F60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_005F60[] = dobject_fdTex_005F60; -#else -static const char object_fdTex_005F60[] __attribute__((aligned (2))) = dobject_fdTex_005F60; -#endif - -#define dobject_fdTex_005D60 "__OTR__objects/object_fd/object_fdTex_005D60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_005D60[] = dobject_fdTex_005D60; -#else -static const char object_fdTex_005D60[] __attribute__((aligned (2))) = dobject_fdTex_005D60; -#endif - -#define dobject_fdTex_009208 "__OTR__objects/object_fd/object_fdTex_009208" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_009208[] = dobject_fdTex_009208; -#else -static const char object_fdTex_009208[] __attribute__((aligned (2))) = dobject_fdTex_009208; -#endif - -#define dobject_fdTex_00AA18 "__OTR__objects/object_fd/object_fdTex_00AA18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00AA18[] = dobject_fdTex_00AA18; -#else -static const char object_fdTex_00AA18[] __attribute__((aligned (2))) = dobject_fdTex_00AA18; -#endif - -#define dobject_fdTex_00C058 "__OTR__objects/object_fd/object_fdTex_00C058" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00C058[] = dobject_fdTex_00C058; -#else -static const char object_fdTex_00C058[] __attribute__((aligned (2))) = dobject_fdTex_00C058; -#endif - -#define dobject_fdTex_00BE58 "__OTR__objects/object_fd/object_fdTex_00BE58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00BE58[] = dobject_fdTex_00BE58; -#else -static const char object_fdTex_00BE58[] __attribute__((aligned (2))) = dobject_fdTex_00BE58; -#endif - -#define dobject_fdTex_00BC58 "__OTR__objects/object_fd/object_fdTex_00BC58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00BC58[] = dobject_fdTex_00BC58; -#else -static const char object_fdTex_00BC58[] __attribute__((aligned (2))) = dobject_fdTex_00BC58; -#endif - -#define dobject_fdTex_00B458 "__OTR__objects/object_fd/object_fdTex_00B458" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00B458[] = dobject_fdTex_00B458; -#else -static const char object_fdTex_00B458[] __attribute__((aligned (2))) = dobject_fdTex_00B458; -#endif - -#define dobject_fdTex_0040A8 "__OTR__objects/object_fd/object_fdTex_0040A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_0040A8[] = dobject_fdTex_0040A8; -#else -static const char object_fdTex_0040A8[] __attribute__((aligned (2))) = dobject_fdTex_0040A8; -#endif - -#define dobject_fdTex_0048A8 "__OTR__objects/object_fd/object_fdTex_0048A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_0048A8[] = dobject_fdTex_0048A8; -#else -static const char object_fdTex_0048A8[] __attribute__((aligned (2))) = dobject_fdTex_0048A8; -#endif - -#define dobject_fdTex_00A918 "__OTR__objects/object_fd/object_fdTex_00A918" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00A918[] = dobject_fdTex_00A918; -#else -static const char object_fdTex_00A918[] __attribute__((aligned (2))) = dobject_fdTex_00A918; -#endif - -#define dobject_fdTex_00D170 "__OTR__objects/object_fd/object_fdTex_00D170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00D170[] = dobject_fdTex_00D170; -#else -static const char object_fdTex_00D170[] __attribute__((aligned (2))) = dobject_fdTex_00D170; -#endif - -#define dobject_fdTex_00D438 "__OTR__objects/object_fd/object_fdTex_00D438" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00D438[] = dobject_fdTex_00D438; -#else -static const char object_fdTex_00D438[] __attribute__((aligned (2))) = dobject_fdTex_00D438; -#endif - -#define dobject_fdTex_009780 "__OTR__objects/object_fd/object_fdTex_009780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_009780[] = dobject_fdTex_009780; -#else -static const char object_fdTex_009780[] __attribute__((aligned (2))) = dobject_fdTex_009780; -#endif - -#define dobject_fdTex_009980 "__OTR__objects/object_fd/object_fdTex_009980" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_009980[] = dobject_fdTex_009980; -#else -static const char object_fdTex_009980[] __attribute__((aligned (2))) = dobject_fdTex_009980; -#endif - -#define dobject_fdTex_000A78 "__OTR__objects/object_fd/object_fdTex_000A78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_000A78[] = dobject_fdTex_000A78; -#else -static const char object_fdTex_000A78[] __attribute__((aligned (2))) = dobject_fdTex_000A78; -#endif - -#define dobject_fdTLUT_000A58 "__OTR__objects/object_fd/object_fdTLUT_000A58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTLUT_000A58[] = dobject_fdTLUT_000A58; -#else -static const char object_fdTLUT_000A58[] __attribute__((aligned (2))) = dobject_fdTLUT_000A58; -#endif - -#define dobject_fdTex_000658 "__OTR__objects/object_fd/object_fdTex_000658" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_000658[] = dobject_fdTex_000658; -#else -static const char object_fdTex_000658[] __attribute__((aligned (2))) = dobject_fdTex_000658; -#endif - -#define dobject_fdTLUT_000438 "__OTR__objects/object_fd/object_fdTLUT_000438" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTLUT_000438[] = dobject_fdTLUT_000438; -#else -static const char object_fdTLUT_000438[] __attribute__((aligned (2))) = dobject_fdTLUT_000438; -#endif - -#define dobject_fdTex_000458 "__OTR__objects/object_fd/object_fdTex_000458" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_000458[] = dobject_fdTex_000458; -#else -static const char object_fdTex_000458[] __attribute__((aligned (2))) = dobject_fdTex_000458; -#endif - -#define dobject_fdTex_00A050 "__OTR__objects/object_fd/object_fdTex_00A050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_00A050[] = dobject_fdTex_00A050; -#else -static const char object_fdTex_00A050[] __attribute__((aligned (2))) = dobject_fdTex_00A050; -#endif - -#define dobject_fdTex_0050A8 "__OTR__objects/object_fd/object_fdTex_0050A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_0050A8[] = dobject_fdTex_0050A8; -#else -static const char object_fdTex_0050A8[] __attribute__((aligned (2))) = dobject_fdTex_0050A8; -#endif - -#define dobject_fdTex_0054A8 "__OTR__objects/object_fd/object_fdTex_0054A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_0054A8[] = dobject_fdTex_0054A8; -#else -static const char object_fdTex_0054A8[] __attribute__((aligned (2))) = dobject_fdTex_0054A8; -#endif - -#define dobject_fdTex_0052A8 "__OTR__objects/object_fd/object_fdTex_0052A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_0052A8[] = dobject_fdTex_0052A8; -#else -static const char object_fdTex_0052A8[] __attribute__((aligned (2))) = dobject_fdTex_0052A8; -#endif - -#define dobject_fdTex_0056A8 "__OTR__objects/object_fd/object_fdTex_0056A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTex_0056A8[] = dobject_fdTex_0056A8; -#else -static const char object_fdTex_0056A8[] __attribute__((aligned (2))) = dobject_fdTex_0056A8; -#endif - -#define dobject_fdTLUT_0032A8 "__OTR__objects/object_fd/object_fdTLUT_0032A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fdTLUT_0032A8[] = dobject_fdTLUT_0032A8; -#else -static const char object_fdTLUT_0032A8[] __attribute__((aligned (2))) = dobject_fdTLUT_0032A8; -#endif - +#include "align_asset_macro.h" + +#define dgVolvagiaBossTitleCardTex "__OTR__objects/object_fd/gVolvagiaBossTitleCardTex" +static const ALIGN_ASSET(2) char gVolvagiaBossTitleCardTex[] = dgVolvagiaBossTitleCardTex; + +#define dgVolvagiaLeftArmSkel "__OTR__objects/object_fd/gVolvagiaLeftArmSkel" +static const ALIGN_ASSET(2) char gVolvagiaLeftArmSkel[] = dgVolvagiaLeftArmSkel; + +#define dgVolvagiaRightArmSkel "__OTR__objects/object_fd/gVolvagiaRightArmSkel" +static const ALIGN_ASSET(2) char gVolvagiaRightArmSkel[] = dgVolvagiaRightArmSkel; + +#define dgVolvagiaHeadSkel "__OTR__objects/object_fd/gVolvagiaHeadSkel" +static const ALIGN_ASSET(2) char gVolvagiaHeadSkel[] = dgVolvagiaHeadSkel; + +#define dgVolvagiaLeftArmEmergeAnim "__OTR__objects/object_fd/gVolvagiaLeftArmEmergeAnim" +static const ALIGN_ASSET(2) char gVolvagiaLeftArmEmergeAnim[] = dgVolvagiaLeftArmEmergeAnim; + +#define dgVolvagiaRightArmEmergeAnim "__OTR__objects/object_fd/gVolvagiaRightArmEmergeAnim" +static const ALIGN_ASSET(2) char gVolvagiaRightArmEmergeAnim[] = dgVolvagiaRightArmEmergeAnim; + +#define dgVolvagiaHeadEmergeAnim "__OTR__objects/object_fd/gVolvagiaHeadEmergeAnim" +static const ALIGN_ASSET(2) char gVolvagiaHeadEmergeAnim[] = dgVolvagiaHeadEmergeAnim; + +#define dgVolvagiaBrokenFaceDL "__OTR__objects/object_fd/gVolvagiaBrokenFaceDL" +static const ALIGN_ASSET(2) char gVolvagiaBrokenFaceDL[] = dgVolvagiaBrokenFaceDL; + +#define dgVolvagiaManeMaterialDL "__OTR__objects/object_fd/gVolvagiaManeMaterialDL" +static const ALIGN_ASSET(2) char gVolvagiaManeMaterialDL[] = dgVolvagiaManeMaterialDL; + +#define dgVolvagiaManeModelDL "__OTR__objects/object_fd/gVolvagiaManeModelDL" +static const ALIGN_ASSET(2) char gVolvagiaManeModelDL[] = dgVolvagiaManeModelDL; + +#define dgVolvagiaEyeOpenTex "__OTR__objects/object_fd/gVolvagiaEyeOpenTex" +static const ALIGN_ASSET(2) char gVolvagiaEyeOpenTex[] = dgVolvagiaEyeOpenTex; + +#define dgVolvagiaEyeHalfTex "__OTR__objects/object_fd/gVolvagiaEyeHalfTex" +static const ALIGN_ASSET(2) char gVolvagiaEyeHalfTex[] = dgVolvagiaEyeHalfTex; + +#define dgVolvagiaEyeClosedTex "__OTR__objects/object_fd/gVolvagiaEyeClosedTex" +static const ALIGN_ASSET(2) char gVolvagiaEyeClosedTex[] = dgVolvagiaEyeClosedTex; + +#define dgVolvagiaRibsDL "__OTR__objects/object_fd/gVolvagiaRibsDL" +static const ALIGN_ASSET(2) char gVolvagiaRibsDL[] = dgVolvagiaRibsDL; + +#define dgVolvagiaSkullDL "__OTR__objects/object_fd/gVolvagiaSkullDL" +static const ALIGN_ASSET(2) char gVolvagiaSkullDL[] = dgVolvagiaSkullDL; + +#define dgVolvagiaJawboneDL "__OTR__objects/object_fd/gVolvagiaJawboneDL" +static const ALIGN_ASSET(2) char gVolvagiaJawboneDL[] = dgVolvagiaJawboneDL; + +#define dgVolvagiaBodySeg1DL "__OTR__objects/object_fd/gVolvagiaBodySeg1DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg1DL[] = dgVolvagiaBodySeg1DL; + +#define dgVolvagiaBodySeg2DL "__OTR__objects/object_fd/gVolvagiaBodySeg2DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg2DL[] = dgVolvagiaBodySeg2DL; + +#define dgVolvagiaBodySeg3DL "__OTR__objects/object_fd/gVolvagiaBodySeg3DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg3DL[] = dgVolvagiaBodySeg3DL; + +#define dgVolvagiaBodySeg4DL "__OTR__objects/object_fd/gVolvagiaBodySeg4DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg4DL[] = dgVolvagiaBodySeg4DL; + +#define dgVolvagiaBodySeg5DL "__OTR__objects/object_fd/gVolvagiaBodySeg5DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg5DL[] = dgVolvagiaBodySeg5DL; + +#define dgVolvagiaBodySeg6DL "__OTR__objects/object_fd/gVolvagiaBodySeg6DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg6DL[] = dgVolvagiaBodySeg6DL; + +#define dgVolvagiaBodySeg7DL "__OTR__objects/object_fd/gVolvagiaBodySeg7DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg7DL[] = dgVolvagiaBodySeg7DL; + +#define dgVolvagiaBodySeg8DL "__OTR__objects/object_fd/gVolvagiaBodySeg8DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg8DL[] = dgVolvagiaBodySeg8DL; + +#define dgVolvagiaBodySeg9DL "__OTR__objects/object_fd/gVolvagiaBodySeg9DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg9DL[] = dgVolvagiaBodySeg9DL; + +#define dgVolvagiaBodySeg10DL "__OTR__objects/object_fd/gVolvagiaBodySeg10DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg10DL[] = dgVolvagiaBodySeg10DL; + +#define dgVolvagiaBodySeg11DL "__OTR__objects/object_fd/gVolvagiaBodySeg11DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg11DL[] = dgVolvagiaBodySeg11DL; + +#define dgVolvagiaBodySeg12DL "__OTR__objects/object_fd/gVolvagiaBodySeg12DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg12DL[] = dgVolvagiaBodySeg12DL; + +#define dgVolvagiaBodySeg13DL "__OTR__objects/object_fd/gVolvagiaBodySeg13DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg13DL[] = dgVolvagiaBodySeg13DL; + +#define dgVolvagiaBodySeg14DL "__OTR__objects/object_fd/gVolvagiaBodySeg14DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg14DL[] = dgVolvagiaBodySeg14DL; + +#define dgVolvagiaBodySeg15DL "__OTR__objects/object_fd/gVolvagiaBodySeg15DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg15DL[] = dgVolvagiaBodySeg15DL; + +#define dgVolvagiaBodySeg16DL "__OTR__objects/object_fd/gVolvagiaBodySeg16DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg16DL[] = dgVolvagiaBodySeg16DL; + +#define dgVolvagiaBodySeg17DL "__OTR__objects/object_fd/gVolvagiaBodySeg17DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg17DL[] = dgVolvagiaBodySeg17DL; + +#define dgVolvagiaBodySeg18DL "__OTR__objects/object_fd/gVolvagiaBodySeg18DL" +static const ALIGN_ASSET(2) char gVolvagiaBodySeg18DL[] = dgVolvagiaBodySeg18DL; + +#define dgVolvagiaEmberMaterialDL "__OTR__objects/object_fd/gVolvagiaEmberMaterialDL" +static const ALIGN_ASSET(2) char gVolvagiaEmberMaterialDL[] = dgVolvagiaEmberMaterialDL; + +#define dgVolvagiaEmberModelDL "__OTR__objects/object_fd/gVolvagiaEmberModelDL" +static const ALIGN_ASSET(2) char gVolvagiaEmberModelDL[] = dgVolvagiaEmberModelDL; + +#define dgVolvagiaDustMaterialDL "__OTR__objects/object_fd/gVolvagiaDustMaterialDL" +static const ALIGN_ASSET(2) char gVolvagiaDustMaterialDL[] = dgVolvagiaDustMaterialDL; + +#define dgVolvagiaDustModelDL "__OTR__objects/object_fd/gVolvagiaDustModelDL" +static const ALIGN_ASSET(2) char gVolvagiaDustModelDL[] = dgVolvagiaDustModelDL; + +#define dgVolvagiaDebrisMaterialDL "__OTR__objects/object_fd/gVolvagiaDebrisMaterialDL" +static const ALIGN_ASSET(2) char gVolvagiaDebrisMaterialDL[] = dgVolvagiaDebrisMaterialDL; + +#define dgVolvagiaDebrisModelDL "__OTR__objects/object_fd/gVolvagiaDebrisModelDL" +static const ALIGN_ASSET(2) char gVolvagiaDebrisModelDL[] = dgVolvagiaDebrisModelDL; + +#define dgVolvagiaSkullPieceMaterialDL "__OTR__objects/object_fd/gVolvagiaSkullPieceMaterialDL" +static const ALIGN_ASSET(2) char gVolvagiaSkullPieceMaterialDL[] = dgVolvagiaSkullPieceMaterialDL; + +#define dgVolvagiaSkullPieceModelDL "__OTR__objects/object_fd/gVolvagiaSkullPieceModelDL" +static const ALIGN_ASSET(2) char gVolvagiaSkullPieceModelDL[] = dgVolvagiaSkullPieceModelDL; + +#define dgVolvagiaBodySkel "__OTR__objects/object_fd/gVolvagiaBodySkel" +static const ALIGN_ASSET(2) char gVolvagiaBodySkel[] = dgVolvagiaBodySkel; + +#define dgVolvagiaBodyStaticAnim "__OTR__objects/object_fd/gVolvagiaBodyStaticAnim" +static const ALIGN_ASSET(2) char gVolvagiaBodyStaticAnim[] = dgVolvagiaBodyStaticAnim; + +#define dgVolvagiaBodyTex "__OTR__objects/object_fd/gVolvagiaBodyTex" +static const ALIGN_ASSET(2) char gVolvagiaBodyTex[] = dgVolvagiaBodyTex; + +#define dgVolvagiaDL_009668 "__OTR__objects/object_fd/gVolvagiaDL_009668" +static const ALIGN_ASSET(2) char gVolvagiaDL_009668[] = dgVolvagiaDL_009668; + +#define dgVolvagiaPlatformCol "__OTR__objects/object_fd/gVolvagiaPlatformCol" +static const ALIGN_ASSET(2) char gVolvagiaPlatformCol[] = dgVolvagiaPlatformCol; + +#define dgVolvagiaPlatformDL "__OTR__objects/object_fd/gVolvagiaPlatformDL" +static const ALIGN_ASSET(2) char gVolvagiaPlatformDL[] = dgVolvagiaPlatformDL; + +#define dgVolvagiaRockDL "__OTR__objects/object_fd/gVolvagiaRockDL" +static const ALIGN_ASSET(2) char gVolvagiaRockDL[] = dgVolvagiaRockDL; + +#define dgVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8" +static const ALIGN_ASSET(2) char gVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8[] = dgVolvagiaLeftArmSkelLimbsLimb_011480DL_0024E8; + +#define dgVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678" +static const ALIGN_ASSET(2) char gVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678[] = dgVolvagiaLeftArmSkelLimbsLimb_01148CDL_002678; + +#define dgVolvagiaLeftArmSkelLimbsLimb_011498DL_002770 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_011498DL_002770" +static const ALIGN_ASSET(2) char gVolvagiaLeftArmSkelLimbsLimb_011498DL_002770[] = dgVolvagiaLeftArmSkelLimbsLimb_011498DL_002770; + +#define dgVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850" +static const ALIGN_ASSET(2) char gVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850[] = dgVolvagiaLeftArmSkelLimbsLimb_0114A4DL_002850; + +#define dgVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0" +static const ALIGN_ASSET(2) char gVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0[] = dgVolvagiaLeftArmSkelLimbsLimb_0114B0DL_002AD0; + +#define dgVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990 "__OTR__objects/object_fd/gVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990" +static const ALIGN_ASSET(2) char gVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990[] = dgVolvagiaLeftArmSkelLimbsLimb_0114BCDL_002990; + +#define dgVolvagiaRightArmSkelLimbsLimb_011540DL_002C10 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_011540DL_002C10" +static const ALIGN_ASSET(2) char gVolvagiaRightArmSkelLimbsLimb_011540DL_002C10[] = dgVolvagiaRightArmSkelLimbsLimb_011540DL_002C10; + +#define dgVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10" +static const ALIGN_ASSET(2) char gVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10[] = dgVolvagiaRightArmSkelLimbsLimb_01154CDL_002D10; + +#define dgVolvagiaRightArmSkelLimbsLimb_011558DL_002E08 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_011558DL_002E08" +static const ALIGN_ASSET(2) char gVolvagiaRightArmSkelLimbsLimb_011558DL_002E08[] = dgVolvagiaRightArmSkelLimbsLimb_011558DL_002E08; + +#define dgVolvagiaRightArmSkelLimbsLimb_011564DL_003028 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_011564DL_003028" +static const ALIGN_ASSET(2) char gVolvagiaRightArmSkelLimbsLimb_011564DL_003028[] = dgVolvagiaRightArmSkelLimbsLimb_011564DL_003028; + +#define dgVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8" +static const ALIGN_ASSET(2) char gVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8[] = dgVolvagiaRightArmSkelLimbsLimb_011570DL_002EE8; + +#define dgVolvagiaRightArmSkelLimbsLimb_01157CDL_003168 "__OTR__objects/object_fd/gVolvagiaRightArmSkelLimbsLimb_01157CDL_003168" +static const ALIGN_ASSET(2) char gVolvagiaRightArmSkelLimbsLimb_01157CDL_003168[] = dgVolvagiaRightArmSkelLimbsLimb_01157CDL_003168; + +#define dgVolvagiaHeadSkelLimbsLimb_01160CDL_002180 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_01160CDL_002180" +static const ALIGN_ASSET(2) char gVolvagiaHeadSkelLimbsLimb_01160CDL_002180[] = dgVolvagiaHeadSkelLimbsLimb_01160CDL_002180; + +#define dgVolvagiaHeadSkelLimbsLimb_011618DL_002358 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_011618DL_002358" +static const ALIGN_ASSET(2) char gVolvagiaHeadSkelLimbsLimb_011618DL_002358[] = dgVolvagiaHeadSkelLimbsLimb_011618DL_002358; + +#define dgVolvagiaHeadSkelLimbsLimb_011624DL_002420 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_011624DL_002420" +static const ALIGN_ASSET(2) char gVolvagiaHeadSkelLimbsLimb_011624DL_002420[] = dgVolvagiaHeadSkelLimbsLimb_011624DL_002420; + +#define dgVolvagiaHeadSkelLimbsLimb_011630DL_0020A8 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_011630DL_0020A8" +static const ALIGN_ASSET(2) char gVolvagiaHeadSkelLimbsLimb_011630DL_0020A8[] = dgVolvagiaHeadSkelLimbsLimb_011630DL_0020A8; + +#define dgVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0 "__OTR__objects/object_fd/gVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0" +static const ALIGN_ASSET(2) char gVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0[] = dgVolvagiaHeadSkelLimbsLimb_01163CDL_001DB0; + +#define dobject_fdTex_005B60 "__OTR__objects/object_fd/object_fdTex_005B60" +static const ALIGN_ASSET(2) char object_fdTex_005B60[] = dobject_fdTex_005B60; + +#define dobject_fdTex_005F60 "__OTR__objects/object_fd/object_fdTex_005F60" +static const ALIGN_ASSET(2) char object_fdTex_005F60[] = dobject_fdTex_005F60; + +#define dobject_fdTex_005D60 "__OTR__objects/object_fd/object_fdTex_005D60" +static const ALIGN_ASSET(2) char object_fdTex_005D60[] = dobject_fdTex_005D60; + +#define dobject_fdTex_009208 "__OTR__objects/object_fd/object_fdTex_009208" +static const ALIGN_ASSET(2) char object_fdTex_009208[] = dobject_fdTex_009208; + +#define dobject_fdTex_00AA18 "__OTR__objects/object_fd/object_fdTex_00AA18" +static const ALIGN_ASSET(2) char object_fdTex_00AA18[] = dobject_fdTex_00AA18; + +#define dobject_fdTex_00C058 "__OTR__objects/object_fd/object_fdTex_00C058" +static const ALIGN_ASSET(2) char object_fdTex_00C058[] = dobject_fdTex_00C058; + +#define dobject_fdTex_00BE58 "__OTR__objects/object_fd/object_fdTex_00BE58" +static const ALIGN_ASSET(2) char object_fdTex_00BE58[] = dobject_fdTex_00BE58; + +#define dobject_fdTex_00BC58 "__OTR__objects/object_fd/object_fdTex_00BC58" +static const ALIGN_ASSET(2) char object_fdTex_00BC58[] = dobject_fdTex_00BC58; + +#define dobject_fdTex_00B458 "__OTR__objects/object_fd/object_fdTex_00B458" +static const ALIGN_ASSET(2) char object_fdTex_00B458[] = dobject_fdTex_00B458; + +#define dobject_fdTex_0040A8 "__OTR__objects/object_fd/object_fdTex_0040A8" +static const ALIGN_ASSET(2) char object_fdTex_0040A8[] = dobject_fdTex_0040A8; + +#define dobject_fdTex_0048A8 "__OTR__objects/object_fd/object_fdTex_0048A8" +static const ALIGN_ASSET(2) char object_fdTex_0048A8[] = dobject_fdTex_0048A8; + +#define dobject_fdTex_00A918 "__OTR__objects/object_fd/object_fdTex_00A918" +static const ALIGN_ASSET(2) char object_fdTex_00A918[] = dobject_fdTex_00A918; + +#define dobject_fdTex_00D170 "__OTR__objects/object_fd/object_fdTex_00D170" +static const ALIGN_ASSET(2) char object_fdTex_00D170[] = dobject_fdTex_00D170; + +#define dobject_fdTex_00D438 "__OTR__objects/object_fd/object_fdTex_00D438" +static const ALIGN_ASSET(2) char object_fdTex_00D438[] = dobject_fdTex_00D438; + +#define dobject_fdTex_009780 "__OTR__objects/object_fd/object_fdTex_009780" +static const ALIGN_ASSET(2) char object_fdTex_009780[] = dobject_fdTex_009780; + +#define dobject_fdTex_009980 "__OTR__objects/object_fd/object_fdTex_009980" +static const ALIGN_ASSET(2) char object_fdTex_009980[] = dobject_fdTex_009980; + +#define dobject_fdTex_000A78 "__OTR__objects/object_fd/object_fdTex_000A78" +static const ALIGN_ASSET(2) char object_fdTex_000A78[] = dobject_fdTex_000A78; + +#define dobject_fdTLUT_000A58 "__OTR__objects/object_fd/object_fdTLUT_000A58" +static const ALIGN_ASSET(2) char object_fdTLUT_000A58[] = dobject_fdTLUT_000A58; + +#define dobject_fdTex_000658 "__OTR__objects/object_fd/object_fdTex_000658" +static const ALIGN_ASSET(2) char object_fdTex_000658[] = dobject_fdTex_000658; + +#define dobject_fdTLUT_000438 "__OTR__objects/object_fd/object_fdTLUT_000438" +static const ALIGN_ASSET(2) char object_fdTLUT_000438[] = dobject_fdTLUT_000438; + +#define dobject_fdTex_000458 "__OTR__objects/object_fd/object_fdTex_000458" +static const ALIGN_ASSET(2) char object_fdTex_000458[] = dobject_fdTex_000458; + +#define dobject_fdTex_00A050 "__OTR__objects/object_fd/object_fdTex_00A050" +static const ALIGN_ASSET(2) char object_fdTex_00A050[] = dobject_fdTex_00A050; + +#define dobject_fdTex_0050A8 "__OTR__objects/object_fd/object_fdTex_0050A8" +static const ALIGN_ASSET(2) char object_fdTex_0050A8[] = dobject_fdTex_0050A8; + +#define dobject_fdTex_0054A8 "__OTR__objects/object_fd/object_fdTex_0054A8" +static const ALIGN_ASSET(2) char object_fdTex_0054A8[] = dobject_fdTex_0054A8; + +#define dobject_fdTex_0052A8 "__OTR__objects/object_fd/object_fdTex_0052A8" +static const ALIGN_ASSET(2) char object_fdTex_0052A8[] = dobject_fdTex_0052A8; + +#define dobject_fdTex_0056A8 "__OTR__objects/object_fd/object_fdTex_0056A8" +static const ALIGN_ASSET(2) char object_fdTex_0056A8[] = dobject_fdTex_0056A8; + +#define dobject_fdTLUT_0032A8 "__OTR__objects/object_fd/object_fdTLUT_0032A8" +static const ALIGN_ASSET(2) char object_fdTLUT_0032A8[] = dobject_fdTLUT_0032A8; \ No newline at end of file diff --git a/soh/assets/objects/object_fd2/object_fd2.h b/soh/assets/objects/object_fd2/object_fd2.h index e897a8a20..07699a063 100644 --- a/soh/assets/objects/object_fd2/object_fd2.h +++ b/soh/assets/objects/object_fd2/object_fd2.h @@ -1,464 +1,201 @@ #pragma once -#define dgHoleVolvagiaSkel "__OTR__objects/object_fd2/gHoleVolvagiaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkel[] = dgHoleVolvagiaSkel; -#else -static const char gHoleVolvagiaSkel[] __attribute__((aligned (2))) = dgHoleVolvagiaSkel; -#endif - -#define dgHoleVolvagiaManeMaterialDL "__OTR__objects/object_fd2/gHoleVolvagiaManeMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaManeMaterialDL[] = dgHoleVolvagiaManeMaterialDL; -#else -static const char gHoleVolvagiaManeMaterialDL[] __attribute__((aligned (2))) = dgHoleVolvagiaManeMaterialDL; -#endif - -#define dgHoleVolvagiaManeModelDL "__OTR__objects/object_fd2/gHoleVolvagiaManeModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaManeModelDL[] = dgHoleVolvagiaManeModelDL; -#else -static const char gHoleVolvagiaManeModelDL[] __attribute__((aligned (2))) = dgHoleVolvagiaManeModelDL; -#endif - -#define dgHoleVolvagiaBrokenFaceDL "__OTR__objects/object_fd2/gHoleVolvagiaBrokenFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaBrokenFaceDL[] = dgHoleVolvagiaBrokenFaceDL; -#else -static const char gHoleVolvagiaBrokenFaceDL[] __attribute__((aligned (2))) = dgHoleVolvagiaBrokenFaceDL; -#endif - -#define dgHoleVolvagiaBreatheFireAnim "__OTR__objects/object_fd2/gHoleVolvagiaBreatheFireAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaBreatheFireAnim[] = dgHoleVolvagiaBreatheFireAnim; -#else -static const char gHoleVolvagiaBreatheFireAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaBreatheFireAnim; -#endif - -#define dgHoleVolvagiaHitAnim "__OTR__objects/object_fd2/gHoleVolvagiaHitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaHitAnim[] = dgHoleVolvagiaHitAnim; -#else -static const char gHoleVolvagiaHitAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaHitAnim; -#endif - -#define dgHoleVolvagiaDamagedAnim "__OTR__objects/object_fd2/gHoleVolvagiaDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaDamagedAnim[] = dgHoleVolvagiaDamagedAnim; -#else -static const char gHoleVolvagiaDamagedAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaDamagedAnim; -#endif - -#define dgHoleVolvagiaBurrowAnim "__OTR__objects/object_fd2/gHoleVolvagiaBurrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaBurrowAnim[] = dgHoleVolvagiaBurrowAnim; -#else -static const char gHoleVolvagiaBurrowAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaBurrowAnim; -#endif - -#define dgHoleVolvagiaKnockoutAnim "__OTR__objects/object_fd2/gHoleVolvagiaKnockoutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaKnockoutAnim[] = dgHoleVolvagiaKnockoutAnim; -#else -static const char gHoleVolvagiaKnockoutAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaKnockoutAnim; -#endif - -#define dgHoleVolvagiaVulnerableAnim "__OTR__objects/object_fd2/gHoleVolvagiaVulnerableAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaVulnerableAnim[] = dgHoleVolvagiaVulnerableAnim; -#else -static const char gHoleVolvagiaVulnerableAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaVulnerableAnim; -#endif - -#define dgHoleVolvagiaTurnAnim "__OTR__objects/object_fd2/gHoleVolvagiaTurnAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaTurnAnim[] = dgHoleVolvagiaTurnAnim; -#else -static const char gHoleVolvagiaTurnAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaTurnAnim; -#endif - -#define dgHoleVolvagiaClawSwipeAnim "__OTR__objects/object_fd2/gHoleVolvagiaClawSwipeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaClawSwipeAnim[] = dgHoleVolvagiaClawSwipeAnim; -#else -static const char gHoleVolvagiaClawSwipeAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaClawSwipeAnim; -#endif - -#define dgHoleVolvagiaEmergeAnim "__OTR__objects/object_fd2/gHoleVolvagiaEmergeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaEmergeAnim[] = dgHoleVolvagiaEmergeAnim; -#else -static const char gHoleVolvagiaEmergeAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaEmergeAnim; -#endif - -#define dgHoleVolvagiaIdleAnim "__OTR__objects/object_fd2/gHoleVolvagiaIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaIdleAnim[] = dgHoleVolvagiaIdleAnim; -#else -static const char gHoleVolvagiaIdleAnim[] __attribute__((aligned (2))) = dgHoleVolvagiaIdleAnim; -#endif - -#define dgHoleVolvagiaEyeHalfTex "__OTR__objects/object_fd2/gHoleVolvagiaEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaEyeHalfTex[] = dgHoleVolvagiaEyeHalfTex; -#else -static const char gHoleVolvagiaEyeHalfTex[] __attribute__((aligned (2))) = dgHoleVolvagiaEyeHalfTex; -#endif - -#define dgHoleVolvagiaEyeOpenTex "__OTR__objects/object_fd2/gHoleVolvagiaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaEyeOpenTex[] = dgHoleVolvagiaEyeOpenTex; -#else -static const char gHoleVolvagiaEyeOpenTex[] __attribute__((aligned (2))) = dgHoleVolvagiaEyeOpenTex; -#endif - -#define dgHoleVolvagiaEyeClosedTex "__OTR__objects/object_fd2/gHoleVolvagiaEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaEyeClosedTex[] = dgHoleVolvagiaEyeClosedTex; -#else -static const char gHoleVolvagiaEyeClosedTex[] __attribute__((aligned (2))) = dgHoleVolvagiaEyeClosedTex; -#endif - -#define dgHoleVolvagiaAnim_00CDAC "__OTR__objects/object_fd2/gHoleVolvagiaAnim_00CDAC" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaAnim_00CDAC[] = dgHoleVolvagiaAnim_00CDAC; -#else -static const char gHoleVolvagiaAnim_00CDAC[] __attribute__((aligned (2))) = dgHoleVolvagiaAnim_00CDAC; -#endif - -#define dgHoleVolvagiaVtx_00DD80 "__OTR__objects/object_fd2/gHoleVolvagiaVtx_00DD80" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaVtx_00DD80[] = dgHoleVolvagiaVtx_00DD80; -#else -static const char gHoleVolvagiaVtx_00DD80[] __attribute__((aligned (2))) = dgHoleVolvagiaVtx_00DD80; -#endif - -#define dgHoleVolvagiaVtx_00D000 "__OTR__objects/object_fd2/gHoleVolvagiaVtx_00D000" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaVtx_00D000[] = dgHoleVolvagiaVtx_00D000; -#else -static const char gHoleVolvagiaVtx_00D000[] __attribute__((aligned (2))) = dgHoleVolvagiaVtx_00D000; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011838DL_00FF70 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011838DL_00FF70" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011838DL_00FF70[] = dgHoleVolvagiaSkelLimbsLimb_011838DL_00FF70; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011838DL_00FF70[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011838DL_00FF70; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011844DL_010D40 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011844DL_010D40" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011844DL_010D40[] = dgHoleVolvagiaSkelLimbsLimb_011844DL_010D40; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011844DL_010D40[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011844DL_010D40; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011850DL_010E98 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011850DL_010E98" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011850DL_010E98[] = dgHoleVolvagiaSkelLimbsLimb_011850DL_010E98; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011850DL_010E98[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011850DL_010E98; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8[] = dgHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8; -#else -static const char gHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011868DL_011160 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011868DL_011160" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011868DL_011160[] = dgHoleVolvagiaSkelLimbsLimb_011868DL_011160; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011868DL_011160[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011868DL_011160; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011874DL_0112C0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011874DL_0112C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011874DL_0112C0[] = dgHoleVolvagiaSkelLimbsLimb_011874DL_0112C0; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011874DL_0112C0[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011874DL_0112C0; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011880DL_011410 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011880DL_011410" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011880DL_011410[] = dgHoleVolvagiaSkelLimbsLimb_011880DL_011410; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011880DL_011410[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011880DL_011410; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_01188CDL_011560 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01188CDL_011560" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_01188CDL_011560[] = dgHoleVolvagiaSkelLimbsLimb_01188CDL_011560; -#else -static const char gHoleVolvagiaSkelLimbsLimb_01188CDL_011560[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_01188CDL_011560; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011898DL_0116B8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011898DL_0116B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011898DL_0116B8[] = dgHoleVolvagiaSkelLimbsLimb_011898DL_0116B8; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011898DL_0116B8[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011898DL_0116B8; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0118A4DL_010070 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118A4DL_010070" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0118A4DL_010070[] = dgHoleVolvagiaSkelLimbsLimb_0118A4DL_010070; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0118A4DL_010070[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0118A4DL_010070; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0[] = dgHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0118BCDL_010330 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118BCDL_010330" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0118BCDL_010330[] = dgHoleVolvagiaSkelLimbsLimb_0118BCDL_010330; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0118BCDL_010330[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0118BCDL_010330; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0118C8DL_010490 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118C8DL_010490" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0118C8DL_010490[] = dgHoleVolvagiaSkelLimbsLimb_0118C8DL_010490; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0118C8DL_010490[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0118C8DL_010490; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8[] = dgHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0118E0DL_010758 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118E0DL_010758" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0118E0DL_010758[] = dgHoleVolvagiaSkelLimbsLimb_0118E0DL_010758; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0118E0DL_010758[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0118E0DL_010758; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0[] = dgHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10[] = dgHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011904DL_001748 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011904DL_001748" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011904DL_001748[] = dgHoleVolvagiaSkelLimbsLimb_011904DL_001748; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011904DL_001748[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011904DL_001748; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011910DL_0018D8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011910DL_0018D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011910DL_0018D8[] = dgHoleVolvagiaSkelLimbsLimb_011910DL_0018D8; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011910DL_0018D8[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011910DL_0018D8; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0[] = dgHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0; -#else -static const char gHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011928DL_001AB0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011928DL_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011928DL_001AB0[] = dgHoleVolvagiaSkelLimbsLimb_011928DL_001AB0; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011928DL_001AB0[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011928DL_001AB0; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011934DL_001D30 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011934DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011934DL_001D30[] = dgHoleVolvagiaSkelLimbsLimb_011934DL_001D30; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011934DL_001D30[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011934DL_001D30; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011940DL_001BF0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011940DL_001BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011940DL_001BF0[] = dgHoleVolvagiaSkelLimbsLimb_011940DL_001BF0; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011940DL_001BF0[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011940DL_001BF0; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_01194CDL_001E70 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01194CDL_001E70" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_01194CDL_001E70[] = dgHoleVolvagiaSkelLimbsLimb_01194CDL_001E70; -#else -static const char gHoleVolvagiaSkelLimbsLimb_01194CDL_001E70[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_01194CDL_001E70; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011958DL_001F70 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011958DL_001F70" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011958DL_001F70[] = dgHoleVolvagiaSkelLimbsLimb_011958DL_001F70; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011958DL_001F70[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011958DL_001F70; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011964DL_002068 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011964DL_002068" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011964DL_002068[] = dgHoleVolvagiaSkelLimbsLimb_011964DL_002068; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011964DL_002068[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011964DL_002068; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011970DL_002288 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011970DL_002288" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011970DL_002288[] = dgHoleVolvagiaSkelLimbsLimb_011970DL_002288; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011970DL_002288[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011970DL_002288; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_01197CDL_002148 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01197CDL_002148" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_01197CDL_002148[] = dgHoleVolvagiaSkelLimbsLimb_01197CDL_002148; -#else -static const char gHoleVolvagiaSkelLimbsLimb_01197CDL_002148[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_01197CDL_002148; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011988DL_0023C8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011988DL_0023C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011988DL_0023C8[] = dgHoleVolvagiaSkelLimbsLimb_011988DL_0023C8; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011988DL_0023C8[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011988DL_0023C8; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_011994DL_010BC8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011994DL_010BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_011994DL_010BC8[] = dgHoleVolvagiaSkelLimbsLimb_011994DL_010BC8; -#else -static const char gHoleVolvagiaSkelLimbsLimb_011994DL_010BC8[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_011994DL_010BC8; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0[] = dgHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8[] = dgHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0119C4DL_001680 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119C4DL_001680" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0119C4DL_001680[] = dgHoleVolvagiaSkelLimbsLimb_0119C4DL_001680; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0119C4DL_001680[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0119C4DL_001680; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0119D0DL_001308 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119D0DL_001308" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0119D0DL_001308[] = dgHoleVolvagiaSkelLimbsLimb_0119D0DL_001308; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0119D0DL_001308[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0119D0DL_001308; -#endif - -#define dgHoleVolvagiaSkelLimbsLimb_0119DCDL_001010 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119DCDL_001010" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoleVolvagiaSkelLimbsLimb_0119DCDL_001010[] = dgHoleVolvagiaSkelLimbsLimb_0119DCDL_001010; -#else -static const char gHoleVolvagiaSkelLimbsLimb_0119DCDL_001010[] __attribute__((aligned (2))) = dgHoleVolvagiaSkelLimbsLimb_0119DCDL_001010; -#endif - -#define dobject_fd2Tex_004BE8 "__OTR__objects/object_fd2/object_fd2Tex_004BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_004BE8[] = dobject_fd2Tex_004BE8; -#else -static const char object_fd2Tex_004BE8[] __attribute__((aligned (2))) = dobject_fd2Tex_004BE8; -#endif - -#define dobject_fd2Tex_004FA0 "__OTR__objects/object_fd2/object_fd2Tex_004FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_004FA0[] = dobject_fd2Tex_004FA0; -#else -static const char object_fd2Tex_004FA0[] __attribute__((aligned (2))) = dobject_fd2Tex_004FA0; -#endif - -#define dobject_fd2Tex_0053A0 "__OTR__objects/object_fd2/object_fd2Tex_0053A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_0053A0[] = dobject_fd2Tex_0053A0; -#else -static const char object_fd2Tex_0053A0[] __attribute__((aligned (2))) = dobject_fd2Tex_0053A0; -#endif - -#define dobject_fd2Tex_0051A0 "__OTR__objects/object_fd2/object_fd2Tex_0051A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_0051A0[] = dobject_fd2Tex_0051A0; -#else -static const char object_fd2Tex_0051A0[] __attribute__((aligned (2))) = dobject_fd2Tex_0051A0; -#endif - -#define dobject_fd2Tex_003308 "__OTR__objects/object_fd2/object_fd2Tex_003308" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_003308[] = dobject_fd2Tex_003308; -#else -static const char object_fd2Tex_003308[] __attribute__((aligned (2))) = dobject_fd2Tex_003308; -#endif - -#define dobject_fd2Tex_003B08 "__OTR__objects/object_fd2/object_fd2Tex_003B08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_003B08[] = dobject_fd2Tex_003B08; -#else -static const char object_fd2Tex_003B08[] __attribute__((aligned (2))) = dobject_fd2Tex_003B08; -#endif - -#define dobject_fd2Tex_004308 "__OTR__objects/object_fd2/object_fd2Tex_004308" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_004308[] = dobject_fd2Tex_004308; -#else -static const char object_fd2Tex_004308[] __attribute__((aligned (2))) = dobject_fd2Tex_004308; -#endif - -#define dobject_fd2Tex_004708 "__OTR__objects/object_fd2/object_fd2Tex_004708" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_004708[] = dobject_fd2Tex_004708; -#else -static const char object_fd2Tex_004708[] __attribute__((aligned (2))) = dobject_fd2Tex_004708; -#endif - -#define dobject_fd2Tex_004508 "__OTR__objects/object_fd2/object_fd2Tex_004508" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_004508[] = dobject_fd2Tex_004508; -#else -static const char object_fd2Tex_004508[] __attribute__((aligned (2))) = dobject_fd2Tex_004508; -#endif - -#define dobject_fd2Tex_004908 "__OTR__objects/object_fd2/object_fd2Tex_004908" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2Tex_004908[] = dobject_fd2Tex_004908; -#else -static const char object_fd2Tex_004908[] __attribute__((aligned (2))) = dobject_fd2Tex_004908; -#endif - -#define dobject_fd2TLUT_002508 "__OTR__objects/object_fd2/object_fd2TLUT_002508" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fd2TLUT_002508[] = dobject_fd2TLUT_002508; -#else -static const char object_fd2TLUT_002508[] __attribute__((aligned (2))) = dobject_fd2TLUT_002508; -#endif - +#include "align_asset_macro.h" + +#define dgHoleVolvagiaSkel "__OTR__objects/object_fd2/gHoleVolvagiaSkel" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkel[] = dgHoleVolvagiaSkel; + +#define dgHoleVolvagiaManeMaterialDL "__OTR__objects/object_fd2/gHoleVolvagiaManeMaterialDL" +static const ALIGN_ASSET(2) char gHoleVolvagiaManeMaterialDL[] = dgHoleVolvagiaManeMaterialDL; + +#define dgHoleVolvagiaManeModelDL "__OTR__objects/object_fd2/gHoleVolvagiaManeModelDL" +static const ALIGN_ASSET(2) char gHoleVolvagiaManeModelDL[] = dgHoleVolvagiaManeModelDL; + +#define dgHoleVolvagiaBrokenFaceDL "__OTR__objects/object_fd2/gHoleVolvagiaBrokenFaceDL" +static const ALIGN_ASSET(2) char gHoleVolvagiaBrokenFaceDL[] = dgHoleVolvagiaBrokenFaceDL; + +#define dgHoleVolvagiaBreatheFireAnim "__OTR__objects/object_fd2/gHoleVolvagiaBreatheFireAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaBreatheFireAnim[] = dgHoleVolvagiaBreatheFireAnim; + +#define dgHoleVolvagiaHitAnim "__OTR__objects/object_fd2/gHoleVolvagiaHitAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaHitAnim[] = dgHoleVolvagiaHitAnim; + +#define dgHoleVolvagiaDamagedAnim "__OTR__objects/object_fd2/gHoleVolvagiaDamagedAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaDamagedAnim[] = dgHoleVolvagiaDamagedAnim; + +#define dgHoleVolvagiaBurrowAnim "__OTR__objects/object_fd2/gHoleVolvagiaBurrowAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaBurrowAnim[] = dgHoleVolvagiaBurrowAnim; + +#define dgHoleVolvagiaKnockoutAnim "__OTR__objects/object_fd2/gHoleVolvagiaKnockoutAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaKnockoutAnim[] = dgHoleVolvagiaKnockoutAnim; + +#define dgHoleVolvagiaVulnerableAnim "__OTR__objects/object_fd2/gHoleVolvagiaVulnerableAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaVulnerableAnim[] = dgHoleVolvagiaVulnerableAnim; + +#define dgHoleVolvagiaTurnAnim "__OTR__objects/object_fd2/gHoleVolvagiaTurnAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaTurnAnim[] = dgHoleVolvagiaTurnAnim; + +#define dgHoleVolvagiaClawSwipeAnim "__OTR__objects/object_fd2/gHoleVolvagiaClawSwipeAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaClawSwipeAnim[] = dgHoleVolvagiaClawSwipeAnim; + +#define dgHoleVolvagiaEmergeAnim "__OTR__objects/object_fd2/gHoleVolvagiaEmergeAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaEmergeAnim[] = dgHoleVolvagiaEmergeAnim; + +#define dgHoleVolvagiaIdleAnim "__OTR__objects/object_fd2/gHoleVolvagiaIdleAnim" +static const ALIGN_ASSET(2) char gHoleVolvagiaIdleAnim[] = dgHoleVolvagiaIdleAnim; + +#define dgHoleVolvagiaEyeHalfTex "__OTR__objects/object_fd2/gHoleVolvagiaEyeHalfTex" +static const ALIGN_ASSET(2) char gHoleVolvagiaEyeHalfTex[] = dgHoleVolvagiaEyeHalfTex; + +#define dgHoleVolvagiaEyeOpenTex "__OTR__objects/object_fd2/gHoleVolvagiaEyeOpenTex" +static const ALIGN_ASSET(2) char gHoleVolvagiaEyeOpenTex[] = dgHoleVolvagiaEyeOpenTex; + +#define dgHoleVolvagiaEyeClosedTex "__OTR__objects/object_fd2/gHoleVolvagiaEyeClosedTex" +static const ALIGN_ASSET(2) char gHoleVolvagiaEyeClosedTex[] = dgHoleVolvagiaEyeClosedTex; + +#define dgHoleVolvagiaAnim_00CDAC "__OTR__objects/object_fd2/gHoleVolvagiaAnim_00CDAC" +static const ALIGN_ASSET(2) char gHoleVolvagiaAnim_00CDAC[] = dgHoleVolvagiaAnim_00CDAC; + +#define dgHoleVolvagiaVtx_00DD80 "__OTR__objects/object_fd2/gHoleVolvagiaVtx_00DD80" +static const ALIGN_ASSET(2) char gHoleVolvagiaVtx_00DD80[] = dgHoleVolvagiaVtx_00DD80; + +#define dgHoleVolvagiaVtx_00D000 "__OTR__objects/object_fd2/gHoleVolvagiaVtx_00D000" +static const ALIGN_ASSET(2) char gHoleVolvagiaVtx_00D000[] = dgHoleVolvagiaVtx_00D000; + +#define dgHoleVolvagiaSkelLimbsLimb_011838DL_00FF70 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011838DL_00FF70" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011838DL_00FF70[] = dgHoleVolvagiaSkelLimbsLimb_011838DL_00FF70; + +#define dgHoleVolvagiaSkelLimbsLimb_011844DL_010D40 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011844DL_010D40" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011844DL_010D40[] = dgHoleVolvagiaSkelLimbsLimb_011844DL_010D40; + +#define dgHoleVolvagiaSkelLimbsLimb_011850DL_010E98 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011850DL_010E98" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011850DL_010E98[] = dgHoleVolvagiaSkelLimbsLimb_011850DL_010E98; + +#define dgHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8[] = dgHoleVolvagiaSkelLimbsLimb_01185CDL_010FF8; + +#define dgHoleVolvagiaSkelLimbsLimb_011868DL_011160 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011868DL_011160" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011868DL_011160[] = dgHoleVolvagiaSkelLimbsLimb_011868DL_011160; + +#define dgHoleVolvagiaSkelLimbsLimb_011874DL_0112C0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011874DL_0112C0" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011874DL_0112C0[] = dgHoleVolvagiaSkelLimbsLimb_011874DL_0112C0; + +#define dgHoleVolvagiaSkelLimbsLimb_011880DL_011410 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011880DL_011410" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011880DL_011410[] = dgHoleVolvagiaSkelLimbsLimb_011880DL_011410; + +#define dgHoleVolvagiaSkelLimbsLimb_01188CDL_011560 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01188CDL_011560" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_01188CDL_011560[] = dgHoleVolvagiaSkelLimbsLimb_01188CDL_011560; + +#define dgHoleVolvagiaSkelLimbsLimb_011898DL_0116B8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011898DL_0116B8" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011898DL_0116B8[] = dgHoleVolvagiaSkelLimbsLimb_011898DL_0116B8; + +#define dgHoleVolvagiaSkelLimbsLimb_0118A4DL_010070 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118A4DL_010070" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0118A4DL_010070[] = dgHoleVolvagiaSkelLimbsLimb_0118A4DL_010070; + +#define dgHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0[] = dgHoleVolvagiaSkelLimbsLimb_0118B0DL_0101D0; + +#define dgHoleVolvagiaSkelLimbsLimb_0118BCDL_010330 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118BCDL_010330" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0118BCDL_010330[] = dgHoleVolvagiaSkelLimbsLimb_0118BCDL_010330; + +#define dgHoleVolvagiaSkelLimbsLimb_0118C8DL_010490 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118C8DL_010490" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0118C8DL_010490[] = dgHoleVolvagiaSkelLimbsLimb_0118C8DL_010490; + +#define dgHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8[] = dgHoleVolvagiaSkelLimbsLimb_0118D4DL_0105F8; + +#define dgHoleVolvagiaSkelLimbsLimb_0118E0DL_010758 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118E0DL_010758" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0118E0DL_010758[] = dgHoleVolvagiaSkelLimbsLimb_0118E0DL_010758; + +#define dgHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0[] = dgHoleVolvagiaSkelLimbsLimb_0118ECDL_0108B0; + +#define dgHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10[] = dgHoleVolvagiaSkelLimbsLimb_0118F8DL_010A10; + +#define dgHoleVolvagiaSkelLimbsLimb_011904DL_001748 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011904DL_001748" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011904DL_001748[] = dgHoleVolvagiaSkelLimbsLimb_011904DL_001748; + +#define dgHoleVolvagiaSkelLimbsLimb_011910DL_0018D8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011910DL_0018D8" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011910DL_0018D8[] = dgHoleVolvagiaSkelLimbsLimb_011910DL_0018D8; + +#define dgHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0[] = dgHoleVolvagiaSkelLimbsLimb_01191CDL_0019D0; + +#define dgHoleVolvagiaSkelLimbsLimb_011928DL_001AB0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011928DL_001AB0" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011928DL_001AB0[] = dgHoleVolvagiaSkelLimbsLimb_011928DL_001AB0; + +#define dgHoleVolvagiaSkelLimbsLimb_011934DL_001D30 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011934DL_001D30" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011934DL_001D30[] = dgHoleVolvagiaSkelLimbsLimb_011934DL_001D30; + +#define dgHoleVolvagiaSkelLimbsLimb_011940DL_001BF0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011940DL_001BF0" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011940DL_001BF0[] = dgHoleVolvagiaSkelLimbsLimb_011940DL_001BF0; + +#define dgHoleVolvagiaSkelLimbsLimb_01194CDL_001E70 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01194CDL_001E70" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_01194CDL_001E70[] = dgHoleVolvagiaSkelLimbsLimb_01194CDL_001E70; + +#define dgHoleVolvagiaSkelLimbsLimb_011958DL_001F70 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011958DL_001F70" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011958DL_001F70[] = dgHoleVolvagiaSkelLimbsLimb_011958DL_001F70; + +#define dgHoleVolvagiaSkelLimbsLimb_011964DL_002068 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011964DL_002068" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011964DL_002068[] = dgHoleVolvagiaSkelLimbsLimb_011964DL_002068; + +#define dgHoleVolvagiaSkelLimbsLimb_011970DL_002288 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011970DL_002288" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011970DL_002288[] = dgHoleVolvagiaSkelLimbsLimb_011970DL_002288; + +#define dgHoleVolvagiaSkelLimbsLimb_01197CDL_002148 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_01197CDL_002148" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_01197CDL_002148[] = dgHoleVolvagiaSkelLimbsLimb_01197CDL_002148; + +#define dgHoleVolvagiaSkelLimbsLimb_011988DL_0023C8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011988DL_0023C8" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011988DL_0023C8[] = dgHoleVolvagiaSkelLimbsLimb_011988DL_0023C8; + +#define dgHoleVolvagiaSkelLimbsLimb_011994DL_010BC8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_011994DL_010BC8" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_011994DL_010BC8[] = dgHoleVolvagiaSkelLimbsLimb_011994DL_010BC8; + +#define dgHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0[] = dgHoleVolvagiaSkelLimbsLimb_0119ACDL_0013E0; + +#define dgHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8[] = dgHoleVolvagiaSkelLimbsLimb_0119B8DL_0015B8; + +#define dgHoleVolvagiaSkelLimbsLimb_0119C4DL_001680 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119C4DL_001680" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0119C4DL_001680[] = dgHoleVolvagiaSkelLimbsLimb_0119C4DL_001680; + +#define dgHoleVolvagiaSkelLimbsLimb_0119D0DL_001308 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119D0DL_001308" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0119D0DL_001308[] = dgHoleVolvagiaSkelLimbsLimb_0119D0DL_001308; + +#define dgHoleVolvagiaSkelLimbsLimb_0119DCDL_001010 "__OTR__objects/object_fd2/gHoleVolvagiaSkelLimbsLimb_0119DCDL_001010" +static const ALIGN_ASSET(2) char gHoleVolvagiaSkelLimbsLimb_0119DCDL_001010[] = dgHoleVolvagiaSkelLimbsLimb_0119DCDL_001010; + +#define dobject_fd2Tex_004BE8 "__OTR__objects/object_fd2/object_fd2Tex_004BE8" +static const ALIGN_ASSET(2) char object_fd2Tex_004BE8[] = dobject_fd2Tex_004BE8; + +#define dobject_fd2Tex_004FA0 "__OTR__objects/object_fd2/object_fd2Tex_004FA0" +static const ALIGN_ASSET(2) char object_fd2Tex_004FA0[] = dobject_fd2Tex_004FA0; + +#define dobject_fd2Tex_0053A0 "__OTR__objects/object_fd2/object_fd2Tex_0053A0" +static const ALIGN_ASSET(2) char object_fd2Tex_0053A0[] = dobject_fd2Tex_0053A0; + +#define dobject_fd2Tex_0051A0 "__OTR__objects/object_fd2/object_fd2Tex_0051A0" +static const ALIGN_ASSET(2) char object_fd2Tex_0051A0[] = dobject_fd2Tex_0051A0; + +#define dobject_fd2Tex_003308 "__OTR__objects/object_fd2/object_fd2Tex_003308" +static const ALIGN_ASSET(2) char object_fd2Tex_003308[] = dobject_fd2Tex_003308; + +#define dobject_fd2Tex_003B08 "__OTR__objects/object_fd2/object_fd2Tex_003B08" +static const ALIGN_ASSET(2) char object_fd2Tex_003B08[] = dobject_fd2Tex_003B08; + +#define dobject_fd2Tex_004308 "__OTR__objects/object_fd2/object_fd2Tex_004308" +static const ALIGN_ASSET(2) char object_fd2Tex_004308[] = dobject_fd2Tex_004308; + +#define dobject_fd2Tex_004708 "__OTR__objects/object_fd2/object_fd2Tex_004708" +static const ALIGN_ASSET(2) char object_fd2Tex_004708[] = dobject_fd2Tex_004708; + +#define dobject_fd2Tex_004508 "__OTR__objects/object_fd2/object_fd2Tex_004508" +static const ALIGN_ASSET(2) char object_fd2Tex_004508[] = dobject_fd2Tex_004508; + +#define dobject_fd2Tex_004908 "__OTR__objects/object_fd2/object_fd2Tex_004908" +static const ALIGN_ASSET(2) char object_fd2Tex_004908[] = dobject_fd2Tex_004908; + +#define dobject_fd2TLUT_002508 "__OTR__objects/object_fd2/object_fd2TLUT_002508" +static const ALIGN_ASSET(2) char object_fd2TLUT_002508[] = dobject_fd2TLUT_002508; \ No newline at end of file diff --git a/soh/assets/objects/object_fhg/object_fhg.h b/soh/assets/objects/object_fhg/object_fhg.h index c3e51ed55..eb99b5a3d 100644 --- a/soh/assets/objects/object_fhg/object_fhg.h +++ b/soh/assets/objects/object_fhg/object_fhg.h @@ -1,381 +1,167 @@ #pragma once -#define dgPhantomHorseSkel "__OTR__objects/object_fhg/gPhantomHorseSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkel[] = dgPhantomHorseSkel; -#else -static const char gPhantomHorseSkel[] __attribute__((aligned (2))) = dgPhantomHorseSkel; -#endif - -#define dgPhantomHorseRunningAnim "__OTR__objects/object_fhg/gPhantomHorseRunningAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseRunningAnim[] = dgPhantomHorseRunningAnim; -#else -static const char gPhantomHorseRunningAnim[] __attribute__((aligned (2))) = dgPhantomHorseRunningAnim; -#endif - -#define dgPhantomHorseAirAnim "__OTR__objects/object_fhg/gPhantomHorseAirAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseAirAnim[] = dgPhantomHorseAirAnim; -#else -static const char gPhantomHorseAirAnim[] __attribute__((aligned (2))) = dgPhantomHorseAirAnim; -#endif - -#define dgPhantomHorseLeapAnim "__OTR__objects/object_fhg/gPhantomHorseLeapAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseLeapAnim[] = dgPhantomHorseLeapAnim; -#else -static const char gPhantomHorseLeapAnim[] __attribute__((aligned (2))) = dgPhantomHorseLeapAnim; -#endif - -#define dgPhantomHorseLandAnim "__OTR__objects/object_fhg/gPhantomHorseLandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseLandAnim[] = dgPhantomHorseLandAnim; -#else -static const char gPhantomHorseLandAnim[] __attribute__((aligned (2))) = dgPhantomHorseLandAnim; -#endif - -#define dgPhantomHorseRearingAnim "__OTR__objects/object_fhg/gPhantomHorseRearingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseRearingAnim[] = dgPhantomHorseRearingAnim; -#else -static const char gPhantomHorseRearingAnim[] __attribute__((aligned (2))) = dgPhantomHorseRearingAnim; -#endif - -#define dgPhantomHorseIdleAnim "__OTR__objects/object_fhg/gPhantomHorseIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseIdleAnim[] = dgPhantomHorseIdleAnim; -#else -static const char gPhantomHorseIdleAnim[] __attribute__((aligned (2))) = dgPhantomHorseIdleAnim; -#endif - -#define dgPhantomHorseUnusedRearingAnim "__OTR__objects/object_fhg/gPhantomHorseUnusedRearingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseUnusedRearingAnim[] = dgPhantomHorseUnusedRearingAnim; -#else -static const char gPhantomHorseUnusedRearingAnim[] __attribute__((aligned (2))) = dgPhantomHorseUnusedRearingAnim; -#endif - -#define dgPhantomHorseStillAnim "__OTR__objects/object_fhg/gPhantomHorseStillAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseStillAnim[] = dgPhantomHorseStillAnim; -#else -static const char gPhantomHorseStillAnim[] __attribute__((aligned (2))) = dgPhantomHorseStillAnim; -#endif - -#define dgPhantomHorseFenceJumpAnim "__OTR__objects/object_fhg/gPhantomHorseFenceJumpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseFenceJumpAnim[] = dgPhantomHorseFenceJumpAnim; -#else -static const char gPhantomHorseFenceJumpAnim[] __attribute__((aligned (2))) = dgPhantomHorseFenceJumpAnim; -#endif - -#define dgPhantomGanonTitleCardTex "__OTR__objects/object_fhg/gPhantomGanonTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonTitleCardTex[] = dgPhantomGanonTitleCardTex; -#else -static const char gPhantomGanonTitleCardTex[] __attribute__((aligned (2))) = dgPhantomGanonTitleCardTex; -#endif - -#define dgPhantomWarpDL "__OTR__objects/object_fhg/gPhantomWarpDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomWarpDL[] = dgPhantomWarpDL; -#else -static const char gPhantomWarpDL[] __attribute__((aligned (2))) = dgPhantomWarpDL; -#endif - -#define dgPhantomLightningBlastDL "__OTR__objects/object_fhg/gPhantomLightningBlastDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomLightningBlastDL[] = dgPhantomLightningBlastDL; -#else -static const char gPhantomLightningBlastDL[] __attribute__((aligned (2))) = dgPhantomLightningBlastDL; -#endif - -#define dgPhantomLightningDL "__OTR__objects/object_fhg/gPhantomLightningDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomLightningDL[] = dgPhantomLightningDL; -#else -static const char gPhantomLightningDL[] __attribute__((aligned (2))) = dgPhantomLightningDL; -#endif - -#define dgPhantomEnergyBallDL "__OTR__objects/object_fhg/gPhantomEnergyBallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomEnergyBallDL[] = dgPhantomEnergyBallDL; -#else -static const char gPhantomEnergyBallDL[] __attribute__((aligned (2))) = dgPhantomEnergyBallDL; -#endif - -#define dgPhantomUnkDL_FCA0 "__OTR__objects/object_fhg/gPhantomUnkDL_FCA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomUnkDL_FCA0[] = dgPhantomUnkDL_FCA0; -#else -static const char gPhantomUnkDL_FCA0[] __attribute__((aligned (2))) = dgPhantomUnkDL_FCA0; -#endif - -#define dgPhantomUnkDL_10CA0 "__OTR__objects/object_fhg/gPhantomUnkDL_10CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomUnkDL_10CA0[] = dgPhantomUnkDL_10CA0; -#else -static const char gPhantomUnkDL_10CA0[] __attribute__((aligned (2))) = dgPhantomUnkDL_10CA0; -#endif - -#define dobject_fhgTex_00D060 "__OTR__objects/object_fhg/object_fhgTex_00D060" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_00D060[] = dobject_fhgTex_00D060; -#else -static const char object_fhgTex_00D060[] __attribute__((aligned (2))) = dobject_fhgTex_00D060; -#endif - -#define dobject_fhgTex_00D040 "__OTR__objects/object_fhg/object_fhgTex_00D040" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_00D040[] = dobject_fhgTex_00D040; -#else -static const char object_fhgTex_00D040[] __attribute__((aligned (2))) = dobject_fhgTex_00D040; -#endif - -#define dobject_fhgTex_004CA0 "__OTR__objects/object_fhg/object_fhgTex_004CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_004CA0[] = dobject_fhgTex_004CA0; -#else -static const char object_fhgTex_004CA0[] __attribute__((aligned (2))) = dobject_fhgTex_004CA0; -#endif - -#define dobject_fhgTex_003DA0 "__OTR__objects/object_fhg/object_fhgTex_003DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_003DA0[] = dobject_fhgTex_003DA0; -#else -static const char object_fhgTex_003DA0[] __attribute__((aligned (2))) = dobject_fhgTex_003DA0; -#endif - -#define dobject_fhgTex_003720 "__OTR__objects/object_fhg/object_fhgTex_003720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_003720[] = dobject_fhgTex_003720; -#else -static const char object_fhgTex_003720[] __attribute__((aligned (2))) = dobject_fhgTex_003720; -#endif - -#define dobject_fhgTex_003520 "__OTR__objects/object_fhg/object_fhgTex_003520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_003520[] = dobject_fhgTex_003520; -#else -static const char object_fhgTex_003520[] __attribute__((aligned (2))) = dobject_fhgTex_003520; -#endif - -#define dobject_fhgTex_003320 "__OTR__objects/object_fhg/object_fhgTex_003320" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_003320[] = dobject_fhgTex_003320; -#else -static const char object_fhgTex_003320[] __attribute__((aligned (2))) = dobject_fhgTex_003320; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30[] = dgPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30; -#else -static const char gPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AD44DL_002098 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AD44DL_002098" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AD44DL_002098[] = dgPhantomHorseSkelLimbsLimb_00AD44DL_002098; -#else -static const char gPhantomHorseSkelLimbsLimb_00AD44DL_002098[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AD44DL_002098; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AD54DL_001F50 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AD54DL_001F50" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AD54DL_001F50[] = dgPhantomHorseSkelLimbsLimb_00AD54DL_001F50; -#else -static const char gPhantomHorseSkelLimbsLimb_00AD54DL_001F50[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AD54DL_001F50; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00ADC4DL_002710 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ADC4DL_002710" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00ADC4DL_002710[] = dgPhantomHorseSkelLimbsLimb_00ADC4DL_002710; -#else -static const char gPhantomHorseSkelLimbsLimb_00ADC4DL_002710[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00ADC4DL_002710; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0[] = dgPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0; -#else -static const char gPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00ADE4DL_002438 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ADE4DL_002438" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00ADE4DL_002438[] = dgPhantomHorseSkelLimbsLimb_00ADE4DL_002438; -#else -static const char gPhantomHorseSkelLimbsLimb_00ADE4DL_002438[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00ADE4DL_002438; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00ADF4DL_002510 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ADF4DL_002510" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00ADF4DL_002510[] = dgPhantomHorseSkelLimbsLimb_00ADF4DL_002510; -#else -static const char gPhantomHorseSkelLimbsLimb_00ADF4DL_002510[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00ADF4DL_002510; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AE64DL_002F98 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AE64DL_002F98" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AE64DL_002F98[] = dgPhantomHorseSkelLimbsLimb_00AE64DL_002F98; -#else -static const char gPhantomHorseSkelLimbsLimb_00AE64DL_002F98[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AE64DL_002F98; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AE74DL_002EE8 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AE74DL_002EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AE74DL_002EE8[] = dgPhantomHorseSkelLimbsLimb_00AE74DL_002EE8; -#else -static const char gPhantomHorseSkelLimbsLimb_00AE74DL_002EE8[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AE74DL_002EE8; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AE84DL_003098 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AE84DL_003098" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AE84DL_003098[] = dgPhantomHorseSkelLimbsLimb_00AE84DL_003098; -#else -static const char gPhantomHorseSkelLimbsLimb_00AE84DL_003098[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AE84DL_003098; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AE94DL_002DE8 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AE94DL_002DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AE94DL_002DE8[] = dgPhantomHorseSkelLimbsLimb_00AE94DL_002DE8; -#else -static const char gPhantomHorseSkelLimbsLimb_00AE94DL_002DE8[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AE94DL_002DE8; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AEA4DL_002970 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AEA4DL_002970" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AEA4DL_002970[] = dgPhantomHorseSkelLimbsLimb_00AEA4DL_002970; -#else -static const char gPhantomHorseSkelLimbsLimb_00AEA4DL_002970[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AEA4DL_002970; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AEB4DL_002C48 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AEB4DL_002C48" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AEB4DL_002C48[] = dgPhantomHorseSkelLimbsLimb_00AEB4DL_002C48; -#else -static const char gPhantomHorseSkelLimbsLimb_00AEB4DL_002C48[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AEB4DL_002C48; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AF24DL_002610 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AF24DL_002610" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AF24DL_002610[] = dgPhantomHorseSkelLimbsLimb_00AF24DL_002610; -#else -static const char gPhantomHorseSkelLimbsLimb_00AF24DL_002610[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AF24DL_002610; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AF34DL_002810 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AF34DL_002810" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AF34DL_002810[] = dgPhantomHorseSkelLimbsLimb_00AF34DL_002810; -#else -static const char gPhantomHorseSkelLimbsLimb_00AF34DL_002810[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AF34DL_002810; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AFA4DL_003220 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AFA4DL_003220" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AFA4DL_003220[] = dgPhantomHorseSkelLimbsLimb_00AFA4DL_003220; -#else -static const char gPhantomHorseSkelLimbsLimb_00AFA4DL_003220[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AFA4DL_003220; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00AFB4DL_003170 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AFB4DL_003170" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomHorseSkelLimbsLimb_00AFB4DL_003170[] = dgPhantomHorseSkelLimbsLimb_00AFB4DL_003170; -#else -static const char gPhantomHorseSkelLimbsLimb_00AFB4DL_003170[] __attribute__((aligned (2))) = dgPhantomHorseSkelLimbsLimb_00AFB4DL_003170; -#endif - -#define dobject_fhgTex_00E8B0 "__OTR__objects/object_fhg/object_fhgTex_00E8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_00E8B0[] = dobject_fhgTex_00E8B0; -#else -static const char object_fhgTex_00E8B0[] __attribute__((aligned (2))) = dobject_fhgTex_00E8B0; -#endif - -#define dobject_fhgTex_00F0B0 "__OTR__objects/object_fhg/object_fhgTex_00F0B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_00F0B0[] = dobject_fhgTex_00F0B0; -#else -static const char object_fhgTex_00F0B0[] __attribute__((aligned (2))) = dobject_fhgTex_00F0B0; -#endif - -#define dobject_fhgTex_00FD98 "__OTR__objects/object_fhg/object_fhgTex_00FD98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_00FD98[] = dobject_fhgTex_00FD98; -#else -static const char object_fhgTex_00FD98[] __attribute__((aligned (2))) = dobject_fhgTex_00FD98; -#endif - -#define dobject_fhgTex_010660 "__OTR__objects/object_fhg/object_fhgTex_010660" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_010660[] = dobject_fhgTex_010660; -#else -static const char object_fhgTex_010660[] __attribute__((aligned (2))) = dobject_fhgTex_010660; -#endif - -#define dobject_fhgTex_011120 "__OTR__objects/object_fhg/object_fhgTex_011120" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_011120[] = dobject_fhgTex_011120; -#else -static const char object_fhgTex_011120[] __attribute__((aligned (2))) = dobject_fhgTex_011120; -#endif - -#define dobject_fhgTex_010D20 "__OTR__objects/object_fhg/object_fhgTex_010D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_010D20[] = dobject_fhgTex_010D20; -#else -static const char object_fhgTex_010D20[] __attribute__((aligned (2))) = dobject_fhgTex_010D20; -#endif - -#define dgPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30" -#define dobject_fhgTex_003BA0 "__OTR__objects/object_fhg/object_fhgTex_003BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_003BA0[] = dobject_fhgTex_003BA0; -#else -static const char object_fhgTex_003BA0[] __attribute__((aligned (2))) = dobject_fhgTex_003BA0; -#endif - -#define dobject_fhgTex_0043A0 "__OTR__objects/object_fhg/object_fhgTex_0043A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_0043A0[] = dobject_fhgTex_0043A0; -#else -static const char object_fhgTex_0043A0[] __attribute__((aligned (2))) = dobject_fhgTex_0043A0; -#endif - -#define dobject_fhgTex_003FA0 "__OTR__objects/object_fhg/object_fhgTex_003FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_003FA0[] = dobject_fhgTex_003FA0; -#else -static const char object_fhgTex_003FA0[] __attribute__((aligned (2))) = dobject_fhgTex_003FA0; -#endif - -#define dobject_fhgTex_004DA0 "__OTR__objects/object_fhg/object_fhgTex_004DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_004DA0[] = dobject_fhgTex_004DA0; -#else -static const char object_fhgTex_004DA0[] __attribute__((aligned (2))) = dobject_fhgTex_004DA0; -#endif - -#define dobject_fhgTex_003920 "__OTR__objects/object_fhg/object_fhgTex_003920" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_003920[] = dobject_fhgTex_003920; -#else -static const char object_fhgTex_003920[] __attribute__((aligned (2))) = dobject_fhgTex_003920; -#endif - -#define dobject_fhgTex_0044A0 "__OTR__objects/object_fhg/object_fhgTex_0044A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_0044A0[] = dobject_fhgTex_0044A0; -#else -static const char object_fhgTex_0044A0[] __attribute__((aligned (2))) = dobject_fhgTex_0044A0; -#endif - -#define dobject_fhgTex_003B20 "__OTR__objects/object_fhg/object_fhgTex_003B20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fhgTex_003B20[] = dobject_fhgTex_003B20; -#else -static const char object_fhgTex_003B20[] __attribute__((aligned (2))) = dobject_fhgTex_003B20; -#endif - +#include "align_asset_macro.h" + +#define dgPhantomHorseSkel "__OTR__objects/object_fhg/gPhantomHorseSkel" +static const ALIGN_ASSET(2) char gPhantomHorseSkel[] = dgPhantomHorseSkel; + +#define dgPhantomHorseRunningAnim "__OTR__objects/object_fhg/gPhantomHorseRunningAnim" +static const ALIGN_ASSET(2) char gPhantomHorseRunningAnim[] = dgPhantomHorseRunningAnim; + +#define dgPhantomHorseAirAnim "__OTR__objects/object_fhg/gPhantomHorseAirAnim" +static const ALIGN_ASSET(2) char gPhantomHorseAirAnim[] = dgPhantomHorseAirAnim; + +#define dgPhantomHorseLeapAnim "__OTR__objects/object_fhg/gPhantomHorseLeapAnim" +static const ALIGN_ASSET(2) char gPhantomHorseLeapAnim[] = dgPhantomHorseLeapAnim; + +#define dgPhantomHorseLandAnim "__OTR__objects/object_fhg/gPhantomHorseLandAnim" +static const ALIGN_ASSET(2) char gPhantomHorseLandAnim[] = dgPhantomHorseLandAnim; + +#define dgPhantomHorseRearingAnim "__OTR__objects/object_fhg/gPhantomHorseRearingAnim" +static const ALIGN_ASSET(2) char gPhantomHorseRearingAnim[] = dgPhantomHorseRearingAnim; + +#define dgPhantomHorseIdleAnim "__OTR__objects/object_fhg/gPhantomHorseIdleAnim" +static const ALIGN_ASSET(2) char gPhantomHorseIdleAnim[] = dgPhantomHorseIdleAnim; + +#define dgPhantomHorseUnusedRearingAnim "__OTR__objects/object_fhg/gPhantomHorseUnusedRearingAnim" +static const ALIGN_ASSET(2) char gPhantomHorseUnusedRearingAnim[] = dgPhantomHorseUnusedRearingAnim; + +#define dgPhantomHorseStillAnim "__OTR__objects/object_fhg/gPhantomHorseStillAnim" +static const ALIGN_ASSET(2) char gPhantomHorseStillAnim[] = dgPhantomHorseStillAnim; + +#define dgPhantomHorseFenceJumpAnim "__OTR__objects/object_fhg/gPhantomHorseFenceJumpAnim" +static const ALIGN_ASSET(2) char gPhantomHorseFenceJumpAnim[] = dgPhantomHorseFenceJumpAnim; + +#define dgPhantomGanonTitleCardTex "__OTR__objects/object_fhg/gPhantomGanonTitleCardTex" +static const ALIGN_ASSET(2) char gPhantomGanonTitleCardTex[] = dgPhantomGanonTitleCardTex; + +#define dgPhantomWarpDL "__OTR__objects/object_fhg/gPhantomWarpDL" +static const ALIGN_ASSET(2) char gPhantomWarpDL[] = dgPhantomWarpDL; + +#define dgPhantomLightningBlastDL "__OTR__objects/object_fhg/gPhantomLightningBlastDL" +static const ALIGN_ASSET(2) char gPhantomLightningBlastDL[] = dgPhantomLightningBlastDL; + +#define dgPhantomLightningDL "__OTR__objects/object_fhg/gPhantomLightningDL" +static const ALIGN_ASSET(2) char gPhantomLightningDL[] = dgPhantomLightningDL; + +#define dgPhantomEnergyBallDL "__OTR__objects/object_fhg/gPhantomEnergyBallDL" +static const ALIGN_ASSET(2) char gPhantomEnergyBallDL[] = dgPhantomEnergyBallDL; + +#define dgPhantomUnkDL_FCA0 "__OTR__objects/object_fhg/gPhantomUnkDL_FCA0" +static const ALIGN_ASSET(2) char gPhantomUnkDL_FCA0[] = dgPhantomUnkDL_FCA0; + +#define dgPhantomUnkDL_10CA0 "__OTR__objects/object_fhg/gPhantomUnkDL_10CA0" +static const ALIGN_ASSET(2) char gPhantomUnkDL_10CA0[] = dgPhantomUnkDL_10CA0; + +#define dobject_fhgTex_00D060 "__OTR__objects/object_fhg/object_fhgTex_00D060" +static const ALIGN_ASSET(2) char object_fhgTex_00D060[] = dobject_fhgTex_00D060; + +#define dobject_fhgTex_00D040 "__OTR__objects/object_fhg/object_fhgTex_00D040" +static const ALIGN_ASSET(2) char object_fhgTex_00D040[] = dobject_fhgTex_00D040; + +#define dobject_fhgTex_004CA0 "__OTR__objects/object_fhg/object_fhgTex_004CA0" +static const ALIGN_ASSET(2) char object_fhgTex_004CA0[] = dobject_fhgTex_004CA0; + +#define dobject_fhgTex_003DA0 "__OTR__objects/object_fhg/object_fhgTex_003DA0" +static const ALIGN_ASSET(2) char object_fhgTex_003DA0[] = dobject_fhgTex_003DA0; + +#define dobject_fhgTex_003720 "__OTR__objects/object_fhg/object_fhgTex_003720" +static const ALIGN_ASSET(2) char object_fhgTex_003720[] = dobject_fhgTex_003720; + +#define dobject_fhgTex_003520 "__OTR__objects/object_fhg/object_fhgTex_003520" +static const ALIGN_ASSET(2) char object_fhgTex_003520[] = dobject_fhgTex_003520; + +#define dobject_fhgTex_003320 "__OTR__objects/object_fhg/object_fhgTex_003320" +static const ALIGN_ASSET(2) char object_fhgTex_003320[] = dobject_fhgTex_003320; + +#define dgPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30[] = dgPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30; + +#define dgPhantomHorseSkelLimbsLimb_00AD44DL_002098 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AD44DL_002098" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AD44DL_002098[] = dgPhantomHorseSkelLimbsLimb_00AD44DL_002098; + +#define dgPhantomHorseSkelLimbsLimb_00AD54DL_001F50 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AD54DL_001F50" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AD54DL_001F50[] = dgPhantomHorseSkelLimbsLimb_00AD54DL_001F50; + +#define dgPhantomHorseSkelLimbsLimb_00ADC4DL_002710 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ADC4DL_002710" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00ADC4DL_002710[] = dgPhantomHorseSkelLimbsLimb_00ADC4DL_002710; + +#define dgPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0[] = dgPhantomHorseSkelLimbsLimb_00ADD4DL_0028C0; + +#define dgPhantomHorseSkelLimbsLimb_00ADE4DL_002438 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ADE4DL_002438" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00ADE4DL_002438[] = dgPhantomHorseSkelLimbsLimb_00ADE4DL_002438; + +#define dgPhantomHorseSkelLimbsLimb_00ADF4DL_002510 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ADF4DL_002510" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00ADF4DL_002510[] = dgPhantomHorseSkelLimbsLimb_00ADF4DL_002510; + +#define dgPhantomHorseSkelLimbsLimb_00AE64DL_002F98 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AE64DL_002F98" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AE64DL_002F98[] = dgPhantomHorseSkelLimbsLimb_00AE64DL_002F98; + +#define dgPhantomHorseSkelLimbsLimb_00AE74DL_002EE8 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AE74DL_002EE8" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AE74DL_002EE8[] = dgPhantomHorseSkelLimbsLimb_00AE74DL_002EE8; + +#define dgPhantomHorseSkelLimbsLimb_00AE84DL_003098 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AE84DL_003098" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AE84DL_003098[] = dgPhantomHorseSkelLimbsLimb_00AE84DL_003098; + +#define dgPhantomHorseSkelLimbsLimb_00AE94DL_002DE8 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AE94DL_002DE8" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AE94DL_002DE8[] = dgPhantomHorseSkelLimbsLimb_00AE94DL_002DE8; + +#define dgPhantomHorseSkelLimbsLimb_00AEA4DL_002970 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AEA4DL_002970" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AEA4DL_002970[] = dgPhantomHorseSkelLimbsLimb_00AEA4DL_002970; + +#define dgPhantomHorseSkelLimbsLimb_00AEB4DL_002C48 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AEB4DL_002C48" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AEB4DL_002C48[] = dgPhantomHorseSkelLimbsLimb_00AEB4DL_002C48; + +#define dgPhantomHorseSkelLimbsLimb_00AF24DL_002610 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AF24DL_002610" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AF24DL_002610[] = dgPhantomHorseSkelLimbsLimb_00AF24DL_002610; + +#define dgPhantomHorseSkelLimbsLimb_00AF34DL_002810 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AF34DL_002810" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AF34DL_002810[] = dgPhantomHorseSkelLimbsLimb_00AF34DL_002810; + +#define dgPhantomHorseSkelLimbsLimb_00AFA4DL_003220 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AFA4DL_003220" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AFA4DL_003220[] = dgPhantomHorseSkelLimbsLimb_00AFA4DL_003220; + +#define dgPhantomHorseSkelLimbsLimb_00AFB4DL_003170 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00AFB4DL_003170" +static const ALIGN_ASSET(2) char gPhantomHorseSkelLimbsLimb_00AFB4DL_003170[] = dgPhantomHorseSkelLimbsLimb_00AFB4DL_003170; + +#define dobject_fhgTex_00E8B0 "__OTR__objects/object_fhg/object_fhgTex_00E8B0" +static const ALIGN_ASSET(2) char object_fhgTex_00E8B0[] = dobject_fhgTex_00E8B0; + +#define dobject_fhgTex_00F0B0 "__OTR__objects/object_fhg/object_fhgTex_00F0B0" +static const ALIGN_ASSET(2) char object_fhgTex_00F0B0[] = dobject_fhgTex_00F0B0; + +#define dobject_fhgTex_00FD98 "__OTR__objects/object_fhg/object_fhgTex_00FD98" +static const ALIGN_ASSET(2) char object_fhgTex_00FD98[] = dobject_fhgTex_00FD98; + +#define dobject_fhgTex_010660 "__OTR__objects/object_fhg/object_fhgTex_010660" +static const ALIGN_ASSET(2) char object_fhgTex_010660[] = dobject_fhgTex_010660; + +#define dobject_fhgTex_011120 "__OTR__objects/object_fhg/object_fhgTex_011120" +static const ALIGN_ASSET(2) char object_fhgTex_011120[] = dobject_fhgTex_011120; + +#define dobject_fhgTex_010D20 "__OTR__objects/object_fhg/object_fhgTex_010D20" +static const ALIGN_ASSET(2) char object_fhgTex_010D20[] = dobject_fhgTex_010D20; + +#define dgPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30 "__OTR__objects/object_fhg/gPhantomHorseSkelLimbsLimb_00ACC4SkinLimbDL_00CB30" + +#define dobject_fhgTex_003BA0 "__OTR__objects/object_fhg/object_fhgTex_003BA0" +static const ALIGN_ASSET(2) char object_fhgTex_003BA0[] = dobject_fhgTex_003BA0; + +#define dobject_fhgTex_0043A0 "__OTR__objects/object_fhg/object_fhgTex_0043A0" +static const ALIGN_ASSET(2) char object_fhgTex_0043A0[] = dobject_fhgTex_0043A0; + +#define dobject_fhgTex_003FA0 "__OTR__objects/object_fhg/object_fhgTex_003FA0" +static const ALIGN_ASSET(2) char object_fhgTex_003FA0[] = dobject_fhgTex_003FA0; + +#define dobject_fhgTex_004DA0 "__OTR__objects/object_fhg/object_fhgTex_004DA0" +static const ALIGN_ASSET(2) char object_fhgTex_004DA0[] = dobject_fhgTex_004DA0; + +#define dobject_fhgTex_003920 "__OTR__objects/object_fhg/object_fhgTex_003920" +static const ALIGN_ASSET(2) char object_fhgTex_003920[] = dobject_fhgTex_003920; + +#define dobject_fhgTex_0044A0 "__OTR__objects/object_fhg/object_fhgTex_0044A0" +static const ALIGN_ASSET(2) char object_fhgTex_0044A0[] = dobject_fhgTex_0044A0; + +#define dobject_fhgTex_003B20 "__OTR__objects/object_fhg/object_fhgTex_003B20" +static const ALIGN_ASSET(2) char object_fhgTex_003B20[] = dobject_fhgTex_003B20; \ No newline at end of file diff --git a/soh/assets/objects/object_fire/object_fire.h b/soh/assets/objects/object_fire/object_fire.h index 70d680a2d..679715c2f 100644 --- a/soh/assets/objects/object_fire/object_fire.h +++ b/soh/assets/objects/object_fire/object_fire.h @@ -1,65 +1,30 @@ #pragma once -#define dgFireDL "__OTR__objects/object_fire/gFireDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireDL[] = dgFireDL; -#else -static const char gFireDL[] __attribute__((aligned (2))) = dgFireDL; -#endif - -#define dgFire0Tex "__OTR__objects/object_fire/gFire0Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFire0Tex[] = dgFire0Tex; -#else -static const char gFire0Tex[] __attribute__((aligned (2))) = dgFire0Tex; -#endif - -#define dgFire1Tex "__OTR__objects/object_fire/gFire1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFire1Tex[] = dgFire1Tex; -#else -static const char gFire1Tex[] __attribute__((aligned (2))) = dgFire1Tex; -#endif - -#define dgFire2Tex "__OTR__objects/object_fire/gFire2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFire2Tex[] = dgFire2Tex; -#else -static const char gFire2Tex[] __attribute__((aligned (2))) = dgFire2Tex; -#endif - -#define dgFire3Tex "__OTR__objects/object_fire/gFire3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFire3Tex[] = dgFire3Tex; -#else -static const char gFire3Tex[] __attribute__((aligned (2))) = dgFire3Tex; -#endif - -#define dgFire4Tex "__OTR__objects/object_fire/gFire4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFire4Tex[] = dgFire4Tex; -#else -static const char gFire4Tex[] __attribute__((aligned (2))) = dgFire4Tex; -#endif - -#define dgFire5Tex "__OTR__objects/object_fire/gFire5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFire5Tex[] = dgFire5Tex; -#else -static const char gFire5Tex[] __attribute__((aligned (2))) = dgFire5Tex; -#endif - -#define dgFire6Tex "__OTR__objects/object_fire/gFire6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFire6Tex[] = dgFire6Tex; -#else -static const char gFire6Tex[] __attribute__((aligned (2))) = dgFire6Tex; -#endif - -#define dgFire7Tex "__OTR__objects/object_fire/gFire7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFire7Tex[] = dgFire7Tex; -#else -static const char gFire7Tex[] __attribute__((aligned (2))) = dgFire7Tex; -#endif - +#include "align_asset_macro.h" + +#define dgFireDL "__OTR__objects/object_fire/gFireDL" +static const ALIGN_ASSET(2) char gFireDL[] = dgFireDL; + +#define dgFire0Tex "__OTR__objects/object_fire/gFire0Tex" +static const ALIGN_ASSET(2) char gFire0Tex[] = dgFire0Tex; + +#define dgFire1Tex "__OTR__objects/object_fire/gFire1Tex" +static const ALIGN_ASSET(2) char gFire1Tex[] = dgFire1Tex; + +#define dgFire2Tex "__OTR__objects/object_fire/gFire2Tex" +static const ALIGN_ASSET(2) char gFire2Tex[] = dgFire2Tex; + +#define dgFire3Tex "__OTR__objects/object_fire/gFire3Tex" +static const ALIGN_ASSET(2) char gFire3Tex[] = dgFire3Tex; + +#define dgFire4Tex "__OTR__objects/object_fire/gFire4Tex" +static const ALIGN_ASSET(2) char gFire4Tex[] = dgFire4Tex; + +#define dgFire5Tex "__OTR__objects/object_fire/gFire5Tex" +static const ALIGN_ASSET(2) char gFire5Tex[] = dgFire5Tex; + +#define dgFire6Tex "__OTR__objects/object_fire/gFire6Tex" +static const ALIGN_ASSET(2) char gFire6Tex[] = dgFire6Tex; + +#define dgFire7Tex "__OTR__objects/object_fire/gFire7Tex" +static const ALIGN_ASSET(2) char gFire7Tex[] = dgFire7Tex; \ No newline at end of file diff --git a/soh/assets/objects/object_firefly/object_firefly.h b/soh/assets/objects/object_firefly/object_firefly.h index 4217f71e2..8cbc7b5df 100644 --- a/soh/assets/objects/object_firefly/object_firefly.h +++ b/soh/assets/objects/object_firefly/object_firefly.h @@ -1,163 +1,72 @@ #pragma once -#define dgKeeseFlyAnim "__OTR__objects/object_firefly/gKeeseFlyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseFlyAnim[] = dgKeeseFlyAnim; -#else -static const char gKeeseFlyAnim[] __attribute__((aligned (2))) = dgKeeseFlyAnim; -#endif - -#define dgKeeseSkeleton "__OTR__objects/object_firefly/gKeeseSkeleton" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeleton[] = dgKeeseSkeleton; -#else -static const char gKeeseSkeleton[] __attribute__((aligned (2))) = dgKeeseSkeleton; -#endif - -#define dgKeeseEyesDL "__OTR__objects/object_firefly/gKeeseEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseEyesDL[] = dgKeeseEyesDL; -#else -static const char gKeeseEyesDL[] __attribute__((aligned (2))) = dgKeeseEyesDL; -#endif - -#define dgKeeseEyeTex "__OTR__objects/object_firefly/gKeeseEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseEyeTex[] = dgKeeseEyeTex; -#else -static const char gKeeseEyeTex[] __attribute__((aligned (2))) = dgKeeseEyeTex; -#endif - -#define dgKeeseBodyTex "__OTR__objects/object_firefly/gKeeseBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseBodyTex[] = dgKeeseBodyTex; -#else -static const char gKeeseBodyTex[] __attribute__((aligned (2))) = dgKeeseBodyTex; -#endif - -#define dgKeeseTalonTex "__OTR__objects/object_firefly/gKeeseTalonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseTalonTex[] = dgKeeseTalonTex; -#else -static const char gKeeseTalonTex[] __attribute__((aligned (2))) = dgKeeseTalonTex; -#endif - -#define dgKeeseWingTex "__OTR__objects/object_firefly/gKeeseWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseWingTex[] = dgKeeseWingTex; -#else -static const char gKeeseWingTex[] __attribute__((aligned (2))) = dgKeeseWingTex; -#endif - -#define dgKeeseEarTex "__OTR__objects/object_firefly/gKeeseEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseEarTex[] = dgKeeseEarTex; -#else -static const char gKeeseEarTex[] __attribute__((aligned (2))) = dgKeeseEarTex; -#endif - -#define dgFireKeeseBodyTex "__OTR__objects/object_firefly/gFireKeeseBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireKeeseBodyTex[] = dgFireKeeseBodyTex; -#else -static const char gFireKeeseBodyTex[] __attribute__((aligned (2))) = dgFireKeeseBodyTex; -#endif - -#define dgFireKeeseEyeTex "__OTR__objects/object_firefly/gFireKeeseEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireKeeseEyeTex[] = dgFireKeeseEyeTex; -#else -static const char gFireKeeseEyeTex[] __attribute__((aligned (2))) = dgFireKeeseEyeTex; -#endif - -#define dgFireKeeseEarTex "__OTR__objects/object_firefly/gFireKeeseEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireKeeseEarTex[] = dgFireKeeseEarTex; -#else -static const char gFireKeeseEarTex[] __attribute__((aligned (2))) = dgFireKeeseEarTex; -#endif - -#define dgFireKeeseTalonTex "__OTR__objects/object_firefly/gFireKeeseTalonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireKeeseTalonTex[] = dgFireKeeseTalonTex; -#else -static const char gFireKeeseTalonTex[] __attribute__((aligned (2))) = dgFireKeeseTalonTex; -#endif - -#define dgFireKeeseWingTex "__OTR__objects/object_firefly/gFireKeeseWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireKeeseWingTex[] = dgFireKeeseWingTex; -#else -static const char gFireKeeseWingTex[] __attribute__((aligned (2))) = dgFireKeeseWingTex; -#endif - -#define dgKeeseSkeletonLimbsLimb_001744DL_001100 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001744DL_001100" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_001744DL_001100[] = dgKeeseSkeletonLimbsLimb_001744DL_001100; -#else -static const char gKeeseSkeletonLimbsLimb_001744DL_001100[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_001744DL_001100; -#endif - -#define dgKeeseSkeletonLimbsLimb_001768DL_001038 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001768DL_001038" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_001768DL_001038[] = dgKeeseSkeletonLimbsLimb_001768DL_001038; -#else -static const char gKeeseSkeletonLimbsLimb_001768DL_001038[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_001768DL_001038; -#endif - -#define dgKeeseSkeletonLimbsLimb_001774DL_000F40 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001774DL_000F40" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_001774DL_000F40[] = dgKeeseSkeletonLimbsLimb_001774DL_000F40; -#else -static const char gKeeseSkeletonLimbsLimb_001774DL_000F40[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_001774DL_000F40; -#endif - -#define dgKeeseSkeletonLimbsLimb_0017B0DL_001420 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_0017B0DL_001420" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_0017B0DL_001420[] = dgKeeseSkeletonLimbsLimb_0017B0DL_001420; -#else -static const char gKeeseSkeletonLimbsLimb_0017B0DL_001420[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_0017B0DL_001420; -#endif - -#define dgKeeseSkeletonLimbsLimb_0017BCDL_0014E8 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_0017BCDL_0014E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_0017BCDL_0014E8[] = dgKeeseSkeletonLimbsLimb_0017BCDL_0014E8; -#else -static const char gKeeseSkeletonLimbsLimb_0017BCDL_0014E8[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_0017BCDL_0014E8; -#endif - -#define dgKeeseSkeletonLimbsLimb_0017C8DL_0015B0 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_0017C8DL_0015B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_0017C8DL_0015B0[] = dgKeeseSkeletonLimbsLimb_0017C8DL_0015B0; -#else -static const char gKeeseSkeletonLimbsLimb_0017C8DL_0015B0[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_0017C8DL_0015B0; -#endif - -#define dgKeeseSkeletonLimbsLimb_001804DL_001358 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001804DL_001358" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_001804DL_001358[] = dgKeeseSkeletonLimbsLimb_001804DL_001358; -#else -static const char gKeeseSkeletonLimbsLimb_001804DL_001358[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_001804DL_001358; -#endif - -#define dgKeeseSkeletonLimbsLimb_001810DL_001290 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001810DL_001290" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_001810DL_001290[] = dgKeeseSkeletonLimbsLimb_001810DL_001290; -#else -static const char gKeeseSkeletonLimbsLimb_001810DL_001290[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_001810DL_001290; -#endif - -#define dgKeeseSkeletonLimbsLimb_00181CDL_0011C8 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_00181CDL_0011C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_00181CDL_0011C8[] = dgKeeseSkeletonLimbsLimb_00181CDL_0011C8; -#else -static const char gKeeseSkeletonLimbsLimb_00181CDL_0011C8[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_00181CDL_0011C8; -#endif - -#define dgKeeseSkeletonLimbsLimb_001840DL_000D30 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001840DL_000D30" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeeseSkeletonLimbsLimb_001840DL_000D30[] = dgKeeseSkeletonLimbsLimb_001840DL_000D30; -#else -static const char gKeeseSkeletonLimbsLimb_001840DL_000D30[] __attribute__((aligned (2))) = dgKeeseSkeletonLimbsLimb_001840DL_000D30; -#endif - +#include "align_asset_macro.h" + +#define dgKeeseFlyAnim "__OTR__objects/object_firefly/gKeeseFlyAnim" +static const ALIGN_ASSET(2) char gKeeseFlyAnim[] = dgKeeseFlyAnim; + +#define dgKeeseSkeleton "__OTR__objects/object_firefly/gKeeseSkeleton" +static const ALIGN_ASSET(2) char gKeeseSkeleton[] = dgKeeseSkeleton; + +#define dgKeeseEyesDL "__OTR__objects/object_firefly/gKeeseEyesDL" +static const ALIGN_ASSET(2) char gKeeseEyesDL[] = dgKeeseEyesDL; + +#define dgKeeseEyeTex "__OTR__objects/object_firefly/gKeeseEyeTex" +static const ALIGN_ASSET(2) char gKeeseEyeTex[] = dgKeeseEyeTex; + +#define dgKeeseBodyTex "__OTR__objects/object_firefly/gKeeseBodyTex" +static const ALIGN_ASSET(2) char gKeeseBodyTex[] = dgKeeseBodyTex; + +#define dgKeeseTalonTex "__OTR__objects/object_firefly/gKeeseTalonTex" +static const ALIGN_ASSET(2) char gKeeseTalonTex[] = dgKeeseTalonTex; + +#define dgKeeseWingTex "__OTR__objects/object_firefly/gKeeseWingTex" +static const ALIGN_ASSET(2) char gKeeseWingTex[] = dgKeeseWingTex; + +#define dgKeeseEarTex "__OTR__objects/object_firefly/gKeeseEarTex" +static const ALIGN_ASSET(2) char gKeeseEarTex[] = dgKeeseEarTex; + +#define dgFireKeeseBodyTex "__OTR__objects/object_firefly/gFireKeeseBodyTex" +static const ALIGN_ASSET(2) char gFireKeeseBodyTex[] = dgFireKeeseBodyTex; + +#define dgFireKeeseEyeTex "__OTR__objects/object_firefly/gFireKeeseEyeTex" +static const ALIGN_ASSET(2) char gFireKeeseEyeTex[] = dgFireKeeseEyeTex; + +#define dgFireKeeseEarTex "__OTR__objects/object_firefly/gFireKeeseEarTex" +static const ALIGN_ASSET(2) char gFireKeeseEarTex[] = dgFireKeeseEarTex; + +#define dgFireKeeseTalonTex "__OTR__objects/object_firefly/gFireKeeseTalonTex" +static const ALIGN_ASSET(2) char gFireKeeseTalonTex[] = dgFireKeeseTalonTex; + +#define dgFireKeeseWingTex "__OTR__objects/object_firefly/gFireKeeseWingTex" +static const ALIGN_ASSET(2) char gFireKeeseWingTex[] = dgFireKeeseWingTex; + +#define dgKeeseSkeletonLimbsLimb_001744DL_001100 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001744DL_001100" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_001744DL_001100[] = dgKeeseSkeletonLimbsLimb_001744DL_001100; + +#define dgKeeseSkeletonLimbsLimb_001768DL_001038 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001768DL_001038" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_001768DL_001038[] = dgKeeseSkeletonLimbsLimb_001768DL_001038; + +#define dgKeeseSkeletonLimbsLimb_001774DL_000F40 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001774DL_000F40" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_001774DL_000F40[] = dgKeeseSkeletonLimbsLimb_001774DL_000F40; + +#define dgKeeseSkeletonLimbsLimb_0017B0DL_001420 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_0017B0DL_001420" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_0017B0DL_001420[] = dgKeeseSkeletonLimbsLimb_0017B0DL_001420; + +#define dgKeeseSkeletonLimbsLimb_0017BCDL_0014E8 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_0017BCDL_0014E8" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_0017BCDL_0014E8[] = dgKeeseSkeletonLimbsLimb_0017BCDL_0014E8; + +#define dgKeeseSkeletonLimbsLimb_0017C8DL_0015B0 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_0017C8DL_0015B0" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_0017C8DL_0015B0[] = dgKeeseSkeletonLimbsLimb_0017C8DL_0015B0; + +#define dgKeeseSkeletonLimbsLimb_001804DL_001358 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001804DL_001358" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_001804DL_001358[] = dgKeeseSkeletonLimbsLimb_001804DL_001358; + +#define dgKeeseSkeletonLimbsLimb_001810DL_001290 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001810DL_001290" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_001810DL_001290[] = dgKeeseSkeletonLimbsLimb_001810DL_001290; + +#define dgKeeseSkeletonLimbsLimb_00181CDL_0011C8 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_00181CDL_0011C8" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_00181CDL_0011C8[] = dgKeeseSkeletonLimbsLimb_00181CDL_0011C8; + +#define dgKeeseSkeletonLimbsLimb_001840DL_000D30 "__OTR__objects/object_firefly/gKeeseSkeletonLimbsLimb_001840DL_000D30" +static const ALIGN_ASSET(2) char gKeeseSkeletonLimbsLimb_001840DL_000D30[] = dgKeeseSkeletonLimbsLimb_001840DL_000D30; \ No newline at end of file diff --git a/soh/assets/objects/object_fish/object_fish.h b/soh/assets/objects/object_fish/object_fish.h index d5844f814..c7a91a972 100644 --- a/soh/assets/objects/object_fish/object_fish.h +++ b/soh/assets/objects/object_fish/object_fish.h @@ -1,863 +1,372 @@ #pragma once -#define dgFishingFishAnim "__OTR__objects/object_fish/gFishingFishAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishAnim[] = dgFishingFishAnim; -#else -static const char gFishingFishAnim[] __attribute__((aligned (2))) = dgFishingFishAnim; -#endif - -#define dgFishingFishDL_000940 "__OTR__objects/object_fish/gFishingFishDL_000940" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_000940[] = dgFishingFishDL_000940; -#else -static const char gFishingFishDL_000940[] __attribute__((aligned (2))) = dgFishingFishDL_000940; -#endif - -#define dgFishingFishDL_0009E8 "__OTR__objects/object_fish/gFishingFishDL_0009E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_0009E8[] = dgFishingFishDL_0009E8; -#else -static const char gFishingFishDL_0009E8[] __attribute__((aligned (2))) = dgFishingFishDL_0009E8; -#endif - -#define dgFishingFishDL_000B00 "__OTR__objects/object_fish/gFishingFishDL_000B00" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_000B00[] = dgFishingFishDL_000B00; -#else -static const char gFishingFishDL_000B00[] __attribute__((aligned (2))) = dgFishingFishDL_000B00; -#endif - -#define dgFishingFishDL_000BA0 "__OTR__objects/object_fish/gFishingFishDL_000BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_000BA0[] = dgFishingFishDL_000BA0; -#else -static const char gFishingFishDL_000BA0[] __attribute__((aligned (2))) = dgFishingFishDL_000BA0; -#endif - -#define dgFishingFishDL_000C40 "__OTR__objects/object_fish/gFishingFishDL_000C40" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_000C40[] = dgFishingFishDL_000C40; -#else -static const char gFishingFishDL_000C40[] __attribute__((aligned (2))) = dgFishingFishDL_000C40; -#endif - -#define dgFishingFishDL_000E30 "__OTR__objects/object_fish/gFishingFishDL_000E30" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_000E30[] = dgFishingFishDL_000E30; -#else -static const char gFishingFishDL_000E30[] __attribute__((aligned (2))) = dgFishingFishDL_000E30; -#endif - -#define dgFishingFishDL_000ED0 "__OTR__objects/object_fish/gFishingFishDL_000ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_000ED0[] = dgFishingFishDL_000ED0; -#else -static const char gFishingFishDL_000ED0[] __attribute__((aligned (2))) = dgFishingFishDL_000ED0; -#endif - -#define dgFishingFishDL_000F70 "__OTR__objects/object_fish/gFishingFishDL_000F70" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_000F70[] = dgFishingFishDL_000F70; -#else -static const char gFishingFishDL_000F70[] __attribute__((aligned (2))) = dgFishingFishDL_000F70; -#endif - -#define dgFishingFishDL_0010A0 "__OTR__objects/object_fish/gFishingFishDL_0010A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_0010A0[] = dgFishingFishDL_0010A0; -#else -static const char gFishingFishDL_0010A0[] __attribute__((aligned (2))) = dgFishingFishDL_0010A0; -#endif - -#define dgFishingFishDL_001260 "__OTR__objects/object_fish/gFishingFishDL_001260" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_001260[] = dgFishingFishDL_001260; -#else -static const char gFishingFishDL_001260[] __attribute__((aligned (2))) = dgFishingFishDL_001260; -#endif - -#define dgFishingFishDL_001300 "__OTR__objects/object_fish/gFishingFishDL_001300" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_001300[] = dgFishingFishDL_001300; -#else -static const char gFishingFishDL_001300[] __attribute__((aligned (2))) = dgFishingFishDL_001300; -#endif - -#define dgFishingFishDL_0013A0 "__OTR__objects/object_fish/gFishingFishDL_0013A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishDL_0013A0[] = dgFishingFishDL_0013A0; -#else -static const char gFishingFishDL_0013A0[] __attribute__((aligned (2))) = dgFishingFishDL_0013A0; -#endif - -#define dgFishingFishTex_0014D0 "__OTR__objects/object_fish/gFishingFishTex_0014D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishTex_0014D0[] = dgFishingFishTex_0014D0; -#else -static const char gFishingFishTex_0014D0[] __attribute__((aligned (2))) = dgFishingFishTex_0014D0; -#endif - -#define dgFishingFishTex_0016D0 "__OTR__objects/object_fish/gFishingFishTex_0016D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishTex_0016D0[] = dgFishingFishTex_0016D0; -#else -static const char gFishingFishTex_0016D0[] __attribute__((aligned (2))) = dgFishingFishTex_0016D0; -#endif - -#define dgFishingFishTex_0018D0 "__OTR__objects/object_fish/gFishingFishTex_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishTex_0018D0[] = dgFishingFishTex_0018D0; -#else -static const char gFishingFishTex_0018D0[] __attribute__((aligned (2))) = dgFishingFishTex_0018D0; -#endif - -#define dgFishingFishTex_001AD0 "__OTR__objects/object_fish/gFishingFishTex_001AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishTex_001AD0[] = dgFishingFishTex_001AD0; -#else -static const char gFishingFishTex_001AD0[] __attribute__((aligned (2))) = dgFishingFishTex_001AD0; -#endif - -#define dgFishingFishTex_0022D0 "__OTR__objects/object_fish/gFishingFishTex_0022D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishTex_0022D0[] = dgFishingFishTex_0022D0; -#else -static const char gFishingFishTex_0022D0[] __attribute__((aligned (2))) = dgFishingFishTex_0022D0; -#endif - -#define dgFishingFishTex_0024D0 "__OTR__objects/object_fish/gFishingFishTex_0024D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishTex_0024D0[] = dgFishingFishTex_0024D0; -#else -static const char gFishingFishTex_0024D0[] __attribute__((aligned (2))) = dgFishingFishTex_0024D0; -#endif - -#define dgFishingFishTex_0026D0 "__OTR__objects/object_fish/gFishingFishTex_0026D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishTex_0026D0[] = dgFishingFishTex_0026D0; -#else -static const char gFishingFishTex_0026D0[] __attribute__((aligned (2))) = dgFishingFishTex_0026D0; -#endif - -#define dgFishingFishSkel "__OTR__objects/object_fish/gFishingFishSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingFishSkel[] = dgFishingFishSkel; -#else -static const char gFishingFishSkel[] __attribute__((aligned (2))) = dgFishingFishSkel; -#endif - -#define dgFishingOldLureHookTex "__OTR__objects/object_fish/gFishingOldLureHookTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOldLureHookTex[] = dgFishingOldLureHookTex; -#else -static const char gFishingOldLureHookTex[] __attribute__((aligned (2))) = dgFishingOldLureHookTex; -#endif - -#define dgFishingOldLureFloatTex "__OTR__objects/object_fish/gFishingOldLureFloatTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOldLureFloatTex[] = dgFishingOldLureFloatTex; -#else -static const char gFishingOldLureFloatTex[] __attribute__((aligned (2))) = dgFishingOldLureFloatTex; -#endif - -#define dgFishingOldLureDL "__OTR__objects/object_fish/gFishingOldLureDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOldLureDL[] = dgFishingOldLureDL; -#else -static const char gFishingOldLureDL[] __attribute__((aligned (2))) = dgFishingOldLureDL; -#endif - -#define dgFishingStreamSplashTile1Tex "__OTR__objects/object_fish/gFishingStreamSplashTile1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingStreamSplashTile1Tex[] = dgFishingStreamSplashTile1Tex; -#else -static const char gFishingStreamSplashTile1Tex[] __attribute__((aligned (2))) = dgFishingStreamSplashTile1Tex; -#endif - -#define dgFishingStreamSplashTile2Tex "__OTR__objects/object_fish/gFishingStreamSplashTile2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingStreamSplashTile2Tex[] = dgFishingStreamSplashTile2Tex; -#else -static const char gFishingStreamSplashTile2Tex[] __attribute__((aligned (2))) = dgFishingStreamSplashTile2Tex; -#endif - -#define dgFishingStreamSplashDL "__OTR__objects/object_fish/gFishingStreamSplashDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingStreamSplashDL[] = dgFishingStreamSplashDL; -#else -static const char gFishingStreamSplashDL[] __attribute__((aligned (2))) = dgFishingStreamSplashDL; -#endif - -#define dgFishingBubbleTex "__OTR__objects/object_fish/gFishingBubbleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingBubbleTex[] = dgFishingBubbleTex; -#else -static const char gFishingBubbleTex[] __attribute__((aligned (2))) = dgFishingBubbleTex; -#endif - -#define dgFishingBubbleMaterialDL "__OTR__objects/object_fish/gFishingBubbleMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingBubbleMaterialDL[] = dgFishingBubbleMaterialDL; -#else -static const char gFishingBubbleMaterialDL[] __attribute__((aligned (2))) = dgFishingBubbleMaterialDL; -#endif - -#define dgFishingBubbleModelDL "__OTR__objects/object_fish/gFishingBubbleModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingBubbleModelDL[] = dgFishingBubbleModelDL; -#else -static const char gFishingBubbleModelDL[] __attribute__((aligned (2))) = dgFishingBubbleModelDL; -#endif - -#define dgFishingDustSplashTex "__OTR__objects/object_fish/gFishingDustSplashTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingDustSplashTex[] = dgFishingDustSplashTex; -#else -static const char gFishingDustSplashTex[] __attribute__((aligned (2))) = dgFishingDustSplashTex; -#endif - -#define dgFishingDustSplashMaterialDL "__OTR__objects/object_fish/gFishingDustSplashMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingDustSplashMaterialDL[] = dgFishingDustSplashMaterialDL; -#else -static const char gFishingDustSplashMaterialDL[] __attribute__((aligned (2))) = dgFishingDustSplashMaterialDL; -#endif - -#define dgFishingDustSplashModelDL "__OTR__objects/object_fish/gFishingDustSplashModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingDustSplashModelDL[] = dgFishingDustSplashModelDL; -#else -static const char gFishingDustSplashModelDL[] __attribute__((aligned (2))) = dgFishingDustSplashModelDL; -#endif - -#define dgFishingUnusedMaterialDL "__OTR__objects/object_fish/gFishingUnusedMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingUnusedMaterialDL[] = dgFishingUnusedMaterialDL; -#else -static const char gFishingUnusedMaterialDL[] __attribute__((aligned (2))) = dgFishingUnusedMaterialDL; -#endif - -#define dgFishingLineModelDL "__OTR__objects/object_fish/gFishingLineModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLineModelDL[] = dgFishingLineModelDL; -#else -static const char gFishingLineModelDL[] __attribute__((aligned (2))) = dgFishingLineModelDL; -#endif - -#define dgFishingRainDropModelDL "__OTR__objects/object_fish/gFishingRainDropModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRainDropModelDL[] = dgFishingRainDropModelDL; -#else -static const char gFishingRainDropModelDL[] __attribute__((aligned (2))) = dgFishingRainDropModelDL; -#endif - -#define dgFishingRainSplashTex "__OTR__objects/object_fish/gFishingRainSplashTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRainSplashTex[] = dgFishingRainSplashTex; -#else -static const char gFishingRainSplashTex[] __attribute__((aligned (2))) = dgFishingRainSplashTex; -#endif - -#define dgFishingRainSplashMaterialDL "__OTR__objects/object_fish/gFishingRainSplashMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRainSplashMaterialDL[] = dgFishingRainSplashMaterialDL; -#else -static const char gFishingRainSplashMaterialDL[] __attribute__((aligned (2))) = dgFishingRainSplashMaterialDL; -#endif - -#define dgFishingRainSplashModelDL "__OTR__objects/object_fish/gFishingRainSplashModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRainSplashModelDL[] = dgFishingRainSplashModelDL; -#else -static const char gFishingRainSplashModelDL[] __attribute__((aligned (2))) = dgFishingRainSplashModelDL; -#endif - -#define dgFishingOwnerAnim "__OTR__objects/object_fish/gFishingOwnerAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerAnim[] = dgFishingOwnerAnim; -#else -static const char gFishingOwnerAnim[] __attribute__((aligned (2))) = dgFishingOwnerAnim; -#endif - -#define dgFishingOwnerDL_006F60 "__OTR__objects/object_fish/gFishingOwnerDL_006F60" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerDL_006F60[] = dgFishingOwnerDL_006F60; -#else -static const char gFishingOwnerDL_006F60[] __attribute__((aligned (2))) = dgFishingOwnerDL_006F60; -#endif - -#define dgFishingOwnerHairDL "__OTR__objects/object_fish/gFishingOwnerHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerHairDL[] = dgFishingOwnerHairDL; -#else -static const char gFishingOwnerHairDL[] __attribute__((aligned (2))) = dgFishingOwnerHairDL; -#endif - -#define dgFishingOwnerHatDL "__OTR__objects/object_fish/gFishingOwnerHatDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerHatDL[] = dgFishingOwnerHatDL; -#else -static const char gFishingOwnerHatDL[] __attribute__((aligned (2))) = dgFishingOwnerHatDL; -#endif - -#define dgFishingOwnerDL_0076B8 "__OTR__objects/object_fish/gFishingOwnerDL_0076B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerDL_0076B8[] = dgFishingOwnerDL_0076B8; -#else -static const char gFishingOwnerDL_0076B8[] __attribute__((aligned (2))) = dgFishingOwnerDL_0076B8; -#endif - -#define dgFishingOwnerDL_007CF8 "__OTR__objects/object_fish/gFishingOwnerDL_007CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerDL_007CF8[] = dgFishingOwnerDL_007CF8; -#else -static const char gFishingOwnerDL_007CF8[] __attribute__((aligned (2))) = dgFishingOwnerDL_007CF8; -#endif - -#define dgFishingOwnerDL_007E48 "__OTR__objects/object_fish/gFishingOwnerDL_007E48" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerDL_007E48[] = dgFishingOwnerDL_007E48; -#else -static const char gFishingOwnerDL_007E48[] __attribute__((aligned (2))) = dgFishingOwnerDL_007E48; -#endif - -#define dgFishingOwnerDL_007F78 "__OTR__objects/object_fish/gFishingOwnerDL_007F78" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerDL_007F78[] = dgFishingOwnerDL_007F78; -#else -static const char gFishingOwnerDL_007F78[] __attribute__((aligned (2))) = dgFishingOwnerDL_007F78; -#endif - -#define dgFishingOwnerDL_008138 "__OTR__objects/object_fish/gFishingOwnerDL_008138" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerDL_008138[] = dgFishingOwnerDL_008138; -#else -static const char gFishingOwnerDL_008138[] __attribute__((aligned (2))) = dgFishingOwnerDL_008138; -#endif - -#define dgFishingOwnerDL_008288 "__OTR__objects/object_fish/gFishingOwnerDL_008288" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerDL_008288[] = dgFishingOwnerDL_008288; -#else -static const char gFishingOwnerDL_008288[] __attribute__((aligned (2))) = dgFishingOwnerDL_008288; -#endif - -#define dgFishingOwnerDL_0083B8 "__OTR__objects/object_fish/gFishingOwnerDL_0083B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerDL_0083B8[] = dgFishingOwnerDL_0083B8; -#else -static const char gFishingOwnerDL_0083B8[] __attribute__((aligned (2))) = dgFishingOwnerDL_0083B8; -#endif - -#define dgFishingOwnerSkel "__OTR__objects/object_fish/gFishingOwnerSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerSkel[] = dgFishingOwnerSkel; -#else -static const char gFishingOwnerSkel[] __attribute__((aligned (2))) = dgFishingOwnerSkel; -#endif - -#define dgFishingRippleMaterialDL "__OTR__objects/object_fish/gFishingRippleMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRippleMaterialDL[] = dgFishingRippleMaterialDL; -#else -static const char gFishingRippleMaterialDL[] __attribute__((aligned (2))) = dgFishingRippleMaterialDL; -#endif - -#define dgFishingRippleModelDL "__OTR__objects/object_fish/gFishingRippleModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRippleModelDL[] = dgFishingRippleModelDL; -#else -static const char gFishingRippleModelDL[] __attribute__((aligned (2))) = dgFishingRippleModelDL; -#endif - -#define dgFishingWaterDustTex "__OTR__objects/object_fish/gFishingWaterDustTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingWaterDustTex[] = dgFishingWaterDustTex; -#else -static const char gFishingWaterDustTex[] __attribute__((aligned (2))) = dgFishingWaterDustTex; -#endif - -#define dgFishingWaterDustMaterialDL "__OTR__objects/object_fish/gFishingWaterDustMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingWaterDustMaterialDL[] = dgFishingWaterDustMaterialDL; -#else -static const char gFishingWaterDustMaterialDL[] __attribute__((aligned (2))) = dgFishingWaterDustMaterialDL; -#endif - -#define dgFishingWaterDustModelDL "__OTR__objects/object_fish/gFishingWaterDustModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingWaterDustModelDL[] = dgFishingWaterDustModelDL; -#else -static const char gFishingWaterDustModelDL[] __attribute__((aligned (2))) = dgFishingWaterDustModelDL; -#endif - -#define dgFishingOwnerTLUT "__OTR__objects/object_fish/gFishingOwnerTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerTLUT[] = dgFishingOwnerTLUT; -#else -static const char gFishingOwnerTLUT[] __attribute__((aligned (2))) = dgFishingOwnerTLUT; -#endif - -#define dgFishingOwnerSkinTex "__OTR__objects/object_fish/gFishingOwnerSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerSkinTex[] = dgFishingOwnerSkinTex; -#else -static const char gFishingOwnerSkinTex[] __attribute__((aligned (2))) = dgFishingOwnerSkinTex; -#endif - -#define dgFishingOwnerHairFullTex "__OTR__objects/object_fish/gFishingOwnerHairFullTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerHairFullTex[] = dgFishingOwnerHairFullTex; -#else -static const char gFishingOwnerHairFullTex[] __attribute__((aligned (2))) = dgFishingOwnerHairFullTex; -#endif - -#define dgFishingOwnerHairPartialTex "__OTR__objects/object_fish/gFishingOwnerHairPartialTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerHairPartialTex[] = dgFishingOwnerHairPartialTex; -#else -static const char gFishingOwnerHairPartialTex[] __attribute__((aligned (2))) = dgFishingOwnerHairPartialTex; -#endif - -#define dgFishingOwnerHearTex "__OTR__objects/object_fish/gFishingOwnerHearTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerHearTex[] = dgFishingOwnerHearTex; -#else -static const char gFishingOwnerHearTex[] __attribute__((aligned (2))) = dgFishingOwnerHearTex; -#endif - -#define dgFishingOwnerMouthTex "__OTR__objects/object_fish/gFishingOwnerMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerMouthTex[] = dgFishingOwnerMouthTex; -#else -static const char gFishingOwnerMouthTex[] __attribute__((aligned (2))) = dgFishingOwnerMouthTex; -#endif - -#define dgFishingOwnerNostrilTex "__OTR__objects/object_fish/gFishingOwnerNostrilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerNostrilTex[] = dgFishingOwnerNostrilTex; -#else -static const char gFishingOwnerNostrilTex[] __attribute__((aligned (2))) = dgFishingOwnerNostrilTex; -#endif - -#define dgFishingOwnerEyeOpenTex "__OTR__objects/object_fish/gFishingOwnerEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerEyeOpenTex[] = dgFishingOwnerEyeOpenTex; -#else -static const char gFishingOwnerEyeOpenTex[] __attribute__((aligned (2))) = dgFishingOwnerEyeOpenTex; -#endif - -#define dgFishingOwnerEyeHalfTex "__OTR__objects/object_fish/gFishingOwnerEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerEyeHalfTex[] = dgFishingOwnerEyeHalfTex; -#else -static const char gFishingOwnerEyeHalfTex[] __attribute__((aligned (2))) = dgFishingOwnerEyeHalfTex; -#endif - -#define dgFishingOwnerEyeClosedTex "__OTR__objects/object_fish/gFishingOwnerEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerEyeClosedTex[] = dgFishingOwnerEyeClosedTex; -#else -static const char gFishingOwnerEyeClosedTex[] __attribute__((aligned (2))) = dgFishingOwnerEyeClosedTex; -#endif - -#define dgFishingOwnerHatTex "__OTR__objects/object_fish/gFishingOwnerHatTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerHatTex[] = dgFishingOwnerHatTex; -#else -static const char gFishingOwnerHatTex[] __attribute__((aligned (2))) = dgFishingOwnerHatTex; -#endif - -#define dgFishingOwnerShirtTex "__OTR__objects/object_fish/gFishingOwnerShirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerShirtTex[] = dgFishingOwnerShirtTex; -#else -static const char gFishingOwnerShirtTex[] __attribute__((aligned (2))) = dgFishingOwnerShirtTex; -#endif - -#define dgFishingOwnerFingersTex "__OTR__objects/object_fish/gFishingOwnerFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerFingersTex[] = dgFishingOwnerFingersTex; -#else -static const char gFishingOwnerFingersTex[] __attribute__((aligned (2))) = dgFishingOwnerFingersTex; -#endif - -#define dgFishingOwnerCollarTex "__OTR__objects/object_fish/gFishingOwnerCollarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerCollarTex[] = dgFishingOwnerCollarTex; -#else -static const char gFishingOwnerCollarTex[] __attribute__((aligned (2))) = dgFishingOwnerCollarTex; -#endif - -#define dgFishingOwnerVestTex "__OTR__objects/object_fish/gFishingOwnerVestTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingOwnerVestTex[] = dgFishingOwnerVestTex; -#else -static const char gFishingOwnerVestTex[] __attribute__((aligned (2))) = dgFishingOwnerVestTex; -#endif - -#define dgFishingSinkingLureSegmentTex "__OTR__objects/object_fish/gFishingSinkingLureSegmentTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingSinkingLureSegmentTex[] = dgFishingSinkingLureSegmentTex; -#else -static const char gFishingSinkingLureSegmentTex[] __attribute__((aligned (2))) = dgFishingSinkingLureSegmentTex; -#endif - -#define dgFishingSinkingLureSegmentMaterialDL "__OTR__objects/object_fish/gFishingSinkingLureSegmentMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingSinkingLureSegmentMaterialDL[] = dgFishingSinkingLureSegmentMaterialDL; -#else -static const char gFishingSinkingLureSegmentMaterialDL[] __attribute__((aligned (2))) = dgFishingSinkingLureSegmentMaterialDL; -#endif - -#define dgFishingSinkingLureSegmentModelDL "__OTR__objects/object_fish/gFishingSinkingLureSegmentModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingSinkingLureSegmentModelDL[] = dgFishingSinkingLureSegmentModelDL; -#else -static const char gFishingSinkingLureSegmentModelDL[] __attribute__((aligned (2))) = dgFishingSinkingLureSegmentModelDL; -#endif - -#define dgFishingGroupFishTex "__OTR__objects/object_fish/gFishingGroupFishTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingGroupFishTex[] = dgFishingGroupFishTex; -#else -static const char gFishingGroupFishTex[] __attribute__((aligned (2))) = dgFishingGroupFishTex; -#endif - -#define dgFishingGroupFishMaterialDL "__OTR__objects/object_fish/gFishingGroupFishMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingGroupFishMaterialDL[] = dgFishingGroupFishMaterialDL; -#else -static const char gFishingGroupFishMaterialDL[] __attribute__((aligned (2))) = dgFishingGroupFishMaterialDL; -#endif - -#define dgFishingGroupFishModelDL "__OTR__objects/object_fish/gFishingGroupFishModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingGroupFishModelDL[] = dgFishingGroupFishModelDL; -#else -static const char gFishingGroupFishModelDL[] __attribute__((aligned (2))) = dgFishingGroupFishModelDL; -#endif - -#define dgFishingUnusedRockDL "__OTR__objects/object_fish/gFishingUnusedRockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingUnusedRockDL[] = dgFishingUnusedRockDL; -#else -static const char gFishingUnusedRockDL[] __attribute__((aligned (2))) = dgFishingUnusedRockDL; -#endif - -#define dgFishingUnusedRockTex "__OTR__objects/object_fish/gFishingUnusedRockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingUnusedRockTex[] = dgFishingUnusedRockTex; -#else -static const char gFishingUnusedRockTex[] __attribute__((aligned (2))) = dgFishingUnusedRockTex; -#endif - -#define dgFishingLoachAnim "__OTR__objects/object_fish/gFishingLoachAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachAnim[] = dgFishingLoachAnim; -#else -static const char gFishingLoachAnim[] __attribute__((aligned (2))) = dgFishingLoachAnim; -#endif - -#define dgFishingLoachDL_00DED0 "__OTR__objects/object_fish/gFishingLoachDL_00DED0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00DED0[] = dgFishingLoachDL_00DED0; -#else -static const char gFishingLoachDL_00DED0[] __attribute__((aligned (2))) = dgFishingLoachDL_00DED0; -#endif - -#define dgFishingLoachDL_00DFA8 "__OTR__objects/object_fish/gFishingLoachDL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00DFA8[] = dgFishingLoachDL_00DFA8; -#else -static const char gFishingLoachDL_00DFA8[] __attribute__((aligned (2))) = dgFishingLoachDL_00DFA8; -#endif - -#define dgFishingLoachDL_00E048 "__OTR__objects/object_fish/gFishingLoachDL_00E048" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00E048[] = dgFishingLoachDL_00E048; -#else -static const char gFishingLoachDL_00E048[] __attribute__((aligned (2))) = dgFishingLoachDL_00E048; -#endif - -#define dgFishingLoachDL_00E168 "__OTR__objects/object_fish/gFishingLoachDL_00E168" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00E168[] = dgFishingLoachDL_00E168; -#else -static const char gFishingLoachDL_00E168[] __attribute__((aligned (2))) = dgFishingLoachDL_00E168; -#endif - -#define dgFishingLoachDL_00E460 "__OTR__objects/object_fish/gFishingLoachDL_00E460" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00E460[] = dgFishingLoachDL_00E460; -#else -static const char gFishingLoachDL_00E460[] __attribute__((aligned (2))) = dgFishingLoachDL_00E460; -#endif - -#define dgFishingLoachDL_00E500 "__OTR__objects/object_fish/gFishingLoachDL_00E500" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00E500[] = dgFishingLoachDL_00E500; -#else -static const char gFishingLoachDL_00E500[] __attribute__((aligned (2))) = dgFishingLoachDL_00E500; -#endif - -#define dgFishingLoachDL_00E808 "__OTR__objects/object_fish/gFishingLoachDL_00E808" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00E808[] = dgFishingLoachDL_00E808; -#else -static const char gFishingLoachDL_00E808[] __attribute__((aligned (2))) = dgFishingLoachDL_00E808; -#endif - -#define dgFishingLoachDL_00E8B0 "__OTR__objects/object_fish/gFishingLoachDL_00E8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00E8B0[] = dgFishingLoachDL_00E8B0; -#else -static const char gFishingLoachDL_00E8B0[] __attribute__((aligned (2))) = dgFishingLoachDL_00E8B0; -#endif - -#define dgFishingLoachDL_00EB28 "__OTR__objects/object_fish/gFishingLoachDL_00EB28" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00EB28[] = dgFishingLoachDL_00EB28; -#else -static const char gFishingLoachDL_00EB28[] __attribute__((aligned (2))) = dgFishingLoachDL_00EB28; -#endif - -#define dgFishingLoachDL_00EBC8 "__OTR__objects/object_fish/gFishingLoachDL_00EBC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00EBC8[] = dgFishingLoachDL_00EBC8; -#else -static const char gFishingLoachDL_00EBC8[] __attribute__((aligned (2))) = dgFishingLoachDL_00EBC8; -#endif - -#define dgFishingLoachDL_00EC68 "__OTR__objects/object_fish/gFishingLoachDL_00EC68" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachDL_00EC68[] = dgFishingLoachDL_00EC68; -#else -static const char gFishingLoachDL_00EC68[] __attribute__((aligned (2))) = dgFishingLoachDL_00EC68; -#endif - -#define dgFishingLoachTex_00ED28 "__OTR__objects/object_fish/gFishingLoachTex_00ED28" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachTex_00ED28[] = dgFishingLoachTex_00ED28; -#else -static const char gFishingLoachTex_00ED28[] __attribute__((aligned (2))) = dgFishingLoachTex_00ED28; -#endif - -#define dgFishingLoachTex_00F528 "__OTR__objects/object_fish/gFishingLoachTex_00F528" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachTex_00F528[] = dgFishingLoachTex_00F528; -#else -static const char gFishingLoachTex_00F528[] __attribute__((aligned (2))) = dgFishingLoachTex_00F528; -#endif - -#define dgFishingLoachTex_00FD28 "__OTR__objects/object_fish/gFishingLoachTex_00FD28" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachTex_00FD28[] = dgFishingLoachTex_00FD28; -#else -static const char gFishingLoachTex_00FD28[] __attribute__((aligned (2))) = dgFishingLoachTex_00FD28; -#endif - -#define dgFishingLoachTex_010528 "__OTR__objects/object_fish/gFishingLoachTex_010528" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachTex_010528[] = dgFishingLoachTex_010528; -#else -static const char gFishingLoachTex_010528[] __attribute__((aligned (2))) = dgFishingLoachTex_010528; -#endif - -#define dgFishingLoachTex_010D28 "__OTR__objects/object_fish/gFishingLoachTex_010D28" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachTex_010D28[] = dgFishingLoachTex_010D28; -#else -static const char gFishingLoachTex_010D28[] __attribute__((aligned (2))) = dgFishingLoachTex_010D28; -#endif - -#define dgFishingLoachTex_010DA8 "__OTR__objects/object_fish/gFishingLoachTex_010DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachTex_010DA8[] = dgFishingLoachTex_010DA8; -#else -static const char gFishingLoachTex_010DA8[] __attribute__((aligned (2))) = dgFishingLoachTex_010DA8; -#endif - -#define dgFishingLoachSkel "__OTR__objects/object_fish/gFishingLoachSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLoachSkel[] = dgFishingLoachSkel; -#else -static const char gFishingLoachSkel[] __attribute__((aligned (2))) = dgFishingLoachSkel; -#endif - -#define dgFishingRodSegmentStripTex "__OTR__objects/object_fish/gFishingRodSegmentStripTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRodSegmentStripTex[] = dgFishingRodSegmentStripTex; -#else -static const char gFishingRodSegmentStripTex[] __attribute__((aligned (2))) = dgFishingRodSegmentStripTex; -#endif - -#define dgFishingRodSegmentBlackTex "__OTR__objects/object_fish/gFishingRodSegmentBlackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRodSegmentBlackTex[] = dgFishingRodSegmentBlackTex; -#else -static const char gFishingRodSegmentBlackTex[] __attribute__((aligned (2))) = dgFishingRodSegmentBlackTex; -#endif - -#define dgFishingRodSegmentWhiteTex "__OTR__objects/object_fish/gFishingRodSegmentWhiteTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRodSegmentWhiteTex[] = dgFishingRodSegmentWhiteTex; -#else -static const char gFishingRodSegmentWhiteTex[] __attribute__((aligned (2))) = dgFishingRodSegmentWhiteTex; -#endif - -#define dgFishingRodMaterialDL "__OTR__objects/object_fish/gFishingRodMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRodMaterialDL[] = dgFishingRodMaterialDL; -#else -static const char gFishingRodMaterialDL[] __attribute__((aligned (2))) = dgFishingRodMaterialDL; -#endif - -#define dgFishingRodSegmentDL "__OTR__objects/object_fish/gFishingRodSegmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRodSegmentDL[] = dgFishingRodSegmentDL; -#else -static const char gFishingRodSegmentDL[] __attribute__((aligned (2))) = dgFishingRodSegmentDL; -#endif - -#define dgFishingLureHookTex "__OTR__objects/object_fish/gFishingLureHookTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLureHookTex[] = dgFishingLureHookTex; -#else -static const char gFishingLureHookTex[] __attribute__((aligned (2))) = dgFishingLureHookTex; -#endif - -#define dgFishingLureFloatTex "__OTR__objects/object_fish/gFishingLureFloatTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLureFloatTex[] = dgFishingLureFloatTex; -#else -static const char gFishingLureFloatTex[] __attribute__((aligned (2))) = dgFishingLureFloatTex; -#endif - -#define dgFishingLureHookDL "__OTR__objects/object_fish/gFishingLureHookDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLureHookDL[] = dgFishingLureHookDL; -#else -static const char gFishingLureHookDL[] __attribute__((aligned (2))) = dgFishingLureHookDL; -#endif - -#define dgFishingLureFloatDL "__OTR__objects/object_fish/gFishingLureFloatDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLureFloatDL[] = dgFishingLureFloatDL; -#else -static const char gFishingLureFloatDL[] __attribute__((aligned (2))) = dgFishingLureFloatDL; -#endif - -#define dgFishingLilyPadTex "__OTR__objects/object_fish/gFishingLilyPadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLilyPadTex[] = dgFishingLilyPadTex; -#else -static const char gFishingLilyPadTex[] __attribute__((aligned (2))) = dgFishingLilyPadTex; -#endif - -#define dgFishingRockTex "__OTR__objects/object_fish/gFishingRockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRockTex[] = dgFishingRockTex; -#else -static const char gFishingRockTex[] __attribute__((aligned (2))) = dgFishingRockTex; -#endif - -#define dgFishingLilyPadMaterialDL "__OTR__objects/object_fish/gFishingLilyPadMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLilyPadMaterialDL[] = dgFishingLilyPadMaterialDL; -#else -static const char gFishingLilyPadMaterialDL[] __attribute__((aligned (2))) = dgFishingLilyPadMaterialDL; -#endif - -#define dgFishingLilyPadModelDL "__OTR__objects/object_fish/gFishingLilyPadModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingLilyPadModelDL[] = dgFishingLilyPadModelDL; -#else -static const char gFishingLilyPadModelDL[] __attribute__((aligned (2))) = dgFishingLilyPadModelDL; -#endif - -#define dgFishingRockMaterialDL "__OTR__objects/object_fish/gFishingRockMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRockMaterialDL[] = dgFishingRockMaterialDL; -#else -static const char gFishingRockMaterialDL[] __attribute__((aligned (2))) = dgFishingRockMaterialDL; -#endif - -#define dgFishingRockModelDL "__OTR__objects/object_fish/gFishingRockModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingRockModelDL[] = dgFishingRockModelDL; -#else -static const char gFishingRockModelDL[] __attribute__((aligned (2))) = dgFishingRockModelDL; -#endif - -#define dgFishingWoodPostTex "__OTR__objects/object_fish/gFishingWoodPostTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingWoodPostTex[] = dgFishingWoodPostTex; -#else -static const char gFishingWoodPostTex[] __attribute__((aligned (2))) = dgFishingWoodPostTex; -#endif - -#define dgFishingWoodPostMaterialDL "__OTR__objects/object_fish/gFishingWoodPostMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingWoodPostMaterialDL[] = dgFishingWoodPostMaterialDL; -#else -static const char gFishingWoodPostMaterialDL[] __attribute__((aligned (2))) = dgFishingWoodPostMaterialDL; -#endif - -#define dgFishingWoodPostModelDL "__OTR__objects/object_fish/gFishingWoodPostModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingWoodPostModelDL[] = dgFishingWoodPostModelDL; -#else -static const char gFishingWoodPostModelDL[] __attribute__((aligned (2))) = dgFishingWoodPostModelDL; -#endif - -#define dgFishingReedMaterialDL "__OTR__objects/object_fish/gFishingReedMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingReedMaterialDL[] = dgFishingReedMaterialDL; -#else -static const char gFishingReedMaterialDL[] __attribute__((aligned (2))) = dgFishingReedMaterialDL; -#endif - -#define dgFishingReedModelDL "__OTR__objects/object_fish/gFishingReedModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingReedModelDL[] = dgFishingReedModelDL; -#else -static const char gFishingReedModelDL[] __attribute__((aligned (2))) = dgFishingReedModelDL; -#endif - -#define dgFishingAquariumBottomTex "__OTR__objects/object_fish/gFishingAquariumBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingAquariumBottomTex[] = dgFishingAquariumBottomTex; -#else -static const char gFishingAquariumBottomTex[] __attribute__((aligned (2))) = dgFishingAquariumBottomTex; -#endif - -#define dgFishingAquariumWaterTex "__OTR__objects/object_fish/gFishingAquariumWaterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingAquariumWaterTex[] = dgFishingAquariumWaterTex; -#else -static const char gFishingAquariumWaterTex[] __attribute__((aligned (2))) = dgFishingAquariumWaterTex; -#endif - -#define dgFishingAquariumGlassTex "__OTR__objects/object_fish/gFishingAquariumGlassTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingAquariumGlassTex[] = dgFishingAquariumGlassTex; -#else -static const char gFishingAquariumGlassTex[] __attribute__((aligned (2))) = dgFishingAquariumGlassTex; -#endif - -#define dgFishingAquariumBottomDL "__OTR__objects/object_fish/gFishingAquariumBottomDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingAquariumBottomDL[] = dgFishingAquariumBottomDL; -#else -static const char gFishingAquariumBottomDL[] __attribute__((aligned (2))) = dgFishingAquariumBottomDL; -#endif - -#define dgFishingAquariumContainerDL "__OTR__objects/object_fish/gFishingAquariumContainerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingAquariumContainerDL[] = dgFishingAquariumContainerDL; -#else -static const char gFishingAquariumContainerDL[] __attribute__((aligned (2))) = dgFishingAquariumContainerDL; -#endif - +#include "align_asset_macro.h" + +#define dgFishingFishAnim "__OTR__objects/object_fish/gFishingFishAnim" +static const ALIGN_ASSET(2) char gFishingFishAnim[] = dgFishingFishAnim; + +#define dgFishingFishDL_000940 "__OTR__objects/object_fish/gFishingFishDL_000940" +static const ALIGN_ASSET(2) char gFishingFishDL_000940[] = dgFishingFishDL_000940; + +#define dgFishingFishDL_0009E8 "__OTR__objects/object_fish/gFishingFishDL_0009E8" +static const ALIGN_ASSET(2) char gFishingFishDL_0009E8[] = dgFishingFishDL_0009E8; + +#define dgFishingFishDL_000B00 "__OTR__objects/object_fish/gFishingFishDL_000B00" +static const ALIGN_ASSET(2) char gFishingFishDL_000B00[] = dgFishingFishDL_000B00; + +#define dgFishingFishDL_000BA0 "__OTR__objects/object_fish/gFishingFishDL_000BA0" +static const ALIGN_ASSET(2) char gFishingFishDL_000BA0[] = dgFishingFishDL_000BA0; + +#define dgFishingFishDL_000C40 "__OTR__objects/object_fish/gFishingFishDL_000C40" +static const ALIGN_ASSET(2) char gFishingFishDL_000C40[] = dgFishingFishDL_000C40; + +#define dgFishingFishDL_000E30 "__OTR__objects/object_fish/gFishingFishDL_000E30" +static const ALIGN_ASSET(2) char gFishingFishDL_000E30[] = dgFishingFishDL_000E30; + +#define dgFishingFishDL_000ED0 "__OTR__objects/object_fish/gFishingFishDL_000ED0" +static const ALIGN_ASSET(2) char gFishingFishDL_000ED0[] = dgFishingFishDL_000ED0; + +#define dgFishingFishDL_000F70 "__OTR__objects/object_fish/gFishingFishDL_000F70" +static const ALIGN_ASSET(2) char gFishingFishDL_000F70[] = dgFishingFishDL_000F70; + +#define dgFishingFishDL_0010A0 "__OTR__objects/object_fish/gFishingFishDL_0010A0" +static const ALIGN_ASSET(2) char gFishingFishDL_0010A0[] = dgFishingFishDL_0010A0; + +#define dgFishingFishDL_001260 "__OTR__objects/object_fish/gFishingFishDL_001260" +static const ALIGN_ASSET(2) char gFishingFishDL_001260[] = dgFishingFishDL_001260; + +#define dgFishingFishDL_001300 "__OTR__objects/object_fish/gFishingFishDL_001300" +static const ALIGN_ASSET(2) char gFishingFishDL_001300[] = dgFishingFishDL_001300; + +#define dgFishingFishDL_0013A0 "__OTR__objects/object_fish/gFishingFishDL_0013A0" +static const ALIGN_ASSET(2) char gFishingFishDL_0013A0[] = dgFishingFishDL_0013A0; + +#define dgFishingFishTex_0014D0 "__OTR__objects/object_fish/gFishingFishTex_0014D0" +static const ALIGN_ASSET(2) char gFishingFishTex_0014D0[] = dgFishingFishTex_0014D0; + +#define dgFishingFishTex_0016D0 "__OTR__objects/object_fish/gFishingFishTex_0016D0" +static const ALIGN_ASSET(2) char gFishingFishTex_0016D0[] = dgFishingFishTex_0016D0; + +#define dgFishingFishTex_0018D0 "__OTR__objects/object_fish/gFishingFishTex_0018D0" +static const ALIGN_ASSET(2) char gFishingFishTex_0018D0[] = dgFishingFishTex_0018D0; + +#define dgFishingFishTex_001AD0 "__OTR__objects/object_fish/gFishingFishTex_001AD0" +static const ALIGN_ASSET(2) char gFishingFishTex_001AD0[] = dgFishingFishTex_001AD0; + +#define dgFishingFishTex_0022D0 "__OTR__objects/object_fish/gFishingFishTex_0022D0" +static const ALIGN_ASSET(2) char gFishingFishTex_0022D0[] = dgFishingFishTex_0022D0; + +#define dgFishingFishTex_0024D0 "__OTR__objects/object_fish/gFishingFishTex_0024D0" +static const ALIGN_ASSET(2) char gFishingFishTex_0024D0[] = dgFishingFishTex_0024D0; + +#define dgFishingFishTex_0026D0 "__OTR__objects/object_fish/gFishingFishTex_0026D0" +static const ALIGN_ASSET(2) char gFishingFishTex_0026D0[] = dgFishingFishTex_0026D0; + +#define dgFishingFishSkel "__OTR__objects/object_fish/gFishingFishSkel" +static const ALIGN_ASSET(2) char gFishingFishSkel[] = dgFishingFishSkel; + +#define dgFishingOldLureHookTex "__OTR__objects/object_fish/gFishingOldLureHookTex" +static const ALIGN_ASSET(2) char gFishingOldLureHookTex[] = dgFishingOldLureHookTex; + +#define dgFishingOldLureFloatTex "__OTR__objects/object_fish/gFishingOldLureFloatTex" +static const ALIGN_ASSET(2) char gFishingOldLureFloatTex[] = dgFishingOldLureFloatTex; + +#define dgFishingOldLureDL "__OTR__objects/object_fish/gFishingOldLureDL" +static const ALIGN_ASSET(2) char gFishingOldLureDL[] = dgFishingOldLureDL; + +#define dgFishingStreamSplashTile1Tex "__OTR__objects/object_fish/gFishingStreamSplashTile1Tex" +static const ALIGN_ASSET(2) char gFishingStreamSplashTile1Tex[] = dgFishingStreamSplashTile1Tex; + +#define dgFishingStreamSplashTile2Tex "__OTR__objects/object_fish/gFishingStreamSplashTile2Tex" +static const ALIGN_ASSET(2) char gFishingStreamSplashTile2Tex[] = dgFishingStreamSplashTile2Tex; + +#define dgFishingStreamSplashDL "__OTR__objects/object_fish/gFishingStreamSplashDL" +static const ALIGN_ASSET(2) char gFishingStreamSplashDL[] = dgFishingStreamSplashDL; + +#define dgFishingBubbleTex "__OTR__objects/object_fish/gFishingBubbleTex" +static const ALIGN_ASSET(2) char gFishingBubbleTex[] = dgFishingBubbleTex; + +#define dgFishingBubbleMaterialDL "__OTR__objects/object_fish/gFishingBubbleMaterialDL" +static const ALIGN_ASSET(2) char gFishingBubbleMaterialDL[] = dgFishingBubbleMaterialDL; + +#define dgFishingBubbleModelDL "__OTR__objects/object_fish/gFishingBubbleModelDL" +static const ALIGN_ASSET(2) char gFishingBubbleModelDL[] = dgFishingBubbleModelDL; + +#define dgFishingDustSplashTex "__OTR__objects/object_fish/gFishingDustSplashTex" +static const ALIGN_ASSET(2) char gFishingDustSplashTex[] = dgFishingDustSplashTex; + +#define dgFishingDustSplashMaterialDL "__OTR__objects/object_fish/gFishingDustSplashMaterialDL" +static const ALIGN_ASSET(2) char gFishingDustSplashMaterialDL[] = dgFishingDustSplashMaterialDL; + +#define dgFishingDustSplashModelDL "__OTR__objects/object_fish/gFishingDustSplashModelDL" +static const ALIGN_ASSET(2) char gFishingDustSplashModelDL[] = dgFishingDustSplashModelDL; + +#define dgFishingUnusedMaterialDL "__OTR__objects/object_fish/gFishingUnusedMaterialDL" +static const ALIGN_ASSET(2) char gFishingUnusedMaterialDL[] = dgFishingUnusedMaterialDL; + +#define dgFishingLineModelDL "__OTR__objects/object_fish/gFishingLineModelDL" +static const ALIGN_ASSET(2) char gFishingLineModelDL[] = dgFishingLineModelDL; + +#define dgFishingRainDropModelDL "__OTR__objects/object_fish/gFishingRainDropModelDL" +static const ALIGN_ASSET(2) char gFishingRainDropModelDL[] = dgFishingRainDropModelDL; + +#define dgFishingRainSplashTex "__OTR__objects/object_fish/gFishingRainSplashTex" +static const ALIGN_ASSET(2) char gFishingRainSplashTex[] = dgFishingRainSplashTex; + +#define dgFishingRainSplashMaterialDL "__OTR__objects/object_fish/gFishingRainSplashMaterialDL" +static const ALIGN_ASSET(2) char gFishingRainSplashMaterialDL[] = dgFishingRainSplashMaterialDL; + +#define dgFishingRainSplashModelDL "__OTR__objects/object_fish/gFishingRainSplashModelDL" +static const ALIGN_ASSET(2) char gFishingRainSplashModelDL[] = dgFishingRainSplashModelDL; + +#define dgFishingOwnerAnim "__OTR__objects/object_fish/gFishingOwnerAnim" +static const ALIGN_ASSET(2) char gFishingOwnerAnim[] = dgFishingOwnerAnim; + +#define dgFishingOwnerDL_006F60 "__OTR__objects/object_fish/gFishingOwnerDL_006F60" +static const ALIGN_ASSET(2) char gFishingOwnerDL_006F60[] = dgFishingOwnerDL_006F60; + +#define dgFishingOwnerHairDL "__OTR__objects/object_fish/gFishingOwnerHairDL" +static const ALIGN_ASSET(2) char gFishingOwnerHairDL[] = dgFishingOwnerHairDL; + +#define dgFishingOwnerHatDL "__OTR__objects/object_fish/gFishingOwnerHatDL" +static const ALIGN_ASSET(2) char gFishingOwnerHatDL[] = dgFishingOwnerHatDL; + +#define dgFishingOwnerDL_0076B8 "__OTR__objects/object_fish/gFishingOwnerDL_0076B8" +static const ALIGN_ASSET(2) char gFishingOwnerDL_0076B8[] = dgFishingOwnerDL_0076B8; + +#define dgFishingOwnerDL_007CF8 "__OTR__objects/object_fish/gFishingOwnerDL_007CF8" +static const ALIGN_ASSET(2) char gFishingOwnerDL_007CF8[] = dgFishingOwnerDL_007CF8; + +#define dgFishingOwnerDL_007E48 "__OTR__objects/object_fish/gFishingOwnerDL_007E48" +static const ALIGN_ASSET(2) char gFishingOwnerDL_007E48[] = dgFishingOwnerDL_007E48; + +#define dgFishingOwnerDL_007F78 "__OTR__objects/object_fish/gFishingOwnerDL_007F78" +static const ALIGN_ASSET(2) char gFishingOwnerDL_007F78[] = dgFishingOwnerDL_007F78; + +#define dgFishingOwnerDL_008138 "__OTR__objects/object_fish/gFishingOwnerDL_008138" +static const ALIGN_ASSET(2) char gFishingOwnerDL_008138[] = dgFishingOwnerDL_008138; + +#define dgFishingOwnerDL_008288 "__OTR__objects/object_fish/gFishingOwnerDL_008288" +static const ALIGN_ASSET(2) char gFishingOwnerDL_008288[] = dgFishingOwnerDL_008288; + +#define dgFishingOwnerDL_0083B8 "__OTR__objects/object_fish/gFishingOwnerDL_0083B8" +static const ALIGN_ASSET(2) char gFishingOwnerDL_0083B8[] = dgFishingOwnerDL_0083B8; + +#define dgFishingOwnerSkel "__OTR__objects/object_fish/gFishingOwnerSkel" +static const ALIGN_ASSET(2) char gFishingOwnerSkel[] = dgFishingOwnerSkel; + +#define dgFishingRippleMaterialDL "__OTR__objects/object_fish/gFishingRippleMaterialDL" +static const ALIGN_ASSET(2) char gFishingRippleMaterialDL[] = dgFishingRippleMaterialDL; + +#define dgFishingRippleModelDL "__OTR__objects/object_fish/gFishingRippleModelDL" +static const ALIGN_ASSET(2) char gFishingRippleModelDL[] = dgFishingRippleModelDL; + +#define dgFishingWaterDustTex "__OTR__objects/object_fish/gFishingWaterDustTex" +static const ALIGN_ASSET(2) char gFishingWaterDustTex[] = dgFishingWaterDustTex; + +#define dgFishingWaterDustMaterialDL "__OTR__objects/object_fish/gFishingWaterDustMaterialDL" +static const ALIGN_ASSET(2) char gFishingWaterDustMaterialDL[] = dgFishingWaterDustMaterialDL; + +#define dgFishingWaterDustModelDL "__OTR__objects/object_fish/gFishingWaterDustModelDL" +static const ALIGN_ASSET(2) char gFishingWaterDustModelDL[] = dgFishingWaterDustModelDL; + +#define dgFishingOwnerTLUT "__OTR__objects/object_fish/gFishingOwnerTLUT" +static const ALIGN_ASSET(2) char gFishingOwnerTLUT[] = dgFishingOwnerTLUT; + +#define dgFishingOwnerSkinTex "__OTR__objects/object_fish/gFishingOwnerSkinTex" +static const ALIGN_ASSET(2) char gFishingOwnerSkinTex[] = dgFishingOwnerSkinTex; + +#define dgFishingOwnerHairFullTex "__OTR__objects/object_fish/gFishingOwnerHairFullTex" +static const ALIGN_ASSET(2) char gFishingOwnerHairFullTex[] = dgFishingOwnerHairFullTex; + +#define dgFishingOwnerHairPartialTex "__OTR__objects/object_fish/gFishingOwnerHairPartialTex" +static const ALIGN_ASSET(2) char gFishingOwnerHairPartialTex[] = dgFishingOwnerHairPartialTex; + +#define dgFishingOwnerHearTex "__OTR__objects/object_fish/gFishingOwnerHearTex" +static const ALIGN_ASSET(2) char gFishingOwnerHearTex[] = dgFishingOwnerHearTex; + +#define dgFishingOwnerMouthTex "__OTR__objects/object_fish/gFishingOwnerMouthTex" +static const ALIGN_ASSET(2) char gFishingOwnerMouthTex[] = dgFishingOwnerMouthTex; + +#define dgFishingOwnerNostrilTex "__OTR__objects/object_fish/gFishingOwnerNostrilTex" +static const ALIGN_ASSET(2) char gFishingOwnerNostrilTex[] = dgFishingOwnerNostrilTex; + +#define dgFishingOwnerEyeOpenTex "__OTR__objects/object_fish/gFishingOwnerEyeOpenTex" +static const ALIGN_ASSET(2) char gFishingOwnerEyeOpenTex[] = dgFishingOwnerEyeOpenTex; + +#define dgFishingOwnerEyeHalfTex "__OTR__objects/object_fish/gFishingOwnerEyeHalfTex" +static const ALIGN_ASSET(2) char gFishingOwnerEyeHalfTex[] = dgFishingOwnerEyeHalfTex; + +#define dgFishingOwnerEyeClosedTex "__OTR__objects/object_fish/gFishingOwnerEyeClosedTex" +static const ALIGN_ASSET(2) char gFishingOwnerEyeClosedTex[] = dgFishingOwnerEyeClosedTex; + +#define dgFishingOwnerHatTex "__OTR__objects/object_fish/gFishingOwnerHatTex" +static const ALIGN_ASSET(2) char gFishingOwnerHatTex[] = dgFishingOwnerHatTex; + +#define dgFishingOwnerShirtTex "__OTR__objects/object_fish/gFishingOwnerShirtTex" +static const ALIGN_ASSET(2) char gFishingOwnerShirtTex[] = dgFishingOwnerShirtTex; + +#define dgFishingOwnerFingersTex "__OTR__objects/object_fish/gFishingOwnerFingersTex" +static const ALIGN_ASSET(2) char gFishingOwnerFingersTex[] = dgFishingOwnerFingersTex; + +#define dgFishingOwnerCollarTex "__OTR__objects/object_fish/gFishingOwnerCollarTex" +static const ALIGN_ASSET(2) char gFishingOwnerCollarTex[] = dgFishingOwnerCollarTex; + +#define dgFishingOwnerVestTex "__OTR__objects/object_fish/gFishingOwnerVestTex" +static const ALIGN_ASSET(2) char gFishingOwnerVestTex[] = dgFishingOwnerVestTex; + +#define dgFishingSinkingLureSegmentTex "__OTR__objects/object_fish/gFishingSinkingLureSegmentTex" +static const ALIGN_ASSET(2) char gFishingSinkingLureSegmentTex[] = dgFishingSinkingLureSegmentTex; + +#define dgFishingSinkingLureSegmentMaterialDL "__OTR__objects/object_fish/gFishingSinkingLureSegmentMaterialDL" +static const ALIGN_ASSET(2) char gFishingSinkingLureSegmentMaterialDL[] = dgFishingSinkingLureSegmentMaterialDL; + +#define dgFishingSinkingLureSegmentModelDL "__OTR__objects/object_fish/gFishingSinkingLureSegmentModelDL" +static const ALIGN_ASSET(2) char gFishingSinkingLureSegmentModelDL[] = dgFishingSinkingLureSegmentModelDL; + +#define dgFishingGroupFishTex "__OTR__objects/object_fish/gFishingGroupFishTex" +static const ALIGN_ASSET(2) char gFishingGroupFishTex[] = dgFishingGroupFishTex; + +#define dgFishingGroupFishMaterialDL "__OTR__objects/object_fish/gFishingGroupFishMaterialDL" +static const ALIGN_ASSET(2) char gFishingGroupFishMaterialDL[] = dgFishingGroupFishMaterialDL; + +#define dgFishingGroupFishModelDL "__OTR__objects/object_fish/gFishingGroupFishModelDL" +static const ALIGN_ASSET(2) char gFishingGroupFishModelDL[] = dgFishingGroupFishModelDL; + +#define dgFishingUnusedRockDL "__OTR__objects/object_fish/gFishingUnusedRockDL" +static const ALIGN_ASSET(2) char gFishingUnusedRockDL[] = dgFishingUnusedRockDL; + +#define dgFishingUnusedRockTex "__OTR__objects/object_fish/gFishingUnusedRockTex" +static const ALIGN_ASSET(2) char gFishingUnusedRockTex[] = dgFishingUnusedRockTex; + +#define dgFishingLoachAnim "__OTR__objects/object_fish/gFishingLoachAnim" +static const ALIGN_ASSET(2) char gFishingLoachAnim[] = dgFishingLoachAnim; + +#define dgFishingLoachDL_00DED0 "__OTR__objects/object_fish/gFishingLoachDL_00DED0" +static const ALIGN_ASSET(2) char gFishingLoachDL_00DED0[] = dgFishingLoachDL_00DED0; + +#define dgFishingLoachDL_00DFA8 "__OTR__objects/object_fish/gFishingLoachDL_00DFA8" +static const ALIGN_ASSET(2) char gFishingLoachDL_00DFA8[] = dgFishingLoachDL_00DFA8; + +#define dgFishingLoachDL_00E048 "__OTR__objects/object_fish/gFishingLoachDL_00E048" +static const ALIGN_ASSET(2) char gFishingLoachDL_00E048[] = dgFishingLoachDL_00E048; + +#define dgFishingLoachDL_00E168 "__OTR__objects/object_fish/gFishingLoachDL_00E168" +static const ALIGN_ASSET(2) char gFishingLoachDL_00E168[] = dgFishingLoachDL_00E168; + +#define dgFishingLoachDL_00E460 "__OTR__objects/object_fish/gFishingLoachDL_00E460" +static const ALIGN_ASSET(2) char gFishingLoachDL_00E460[] = dgFishingLoachDL_00E460; + +#define dgFishingLoachDL_00E500 "__OTR__objects/object_fish/gFishingLoachDL_00E500" +static const ALIGN_ASSET(2) char gFishingLoachDL_00E500[] = dgFishingLoachDL_00E500; + +#define dgFishingLoachDL_00E808 "__OTR__objects/object_fish/gFishingLoachDL_00E808" +static const ALIGN_ASSET(2) char gFishingLoachDL_00E808[] = dgFishingLoachDL_00E808; + +#define dgFishingLoachDL_00E8B0 "__OTR__objects/object_fish/gFishingLoachDL_00E8B0" +static const ALIGN_ASSET(2) char gFishingLoachDL_00E8B0[] = dgFishingLoachDL_00E8B0; + +#define dgFishingLoachDL_00EB28 "__OTR__objects/object_fish/gFishingLoachDL_00EB28" +static const ALIGN_ASSET(2) char gFishingLoachDL_00EB28[] = dgFishingLoachDL_00EB28; + +#define dgFishingLoachDL_00EBC8 "__OTR__objects/object_fish/gFishingLoachDL_00EBC8" +static const ALIGN_ASSET(2) char gFishingLoachDL_00EBC8[] = dgFishingLoachDL_00EBC8; + +#define dgFishingLoachDL_00EC68 "__OTR__objects/object_fish/gFishingLoachDL_00EC68" +static const ALIGN_ASSET(2) char gFishingLoachDL_00EC68[] = dgFishingLoachDL_00EC68; + +#define dgFishingLoachTex_00ED28 "__OTR__objects/object_fish/gFishingLoachTex_00ED28" +static const ALIGN_ASSET(2) char gFishingLoachTex_00ED28[] = dgFishingLoachTex_00ED28; + +#define dgFishingLoachTex_00F528 "__OTR__objects/object_fish/gFishingLoachTex_00F528" +static const ALIGN_ASSET(2) char gFishingLoachTex_00F528[] = dgFishingLoachTex_00F528; + +#define dgFishingLoachTex_00FD28 "__OTR__objects/object_fish/gFishingLoachTex_00FD28" +static const ALIGN_ASSET(2) char gFishingLoachTex_00FD28[] = dgFishingLoachTex_00FD28; + +#define dgFishingLoachTex_010528 "__OTR__objects/object_fish/gFishingLoachTex_010528" +static const ALIGN_ASSET(2) char gFishingLoachTex_010528[] = dgFishingLoachTex_010528; + +#define dgFishingLoachTex_010D28 "__OTR__objects/object_fish/gFishingLoachTex_010D28" +static const ALIGN_ASSET(2) char gFishingLoachTex_010D28[] = dgFishingLoachTex_010D28; + +#define dgFishingLoachTex_010DA8 "__OTR__objects/object_fish/gFishingLoachTex_010DA8" +static const ALIGN_ASSET(2) char gFishingLoachTex_010DA8[] = dgFishingLoachTex_010DA8; + +#define dgFishingLoachSkel "__OTR__objects/object_fish/gFishingLoachSkel" +static const ALIGN_ASSET(2) char gFishingLoachSkel[] = dgFishingLoachSkel; + +#define dgFishingRodSegmentStripTex "__OTR__objects/object_fish/gFishingRodSegmentStripTex" +static const ALIGN_ASSET(2) char gFishingRodSegmentStripTex[] = dgFishingRodSegmentStripTex; + +#define dgFishingRodSegmentBlackTex "__OTR__objects/object_fish/gFishingRodSegmentBlackTex" +static const ALIGN_ASSET(2) char gFishingRodSegmentBlackTex[] = dgFishingRodSegmentBlackTex; + +#define dgFishingRodSegmentWhiteTex "__OTR__objects/object_fish/gFishingRodSegmentWhiteTex" +static const ALIGN_ASSET(2) char gFishingRodSegmentWhiteTex[] = dgFishingRodSegmentWhiteTex; + +#define dgFishingRodMaterialDL "__OTR__objects/object_fish/gFishingRodMaterialDL" +static const ALIGN_ASSET(2) char gFishingRodMaterialDL[] = dgFishingRodMaterialDL; + +#define dgFishingRodSegmentDL "__OTR__objects/object_fish/gFishingRodSegmentDL" +static const ALIGN_ASSET(2) char gFishingRodSegmentDL[] = dgFishingRodSegmentDL; + +#define dgFishingLureHookTex "__OTR__objects/object_fish/gFishingLureHookTex" +static const ALIGN_ASSET(2) char gFishingLureHookTex[] = dgFishingLureHookTex; + +#define dgFishingLureFloatTex "__OTR__objects/object_fish/gFishingLureFloatTex" +static const ALIGN_ASSET(2) char gFishingLureFloatTex[] = dgFishingLureFloatTex; + +#define dgFishingLureHookDL "__OTR__objects/object_fish/gFishingLureHookDL" +static const ALIGN_ASSET(2) char gFishingLureHookDL[] = dgFishingLureHookDL; + +#define dgFishingLureFloatDL "__OTR__objects/object_fish/gFishingLureFloatDL" +static const ALIGN_ASSET(2) char gFishingLureFloatDL[] = dgFishingLureFloatDL; + +#define dgFishingLilyPadTex "__OTR__objects/object_fish/gFishingLilyPadTex" +static const ALIGN_ASSET(2) char gFishingLilyPadTex[] = dgFishingLilyPadTex; + +#define dgFishingRockTex "__OTR__objects/object_fish/gFishingRockTex" +static const ALIGN_ASSET(2) char gFishingRockTex[] = dgFishingRockTex; + +#define dgFishingLilyPadMaterialDL "__OTR__objects/object_fish/gFishingLilyPadMaterialDL" +static const ALIGN_ASSET(2) char gFishingLilyPadMaterialDL[] = dgFishingLilyPadMaterialDL; + +#define dgFishingLilyPadModelDL "__OTR__objects/object_fish/gFishingLilyPadModelDL" +static const ALIGN_ASSET(2) char gFishingLilyPadModelDL[] = dgFishingLilyPadModelDL; + +#define dgFishingRockMaterialDL "__OTR__objects/object_fish/gFishingRockMaterialDL" +static const ALIGN_ASSET(2) char gFishingRockMaterialDL[] = dgFishingRockMaterialDL; + +#define dgFishingRockModelDL "__OTR__objects/object_fish/gFishingRockModelDL" +static const ALIGN_ASSET(2) char gFishingRockModelDL[] = dgFishingRockModelDL; + +#define dgFishingWoodPostTex "__OTR__objects/object_fish/gFishingWoodPostTex" +static const ALIGN_ASSET(2) char gFishingWoodPostTex[] = dgFishingWoodPostTex; + +#define dgFishingWoodPostMaterialDL "__OTR__objects/object_fish/gFishingWoodPostMaterialDL" +static const ALIGN_ASSET(2) char gFishingWoodPostMaterialDL[] = dgFishingWoodPostMaterialDL; + +#define dgFishingWoodPostModelDL "__OTR__objects/object_fish/gFishingWoodPostModelDL" +static const ALIGN_ASSET(2) char gFishingWoodPostModelDL[] = dgFishingWoodPostModelDL; + +#define dgFishingReedMaterialDL "__OTR__objects/object_fish/gFishingReedMaterialDL" +static const ALIGN_ASSET(2) char gFishingReedMaterialDL[] = dgFishingReedMaterialDL; + +#define dgFishingReedModelDL "__OTR__objects/object_fish/gFishingReedModelDL" +static const ALIGN_ASSET(2) char gFishingReedModelDL[] = dgFishingReedModelDL; + +#define dgFishingAquariumBottomTex "__OTR__objects/object_fish/gFishingAquariumBottomTex" +static const ALIGN_ASSET(2) char gFishingAquariumBottomTex[] = dgFishingAquariumBottomTex; + +#define dgFishingAquariumWaterTex "__OTR__objects/object_fish/gFishingAquariumWaterTex" +static const ALIGN_ASSET(2) char gFishingAquariumWaterTex[] = dgFishingAquariumWaterTex; + +#define dgFishingAquariumGlassTex "__OTR__objects/object_fish/gFishingAquariumGlassTex" +static const ALIGN_ASSET(2) char gFishingAquariumGlassTex[] = dgFishingAquariumGlassTex; + +#define dgFishingAquariumBottomDL "__OTR__objects/object_fish/gFishingAquariumBottomDL" +static const ALIGN_ASSET(2) char gFishingAquariumBottomDL[] = dgFishingAquariumBottomDL; + +#define dgFishingAquariumContainerDL "__OTR__objects/object_fish/gFishingAquariumContainerDL" +static const ALIGN_ASSET(2) char gFishingAquariumContainerDL[] = dgFishingAquariumContainerDL; \ No newline at end of file diff --git a/soh/assets/objects/object_fr/object_fr.h b/soh/assets/objects/object_fr/object_fr.h index ded8a050a..ad53708cf 100644 --- a/soh/assets/objects/object_fr/object_fr.h +++ b/soh/assets/objects/object_fr/object_fr.h @@ -1,268 +1,117 @@ #pragma once -#define dobject_fr_Anim_0007BC "__OTR__objects/object_fr/object_fr_Anim_0007BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Anim_0007BC[] = dobject_fr_Anim_0007BC; -#else -static const char object_fr_Anim_0007BC[] __attribute__((aligned (2))) = dobject_fr_Anim_0007BC; -#endif - -#define dobject_fr_Anim_0011C0 "__OTR__objects/object_fr/object_fr_Anim_0011C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Anim_0011C0[] = dobject_fr_Anim_0011C0; -#else -static const char object_fr_Anim_0011C0[] __attribute__((aligned (2))) = dobject_fr_Anim_0011C0; -#endif - -#define dobject_fr_Anim_001534 "__OTR__objects/object_fr/object_fr_Anim_001534" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Anim_001534[] = dobject_fr_Anim_001534; -#else -static const char object_fr_Anim_001534[] __attribute__((aligned (2))) = dobject_fr_Anim_001534; -#endif - -#define dobject_fr_Tex_001550 "__OTR__objects/object_fr/object_fr_Tex_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_001550[] = dobject_fr_Tex_001550; -#else -static const char object_fr_Tex_001550[] __attribute__((aligned (2))) = dobject_fr_Tex_001550; -#endif - -#define dobject_fr_Blob_001D50 "__OTR__objects/object_fr/object_fr_Blob_001D50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Blob_001D50[] = dobject_fr_Blob_001D50; -#else -static const char object_fr_Blob_001D50[] __attribute__((aligned (2))) = dobject_fr_Blob_001D50; -#endif - -#define dobject_fr_Tex_003AA0 "__OTR__objects/object_fr/object_fr_Tex_003AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_003AA0[] = dobject_fr_Tex_003AA0; -#else -static const char object_fr_Tex_003AA0[] __attribute__((aligned (2))) = dobject_fr_Tex_003AA0; -#endif - -#define dobject_fr_Tex_003BA0 "__OTR__objects/object_fr/object_fr_Tex_003BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_003BA0[] = dobject_fr_Tex_003BA0; -#else -static const char object_fr_Tex_003BA0[] __attribute__((aligned (2))) = dobject_fr_Tex_003BA0; -#endif - -#define dobject_fr_Tex_0043A0 "__OTR__objects/object_fr/object_fr_Tex_0043A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_0043A0[] = dobject_fr_Tex_0043A0; -#else -static const char object_fr_Tex_0043A0[] __attribute__((aligned (2))) = dobject_fr_Tex_0043A0; -#endif - -#define dobject_fr_Tex_004BA0 "__OTR__objects/object_fr/object_fr_Tex_004BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_004BA0[] = dobject_fr_Tex_004BA0; -#else -static const char object_fr_Tex_004BA0[] __attribute__((aligned (2))) = dobject_fr_Tex_004BA0; -#endif - -#define dobject_fr_Tex_004DA0 "__OTR__objects/object_fr/object_fr_Tex_004DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_004DA0[] = dobject_fr_Tex_004DA0; -#else -static const char object_fr_Tex_004DA0[] __attribute__((aligned (2))) = dobject_fr_Tex_004DA0; -#endif - -#define dobject_fr_Tex_0055A0 "__OTR__objects/object_fr/object_fr_Tex_0055A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_0055A0[] = dobject_fr_Tex_0055A0; -#else -static const char object_fr_Tex_0055A0[] __attribute__((aligned (2))) = dobject_fr_Tex_0055A0; -#endif - -#define dobject_fr_Tex_0059A0 "__OTR__objects/object_fr/object_fr_Tex_0059A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_0059A0[] = dobject_fr_Tex_0059A0; -#else -static const char object_fr_Tex_0059A0[] __attribute__((aligned (2))) = dobject_fr_Tex_0059A0; -#endif - -#define dobject_fr_Tex_005BA0 "__OTR__objects/object_fr/object_fr_Tex_005BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_005BA0[] = dobject_fr_Tex_005BA0; -#else -static const char object_fr_Tex_005BA0[] __attribute__((aligned (2))) = dobject_fr_Tex_005BA0; -#endif - -#define dobject_fr_Tex_005DA0 "__OTR__objects/object_fr/object_fr_Tex_005DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_005DA0[] = dobject_fr_Tex_005DA0; -#else -static const char object_fr_Tex_005DA0[] __attribute__((aligned (2))) = dobject_fr_Tex_005DA0; -#endif - -#define dobject_fr_Tex_0065A0 "__OTR__objects/object_fr/object_fr_Tex_0065A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Tex_0065A0[] = dobject_fr_Tex_0065A0; -#else -static const char object_fr_Tex_0065A0[] __attribute__((aligned (2))) = dobject_fr_Tex_0065A0; -#endif - -#define dobject_fr_DL_008EC0 "__OTR__objects/object_fr/object_fr_DL_008EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_008EC0[] = dobject_fr_DL_008EC0; -#else -static const char object_fr_DL_008EC0[] __attribute__((aligned (2))) = dobject_fr_DL_008EC0; -#endif - -#define dobject_fr_DL_008F60 "__OTR__objects/object_fr/object_fr_DL_008F60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_008F60[] = dobject_fr_DL_008F60; -#else -static const char object_fr_DL_008F60[] __attribute__((aligned (2))) = dobject_fr_DL_008F60; -#endif - -#define dobject_fr_DL_009000 "__OTR__objects/object_fr/object_fr_DL_009000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_009000[] = dobject_fr_DL_009000; -#else -static const char object_fr_DL_009000[] __attribute__((aligned (2))) = dobject_fr_DL_009000; -#endif - -#define dobject_fr_DL_009328 "__OTR__objects/object_fr/object_fr_DL_009328" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_009328[] = dobject_fr_DL_009328; -#else -static const char object_fr_DL_009328[] __attribute__((aligned (2))) = dobject_fr_DL_009328; -#endif - -#define dobject_fr_DL_0093C8 "__OTR__objects/object_fr/object_fr_DL_0093C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_0093C8[] = dobject_fr_DL_0093C8; -#else -static const char object_fr_DL_0093C8[] __attribute__((aligned (2))) = dobject_fr_DL_0093C8; -#endif - -#define dobject_fr_DL_009468 "__OTR__objects/object_fr/object_fr_DL_009468" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_009468[] = dobject_fr_DL_009468; -#else -static const char object_fr_DL_009468[] __attribute__((aligned (2))) = dobject_fr_DL_009468; -#endif - -#define dobject_fr_DL_0095A0 "__OTR__objects/object_fr/object_fr_DL_0095A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_0095A0[] = dobject_fr_DL_0095A0; -#else -static const char object_fr_DL_0095A0[] __attribute__((aligned (2))) = dobject_fr_DL_0095A0; -#endif - -#define dobject_fr_DL_0098B8 "__OTR__objects/object_fr/object_fr_DL_0098B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_0098B8[] = dobject_fr_DL_0098B8; -#else -static const char object_fr_DL_0098B8[] __attribute__((aligned (2))) = dobject_fr_DL_0098B8; -#endif - -#define dobject_fr_DL_009AE0 "__OTR__objects/object_fr/object_fr_DL_009AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_009AE0[] = dobject_fr_DL_009AE0; -#else -static const char object_fr_DL_009AE0[] __attribute__((aligned (2))) = dobject_fr_DL_009AE0; -#endif - -#define dobject_fr_DL_009B80 "__OTR__objects/object_fr/object_fr_DL_009B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_009B80[] = dobject_fr_DL_009B80; -#else -static const char object_fr_DL_009B80[] __attribute__((aligned (2))) = dobject_fr_DL_009B80; -#endif - -#define dobject_fr_DL_009D88 "__OTR__objects/object_fr/object_fr_DL_009D88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_009D88[] = dobject_fr_DL_009D88; -#else -static const char object_fr_DL_009D88[] __attribute__((aligned (2))) = dobject_fr_DL_009D88; -#endif - -#define dobject_fr_DL_009FB0 "__OTR__objects/object_fr/object_fr_DL_009FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_009FB0[] = dobject_fr_DL_009FB0; -#else -static const char object_fr_DL_009FB0[] __attribute__((aligned (2))) = dobject_fr_DL_009FB0; -#endif - -#define dobject_fr_DL_00A050 "__OTR__objects/object_fr/object_fr_DL_00A050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00A050[] = dobject_fr_DL_00A050; -#else -static const char object_fr_DL_00A050[] __attribute__((aligned (2))) = dobject_fr_DL_00A050; -#endif - -#define dobject_fr_DL_00A258 "__OTR__objects/object_fr/object_fr_DL_00A258" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00A258[] = dobject_fr_DL_00A258; -#else -static const char object_fr_DL_00A258[] __attribute__((aligned (2))) = dobject_fr_DL_00A258; -#endif - -#define dobject_fr_DL_00A428 "__OTR__objects/object_fr/object_fr_DL_00A428" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00A428[] = dobject_fr_DL_00A428; -#else -static const char object_fr_DL_00A428[] __attribute__((aligned (2))) = dobject_fr_DL_00A428; -#endif - -#define dobject_fr_DL_00A6B8 "__OTR__objects/object_fr/object_fr_DL_00A6B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00A6B8[] = dobject_fr_DL_00A6B8; -#else -static const char object_fr_DL_00A6B8[] __attribute__((aligned (2))) = dobject_fr_DL_00A6B8; -#endif - -#define dobject_fr_DL_00A758 "__OTR__objects/object_fr/object_fr_DL_00A758" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00A758[] = dobject_fr_DL_00A758; -#else -static const char object_fr_DL_00A758[] __attribute__((aligned (2))) = dobject_fr_DL_00A758; -#endif - -#define dobject_fr_DL_00A978 "__OTR__objects/object_fr/object_fr_DL_00A978" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00A978[] = dobject_fr_DL_00A978; -#else -static const char object_fr_DL_00A978[] __attribute__((aligned (2))) = dobject_fr_DL_00A978; -#endif - -#define dobject_fr_DL_00ABA8 "__OTR__objects/object_fr/object_fr_DL_00ABA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00ABA8[] = dobject_fr_DL_00ABA8; -#else -static const char object_fr_DL_00ABA8[] __attribute__((aligned (2))) = dobject_fr_DL_00ABA8; -#endif - -#define dobject_fr_DL_00AE38 "__OTR__objects/object_fr/object_fr_DL_00AE38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00AE38[] = dobject_fr_DL_00AE38; -#else -static const char object_fr_DL_00AE38[] __attribute__((aligned (2))) = dobject_fr_DL_00AE38; -#endif - -#define dobject_fr_DL_00AED8 "__OTR__objects/object_fr/object_fr_DL_00AED8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00AED8[] = dobject_fr_DL_00AED8; -#else -static const char object_fr_DL_00AED8[] __attribute__((aligned (2))) = dobject_fr_DL_00AED8; -#endif - -#define dobject_fr_DL_00B0F8 "__OTR__objects/object_fr/object_fr_DL_00B0F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_DL_00B0F8[] = dobject_fr_DL_00B0F8; -#else -static const char object_fr_DL_00B0F8[] __attribute__((aligned (2))) = dobject_fr_DL_00B0F8; -#endif - -#define dobject_fr_Skel_00B498 "__OTR__objects/object_fr/object_fr_Skel_00B498" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fr_Skel_00B498[] = dobject_fr_Skel_00B498; -#else -static const char object_fr_Skel_00B498[] __attribute__((aligned (2))) = dobject_fr_Skel_00B498; -#endif - +#include "align_asset_macro.h" + +#define dobject_fr_Anim_0007BC "__OTR__objects/object_fr/object_fr_Anim_0007BC" +static const ALIGN_ASSET(2) char object_fr_Anim_0007BC[] = dobject_fr_Anim_0007BC; + +#define dobject_fr_Anim_0011C0 "__OTR__objects/object_fr/object_fr_Anim_0011C0" +static const ALIGN_ASSET(2) char object_fr_Anim_0011C0[] = dobject_fr_Anim_0011C0; + +#define dobject_fr_Anim_001534 "__OTR__objects/object_fr/object_fr_Anim_001534" +static const ALIGN_ASSET(2) char object_fr_Anim_001534[] = dobject_fr_Anim_001534; + +#define dobject_fr_Tex_001550 "__OTR__objects/object_fr/object_fr_Tex_001550" +static const ALIGN_ASSET(2) char object_fr_Tex_001550[] = dobject_fr_Tex_001550; + +#define dobject_fr_Blob_001D50 "__OTR__objects/object_fr/object_fr_Blob_001D50" +static const ALIGN_ASSET(2) char object_fr_Blob_001D50[] = dobject_fr_Blob_001D50; + +#define dobject_fr_Tex_003AA0 "__OTR__objects/object_fr/object_fr_Tex_003AA0" +static const ALIGN_ASSET(2) char object_fr_Tex_003AA0[] = dobject_fr_Tex_003AA0; + +#define dobject_fr_Tex_003BA0 "__OTR__objects/object_fr/object_fr_Tex_003BA0" +static const ALIGN_ASSET(2) char object_fr_Tex_003BA0[] = dobject_fr_Tex_003BA0; + +#define dobject_fr_Tex_0043A0 "__OTR__objects/object_fr/object_fr_Tex_0043A0" +static const ALIGN_ASSET(2) char object_fr_Tex_0043A0[] = dobject_fr_Tex_0043A0; + +#define dobject_fr_Tex_004BA0 "__OTR__objects/object_fr/object_fr_Tex_004BA0" +static const ALIGN_ASSET(2) char object_fr_Tex_004BA0[] = dobject_fr_Tex_004BA0; + +#define dobject_fr_Tex_004DA0 "__OTR__objects/object_fr/object_fr_Tex_004DA0" +static const ALIGN_ASSET(2) char object_fr_Tex_004DA0[] = dobject_fr_Tex_004DA0; + +#define dobject_fr_Tex_0055A0 "__OTR__objects/object_fr/object_fr_Tex_0055A0" +static const ALIGN_ASSET(2) char object_fr_Tex_0055A0[] = dobject_fr_Tex_0055A0; + +#define dobject_fr_Tex_0059A0 "__OTR__objects/object_fr/object_fr_Tex_0059A0" +static const ALIGN_ASSET(2) char object_fr_Tex_0059A0[] = dobject_fr_Tex_0059A0; + +#define dobject_fr_Tex_005BA0 "__OTR__objects/object_fr/object_fr_Tex_005BA0" +static const ALIGN_ASSET(2) char object_fr_Tex_005BA0[] = dobject_fr_Tex_005BA0; + +#define dobject_fr_Tex_005DA0 "__OTR__objects/object_fr/object_fr_Tex_005DA0" +static const ALIGN_ASSET(2) char object_fr_Tex_005DA0[] = dobject_fr_Tex_005DA0; + +#define dobject_fr_Tex_0065A0 "__OTR__objects/object_fr/object_fr_Tex_0065A0" +static const ALIGN_ASSET(2) char object_fr_Tex_0065A0[] = dobject_fr_Tex_0065A0; + +#define dobject_fr_DL_008EC0 "__OTR__objects/object_fr/object_fr_DL_008EC0" +static const ALIGN_ASSET(2) char object_fr_DL_008EC0[] = dobject_fr_DL_008EC0; + +#define dobject_fr_DL_008F60 "__OTR__objects/object_fr/object_fr_DL_008F60" +static const ALIGN_ASSET(2) char object_fr_DL_008F60[] = dobject_fr_DL_008F60; + +#define dobject_fr_DL_009000 "__OTR__objects/object_fr/object_fr_DL_009000" +static const ALIGN_ASSET(2) char object_fr_DL_009000[] = dobject_fr_DL_009000; + +#define dobject_fr_DL_009328 "__OTR__objects/object_fr/object_fr_DL_009328" +static const ALIGN_ASSET(2) char object_fr_DL_009328[] = dobject_fr_DL_009328; + +#define dobject_fr_DL_0093C8 "__OTR__objects/object_fr/object_fr_DL_0093C8" +static const ALIGN_ASSET(2) char object_fr_DL_0093C8[] = dobject_fr_DL_0093C8; + +#define dobject_fr_DL_009468 "__OTR__objects/object_fr/object_fr_DL_009468" +static const ALIGN_ASSET(2) char object_fr_DL_009468[] = dobject_fr_DL_009468; + +#define dobject_fr_DL_0095A0 "__OTR__objects/object_fr/object_fr_DL_0095A0" +static const ALIGN_ASSET(2) char object_fr_DL_0095A0[] = dobject_fr_DL_0095A0; + +#define dobject_fr_DL_0098B8 "__OTR__objects/object_fr/object_fr_DL_0098B8" +static const ALIGN_ASSET(2) char object_fr_DL_0098B8[] = dobject_fr_DL_0098B8; + +#define dobject_fr_DL_009AE0 "__OTR__objects/object_fr/object_fr_DL_009AE0" +static const ALIGN_ASSET(2) char object_fr_DL_009AE0[] = dobject_fr_DL_009AE0; + +#define dobject_fr_DL_009B80 "__OTR__objects/object_fr/object_fr_DL_009B80" +static const ALIGN_ASSET(2) char object_fr_DL_009B80[] = dobject_fr_DL_009B80; + +#define dobject_fr_DL_009D88 "__OTR__objects/object_fr/object_fr_DL_009D88" +static const ALIGN_ASSET(2) char object_fr_DL_009D88[] = dobject_fr_DL_009D88; + +#define dobject_fr_DL_009FB0 "__OTR__objects/object_fr/object_fr_DL_009FB0" +static const ALIGN_ASSET(2) char object_fr_DL_009FB0[] = dobject_fr_DL_009FB0; + +#define dobject_fr_DL_00A050 "__OTR__objects/object_fr/object_fr_DL_00A050" +static const ALIGN_ASSET(2) char object_fr_DL_00A050[] = dobject_fr_DL_00A050; + +#define dobject_fr_DL_00A258 "__OTR__objects/object_fr/object_fr_DL_00A258" +static const ALIGN_ASSET(2) char object_fr_DL_00A258[] = dobject_fr_DL_00A258; + +#define dobject_fr_DL_00A428 "__OTR__objects/object_fr/object_fr_DL_00A428" +static const ALIGN_ASSET(2) char object_fr_DL_00A428[] = dobject_fr_DL_00A428; + +#define dobject_fr_DL_00A6B8 "__OTR__objects/object_fr/object_fr_DL_00A6B8" +static const ALIGN_ASSET(2) char object_fr_DL_00A6B8[] = dobject_fr_DL_00A6B8; + +#define dobject_fr_DL_00A758 "__OTR__objects/object_fr/object_fr_DL_00A758" +static const ALIGN_ASSET(2) char object_fr_DL_00A758[] = dobject_fr_DL_00A758; + +#define dobject_fr_DL_00A978 "__OTR__objects/object_fr/object_fr_DL_00A978" +static const ALIGN_ASSET(2) char object_fr_DL_00A978[] = dobject_fr_DL_00A978; + +#define dobject_fr_DL_00ABA8 "__OTR__objects/object_fr/object_fr_DL_00ABA8" +static const ALIGN_ASSET(2) char object_fr_DL_00ABA8[] = dobject_fr_DL_00ABA8; + +#define dobject_fr_DL_00AE38 "__OTR__objects/object_fr/object_fr_DL_00AE38" +static const ALIGN_ASSET(2) char object_fr_DL_00AE38[] = dobject_fr_DL_00AE38; + +#define dobject_fr_DL_00AED8 "__OTR__objects/object_fr/object_fr_DL_00AED8" +static const ALIGN_ASSET(2) char object_fr_DL_00AED8[] = dobject_fr_DL_00AED8; + +#define dobject_fr_DL_00B0F8 "__OTR__objects/object_fr/object_fr_DL_00B0F8" +static const ALIGN_ASSET(2) char object_fr_DL_00B0F8[] = dobject_fr_DL_00B0F8; + +#define dobject_fr_Skel_00B498 "__OTR__objects/object_fr/object_fr_Skel_00B498" +static const ALIGN_ASSET(2) char object_fr_Skel_00B498[] = dobject_fr_Skel_00B498; \ No newline at end of file diff --git a/soh/assets/objects/object_fu/object_fu.h b/soh/assets/objects/object_fu/object_fu.h index a4604b55c..f177eb414 100644 --- a/soh/assets/objects/object_fu/object_fu.h +++ b/soh/assets/objects/object_fu/object_fu.h @@ -1,233 +1,102 @@ #pragma once -#define dgWindmillManPlayAndMoveHeadAnim "__OTR__objects/object_fu/gWindmillManPlayAndMoveHeadAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManPlayAndMoveHeadAnim[] = dgWindmillManPlayAndMoveHeadAnim; -#else -static const char gWindmillManPlayAndMoveHeadAnim[] __attribute__((aligned (2))) = dgWindmillManPlayAndMoveHeadAnim; -#endif - -#define dgWindmillManPlayStillAnim "__OTR__objects/object_fu/gWindmillManPlayStillAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManPlayStillAnim[] = dgWindmillManPlayStillAnim; -#else -static const char gWindmillManPlayStillAnim[] __attribute__((aligned (2))) = dgWindmillManPlayStillAnim; -#endif - -#define dgWindmillManHornDL "__OTR__objects/object_fu/gWindmillManHornDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManHornDL[] = dgWindmillManHornDL; -#else -static const char gWindmillManHornDL[] __attribute__((aligned (2))) = dgWindmillManHornDL; -#endif - -#define dgWindmillManChestAndMusicBoxPipeDL "__OTR__objects/object_fu/gWindmillManChestAndMusicBoxPipeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManChestAndMusicBoxPipeDL[] = dgWindmillManChestAndMusicBoxPipeDL; -#else -static const char gWindmillManChestAndMusicBoxPipeDL[] __attribute__((aligned (2))) = dgWindmillManChestAndMusicBoxPipeDL; -#endif - -#define dgWindmillManHeadDL "__OTR__objects/object_fu/gWindmillManHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManHeadDL[] = dgWindmillManHeadDL; -#else -static const char gWindmillManHeadDL[] __attribute__((aligned (2))) = dgWindmillManHeadDL; -#endif - -#define dgWindmillManRightShoulderDL "__OTR__objects/object_fu/gWindmillManRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManRightShoulderDL[] = dgWindmillManRightShoulderDL; -#else -static const char gWindmillManRightShoulderDL[] __attribute__((aligned (2))) = dgWindmillManRightShoulderDL; -#endif - -#define dgWindmillManRightArmDL "__OTR__objects/object_fu/gWindmillManRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManRightArmDL[] = dgWindmillManRightArmDL; -#else -static const char gWindmillManRightArmDL[] __attribute__((aligned (2))) = dgWindmillManRightArmDL; -#endif - -#define dgWindmillManRightHandAndCrankDL "__OTR__objects/object_fu/gWindmillManRightHandAndCrankDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManRightHandAndCrankDL[] = dgWindmillManRightHandAndCrankDL; -#else -static const char gWindmillManRightHandAndCrankDL[] __attribute__((aligned (2))) = dgWindmillManRightHandAndCrankDL; -#endif - -#define dgWindmillManLeftArmAndMusicBoxDL "__OTR__objects/object_fu/gWindmillManLeftArmAndMusicBoxDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManLeftArmAndMusicBoxDL[] = dgWindmillManLeftArmAndMusicBoxDL; -#else -static const char gWindmillManLeftArmAndMusicBoxDL[] __attribute__((aligned (2))) = dgWindmillManLeftArmAndMusicBoxDL; -#endif - -#define dgWindmillManBlueTriangleDL "__OTR__objects/object_fu/gWindmillManBlueTriangleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManBlueTriangleDL[] = dgWindmillManBlueTriangleDL; -#else -static const char gWindmillManBlueTriangleDL[] __attribute__((aligned (2))) = dgWindmillManBlueTriangleDL; -#endif - -#define dgWindmillManTorsoDL "__OTR__objects/object_fu/gWindmillManTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManTorsoDL[] = dgWindmillManTorsoDL; -#else -static const char gWindmillManTorsoDL[] __attribute__((aligned (2))) = dgWindmillManTorsoDL; -#endif - -#define dgWindmillManRightThighDL "__OTR__objects/object_fu/gWindmillManRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManRightThighDL[] = dgWindmillManRightThighDL; -#else -static const char gWindmillManRightThighDL[] __attribute__((aligned (2))) = dgWindmillManRightThighDL; -#endif - -#define dgWindmillManRightLegDL "__OTR__objects/object_fu/gWindmillManRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManRightLegDL[] = dgWindmillManRightLegDL; -#else -static const char gWindmillManRightLegDL[] __attribute__((aligned (2))) = dgWindmillManRightLegDL; -#endif - -#define dgWindmillManRightFootDL "__OTR__objects/object_fu/gWindmillManRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManRightFootDL[] = dgWindmillManRightFootDL; -#else -static const char gWindmillManRightFootDL[] __attribute__((aligned (2))) = dgWindmillManRightFootDL; -#endif - -#define dgWindmillManLeftThighDL "__OTR__objects/object_fu/gWindmillManLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManLeftThighDL[] = dgWindmillManLeftThighDL; -#else -static const char gWindmillManLeftThighDL[] __attribute__((aligned (2))) = dgWindmillManLeftThighDL; -#endif - -#define dgWindmillManLeftLegDL "__OTR__objects/object_fu/gWindmillManLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManLeftLegDL[] = dgWindmillManLeftLegDL; -#else -static const char gWindmillManLeftLegDL[] __attribute__((aligned (2))) = dgWindmillManLeftLegDL; -#endif - -#define dgWindmillManLeftFootDL "__OTR__objects/object_fu/gWindmillManLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManLeftFootDL[] = dgWindmillManLeftFootDL; -#else -static const char gWindmillManLeftFootDL[] __attribute__((aligned (2))) = dgWindmillManLeftFootDL; -#endif - -#define dgWindmillManClothesTLUT "__OTR__objects/object_fu/gWindmillManClothesTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManClothesTLUT[] = dgWindmillManClothesTLUT; -#else -static const char gWindmillManClothesTLUT[] __attribute__((aligned (2))) = dgWindmillManClothesTLUT; -#endif - -#define dgWindmillManSkinTLUT "__OTR__objects/object_fu/gWindmillManSkinTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManSkinTLUT[] = dgWindmillManSkinTLUT; -#else -static const char gWindmillManSkinTLUT[] __attribute__((aligned (2))) = dgWindmillManSkinTLUT; -#endif - -#define dgWindmillManPantsTex "__OTR__objects/object_fu/gWindmillManPantsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManPantsTex[] = dgWindmillManPantsTex; -#else -static const char gWindmillManPantsTex[] __attribute__((aligned (2))) = dgWindmillManPantsTex; -#endif - -#define dgWindmillManHeadSkinTex "__OTR__objects/object_fu/gWindmillManHeadSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManHeadSkinTex[] = dgWindmillManHeadSkinTex; -#else -static const char gWindmillManHeadSkinTex[] __attribute__((aligned (2))) = dgWindmillManHeadSkinTex; -#endif - -#define dgWindmillManMusicBoxTex "__OTR__objects/object_fu/gWindmillManMusicBoxTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManMusicBoxTex[] = dgWindmillManMusicBoxTex; -#else -static const char gWindmillManMusicBoxTex[] __attribute__((aligned (2))) = dgWindmillManMusicBoxTex; -#endif - -#define dgWindmillManFingersAndToesTex "__OTR__objects/object_fu/gWindmillManFingersAndToesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManFingersAndToesTex[] = dgWindmillManFingersAndToesTex; -#else -static const char gWindmillManFingersAndToesTex[] __attribute__((aligned (2))) = dgWindmillManFingersAndToesTex; -#endif - -#define dgWindmillManEarTex "__OTR__objects/object_fu/gWindmillManEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManEarTex[] = dgWindmillManEarTex; -#else -static const char gWindmillManEarTex[] __attribute__((aligned (2))) = dgWindmillManEarTex; -#endif - -#define dgWindmillManUpperHornAndCrankTex "__OTR__objects/object_fu/gWindmillManUpperHornAndCrankTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManUpperHornAndCrankTex[] = dgWindmillManUpperHornAndCrankTex; -#else -static const char gWindmillManUpperHornAndCrankTex[] __attribute__((aligned (2))) = dgWindmillManUpperHornAndCrankTex; -#endif - -#define dgWindmillManShirtTex "__OTR__objects/object_fu/gWindmillManShirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManShirtTex[] = dgWindmillManShirtTex; -#else -static const char gWindmillManShirtTex[] __attribute__((aligned (2))) = dgWindmillManShirtTex; -#endif - -#define dgWindmillManHornAndPipeTex "__OTR__objects/object_fu/gWindmillManHornAndPipeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManHornAndPipeTex[] = dgWindmillManHornAndPipeTex; -#else -static const char gWindmillManHornAndPipeTex[] __attribute__((aligned (2))) = dgWindmillManHornAndPipeTex; -#endif - -#define dgWindmillManEyeClosedTex "__OTR__objects/object_fu/gWindmillManEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManEyeClosedTex[] = dgWindmillManEyeClosedTex; -#else -static const char gWindmillManEyeClosedTex[] __attribute__((aligned (2))) = dgWindmillManEyeClosedTex; -#endif - -#define dgWindmillManEyeAngryTex "__OTR__objects/object_fu/gWindmillManEyeAngryTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManEyeAngryTex[] = dgWindmillManEyeAngryTex; -#else -static const char gWindmillManEyeAngryTex[] __attribute__((aligned (2))) = dgWindmillManEyeAngryTex; -#endif - -#define dgWindmillManMouthOpenTex "__OTR__objects/object_fu/gWindmillManMouthOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManMouthOpenTex[] = dgWindmillManMouthOpenTex; -#else -static const char gWindmillManMouthOpenTex[] __attribute__((aligned (2))) = dgWindmillManMouthOpenTex; -#endif - -#define dgWindmillManMouthAngryTex "__OTR__objects/object_fu/gWindmillManMouthAngryTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManMouthAngryTex[] = dgWindmillManMouthAngryTex; -#else -static const char gWindmillManMouthAngryTex[] __attribute__((aligned (2))) = dgWindmillManMouthAngryTex; -#endif - -#define dgWindmillManHairTex "__OTR__objects/object_fu/gWindmillManHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManHairTex[] = dgWindmillManHairTex; -#else -static const char gWindmillManHairTex[] __attribute__((aligned (2))) = dgWindmillManHairTex; -#endif - -#define dgWindmillManSkel "__OTR__objects/object_fu/gWindmillManSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillManSkel[] = dgWindmillManSkel; -#else -static const char gWindmillManSkel[] __attribute__((aligned (2))) = dgWindmillManSkel; -#endif - +#include "align_asset_macro.h" + +#define dgWindmillManPlayAndMoveHeadAnim "__OTR__objects/object_fu/gWindmillManPlayAndMoveHeadAnim" +static const ALIGN_ASSET(2) char gWindmillManPlayAndMoveHeadAnim[] = dgWindmillManPlayAndMoveHeadAnim; + +#define dgWindmillManPlayStillAnim "__OTR__objects/object_fu/gWindmillManPlayStillAnim" +static const ALIGN_ASSET(2) char gWindmillManPlayStillAnim[] = dgWindmillManPlayStillAnim; + +#define dgWindmillManHornDL "__OTR__objects/object_fu/gWindmillManHornDL" +static const ALIGN_ASSET(2) char gWindmillManHornDL[] = dgWindmillManHornDL; + +#define dgWindmillManChestAndMusicBoxPipeDL "__OTR__objects/object_fu/gWindmillManChestAndMusicBoxPipeDL" +static const ALIGN_ASSET(2) char gWindmillManChestAndMusicBoxPipeDL[] = dgWindmillManChestAndMusicBoxPipeDL; + +#define dgWindmillManHeadDL "__OTR__objects/object_fu/gWindmillManHeadDL" +static const ALIGN_ASSET(2) char gWindmillManHeadDL[] = dgWindmillManHeadDL; + +#define dgWindmillManRightShoulderDL "__OTR__objects/object_fu/gWindmillManRightShoulderDL" +static const ALIGN_ASSET(2) char gWindmillManRightShoulderDL[] = dgWindmillManRightShoulderDL; + +#define dgWindmillManRightArmDL "__OTR__objects/object_fu/gWindmillManRightArmDL" +static const ALIGN_ASSET(2) char gWindmillManRightArmDL[] = dgWindmillManRightArmDL; + +#define dgWindmillManRightHandAndCrankDL "__OTR__objects/object_fu/gWindmillManRightHandAndCrankDL" +static const ALIGN_ASSET(2) char gWindmillManRightHandAndCrankDL[] = dgWindmillManRightHandAndCrankDL; + +#define dgWindmillManLeftArmAndMusicBoxDL "__OTR__objects/object_fu/gWindmillManLeftArmAndMusicBoxDL" +static const ALIGN_ASSET(2) char gWindmillManLeftArmAndMusicBoxDL[] = dgWindmillManLeftArmAndMusicBoxDL; + +#define dgWindmillManBlueTriangleDL "__OTR__objects/object_fu/gWindmillManBlueTriangleDL" +static const ALIGN_ASSET(2) char gWindmillManBlueTriangleDL[] = dgWindmillManBlueTriangleDL; + +#define dgWindmillManTorsoDL "__OTR__objects/object_fu/gWindmillManTorsoDL" +static const ALIGN_ASSET(2) char gWindmillManTorsoDL[] = dgWindmillManTorsoDL; + +#define dgWindmillManRightThighDL "__OTR__objects/object_fu/gWindmillManRightThighDL" +static const ALIGN_ASSET(2) char gWindmillManRightThighDL[] = dgWindmillManRightThighDL; + +#define dgWindmillManRightLegDL "__OTR__objects/object_fu/gWindmillManRightLegDL" +static const ALIGN_ASSET(2) char gWindmillManRightLegDL[] = dgWindmillManRightLegDL; + +#define dgWindmillManRightFootDL "__OTR__objects/object_fu/gWindmillManRightFootDL" +static const ALIGN_ASSET(2) char gWindmillManRightFootDL[] = dgWindmillManRightFootDL; + +#define dgWindmillManLeftThighDL "__OTR__objects/object_fu/gWindmillManLeftThighDL" +static const ALIGN_ASSET(2) char gWindmillManLeftThighDL[] = dgWindmillManLeftThighDL; + +#define dgWindmillManLeftLegDL "__OTR__objects/object_fu/gWindmillManLeftLegDL" +static const ALIGN_ASSET(2) char gWindmillManLeftLegDL[] = dgWindmillManLeftLegDL; + +#define dgWindmillManLeftFootDL "__OTR__objects/object_fu/gWindmillManLeftFootDL" +static const ALIGN_ASSET(2) char gWindmillManLeftFootDL[] = dgWindmillManLeftFootDL; + +#define dgWindmillManClothesTLUT "__OTR__objects/object_fu/gWindmillManClothesTLUT" +static const ALIGN_ASSET(2) char gWindmillManClothesTLUT[] = dgWindmillManClothesTLUT; + +#define dgWindmillManSkinTLUT "__OTR__objects/object_fu/gWindmillManSkinTLUT" +static const ALIGN_ASSET(2) char gWindmillManSkinTLUT[] = dgWindmillManSkinTLUT; + +#define dgWindmillManPantsTex "__OTR__objects/object_fu/gWindmillManPantsTex" +static const ALIGN_ASSET(2) char gWindmillManPantsTex[] = dgWindmillManPantsTex; + +#define dgWindmillManHeadSkinTex "__OTR__objects/object_fu/gWindmillManHeadSkinTex" +static const ALIGN_ASSET(2) char gWindmillManHeadSkinTex[] = dgWindmillManHeadSkinTex; + +#define dgWindmillManMusicBoxTex "__OTR__objects/object_fu/gWindmillManMusicBoxTex" +static const ALIGN_ASSET(2) char gWindmillManMusicBoxTex[] = dgWindmillManMusicBoxTex; + +#define dgWindmillManFingersAndToesTex "__OTR__objects/object_fu/gWindmillManFingersAndToesTex" +static const ALIGN_ASSET(2) char gWindmillManFingersAndToesTex[] = dgWindmillManFingersAndToesTex; + +#define dgWindmillManEarTex "__OTR__objects/object_fu/gWindmillManEarTex" +static const ALIGN_ASSET(2) char gWindmillManEarTex[] = dgWindmillManEarTex; + +#define dgWindmillManUpperHornAndCrankTex "__OTR__objects/object_fu/gWindmillManUpperHornAndCrankTex" +static const ALIGN_ASSET(2) char gWindmillManUpperHornAndCrankTex[] = dgWindmillManUpperHornAndCrankTex; + +#define dgWindmillManShirtTex "__OTR__objects/object_fu/gWindmillManShirtTex" +static const ALIGN_ASSET(2) char gWindmillManShirtTex[] = dgWindmillManShirtTex; + +#define dgWindmillManHornAndPipeTex "__OTR__objects/object_fu/gWindmillManHornAndPipeTex" +static const ALIGN_ASSET(2) char gWindmillManHornAndPipeTex[] = dgWindmillManHornAndPipeTex; + +#define dgWindmillManEyeClosedTex "__OTR__objects/object_fu/gWindmillManEyeClosedTex" +static const ALIGN_ASSET(2) char gWindmillManEyeClosedTex[] = dgWindmillManEyeClosedTex; + +#define dgWindmillManEyeAngryTex "__OTR__objects/object_fu/gWindmillManEyeAngryTex" +static const ALIGN_ASSET(2) char gWindmillManEyeAngryTex[] = dgWindmillManEyeAngryTex; + +#define dgWindmillManMouthOpenTex "__OTR__objects/object_fu/gWindmillManMouthOpenTex" +static const ALIGN_ASSET(2) char gWindmillManMouthOpenTex[] = dgWindmillManMouthOpenTex; + +#define dgWindmillManMouthAngryTex "__OTR__objects/object_fu/gWindmillManMouthAngryTex" +static const ALIGN_ASSET(2) char gWindmillManMouthAngryTex[] = dgWindmillManMouthAngryTex; + +#define dgWindmillManHairTex "__OTR__objects/object_fu/gWindmillManHairTex" +static const ALIGN_ASSET(2) char gWindmillManHairTex[] = dgWindmillManHairTex; + +#define dgWindmillManSkel "__OTR__objects/object_fu/gWindmillManSkel" +static const ALIGN_ASSET(2) char gWindmillManSkel[] = dgWindmillManSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_fw/object_fw.h b/soh/assets/objects/object_fw/object_fw.h index bc95cd7fc..a4667aea3 100644 --- a/soh/assets/objects/object_fw/object_fw.h +++ b/soh/assets/objects/object_fw/object_fw.h @@ -1,352 +1,153 @@ #pragma once -#define dgFlareDancerSkel "__OTR__objects/object_fw/gFlareDancerSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerSkel[] = dgFlareDancerSkel; -#else -static const char gFlareDancerSkel[] __attribute__((aligned (2))) = dgFlareDancerSkel; -#endif - -#define dgFlareDancerUpperRightLegDL "__OTR__objects/object_fw/gFlareDancerUpperRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerUpperRightLegDL[] = dgFlareDancerUpperRightLegDL; -#else -static const char gFlareDancerUpperRightLegDL[] __attribute__((aligned (2))) = dgFlareDancerUpperRightLegDL; -#endif - -#define dgFlareDancerRightStiltDL "__OTR__objects/object_fw/gFlareDancerRightStiltDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerRightStiltDL[] = dgFlareDancerRightStiltDL; -#else -static const char gFlareDancerRightStiltDL[] __attribute__((aligned (2))) = dgFlareDancerRightStiltDL; -#endif - -#define dgFlareDancerLowerRightLegDL "__OTR__objects/object_fw/gFlareDancerLowerRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerLowerRightLegDL[] = dgFlareDancerLowerRightLegDL; -#else -static const char gFlareDancerLowerRightLegDL[] __attribute__((aligned (2))) = dgFlareDancerLowerRightLegDL; -#endif - -#define dgFlareDancerUpperLeftLegDL "__OTR__objects/object_fw/gFlareDancerUpperLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerUpperLeftLegDL[] = dgFlareDancerUpperLeftLegDL; -#else -static const char gFlareDancerUpperLeftLegDL[] __attribute__((aligned (2))) = dgFlareDancerUpperLeftLegDL; -#endif - -#define dgFlareDancerLeftStiltDL "__OTR__objects/object_fw/gFlareDancerLeftStiltDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerLeftStiltDL[] = dgFlareDancerLeftStiltDL; -#else -static const char gFlareDancerLeftStiltDL[] __attribute__((aligned (2))) = dgFlareDancerLeftStiltDL; -#endif - -#define dgFlareDancerLowerLeftLegDL "__OTR__objects/object_fw/gFlareDancerLowerLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerLowerLeftLegDL[] = dgFlareDancerLowerLeftLegDL; -#else -static const char gFlareDancerLowerLeftLegDL[] __attribute__((aligned (2))) = dgFlareDancerLowerLeftLegDL; -#endif - -#define dgFlareDancerDressDL "__OTR__objects/object_fw/gFlareDancerDressDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerDressDL[] = dgFlareDancerDressDL; -#else -static const char gFlareDancerDressDL[] __attribute__((aligned (2))) = dgFlareDancerDressDL; -#endif - -#define dgFlareDancerFuseDL "__OTR__objects/object_fw/gFlareDancerFuseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerFuseDL[] = dgFlareDancerFuseDL; -#else -static const char gFlareDancerFuseDL[] __attribute__((aligned (2))) = dgFlareDancerFuseDL; -#endif - -#define dgFlareDancerRightUpperArmDL "__OTR__objects/object_fw/gFlareDancerRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerRightUpperArmDL[] = dgFlareDancerRightUpperArmDL; -#else -static const char gFlareDancerRightUpperArmDL[] __attribute__((aligned (2))) = dgFlareDancerRightUpperArmDL; -#endif - -#define dgFlareDancerRightForearmDL "__OTR__objects/object_fw/gFlareDancerRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerRightForearmDL[] = dgFlareDancerRightForearmDL; -#else -static const char gFlareDancerRightForearmDL[] __attribute__((aligned (2))) = dgFlareDancerRightForearmDL; -#endif - -#define dgFlareDancerRightSwordDL "__OTR__objects/object_fw/gFlareDancerRightSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerRightSwordDL[] = dgFlareDancerRightSwordDL; -#else -static const char gFlareDancerRightSwordDL[] __attribute__((aligned (2))) = dgFlareDancerRightSwordDL; -#endif - -#define dgFlareDancerLeftUpperArmDL "__OTR__objects/object_fw/gFlareDancerLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerLeftUpperArmDL[] = dgFlareDancerLeftUpperArmDL; -#else -static const char gFlareDancerLeftUpperArmDL[] __attribute__((aligned (2))) = dgFlareDancerLeftUpperArmDL; -#endif - -#define dgFlareDancerLeftForearmDL "__OTR__objects/object_fw/gFlareDancerLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerLeftForearmDL[] = dgFlareDancerLeftForearmDL; -#else -static const char gFlareDancerLeftForearmDL[] __attribute__((aligned (2))) = dgFlareDancerLeftForearmDL; -#endif - -#define dgFlareDancerLeftSwordDL "__OTR__objects/object_fw/gFlareDancerLeftSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerLeftSwordDL[] = dgFlareDancerLeftSwordDL; -#else -static const char gFlareDancerLeftSwordDL[] __attribute__((aligned (2))) = dgFlareDancerLeftSwordDL; -#endif - -#define dgFlareDancerHeadDL "__OTR__objects/object_fw/gFlareDancerHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerHeadDL[] = dgFlareDancerHeadDL; -#else -static const char gFlareDancerHeadDL[] __attribute__((aligned (2))) = dgFlareDancerHeadDL; -#endif - -#define dgFlareDancerTorsoDL "__OTR__objects/object_fw/gFlareDancerTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerTorsoDL[] = dgFlareDancerTorsoDL; -#else -static const char gFlareDancerTorsoDL[] __attribute__((aligned (2))) = dgFlareDancerTorsoDL; -#endif - -#define dgFlareDancerUpperFireHairDL "__OTR__objects/object_fw/gFlareDancerUpperFireHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerUpperFireHairDL[] = dgFlareDancerUpperFireHairDL; -#else -static const char gFlareDancerUpperFireHairDL[] __attribute__((aligned (2))) = dgFlareDancerUpperFireHairDL; -#endif - -#define dgFlareDancerMiddleFireHair1DL "__OTR__objects/object_fw/gFlareDancerMiddleFireHair1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerMiddleFireHair1DL[] = dgFlareDancerMiddleFireHair1DL; -#else -static const char gFlareDancerMiddleFireHair1DL[] __attribute__((aligned (2))) = dgFlareDancerMiddleFireHair1DL; -#endif - -#define dgFlareDancerMiddleFireHair2DL "__OTR__objects/object_fw/gFlareDancerMiddleFireHair2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerMiddleFireHair2DL[] = dgFlareDancerMiddleFireHair2DL; -#else -static const char gFlareDancerMiddleFireHair2DL[] __attribute__((aligned (2))) = dgFlareDancerMiddleFireHair2DL; -#endif - -#define dgFlareDancerMiddleFireHair3DL "__OTR__objects/object_fw/gFlareDancerMiddleFireHair3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerMiddleFireHair3DL[] = dgFlareDancerMiddleFireHair3DL; -#else -static const char gFlareDancerMiddleFireHair3DL[] __attribute__((aligned (2))) = dgFlareDancerMiddleFireHair3DL; -#endif - -#define dgFlareDancerLowerFireHairDL "__OTR__objects/object_fw/gFlareDancerLowerFireHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerLowerFireHairDL[] = dgFlareDancerLowerFireHairDL; -#else -static const char gFlareDancerLowerFireHairDL[] __attribute__((aligned (2))) = dgFlareDancerLowerFireHairDL; -#endif - -#define dgFlareDancerCoreSkel "__OTR__objects/object_fw/gFlareDancerCoreSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreSkel[] = dgFlareDancerCoreSkel; -#else -static const char gFlareDancerCoreSkel[] __attribute__((aligned (2))) = dgFlareDancerCoreSkel; -#endif - -#define dgFlareDancerCoreBodyDL "__OTR__objects/object_fw/gFlareDancerCoreBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreBodyDL[] = dgFlareDancerCoreBodyDL; -#else -static const char gFlareDancerCoreBodyDL[] __attribute__((aligned (2))) = dgFlareDancerCoreBodyDL; -#endif - -#define dgFlareDancerCoreFuseDL "__OTR__objects/object_fw/gFlareDancerCoreFuseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreFuseDL[] = dgFlareDancerCoreFuseDL; -#else -static const char gFlareDancerCoreFuseDL[] __attribute__((aligned (2))) = dgFlareDancerCoreFuseDL; -#endif - -#define dgFlareDancerCoreUpperRightLegDL "__OTR__objects/object_fw/gFlareDancerCoreUpperRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreUpperRightLegDL[] = dgFlareDancerCoreUpperRightLegDL; -#else -static const char gFlareDancerCoreUpperRightLegDL[] __attribute__((aligned (2))) = dgFlareDancerCoreUpperRightLegDL; -#endif - -#define dgFlareDancerCoreLowerRightLegDL "__OTR__objects/object_fw/gFlareDancerCoreLowerRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreLowerRightLegDL[] = dgFlareDancerCoreLowerRightLegDL; -#else -static const char gFlareDancerCoreLowerRightLegDL[] __attribute__((aligned (2))) = dgFlareDancerCoreLowerRightLegDL; -#endif - -#define dgFlareDancerCoreRightFootDL "__OTR__objects/object_fw/gFlareDancerCoreRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreRightFootDL[] = dgFlareDancerCoreRightFootDL; -#else -static const char gFlareDancerCoreRightFootDL[] __attribute__((aligned (2))) = dgFlareDancerCoreRightFootDL; -#endif - -#define dgFlareDancerCoreUpperLeftLegDL "__OTR__objects/object_fw/gFlareDancerCoreUpperLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreUpperLeftLegDL[] = dgFlareDancerCoreUpperLeftLegDL; -#else -static const char gFlareDancerCoreUpperLeftLegDL[] __attribute__((aligned (2))) = dgFlareDancerCoreUpperLeftLegDL; -#endif - -#define dgFlareDancerCoreLowerLeftLegDL "__OTR__objects/object_fw/gFlareDancerCoreLowerLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreLowerLeftLegDL[] = dgFlareDancerCoreLowerLeftLegDL; -#else -static const char gFlareDancerCoreLowerLeftLegDL[] __attribute__((aligned (2))) = dgFlareDancerCoreLowerLeftLegDL; -#endif - -#define dgFlareDancerCoreLeftFootDL "__OTR__objects/object_fw/gFlareDancerCoreLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreLeftFootDL[] = dgFlareDancerCoreLeftFootDL; -#else -static const char gFlareDancerCoreLeftFootDL[] __attribute__((aligned (2))) = dgFlareDancerCoreLeftFootDL; -#endif - -#define dgFlareDancerDL_7928 "__OTR__objects/object_fw/gFlareDancerDL_7928" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerDL_7928[] = dgFlareDancerDL_7928; -#else -static const char gFlareDancerDL_7928[] __attribute__((aligned (2))) = dgFlareDancerDL_7928; -#endif - -#define dgFlareDancerSquareParticleDL "__OTR__objects/object_fw/gFlareDancerSquareParticleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerSquareParticleDL[] = dgFlareDancerSquareParticleDL; -#else -static const char gFlareDancerSquareParticleDL[] __attribute__((aligned (2))) = dgFlareDancerSquareParticleDL; -#endif - -#define dgFlareDancerDL_79F8 "__OTR__objects/object_fw/gFlareDancerDL_79F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerDL_79F8[] = dgFlareDancerDL_79F8; -#else -static const char gFlareDancerDL_79F8[] __attribute__((aligned (2))) = dgFlareDancerDL_79F8; -#endif - -#define dgFlareDancerTriangleParticleDL "__OTR__objects/object_fw/gFlareDancerTriangleParticleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerTriangleParticleDL[] = dgFlareDancerTriangleParticleDL; -#else -static const char gFlareDancerTriangleParticleDL[] __attribute__((aligned (2))) = dgFlareDancerTriangleParticleDL; -#endif - -#define dgFlareDancerBlueFlameTex "__OTR__objects/object_fw/gFlareDancerBlueFlameTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerBlueFlameTex[] = dgFlareDancerBlueFlameTex; -#else -static const char gFlareDancerBlueFlameTex[] __attribute__((aligned (2))) = dgFlareDancerBlueFlameTex; -#endif - -#define dgFlareDancerFireTex "__OTR__objects/object_fw/gFlareDancerFireTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerFireTex[] = dgFlareDancerFireTex; -#else -static const char gFlareDancerFireTex[] __attribute__((aligned (2))) = dgFlareDancerFireTex; -#endif - -#define dgFlareDancerFirePatternTex "__OTR__objects/object_fw/gFlareDancerFirePatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerFirePatternTex[] = dgFlareDancerFirePatternTex; -#else -static const char gFlareDancerFirePatternTex[] __attribute__((aligned (2))) = dgFlareDancerFirePatternTex; -#endif - -#define dgFlareDancerFuseTex "__OTR__objects/object_fw/gFlareDancerFuseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerFuseTex[] = dgFlareDancerFuseTex; -#else -static const char gFlareDancerFuseTex[] __attribute__((aligned (2))) = dgFlareDancerFuseTex; -#endif - -#define dgFlareDancerSwordHiltTex "__OTR__objects/object_fw/gFlareDancerSwordHiltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerSwordHiltTex[] = dgFlareDancerSwordHiltTex; -#else -static const char gFlareDancerSwordHiltTex[] __attribute__((aligned (2))) = dgFlareDancerSwordHiltTex; -#endif - -#define dgFlareDancerCoreBodyTex "__OTR__objects/object_fw/gFlareDancerCoreBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreBodyTex[] = dgFlareDancerCoreBodyTex; -#else -static const char gFlareDancerCoreBodyTex[] __attribute__((aligned (2))) = dgFlareDancerCoreBodyTex; -#endif - -#define dgFlareDancerCastingFireAnim "__OTR__objects/object_fw/gFlareDancerCastingFireAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCastingFireAnim[] = dgFlareDancerCastingFireAnim; -#else -static const char gFlareDancerCastingFireAnim[] __attribute__((aligned (2))) = dgFlareDancerCastingFireAnim; -#endif - -#define dgFlareDancerBackflipAnim "__OTR__objects/object_fw/gFlareDancerBackflipAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerBackflipAnim[] = dgFlareDancerBackflipAnim; -#else -static const char gFlareDancerBackflipAnim[] __attribute__((aligned (2))) = dgFlareDancerBackflipAnim; -#endif - -#define dgFlareDancerGettingUpAnim "__OTR__objects/object_fw/gFlareDancerGettingUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerGettingUpAnim[] = dgFlareDancerGettingUpAnim; -#else -static const char gFlareDancerGettingUpAnim[] __attribute__((aligned (2))) = dgFlareDancerGettingUpAnim; -#endif - -#define dgFlareDancerChasingAnim "__OTR__objects/object_fw/gFlareDancerChasingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerChasingAnim[] = dgFlareDancerChasingAnim; -#else -static const char gFlareDancerChasingAnim[] __attribute__((aligned (2))) = dgFlareDancerChasingAnim; -#endif - -#define dgFlareDancerTwirlAnim "__OTR__objects/object_fw/gFlareDancerTwirlAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerTwirlAnim[] = dgFlareDancerTwirlAnim; -#else -static const char gFlareDancerTwirlAnim[] __attribute__((aligned (2))) = dgFlareDancerTwirlAnim; -#endif - -#define dgFlareDancerCoreInitRunCycleAnim "__OTR__objects/object_fw/gFlareDancerCoreInitRunCycleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreInitRunCycleAnim[] = dgFlareDancerCoreInitRunCycleAnim; -#else -static const char gFlareDancerCoreInitRunCycleAnim[] __attribute__((aligned (2))) = dgFlareDancerCoreInitRunCycleAnim; -#endif - -#define dgFlareDancerCoreRunCycleAnim "__OTR__objects/object_fw/gFlareDancerCoreRunCycleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreRunCycleAnim[] = dgFlareDancerCoreRunCycleAnim; -#else -static const char gFlareDancerCoreRunCycleAnim[] __attribute__((aligned (2))) = dgFlareDancerCoreRunCycleAnim; -#endif - -#define dgFlareDancerCoreEndRunCycleAnim "__OTR__objects/object_fw/gFlareDancerCoreEndRunCycleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlareDancerCoreEndRunCycleAnim[] = dgFlareDancerCoreEndRunCycleAnim; -#else -static const char gFlareDancerCoreEndRunCycleAnim[] __attribute__((aligned (2))) = dgFlareDancerCoreEndRunCycleAnim; -#endif - -#define dobject_fwTex_007A90 "__OTR__objects/object_fw/object_fwTex_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_fwTex_007A90[] = dobject_fwTex_007A90; -#else -static const char object_fwTex_007A90[] __attribute__((aligned (2))) = dobject_fwTex_007A90; -#endif - +#include "align_asset_macro.h" + +#define dgFlareDancerSkel "__OTR__objects/object_fw/gFlareDancerSkel" +static const ALIGN_ASSET(2) char gFlareDancerSkel[] = dgFlareDancerSkel; + +#define dgFlareDancerUpperRightLegDL "__OTR__objects/object_fw/gFlareDancerUpperRightLegDL" +static const ALIGN_ASSET(2) char gFlareDancerUpperRightLegDL[] = dgFlareDancerUpperRightLegDL; + +#define dgFlareDancerRightStiltDL "__OTR__objects/object_fw/gFlareDancerRightStiltDL" +static const ALIGN_ASSET(2) char gFlareDancerRightStiltDL[] = dgFlareDancerRightStiltDL; + +#define dgFlareDancerLowerRightLegDL "__OTR__objects/object_fw/gFlareDancerLowerRightLegDL" +static const ALIGN_ASSET(2) char gFlareDancerLowerRightLegDL[] = dgFlareDancerLowerRightLegDL; + +#define dgFlareDancerUpperLeftLegDL "__OTR__objects/object_fw/gFlareDancerUpperLeftLegDL" +static const ALIGN_ASSET(2) char gFlareDancerUpperLeftLegDL[] = dgFlareDancerUpperLeftLegDL; + +#define dgFlareDancerLeftStiltDL "__OTR__objects/object_fw/gFlareDancerLeftStiltDL" +static const ALIGN_ASSET(2) char gFlareDancerLeftStiltDL[] = dgFlareDancerLeftStiltDL; + +#define dgFlareDancerLowerLeftLegDL "__OTR__objects/object_fw/gFlareDancerLowerLeftLegDL" +static const ALIGN_ASSET(2) char gFlareDancerLowerLeftLegDL[] = dgFlareDancerLowerLeftLegDL; + +#define dgFlareDancerDressDL "__OTR__objects/object_fw/gFlareDancerDressDL" +static const ALIGN_ASSET(2) char gFlareDancerDressDL[] = dgFlareDancerDressDL; + +#define dgFlareDancerFuseDL "__OTR__objects/object_fw/gFlareDancerFuseDL" +static const ALIGN_ASSET(2) char gFlareDancerFuseDL[] = dgFlareDancerFuseDL; + +#define dgFlareDancerRightUpperArmDL "__OTR__objects/object_fw/gFlareDancerRightUpperArmDL" +static const ALIGN_ASSET(2) char gFlareDancerRightUpperArmDL[] = dgFlareDancerRightUpperArmDL; + +#define dgFlareDancerRightForearmDL "__OTR__objects/object_fw/gFlareDancerRightForearmDL" +static const ALIGN_ASSET(2) char gFlareDancerRightForearmDL[] = dgFlareDancerRightForearmDL; + +#define dgFlareDancerRightSwordDL "__OTR__objects/object_fw/gFlareDancerRightSwordDL" +static const ALIGN_ASSET(2) char gFlareDancerRightSwordDL[] = dgFlareDancerRightSwordDL; + +#define dgFlareDancerLeftUpperArmDL "__OTR__objects/object_fw/gFlareDancerLeftUpperArmDL" +static const ALIGN_ASSET(2) char gFlareDancerLeftUpperArmDL[] = dgFlareDancerLeftUpperArmDL; + +#define dgFlareDancerLeftForearmDL "__OTR__objects/object_fw/gFlareDancerLeftForearmDL" +static const ALIGN_ASSET(2) char gFlareDancerLeftForearmDL[] = dgFlareDancerLeftForearmDL; + +#define dgFlareDancerLeftSwordDL "__OTR__objects/object_fw/gFlareDancerLeftSwordDL" +static const ALIGN_ASSET(2) char gFlareDancerLeftSwordDL[] = dgFlareDancerLeftSwordDL; + +#define dgFlareDancerHeadDL "__OTR__objects/object_fw/gFlareDancerHeadDL" +static const ALIGN_ASSET(2) char gFlareDancerHeadDL[] = dgFlareDancerHeadDL; + +#define dgFlareDancerTorsoDL "__OTR__objects/object_fw/gFlareDancerTorsoDL" +static const ALIGN_ASSET(2) char gFlareDancerTorsoDL[] = dgFlareDancerTorsoDL; + +#define dgFlareDancerUpperFireHairDL "__OTR__objects/object_fw/gFlareDancerUpperFireHairDL" +static const ALIGN_ASSET(2) char gFlareDancerUpperFireHairDL[] = dgFlareDancerUpperFireHairDL; + +#define dgFlareDancerMiddleFireHair1DL "__OTR__objects/object_fw/gFlareDancerMiddleFireHair1DL" +static const ALIGN_ASSET(2) char gFlareDancerMiddleFireHair1DL[] = dgFlareDancerMiddleFireHair1DL; + +#define dgFlareDancerMiddleFireHair2DL "__OTR__objects/object_fw/gFlareDancerMiddleFireHair2DL" +static const ALIGN_ASSET(2) char gFlareDancerMiddleFireHair2DL[] = dgFlareDancerMiddleFireHair2DL; + +#define dgFlareDancerMiddleFireHair3DL "__OTR__objects/object_fw/gFlareDancerMiddleFireHair3DL" +static const ALIGN_ASSET(2) char gFlareDancerMiddleFireHair3DL[] = dgFlareDancerMiddleFireHair3DL; + +#define dgFlareDancerLowerFireHairDL "__OTR__objects/object_fw/gFlareDancerLowerFireHairDL" +static const ALIGN_ASSET(2) char gFlareDancerLowerFireHairDL[] = dgFlareDancerLowerFireHairDL; + +#define dgFlareDancerCoreSkel "__OTR__objects/object_fw/gFlareDancerCoreSkel" +static const ALIGN_ASSET(2) char gFlareDancerCoreSkel[] = dgFlareDancerCoreSkel; + +#define dgFlareDancerCoreBodyDL "__OTR__objects/object_fw/gFlareDancerCoreBodyDL" +static const ALIGN_ASSET(2) char gFlareDancerCoreBodyDL[] = dgFlareDancerCoreBodyDL; + +#define dgFlareDancerCoreFuseDL "__OTR__objects/object_fw/gFlareDancerCoreFuseDL" +static const ALIGN_ASSET(2) char gFlareDancerCoreFuseDL[] = dgFlareDancerCoreFuseDL; + +#define dgFlareDancerCoreUpperRightLegDL "__OTR__objects/object_fw/gFlareDancerCoreUpperRightLegDL" +static const ALIGN_ASSET(2) char gFlareDancerCoreUpperRightLegDL[] = dgFlareDancerCoreUpperRightLegDL; + +#define dgFlareDancerCoreLowerRightLegDL "__OTR__objects/object_fw/gFlareDancerCoreLowerRightLegDL" +static const ALIGN_ASSET(2) char gFlareDancerCoreLowerRightLegDL[] = dgFlareDancerCoreLowerRightLegDL; + +#define dgFlareDancerCoreRightFootDL "__OTR__objects/object_fw/gFlareDancerCoreRightFootDL" +static const ALIGN_ASSET(2) char gFlareDancerCoreRightFootDL[] = dgFlareDancerCoreRightFootDL; + +#define dgFlareDancerCoreUpperLeftLegDL "__OTR__objects/object_fw/gFlareDancerCoreUpperLeftLegDL" +static const ALIGN_ASSET(2) char gFlareDancerCoreUpperLeftLegDL[] = dgFlareDancerCoreUpperLeftLegDL; + +#define dgFlareDancerCoreLowerLeftLegDL "__OTR__objects/object_fw/gFlareDancerCoreLowerLeftLegDL" +static const ALIGN_ASSET(2) char gFlareDancerCoreLowerLeftLegDL[] = dgFlareDancerCoreLowerLeftLegDL; + +#define dgFlareDancerCoreLeftFootDL "__OTR__objects/object_fw/gFlareDancerCoreLeftFootDL" +static const ALIGN_ASSET(2) char gFlareDancerCoreLeftFootDL[] = dgFlareDancerCoreLeftFootDL; + +#define dgFlareDancerDL_7928 "__OTR__objects/object_fw/gFlareDancerDL_7928" +static const ALIGN_ASSET(2) char gFlareDancerDL_7928[] = dgFlareDancerDL_7928; + +#define dgFlareDancerSquareParticleDL "__OTR__objects/object_fw/gFlareDancerSquareParticleDL" +static const ALIGN_ASSET(2) char gFlareDancerSquareParticleDL[] = dgFlareDancerSquareParticleDL; + +#define dgFlareDancerDL_79F8 "__OTR__objects/object_fw/gFlareDancerDL_79F8" +static const ALIGN_ASSET(2) char gFlareDancerDL_79F8[] = dgFlareDancerDL_79F8; + +#define dgFlareDancerTriangleParticleDL "__OTR__objects/object_fw/gFlareDancerTriangleParticleDL" +static const ALIGN_ASSET(2) char gFlareDancerTriangleParticleDL[] = dgFlareDancerTriangleParticleDL; + +#define dgFlareDancerBlueFlameTex "__OTR__objects/object_fw/gFlareDancerBlueFlameTex" +static const ALIGN_ASSET(2) char gFlareDancerBlueFlameTex[] = dgFlareDancerBlueFlameTex; + +#define dgFlareDancerFireTex "__OTR__objects/object_fw/gFlareDancerFireTex" +static const ALIGN_ASSET(2) char gFlareDancerFireTex[] = dgFlareDancerFireTex; + +#define dgFlareDancerFirePatternTex "__OTR__objects/object_fw/gFlareDancerFirePatternTex" +static const ALIGN_ASSET(2) char gFlareDancerFirePatternTex[] = dgFlareDancerFirePatternTex; + +#define dgFlareDancerFuseTex "__OTR__objects/object_fw/gFlareDancerFuseTex" +static const ALIGN_ASSET(2) char gFlareDancerFuseTex[] = dgFlareDancerFuseTex; + +#define dgFlareDancerSwordHiltTex "__OTR__objects/object_fw/gFlareDancerSwordHiltTex" +static const ALIGN_ASSET(2) char gFlareDancerSwordHiltTex[] = dgFlareDancerSwordHiltTex; + +#define dgFlareDancerCoreBodyTex "__OTR__objects/object_fw/gFlareDancerCoreBodyTex" +static const ALIGN_ASSET(2) char gFlareDancerCoreBodyTex[] = dgFlareDancerCoreBodyTex; + +#define dgFlareDancerCastingFireAnim "__OTR__objects/object_fw/gFlareDancerCastingFireAnim" +static const ALIGN_ASSET(2) char gFlareDancerCastingFireAnim[] = dgFlareDancerCastingFireAnim; + +#define dgFlareDancerBackflipAnim "__OTR__objects/object_fw/gFlareDancerBackflipAnim" +static const ALIGN_ASSET(2) char gFlareDancerBackflipAnim[] = dgFlareDancerBackflipAnim; + +#define dgFlareDancerGettingUpAnim "__OTR__objects/object_fw/gFlareDancerGettingUpAnim" +static const ALIGN_ASSET(2) char gFlareDancerGettingUpAnim[] = dgFlareDancerGettingUpAnim; + +#define dgFlareDancerChasingAnim "__OTR__objects/object_fw/gFlareDancerChasingAnim" +static const ALIGN_ASSET(2) char gFlareDancerChasingAnim[] = dgFlareDancerChasingAnim; + +#define dgFlareDancerTwirlAnim "__OTR__objects/object_fw/gFlareDancerTwirlAnim" +static const ALIGN_ASSET(2) char gFlareDancerTwirlAnim[] = dgFlareDancerTwirlAnim; + +#define dgFlareDancerCoreInitRunCycleAnim "__OTR__objects/object_fw/gFlareDancerCoreInitRunCycleAnim" +static const ALIGN_ASSET(2) char gFlareDancerCoreInitRunCycleAnim[] = dgFlareDancerCoreInitRunCycleAnim; + +#define dgFlareDancerCoreRunCycleAnim "__OTR__objects/object_fw/gFlareDancerCoreRunCycleAnim" +static const ALIGN_ASSET(2) char gFlareDancerCoreRunCycleAnim[] = dgFlareDancerCoreRunCycleAnim; + +#define dgFlareDancerCoreEndRunCycleAnim "__OTR__objects/object_fw/gFlareDancerCoreEndRunCycleAnim" +static const ALIGN_ASSET(2) char gFlareDancerCoreEndRunCycleAnim[] = dgFlareDancerCoreEndRunCycleAnim; + +#define dobject_fwTex_007A90 "__OTR__objects/object_fw/object_fwTex_007A90" +static const ALIGN_ASSET(2) char object_fwTex_007A90[] = dobject_fwTex_007A90; \ No newline at end of file diff --git a/soh/assets/objects/object_fz/object_fz.h b/soh/assets/objects/object_fz/object_fz.h index 468cf5ada..e676473b9 100644 --- a/soh/assets/objects/object_fz/object_fz.h +++ b/soh/assets/objects/object_fz/object_fz.h @@ -1,58 +1,27 @@ #pragma once -#define dgFreezardIntactDL "__OTR__objects/object_fz/gFreezardIntactDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFreezardIntactDL[] = dgFreezardIntactDL; -#else -static const char gFreezardIntactDL[] __attribute__((aligned (2))) = dgFreezardIntactDL; -#endif - -#define dgFreezardTopRightHornChippedDL "__OTR__objects/object_fz/gFreezardTopRightHornChippedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFreezardTopRightHornChippedDL[] = dgFreezardTopRightHornChippedDL; -#else -static const char gFreezardTopRightHornChippedDL[] __attribute__((aligned (2))) = dgFreezardTopRightHornChippedDL; -#endif - -#define dgFreezardHeadChippedDL "__OTR__objects/object_fz/gFreezardHeadChippedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFreezardHeadChippedDL[] = dgFreezardHeadChippedDL; -#else -static const char gFreezardHeadChippedDL[] __attribute__((aligned (2))) = dgFreezardHeadChippedDL; -#endif - -#define dgFreezardSteamStartDL "__OTR__objects/object_fz/gFreezardSteamStartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFreezardSteamStartDL[] = dgFreezardSteamStartDL; -#else -static const char gFreezardSteamStartDL[] __attribute__((aligned (2))) = dgFreezardSteamStartDL; -#endif - -#define dgFreezardSteamDL "__OTR__objects/object_fz/gFreezardSteamDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFreezardSteamDL[] = dgFreezardSteamDL; -#else -static const char gFreezardSteamDL[] __attribute__((aligned (2))) = dgFreezardSteamDL; -#endif - -#define dgFreezardIceTriangleDL "__OTR__objects/object_fz/gFreezardIceTriangleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFreezardIceTriangleDL[] = dgFreezardIceTriangleDL; -#else -static const char gFreezardIceTriangleDL[] __attribute__((aligned (2))) = dgFreezardIceTriangleDL; -#endif - -#define dgFreezardIceRockDL "__OTR__objects/object_fz/gFreezardIceRockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFreezardIceRockDL[] = dgFreezardIceRockDL; -#else -static const char gFreezardIceRockDL[] __attribute__((aligned (2))) = dgFreezardIceRockDL; -#endif - -#define dgFreezardSteamTex "__OTR__objects/object_fz/gFreezardSteamTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFreezardSteamTex[] = dgFreezardSteamTex; -#else -static const char gFreezardSteamTex[] __attribute__((aligned (2))) = dgFreezardSteamTex; -#endif - +#include "align_asset_macro.h" + +#define dgFreezardIntactDL "__OTR__objects/object_fz/gFreezardIntactDL" +static const ALIGN_ASSET(2) char gFreezardIntactDL[] = dgFreezardIntactDL; + +#define dgFreezardTopRightHornChippedDL "__OTR__objects/object_fz/gFreezardTopRightHornChippedDL" +static const ALIGN_ASSET(2) char gFreezardTopRightHornChippedDL[] = dgFreezardTopRightHornChippedDL; + +#define dgFreezardHeadChippedDL "__OTR__objects/object_fz/gFreezardHeadChippedDL" +static const ALIGN_ASSET(2) char gFreezardHeadChippedDL[] = dgFreezardHeadChippedDL; + +#define dgFreezardSteamStartDL "__OTR__objects/object_fz/gFreezardSteamStartDL" +static const ALIGN_ASSET(2) char gFreezardSteamStartDL[] = dgFreezardSteamStartDL; + +#define dgFreezardSteamDL "__OTR__objects/object_fz/gFreezardSteamDL" +static const ALIGN_ASSET(2) char gFreezardSteamDL[] = dgFreezardSteamDL; + +#define dgFreezardIceTriangleDL "__OTR__objects/object_fz/gFreezardIceTriangleDL" +static const ALIGN_ASSET(2) char gFreezardIceTriangleDL[] = dgFreezardIceTriangleDL; + +#define dgFreezardIceRockDL "__OTR__objects/object_fz/gFreezardIceRockDL" +static const ALIGN_ASSET(2) char gFreezardIceRockDL[] = dgFreezardIceRockDL; + +#define dgFreezardSteamTex "__OTR__objects/object_fz/gFreezardSteamTex" +static const ALIGN_ASSET(2) char gFreezardSteamTex[] = dgFreezardSteamTex; \ No newline at end of file diff --git a/soh/assets/objects/object_ganon/object_ganon.h b/soh/assets/objects/object_ganon/object_ganon.h index c518f1fc3..0f88ced7c 100644 --- a/soh/assets/objects/object_ganon/object_ganon.h +++ b/soh/assets/objects/object_ganon/object_ganon.h @@ -1,429 +1,186 @@ #pragma once -#define dgGanondorfPelvisDL "__OTR__objects/object_ganon/gGanondorfPelvisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfPelvisDL[] = dgGanondorfPelvisDL; -#else -static const char gGanondorfPelvisDL[] __attribute__((aligned (2))) = dgGanondorfPelvisDL; -#endif - -#define dgGanondorfRightShinDL "__OTR__objects/object_ganon/gGanondorfRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightShinDL[] = dgGanondorfRightShinDL; -#else -static const char gGanondorfRightShinDL[] __attribute__((aligned (2))) = dgGanondorfRightShinDL; -#endif - -#define dgGanondorfRightFootDL "__OTR__objects/object_ganon/gGanondorfRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightFootDL[] = dgGanondorfRightFootDL; -#else -static const char gGanondorfRightFootDL[] __attribute__((aligned (2))) = dgGanondorfRightFootDL; -#endif - -#define dgGanondorfRightThighDL "__OTR__objects/object_ganon/gGanondorfRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightThighDL[] = dgGanondorfRightThighDL; -#else -static const char gGanondorfRightThighDL[] __attribute__((aligned (2))) = dgGanondorfRightThighDL; -#endif - -#define dgGanondorfLeftShinDL "__OTR__objects/object_ganon/gGanondorfLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeftShinDL[] = dgGanondorfLeftShinDL; -#else -static const char gGanondorfLeftShinDL[] __attribute__((aligned (2))) = dgGanondorfLeftShinDL; -#endif - -#define dgGanondorfLeftFootDL "__OTR__objects/object_ganon/gGanondorfLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeftFootDL[] = dgGanondorfLeftFootDL; -#else -static const char gGanondorfLeftFootDL[] __attribute__((aligned (2))) = dgGanondorfLeftFootDL; -#endif - -#define dgGanondorfLeftThighDL "__OTR__objects/object_ganon/gGanondorfLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeftThighDL[] = dgGanondorfLeftThighDL; -#else -static const char gGanondorfLeftThighDL[] __attribute__((aligned (2))) = dgGanondorfLeftThighDL; -#endif - -#define dgGanondorfHeadDL "__OTR__objects/object_ganon/gGanondorfHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfHeadDL[] = dgGanondorfHeadDL; -#else -static const char gGanondorfHeadDL[] __attribute__((aligned (2))) = dgGanondorfHeadDL; -#endif - -#define dgGanondorfRightUpperLipDL "__OTR__objects/object_ganon/gGanondorfRightUpperLipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightUpperLipDL[] = dgGanondorfRightUpperLipDL; -#else -static const char gGanondorfRightUpperLipDL[] __attribute__((aligned (2))) = dgGanondorfRightUpperLipDL; -#endif - -#define dgGanondorfLowerHairEndDL "__OTR__objects/object_ganon/gGanondorfLowerHairEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLowerHairEndDL[] = dgGanondorfLowerHairEndDL; -#else -static const char gGanondorfLowerHairEndDL[] __attribute__((aligned (2))) = dgGanondorfLowerHairEndDL; -#endif - -#define dgGanondorfUpperHairEndDL "__OTR__objects/object_ganon/gGanondorfUpperHairEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfUpperHairEndDL[] = dgGanondorfUpperHairEndDL; -#else -static const char gGanondorfUpperHairEndDL[] __attribute__((aligned (2))) = dgGanondorfUpperHairEndDL; -#endif - -#define dgGanondorfJawDL "__OTR__objects/object_ganon/gGanondorfJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfJawDL[] = dgGanondorfJawDL; -#else -static const char gGanondorfJawDL[] __attribute__((aligned (2))) = dgGanondorfJawDL; -#endif - -#define dgGanondorfMouthDL "__OTR__objects/object_ganon/gGanondorfMouthDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfMouthDL[] = dgGanondorfMouthDL; -#else -static const char gGanondorfMouthDL[] __attribute__((aligned (2))) = dgGanondorfMouthDL; -#endif - -#define dgGanondorfLeftUpperLipDL "__OTR__objects/object_ganon/gGanondorfLeftUpperLipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeftUpperLipDL[] = dgGanondorfLeftUpperLipDL; -#else -static const char gGanondorfLeftUpperLipDL[] __attribute__((aligned (2))) = dgGanondorfLeftUpperLipDL; -#endif - -#define dgGanondorfTorsoDL "__OTR__objects/object_ganon/gGanondorfTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfTorsoDL[] = dgGanondorfTorsoDL; -#else -static const char gGanondorfTorsoDL[] __attribute__((aligned (2))) = dgGanondorfTorsoDL; -#endif - -#define dgGanondorfRightForearmDL "__OTR__objects/object_ganon/gGanondorfRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightForearmDL[] = dgGanondorfRightForearmDL; -#else -static const char gGanondorfRightForearmDL[] __attribute__((aligned (2))) = dgGanondorfRightForearmDL; -#endif - -#define dgGanondorfRightUpperArmDL "__OTR__objects/object_ganon/gGanondorfRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightUpperArmDL[] = dgGanondorfRightUpperArmDL; -#else -static const char gGanondorfRightUpperArmDL[] __attribute__((aligned (2))) = dgGanondorfRightUpperArmDL; -#endif - -#define dgGanondorfRightShoulderDL "__OTR__objects/object_ganon/gGanondorfRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightShoulderDL[] = dgGanondorfRightShoulderDL; -#else -static const char gGanondorfRightShoulderDL[] __attribute__((aligned (2))) = dgGanondorfRightShoulderDL; -#endif - -#define dgGanondorfLeftForearmDL "__OTR__objects/object_ganon/gGanondorfLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeftForearmDL[] = dgGanondorfLeftForearmDL; -#else -static const char gGanondorfLeftForearmDL[] __attribute__((aligned (2))) = dgGanondorfLeftForearmDL; -#endif - -#define dgGanondorfLeftUpperArmDL "__OTR__objects/object_ganon/gGanondorfLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeftUpperArmDL[] = dgGanondorfLeftUpperArmDL; -#else -static const char gGanondorfLeftUpperArmDL[] __attribute__((aligned (2))) = dgGanondorfLeftUpperArmDL; -#endif - -#define dgGanondorfLeftShoulderDL "__OTR__objects/object_ganon/gGanondorfLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeftShoulderDL[] = dgGanondorfLeftShoulderDL; -#else -static const char gGanondorfLeftShoulderDL[] __attribute__((aligned (2))) = dgGanondorfLeftShoulderDL; -#endif - -#define dgGanondorfSkinTLUT "__OTR__objects/object_ganon/gGanondorfSkinTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfSkinTLUT[] = dgGanondorfSkinTLUT; -#else -static const char gGanondorfSkinTLUT[] __attribute__((aligned (2))) = dgGanondorfSkinTLUT; -#endif - -#define dgGanondorfHairTLUT "__OTR__objects/object_ganon/gGanondorfHairTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfHairTLUT[] = dgGanondorfHairTLUT; -#else -static const char gGanondorfHairTLUT[] __attribute__((aligned (2))) = dgGanondorfHairTLUT; -#endif - -#define dgGanondorfInnerMouthTex "__OTR__objects/object_ganon/gGanondorfInnerMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfInnerMouthTex[] = dgGanondorfInnerMouthTex; -#else -static const char gGanondorfInnerMouthTex[] __attribute__((aligned (2))) = dgGanondorfInnerMouthTex; -#endif - -#define dgGanondorfJawTex "__OTR__objects/object_ganon/gGanondorfJawTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfJawTex[] = dgGanondorfJawTex; -#else -static const char gGanondorfJawTex[] __attribute__((aligned (2))) = dgGanondorfJawTex; -#endif - -#define dgGanondorfSideburnTex "__OTR__objects/object_ganon/gGanondorfSideburnTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfSideburnTex[] = dgGanondorfSideburnTex; -#else -static const char gGanondorfSideburnTex[] __attribute__((aligned (2))) = dgGanondorfSideburnTex; -#endif - -#define dgGanondorfOuterMouthTex "__OTR__objects/object_ganon/gGanondorfOuterMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfOuterMouthTex[] = dgGanondorfOuterMouthTex; -#else -static const char gGanondorfOuterMouthTex[] __attribute__((aligned (2))) = dgGanondorfOuterMouthTex; -#endif - -#define dgGanondorfUpperLipTex "__OTR__objects/object_ganon/gGanondorfUpperLipTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfUpperLipTex[] = dgGanondorfUpperLipTex; -#else -static const char gGanondorfUpperLipTex[] __attribute__((aligned (2))) = dgGanondorfUpperLipTex; -#endif - -#define dgGanondorfHairTex "__OTR__objects/object_ganon/gGanondorfHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfHairTex[] = dgGanondorfHairTex; -#else -static const char gGanondorfHairTex[] __attribute__((aligned (2))) = dgGanondorfHairTex; -#endif - -#define dgGanondorfTeethTex "__OTR__objects/object_ganon/gGanondorfTeethTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfTeethTex[] = dgGanondorfTeethTex; -#else -static const char gGanondorfTeethTex[] __attribute__((aligned (2))) = dgGanondorfTeethTex; -#endif - -#define dgGanondorfEyebrowTex "__OTR__objects/object_ganon/gGanondorfEyebrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfEyebrowTex[] = dgGanondorfEyebrowTex; -#else -static const char gGanondorfEyebrowTex[] __attribute__((aligned (2))) = dgGanondorfEyebrowTex; -#endif - -#define dgGanondorfHairFringeTex "__OTR__objects/object_ganon/gGanondorfHairFringeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfHairFringeTex[] = dgGanondorfHairFringeTex; -#else -static const char gGanondorfHairFringeTex[] __attribute__((aligned (2))) = dgGanondorfHairFringeTex; -#endif - -#define dgGanondorfNoseBridgeTex "__OTR__objects/object_ganon/gGanondorfNoseBridgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfNoseBridgeTex[] = dgGanondorfNoseBridgeTex; -#else -static const char gGanondorfNoseBridgeTex[] __attribute__((aligned (2))) = dgGanondorfNoseBridgeTex; -#endif - -#define dgGanondorfNoseTex "__OTR__objects/object_ganon/gGanondorfNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfNoseTex[] = dgGanondorfNoseTex; -#else -static const char gGanondorfNoseTex[] __attribute__((aligned (2))) = dgGanondorfNoseTex; -#endif - -#define dgGanondorfEarTex "__OTR__objects/object_ganon/gGanondorfEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfEarTex[] = dgGanondorfEarTex; -#else -static const char gGanondorfEarTex[] __attribute__((aligned (2))) = dgGanondorfEarTex; -#endif - -#define dgGanondorfEyeOrbitTex "__OTR__objects/object_ganon/gGanondorfEyeOrbitTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfEyeOrbitTex[] = dgGanondorfEyeOrbitTex; -#else -static const char gGanondorfEyeOrbitTex[] __attribute__((aligned (2))) = dgGanondorfEyeOrbitTex; -#endif - -#define dgGanondorfGerudoFabricTex "__OTR__objects/object_ganon/gGanondorfGerudoFabricTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfGerudoFabricTex[] = dgGanondorfGerudoFabricTex; -#else -static const char gGanondorfGerudoFabricTex[] __attribute__((aligned (2))) = dgGanondorfGerudoFabricTex; -#endif - -#define dgGanondorfRedFabricTex "__OTR__objects/object_ganon/gGanondorfRedFabricTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRedFabricTex[] = dgGanondorfRedFabricTex; -#else -static const char gGanondorfRedFabricTex[] __attribute__((aligned (2))) = dgGanondorfRedFabricTex; -#endif - -#define dgGanondorfBodysuitTex "__OTR__objects/object_ganon/gGanondorfBodysuitTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBodysuitTex[] = dgGanondorfBodysuitTex; -#else -static const char gGanondorfBodysuitTex[] __attribute__((aligned (2))) = dgGanondorfBodysuitTex; -#endif - -#define dgGanondorfLeatherTex "__OTR__objects/object_ganon/gGanondorfLeatherTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeatherTex[] = dgGanondorfLeatherTex; -#else -static const char gGanondorfLeatherTex[] __attribute__((aligned (2))) = dgGanondorfLeatherTex; -#endif - -#define dgGanondorfCapeFasteningTex "__OTR__objects/object_ganon/gGanondorfCapeFasteningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfCapeFasteningTex[] = dgGanondorfCapeFasteningTex; -#else -static const char gGanondorfCapeFasteningTex[] __attribute__((aligned (2))) = dgGanondorfCapeFasteningTex; -#endif - -#define dgGanondorfGerudoFabricWithSunTex "__OTR__objects/object_ganon/gGanondorfGerudoFabricWithSunTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfGerudoFabricWithSunTex[] = dgGanondorfGerudoFabricWithSunTex; -#else -static const char gGanondorfGerudoFabricWithSunTex[] __attribute__((aligned (2))) = dgGanondorfGerudoFabricWithSunTex; -#endif - -#define dgGanondorfHandTLUT "__OTR__objects/object_ganon/gGanondorfHandTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfHandTLUT[] = dgGanondorfHandTLUT; -#else -static const char gGanondorfHandTLUT[] __attribute__((aligned (2))) = dgGanondorfHandTLUT; -#endif - -#define dgGanondorfJewelTex "__OTR__objects/object_ganon/gGanondorfJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfJewelTex[] = dgGanondorfJewelTex; -#else -static const char gGanondorfJewelTex[] __attribute__((aligned (2))) = dgGanondorfJewelTex; -#endif - -#define dgGanondorfNormalEyeTex "__OTR__objects/object_ganon/gGanondorfNormalEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfNormalEyeTex[] = dgGanondorfNormalEyeTex; -#else -static const char gGanondorfNormalEyeTex[] __attribute__((aligned (2))) = dgGanondorfNormalEyeTex; -#endif - -#define dgGanondorfChestJewelTex "__OTR__objects/object_ganon/gGanondorfChestJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfChestJewelTex[] = dgGanondorfChestJewelTex; -#else -static const char gGanondorfChestJewelTex[] __attribute__((aligned (2))) = dgGanondorfChestJewelTex; -#endif - -#define dgGanondorfBlackLeatherTex "__OTR__objects/object_ganon/gGanondorfBlackLeatherTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBlackLeatherTex[] = dgGanondorfBlackLeatherTex; -#else -static const char gGanondorfBlackLeatherTex[] __attribute__((aligned (2))) = dgGanondorfBlackLeatherTex; -#endif - -#define dgGanondorfThumbTex "__OTR__objects/object_ganon/gGanondorfThumbTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfThumbTex[] = dgGanondorfThumbTex; -#else -static const char gGanondorfThumbTex[] __attribute__((aligned (2))) = dgGanondorfThumbTex; -#endif - -#define dgGanondorfGauntletAndPauldronTex "__OTR__objects/object_ganon/gGanondorfGauntletAndPauldronTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfGauntletAndPauldronTex[] = dgGanondorfGauntletAndPauldronTex; -#else -static const char gGanondorfGauntletAndPauldronTex[] __attribute__((aligned (2))) = dgGanondorfGauntletAndPauldronTex; -#endif - -#define dgGanondorfHandSideTex "__OTR__objects/object_ganon/gGanondorfHandSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfHandSideTex[] = dgGanondorfHandSideTex; -#else -static const char gGanondorfHandSideTex[] __attribute__((aligned (2))) = dgGanondorfHandSideTex; -#endif - -#define dgGanondorfFingerTex "__OTR__objects/object_ganon/gGanondorfFingerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfFingerTex[] = dgGanondorfFingerTex; -#else -static const char gGanondorfFingerTex[] __attribute__((aligned (2))) = dgGanondorfFingerTex; -#endif - -#define dgGanondorfCrazedEyeTex "__OTR__objects/object_ganon/gGanondorfCrazedEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfCrazedEyeTex[] = dgGanondorfCrazedEyeTex; -#else -static const char gGanondorfCrazedEyeTex[] __attribute__((aligned (2))) = dgGanondorfCrazedEyeTex; -#endif - -#define dgGanondorfEmptyEyeTex "__OTR__objects/object_ganon/gGanondorfEmptyEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfEmptyEyeTex[] = dgGanondorfEmptyEyeTex; -#else -static const char gGanondorfEmptyEyeTex[] __attribute__((aligned (2))) = dgGanondorfEmptyEyeTex; -#endif - -#define dgGanondorfEyesDL "__OTR__objects/object_ganon/gGanondorfEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfEyesDL[] = dgGanondorfEyesDL; -#else -static const char gGanondorfEyesDL[] __attribute__((aligned (2))) = dgGanondorfEyesDL; -#endif - -#define dgGanondorfJewelDL "__OTR__objects/object_ganon/gGanondorfJewelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfJewelDL[] = dgGanondorfJewelDL; -#else -static const char gGanondorfJewelDL[] __attribute__((aligned (2))) = dgGanondorfJewelDL; -#endif - -#define dgGanondorfLeftHandDL "__OTR__objects/object_ganon/gGanondorfLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeftHandDL[] = dgGanondorfLeftHandDL; -#else -static const char gGanondorfLeftHandDL[] __attribute__((aligned (2))) = dgGanondorfLeftHandDL; -#endif - -#define dgGanondorfRightHandClosedDL "__OTR__objects/object_ganon/gGanondorfRightHandClosedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightHandClosedDL[] = dgGanondorfRightHandClosedDL; -#else -static const char gGanondorfRightHandClosedDL[] __attribute__((aligned (2))) = dgGanondorfRightHandClosedDL; -#endif - -#define dgGanondorfRightHandOpenDL "__OTR__objects/object_ganon/gGanondorfRightHandOpenDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRightHandOpenDL[] = dgGanondorfRightHandOpenDL; -#else -static const char gGanondorfRightHandOpenDL[] __attribute__((aligned (2))) = dgGanondorfRightHandOpenDL; -#endif - -#define dgGanondorfTitleCardTex "__OTR__objects/object_ganon/gGanondorfTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfTitleCardTex[] = dgGanondorfTitleCardTex; -#else -static const char gGanondorfTitleCardTex[] __attribute__((aligned (2))) = dgGanondorfTitleCardTex; -#endif - -#define dgGanondorfEndingFloatAnim "__OTR__objects/object_ganon/gGanondorfEndingFloatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfEndingFloatAnim[] = dgGanondorfEndingFloatAnim; -#else -static const char gGanondorfEndingFloatAnim[] __attribute__((aligned (2))) = dgGanondorfEndingFloatAnim; -#endif - -#define dgGanondorfSkel "__OTR__objects/object_ganon/gGanondorfSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfSkel[] = dgGanondorfSkel; -#else -static const char gGanondorfSkel[] __attribute__((aligned (2))) = dgGanondorfSkel; -#endif - +#include "align_asset_macro.h" + +#define dgGanondorfPelvisDL "__OTR__objects/object_ganon/gGanondorfPelvisDL" +static const ALIGN_ASSET(2) char gGanondorfPelvisDL[] = dgGanondorfPelvisDL; + +#define dgGanondorfRightShinDL "__OTR__objects/object_ganon/gGanondorfRightShinDL" +static const ALIGN_ASSET(2) char gGanondorfRightShinDL[] = dgGanondorfRightShinDL; + +#define dgGanondorfRightFootDL "__OTR__objects/object_ganon/gGanondorfRightFootDL" +static const ALIGN_ASSET(2) char gGanondorfRightFootDL[] = dgGanondorfRightFootDL; + +#define dgGanondorfRightThighDL "__OTR__objects/object_ganon/gGanondorfRightThighDL" +static const ALIGN_ASSET(2) char gGanondorfRightThighDL[] = dgGanondorfRightThighDL; + +#define dgGanondorfLeftShinDL "__OTR__objects/object_ganon/gGanondorfLeftShinDL" +static const ALIGN_ASSET(2) char gGanondorfLeftShinDL[] = dgGanondorfLeftShinDL; + +#define dgGanondorfLeftFootDL "__OTR__objects/object_ganon/gGanondorfLeftFootDL" +static const ALIGN_ASSET(2) char gGanondorfLeftFootDL[] = dgGanondorfLeftFootDL; + +#define dgGanondorfLeftThighDL "__OTR__objects/object_ganon/gGanondorfLeftThighDL" +static const ALIGN_ASSET(2) char gGanondorfLeftThighDL[] = dgGanondorfLeftThighDL; + +#define dgGanondorfHeadDL "__OTR__objects/object_ganon/gGanondorfHeadDL" +static const ALIGN_ASSET(2) char gGanondorfHeadDL[] = dgGanondorfHeadDL; + +#define dgGanondorfRightUpperLipDL "__OTR__objects/object_ganon/gGanondorfRightUpperLipDL" +static const ALIGN_ASSET(2) char gGanondorfRightUpperLipDL[] = dgGanondorfRightUpperLipDL; + +#define dgGanondorfLowerHairEndDL "__OTR__objects/object_ganon/gGanondorfLowerHairEndDL" +static const ALIGN_ASSET(2) char gGanondorfLowerHairEndDL[] = dgGanondorfLowerHairEndDL; + +#define dgGanondorfUpperHairEndDL "__OTR__objects/object_ganon/gGanondorfUpperHairEndDL" +static const ALIGN_ASSET(2) char gGanondorfUpperHairEndDL[] = dgGanondorfUpperHairEndDL; + +#define dgGanondorfJawDL "__OTR__objects/object_ganon/gGanondorfJawDL" +static const ALIGN_ASSET(2) char gGanondorfJawDL[] = dgGanondorfJawDL; + +#define dgGanondorfMouthDL "__OTR__objects/object_ganon/gGanondorfMouthDL" +static const ALIGN_ASSET(2) char gGanondorfMouthDL[] = dgGanondorfMouthDL; + +#define dgGanondorfLeftUpperLipDL "__OTR__objects/object_ganon/gGanondorfLeftUpperLipDL" +static const ALIGN_ASSET(2) char gGanondorfLeftUpperLipDL[] = dgGanondorfLeftUpperLipDL; + +#define dgGanondorfTorsoDL "__OTR__objects/object_ganon/gGanondorfTorsoDL" +static const ALIGN_ASSET(2) char gGanondorfTorsoDL[] = dgGanondorfTorsoDL; + +#define dgGanondorfRightForearmDL "__OTR__objects/object_ganon/gGanondorfRightForearmDL" +static const ALIGN_ASSET(2) char gGanondorfRightForearmDL[] = dgGanondorfRightForearmDL; + +#define dgGanondorfRightUpperArmDL "__OTR__objects/object_ganon/gGanondorfRightUpperArmDL" +static const ALIGN_ASSET(2) char gGanondorfRightUpperArmDL[] = dgGanondorfRightUpperArmDL; + +#define dgGanondorfRightShoulderDL "__OTR__objects/object_ganon/gGanondorfRightShoulderDL" +static const ALIGN_ASSET(2) char gGanondorfRightShoulderDL[] = dgGanondorfRightShoulderDL; + +#define dgGanondorfLeftForearmDL "__OTR__objects/object_ganon/gGanondorfLeftForearmDL" +static const ALIGN_ASSET(2) char gGanondorfLeftForearmDL[] = dgGanondorfLeftForearmDL; + +#define dgGanondorfLeftUpperArmDL "__OTR__objects/object_ganon/gGanondorfLeftUpperArmDL" +static const ALIGN_ASSET(2) char gGanondorfLeftUpperArmDL[] = dgGanondorfLeftUpperArmDL; + +#define dgGanondorfLeftShoulderDL "__OTR__objects/object_ganon/gGanondorfLeftShoulderDL" +static const ALIGN_ASSET(2) char gGanondorfLeftShoulderDL[] = dgGanondorfLeftShoulderDL; + +#define dgGanondorfSkinTLUT "__OTR__objects/object_ganon/gGanondorfSkinTLUT" +static const ALIGN_ASSET(2) char gGanondorfSkinTLUT[] = dgGanondorfSkinTLUT; + +#define dgGanondorfHairTLUT "__OTR__objects/object_ganon/gGanondorfHairTLUT" +static const ALIGN_ASSET(2) char gGanondorfHairTLUT[] = dgGanondorfHairTLUT; + +#define dgGanondorfInnerMouthTex "__OTR__objects/object_ganon/gGanondorfInnerMouthTex" +static const ALIGN_ASSET(2) char gGanondorfInnerMouthTex[] = dgGanondorfInnerMouthTex; + +#define dgGanondorfJawTex "__OTR__objects/object_ganon/gGanondorfJawTex" +static const ALIGN_ASSET(2) char gGanondorfJawTex[] = dgGanondorfJawTex; + +#define dgGanondorfSideburnTex "__OTR__objects/object_ganon/gGanondorfSideburnTex" +static const ALIGN_ASSET(2) char gGanondorfSideburnTex[] = dgGanondorfSideburnTex; + +#define dgGanondorfOuterMouthTex "__OTR__objects/object_ganon/gGanondorfOuterMouthTex" +static const ALIGN_ASSET(2) char gGanondorfOuterMouthTex[] = dgGanondorfOuterMouthTex; + +#define dgGanondorfUpperLipTex "__OTR__objects/object_ganon/gGanondorfUpperLipTex" +static const ALIGN_ASSET(2) char gGanondorfUpperLipTex[] = dgGanondorfUpperLipTex; + +#define dgGanondorfHairTex "__OTR__objects/object_ganon/gGanondorfHairTex" +static const ALIGN_ASSET(2) char gGanondorfHairTex[] = dgGanondorfHairTex; + +#define dgGanondorfTeethTex "__OTR__objects/object_ganon/gGanondorfTeethTex" +static const ALIGN_ASSET(2) char gGanondorfTeethTex[] = dgGanondorfTeethTex; + +#define dgGanondorfEyebrowTex "__OTR__objects/object_ganon/gGanondorfEyebrowTex" +static const ALIGN_ASSET(2) char gGanondorfEyebrowTex[] = dgGanondorfEyebrowTex; + +#define dgGanondorfHairFringeTex "__OTR__objects/object_ganon/gGanondorfHairFringeTex" +static const ALIGN_ASSET(2) char gGanondorfHairFringeTex[] = dgGanondorfHairFringeTex; + +#define dgGanondorfNoseBridgeTex "__OTR__objects/object_ganon/gGanondorfNoseBridgeTex" +static const ALIGN_ASSET(2) char gGanondorfNoseBridgeTex[] = dgGanondorfNoseBridgeTex; + +#define dgGanondorfNoseTex "__OTR__objects/object_ganon/gGanondorfNoseTex" +static const ALIGN_ASSET(2) char gGanondorfNoseTex[] = dgGanondorfNoseTex; + +#define dgGanondorfEarTex "__OTR__objects/object_ganon/gGanondorfEarTex" +static const ALIGN_ASSET(2) char gGanondorfEarTex[] = dgGanondorfEarTex; + +#define dgGanondorfEyeOrbitTex "__OTR__objects/object_ganon/gGanondorfEyeOrbitTex" +static const ALIGN_ASSET(2) char gGanondorfEyeOrbitTex[] = dgGanondorfEyeOrbitTex; + +#define dgGanondorfGerudoFabricTex "__OTR__objects/object_ganon/gGanondorfGerudoFabricTex" +static const ALIGN_ASSET(2) char gGanondorfGerudoFabricTex[] = dgGanondorfGerudoFabricTex; + +#define dgGanondorfRedFabricTex "__OTR__objects/object_ganon/gGanondorfRedFabricTex" +static const ALIGN_ASSET(2) char gGanondorfRedFabricTex[] = dgGanondorfRedFabricTex; + +#define dgGanondorfBodysuitTex "__OTR__objects/object_ganon/gGanondorfBodysuitTex" +static const ALIGN_ASSET(2) char gGanondorfBodysuitTex[] = dgGanondorfBodysuitTex; + +#define dgGanondorfLeatherTex "__OTR__objects/object_ganon/gGanondorfLeatherTex" +static const ALIGN_ASSET(2) char gGanondorfLeatherTex[] = dgGanondorfLeatherTex; + +#define dgGanondorfCapeFasteningTex "__OTR__objects/object_ganon/gGanondorfCapeFasteningTex" +static const ALIGN_ASSET(2) char gGanondorfCapeFasteningTex[] = dgGanondorfCapeFasteningTex; + +#define dgGanondorfGerudoFabricWithSunTex "__OTR__objects/object_ganon/gGanondorfGerudoFabricWithSunTex" +static const ALIGN_ASSET(2) char gGanondorfGerudoFabricWithSunTex[] = dgGanondorfGerudoFabricWithSunTex; + +#define dgGanondorfHandTLUT "__OTR__objects/object_ganon/gGanondorfHandTLUT" +static const ALIGN_ASSET(2) char gGanondorfHandTLUT[] = dgGanondorfHandTLUT; + +#define dgGanondorfJewelTex "__OTR__objects/object_ganon/gGanondorfJewelTex" +static const ALIGN_ASSET(2) char gGanondorfJewelTex[] = dgGanondorfJewelTex; + +#define dgGanondorfNormalEyeTex "__OTR__objects/object_ganon/gGanondorfNormalEyeTex" +static const ALIGN_ASSET(2) char gGanondorfNormalEyeTex[] = dgGanondorfNormalEyeTex; + +#define dgGanondorfChestJewelTex "__OTR__objects/object_ganon/gGanondorfChestJewelTex" +static const ALIGN_ASSET(2) char gGanondorfChestJewelTex[] = dgGanondorfChestJewelTex; + +#define dgGanondorfBlackLeatherTex "__OTR__objects/object_ganon/gGanondorfBlackLeatherTex" +static const ALIGN_ASSET(2) char gGanondorfBlackLeatherTex[] = dgGanondorfBlackLeatherTex; + +#define dgGanondorfThumbTex "__OTR__objects/object_ganon/gGanondorfThumbTex" +static const ALIGN_ASSET(2) char gGanondorfThumbTex[] = dgGanondorfThumbTex; + +#define dgGanondorfGauntletAndPauldronTex "__OTR__objects/object_ganon/gGanondorfGauntletAndPauldronTex" +static const ALIGN_ASSET(2) char gGanondorfGauntletAndPauldronTex[] = dgGanondorfGauntletAndPauldronTex; + +#define dgGanondorfHandSideTex "__OTR__objects/object_ganon/gGanondorfHandSideTex" +static const ALIGN_ASSET(2) char gGanondorfHandSideTex[] = dgGanondorfHandSideTex; + +#define dgGanondorfFingerTex "__OTR__objects/object_ganon/gGanondorfFingerTex" +static const ALIGN_ASSET(2) char gGanondorfFingerTex[] = dgGanondorfFingerTex; + +#define dgGanondorfCrazedEyeTex "__OTR__objects/object_ganon/gGanondorfCrazedEyeTex" +static const ALIGN_ASSET(2) char gGanondorfCrazedEyeTex[] = dgGanondorfCrazedEyeTex; + +#define dgGanondorfEmptyEyeTex "__OTR__objects/object_ganon/gGanondorfEmptyEyeTex" +static const ALIGN_ASSET(2) char gGanondorfEmptyEyeTex[] = dgGanondorfEmptyEyeTex; + +#define dgGanondorfEyesDL "__OTR__objects/object_ganon/gGanondorfEyesDL" +static const ALIGN_ASSET(2) char gGanondorfEyesDL[] = dgGanondorfEyesDL; + +#define dgGanondorfJewelDL "__OTR__objects/object_ganon/gGanondorfJewelDL" +static const ALIGN_ASSET(2) char gGanondorfJewelDL[] = dgGanondorfJewelDL; + +#define dgGanondorfLeftHandDL "__OTR__objects/object_ganon/gGanondorfLeftHandDL" +static const ALIGN_ASSET(2) char gGanondorfLeftHandDL[] = dgGanondorfLeftHandDL; + +#define dgGanondorfRightHandClosedDL "__OTR__objects/object_ganon/gGanondorfRightHandClosedDL" +static const ALIGN_ASSET(2) char gGanondorfRightHandClosedDL[] = dgGanondorfRightHandClosedDL; + +#define dgGanondorfRightHandOpenDL "__OTR__objects/object_ganon/gGanondorfRightHandOpenDL" +static const ALIGN_ASSET(2) char gGanondorfRightHandOpenDL[] = dgGanondorfRightHandOpenDL; + +#define dgGanondorfTitleCardTex "__OTR__objects/object_ganon/gGanondorfTitleCardTex" +static const ALIGN_ASSET(2) char gGanondorfTitleCardTex[] = dgGanondorfTitleCardTex; + +#define dgGanondorfEndingFloatAnim "__OTR__objects/object_ganon/gGanondorfEndingFloatAnim" +static const ALIGN_ASSET(2) char gGanondorfEndingFloatAnim[] = dgGanondorfEndingFloatAnim; + +#define dgGanondorfSkel "__OTR__objects/object_ganon/gGanondorfSkel" +static const ALIGN_ASSET(2) char gGanondorfSkel[] = dgGanondorfSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_ganon2/object_ganon2.h b/soh/assets/objects/object_ganon2/object_ganon2.h index 4be201282..2e81aa125 100644 --- a/soh/assets/objects/object_ganon2/object_ganon2.h +++ b/soh/assets/objects/object_ganon2/object_ganon2.h @@ -1,758 +1,327 @@ #pragma once -#define dgGanonFinalBlowAnim "__OTR__objects/object_ganon2/gGanonFinalBlowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonFinalBlowAnim[] = dgGanonFinalBlowAnim; -#else -static const char gGanonFinalBlowAnim[] __attribute__((aligned (2))) = dgGanonFinalBlowAnim; -#endif - -#define dgGanonDeadStartAnim "__OTR__objects/object_ganon2/gGanonDeadStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonDeadStartAnim[] = dgGanonDeadStartAnim; -#else -static const char gGanonDeadStartAnim[] __attribute__((aligned (2))) = dgGanonDeadStartAnim; -#endif - -#define dgGanonDeadLoopAnim "__OTR__objects/object_ganon2/gGanonDeadLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonDeadLoopAnim[] = dgGanonDeadLoopAnim; -#else -static const char gGanonDeadLoopAnim[] __attribute__((aligned (2))) = dgGanonDeadLoopAnim; -#endif - -#define dgGanonGuardToWalk "__OTR__objects/object_ganon2/gGanonGuardToWalk" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonGuardToWalk[] = dgGanonGuardToWalk; -#else -static const char gGanonGuardToWalk[] __attribute__((aligned (2))) = dgGanonGuardToWalk; -#endif - -#define dgGanonLeftSwordSwingAnim "__OTR__objects/object_ganon2/gGanonLeftSwordSwingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftSwordSwingAnim[] = dgGanonLeftSwordSwingAnim; -#else -static const char gGanonLeftSwordSwingAnim[] __attribute__((aligned (2))) = dgGanonLeftSwordSwingAnim; -#endif - -#define dgGanonRightSwordSwingAnim "__OTR__objects/object_ganon2/gGanonRightSwordSwingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightSwordSwingAnim[] = dgGanonRightSwordSwingAnim; -#else -static const char gGanonRightSwordSwingAnim[] __attribute__((aligned (2))) = dgGanonRightSwordSwingAnim; -#endif - -#define dgGanonDamageAnim "__OTR__objects/object_ganon2/gGanonDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonDamageAnim[] = dgGanonDamageAnim; -#else -static const char gGanonDamageAnim[] __attribute__((aligned (2))) = dgGanonDamageAnim; -#endif - -#define dgGanonGuardWalkAnim "__OTR__objects/object_ganon2/gGanonGuardWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonGuardWalkAnim[] = dgGanonGuardWalkAnim; -#else -static const char gGanonGuardWalkAnim[] __attribute__((aligned (2))) = dgGanonGuardWalkAnim; -#endif - -#define dgGanonGuardSidestepAnim "__OTR__objects/object_ganon2/gGanonGuardSidestepAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonGuardSidestepAnim[] = dgGanonGuardSidestepAnim; -#else -static const char gGanonGuardSidestepAnim[] __attribute__((aligned (2))) = dgGanonGuardSidestepAnim; -#endif - -#define dgGanonGuardIdleAnim "__OTR__objects/object_ganon2/gGanonGuardIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonGuardIdleAnim[] = dgGanonGuardIdleAnim; -#else -static const char gGanonGuardIdleAnim[] __attribute__((aligned (2))) = dgGanonGuardIdleAnim; -#endif - -#define dgGanonPelvisDL "__OTR__objects/object_ganon2/gGanonPelvisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonPelvisDL[] = dgGanonPelvisDL; -#else -static const char gGanonPelvisDL[] __attribute__((aligned (2))) = dgGanonPelvisDL; -#endif - -#define dgGanonTail1DL "__OTR__objects/object_ganon2/gGanonTail1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTail1DL[] = dgGanonTail1DL; -#else -static const char gGanonTail1DL[] __attribute__((aligned (2))) = dgGanonTail1DL; -#endif - -#define dgGanonTail2DL "__OTR__objects/object_ganon2/gGanonTail2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTail2DL[] = dgGanonTail2DL; -#else -static const char gGanonTail2DL[] __attribute__((aligned (2))) = dgGanonTail2DL; -#endif - -#define dgGanonTail3DL "__OTR__objects/object_ganon2/gGanonTail3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTail3DL[] = dgGanonTail3DL; -#else -static const char gGanonTail3DL[] __attribute__((aligned (2))) = dgGanonTail3DL; -#endif - -#define dgGanonTail4DL "__OTR__objects/object_ganon2/gGanonTail4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTail4DL[] = dgGanonTail4DL; -#else -static const char gGanonTail4DL[] __attribute__((aligned (2))) = dgGanonTail4DL; -#endif - -#define dgGanonTail5DL "__OTR__objects/object_ganon2/gGanonTail5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTail5DL[] = dgGanonTail5DL; -#else -static const char gGanonTail5DL[] __attribute__((aligned (2))) = dgGanonTail5DL; -#endif - -#define dgGanonRightShinDL "__OTR__objects/object_ganon2/gGanonRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightShinDL[] = dgGanonRightShinDL; -#else -static const char gGanonRightShinDL[] __attribute__((aligned (2))) = dgGanonRightShinDL; -#endif - -#define dgGanonRightFootDL "__OTR__objects/object_ganon2/gGanonRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightFootDL[] = dgGanonRightFootDL; -#else -static const char gGanonRightFootDL[] __attribute__((aligned (2))) = dgGanonRightFootDL; -#endif - -#define dgGanonRightThighDL "__OTR__objects/object_ganon2/gGanonRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightThighDL[] = dgGanonRightThighDL; -#else -static const char gGanonRightThighDL[] __attribute__((aligned (2))) = dgGanonRightThighDL; -#endif - -#define dgGanonLeftShinDL "__OTR__objects/object_ganon2/gGanonLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftShinDL[] = dgGanonLeftShinDL; -#else -static const char gGanonLeftShinDL[] __attribute__((aligned (2))) = dgGanonLeftShinDL; -#endif - -#define dgGanonLeftFootDL "__OTR__objects/object_ganon2/gGanonLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftFootDL[] = dgGanonLeftFootDL; -#else -static const char gGanonLeftFootDL[] __attribute__((aligned (2))) = dgGanonLeftFootDL; -#endif - -#define dgGanonLeftThighDL "__OTR__objects/object_ganon2/gGanonLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftThighDL[] = dgGanonLeftThighDL; -#else -static const char gGanonLeftThighDL[] __attribute__((aligned (2))) = dgGanonLeftThighDL; -#endif - -#define dgGanonNeckDL "__OTR__objects/object_ganon2/gGanonNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonNeckDL[] = dgGanonNeckDL; -#else -static const char gGanonNeckDL[] __attribute__((aligned (2))) = dgGanonNeckDL; -#endif - -#define dgGanonHeadDL "__OTR__objects/object_ganon2/gGanonHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHeadDL[] = dgGanonHeadDL; -#else -static const char gGanonHeadDL[] __attribute__((aligned (2))) = dgGanonHeadDL; -#endif - -#define dgGanonRightHair3DL "__OTR__objects/object_ganon2/gGanonRightHair3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightHair3DL[] = dgGanonRightHair3DL; -#else -static const char gGanonRightHair3DL[] __attribute__((aligned (2))) = dgGanonRightHair3DL; -#endif - -#define dgGanonRightHair2DL "__OTR__objects/object_ganon2/gGanonRightHair2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightHair2DL[] = dgGanonRightHair2DL; -#else -static const char gGanonRightHair2DL[] __attribute__((aligned (2))) = dgGanonRightHair2DL; -#endif - -#define dgGanonRightHair1DL "__OTR__objects/object_ganon2/gGanonRightHair1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightHair1DL[] = dgGanonRightHair1DL; -#else -static const char gGanonRightHair1DL[] __attribute__((aligned (2))) = dgGanonRightHair1DL; -#endif - -#define dgGanonLeftHair3DL "__OTR__objects/object_ganon2/gGanonLeftHair3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftHair3DL[] = dgGanonLeftHair3DL; -#else -static const char gGanonLeftHair3DL[] __attribute__((aligned (2))) = dgGanonLeftHair3DL; -#endif - -#define dgGanonLeftHair2DL "__OTR__objects/object_ganon2/gGanonLeftHair2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftHair2DL[] = dgGanonLeftHair2DL; -#else -static const char gGanonLeftHair2DL[] __attribute__((aligned (2))) = dgGanonLeftHair2DL; -#endif - -#define dgGanonLeftHair1DL "__OTR__objects/object_ganon2/gGanonLeftHair1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftHair1DL[] = dgGanonLeftHair1DL; -#else -static const char gGanonLeftHair1DL[] __attribute__((aligned (2))) = dgGanonLeftHair1DL; -#endif - -#define dgGanonJawDL "__OTR__objects/object_ganon2/gGanonJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonJawDL[] = dgGanonJawDL; -#else -static const char gGanonJawDL[] __attribute__((aligned (2))) = dgGanonJawDL; -#endif - -#define dgGanonMouthDL "__OTR__objects/object_ganon2/gGanonMouthDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonMouthDL[] = dgGanonMouthDL; -#else -static const char gGanonMouthDL[] __attribute__((aligned (2))) = dgGanonMouthDL; -#endif - -#define dgGanonSnoutDL "__OTR__objects/object_ganon2/gGanonSnoutDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonSnoutDL[] = dgGanonSnoutDL; -#else -static const char gGanonSnoutDL[] __attribute__((aligned (2))) = dgGanonSnoutDL; -#endif - -#define dgGanonMiddleHair3DL "__OTR__objects/object_ganon2/gGanonMiddleHair3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonMiddleHair3DL[] = dgGanonMiddleHair3DL; -#else -static const char gGanonMiddleHair3DL[] __attribute__((aligned (2))) = dgGanonMiddleHair3DL; -#endif - -#define dgGanonMiddleHair2DL "__OTR__objects/object_ganon2/gGanonMiddleHair2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonMiddleHair2DL[] = dgGanonMiddleHair2DL; -#else -static const char gGanonMiddleHair2DL[] __attribute__((aligned (2))) = dgGanonMiddleHair2DL; -#endif - -#define dgGanonMiddleHair1DL "__OTR__objects/object_ganon2/gGanonMiddleHair1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonMiddleHair1DL[] = dgGanonMiddleHair1DL; -#else -static const char gGanonMiddleHair1DL[] __attribute__((aligned (2))) = dgGanonMiddleHair1DL; -#endif - -#define dgGanonTorsoDL "__OTR__objects/object_ganon2/gGanonTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTorsoDL[] = dgGanonTorsoDL; -#else -static const char gGanonTorsoDL[] __attribute__((aligned (2))) = dgGanonTorsoDL; -#endif - -#define dgGanonRightShoulderDL "__OTR__objects/object_ganon2/gGanonRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightShoulderDL[] = dgGanonRightShoulderDL; -#else -static const char gGanonRightShoulderDL[] __attribute__((aligned (2))) = dgGanonRightShoulderDL; -#endif - -#define dgGanonRightForearmDL "__OTR__objects/object_ganon2/gGanonRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightForearmDL[] = dgGanonRightForearmDL; -#else -static const char gGanonRightForearmDL[] __attribute__((aligned (2))) = dgGanonRightForearmDL; -#endif - -#define dgGanonRightWristDL "__OTR__objects/object_ganon2/gGanonRightWristDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightWristDL[] = dgGanonRightWristDL; -#else -static const char gGanonRightWristDL[] __attribute__((aligned (2))) = dgGanonRightWristDL; -#endif - -#define dgGanonRightUpperArmDL "__OTR__objects/object_ganon2/gGanonRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightUpperArmDL[] = dgGanonRightUpperArmDL; -#else -static const char gGanonRightUpperArmDL[] __attribute__((aligned (2))) = dgGanonRightUpperArmDL; -#endif - -#define dgGanonLeftShoulderDL "__OTR__objects/object_ganon2/gGanonLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftShoulderDL[] = dgGanonLeftShoulderDL; -#else -static const char gGanonLeftShoulderDL[] __attribute__((aligned (2))) = dgGanonLeftShoulderDL; -#endif - -#define dgGanonLeftForearmDL "__OTR__objects/object_ganon2/gGanonLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftForearmDL[] = dgGanonLeftForearmDL; -#else -static const char gGanonLeftForearmDL[] __attribute__((aligned (2))) = dgGanonLeftForearmDL; -#endif - -#define dgGanonLeftWristDL "__OTR__objects/object_ganon2/gGanonLeftWristDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftWristDL[] = dgGanonLeftWristDL; -#else -static const char gGanonLeftWristDL[] __attribute__((aligned (2))) = dgGanonLeftWristDL; -#endif - -#define dgGanonLeftUpperArmDL "__OTR__objects/object_ganon2/gGanonLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftUpperArmDL[] = dgGanonLeftUpperArmDL; -#else -static const char gGanonLeftUpperArmDL[] __attribute__((aligned (2))) = dgGanonLeftUpperArmDL; -#endif - -#define dgGanonBodyTLUT "__OTR__objects/object_ganon2/gGanonBodyTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonBodyTLUT[] = dgGanonBodyTLUT; -#else -static const char gGanonBodyTLUT[] __attribute__((aligned (2))) = dgGanonBodyTLUT; -#endif - -#define dgGanonHairFringeTLUT "__OTR__objects/object_ganon2/gGanonHairFringeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHairFringeTLUT[] = dgGanonHairFringeTLUT; -#else -static const char gGanonHairFringeTLUT[] __attribute__((aligned (2))) = dgGanonHairFringeTLUT; -#endif - -#define dgGanonUnusedTLUT "__OTR__objects/object_ganon2/gGanonUnusedTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonUnusedTLUT[] = dgGanonUnusedTLUT; -#else -static const char gGanonUnusedTLUT[] __attribute__((aligned (2))) = dgGanonUnusedTLUT; -#endif - -#define dgGanonGerudoFabricTLUT "__OTR__objects/object_ganon2/gGanonGerudoFabricTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonGerudoFabricTLUT[] = dgGanonGerudoFabricTLUT; -#else -static const char gGanonGerudoFabricTLUT[] __attribute__((aligned (2))) = dgGanonGerudoFabricTLUT; -#endif - -#define dgGanonRedFabricTLUT "__OTR__objects/object_ganon2/gGanonRedFabricTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRedFabricTLUT[] = dgGanonRedFabricTLUT; -#else -static const char gGanonRedFabricTLUT[] __attribute__((aligned (2))) = dgGanonRedFabricTLUT; -#endif - -#define dgGanonBlackLeatherAndPauldronTLUT "__OTR__objects/object_ganon2/gGanonBlackLeatherAndPauldronTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonBlackLeatherAndPauldronTLUT[] = dgGanonBlackLeatherAndPauldronTLUT; -#else -static const char gGanonBlackLeatherAndPauldronTLUT[] __attribute__((aligned (2))) = dgGanonBlackLeatherAndPauldronTLUT; -#endif - -#define dgGanonLeatherTLUT "__OTR__objects/object_ganon2/gGanonLeatherTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeatherTLUT[] = dgGanonLeatherTLUT; -#else -static const char gGanonLeatherTLUT[] __attribute__((aligned (2))) = dgGanonLeatherTLUT; -#endif - -#define dgGanonHoofTLUT "__OTR__objects/object_ganon2/gGanonHoofTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHoofTLUT[] = dgGanonHoofTLUT; -#else -static const char gGanonHoofTLUT[] __attribute__((aligned (2))) = dgGanonHoofTLUT; -#endif - -#define dgGanonTailTLUT "__OTR__objects/object_ganon2/gGanonTailTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTailTLUT[] = dgGanonTailTLUT; -#else -static const char gGanonTailTLUT[] __attribute__((aligned (2))) = dgGanonTailTLUT; -#endif - -#define dgGanonHairTex "__OTR__objects/object_ganon2/gGanonHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHairTex[] = dgGanonHairTex; -#else -static const char gGanonHairTex[] __attribute__((aligned (2))) = dgGanonHairTex; -#endif - -#define dgGanonMouthTex "__OTR__objects/object_ganon2/gGanonMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonMouthTex[] = dgGanonMouthTex; -#else -static const char gGanonMouthTex[] __attribute__((aligned (2))) = dgGanonMouthTex; -#endif - -#define dgGanonFacialHairTex "__OTR__objects/object_ganon2/gGanonFacialHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonFacialHairTex[] = dgGanonFacialHairTex; -#else -static const char gGanonFacialHairTex[] __attribute__((aligned (2))) = dgGanonFacialHairTex; -#endif - -#define dgGanonBodyTex "__OTR__objects/object_ganon2/gGanonBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonBodyTex[] = dgGanonBodyTex; -#else -static const char gGanonBodyTex[] __attribute__((aligned (2))) = dgGanonBodyTex; -#endif - -#define dgGanonSnoutFrontTex "__OTR__objects/object_ganon2/gGanonSnoutFrontTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonSnoutFrontTex[] = dgGanonSnoutFrontTex; -#else -static const char gGanonSnoutFrontTex[] __attribute__((aligned (2))) = dgGanonSnoutFrontTex; -#endif - -#define dgGanonSnoutSideTex "__OTR__objects/object_ganon2/gGanonSnoutSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonSnoutSideTex[] = dgGanonSnoutSideTex; -#else -static const char gGanonSnoutSideTex[] __attribute__((aligned (2))) = dgGanonSnoutSideTex; -#endif - -#define dgGanonHairFringeTex "__OTR__objects/object_ganon2/gGanonHairFringeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHairFringeTex[] = dgGanonHairFringeTex; -#else -static const char gGanonHairFringeTex[] __attribute__((aligned (2))) = dgGanonHairFringeTex; -#endif - -#define dgGanonGerudoFabricTex "__OTR__objects/object_ganon2/gGanonGerudoFabricTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonGerudoFabricTex[] = dgGanonGerudoFabricTex; -#else -static const char gGanonGerudoFabricTex[] __attribute__((aligned (2))) = dgGanonGerudoFabricTex; -#endif - -#define dgGanonFurTuftTex "__OTR__objects/object_ganon2/gGanonFurTuftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonFurTuftTex[] = dgGanonFurTuftTex; -#else -static const char gGanonFurTuftTex[] __attribute__((aligned (2))) = dgGanonFurTuftTex; -#endif - -#define dgGanonRedFabricTex "__OTR__objects/object_ganon2/gGanonRedFabricTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRedFabricTex[] = dgGanonRedFabricTex; -#else -static const char gGanonRedFabricTex[] __attribute__((aligned (2))) = dgGanonRedFabricTex; -#endif - -#define dgGanonPauldronTex "__OTR__objects/object_ganon2/gGanonPauldronTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonPauldronTex[] = dgGanonPauldronTex; -#else -static const char gGanonPauldronTex[] __attribute__((aligned (2))) = dgGanonPauldronTex; -#endif - -#define dgGanonCapeFasteningTex "__OTR__objects/object_ganon2/gGanonCapeFasteningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonCapeFasteningTex[] = dgGanonCapeFasteningTex; -#else -static const char gGanonCapeFasteningTex[] __attribute__((aligned (2))) = dgGanonCapeFasteningTex; -#endif - -#define dgGanonBlackLeatherTex "__OTR__objects/object_ganon2/gGanonBlackLeatherTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonBlackLeatherTex[] = dgGanonBlackLeatherTex; -#else -static const char gGanonBlackLeatherTex[] __attribute__((aligned (2))) = dgGanonBlackLeatherTex; -#endif - -#define dgGanonLeatherTex "__OTR__objects/object_ganon2/gGanonLeatherTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeatherTex[] = dgGanonLeatherTex; -#else -static const char gGanonLeatherTex[] __attribute__((aligned (2))) = dgGanonLeatherTex; -#endif - -#define dgGanonHoofTex "__OTR__objects/object_ganon2/gGanonHoofTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHoofTex[] = dgGanonHoofTex; -#else -static const char gGanonHoofTex[] __attribute__((aligned (2))) = dgGanonHoofTex; -#endif - -#define dgGanonUnderSkirtTex "__OTR__objects/object_ganon2/gGanonUnderSkirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonUnderSkirtTex[] = dgGanonUnderSkirtTex; -#else -static const char gGanonUnderSkirtTex[] __attribute__((aligned (2))) = dgGanonUnderSkirtTex; -#endif - -#define dgGanonTailTex "__OTR__objects/object_ganon2/gGanonTailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTailTex[] = dgGanonTailTex; -#else -static const char gGanonTailTex[] __attribute__((aligned (2))) = dgGanonTailTex; -#endif - -#define dgGanonEyesTLUT "__OTR__objects/object_ganon2/gGanonEyesTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonEyesTLUT[] = dgGanonEyesTLUT; -#else -static const char gGanonEyesTLUT[] __attribute__((aligned (2))) = dgGanonEyesTLUT; -#endif - -#define dgGanonHandTLUT "__OTR__objects/object_ganon2/gGanonHandTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHandTLUT[] = dgGanonHandTLUT; -#else -static const char gGanonHandTLUT[] __attribute__((aligned (2))) = dgGanonHandTLUT; -#endif - -#define dgGanonHandTex "__OTR__objects/object_ganon2/gGanonHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHandTex[] = dgGanonHandTex; -#else -static const char gGanonHandTex[] __attribute__((aligned (2))) = dgGanonHandTex; -#endif - -#define dgGanonJewelTex "__OTR__objects/object_ganon2/gGanonJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonJewelTex[] = dgGanonJewelTex; -#else -static const char gGanonJewelTex[] __attribute__((aligned (2))) = dgGanonJewelTex; -#endif - -#define dgGanonClawAndTeethTex "__OTR__objects/object_ganon2/gGanonClawAndTeethTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonClawAndTeethTex[] = dgGanonClawAndTeethTex; -#else -static const char gGanonClawAndTeethTex[] __attribute__((aligned (2))) = dgGanonClawAndTeethTex; -#endif - -#define dgGanonEyeOpenTex "__OTR__objects/object_ganon2/gGanonEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonEyeOpenTex[] = dgGanonEyeOpenTex; -#else -static const char gGanonEyeOpenTex[] __attribute__((aligned (2))) = dgGanonEyeOpenTex; -#endif - -#define dgGanonLipsTex "__OTR__objects/object_ganon2/gGanonLipsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLipsTex[] = dgGanonLipsTex; -#else -static const char gGanonLipsTex[] __attribute__((aligned (2))) = dgGanonLipsTex; -#endif - -#define dgGanonHornBaseTex "__OTR__objects/object_ganon2/gGanonHornBaseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHornBaseTex[] = dgGanonHornBaseTex; -#else -static const char gGanonHornBaseTex[] __attribute__((aligned (2))) = dgGanonHornBaseTex; -#endif - -#define dgGanonHornTex "__OTR__objects/object_ganon2/gGanonHornTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonHornTex[] = dgGanonHornTex; -#else -static const char gGanonHornTex[] __attribute__((aligned (2))) = dgGanonHornTex; -#endif - -#define dgGanonSwordBladeTex "__OTR__objects/object_ganon2/gGanonSwordBladeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonSwordBladeTex[] = dgGanonSwordBladeTex; -#else -static const char gGanonSwordBladeTex[] __attribute__((aligned (2))) = dgGanonSwordBladeTex; -#endif - -#define dgGanonSwordGuardTex "__OTR__objects/object_ganon2/gGanonSwordGuardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonSwordGuardTex[] = dgGanonSwordGuardTex; -#else -static const char gGanonSwordGuardTex[] __attribute__((aligned (2))) = dgGanonSwordGuardTex; -#endif - -#define dgGanonSwordGripTex "__OTR__objects/object_ganon2/gGanonSwordGripTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonSwordGripTex[] = dgGanonSwordGripTex; -#else -static const char gGanonSwordGripTex[] __attribute__((aligned (2))) = dgGanonSwordGripTex; -#endif - -#define dgGanonEyeHalfTex "__OTR__objects/object_ganon2/gGanonEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonEyeHalfTex[] = dgGanonEyeHalfTex; -#else -static const char gGanonEyeHalfTex[] __attribute__((aligned (2))) = dgGanonEyeHalfTex; -#endif - -#define dgGanonEyeClosedTex "__OTR__objects/object_ganon2/gGanonEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonEyeClosedTex[] = dgGanonEyeClosedTex; -#else -static const char gGanonEyeClosedTex[] __attribute__((aligned (2))) = dgGanonEyeClosedTex; -#endif - -#define dgGanonEyesDL "__OTR__objects/object_ganon2/gGanonEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonEyesDL[] = dgGanonEyesDL; -#else -static const char gGanonEyesDL[] __attribute__((aligned (2))) = dgGanonEyesDL; -#endif - -#define dgGanonJewelDL "__OTR__objects/object_ganon2/gGanonJewelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonJewelDL[] = dgGanonJewelDL; -#else -static const char gGanonJewelDL[] __attribute__((aligned (2))) = dgGanonJewelDL; -#endif - -#define dgGanonRightHornDL "__OTR__objects/object_ganon2/gGanonRightHornDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightHornDL[] = dgGanonRightHornDL; -#else -static const char gGanonRightHornDL[] __attribute__((aligned (2))) = dgGanonRightHornDL; -#endif - -#define dgGanonLeftHornDL "__OTR__objects/object_ganon2/gGanonLeftHornDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftHornDL[] = dgGanonLeftHornDL; -#else -static const char gGanonLeftHornDL[] __attribute__((aligned (2))) = dgGanonLeftHornDL; -#endif - -#define dgGanonRightHandDL "__OTR__objects/object_ganon2/gGanonRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightHandDL[] = dgGanonRightHandDL; -#else -static const char gGanonRightHandDL[] __attribute__((aligned (2))) = dgGanonRightHandDL; -#endif - -#define dgGanonLeftHandDL "__OTR__objects/object_ganon2/gGanonLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftHandDL[] = dgGanonLeftHandDL; -#else -static const char gGanonLeftHandDL[] __attribute__((aligned (2))) = dgGanonLeftHandDL; -#endif - -#define dgGanonRightSwordDL "__OTR__objects/object_ganon2/gGanonRightSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRightSwordDL[] = dgGanonRightSwordDL; -#else -static const char gGanonRightSwordDL[] __attribute__((aligned (2))) = dgGanonRightSwordDL; -#endif - -#define dgGanonLeftSwordDL "__OTR__objects/object_ganon2/gGanonLeftSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonLeftSwordDL[] = dgGanonLeftSwordDL; -#else -static const char gGanonLeftSwordDL[] __attribute__((aligned (2))) = dgGanonLeftSwordDL; -#endif - -#define dgGanonOuterTeethDL "__OTR__objects/object_ganon2/gGanonOuterTeethDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonOuterTeethDL[] = dgGanonOuterTeethDL; -#else -static const char gGanonOuterTeethDL[] __attribute__((aligned (2))) = dgGanonOuterTeethDL; -#endif - -#define dgGanonInnerTeethDL "__OTR__objects/object_ganon2/gGanonInnerTeethDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonInnerTeethDL[] = dgGanonInnerTeethDL; -#else -static const char gGanonInnerTeethDL[] __attribute__((aligned (2))) = dgGanonInnerTeethDL; -#endif - -#define dgGanonTitleCardTex "__OTR__objects/object_ganon2/gGanonTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonTitleCardTex[] = dgGanonTitleCardTex; -#else -static const char gGanonTitleCardTex[] __attribute__((aligned (2))) = dgGanonTitleCardTex; -#endif - -#define dgGanonSkel "__OTR__objects/object_ganon2/gGanonSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonSkel[] = dgGanonSkel; -#else -static const char gGanonSkel[] __attribute__((aligned (2))) = dgGanonSkel; -#endif - -#define dgGanonStunStartAnim "__OTR__objects/object_ganon2/gGanonStunStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonStunStartAnim[] = dgGanonStunStartAnim; -#else -static const char gGanonStunStartAnim[] __attribute__((aligned (2))) = dgGanonStunStartAnim; -#endif - -#define dgGanonStunLoopAnim "__OTR__objects/object_ganon2/gGanonStunLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonStunLoopAnim[] = dgGanonStunLoopAnim; -#else -static const char gGanonStunLoopAnim[] __attribute__((aligned (2))) = dgGanonStunLoopAnim; -#endif - -#define dgGanonStunEndAnim "__OTR__objects/object_ganon2/gGanonStunEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonStunEndAnim[] = dgGanonStunEndAnim; -#else -static const char gGanonStunEndAnim[] __attribute__((aligned (2))) = dgGanonStunEndAnim; -#endif - -#define dgGanonDownedStartAnim "__OTR__objects/object_ganon2/gGanonDownedStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonDownedStartAnim[] = dgGanonDownedStartAnim; -#else -static const char gGanonDownedStartAnim[] __attribute__((aligned (2))) = dgGanonDownedStartAnim; -#endif - -#define dgGanonStunEndToWalkAnim "__OTR__objects/object_ganon2/gGanonStunEndToWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonStunEndToWalkAnim[] = dgGanonStunEndToWalkAnim; -#else -static const char gGanonStunEndToWalkAnim[] __attribute__((aligned (2))) = dgGanonStunEndToWalkAnim; -#endif - -#define dgGanonDuplicateStunStartAnim "__OTR__objects/object_ganon2/gGanonDuplicateStunStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonDuplicateStunStartAnim[] = dgGanonDuplicateStunStartAnim; -#else -static const char gGanonDuplicateStunStartAnim[] __attribute__((aligned (2))) = dgGanonDuplicateStunStartAnim; -#endif - -#define dgGanonDuplicateStunLoopAnim "__OTR__objects/object_ganon2/gGanonDuplicateStunLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonDuplicateStunLoopAnim[] = dgGanonDuplicateStunLoopAnim; -#else -static const char gGanonDuplicateStunLoopAnim[] __attribute__((aligned (2))) = dgGanonDuplicateStunLoopAnim; -#endif - -#define dgGanonGetUpAnim "__OTR__objects/object_ganon2/gGanonGetUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonGetUpAnim[] = dgGanonGetUpAnim; -#else -static const char gGanonGetUpAnim[] __attribute__((aligned (2))) = dgGanonGetUpAnim; -#endif - -#define dgGanonDownedLoopAnim "__OTR__objects/object_ganon2/gGanonDownedLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonDownedLoopAnim[] = dgGanonDownedLoopAnim; -#else -static const char gGanonDownedLoopAnim[] __attribute__((aligned (2))) = dgGanonDownedLoopAnim; -#endif - -#define dgGanonWalkAnim "__OTR__objects/object_ganon2/gGanonWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonWalkAnim[] = dgGanonWalkAnim; -#else -static const char gGanonWalkAnim[] __attribute__((aligned (2))) = dgGanonWalkAnim; -#endif - -#define dgGanonWalkToGuardAnim "__OTR__objects/object_ganon2/gGanonWalkToGuardAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonWalkToGuardAnim[] = dgGanonWalkToGuardAnim; -#else -static const char gGanonWalkToGuardAnim[] __attribute__((aligned (2))) = dgGanonWalkToGuardAnim; -#endif - +#include "align_asset_macro.h" + +#define dgGanonFinalBlowAnim "__OTR__objects/object_ganon2/gGanonFinalBlowAnim" +static const ALIGN_ASSET(2) char gGanonFinalBlowAnim[] = dgGanonFinalBlowAnim; + +#define dgGanonDeadStartAnim "__OTR__objects/object_ganon2/gGanonDeadStartAnim" +static const ALIGN_ASSET(2) char gGanonDeadStartAnim[] = dgGanonDeadStartAnim; + +#define dgGanonDeadLoopAnim "__OTR__objects/object_ganon2/gGanonDeadLoopAnim" +static const ALIGN_ASSET(2) char gGanonDeadLoopAnim[] = dgGanonDeadLoopAnim; + +#define dgGanonGuardToWalk "__OTR__objects/object_ganon2/gGanonGuardToWalk" +static const ALIGN_ASSET(2) char gGanonGuardToWalk[] = dgGanonGuardToWalk; + +#define dgGanonLeftSwordSwingAnim "__OTR__objects/object_ganon2/gGanonLeftSwordSwingAnim" +static const ALIGN_ASSET(2) char gGanonLeftSwordSwingAnim[] = dgGanonLeftSwordSwingAnim; + +#define dgGanonRightSwordSwingAnim "__OTR__objects/object_ganon2/gGanonRightSwordSwingAnim" +static const ALIGN_ASSET(2) char gGanonRightSwordSwingAnim[] = dgGanonRightSwordSwingAnim; + +#define dgGanonDamageAnim "__OTR__objects/object_ganon2/gGanonDamageAnim" +static const ALIGN_ASSET(2) char gGanonDamageAnim[] = dgGanonDamageAnim; + +#define dgGanonGuardWalkAnim "__OTR__objects/object_ganon2/gGanonGuardWalkAnim" +static const ALIGN_ASSET(2) char gGanonGuardWalkAnim[] = dgGanonGuardWalkAnim; + +#define dgGanonGuardSidestepAnim "__OTR__objects/object_ganon2/gGanonGuardSidestepAnim" +static const ALIGN_ASSET(2) char gGanonGuardSidestepAnim[] = dgGanonGuardSidestepAnim; + +#define dgGanonGuardIdleAnim "__OTR__objects/object_ganon2/gGanonGuardIdleAnim" +static const ALIGN_ASSET(2) char gGanonGuardIdleAnim[] = dgGanonGuardIdleAnim; + +#define dgGanonPelvisDL "__OTR__objects/object_ganon2/gGanonPelvisDL" +static const ALIGN_ASSET(2) char gGanonPelvisDL[] = dgGanonPelvisDL; + +#define dgGanonTail1DL "__OTR__objects/object_ganon2/gGanonTail1DL" +static const ALIGN_ASSET(2) char gGanonTail1DL[] = dgGanonTail1DL; + +#define dgGanonTail2DL "__OTR__objects/object_ganon2/gGanonTail2DL" +static const ALIGN_ASSET(2) char gGanonTail2DL[] = dgGanonTail2DL; + +#define dgGanonTail3DL "__OTR__objects/object_ganon2/gGanonTail3DL" +static const ALIGN_ASSET(2) char gGanonTail3DL[] = dgGanonTail3DL; + +#define dgGanonTail4DL "__OTR__objects/object_ganon2/gGanonTail4DL" +static const ALIGN_ASSET(2) char gGanonTail4DL[] = dgGanonTail4DL; + +#define dgGanonTail5DL "__OTR__objects/object_ganon2/gGanonTail5DL" +static const ALIGN_ASSET(2) char gGanonTail5DL[] = dgGanonTail5DL; + +#define dgGanonRightShinDL "__OTR__objects/object_ganon2/gGanonRightShinDL" +static const ALIGN_ASSET(2) char gGanonRightShinDL[] = dgGanonRightShinDL; + +#define dgGanonRightFootDL "__OTR__objects/object_ganon2/gGanonRightFootDL" +static const ALIGN_ASSET(2) char gGanonRightFootDL[] = dgGanonRightFootDL; + +#define dgGanonRightThighDL "__OTR__objects/object_ganon2/gGanonRightThighDL" +static const ALIGN_ASSET(2) char gGanonRightThighDL[] = dgGanonRightThighDL; + +#define dgGanonLeftShinDL "__OTR__objects/object_ganon2/gGanonLeftShinDL" +static const ALIGN_ASSET(2) char gGanonLeftShinDL[] = dgGanonLeftShinDL; + +#define dgGanonLeftFootDL "__OTR__objects/object_ganon2/gGanonLeftFootDL" +static const ALIGN_ASSET(2) char gGanonLeftFootDL[] = dgGanonLeftFootDL; + +#define dgGanonLeftThighDL "__OTR__objects/object_ganon2/gGanonLeftThighDL" +static const ALIGN_ASSET(2) char gGanonLeftThighDL[] = dgGanonLeftThighDL; + +#define dgGanonNeckDL "__OTR__objects/object_ganon2/gGanonNeckDL" +static const ALIGN_ASSET(2) char gGanonNeckDL[] = dgGanonNeckDL; + +#define dgGanonHeadDL "__OTR__objects/object_ganon2/gGanonHeadDL" +static const ALIGN_ASSET(2) char gGanonHeadDL[] = dgGanonHeadDL; + +#define dgGanonRightHair3DL "__OTR__objects/object_ganon2/gGanonRightHair3DL" +static const ALIGN_ASSET(2) char gGanonRightHair3DL[] = dgGanonRightHair3DL; + +#define dgGanonRightHair2DL "__OTR__objects/object_ganon2/gGanonRightHair2DL" +static const ALIGN_ASSET(2) char gGanonRightHair2DL[] = dgGanonRightHair2DL; + +#define dgGanonRightHair1DL "__OTR__objects/object_ganon2/gGanonRightHair1DL" +static const ALIGN_ASSET(2) char gGanonRightHair1DL[] = dgGanonRightHair1DL; + +#define dgGanonLeftHair3DL "__OTR__objects/object_ganon2/gGanonLeftHair3DL" +static const ALIGN_ASSET(2) char gGanonLeftHair3DL[] = dgGanonLeftHair3DL; + +#define dgGanonLeftHair2DL "__OTR__objects/object_ganon2/gGanonLeftHair2DL" +static const ALIGN_ASSET(2) char gGanonLeftHair2DL[] = dgGanonLeftHair2DL; + +#define dgGanonLeftHair1DL "__OTR__objects/object_ganon2/gGanonLeftHair1DL" +static const ALIGN_ASSET(2) char gGanonLeftHair1DL[] = dgGanonLeftHair1DL; + +#define dgGanonJawDL "__OTR__objects/object_ganon2/gGanonJawDL" +static const ALIGN_ASSET(2) char gGanonJawDL[] = dgGanonJawDL; + +#define dgGanonMouthDL "__OTR__objects/object_ganon2/gGanonMouthDL" +static const ALIGN_ASSET(2) char gGanonMouthDL[] = dgGanonMouthDL; + +#define dgGanonSnoutDL "__OTR__objects/object_ganon2/gGanonSnoutDL" +static const ALIGN_ASSET(2) char gGanonSnoutDL[] = dgGanonSnoutDL; + +#define dgGanonMiddleHair3DL "__OTR__objects/object_ganon2/gGanonMiddleHair3DL" +static const ALIGN_ASSET(2) char gGanonMiddleHair3DL[] = dgGanonMiddleHair3DL; + +#define dgGanonMiddleHair2DL "__OTR__objects/object_ganon2/gGanonMiddleHair2DL" +static const ALIGN_ASSET(2) char gGanonMiddleHair2DL[] = dgGanonMiddleHair2DL; + +#define dgGanonMiddleHair1DL "__OTR__objects/object_ganon2/gGanonMiddleHair1DL" +static const ALIGN_ASSET(2) char gGanonMiddleHair1DL[] = dgGanonMiddleHair1DL; + +#define dgGanonTorsoDL "__OTR__objects/object_ganon2/gGanonTorsoDL" +static const ALIGN_ASSET(2) char gGanonTorsoDL[] = dgGanonTorsoDL; + +#define dgGanonRightShoulderDL "__OTR__objects/object_ganon2/gGanonRightShoulderDL" +static const ALIGN_ASSET(2) char gGanonRightShoulderDL[] = dgGanonRightShoulderDL; + +#define dgGanonRightForearmDL "__OTR__objects/object_ganon2/gGanonRightForearmDL" +static const ALIGN_ASSET(2) char gGanonRightForearmDL[] = dgGanonRightForearmDL; + +#define dgGanonRightWristDL "__OTR__objects/object_ganon2/gGanonRightWristDL" +static const ALIGN_ASSET(2) char gGanonRightWristDL[] = dgGanonRightWristDL; + +#define dgGanonRightUpperArmDL "__OTR__objects/object_ganon2/gGanonRightUpperArmDL" +static const ALIGN_ASSET(2) char gGanonRightUpperArmDL[] = dgGanonRightUpperArmDL; + +#define dgGanonLeftShoulderDL "__OTR__objects/object_ganon2/gGanonLeftShoulderDL" +static const ALIGN_ASSET(2) char gGanonLeftShoulderDL[] = dgGanonLeftShoulderDL; + +#define dgGanonLeftForearmDL "__OTR__objects/object_ganon2/gGanonLeftForearmDL" +static const ALIGN_ASSET(2) char gGanonLeftForearmDL[] = dgGanonLeftForearmDL; + +#define dgGanonLeftWristDL "__OTR__objects/object_ganon2/gGanonLeftWristDL" +static const ALIGN_ASSET(2) char gGanonLeftWristDL[] = dgGanonLeftWristDL; + +#define dgGanonLeftUpperArmDL "__OTR__objects/object_ganon2/gGanonLeftUpperArmDL" +static const ALIGN_ASSET(2) char gGanonLeftUpperArmDL[] = dgGanonLeftUpperArmDL; + +#define dgGanonBodyTLUT "__OTR__objects/object_ganon2/gGanonBodyTLUT" +static const ALIGN_ASSET(2) char gGanonBodyTLUT[] = dgGanonBodyTLUT; + +#define dgGanonHairFringeTLUT "__OTR__objects/object_ganon2/gGanonHairFringeTLUT" +static const ALIGN_ASSET(2) char gGanonHairFringeTLUT[] = dgGanonHairFringeTLUT; + +#define dgGanonUnusedTLUT "__OTR__objects/object_ganon2/gGanonUnusedTLUT" +static const ALIGN_ASSET(2) char gGanonUnusedTLUT[] = dgGanonUnusedTLUT; + +#define dgGanonGerudoFabricTLUT "__OTR__objects/object_ganon2/gGanonGerudoFabricTLUT" +static const ALIGN_ASSET(2) char gGanonGerudoFabricTLUT[] = dgGanonGerudoFabricTLUT; + +#define dgGanonRedFabricTLUT "__OTR__objects/object_ganon2/gGanonRedFabricTLUT" +static const ALIGN_ASSET(2) char gGanonRedFabricTLUT[] = dgGanonRedFabricTLUT; + +#define dgGanonBlackLeatherAndPauldronTLUT "__OTR__objects/object_ganon2/gGanonBlackLeatherAndPauldronTLUT" +static const ALIGN_ASSET(2) char gGanonBlackLeatherAndPauldronTLUT[] = dgGanonBlackLeatherAndPauldronTLUT; + +#define dgGanonLeatherTLUT "__OTR__objects/object_ganon2/gGanonLeatherTLUT" +static const ALIGN_ASSET(2) char gGanonLeatherTLUT[] = dgGanonLeatherTLUT; + +#define dgGanonHoofTLUT "__OTR__objects/object_ganon2/gGanonHoofTLUT" +static const ALIGN_ASSET(2) char gGanonHoofTLUT[] = dgGanonHoofTLUT; + +#define dgGanonTailTLUT "__OTR__objects/object_ganon2/gGanonTailTLUT" +static const ALIGN_ASSET(2) char gGanonTailTLUT[] = dgGanonTailTLUT; + +#define dgGanonHairTex "__OTR__objects/object_ganon2/gGanonHairTex" +static const ALIGN_ASSET(2) char gGanonHairTex[] = dgGanonHairTex; + +#define dgGanonMouthTex "__OTR__objects/object_ganon2/gGanonMouthTex" +static const ALIGN_ASSET(2) char gGanonMouthTex[] = dgGanonMouthTex; + +#define dgGanonFacialHairTex "__OTR__objects/object_ganon2/gGanonFacialHairTex" +static const ALIGN_ASSET(2) char gGanonFacialHairTex[] = dgGanonFacialHairTex; + +#define dgGanonBodyTex "__OTR__objects/object_ganon2/gGanonBodyTex" +static const ALIGN_ASSET(2) char gGanonBodyTex[] = dgGanonBodyTex; + +#define dgGanonSnoutFrontTex "__OTR__objects/object_ganon2/gGanonSnoutFrontTex" +static const ALIGN_ASSET(2) char gGanonSnoutFrontTex[] = dgGanonSnoutFrontTex; + +#define dgGanonSnoutSideTex "__OTR__objects/object_ganon2/gGanonSnoutSideTex" +static const ALIGN_ASSET(2) char gGanonSnoutSideTex[] = dgGanonSnoutSideTex; + +#define dgGanonHairFringeTex "__OTR__objects/object_ganon2/gGanonHairFringeTex" +static const ALIGN_ASSET(2) char gGanonHairFringeTex[] = dgGanonHairFringeTex; + +#define dgGanonGerudoFabricTex "__OTR__objects/object_ganon2/gGanonGerudoFabricTex" +static const ALIGN_ASSET(2) char gGanonGerudoFabricTex[] = dgGanonGerudoFabricTex; + +#define dgGanonFurTuftTex "__OTR__objects/object_ganon2/gGanonFurTuftTex" +static const ALIGN_ASSET(2) char gGanonFurTuftTex[] = dgGanonFurTuftTex; + +#define dgGanonRedFabricTex "__OTR__objects/object_ganon2/gGanonRedFabricTex" +static const ALIGN_ASSET(2) char gGanonRedFabricTex[] = dgGanonRedFabricTex; + +#define dgGanonPauldronTex "__OTR__objects/object_ganon2/gGanonPauldronTex" +static const ALIGN_ASSET(2) char gGanonPauldronTex[] = dgGanonPauldronTex; + +#define dgGanonCapeFasteningTex "__OTR__objects/object_ganon2/gGanonCapeFasteningTex" +static const ALIGN_ASSET(2) char gGanonCapeFasteningTex[] = dgGanonCapeFasteningTex; + +#define dgGanonBlackLeatherTex "__OTR__objects/object_ganon2/gGanonBlackLeatherTex" +static const ALIGN_ASSET(2) char gGanonBlackLeatherTex[] = dgGanonBlackLeatherTex; + +#define dgGanonLeatherTex "__OTR__objects/object_ganon2/gGanonLeatherTex" +static const ALIGN_ASSET(2) char gGanonLeatherTex[] = dgGanonLeatherTex; + +#define dgGanonHoofTex "__OTR__objects/object_ganon2/gGanonHoofTex" +static const ALIGN_ASSET(2) char gGanonHoofTex[] = dgGanonHoofTex; + +#define dgGanonUnderSkirtTex "__OTR__objects/object_ganon2/gGanonUnderSkirtTex" +static const ALIGN_ASSET(2) char gGanonUnderSkirtTex[] = dgGanonUnderSkirtTex; + +#define dgGanonTailTex "__OTR__objects/object_ganon2/gGanonTailTex" +static const ALIGN_ASSET(2) char gGanonTailTex[] = dgGanonTailTex; + +#define dgGanonEyesTLUT "__OTR__objects/object_ganon2/gGanonEyesTLUT" +static const ALIGN_ASSET(2) char gGanonEyesTLUT[] = dgGanonEyesTLUT; + +#define dgGanonHandTLUT "__OTR__objects/object_ganon2/gGanonHandTLUT" +static const ALIGN_ASSET(2) char gGanonHandTLUT[] = dgGanonHandTLUT; + +#define dgGanonHandTex "__OTR__objects/object_ganon2/gGanonHandTex" +static const ALIGN_ASSET(2) char gGanonHandTex[] = dgGanonHandTex; + +#define dgGanonJewelTex "__OTR__objects/object_ganon2/gGanonJewelTex" +static const ALIGN_ASSET(2) char gGanonJewelTex[] = dgGanonJewelTex; + +#define dgGanonClawAndTeethTex "__OTR__objects/object_ganon2/gGanonClawAndTeethTex" +static const ALIGN_ASSET(2) char gGanonClawAndTeethTex[] = dgGanonClawAndTeethTex; + +#define dgGanonEyeOpenTex "__OTR__objects/object_ganon2/gGanonEyeOpenTex" +static const ALIGN_ASSET(2) char gGanonEyeOpenTex[] = dgGanonEyeOpenTex; + +#define dgGanonLipsTex "__OTR__objects/object_ganon2/gGanonLipsTex" +static const ALIGN_ASSET(2) char gGanonLipsTex[] = dgGanonLipsTex; + +#define dgGanonHornBaseTex "__OTR__objects/object_ganon2/gGanonHornBaseTex" +static const ALIGN_ASSET(2) char gGanonHornBaseTex[] = dgGanonHornBaseTex; + +#define dgGanonHornTex "__OTR__objects/object_ganon2/gGanonHornTex" +static const ALIGN_ASSET(2) char gGanonHornTex[] = dgGanonHornTex; + +#define dgGanonSwordBladeTex "__OTR__objects/object_ganon2/gGanonSwordBladeTex" +static const ALIGN_ASSET(2) char gGanonSwordBladeTex[] = dgGanonSwordBladeTex; + +#define dgGanonSwordGuardTex "__OTR__objects/object_ganon2/gGanonSwordGuardTex" +static const ALIGN_ASSET(2) char gGanonSwordGuardTex[] = dgGanonSwordGuardTex; + +#define dgGanonSwordGripTex "__OTR__objects/object_ganon2/gGanonSwordGripTex" +static const ALIGN_ASSET(2) char gGanonSwordGripTex[] = dgGanonSwordGripTex; + +#define dgGanonEyeHalfTex "__OTR__objects/object_ganon2/gGanonEyeHalfTex" +static const ALIGN_ASSET(2) char gGanonEyeHalfTex[] = dgGanonEyeHalfTex; + +#define dgGanonEyeClosedTex "__OTR__objects/object_ganon2/gGanonEyeClosedTex" +static const ALIGN_ASSET(2) char gGanonEyeClosedTex[] = dgGanonEyeClosedTex; + +#define dgGanonEyesDL "__OTR__objects/object_ganon2/gGanonEyesDL" +static const ALIGN_ASSET(2) char gGanonEyesDL[] = dgGanonEyesDL; + +#define dgGanonJewelDL "__OTR__objects/object_ganon2/gGanonJewelDL" +static const ALIGN_ASSET(2) char gGanonJewelDL[] = dgGanonJewelDL; + +#define dgGanonRightHornDL "__OTR__objects/object_ganon2/gGanonRightHornDL" +static const ALIGN_ASSET(2) char gGanonRightHornDL[] = dgGanonRightHornDL; + +#define dgGanonLeftHornDL "__OTR__objects/object_ganon2/gGanonLeftHornDL" +static const ALIGN_ASSET(2) char gGanonLeftHornDL[] = dgGanonLeftHornDL; + +#define dgGanonRightHandDL "__OTR__objects/object_ganon2/gGanonRightHandDL" +static const ALIGN_ASSET(2) char gGanonRightHandDL[] = dgGanonRightHandDL; + +#define dgGanonLeftHandDL "__OTR__objects/object_ganon2/gGanonLeftHandDL" +static const ALIGN_ASSET(2) char gGanonLeftHandDL[] = dgGanonLeftHandDL; + +#define dgGanonRightSwordDL "__OTR__objects/object_ganon2/gGanonRightSwordDL" +static const ALIGN_ASSET(2) char gGanonRightSwordDL[] = dgGanonRightSwordDL; + +#define dgGanonLeftSwordDL "__OTR__objects/object_ganon2/gGanonLeftSwordDL" +static const ALIGN_ASSET(2) char gGanonLeftSwordDL[] = dgGanonLeftSwordDL; + +#define dgGanonOuterTeethDL "__OTR__objects/object_ganon2/gGanonOuterTeethDL" +static const ALIGN_ASSET(2) char gGanonOuterTeethDL[] = dgGanonOuterTeethDL; + +#define dgGanonInnerTeethDL "__OTR__objects/object_ganon2/gGanonInnerTeethDL" +static const ALIGN_ASSET(2) char gGanonInnerTeethDL[] = dgGanonInnerTeethDL; + +#define dgGanonTitleCardTex "__OTR__objects/object_ganon2/gGanonTitleCardTex" +static const ALIGN_ASSET(2) char gGanonTitleCardTex[] = dgGanonTitleCardTex; + +#define dgGanonSkel "__OTR__objects/object_ganon2/gGanonSkel" +static const ALIGN_ASSET(2) char gGanonSkel[] = dgGanonSkel; + +#define dgGanonStunStartAnim "__OTR__objects/object_ganon2/gGanonStunStartAnim" +static const ALIGN_ASSET(2) char gGanonStunStartAnim[] = dgGanonStunStartAnim; + +#define dgGanonStunLoopAnim "__OTR__objects/object_ganon2/gGanonStunLoopAnim" +static const ALIGN_ASSET(2) char gGanonStunLoopAnim[] = dgGanonStunLoopAnim; + +#define dgGanonStunEndAnim "__OTR__objects/object_ganon2/gGanonStunEndAnim" +static const ALIGN_ASSET(2) char gGanonStunEndAnim[] = dgGanonStunEndAnim; + +#define dgGanonDownedStartAnim "__OTR__objects/object_ganon2/gGanonDownedStartAnim" +static const ALIGN_ASSET(2) char gGanonDownedStartAnim[] = dgGanonDownedStartAnim; + +#define dgGanonStunEndToWalkAnim "__OTR__objects/object_ganon2/gGanonStunEndToWalkAnim" +static const ALIGN_ASSET(2) char gGanonStunEndToWalkAnim[] = dgGanonStunEndToWalkAnim; + +#define dgGanonDuplicateStunStartAnim "__OTR__objects/object_ganon2/gGanonDuplicateStunStartAnim" +static const ALIGN_ASSET(2) char gGanonDuplicateStunStartAnim[] = dgGanonDuplicateStunStartAnim; + +#define dgGanonDuplicateStunLoopAnim "__OTR__objects/object_ganon2/gGanonDuplicateStunLoopAnim" +static const ALIGN_ASSET(2) char gGanonDuplicateStunLoopAnim[] = dgGanonDuplicateStunLoopAnim; + +#define dgGanonGetUpAnim "__OTR__objects/object_ganon2/gGanonGetUpAnim" +static const ALIGN_ASSET(2) char gGanonGetUpAnim[] = dgGanonGetUpAnim; + +#define dgGanonDownedLoopAnim "__OTR__objects/object_ganon2/gGanonDownedLoopAnim" +static const ALIGN_ASSET(2) char gGanonDownedLoopAnim[] = dgGanonDownedLoopAnim; + +#define dgGanonWalkAnim "__OTR__objects/object_ganon2/gGanonWalkAnim" +static const ALIGN_ASSET(2) char gGanonWalkAnim[] = dgGanonWalkAnim; + +#define dgGanonWalkToGuardAnim "__OTR__objects/object_ganon2/gGanonWalkToGuardAnim" +static const ALIGN_ASSET(2) char gGanonWalkToGuardAnim[] = dgGanonWalkToGuardAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_ganon_anime1/object_ganon_anime1.h b/soh/assets/objects/object_ganon_anime1/object_ganon_anime1.h index e6b93f31d..049dba81f 100644 --- a/soh/assets/objects/object_ganon_anime1/object_ganon_anime1.h +++ b/soh/assets/objects/object_ganon_anime1/object_ganon_anime1.h @@ -1,177 +1,78 @@ #pragma once -#define dgGanondorfBigMagicWindupAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicWindupAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBigMagicWindupAnim[] = dgGanondorfBigMagicWindupAnim; -#else -static const char gGanondorfBigMagicWindupAnim[] __attribute__((aligned (2))) = dgGanondorfBigMagicWindupAnim; -#endif - -#define dgGanondorfBigMagicThrowAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicThrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBigMagicThrowAnim[] = dgGanondorfBigMagicThrowAnim; -#else -static const char gGanondorfBigMagicThrowAnim[] __attribute__((aligned (2))) = dgGanondorfBigMagicThrowAnim; -#endif - -#define dgGanondorfBigMagicThrowEndAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicThrowEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBigMagicThrowEndAnim[] = dgGanondorfBigMagicThrowEndAnim; -#else -static const char gGanondorfBigMagicThrowEndAnim[] __attribute__((aligned (2))) = dgGanondorfBigMagicThrowEndAnim; -#endif - -#define dgGanondorfBigMagicChargeStartAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicChargeStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBigMagicChargeStartAnim[] = dgGanondorfBigMagicChargeStartAnim; -#else -static const char gGanondorfBigMagicChargeStartAnim[] __attribute__((aligned (2))) = dgGanondorfBigMagicChargeStartAnim; -#endif - -#define dgGanondorfBigMagicChargeHoldAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicChargeHoldAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBigMagicChargeHoldAnim[] = dgGanondorfBigMagicChargeHoldAnim; -#else -static const char gGanondorfBigMagicChargeHoldAnim[] __attribute__((aligned (2))) = dgGanondorfBigMagicChargeHoldAnim; -#endif - -#define dgGanondorfPoundAnim "__OTR__objects/object_ganon_anime1/gGanondorfPoundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfPoundAnim[] = dgGanondorfPoundAnim; -#else -static const char gGanondorfPoundAnim[] __attribute__((aligned (2))) = dgGanondorfPoundAnim; -#endif - -#define dgGanondorfPoundEndAnim "__OTR__objects/object_ganon_anime1/gGanondorfPoundEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfPoundEndAnim[] = dgGanondorfPoundEndAnim; -#else -static const char gGanondorfPoundEndAnim[] __attribute__((aligned (2))) = dgGanondorfPoundEndAnim; -#endif - -#define dgGanondorfDownedAnim "__OTR__objects/object_ganon_anime1/gGanondorfDownedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfDownedAnim[] = dgGanondorfDownedAnim; -#else -static const char gGanondorfDownedAnim[] __attribute__((aligned (2))) = dgGanondorfDownedAnim; -#endif - -#define dgGanondorfLightArrowHitAnim "__OTR__objects/object_ganon_anime1/gGanondorfLightArrowHitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightArrowHitAnim[] = dgGanondorfLightArrowHitAnim; -#else -static const char gGanondorfLightArrowHitAnim[] __attribute__((aligned (2))) = dgGanondorfLightArrowHitAnim; -#endif - -#define dgGanondorfLightEnergyHitAnim "__OTR__objects/object_ganon_anime1/gGanondorfLightEnergyHitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightEnergyHitAnim[] = dgGanondorfLightEnergyHitAnim; -#else -static const char gGanondorfLightEnergyHitAnim[] __attribute__((aligned (2))) = dgGanondorfLightEnergyHitAnim; -#endif - -#define dgGanondorfGetUp1Anim "__OTR__objects/object_ganon_anime1/gGanondorfGetUp1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfGetUp1Anim[] = dgGanondorfGetUp1Anim; -#else -static const char gGanondorfGetUp1Anim[] __attribute__((aligned (2))) = dgGanondorfGetUp1Anim; -#endif - -#define dgGanondorfGetUp2Anim "__OTR__objects/object_ganon_anime1/gGanondorfGetUp2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfGetUp2Anim[] = dgGanondorfGetUp2Anim; -#else -static const char gGanondorfGetUp2Anim[] __attribute__((aligned (2))) = dgGanondorfGetUp2Anim; -#endif - -#define dgGanondorfLandAnim "__OTR__objects/object_ganon_anime1/gGanondorfLandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLandAnim[] = dgGanondorfLandAnim; -#else -static const char gGanondorfLandAnim[] __attribute__((aligned (2))) = dgGanondorfLandAnim; -#endif - -#define dgGanondorfVulnerableAnim "__OTR__objects/object_ganon_anime1/gGanondorfVulnerableAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfVulnerableAnim[] = dgGanondorfVulnerableAnim; -#else -static const char gGanondorfVulnerableAnim[] __attribute__((aligned (2))) = dgGanondorfVulnerableAnim; -#endif - -#define dgGanondorfThrowAnim "__OTR__objects/object_ganon_anime1/gGanondorfThrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfThrowAnim[] = dgGanondorfThrowAnim; -#else -static const char gGanondorfThrowAnim[] __attribute__((aligned (2))) = dgGanondorfThrowAnim; -#endif - -#define dgGanondorfBigMagicHitAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicHitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBigMagicHitAnim[] = dgGanondorfBigMagicHitAnim; -#else -static const char gGanondorfBigMagicHitAnim[] __attribute__((aligned (2))) = dgGanondorfBigMagicHitAnim; -#endif - -#define dgGanondorfGetUp3Anim "__OTR__objects/object_ganon_anime1/gGanondorfGetUp3Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfGetUp3Anim[] = dgGanondorfGetUp3Anim; -#else -static const char gGanondorfGetUp3Anim[] __attribute__((aligned (2))) = dgGanondorfGetUp3Anim; -#endif - -#define dgGanondorfLightArrowWaitAnim "__OTR__objects/object_ganon_anime1/gGanondorfLightArrowWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightArrowWaitAnim[] = dgGanondorfLightArrowWaitAnim; -#else -static const char gGanondorfLightArrowWaitAnim[] __attribute__((aligned (2))) = dgGanondorfLightArrowWaitAnim; -#endif - -#define dgGanondorfDamageAnim "__OTR__objects/object_ganon_anime1/gGanondorfDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfDamageAnim[] = dgGanondorfDamageAnim; -#else -static const char gGanondorfDamageAnim[] __attribute__((aligned (2))) = dgGanondorfDamageAnim; -#endif - -#define dgGanondorfFloatAnim "__OTR__objects/object_ganon_anime1/gGanondorfFloatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfFloatAnim[] = dgGanondorfFloatAnim; -#else -static const char gGanondorfFloatAnim[] __attribute__((aligned (2))) = dgGanondorfFloatAnim; -#endif - -#define dgGanondorfBlockAnim "__OTR__objects/object_ganon_anime1/gGanondorfBlockAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBlockAnim[] = dgGanondorfBlockAnim; -#else -static const char gGanondorfBlockAnim[] __attribute__((aligned (2))) = dgGanondorfBlockAnim; -#endif - -#define dgGanondorfBlockReleaseAnim "__OTR__objects/object_ganon_anime1/gGanondorfBlockReleaseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBlockReleaseAnim[] = dgGanondorfBlockReleaseAnim; -#else -static const char gGanondorfBlockReleaseAnim[] __attribute__((aligned (2))) = dgGanondorfBlockReleaseAnim; -#endif - -#define dgGanondorfChargeLightBallAnim "__OTR__objects/object_ganon_anime1/gGanondorfChargeLightBallAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfChargeLightBallAnim[] = dgGanondorfChargeLightBallAnim; -#else -static const char gGanondorfChargeLightBallAnim[] __attribute__((aligned (2))) = dgGanondorfChargeLightBallAnim; -#endif - -#define dgGanondorfVolleyLeftAnim "__OTR__objects/object_ganon_anime1/gGanondorfVolleyLeftAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfVolleyLeftAnim[] = dgGanondorfVolleyLeftAnim; -#else -static const char gGanondorfVolleyLeftAnim[] __attribute__((aligned (2))) = dgGanondorfVolleyLeftAnim; -#endif - -#define dgGanondorfVolleyRightAnim "__OTR__objects/object_ganon_anime1/gGanondorfVolleyRightAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfVolleyRightAnim[] = dgGanondorfVolleyRightAnim; -#else -static const char gGanondorfVolleyRightAnim[] __attribute__((aligned (2))) = dgGanondorfVolleyRightAnim; -#endif - +#include "align_asset_macro.h" + +#define dgGanondorfBigMagicWindupAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicWindupAnim" +static const ALIGN_ASSET(2) char gGanondorfBigMagicWindupAnim[] = dgGanondorfBigMagicWindupAnim; + +#define dgGanondorfBigMagicThrowAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicThrowAnim" +static const ALIGN_ASSET(2) char gGanondorfBigMagicThrowAnim[] = dgGanondorfBigMagicThrowAnim; + +#define dgGanondorfBigMagicThrowEndAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicThrowEndAnim" +static const ALIGN_ASSET(2) char gGanondorfBigMagicThrowEndAnim[] = dgGanondorfBigMagicThrowEndAnim; + +#define dgGanondorfBigMagicChargeStartAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicChargeStartAnim" +static const ALIGN_ASSET(2) char gGanondorfBigMagicChargeStartAnim[] = dgGanondorfBigMagicChargeStartAnim; + +#define dgGanondorfBigMagicChargeHoldAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicChargeHoldAnim" +static const ALIGN_ASSET(2) char gGanondorfBigMagicChargeHoldAnim[] = dgGanondorfBigMagicChargeHoldAnim; + +#define dgGanondorfPoundAnim "__OTR__objects/object_ganon_anime1/gGanondorfPoundAnim" +static const ALIGN_ASSET(2) char gGanondorfPoundAnim[] = dgGanondorfPoundAnim; + +#define dgGanondorfPoundEndAnim "__OTR__objects/object_ganon_anime1/gGanondorfPoundEndAnim" +static const ALIGN_ASSET(2) char gGanondorfPoundEndAnim[] = dgGanondorfPoundEndAnim; + +#define dgGanondorfDownedAnim "__OTR__objects/object_ganon_anime1/gGanondorfDownedAnim" +static const ALIGN_ASSET(2) char gGanondorfDownedAnim[] = dgGanondorfDownedAnim; + +#define dgGanondorfLightArrowHitAnim "__OTR__objects/object_ganon_anime1/gGanondorfLightArrowHitAnim" +static const ALIGN_ASSET(2) char gGanondorfLightArrowHitAnim[] = dgGanondorfLightArrowHitAnim; + +#define dgGanondorfLightEnergyHitAnim "__OTR__objects/object_ganon_anime1/gGanondorfLightEnergyHitAnim" +static const ALIGN_ASSET(2) char gGanondorfLightEnergyHitAnim[] = dgGanondorfLightEnergyHitAnim; + +#define dgGanondorfGetUp1Anim "__OTR__objects/object_ganon_anime1/gGanondorfGetUp1Anim" +static const ALIGN_ASSET(2) char gGanondorfGetUp1Anim[] = dgGanondorfGetUp1Anim; + +#define dgGanondorfGetUp2Anim "__OTR__objects/object_ganon_anime1/gGanondorfGetUp2Anim" +static const ALIGN_ASSET(2) char gGanondorfGetUp2Anim[] = dgGanondorfGetUp2Anim; + +#define dgGanondorfLandAnim "__OTR__objects/object_ganon_anime1/gGanondorfLandAnim" +static const ALIGN_ASSET(2) char gGanondorfLandAnim[] = dgGanondorfLandAnim; + +#define dgGanondorfVulnerableAnim "__OTR__objects/object_ganon_anime1/gGanondorfVulnerableAnim" +static const ALIGN_ASSET(2) char gGanondorfVulnerableAnim[] = dgGanondorfVulnerableAnim; + +#define dgGanondorfThrowAnim "__OTR__objects/object_ganon_anime1/gGanondorfThrowAnim" +static const ALIGN_ASSET(2) char gGanondorfThrowAnim[] = dgGanondorfThrowAnim; + +#define dgGanondorfBigMagicHitAnim "__OTR__objects/object_ganon_anime1/gGanondorfBigMagicHitAnim" +static const ALIGN_ASSET(2) char gGanondorfBigMagicHitAnim[] = dgGanondorfBigMagicHitAnim; + +#define dgGanondorfGetUp3Anim "__OTR__objects/object_ganon_anime1/gGanondorfGetUp3Anim" +static const ALIGN_ASSET(2) char gGanondorfGetUp3Anim[] = dgGanondorfGetUp3Anim; + +#define dgGanondorfLightArrowWaitAnim "__OTR__objects/object_ganon_anime1/gGanondorfLightArrowWaitAnim" +static const ALIGN_ASSET(2) char gGanondorfLightArrowWaitAnim[] = dgGanondorfLightArrowWaitAnim; + +#define dgGanondorfDamageAnim "__OTR__objects/object_ganon_anime1/gGanondorfDamageAnim" +static const ALIGN_ASSET(2) char gGanondorfDamageAnim[] = dgGanondorfDamageAnim; + +#define dgGanondorfFloatAnim "__OTR__objects/object_ganon_anime1/gGanondorfFloatAnim" +static const ALIGN_ASSET(2) char gGanondorfFloatAnim[] = dgGanondorfFloatAnim; + +#define dgGanondorfBlockAnim "__OTR__objects/object_ganon_anime1/gGanondorfBlockAnim" +static const ALIGN_ASSET(2) char gGanondorfBlockAnim[] = dgGanondorfBlockAnim; + +#define dgGanondorfBlockReleaseAnim "__OTR__objects/object_ganon_anime1/gGanondorfBlockReleaseAnim" +static const ALIGN_ASSET(2) char gGanondorfBlockReleaseAnim[] = dgGanondorfBlockReleaseAnim; + +#define dgGanondorfChargeLightBallAnim "__OTR__objects/object_ganon_anime1/gGanondorfChargeLightBallAnim" +static const ALIGN_ASSET(2) char gGanondorfChargeLightBallAnim[] = dgGanondorfChargeLightBallAnim; + +#define dgGanondorfVolleyLeftAnim "__OTR__objects/object_ganon_anime1/gGanondorfVolleyLeftAnim" +static const ALIGN_ASSET(2) char gGanondorfVolleyLeftAnim[] = dgGanondorfVolleyLeftAnim; + +#define dgGanondorfVolleyRightAnim "__OTR__objects/object_ganon_anime1/gGanondorfVolleyRightAnim" +static const ALIGN_ASSET(2) char gGanondorfVolleyRightAnim[] = dgGanondorfVolleyRightAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_ganon_anime2/object_ganon_anime2.h b/soh/assets/objects/object_ganon_anime2/object_ganon_anime2.h index 62c55ba55..8e8b8dd0e 100644 --- a/soh/assets/objects/object_ganon_anime2/object_ganon_anime2.h +++ b/soh/assets/objects/object_ganon_anime2/object_ganon_anime2.h @@ -1,121 +1,54 @@ #pragma once -#define dgGanondorfTurnAroundAnim "__OTR__objects/object_ganon_anime2/gGanondorfTurnAroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfTurnAroundAnim[] = dgGanondorfTurnAroundAnim; -#else -static const char gGanondorfTurnAroundAnim[] __attribute__((aligned (2))) = dgGanondorfTurnAroundAnim; -#endif - -#define dgGanondorfStandIdleAnim "__OTR__objects/object_ganon_anime2/gGanondorfStandIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfStandIdleAnim[] = dgGanondorfStandIdleAnim; -#else -static const char gGanondorfStandIdleAnim[] __attribute__((aligned (2))) = dgGanondorfStandIdleAnim; -#endif - -#define dgGanondorfStandUpFromOrganAnim "__OTR__objects/object_ganon_anime2/gGanondorfStandUpFromOrganAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfStandUpFromOrganAnim[] = dgGanondorfStandUpFromOrganAnim; -#else -static const char gGanondorfStandUpFromOrganAnim[] __attribute__((aligned (2))) = dgGanondorfStandUpFromOrganAnim; -#endif - -#define dgGanondorfStopPlayingOrganAnim "__OTR__objects/object_ganon_anime2/gGanondorfStopPlayingOrganAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfStopPlayingOrganAnim[] = dgGanondorfStopPlayingOrganAnim; -#else -static const char gGanondorfStopPlayingOrganAnim[] __attribute__((aligned (2))) = dgGanondorfStopPlayingOrganAnim; -#endif - -#define dgGanondorfPlayOrganAnim "__OTR__objects/object_ganon_anime2/gGanondorfPlayOrganAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfPlayOrganAnim[] = dgGanondorfPlayOrganAnim; -#else -static const char gGanondorfPlayOrganAnim[] __attribute__((aligned (2))) = dgGanondorfPlayOrganAnim; -#endif - -#define dgGanondorfLeanOnOrganAnim "__OTR__objects/object_ganon_anime2/gGanondorfLeanOnOrganAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLeanOnOrganAnim[] = dgGanondorfLeanOnOrganAnim; -#else -static const char gGanondorfLeanOnOrganAnim[] __attribute__((aligned (2))) = dgGanondorfLeanOnOrganAnim; -#endif - -#define dgGanondorfRaiseHandStartAnim "__OTR__objects/object_ganon_anime2/gGanondorfRaiseHandStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRaiseHandStartAnim[] = dgGanondorfRaiseHandStartAnim; -#else -static const char gGanondorfRaiseHandStartAnim[] __attribute__((aligned (2))) = dgGanondorfRaiseHandStartAnim; -#endif - -#define dgGanondorfRaiseHandLoopAnim "__OTR__objects/object_ganon_anime2/gGanondorfRaiseHandLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfRaiseHandLoopAnim[] = dgGanondorfRaiseHandLoopAnim; -#else -static const char gGanondorfRaiseHandLoopAnim[] __attribute__((aligned (2))) = dgGanondorfRaiseHandLoopAnim; -#endif - -#define dgGanondorfStandBackwardsAnim "__OTR__objects/object_ganon_anime2/gGanondorfStandBackwardsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfStandBackwardsAnim[] = dgGanondorfStandBackwardsAnim; -#else -static const char gGanondorfStandBackwardsAnim[] __attribute__((aligned (2))) = dgGanondorfStandBackwardsAnim; -#endif - -#define dgGanondorfLaughWhileLeaningAnim "__OTR__objects/object_ganon_anime2/gGanondorfLaughWhileLeaningAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLaughWhileLeaningAnim[] = dgGanondorfLaughWhileLeaningAnim; -#else -static const char gGanondorfLaughWhileLeaningAnim[] __attribute__((aligned (2))) = dgGanondorfLaughWhileLeaningAnim; -#endif - -#define dgGanondorfCollapseAnim "__OTR__objects/object_ganon_anime2/gGanondorfCollapseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfCollapseAnim[] = dgGanondorfCollapseAnim; -#else -static const char gGanondorfCollapseAnim[] __attribute__((aligned (2))) = dgGanondorfCollapseAnim; -#endif - -#define dgGanondorfVomitStartAnim "__OTR__objects/object_ganon_anime2/gGanondorfVomitStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfVomitStartAnim[] = dgGanondorfVomitStartAnim; -#else -static const char gGanondorfVomitStartAnim[] __attribute__((aligned (2))) = dgGanondorfVomitStartAnim; -#endif - -#define dgGanondorfVomitLoopAnim "__OTR__objects/object_ganon_anime2/gGanondorfVomitLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfVomitLoopAnim[] = dgGanondorfVomitLoopAnim; -#else -static const char gGanondorfVomitLoopAnim[] __attribute__((aligned (2))) = dgGanondorfVomitLoopAnim; -#endif - -#define dgGanondorfDefeatedStartAnim "__OTR__objects/object_ganon_anime2/gGanondorfDefeatedStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfDefeatedStartAnim[] = dgGanondorfDefeatedStartAnim; -#else -static const char gGanondorfDefeatedStartAnim[] __attribute__((aligned (2))) = dgGanondorfDefeatedStartAnim; -#endif - -#define dgGanondorfDefeatedLoopAnim "__OTR__objects/object_ganon_anime2/gGanondorfDefeatedLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfDefeatedLoopAnim[] = dgGanondorfDefeatedLoopAnim; -#else -static const char gGanondorfDefeatedLoopAnim[] __attribute__((aligned (2))) = dgGanondorfDefeatedLoopAnim; -#endif - -#define dgGanondorfYellStartAnim "__OTR__objects/object_ganon_anime2/gGanondorfYellStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfYellStartAnim[] = dgGanondorfYellStartAnim; -#else -static const char gGanondorfYellStartAnim[] __attribute__((aligned (2))) = dgGanondorfYellStartAnim; -#endif - -#define dgGanondorfYellLoopAnim "__OTR__objects/object_ganon_anime2/gGanondorfYellLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfYellLoopAnim[] = dgGanondorfYellLoopAnim; -#else -static const char gGanondorfYellLoopAnim[] __attribute__((aligned (2))) = dgGanondorfYellLoopAnim; -#endif - +#include "align_asset_macro.h" + +#define dgGanondorfTurnAroundAnim "__OTR__objects/object_ganon_anime2/gGanondorfTurnAroundAnim" +static const ALIGN_ASSET(2) char gGanondorfTurnAroundAnim[] = dgGanondorfTurnAroundAnim; + +#define dgGanondorfStandIdleAnim "__OTR__objects/object_ganon_anime2/gGanondorfStandIdleAnim" +static const ALIGN_ASSET(2) char gGanondorfStandIdleAnim[] = dgGanondorfStandIdleAnim; + +#define dgGanondorfStandUpFromOrganAnim "__OTR__objects/object_ganon_anime2/gGanondorfStandUpFromOrganAnim" +static const ALIGN_ASSET(2) char gGanondorfStandUpFromOrganAnim[] = dgGanondorfStandUpFromOrganAnim; + +#define dgGanondorfStopPlayingOrganAnim "__OTR__objects/object_ganon_anime2/gGanondorfStopPlayingOrganAnim" +static const ALIGN_ASSET(2) char gGanondorfStopPlayingOrganAnim[] = dgGanondorfStopPlayingOrganAnim; + +#define dgGanondorfPlayOrganAnim "__OTR__objects/object_ganon_anime2/gGanondorfPlayOrganAnim" +static const ALIGN_ASSET(2) char gGanondorfPlayOrganAnim[] = dgGanondorfPlayOrganAnim; + +#define dgGanondorfLeanOnOrganAnim "__OTR__objects/object_ganon_anime2/gGanondorfLeanOnOrganAnim" +static const ALIGN_ASSET(2) char gGanondorfLeanOnOrganAnim[] = dgGanondorfLeanOnOrganAnim; + +#define dgGanondorfRaiseHandStartAnim "__OTR__objects/object_ganon_anime2/gGanondorfRaiseHandStartAnim" +static const ALIGN_ASSET(2) char gGanondorfRaiseHandStartAnim[] = dgGanondorfRaiseHandStartAnim; + +#define dgGanondorfRaiseHandLoopAnim "__OTR__objects/object_ganon_anime2/gGanondorfRaiseHandLoopAnim" +static const ALIGN_ASSET(2) char gGanondorfRaiseHandLoopAnim[] = dgGanondorfRaiseHandLoopAnim; + +#define dgGanondorfStandBackwardsAnim "__OTR__objects/object_ganon_anime2/gGanondorfStandBackwardsAnim" +static const ALIGN_ASSET(2) char gGanondorfStandBackwardsAnim[] = dgGanondorfStandBackwardsAnim; + +#define dgGanondorfLaughWhileLeaningAnim "__OTR__objects/object_ganon_anime2/gGanondorfLaughWhileLeaningAnim" +static const ALIGN_ASSET(2) char gGanondorfLaughWhileLeaningAnim[] = dgGanondorfLaughWhileLeaningAnim; + +#define dgGanondorfCollapseAnim "__OTR__objects/object_ganon_anime2/gGanondorfCollapseAnim" +static const ALIGN_ASSET(2) char gGanondorfCollapseAnim[] = dgGanondorfCollapseAnim; + +#define dgGanondorfVomitStartAnim "__OTR__objects/object_ganon_anime2/gGanondorfVomitStartAnim" +static const ALIGN_ASSET(2) char gGanondorfVomitStartAnim[] = dgGanondorfVomitStartAnim; + +#define dgGanondorfVomitLoopAnim "__OTR__objects/object_ganon_anime2/gGanondorfVomitLoopAnim" +static const ALIGN_ASSET(2) char gGanondorfVomitLoopAnim[] = dgGanondorfVomitLoopAnim; + +#define dgGanondorfDefeatedStartAnim "__OTR__objects/object_ganon_anime2/gGanondorfDefeatedStartAnim" +static const ALIGN_ASSET(2) char gGanondorfDefeatedStartAnim[] = dgGanondorfDefeatedStartAnim; + +#define dgGanondorfDefeatedLoopAnim "__OTR__objects/object_ganon_anime2/gGanondorfDefeatedLoopAnim" +static const ALIGN_ASSET(2) char gGanondorfDefeatedLoopAnim[] = dgGanondorfDefeatedLoopAnim; + +#define dgGanondorfYellStartAnim "__OTR__objects/object_ganon_anime2/gGanondorfYellStartAnim" +static const ALIGN_ASSET(2) char gGanondorfYellStartAnim[] = dgGanondorfYellStartAnim; + +#define dgGanondorfYellLoopAnim "__OTR__objects/object_ganon_anime2/gGanondorfYellLoopAnim" +static const ALIGN_ASSET(2) char gGanondorfYellLoopAnim[] = dgGanondorfYellLoopAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_ganon_anime3/object_ganon_anime3.h b/soh/assets/objects/object_ganon_anime3/object_ganon_anime3.h index 2b050d3d9..a2fbbe594 100644 --- a/soh/assets/objects/object_ganon_anime3/object_ganon_anime3.h +++ b/soh/assets/objects/object_ganon_anime3/object_ganon_anime3.h @@ -1,65 +1,30 @@ #pragma once -#define dgGanondorfShowTriforceStartAnim "__OTR__objects/object_ganon_anime3/gGanondorfShowTriforceStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfShowTriforceStartAnim[] = dgGanondorfShowTriforceStartAnim; -#else -static const char gGanondorfShowTriforceStartAnim[] __attribute__((aligned (2))) = dgGanondorfShowTriforceStartAnim; -#endif - -#define dgGanondorfBurstOutAnim "__OTR__objects/object_ganon_anime3/gGanondorfBurstOutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBurstOutAnim[] = dgGanondorfBurstOutAnim; -#else -static const char gGanondorfBurstOutAnim[] __attribute__((aligned (2))) = dgGanondorfBurstOutAnim; -#endif - -#define dgGanondorfTransformEndAnim "__OTR__objects/object_ganon_anime3/gGanondorfTransformEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfTransformEndAnim[] = dgGanondorfTransformEndAnim; -#else -static const char gGanondorfTransformEndAnim[] __attribute__((aligned (2))) = dgGanondorfTransformEndAnim; -#endif - -#define dgGanondorfFloatingHeavyBreathingAnim "__OTR__objects/object_ganon_anime3/gGanondorfFloatingHeavyBreathingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfFloatingHeavyBreathingAnim[] = dgGanondorfFloatingHeavyBreathingAnim; -#else -static const char gGanondorfFloatingHeavyBreathingAnim[] __attribute__((aligned (2))) = dgGanondorfFloatingHeavyBreathingAnim; -#endif - -#define dgGanondorfTransformStartAnim "__OTR__objects/object_ganon_anime3/gGanondorfTransformStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfTransformStartAnim[] = dgGanondorfTransformStartAnim; -#else -static const char gGanondorfTransformStartAnim[] __attribute__((aligned (2))) = dgGanondorfTransformStartAnim; -#endif - -#define dgGanondorfTransformLoopAnim "__OTR__objects/object_ganon_anime3/gGanondorfTransformLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfTransformLoopAnim[] = dgGanondorfTransformLoopAnim; -#else -static const char gGanondorfTransformLoopAnim[] __attribute__((aligned (2))) = dgGanondorfTransformLoopAnim; -#endif - -#define dgGanondorfShowTriforceLoopAnim "__OTR__objects/object_ganon_anime3/gGanondorfShowTriforceLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfShowTriforceLoopAnim[] = dgGanondorfShowTriforceLoopAnim; -#else -static const char gGanondorfShowTriforceLoopAnim[] __attribute__((aligned (2))) = dgGanondorfShowTriforceLoopAnim; -#endif - -#define dgGanonUncurlAndFlailAnim "__OTR__objects/object_ganon_anime3/gGanonUncurlAndFlailAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonUncurlAndFlailAnim[] = dgGanonUncurlAndFlailAnim; -#else -static const char gGanonUncurlAndFlailAnim[] __attribute__((aligned (2))) = dgGanonUncurlAndFlailAnim; -#endif - -#define dgGanonRoarAnim "__OTR__objects/object_ganon_anime3/gGanonRoarAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRoarAnim[] = dgGanonRoarAnim; -#else -static const char gGanonRoarAnim[] __attribute__((aligned (2))) = dgGanonRoarAnim; -#endif - +#include "align_asset_macro.h" + +#define dgGanondorfShowTriforceStartAnim "__OTR__objects/object_ganon_anime3/gGanondorfShowTriforceStartAnim" +static const ALIGN_ASSET(2) char gGanondorfShowTriforceStartAnim[] = dgGanondorfShowTriforceStartAnim; + +#define dgGanondorfBurstOutAnim "__OTR__objects/object_ganon_anime3/gGanondorfBurstOutAnim" +static const ALIGN_ASSET(2) char gGanondorfBurstOutAnim[] = dgGanondorfBurstOutAnim; + +#define dgGanondorfTransformEndAnim "__OTR__objects/object_ganon_anime3/gGanondorfTransformEndAnim" +static const ALIGN_ASSET(2) char gGanondorfTransformEndAnim[] = dgGanondorfTransformEndAnim; + +#define dgGanondorfFloatingHeavyBreathingAnim "__OTR__objects/object_ganon_anime3/gGanondorfFloatingHeavyBreathingAnim" +static const ALIGN_ASSET(2) char gGanondorfFloatingHeavyBreathingAnim[] = dgGanondorfFloatingHeavyBreathingAnim; + +#define dgGanondorfTransformStartAnim "__OTR__objects/object_ganon_anime3/gGanondorfTransformStartAnim" +static const ALIGN_ASSET(2) char gGanondorfTransformStartAnim[] = dgGanondorfTransformStartAnim; + +#define dgGanondorfTransformLoopAnim "__OTR__objects/object_ganon_anime3/gGanondorfTransformLoopAnim" +static const ALIGN_ASSET(2) char gGanondorfTransformLoopAnim[] = dgGanondorfTransformLoopAnim; + +#define dgGanondorfShowTriforceLoopAnim "__OTR__objects/object_ganon_anime3/gGanondorfShowTriforceLoopAnim" +static const ALIGN_ASSET(2) char gGanondorfShowTriforceLoopAnim[] = dgGanondorfShowTriforceLoopAnim; + +#define dgGanonUncurlAndFlailAnim "__OTR__objects/object_ganon_anime3/gGanonUncurlAndFlailAnim" +static const ALIGN_ASSET(2) char gGanonUncurlAndFlailAnim[] = dgGanonUncurlAndFlailAnim; + +#define dgGanonRoarAnim "__OTR__objects/object_ganon_anime3/gGanonRoarAnim" +static const ALIGN_ASSET(2) char gGanonRoarAnim[] = dgGanonRoarAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_ganon_objects/object_ganon_objects.h b/soh/assets/objects/object_ganon_objects/object_ganon_objects.h index bc2cc3d22..2e770972a 100644 --- a/soh/assets/objects/object_ganon_objects/object_ganon_objects.h +++ b/soh/assets/objects/object_ganon_objects/object_ganon_objects.h @@ -1,16 +1,9 @@ #pragma once -#define dobject_ganon_objects_DL_0000C0 "__OTR__objects/object_ganon_objects/object_ganon_objects_DL_0000C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ganon_objects_DL_0000C0[] = dobject_ganon_objects_DL_0000C0; -#else -static const char object_ganon_objects_DL_0000C0[] __attribute__((aligned (2))) = dobject_ganon_objects_DL_0000C0; -#endif - -#define dobject_ganon_objects_Tex_000170 "__OTR__objects/object_ganon_objects/object_ganon_objects_Tex_000170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ganon_objects_Tex_000170[] = dobject_ganon_objects_Tex_000170; -#else -static const char object_ganon_objects_Tex_000170[] __attribute__((aligned (2))) = dobject_ganon_objects_Tex_000170; -#endif - +#include "align_asset_macro.h" + +#define dobject_ganon_objects_DL_0000C0 "__OTR__objects/object_ganon_objects/object_ganon_objects_DL_0000C0" +static const ALIGN_ASSET(2) char object_ganon_objects_DL_0000C0[] = dobject_ganon_objects_DL_0000C0; + +#define dobject_ganon_objects_Tex_000170 "__OTR__objects/object_ganon_objects/object_ganon_objects_Tex_000170" +static const ALIGN_ASSET(2) char object_ganon_objects_Tex_000170[] = dobject_ganon_objects_Tex_000170; \ No newline at end of file diff --git a/soh/assets/objects/object_ge1/object_ge1.h b/soh/assets/objects/object_ge1/object_ge1.h index ea59fcc5f..9f317029f 100644 --- a/soh/assets/objects/object_ge1/object_ge1.h +++ b/soh/assets/objects/object_ge1/object_ge1.h @@ -1,289 +1,126 @@ #pragma once -#define dgGerudoWhiteSkel "__OTR__objects/object_ge1/gGerudoWhiteSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteSkel[] = dgGerudoWhiteSkel; -#else -static const char gGerudoWhiteSkel[] __attribute__((aligned (2))) = dgGerudoWhiteSkel; -#endif - -#define dgGerudoWhiteWaistDL "__OTR__objects/object_ge1/gGerudoWhiteWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteWaistDL[] = dgGerudoWhiteWaistDL; -#else -static const char gGerudoWhiteWaistDL[] __attribute__((aligned (2))) = dgGerudoWhiteWaistDL; -#endif - -#define dgGerudoWhiteLeftThighDL "__OTR__objects/object_ge1/gGerudoWhiteLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteLeftThighDL[] = dgGerudoWhiteLeftThighDL; -#else -static const char gGerudoWhiteLeftThighDL[] __attribute__((aligned (2))) = dgGerudoWhiteLeftThighDL; -#endif - -#define dgGerudoWhiteLeftShinDL "__OTR__objects/object_ge1/gGerudoWhiteLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteLeftShinDL[] = dgGerudoWhiteLeftShinDL; -#else -static const char gGerudoWhiteLeftShinDL[] __attribute__((aligned (2))) = dgGerudoWhiteLeftShinDL; -#endif - -#define dgGerudoWhiteLeftFootDL "__OTR__objects/object_ge1/gGerudoWhiteLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteLeftFootDL[] = dgGerudoWhiteLeftFootDL; -#else -static const char gGerudoWhiteLeftFootDL[] __attribute__((aligned (2))) = dgGerudoWhiteLeftFootDL; -#endif - -#define dgGerudoWhiteRightThighDL "__OTR__objects/object_ge1/gGerudoWhiteRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteRightThighDL[] = dgGerudoWhiteRightThighDL; -#else -static const char gGerudoWhiteRightThighDL[] __attribute__((aligned (2))) = dgGerudoWhiteRightThighDL; -#endif - -#define dgGerudoWhiteRightShinDL "__OTR__objects/object_ge1/gGerudoWhiteRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteRightShinDL[] = dgGerudoWhiteRightShinDL; -#else -static const char gGerudoWhiteRightShinDL[] __attribute__((aligned (2))) = dgGerudoWhiteRightShinDL; -#endif - -#define dgGerudoWhiteRightFootDL "__OTR__objects/object_ge1/gGerudoWhiteRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteRightFootDL[] = dgGerudoWhiteRightFootDL; -#else -static const char gGerudoWhiteRightFootDL[] __attribute__((aligned (2))) = dgGerudoWhiteRightFootDL; -#endif - -#define dgGerudoWhiteTorsoDL "__OTR__objects/object_ge1/gGerudoWhiteTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteTorsoDL[] = dgGerudoWhiteTorsoDL; -#else -static const char gGerudoWhiteTorsoDL[] __attribute__((aligned (2))) = dgGerudoWhiteTorsoDL; -#endif - -#define dgGerudoWhiteLeftUpperArmDL "__OTR__objects/object_ge1/gGerudoWhiteLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteLeftUpperArmDL[] = dgGerudoWhiteLeftUpperArmDL; -#else -static const char gGerudoWhiteLeftUpperArmDL[] __attribute__((aligned (2))) = dgGerudoWhiteLeftUpperArmDL; -#endif - -#define dgGerudoWhiteLeftForearmDL "__OTR__objects/object_ge1/gGerudoWhiteLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteLeftForearmDL[] = dgGerudoWhiteLeftForearmDL; -#else -static const char gGerudoWhiteLeftForearmDL[] __attribute__((aligned (2))) = dgGerudoWhiteLeftForearmDL; -#endif - -#define dgGerudoWhiteLeftHandDL "__OTR__objects/object_ge1/gGerudoWhiteLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteLeftHandDL[] = dgGerudoWhiteLeftHandDL; -#else -static const char gGerudoWhiteLeftHandDL[] __attribute__((aligned (2))) = dgGerudoWhiteLeftHandDL; -#endif - -#define dgGerudoWhiteRightUpperArmDL "__OTR__objects/object_ge1/gGerudoWhiteRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteRightUpperArmDL[] = dgGerudoWhiteRightUpperArmDL; -#else -static const char gGerudoWhiteRightUpperArmDL[] __attribute__((aligned (2))) = dgGerudoWhiteRightUpperArmDL; -#endif - -#define dgGerudoWhiteRightForearmDL "__OTR__objects/object_ge1/gGerudoWhiteRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteRightForearmDL[] = dgGerudoWhiteRightForearmDL; -#else -static const char gGerudoWhiteRightForearmDL[] __attribute__((aligned (2))) = dgGerudoWhiteRightForearmDL; -#endif - -#define dgGerudoWhiteRightHandDL "__OTR__objects/object_ge1/gGerudoWhiteRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteRightHandDL[] = dgGerudoWhiteRightHandDL; -#else -static const char gGerudoWhiteRightHandDL[] __attribute__((aligned (2))) = dgGerudoWhiteRightHandDL; -#endif - -#define dgGerudoWhiteHeadDL "__OTR__objects/object_ge1/gGerudoWhiteHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteHeadDL[] = dgGerudoWhiteHeadDL; -#else -static const char gGerudoWhiteHeadDL[] __attribute__((aligned (2))) = dgGerudoWhiteHeadDL; -#endif - -#define dgGerudoWhiteGeneralTLUT "__OTR__objects/object_ge1/gGerudoWhiteGeneralTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteGeneralTLUT[] = dgGerudoWhiteGeneralTLUT; -#else -static const char gGerudoWhiteGeneralTLUT[] __attribute__((aligned (2))) = dgGerudoWhiteGeneralTLUT; -#endif - -#define dgGerudoWhiteHairTLUT "__OTR__objects/object_ge1/gGerudoWhiteHairTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteHairTLUT[] = dgGerudoWhiteHairTLUT; -#else -static const char gGerudoWhiteHairTLUT[] __attribute__((aligned (2))) = dgGerudoWhiteHairTLUT; -#endif - -#define dgGerudoWhiteSkinGradientTex "__OTR__objects/object_ge1/gGerudoWhiteSkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteSkinGradientTex[] = dgGerudoWhiteSkinGradientTex; -#else -static const char gGerudoWhiteSkinGradientTex[] __attribute__((aligned (2))) = dgGerudoWhiteSkinGradientTex; -#endif - -#define dgGerudoWhiteWhiteFabricLipsTex "__OTR__objects/object_ge1/gGerudoWhiteWhiteFabricLipsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteWhiteFabricLipsTex[] = dgGerudoWhiteWhiteFabricLipsTex; -#else -static const char gGerudoWhiteWhiteFabricLipsTex[] __attribute__((aligned (2))) = dgGerudoWhiteWhiteFabricLipsTex; -#endif - -#define dgGerudoWhiteEarTex "__OTR__objects/object_ge1/gGerudoWhiteEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteEarTex[] = dgGerudoWhiteEarTex; -#else -static const char gGerudoWhiteEarTex[] __attribute__((aligned (2))) = dgGerudoWhiteEarTex; -#endif - -#define dgGerudoWhiteFingersTex "__OTR__objects/object_ge1/gGerudoWhiteFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteFingersTex[] = dgGerudoWhiteFingersTex; -#else -static const char gGerudoWhiteFingersTex[] __attribute__((aligned (2))) = dgGerudoWhiteFingersTex; -#endif - -#define dgGerudoWhiteArmletTex "__OTR__objects/object_ge1/gGerudoWhiteArmletTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteArmletTex[] = dgGerudoWhiteArmletTex; -#else -static const char gGerudoWhiteArmletTex[] __attribute__((aligned (2))) = dgGerudoWhiteArmletTex; -#endif - -#define dgGerudoWhiteJacketTex "__OTR__objects/object_ge1/gGerudoWhiteJacketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteJacketTex[] = dgGerudoWhiteJacketTex; -#else -static const char gGerudoWhiteJacketTex[] __attribute__((aligned (2))) = dgGerudoWhiteJacketTex; -#endif - -#define dgGerudoWhiteTubeTopTex "__OTR__objects/object_ge1/gGerudoWhiteTubeTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteTubeTopTex[] = dgGerudoWhiteTubeTopTex; -#else -static const char gGerudoWhiteTubeTopTex[] __attribute__((aligned (2))) = dgGerudoWhiteTubeTopTex; -#endif - -#define dgGerudoWhiteNavelTex "__OTR__objects/object_ge1/gGerudoWhiteNavelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteNavelTex[] = dgGerudoWhiteNavelTex; -#else -static const char gGerudoWhiteNavelTex[] __attribute__((aligned (2))) = dgGerudoWhiteNavelTex; -#endif - -#define dgGerudoWhiteCleavageTex "__OTR__objects/object_ge1/gGerudoWhiteCleavageTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteCleavageTex[] = dgGerudoWhiteCleavageTex; -#else -static const char gGerudoWhiteCleavageTex[] __attribute__((aligned (2))) = dgGerudoWhiteCleavageTex; -#endif - -#define dgGerudoWhiteShoeUpperTex "__OTR__objects/object_ge1/gGerudoWhiteShoeUpperTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteShoeUpperTex[] = dgGerudoWhiteShoeUpperTex; -#else -static const char gGerudoWhiteShoeUpperTex[] __attribute__((aligned (2))) = dgGerudoWhiteShoeUpperTex; -#endif - -#define dgGerudoWhiteShoeSoleTex "__OTR__objects/object_ge1/gGerudoWhiteShoeSoleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteShoeSoleTex[] = dgGerudoWhiteShoeSoleTex; -#else -static const char gGerudoWhiteShoeSoleTex[] __attribute__((aligned (2))) = dgGerudoWhiteShoeSoleTex; -#endif - -#define dgGerudoWhiteCrotchTex "__OTR__objects/object_ge1/gGerudoWhiteCrotchTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteCrotchTex[] = dgGerudoWhiteCrotchTex; -#else -static const char gGerudoWhiteCrotchTex[] __attribute__((aligned (2))) = dgGerudoWhiteCrotchTex; -#endif - -#define dgGerudoWhiteHairstyleBobDL "__OTR__objects/object_ge1/gGerudoWhiteHairstyleBobDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteHairstyleBobDL[] = dgGerudoWhiteHairstyleBobDL; -#else -static const char gGerudoWhiteHairstyleBobDL[] __attribute__((aligned (2))) = dgGerudoWhiteHairstyleBobDL; -#endif - -#define dgGerudoWhiteHairstyleStraightFringeDL "__OTR__objects/object_ge1/gGerudoWhiteHairstyleStraightFringeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteHairstyleStraightFringeDL[] = dgGerudoWhiteHairstyleStraightFringeDL; -#else -static const char gGerudoWhiteHairstyleStraightFringeDL[] __attribute__((aligned (2))) = dgGerudoWhiteHairstyleStraightFringeDL; -#endif - -#define dgGerudoWhiteHairstyleSpikyDL "__OTR__objects/object_ge1/gGerudoWhiteHairstyleSpikyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteHairstyleSpikyDL[] = dgGerudoWhiteHairstyleSpikyDL; -#else -static const char gGerudoWhiteHairstyleSpikyDL[] __attribute__((aligned (2))) = dgGerudoWhiteHairstyleSpikyDL; -#endif - -#define dgGerudoWhiteHairTex "__OTR__objects/object_ge1/gGerudoWhiteHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteHairTex[] = dgGerudoWhiteHairTex; -#else -static const char gGerudoWhiteHairTex[] __attribute__((aligned (2))) = dgGerudoWhiteHairTex; -#endif - -#define dgGerudoWhiteEyeOpenTex "__OTR__objects/object_ge1/gGerudoWhiteEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteEyeOpenTex[] = dgGerudoWhiteEyeOpenTex; -#else -static const char gGerudoWhiteEyeOpenTex[] __attribute__((aligned (2))) = dgGerudoWhiteEyeOpenTex; -#endif - -#define dgGerudoWhiteEyeHalfTex "__OTR__objects/object_ge1/gGerudoWhiteEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteEyeHalfTex[] = dgGerudoWhiteEyeHalfTex; -#else -static const char gGerudoWhiteEyeHalfTex[] __attribute__((aligned (2))) = dgGerudoWhiteEyeHalfTex; -#endif - -#define dgGerudoWhiteEyeClosedTex "__OTR__objects/object_ge1/gGerudoWhiteEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteEyeClosedTex[] = dgGerudoWhiteEyeClosedTex; -#else -static const char gGerudoWhiteEyeClosedTex[] __attribute__((aligned (2))) = dgGerudoWhiteEyeClosedTex; -#endif - -#define dgGerudoWhiteUnusedFoldingArmsAnim "__OTR__objects/object_ge1/gGerudoWhiteUnusedFoldingArmsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteUnusedFoldingArmsAnim[] = dgGerudoWhiteUnusedFoldingArmsAnim; -#else -static const char gGerudoWhiteUnusedFoldingArmsAnim[] __attribute__((aligned (2))) = dgGerudoWhiteUnusedFoldingArmsAnim; -#endif - -#define dgGerudoWhiteIdleAnim "__OTR__objects/object_ge1/gGerudoWhiteIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteIdleAnim[] = dgGerudoWhiteIdleAnim; -#else -static const char gGerudoWhiteIdleAnim[] __attribute__((aligned (2))) = dgGerudoWhiteIdleAnim; -#endif - -#define dgGerudoWhiteClapAnim "__OTR__objects/object_ge1/gGerudoWhiteClapAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteClapAnim[] = dgGerudoWhiteClapAnim; -#else -static const char gGerudoWhiteClapAnim[] __attribute__((aligned (2))) = dgGerudoWhiteClapAnim; -#endif - -#define dgGerudoWhiteDismissiveAnim "__OTR__objects/object_ge1/gGerudoWhiteDismissiveAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoWhiteDismissiveAnim[] = dgGerudoWhiteDismissiveAnim; -#else -static const char gGerudoWhiteDismissiveAnim[] __attribute__((aligned (2))) = dgGerudoWhiteDismissiveAnim; -#endif - +#include "align_asset_macro.h" + +#define dgGerudoWhiteSkel "__OTR__objects/object_ge1/gGerudoWhiteSkel" +static const ALIGN_ASSET(2) char gGerudoWhiteSkel[] = dgGerudoWhiteSkel; + +#define dgGerudoWhiteWaistDL "__OTR__objects/object_ge1/gGerudoWhiteWaistDL" +static const ALIGN_ASSET(2) char gGerudoWhiteWaistDL[] = dgGerudoWhiteWaistDL; + +#define dgGerudoWhiteLeftThighDL "__OTR__objects/object_ge1/gGerudoWhiteLeftThighDL" +static const ALIGN_ASSET(2) char gGerudoWhiteLeftThighDL[] = dgGerudoWhiteLeftThighDL; + +#define dgGerudoWhiteLeftShinDL "__OTR__objects/object_ge1/gGerudoWhiteLeftShinDL" +static const ALIGN_ASSET(2) char gGerudoWhiteLeftShinDL[] = dgGerudoWhiteLeftShinDL; + +#define dgGerudoWhiteLeftFootDL "__OTR__objects/object_ge1/gGerudoWhiteLeftFootDL" +static const ALIGN_ASSET(2) char gGerudoWhiteLeftFootDL[] = dgGerudoWhiteLeftFootDL; + +#define dgGerudoWhiteRightThighDL "__OTR__objects/object_ge1/gGerudoWhiteRightThighDL" +static const ALIGN_ASSET(2) char gGerudoWhiteRightThighDL[] = dgGerudoWhiteRightThighDL; + +#define dgGerudoWhiteRightShinDL "__OTR__objects/object_ge1/gGerudoWhiteRightShinDL" +static const ALIGN_ASSET(2) char gGerudoWhiteRightShinDL[] = dgGerudoWhiteRightShinDL; + +#define dgGerudoWhiteRightFootDL "__OTR__objects/object_ge1/gGerudoWhiteRightFootDL" +static const ALIGN_ASSET(2) char gGerudoWhiteRightFootDL[] = dgGerudoWhiteRightFootDL; + +#define dgGerudoWhiteTorsoDL "__OTR__objects/object_ge1/gGerudoWhiteTorsoDL" +static const ALIGN_ASSET(2) char gGerudoWhiteTorsoDL[] = dgGerudoWhiteTorsoDL; + +#define dgGerudoWhiteLeftUpperArmDL "__OTR__objects/object_ge1/gGerudoWhiteLeftUpperArmDL" +static const ALIGN_ASSET(2) char gGerudoWhiteLeftUpperArmDL[] = dgGerudoWhiteLeftUpperArmDL; + +#define dgGerudoWhiteLeftForearmDL "__OTR__objects/object_ge1/gGerudoWhiteLeftForearmDL" +static const ALIGN_ASSET(2) char gGerudoWhiteLeftForearmDL[] = dgGerudoWhiteLeftForearmDL; + +#define dgGerudoWhiteLeftHandDL "__OTR__objects/object_ge1/gGerudoWhiteLeftHandDL" +static const ALIGN_ASSET(2) char gGerudoWhiteLeftHandDL[] = dgGerudoWhiteLeftHandDL; + +#define dgGerudoWhiteRightUpperArmDL "__OTR__objects/object_ge1/gGerudoWhiteRightUpperArmDL" +static const ALIGN_ASSET(2) char gGerudoWhiteRightUpperArmDL[] = dgGerudoWhiteRightUpperArmDL; + +#define dgGerudoWhiteRightForearmDL "__OTR__objects/object_ge1/gGerudoWhiteRightForearmDL" +static const ALIGN_ASSET(2) char gGerudoWhiteRightForearmDL[] = dgGerudoWhiteRightForearmDL; + +#define dgGerudoWhiteRightHandDL "__OTR__objects/object_ge1/gGerudoWhiteRightHandDL" +static const ALIGN_ASSET(2) char gGerudoWhiteRightHandDL[] = dgGerudoWhiteRightHandDL; + +#define dgGerudoWhiteHeadDL "__OTR__objects/object_ge1/gGerudoWhiteHeadDL" +static const ALIGN_ASSET(2) char gGerudoWhiteHeadDL[] = dgGerudoWhiteHeadDL; + +#define dgGerudoWhiteGeneralTLUT "__OTR__objects/object_ge1/gGerudoWhiteGeneralTLUT" +static const ALIGN_ASSET(2) char gGerudoWhiteGeneralTLUT[] = dgGerudoWhiteGeneralTLUT; + +#define dgGerudoWhiteHairTLUT "__OTR__objects/object_ge1/gGerudoWhiteHairTLUT" +static const ALIGN_ASSET(2) char gGerudoWhiteHairTLUT[] = dgGerudoWhiteHairTLUT; + +#define dgGerudoWhiteSkinGradientTex "__OTR__objects/object_ge1/gGerudoWhiteSkinGradientTex" +static const ALIGN_ASSET(2) char gGerudoWhiteSkinGradientTex[] = dgGerudoWhiteSkinGradientTex; + +#define dgGerudoWhiteWhiteFabricLipsTex "__OTR__objects/object_ge1/gGerudoWhiteWhiteFabricLipsTex" +static const ALIGN_ASSET(2) char gGerudoWhiteWhiteFabricLipsTex[] = dgGerudoWhiteWhiteFabricLipsTex; + +#define dgGerudoWhiteEarTex "__OTR__objects/object_ge1/gGerudoWhiteEarTex" +static const ALIGN_ASSET(2) char gGerudoWhiteEarTex[] = dgGerudoWhiteEarTex; + +#define dgGerudoWhiteFingersTex "__OTR__objects/object_ge1/gGerudoWhiteFingersTex" +static const ALIGN_ASSET(2) char gGerudoWhiteFingersTex[] = dgGerudoWhiteFingersTex; + +#define dgGerudoWhiteArmletTex "__OTR__objects/object_ge1/gGerudoWhiteArmletTex" +static const ALIGN_ASSET(2) char gGerudoWhiteArmletTex[] = dgGerudoWhiteArmletTex; + +#define dgGerudoWhiteJacketTex "__OTR__objects/object_ge1/gGerudoWhiteJacketTex" +static const ALIGN_ASSET(2) char gGerudoWhiteJacketTex[] = dgGerudoWhiteJacketTex; + +#define dgGerudoWhiteTubeTopTex "__OTR__objects/object_ge1/gGerudoWhiteTubeTopTex" +static const ALIGN_ASSET(2) char gGerudoWhiteTubeTopTex[] = dgGerudoWhiteTubeTopTex; + +#define dgGerudoWhiteNavelTex "__OTR__objects/object_ge1/gGerudoWhiteNavelTex" +static const ALIGN_ASSET(2) char gGerudoWhiteNavelTex[] = dgGerudoWhiteNavelTex; + +#define dgGerudoWhiteCleavageTex "__OTR__objects/object_ge1/gGerudoWhiteCleavageTex" +static const ALIGN_ASSET(2) char gGerudoWhiteCleavageTex[] = dgGerudoWhiteCleavageTex; + +#define dgGerudoWhiteShoeUpperTex "__OTR__objects/object_ge1/gGerudoWhiteShoeUpperTex" +static const ALIGN_ASSET(2) char gGerudoWhiteShoeUpperTex[] = dgGerudoWhiteShoeUpperTex; + +#define dgGerudoWhiteShoeSoleTex "__OTR__objects/object_ge1/gGerudoWhiteShoeSoleTex" +static const ALIGN_ASSET(2) char gGerudoWhiteShoeSoleTex[] = dgGerudoWhiteShoeSoleTex; + +#define dgGerudoWhiteCrotchTex "__OTR__objects/object_ge1/gGerudoWhiteCrotchTex" +static const ALIGN_ASSET(2) char gGerudoWhiteCrotchTex[] = dgGerudoWhiteCrotchTex; + +#define dgGerudoWhiteHairstyleBobDL "__OTR__objects/object_ge1/gGerudoWhiteHairstyleBobDL" +static const ALIGN_ASSET(2) char gGerudoWhiteHairstyleBobDL[] = dgGerudoWhiteHairstyleBobDL; + +#define dgGerudoWhiteHairstyleStraightFringeDL "__OTR__objects/object_ge1/gGerudoWhiteHairstyleStraightFringeDL" +static const ALIGN_ASSET(2) char gGerudoWhiteHairstyleStraightFringeDL[] = dgGerudoWhiteHairstyleStraightFringeDL; + +#define dgGerudoWhiteHairstyleSpikyDL "__OTR__objects/object_ge1/gGerudoWhiteHairstyleSpikyDL" +static const ALIGN_ASSET(2) char gGerudoWhiteHairstyleSpikyDL[] = dgGerudoWhiteHairstyleSpikyDL; + +#define dgGerudoWhiteHairTex "__OTR__objects/object_ge1/gGerudoWhiteHairTex" +static const ALIGN_ASSET(2) char gGerudoWhiteHairTex[] = dgGerudoWhiteHairTex; + +#define dgGerudoWhiteEyeOpenTex "__OTR__objects/object_ge1/gGerudoWhiteEyeOpenTex" +static const ALIGN_ASSET(2) char gGerudoWhiteEyeOpenTex[] = dgGerudoWhiteEyeOpenTex; + +#define dgGerudoWhiteEyeHalfTex "__OTR__objects/object_ge1/gGerudoWhiteEyeHalfTex" +static const ALIGN_ASSET(2) char gGerudoWhiteEyeHalfTex[] = dgGerudoWhiteEyeHalfTex; + +#define dgGerudoWhiteEyeClosedTex "__OTR__objects/object_ge1/gGerudoWhiteEyeClosedTex" +static const ALIGN_ASSET(2) char gGerudoWhiteEyeClosedTex[] = dgGerudoWhiteEyeClosedTex; + +#define dgGerudoWhiteUnusedFoldingArmsAnim "__OTR__objects/object_ge1/gGerudoWhiteUnusedFoldingArmsAnim" +static const ALIGN_ASSET(2) char gGerudoWhiteUnusedFoldingArmsAnim[] = dgGerudoWhiteUnusedFoldingArmsAnim; + +#define dgGerudoWhiteIdleAnim "__OTR__objects/object_ge1/gGerudoWhiteIdleAnim" +static const ALIGN_ASSET(2) char gGerudoWhiteIdleAnim[] = dgGerudoWhiteIdleAnim; + +#define dgGerudoWhiteClapAnim "__OTR__objects/object_ge1/gGerudoWhiteClapAnim" +static const ALIGN_ASSET(2) char gGerudoWhiteClapAnim[] = dgGerudoWhiteClapAnim; + +#define dgGerudoWhiteDismissiveAnim "__OTR__objects/object_ge1/gGerudoWhiteDismissiveAnim" +static const ALIGN_ASSET(2) char gGerudoWhiteDismissiveAnim[] = dgGerudoWhiteDismissiveAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_geff/object_geff.h b/soh/assets/objects/object_geff/object_geff.h index 45224a5b0..a01aaaf2e 100644 --- a/soh/assets/objects/object_geff/object_geff.h +++ b/soh/assets/objects/object_geff/object_geff.h @@ -1,23 +1,12 @@ #pragma once -#define dgGanonRubbleInsideTex "__OTR__objects/object_geff/gGanonRubbleInsideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRubbleInsideTex[] = dgGanonRubbleInsideTex; -#else -static const char gGanonRubbleInsideTex[] __attribute__((aligned (2))) = dgGanonRubbleInsideTex; -#endif - -#define dgGanonRubbleOutsideTex "__OTR__objects/object_geff/gGanonRubbleOutsideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRubbleOutsideTex[] = dgGanonRubbleOutsideTex; -#else -static const char gGanonRubbleOutsideTex[] __attribute__((aligned (2))) = dgGanonRubbleOutsideTex; -#endif - -#define dgGanonRubbleDL "__OTR__objects/object_geff/gGanonRubbleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonRubbleDL[] = dgGanonRubbleDL; -#else -static const char gGanonRubbleDL[] __attribute__((aligned (2))) = dgGanonRubbleDL; -#endif - +#include "align_asset_macro.h" + +#define dgGanonRubbleInsideTex "__OTR__objects/object_geff/gGanonRubbleInsideTex" +static const ALIGN_ASSET(2) char gGanonRubbleInsideTex[] = dgGanonRubbleInsideTex; + +#define dgGanonRubbleOutsideTex "__OTR__objects/object_geff/gGanonRubbleOutsideTex" +static const ALIGN_ASSET(2) char gGanonRubbleOutsideTex[] = dgGanonRubbleOutsideTex; + +#define dgGanonRubbleDL "__OTR__objects/object_geff/gGanonRubbleDL" +static const ALIGN_ASSET(2) char gGanonRubbleDL[] = dgGanonRubbleDL; \ No newline at end of file diff --git a/soh/assets/objects/object_geldb/object_geldb.h b/soh/assets/objects/object_geldb/object_geldb.h index 18f2bdee5..1da62e3fb 100644 --- a/soh/assets/objects/object_geldb/object_geldb.h +++ b/soh/assets/objects/object_geldb/object_geldb.h @@ -1,366 +1,159 @@ #pragma once -#define dgGerudoRedSkel "__OTR__objects/object_geldb/gGerudoRedSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkel[] = dgGerudoRedSkel; -#else -static const char gGerudoRedSkel[] __attribute__((aligned (2))) = dgGerudoRedSkel; -#endif - -#define dgGerudoRedJumpAnim "__OTR__objects/object_geldb/gGerudoRedJumpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedJumpAnim[] = dgGerudoRedJumpAnim; -#else -static const char gGerudoRedJumpAnim[] __attribute__((aligned (2))) = dgGerudoRedJumpAnim; -#endif - -#define dgGerudoRedNeutralAnim "__OTR__objects/object_geldb/gGerudoRedNeutralAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedNeutralAnim[] = dgGerudoRedNeutralAnim; -#else -static const char gGerudoRedNeutralAnim[] __attribute__((aligned (2))) = dgGerudoRedNeutralAnim; -#endif - -#define dgGerudoRedSidestepAnim "__OTR__objects/object_geldb/gGerudoRedSidestepAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSidestepAnim[] = dgGerudoRedSidestepAnim; -#else -static const char gGerudoRedSidestepAnim[] __attribute__((aligned (2))) = dgGerudoRedSidestepAnim; -#endif - -#define dgGerudoRedFlipAnim "__OTR__objects/object_geldb/gGerudoRedFlipAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedFlipAnim[] = dgGerudoRedFlipAnim; -#else -static const char gGerudoRedFlipAnim[] __attribute__((aligned (2))) = dgGerudoRedFlipAnim; -#endif - -#define dgGerudoRedWalkAnim "__OTR__objects/object_geldb/gGerudoRedWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedWalkAnim[] = dgGerudoRedWalkAnim; -#else -static const char gGerudoRedWalkAnim[] __attribute__((aligned (2))) = dgGerudoRedWalkAnim; -#endif - -#define dgGerudoRedSlashAnim "__OTR__objects/object_geldb/gGerudoRedSlashAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSlashAnim[] = dgGerudoRedSlashAnim; -#else -static const char gGerudoRedSlashAnim[] __attribute__((aligned (2))) = dgGerudoRedSlashAnim; -#endif - -#define dgGerudoRedSpinAttackAnim "__OTR__objects/object_geldb/gGerudoRedSpinAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSpinAttackAnim[] = dgGerudoRedSpinAttackAnim; -#else -static const char gGerudoRedSpinAttackAnim[] __attribute__((aligned (2))) = dgGerudoRedSpinAttackAnim; -#endif - -#define dgGerudoRedDamageAnim "__OTR__objects/object_geldb/gGerudoRedDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedDamageAnim[] = dgGerudoRedDamageAnim; -#else -static const char gGerudoRedDamageAnim[] __attribute__((aligned (2))) = dgGerudoRedDamageAnim; -#endif - -#define dgGerudoRedDefeatAnim "__OTR__objects/object_geldb/gGerudoRedDefeatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedDefeatAnim[] = dgGerudoRedDefeatAnim; -#else -static const char gGerudoRedDefeatAnim[] __attribute__((aligned (2))) = dgGerudoRedDefeatAnim; -#endif - -#define dgGerudoRedBlockAnim "__OTR__objects/object_geldb/gGerudoRedBlockAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedBlockAnim[] = dgGerudoRedBlockAnim; -#else -static const char gGerudoRedBlockAnim[] __attribute__((aligned (2))) = dgGerudoRedBlockAnim; -#endif - -#define dgGerudoRedStandAnim "__OTR__objects/object_geldb/gGerudoRedStandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedStandAnim[] = dgGerudoRedStandAnim; -#else -static const char gGerudoRedStandAnim[] __attribute__((aligned (2))) = dgGerudoRedStandAnim; -#endif - -#define dgGerudoRedEyeOpenTex "__OTR__objects/object_geldb/gGerudoRedEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedEyeOpenTex[] = dgGerudoRedEyeOpenTex; -#else -static const char gGerudoRedEyeOpenTex[] __attribute__((aligned (2))) = dgGerudoRedEyeOpenTex; -#endif - -#define dgGerudoRedEyeHalfTex "__OTR__objects/object_geldb/gGerudoRedEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedEyeHalfTex[] = dgGerudoRedEyeHalfTex; -#else -static const char gGerudoRedEyeHalfTex[] __attribute__((aligned (2))) = dgGerudoRedEyeHalfTex; -#endif - -#define dgGerudoRedEyeShutTex "__OTR__objects/object_geldb/gGerudoRedEyeShutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedEyeShutTex[] = dgGerudoRedEyeShutTex; -#else -static const char gGerudoRedEyeShutTex[] __attribute__((aligned (2))) = dgGerudoRedEyeShutTex; -#endif - -#define dsGerudoRedTexHint1 "__OTR__objects/object_geldb/sGerudoRedTexHint1" -#ifdef _WIN32 -static const __declspec(align(2)) char sGerudoRedTexHint1[] = dsGerudoRedTexHint1; -#else -static const char sGerudoRedTexHint1[] __attribute__((aligned (2))) = dsGerudoRedTexHint1; -#endif - -#define dsGerudoRedTexHint2 "__OTR__objects/object_geldb/sGerudoRedTexHint2" -#ifdef _WIN32 -static const __declspec(align(2)) char sGerudoRedTexHint2[] = dsGerudoRedTexHint2; -#else -static const char sGerudoRedTexHint2[] __attribute__((aligned (2))) = dsGerudoRedTexHint2; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A2F4DL_0048E0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A2F4DL_0048E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A2F4DL_0048E0[] = dgGerudoRedSkelLimbsLimb_00A2F4DL_0048E0; -#else -static const char gGerudoRedSkelLimbsLimb_00A2F4DL_0048E0[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A2F4DL_0048E0; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A30CDL_009A60 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A30CDL_009A60" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A30CDL_009A60[] = dgGerudoRedSkelLimbsLimb_00A30CDL_009A60; -#else -static const char gGerudoRedSkelLimbsLimb_00A30CDL_009A60[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A30CDL_009A60; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A318DL_0099A8 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A318DL_0099A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A318DL_0099A8[] = dgGerudoRedSkelLimbsLimb_00A318DL_0099A8; -#else -static const char gGerudoRedSkelLimbsLimb_00A318DL_0099A8[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A318DL_0099A8; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A324DL_009B50 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A324DL_009B50" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A324DL_009B50[] = dgGerudoRedSkelLimbsLimb_00A324DL_009B50; -#else -static const char gGerudoRedSkelLimbsLimb_00A324DL_009B50[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A324DL_009B50; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A330DL_004D60 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A330DL_004D60" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A330DL_004D60[] = dgGerudoRedSkelLimbsLimb_00A330DL_004D60; -#else -static const char gGerudoRedSkelLimbsLimb_00A330DL_004D60[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A330DL_004D60; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A33CDL_004E98 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A33CDL_004E98" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A33CDL_004E98[] = dgGerudoRedSkelLimbsLimb_00A33CDL_004E98; -#else -static const char gGerudoRedSkelLimbsLimb_00A33CDL_004E98[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A33CDL_004E98; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A354DL_009638 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A354DL_009638" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A354DL_009638[] = dgGerudoRedSkelLimbsLimb_00A354DL_009638; -#else -static const char gGerudoRedSkelLimbsLimb_00A354DL_009638[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A354DL_009638; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A360DL_0097D0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A360DL_0097D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A360DL_0097D0[] = dgGerudoRedSkelLimbsLimb_00A360DL_0097D0; -#else -static const char gGerudoRedSkelLimbsLimb_00A360DL_0097D0[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A360DL_0097D0; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A36CDL_0050C0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A36CDL_0050C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A36CDL_0050C0[] = dgGerudoRedSkelLimbsLimb_00A36CDL_0050C0; -#else -static const char gGerudoRedSkelLimbsLimb_00A36CDL_0050C0[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A36CDL_0050C0; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A378DL_0051F8 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A378DL_0051F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A378DL_0051F8[] = dgGerudoRedSkelLimbsLimb_00A378DL_0051F8; -#else -static const char gGerudoRedSkelLimbsLimb_00A378DL_0051F8[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A378DL_0051F8; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A390DL_0092C8 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A390DL_0092C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A390DL_0092C8[] = dgGerudoRedSkelLimbsLimb_00A390DL_0092C8; -#else -static const char gGerudoRedSkelLimbsLimb_00A390DL_0092C8[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A390DL_0092C8; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A39CDL_009460 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A39CDL_009460" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A39CDL_009460[] = dgGerudoRedSkelLimbsLimb_00A39CDL_009460; -#else -static const char gGerudoRedSkelLimbsLimb_00A39CDL_009460[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A39CDL_009460; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A3A8DL_0059B0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3A8DL_0059B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A3A8DL_0059B0[] = dgGerudoRedSkelLimbsLimb_00A3A8DL_0059B0; -#else -static const char gGerudoRedSkelLimbsLimb_00A3A8DL_0059B0[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A3A8DL_0059B0; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A3B4DL_005AB0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3B4DL_005AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A3B4DL_005AB0[] = dgGerudoRedSkelLimbsLimb_00A3B4DL_005AB0; -#else -static const char gGerudoRedSkelLimbsLimb_00A3B4DL_005AB0[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A3B4DL_005AB0; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A3C0DL_008F48 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3C0DL_008F48" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A3C0DL_008F48[] = dgGerudoRedSkelLimbsLimb_00A3C0DL_008F48; -#else -static const char gGerudoRedSkelLimbsLimb_00A3C0DL_008F48[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A3C0DL_008F48; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A3CCDL_005640 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3CCDL_005640" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A3CCDL_005640[] = dgGerudoRedSkelLimbsLimb_00A3CCDL_005640; -#else -static const char gGerudoRedSkelLimbsLimb_00A3CCDL_005640[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A3CCDL_005640; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A3D8DL_005740 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3D8DL_005740" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A3D8DL_005740[] = dgGerudoRedSkelLimbsLimb_00A3D8DL_005740; -#else -static const char gGerudoRedSkelLimbsLimb_00A3D8DL_005740[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A3D8DL_005740; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A3E4DL_009108 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3E4DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A3E4DL_009108[] = dgGerudoRedSkelLimbsLimb_00A3E4DL_009108; -#else -static const char gGerudoRedSkelLimbsLimb_00A3E4DL_009108[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A3E4DL_009108; -#endif - -#define dgGerudoRedSkelLimbsLimb_00A3F0DL_005420 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3F0DL_005420" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoRedSkelLimbsLimb_00A3F0DL_005420[] = dgGerudoRedSkelLimbsLimb_00A3F0DL_005420; -#else -static const char gGerudoRedSkelLimbsLimb_00A3F0DL_005420[] __attribute__((aligned (2))) = dgGerudoRedSkelLimbsLimb_00A3F0DL_005420; -#endif - -#define dobject_geldbTLUT_002500 "__OTR__objects/object_geldb/object_geldbTLUT_002500" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTLUT_002500[] = dobject_geldbTLUT_002500; -#else -static const char object_geldbTLUT_002500[] __attribute__((aligned (2))) = dobject_geldbTLUT_002500; -#endif - -#define dobject_geldbTex_002700 "__OTR__objects/object_geldb/object_geldbTex_002700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_002700[] = dobject_geldbTex_002700; -#else -static const char object_geldbTex_002700[] __attribute__((aligned (2))) = dobject_geldbTex_002700; -#endif - -#define dobject_geldbTex_002980 "__OTR__objects/object_geldb/object_geldbTex_002980" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_002980[] = dobject_geldbTex_002980; -#else -static const char object_geldbTex_002980[] __attribute__((aligned (2))) = dobject_geldbTex_002980; -#endif - -#define dobject_geldbTex_002880 "__OTR__objects/object_geldb/object_geldbTex_002880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_002880[] = dobject_geldbTex_002880; -#else -static const char object_geldbTex_002880[] __attribute__((aligned (2))) = dobject_geldbTex_002880; -#endif - -#define dobject_geldbTex_002780 "__OTR__objects/object_geldb/object_geldbTex_002780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_002780[] = dobject_geldbTex_002780; -#else -static const char object_geldbTex_002780[] __attribute__((aligned (2))) = dobject_geldbTex_002780; -#endif - -#define dobject_geldbTex_002740 "__OTR__objects/object_geldb/object_geldbTex_002740" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_002740[] = dobject_geldbTex_002740; -#else -static const char object_geldbTex_002740[] __attribute__((aligned (2))) = dobject_geldbTex_002740; -#endif - -#define dobject_geldbTex_006A28 "__OTR__objects/object_geldb/object_geldbTex_006A28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_006A28[] = dobject_geldbTex_006A28; -#else -static const char object_geldbTex_006A28[] __attribute__((aligned (2))) = dobject_geldbTex_006A28; -#endif - -#define dobject_geldbTex_0063E8 "__OTR__objects/object_geldb/object_geldbTex_0063E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_0063E8[] = dobject_geldbTex_0063E8; -#else -static const char object_geldbTex_0063E8[] __attribute__((aligned (2))) = dobject_geldbTex_0063E8; -#endif - -#define dobject_geldbTex_005F68 "__OTR__objects/object_geldb/object_geldbTex_005F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_005F68[] = dobject_geldbTex_005F68; -#else -static const char object_geldbTex_005F68[] __attribute__((aligned (2))) = dobject_geldbTex_005F68; -#endif - -#define dobject_geldbTex_006C28 "__OTR__objects/object_geldb/object_geldbTex_006C28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_006C28[] = dobject_geldbTex_006C28; -#else -static const char object_geldbTex_006C28[] __attribute__((aligned (2))) = dobject_geldbTex_006C28; -#endif - -#define dobject_geldbTex_0069A8 "__OTR__objects/object_geldb/object_geldbTex_0069A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_0069A8[] = dobject_geldbTex_0069A8; -#else -static const char object_geldbTex_0069A8[] __attribute__((aligned (2))) = dobject_geldbTex_0069A8; -#endif - -#define dobject_geldbTex_006B28 "__OTR__objects/object_geldb/object_geldbTex_006B28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_006B28[] = dobject_geldbTex_006B28; -#else -static const char object_geldbTex_006B28[] __attribute__((aligned (2))) = dobject_geldbTex_006B28; -#endif - -#define dobject_geldbTex_002A80 "__OTR__objects/object_geldb/object_geldbTex_002A80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_002A80[] = dobject_geldbTex_002A80; -#else -static const char object_geldbTex_002A80[] __attribute__((aligned (2))) = dobject_geldbTex_002A80; -#endif - -#define dobject_geldbTex_002B80 "__OTR__objects/object_geldb/object_geldbTex_002B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_002B80[] = dobject_geldbTex_002B80; -#else -static const char object_geldbTex_002B80[] __attribute__((aligned (2))) = dobject_geldbTex_002B80; -#endif - -#define dobject_geldbTex_0064E8 "__OTR__objects/object_geldb/object_geldbTex_0064E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_0064E8[] = dobject_geldbTex_0064E8; -#else -static const char object_geldbTex_0064E8[] __attribute__((aligned (2))) = dobject_geldbTex_0064E8; -#endif - -#define dobject_geldbTex_006568 "__OTR__objects/object_geldb/object_geldbTex_006568" -#ifdef _WIN32 -static const __declspec(align(2)) char object_geldbTex_006568[] = dobject_geldbTex_006568; -#else -static const char object_geldbTex_006568[] __attribute__((aligned (2))) = dobject_geldbTex_006568; -#endif - +#include "align_asset_macro.h" + +#define dgGerudoRedSkel "__OTR__objects/object_geldb/gGerudoRedSkel" +static const ALIGN_ASSET(2) char gGerudoRedSkel[] = dgGerudoRedSkel; + +#define dgGerudoRedJumpAnim "__OTR__objects/object_geldb/gGerudoRedJumpAnim" +static const ALIGN_ASSET(2) char gGerudoRedJumpAnim[] = dgGerudoRedJumpAnim; + +#define dgGerudoRedNeutralAnim "__OTR__objects/object_geldb/gGerudoRedNeutralAnim" +static const ALIGN_ASSET(2) char gGerudoRedNeutralAnim[] = dgGerudoRedNeutralAnim; + +#define dgGerudoRedSidestepAnim "__OTR__objects/object_geldb/gGerudoRedSidestepAnim" +static const ALIGN_ASSET(2) char gGerudoRedSidestepAnim[] = dgGerudoRedSidestepAnim; + +#define dgGerudoRedFlipAnim "__OTR__objects/object_geldb/gGerudoRedFlipAnim" +static const ALIGN_ASSET(2) char gGerudoRedFlipAnim[] = dgGerudoRedFlipAnim; + +#define dgGerudoRedWalkAnim "__OTR__objects/object_geldb/gGerudoRedWalkAnim" +static const ALIGN_ASSET(2) char gGerudoRedWalkAnim[] = dgGerudoRedWalkAnim; + +#define dgGerudoRedSlashAnim "__OTR__objects/object_geldb/gGerudoRedSlashAnim" +static const ALIGN_ASSET(2) char gGerudoRedSlashAnim[] = dgGerudoRedSlashAnim; + +#define dgGerudoRedSpinAttackAnim "__OTR__objects/object_geldb/gGerudoRedSpinAttackAnim" +static const ALIGN_ASSET(2) char gGerudoRedSpinAttackAnim[] = dgGerudoRedSpinAttackAnim; + +#define dgGerudoRedDamageAnim "__OTR__objects/object_geldb/gGerudoRedDamageAnim" +static const ALIGN_ASSET(2) char gGerudoRedDamageAnim[] = dgGerudoRedDamageAnim; + +#define dgGerudoRedDefeatAnim "__OTR__objects/object_geldb/gGerudoRedDefeatAnim" +static const ALIGN_ASSET(2) char gGerudoRedDefeatAnim[] = dgGerudoRedDefeatAnim; + +#define dgGerudoRedBlockAnim "__OTR__objects/object_geldb/gGerudoRedBlockAnim" +static const ALIGN_ASSET(2) char gGerudoRedBlockAnim[] = dgGerudoRedBlockAnim; + +#define dgGerudoRedStandAnim "__OTR__objects/object_geldb/gGerudoRedStandAnim" +static const ALIGN_ASSET(2) char gGerudoRedStandAnim[] = dgGerudoRedStandAnim; + +#define dgGerudoRedEyeOpenTex "__OTR__objects/object_geldb/gGerudoRedEyeOpenTex" +static const ALIGN_ASSET(2) char gGerudoRedEyeOpenTex[] = dgGerudoRedEyeOpenTex; + +#define dgGerudoRedEyeHalfTex "__OTR__objects/object_geldb/gGerudoRedEyeHalfTex" +static const ALIGN_ASSET(2) char gGerudoRedEyeHalfTex[] = dgGerudoRedEyeHalfTex; + +#define dgGerudoRedEyeShutTex "__OTR__objects/object_geldb/gGerudoRedEyeShutTex" +static const ALIGN_ASSET(2) char gGerudoRedEyeShutTex[] = dgGerudoRedEyeShutTex; + +#define dsGerudoRedTexHint1 "__OTR__objects/object_geldb/sGerudoRedTexHint1" +static const ALIGN_ASSET(2) char sGerudoRedTexHint1[] = dsGerudoRedTexHint1; + +#define dsGerudoRedTexHint2 "__OTR__objects/object_geldb/sGerudoRedTexHint2" +static const ALIGN_ASSET(2) char sGerudoRedTexHint2[] = dsGerudoRedTexHint2; + +#define dgGerudoRedSkelLimbsLimb_00A2F4DL_0048E0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A2F4DL_0048E0" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A2F4DL_0048E0[] = dgGerudoRedSkelLimbsLimb_00A2F4DL_0048E0; + +#define dgGerudoRedSkelLimbsLimb_00A30CDL_009A60 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A30CDL_009A60" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A30CDL_009A60[] = dgGerudoRedSkelLimbsLimb_00A30CDL_009A60; + +#define dgGerudoRedSkelLimbsLimb_00A318DL_0099A8 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A318DL_0099A8" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A318DL_0099A8[] = dgGerudoRedSkelLimbsLimb_00A318DL_0099A8; + +#define dgGerudoRedSkelLimbsLimb_00A324DL_009B50 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A324DL_009B50" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A324DL_009B50[] = dgGerudoRedSkelLimbsLimb_00A324DL_009B50; + +#define dgGerudoRedSkelLimbsLimb_00A330DL_004D60 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A330DL_004D60" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A330DL_004D60[] = dgGerudoRedSkelLimbsLimb_00A330DL_004D60; + +#define dgGerudoRedSkelLimbsLimb_00A33CDL_004E98 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A33CDL_004E98" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A33CDL_004E98[] = dgGerudoRedSkelLimbsLimb_00A33CDL_004E98; + +#define dgGerudoRedSkelLimbsLimb_00A354DL_009638 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A354DL_009638" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A354DL_009638[] = dgGerudoRedSkelLimbsLimb_00A354DL_009638; + +#define dgGerudoRedSkelLimbsLimb_00A360DL_0097D0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A360DL_0097D0" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A360DL_0097D0[] = dgGerudoRedSkelLimbsLimb_00A360DL_0097D0; + +#define dgGerudoRedSkelLimbsLimb_00A36CDL_0050C0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A36CDL_0050C0" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A36CDL_0050C0[] = dgGerudoRedSkelLimbsLimb_00A36CDL_0050C0; + +#define dgGerudoRedSkelLimbsLimb_00A378DL_0051F8 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A378DL_0051F8" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A378DL_0051F8[] = dgGerudoRedSkelLimbsLimb_00A378DL_0051F8; + +#define dgGerudoRedSkelLimbsLimb_00A390DL_0092C8 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A390DL_0092C8" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A390DL_0092C8[] = dgGerudoRedSkelLimbsLimb_00A390DL_0092C8; + +#define dgGerudoRedSkelLimbsLimb_00A39CDL_009460 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A39CDL_009460" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A39CDL_009460[] = dgGerudoRedSkelLimbsLimb_00A39CDL_009460; + +#define dgGerudoRedSkelLimbsLimb_00A3A8DL_0059B0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3A8DL_0059B0" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A3A8DL_0059B0[] = dgGerudoRedSkelLimbsLimb_00A3A8DL_0059B0; + +#define dgGerudoRedSkelLimbsLimb_00A3B4DL_005AB0 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3B4DL_005AB0" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A3B4DL_005AB0[] = dgGerudoRedSkelLimbsLimb_00A3B4DL_005AB0; + +#define dgGerudoRedSkelLimbsLimb_00A3C0DL_008F48 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3C0DL_008F48" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A3C0DL_008F48[] = dgGerudoRedSkelLimbsLimb_00A3C0DL_008F48; + +#define dgGerudoRedSkelLimbsLimb_00A3CCDL_005640 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3CCDL_005640" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A3CCDL_005640[] = dgGerudoRedSkelLimbsLimb_00A3CCDL_005640; + +#define dgGerudoRedSkelLimbsLimb_00A3D8DL_005740 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3D8DL_005740" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A3D8DL_005740[] = dgGerudoRedSkelLimbsLimb_00A3D8DL_005740; + +#define dgGerudoRedSkelLimbsLimb_00A3E4DL_009108 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3E4DL_009108" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A3E4DL_009108[] = dgGerudoRedSkelLimbsLimb_00A3E4DL_009108; + +#define dgGerudoRedSkelLimbsLimb_00A3F0DL_005420 "__OTR__objects/object_geldb/gGerudoRedSkelLimbsLimb_00A3F0DL_005420" +static const ALIGN_ASSET(2) char gGerudoRedSkelLimbsLimb_00A3F0DL_005420[] = dgGerudoRedSkelLimbsLimb_00A3F0DL_005420; + +#define dobject_geldbTLUT_002500 "__OTR__objects/object_geldb/object_geldbTLUT_002500" +static const ALIGN_ASSET(2) char object_geldbTLUT_002500[] = dobject_geldbTLUT_002500; + +#define dobject_geldbTex_002700 "__OTR__objects/object_geldb/object_geldbTex_002700" +static const ALIGN_ASSET(2) char object_geldbTex_002700[] = dobject_geldbTex_002700; + +#define dobject_geldbTex_002980 "__OTR__objects/object_geldb/object_geldbTex_002980" +static const ALIGN_ASSET(2) char object_geldbTex_002980[] = dobject_geldbTex_002980; + +#define dobject_geldbTex_002880 "__OTR__objects/object_geldb/object_geldbTex_002880" +static const ALIGN_ASSET(2) char object_geldbTex_002880[] = dobject_geldbTex_002880; + +#define dobject_geldbTex_002780 "__OTR__objects/object_geldb/object_geldbTex_002780" +static const ALIGN_ASSET(2) char object_geldbTex_002780[] = dobject_geldbTex_002780; + +#define dobject_geldbTex_002740 "__OTR__objects/object_geldb/object_geldbTex_002740" +static const ALIGN_ASSET(2) char object_geldbTex_002740[] = dobject_geldbTex_002740; + +#define dobject_geldbTex_006A28 "__OTR__objects/object_geldb/object_geldbTex_006A28" +static const ALIGN_ASSET(2) char object_geldbTex_006A28[] = dobject_geldbTex_006A28; + +#define dobject_geldbTex_0063E8 "__OTR__objects/object_geldb/object_geldbTex_0063E8" +static const ALIGN_ASSET(2) char object_geldbTex_0063E8[] = dobject_geldbTex_0063E8; + +#define dobject_geldbTex_005F68 "__OTR__objects/object_geldb/object_geldbTex_005F68" +static const ALIGN_ASSET(2) char object_geldbTex_005F68[] = dobject_geldbTex_005F68; + +#define dobject_geldbTex_006C28 "__OTR__objects/object_geldb/object_geldbTex_006C28" +static const ALIGN_ASSET(2) char object_geldbTex_006C28[] = dobject_geldbTex_006C28; + +#define dobject_geldbTex_0069A8 "__OTR__objects/object_geldb/object_geldbTex_0069A8" +static const ALIGN_ASSET(2) char object_geldbTex_0069A8[] = dobject_geldbTex_0069A8; + +#define dobject_geldbTex_006B28 "__OTR__objects/object_geldb/object_geldbTex_006B28" +static const ALIGN_ASSET(2) char object_geldbTex_006B28[] = dobject_geldbTex_006B28; + +#define dobject_geldbTex_002A80 "__OTR__objects/object_geldb/object_geldbTex_002A80" +static const ALIGN_ASSET(2) char object_geldbTex_002A80[] = dobject_geldbTex_002A80; + +#define dobject_geldbTex_002B80 "__OTR__objects/object_geldb/object_geldbTex_002B80" +static const ALIGN_ASSET(2) char object_geldbTex_002B80[] = dobject_geldbTex_002B80; + +#define dobject_geldbTex_0064E8 "__OTR__objects/object_geldb/object_geldbTex_0064E8" +static const ALIGN_ASSET(2) char object_geldbTex_0064E8[] = dobject_geldbTex_0064E8; + +#define dobject_geldbTex_006568 "__OTR__objects/object_geldb/object_geldbTex_006568" +static const ALIGN_ASSET(2) char object_geldbTex_006568[] = dobject_geldbTex_006568; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_arrow/object_gi_arrow.h b/soh/assets/objects/object_gi_arrow/object_gi_arrow.h index f9ba7530e..3fe058384 100644 --- a/soh/assets/objects/object_gi_arrow/object_gi_arrow.h +++ b/soh/assets/objects/object_gi_arrow/object_gi_arrow.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiArrowSmallDL "__OTR__objects/object_gi_arrow/gGiArrowSmallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiArrowSmallDL[] = dgGiArrowSmallDL; -#else -static const char gGiArrowSmallDL[] __attribute__((aligned (2))) = dgGiArrowSmallDL; -#endif - -#define dgGiArrowMediumDL "__OTR__objects/object_gi_arrow/gGiArrowMediumDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiArrowMediumDL[] = dgGiArrowMediumDL; -#else -static const char gGiArrowMediumDL[] __attribute__((aligned (2))) = dgGiArrowMediumDL; -#endif - -#define dgGiArrowLargeDL "__OTR__objects/object_gi_arrow/gGiArrowLargeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiArrowLargeDL[] = dgGiArrowLargeDL; -#else -static const char gGiArrowLargeDL[] __attribute__((aligned (2))) = dgGiArrowLargeDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiArrowSmallDL "__OTR__objects/object_gi_arrow/gGiArrowSmallDL" +static const ALIGN_ASSET(2) char gGiArrowSmallDL[] = dgGiArrowSmallDL; + +#define dgGiArrowMediumDL "__OTR__objects/object_gi_arrow/gGiArrowMediumDL" +static const ALIGN_ASSET(2) char gGiArrowMediumDL[] = dgGiArrowMediumDL; + +#define dgGiArrowLargeDL "__OTR__objects/object_gi_arrow/gGiArrowLargeDL" +static const ALIGN_ASSET(2) char gGiArrowLargeDL[] = dgGiArrowLargeDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_arrowcase/object_gi_arrowcase.h b/soh/assets/objects/object_gi_arrowcase/object_gi_arrowcase.h index f943ea1f7..3ff54e231 100644 --- a/soh/assets/objects/object_gi_arrowcase/object_gi_arrowcase.h +++ b/soh/assets/objects/object_gi_arrowcase/object_gi_arrowcase.h @@ -1,58 +1,27 @@ #pragma once -#define dgGiQuiver30InnerColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver30InnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiQuiver30InnerColorDL[] = dgGiQuiver30InnerColorDL; -#else -static const char gGiQuiver30InnerColorDL[] __attribute__((aligned (2))) = dgGiQuiver30InnerColorDL; -#endif - -#define dgGiQuiver40InnerColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver40InnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiQuiver40InnerColorDL[] = dgGiQuiver40InnerColorDL; -#else -static const char gGiQuiver40InnerColorDL[] __attribute__((aligned (2))) = dgGiQuiver40InnerColorDL; -#endif - -#define dgGiQuiver50InnerColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver50InnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiQuiver50InnerColorDL[] = dgGiQuiver50InnerColorDL; -#else -static const char gGiQuiver50InnerColorDL[] __attribute__((aligned (2))) = dgGiQuiver50InnerColorDL; -#endif - -#define dgGiQuiver30OuterColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver30OuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiQuiver30OuterColorDL[] = dgGiQuiver30OuterColorDL; -#else -static const char gGiQuiver30OuterColorDL[] __attribute__((aligned (2))) = dgGiQuiver30OuterColorDL; -#endif - -#define dgGiQuiver40OuterColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver40OuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiQuiver40OuterColorDL[] = dgGiQuiver40OuterColorDL; -#else -static const char gGiQuiver40OuterColorDL[] __attribute__((aligned (2))) = dgGiQuiver40OuterColorDL; -#endif - -#define dgGiQuiver50OuterColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver50OuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiQuiver50OuterColorDL[] = dgGiQuiver50OuterColorDL; -#else -static const char gGiQuiver50OuterColorDL[] __attribute__((aligned (2))) = dgGiQuiver50OuterColorDL; -#endif - -#define dgGiQuiverInnerDL "__OTR__objects/object_gi_arrowcase/gGiQuiverInnerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiQuiverInnerDL[] = dgGiQuiverInnerDL; -#else -static const char gGiQuiverInnerDL[] __attribute__((aligned (2))) = dgGiQuiverInnerDL; -#endif - -#define dgGiQuiverOuterDL "__OTR__objects/object_gi_arrowcase/gGiQuiverOuterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiQuiverOuterDL[] = dgGiQuiverOuterDL; -#else -static const char gGiQuiverOuterDL[] __attribute__((aligned (2))) = dgGiQuiverOuterDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiQuiver30InnerColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver30InnerColorDL" +static const ALIGN_ASSET(2) char gGiQuiver30InnerColorDL[] = dgGiQuiver30InnerColorDL; + +#define dgGiQuiver40InnerColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver40InnerColorDL" +static const ALIGN_ASSET(2) char gGiQuiver40InnerColorDL[] = dgGiQuiver40InnerColorDL; + +#define dgGiQuiver50InnerColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver50InnerColorDL" +static const ALIGN_ASSET(2) char gGiQuiver50InnerColorDL[] = dgGiQuiver50InnerColorDL; + +#define dgGiQuiver30OuterColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver30OuterColorDL" +static const ALIGN_ASSET(2) char gGiQuiver30OuterColorDL[] = dgGiQuiver30OuterColorDL; + +#define dgGiQuiver40OuterColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver40OuterColorDL" +static const ALIGN_ASSET(2) char gGiQuiver40OuterColorDL[] = dgGiQuiver40OuterColorDL; + +#define dgGiQuiver50OuterColorDL "__OTR__objects/object_gi_arrowcase/gGiQuiver50OuterColorDL" +static const ALIGN_ASSET(2) char gGiQuiver50OuterColorDL[] = dgGiQuiver50OuterColorDL; + +#define dgGiQuiverInnerDL "__OTR__objects/object_gi_arrowcase/gGiQuiverInnerDL" +static const ALIGN_ASSET(2) char gGiQuiverInnerDL[] = dgGiQuiverInnerDL; + +#define dgGiQuiverOuterDL "__OTR__objects/object_gi_arrowcase/gGiQuiverOuterDL" +static const ALIGN_ASSET(2) char gGiQuiverOuterDL[] = dgGiQuiverOuterDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bean/object_gi_bean.h b/soh/assets/objects/object_gi_bean/object_gi_bean.h index 28b4879b0..92754077e 100644 --- a/soh/assets/objects/object_gi_bean/object_gi_bean.h +++ b/soh/assets/objects/object_gi_bean/object_gi_bean.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiBeanDL "__OTR__objects/object_gi_bean/gGiBeanDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBeanDL[] = dgGiBeanDL; -#else -static const char gGiBeanDL[] __attribute__((aligned (2))) = dgGiBeanDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBeanDL "__OTR__objects/object_gi_bean/gGiBeanDL" +static const ALIGN_ASSET(2) char gGiBeanDL[] = dgGiBeanDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bomb_1/object_gi_bomb_1.h b/soh/assets/objects/object_gi_bomb_1/object_gi_bomb_1.h index 77566e3be..623ad1942 100644 --- a/soh/assets/objects/object_gi_bomb_1/object_gi_bomb_1.h +++ b/soh/assets/objects/object_gi_bomb_1/object_gi_bomb_1.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiBombDL "__OTR__objects/object_gi_bomb_1/gGiBombDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombDL[] = dgGiBombDL; -#else -static const char gGiBombDL[] __attribute__((aligned (2))) = dgGiBombDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBombDL "__OTR__objects/object_gi_bomb_1/gGiBombDL" +static const ALIGN_ASSET(2) char gGiBombDL[] = dgGiBombDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bomb_2/object_gi_bomb_2.h b/soh/assets/objects/object_gi_bomb_2/object_gi_bomb_2.h index 255c48541..86de8f01a 100644 --- a/soh/assets/objects/object_gi_bomb_2/object_gi_bomb_2.h +++ b/soh/assets/objects/object_gi_bomb_2/object_gi_bomb_2.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiBombchuDL "__OTR__objects/object_gi_bomb_2/gGiBombchuDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombchuDL[] = dgGiBombchuDL; -#else -static const char gGiBombchuDL[] __attribute__((aligned (2))) = dgGiBombchuDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBombchuDL "__OTR__objects/object_gi_bomb_2/gGiBombchuDL" +static const ALIGN_ASSET(2) char gGiBombchuDL[] = dgGiBombchuDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bombpouch/object_gi_bombpouch.h b/soh/assets/objects/object_gi_bombpouch/object_gi_bombpouch.h index 39e71c532..dc7c86439 100644 --- a/soh/assets/objects/object_gi_bombpouch/object_gi_bombpouch.h +++ b/soh/assets/objects/object_gi_bombpouch/object_gi_bombpouch.h @@ -1,58 +1,27 @@ #pragma once -#define dgGiBombBag20BagColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag20BagColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombBag20BagColorDL[] = dgGiBombBag20BagColorDL; -#else -static const char gGiBombBag20BagColorDL[] __attribute__((aligned (2))) = dgGiBombBag20BagColorDL; -#endif - -#define dgGiBombBag30BagColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag30BagColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombBag30BagColorDL[] = dgGiBombBag30BagColorDL; -#else -static const char gGiBombBag30BagColorDL[] __attribute__((aligned (2))) = dgGiBombBag30BagColorDL; -#endif - -#define dgGiBombBag40BagColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag40BagColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombBag40BagColorDL[] = dgGiBombBag40BagColorDL; -#else -static const char gGiBombBag40BagColorDL[] __attribute__((aligned (2))) = dgGiBombBag40BagColorDL; -#endif - -#define dgGiBombBag20RingColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag20RingColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombBag20RingColorDL[] = dgGiBombBag20RingColorDL; -#else -static const char gGiBombBag20RingColorDL[] __attribute__((aligned (2))) = dgGiBombBag20RingColorDL; -#endif - -#define dgGiBombBag30RingColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag30RingColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombBag30RingColorDL[] = dgGiBombBag30RingColorDL; -#else -static const char gGiBombBag30RingColorDL[] __attribute__((aligned (2))) = dgGiBombBag30RingColorDL; -#endif - -#define dgGiBombBag40RingColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag40RingColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombBag40RingColorDL[] = dgGiBombBag40RingColorDL; -#else -static const char gGiBombBag40RingColorDL[] __attribute__((aligned (2))) = dgGiBombBag40RingColorDL; -#endif - -#define dgGiBombBagDL "__OTR__objects/object_gi_bombpouch/gGiBombBagDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombBagDL[] = dgGiBombBagDL; -#else -static const char gGiBombBagDL[] __attribute__((aligned (2))) = dgGiBombBagDL; -#endif - -#define dgGiBombBagRingDL "__OTR__objects/object_gi_bombpouch/gGiBombBagRingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBombBagRingDL[] = dgGiBombBagRingDL; -#else -static const char gGiBombBagRingDL[] __attribute__((aligned (2))) = dgGiBombBagRingDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBombBag20BagColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag20BagColorDL" +static const ALIGN_ASSET(2) char gGiBombBag20BagColorDL[] = dgGiBombBag20BagColorDL; + +#define dgGiBombBag30BagColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag30BagColorDL" +static const ALIGN_ASSET(2) char gGiBombBag30BagColorDL[] = dgGiBombBag30BagColorDL; + +#define dgGiBombBag40BagColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag40BagColorDL" +static const ALIGN_ASSET(2) char gGiBombBag40BagColorDL[] = dgGiBombBag40BagColorDL; + +#define dgGiBombBag20RingColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag20RingColorDL" +static const ALIGN_ASSET(2) char gGiBombBag20RingColorDL[] = dgGiBombBag20RingColorDL; + +#define dgGiBombBag30RingColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag30RingColorDL" +static const ALIGN_ASSET(2) char gGiBombBag30RingColorDL[] = dgGiBombBag30RingColorDL; + +#define dgGiBombBag40RingColorDL "__OTR__objects/object_gi_bombpouch/gGiBombBag40RingColorDL" +static const ALIGN_ASSET(2) char gGiBombBag40RingColorDL[] = dgGiBombBag40RingColorDL; + +#define dgGiBombBagDL "__OTR__objects/object_gi_bombpouch/gGiBombBagDL" +static const ALIGN_ASSET(2) char gGiBombBagDL[] = dgGiBombBagDL; + +#define dgGiBombBagRingDL "__OTR__objects/object_gi_bombpouch/gGiBombBagRingDL" +static const ALIGN_ASSET(2) char gGiBombBagRingDL[] = dgGiBombBagRingDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_boomerang/object_gi_boomerang.h b/soh/assets/objects/object_gi_boomerang/object_gi_boomerang.h index 38fba48d0..6bec42515 100644 --- a/soh/assets/objects/object_gi_boomerang/object_gi_boomerang.h +++ b/soh/assets/objects/object_gi_boomerang/object_gi_boomerang.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiBoomerangDL "__OTR__objects/object_gi_boomerang/gGiBoomerangDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBoomerangDL[] = dgGiBoomerangDL; -#else -static const char gGiBoomerangDL[] __attribute__((aligned (2))) = dgGiBoomerangDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBoomerangDL "__OTR__objects/object_gi_boomerang/gGiBoomerangDL" +static const ALIGN_ASSET(2) char gGiBoomerangDL[] = dgGiBoomerangDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_boots_2/object_gi_boots_2.h b/soh/assets/objects/object_gi_boots_2/object_gi_boots_2.h index 1505b1041..7dbbcfd02 100644 --- a/soh/assets/objects/object_gi_boots_2/object_gi_boots_2.h +++ b/soh/assets/objects/object_gi_boots_2/object_gi_boots_2.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiIronBootsDL "__OTR__objects/object_gi_boots_2/gGiIronBootsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiIronBootsDL[] = dgGiIronBootsDL; -#else -static const char gGiIronBootsDL[] __attribute__((aligned (2))) = dgGiIronBootsDL; -#endif - -#define dgGiIronBootsRivetsDL "__OTR__objects/object_gi_boots_2/gGiIronBootsRivetsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiIronBootsRivetsDL[] = dgGiIronBootsRivetsDL; -#else -static const char gGiIronBootsRivetsDL[] __attribute__((aligned (2))) = dgGiIronBootsRivetsDL; -#endif - -#define dobject_gi_boots_2Tex_000000 "__OTR__objects/object_gi_boots_2/object_gi_boots_2Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_boots_2Tex_000000[] = dobject_gi_boots_2Tex_000000; -#else -static const char object_gi_boots_2Tex_000000[] __attribute__((aligned (2))) = dobject_gi_boots_2Tex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiIronBootsDL "__OTR__objects/object_gi_boots_2/gGiIronBootsDL" +static const ALIGN_ASSET(2) char gGiIronBootsDL[] = dgGiIronBootsDL; + +#define dgGiIronBootsRivetsDL "__OTR__objects/object_gi_boots_2/gGiIronBootsRivetsDL" +static const ALIGN_ASSET(2) char gGiIronBootsRivetsDL[] = dgGiIronBootsRivetsDL; + +#define dobject_gi_boots_2Tex_000000 "__OTR__objects/object_gi_boots_2/object_gi_boots_2Tex_000000" +static const ALIGN_ASSET(2) char object_gi_boots_2Tex_000000[] = dobject_gi_boots_2Tex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bosskey/object_gi_bosskey.h b/soh/assets/objects/object_gi_bosskey/object_gi_bosskey.h index 8a988741f..85f565241 100644 --- a/soh/assets/objects/object_gi_bosskey/object_gi_bosskey.h +++ b/soh/assets/objects/object_gi_bosskey/object_gi_bosskey.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiBossKeyDL "__OTR__objects/object_gi_bosskey/gGiBossKeyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBossKeyDL[] = dgGiBossKeyDL; -#else -static const char gGiBossKeyDL[] __attribute__((aligned (2))) = dgGiBossKeyDL; -#endif - -#define dgGiBossKeyGemDL "__OTR__objects/object_gi_bosskey/gGiBossKeyGemDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBossKeyGemDL[] = dgGiBossKeyGemDL; -#else -static const char gGiBossKeyGemDL[] __attribute__((aligned (2))) = dgGiBossKeyGemDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBossKeyDL "__OTR__objects/object_gi_bosskey/gGiBossKeyDL" +static const ALIGN_ASSET(2) char gGiBossKeyDL[] = dgGiBossKeyDL; + +#define dgGiBossKeyGemDL "__OTR__objects/object_gi_bosskey/gGiBossKeyGemDL" +static const ALIGN_ASSET(2) char gGiBossKeyGemDL[] = dgGiBossKeyGemDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bottle/object_gi_bottle.h b/soh/assets/objects/object_gi_bottle/object_gi_bottle.h index 329732d25..ba8a778ca 100644 --- a/soh/assets/objects/object_gi_bottle/object_gi_bottle.h +++ b/soh/assets/objects/object_gi_bottle/object_gi_bottle.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiBottleStopperDL "__OTR__objects/object_gi_bottle/gGiBottleStopperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBottleStopperDL[] = dgGiBottleStopperDL; -#else -static const char gGiBottleStopperDL[] __attribute__((aligned (2))) = dgGiBottleStopperDL; -#endif - -#define dgGiBottleDL "__OTR__objects/object_gi_bottle/gGiBottleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBottleDL[] = dgGiBottleDL; -#else -static const char gGiBottleDL[] __attribute__((aligned (2))) = dgGiBottleDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBottleStopperDL "__OTR__objects/object_gi_bottle/gGiBottleStopperDL" +static const ALIGN_ASSET(2) char gGiBottleStopperDL[] = dgGiBottleStopperDL; + +#define dgGiBottleDL "__OTR__objects/object_gi_bottle/gGiBottleDL" +static const ALIGN_ASSET(2) char gGiBottleDL[] = dgGiBottleDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bottle_letter/object_gi_bottle_letter.h b/soh/assets/objects/object_gi_bottle_letter/object_gi_bottle_letter.h index 32eeffe50..ca2a5f8c0 100644 --- a/soh/assets/objects/object_gi_bottle_letter/object_gi_bottle_letter.h +++ b/soh/assets/objects/object_gi_bottle_letter/object_gi_bottle_letter.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiLetterBottleContentsDL "__OTR__objects/object_gi_bottle_letter/gGiLetterBottleContentsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLetterBottleContentsDL[] = dgGiLetterBottleContentsDL; -#else -static const char gGiLetterBottleContentsDL[] __attribute__((aligned (2))) = dgGiLetterBottleContentsDL; -#endif - -#define dgGiLetterBottleDL "__OTR__objects/object_gi_bottle_letter/gGiLetterBottleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLetterBottleDL[] = dgGiLetterBottleDL; -#else -static const char gGiLetterBottleDL[] __attribute__((aligned (2))) = dgGiLetterBottleDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiLetterBottleContentsDL "__OTR__objects/object_gi_bottle_letter/gGiLetterBottleContentsDL" +static const ALIGN_ASSET(2) char gGiLetterBottleContentsDL[] = dgGiLetterBottleContentsDL; + +#define dgGiLetterBottleDL "__OTR__objects/object_gi_bottle_letter/gGiLetterBottleDL" +static const ALIGN_ASSET(2) char gGiLetterBottleDL[] = dgGiLetterBottleDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bow/object_gi_bow.h b/soh/assets/objects/object_gi_bow/object_gi_bow.h index d678e7eea..7ad8e7b1c 100644 --- a/soh/assets/objects/object_gi_bow/object_gi_bow.h +++ b/soh/assets/objects/object_gi_bow/object_gi_bow.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiBowDL "__OTR__objects/object_gi_bow/gGiBowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBowDL[] = dgGiBowDL; -#else -static const char gGiBowDL[] __attribute__((aligned (2))) = dgGiBowDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBowDL "__OTR__objects/object_gi_bow/gGiBowDL" +static const ALIGN_ASSET(2) char gGiBowDL[] = dgGiBowDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_bracelet/object_gi_bracelet.h b/soh/assets/objects/object_gi_bracelet/object_gi_bracelet.h index 64496d061..32f6f286c 100644 --- a/soh/assets/objects/object_gi_bracelet/object_gi_bracelet.h +++ b/soh/assets/objects/object_gi_bracelet/object_gi_bracelet.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiGoronBraceletDL "__OTR__objects/object_gi_bracelet/gGiGoronBraceletDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoronBraceletDL[] = dgGiGoronBraceletDL; -#else -static const char gGiGoronBraceletDL[] __attribute__((aligned (2))) = dgGiGoronBraceletDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiGoronBraceletDL "__OTR__objects/object_gi_bracelet/gGiGoronBraceletDL" +static const ALIGN_ASSET(2) char gGiGoronBraceletDL[] = dgGiGoronBraceletDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_brokensword/object_gi_brokensword.h b/soh/assets/objects/object_gi_brokensword/object_gi_brokensword.h index 9562e9eab..0030219ed 100644 --- a/soh/assets/objects/object_gi_brokensword/object_gi_brokensword.h +++ b/soh/assets/objects/object_gi_brokensword/object_gi_brokensword.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiBrokenGoronSwordDL "__OTR__objects/object_gi_brokensword/gGiBrokenGoronSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBrokenGoronSwordDL[] = dgGiBrokenGoronSwordDL; -#else -static const char gGiBrokenGoronSwordDL[] __attribute__((aligned (2))) = dgGiBrokenGoronSwordDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBrokenGoronSwordDL "__OTR__objects/object_gi_brokensword/gGiBrokenGoronSwordDL" +static const ALIGN_ASSET(2) char gGiBrokenGoronSwordDL[] = dgGiBrokenGoronSwordDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_butterfly/object_gi_butterfly.h b/soh/assets/objects/object_gi_butterfly/object_gi_butterfly.h index 58482a27a..1365a02f0 100644 --- a/soh/assets/objects/object_gi_butterfly/object_gi_butterfly.h +++ b/soh/assets/objects/object_gi_butterfly/object_gi_butterfly.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiButterflyContainerDL "__OTR__objects/object_gi_butterfly/gGiButterflyContainerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiButterflyContainerDL[] = dgGiButterflyContainerDL; -#else -static const char gGiButterflyContainerDL[] __attribute__((aligned (2))) = dgGiButterflyContainerDL; -#endif - -#define dgGiButterflyGlassDL "__OTR__objects/object_gi_butterfly/gGiButterflyGlassDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiButterflyGlassDL[] = dgGiButterflyGlassDL; -#else -static const char gGiButterflyGlassDL[] __attribute__((aligned (2))) = dgGiButterflyGlassDL; -#endif - -#define dobject_gi_butterflyTex_000000 "__OTR__objects/object_gi_butterfly/object_gi_butterflyTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_butterflyTex_000000[] = dobject_gi_butterflyTex_000000; -#else -static const char object_gi_butterflyTex_000000[] __attribute__((aligned (2))) = dobject_gi_butterflyTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiButterflyContainerDL "__OTR__objects/object_gi_butterfly/gGiButterflyContainerDL" +static const ALIGN_ASSET(2) char gGiButterflyContainerDL[] = dgGiButterflyContainerDL; + +#define dgGiButterflyGlassDL "__OTR__objects/object_gi_butterfly/gGiButterflyGlassDL" +static const ALIGN_ASSET(2) char gGiButterflyGlassDL[] = dgGiButterflyGlassDL; + +#define dobject_gi_butterflyTex_000000 "__OTR__objects/object_gi_butterfly/object_gi_butterflyTex_000000" +static const ALIGN_ASSET(2) char object_gi_butterflyTex_000000[] = dobject_gi_butterflyTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_clothes/object_gi_clothes.h b/soh/assets/objects/object_gi_clothes/object_gi_clothes.h index 92a2d4239..563e499b5 100644 --- a/soh/assets/objects/object_gi_clothes/object_gi_clothes.h +++ b/soh/assets/objects/object_gi_clothes/object_gi_clothes.h @@ -1,51 +1,24 @@ #pragma once -#define dgGiGoronCollarColorDL "__OTR__objects/object_gi_clothes/gGiGoronCollarColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoronCollarColorDL[] = dgGiGoronCollarColorDL; -#else -static const char gGiGoronCollarColorDL[] __attribute__((aligned (2))) = dgGiGoronCollarColorDL; -#endif - -#define dgGiZoraCollarColorDL "__OTR__objects/object_gi_clothes/gGiZoraCollarColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiZoraCollarColorDL[] = dgGiZoraCollarColorDL; -#else -static const char gGiZoraCollarColorDL[] __attribute__((aligned (2))) = dgGiZoraCollarColorDL; -#endif - -#define dgGiGoronTunicColorDL "__OTR__objects/object_gi_clothes/gGiGoronTunicColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoronTunicColorDL[] = dgGiGoronTunicColorDL; -#else -static const char gGiGoronTunicColorDL[] __attribute__((aligned (2))) = dgGiGoronTunicColorDL; -#endif - -#define dgGiZoraTunicColorDL "__OTR__objects/object_gi_clothes/gGiZoraTunicColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiZoraTunicColorDL[] = dgGiZoraTunicColorDL; -#else -static const char gGiZoraTunicColorDL[] __attribute__((aligned (2))) = dgGiZoraTunicColorDL; -#endif - -#define dgGiTunicCollarDL "__OTR__objects/object_gi_clothes/gGiTunicCollarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiTunicCollarDL[] = dgGiTunicCollarDL; -#else -static const char gGiTunicCollarDL[] __attribute__((aligned (2))) = dgGiTunicCollarDL; -#endif - -#define dgGiTunicDL "__OTR__objects/object_gi_clothes/gGiTunicDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiTunicDL[] = dgGiTunicDL; -#else -static const char gGiTunicDL[] __attribute__((aligned (2))) = dgGiTunicDL; -#endif - -#define dobject_gi_clothesTex_000000 "__OTR__objects/object_gi_clothes/object_gi_clothesTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_clothesTex_000000[] = dobject_gi_clothesTex_000000; -#else -static const char object_gi_clothesTex_000000[] __attribute__((aligned (2))) = dobject_gi_clothesTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiGoronCollarColorDL "__OTR__objects/object_gi_clothes/gGiGoronCollarColorDL" +static const ALIGN_ASSET(2) char gGiGoronCollarColorDL[] = dgGiGoronCollarColorDL; + +#define dgGiZoraCollarColorDL "__OTR__objects/object_gi_clothes/gGiZoraCollarColorDL" +static const ALIGN_ASSET(2) char gGiZoraCollarColorDL[] = dgGiZoraCollarColorDL; + +#define dgGiGoronTunicColorDL "__OTR__objects/object_gi_clothes/gGiGoronTunicColorDL" +static const ALIGN_ASSET(2) char gGiGoronTunicColorDL[] = dgGiGoronTunicColorDL; + +#define dgGiZoraTunicColorDL "__OTR__objects/object_gi_clothes/gGiZoraTunicColorDL" +static const ALIGN_ASSET(2) char gGiZoraTunicColorDL[] = dgGiZoraTunicColorDL; + +#define dgGiTunicCollarDL "__OTR__objects/object_gi_clothes/gGiTunicCollarDL" +static const ALIGN_ASSET(2) char gGiTunicCollarDL[] = dgGiTunicCollarDL; + +#define dgGiTunicDL "__OTR__objects/object_gi_clothes/gGiTunicDL" +static const ALIGN_ASSET(2) char gGiTunicDL[] = dgGiTunicDL; + +#define dobject_gi_clothesTex_000000 "__OTR__objects/object_gi_clothes/object_gi_clothesTex_000000" +static const ALIGN_ASSET(2) char object_gi_clothesTex_000000[] = dobject_gi_clothesTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_coin/object_gi_coin.h b/soh/assets/objects/object_gi_coin/object_gi_coin.h index 2c2938ece..7e87f6bb2 100644 --- a/soh/assets/objects/object_gi_coin/object_gi_coin.h +++ b/soh/assets/objects/object_gi_coin/object_gi_coin.h @@ -1,44 +1,21 @@ #pragma once -#define dgGiYellowCoinColorDL "__OTR__objects/object_gi_coin/gGiYellowCoinColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiYellowCoinColorDL[] = dgGiYellowCoinColorDL; -#else -static const char gGiYellowCoinColorDL[] __attribute__((aligned (2))) = dgGiYellowCoinColorDL; -#endif - -#define dgGiRedCoinColorDL "__OTR__objects/object_gi_coin/gGiRedCoinColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRedCoinColorDL[] = dgGiRedCoinColorDL; -#else -static const char gGiRedCoinColorDL[] __attribute__((aligned (2))) = dgGiRedCoinColorDL; -#endif - -#define dgGiGreenCoinColorDL "__OTR__objects/object_gi_coin/gGiGreenCoinColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGreenCoinColorDL[] = dgGiGreenCoinColorDL; -#else -static const char gGiGreenCoinColorDL[] __attribute__((aligned (2))) = dgGiGreenCoinColorDL; -#endif - -#define dgGiBlueCoinColorDL "__OTR__objects/object_gi_coin/gGiBlueCoinColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBlueCoinColorDL[] = dgGiBlueCoinColorDL; -#else -static const char gGiBlueCoinColorDL[] __attribute__((aligned (2))) = dgGiBlueCoinColorDL; -#endif - -#define dgGiCoinDL "__OTR__objects/object_gi_coin/gGiCoinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiCoinDL[] = dgGiCoinDL; -#else -static const char gGiCoinDL[] __attribute__((aligned (2))) = dgGiCoinDL; -#endif - -#define dgGiNDL "__OTR__objects/object_gi_coin/gGiNDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiNDL[] = dgGiNDL; -#else -static const char gGiNDL[] __attribute__((aligned (2))) = dgGiNDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiYellowCoinColorDL "__OTR__objects/object_gi_coin/gGiYellowCoinColorDL" +static const ALIGN_ASSET(2) char gGiYellowCoinColorDL[] = dgGiYellowCoinColorDL; + +#define dgGiRedCoinColorDL "__OTR__objects/object_gi_coin/gGiRedCoinColorDL" +static const ALIGN_ASSET(2) char gGiRedCoinColorDL[] = dgGiRedCoinColorDL; + +#define dgGiGreenCoinColorDL "__OTR__objects/object_gi_coin/gGiGreenCoinColorDL" +static const ALIGN_ASSET(2) char gGiGreenCoinColorDL[] = dgGiGreenCoinColorDL; + +#define dgGiBlueCoinColorDL "__OTR__objects/object_gi_coin/gGiBlueCoinColorDL" +static const ALIGN_ASSET(2) char gGiBlueCoinColorDL[] = dgGiBlueCoinColorDL; + +#define dgGiCoinDL "__OTR__objects/object_gi_coin/gGiCoinDL" +static const ALIGN_ASSET(2) char gGiCoinDL[] = dgGiCoinDL; + +#define dgGiNDL "__OTR__objects/object_gi_coin/gGiNDL" +static const ALIGN_ASSET(2) char gGiNDL[] = dgGiNDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_compass/object_gi_compass.h b/soh/assets/objects/object_gi_compass/object_gi_compass.h index 07bc3c704..269aa960a 100644 --- a/soh/assets/objects/object_gi_compass/object_gi_compass.h +++ b/soh/assets/objects/object_gi_compass/object_gi_compass.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiCompassDL "__OTR__objects/object_gi_compass/gGiCompassDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiCompassDL[] = dgGiCompassDL; -#else -static const char gGiCompassDL[] __attribute__((aligned (2))) = dgGiCompassDL; -#endif - -#define dgGiCompassGlassDL "__OTR__objects/object_gi_compass/gGiCompassGlassDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiCompassGlassDL[] = dgGiCompassGlassDL; -#else -static const char gGiCompassGlassDL[] __attribute__((aligned (2))) = dgGiCompassGlassDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiCompassDL "__OTR__objects/object_gi_compass/gGiCompassDL" +static const ALIGN_ASSET(2) char gGiCompassDL[] = dgGiCompassDL; + +#define dgGiCompassGlassDL "__OTR__objects/object_gi_compass/gGiCompassGlassDL" +static const ALIGN_ASSET(2) char gGiCompassGlassDL[] = dgGiCompassGlassDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_dekupouch/object_gi_dekupouch.h b/soh/assets/objects/object_gi_dekupouch/object_gi_dekupouch.h index ae08f3429..391710e95 100644 --- a/soh/assets/objects/object_gi_dekupouch/object_gi_dekupouch.h +++ b/soh/assets/objects/object_gi_dekupouch/object_gi_dekupouch.h @@ -1,65 +1,30 @@ #pragma once -#define dgGiBulletBagColorDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBulletBagColorDL[] = dgGiBulletBagColorDL; -#else -static const char gGiBulletBagColorDL[] __attribute__((aligned (2))) = dgGiBulletBagColorDL; -#endif - -#define dgGiBulletBag50ColorDL "__OTR__objects/object_gi_dekupouch/gGiBulletBag50ColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBulletBag50ColorDL[] = dgGiBulletBag50ColorDL; -#else -static const char gGiBulletBag50ColorDL[] __attribute__((aligned (2))) = dgGiBulletBag50ColorDL; -#endif - -#define dgGiBulletBagStringColorDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagStringColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBulletBagStringColorDL[] = dgGiBulletBagStringColorDL; -#else -static const char gGiBulletBagStringColorDL[] __attribute__((aligned (2))) = dgGiBulletBagStringColorDL; -#endif - -#define dgGiBulletBag50StringColorDL "__OTR__objects/object_gi_dekupouch/gGiBulletBag50StringColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBulletBag50StringColorDL[] = dgGiBulletBag50StringColorDL; -#else -static const char gGiBulletBag50StringColorDL[] __attribute__((aligned (2))) = dgGiBulletBag50StringColorDL; -#endif - -#define dgGiBulletBagDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBulletBagDL[] = dgGiBulletBagDL; -#else -static const char gGiBulletBagDL[] __attribute__((aligned (2))) = dgGiBulletBagDL; -#endif - -#define dgGiBulletBagStringDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagStringDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBulletBagStringDL[] = dgGiBulletBagStringDL; -#else -static const char gGiBulletBagStringDL[] __attribute__((aligned (2))) = dgGiBulletBagStringDL; -#endif - -#define dgGiBulletBagWritingDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagWritingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBulletBagWritingDL[] = dgGiBulletBagWritingDL; -#else -static const char gGiBulletBagWritingDL[] __attribute__((aligned (2))) = dgGiBulletBagWritingDL; -#endif - -#define dobject_gi_dekupouchTex_000000 "__OTR__objects/object_gi_dekupouch/object_gi_dekupouchTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_dekupouchTex_000000[] = dobject_gi_dekupouchTex_000000; -#else -static const char object_gi_dekupouchTex_000000[] __attribute__((aligned (2))) = dobject_gi_dekupouchTex_000000; -#endif - -#define dobject_gi_dekupouchTex_000100 "__OTR__objects/object_gi_dekupouch/object_gi_dekupouchTex_000100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_dekupouchTex_000100[] = dobject_gi_dekupouchTex_000100; -#else -static const char object_gi_dekupouchTex_000100[] __attribute__((aligned (2))) = dobject_gi_dekupouchTex_000100; -#endif - +#include "align_asset_macro.h" + +#define dgGiBulletBagColorDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagColorDL" +static const ALIGN_ASSET(2) char gGiBulletBagColorDL[] = dgGiBulletBagColorDL; + +#define dgGiBulletBag50ColorDL "__OTR__objects/object_gi_dekupouch/gGiBulletBag50ColorDL" +static const ALIGN_ASSET(2) char gGiBulletBag50ColorDL[] = dgGiBulletBag50ColorDL; + +#define dgGiBulletBagStringColorDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagStringColorDL" +static const ALIGN_ASSET(2) char gGiBulletBagStringColorDL[] = dgGiBulletBagStringColorDL; + +#define dgGiBulletBag50StringColorDL "__OTR__objects/object_gi_dekupouch/gGiBulletBag50StringColorDL" +static const ALIGN_ASSET(2) char gGiBulletBag50StringColorDL[] = dgGiBulletBag50StringColorDL; + +#define dgGiBulletBagDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagDL" +static const ALIGN_ASSET(2) char gGiBulletBagDL[] = dgGiBulletBagDL; + +#define dgGiBulletBagStringDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagStringDL" +static const ALIGN_ASSET(2) char gGiBulletBagStringDL[] = dgGiBulletBagStringDL; + +#define dgGiBulletBagWritingDL "__OTR__objects/object_gi_dekupouch/gGiBulletBagWritingDL" +static const ALIGN_ASSET(2) char gGiBulletBagWritingDL[] = dgGiBulletBagWritingDL; + +#define dobject_gi_dekupouchTex_000000 "__OTR__objects/object_gi_dekupouch/object_gi_dekupouchTex_000000" +static const ALIGN_ASSET(2) char object_gi_dekupouchTex_000000[] = dobject_gi_dekupouchTex_000000; + +#define dobject_gi_dekupouchTex_000100 "__OTR__objects/object_gi_dekupouch/object_gi_dekupouchTex_000100" +static const ALIGN_ASSET(2) char object_gi_dekupouchTex_000100[] = dobject_gi_dekupouchTex_000100; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_egg/object_gi_egg.h b/soh/assets/objects/object_gi_egg/object_gi_egg.h index 15ba87c65..569d3f9e3 100644 --- a/soh/assets/objects/object_gi_egg/object_gi_egg.h +++ b/soh/assets/objects/object_gi_egg/object_gi_egg.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiEggMaterialDL "__OTR__objects/object_gi_egg/gGiEggMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiEggMaterialDL[] = dgGiEggMaterialDL; -#else -static const char gGiEggMaterialDL[] __attribute__((aligned (2))) = dgGiEggMaterialDL; -#endif - -#define dgGiEggDL "__OTR__objects/object_gi_egg/gGiEggDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiEggDL[] = dgGiEggDL; -#else -static const char gGiEggDL[] __attribute__((aligned (2))) = dgGiEggDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiEggMaterialDL "__OTR__objects/object_gi_egg/gGiEggMaterialDL" +static const ALIGN_ASSET(2) char gGiEggMaterialDL[] = dgGiEggMaterialDL; + +#define dgGiEggDL "__OTR__objects/object_gi_egg/gGiEggDL" +static const ALIGN_ASSET(2) char gGiEggDL[] = dgGiEggDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_eye_lotion/object_gi_eye_lotion.h b/soh/assets/objects/object_gi_eye_lotion/object_gi_eye_lotion.h index dd624250c..9a5ba02cf 100644 --- a/soh/assets/objects/object_gi_eye_lotion/object_gi_eye_lotion.h +++ b/soh/assets/objects/object_gi_eye_lotion/object_gi_eye_lotion.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiEyeDropsCapDL "__OTR__objects/object_gi_eye_lotion/gGiEyeDropsCapDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiEyeDropsCapDL[] = dgGiEyeDropsCapDL; -#else -static const char gGiEyeDropsCapDL[] __attribute__((aligned (2))) = dgGiEyeDropsCapDL; -#endif - -#define dgGiEyeDropsBottleDL "__OTR__objects/object_gi_eye_lotion/gGiEyeDropsBottleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiEyeDropsBottleDL[] = dgGiEyeDropsBottleDL; -#else -static const char gGiEyeDropsBottleDL[] __attribute__((aligned (2))) = dgGiEyeDropsBottleDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiEyeDropsCapDL "__OTR__objects/object_gi_eye_lotion/gGiEyeDropsCapDL" +static const ALIGN_ASSET(2) char gGiEyeDropsCapDL[] = dgGiEyeDropsCapDL; + +#define dgGiEyeDropsBottleDL "__OTR__objects/object_gi_eye_lotion/gGiEyeDropsBottleDL" +static const ALIGN_ASSET(2) char gGiEyeDropsBottleDL[] = dgGiEyeDropsBottleDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_fire/object_gi_fire.h b/soh/assets/objects/object_gi_fire/object_gi_fire.h index f9fdf47a6..40fdf793d 100644 --- a/soh/assets/objects/object_gi_fire/object_gi_fire.h +++ b/soh/assets/objects/object_gi_fire/object_gi_fire.h @@ -1,30 +1,15 @@ #pragma once -#define dgGiBlueFireChamberstickDL "__OTR__objects/object_gi_fire/gGiBlueFireChamberstickDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBlueFireChamberstickDL[] = dgGiBlueFireChamberstickDL; -#else -static const char gGiBlueFireChamberstickDL[] __attribute__((aligned (2))) = dgGiBlueFireChamberstickDL; -#endif - -#define dgGiBlueFireFlameDL "__OTR__objects/object_gi_fire/gGiBlueFireFlameDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBlueFireFlameDL[] = dgGiBlueFireFlameDL; -#else -static const char gGiBlueFireFlameDL[] __attribute__((aligned (2))) = dgGiBlueFireFlameDL; -#endif - -#define dobject_gi_fireTex_000000 "__OTR__objects/object_gi_fire/object_gi_fireTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_fireTex_000000[] = dobject_gi_fireTex_000000; -#else -static const char object_gi_fireTex_000000[] __attribute__((aligned (2))) = dobject_gi_fireTex_000000; -#endif - -#define dobject_gi_fireTex_000200 "__OTR__objects/object_gi_fire/object_gi_fireTex_000200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_fireTex_000200[] = dobject_gi_fireTex_000200; -#else -static const char object_gi_fireTex_000200[] __attribute__((aligned (2))) = dobject_gi_fireTex_000200; -#endif - +#include "align_asset_macro.h" + +#define dgGiBlueFireChamberstickDL "__OTR__objects/object_gi_fire/gGiBlueFireChamberstickDL" +static const ALIGN_ASSET(2) char gGiBlueFireChamberstickDL[] = dgGiBlueFireChamberstickDL; + +#define dgGiBlueFireFlameDL "__OTR__objects/object_gi_fire/gGiBlueFireFlameDL" +static const ALIGN_ASSET(2) char gGiBlueFireFlameDL[] = dgGiBlueFireFlameDL; + +#define dobject_gi_fireTex_000000 "__OTR__objects/object_gi_fire/object_gi_fireTex_000000" +static const ALIGN_ASSET(2) char object_gi_fireTex_000000[] = dobject_gi_fireTex_000000; + +#define dobject_gi_fireTex_000200 "__OTR__objects/object_gi_fire/object_gi_fireTex_000200" +static const ALIGN_ASSET(2) char object_gi_fireTex_000200[] = dobject_gi_fireTex_000200; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_fish/object_gi_fish.h b/soh/assets/objects/object_gi_fish/object_gi_fish.h index 889da5eb4..3dd2cb3df 100644 --- a/soh/assets/objects/object_gi_fish/object_gi_fish.h +++ b/soh/assets/objects/object_gi_fish/object_gi_fish.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiFishDL "__OTR__objects/object_gi_fish/gGiFishDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFishDL[] = dgGiFishDL; -#else -static const char gGiFishDL[] __attribute__((aligned (2))) = dgGiFishDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiFishDL "__OTR__objects/object_gi_fish/gGiFishDL" +static const ALIGN_ASSET(2) char gGiFishDL[] = dgGiFishDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_frog/object_gi_frog.h b/soh/assets/objects/object_gi_frog/object_gi_frog.h index 493957083..752d4aeb7 100644 --- a/soh/assets/objects/object_gi_frog/object_gi_frog.h +++ b/soh/assets/objects/object_gi_frog/object_gi_frog.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiFrogDL "__OTR__objects/object_gi_frog/gGiFrogDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFrogDL[] = dgGiFrogDL; -#else -static const char gGiFrogDL[] __attribute__((aligned (2))) = dgGiFrogDL; -#endif - -#define dgGiFrogEyesDL "__OTR__objects/object_gi_frog/gGiFrogEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFrogEyesDL[] = dgGiFrogEyesDL; -#else -static const char gGiFrogEyesDL[] __attribute__((aligned (2))) = dgGiFrogEyesDL; -#endif - -#define dobject_gi_frogTex_000000 "__OTR__objects/object_gi_frog/object_gi_frogTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_frogTex_000000[] = dobject_gi_frogTex_000000; -#else -static const char object_gi_frogTex_000000[] __attribute__((aligned (2))) = dobject_gi_frogTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiFrogDL "__OTR__objects/object_gi_frog/gGiFrogDL" +static const ALIGN_ASSET(2) char gGiFrogDL[] = dgGiFrogDL; + +#define dgGiFrogEyesDL "__OTR__objects/object_gi_frog/gGiFrogEyesDL" +static const ALIGN_ASSET(2) char gGiFrogEyesDL[] = dgGiFrogEyesDL; + +#define dobject_gi_frogTex_000000 "__OTR__objects/object_gi_frog/object_gi_frogTex_000000" +static const ALIGN_ASSET(2) char object_gi_frogTex_000000[] = dobject_gi_frogTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_gerudo/object_gi_gerudo.h b/soh/assets/objects/object_gi_gerudo/object_gi_gerudo.h index 3bb138163..258556943 100644 --- a/soh/assets/objects/object_gi_gerudo/object_gi_gerudo.h +++ b/soh/assets/objects/object_gi_gerudo/object_gi_gerudo.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiGerudoCardDL "__OTR__objects/object_gi_gerudo/gGiGerudoCardDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGerudoCardDL[] = dgGiGerudoCardDL; -#else -static const char gGiGerudoCardDL[] __attribute__((aligned (2))) = dgGiGerudoCardDL; -#endif - -#define dobject_gi_gerudoTex_000000 "__OTR__objects/object_gi_gerudo/object_gi_gerudoTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_gerudoTex_000000[] = dobject_gi_gerudoTex_000000; -#else -static const char object_gi_gerudoTex_000000[] __attribute__((aligned (2))) = dobject_gi_gerudoTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiGerudoCardDL "__OTR__objects/object_gi_gerudo/gGiGerudoCardDL" +static const ALIGN_ASSET(2) char gGiGerudoCardDL[] = dgGiGerudoCardDL; + +#define dobject_gi_gerudoTex_000000 "__OTR__objects/object_gi_gerudo/object_gi_gerudoTex_000000" +static const ALIGN_ASSET(2) char object_gi_gerudoTex_000000[] = dobject_gi_gerudoTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_gerudomask/object_gi_gerudomask.h b/soh/assets/objects/object_gi_gerudomask/object_gi_gerudomask.h index 4509560fc..363ad2577 100644 --- a/soh/assets/objects/object_gi_gerudomask/object_gi_gerudomask.h +++ b/soh/assets/objects/object_gi_gerudomask/object_gi_gerudomask.h @@ -1,44 +1,21 @@ #pragma once -#define dgGiGerudoMaskDL "__OTR__objects/object_gi_gerudomask/gGiGerudoMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGerudoMaskDL[] = dgGiGerudoMaskDL; -#else -static const char gGiGerudoMaskDL[] __attribute__((aligned (2))) = dgGiGerudoMaskDL; -#endif - -#define dobject_gi_gerudomaskTex_000208 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTex_000208" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_gerudomaskTex_000208[] = dobject_gi_gerudomaskTex_000208; -#else -static const char object_gi_gerudomaskTex_000208[] __attribute__((aligned (2))) = dobject_gi_gerudomaskTex_000208; -#endif - -#define dobject_gi_gerudomaskTLUT_000000 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTLUT_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_gerudomaskTLUT_000000[] = dobject_gi_gerudomaskTLUT_000000; -#else -static const char object_gi_gerudomaskTLUT_000000[] __attribute__((aligned (2))) = dobject_gi_gerudomaskTLUT_000000; -#endif - -#define dobject_gi_gerudomaskTex_000248 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTex_000248" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_gerudomaskTex_000248[] = dobject_gi_gerudomaskTex_000248; -#else -static const char object_gi_gerudomaskTex_000248[] __attribute__((aligned (2))) = dobject_gi_gerudomaskTex_000248; -#endif - -#define dobject_gi_gerudomaskTex_000348 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTex_000348" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_gerudomaskTex_000348[] = dobject_gi_gerudomaskTex_000348; -#else -static const char object_gi_gerudomaskTex_000348[] __attribute__((aligned (2))) = dobject_gi_gerudomaskTex_000348; -#endif - -#define dobject_gi_gerudomaskTex_000448 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTex_000448" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_gerudomaskTex_000448[] = dobject_gi_gerudomaskTex_000448; -#else -static const char object_gi_gerudomaskTex_000448[] __attribute__((aligned (2))) = dobject_gi_gerudomaskTex_000448; -#endif - +#include "align_asset_macro.h" + +#define dgGiGerudoMaskDL "__OTR__objects/object_gi_gerudomask/gGiGerudoMaskDL" +static const ALIGN_ASSET(2) char gGiGerudoMaskDL[] = dgGiGerudoMaskDL; + +#define dobject_gi_gerudomaskTex_000208 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTex_000208" +static const ALIGN_ASSET(2) char object_gi_gerudomaskTex_000208[] = dobject_gi_gerudomaskTex_000208; + +#define dobject_gi_gerudomaskTLUT_000000 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTLUT_000000" +static const ALIGN_ASSET(2) char object_gi_gerudomaskTLUT_000000[] = dobject_gi_gerudomaskTLUT_000000; + +#define dobject_gi_gerudomaskTex_000248 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTex_000248" +static const ALIGN_ASSET(2) char object_gi_gerudomaskTex_000248[] = dobject_gi_gerudomaskTex_000248; + +#define dobject_gi_gerudomaskTex_000348 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTex_000348" +static const ALIGN_ASSET(2) char object_gi_gerudomaskTex_000348[] = dobject_gi_gerudomaskTex_000348; + +#define dobject_gi_gerudomaskTex_000448 "__OTR__objects/object_gi_gerudomask/object_gi_gerudomaskTex_000448" +static const ALIGN_ASSET(2) char object_gi_gerudomaskTex_000448[] = dobject_gi_gerudomaskTex_000448; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_ghost/object_gi_ghost.h b/soh/assets/objects/object_gi_ghost/object_gi_ghost.h index 2379462e9..9b084c871 100644 --- a/soh/assets/objects/object_gi_ghost/object_gi_ghost.h +++ b/soh/assets/objects/object_gi_ghost/object_gi_ghost.h @@ -1,51 +1,24 @@ #pragma once -#define dgGiPoeColorDL "__OTR__objects/object_gi_ghost/gGiPoeColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPoeColorDL[] = dgGiPoeColorDL; -#else -static const char gGiPoeColorDL[] __attribute__((aligned (2))) = dgGiPoeColorDL; -#endif - -#define dgGiBigPoeColorDL "__OTR__objects/object_gi_ghost/gGiBigPoeColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBigPoeColorDL[] = dgGiBigPoeColorDL; -#else -static const char gGiBigPoeColorDL[] __attribute__((aligned (2))) = dgGiBigPoeColorDL; -#endif - -#define dgGiGhostContainerLidDL "__OTR__objects/object_gi_ghost/gGiGhostContainerLidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGhostContainerLidDL[] = dgGiGhostContainerLidDL; -#else -static const char gGiGhostContainerLidDL[] __attribute__((aligned (2))) = dgGiGhostContainerLidDL; -#endif - -#define dgGiGhostContainerGlassDL "__OTR__objects/object_gi_ghost/gGiGhostContainerGlassDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGhostContainerGlassDL[] = dgGiGhostContainerGlassDL; -#else -static const char gGiGhostContainerGlassDL[] __attribute__((aligned (2))) = dgGiGhostContainerGlassDL; -#endif - -#define dgGiGhostContainerContentsDL "__OTR__objects/object_gi_ghost/gGiGhostContainerContentsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGhostContainerContentsDL[] = dgGiGhostContainerContentsDL; -#else -static const char gGiGhostContainerContentsDL[] __attribute__((aligned (2))) = dgGiGhostContainerContentsDL; -#endif - -#define dobject_gi_ghostTex_000000 "__OTR__objects/object_gi_ghost/object_gi_ghostTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_ghostTex_000000[] = dobject_gi_ghostTex_000000; -#else -static const char object_gi_ghostTex_000000[] __attribute__((aligned (2))) = dobject_gi_ghostTex_000000; -#endif - -#define dobject_gi_ghostTex_000200 "__OTR__objects/object_gi_ghost/object_gi_ghostTex_000200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_ghostTex_000200[] = dobject_gi_ghostTex_000200; -#else -static const char object_gi_ghostTex_000200[] __attribute__((aligned (2))) = dobject_gi_ghostTex_000200; -#endif - +#include "align_asset_macro.h" + +#define dgGiPoeColorDL "__OTR__objects/object_gi_ghost/gGiPoeColorDL" +static const ALIGN_ASSET(2) char gGiPoeColorDL[] = dgGiPoeColorDL; + +#define dgGiBigPoeColorDL "__OTR__objects/object_gi_ghost/gGiBigPoeColorDL" +static const ALIGN_ASSET(2) char gGiBigPoeColorDL[] = dgGiBigPoeColorDL; + +#define dgGiGhostContainerLidDL "__OTR__objects/object_gi_ghost/gGiGhostContainerLidDL" +static const ALIGN_ASSET(2) char gGiGhostContainerLidDL[] = dgGiGhostContainerLidDL; + +#define dgGiGhostContainerGlassDL "__OTR__objects/object_gi_ghost/gGiGhostContainerGlassDL" +static const ALIGN_ASSET(2) char gGiGhostContainerGlassDL[] = dgGiGhostContainerGlassDL; + +#define dgGiGhostContainerContentsDL "__OTR__objects/object_gi_ghost/gGiGhostContainerContentsDL" +static const ALIGN_ASSET(2) char gGiGhostContainerContentsDL[] = dgGiGhostContainerContentsDL; + +#define dobject_gi_ghostTex_000000 "__OTR__objects/object_gi_ghost/object_gi_ghostTex_000000" +static const ALIGN_ASSET(2) char object_gi_ghostTex_000000[] = dobject_gi_ghostTex_000000; + +#define dobject_gi_ghostTex_000200 "__OTR__objects/object_gi_ghost/object_gi_ghostTex_000200" +static const ALIGN_ASSET(2) char object_gi_ghostTex_000200[] = dobject_gi_ghostTex_000200; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_glasses/object_gi_glasses.h b/soh/assets/objects/object_gi_glasses/object_gi_glasses.h index 012f6530e..6a01159b6 100644 --- a/soh/assets/objects/object_gi_glasses/object_gi_glasses.h +++ b/soh/assets/objects/object_gi_glasses/object_gi_glasses.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiLensDL "__OTR__objects/object_gi_glasses/gGiLensDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLensDL[] = dgGiLensDL; -#else -static const char gGiLensDL[] __attribute__((aligned (2))) = dgGiLensDL; -#endif - -#define dgGiLensGlassDL "__OTR__objects/object_gi_glasses/gGiLensGlassDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLensGlassDL[] = dgGiLensGlassDL; -#else -static const char gGiLensGlassDL[] __attribute__((aligned (2))) = dgGiLensGlassDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiLensDL "__OTR__objects/object_gi_glasses/gGiLensDL" +static const ALIGN_ASSET(2) char gGiLensDL[] = dgGiLensDL; + +#define dgGiLensGlassDL "__OTR__objects/object_gi_glasses/gGiLensGlassDL" +static const ALIGN_ASSET(2) char gGiLensGlassDL[] = dgGiLensGlassDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_gloves/object_gi_gloves.h b/soh/assets/objects/object_gi_gloves/object_gi_gloves.h index f73d8d092..b481b91e2 100644 --- a/soh/assets/objects/object_gi_gloves/object_gi_gloves.h +++ b/soh/assets/objects/object_gi_gloves/object_gi_gloves.h @@ -1,51 +1,24 @@ #pragma once -#define dgGiSilverGauntletsColorDL "__OTR__objects/object_gi_gloves/gGiSilverGauntletsColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSilverGauntletsColorDL[] = dgGiSilverGauntletsColorDL; -#else -static const char gGiSilverGauntletsColorDL[] __attribute__((aligned (2))) = dgGiSilverGauntletsColorDL; -#endif - -#define dgGiGoldenGauntletsColorDL "__OTR__objects/object_gi_gloves/gGiGoldenGauntletsColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoldenGauntletsColorDL[] = dgGiGoldenGauntletsColorDL; -#else -static const char gGiGoldenGauntletsColorDL[] __attribute__((aligned (2))) = dgGiGoldenGauntletsColorDL; -#endif - -#define dgGiSilverGauntletsPlateColorDL "__OTR__objects/object_gi_gloves/gGiSilverGauntletsPlateColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSilverGauntletsPlateColorDL[] = dgGiSilverGauntletsPlateColorDL; -#else -static const char gGiSilverGauntletsPlateColorDL[] __attribute__((aligned (2))) = dgGiSilverGauntletsPlateColorDL; -#endif - -#define dgGiGoldenGauntletsPlateColorDL "__OTR__objects/object_gi_gloves/gGiGoldenGauntletsPlateColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoldenGauntletsPlateColorDL[] = dgGiGoldenGauntletsPlateColorDL; -#else -static const char gGiGoldenGauntletsPlateColorDL[] __attribute__((aligned (2))) = dgGiGoldenGauntletsPlateColorDL; -#endif - -#define dgGiGauntletsDL "__OTR__objects/object_gi_gloves/gGiGauntletsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGauntletsDL[] = dgGiGauntletsDL; -#else -static const char gGiGauntletsDL[] __attribute__((aligned (2))) = dgGiGauntletsDL; -#endif - -#define dgGiGauntletsPlateDL "__OTR__objects/object_gi_gloves/gGiGauntletsPlateDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGauntletsPlateDL[] = dgGiGauntletsPlateDL; -#else -static const char gGiGauntletsPlateDL[] __attribute__((aligned (2))) = dgGiGauntletsPlateDL; -#endif - -#define dobject_gi_glovesTex_000000 "__OTR__objects/object_gi_gloves/object_gi_glovesTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_glovesTex_000000[] = dobject_gi_glovesTex_000000; -#else -static const char object_gi_glovesTex_000000[] __attribute__((aligned (2))) = dobject_gi_glovesTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiSilverGauntletsColorDL "__OTR__objects/object_gi_gloves/gGiSilverGauntletsColorDL" +static const ALIGN_ASSET(2) char gGiSilverGauntletsColorDL[] = dgGiSilverGauntletsColorDL; + +#define dgGiGoldenGauntletsColorDL "__OTR__objects/object_gi_gloves/gGiGoldenGauntletsColorDL" +static const ALIGN_ASSET(2) char gGiGoldenGauntletsColorDL[] = dgGiGoldenGauntletsColorDL; + +#define dgGiSilverGauntletsPlateColorDL "__OTR__objects/object_gi_gloves/gGiSilverGauntletsPlateColorDL" +static const ALIGN_ASSET(2) char gGiSilverGauntletsPlateColorDL[] = dgGiSilverGauntletsPlateColorDL; + +#define dgGiGoldenGauntletsPlateColorDL "__OTR__objects/object_gi_gloves/gGiGoldenGauntletsPlateColorDL" +static const ALIGN_ASSET(2) char gGiGoldenGauntletsPlateColorDL[] = dgGiGoldenGauntletsPlateColorDL; + +#define dgGiGauntletsDL "__OTR__objects/object_gi_gloves/gGiGauntletsDL" +static const ALIGN_ASSET(2) char gGiGauntletsDL[] = dgGiGauntletsDL; + +#define dgGiGauntletsPlateDL "__OTR__objects/object_gi_gloves/gGiGauntletsPlateDL" +static const ALIGN_ASSET(2) char gGiGauntletsPlateDL[] = dgGiGauntletsPlateDL; + +#define dobject_gi_glovesTex_000000 "__OTR__objects/object_gi_gloves/object_gi_glovesTex_000000" +static const ALIGN_ASSET(2) char object_gi_glovesTex_000000[] = dobject_gi_glovesTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_goddess/object_gi_goddess.h b/soh/assets/objects/object_gi_goddess/object_gi_goddess.h index fc934acc1..126d7f214 100644 --- a/soh/assets/objects/object_gi_goddess/object_gi_goddess.h +++ b/soh/assets/objects/object_gi_goddess/object_gi_goddess.h @@ -1,37 +1,18 @@ #pragma once -#define dgGiMagicSpellDiamondDL "__OTR__objects/object_gi_goddess/gGiMagicSpellDiamondDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMagicSpellDiamondDL[] = dgGiMagicSpellDiamondDL; -#else -static const char gGiMagicSpellDiamondDL[] __attribute__((aligned (2))) = dgGiMagicSpellDiamondDL; -#endif - -#define dgGiDinsFireColorDL "__OTR__objects/object_gi_goddess/gGiDinsFireColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiDinsFireColorDL[] = dgGiDinsFireColorDL; -#else -static const char gGiDinsFireColorDL[] __attribute__((aligned (2))) = dgGiDinsFireColorDL; -#endif - -#define dgGiFaroresWindColorDL "__OTR__objects/object_gi_goddess/gGiFaroresWindColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFaroresWindColorDL[] = dgGiFaroresWindColorDL; -#else -static const char gGiFaroresWindColorDL[] __attribute__((aligned (2))) = dgGiFaroresWindColorDL; -#endif - -#define dgGiNayrusLoveColorDL "__OTR__objects/object_gi_goddess/gGiNayrusLoveColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiNayrusLoveColorDL[] = dgGiNayrusLoveColorDL; -#else -static const char gGiNayrusLoveColorDL[] __attribute__((aligned (2))) = dgGiNayrusLoveColorDL; -#endif - -#define dgGiMagicSpellOrbDL "__OTR__objects/object_gi_goddess/gGiMagicSpellOrbDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMagicSpellOrbDL[] = dgGiMagicSpellOrbDL; -#else -static const char gGiMagicSpellOrbDL[] __attribute__((aligned (2))) = dgGiMagicSpellOrbDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiMagicSpellDiamondDL "__OTR__objects/object_gi_goddess/gGiMagicSpellDiamondDL" +static const ALIGN_ASSET(2) char gGiMagicSpellDiamondDL[] = dgGiMagicSpellDiamondDL; + +#define dgGiDinsFireColorDL "__OTR__objects/object_gi_goddess/gGiDinsFireColorDL" +static const ALIGN_ASSET(2) char gGiDinsFireColorDL[] = dgGiDinsFireColorDL; + +#define dgGiFaroresWindColorDL "__OTR__objects/object_gi_goddess/gGiFaroresWindColorDL" +static const ALIGN_ASSET(2) char gGiFaroresWindColorDL[] = dgGiFaroresWindColorDL; + +#define dgGiNayrusLoveColorDL "__OTR__objects/object_gi_goddess/gGiNayrusLoveColorDL" +static const ALIGN_ASSET(2) char gGiNayrusLoveColorDL[] = dgGiNayrusLoveColorDL; + +#define dgGiMagicSpellOrbDL "__OTR__objects/object_gi_goddess/gGiMagicSpellOrbDL" +static const ALIGN_ASSET(2) char gGiMagicSpellOrbDL[] = dgGiMagicSpellOrbDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_golonmask/object_gi_golonmask.h b/soh/assets/objects/object_gi_golonmask/object_gi_golonmask.h index 804c39001..b03715904 100644 --- a/soh/assets/objects/object_gi_golonmask/object_gi_golonmask.h +++ b/soh/assets/objects/object_gi_golonmask/object_gi_golonmask.h @@ -1,44 +1,21 @@ #pragma once -#define dgGiGoronMaskDL "__OTR__objects/object_gi_golonmask/gGiGoronMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoronMaskDL[] = dgGiGoronMaskDL; -#else -static const char gGiGoronMaskDL[] __attribute__((aligned (2))) = dgGiGoronMaskDL; -#endif - -#define dobject_gi_golonmaskTex_000208 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTex_000208" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_golonmaskTex_000208[] = dobject_gi_golonmaskTex_000208; -#else -static const char object_gi_golonmaskTex_000208[] __attribute__((aligned (2))) = dobject_gi_golonmaskTex_000208; -#endif - -#define dobject_gi_golonmaskTLUT_000000 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTLUT_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_golonmaskTLUT_000000[] = dobject_gi_golonmaskTLUT_000000; -#else -static const char object_gi_golonmaskTLUT_000000[] __attribute__((aligned (2))) = dobject_gi_golonmaskTLUT_000000; -#endif - -#define dobject_gi_golonmaskTex_000248 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTex_000248" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_golonmaskTex_000248[] = dobject_gi_golonmaskTex_000248; -#else -static const char object_gi_golonmaskTex_000248[] __attribute__((aligned (2))) = dobject_gi_golonmaskTex_000248; -#endif - -#define dobject_gi_golonmaskTex_000348 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTex_000348" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_golonmaskTex_000348[] = dobject_gi_golonmaskTex_000348; -#else -static const char object_gi_golonmaskTex_000348[] __attribute__((aligned (2))) = dobject_gi_golonmaskTex_000348; -#endif - -#define dobject_gi_golonmaskTex_000748 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTex_000748" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_golonmaskTex_000748[] = dobject_gi_golonmaskTex_000748; -#else -static const char object_gi_golonmaskTex_000748[] __attribute__((aligned (2))) = dobject_gi_golonmaskTex_000748; -#endif - +#include "align_asset_macro.h" + +#define dgGiGoronMaskDL "__OTR__objects/object_gi_golonmask/gGiGoronMaskDL" +static const ALIGN_ASSET(2) char gGiGoronMaskDL[] = dgGiGoronMaskDL; + +#define dobject_gi_golonmaskTex_000208 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTex_000208" +static const ALIGN_ASSET(2) char object_gi_golonmaskTex_000208[] = dobject_gi_golonmaskTex_000208; + +#define dobject_gi_golonmaskTLUT_000000 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTLUT_000000" +static const ALIGN_ASSET(2) char object_gi_golonmaskTLUT_000000[] = dobject_gi_golonmaskTLUT_000000; + +#define dobject_gi_golonmaskTex_000248 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTex_000248" +static const ALIGN_ASSET(2) char object_gi_golonmaskTex_000248[] = dobject_gi_golonmaskTex_000248; + +#define dobject_gi_golonmaskTex_000348 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTex_000348" +static const ALIGN_ASSET(2) char object_gi_golonmaskTex_000348[] = dobject_gi_golonmaskTex_000348; + +#define dobject_gi_golonmaskTex_000748 "__OTR__objects/object_gi_golonmask/object_gi_golonmaskTex_000748" +static const ALIGN_ASSET(2) char object_gi_golonmaskTex_000748[] = dobject_gi_golonmaskTex_000748; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_grass/object_gi_grass.h b/soh/assets/objects/object_gi_grass/object_gi_grass.h index e615d444b..c9b666002 100644 --- a/soh/assets/objects/object_gi_grass/object_gi_grass.h +++ b/soh/assets/objects/object_gi_grass/object_gi_grass.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiGrassDL "__OTR__objects/object_gi_grass/gGiGrassDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGrassDL[] = dgGiGrassDL; -#else -static const char gGiGrassDL[] __attribute__((aligned (2))) = dgGiGrassDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiGrassDL "__OTR__objects/object_gi_grass/gGiGrassDL" +static const ALIGN_ASSET(2) char gGiGrassDL[] = dgGiGrassDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_hammer/object_gi_hammer.h b/soh/assets/objects/object_gi_hammer/object_gi_hammer.h index 05f852310..07f4090f0 100644 --- a/soh/assets/objects/object_gi_hammer/object_gi_hammer.h +++ b/soh/assets/objects/object_gi_hammer/object_gi_hammer.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiHammerDL "__OTR__objects/object_gi_hammer/gGiHammerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiHammerDL[] = dgGiHammerDL; -#else -static const char gGiHammerDL[] __attribute__((aligned (2))) = dgGiHammerDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiHammerDL "__OTR__objects/object_gi_hammer/gGiHammerDL" +static const ALIGN_ASSET(2) char gGiHammerDL[] = dgGiHammerDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_heart/object_gi_heart.h b/soh/assets/objects/object_gi_heart/object_gi_heart.h index 9319962bf..dbbc31894 100644 --- a/soh/assets/objects/object_gi_heart/object_gi_heart.h +++ b/soh/assets/objects/object_gi_heart/object_gi_heart.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiRecoveryHeartDL "__OTR__objects/object_gi_heart/gGiRecoveryHeartDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRecoveryHeartDL[] = dgGiRecoveryHeartDL; -#else -static const char gGiRecoveryHeartDL[] __attribute__((aligned (2))) = dgGiRecoveryHeartDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiRecoveryHeartDL "__OTR__objects/object_gi_heart/gGiRecoveryHeartDL" +static const ALIGN_ASSET(2) char gGiRecoveryHeartDL[] = dgGiRecoveryHeartDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_hearts/object_gi_hearts.h b/soh/assets/objects/object_gi_hearts/object_gi_hearts.h index b4020955e..e0afa9977 100644 --- a/soh/assets/objects/object_gi_hearts/object_gi_hearts.h +++ b/soh/assets/objects/object_gi_hearts/object_gi_hearts.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiHeartBorderDL "__OTR__objects/object_gi_hearts/gGiHeartBorderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiHeartBorderDL[] = dgGiHeartBorderDL; -#else -static const char gGiHeartBorderDL[] __attribute__((aligned (2))) = dgGiHeartBorderDL; -#endif - -#define dgGiHeartContainerDL "__OTR__objects/object_gi_hearts/gGiHeartContainerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiHeartContainerDL[] = dgGiHeartContainerDL; -#else -static const char gGiHeartContainerDL[] __attribute__((aligned (2))) = dgGiHeartContainerDL; -#endif - -#define dgGiHeartPieceDL "__OTR__objects/object_gi_hearts/gGiHeartPieceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiHeartPieceDL[] = dgGiHeartPieceDL; -#else -static const char gGiHeartPieceDL[] __attribute__((aligned (2))) = dgGiHeartPieceDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiHeartBorderDL "__OTR__objects/object_gi_hearts/gGiHeartBorderDL" +static const ALIGN_ASSET(2) char gGiHeartBorderDL[] = dgGiHeartBorderDL; + +#define dgGiHeartContainerDL "__OTR__objects/object_gi_hearts/gGiHeartContainerDL" +static const ALIGN_ASSET(2) char gGiHeartContainerDL[] = dgGiHeartContainerDL; + +#define dgGiHeartPieceDL "__OTR__objects/object_gi_hearts/gGiHeartPieceDL" +static const ALIGN_ASSET(2) char gGiHeartPieceDL[] = dgGiHeartPieceDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_hookshot/object_gi_hookshot.h b/soh/assets/objects/object_gi_hookshot/object_gi_hookshot.h index 11d4dddab..5f791fbf2 100644 --- a/soh/assets/objects/object_gi_hookshot/object_gi_hookshot.h +++ b/soh/assets/objects/object_gi_hookshot/object_gi_hookshot.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiHookshotDL "__OTR__objects/object_gi_hookshot/gGiHookshotDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiHookshotDL[] = dgGiHookshotDL; -#else -static const char gGiHookshotDL[] __attribute__((aligned (2))) = dgGiHookshotDL; -#endif - -#define dgGiLongshotDL "__OTR__objects/object_gi_hookshot/gGiLongshotDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLongshotDL[] = dgGiLongshotDL; -#else -static const char gGiLongshotDL[] __attribute__((aligned (2))) = dgGiLongshotDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiHookshotDL "__OTR__objects/object_gi_hookshot/gGiHookshotDL" +static const ALIGN_ASSET(2) char gGiHookshotDL[] = dgGiHookshotDL; + +#define dgGiLongshotDL "__OTR__objects/object_gi_hookshot/gGiLongshotDL" +static const ALIGN_ASSET(2) char gGiLongshotDL[] = dgGiLongshotDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_hoverboots/object_gi_hoverboots.h b/soh/assets/objects/object_gi_hoverboots/object_gi_hoverboots.h index d702c58b8..5f3b25fbb 100644 --- a/soh/assets/objects/object_gi_hoverboots/object_gi_hoverboots.h +++ b/soh/assets/objects/object_gi_hoverboots/object_gi_hoverboots.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiHoverBootsDL "__OTR__objects/object_gi_hoverboots/gGiHoverBootsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiHoverBootsDL[] = dgGiHoverBootsDL; -#else -static const char gGiHoverBootsDL[] __attribute__((aligned (2))) = dgGiHoverBootsDL; -#endif - -#define dobject_gi_hoverbootsTex_000300 "__OTR__objects/object_gi_hoverboots/object_gi_hoverbootsTex_000300" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_hoverbootsTex_000300[] = dobject_gi_hoverbootsTex_000300; -#else -static const char object_gi_hoverbootsTex_000300[] __attribute__((aligned (2))) = dobject_gi_hoverbootsTex_000300; -#endif - -#define dobject_gi_hoverbootsTex_000000 "__OTR__objects/object_gi_hoverboots/object_gi_hoverbootsTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_hoverbootsTex_000000[] = dobject_gi_hoverbootsTex_000000; -#else -static const char object_gi_hoverbootsTex_000000[] __attribute__((aligned (2))) = dobject_gi_hoverbootsTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiHoverBootsDL "__OTR__objects/object_gi_hoverboots/gGiHoverBootsDL" +static const ALIGN_ASSET(2) char gGiHoverBootsDL[] = dgGiHoverBootsDL; + +#define dobject_gi_hoverbootsTex_000300 "__OTR__objects/object_gi_hoverboots/object_gi_hoverbootsTex_000300" +static const ALIGN_ASSET(2) char object_gi_hoverbootsTex_000300[] = dobject_gi_hoverbootsTex_000300; + +#define dobject_gi_hoverbootsTex_000000 "__OTR__objects/object_gi_hoverboots/object_gi_hoverbootsTex_000000" +static const ALIGN_ASSET(2) char object_gi_hoverbootsTex_000000[] = dobject_gi_hoverbootsTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_insect/object_gi_insect.h b/soh/assets/objects/object_gi_insect/object_gi_insect.h index 9762d7fa2..6392a366a 100644 --- a/soh/assets/objects/object_gi_insect/object_gi_insect.h +++ b/soh/assets/objects/object_gi_insect/object_gi_insect.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiBugsContainerDL "__OTR__objects/object_gi_insect/gGiBugsContainerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBugsContainerDL[] = dgGiBugsContainerDL; -#else -static const char gGiBugsContainerDL[] __attribute__((aligned (2))) = dgGiBugsContainerDL; -#endif - -#define dgGiBugsGlassDL "__OTR__objects/object_gi_insect/gGiBugsGlassDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBugsGlassDL[] = dgGiBugsGlassDL; -#else -static const char gGiBugsGlassDL[] __attribute__((aligned (2))) = dgGiBugsGlassDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBugsContainerDL "__OTR__objects/object_gi_insect/gGiBugsContainerDL" +static const ALIGN_ASSET(2) char gGiBugsContainerDL[] = dgGiBugsContainerDL; + +#define dgGiBugsGlassDL "__OTR__objects/object_gi_insect/gGiBugsGlassDL" +static const ALIGN_ASSET(2) char gGiBugsGlassDL[] = dgGiBugsGlassDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_jewel/object_gi_jewel.h b/soh/assets/objects/object_gi_jewel/object_gi_jewel.h index 93d2cf716..100dac543 100644 --- a/soh/assets/objects/object_gi_jewel/object_gi_jewel.h +++ b/soh/assets/objects/object_gi_jewel/object_gi_jewel.h @@ -1,65 +1,30 @@ #pragma once -#define dgGiKokiriEmeraldScintillationTex "__OTR__objects/object_gi_jewel/gGiKokiriEmeraldScintillationTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiKokiriEmeraldScintillationTex[] = dgGiKokiriEmeraldScintillationTex; -#else -static const char gGiKokiriEmeraldScintillationTex[] __attribute__((aligned (2))) = dgGiKokiriEmeraldScintillationTex; -#endif - -#define dgGiKokiriEmeraldSettingDL "__OTR__objects/object_gi_jewel/gGiKokiriEmeraldSettingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiKokiriEmeraldSettingDL[] = dgGiKokiriEmeraldSettingDL; -#else -static const char gGiKokiriEmeraldSettingDL[] __attribute__((aligned (2))) = dgGiKokiriEmeraldSettingDL; -#endif - -#define dgGiKokiriEmeraldGemDL "__OTR__objects/object_gi_jewel/gGiKokiriEmeraldGemDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiKokiriEmeraldGemDL[] = dgGiKokiriEmeraldGemDL; -#else -static const char gGiKokiriEmeraldGemDL[] __attribute__((aligned (2))) = dgGiKokiriEmeraldGemDL; -#endif - -#define dgGiGoronRubyScintillationTex "__OTR__objects/object_gi_jewel/gGiGoronRubyScintillationTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoronRubyScintillationTex[] = dgGiGoronRubyScintillationTex; -#else -static const char gGiGoronRubyScintillationTex[] __attribute__((aligned (2))) = dgGiGoronRubyScintillationTex; -#endif - -#define dgGiGoronRubySettingDL "__OTR__objects/object_gi_jewel/gGiGoronRubySettingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoronRubySettingDL[] = dgGiGoronRubySettingDL; -#else -static const char gGiGoronRubySettingDL[] __attribute__((aligned (2))) = dgGiGoronRubySettingDL; -#endif - -#define dgGiGoronRubyGemDL "__OTR__objects/object_gi_jewel/gGiGoronRubyGemDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoronRubyGemDL[] = dgGiGoronRubyGemDL; -#else -static const char gGiGoronRubyGemDL[] __attribute__((aligned (2))) = dgGiGoronRubyGemDL; -#endif - -#define dgGiZoraSapphireScintillationTex "__OTR__objects/object_gi_jewel/gGiZoraSapphireScintillationTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiZoraSapphireScintillationTex[] = dgGiZoraSapphireScintillationTex; -#else -static const char gGiZoraSapphireScintillationTex[] __attribute__((aligned (2))) = dgGiZoraSapphireScintillationTex; -#endif - -#define dgGiZoraSapphireSettingDL "__OTR__objects/object_gi_jewel/gGiZoraSapphireSettingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiZoraSapphireSettingDL[] = dgGiZoraSapphireSettingDL; -#else -static const char gGiZoraSapphireSettingDL[] __attribute__((aligned (2))) = dgGiZoraSapphireSettingDL; -#endif - -#define dgGiZoraSapphireGemDL "__OTR__objects/object_gi_jewel/gGiZoraSapphireGemDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiZoraSapphireGemDL[] = dgGiZoraSapphireGemDL; -#else -static const char gGiZoraSapphireGemDL[] __attribute__((aligned (2))) = dgGiZoraSapphireGemDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiKokiriEmeraldScintillationTex "__OTR__objects/object_gi_jewel/gGiKokiriEmeraldScintillationTex" +static const ALIGN_ASSET(2) char gGiKokiriEmeraldScintillationTex[] = dgGiKokiriEmeraldScintillationTex; + +#define dgGiKokiriEmeraldSettingDL "__OTR__objects/object_gi_jewel/gGiKokiriEmeraldSettingDL" +static const ALIGN_ASSET(2) char gGiKokiriEmeraldSettingDL[] = dgGiKokiriEmeraldSettingDL; + +#define dgGiKokiriEmeraldGemDL "__OTR__objects/object_gi_jewel/gGiKokiriEmeraldGemDL" +static const ALIGN_ASSET(2) char gGiKokiriEmeraldGemDL[] = dgGiKokiriEmeraldGemDL; + +#define dgGiGoronRubyScintillationTex "__OTR__objects/object_gi_jewel/gGiGoronRubyScintillationTex" +static const ALIGN_ASSET(2) char gGiGoronRubyScintillationTex[] = dgGiGoronRubyScintillationTex; + +#define dgGiGoronRubySettingDL "__OTR__objects/object_gi_jewel/gGiGoronRubySettingDL" +static const ALIGN_ASSET(2) char gGiGoronRubySettingDL[] = dgGiGoronRubySettingDL; + +#define dgGiGoronRubyGemDL "__OTR__objects/object_gi_jewel/gGiGoronRubyGemDL" +static const ALIGN_ASSET(2) char gGiGoronRubyGemDL[] = dgGiGoronRubyGemDL; + +#define dgGiZoraSapphireScintillationTex "__OTR__objects/object_gi_jewel/gGiZoraSapphireScintillationTex" +static const ALIGN_ASSET(2) char gGiZoraSapphireScintillationTex[] = dgGiZoraSapphireScintillationTex; + +#define dgGiZoraSapphireSettingDL "__OTR__objects/object_gi_jewel/gGiZoraSapphireSettingDL" +static const ALIGN_ASSET(2) char gGiZoraSapphireSettingDL[] = dgGiZoraSapphireSettingDL; + +#define dgGiZoraSapphireGemDL "__OTR__objects/object_gi_jewel/gGiZoraSapphireGemDL" +static const ALIGN_ASSET(2) char gGiZoraSapphireGemDL[] = dgGiZoraSapphireGemDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_key/object_gi_key.h b/soh/assets/objects/object_gi_key/object_gi_key.h index 97d66493f..a8b82ffa8 100644 --- a/soh/assets/objects/object_gi_key/object_gi_key.h +++ b/soh/assets/objects/object_gi_key/object_gi_key.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiSmallKeyDL "__OTR__objects/object_gi_key/gGiSmallKeyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSmallKeyDL[] = dgGiSmallKeyDL; -#else -static const char gGiSmallKeyDL[] __attribute__((aligned (2))) = dgGiSmallKeyDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiSmallKeyDL "__OTR__objects/object_gi_key/gGiSmallKeyDL" +static const ALIGN_ASSET(2) char gGiSmallKeyDL[] = dgGiSmallKeyDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_ki_tan_mask/object_gi_ki_tan_mask.h b/soh/assets/objects/object_gi_ki_tan_mask/object_gi_ki_tan_mask.h index a9ce34d04..92e75b104 100644 --- a/soh/assets/objects/object_gi_ki_tan_mask/object_gi_ki_tan_mask.h +++ b/soh/assets/objects/object_gi_ki_tan_mask/object_gi_ki_tan_mask.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiKeatonMaskDL "__OTR__objects/object_gi_ki_tan_mask/gGiKeatonMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiKeatonMaskDL[] = dgGiKeatonMaskDL; -#else -static const char gGiKeatonMaskDL[] __attribute__((aligned (2))) = dgGiKeatonMaskDL; -#endif - -#define dgGiKeatonMaskEyesDL "__OTR__objects/object_gi_ki_tan_mask/gGiKeatonMaskEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiKeatonMaskEyesDL[] = dgGiKeatonMaskEyesDL; -#else -static const char gGiKeatonMaskEyesDL[] __attribute__((aligned (2))) = dgGiKeatonMaskEyesDL; -#endif - -#define dobject_gi_ki_tan_maskTex_000000 "__OTR__objects/object_gi_ki_tan_mask/object_gi_ki_tan_maskTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_ki_tan_maskTex_000000[] = dobject_gi_ki_tan_maskTex_000000; -#else -static const char object_gi_ki_tan_maskTex_000000[] __attribute__((aligned (2))) = dobject_gi_ki_tan_maskTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiKeatonMaskDL "__OTR__objects/object_gi_ki_tan_mask/gGiKeatonMaskDL" +static const ALIGN_ASSET(2) char gGiKeatonMaskDL[] = dgGiKeatonMaskDL; + +#define dgGiKeatonMaskEyesDL "__OTR__objects/object_gi_ki_tan_mask/gGiKeatonMaskEyesDL" +static const ALIGN_ASSET(2) char gGiKeatonMaskEyesDL[] = dgGiKeatonMaskEyesDL; + +#define dobject_gi_ki_tan_maskTex_000000 "__OTR__objects/object_gi_ki_tan_mask/object_gi_ki_tan_maskTex_000000" +static const ALIGN_ASSET(2) char object_gi_ki_tan_maskTex_000000[] = dobject_gi_ki_tan_maskTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_letter/object_gi_letter.h b/soh/assets/objects/object_gi_letter/object_gi_letter.h index e2cb669f0..af3de1bdd 100644 --- a/soh/assets/objects/object_gi_letter/object_gi_letter.h +++ b/soh/assets/objects/object_gi_letter/object_gi_letter.h @@ -1,30 +1,15 @@ #pragma once -#define dgGiLetterDL "__OTR__objects/object_gi_letter/gGiLetterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLetterDL[] = dgGiLetterDL; -#else -static const char gGiLetterDL[] __attribute__((aligned (2))) = dgGiLetterDL; -#endif - -#define dgGiLetterWritingDL "__OTR__objects/object_gi_letter/gGiLetterWritingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLetterWritingDL[] = dgGiLetterWritingDL; -#else -static const char gGiLetterWritingDL[] __attribute__((aligned (2))) = dgGiLetterWritingDL; -#endif - -#define dobject_gi_letterTex_000000 "__OTR__objects/object_gi_letter/object_gi_letterTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_letterTex_000000[] = dobject_gi_letterTex_000000; -#else -static const char object_gi_letterTex_000000[] __attribute__((aligned (2))) = dobject_gi_letterTex_000000; -#endif - -#define dobject_gi_letterTex_000600 "__OTR__objects/object_gi_letter/object_gi_letterTex_000600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_letterTex_000600[] = dobject_gi_letterTex_000600; -#else -static const char object_gi_letterTex_000600[] __attribute__((aligned (2))) = dobject_gi_letterTex_000600; -#endif - +#include "align_asset_macro.h" + +#define dgGiLetterDL "__OTR__objects/object_gi_letter/gGiLetterDL" +static const ALIGN_ASSET(2) char gGiLetterDL[] = dgGiLetterDL; + +#define dgGiLetterWritingDL "__OTR__objects/object_gi_letter/gGiLetterWritingDL" +static const ALIGN_ASSET(2) char gGiLetterWritingDL[] = dgGiLetterWritingDL; + +#define dobject_gi_letterTex_000000 "__OTR__objects/object_gi_letter/object_gi_letterTex_000000" +static const ALIGN_ASSET(2) char object_gi_letterTex_000000[] = dobject_gi_letterTex_000000; + +#define dobject_gi_letterTex_000600 "__OTR__objects/object_gi_letter/object_gi_letterTex_000600" +static const ALIGN_ASSET(2) char object_gi_letterTex_000600[] = dobject_gi_letterTex_000600; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_liquid/object_gi_liquid.h b/soh/assets/objects/object_gi_liquid/object_gi_liquid.h index 4615ee18b..d2747b406 100644 --- a/soh/assets/objects/object_gi_liquid/object_gi_liquid.h +++ b/soh/assets/objects/object_gi_liquid/object_gi_liquid.h @@ -1,107 +1,48 @@ #pragma once -#define dgGiGreenPotColorDL "__OTR__objects/object_gi_liquid/gGiGreenPotColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGreenPotColorDL[] = dgGiGreenPotColorDL; -#else -static const char gGiGreenPotColorDL[] __attribute__((aligned (2))) = dgGiGreenPotColorDL; -#endif - -#define dgGiRedPotColorDL "__OTR__objects/object_gi_liquid/gGiRedPotColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRedPotColorDL[] = dgGiRedPotColorDL; -#else -static const char gGiRedPotColorDL[] __attribute__((aligned (2))) = dgGiRedPotColorDL; -#endif - -#define dgGiBluePotColorDL "__OTR__objects/object_gi_liquid/gGiBluePotColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBluePotColorDL[] = dgGiBluePotColorDL; -#else -static const char gGiBluePotColorDL[] __attribute__((aligned (2))) = dgGiBluePotColorDL; -#endif - -#define dgGiGreenLiquidColorDL "__OTR__objects/object_gi_liquid/gGiGreenLiquidColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGreenLiquidColorDL[] = dgGiGreenLiquidColorDL; -#else -static const char gGiGreenLiquidColorDL[] __attribute__((aligned (2))) = dgGiGreenLiquidColorDL; -#endif - -#define dgGiRedLiquidColorDL "__OTR__objects/object_gi_liquid/gGiRedLiquidColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRedLiquidColorDL[] = dgGiRedLiquidColorDL; -#else -static const char gGiRedLiquidColorDL[] __attribute__((aligned (2))) = dgGiRedLiquidColorDL; -#endif - -#define dgGiBlueLiquidColorDL "__OTR__objects/object_gi_liquid/gGiBlueLiquidColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBlueLiquidColorDL[] = dgGiBlueLiquidColorDL; -#else -static const char gGiBlueLiquidColorDL[] __attribute__((aligned (2))) = dgGiBlueLiquidColorDL; -#endif - -#define dgGiGreenPatternColorDL "__OTR__objects/object_gi_liquid/gGiGreenPatternColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGreenPatternColorDL[] = dgGiGreenPatternColorDL; -#else -static const char gGiGreenPatternColorDL[] __attribute__((aligned (2))) = dgGiGreenPatternColorDL; -#endif - -#define dgGiRedPatternColorDL "__OTR__objects/object_gi_liquid/gGiRedPatternColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRedPatternColorDL[] = dgGiRedPatternColorDL; -#else -static const char gGiRedPatternColorDL[] __attribute__((aligned (2))) = dgGiRedPatternColorDL; -#endif - -#define dgGiBluePatternColorDL "__OTR__objects/object_gi_liquid/gGiBluePatternColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBluePatternColorDL[] = dgGiBluePatternColorDL; -#else -static const char gGiBluePatternColorDL[] __attribute__((aligned (2))) = dgGiBluePatternColorDL; -#endif - -#define dgGiPotionPotDL "__OTR__objects/object_gi_liquid/gGiPotionPotDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPotionPotDL[] = dgGiPotionPotDL; -#else -static const char gGiPotionPotDL[] __attribute__((aligned (2))) = dgGiPotionPotDL; -#endif - -#define dgGiPotionLiquidDL "__OTR__objects/object_gi_liquid/gGiPotionLiquidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPotionLiquidDL[] = dgGiPotionLiquidDL; -#else -static const char gGiPotionLiquidDL[] __attribute__((aligned (2))) = dgGiPotionLiquidDL; -#endif - -#define dgGiPotionPatternDL "__OTR__objects/object_gi_liquid/gGiPotionPatternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPotionPatternDL[] = dgGiPotionPatternDL; -#else -static const char gGiPotionPatternDL[] __attribute__((aligned (2))) = dgGiPotionPatternDL; -#endif - -#define dobject_gi_liquidTex_000000 "__OTR__objects/object_gi_liquid/object_gi_liquidTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_liquidTex_000000[] = dobject_gi_liquidTex_000000; -#else -static const char object_gi_liquidTex_000000[] __attribute__((aligned (2))) = dobject_gi_liquidTex_000000; -#endif - -#define dobject_gi_liquidTex_000200 "__OTR__objects/object_gi_liquid/object_gi_liquidTex_000200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_liquidTex_000200[] = dobject_gi_liquidTex_000200; -#else -static const char object_gi_liquidTex_000200[] __attribute__((aligned (2))) = dobject_gi_liquidTex_000200; -#endif - -#define dobject_gi_liquidTex_000400 "__OTR__objects/object_gi_liquid/object_gi_liquidTex_000400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_liquidTex_000400[] = dobject_gi_liquidTex_000400; -#else -static const char object_gi_liquidTex_000400[] __attribute__((aligned (2))) = dobject_gi_liquidTex_000400; -#endif - +#include "align_asset_macro.h" + +#define dgGiGreenPotColorDL "__OTR__objects/object_gi_liquid/gGiGreenPotColorDL" +static const ALIGN_ASSET(2) char gGiGreenPotColorDL[] = dgGiGreenPotColorDL; + +#define dgGiRedPotColorDL "__OTR__objects/object_gi_liquid/gGiRedPotColorDL" +static const ALIGN_ASSET(2) char gGiRedPotColorDL[] = dgGiRedPotColorDL; + +#define dgGiBluePotColorDL "__OTR__objects/object_gi_liquid/gGiBluePotColorDL" +static const ALIGN_ASSET(2) char gGiBluePotColorDL[] = dgGiBluePotColorDL; + +#define dgGiGreenLiquidColorDL "__OTR__objects/object_gi_liquid/gGiGreenLiquidColorDL" +static const ALIGN_ASSET(2) char gGiGreenLiquidColorDL[] = dgGiGreenLiquidColorDL; + +#define dgGiRedLiquidColorDL "__OTR__objects/object_gi_liquid/gGiRedLiquidColorDL" +static const ALIGN_ASSET(2) char gGiRedLiquidColorDL[] = dgGiRedLiquidColorDL; + +#define dgGiBlueLiquidColorDL "__OTR__objects/object_gi_liquid/gGiBlueLiquidColorDL" +static const ALIGN_ASSET(2) char gGiBlueLiquidColorDL[] = dgGiBlueLiquidColorDL; + +#define dgGiGreenPatternColorDL "__OTR__objects/object_gi_liquid/gGiGreenPatternColorDL" +static const ALIGN_ASSET(2) char gGiGreenPatternColorDL[] = dgGiGreenPatternColorDL; + +#define dgGiRedPatternColorDL "__OTR__objects/object_gi_liquid/gGiRedPatternColorDL" +static const ALIGN_ASSET(2) char gGiRedPatternColorDL[] = dgGiRedPatternColorDL; + +#define dgGiBluePatternColorDL "__OTR__objects/object_gi_liquid/gGiBluePatternColorDL" +static const ALIGN_ASSET(2) char gGiBluePatternColorDL[] = dgGiBluePatternColorDL; + +#define dgGiPotionPotDL "__OTR__objects/object_gi_liquid/gGiPotionPotDL" +static const ALIGN_ASSET(2) char gGiPotionPotDL[] = dgGiPotionPotDL; + +#define dgGiPotionLiquidDL "__OTR__objects/object_gi_liquid/gGiPotionLiquidDL" +static const ALIGN_ASSET(2) char gGiPotionLiquidDL[] = dgGiPotionLiquidDL; + +#define dgGiPotionPatternDL "__OTR__objects/object_gi_liquid/gGiPotionPatternDL" +static const ALIGN_ASSET(2) char gGiPotionPatternDL[] = dgGiPotionPatternDL; + +#define dobject_gi_liquidTex_000000 "__OTR__objects/object_gi_liquid/object_gi_liquidTex_000000" +static const ALIGN_ASSET(2) char object_gi_liquidTex_000000[] = dobject_gi_liquidTex_000000; + +#define dobject_gi_liquidTex_000200 "__OTR__objects/object_gi_liquid/object_gi_liquidTex_000200" +static const ALIGN_ASSET(2) char object_gi_liquidTex_000200[] = dobject_gi_liquidTex_000200; + +#define dobject_gi_liquidTex_000400 "__OTR__objects/object_gi_liquid/object_gi_liquidTex_000400" +static const ALIGN_ASSET(2) char object_gi_liquidTex_000400[] = dobject_gi_liquidTex_000400; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_longsword/object_gi_longsword.h b/soh/assets/objects/object_gi_longsword/object_gi_longsword.h index 97178ef73..754dad9d7 100644 --- a/soh/assets/objects/object_gi_longsword/object_gi_longsword.h +++ b/soh/assets/objects/object_gi_longsword/object_gi_longsword.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiBiggoronSwordDL "__OTR__objects/object_gi_longsword/gGiBiggoronSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBiggoronSwordDL[] = dgGiBiggoronSwordDL; -#else -static const char gGiBiggoronSwordDL[] __attribute__((aligned (2))) = dgGiBiggoronSwordDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiBiggoronSwordDL "__OTR__objects/object_gi_longsword/gGiBiggoronSwordDL" +static const ALIGN_ASSET(2) char gGiBiggoronSwordDL[] = dgGiBiggoronSwordDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_m_arrow/object_gi_m_arrow.h b/soh/assets/objects/object_gi_m_arrow/object_gi_m_arrow.h index 516786c67..6ee91f5e7 100644 --- a/soh/assets/objects/object_gi_m_arrow/object_gi_m_arrow.h +++ b/soh/assets/objects/object_gi_m_arrow/object_gi_m_arrow.h @@ -1,37 +1,18 @@ #pragma once -#define dgGiMagicArrowDL "__OTR__objects/object_gi_m_arrow/gGiMagicArrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMagicArrowDL[] = dgGiMagicArrowDL; -#else -static const char gGiMagicArrowDL[] __attribute__((aligned (2))) = dgGiMagicArrowDL; -#endif - -#define dgGiFireArrowColorDL "__OTR__objects/object_gi_m_arrow/gGiFireArrowColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFireArrowColorDL[] = dgGiFireArrowColorDL; -#else -static const char gGiFireArrowColorDL[] __attribute__((aligned (2))) = dgGiFireArrowColorDL; -#endif - -#define dgGiIceArrowColorDL "__OTR__objects/object_gi_m_arrow/gGiIceArrowColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiIceArrowColorDL[] = dgGiIceArrowColorDL; -#else -static const char gGiIceArrowColorDL[] __attribute__((aligned (2))) = dgGiIceArrowColorDL; -#endif - -#define dgGiLightArrowColorDL "__OTR__objects/object_gi_m_arrow/gGiLightArrowColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLightArrowColorDL[] = dgGiLightArrowColorDL; -#else -static const char gGiLightArrowColorDL[] __attribute__((aligned (2))) = dgGiLightArrowColorDL; -#endif - -#define dgGiArrowMagicDL "__OTR__objects/object_gi_m_arrow/gGiArrowMagicDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiArrowMagicDL[] = dgGiArrowMagicDL; -#else -static const char gGiArrowMagicDL[] __attribute__((aligned (2))) = dgGiArrowMagicDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiMagicArrowDL "__OTR__objects/object_gi_m_arrow/gGiMagicArrowDL" +static const ALIGN_ASSET(2) char gGiMagicArrowDL[] = dgGiMagicArrowDL; + +#define dgGiFireArrowColorDL "__OTR__objects/object_gi_m_arrow/gGiFireArrowColorDL" +static const ALIGN_ASSET(2) char gGiFireArrowColorDL[] = dgGiFireArrowColorDL; + +#define dgGiIceArrowColorDL "__OTR__objects/object_gi_m_arrow/gGiIceArrowColorDL" +static const ALIGN_ASSET(2) char gGiIceArrowColorDL[] = dgGiIceArrowColorDL; + +#define dgGiLightArrowColorDL "__OTR__objects/object_gi_m_arrow/gGiLightArrowColorDL" +static const ALIGN_ASSET(2) char gGiLightArrowColorDL[] = dgGiLightArrowColorDL; + +#define dgGiArrowMagicDL "__OTR__objects/object_gi_m_arrow/gGiArrowMagicDL" +static const ALIGN_ASSET(2) char gGiArrowMagicDL[] = dgGiArrowMagicDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_magicpot/object_gi_magicpot.h b/soh/assets/objects/object_gi_magicpot/object_gi_magicpot.h index 9a64f884d..8323ff862 100644 --- a/soh/assets/objects/object_gi_magicpot/object_gi_magicpot.h +++ b/soh/assets/objects/object_gi_magicpot/object_gi_magicpot.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiMagicJarSmallDL "__OTR__objects/object_gi_magicpot/gGiMagicJarSmallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMagicJarSmallDL[] = dgGiMagicJarSmallDL; -#else -static const char gGiMagicJarSmallDL[] __attribute__((aligned (2))) = dgGiMagicJarSmallDL; -#endif - -#define dgGiMagicJarLargeDL "__OTR__objects/object_gi_magicpot/gGiMagicJarLargeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMagicJarLargeDL[] = dgGiMagicJarLargeDL; -#else -static const char gGiMagicJarLargeDL[] __attribute__((aligned (2))) = dgGiMagicJarLargeDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiMagicJarSmallDL "__OTR__objects/object_gi_magicpot/gGiMagicJarSmallDL" +static const ALIGN_ASSET(2) char gGiMagicJarSmallDL[] = dgGiMagicJarSmallDL; + +#define dgGiMagicJarLargeDL "__OTR__objects/object_gi_magicpot/gGiMagicJarLargeDL" +static const ALIGN_ASSET(2) char gGiMagicJarLargeDL[] = dgGiMagicJarLargeDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_map/object_gi_map.h b/soh/assets/objects/object_gi_map/object_gi_map.h index 1c91bb07a..2408fe1c8 100644 --- a/soh/assets/objects/object_gi_map/object_gi_map.h +++ b/soh/assets/objects/object_gi_map/object_gi_map.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiDungeonMapDL "__OTR__objects/object_gi_map/gGiDungeonMapDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiDungeonMapDL[] = dgGiDungeonMapDL; -#else -static const char gGiDungeonMapDL[] __attribute__((aligned (2))) = dgGiDungeonMapDL; -#endif - -#define dgGiStoneOfAgonyDL "__OTR__objects/object_gi_map/gGiStoneOfAgonyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiStoneOfAgonyDL[] = dgGiStoneOfAgonyDL; -#else -static const char gGiStoneOfAgonyDL[] __attribute__((aligned (2))) = dgGiStoneOfAgonyDL; -#endif - -#define dobject_gi_mapTex_000D60 "__OTR__objects/object_gi_map/object_gi_mapTex_000D60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_mapTex_000D60[] = dobject_gi_mapTex_000D60; -#else -static const char object_gi_mapTex_000D60[] __attribute__((aligned (2))) = dobject_gi_mapTex_000D60; -#endif - +#include "align_asset_macro.h" + +#define dgGiDungeonMapDL "__OTR__objects/object_gi_map/gGiDungeonMapDL" +static const ALIGN_ASSET(2) char gGiDungeonMapDL[] = dgGiDungeonMapDL; + +#define dgGiStoneOfAgonyDL "__OTR__objects/object_gi_map/gGiStoneOfAgonyDL" +static const ALIGN_ASSET(2) char gGiStoneOfAgonyDL[] = dgGiStoneOfAgonyDL; + +#define dobject_gi_mapTex_000D60 "__OTR__objects/object_gi_map/object_gi_mapTex_000D60" +static const ALIGN_ASSET(2) char object_gi_mapTex_000D60[] = dobject_gi_mapTex_000D60; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_medal/object_gi_medal.h b/soh/assets/objects/object_gi_medal/object_gi_medal.h index b436e5c10..5115b280e 100644 --- a/soh/assets/objects/object_gi_medal/object_gi_medal.h +++ b/soh/assets/objects/object_gi_medal/object_gi_medal.h @@ -1,51 +1,24 @@ #pragma once -#define dgGiForestMedallionFaceDL "__OTR__objects/object_gi_medal/gGiForestMedallionFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiForestMedallionFaceDL[] = dgGiForestMedallionFaceDL; -#else -static const char gGiForestMedallionFaceDL[] __attribute__((aligned (2))) = dgGiForestMedallionFaceDL; -#endif - -#define dgGiMedallionDL "__OTR__objects/object_gi_medal/gGiMedallionDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMedallionDL[] = dgGiMedallionDL; -#else -static const char gGiMedallionDL[] __attribute__((aligned (2))) = dgGiMedallionDL; -#endif - -#define dgGiFireMedallionFaceDL "__OTR__objects/object_gi_medal/gGiFireMedallionFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFireMedallionFaceDL[] = dgGiFireMedallionFaceDL; -#else -static const char gGiFireMedallionFaceDL[] __attribute__((aligned (2))) = dgGiFireMedallionFaceDL; -#endif - -#define dgGiWaterMedallionFaceDL "__OTR__objects/object_gi_medal/gGiWaterMedallionFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiWaterMedallionFaceDL[] = dgGiWaterMedallionFaceDL; -#else -static const char gGiWaterMedallionFaceDL[] __attribute__((aligned (2))) = dgGiWaterMedallionFaceDL; -#endif - -#define dgGiSpiritMedallionFaceDL "__OTR__objects/object_gi_medal/gGiSpiritMedallionFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSpiritMedallionFaceDL[] = dgGiSpiritMedallionFaceDL; -#else -static const char gGiSpiritMedallionFaceDL[] __attribute__((aligned (2))) = dgGiSpiritMedallionFaceDL; -#endif - -#define dgGiShadowMedallionFaceDL "__OTR__objects/object_gi_medal/gGiShadowMedallionFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiShadowMedallionFaceDL[] = dgGiShadowMedallionFaceDL; -#else -static const char gGiShadowMedallionFaceDL[] __attribute__((aligned (2))) = dgGiShadowMedallionFaceDL; -#endif - -#define dgGiLightMedallionFaceDL "__OTR__objects/object_gi_medal/gGiLightMedallionFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiLightMedallionFaceDL[] = dgGiLightMedallionFaceDL; -#else -static const char gGiLightMedallionFaceDL[] __attribute__((aligned (2))) = dgGiLightMedallionFaceDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiForestMedallionFaceDL "__OTR__objects/object_gi_medal/gGiForestMedallionFaceDL" +static const ALIGN_ASSET(2) char gGiForestMedallionFaceDL[] = dgGiForestMedallionFaceDL; + +#define dgGiMedallionDL "__OTR__objects/object_gi_medal/gGiMedallionDL" +static const ALIGN_ASSET(2) char gGiMedallionDL[] = dgGiMedallionDL; + +#define dgGiFireMedallionFaceDL "__OTR__objects/object_gi_medal/gGiFireMedallionFaceDL" +static const ALIGN_ASSET(2) char gGiFireMedallionFaceDL[] = dgGiFireMedallionFaceDL; + +#define dgGiWaterMedallionFaceDL "__OTR__objects/object_gi_medal/gGiWaterMedallionFaceDL" +static const ALIGN_ASSET(2) char gGiWaterMedallionFaceDL[] = dgGiWaterMedallionFaceDL; + +#define dgGiSpiritMedallionFaceDL "__OTR__objects/object_gi_medal/gGiSpiritMedallionFaceDL" +static const ALIGN_ASSET(2) char gGiSpiritMedallionFaceDL[] = dgGiSpiritMedallionFaceDL; + +#define dgGiShadowMedallionFaceDL "__OTR__objects/object_gi_medal/gGiShadowMedallionFaceDL" +static const ALIGN_ASSET(2) char gGiShadowMedallionFaceDL[] = dgGiShadowMedallionFaceDL; + +#define dgGiLightMedallionFaceDL "__OTR__objects/object_gi_medal/gGiLightMedallionFaceDL" +static const ALIGN_ASSET(2) char gGiLightMedallionFaceDL[] = dgGiLightMedallionFaceDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_melody/object_gi_melody.h b/soh/assets/objects/object_gi_melody/object_gi_melody.h index e2a7fdc89..80aa67346 100644 --- a/soh/assets/objects/object_gi_melody/object_gi_melody.h +++ b/soh/assets/objects/object_gi_melody/object_gi_melody.h @@ -1,51 +1,24 @@ #pragma once -#define dgGiMinuetColorDL "__OTR__objects/object_gi_melody/gGiMinuetColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMinuetColorDL[] = dgGiMinuetColorDL; -#else -static const char gGiMinuetColorDL[] __attribute__((aligned (2))) = dgGiMinuetColorDL; -#endif - -#define dgGiBoleroColorDL "__OTR__objects/object_gi_melody/gGiBoleroColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBoleroColorDL[] = dgGiBoleroColorDL; -#else -static const char gGiBoleroColorDL[] __attribute__((aligned (2))) = dgGiBoleroColorDL; -#endif - -#define dgGiSerenadeColorDL "__OTR__objects/object_gi_melody/gGiSerenadeColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSerenadeColorDL[] = dgGiSerenadeColorDL; -#else -static const char gGiSerenadeColorDL[] __attribute__((aligned (2))) = dgGiSerenadeColorDL; -#endif - -#define dgGiRequiemColorDL "__OTR__objects/object_gi_melody/gGiRequiemColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRequiemColorDL[] = dgGiRequiemColorDL; -#else -static const char gGiRequiemColorDL[] __attribute__((aligned (2))) = dgGiRequiemColorDL; -#endif - -#define dgGiNocturneColorDL "__OTR__objects/object_gi_melody/gGiNocturneColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiNocturneColorDL[] = dgGiNocturneColorDL; -#else -static const char gGiNocturneColorDL[] __attribute__((aligned (2))) = dgGiNocturneColorDL; -#endif - -#define dgGiPreludeColorDL "__OTR__objects/object_gi_melody/gGiPreludeColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPreludeColorDL[] = dgGiPreludeColorDL; -#else -static const char gGiPreludeColorDL[] __attribute__((aligned (2))) = dgGiPreludeColorDL; -#endif - -#define dgGiSongNoteDL "__OTR__objects/object_gi_melody/gGiSongNoteDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSongNoteDL[] = dgGiSongNoteDL; -#else -static const char gGiSongNoteDL[] __attribute__((aligned (2))) = dgGiSongNoteDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiMinuetColorDL "__OTR__objects/object_gi_melody/gGiMinuetColorDL" +static const ALIGN_ASSET(2) char gGiMinuetColorDL[] = dgGiMinuetColorDL; + +#define dgGiBoleroColorDL "__OTR__objects/object_gi_melody/gGiBoleroColorDL" +static const ALIGN_ASSET(2) char gGiBoleroColorDL[] = dgGiBoleroColorDL; + +#define dgGiSerenadeColorDL "__OTR__objects/object_gi_melody/gGiSerenadeColorDL" +static const ALIGN_ASSET(2) char gGiSerenadeColorDL[] = dgGiSerenadeColorDL; + +#define dgGiRequiemColorDL "__OTR__objects/object_gi_melody/gGiRequiemColorDL" +static const ALIGN_ASSET(2) char gGiRequiemColorDL[] = dgGiRequiemColorDL; + +#define dgGiNocturneColorDL "__OTR__objects/object_gi_melody/gGiNocturneColorDL" +static const ALIGN_ASSET(2) char gGiNocturneColorDL[] = dgGiNocturneColorDL; + +#define dgGiPreludeColorDL "__OTR__objects/object_gi_melody/gGiPreludeColorDL" +static const ALIGN_ASSET(2) char gGiPreludeColorDL[] = dgGiPreludeColorDL; + +#define dgGiSongNoteDL "__OTR__objects/object_gi_melody/gGiSongNoteDL" +static const ALIGN_ASSET(2) char gGiSongNoteDL[] = dgGiSongNoteDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_milk/object_gi_milk.h b/soh/assets/objects/object_gi_milk/object_gi_milk.h index 78c50b898..eee577fab 100644 --- a/soh/assets/objects/object_gi_milk/object_gi_milk.h +++ b/soh/assets/objects/object_gi_milk/object_gi_milk.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiMilkBottleContentsDL "__OTR__objects/object_gi_milk/gGiMilkBottleContentsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMilkBottleContentsDL[] = dgGiMilkBottleContentsDL; -#else -static const char gGiMilkBottleContentsDL[] __attribute__((aligned (2))) = dgGiMilkBottleContentsDL; -#endif - -#define dgGiMilkBottleDL "__OTR__objects/object_gi_milk/gGiMilkBottleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMilkBottleDL[] = dgGiMilkBottleDL; -#else -static const char gGiMilkBottleDL[] __attribute__((aligned (2))) = dgGiMilkBottleDL; -#endif - -#define dobject_gi_milkTex_000000 "__OTR__objects/object_gi_milk/object_gi_milkTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_milkTex_000000[] = dobject_gi_milkTex_000000; -#else -static const char object_gi_milkTex_000000[] __attribute__((aligned (2))) = dobject_gi_milkTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiMilkBottleContentsDL "__OTR__objects/object_gi_milk/gGiMilkBottleContentsDL" +static const ALIGN_ASSET(2) char gGiMilkBottleContentsDL[] = dgGiMilkBottleContentsDL; + +#define dgGiMilkBottleDL "__OTR__objects/object_gi_milk/gGiMilkBottleDL" +static const ALIGN_ASSET(2) char gGiMilkBottleDL[] = dgGiMilkBottleDL; + +#define dobject_gi_milkTex_000000 "__OTR__objects/object_gi_milk/object_gi_milkTex_000000" +static const ALIGN_ASSET(2) char object_gi_milkTex_000000[] = dobject_gi_milkTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_mushroom/object_gi_mushroom.h b/soh/assets/objects/object_gi_mushroom/object_gi_mushroom.h index c02fd44aa..623f515ae 100644 --- a/soh/assets/objects/object_gi_mushroom/object_gi_mushroom.h +++ b/soh/assets/objects/object_gi_mushroom/object_gi_mushroom.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiOddMushroomDL "__OTR__objects/object_gi_mushroom/gGiOddMushroomDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiOddMushroomDL[] = dgGiOddMushroomDL; -#else -static const char gGiOddMushroomDL[] __attribute__((aligned (2))) = dgGiOddMushroomDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiOddMushroomDL "__OTR__objects/object_gi_mushroom/gGiOddMushroomDL" +static const ALIGN_ASSET(2) char gGiOddMushroomDL[] = dgGiOddMushroomDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_niwatori/object_gi_niwatori.h b/soh/assets/objects/object_gi_niwatori/object_gi_niwatori.h index 0ca18bbbe..e60b5ba18 100644 --- a/soh/assets/objects/object_gi_niwatori/object_gi_niwatori.h +++ b/soh/assets/objects/object_gi_niwatori/object_gi_niwatori.h @@ -1,44 +1,21 @@ #pragma once -#define dgGiChickenColorDL "__OTR__objects/object_gi_niwatori/gGiChickenColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiChickenColorDL[] = dgGiChickenColorDL; -#else -static const char gGiChickenColorDL[] __attribute__((aligned (2))) = dgGiChickenColorDL; -#endif - -#define dgGiCojiroColorDL "__OTR__objects/object_gi_niwatori/gGiCojiroColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiCojiroColorDL[] = dgGiCojiroColorDL; -#else -static const char gGiCojiroColorDL[] __attribute__((aligned (2))) = dgGiCojiroColorDL; -#endif - -#define dgGiChickenDL "__OTR__objects/object_gi_niwatori/gGiChickenDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiChickenDL[] = dgGiChickenDL; -#else -static const char gGiChickenDL[] __attribute__((aligned (2))) = dgGiChickenDL; -#endif - -#define dgGiChickenEyesDL "__OTR__objects/object_gi_niwatori/gGiChickenEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiChickenEyesDL[] = dgGiChickenEyesDL; -#else -static const char gGiChickenEyesDL[] __attribute__((aligned (2))) = dgGiChickenEyesDL; -#endif - -#define dobject_gi_niwatoriTex_000000 "__OTR__objects/object_gi_niwatori/object_gi_niwatoriTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_niwatoriTex_000000[] = dobject_gi_niwatoriTex_000000; -#else -static const char object_gi_niwatoriTex_000000[] __attribute__((aligned (2))) = dobject_gi_niwatoriTex_000000; -#endif - -#define dobject_gi_niwatoriTex_000800 "__OTR__objects/object_gi_niwatori/object_gi_niwatoriTex_000800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_niwatoriTex_000800[] = dobject_gi_niwatoriTex_000800; -#else -static const char object_gi_niwatoriTex_000800[] __attribute__((aligned (2))) = dobject_gi_niwatoriTex_000800; -#endif - +#include "align_asset_macro.h" + +#define dgGiChickenColorDL "__OTR__objects/object_gi_niwatori/gGiChickenColorDL" +static const ALIGN_ASSET(2) char gGiChickenColorDL[] = dgGiChickenColorDL; + +#define dgGiCojiroColorDL "__OTR__objects/object_gi_niwatori/gGiCojiroColorDL" +static const ALIGN_ASSET(2) char gGiCojiroColorDL[] = dgGiCojiroColorDL; + +#define dgGiChickenDL "__OTR__objects/object_gi_niwatori/gGiChickenDL" +static const ALIGN_ASSET(2) char gGiChickenDL[] = dgGiChickenDL; + +#define dgGiChickenEyesDL "__OTR__objects/object_gi_niwatori/gGiChickenEyesDL" +static const ALIGN_ASSET(2) char gGiChickenEyesDL[] = dgGiChickenEyesDL; + +#define dobject_gi_niwatoriTex_000000 "__OTR__objects/object_gi_niwatori/object_gi_niwatoriTex_000000" +static const ALIGN_ASSET(2) char object_gi_niwatoriTex_000000[] = dobject_gi_niwatoriTex_000000; + +#define dobject_gi_niwatoriTex_000800 "__OTR__objects/object_gi_niwatori/object_gi_niwatoriTex_000800" +static const ALIGN_ASSET(2) char object_gi_niwatoriTex_000800[] = dobject_gi_niwatoriTex_000800; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_nuts/object_gi_nuts.h b/soh/assets/objects/object_gi_nuts/object_gi_nuts.h index 44a2c8722..cdc86614e 100644 --- a/soh/assets/objects/object_gi_nuts/object_gi_nuts.h +++ b/soh/assets/objects/object_gi_nuts/object_gi_nuts.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiNutDL "__OTR__objects/object_gi_nuts/gGiNutDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiNutDL[] = dgGiNutDL; -#else -static const char gGiNutDL[] __attribute__((aligned (2))) = dgGiNutDL; -#endif - -#define dobject_gi_nutsTex_000000 "__OTR__objects/object_gi_nuts/object_gi_nutsTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_nutsTex_000000[] = dobject_gi_nutsTex_000000; -#else -static const char object_gi_nutsTex_000000[] __attribute__((aligned (2))) = dobject_gi_nutsTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiNutDL "__OTR__objects/object_gi_nuts/gGiNutDL" +static const ALIGN_ASSET(2) char gGiNutDL[] = dgGiNutDL; + +#define dobject_gi_nutsTex_000000 "__OTR__objects/object_gi_nuts/object_gi_nutsTex_000000" +static const ALIGN_ASSET(2) char object_gi_nutsTex_000000[] = dobject_gi_nutsTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_ocarina/object_gi_ocarina.h b/soh/assets/objects/object_gi_ocarina/object_gi_ocarina.h index 64dbadb9c..3998223d9 100644 --- a/soh/assets/objects/object_gi_ocarina/object_gi_ocarina.h +++ b/soh/assets/objects/object_gi_ocarina/object_gi_ocarina.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiOcarinaTimeDL "__OTR__objects/object_gi_ocarina/gGiOcarinaTimeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiOcarinaTimeDL[] = dgGiOcarinaTimeDL; -#else -static const char gGiOcarinaTimeDL[] __attribute__((aligned (2))) = dgGiOcarinaTimeDL; -#endif - -#define dgGiOcarinaTimeHolesDL "__OTR__objects/object_gi_ocarina/gGiOcarinaTimeHolesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiOcarinaTimeHolesDL[] = dgGiOcarinaTimeHolesDL; -#else -static const char gGiOcarinaTimeHolesDL[] __attribute__((aligned (2))) = dgGiOcarinaTimeHolesDL; -#endif - -#define dobject_gi_ocarinaTex_000000 "__OTR__objects/object_gi_ocarina/object_gi_ocarinaTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_ocarinaTex_000000[] = dobject_gi_ocarinaTex_000000; -#else -static const char object_gi_ocarinaTex_000000[] __attribute__((aligned (2))) = dobject_gi_ocarinaTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiOcarinaTimeDL "__OTR__objects/object_gi_ocarina/gGiOcarinaTimeDL" +static const ALIGN_ASSET(2) char gGiOcarinaTimeDL[] = dgGiOcarinaTimeDL; + +#define dgGiOcarinaTimeHolesDL "__OTR__objects/object_gi_ocarina/gGiOcarinaTimeHolesDL" +static const ALIGN_ASSET(2) char gGiOcarinaTimeHolesDL[] = dgGiOcarinaTimeHolesDL; + +#define dobject_gi_ocarinaTex_000000 "__OTR__objects/object_gi_ocarina/object_gi_ocarinaTex_000000" +static const ALIGN_ASSET(2) char object_gi_ocarinaTex_000000[] = dobject_gi_ocarinaTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_ocarina_0/object_gi_ocarina_0.h b/soh/assets/objects/object_gi_ocarina_0/object_gi_ocarina_0.h index 444676b50..86d3d7e04 100644 --- a/soh/assets/objects/object_gi_ocarina_0/object_gi_ocarina_0.h +++ b/soh/assets/objects/object_gi_ocarina_0/object_gi_ocarina_0.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiOcarinaFairyDL "__OTR__objects/object_gi_ocarina_0/gGiOcarinaFairyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiOcarinaFairyDL[] = dgGiOcarinaFairyDL; -#else -static const char gGiOcarinaFairyDL[] __attribute__((aligned (2))) = dgGiOcarinaFairyDL; -#endif - -#define dgGiOcarinaFairyHolesDL "__OTR__objects/object_gi_ocarina_0/gGiOcarinaFairyHolesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiOcarinaFairyHolesDL[] = dgGiOcarinaFairyHolesDL; -#else -static const char gGiOcarinaFairyHolesDL[] __attribute__((aligned (2))) = dgGiOcarinaFairyHolesDL; -#endif - -#define dobject_gi_ocarina_0Tex_000000 "__OTR__objects/object_gi_ocarina_0/object_gi_ocarina_0Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_ocarina_0Tex_000000[] = dobject_gi_ocarina_0Tex_000000; -#else -static const char object_gi_ocarina_0Tex_000000[] __attribute__((aligned (2))) = dobject_gi_ocarina_0Tex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiOcarinaFairyDL "__OTR__objects/object_gi_ocarina_0/gGiOcarinaFairyDL" +static const ALIGN_ASSET(2) char gGiOcarinaFairyDL[] = dgGiOcarinaFairyDL; + +#define dgGiOcarinaFairyHolesDL "__OTR__objects/object_gi_ocarina_0/gGiOcarinaFairyHolesDL" +static const ALIGN_ASSET(2) char gGiOcarinaFairyHolesDL[] = dgGiOcarinaFairyHolesDL; + +#define dobject_gi_ocarina_0Tex_000000 "__OTR__objects/object_gi_ocarina_0/object_gi_ocarina_0Tex_000000" +static const ALIGN_ASSET(2) char object_gi_ocarina_0Tex_000000[] = dobject_gi_ocarina_0Tex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_pachinko/object_gi_pachinko.h b/soh/assets/objects/object_gi_pachinko/object_gi_pachinko.h index 504f2a801..95dc3869a 100644 --- a/soh/assets/objects/object_gi_pachinko/object_gi_pachinko.h +++ b/soh/assets/objects/object_gi_pachinko/object_gi_pachinko.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiSlingshotDL "__OTR__objects/object_gi_pachinko/gGiSlingshotDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSlingshotDL[] = dgGiSlingshotDL; -#else -static const char gGiSlingshotDL[] __attribute__((aligned (2))) = dgGiSlingshotDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiSlingshotDL "__OTR__objects/object_gi_pachinko/gGiSlingshotDL" +static const ALIGN_ASSET(2) char gGiSlingshotDL[] = dgGiSlingshotDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_powder/object_gi_powder.h b/soh/assets/objects/object_gi_powder/object_gi_powder.h index 845a6e193..bb996665e 100644 --- a/soh/assets/objects/object_gi_powder/object_gi_powder.h +++ b/soh/assets/objects/object_gi_powder/object_gi_powder.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiOddPotionDL "__OTR__objects/object_gi_powder/gGiOddPotionDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiOddPotionDL[] = dgGiOddPotionDL; -#else -static const char gGiOddPotionDL[] __attribute__((aligned (2))) = dgGiOddPotionDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiOddPotionDL "__OTR__objects/object_gi_powder/gGiOddPotionDL" +static const ALIGN_ASSET(2) char gGiOddPotionDL[] = dgGiOddPotionDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_prescription/object_gi_prescription.h b/soh/assets/objects/object_gi_prescription/object_gi_prescription.h index 356edcf62..247e2ffd1 100644 --- a/soh/assets/objects/object_gi_prescription/object_gi_prescription.h +++ b/soh/assets/objects/object_gi_prescription/object_gi_prescription.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiPrescriptionDL "__OTR__objects/object_gi_prescription/gGiPrescriptionDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPrescriptionDL[] = dgGiPrescriptionDL; -#else -static const char gGiPrescriptionDL[] __attribute__((aligned (2))) = dgGiPrescriptionDL; -#endif - -#define dgGiPrescriptionWritingDL "__OTR__objects/object_gi_prescription/gGiPrescriptionWritingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPrescriptionWritingDL[] = dgGiPrescriptionWritingDL; -#else -static const char gGiPrescriptionWritingDL[] __attribute__((aligned (2))) = dgGiPrescriptionWritingDL; -#endif - -#define dobject_gi_prescriptionTex_000000 "__OTR__objects/object_gi_prescription/object_gi_prescriptionTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_prescriptionTex_000000[] = dobject_gi_prescriptionTex_000000; -#else -static const char object_gi_prescriptionTex_000000[] __attribute__((aligned (2))) = dobject_gi_prescriptionTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiPrescriptionDL "__OTR__objects/object_gi_prescription/gGiPrescriptionDL" +static const ALIGN_ASSET(2) char gGiPrescriptionDL[] = dgGiPrescriptionDL; + +#define dgGiPrescriptionWritingDL "__OTR__objects/object_gi_prescription/gGiPrescriptionWritingDL" +static const ALIGN_ASSET(2) char gGiPrescriptionWritingDL[] = dgGiPrescriptionWritingDL; + +#define dobject_gi_prescriptionTex_000000 "__OTR__objects/object_gi_prescription/object_gi_prescriptionTex_000000" +static const ALIGN_ASSET(2) char object_gi_prescriptionTex_000000[] = dobject_gi_prescriptionTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_purse/object_gi_purse.h b/soh/assets/objects/object_gi_purse/object_gi_purse.h index fb0cd6e36..ed1a96883 100644 --- a/soh/assets/objects/object_gi_purse/object_gi_purse.h +++ b/soh/assets/objects/object_gi_purse/object_gi_purse.h @@ -1,93 +1,42 @@ #pragma once -#define dgGiAdultWalletColorDL "__OTR__objects/object_gi_purse/gGiAdultWalletColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiAdultWalletColorDL[] = dgGiAdultWalletColorDL; -#else -static const char gGiAdultWalletColorDL[] __attribute__((aligned (2))) = dgGiAdultWalletColorDL; -#endif - -#define dgGiGiantsWalletColorDL "__OTR__objects/object_gi_purse/gGiGiantsWalletColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGiantsWalletColorDL[] = dgGiGiantsWalletColorDL; -#else -static const char gGiGiantsWalletColorDL[] __attribute__((aligned (2))) = dgGiGiantsWalletColorDL; -#endif - -#define dgGiAdultWalletRupeeOuterColorDL "__OTR__objects/object_gi_purse/gGiAdultWalletRupeeOuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiAdultWalletRupeeOuterColorDL[] = dgGiAdultWalletRupeeOuterColorDL; -#else -static const char gGiAdultWalletRupeeOuterColorDL[] __attribute__((aligned (2))) = dgGiAdultWalletRupeeOuterColorDL; -#endif - -#define dgGiAdultWalletStringColorDL "__OTR__objects/object_gi_purse/gGiAdultWalletStringColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiAdultWalletStringColorDL[] = dgGiAdultWalletStringColorDL; -#else -static const char gGiAdultWalletStringColorDL[] __attribute__((aligned (2))) = dgGiAdultWalletStringColorDL; -#endif - -#define dgGiAdultWalletRupeeInnerColorDL "__OTR__objects/object_gi_purse/gGiAdultWalletRupeeInnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiAdultWalletRupeeInnerColorDL[] = dgGiAdultWalletRupeeInnerColorDL; -#else -static const char gGiAdultWalletRupeeInnerColorDL[] __attribute__((aligned (2))) = dgGiAdultWalletRupeeInnerColorDL; -#endif - -#define dgGiGiantsWalletRupeeOuterColorDL "__OTR__objects/object_gi_purse/gGiGiantsWalletRupeeOuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGiantsWalletRupeeOuterColorDL[] = dgGiGiantsWalletRupeeOuterColorDL; -#else -static const char gGiGiantsWalletRupeeOuterColorDL[] __attribute__((aligned (2))) = dgGiGiantsWalletRupeeOuterColorDL; -#endif - -#define dgGiGiantsWalletStringColorDL "__OTR__objects/object_gi_purse/gGiGiantsWalletStringColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGiantsWalletStringColorDL[] = dgGiGiantsWalletStringColorDL; -#else -static const char gGiGiantsWalletStringColorDL[] __attribute__((aligned (2))) = dgGiGiantsWalletStringColorDL; -#endif - -#define dgGiGiantsWalletRupeeInnerColorDL "__OTR__objects/object_gi_purse/gGiGiantsWalletRupeeInnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGiantsWalletRupeeInnerColorDL[] = dgGiGiantsWalletRupeeInnerColorDL; -#else -static const char gGiGiantsWalletRupeeInnerColorDL[] __attribute__((aligned (2))) = dgGiGiantsWalletRupeeInnerColorDL; -#endif - -#define dgGiWalletDL "__OTR__objects/object_gi_purse/gGiWalletDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiWalletDL[] = dgGiWalletDL; -#else -static const char gGiWalletDL[] __attribute__((aligned (2))) = dgGiWalletDL; -#endif - -#define dgGiWalletRupeeOuterDL "__OTR__objects/object_gi_purse/gGiWalletRupeeOuterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiWalletRupeeOuterDL[] = dgGiWalletRupeeOuterDL; -#else -static const char gGiWalletRupeeOuterDL[] __attribute__((aligned (2))) = dgGiWalletRupeeOuterDL; -#endif - -#define dgGiWalletStringDL "__OTR__objects/object_gi_purse/gGiWalletStringDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiWalletStringDL[] = dgGiWalletStringDL; -#else -static const char gGiWalletStringDL[] __attribute__((aligned (2))) = dgGiWalletStringDL; -#endif - -#define dgGiWalletRupeeInnerDL "__OTR__objects/object_gi_purse/gGiWalletRupeeInnerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiWalletRupeeInnerDL[] = dgGiWalletRupeeInnerDL; -#else -static const char gGiWalletRupeeInnerDL[] __attribute__((aligned (2))) = dgGiWalletRupeeInnerDL; -#endif - -#define dobject_gi_purseTex_000000 "__OTR__objects/object_gi_purse/object_gi_purseTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_purseTex_000000[] = dobject_gi_purseTex_000000; -#else -static const char object_gi_purseTex_000000[] __attribute__((aligned (2))) = dobject_gi_purseTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiAdultWalletColorDL "__OTR__objects/object_gi_purse/gGiAdultWalletColorDL" +static const ALIGN_ASSET(2) char gGiAdultWalletColorDL[] = dgGiAdultWalletColorDL; + +#define dgGiGiantsWalletColorDL "__OTR__objects/object_gi_purse/gGiGiantsWalletColorDL" +static const ALIGN_ASSET(2) char gGiGiantsWalletColorDL[] = dgGiGiantsWalletColorDL; + +#define dgGiAdultWalletRupeeOuterColorDL "__OTR__objects/object_gi_purse/gGiAdultWalletRupeeOuterColorDL" +static const ALIGN_ASSET(2) char gGiAdultWalletRupeeOuterColorDL[] = dgGiAdultWalletRupeeOuterColorDL; + +#define dgGiAdultWalletStringColorDL "__OTR__objects/object_gi_purse/gGiAdultWalletStringColorDL" +static const ALIGN_ASSET(2) char gGiAdultWalletStringColorDL[] = dgGiAdultWalletStringColorDL; + +#define dgGiAdultWalletRupeeInnerColorDL "__OTR__objects/object_gi_purse/gGiAdultWalletRupeeInnerColorDL" +static const ALIGN_ASSET(2) char gGiAdultWalletRupeeInnerColorDL[] = dgGiAdultWalletRupeeInnerColorDL; + +#define dgGiGiantsWalletRupeeOuterColorDL "__OTR__objects/object_gi_purse/gGiGiantsWalletRupeeOuterColorDL" +static const ALIGN_ASSET(2) char gGiGiantsWalletRupeeOuterColorDL[] = dgGiGiantsWalletRupeeOuterColorDL; + +#define dgGiGiantsWalletStringColorDL "__OTR__objects/object_gi_purse/gGiGiantsWalletStringColorDL" +static const ALIGN_ASSET(2) char gGiGiantsWalletStringColorDL[] = dgGiGiantsWalletStringColorDL; + +#define dgGiGiantsWalletRupeeInnerColorDL "__OTR__objects/object_gi_purse/gGiGiantsWalletRupeeInnerColorDL" +static const ALIGN_ASSET(2) char gGiGiantsWalletRupeeInnerColorDL[] = dgGiGiantsWalletRupeeInnerColorDL; + +#define dgGiWalletDL "__OTR__objects/object_gi_purse/gGiWalletDL" +static const ALIGN_ASSET(2) char gGiWalletDL[] = dgGiWalletDL; + +#define dgGiWalletRupeeOuterDL "__OTR__objects/object_gi_purse/gGiWalletRupeeOuterDL" +static const ALIGN_ASSET(2) char gGiWalletRupeeOuterDL[] = dgGiWalletRupeeOuterDL; + +#define dgGiWalletStringDL "__OTR__objects/object_gi_purse/gGiWalletStringDL" +static const ALIGN_ASSET(2) char gGiWalletStringDL[] = dgGiWalletStringDL; + +#define dgGiWalletRupeeInnerDL "__OTR__objects/object_gi_purse/gGiWalletRupeeInnerDL" +static const ALIGN_ASSET(2) char gGiWalletRupeeInnerDL[] = dgGiWalletRupeeInnerDL; + +#define dobject_gi_purseTex_000000 "__OTR__objects/object_gi_purse/object_gi_purseTex_000000" +static const ALIGN_ASSET(2) char object_gi_purseTex_000000[] = dobject_gi_purseTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_rabit_mask/object_gi_rabit_mask.h b/soh/assets/objects/object_gi_rabit_mask/object_gi_rabit_mask.h index 50cbaca59..ff148c7b7 100644 --- a/soh/assets/objects/object_gi_rabit_mask/object_gi_rabit_mask.h +++ b/soh/assets/objects/object_gi_rabit_mask/object_gi_rabit_mask.h @@ -1,23 +1,12 @@ #pragma once -#define dgGiBunnyHoodDL "__OTR__objects/object_gi_rabit_mask/gGiBunnyHoodDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBunnyHoodDL[] = dgGiBunnyHoodDL; -#else -static const char gGiBunnyHoodDL[] __attribute__((aligned (2))) = dgGiBunnyHoodDL; -#endif - -#define dgGiBunnyHoodEyesDL "__OTR__objects/object_gi_rabit_mask/gGiBunnyHoodEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBunnyHoodEyesDL[] = dgGiBunnyHoodEyesDL; -#else -static const char gGiBunnyHoodEyesDL[] __attribute__((aligned (2))) = dgGiBunnyHoodEyesDL; -#endif - -#define dobject_gi_rabit_maskTex_000000 "__OTR__objects/object_gi_rabit_mask/object_gi_rabit_maskTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_rabit_maskTex_000000[] = dobject_gi_rabit_maskTex_000000; -#else -static const char object_gi_rabit_maskTex_000000[] __attribute__((aligned (2))) = dobject_gi_rabit_maskTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiBunnyHoodDL "__OTR__objects/object_gi_rabit_mask/gGiBunnyHoodDL" +static const ALIGN_ASSET(2) char gGiBunnyHoodDL[] = dgGiBunnyHoodDL; + +#define dgGiBunnyHoodEyesDL "__OTR__objects/object_gi_rabit_mask/gGiBunnyHoodEyesDL" +static const ALIGN_ASSET(2) char gGiBunnyHoodEyesDL[] = dgGiBunnyHoodEyesDL; + +#define dobject_gi_rabit_maskTex_000000 "__OTR__objects/object_gi_rabit_mask/object_gi_rabit_maskTex_000000" +static const ALIGN_ASSET(2) char object_gi_rabit_maskTex_000000[] = dobject_gi_rabit_maskTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_redead_mask/object_gi_redead_mask.h b/soh/assets/objects/object_gi_redead_mask/object_gi_redead_mask.h index 5af7043f5..b88498432 100644 --- a/soh/assets/objects/object_gi_redead_mask/object_gi_redead_mask.h +++ b/soh/assets/objects/object_gi_redead_mask/object_gi_redead_mask.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiSpookyMaskDL "__OTR__objects/object_gi_redead_mask/gGiSpookyMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSpookyMaskDL[] = dgGiSpookyMaskDL; -#else -static const char gGiSpookyMaskDL[] __attribute__((aligned (2))) = dgGiSpookyMaskDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiSpookyMaskDL "__OTR__objects/object_gi_redead_mask/gGiSpookyMaskDL" +static const ALIGN_ASSET(2) char gGiSpookyMaskDL[] = dgGiSpookyMaskDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_rupy/object_gi_rupy.h b/soh/assets/objects/object_gi_rupy/object_gi_rupy.h index cc310f933..a826db180 100644 --- a/soh/assets/objects/object_gi_rupy/object_gi_rupy.h +++ b/soh/assets/objects/object_gi_rupy/object_gi_rupy.h @@ -1,86 +1,39 @@ #pragma once -#define dgGiGreenRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiGreenRupeeInnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGreenRupeeInnerColorDL[] = dgGiGreenRupeeInnerColorDL; -#else -static const char gGiGreenRupeeInnerColorDL[] __attribute__((aligned (2))) = dgGiGreenRupeeInnerColorDL; -#endif - -#define dgGiBlueRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiBlueRupeeInnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBlueRupeeInnerColorDL[] = dgGiBlueRupeeInnerColorDL; -#else -static const char gGiBlueRupeeInnerColorDL[] __attribute__((aligned (2))) = dgGiBlueRupeeInnerColorDL; -#endif - -#define dgGiRedRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiRedRupeeInnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRedRupeeInnerColorDL[] = dgGiRedRupeeInnerColorDL; -#else -static const char gGiRedRupeeInnerColorDL[] __attribute__((aligned (2))) = dgGiRedRupeeInnerColorDL; -#endif - -#define dgGiPurpleRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiPurpleRupeeInnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPurpleRupeeInnerColorDL[] = dgGiPurpleRupeeInnerColorDL; -#else -static const char gGiPurpleRupeeInnerColorDL[] __attribute__((aligned (2))) = dgGiPurpleRupeeInnerColorDL; -#endif - -#define dgGiGoldRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiGoldRupeeInnerColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoldRupeeInnerColorDL[] = dgGiGoldRupeeInnerColorDL; -#else -static const char gGiGoldRupeeInnerColorDL[] __attribute__((aligned (2))) = dgGiGoldRupeeInnerColorDL; -#endif - -#define dgGiGreenRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiGreenRupeeOuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGreenRupeeOuterColorDL[] = dgGiGreenRupeeOuterColorDL; -#else -static const char gGiGreenRupeeOuterColorDL[] __attribute__((aligned (2))) = dgGiGreenRupeeOuterColorDL; -#endif - -#define dgGiBlueRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiBlueRupeeOuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiBlueRupeeOuterColorDL[] = dgGiBlueRupeeOuterColorDL; -#else -static const char gGiBlueRupeeOuterColorDL[] __attribute__((aligned (2))) = dgGiBlueRupeeOuterColorDL; -#endif - -#define dgGiRedRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiRedRupeeOuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRedRupeeOuterColorDL[] = dgGiRedRupeeOuterColorDL; -#else -static const char gGiRedRupeeOuterColorDL[] __attribute__((aligned (2))) = dgGiRedRupeeOuterColorDL; -#endif - -#define dgGiPurpleRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiPurpleRupeeOuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiPurpleRupeeOuterColorDL[] = dgGiPurpleRupeeOuterColorDL; -#else -static const char gGiPurpleRupeeOuterColorDL[] __attribute__((aligned (2))) = dgGiPurpleRupeeOuterColorDL; -#endif - -#define dgGiGoldRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiGoldRupeeOuterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoldRupeeOuterColorDL[] = dgGiGoldRupeeOuterColorDL; -#else -static const char gGiGoldRupeeOuterColorDL[] __attribute__((aligned (2))) = dgGiGoldRupeeOuterColorDL; -#endif - -#define dgGiRupeeInnerDL "__OTR__objects/object_gi_rupy/gGiRupeeInnerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRupeeInnerDL[] = dgGiRupeeInnerDL; -#else -static const char gGiRupeeInnerDL[] __attribute__((aligned (2))) = dgGiRupeeInnerDL; -#endif - -#define dgGiRupeeOuterDL "__OTR__objects/object_gi_rupy/gGiRupeeOuterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiRupeeOuterDL[] = dgGiRupeeOuterDL; -#else -static const char gGiRupeeOuterDL[] __attribute__((aligned (2))) = dgGiRupeeOuterDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiGreenRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiGreenRupeeInnerColorDL" +static const ALIGN_ASSET(2) char gGiGreenRupeeInnerColorDL[] = dgGiGreenRupeeInnerColorDL; + +#define dgGiBlueRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiBlueRupeeInnerColorDL" +static const ALIGN_ASSET(2) char gGiBlueRupeeInnerColorDL[] = dgGiBlueRupeeInnerColorDL; + +#define dgGiRedRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiRedRupeeInnerColorDL" +static const ALIGN_ASSET(2) char gGiRedRupeeInnerColorDL[] = dgGiRedRupeeInnerColorDL; + +#define dgGiPurpleRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiPurpleRupeeInnerColorDL" +static const ALIGN_ASSET(2) char gGiPurpleRupeeInnerColorDL[] = dgGiPurpleRupeeInnerColorDL; + +#define dgGiGoldRupeeInnerColorDL "__OTR__objects/object_gi_rupy/gGiGoldRupeeInnerColorDL" +static const ALIGN_ASSET(2) char gGiGoldRupeeInnerColorDL[] = dgGiGoldRupeeInnerColorDL; + +#define dgGiGreenRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiGreenRupeeOuterColorDL" +static const ALIGN_ASSET(2) char gGiGreenRupeeOuterColorDL[] = dgGiGreenRupeeOuterColorDL; + +#define dgGiBlueRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiBlueRupeeOuterColorDL" +static const ALIGN_ASSET(2) char gGiBlueRupeeOuterColorDL[] = dgGiBlueRupeeOuterColorDL; + +#define dgGiRedRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiRedRupeeOuterColorDL" +static const ALIGN_ASSET(2) char gGiRedRupeeOuterColorDL[] = dgGiRedRupeeOuterColorDL; + +#define dgGiPurpleRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiPurpleRupeeOuterColorDL" +static const ALIGN_ASSET(2) char gGiPurpleRupeeOuterColorDL[] = dgGiPurpleRupeeOuterColorDL; + +#define dgGiGoldRupeeOuterColorDL "__OTR__objects/object_gi_rupy/gGiGoldRupeeOuterColorDL" +static const ALIGN_ASSET(2) char gGiGoldRupeeOuterColorDL[] = dgGiGoldRupeeOuterColorDL; + +#define dgGiRupeeInnerDL "__OTR__objects/object_gi_rupy/gGiRupeeInnerDL" +static const ALIGN_ASSET(2) char gGiRupeeInnerDL[] = dgGiRupeeInnerDL; + +#define dgGiRupeeOuterDL "__OTR__objects/object_gi_rupy/gGiRupeeOuterDL" +static const ALIGN_ASSET(2) char gGiRupeeOuterDL[] = dgGiRupeeOuterDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_saw/object_gi_saw.h b/soh/assets/objects/object_gi_saw/object_gi_saw.h index 63696fb7e..b012fecb3 100644 --- a/soh/assets/objects/object_gi_saw/object_gi_saw.h +++ b/soh/assets/objects/object_gi_saw/object_gi_saw.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiSawDL "__OTR__objects/object_gi_saw/gGiSawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSawDL[] = dgGiSawDL; -#else -static const char gGiSawDL[] __attribute__((aligned (2))) = dgGiSawDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiSawDL "__OTR__objects/object_gi_saw/gGiSawDL" +static const ALIGN_ASSET(2) char gGiSawDL[] = dgGiSawDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_scale/object_gi_scale.h b/soh/assets/objects/object_gi_scale/object_gi_scale.h index 352f1fcb6..325a7acdf 100644 --- a/soh/assets/objects/object_gi_scale/object_gi_scale.h +++ b/soh/assets/objects/object_gi_scale/object_gi_scale.h @@ -1,44 +1,21 @@ #pragma once -#define dgGiSilverScaleWaterColorDL "__OTR__objects/object_gi_scale/gGiSilverScaleWaterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSilverScaleWaterColorDL[] = dgGiSilverScaleWaterColorDL; -#else -static const char gGiSilverScaleWaterColorDL[] __attribute__((aligned (2))) = dgGiSilverScaleWaterColorDL; -#endif - -#define dgGiGoldenScaleWaterColorDL "__OTR__objects/object_gi_scale/gGiGoldenScaleWaterColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoldenScaleWaterColorDL[] = dgGiGoldenScaleWaterColorDL; -#else -static const char gGiGoldenScaleWaterColorDL[] __attribute__((aligned (2))) = dgGiGoldenScaleWaterColorDL; -#endif - -#define dgGiSilverScaleColorDL "__OTR__objects/object_gi_scale/gGiSilverScaleColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSilverScaleColorDL[] = dgGiSilverScaleColorDL; -#else -static const char gGiSilverScaleColorDL[] __attribute__((aligned (2))) = dgGiSilverScaleColorDL; -#endif - -#define dgGiGoldenScaleColorDL "__OTR__objects/object_gi_scale/gGiGoldenScaleColorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiGoldenScaleColorDL[] = dgGiGoldenScaleColorDL; -#else -static const char gGiGoldenScaleColorDL[] __attribute__((aligned (2))) = dgGiGoldenScaleColorDL; -#endif - -#define dgGiScaleWaterDL "__OTR__objects/object_gi_scale/gGiScaleWaterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiScaleWaterDL[] = dgGiScaleWaterDL; -#else -static const char gGiScaleWaterDL[] __attribute__((aligned (2))) = dgGiScaleWaterDL; -#endif - -#define dgGiScaleDL "__OTR__objects/object_gi_scale/gGiScaleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiScaleDL[] = dgGiScaleDL; -#else -static const char gGiScaleDL[] __attribute__((aligned (2))) = dgGiScaleDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiSilverScaleWaterColorDL "__OTR__objects/object_gi_scale/gGiSilverScaleWaterColorDL" +static const ALIGN_ASSET(2) char gGiSilverScaleWaterColorDL[] = dgGiSilverScaleWaterColorDL; + +#define dgGiGoldenScaleWaterColorDL "__OTR__objects/object_gi_scale/gGiGoldenScaleWaterColorDL" +static const ALIGN_ASSET(2) char gGiGoldenScaleWaterColorDL[] = dgGiGoldenScaleWaterColorDL; + +#define dgGiSilverScaleColorDL "__OTR__objects/object_gi_scale/gGiSilverScaleColorDL" +static const ALIGN_ASSET(2) char gGiSilverScaleColorDL[] = dgGiSilverScaleColorDL; + +#define dgGiGoldenScaleColorDL "__OTR__objects/object_gi_scale/gGiGoldenScaleColorDL" +static const ALIGN_ASSET(2) char gGiGoldenScaleColorDL[] = dgGiGoldenScaleColorDL; + +#define dgGiScaleWaterDL "__OTR__objects/object_gi_scale/gGiScaleWaterDL" +static const ALIGN_ASSET(2) char gGiScaleWaterDL[] = dgGiScaleWaterDL; + +#define dgGiScaleDL "__OTR__objects/object_gi_scale/gGiScaleDL" +static const ALIGN_ASSET(2) char gGiScaleDL[] = dgGiScaleDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_seed/object_gi_seed.h b/soh/assets/objects/object_gi_seed/object_gi_seed.h index b7c8c3443..20420dc65 100644 --- a/soh/assets/objects/object_gi_seed/object_gi_seed.h +++ b/soh/assets/objects/object_gi_seed/object_gi_seed.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiSeedDL "__OTR__objects/object_gi_seed/gGiSeedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSeedDL[] = dgGiSeedDL; -#else -static const char gGiSeedDL[] __attribute__((aligned (2))) = dgGiSeedDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiSeedDL "__OTR__objects/object_gi_seed/gGiSeedDL" +static const ALIGN_ASSET(2) char gGiSeedDL[] = dgGiSeedDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_shield_1/object_gi_shield_1.h b/soh/assets/objects/object_gi_shield_1/object_gi_shield_1.h index 083746ab1..c6cd49154 100644 --- a/soh/assets/objects/object_gi_shield_1/object_gi_shield_1.h +++ b/soh/assets/objects/object_gi_shield_1/object_gi_shield_1.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiDekuShieldDL "__OTR__objects/object_gi_shield_1/gGiDekuShieldDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiDekuShieldDL[] = dgGiDekuShieldDL; -#else -static const char gGiDekuShieldDL[] __attribute__((aligned (2))) = dgGiDekuShieldDL; -#endif - -#define dobject_gi_shield_1Tex_000000 "__OTR__objects/object_gi_shield_1/object_gi_shield_1Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_shield_1Tex_000000[] = dobject_gi_shield_1Tex_000000; -#else -static const char object_gi_shield_1Tex_000000[] __attribute__((aligned (2))) = dobject_gi_shield_1Tex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiDekuShieldDL "__OTR__objects/object_gi_shield_1/gGiDekuShieldDL" +static const ALIGN_ASSET(2) char gGiDekuShieldDL[] = dgGiDekuShieldDL; + +#define dobject_gi_shield_1Tex_000000 "__OTR__objects/object_gi_shield_1/object_gi_shield_1Tex_000000" +static const ALIGN_ASSET(2) char object_gi_shield_1Tex_000000[] = dobject_gi_shield_1Tex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_shield_2/object_gi_shield_2.h b/soh/assets/objects/object_gi_shield_2/object_gi_shield_2.h index f34ab81d8..26a66a6ce 100644 --- a/soh/assets/objects/object_gi_shield_2/object_gi_shield_2.h +++ b/soh/assets/objects/object_gi_shield_2/object_gi_shield_2.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiHylianShieldDL "__OTR__objects/object_gi_shield_2/gGiHylianShieldDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiHylianShieldDL[] = dgGiHylianShieldDL; -#else -static const char gGiHylianShieldDL[] __attribute__((aligned (2))) = dgGiHylianShieldDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiHylianShieldDL "__OTR__objects/object_gi_shield_2/gGiHylianShieldDL" +static const ALIGN_ASSET(2) char gGiHylianShieldDL[] = dgGiHylianShieldDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_shield_3/object_gi_shield_3.h b/soh/assets/objects/object_gi_shield_3/object_gi_shield_3.h index 73476d7ac..dc7cdc4c0 100644 --- a/soh/assets/objects/object_gi_shield_3/object_gi_shield_3.h +++ b/soh/assets/objects/object_gi_shield_3/object_gi_shield_3.h @@ -1,30 +1,15 @@ #pragma once -#define dgGiMirrorShieldDL "__OTR__objects/object_gi_shield_3/gGiMirrorShieldDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMirrorShieldDL[] = dgGiMirrorShieldDL; -#else -static const char gGiMirrorShieldDL[] __attribute__((aligned (2))) = dgGiMirrorShieldDL; -#endif - -#define dgGiMirrorShieldSymbolDL "__OTR__objects/object_gi_shield_3/gGiMirrorShieldSymbolDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMirrorShieldSymbolDL[] = dgGiMirrorShieldSymbolDL; -#else -static const char gGiMirrorShieldSymbolDL[] __attribute__((aligned (2))) = dgGiMirrorShieldSymbolDL; -#endif - -#define dobject_gi_shield_3Tex_000000 "__OTR__objects/object_gi_shield_3/object_gi_shield_3Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_shield_3Tex_000000[] = dobject_gi_shield_3Tex_000000; -#else -static const char object_gi_shield_3Tex_000000[] __attribute__((aligned (2))) = dobject_gi_shield_3Tex_000000; -#endif - -#define dobject_gi_shield_3Tex_000400 "__OTR__objects/object_gi_shield_3/object_gi_shield_3Tex_000400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_shield_3Tex_000400[] = dobject_gi_shield_3Tex_000400; -#else -static const char object_gi_shield_3Tex_000400[] __attribute__((aligned (2))) = dobject_gi_shield_3Tex_000400; -#endif - +#include "align_asset_macro.h" + +#define dgGiMirrorShieldDL "__OTR__objects/object_gi_shield_3/gGiMirrorShieldDL" +static const ALIGN_ASSET(2) char gGiMirrorShieldDL[] = dgGiMirrorShieldDL; + +#define dgGiMirrorShieldSymbolDL "__OTR__objects/object_gi_shield_3/gGiMirrorShieldSymbolDL" +static const ALIGN_ASSET(2) char gGiMirrorShieldSymbolDL[] = dgGiMirrorShieldSymbolDL; + +#define dobject_gi_shield_3Tex_000000 "__OTR__objects/object_gi_shield_3/object_gi_shield_3Tex_000000" +static const ALIGN_ASSET(2) char object_gi_shield_3Tex_000000[] = dobject_gi_shield_3Tex_000000; + +#define dobject_gi_shield_3Tex_000400 "__OTR__objects/object_gi_shield_3/object_gi_shield_3Tex_000400" +static const ALIGN_ASSET(2) char object_gi_shield_3Tex_000400[] = dobject_gi_shield_3Tex_000400; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_skj_mask/object_gi_skj_mask.h b/soh/assets/objects/object_gi_skj_mask/object_gi_skj_mask.h index 1dce19251..b5909732b 100644 --- a/soh/assets/objects/object_gi_skj_mask/object_gi_skj_mask.h +++ b/soh/assets/objects/object_gi_skj_mask/object_gi_skj_mask.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiSkullMaskDL "__OTR__objects/object_gi_skj_mask/gGiSkullMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSkullMaskDL[] = dgGiSkullMaskDL; -#else -static const char gGiSkullMaskDL[] __attribute__((aligned (2))) = dgGiSkullMaskDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiSkullMaskDL "__OTR__objects/object_gi_skj_mask/gGiSkullMaskDL" +static const ALIGN_ASSET(2) char gGiSkullMaskDL[] = dgGiSkullMaskDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_soldout/object_gi_soldout.h b/soh/assets/objects/object_gi_soldout/object_gi_soldout.h index 33aed1b57..b5742a283 100644 --- a/soh/assets/objects/object_gi_soldout/object_gi_soldout.h +++ b/soh/assets/objects/object_gi_soldout/object_gi_soldout.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiSoldOutDL "__OTR__objects/object_gi_soldout/gGiSoldOutDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSoldOutDL[] = dgGiSoldOutDL; -#else -static const char gGiSoldOutDL[] __attribute__((aligned (2))) = dgGiSoldOutDL; -#endif - -#define dobject_gi_soldoutTex_000000 "__OTR__objects/object_gi_soldout/object_gi_soldoutTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_soldoutTex_000000[] = dobject_gi_soldoutTex_000000; -#else -static const char object_gi_soldoutTex_000000[] __attribute__((aligned (2))) = dobject_gi_soldoutTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiSoldOutDL "__OTR__objects/object_gi_soldout/gGiSoldOutDL" +static const ALIGN_ASSET(2) char gGiSoldOutDL[] = dgGiSoldOutDL; + +#define dobject_gi_soldoutTex_000000 "__OTR__objects/object_gi_soldout/object_gi_soldoutTex_000000" +static const ALIGN_ASSET(2) char object_gi_soldoutTex_000000[] = dobject_gi_soldoutTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_soul/object_gi_soul.h b/soh/assets/objects/object_gi_soul/object_gi_soul.h index a9c96acbe..bf902f40d 100644 --- a/soh/assets/objects/object_gi_soul/object_gi_soul.h +++ b/soh/assets/objects/object_gi_soul/object_gi_soul.h @@ -1,30 +1,15 @@ #pragma once -#define dgGiFairyContainerBaseCapDL "__OTR__objects/object_gi_soul/gGiFairyContainerBaseCapDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFairyContainerBaseCapDL[] = dgGiFairyContainerBaseCapDL; -#else -static const char gGiFairyContainerBaseCapDL[] __attribute__((aligned (2))) = dgGiFairyContainerBaseCapDL; -#endif - -#define dgGiFairyContainerGlassDL "__OTR__objects/object_gi_soul/gGiFairyContainerGlassDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFairyContainerGlassDL[] = dgGiFairyContainerGlassDL; -#else -static const char gGiFairyContainerGlassDL[] __attribute__((aligned (2))) = dgGiFairyContainerGlassDL; -#endif - -#define dgGiFairyContainerContentsDL "__OTR__objects/object_gi_soul/gGiFairyContainerContentsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiFairyContainerContentsDL[] = dgGiFairyContainerContentsDL; -#else -static const char gGiFairyContainerContentsDL[] __attribute__((aligned (2))) = dgGiFairyContainerContentsDL; -#endif - -#define dobject_gi_soulTex_000000 "__OTR__objects/object_gi_soul/object_gi_soulTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_soulTex_000000[] = dobject_gi_soulTex_000000; -#else -static const char object_gi_soulTex_000000[] __attribute__((aligned (2))) = dobject_gi_soulTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiFairyContainerBaseCapDL "__OTR__objects/object_gi_soul/gGiFairyContainerBaseCapDL" +static const ALIGN_ASSET(2) char gGiFairyContainerBaseCapDL[] = dgGiFairyContainerBaseCapDL; + +#define dgGiFairyContainerGlassDL "__OTR__objects/object_gi_soul/gGiFairyContainerGlassDL" +static const ALIGN_ASSET(2) char gGiFairyContainerGlassDL[] = dgGiFairyContainerGlassDL; + +#define dgGiFairyContainerContentsDL "__OTR__objects/object_gi_soul/gGiFairyContainerContentsDL" +static const ALIGN_ASSET(2) char gGiFairyContainerContentsDL[] = dgGiFairyContainerContentsDL; + +#define dobject_gi_soulTex_000000 "__OTR__objects/object_gi_soul/object_gi_soulTex_000000" +static const ALIGN_ASSET(2) char object_gi_soulTex_000000[] = dobject_gi_soulTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_stick/object_gi_stick.h b/soh/assets/objects/object_gi_stick/object_gi_stick.h index e7c2ac76d..a8a3662d4 100644 --- a/soh/assets/objects/object_gi_stick/object_gi_stick.h +++ b/soh/assets/objects/object_gi_stick/object_gi_stick.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiStickDL "__OTR__objects/object_gi_stick/gGiStickDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiStickDL[] = dgGiStickDL; -#else -static const char gGiStickDL[] __attribute__((aligned (2))) = dgGiStickDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiStickDL "__OTR__objects/object_gi_stick/gGiStickDL" +static const ALIGN_ASSET(2) char gGiStickDL[] = dgGiStickDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_sutaru/object_gi_sutaru.h b/soh/assets/objects/object_gi_sutaru/object_gi_sutaru.h index c58c55e3b..9cf23e05e 100644 --- a/soh/assets/objects/object_gi_sutaru/object_gi_sutaru.h +++ b/soh/assets/objects/object_gi_sutaru/object_gi_sutaru.h @@ -1,16 +1,9 @@ #pragma once -#define dgGiSkulltulaTokenDL "__OTR__objects/object_gi_sutaru/gGiSkulltulaTokenDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSkulltulaTokenDL[] = dgGiSkulltulaTokenDL; -#else -static const char gGiSkulltulaTokenDL[] __attribute__((aligned (2))) = dgGiSkulltulaTokenDL; -#endif - -#define dgGiSkulltulaTokenFlameDL "__OTR__objects/object_gi_sutaru/gGiSkulltulaTokenFlameDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiSkulltulaTokenFlameDL[] = dgGiSkulltulaTokenFlameDL; -#else -static const char gGiSkulltulaTokenFlameDL[] __attribute__((aligned (2))) = dgGiSkulltulaTokenFlameDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiSkulltulaTokenDL "__OTR__objects/object_gi_sutaru/gGiSkulltulaTokenDL" +static const ALIGN_ASSET(2) char gGiSkulltulaTokenDL[] = dgGiSkulltulaTokenDL; + +#define dgGiSkulltulaTokenFlameDL "__OTR__objects/object_gi_sutaru/gGiSkulltulaTokenFlameDL" +static const ALIGN_ASSET(2) char gGiSkulltulaTokenFlameDL[] = dgGiSkulltulaTokenFlameDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_sword_1/object_gi_sword_1.h b/soh/assets/objects/object_gi_sword_1/object_gi_sword_1.h index f1de8fe83..4e8406499 100644 --- a/soh/assets/objects/object_gi_sword_1/object_gi_sword_1.h +++ b/soh/assets/objects/object_gi_sword_1/object_gi_sword_1.h @@ -1,9 +1,6 @@ #pragma once -#define dgGiKokiriSwordDL "__OTR__objects/object_gi_sword_1/gGiKokiriSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiKokiriSwordDL[] = dgGiKokiriSwordDL; -#else -static const char gGiKokiriSwordDL[] __attribute__((aligned (2))) = dgGiKokiriSwordDL; -#endif - +#include "align_asset_macro.h" + +#define dgGiKokiriSwordDL "__OTR__objects/object_gi_sword_1/gGiKokiriSwordDL" +static const ALIGN_ASSET(2) char gGiKokiriSwordDL[] = dgGiKokiriSwordDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_ticketstone/object_gi_ticketstone.h b/soh/assets/objects/object_gi_ticketstone/object_gi_ticketstone.h index 6f2b7f910..cde1a35fe 100644 --- a/soh/assets/objects/object_gi_ticketstone/object_gi_ticketstone.h +++ b/soh/assets/objects/object_gi_ticketstone/object_gi_ticketstone.h @@ -1,30 +1,15 @@ #pragma once -#define dgGiClaimCheckDL "__OTR__objects/object_gi_ticketstone/gGiClaimCheckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiClaimCheckDL[] = dgGiClaimCheckDL; -#else -static const char gGiClaimCheckDL[] __attribute__((aligned (2))) = dgGiClaimCheckDL; -#endif - -#define dgGiClaimCheckWritingDL "__OTR__objects/object_gi_ticketstone/gGiClaimCheckWritingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiClaimCheckWritingDL[] = dgGiClaimCheckWritingDL; -#else -static const char gGiClaimCheckWritingDL[] __attribute__((aligned (2))) = dgGiClaimCheckWritingDL; -#endif - -#define dobject_gi_ticketstoneTex_000240 "__OTR__objects/object_gi_ticketstone/object_gi_ticketstoneTex_000240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_ticketstoneTex_000240[] = dobject_gi_ticketstoneTex_000240; -#else -static const char object_gi_ticketstoneTex_000240[] __attribute__((aligned (2))) = dobject_gi_ticketstoneTex_000240; -#endif - -#define dobject_gi_ticketstoneTex_000000 "__OTR__objects/object_gi_ticketstone/object_gi_ticketstoneTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_ticketstoneTex_000000[] = dobject_gi_ticketstoneTex_000000; -#else -static const char object_gi_ticketstoneTex_000000[] __attribute__((aligned (2))) = dobject_gi_ticketstoneTex_000000; -#endif - +#include "align_asset_macro.h" + +#define dgGiClaimCheckDL "__OTR__objects/object_gi_ticketstone/gGiClaimCheckDL" +static const ALIGN_ASSET(2) char gGiClaimCheckDL[] = dgGiClaimCheckDL; + +#define dgGiClaimCheckWritingDL "__OTR__objects/object_gi_ticketstone/gGiClaimCheckWritingDL" +static const ALIGN_ASSET(2) char gGiClaimCheckWritingDL[] = dgGiClaimCheckWritingDL; + +#define dobject_gi_ticketstoneTex_000240 "__OTR__objects/object_gi_ticketstone/object_gi_ticketstoneTex_000240" +static const ALIGN_ASSET(2) char object_gi_ticketstoneTex_000240[] = dobject_gi_ticketstoneTex_000240; + +#define dobject_gi_ticketstoneTex_000000 "__OTR__objects/object_gi_ticketstone/object_gi_ticketstoneTex_000000" +static const ALIGN_ASSET(2) char object_gi_ticketstoneTex_000000[] = dobject_gi_ticketstoneTex_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_truth_mask/object_gi_truth_mask.h b/soh/assets/objects/object_gi_truth_mask/object_gi_truth_mask.h index 6977730e5..647455535 100644 --- a/soh/assets/objects/object_gi_truth_mask/object_gi_truth_mask.h +++ b/soh/assets/objects/object_gi_truth_mask/object_gi_truth_mask.h @@ -1,30 +1,15 @@ #pragma once -#define dgGiMaskOfTruthDL "__OTR__objects/object_gi_truth_mask/gGiMaskOfTruthDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMaskOfTruthDL[] = dgGiMaskOfTruthDL; -#else -static const char gGiMaskOfTruthDL[] __attribute__((aligned (2))) = dgGiMaskOfTruthDL; -#endif - -#define dgGiMaskOfTruthAccentsDL "__OTR__objects/object_gi_truth_mask/gGiMaskOfTruthAccentsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiMaskOfTruthAccentsDL[] = dgGiMaskOfTruthAccentsDL; -#else -static const char gGiMaskOfTruthAccentsDL[] __attribute__((aligned (2))) = dgGiMaskOfTruthAccentsDL; -#endif - -#define dobject_gi_truth_maskTex_000000 "__OTR__objects/object_gi_truth_mask/object_gi_truth_maskTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_truth_maskTex_000000[] = dobject_gi_truth_maskTex_000000; -#else -static const char object_gi_truth_maskTex_000000[] __attribute__((aligned (2))) = dobject_gi_truth_maskTex_000000; -#endif - -#define dobject_gi_truth_maskTex_000400 "__OTR__objects/object_gi_truth_mask/object_gi_truth_maskTex_000400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_truth_maskTex_000400[] = dobject_gi_truth_maskTex_000400; -#else -static const char object_gi_truth_maskTex_000400[] __attribute__((aligned (2))) = dobject_gi_truth_maskTex_000400; -#endif - +#include "align_asset_macro.h" + +#define dgGiMaskOfTruthDL "__OTR__objects/object_gi_truth_mask/gGiMaskOfTruthDL" +static const ALIGN_ASSET(2) char gGiMaskOfTruthDL[] = dgGiMaskOfTruthDL; + +#define dgGiMaskOfTruthAccentsDL "__OTR__objects/object_gi_truth_mask/gGiMaskOfTruthAccentsDL" +static const ALIGN_ASSET(2) char gGiMaskOfTruthAccentsDL[] = dgGiMaskOfTruthAccentsDL; + +#define dobject_gi_truth_maskTex_000000 "__OTR__objects/object_gi_truth_mask/object_gi_truth_maskTex_000000" +static const ALIGN_ASSET(2) char object_gi_truth_maskTex_000000[] = dobject_gi_truth_maskTex_000000; + +#define dobject_gi_truth_maskTex_000400 "__OTR__objects/object_gi_truth_mask/object_gi_truth_maskTex_000400" +static const ALIGN_ASSET(2) char object_gi_truth_maskTex_000400[] = dobject_gi_truth_maskTex_000400; \ No newline at end of file diff --git a/soh/assets/objects/object_gi_zoramask/object_gi_zoramask.h b/soh/assets/objects/object_gi_zoramask/object_gi_zoramask.h index bdbcc8a8a..80c44e1d9 100644 --- a/soh/assets/objects/object_gi_zoramask/object_gi_zoramask.h +++ b/soh/assets/objects/object_gi_zoramask/object_gi_zoramask.h @@ -1,44 +1,21 @@ #pragma once -#define dgGiZoraMaskDL "__OTR__objects/object_gi_zoramask/gGiZoraMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiZoraMaskDL[] = dgGiZoraMaskDL; -#else -static const char gGiZoraMaskDL[] __attribute__((aligned (2))) = dgGiZoraMaskDL; -#endif - -#define dobject_gi_zoramaskTex_000208 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTex_000208" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_zoramaskTex_000208[] = dobject_gi_zoramaskTex_000208; -#else -static const char object_gi_zoramaskTex_000208[] __attribute__((aligned (2))) = dobject_gi_zoramaskTex_000208; -#endif - -#define dobject_gi_zoramaskTLUT_000000 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTLUT_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_zoramaskTLUT_000000[] = dobject_gi_zoramaskTLUT_000000; -#else -static const char object_gi_zoramaskTLUT_000000[] __attribute__((aligned (2))) = dobject_gi_zoramaskTLUT_000000; -#endif - -#define dobject_gi_zoramaskTex_000248 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTex_000248" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_zoramaskTex_000248[] = dobject_gi_zoramaskTex_000248; -#else -static const char object_gi_zoramaskTex_000248[] __attribute__((aligned (2))) = dobject_gi_zoramaskTex_000248; -#endif - -#define dobject_gi_zoramaskTex_000648 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTex_000648" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_zoramaskTex_000648[] = dobject_gi_zoramaskTex_000648; -#else -static const char object_gi_zoramaskTex_000648[] __attribute__((aligned (2))) = dobject_gi_zoramaskTex_000648; -#endif - -#define dobject_gi_zoramaskTex_000A48 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTex_000A48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gi_zoramaskTex_000A48[] = dobject_gi_zoramaskTex_000A48; -#else -static const char object_gi_zoramaskTex_000A48[] __attribute__((aligned (2))) = dobject_gi_zoramaskTex_000A48; -#endif - +#include "align_asset_macro.h" + +#define dgGiZoraMaskDL "__OTR__objects/object_gi_zoramask/gGiZoraMaskDL" +static const ALIGN_ASSET(2) char gGiZoraMaskDL[] = dgGiZoraMaskDL; + +#define dobject_gi_zoramaskTex_000208 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTex_000208" +static const ALIGN_ASSET(2) char object_gi_zoramaskTex_000208[] = dobject_gi_zoramaskTex_000208; + +#define dobject_gi_zoramaskTLUT_000000 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTLUT_000000" +static const ALIGN_ASSET(2) char object_gi_zoramaskTLUT_000000[] = dobject_gi_zoramaskTLUT_000000; + +#define dobject_gi_zoramaskTex_000248 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTex_000248" +static const ALIGN_ASSET(2) char object_gi_zoramaskTex_000248[] = dobject_gi_zoramaskTex_000248; + +#define dobject_gi_zoramaskTex_000648 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTex_000648" +static const ALIGN_ASSET(2) char object_gi_zoramaskTex_000648[] = dobject_gi_zoramaskTex_000648; + +#define dobject_gi_zoramaskTex_000A48 "__OTR__objects/object_gi_zoramask/object_gi_zoramaskTex_000A48" +static const ALIGN_ASSET(2) char object_gi_zoramaskTex_000A48[] = dobject_gi_zoramaskTex_000A48; \ No newline at end of file diff --git a/soh/assets/objects/object_gj/object_gj.h b/soh/assets/objects/object_gj/object_gj.h index 2178940be..528753de7 100644 --- a/soh/assets/objects/object_gj/object_gj.h +++ b/soh/assets/objects/object_gj/object_gj.h @@ -1,205 +1,90 @@ #pragma once -#define dgGanonsCastleRubbleAroundArenaDL "__OTR__objects/object_gj/gGanonsCastleRubbleAroundArenaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubbleAroundArenaDL[] = dgGanonsCastleRubbleAroundArenaDL; -#else -static const char gGanonsCastleRubbleAroundArenaDL[] __attribute__((aligned (2))) = dgGanonsCastleRubbleAroundArenaDL; -#endif - -#define dgGanonsCastleRubbleAroundArenaCol "__OTR__objects/object_gj/gGanonsCastleRubbleAroundArenaCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubbleAroundArenaCol[] = dgGanonsCastleRubbleAroundArenaCol; -#else -static const char gGanonsCastleRubbleAroundArenaCol[] __attribute__((aligned (2))) = dgGanonsCastleRubbleAroundArenaCol; -#endif - -#define dgGanonsCastleRubble4DL "__OTR__objects/object_gj/gGanonsCastleRubble4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble4DL[] = dgGanonsCastleRubble4DL; -#else -static const char gGanonsCastleRubble4DL[] __attribute__((aligned (2))) = dgGanonsCastleRubble4DL; -#endif - -#define dgGanonsCastleRubble4Col "__OTR__objects/object_gj/gGanonsCastleRubble4Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble4Col[] = dgGanonsCastleRubble4Col; -#else -static const char gGanonsCastleRubble4Col[] __attribute__((aligned (2))) = dgGanonsCastleRubble4Col; -#endif - -#define dgGanonsCastleRubble5DL "__OTR__objects/object_gj/gGanonsCastleRubble5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble5DL[] = dgGanonsCastleRubble5DL; -#else -static const char gGanonsCastleRubble5DL[] __attribute__((aligned (2))) = dgGanonsCastleRubble5DL; -#endif - -#define dgGanonsCastleRubble5Col "__OTR__objects/object_gj/gGanonsCastleRubble5Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble5Col[] = dgGanonsCastleRubble5Col; -#else -static const char gGanonsCastleRubble5Col[] __attribute__((aligned (2))) = dgGanonsCastleRubble5Col; -#endif - -#define dgGanonsCastleRubble6DL "__OTR__objects/object_gj/gGanonsCastleRubble6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble6DL[] = dgGanonsCastleRubble6DL; -#else -static const char gGanonsCastleRubble6DL[] __attribute__((aligned (2))) = dgGanonsCastleRubble6DL; -#endif - -#define dgGanonsCastleRubble6Col "__OTR__objects/object_gj/gGanonsCastleRubble6Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble6Col[] = dgGanonsCastleRubble6Col; -#else -static const char gGanonsCastleRubble6Col[] __attribute__((aligned (2))) = dgGanonsCastleRubble6Col; -#endif - -#define dgGanonsCastleRubble7DL "__OTR__objects/object_gj/gGanonsCastleRubble7DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble7DL[] = dgGanonsCastleRubble7DL; -#else -static const char gGanonsCastleRubble7DL[] __attribute__((aligned (2))) = dgGanonsCastleRubble7DL; -#endif - -#define dgGanonsCastleRubble7Col "__OTR__objects/object_gj/gGanonsCastleRubble7Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble7Col[] = dgGanonsCastleRubble7Col; -#else -static const char gGanonsCastleRubble7Col[] __attribute__((aligned (2))) = dgGanonsCastleRubble7Col; -#endif - -#define dgGanonsCastleRubble2DL "__OTR__objects/object_gj/gGanonsCastleRubble2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble2DL[] = dgGanonsCastleRubble2DL; -#else -static const char gGanonsCastleRubble2DL[] __attribute__((aligned (2))) = dgGanonsCastleRubble2DL; -#endif - -#define dgGanonsCastleRubble2Col "__OTR__objects/object_gj/gGanonsCastleRubble2Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble2Col[] = dgGanonsCastleRubble2Col; -#else -static const char gGanonsCastleRubble2Col[] __attribute__((aligned (2))) = dgGanonsCastleRubble2Col; -#endif - -#define dgGanonsCastleRubble3DL "__OTR__objects/object_gj/gGanonsCastleRubble3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble3DL[] = dgGanonsCastleRubble3DL; -#else -static const char gGanonsCastleRubble3DL[] __attribute__((aligned (2))) = dgGanonsCastleRubble3DL; -#endif - -#define dgGanonsCastleRubble3Col "__OTR__objects/object_gj/gGanonsCastleRubble3Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubble3Col[] = dgGanonsCastleRubble3Col; -#else -static const char gGanonsCastleRubble3Col[] __attribute__((aligned (2))) = dgGanonsCastleRubble3Col; -#endif - -#define dgGanonsCastleRubbleTallDL "__OTR__objects/object_gj/gGanonsCastleRubbleTallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubbleTallDL[] = dgGanonsCastleRubbleTallDL; -#else -static const char gGanonsCastleRubbleTallDL[] __attribute__((aligned (2))) = dgGanonsCastleRubbleTallDL; -#endif - -#define dgGanonsCastleRubbleTallCol "__OTR__objects/object_gj/gGanonsCastleRubbleTallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleRubbleTallCol[] = dgGanonsCastleRubbleTallCol; -#else -static const char gGanonsCastleRubbleTallCol[] __attribute__((aligned (2))) = dgGanonsCastleRubbleTallCol; -#endif - -#define dgGanonsCastleUnusedSpikeVariantTex "__OTR__objects/object_gj/gGanonsCastleUnusedSpikeVariantTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleUnusedSpikeVariantTex[] = dgGanonsCastleUnusedSpikeVariantTex; -#else -static const char gGanonsCastleUnusedSpikeVariantTex[] __attribute__((aligned (2))) = dgGanonsCastleUnusedSpikeVariantTex; -#endif - -#define dgGanonsCastleUnusedWallTex "__OTR__objects/object_gj/gGanonsCastleUnusedWallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleUnusedWallTex[] = dgGanonsCastleUnusedWallTex; -#else -static const char gGanonsCastleUnusedWallTex[] __attribute__((aligned (2))) = dgGanonsCastleUnusedWallTex; -#endif - -#define dgGanonsCastleUnusedTex_00A320 "__OTR__objects/object_gj/gGanonsCastleUnusedTex_00A320" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleUnusedTex_00A320[] = dgGanonsCastleUnusedTex_00A320; -#else -static const char gGanonsCastleUnusedTex_00A320[] __attribute__((aligned (2))) = dgGanonsCastleUnusedTex_00A320; -#endif - -#define dobject_gjTex_003D20 "__OTR__objects/object_gj/object_gjTex_003D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_003D20[] = dobject_gjTex_003D20; -#else -static const char object_gjTex_003D20[] __attribute__((aligned (2))) = dobject_gjTex_003D20; -#endif - -#define dobject_gjTex_003B20 "__OTR__objects/object_gj/object_gjTex_003B20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_003B20[] = dobject_gjTex_003B20; -#else -static const char object_gjTex_003B20[] __attribute__((aligned (2))) = dobject_gjTex_003B20; -#endif - -#define dobject_gjTex_004F20 "__OTR__objects/object_gj/object_gjTex_004F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_004F20[] = dobject_gjTex_004F20; -#else -static const char object_gjTex_004F20[] __attribute__((aligned (2))) = dobject_gjTex_004F20; -#endif - -#define dobject_gjTex_003C20 "__OTR__objects/object_gj/object_gjTex_003C20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_003C20[] = dobject_gjTex_003C20; -#else -static const char object_gjTex_003C20[] __attribute__((aligned (2))) = dobject_gjTex_003C20; -#endif - -#define dobject_gjTex_003F20 "__OTR__objects/object_gj/object_gjTex_003F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_003F20[] = dobject_gjTex_003F20; -#else -static const char object_gjTex_003F20[] __attribute__((aligned (2))) = dobject_gjTex_003F20; -#endif - -#define dobject_gjTex_005F20 "__OTR__objects/object_gj/object_gjTex_005F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_005F20[] = dobject_gjTex_005F20; -#else -static const char object_gjTex_005F20[] __attribute__((aligned (2))) = dobject_gjTex_005F20; -#endif - -#define dobject_gjTex_007B20 "__OTR__objects/object_gj/object_gjTex_007B20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_007B20[] = dobject_gjTex_007B20; -#else -static const char object_gjTex_007B20[] __attribute__((aligned (2))) = dobject_gjTex_007B20; -#endif - -#define dobject_gjTex_007320 "__OTR__objects/object_gj/object_gjTex_007320" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_007320[] = dobject_gjTex_007320; -#else -static const char object_gjTex_007320[] __attribute__((aligned (2))) = dobject_gjTex_007320; -#endif - -#define dobject_gjTex_007720 "__OTR__objects/object_gj/object_gjTex_007720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_007720[] = dobject_gjTex_007720; -#else -static const char object_gjTex_007720[] __attribute__((aligned (2))) = dobject_gjTex_007720; -#endif - -#define dobject_gjTex_006F20 "__OTR__objects/object_gj/object_gjTex_006F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gjTex_006F20[] = dobject_gjTex_006F20; -#else -static const char object_gjTex_006F20[] __attribute__((aligned (2))) = dobject_gjTex_006F20; -#endif - +#include "align_asset_macro.h" + +#define dgGanonsCastleRubbleAroundArenaDL "__OTR__objects/object_gj/gGanonsCastleRubbleAroundArenaDL" +static const ALIGN_ASSET(2) char gGanonsCastleRubbleAroundArenaDL[] = dgGanonsCastleRubbleAroundArenaDL; + +#define dgGanonsCastleRubbleAroundArenaCol "__OTR__objects/object_gj/gGanonsCastleRubbleAroundArenaCol" +static const ALIGN_ASSET(2) char gGanonsCastleRubbleAroundArenaCol[] = dgGanonsCastleRubbleAroundArenaCol; + +#define dgGanonsCastleRubble4DL "__OTR__objects/object_gj/gGanonsCastleRubble4DL" +static const ALIGN_ASSET(2) char gGanonsCastleRubble4DL[] = dgGanonsCastleRubble4DL; + +#define dgGanonsCastleRubble4Col "__OTR__objects/object_gj/gGanonsCastleRubble4Col" +static const ALIGN_ASSET(2) char gGanonsCastleRubble4Col[] = dgGanonsCastleRubble4Col; + +#define dgGanonsCastleRubble5DL "__OTR__objects/object_gj/gGanonsCastleRubble5DL" +static const ALIGN_ASSET(2) char gGanonsCastleRubble5DL[] = dgGanonsCastleRubble5DL; + +#define dgGanonsCastleRubble5Col "__OTR__objects/object_gj/gGanonsCastleRubble5Col" +static const ALIGN_ASSET(2) char gGanonsCastleRubble5Col[] = dgGanonsCastleRubble5Col; + +#define dgGanonsCastleRubble6DL "__OTR__objects/object_gj/gGanonsCastleRubble6DL" +static const ALIGN_ASSET(2) char gGanonsCastleRubble6DL[] = dgGanonsCastleRubble6DL; + +#define dgGanonsCastleRubble6Col "__OTR__objects/object_gj/gGanonsCastleRubble6Col" +static const ALIGN_ASSET(2) char gGanonsCastleRubble6Col[] = dgGanonsCastleRubble6Col; + +#define dgGanonsCastleRubble7DL "__OTR__objects/object_gj/gGanonsCastleRubble7DL" +static const ALIGN_ASSET(2) char gGanonsCastleRubble7DL[] = dgGanonsCastleRubble7DL; + +#define dgGanonsCastleRubble7Col "__OTR__objects/object_gj/gGanonsCastleRubble7Col" +static const ALIGN_ASSET(2) char gGanonsCastleRubble7Col[] = dgGanonsCastleRubble7Col; + +#define dgGanonsCastleRubble2DL "__OTR__objects/object_gj/gGanonsCastleRubble2DL" +static const ALIGN_ASSET(2) char gGanonsCastleRubble2DL[] = dgGanonsCastleRubble2DL; + +#define dgGanonsCastleRubble2Col "__OTR__objects/object_gj/gGanonsCastleRubble2Col" +static const ALIGN_ASSET(2) char gGanonsCastleRubble2Col[] = dgGanonsCastleRubble2Col; + +#define dgGanonsCastleRubble3DL "__OTR__objects/object_gj/gGanonsCastleRubble3DL" +static const ALIGN_ASSET(2) char gGanonsCastleRubble3DL[] = dgGanonsCastleRubble3DL; + +#define dgGanonsCastleRubble3Col "__OTR__objects/object_gj/gGanonsCastleRubble3Col" +static const ALIGN_ASSET(2) char gGanonsCastleRubble3Col[] = dgGanonsCastleRubble3Col; + +#define dgGanonsCastleRubbleTallDL "__OTR__objects/object_gj/gGanonsCastleRubbleTallDL" +static const ALIGN_ASSET(2) char gGanonsCastleRubbleTallDL[] = dgGanonsCastleRubbleTallDL; + +#define dgGanonsCastleRubbleTallCol "__OTR__objects/object_gj/gGanonsCastleRubbleTallCol" +static const ALIGN_ASSET(2) char gGanonsCastleRubbleTallCol[] = dgGanonsCastleRubbleTallCol; + +#define dgGanonsCastleUnusedSpikeVariantTex "__OTR__objects/object_gj/gGanonsCastleUnusedSpikeVariantTex" +static const ALIGN_ASSET(2) char gGanonsCastleUnusedSpikeVariantTex[] = dgGanonsCastleUnusedSpikeVariantTex; + +#define dgGanonsCastleUnusedWallTex "__OTR__objects/object_gj/gGanonsCastleUnusedWallTex" +static const ALIGN_ASSET(2) char gGanonsCastleUnusedWallTex[] = dgGanonsCastleUnusedWallTex; + +#define dgGanonsCastleUnusedTex_00A320 "__OTR__objects/object_gj/gGanonsCastleUnusedTex_00A320" +static const ALIGN_ASSET(2) char gGanonsCastleUnusedTex_00A320[] = dgGanonsCastleUnusedTex_00A320; + +#define dobject_gjTex_003D20 "__OTR__objects/object_gj/object_gjTex_003D20" +static const ALIGN_ASSET(2) char object_gjTex_003D20[] = dobject_gjTex_003D20; + +#define dobject_gjTex_003B20 "__OTR__objects/object_gj/object_gjTex_003B20" +static const ALIGN_ASSET(2) char object_gjTex_003B20[] = dobject_gjTex_003B20; + +#define dobject_gjTex_004F20 "__OTR__objects/object_gj/object_gjTex_004F20" +static const ALIGN_ASSET(2) char object_gjTex_004F20[] = dobject_gjTex_004F20; + +#define dobject_gjTex_003C20 "__OTR__objects/object_gj/object_gjTex_003C20" +static const ALIGN_ASSET(2) char object_gjTex_003C20[] = dobject_gjTex_003C20; + +#define dobject_gjTex_003F20 "__OTR__objects/object_gj/object_gjTex_003F20" +static const ALIGN_ASSET(2) char object_gjTex_003F20[] = dobject_gjTex_003F20; + +#define dobject_gjTex_005F20 "__OTR__objects/object_gj/object_gjTex_005F20" +static const ALIGN_ASSET(2) char object_gjTex_005F20[] = dobject_gjTex_005F20; + +#define dobject_gjTex_007B20 "__OTR__objects/object_gj/object_gjTex_007B20" +static const ALIGN_ASSET(2) char object_gjTex_007B20[] = dobject_gjTex_007B20; + +#define dobject_gjTex_007320 "__OTR__objects/object_gj/object_gjTex_007320" +static const ALIGN_ASSET(2) char object_gjTex_007320[] = dobject_gjTex_007320; + +#define dobject_gjTex_007720 "__OTR__objects/object_gj/object_gjTex_007720" +static const ALIGN_ASSET(2) char object_gjTex_007720[] = dobject_gjTex_007720; + +#define dobject_gjTex_006F20 "__OTR__objects/object_gj/object_gjTex_006F20" +static const ALIGN_ASSET(2) char object_gjTex_006F20[] = dobject_gjTex_006F20; \ No newline at end of file diff --git a/soh/assets/objects/object_gjyo_objects/object_gjyo_objects.h b/soh/assets/objects/object_gjyo_objects/object_gjyo_objects.h index 7c8f1bc32..ba7530ba2 100644 --- a/soh/assets/objects/object_gjyo_objects/object_gjyo_objects.h +++ b/soh/assets/objects/object_gjyo_objects/object_gjyo_objects.h @@ -1,23 +1,12 @@ #pragma once -#define dgRainbowBridgeTex "__OTR__objects/object_gjyo_objects/gRainbowBridgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRainbowBridgeTex[] = dgRainbowBridgeTex; -#else -static const char gRainbowBridgeTex[] __attribute__((aligned (2))) = dgRainbowBridgeTex; -#endif - -#define dgRainbowBridgeDL "__OTR__objects/object_gjyo_objects/gRainbowBridgeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRainbowBridgeDL[] = dgRainbowBridgeDL; -#else -static const char gRainbowBridgeDL[] __attribute__((aligned (2))) = dgRainbowBridgeDL; -#endif - -#define dgRainbowBridgeCol "__OTR__objects/object_gjyo_objects/gRainbowBridgeCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gRainbowBridgeCol[] = dgRainbowBridgeCol; -#else -static const char gRainbowBridgeCol[] __attribute__((aligned (2))) = dgRainbowBridgeCol; -#endif - +#include "align_asset_macro.h" + +#define dgRainbowBridgeTex "__OTR__objects/object_gjyo_objects/gRainbowBridgeTex" +static const ALIGN_ASSET(2) char gRainbowBridgeTex[] = dgRainbowBridgeTex; + +#define dgRainbowBridgeDL "__OTR__objects/object_gjyo_objects/gRainbowBridgeDL" +static const ALIGN_ASSET(2) char gRainbowBridgeDL[] = dgRainbowBridgeDL; + +#define dgRainbowBridgeCol "__OTR__objects/object_gjyo_objects/gRainbowBridgeCol" +static const ALIGN_ASSET(2) char gRainbowBridgeCol[] = dgRainbowBridgeCol; \ No newline at end of file diff --git a/soh/assets/objects/object_gla/object_gla.h b/soh/assets/objects/object_gla/object_gla.h index 8da05126a..af330c64c 100644 --- a/soh/assets/objects/object_gla/object_gla.h +++ b/soh/assets/objects/object_gla/object_gla.h @@ -1,324 +1,141 @@ #pragma once -#define dgGerudoPurpleSkel "__OTR__objects/object_gla/gGerudoPurpleSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleSkel[] = dgGerudoPurpleSkel; -#else -static const char gGerudoPurpleSkel[] __attribute__((aligned (2))) = dgGerudoPurpleSkel; -#endif - -#define dgGerudoPurpleTorsoDL "__OTR__objects/object_gla/gGerudoPurpleTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleTorsoDL[] = dgGerudoPurpleTorsoDL; -#else -static const char gGerudoPurpleTorsoDL[] __attribute__((aligned (2))) = dgGerudoPurpleTorsoDL; -#endif - -#define dgGerudoPurplePonytailDL "__OTR__objects/object_gla/gGerudoPurplePonytailDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurplePonytailDL[] = dgGerudoPurplePonytailDL; -#else -static const char gGerudoPurplePonytailDL[] __attribute__((aligned (2))) = dgGerudoPurplePonytailDL; -#endif - -#define dgGerudoPurpleVeilDL "__OTR__objects/object_gla/gGerudoPurpleVeilDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleVeilDL[] = dgGerudoPurpleVeilDL; -#else -static const char gGerudoPurpleVeilDL[] __attribute__((aligned (2))) = dgGerudoPurpleVeilDL; -#endif - -#define dgGerudoPurpleHeadDL "__OTR__objects/object_gla/gGerudoPurpleHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleHeadDL[] = dgGerudoPurpleHeadDL; -#else -static const char gGerudoPurpleHeadDL[] __attribute__((aligned (2))) = dgGerudoPurpleHeadDL; -#endif - -#define dgGerudoPurpleRightUpperArmDL "__OTR__objects/object_gla/gGerudoPurpleRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleRightUpperArmDL[] = dgGerudoPurpleRightUpperArmDL; -#else -static const char gGerudoPurpleRightUpperArmDL[] __attribute__((aligned (2))) = dgGerudoPurpleRightUpperArmDL; -#endif - -#define dgGerudoPurpleRightForearmDL "__OTR__objects/object_gla/gGerudoPurpleRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleRightForearmDL[] = dgGerudoPurpleRightForearmDL; -#else -static const char gGerudoPurpleRightForearmDL[] __attribute__((aligned (2))) = dgGerudoPurpleRightForearmDL; -#endif - -#define dgGerudoPurpleRightHandDL "__OTR__objects/object_gla/gGerudoPurpleRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleRightHandDL[] = dgGerudoPurpleRightHandDL; -#else -static const char gGerudoPurpleRightHandDL[] __attribute__((aligned (2))) = dgGerudoPurpleRightHandDL; -#endif - -#define dgGerudoPurpleGlaiveDL "__OTR__objects/object_gla/gGerudoPurpleGlaiveDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleGlaiveDL[] = dgGerudoPurpleGlaiveDL; -#else -static const char gGerudoPurpleGlaiveDL[] __attribute__((aligned (2))) = dgGerudoPurpleGlaiveDL; -#endif - -#define dgGerudoPurpleLeftUpperArmDL "__OTR__objects/object_gla/gGerudoPurpleLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleLeftUpperArmDL[] = dgGerudoPurpleLeftUpperArmDL; -#else -static const char gGerudoPurpleLeftUpperArmDL[] __attribute__((aligned (2))) = dgGerudoPurpleLeftUpperArmDL; -#endif - -#define dgGerudoPurpleLeftForearmDL "__OTR__objects/object_gla/gGerudoPurpleLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleLeftForearmDL[] = dgGerudoPurpleLeftForearmDL; -#else -static const char gGerudoPurpleLeftForearmDL[] __attribute__((aligned (2))) = dgGerudoPurpleLeftForearmDL; -#endif - -#define dgGerudoPurpleLeftHandDL "__OTR__objects/object_gla/gGerudoPurpleLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleLeftHandDL[] = dgGerudoPurpleLeftHandDL; -#else -static const char gGerudoPurpleLeftHandDL[] __attribute__((aligned (2))) = dgGerudoPurpleLeftHandDL; -#endif - -#define dgGerudoPurpleLeftThighDL "__OTR__objects/object_gla/gGerudoPurpleLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleLeftThighDL[] = dgGerudoPurpleLeftThighDL; -#else -static const char gGerudoPurpleLeftThighDL[] __attribute__((aligned (2))) = dgGerudoPurpleLeftThighDL; -#endif - -#define dgGerudoPurpleLeftShinDL "__OTR__objects/object_gla/gGerudoPurpleLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleLeftShinDL[] = dgGerudoPurpleLeftShinDL; -#else -static const char gGerudoPurpleLeftShinDL[] __attribute__((aligned (2))) = dgGerudoPurpleLeftShinDL; -#endif - -#define dgGerudoPurpleLeftFootDL "__OTR__objects/object_gla/gGerudoPurpleLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleLeftFootDL[] = dgGerudoPurpleLeftFootDL; -#else -static const char gGerudoPurpleLeftFootDL[] __attribute__((aligned (2))) = dgGerudoPurpleLeftFootDL; -#endif - -#define dgGerudoPurpleRightThighDL "__OTR__objects/object_gla/gGerudoPurpleRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleRightThighDL[] = dgGerudoPurpleRightThighDL; -#else -static const char gGerudoPurpleRightThighDL[] __attribute__((aligned (2))) = dgGerudoPurpleRightThighDL; -#endif - -#define dgGerudoPurpleRightShinDL "__OTR__objects/object_gla/gGerudoPurpleRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleRightShinDL[] = dgGerudoPurpleRightShinDL; -#else -static const char gGerudoPurpleRightShinDL[] __attribute__((aligned (2))) = dgGerudoPurpleRightShinDL; -#endif - -#define dgGerudoPurpleRightFootDL "__OTR__objects/object_gla/gGerudoPurpleRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleRightFootDL[] = dgGerudoPurpleRightFootDL; -#else -static const char gGerudoPurpleRightFootDL[] __attribute__((aligned (2))) = dgGerudoPurpleRightFootDL; -#endif - -#define dgGerudoPurpleWaistDL "__OTR__objects/object_gla/gGerudoPurpleWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleWaistDL[] = dgGerudoPurpleWaistDL; -#else -static const char gGerudoPurpleWaistDL[] __attribute__((aligned (2))) = dgGerudoPurpleWaistDL; -#endif - -#define dgGerudoPurple1TLUT "__OTR__objects/object_gla/gGerudoPurple1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurple1TLUT[] = dgGerudoPurple1TLUT; -#else -static const char gGerudoPurple1TLUT[] __attribute__((aligned (2))) = dgGerudoPurple1TLUT; -#endif - -#define dgGerudoPurple2TLUT "__OTR__objects/object_gla/gGerudoPurple2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurple2TLUT[] = dgGerudoPurple2TLUT; -#else -static const char gGerudoPurple2TLUT[] __attribute__((aligned (2))) = dgGerudoPurple2TLUT; -#endif - -#define dgGerudoPurpleSkinShadowTex "__OTR__objects/object_gla/gGerudoPurpleSkinShadowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleSkinShadowTex[] = dgGerudoPurpleSkinShadowTex; -#else -static const char gGerudoPurpleSkinShadowTex[] __attribute__((aligned (2))) = dgGerudoPurpleSkinShadowTex; -#endif - -#define dgGerudoPurpleNavelTex "__OTR__objects/object_gla/gGerudoPurpleNavelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleNavelTex[] = dgGerudoPurpleNavelTex; -#else -static const char gGerudoPurpleNavelTex[] __attribute__((aligned (2))) = dgGerudoPurpleNavelTex; -#endif - -#define dgGerudoPurpleChestJewelTex "__OTR__objects/object_gla/gGerudoPurpleChestJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleChestJewelTex[] = dgGerudoPurpleChestJewelTex; -#else -static const char gGerudoPurpleChestJewelTex[] __attribute__((aligned (2))) = dgGerudoPurpleChestJewelTex; -#endif - -#define dgGerudoPurpleSkinEdgeTex "__OTR__objects/object_gla/gGerudoPurpleSkinEdgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleSkinEdgeTex[] = dgGerudoPurpleSkinEdgeTex; -#else -static const char gGerudoPurpleSkinEdgeTex[] __attribute__((aligned (2))) = dgGerudoPurpleSkinEdgeTex; -#endif - -#define dgGerudoPurpleEarTex "__OTR__objects/object_gla/gGerudoPurpleEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleEarTex[] = dgGerudoPurpleEarTex; -#else -static const char gGerudoPurpleEarTex[] __attribute__((aligned (2))) = dgGerudoPurpleEarTex; -#endif - -#define dgGerudoPurpleDarkFabricTex "__OTR__objects/object_gla/gGerudoPurpleDarkFabricTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleDarkFabricTex[] = dgGerudoPurpleDarkFabricTex; -#else -static const char gGerudoPurpleDarkFabricTex[] __attribute__((aligned (2))) = dgGerudoPurpleDarkFabricTex; -#endif - -#define dgGerudoPurpleFabricFoldTex "__OTR__objects/object_gla/gGerudoPurpleFabricFoldTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleFabricFoldTex[] = dgGerudoPurpleFabricFoldTex; -#else -static const char gGerudoPurpleFabricFoldTex[] __attribute__((aligned (2))) = dgGerudoPurpleFabricFoldTex; -#endif - -#define dgGerudoPurpleGlaiveGuard "__OTR__objects/object_gla/gGerudoPurpleGlaiveGuard" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleGlaiveGuard[] = dgGerudoPurpleGlaiveGuard; -#else -static const char gGerudoPurpleGlaiveGuard[] __attribute__((aligned (2))) = dgGerudoPurpleGlaiveGuard; -#endif - -#define dgGerudoPurpleGlaiveBladeFabricPatternTex "__OTR__objects/object_gla/gGerudoPurpleGlaiveBladeFabricPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleGlaiveBladeFabricPatternTex[] = dgGerudoPurpleGlaiveBladeFabricPatternTex; -#else -static const char gGerudoPurpleGlaiveBladeFabricPatternTex[] __attribute__((aligned (2))) = dgGerudoPurpleGlaiveBladeFabricPatternTex; -#endif - -#define dgGerudoPurpleShoeUpperTex "__OTR__objects/object_gla/gGerudoPurpleShoeUpperTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleShoeUpperTex[] = dgGerudoPurpleShoeUpperTex; -#else -static const char gGerudoPurpleShoeUpperTex[] __attribute__((aligned (2))) = dgGerudoPurpleShoeUpperTex; -#endif - -#define dgGerudoPurpleGlaiveHaftShoeSoleTex "__OTR__objects/object_gla/gGerudoPurpleGlaiveHaftShoeSoleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleGlaiveHaftShoeSoleTex[] = dgGerudoPurpleGlaiveHaftShoeSoleTex; -#else -static const char gGerudoPurpleGlaiveHaftShoeSoleTex[] __attribute__((aligned (2))) = dgGerudoPurpleGlaiveHaftShoeSoleTex; -#endif - -#define dgGerudoPurpleMetalTex "__OTR__objects/object_gla/gGerudoPurpleMetalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleMetalTex[] = dgGerudoPurpleMetalTex; -#else -static const char gGerudoPurpleMetalTex[] __attribute__((aligned (2))) = dgGerudoPurpleMetalTex; -#endif - -#define dgGerudoPurpleHairTex "__OTR__objects/object_gla/gGerudoPurpleHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleHairTex[] = dgGerudoPurpleHairTex; -#else -static const char gGerudoPurpleHairTex[] __attribute__((aligned (2))) = dgGerudoPurpleHairTex; -#endif - -#define dgGerudoPurpleLipsFingersTex "__OTR__objects/object_gla/gGerudoPurpleLipsFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleLipsFingersTex[] = dgGerudoPurpleLipsFingersTex; -#else -static const char gGerudoPurpleLipsFingersTex[] __attribute__((aligned (2))) = dgGerudoPurpleLipsFingersTex; -#endif - -#define dgGerudoPurpleEyeOpenTex "__OTR__objects/object_gla/gGerudoPurpleEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleEyeOpenTex[] = dgGerudoPurpleEyeOpenTex; -#else -static const char gGerudoPurpleEyeOpenTex[] __attribute__((aligned (2))) = dgGerudoPurpleEyeOpenTex; -#endif - -#define dgGerudoPurpleEyeHalfTex "__OTR__objects/object_gla/gGerudoPurpleEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleEyeHalfTex[] = dgGerudoPurpleEyeHalfTex; -#else -static const char gGerudoPurpleEyeHalfTex[] __attribute__((aligned (2))) = dgGerudoPurpleEyeHalfTex; -#endif - -#define dgGerudoPurpleEyeClosedTex "__OTR__objects/object_gla/gGerudoPurpleEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleEyeClosedTex[] = dgGerudoPurpleEyeClosedTex; -#else -static const char gGerudoPurpleEyeClosedTex[] __attribute__((aligned (2))) = dgGerudoPurpleEyeClosedTex; -#endif - -#define dgGerudoPurpleUnusedHorizontalSlashAnim "__OTR__objects/object_gla/gGerudoPurpleUnusedHorizontalSlashAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleUnusedHorizontalSlashAnim[] = dgGerudoPurpleUnusedHorizontalSlashAnim; -#else -static const char gGerudoPurpleUnusedHorizontalSlashAnim[] __attribute__((aligned (2))) = dgGerudoPurpleUnusedHorizontalSlashAnim; -#endif - -#define dgGerudoPurpleUnusedSlashToStandingAnim "__OTR__objects/object_gla/gGerudoPurpleUnusedSlashToStandingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleUnusedSlashToStandingAnim[] = dgGerudoPurpleUnusedSlashToStandingAnim; -#else -static const char gGerudoPurpleUnusedSlashToStandingAnim[] __attribute__((aligned (2))) = dgGerudoPurpleUnusedSlashToStandingAnim; -#endif - -#define dgGerudoPurpleFallingToGroundAnim "__OTR__objects/object_gla/gGerudoPurpleFallingToGroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleFallingToGroundAnim[] = dgGerudoPurpleFallingToGroundAnim; -#else -static const char gGerudoPurpleFallingToGroundAnim[] __attribute__((aligned (2))) = dgGerudoPurpleFallingToGroundAnim; -#endif - -#define dgGerudoPurpleUnusedStandingToCrouchAnim "__OTR__objects/object_gla/gGerudoPurpleUnusedStandingToCrouchAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleUnusedStandingToCrouchAnim[] = dgGerudoPurpleUnusedStandingToCrouchAnim; -#else -static const char gGerudoPurpleUnusedStandingToCrouchAnim[] __attribute__((aligned (2))) = dgGerudoPurpleUnusedStandingToCrouchAnim; -#endif - -#define dgGerudoPurpleUnusedCrouchingLookAroundAnim "__OTR__objects/object_gla/gGerudoPurpleUnusedCrouchingLookAroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleUnusedCrouchingLookAroundAnim[] = dgGerudoPurpleUnusedCrouchingLookAroundAnim; -#else -static const char gGerudoPurpleUnusedCrouchingLookAroundAnim[] __attribute__((aligned (2))) = dgGerudoPurpleUnusedCrouchingLookAroundAnim; -#endif - -#define dgGerudoPurpleChargingAnim "__OTR__objects/object_gla/gGerudoPurpleChargingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleChargingAnim[] = dgGerudoPurpleChargingAnim; -#else -static const char gGerudoPurpleChargingAnim[] __attribute__((aligned (2))) = dgGerudoPurpleChargingAnim; -#endif - -#define dgGerudoPurpleLookingAboutAnim "__OTR__objects/object_gla/gGerudoPurpleLookingAboutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleLookingAboutAnim[] = dgGerudoPurpleLookingAboutAnim; -#else -static const char gGerudoPurpleLookingAboutAnim[] __attribute__((aligned (2))) = dgGerudoPurpleLookingAboutAnim; -#endif - -#define dgGerudoPurpleWalkingAnim "__OTR__objects/object_gla/gGerudoPurpleWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoPurpleWalkingAnim[] = dgGerudoPurpleWalkingAnim; -#else -static const char gGerudoPurpleWalkingAnim[] __attribute__((aligned (2))) = dgGerudoPurpleWalkingAnim; -#endif - +#include "align_asset_macro.h" + +#define dgGerudoPurpleSkel "__OTR__objects/object_gla/gGerudoPurpleSkel" +static const ALIGN_ASSET(2) char gGerudoPurpleSkel[] = dgGerudoPurpleSkel; + +#define dgGerudoPurpleTorsoDL "__OTR__objects/object_gla/gGerudoPurpleTorsoDL" +static const ALIGN_ASSET(2) char gGerudoPurpleTorsoDL[] = dgGerudoPurpleTorsoDL; + +#define dgGerudoPurplePonytailDL "__OTR__objects/object_gla/gGerudoPurplePonytailDL" +static const ALIGN_ASSET(2) char gGerudoPurplePonytailDL[] = dgGerudoPurplePonytailDL; + +#define dgGerudoPurpleVeilDL "__OTR__objects/object_gla/gGerudoPurpleVeilDL" +static const ALIGN_ASSET(2) char gGerudoPurpleVeilDL[] = dgGerudoPurpleVeilDL; + +#define dgGerudoPurpleHeadDL "__OTR__objects/object_gla/gGerudoPurpleHeadDL" +static const ALIGN_ASSET(2) char gGerudoPurpleHeadDL[] = dgGerudoPurpleHeadDL; + +#define dgGerudoPurpleRightUpperArmDL "__OTR__objects/object_gla/gGerudoPurpleRightUpperArmDL" +static const ALIGN_ASSET(2) char gGerudoPurpleRightUpperArmDL[] = dgGerudoPurpleRightUpperArmDL; + +#define dgGerudoPurpleRightForearmDL "__OTR__objects/object_gla/gGerudoPurpleRightForearmDL" +static const ALIGN_ASSET(2) char gGerudoPurpleRightForearmDL[] = dgGerudoPurpleRightForearmDL; + +#define dgGerudoPurpleRightHandDL "__OTR__objects/object_gla/gGerudoPurpleRightHandDL" +static const ALIGN_ASSET(2) char gGerudoPurpleRightHandDL[] = dgGerudoPurpleRightHandDL; + +#define dgGerudoPurpleGlaiveDL "__OTR__objects/object_gla/gGerudoPurpleGlaiveDL" +static const ALIGN_ASSET(2) char gGerudoPurpleGlaiveDL[] = dgGerudoPurpleGlaiveDL; + +#define dgGerudoPurpleLeftUpperArmDL "__OTR__objects/object_gla/gGerudoPurpleLeftUpperArmDL" +static const ALIGN_ASSET(2) char gGerudoPurpleLeftUpperArmDL[] = dgGerudoPurpleLeftUpperArmDL; + +#define dgGerudoPurpleLeftForearmDL "__OTR__objects/object_gla/gGerudoPurpleLeftForearmDL" +static const ALIGN_ASSET(2) char gGerudoPurpleLeftForearmDL[] = dgGerudoPurpleLeftForearmDL; + +#define dgGerudoPurpleLeftHandDL "__OTR__objects/object_gla/gGerudoPurpleLeftHandDL" +static const ALIGN_ASSET(2) char gGerudoPurpleLeftHandDL[] = dgGerudoPurpleLeftHandDL; + +#define dgGerudoPurpleLeftThighDL "__OTR__objects/object_gla/gGerudoPurpleLeftThighDL" +static const ALIGN_ASSET(2) char gGerudoPurpleLeftThighDL[] = dgGerudoPurpleLeftThighDL; + +#define dgGerudoPurpleLeftShinDL "__OTR__objects/object_gla/gGerudoPurpleLeftShinDL" +static const ALIGN_ASSET(2) char gGerudoPurpleLeftShinDL[] = dgGerudoPurpleLeftShinDL; + +#define dgGerudoPurpleLeftFootDL "__OTR__objects/object_gla/gGerudoPurpleLeftFootDL" +static const ALIGN_ASSET(2) char gGerudoPurpleLeftFootDL[] = dgGerudoPurpleLeftFootDL; + +#define dgGerudoPurpleRightThighDL "__OTR__objects/object_gla/gGerudoPurpleRightThighDL" +static const ALIGN_ASSET(2) char gGerudoPurpleRightThighDL[] = dgGerudoPurpleRightThighDL; + +#define dgGerudoPurpleRightShinDL "__OTR__objects/object_gla/gGerudoPurpleRightShinDL" +static const ALIGN_ASSET(2) char gGerudoPurpleRightShinDL[] = dgGerudoPurpleRightShinDL; + +#define dgGerudoPurpleRightFootDL "__OTR__objects/object_gla/gGerudoPurpleRightFootDL" +static const ALIGN_ASSET(2) char gGerudoPurpleRightFootDL[] = dgGerudoPurpleRightFootDL; + +#define dgGerudoPurpleWaistDL "__OTR__objects/object_gla/gGerudoPurpleWaistDL" +static const ALIGN_ASSET(2) char gGerudoPurpleWaistDL[] = dgGerudoPurpleWaistDL; + +#define dgGerudoPurple1TLUT "__OTR__objects/object_gla/gGerudoPurple1TLUT" +static const ALIGN_ASSET(2) char gGerudoPurple1TLUT[] = dgGerudoPurple1TLUT; + +#define dgGerudoPurple2TLUT "__OTR__objects/object_gla/gGerudoPurple2TLUT" +static const ALIGN_ASSET(2) char gGerudoPurple2TLUT[] = dgGerudoPurple2TLUT; + +#define dgGerudoPurpleSkinShadowTex "__OTR__objects/object_gla/gGerudoPurpleSkinShadowTex" +static const ALIGN_ASSET(2) char gGerudoPurpleSkinShadowTex[] = dgGerudoPurpleSkinShadowTex; + +#define dgGerudoPurpleNavelTex "__OTR__objects/object_gla/gGerudoPurpleNavelTex" +static const ALIGN_ASSET(2) char gGerudoPurpleNavelTex[] = dgGerudoPurpleNavelTex; + +#define dgGerudoPurpleChestJewelTex "__OTR__objects/object_gla/gGerudoPurpleChestJewelTex" +static const ALIGN_ASSET(2) char gGerudoPurpleChestJewelTex[] = dgGerudoPurpleChestJewelTex; + +#define dgGerudoPurpleSkinEdgeTex "__OTR__objects/object_gla/gGerudoPurpleSkinEdgeTex" +static const ALIGN_ASSET(2) char gGerudoPurpleSkinEdgeTex[] = dgGerudoPurpleSkinEdgeTex; + +#define dgGerudoPurpleEarTex "__OTR__objects/object_gla/gGerudoPurpleEarTex" +static const ALIGN_ASSET(2) char gGerudoPurpleEarTex[] = dgGerudoPurpleEarTex; + +#define dgGerudoPurpleDarkFabricTex "__OTR__objects/object_gla/gGerudoPurpleDarkFabricTex" +static const ALIGN_ASSET(2) char gGerudoPurpleDarkFabricTex[] = dgGerudoPurpleDarkFabricTex; + +#define dgGerudoPurpleFabricFoldTex "__OTR__objects/object_gla/gGerudoPurpleFabricFoldTex" +static const ALIGN_ASSET(2) char gGerudoPurpleFabricFoldTex[] = dgGerudoPurpleFabricFoldTex; + +#define dgGerudoPurpleGlaiveGuard "__OTR__objects/object_gla/gGerudoPurpleGlaiveGuard" +static const ALIGN_ASSET(2) char gGerudoPurpleGlaiveGuard[] = dgGerudoPurpleGlaiveGuard; + +#define dgGerudoPurpleGlaiveBladeFabricPatternTex "__OTR__objects/object_gla/gGerudoPurpleGlaiveBladeFabricPatternTex" +static const ALIGN_ASSET(2) char gGerudoPurpleGlaiveBladeFabricPatternTex[] = dgGerudoPurpleGlaiveBladeFabricPatternTex; + +#define dgGerudoPurpleShoeUpperTex "__OTR__objects/object_gla/gGerudoPurpleShoeUpperTex" +static const ALIGN_ASSET(2) char gGerudoPurpleShoeUpperTex[] = dgGerudoPurpleShoeUpperTex; + +#define dgGerudoPurpleGlaiveHaftShoeSoleTex "__OTR__objects/object_gla/gGerudoPurpleGlaiveHaftShoeSoleTex" +static const ALIGN_ASSET(2) char gGerudoPurpleGlaiveHaftShoeSoleTex[] = dgGerudoPurpleGlaiveHaftShoeSoleTex; + +#define dgGerudoPurpleMetalTex "__OTR__objects/object_gla/gGerudoPurpleMetalTex" +static const ALIGN_ASSET(2) char gGerudoPurpleMetalTex[] = dgGerudoPurpleMetalTex; + +#define dgGerudoPurpleHairTex "__OTR__objects/object_gla/gGerudoPurpleHairTex" +static const ALIGN_ASSET(2) char gGerudoPurpleHairTex[] = dgGerudoPurpleHairTex; + +#define dgGerudoPurpleLipsFingersTex "__OTR__objects/object_gla/gGerudoPurpleLipsFingersTex" +static const ALIGN_ASSET(2) char gGerudoPurpleLipsFingersTex[] = dgGerudoPurpleLipsFingersTex; + +#define dgGerudoPurpleEyeOpenTex "__OTR__objects/object_gla/gGerudoPurpleEyeOpenTex" +static const ALIGN_ASSET(2) char gGerudoPurpleEyeOpenTex[] = dgGerudoPurpleEyeOpenTex; + +#define dgGerudoPurpleEyeHalfTex "__OTR__objects/object_gla/gGerudoPurpleEyeHalfTex" +static const ALIGN_ASSET(2) char gGerudoPurpleEyeHalfTex[] = dgGerudoPurpleEyeHalfTex; + +#define dgGerudoPurpleEyeClosedTex "__OTR__objects/object_gla/gGerudoPurpleEyeClosedTex" +static const ALIGN_ASSET(2) char gGerudoPurpleEyeClosedTex[] = dgGerudoPurpleEyeClosedTex; + +#define dgGerudoPurpleUnusedHorizontalSlashAnim "__OTR__objects/object_gla/gGerudoPurpleUnusedHorizontalSlashAnim" +static const ALIGN_ASSET(2) char gGerudoPurpleUnusedHorizontalSlashAnim[] = dgGerudoPurpleUnusedHorizontalSlashAnim; + +#define dgGerudoPurpleUnusedSlashToStandingAnim "__OTR__objects/object_gla/gGerudoPurpleUnusedSlashToStandingAnim" +static const ALIGN_ASSET(2) char gGerudoPurpleUnusedSlashToStandingAnim[] = dgGerudoPurpleUnusedSlashToStandingAnim; + +#define dgGerudoPurpleFallingToGroundAnim "__OTR__objects/object_gla/gGerudoPurpleFallingToGroundAnim" +static const ALIGN_ASSET(2) char gGerudoPurpleFallingToGroundAnim[] = dgGerudoPurpleFallingToGroundAnim; + +#define dgGerudoPurpleUnusedStandingToCrouchAnim "__OTR__objects/object_gla/gGerudoPurpleUnusedStandingToCrouchAnim" +static const ALIGN_ASSET(2) char gGerudoPurpleUnusedStandingToCrouchAnim[] = dgGerudoPurpleUnusedStandingToCrouchAnim; + +#define dgGerudoPurpleUnusedCrouchingLookAroundAnim "__OTR__objects/object_gla/gGerudoPurpleUnusedCrouchingLookAroundAnim" +static const ALIGN_ASSET(2) char gGerudoPurpleUnusedCrouchingLookAroundAnim[] = dgGerudoPurpleUnusedCrouchingLookAroundAnim; + +#define dgGerudoPurpleChargingAnim "__OTR__objects/object_gla/gGerudoPurpleChargingAnim" +static const ALIGN_ASSET(2) char gGerudoPurpleChargingAnim[] = dgGerudoPurpleChargingAnim; + +#define dgGerudoPurpleLookingAboutAnim "__OTR__objects/object_gla/gGerudoPurpleLookingAboutAnim" +static const ALIGN_ASSET(2) char gGerudoPurpleLookingAboutAnim[] = dgGerudoPurpleLookingAboutAnim; + +#define dgGerudoPurpleWalkingAnim "__OTR__objects/object_gla/gGerudoPurpleWalkingAnim" +static const ALIGN_ASSET(2) char gGerudoPurpleWalkingAnim[] = dgGerudoPurpleWalkingAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_gm/object_gm.h b/soh/assets/objects/object_gm/object_gm.h index 1315f86ca..6e8f1e4b5 100644 --- a/soh/assets/objects/object_gm/object_gm.h +++ b/soh/assets/objects/object_gm/object_gm.h @@ -1,9 +1,6 @@ #pragma once -#define dobject_gm_Anim_0002B8 "__OTR__objects/object_gm/object_gm_Anim_0002B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gm_Anim_0002B8[] = dobject_gm_Anim_0002B8; -#else -static const char object_gm_Anim_0002B8[] __attribute__((aligned (2))) = dobject_gm_Anim_0002B8; -#endif - +#include "align_asset_macro.h" + +#define dobject_gm_Anim_0002B8 "__OTR__objects/object_gm/object_gm_Anim_0002B8" +static const ALIGN_ASSET(2) char object_gm_Anim_0002B8[] = dobject_gm_Anim_0002B8; \ No newline at end of file diff --git a/soh/assets/objects/object_gnd/object_gnd.h b/soh/assets/objects/object_gnd/object_gnd.h index d64c00baa..989dda49b 100644 --- a/soh/assets/objects/object_gnd/object_gnd.h +++ b/soh/assets/objects/object_gnd/object_gnd.h @@ -1,527 +1,228 @@ #pragma once -#define dgPhantomGanonSkel "__OTR__objects/object_gnd/gPhantomGanonSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkel[] = dgPhantomGanonSkel; -#else -static const char gPhantomGanonSkel[] __attribute__((aligned (2))) = dgPhantomGanonSkel; -#endif - -#define dgPhantomGanonRideAnim "__OTR__objects/object_gnd/gPhantomGanonRideAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonRideAnim[] = dgPhantomGanonRideAnim; -#else -static const char gPhantomGanonRideAnim[] __attribute__((aligned (2))) = dgPhantomGanonRideAnim; -#endif - -#define dgPhantomGanonMaskOnAnim "__OTR__objects/object_gnd/gPhantomGanonMaskOnAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonMaskOnAnim[] = dgPhantomGanonMaskOnAnim; -#else -static const char gPhantomGanonMaskOnAnim[] __attribute__((aligned (2))) = dgPhantomGanonMaskOnAnim; -#endif - -#define dgPhantomGanonRidePoseAnim "__OTR__objects/object_gnd/gPhantomGanonRidePoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonRidePoseAnim[] = dgPhantomGanonRidePoseAnim; -#else -static const char gPhantomGanonRidePoseAnim[] __attribute__((aligned (2))) = dgPhantomGanonRidePoseAnim; -#endif - -#define dgPhantomGanonHorseRearingAnim "__OTR__objects/object_gnd/gPhantomGanonHorseRearingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonHorseRearingAnim[] = dgPhantomGanonHorseRearingAnim; -#else -static const char gPhantomGanonHorseRearingAnim[] __attribute__((aligned (2))) = dgPhantomGanonHorseRearingAnim; -#endif - -#define dgPhantomGanonRideSpearRaiseAnim "__OTR__objects/object_gnd/gPhantomGanonRideSpearRaiseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonRideSpearRaiseAnim[] = dgPhantomGanonRideSpearRaiseAnim; -#else -static const char gPhantomGanonRideSpearRaiseAnim[] __attribute__((aligned (2))) = dgPhantomGanonRideSpearRaiseAnim; -#endif - -#define dgPhantomGanonRideSpearStrikeAnim "__OTR__objects/object_gnd/gPhantomGanonRideSpearStrikeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonRideSpearStrikeAnim[] = dgPhantomGanonRideSpearStrikeAnim; -#else -static const char gPhantomGanonRideSpearStrikeAnim[] __attribute__((aligned (2))) = dgPhantomGanonRideSpearStrikeAnim; -#endif - -#define dgPhantomGanonRideSpearResetAnim "__OTR__objects/object_gnd/gPhantomGanonRideSpearResetAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonRideSpearResetAnim[] = dgPhantomGanonRideSpearResetAnim; -#else -static const char gPhantomGanonRideSpearResetAnim[] __attribute__((aligned (2))) = dgPhantomGanonRideSpearResetAnim; -#endif - -#define dgPhantomGanonNeutralAnim "__OTR__objects/object_gnd/gPhantomGanonNeutralAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonNeutralAnim[] = dgPhantomGanonNeutralAnim; -#else -static const char gPhantomGanonNeutralAnim[] __attribute__((aligned (2))) = dgPhantomGanonNeutralAnim; -#endif - -#define dgPhantomGanonThrowAnim "__OTR__objects/object_gnd/gPhantomGanonThrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonThrowAnim[] = dgPhantomGanonThrowAnim; -#else -static const char gPhantomGanonThrowAnim[] __attribute__((aligned (2))) = dgPhantomGanonThrowAnim; -#endif - -#define dgPhantomGanonThrowEndAnim "__OTR__objects/object_gnd/gPhantomGanonThrowEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonThrowEndAnim[] = dgPhantomGanonThrowEndAnim; -#else -static const char gPhantomGanonThrowEndAnim[] __attribute__((aligned (2))) = dgPhantomGanonThrowEndAnim; -#endif - -#define dgPhantomGanonReturn1Anim "__OTR__objects/object_gnd/gPhantomGanonReturn1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonReturn1Anim[] = dgPhantomGanonReturn1Anim; -#else -static const char gPhantomGanonReturn1Anim[] __attribute__((aligned (2))) = dgPhantomGanonReturn1Anim; -#endif - -#define dgPhantomGanonReturn2Anim "__OTR__objects/object_gnd/gPhantomGanonReturn2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonReturn2Anim[] = dgPhantomGanonReturn2Anim; -#else -static const char gPhantomGanonReturn2Anim[] __attribute__((aligned (2))) = dgPhantomGanonReturn2Anim; -#endif - -#define dgPhantomGanonBlockAnim "__OTR__objects/object_gnd/gPhantomGanonBlockAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonBlockAnim[] = dgPhantomGanonBlockAnim; -#else -static const char gPhantomGanonBlockAnim[] __attribute__((aligned (2))) = dgPhantomGanonBlockAnim; -#endif - -#define dgPhantomGanonChargeWindupAnim "__OTR__objects/object_gnd/gPhantomGanonChargeWindupAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonChargeWindupAnim[] = dgPhantomGanonChargeWindupAnim; -#else -static const char gPhantomGanonChargeWindupAnim[] __attribute__((aligned (2))) = dgPhantomGanonChargeWindupAnim; -#endif - -#define dgPhantomGanonChargeStartAnim "__OTR__objects/object_gnd/gPhantomGanonChargeStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonChargeStartAnim[] = dgPhantomGanonChargeStartAnim; -#else -static const char gPhantomGanonChargeStartAnim[] __attribute__((aligned (2))) = dgPhantomGanonChargeStartAnim; -#endif - -#define dgPhantomGanonChargeAnim "__OTR__objects/object_gnd/gPhantomGanonChargeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonChargeAnim[] = dgPhantomGanonChargeAnim; -#else -static const char gPhantomGanonChargeAnim[] __attribute__((aligned (2))) = dgPhantomGanonChargeAnim; -#endif - -#define dgPhantomGanonAirDamageAnim "__OTR__objects/object_gnd/gPhantomGanonAirDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonAirDamageAnim[] = dgPhantomGanonAirDamageAnim; -#else -static const char gPhantomGanonAirDamageAnim[] __attribute__((aligned (2))) = dgPhantomGanonAirDamageAnim; -#endif - -#define dgPhantomGanonGroundDamageAnim "__OTR__objects/object_gnd/gPhantomGanonGroundDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonGroundDamageAnim[] = dgPhantomGanonGroundDamageAnim; -#else -static const char gPhantomGanonGroundDamageAnim[] __attribute__((aligned (2))) = dgPhantomGanonGroundDamageAnim; -#endif - -#define dgPhantomGanonStunnedAnim "__OTR__objects/object_gnd/gPhantomGanonStunnedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonStunnedAnim[] = dgPhantomGanonStunnedAnim; -#else -static const char gPhantomGanonStunnedAnim[] __attribute__((aligned (2))) = dgPhantomGanonStunnedAnim; -#endif - -#define dgPhantomGanonDeathBlowAnim "__OTR__objects/object_gnd/gPhantomGanonDeathBlowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonDeathBlowAnim[] = dgPhantomGanonDeathBlowAnim; -#else -static const char gPhantomGanonDeathBlowAnim[] __attribute__((aligned (2))) = dgPhantomGanonDeathBlowAnim; -#endif - -#define dgPhantomGanonLimpAnim "__OTR__objects/object_gnd/gPhantomGanonLimpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimpAnim[] = dgPhantomGanonLimpAnim; -#else -static const char gPhantomGanonLimpAnim[] __attribute__((aligned (2))) = dgPhantomGanonLimpAnim; -#endif - -#define dgPhantomGanonScreamAnim "__OTR__objects/object_gnd/gPhantomGanonScreamAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonScreamAnim[] = dgPhantomGanonScreamAnim; -#else -static const char gPhantomGanonScreamAnim[] __attribute__((aligned (2))) = dgPhantomGanonScreamAnim; -#endif - -#define dgPhantomGanonLastPoseAnim "__OTR__objects/object_gnd/gPhantomGanonLastPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLastPoseAnim[] = dgPhantomGanonLastPoseAnim; -#else -static const char gPhantomGanonLastPoseAnim[] __attribute__((aligned (2))) = dgPhantomGanonLastPoseAnim; -#endif - -#define dgPhantomGanonLimbTex_00B380 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00B380" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00B380[] = dgPhantomGanonLimbTex_00B380; -#else -static const char gPhantomGanonLimbTex_00B380[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00B380; -#endif - -#define dgPhantomGanonLimbTex_00A800 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A800" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00A800[] = dgPhantomGanonLimbTex_00A800; -#else -static const char gPhantomGanonLimbTex_00A800[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00A800; -#endif - -#define dgPhantomGanonLimbTex_00AE80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00AE80" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00AE80[] = dgPhantomGanonLimbTex_00AE80; -#else -static const char gPhantomGanonLimbTex_00AE80[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00AE80; -#endif - -#define dgPhantomGanonLimbTex_00AF00 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00AF00" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00AF00[] = dgPhantomGanonLimbTex_00AF00; -#else -static const char gPhantomGanonLimbTex_00AF00[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00AF00; -#endif - -#define dgPhantomGanonLimbTex_00C180 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C180" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00C180[] = dgPhantomGanonLimbTex_00C180; -#else -static const char gPhantomGanonLimbTex_00C180[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00C180; -#endif - -#define dgPhantomGanonLimbTex_00C400 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C400" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00C400[] = dgPhantomGanonLimbTex_00C400; -#else -static const char gPhantomGanonLimbTex_00C400[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00C400; -#endif - -#define dgPhantomGanonLimbTex_00B980 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00B980" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00B980[] = dgPhantomGanonLimbTex_00B980; -#else -static const char gPhantomGanonLimbTex_00B980[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00B980; -#endif - -#define dgPhantomGanonLimbTex_00C480 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C480" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00C480[] = dgPhantomGanonLimbTex_00C480; -#else -static const char gPhantomGanonLimbTex_00C480[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00C480; -#endif - -#define dgPhantomGanonLimbTex_00BC80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00BC80" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00BC80[] = dgPhantomGanonLimbTex_00BC80; -#else -static const char gPhantomGanonLimbTex_00BC80[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00BC80; -#endif - -#define dgPhantomGanonLimbTex_00BD80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00BD80" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00BD80[] = dgPhantomGanonLimbTex_00BD80; -#else -static const char gPhantomGanonLimbTex_00BD80[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00BD80; -#endif - -#define dgPhantomGanonLimbTex_00C080 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C080" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00C080[] = dgPhantomGanonLimbTex_00C080; -#else -static const char gPhantomGanonLimbTex_00C080[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00C080; -#endif - -#define dgPhantomGanonLimbTex_00C200 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C200" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00C200[] = dgPhantomGanonLimbTex_00C200; -#else -static const char gPhantomGanonLimbTex_00C200[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00C200; -#endif - -#define dgPhantomGanonLimbTex_00A000 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A000" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00A000[] = dgPhantomGanonLimbTex_00A000; -#else -static const char gPhantomGanonLimbTex_00A000[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00A000; -#endif - -#define dgPhantomGanonLimbTex_00A200 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A200" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00A200[] = dgPhantomGanonLimbTex_00A200; -#else -static const char gPhantomGanonLimbTex_00A200[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00A200; -#endif - -#define dgPhantomGanonLimbTex_00A400 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A400" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00A400[] = dgPhantomGanonLimbTex_00A400; -#else -static const char gPhantomGanonLimbTex_00A400[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00A400; -#endif - -#define dgPhantomGanonLimbTex_00A600 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A600" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00A600[] = dgPhantomGanonLimbTex_00A600; -#else -static const char gPhantomGanonLimbTex_00A600[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00A600; -#endif - -#define dgPhantomGanonLimbTex_00A880 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A880" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00A880[] = dgPhantomGanonLimbTex_00A880; -#else -static const char gPhantomGanonLimbTex_00A880[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00A880; -#endif - -#define dgPhantomGanonLimbTex_00B780 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00B780" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00B780[] = dgPhantomGanonLimbTex_00B780; -#else -static const char gPhantomGanonLimbTex_00B780[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00B780; -#endif - -#define dgPhantomGanonLimbTex_00BA80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00BA80" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00BA80[] = dgPhantomGanonLimbTex_00BA80; -#else -static const char gPhantomGanonLimbTex_00BA80[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00BA80; -#endif - -#define dgPhantomGanonLimbTex_00BE80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00BE80" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00BE80[] = dgPhantomGanonLimbTex_00BE80; -#else -static const char gPhantomGanonLimbTex_00BE80[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00BE80; -#endif - -#define dgPhantomGanonLimbTex_00AA80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00AA80" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00AA80[] = dgPhantomGanonLimbTex_00AA80; -#else -static const char gPhantomGanonLimbTex_00AA80[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00AA80; -#endif - -#define dgPhantomGanonLimbTex_00AF80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00AF80" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonLimbTex_00AF80[] = dgPhantomGanonLimbTex_00AF80; -#else -static const char gPhantomGanonLimbTex_00AF80[] __attribute__((aligned (2))) = dgPhantomGanonLimbTex_00AF80; -#endif - -#define dgPhantomGanonFaceDL "__OTR__objects/object_gnd/gPhantomGanonFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonFaceDL[] = dgPhantomGanonFaceDL; -#else -static const char gPhantomGanonFaceDL[] __attribute__((aligned (2))) = dgPhantomGanonFaceDL; -#endif - -#define dgPhantomGanonEyeTLUT "__OTR__objects/object_gnd/gPhantomGanonEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonEyeTLUT[] = dgPhantomGanonEyeTLUT; -#else -static const char gPhantomGanonEyeTLUT[] __attribute__((aligned (2))) = dgPhantomGanonEyeTLUT; -#endif - -#define dgPhantomGanonMouthTLUT "__OTR__objects/object_gnd/gPhantomGanonMouthTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonMouthTLUT[] = dgPhantomGanonMouthTLUT; -#else -static const char gPhantomGanonMouthTLUT[] __attribute__((aligned (2))) = dgPhantomGanonMouthTLUT; -#endif - -#define dgPhantomGanonEyeTex "__OTR__objects/object_gnd/gPhantomGanonEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonEyeTex[] = dgPhantomGanonEyeTex; -#else -static const char gPhantomGanonEyeTex[] __attribute__((aligned (2))) = dgPhantomGanonEyeTex; -#endif - -#define dgPhantomGanonSmileTex "__OTR__objects/object_gnd/gPhantomGanonSmileTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSmileTex[] = dgPhantomGanonSmileTex; -#else -static const char gPhantomGanonSmileTex[] __attribute__((aligned (2))) = dgPhantomGanonSmileTex; -#endif - -#define dgPhantomGanonMouthTex "__OTR__objects/object_gnd/gPhantomGanonMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonMouthTex[] = dgPhantomGanonMouthTex; -#else -static const char gPhantomGanonMouthTex[] __attribute__((aligned (2))) = dgPhantomGanonMouthTex; -#endif - -#define dgPhantomGanonAnim_003854 "__OTR__objects/object_gnd/gPhantomGanonAnim_003854" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonAnim_003854[] = dgPhantomGanonAnim_003854; -#else -static const char gPhantomGanonAnim_003854[] __attribute__((aligned (2))) = dgPhantomGanonAnim_003854; -#endif - -#define dgPhantomGanonAnim_00D398 "__OTR__objects/object_gnd/gPhantomGanonAnim_00D398" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonAnim_00D398[] = dgPhantomGanonAnim_00D398; -#else -static const char gPhantomGanonAnim_00D398[] __attribute__((aligned (2))) = dgPhantomGanonAnim_00D398; -#endif - -#define dgPhantomGanonAnim_00CC84 "__OTR__objects/object_gnd/gPhantomGanonAnim_00CC84" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonAnim_00CC84[] = dgPhantomGanonAnim_00CC84; -#else -static const char gPhantomGanonAnim_00CC84[] __attribute__((aligned (2))) = dgPhantomGanonAnim_00CC84; -#endif - -#define dgPhantomGanonAnim_012320 "__OTR__objects/object_gnd/gPhantomGanonAnim_012320" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonAnim_012320[] = dgPhantomGanonAnim_012320; -#else -static const char gPhantomGanonAnim_012320[] __attribute__((aligned (2))) = dgPhantomGanonAnim_012320; -#endif - -#define dgPhantomGanonBarsDL "__OTR__objects/object_gnd/gPhantomGanonBarsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonBarsDL[] = dgPhantomGanonBarsDL; -#else -static const char gPhantomGanonBarsDL[] __attribute__((aligned (2))) = dgPhantomGanonBarsDL; -#endif - -#define dgPhantomGanonBarsCol "__OTR__objects/object_gnd/gPhantomGanonBarsCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonBarsCol[] = dgPhantomGanonBarsCol; -#else -static const char gPhantomGanonBarsCol[] __attribute__((aligned (2))) = dgPhantomGanonBarsCol; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0[] = dgPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0; -#else -static const char gPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C5BCDL_008918 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5BCDL_008918" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C5BCDL_008918[] = dgPhantomGanonSkelLimbsLimb_00C5BCDL_008918; -#else -static const char gPhantomGanonSkelLimbsLimb_00C5BCDL_008918[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C5BCDL_008918; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0[] = dgPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0; -#else -static const char gPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C5E0DL_009A80 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5E0DL_009A80" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C5E0DL_009A80[] = dgPhantomGanonSkelLimbsLimb_00C5E0DL_009A80; -#else -static const char gPhantomGanonSkelLimbsLimb_00C5E0DL_009A80[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C5E0DL_009A80; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8[] = dgPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8; -#else -static const char gPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8[] = dgPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8; -#else -static const char gPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C610DL_009298 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C610DL_009298" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C610DL_009298[] = dgPhantomGanonSkelLimbsLimb_00C610DL_009298; -#else -static const char gPhantomGanonSkelLimbsLimb_00C610DL_009298[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C610DL_009298; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C61CDL_008BE0 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C61CDL_008BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C61CDL_008BE0[] = dgPhantomGanonSkelLimbsLimb_00C61CDL_008BE0; -#else -static const char gPhantomGanonSkelLimbsLimb_00C61CDL_008BE0[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C61CDL_008BE0; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C628DL_0080F8 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C628DL_0080F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C628DL_0080F8[] = dgPhantomGanonSkelLimbsLimb_00C628DL_0080F8; -#else -static const char gPhantomGanonSkelLimbsLimb_00C628DL_0080F8[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C628DL_0080F8; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C640DL_009038 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C640DL_009038" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C640DL_009038[] = dgPhantomGanonSkelLimbsLimb_00C640DL_009038; -#else -static const char gPhantomGanonSkelLimbsLimb_00C640DL_009038[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C640DL_009038; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C658DL_009520 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C658DL_009520" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C658DL_009520[] = dgPhantomGanonSkelLimbsLimb_00C658DL_009520; -#else -static const char gPhantomGanonSkelLimbsLimb_00C658DL_009520[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C658DL_009520; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C664DL_009650 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C664DL_009650" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C664DL_009650[] = dgPhantomGanonSkelLimbsLimb_00C664DL_009650; -#else -static const char gPhantomGanonSkelLimbsLimb_00C664DL_009650[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C664DL_009650; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C670DL_009460 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C670DL_009460" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C670DL_009460[] = dgPhantomGanonSkelLimbsLimb_00C670DL_009460; -#else -static const char gPhantomGanonSkelLimbsLimb_00C670DL_009460[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C670DL_009460; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C688DL_009ED0 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C688DL_009ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C688DL_009ED0[] = dgPhantomGanonSkelLimbsLimb_00C688DL_009ED0; -#else -static const char gPhantomGanonSkelLimbsLimb_00C688DL_009ED0[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C688DL_009ED0; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C694DL_009D68 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C694DL_009D68" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C694DL_009D68[] = dgPhantomGanonSkelLimbsLimb_00C694DL_009D68; -#else -static const char gPhantomGanonSkelLimbsLimb_00C694DL_009D68[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C694DL_009D68; -#endif - -#define dgPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8[] = dgPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8; -#else -static const char gPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8[] __attribute__((aligned (2))) = dgPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8; -#endif - -#define dobject_gndTex_012B50 "__OTR__objects/object_gnd/object_gndTex_012B50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gndTex_012B50[] = dobject_gndTex_012B50; -#else -static const char object_gndTex_012B50[] __attribute__((aligned (2))) = dobject_gndTex_012B50; -#endif - +#include "align_asset_macro.h" + +#define dgPhantomGanonSkel "__OTR__objects/object_gnd/gPhantomGanonSkel" +static const ALIGN_ASSET(2) char gPhantomGanonSkel[] = dgPhantomGanonSkel; + +#define dgPhantomGanonRideAnim "__OTR__objects/object_gnd/gPhantomGanonRideAnim" +static const ALIGN_ASSET(2) char gPhantomGanonRideAnim[] = dgPhantomGanonRideAnim; + +#define dgPhantomGanonMaskOnAnim "__OTR__objects/object_gnd/gPhantomGanonMaskOnAnim" +static const ALIGN_ASSET(2) char gPhantomGanonMaskOnAnim[] = dgPhantomGanonMaskOnAnim; + +#define dgPhantomGanonRidePoseAnim "__OTR__objects/object_gnd/gPhantomGanonRidePoseAnim" +static const ALIGN_ASSET(2) char gPhantomGanonRidePoseAnim[] = dgPhantomGanonRidePoseAnim; + +#define dgPhantomGanonHorseRearingAnim "__OTR__objects/object_gnd/gPhantomGanonHorseRearingAnim" +static const ALIGN_ASSET(2) char gPhantomGanonHorseRearingAnim[] = dgPhantomGanonHorseRearingAnim; + +#define dgPhantomGanonRideSpearRaiseAnim "__OTR__objects/object_gnd/gPhantomGanonRideSpearRaiseAnim" +static const ALIGN_ASSET(2) char gPhantomGanonRideSpearRaiseAnim[] = dgPhantomGanonRideSpearRaiseAnim; + +#define dgPhantomGanonRideSpearStrikeAnim "__OTR__objects/object_gnd/gPhantomGanonRideSpearStrikeAnim" +static const ALIGN_ASSET(2) char gPhantomGanonRideSpearStrikeAnim[] = dgPhantomGanonRideSpearStrikeAnim; + +#define dgPhantomGanonRideSpearResetAnim "__OTR__objects/object_gnd/gPhantomGanonRideSpearResetAnim" +static const ALIGN_ASSET(2) char gPhantomGanonRideSpearResetAnim[] = dgPhantomGanonRideSpearResetAnim; + +#define dgPhantomGanonNeutralAnim "__OTR__objects/object_gnd/gPhantomGanonNeutralAnim" +static const ALIGN_ASSET(2) char gPhantomGanonNeutralAnim[] = dgPhantomGanonNeutralAnim; + +#define dgPhantomGanonThrowAnim "__OTR__objects/object_gnd/gPhantomGanonThrowAnim" +static const ALIGN_ASSET(2) char gPhantomGanonThrowAnim[] = dgPhantomGanonThrowAnim; + +#define dgPhantomGanonThrowEndAnim "__OTR__objects/object_gnd/gPhantomGanonThrowEndAnim" +static const ALIGN_ASSET(2) char gPhantomGanonThrowEndAnim[] = dgPhantomGanonThrowEndAnim; + +#define dgPhantomGanonReturn1Anim "__OTR__objects/object_gnd/gPhantomGanonReturn1Anim" +static const ALIGN_ASSET(2) char gPhantomGanonReturn1Anim[] = dgPhantomGanonReturn1Anim; + +#define dgPhantomGanonReturn2Anim "__OTR__objects/object_gnd/gPhantomGanonReturn2Anim" +static const ALIGN_ASSET(2) char gPhantomGanonReturn2Anim[] = dgPhantomGanonReturn2Anim; + +#define dgPhantomGanonBlockAnim "__OTR__objects/object_gnd/gPhantomGanonBlockAnim" +static const ALIGN_ASSET(2) char gPhantomGanonBlockAnim[] = dgPhantomGanonBlockAnim; + +#define dgPhantomGanonChargeWindupAnim "__OTR__objects/object_gnd/gPhantomGanonChargeWindupAnim" +static const ALIGN_ASSET(2) char gPhantomGanonChargeWindupAnim[] = dgPhantomGanonChargeWindupAnim; + +#define dgPhantomGanonChargeStartAnim "__OTR__objects/object_gnd/gPhantomGanonChargeStartAnim" +static const ALIGN_ASSET(2) char gPhantomGanonChargeStartAnim[] = dgPhantomGanonChargeStartAnim; + +#define dgPhantomGanonChargeAnim "__OTR__objects/object_gnd/gPhantomGanonChargeAnim" +static const ALIGN_ASSET(2) char gPhantomGanonChargeAnim[] = dgPhantomGanonChargeAnim; + +#define dgPhantomGanonAirDamageAnim "__OTR__objects/object_gnd/gPhantomGanonAirDamageAnim" +static const ALIGN_ASSET(2) char gPhantomGanonAirDamageAnim[] = dgPhantomGanonAirDamageAnim; + +#define dgPhantomGanonGroundDamageAnim "__OTR__objects/object_gnd/gPhantomGanonGroundDamageAnim" +static const ALIGN_ASSET(2) char gPhantomGanonGroundDamageAnim[] = dgPhantomGanonGroundDamageAnim; + +#define dgPhantomGanonStunnedAnim "__OTR__objects/object_gnd/gPhantomGanonStunnedAnim" +static const ALIGN_ASSET(2) char gPhantomGanonStunnedAnim[] = dgPhantomGanonStunnedAnim; + +#define dgPhantomGanonDeathBlowAnim "__OTR__objects/object_gnd/gPhantomGanonDeathBlowAnim" +static const ALIGN_ASSET(2) char gPhantomGanonDeathBlowAnim[] = dgPhantomGanonDeathBlowAnim; + +#define dgPhantomGanonLimpAnim "__OTR__objects/object_gnd/gPhantomGanonLimpAnim" +static const ALIGN_ASSET(2) char gPhantomGanonLimpAnim[] = dgPhantomGanonLimpAnim; + +#define dgPhantomGanonScreamAnim "__OTR__objects/object_gnd/gPhantomGanonScreamAnim" +static const ALIGN_ASSET(2) char gPhantomGanonScreamAnim[] = dgPhantomGanonScreamAnim; + +#define dgPhantomGanonLastPoseAnim "__OTR__objects/object_gnd/gPhantomGanonLastPoseAnim" +static const ALIGN_ASSET(2) char gPhantomGanonLastPoseAnim[] = dgPhantomGanonLastPoseAnim; + +#define dgPhantomGanonLimbTex_00B380 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00B380" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00B380[] = dgPhantomGanonLimbTex_00B380; + +#define dgPhantomGanonLimbTex_00A800 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A800" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00A800[] = dgPhantomGanonLimbTex_00A800; + +#define dgPhantomGanonLimbTex_00AE80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00AE80" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00AE80[] = dgPhantomGanonLimbTex_00AE80; + +#define dgPhantomGanonLimbTex_00AF00 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00AF00" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00AF00[] = dgPhantomGanonLimbTex_00AF00; + +#define dgPhantomGanonLimbTex_00C180 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C180" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00C180[] = dgPhantomGanonLimbTex_00C180; + +#define dgPhantomGanonLimbTex_00C400 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C400" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00C400[] = dgPhantomGanonLimbTex_00C400; + +#define dgPhantomGanonLimbTex_00B980 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00B980" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00B980[] = dgPhantomGanonLimbTex_00B980; + +#define dgPhantomGanonLimbTex_00C480 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C480" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00C480[] = dgPhantomGanonLimbTex_00C480; + +#define dgPhantomGanonLimbTex_00BC80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00BC80" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00BC80[] = dgPhantomGanonLimbTex_00BC80; + +#define dgPhantomGanonLimbTex_00BD80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00BD80" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00BD80[] = dgPhantomGanonLimbTex_00BD80; + +#define dgPhantomGanonLimbTex_00C080 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C080" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00C080[] = dgPhantomGanonLimbTex_00C080; + +#define dgPhantomGanonLimbTex_00C200 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00C200" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00C200[] = dgPhantomGanonLimbTex_00C200; + +#define dgPhantomGanonLimbTex_00A000 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A000" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00A000[] = dgPhantomGanonLimbTex_00A000; + +#define dgPhantomGanonLimbTex_00A200 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A200" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00A200[] = dgPhantomGanonLimbTex_00A200; + +#define dgPhantomGanonLimbTex_00A400 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A400" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00A400[] = dgPhantomGanonLimbTex_00A400; + +#define dgPhantomGanonLimbTex_00A600 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A600" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00A600[] = dgPhantomGanonLimbTex_00A600; + +#define dgPhantomGanonLimbTex_00A880 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00A880" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00A880[] = dgPhantomGanonLimbTex_00A880; + +#define dgPhantomGanonLimbTex_00B780 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00B780" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00B780[] = dgPhantomGanonLimbTex_00B780; + +#define dgPhantomGanonLimbTex_00BA80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00BA80" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00BA80[] = dgPhantomGanonLimbTex_00BA80; + +#define dgPhantomGanonLimbTex_00BE80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00BE80" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00BE80[] = dgPhantomGanonLimbTex_00BE80; + +#define dgPhantomGanonLimbTex_00AA80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00AA80" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00AA80[] = dgPhantomGanonLimbTex_00AA80; + +#define dgPhantomGanonLimbTex_00AF80 "__OTR__objects/object_gnd/gPhantomGanonLimbTex_00AF80" +static const ALIGN_ASSET(2) char gPhantomGanonLimbTex_00AF80[] = dgPhantomGanonLimbTex_00AF80; + +#define dgPhantomGanonFaceDL "__OTR__objects/object_gnd/gPhantomGanonFaceDL" +static const ALIGN_ASSET(2) char gPhantomGanonFaceDL[] = dgPhantomGanonFaceDL; + +#define dgPhantomGanonEyeTLUT "__OTR__objects/object_gnd/gPhantomGanonEyeTLUT" +static const ALIGN_ASSET(2) char gPhantomGanonEyeTLUT[] = dgPhantomGanonEyeTLUT; + +#define dgPhantomGanonMouthTLUT "__OTR__objects/object_gnd/gPhantomGanonMouthTLUT" +static const ALIGN_ASSET(2) char gPhantomGanonMouthTLUT[] = dgPhantomGanonMouthTLUT; + +#define dgPhantomGanonEyeTex "__OTR__objects/object_gnd/gPhantomGanonEyeTex" +static const ALIGN_ASSET(2) char gPhantomGanonEyeTex[] = dgPhantomGanonEyeTex; + +#define dgPhantomGanonSmileTex "__OTR__objects/object_gnd/gPhantomGanonSmileTex" +static const ALIGN_ASSET(2) char gPhantomGanonSmileTex[] = dgPhantomGanonSmileTex; + +#define dgPhantomGanonMouthTex "__OTR__objects/object_gnd/gPhantomGanonMouthTex" +static const ALIGN_ASSET(2) char gPhantomGanonMouthTex[] = dgPhantomGanonMouthTex; + +#define dgPhantomGanonAnim_003854 "__OTR__objects/object_gnd/gPhantomGanonAnim_003854" +static const ALIGN_ASSET(2) char gPhantomGanonAnim_003854[] = dgPhantomGanonAnim_003854; + +#define dgPhantomGanonAnim_00D398 "__OTR__objects/object_gnd/gPhantomGanonAnim_00D398" +static const ALIGN_ASSET(2) char gPhantomGanonAnim_00D398[] = dgPhantomGanonAnim_00D398; + +#define dgPhantomGanonAnim_00CC84 "__OTR__objects/object_gnd/gPhantomGanonAnim_00CC84" +static const ALIGN_ASSET(2) char gPhantomGanonAnim_00CC84[] = dgPhantomGanonAnim_00CC84; + +#define dgPhantomGanonAnim_012320 "__OTR__objects/object_gnd/gPhantomGanonAnim_012320" +static const ALIGN_ASSET(2) char gPhantomGanonAnim_012320[] = dgPhantomGanonAnim_012320; + +#define dgPhantomGanonBarsDL "__OTR__objects/object_gnd/gPhantomGanonBarsDL" +static const ALIGN_ASSET(2) char gPhantomGanonBarsDL[] = dgPhantomGanonBarsDL; + +#define dgPhantomGanonBarsCol "__OTR__objects/object_gnd/gPhantomGanonBarsCol" +static const ALIGN_ASSET(2) char gPhantomGanonBarsCol[] = dgPhantomGanonBarsCol; + +#define dgPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0[] = dgPhantomGanonSkelLimbsLimb_00C5B0DL_0086F0; + +#define dgPhantomGanonSkelLimbsLimb_00C5BCDL_008918 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5BCDL_008918" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C5BCDL_008918[] = dgPhantomGanonSkelLimbsLimb_00C5BCDL_008918; + +#define dgPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0[] = dgPhantomGanonSkelLimbsLimb_00C5C8DL_0089F0; + +#define dgPhantomGanonSkelLimbsLimb_00C5E0DL_009A80 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5E0DL_009A80" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C5E0DL_009A80[] = dgPhantomGanonSkelLimbsLimb_00C5E0DL_009A80; + +#define dgPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8[] = dgPhantomGanonSkelLimbsLimb_00C5ECDL_0099A8; + +#define dgPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8[] = dgPhantomGanonSkelLimbsLimb_00C5F8DL_0097B8; + +#define dgPhantomGanonSkelLimbsLimb_00C610DL_009298 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C610DL_009298" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C610DL_009298[] = dgPhantomGanonSkelLimbsLimb_00C610DL_009298; + +#define dgPhantomGanonSkelLimbsLimb_00C61CDL_008BE0 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C61CDL_008BE0" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C61CDL_008BE0[] = dgPhantomGanonSkelLimbsLimb_00C61CDL_008BE0; + +#define dgPhantomGanonSkelLimbsLimb_00C628DL_0080F8 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C628DL_0080F8" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C628DL_0080F8[] = dgPhantomGanonSkelLimbsLimb_00C628DL_0080F8; + +#define dgPhantomGanonSkelLimbsLimb_00C640DL_009038 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C640DL_009038" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C640DL_009038[] = dgPhantomGanonSkelLimbsLimb_00C640DL_009038; + +#define dgPhantomGanonSkelLimbsLimb_00C658DL_009520 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C658DL_009520" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C658DL_009520[] = dgPhantomGanonSkelLimbsLimb_00C658DL_009520; + +#define dgPhantomGanonSkelLimbsLimb_00C664DL_009650 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C664DL_009650" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C664DL_009650[] = dgPhantomGanonSkelLimbsLimb_00C664DL_009650; + +#define dgPhantomGanonSkelLimbsLimb_00C670DL_009460 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C670DL_009460" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C670DL_009460[] = dgPhantomGanonSkelLimbsLimb_00C670DL_009460; + +#define dgPhantomGanonSkelLimbsLimb_00C688DL_009ED0 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C688DL_009ED0" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C688DL_009ED0[] = dgPhantomGanonSkelLimbsLimb_00C688DL_009ED0; + +#define dgPhantomGanonSkelLimbsLimb_00C694DL_009D68 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C694DL_009D68" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C694DL_009D68[] = dgPhantomGanonSkelLimbsLimb_00C694DL_009D68; + +#define dgPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8 "__OTR__objects/object_gnd/gPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8" +static const ALIGN_ASSET(2) char gPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8[] = dgPhantomGanonSkelLimbsLimb_00C6A0DL_009CA8; + +#define dobject_gndTex_012B50 "__OTR__objects/object_gnd/object_gndTex_012B50" +static const ALIGN_ASSET(2) char object_gndTex_012B50[] = dobject_gndTex_012B50; \ No newline at end of file diff --git a/soh/assets/objects/object_gnd_magic/object_gnd_magic.h b/soh/assets/objects/object_gnd_magic/object_gnd_magic.h index 63a135fdd..a75234e37 100644 --- a/soh/assets/objects/object_gnd_magic/object_gnd_magic.h +++ b/soh/assets/objects/object_gnd_magic/object_gnd_magic.h @@ -1,23 +1,12 @@ #pragma once -#define dobject_gnd_magic_Tex_000000 "__OTR__objects/object_gnd_magic/object_gnd_magic_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gnd_magic_Tex_000000[] = dobject_gnd_magic_Tex_000000; -#else -static const char object_gnd_magic_Tex_000000[] __attribute__((aligned (2))) = dobject_gnd_magic_Tex_000000; -#endif - -#define dobject_gnd_magic_Tex_000800 "__OTR__objects/object_gnd_magic/object_gnd_magic_Tex_000800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gnd_magic_Tex_000800[] = dobject_gnd_magic_Tex_000800; -#else -static const char object_gnd_magic_Tex_000800[] __attribute__((aligned (2))) = dobject_gnd_magic_Tex_000800; -#endif - -#define dobject_gnd_magic_DL_001190 "__OTR__objects/object_gnd_magic/object_gnd_magic_DL_001190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_gnd_magic_DL_001190[] = dobject_gnd_magic_DL_001190; -#else -static const char object_gnd_magic_DL_001190[] __attribute__((aligned (2))) = dobject_gnd_magic_DL_001190; -#endif - +#include "align_asset_macro.h" + +#define dobject_gnd_magic_Tex_000000 "__OTR__objects/object_gnd_magic/object_gnd_magic_Tex_000000" +static const ALIGN_ASSET(2) char object_gnd_magic_Tex_000000[] = dobject_gnd_magic_Tex_000000; + +#define dobject_gnd_magic_Tex_000800 "__OTR__objects/object_gnd_magic/object_gnd_magic_Tex_000800" +static const ALIGN_ASSET(2) char object_gnd_magic_Tex_000800[] = dobject_gnd_magic_Tex_000800; + +#define dobject_gnd_magic_DL_001190 "__OTR__objects/object_gnd_magic/object_gnd_magic_DL_001190" +static const ALIGN_ASSET(2) char object_gnd_magic_DL_001190[] = dobject_gnd_magic_DL_001190; \ No newline at end of file diff --git a/soh/assets/objects/object_gndd/object_gndd.h b/soh/assets/objects/object_gndd/object_gndd.h index 49630c142..c00fb856b 100644 --- a/soh/assets/objects/object_gndd/object_gndd.h +++ b/soh/assets/objects/object_gndd/object_gndd.h @@ -1,485 +1,210 @@ #pragma once -#define dgYoungGanondorfHorsebackRideAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackRideAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHorsebackRideAnim[] = dgYoungGanondorfHorsebackRideAnim; -#else -static const char gYoungGanondorfHorsebackRideAnim[] __attribute__((aligned (2))) = dgYoungGanondorfHorsebackRideAnim; -#endif - -#define dgYoungGanondorfHorsebackMagicChargeUpStartAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackMagicChargeUpStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHorsebackMagicChargeUpStartAnim[] = dgYoungGanondorfHorsebackMagicChargeUpStartAnim; -#else -static const char gYoungGanondorfHorsebackMagicChargeUpStartAnim[] __attribute__((aligned (2))) = dgYoungGanondorfHorsebackMagicChargeUpStartAnim; -#endif - -#define dgYoungGanondorfHorsebackMagicChargeUpLoopAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackMagicChargeUpLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHorsebackMagicChargeUpLoopAnim[] = dgYoungGanondorfHorsebackMagicChargeUpLoopAnim; -#else -static const char gYoungGanondorfHorsebackMagicChargeUpLoopAnim[] __attribute__((aligned (2))) = dgYoungGanondorfHorsebackMagicChargeUpLoopAnim; -#endif - -#define dgYoungGanondorfHorsebackLookSidewaysStartAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackLookSidewaysStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHorsebackLookSidewaysStartAnim[] = dgYoungGanondorfHorsebackLookSidewaysStartAnim; -#else -static const char gYoungGanondorfHorsebackLookSidewaysStartAnim[] __attribute__((aligned (2))) = dgYoungGanondorfHorsebackLookSidewaysStartAnim; -#endif - -#define dgYoungGanondorfHorsebackLookSidewaysLoopAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackLookSidewaysLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHorsebackLookSidewaysLoopAnim[] = dgYoungGanondorfHorsebackLookSidewaysLoopAnim; -#else -static const char gYoungGanondorfHorsebackLookSidewaysLoopAnim[] __attribute__((aligned (2))) = dgYoungGanondorfHorsebackLookSidewaysLoopAnim; -#endif - -#define dgYoungGanondorfHorsebackRearAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackRearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHorsebackRearAnim[] = dgYoungGanondorfHorsebackRearAnim; -#else -static const char gYoungGanondorfHorsebackRearAnim[] __attribute__((aligned (2))) = dgYoungGanondorfHorsebackRearAnim; -#endif - -#define dgYoungGanondorfHorsebackIdleAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHorsebackIdleAnim[] = dgYoungGanondorfHorsebackIdleAnim; -#else -static const char gYoungGanondorfHorsebackIdleAnim[] __attribute__((aligned (2))) = dgYoungGanondorfHorsebackIdleAnim; -#endif - -#define dgYoungGanondorfKneelStartAnim "__OTR__objects/object_gndd/gYoungGanondorfKneelStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfKneelStartAnim[] = dgYoungGanondorfKneelStartAnim; -#else -static const char gYoungGanondorfKneelStartAnim[] __attribute__((aligned (2))) = dgYoungGanondorfKneelStartAnim; -#endif - -#define dgYoungGanondorfKneelLookSidewaysAnim "__OTR__objects/object_gndd/gYoungGanondorfKneelLookSidewaysAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfKneelLookSidewaysAnim[] = dgYoungGanondorfKneelLookSidewaysAnim; -#else -static const char gYoungGanondorfKneelLookSidewaysAnim[] __attribute__((aligned (2))) = dgYoungGanondorfKneelLookSidewaysAnim; -#endif - -#define dgYoungGanondorfKneelLoopAnim "__OTR__objects/object_gndd/gYoungGanondorfKneelLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfKneelLoopAnim[] = dgYoungGanondorfKneelLoopAnim; -#else -static const char gYoungGanondorfKneelLoopAnim[] __attribute__((aligned (2))) = dgYoungGanondorfKneelLoopAnim; -#endif - -#define dgYoungGanondorfArmsCrossedAnim "__OTR__objects/object_gndd/gYoungGanondorfArmsCrossedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfArmsCrossedAnim[] = dgYoungGanondorfArmsCrossedAnim; -#else -static const char gYoungGanondorfArmsCrossedAnim[] __attribute__((aligned (2))) = dgYoungGanondorfArmsCrossedAnim; -#endif - -#define dgYoungGanondorfLaughStartAnim "__OTR__objects/object_gndd/gYoungGanondorfLaughStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLaughStartAnim[] = dgYoungGanondorfLaughStartAnim; -#else -static const char gYoungGanondorfLaughStartAnim[] __attribute__((aligned (2))) = dgYoungGanondorfLaughStartAnim; -#endif - -#define dgYoungGanondorfLaughLoopAnim "__OTR__objects/object_gndd/gYoungGanondorfLaughLoopAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLaughLoopAnim[] = dgYoungGanondorfLaughLoopAnim; -#else -static const char gYoungGanondorfLaughLoopAnim[] __attribute__((aligned (2))) = dgYoungGanondorfLaughLoopAnim; -#endif - -#define dgYoungGanondorfWalkAnim "__OTR__objects/object_gndd/gYoungGanondorfWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfWalkAnim[] = dgYoungGanondorfWalkAnim; -#else -static const char gYoungGanondorfWalkAnim[] __attribute__((aligned (2))) = dgYoungGanondorfWalkAnim; -#endif - -#define dgYoungGanondorfHeadDL "__OTR__objects/object_gndd/gYoungGanondorfHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHeadDL[] = dgYoungGanondorfHeadDL; -#else -static const char gYoungGanondorfHeadDL[] __attribute__((aligned (2))) = dgYoungGanondorfHeadDL; -#endif - -#define dgYoungGanondorfRightUpperLipDL "__OTR__objects/object_gndd/gYoungGanondorfRightUpperLipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfRightUpperLipDL[] = dgYoungGanondorfRightUpperLipDL; -#else -static const char gYoungGanondorfRightUpperLipDL[] __attribute__((aligned (2))) = dgYoungGanondorfRightUpperLipDL; -#endif - -#define dgYoungGanondorfChinDL "__OTR__objects/object_gndd/gYoungGanondorfChinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfChinDL[] = dgYoungGanondorfChinDL; -#else -static const char gYoungGanondorfChinDL[] __attribute__((aligned (2))) = dgYoungGanondorfChinDL; -#endif - -#define dgYoungGanondorfJawDL "__OTR__objects/object_gndd/gYoungGanondorfJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfJawDL[] = dgYoungGanondorfJawDL; -#else -static const char gYoungGanondorfJawDL[] __attribute__((aligned (2))) = dgYoungGanondorfJawDL; -#endif - -#define dgYoungGanondorfLeftUpperLipDL "__OTR__objects/object_gndd/gYoungGanondorfLeftUpperLipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLeftUpperLipDL[] = dgYoungGanondorfLeftUpperLipDL; -#else -static const char gYoungGanondorfLeftUpperLipDL[] __attribute__((aligned (2))) = dgYoungGanondorfLeftUpperLipDL; -#endif - -#define dgYoungGanondorfPelvisDL "__OTR__objects/object_gndd/gYoungGanondorfPelvisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfPelvisDL[] = dgYoungGanondorfPelvisDL; -#else -static const char gYoungGanondorfPelvisDL[] __attribute__((aligned (2))) = dgYoungGanondorfPelvisDL; -#endif - -#define dgYoungGanondorfTorsoDL "__OTR__objects/object_gndd/gYoungGanondorfTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfTorsoDL[] = dgYoungGanondorfTorsoDL; -#else -static const char gYoungGanondorfTorsoDL[] __attribute__((aligned (2))) = dgYoungGanondorfTorsoDL; -#endif - -#define dgYoungGanondorfJewelDL "__OTR__objects/object_gndd/gYoungGanondorfJewelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfJewelDL[] = dgYoungGanondorfJewelDL; -#else -static const char gYoungGanondorfJewelDL[] __attribute__((aligned (2))) = dgYoungGanondorfJewelDL; -#endif - -#define dgYoungGanondorfKnifeDL "__OTR__objects/object_gndd/gYoungGanondorfKnifeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfKnifeDL[] = dgYoungGanondorfKnifeDL; -#else -static const char gYoungGanondorfKnifeDL[] __attribute__((aligned (2))) = dgYoungGanondorfKnifeDL; -#endif - -#define dgYoungGanondorfLeftUpperArmDL "__OTR__objects/object_gndd/gYoungGanondorfLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLeftUpperArmDL[] = dgYoungGanondorfLeftUpperArmDL; -#else -static const char gYoungGanondorfLeftUpperArmDL[] __attribute__((aligned (2))) = dgYoungGanondorfLeftUpperArmDL; -#endif - -#define dgYoungGanondorfRightUpperArmDL "__OTR__objects/object_gndd/gYoungGanondorfRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfRightUpperArmDL[] = dgYoungGanondorfRightUpperArmDL; -#else -static const char gYoungGanondorfRightUpperArmDL[] __attribute__((aligned (2))) = dgYoungGanondorfRightUpperArmDL; -#endif - -#define dgYoungGanondorfLeftForearmDL "__OTR__objects/object_gndd/gYoungGanondorfLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLeftForearmDL[] = dgYoungGanondorfLeftForearmDL; -#else -static const char gYoungGanondorfLeftForearmDL[] __attribute__((aligned (2))) = dgYoungGanondorfLeftForearmDL; -#endif - -#define dgYoungGanondorfRightForearmDL "__OTR__objects/object_gndd/gYoungGanondorfRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfRightForearmDL[] = dgYoungGanondorfRightForearmDL; -#else -static const char gYoungGanondorfRightForearmDL[] __attribute__((aligned (2))) = dgYoungGanondorfRightForearmDL; -#endif - -#define dgYoungGanondorfLeftHandDL "__OTR__objects/object_gndd/gYoungGanondorfLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLeftHandDL[] = dgYoungGanondorfLeftHandDL; -#else -static const char gYoungGanondorfLeftHandDL[] __attribute__((aligned (2))) = dgYoungGanondorfLeftHandDL; -#endif - -#define dgYoungGanondorfRightHandDL "__OTR__objects/object_gndd/gYoungGanondorfRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfRightHandDL[] = dgYoungGanondorfRightHandDL; -#else -static const char gYoungGanondorfRightHandDL[] __attribute__((aligned (2))) = dgYoungGanondorfRightHandDL; -#endif - -#define dgYoungGanondorfLeftFootDL "__OTR__objects/object_gndd/gYoungGanondorfLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLeftFootDL[] = dgYoungGanondorfLeftFootDL; -#else -static const char gYoungGanondorfLeftFootDL[] __attribute__((aligned (2))) = dgYoungGanondorfLeftFootDL; -#endif - -#define dgYoungGanondorfRightFootDL "__OTR__objects/object_gndd/gYoungGanondorfRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfRightFootDL[] = dgYoungGanondorfRightFootDL; -#else -static const char gYoungGanondorfRightFootDL[] __attribute__((aligned (2))) = dgYoungGanondorfRightFootDL; -#endif - -#define dgYoungGanondorfLeftThighDL "__OTR__objects/object_gndd/gYoungGanondorfLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLeftThighDL[] = dgYoungGanondorfLeftThighDL; -#else -static const char gYoungGanondorfLeftThighDL[] __attribute__((aligned (2))) = dgYoungGanondorfLeftThighDL; -#endif - -#define dgYoungGanondorfLeftShinDL "__OTR__objects/object_gndd/gYoungGanondorfLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLeftShinDL[] = dgYoungGanondorfLeftShinDL; -#else -static const char gYoungGanondorfLeftShinDL[] __attribute__((aligned (2))) = dgYoungGanondorfLeftShinDL; -#endif - -#define dgYoungGanondorfRightThighDL "__OTR__objects/object_gndd/gYoungGanondorfRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfRightThighDL[] = dgYoungGanondorfRightThighDL; -#else -static const char gYoungGanondorfRightThighDL[] __attribute__((aligned (2))) = dgYoungGanondorfRightThighDL; -#endif - -#define dgYoungGanondorfRightShinDL "__OTR__objects/object_gndd/gYoungGanondorfRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfRightShinDL[] = dgYoungGanondorfRightShinDL; -#else -static const char gYoungGanondorfRightShinDL[] __attribute__((aligned (2))) = dgYoungGanondorfRightShinDL; -#endif - -#define dgYoungGanondorfTeethDL "__OTR__objects/object_gndd/gYoungGanondorfTeethDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfTeethDL[] = dgYoungGanondorfTeethDL; -#else -static const char gYoungGanondorfTeethDL[] __attribute__((aligned (2))) = dgYoungGanondorfTeethDL; -#endif - -#define dgYoungGanondorfOpenLeftHandDL "__OTR__objects/object_gndd/gYoungGanondorfOpenLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfOpenLeftHandDL[] = dgYoungGanondorfOpenLeftHandDL; -#else -static const char gYoungGanondorfOpenLeftHandDL[] __attribute__((aligned (2))) = dgYoungGanondorfOpenLeftHandDL; -#endif - -#define dgYoungGanondorfEyeTLUT "__OTR__objects/object_gndd/gYoungGanondorfEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfEyeTLUT[] = dgYoungGanondorfEyeTLUT; -#else -static const char gYoungGanondorfEyeTLUT[] __attribute__((aligned (2))) = dgYoungGanondorfEyeTLUT; -#endif - -#define dgYoungGanondorfInnerMouthTex "__OTR__objects/object_gndd/gYoungGanondorfInnerMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfInnerMouthTex[] = dgYoungGanondorfInnerMouthTex; -#else -static const char gYoungGanondorfInnerMouthTex[] __attribute__((aligned (2))) = dgYoungGanondorfInnerMouthTex; -#endif - -#define dgYoungGanondorfSideburnTex "__OTR__objects/object_gndd/gYoungGanondorfSideburnTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfSideburnTex[] = dgYoungGanondorfSideburnTex; -#else -static const char gYoungGanondorfSideburnTex[] __attribute__((aligned (2))) = dgYoungGanondorfSideburnTex; -#endif - -#define dgYoungGanondorfOuterMouthTex "__OTR__objects/object_gndd/gYoungGanondorfOuterMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfOuterMouthTex[] = dgYoungGanondorfOuterMouthTex; -#else -static const char gYoungGanondorfOuterMouthTex[] __attribute__((aligned (2))) = dgYoungGanondorfOuterMouthTex; -#endif - -#define dgYoungGanondorfEyeOpenTex "__OTR__objects/object_gndd/gYoungGanondorfEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfEyeOpenTex[] = dgYoungGanondorfEyeOpenTex; -#else -static const char gYoungGanondorfEyeOpenTex[] __attribute__((aligned (2))) = dgYoungGanondorfEyeOpenTex; -#endif - -#define dgYoungGanondorfEyeHalfTex "__OTR__objects/object_gndd/gYoungGanondorfEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfEyeHalfTex[] = dgYoungGanondorfEyeHalfTex; -#else -static const char gYoungGanondorfEyeHalfTex[] __attribute__((aligned (2))) = dgYoungGanondorfEyeHalfTex; -#endif - -#define dgYoungGanondorfEyeClosedTex "__OTR__objects/object_gndd/gYoungGanondorfEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfEyeClosedTex[] = dgYoungGanondorfEyeClosedTex; -#else -static const char gYoungGanondorfEyeClosedTex[] __attribute__((aligned (2))) = dgYoungGanondorfEyeClosedTex; -#endif - -#define dgYoungGanondorfEyeLookingDownTex "__OTR__objects/object_gndd/gYoungGanondorfEyeLookingDownTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfEyeLookingDownTex[] = dgYoungGanondorfEyeLookingDownTex; -#else -static const char gYoungGanondorfEyeLookingDownTex[] __attribute__((aligned (2))) = dgYoungGanondorfEyeLookingDownTex; -#endif - -#define dgYoungGanondorfUpperLipTex "__OTR__objects/object_gndd/gYoungGanondorfUpperLipTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfUpperLipTex[] = dgYoungGanondorfUpperLipTex; -#else -static const char gYoungGanondorfUpperLipTex[] __attribute__((aligned (2))) = dgYoungGanondorfUpperLipTex; -#endif - -#define dgYoungGanondorfEarTex "__OTR__objects/object_gndd/gYoungGanondorfEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfEarTex[] = dgYoungGanondorfEarTex; -#else -static const char gYoungGanondorfEarTex[] __attribute__((aligned (2))) = dgYoungGanondorfEarTex; -#endif - -#define dgYoungGanondorfNoseTex "__OTR__objects/object_gndd/gYoungGanondorfNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfNoseTex[] = dgYoungGanondorfNoseTex; -#else -static const char gYoungGanondorfNoseTex[] __attribute__((aligned (2))) = dgYoungGanondorfNoseTex; -#endif - -#define dgYoungGanondorfNoseBridgeTex "__OTR__objects/object_gndd/gYoungGanondorfNoseBridgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfNoseBridgeTex[] = dgYoungGanondorfNoseBridgeTex; -#else -static const char gYoungGanondorfNoseBridgeTex[] __attribute__((aligned (2))) = dgYoungGanondorfNoseBridgeTex; -#endif - -#define dgYoungGanondorfEyebrowTex "__OTR__objects/object_gndd/gYoungGanondorfEyebrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfEyebrowTex[] = dgYoungGanondorfEyebrowTex; -#else -static const char gYoungGanondorfEyebrowTex[] __attribute__((aligned (2))) = dgYoungGanondorfEyebrowTex; -#endif - -#define dgYoungGanondorfJawTex "__OTR__objects/object_gndd/gYoungGanondorfJawTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfJawTex[] = dgYoungGanondorfJawTex; -#else -static const char gYoungGanondorfJawTex[] __attribute__((aligned (2))) = dgYoungGanondorfJawTex; -#endif - -#define dgYoungGanondorfBlackLeatherTex "__OTR__objects/object_gndd/gYoungGanondorfBlackLeatherTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfBlackLeatherTex[] = dgYoungGanondorfBlackLeatherTex; -#else -static const char gYoungGanondorfBlackLeatherTex[] __attribute__((aligned (2))) = dgYoungGanondorfBlackLeatherTex; -#endif - -#define dgYoungGanondorfGerudoFabricWithSunTex "__OTR__objects/object_gndd/gYoungGanondorfGerudoFabricWithSunTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfGerudoFabricWithSunTex[] = dgYoungGanondorfGerudoFabricWithSunTex; -#else -static const char gYoungGanondorfGerudoFabricWithSunTex[] __attribute__((aligned (2))) = dgYoungGanondorfGerudoFabricWithSunTex; -#endif - -#define dgYoungGanondorfLeatherTex "__OTR__objects/object_gndd/gYoungGanondorfLeatherTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfLeatherTex[] = dgYoungGanondorfLeatherTex; -#else -static const char gYoungGanondorfLeatherTex[] __attribute__((aligned (2))) = dgYoungGanondorfLeatherTex; -#endif - -#define dgYoungGanondorfBodysuitTex "__OTR__objects/object_gndd/gYoungGanondorfBodysuitTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfBodysuitTex[] = dgYoungGanondorfBodysuitTex; -#else -static const char gYoungGanondorfBodysuitTex[] __attribute__((aligned (2))) = dgYoungGanondorfBodysuitTex; -#endif - -#define dgYoungGanondorfNeckTex "__OTR__objects/object_gndd/gYoungGanondorfNeckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfNeckTex[] = dgYoungGanondorfNeckTex; -#else -static const char gYoungGanondorfNeckTex[] __attribute__((aligned (2))) = dgYoungGanondorfNeckTex; -#endif - -#define dgYoungGanondorfChestAndKnifeJewelTex "__OTR__objects/object_gndd/gYoungGanondorfChestAndKnifeJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfChestAndKnifeJewelTex[] = dgYoungGanondorfChestAndKnifeJewelTex; -#else -static const char gYoungGanondorfChestAndKnifeJewelTex[] __attribute__((aligned (2))) = dgYoungGanondorfChestAndKnifeJewelTex; -#endif - -#define dgYoungGanondorfGerudoFabricTex "__OTR__objects/object_gndd/gYoungGanondorfGerudoFabricTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfGerudoFabricTex[] = dgYoungGanondorfGerudoFabricTex; -#else -static const char gYoungGanondorfGerudoFabricTex[] __attribute__((aligned (2))) = dgYoungGanondorfGerudoFabricTex; -#endif - -#define dgYoungGanondorfHairFringeTex "__OTR__objects/object_gndd/gYoungGanondorfHairFringeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHairFringeTex[] = dgYoungGanondorfHairFringeTex; -#else -static const char gYoungGanondorfHairFringeTex[] __attribute__((aligned (2))) = dgYoungGanondorfHairFringeTex; -#endif - -#define dgYoungGanondorfJewelTex "__OTR__objects/object_gndd/gYoungGanondorfJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfJewelTex[] = dgYoungGanondorfJewelTex; -#else -static const char gYoungGanondorfJewelTex[] __attribute__((aligned (2))) = dgYoungGanondorfJewelTex; -#endif - -#define dgYoungGanondorfPauldronTex "__OTR__objects/object_gndd/gYoungGanondorfPauldronTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfPauldronTex[] = dgYoungGanondorfPauldronTex; -#else -static const char gYoungGanondorfPauldronTex[] __attribute__((aligned (2))) = dgYoungGanondorfPauldronTex; -#endif - -#define dgYoungGanondorfThumbTex "__OTR__objects/object_gndd/gYoungGanondorfThumbTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfThumbTex[] = dgYoungGanondorfThumbTex; -#else -static const char gYoungGanondorfThumbTex[] __attribute__((aligned (2))) = dgYoungGanondorfThumbTex; -#endif - -#define dgYoungGanondorfHandSideTex "__OTR__objects/object_gndd/gYoungGanondorfHandSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfHandSideTex[] = dgYoungGanondorfHandSideTex; -#else -static const char gYoungGanondorfHandSideTex[] __attribute__((aligned (2))) = dgYoungGanondorfHandSideTex; -#endif - -#define dgYoungGanondorfFingerTex "__OTR__objects/object_gndd/gYoungGanondorfFingerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfFingerTex[] = dgYoungGanondorfFingerTex; -#else -static const char gYoungGanondorfFingerTex[] __attribute__((aligned (2))) = dgYoungGanondorfFingerTex; -#endif - -#define dgYoungGanondorfTeethTex "__OTR__objects/object_gndd/gYoungGanondorfTeethTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfTeethTex[] = dgYoungGanondorfTeethTex; -#else -static const char gYoungGanondorfTeethTex[] __attribute__((aligned (2))) = dgYoungGanondorfTeethTex; -#endif - -#define dgYoungGanondorfPalmMaskTex "__OTR__objects/object_gndd/gYoungGanondorfPalmMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfPalmMaskTex[] = dgYoungGanondorfPalmMaskTex; -#else -static const char gYoungGanondorfPalmMaskTex[] __attribute__((aligned (2))) = dgYoungGanondorfPalmMaskTex; -#endif - -#define dgYoungGanondorfFingerUndersideTex "__OTR__objects/object_gndd/gYoungGanondorfFingerUndersideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfFingerUndersideTex[] = dgYoungGanondorfFingerUndersideTex; -#else -static const char gYoungGanondorfFingerUndersideTex[] __attribute__((aligned (2))) = dgYoungGanondorfFingerUndersideTex; -#endif - -#define dgYoungGanondorfFingernailTex "__OTR__objects/object_gndd/gYoungGanondorfFingernailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfFingernailTex[] = dgYoungGanondorfFingernailTex; -#else -static const char gYoungGanondorfFingernailTex[] __attribute__((aligned (2))) = dgYoungGanondorfFingernailTex; -#endif - -#define dgYoungGanondorfSkel "__OTR__objects/object_gndd/gYoungGanondorfSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gYoungGanondorfSkel[] = dgYoungGanondorfSkel; -#else -static const char gYoungGanondorfSkel[] __attribute__((aligned (2))) = dgYoungGanondorfSkel; -#endif - +#include "align_asset_macro.h" + +#define dgYoungGanondorfHorsebackRideAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackRideAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfHorsebackRideAnim[] = dgYoungGanondorfHorsebackRideAnim; + +#define dgYoungGanondorfHorsebackMagicChargeUpStartAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackMagicChargeUpStartAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfHorsebackMagicChargeUpStartAnim[] = dgYoungGanondorfHorsebackMagicChargeUpStartAnim; + +#define dgYoungGanondorfHorsebackMagicChargeUpLoopAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackMagicChargeUpLoopAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfHorsebackMagicChargeUpLoopAnim[] = dgYoungGanondorfHorsebackMagicChargeUpLoopAnim; + +#define dgYoungGanondorfHorsebackLookSidewaysStartAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackLookSidewaysStartAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfHorsebackLookSidewaysStartAnim[] = dgYoungGanondorfHorsebackLookSidewaysStartAnim; + +#define dgYoungGanondorfHorsebackLookSidewaysLoopAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackLookSidewaysLoopAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfHorsebackLookSidewaysLoopAnim[] = dgYoungGanondorfHorsebackLookSidewaysLoopAnim; + +#define dgYoungGanondorfHorsebackRearAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackRearAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfHorsebackRearAnim[] = dgYoungGanondorfHorsebackRearAnim; + +#define dgYoungGanondorfHorsebackIdleAnim "__OTR__objects/object_gndd/gYoungGanondorfHorsebackIdleAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfHorsebackIdleAnim[] = dgYoungGanondorfHorsebackIdleAnim; + +#define dgYoungGanondorfKneelStartAnim "__OTR__objects/object_gndd/gYoungGanondorfKneelStartAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfKneelStartAnim[] = dgYoungGanondorfKneelStartAnim; + +#define dgYoungGanondorfKneelLookSidewaysAnim "__OTR__objects/object_gndd/gYoungGanondorfKneelLookSidewaysAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfKneelLookSidewaysAnim[] = dgYoungGanondorfKneelLookSidewaysAnim; + +#define dgYoungGanondorfKneelLoopAnim "__OTR__objects/object_gndd/gYoungGanondorfKneelLoopAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfKneelLoopAnim[] = dgYoungGanondorfKneelLoopAnim; + +#define dgYoungGanondorfArmsCrossedAnim "__OTR__objects/object_gndd/gYoungGanondorfArmsCrossedAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfArmsCrossedAnim[] = dgYoungGanondorfArmsCrossedAnim; + +#define dgYoungGanondorfLaughStartAnim "__OTR__objects/object_gndd/gYoungGanondorfLaughStartAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfLaughStartAnim[] = dgYoungGanondorfLaughStartAnim; + +#define dgYoungGanondorfLaughLoopAnim "__OTR__objects/object_gndd/gYoungGanondorfLaughLoopAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfLaughLoopAnim[] = dgYoungGanondorfLaughLoopAnim; + +#define dgYoungGanondorfWalkAnim "__OTR__objects/object_gndd/gYoungGanondorfWalkAnim" +static const ALIGN_ASSET(2) char gYoungGanondorfWalkAnim[] = dgYoungGanondorfWalkAnim; + +#define dgYoungGanondorfHeadDL "__OTR__objects/object_gndd/gYoungGanondorfHeadDL" +static const ALIGN_ASSET(2) char gYoungGanondorfHeadDL[] = dgYoungGanondorfHeadDL; + +#define dgYoungGanondorfRightUpperLipDL "__OTR__objects/object_gndd/gYoungGanondorfRightUpperLipDL" +static const ALIGN_ASSET(2) char gYoungGanondorfRightUpperLipDL[] = dgYoungGanondorfRightUpperLipDL; + +#define dgYoungGanondorfChinDL "__OTR__objects/object_gndd/gYoungGanondorfChinDL" +static const ALIGN_ASSET(2) char gYoungGanondorfChinDL[] = dgYoungGanondorfChinDL; + +#define dgYoungGanondorfJawDL "__OTR__objects/object_gndd/gYoungGanondorfJawDL" +static const ALIGN_ASSET(2) char gYoungGanondorfJawDL[] = dgYoungGanondorfJawDL; + +#define dgYoungGanondorfLeftUpperLipDL "__OTR__objects/object_gndd/gYoungGanondorfLeftUpperLipDL" +static const ALIGN_ASSET(2) char gYoungGanondorfLeftUpperLipDL[] = dgYoungGanondorfLeftUpperLipDL; + +#define dgYoungGanondorfPelvisDL "__OTR__objects/object_gndd/gYoungGanondorfPelvisDL" +static const ALIGN_ASSET(2) char gYoungGanondorfPelvisDL[] = dgYoungGanondorfPelvisDL; + +#define dgYoungGanondorfTorsoDL "__OTR__objects/object_gndd/gYoungGanondorfTorsoDL" +static const ALIGN_ASSET(2) char gYoungGanondorfTorsoDL[] = dgYoungGanondorfTorsoDL; + +#define dgYoungGanondorfJewelDL "__OTR__objects/object_gndd/gYoungGanondorfJewelDL" +static const ALIGN_ASSET(2) char gYoungGanondorfJewelDL[] = dgYoungGanondorfJewelDL; + +#define dgYoungGanondorfKnifeDL "__OTR__objects/object_gndd/gYoungGanondorfKnifeDL" +static const ALIGN_ASSET(2) char gYoungGanondorfKnifeDL[] = dgYoungGanondorfKnifeDL; + +#define dgYoungGanondorfLeftUpperArmDL "__OTR__objects/object_gndd/gYoungGanondorfLeftUpperArmDL" +static const ALIGN_ASSET(2) char gYoungGanondorfLeftUpperArmDL[] = dgYoungGanondorfLeftUpperArmDL; + +#define dgYoungGanondorfRightUpperArmDL "__OTR__objects/object_gndd/gYoungGanondorfRightUpperArmDL" +static const ALIGN_ASSET(2) char gYoungGanondorfRightUpperArmDL[] = dgYoungGanondorfRightUpperArmDL; + +#define dgYoungGanondorfLeftForearmDL "__OTR__objects/object_gndd/gYoungGanondorfLeftForearmDL" +static const ALIGN_ASSET(2) char gYoungGanondorfLeftForearmDL[] = dgYoungGanondorfLeftForearmDL; + +#define dgYoungGanondorfRightForearmDL "__OTR__objects/object_gndd/gYoungGanondorfRightForearmDL" +static const ALIGN_ASSET(2) char gYoungGanondorfRightForearmDL[] = dgYoungGanondorfRightForearmDL; + +#define dgYoungGanondorfLeftHandDL "__OTR__objects/object_gndd/gYoungGanondorfLeftHandDL" +static const ALIGN_ASSET(2) char gYoungGanondorfLeftHandDL[] = dgYoungGanondorfLeftHandDL; + +#define dgYoungGanondorfRightHandDL "__OTR__objects/object_gndd/gYoungGanondorfRightHandDL" +static const ALIGN_ASSET(2) char gYoungGanondorfRightHandDL[] = dgYoungGanondorfRightHandDL; + +#define dgYoungGanondorfLeftFootDL "__OTR__objects/object_gndd/gYoungGanondorfLeftFootDL" +static const ALIGN_ASSET(2) char gYoungGanondorfLeftFootDL[] = dgYoungGanondorfLeftFootDL; + +#define dgYoungGanondorfRightFootDL "__OTR__objects/object_gndd/gYoungGanondorfRightFootDL" +static const ALIGN_ASSET(2) char gYoungGanondorfRightFootDL[] = dgYoungGanondorfRightFootDL; + +#define dgYoungGanondorfLeftThighDL "__OTR__objects/object_gndd/gYoungGanondorfLeftThighDL" +static const ALIGN_ASSET(2) char gYoungGanondorfLeftThighDL[] = dgYoungGanondorfLeftThighDL; + +#define dgYoungGanondorfLeftShinDL "__OTR__objects/object_gndd/gYoungGanondorfLeftShinDL" +static const ALIGN_ASSET(2) char gYoungGanondorfLeftShinDL[] = dgYoungGanondorfLeftShinDL; + +#define dgYoungGanondorfRightThighDL "__OTR__objects/object_gndd/gYoungGanondorfRightThighDL" +static const ALIGN_ASSET(2) char gYoungGanondorfRightThighDL[] = dgYoungGanondorfRightThighDL; + +#define dgYoungGanondorfRightShinDL "__OTR__objects/object_gndd/gYoungGanondorfRightShinDL" +static const ALIGN_ASSET(2) char gYoungGanondorfRightShinDL[] = dgYoungGanondorfRightShinDL; + +#define dgYoungGanondorfTeethDL "__OTR__objects/object_gndd/gYoungGanondorfTeethDL" +static const ALIGN_ASSET(2) char gYoungGanondorfTeethDL[] = dgYoungGanondorfTeethDL; + +#define dgYoungGanondorfOpenLeftHandDL "__OTR__objects/object_gndd/gYoungGanondorfOpenLeftHandDL" +static const ALIGN_ASSET(2) char gYoungGanondorfOpenLeftHandDL[] = dgYoungGanondorfOpenLeftHandDL; + +#define dgYoungGanondorfEyeTLUT "__OTR__objects/object_gndd/gYoungGanondorfEyeTLUT" +static const ALIGN_ASSET(2) char gYoungGanondorfEyeTLUT[] = dgYoungGanondorfEyeTLUT; + +#define dgYoungGanondorfInnerMouthTex "__OTR__objects/object_gndd/gYoungGanondorfInnerMouthTex" +static const ALIGN_ASSET(2) char gYoungGanondorfInnerMouthTex[] = dgYoungGanondorfInnerMouthTex; + +#define dgYoungGanondorfSideburnTex "__OTR__objects/object_gndd/gYoungGanondorfSideburnTex" +static const ALIGN_ASSET(2) char gYoungGanondorfSideburnTex[] = dgYoungGanondorfSideburnTex; + +#define dgYoungGanondorfOuterMouthTex "__OTR__objects/object_gndd/gYoungGanondorfOuterMouthTex" +static const ALIGN_ASSET(2) char gYoungGanondorfOuterMouthTex[] = dgYoungGanondorfOuterMouthTex; + +#define dgYoungGanondorfEyeOpenTex "__OTR__objects/object_gndd/gYoungGanondorfEyeOpenTex" +static const ALIGN_ASSET(2) char gYoungGanondorfEyeOpenTex[] = dgYoungGanondorfEyeOpenTex; + +#define dgYoungGanondorfEyeHalfTex "__OTR__objects/object_gndd/gYoungGanondorfEyeHalfTex" +static const ALIGN_ASSET(2) char gYoungGanondorfEyeHalfTex[] = dgYoungGanondorfEyeHalfTex; + +#define dgYoungGanondorfEyeClosedTex "__OTR__objects/object_gndd/gYoungGanondorfEyeClosedTex" +static const ALIGN_ASSET(2) char gYoungGanondorfEyeClosedTex[] = dgYoungGanondorfEyeClosedTex; + +#define dgYoungGanondorfEyeLookingDownTex "__OTR__objects/object_gndd/gYoungGanondorfEyeLookingDownTex" +static const ALIGN_ASSET(2) char gYoungGanondorfEyeLookingDownTex[] = dgYoungGanondorfEyeLookingDownTex; + +#define dgYoungGanondorfUpperLipTex "__OTR__objects/object_gndd/gYoungGanondorfUpperLipTex" +static const ALIGN_ASSET(2) char gYoungGanondorfUpperLipTex[] = dgYoungGanondorfUpperLipTex; + +#define dgYoungGanondorfEarTex "__OTR__objects/object_gndd/gYoungGanondorfEarTex" +static const ALIGN_ASSET(2) char gYoungGanondorfEarTex[] = dgYoungGanondorfEarTex; + +#define dgYoungGanondorfNoseTex "__OTR__objects/object_gndd/gYoungGanondorfNoseTex" +static const ALIGN_ASSET(2) char gYoungGanondorfNoseTex[] = dgYoungGanondorfNoseTex; + +#define dgYoungGanondorfNoseBridgeTex "__OTR__objects/object_gndd/gYoungGanondorfNoseBridgeTex" +static const ALIGN_ASSET(2) char gYoungGanondorfNoseBridgeTex[] = dgYoungGanondorfNoseBridgeTex; + +#define dgYoungGanondorfEyebrowTex "__OTR__objects/object_gndd/gYoungGanondorfEyebrowTex" +static const ALIGN_ASSET(2) char gYoungGanondorfEyebrowTex[] = dgYoungGanondorfEyebrowTex; + +#define dgYoungGanondorfJawTex "__OTR__objects/object_gndd/gYoungGanondorfJawTex" +static const ALIGN_ASSET(2) char gYoungGanondorfJawTex[] = dgYoungGanondorfJawTex; + +#define dgYoungGanondorfBlackLeatherTex "__OTR__objects/object_gndd/gYoungGanondorfBlackLeatherTex" +static const ALIGN_ASSET(2) char gYoungGanondorfBlackLeatherTex[] = dgYoungGanondorfBlackLeatherTex; + +#define dgYoungGanondorfGerudoFabricWithSunTex "__OTR__objects/object_gndd/gYoungGanondorfGerudoFabricWithSunTex" +static const ALIGN_ASSET(2) char gYoungGanondorfGerudoFabricWithSunTex[] = dgYoungGanondorfGerudoFabricWithSunTex; + +#define dgYoungGanondorfLeatherTex "__OTR__objects/object_gndd/gYoungGanondorfLeatherTex" +static const ALIGN_ASSET(2) char gYoungGanondorfLeatherTex[] = dgYoungGanondorfLeatherTex; + +#define dgYoungGanondorfBodysuitTex "__OTR__objects/object_gndd/gYoungGanondorfBodysuitTex" +static const ALIGN_ASSET(2) char gYoungGanondorfBodysuitTex[] = dgYoungGanondorfBodysuitTex; + +#define dgYoungGanondorfNeckTex "__OTR__objects/object_gndd/gYoungGanondorfNeckTex" +static const ALIGN_ASSET(2) char gYoungGanondorfNeckTex[] = dgYoungGanondorfNeckTex; + +#define dgYoungGanondorfChestAndKnifeJewelTex "__OTR__objects/object_gndd/gYoungGanondorfChestAndKnifeJewelTex" +static const ALIGN_ASSET(2) char gYoungGanondorfChestAndKnifeJewelTex[] = dgYoungGanondorfChestAndKnifeJewelTex; + +#define dgYoungGanondorfGerudoFabricTex "__OTR__objects/object_gndd/gYoungGanondorfGerudoFabricTex" +static const ALIGN_ASSET(2) char gYoungGanondorfGerudoFabricTex[] = dgYoungGanondorfGerudoFabricTex; + +#define dgYoungGanondorfHairFringeTex "__OTR__objects/object_gndd/gYoungGanondorfHairFringeTex" +static const ALIGN_ASSET(2) char gYoungGanondorfHairFringeTex[] = dgYoungGanondorfHairFringeTex; + +#define dgYoungGanondorfJewelTex "__OTR__objects/object_gndd/gYoungGanondorfJewelTex" +static const ALIGN_ASSET(2) char gYoungGanondorfJewelTex[] = dgYoungGanondorfJewelTex; + +#define dgYoungGanondorfPauldronTex "__OTR__objects/object_gndd/gYoungGanondorfPauldronTex" +static const ALIGN_ASSET(2) char gYoungGanondorfPauldronTex[] = dgYoungGanondorfPauldronTex; + +#define dgYoungGanondorfThumbTex "__OTR__objects/object_gndd/gYoungGanondorfThumbTex" +static const ALIGN_ASSET(2) char gYoungGanondorfThumbTex[] = dgYoungGanondorfThumbTex; + +#define dgYoungGanondorfHandSideTex "__OTR__objects/object_gndd/gYoungGanondorfHandSideTex" +static const ALIGN_ASSET(2) char gYoungGanondorfHandSideTex[] = dgYoungGanondorfHandSideTex; + +#define dgYoungGanondorfFingerTex "__OTR__objects/object_gndd/gYoungGanondorfFingerTex" +static const ALIGN_ASSET(2) char gYoungGanondorfFingerTex[] = dgYoungGanondorfFingerTex; + +#define dgYoungGanondorfTeethTex "__OTR__objects/object_gndd/gYoungGanondorfTeethTex" +static const ALIGN_ASSET(2) char gYoungGanondorfTeethTex[] = dgYoungGanondorfTeethTex; + +#define dgYoungGanondorfPalmMaskTex "__OTR__objects/object_gndd/gYoungGanondorfPalmMaskTex" +static const ALIGN_ASSET(2) char gYoungGanondorfPalmMaskTex[] = dgYoungGanondorfPalmMaskTex; + +#define dgYoungGanondorfFingerUndersideTex "__OTR__objects/object_gndd/gYoungGanondorfFingerUndersideTex" +static const ALIGN_ASSET(2) char gYoungGanondorfFingerUndersideTex[] = dgYoungGanondorfFingerUndersideTex; + +#define dgYoungGanondorfFingernailTex "__OTR__objects/object_gndd/gYoungGanondorfFingernailTex" +static const ALIGN_ASSET(2) char gYoungGanondorfFingernailTex[] = dgYoungGanondorfFingernailTex; + +#define dgYoungGanondorfSkel "__OTR__objects/object_gndd/gYoungGanondorfSkel" +static const ALIGN_ASSET(2) char gYoungGanondorfSkel[] = dgYoungGanondorfSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_god_lgt/object_god_lgt.h b/soh/assets/objects/object_god_lgt/object_god_lgt.h index 43d9526d6..91c7b3dcd 100644 --- a/soh/assets/objects/object_god_lgt/object_god_lgt.h +++ b/soh/assets/objects/object_god_lgt/object_god_lgt.h @@ -1,37 +1,18 @@ #pragma once -#define dgGoldenGoddessAuraDL "__OTR__objects/object_god_lgt/gGoldenGoddessAuraDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGoddessAuraDL[] = dgGoldenGoddessAuraDL; -#else -static const char gGoldenGoddessAuraDL[] __attribute__((aligned (2))) = dgGoldenGoddessAuraDL; -#endif - -#define dgGoldenGoddessAuraHTailTex "__OTR__objects/object_god_lgt/gGoldenGoddessAuraHTailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGoddessAuraHTailTex[] = dgGoldenGoddessAuraHTailTex; -#else -static const char gGoldenGoddessAuraHTailTex[] __attribute__((aligned (2))) = dgGoldenGoddessAuraHTailTex; -#endif - -#define dgGoldenGoddessAuraHeadTex "__OTR__objects/object_god_lgt/gGoldenGoddessAuraHeadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGoddessAuraHeadTex[] = dgGoldenGoddessAuraHeadTex; -#else -static const char gGoldenGoddessAuraHeadTex[] __attribute__((aligned (2))) = dgGoldenGoddessAuraHeadTex; -#endif - -#define dgGoldenGoddessAuraMaskTex "__OTR__objects/object_god_lgt/gGoldenGoddessAuraMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGoddessAuraMaskTex[] = dgGoldenGoddessAuraMaskTex; -#else -static const char gGoldenGoddessAuraMaskTex[] __attribute__((aligned (2))) = dgGoldenGoddessAuraMaskTex; -#endif - -#define dgGoldenGoddessBodyDL "__OTR__objects/object_god_lgt/gGoldenGoddessBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGoddessBodyDL[] = dgGoldenGoddessBodyDL; -#else -static const char gGoldenGoddessBodyDL[] __attribute__((aligned (2))) = dgGoldenGoddessBodyDL; -#endif - +#include "align_asset_macro.h" + +#define dgGoldenGoddessAuraDL "__OTR__objects/object_god_lgt/gGoldenGoddessAuraDL" +static const ALIGN_ASSET(2) char gGoldenGoddessAuraDL[] = dgGoldenGoddessAuraDL; + +#define dgGoldenGoddessAuraHTailTex "__OTR__objects/object_god_lgt/gGoldenGoddessAuraHTailTex" +static const ALIGN_ASSET(2) char gGoldenGoddessAuraHTailTex[] = dgGoldenGoddessAuraHTailTex; + +#define dgGoldenGoddessAuraHeadTex "__OTR__objects/object_god_lgt/gGoldenGoddessAuraHeadTex" +static const ALIGN_ASSET(2) char gGoldenGoddessAuraHeadTex[] = dgGoldenGoddessAuraHeadTex; + +#define dgGoldenGoddessAuraMaskTex "__OTR__objects/object_god_lgt/gGoldenGoddessAuraMaskTex" +static const ALIGN_ASSET(2) char gGoldenGoddessAuraMaskTex[] = dgGoldenGoddessAuraMaskTex; + +#define dgGoldenGoddessBodyDL "__OTR__objects/object_god_lgt/gGoldenGoddessBodyDL" +static const ALIGN_ASSET(2) char gGoldenGoddessBodyDL[] = dgGoldenGoddessBodyDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gol/object_gol.h b/soh/assets/objects/object_gol/object_gol.h index 9c28f66bb..770ac548c 100644 --- a/soh/assets/objects/object_gol/object_gol.h +++ b/soh/assets/objects/object_gol/object_gol.h @@ -1,191 +1,84 @@ #pragma once -#define dgObjectGolSkel "__OTR__objects/object_gol/gObjectGolSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolSkel[] = dgObjectGolSkel; -#else -static const char gObjectGolSkel[] __attribute__((aligned (2))) = dgObjectGolSkel; -#endif - -#define dgObjectGolLandFromJumpAnim "__OTR__objects/object_gol/gObjectGolLandFromJumpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolLandFromJumpAnim[] = dgObjectGolLandFromJumpAnim; -#else -static const char gObjectGolLandFromJumpAnim[] __attribute__((aligned (2))) = dgObjectGolLandFromJumpAnim; -#endif - -#define dgObjectGolDeadTwitchingAnim "__OTR__objects/object_gol/gObjectGolDeadTwitchingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolDeadTwitchingAnim[] = dgObjectGolDeadTwitchingAnim; -#else -static const char gObjectGolDeadTwitchingAnim[] __attribute__((aligned (2))) = dgObjectGolDeadTwitchingAnim; -#endif - -#define dgObjectGolJumpHeadbuttAnim "__OTR__objects/object_gol/gObjectGolJumpHeadbuttAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolJumpHeadbuttAnim[] = dgObjectGolJumpHeadbuttAnim; -#else -static const char gObjectGolJumpHeadbuttAnim[] __attribute__((aligned (2))) = dgObjectGolJumpHeadbuttAnim; -#endif - -#define dgObjectGolDamagedAnim "__OTR__objects/object_gol/gObjectGolDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolDamagedAnim[] = dgObjectGolDamagedAnim; -#else -static const char gObjectGolDamagedAnim[] __attribute__((aligned (2))) = dgObjectGolDamagedAnim; -#endif - -#define dgObjectGolDeathAnim "__OTR__objects/object_gol/gObjectGolDeathAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolDeathAnim[] = dgObjectGolDeathAnim; -#else -static const char gObjectGolDeathAnim[] __attribute__((aligned (2))) = dgObjectGolDeathAnim; -#endif - -#define dgObjectGolPrepareJumpAnim "__OTR__objects/object_gol/gObjectGolPrepareJumpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolPrepareJumpAnim[] = dgObjectGolPrepareJumpAnim; -#else -static const char gObjectGolPrepareJumpAnim[] __attribute__((aligned (2))) = dgObjectGolPrepareJumpAnim; -#endif - -#define dgObjectGolWalkAnim "__OTR__objects/object_gol/gObjectGolWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolWalkAnim[] = dgObjectGolWalkAnim; -#else -static const char gObjectGolWalkAnim[] __attribute__((aligned (2))) = dgObjectGolWalkAnim; -#endif - -#define dgObjectGolStandAnim "__OTR__objects/object_gol/gObjectGolStandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolStandAnim[] = dgObjectGolStandAnim; -#else -static const char gObjectGolStandAnim[] __attribute__((aligned (2))) = dgObjectGolStandAnim; -#endif - -#define dgObjectGolRunningAnim "__OTR__objects/object_gol/gObjectGolRunningAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolRunningAnim[] = dgObjectGolRunningAnim; -#else -static const char gObjectGolRunningAnim[] __attribute__((aligned (2))) = dgObjectGolRunningAnim; -#endif - -#define dgObjectGolStopRunningAnim "__OTR__objects/object_gol/gObjectGolStopRunningAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolStopRunningAnim[] = dgObjectGolStopRunningAnim; -#else -static const char gObjectGolStopRunningAnim[] __attribute__((aligned (2))) = dgObjectGolStopRunningAnim; -#endif - -#define dgObjectGolStartRunningAnim "__OTR__objects/object_gol/gObjectGolStartRunningAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolStartRunningAnim[] = dgObjectGolStartRunningAnim; -#else -static const char gObjectGolStartRunningAnim[] __attribute__((aligned (2))) = dgObjectGolStartRunningAnim; -#endif - -#define dgObjectGolLeftFootDL "__OTR__objects/object_gol/gObjectGolLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolLeftFootDL[] = dgObjectGolLeftFootDL; -#else -static const char gObjectGolLeftFootDL[] __attribute__((aligned (2))) = dgObjectGolLeftFootDL; -#endif - -#define dgObjectGolLeftThighDL "__OTR__objects/object_gol/gObjectGolLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolLeftThighDL[] = dgObjectGolLeftThighDL; -#else -static const char gObjectGolLeftThighDL[] __attribute__((aligned (2))) = dgObjectGolLeftThighDL; -#endif - -#define dgObjectGolLeftShinDL "__OTR__objects/object_gol/gObjectGolLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolLeftShinDL[] = dgObjectGolLeftShinDL; -#else -static const char gObjectGolLeftShinDL[] __attribute__((aligned (2))) = dgObjectGolLeftShinDL; -#endif - -#define dgObjectGolRightFootDL "__OTR__objects/object_gol/gObjectGolRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolRightFootDL[] = dgObjectGolRightFootDL; -#else -static const char gObjectGolRightFootDL[] __attribute__((aligned (2))) = dgObjectGolRightFootDL; -#endif - -#define dgObjectGolRightThighDL "__OTR__objects/object_gol/gObjectGolRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolRightThighDL[] = dgObjectGolRightThighDL; -#else -static const char gObjectGolRightThighDL[] __attribute__((aligned (2))) = dgObjectGolRightThighDL; -#endif - -#define dgObjectGolRightShinDL "__OTR__objects/object_gol/gObjectGolRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolRightShinDL[] = dgObjectGolRightShinDL; -#else -static const char gObjectGolRightShinDL[] __attribute__((aligned (2))) = dgObjectGolRightShinDL; -#endif - -#define dgObjectGolBodyDL "__OTR__objects/object_gol/gObjectGolBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolBodyDL[] = dgObjectGolBodyDL; -#else -static const char gObjectGolBodyDL[] __attribute__((aligned (2))) = dgObjectGolBodyDL; -#endif - -#define dgObjectGolEggDL "__OTR__objects/object_gol/gObjectGolEggDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolEggDL[] = dgObjectGolEggDL; -#else -static const char gObjectGolEggDL[] __attribute__((aligned (2))) = dgObjectGolEggDL; -#endif - -#define dgObjectGolEyeIrisDL "__OTR__objects/object_gol/gObjectGolEyeIrisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolEyeIrisDL[] = dgObjectGolEyeIrisDL; -#else -static const char gObjectGolEyeIrisDL[] __attribute__((aligned (2))) = dgObjectGolEyeIrisDL; -#endif - -#define dgObjectGolAntennaDL "__OTR__objects/object_gol/gObjectGolAntennaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolAntennaDL[] = dgObjectGolAntennaDL; -#else -static const char gObjectGolAntennaDL[] __attribute__((aligned (2))) = dgObjectGolAntennaDL; -#endif - -#define dgObjectGolShellTex "__OTR__objects/object_gol/gObjectGolShellTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolShellTex[] = dgObjectGolShellTex; -#else -static const char gObjectGolShellTex[] __attribute__((aligned (2))) = dgObjectGolShellTex; -#endif - -#define dgObjectGolSkinTex "__OTR__objects/object_gol/gObjectGolSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolSkinTex[] = dgObjectGolSkinTex; -#else -static const char gObjectGolSkinTex[] __attribute__((aligned (2))) = dgObjectGolSkinTex; -#endif - -#define dgObjectGolEyeWhiteTex "__OTR__objects/object_gol/gObjectGolEyeWhiteTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolEyeWhiteTex[] = dgObjectGolEyeWhiteTex; -#else -static const char gObjectGolEyeWhiteTex[] __attribute__((aligned (2))) = dgObjectGolEyeWhiteTex; -#endif - -#define dgObjectGolEyeIrisTex "__OTR__objects/object_gol/gObjectGolEyeIrisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolEyeIrisTex[] = dgObjectGolEyeIrisTex; -#else -static const char gObjectGolEyeIrisTex[] __attribute__((aligned (2))) = dgObjectGolEyeIrisTex; -#endif - -#define dgObjectGolEggTex "__OTR__objects/object_gol/gObjectGolEggTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectGolEggTex[] = dgObjectGolEggTex; -#else -static const char gObjectGolEggTex[] __attribute__((aligned (2))) = dgObjectGolEggTex; -#endif - +#include "align_asset_macro.h" + +#define dgObjectGolSkel "__OTR__objects/object_gol/gObjectGolSkel" +static const ALIGN_ASSET(2) char gObjectGolSkel[] = dgObjectGolSkel; + +#define dgObjectGolLandFromJumpAnim "__OTR__objects/object_gol/gObjectGolLandFromJumpAnim" +static const ALIGN_ASSET(2) char gObjectGolLandFromJumpAnim[] = dgObjectGolLandFromJumpAnim; + +#define dgObjectGolDeadTwitchingAnim "__OTR__objects/object_gol/gObjectGolDeadTwitchingAnim" +static const ALIGN_ASSET(2) char gObjectGolDeadTwitchingAnim[] = dgObjectGolDeadTwitchingAnim; + +#define dgObjectGolJumpHeadbuttAnim "__OTR__objects/object_gol/gObjectGolJumpHeadbuttAnim" +static const ALIGN_ASSET(2) char gObjectGolJumpHeadbuttAnim[] = dgObjectGolJumpHeadbuttAnim; + +#define dgObjectGolDamagedAnim "__OTR__objects/object_gol/gObjectGolDamagedAnim" +static const ALIGN_ASSET(2) char gObjectGolDamagedAnim[] = dgObjectGolDamagedAnim; + +#define dgObjectGolDeathAnim "__OTR__objects/object_gol/gObjectGolDeathAnim" +static const ALIGN_ASSET(2) char gObjectGolDeathAnim[] = dgObjectGolDeathAnim; + +#define dgObjectGolPrepareJumpAnim "__OTR__objects/object_gol/gObjectGolPrepareJumpAnim" +static const ALIGN_ASSET(2) char gObjectGolPrepareJumpAnim[] = dgObjectGolPrepareJumpAnim; + +#define dgObjectGolWalkAnim "__OTR__objects/object_gol/gObjectGolWalkAnim" +static const ALIGN_ASSET(2) char gObjectGolWalkAnim[] = dgObjectGolWalkAnim; + +#define dgObjectGolStandAnim "__OTR__objects/object_gol/gObjectGolStandAnim" +static const ALIGN_ASSET(2) char gObjectGolStandAnim[] = dgObjectGolStandAnim; + +#define dgObjectGolRunningAnim "__OTR__objects/object_gol/gObjectGolRunningAnim" +static const ALIGN_ASSET(2) char gObjectGolRunningAnim[] = dgObjectGolRunningAnim; + +#define dgObjectGolStopRunningAnim "__OTR__objects/object_gol/gObjectGolStopRunningAnim" +static const ALIGN_ASSET(2) char gObjectGolStopRunningAnim[] = dgObjectGolStopRunningAnim; + +#define dgObjectGolStartRunningAnim "__OTR__objects/object_gol/gObjectGolStartRunningAnim" +static const ALIGN_ASSET(2) char gObjectGolStartRunningAnim[] = dgObjectGolStartRunningAnim; + +#define dgObjectGolLeftFootDL "__OTR__objects/object_gol/gObjectGolLeftFootDL" +static const ALIGN_ASSET(2) char gObjectGolLeftFootDL[] = dgObjectGolLeftFootDL; + +#define dgObjectGolLeftThighDL "__OTR__objects/object_gol/gObjectGolLeftThighDL" +static const ALIGN_ASSET(2) char gObjectGolLeftThighDL[] = dgObjectGolLeftThighDL; + +#define dgObjectGolLeftShinDL "__OTR__objects/object_gol/gObjectGolLeftShinDL" +static const ALIGN_ASSET(2) char gObjectGolLeftShinDL[] = dgObjectGolLeftShinDL; + +#define dgObjectGolRightFootDL "__OTR__objects/object_gol/gObjectGolRightFootDL" +static const ALIGN_ASSET(2) char gObjectGolRightFootDL[] = dgObjectGolRightFootDL; + +#define dgObjectGolRightThighDL "__OTR__objects/object_gol/gObjectGolRightThighDL" +static const ALIGN_ASSET(2) char gObjectGolRightThighDL[] = dgObjectGolRightThighDL; + +#define dgObjectGolRightShinDL "__OTR__objects/object_gol/gObjectGolRightShinDL" +static const ALIGN_ASSET(2) char gObjectGolRightShinDL[] = dgObjectGolRightShinDL; + +#define dgObjectGolBodyDL "__OTR__objects/object_gol/gObjectGolBodyDL" +static const ALIGN_ASSET(2) char gObjectGolBodyDL[] = dgObjectGolBodyDL; + +#define dgObjectGolEggDL "__OTR__objects/object_gol/gObjectGolEggDL" +static const ALIGN_ASSET(2) char gObjectGolEggDL[] = dgObjectGolEggDL; + +#define dgObjectGolEyeIrisDL "__OTR__objects/object_gol/gObjectGolEyeIrisDL" +static const ALIGN_ASSET(2) char gObjectGolEyeIrisDL[] = dgObjectGolEyeIrisDL; + +#define dgObjectGolAntennaDL "__OTR__objects/object_gol/gObjectGolAntennaDL" +static const ALIGN_ASSET(2) char gObjectGolAntennaDL[] = dgObjectGolAntennaDL; + +#define dgObjectGolShellTex "__OTR__objects/object_gol/gObjectGolShellTex" +static const ALIGN_ASSET(2) char gObjectGolShellTex[] = dgObjectGolShellTex; + +#define dgObjectGolSkinTex "__OTR__objects/object_gol/gObjectGolSkinTex" +static const ALIGN_ASSET(2) char gObjectGolSkinTex[] = dgObjectGolSkinTex; + +#define dgObjectGolEyeWhiteTex "__OTR__objects/object_gol/gObjectGolEyeWhiteTex" +static const ALIGN_ASSET(2) char gObjectGolEyeWhiteTex[] = dgObjectGolEyeWhiteTex; + +#define dgObjectGolEyeIrisTex "__OTR__objects/object_gol/gObjectGolEyeIrisTex" +static const ALIGN_ASSET(2) char gObjectGolEyeIrisTex[] = dgObjectGolEyeIrisTex; + +#define dgObjectGolEggTex "__OTR__objects/object_gol/gObjectGolEggTex" +static const ALIGN_ASSET(2) char gObjectGolEggTex[] = dgObjectGolEggTex; \ No newline at end of file diff --git a/soh/assets/objects/object_goma/object_goma.h b/soh/assets/objects/object_goma/object_goma.h index ae6cf22d8..64468ff0e 100644 --- a/soh/assets/objects/object_goma/object_goma.h +++ b/soh/assets/objects/object_goma/object_goma.h @@ -1,457 +1,198 @@ #pragma once -#define dgGohmaSkel "__OTR__objects/object_goma/gGohmaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaSkel[] = dgGohmaSkel; -#else -static const char gGohmaSkel[] __attribute__((aligned (2))) = dgGohmaSkel; -#endif - -#define dgGohmaBodyDL "__OTR__objects/object_goma/gGohmaBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaBodyDL[] = dgGohmaBodyDL; -#else -static const char gGohmaBodyDL[] __attribute__((aligned (2))) = dgGohmaBodyDL; -#endif - -#define dgGohmaBodyShellDL "__OTR__objects/object_goma/gGohmaBodyShellDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaBodyShellDL[] = dgGohmaBodyShellDL; -#else -static const char gGohmaBodyShellDL[] __attribute__((aligned (2))) = dgGohmaBodyShellDL; -#endif - -#define dgGohmaEyeDL "__OTR__objects/object_goma/gGohmaEyeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaEyeDL[] = dgGohmaEyeDL; -#else -static const char gGohmaEyeDL[] __attribute__((aligned (2))) = dgGohmaEyeDL; -#endif - -#define dgGohmaTail4DL "__OTR__objects/object_goma/gGohmaTail4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaTail4DL[] = dgGohmaTail4DL; -#else -static const char gGohmaTail4DL[] __attribute__((aligned (2))) = dgGohmaTail4DL; -#endif - -#define dgGohmaTail3DL "__OTR__objects/object_goma/gGohmaTail3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaTail3DL[] = dgGohmaTail3DL; -#else -static const char gGohmaTail3DL[] __attribute__((aligned (2))) = dgGohmaTail3DL; -#endif - -#define dgGohmaTail2DL "__OTR__objects/object_goma/gGohmaTail2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaTail2DL[] = dgGohmaTail2DL; -#else -static const char gGohmaTail2DL[] __attribute__((aligned (2))) = dgGohmaTail2DL; -#endif - -#define dgGohmaTail1DL "__OTR__objects/object_goma/gGohmaTail1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaTail1DL[] = dgGohmaTail1DL; -#else -static const char gGohmaTail1DL[] __attribute__((aligned (2))) = dgGohmaTail1DL; -#endif - -#define dgGohmaRightFeetBackDL "__OTR__objects/object_goma/gGohmaRightFeetBackDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightFeetBackDL[] = dgGohmaRightFeetBackDL; -#else -static const char gGohmaRightFeetBackDL[] __attribute__((aligned (2))) = dgGohmaRightFeetBackDL; -#endif - -#define dgGohmaRightFeetDL "__OTR__objects/object_goma/gGohmaRightFeetDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightFeetDL[] = dgGohmaRightFeetDL; -#else -static const char gGohmaRightFeetDL[] __attribute__((aligned (2))) = dgGohmaRightFeetDL; -#endif - -#define dgGohmaRightShinDL "__OTR__objects/object_goma/gGohmaRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightShinDL[] = dgGohmaRightShinDL; -#else -static const char gGohmaRightShinDL[] __attribute__((aligned (2))) = dgGohmaRightShinDL; -#endif - -#define dgGohmaRightKneeDL "__OTR__objects/object_goma/gGohmaRightKneeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightKneeDL[] = dgGohmaRightKneeDL; -#else -static const char gGohmaRightKneeDL[] __attribute__((aligned (2))) = dgGohmaRightKneeDL; -#endif - -#define dgGohmaRightThighShellDL "__OTR__objects/object_goma/gGohmaRightThighShellDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightThighShellDL[] = dgGohmaRightThighShellDL; -#else -static const char gGohmaRightThighShellDL[] __attribute__((aligned (2))) = dgGohmaRightThighShellDL; -#endif - -#define dgGohmaRightThighDL "__OTR__objects/object_goma/gGohmaRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightThighDL[] = dgGohmaRightThighDL; -#else -static const char gGohmaRightThighDL[] __attribute__((aligned (2))) = dgGohmaRightThighDL; -#endif - -#define dgGohmaEyeLidBottomDL "__OTR__objects/object_goma/gGohmaEyeLidBottomDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaEyeLidBottomDL[] = dgGohmaEyeLidBottomDL; -#else -static const char gGohmaEyeLidBottomDL[] __attribute__((aligned (2))) = dgGohmaEyeLidBottomDL; -#endif - -#define dgGohmaEyeLidTopDL "__OTR__objects/object_goma/gGohmaEyeLidTopDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaEyeLidTopDL[] = dgGohmaEyeLidTopDL; -#else -static const char gGohmaEyeLidTopDL[] __attribute__((aligned (2))) = dgGohmaEyeLidTopDL; -#endif - -#define dgGohmaIrisDL "__OTR__objects/object_goma/gGohmaIrisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaIrisDL[] = dgGohmaIrisDL; -#else -static const char gGohmaIrisDL[] __attribute__((aligned (2))) = dgGohmaIrisDL; -#endif - -#define dgGohmaMandiblesBodyDL "__OTR__objects/object_goma/gGohmaMandiblesBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaMandiblesBodyDL[] = dgGohmaMandiblesBodyDL; -#else -static const char gGohmaMandiblesBodyDL[] __attribute__((aligned (2))) = dgGohmaMandiblesBodyDL; -#endif - -#define dgGohmaLeftMandibles2DL "__OTR__objects/object_goma/gGohmaLeftMandibles2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftMandibles2DL[] = dgGohmaLeftMandibles2DL; -#else -static const char gGohmaLeftMandibles2DL[] __attribute__((aligned (2))) = dgGohmaLeftMandibles2DL; -#endif - -#define dgGohmaLeftMandibles1DL "__OTR__objects/object_goma/gGohmaLeftMandibles1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftMandibles1DL[] = dgGohmaLeftMandibles1DL; -#else -static const char gGohmaLeftMandibles1DL[] __attribute__((aligned (2))) = dgGohmaLeftMandibles1DL; -#endif - -#define dgGohmaRightMandibles2DL "__OTR__objects/object_goma/gGohmaRightMandibles2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightMandibles2DL[] = dgGohmaRightMandibles2DL; -#else -static const char gGohmaRightMandibles2DL[] __attribute__((aligned (2))) = dgGohmaRightMandibles2DL; -#endif - -#define dgGohmaRightMandibles1DL "__OTR__objects/object_goma/gGohmaRightMandibles1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightMandibles1DL[] = dgGohmaRightMandibles1DL; -#else -static const char gGohmaRightMandibles1DL[] __attribute__((aligned (2))) = dgGohmaRightMandibles1DL; -#endif - -#define dgGohmaLeftAntennaClawDL "__OTR__objects/object_goma/gGohmaLeftAntennaClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftAntennaClawDL[] = dgGohmaLeftAntennaClawDL; -#else -static const char gGohmaLeftAntennaClawDL[] __attribute__((aligned (2))) = dgGohmaLeftAntennaClawDL; -#endif - -#define dgGohmaLeftAntennaShellDL "__OTR__objects/object_goma/gGohmaLeftAntennaShellDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftAntennaShellDL[] = dgGohmaLeftAntennaShellDL; -#else -static const char gGohmaLeftAntennaShellDL[] __attribute__((aligned (2))) = dgGohmaLeftAntennaShellDL; -#endif - -#define dgGohmaLeftAntennaBodyDL "__OTR__objects/object_goma/gGohmaLeftAntennaBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftAntennaBodyDL[] = dgGohmaLeftAntennaBodyDL; -#else -static const char gGohmaLeftAntennaBodyDL[] __attribute__((aligned (2))) = dgGohmaLeftAntennaBodyDL; -#endif - -#define dgGohmaRightAntennaClawDL "__OTR__objects/object_goma/gGohmaRightAntennaClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightAntennaClawDL[] = dgGohmaRightAntennaClawDL; -#else -static const char gGohmaRightAntennaClawDL[] __attribute__((aligned (2))) = dgGohmaRightAntennaClawDL; -#endif - -#define dgGohmaRightAntennaShellDL "__OTR__objects/object_goma/gGohmaRightAntennaShellDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightAntennaShellDL[] = dgGohmaRightAntennaShellDL; -#else -static const char gGohmaRightAntennaShellDL[] __attribute__((aligned (2))) = dgGohmaRightAntennaShellDL; -#endif - -#define dgGohmaRightAntennaBodyDL "__OTR__objects/object_goma/gGohmaRightAntennaBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRightAntennaBodyDL[] = dgGohmaRightAntennaBodyDL; -#else -static const char gGohmaRightAntennaBodyDL[] __attribute__((aligned (2))) = dgGohmaRightAntennaBodyDL; -#endif - -#define dgGohmaLeftFeetBackDL "__OTR__objects/object_goma/gGohmaLeftFeetBackDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftFeetBackDL[] = dgGohmaLeftFeetBackDL; -#else -static const char gGohmaLeftFeetBackDL[] __attribute__((aligned (2))) = dgGohmaLeftFeetBackDL; -#endif - -#define dgGohmaLeftFeetDL "__OTR__objects/object_goma/gGohmaLeftFeetDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftFeetDL[] = dgGohmaLeftFeetDL; -#else -static const char gGohmaLeftFeetDL[] __attribute__((aligned (2))) = dgGohmaLeftFeetDL; -#endif - -#define dgGohmaLeftShinDL "__OTR__objects/object_goma/gGohmaLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftShinDL[] = dgGohmaLeftShinDL; -#else -static const char gGohmaLeftShinDL[] __attribute__((aligned (2))) = dgGohmaLeftShinDL; -#endif - -#define dgGohmaLeftKneeDL "__OTR__objects/object_goma/gGohmaLeftKneeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftKneeDL[] = dgGohmaLeftKneeDL; -#else -static const char gGohmaLeftKneeDL[] __attribute__((aligned (2))) = dgGohmaLeftKneeDL; -#endif - -#define dgGohmaLeftThighShellDL "__OTR__objects/object_goma/gGohmaLeftThighShellDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftThighShellDL[] = dgGohmaLeftThighShellDL; -#else -static const char gGohmaLeftThighShellDL[] __attribute__((aligned (2))) = dgGohmaLeftThighShellDL; -#endif - -#define dgGohmaLeftThighDL "__OTR__objects/object_goma/gGohmaLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLeftThighDL[] = dgGohmaLeftThighDL; -#else -static const char gGohmaLeftThighDL[] __attribute__((aligned (2))) = dgGohmaLeftThighDL; -#endif - -#define dgGohmaBodyShellBackDL "__OTR__objects/object_goma/gGohmaBodyShellBackDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaBodyShellBackDL[] = dgGohmaBodyShellBackDL; -#else -static const char gGohmaBodyShellBackDL[] __attribute__((aligned (2))) = dgGohmaBodyShellBackDL; -#endif - -#define dgGohmaStandAnim "__OTR__objects/object_goma/gGohmaStandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaStandAnim[] = dgGohmaStandAnim; -#else -static const char gGohmaStandAnim[] __attribute__((aligned (2))) = dgGohmaStandAnim; -#endif - -#define dgGohmaHangAnim "__OTR__objects/object_goma/gGohmaHangAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaHangAnim[] = dgGohmaHangAnim; -#else -static const char gGohmaHangAnim[] __attribute__((aligned (2))) = dgGohmaHangAnim; -#endif - -#define dgGohmaWalkAnim "__OTR__objects/object_goma/gGohmaWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaWalkAnim[] = dgGohmaWalkAnim; -#else -static const char gGohmaWalkAnim[] __attribute__((aligned (2))) = dgGohmaWalkAnim; -#endif - -#define dgGohmaPrepareEggsAnim "__OTR__objects/object_goma/gGohmaPrepareEggsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaPrepareEggsAnim[] = dgGohmaPrepareEggsAnim; -#else -static const char gGohmaPrepareEggsAnim[] __attribute__((aligned (2))) = dgGohmaPrepareEggsAnim; -#endif - -#define dgGohmaAttackAnim "__OTR__objects/object_goma/gGohmaAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaAttackAnim[] = dgGohmaAttackAnim; -#else -static const char gGohmaAttackAnim[] __attribute__((aligned (2))) = dgGohmaAttackAnim; -#endif - -#define dgGohmaRestAfterAttackAnim "__OTR__objects/object_goma/gGohmaRestAfterAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRestAfterAttackAnim[] = dgGohmaRestAfterAttackAnim; -#else -static const char gGohmaRestAfterAttackAnim[] __attribute__((aligned (2))) = dgGohmaRestAfterAttackAnim; -#endif - -#define dgGohmaRecoverAfterAttackAnim "__OTR__objects/object_goma/gGohmaRecoverAfterAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaRecoverAfterAttackAnim[] = dgGohmaRecoverAfterAttackAnim; -#else -static const char gGohmaRecoverAfterAttackAnim[] __attribute__((aligned (2))) = dgGohmaRecoverAfterAttackAnim; -#endif - -#define dgGohmaCrashAnim "__OTR__objects/object_goma/gGohmaCrashAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaCrashAnim[] = dgGohmaCrashAnim; -#else -static const char gGohmaCrashAnim[] __attribute__((aligned (2))) = dgGohmaCrashAnim; -#endif - -#define dgGohmaLandAnim "__OTR__objects/object_goma/gGohmaLandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLandAnim[] = dgGohmaLandAnim; -#else -static const char gGohmaLandAnim[] __attribute__((aligned (2))) = dgGohmaLandAnim; -#endif - -#define dgGohmaClimbAnim "__OTR__objects/object_goma/gGohmaClimbAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaClimbAnim[] = dgGohmaClimbAnim; -#else -static const char gGohmaClimbAnim[] __attribute__((aligned (2))) = dgGohmaClimbAnim; -#endif - -#define dgGohmaDamageAnim "__OTR__objects/object_goma/gGohmaDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaDamageAnim[] = dgGohmaDamageAnim; -#else -static const char gGohmaDamageAnim[] __attribute__((aligned (2))) = dgGohmaDamageAnim; -#endif - -#define dgGohmaDeathAnim "__OTR__objects/object_goma/gGohmaDeathAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaDeathAnim[] = dgGohmaDeathAnim; -#else -static const char gGohmaDeathAnim[] __attribute__((aligned (2))) = dgGohmaDeathAnim; -#endif - -#define dgGohmaPrepareAttackAnim "__OTR__objects/object_goma/gGohmaPrepareAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaPrepareAttackAnim[] = dgGohmaPrepareAttackAnim; -#else -static const char gGohmaPrepareAttackAnim[] __attribute__((aligned (2))) = dgGohmaPrepareAttackAnim; -#endif - -#define dgGohmaStunnedAnim "__OTR__objects/object_goma/gGohmaStunnedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaStunnedAnim[] = dgGohmaStunnedAnim; -#else -static const char gGohmaStunnedAnim[] __attribute__((aligned (2))) = dgGohmaStunnedAnim; -#endif - -#define dgGohmaInitialLandingAnim "__OTR__objects/object_goma/gGohmaInitialLandingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaInitialLandingAnim[] = dgGohmaInitialLandingAnim; -#else -static const char gGohmaInitialLandingAnim[] __attribute__((aligned (2))) = dgGohmaInitialLandingAnim; -#endif - -#define dgGohmaEyeRollAnim "__OTR__objects/object_goma/gGohmaEyeRollAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaEyeRollAnim[] = dgGohmaEyeRollAnim; -#else -static const char gGohmaEyeRollAnim[] __attribute__((aligned (2))) = dgGohmaEyeRollAnim; -#endif - -#define dgGohmaLayEggsAnim "__OTR__objects/object_goma/gGohmaLayEggsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaLayEggsAnim[] = dgGohmaLayEggsAnim; -#else -static const char gGohmaLayEggsAnim[] __attribute__((aligned (2))) = dgGohmaLayEggsAnim; -#endif - -#define dgGohmaIdleCrouchedAnim "__OTR__objects/object_goma/gGohmaIdleCrouchedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaIdleCrouchedAnim[] = dgGohmaIdleCrouchedAnim; -#else -static const char gGohmaIdleCrouchedAnim[] __attribute__((aligned (2))) = dgGohmaIdleCrouchedAnim; -#endif - -#define dgGohmaWalkCrouchedAnim "__OTR__objects/object_goma/gGohmaWalkCrouchedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaWalkCrouchedAnim[] = dgGohmaWalkCrouchedAnim; -#else -static const char gGohmaWalkCrouchedAnim[] __attribute__((aligned (2))) = dgGohmaWalkCrouchedAnim; -#endif - -#define dgGohmaViolentAttackAnim "__OTR__objects/object_goma/gGohmaViolentAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaViolentAttackAnim[] = dgGohmaViolentAttackAnim; -#else -static const char gGohmaViolentAttackAnim[] __attribute__((aligned (2))) = dgGohmaViolentAttackAnim; -#endif - -#define dgGohmaBodyTex "__OTR__objects/object_goma/gGohmaBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaBodyTex[] = dgGohmaBodyTex; -#else -static const char gGohmaBodyTex[] __attribute__((aligned (2))) = dgGohmaBodyTex; -#endif - -#define dgGohmaShellUndersideTex "__OTR__objects/object_goma/gGohmaShellUndersideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaShellUndersideTex[] = dgGohmaShellUndersideTex; -#else -static const char gGohmaShellUndersideTex[] __attribute__((aligned (2))) = dgGohmaShellUndersideTex; -#endif - -#define dgGohmaDarkShellTex "__OTR__objects/object_goma/gGohmaDarkShellTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaDarkShellTex[] = dgGohmaDarkShellTex; -#else -static const char gGohmaDarkShellTex[] __attribute__((aligned (2))) = dgGohmaDarkShellTex; -#endif - -#define dgGohmaShellTex "__OTR__objects/object_goma/gGohmaShellTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaShellTex[] = dgGohmaShellTex; -#else -static const char gGohmaShellTex[] __attribute__((aligned (2))) = dgGohmaShellTex; -#endif - -#define dgGohmaEyeTex "__OTR__objects/object_goma/gGohmaEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaEyeTex[] = dgGohmaEyeTex; -#else -static const char gGohmaEyeTex[] __attribute__((aligned (2))) = dgGohmaEyeTex; -#endif - -#define dgGohmaIrisTex "__OTR__objects/object_goma/gGohmaIrisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaIrisTex[] = dgGohmaIrisTex; -#else -static const char gGohmaIrisTex[] __attribute__((aligned (2))) = dgGohmaIrisTex; -#endif - -#define dgGohmaTitleCardTex "__OTR__objects/object_goma/gGohmaTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaTitleCardTex[] = dgGohmaTitleCardTex; -#else -static const char gGohmaTitleCardTex[] __attribute__((aligned (2))) = dgGohmaTitleCardTex; -#endif - -#define dgGohmaDoorDL "__OTR__objects/object_goma/gGohmaDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaDoorDL[] = dgGohmaDoorDL; -#else -static const char gGohmaDoorDL[] __attribute__((aligned (2))) = dgGohmaDoorDL; -#endif - -#define dgGohmaDoorCol "__OTR__objects/object_goma/gGohmaDoorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaDoorCol[] = dgGohmaDoorCol; -#else -static const char gGohmaDoorCol[] __attribute__((aligned (2))) = dgGohmaDoorCol; -#endif - -#define dgGohmaDoorTex "__OTR__objects/object_goma/gGohmaDoorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGohmaDoorTex[] = dgGohmaDoorTex; -#else -static const char gGohmaDoorTex[] __attribute__((aligned (2))) = dgGohmaDoorTex; -#endif - +#include "align_asset_macro.h" + +#define dgGohmaSkel "__OTR__objects/object_goma/gGohmaSkel" +static const ALIGN_ASSET(2) char gGohmaSkel[] = dgGohmaSkel; + +#define dgGohmaBodyDL "__OTR__objects/object_goma/gGohmaBodyDL" +static const ALIGN_ASSET(2) char gGohmaBodyDL[] = dgGohmaBodyDL; + +#define dgGohmaBodyShellDL "__OTR__objects/object_goma/gGohmaBodyShellDL" +static const ALIGN_ASSET(2) char gGohmaBodyShellDL[] = dgGohmaBodyShellDL; + +#define dgGohmaEyeDL "__OTR__objects/object_goma/gGohmaEyeDL" +static const ALIGN_ASSET(2) char gGohmaEyeDL[] = dgGohmaEyeDL; + +#define dgGohmaTail4DL "__OTR__objects/object_goma/gGohmaTail4DL" +static const ALIGN_ASSET(2) char gGohmaTail4DL[] = dgGohmaTail4DL; + +#define dgGohmaTail3DL "__OTR__objects/object_goma/gGohmaTail3DL" +static const ALIGN_ASSET(2) char gGohmaTail3DL[] = dgGohmaTail3DL; + +#define dgGohmaTail2DL "__OTR__objects/object_goma/gGohmaTail2DL" +static const ALIGN_ASSET(2) char gGohmaTail2DL[] = dgGohmaTail2DL; + +#define dgGohmaTail1DL "__OTR__objects/object_goma/gGohmaTail1DL" +static const ALIGN_ASSET(2) char gGohmaTail1DL[] = dgGohmaTail1DL; + +#define dgGohmaRightFeetBackDL "__OTR__objects/object_goma/gGohmaRightFeetBackDL" +static const ALIGN_ASSET(2) char gGohmaRightFeetBackDL[] = dgGohmaRightFeetBackDL; + +#define dgGohmaRightFeetDL "__OTR__objects/object_goma/gGohmaRightFeetDL" +static const ALIGN_ASSET(2) char gGohmaRightFeetDL[] = dgGohmaRightFeetDL; + +#define dgGohmaRightShinDL "__OTR__objects/object_goma/gGohmaRightShinDL" +static const ALIGN_ASSET(2) char gGohmaRightShinDL[] = dgGohmaRightShinDL; + +#define dgGohmaRightKneeDL "__OTR__objects/object_goma/gGohmaRightKneeDL" +static const ALIGN_ASSET(2) char gGohmaRightKneeDL[] = dgGohmaRightKneeDL; + +#define dgGohmaRightThighShellDL "__OTR__objects/object_goma/gGohmaRightThighShellDL" +static const ALIGN_ASSET(2) char gGohmaRightThighShellDL[] = dgGohmaRightThighShellDL; + +#define dgGohmaRightThighDL "__OTR__objects/object_goma/gGohmaRightThighDL" +static const ALIGN_ASSET(2) char gGohmaRightThighDL[] = dgGohmaRightThighDL; + +#define dgGohmaEyeLidBottomDL "__OTR__objects/object_goma/gGohmaEyeLidBottomDL" +static const ALIGN_ASSET(2) char gGohmaEyeLidBottomDL[] = dgGohmaEyeLidBottomDL; + +#define dgGohmaEyeLidTopDL "__OTR__objects/object_goma/gGohmaEyeLidTopDL" +static const ALIGN_ASSET(2) char gGohmaEyeLidTopDL[] = dgGohmaEyeLidTopDL; + +#define dgGohmaIrisDL "__OTR__objects/object_goma/gGohmaIrisDL" +static const ALIGN_ASSET(2) char gGohmaIrisDL[] = dgGohmaIrisDL; + +#define dgGohmaMandiblesBodyDL "__OTR__objects/object_goma/gGohmaMandiblesBodyDL" +static const ALIGN_ASSET(2) char gGohmaMandiblesBodyDL[] = dgGohmaMandiblesBodyDL; + +#define dgGohmaLeftMandibles2DL "__OTR__objects/object_goma/gGohmaLeftMandibles2DL" +static const ALIGN_ASSET(2) char gGohmaLeftMandibles2DL[] = dgGohmaLeftMandibles2DL; + +#define dgGohmaLeftMandibles1DL "__OTR__objects/object_goma/gGohmaLeftMandibles1DL" +static const ALIGN_ASSET(2) char gGohmaLeftMandibles1DL[] = dgGohmaLeftMandibles1DL; + +#define dgGohmaRightMandibles2DL "__OTR__objects/object_goma/gGohmaRightMandibles2DL" +static const ALIGN_ASSET(2) char gGohmaRightMandibles2DL[] = dgGohmaRightMandibles2DL; + +#define dgGohmaRightMandibles1DL "__OTR__objects/object_goma/gGohmaRightMandibles1DL" +static const ALIGN_ASSET(2) char gGohmaRightMandibles1DL[] = dgGohmaRightMandibles1DL; + +#define dgGohmaLeftAntennaClawDL "__OTR__objects/object_goma/gGohmaLeftAntennaClawDL" +static const ALIGN_ASSET(2) char gGohmaLeftAntennaClawDL[] = dgGohmaLeftAntennaClawDL; + +#define dgGohmaLeftAntennaShellDL "__OTR__objects/object_goma/gGohmaLeftAntennaShellDL" +static const ALIGN_ASSET(2) char gGohmaLeftAntennaShellDL[] = dgGohmaLeftAntennaShellDL; + +#define dgGohmaLeftAntennaBodyDL "__OTR__objects/object_goma/gGohmaLeftAntennaBodyDL" +static const ALIGN_ASSET(2) char gGohmaLeftAntennaBodyDL[] = dgGohmaLeftAntennaBodyDL; + +#define dgGohmaRightAntennaClawDL "__OTR__objects/object_goma/gGohmaRightAntennaClawDL" +static const ALIGN_ASSET(2) char gGohmaRightAntennaClawDL[] = dgGohmaRightAntennaClawDL; + +#define dgGohmaRightAntennaShellDL "__OTR__objects/object_goma/gGohmaRightAntennaShellDL" +static const ALIGN_ASSET(2) char gGohmaRightAntennaShellDL[] = dgGohmaRightAntennaShellDL; + +#define dgGohmaRightAntennaBodyDL "__OTR__objects/object_goma/gGohmaRightAntennaBodyDL" +static const ALIGN_ASSET(2) char gGohmaRightAntennaBodyDL[] = dgGohmaRightAntennaBodyDL; + +#define dgGohmaLeftFeetBackDL "__OTR__objects/object_goma/gGohmaLeftFeetBackDL" +static const ALIGN_ASSET(2) char gGohmaLeftFeetBackDL[] = dgGohmaLeftFeetBackDL; + +#define dgGohmaLeftFeetDL "__OTR__objects/object_goma/gGohmaLeftFeetDL" +static const ALIGN_ASSET(2) char gGohmaLeftFeetDL[] = dgGohmaLeftFeetDL; + +#define dgGohmaLeftShinDL "__OTR__objects/object_goma/gGohmaLeftShinDL" +static const ALIGN_ASSET(2) char gGohmaLeftShinDL[] = dgGohmaLeftShinDL; + +#define dgGohmaLeftKneeDL "__OTR__objects/object_goma/gGohmaLeftKneeDL" +static const ALIGN_ASSET(2) char gGohmaLeftKneeDL[] = dgGohmaLeftKneeDL; + +#define dgGohmaLeftThighShellDL "__OTR__objects/object_goma/gGohmaLeftThighShellDL" +static const ALIGN_ASSET(2) char gGohmaLeftThighShellDL[] = dgGohmaLeftThighShellDL; + +#define dgGohmaLeftThighDL "__OTR__objects/object_goma/gGohmaLeftThighDL" +static const ALIGN_ASSET(2) char gGohmaLeftThighDL[] = dgGohmaLeftThighDL; + +#define dgGohmaBodyShellBackDL "__OTR__objects/object_goma/gGohmaBodyShellBackDL" +static const ALIGN_ASSET(2) char gGohmaBodyShellBackDL[] = dgGohmaBodyShellBackDL; + +#define dgGohmaStandAnim "__OTR__objects/object_goma/gGohmaStandAnim" +static const ALIGN_ASSET(2) char gGohmaStandAnim[] = dgGohmaStandAnim; + +#define dgGohmaHangAnim "__OTR__objects/object_goma/gGohmaHangAnim" +static const ALIGN_ASSET(2) char gGohmaHangAnim[] = dgGohmaHangAnim; + +#define dgGohmaWalkAnim "__OTR__objects/object_goma/gGohmaWalkAnim" +static const ALIGN_ASSET(2) char gGohmaWalkAnim[] = dgGohmaWalkAnim; + +#define dgGohmaPrepareEggsAnim "__OTR__objects/object_goma/gGohmaPrepareEggsAnim" +static const ALIGN_ASSET(2) char gGohmaPrepareEggsAnim[] = dgGohmaPrepareEggsAnim; + +#define dgGohmaAttackAnim "__OTR__objects/object_goma/gGohmaAttackAnim" +static const ALIGN_ASSET(2) char gGohmaAttackAnim[] = dgGohmaAttackAnim; + +#define dgGohmaRestAfterAttackAnim "__OTR__objects/object_goma/gGohmaRestAfterAttackAnim" +static const ALIGN_ASSET(2) char gGohmaRestAfterAttackAnim[] = dgGohmaRestAfterAttackAnim; + +#define dgGohmaRecoverAfterAttackAnim "__OTR__objects/object_goma/gGohmaRecoverAfterAttackAnim" +static const ALIGN_ASSET(2) char gGohmaRecoverAfterAttackAnim[] = dgGohmaRecoverAfterAttackAnim; + +#define dgGohmaCrashAnim "__OTR__objects/object_goma/gGohmaCrashAnim" +static const ALIGN_ASSET(2) char gGohmaCrashAnim[] = dgGohmaCrashAnim; + +#define dgGohmaLandAnim "__OTR__objects/object_goma/gGohmaLandAnim" +static const ALIGN_ASSET(2) char gGohmaLandAnim[] = dgGohmaLandAnim; + +#define dgGohmaClimbAnim "__OTR__objects/object_goma/gGohmaClimbAnim" +static const ALIGN_ASSET(2) char gGohmaClimbAnim[] = dgGohmaClimbAnim; + +#define dgGohmaDamageAnim "__OTR__objects/object_goma/gGohmaDamageAnim" +static const ALIGN_ASSET(2) char gGohmaDamageAnim[] = dgGohmaDamageAnim; + +#define dgGohmaDeathAnim "__OTR__objects/object_goma/gGohmaDeathAnim" +static const ALIGN_ASSET(2) char gGohmaDeathAnim[] = dgGohmaDeathAnim; + +#define dgGohmaPrepareAttackAnim "__OTR__objects/object_goma/gGohmaPrepareAttackAnim" +static const ALIGN_ASSET(2) char gGohmaPrepareAttackAnim[] = dgGohmaPrepareAttackAnim; + +#define dgGohmaStunnedAnim "__OTR__objects/object_goma/gGohmaStunnedAnim" +static const ALIGN_ASSET(2) char gGohmaStunnedAnim[] = dgGohmaStunnedAnim; + +#define dgGohmaInitialLandingAnim "__OTR__objects/object_goma/gGohmaInitialLandingAnim" +static const ALIGN_ASSET(2) char gGohmaInitialLandingAnim[] = dgGohmaInitialLandingAnim; + +#define dgGohmaEyeRollAnim "__OTR__objects/object_goma/gGohmaEyeRollAnim" +static const ALIGN_ASSET(2) char gGohmaEyeRollAnim[] = dgGohmaEyeRollAnim; + +#define dgGohmaLayEggsAnim "__OTR__objects/object_goma/gGohmaLayEggsAnim" +static const ALIGN_ASSET(2) char gGohmaLayEggsAnim[] = dgGohmaLayEggsAnim; + +#define dgGohmaIdleCrouchedAnim "__OTR__objects/object_goma/gGohmaIdleCrouchedAnim" +static const ALIGN_ASSET(2) char gGohmaIdleCrouchedAnim[] = dgGohmaIdleCrouchedAnim; + +#define dgGohmaWalkCrouchedAnim "__OTR__objects/object_goma/gGohmaWalkCrouchedAnim" +static const ALIGN_ASSET(2) char gGohmaWalkCrouchedAnim[] = dgGohmaWalkCrouchedAnim; + +#define dgGohmaViolentAttackAnim "__OTR__objects/object_goma/gGohmaViolentAttackAnim" +static const ALIGN_ASSET(2) char gGohmaViolentAttackAnim[] = dgGohmaViolentAttackAnim; + +#define dgGohmaBodyTex "__OTR__objects/object_goma/gGohmaBodyTex" +static const ALIGN_ASSET(2) char gGohmaBodyTex[] = dgGohmaBodyTex; + +#define dgGohmaShellUndersideTex "__OTR__objects/object_goma/gGohmaShellUndersideTex" +static const ALIGN_ASSET(2) char gGohmaShellUndersideTex[] = dgGohmaShellUndersideTex; + +#define dgGohmaDarkShellTex "__OTR__objects/object_goma/gGohmaDarkShellTex" +static const ALIGN_ASSET(2) char gGohmaDarkShellTex[] = dgGohmaDarkShellTex; + +#define dgGohmaShellTex "__OTR__objects/object_goma/gGohmaShellTex" +static const ALIGN_ASSET(2) char gGohmaShellTex[] = dgGohmaShellTex; + +#define dgGohmaEyeTex "__OTR__objects/object_goma/gGohmaEyeTex" +static const ALIGN_ASSET(2) char gGohmaEyeTex[] = dgGohmaEyeTex; + +#define dgGohmaIrisTex "__OTR__objects/object_goma/gGohmaIrisTex" +static const ALIGN_ASSET(2) char gGohmaIrisTex[] = dgGohmaIrisTex; + +#define dgGohmaTitleCardTex "__OTR__objects/object_goma/gGohmaTitleCardTex" +static const ALIGN_ASSET(2) char gGohmaTitleCardTex[] = dgGohmaTitleCardTex; + +#define dgGohmaDoorDL "__OTR__objects/object_goma/gGohmaDoorDL" +static const ALIGN_ASSET(2) char gGohmaDoorDL[] = dgGohmaDoorDL; + +#define dgGohmaDoorCol "__OTR__objects/object_goma/gGohmaDoorCol" +static const ALIGN_ASSET(2) char gGohmaDoorCol[] = dgGohmaDoorCol; + +#define dgGohmaDoorTex "__OTR__objects/object_goma/gGohmaDoorTex" +static const ALIGN_ASSET(2) char gGohmaDoorTex[] = dgGohmaDoorTex; \ No newline at end of file diff --git a/soh/assets/objects/object_goroiwa/object_goroiwa.h b/soh/assets/objects/object_goroiwa/object_goroiwa.h index f16e5b04d..66d1b6407 100644 --- a/soh/assets/objects/object_goroiwa/object_goroiwa.h +++ b/soh/assets/objects/object_goroiwa/object_goroiwa.h @@ -1,16 +1,9 @@ #pragma once -#define dgRollingRockTex "__OTR__objects/object_goroiwa/gRollingRockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRollingRockTex[] = dgRollingRockTex; -#else -static const char gRollingRockTex[] __attribute__((aligned (2))) = dgRollingRockTex; -#endif - -#define dgRollingRockDL "__OTR__objects/object_goroiwa/gRollingRockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRollingRockDL[] = dgRollingRockDL; -#else -static const char gRollingRockDL[] __attribute__((aligned (2))) = dgRollingRockDL; -#endif - +#include "align_asset_macro.h" + +#define dgRollingRockTex "__OTR__objects/object_goroiwa/gRollingRockTex" +static const ALIGN_ASSET(2) char gRollingRockTex[] = dgRollingRockTex; + +#define dgRollingRockDL "__OTR__objects/object_goroiwa/gRollingRockDL" +static const ALIGN_ASSET(2) char gRollingRockDL[] = dgRollingRockDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gr/object_gr.h b/soh/assets/objects/object_gr/object_gr.h index 2943cb591..e71e2bfbd 100644 --- a/soh/assets/objects/object_gr/object_gr.h +++ b/soh/assets/objects/object_gr/object_gr.h @@ -1,268 +1,117 @@ #pragma once -#define dgNiwGirlSkel "__OTR__objects/object_gr/gNiwGirlSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkel[] = dgNiwGirlSkel; -#else -static const char gNiwGirlSkel[] __attribute__((aligned (2))) = dgNiwGirlSkel; -#endif - -#define dgNiwGirlRunAnim "__OTR__objects/object_gr/gNiwGirlRunAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlRunAnim[] = dgNiwGirlRunAnim; -#else -static const char gNiwGirlRunAnim[] __attribute__((aligned (2))) = dgNiwGirlRunAnim; -#endif - -#define dgNiwGirlJumpAnim "__OTR__objects/object_gr/gNiwGirlJumpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlJumpAnim[] = dgNiwGirlJumpAnim; -#else -static const char gNiwGirlJumpAnim[] __attribute__((aligned (2))) = dgNiwGirlJumpAnim; -#endif - -#define dgNiwGirlEyeOpenTex "__OTR__objects/object_gr/gNiwGirlEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlEyeOpenTex[] = dgNiwGirlEyeOpenTex; -#else -static const char gNiwGirlEyeOpenTex[] __attribute__((aligned (2))) = dgNiwGirlEyeOpenTex; -#endif - -#define dgNiwGirlEyeHalfTex "__OTR__objects/object_gr/gNiwGirlEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlEyeHalfTex[] = dgNiwGirlEyeHalfTex; -#else -static const char gNiwGirlEyeHalfTex[] __attribute__((aligned (2))) = dgNiwGirlEyeHalfTex; -#endif - -#define dgNiwGirlEyeClosedTex "__OTR__objects/object_gr/gNiwGirlEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlEyeClosedTex[] = dgNiwGirlEyeClosedTex; -#else -static const char gNiwGirlEyeClosedTex[] __attribute__((aligned (2))) = dgNiwGirlEyeClosedTex; -#endif - -#define dgNiwGirlMouthTex "__OTR__objects/object_gr/gNiwGirlMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlMouthTex[] = dgNiwGirlMouthTex; -#else -static const char gNiwGirlMouthTex[] __attribute__((aligned (2))) = dgNiwGirlMouthTex; -#endif - -#define dgNiwGirlDress1Tex "__OTR__objects/object_gr/gNiwGirlDress1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlDress1Tex[] = dgNiwGirlDress1Tex; -#else -static const char gNiwGirlDress1Tex[] __attribute__((aligned (2))) = dgNiwGirlDress1Tex; -#endif - -#define dgNiwGirlDress2Tex "__OTR__objects/object_gr/gNiwGirlDress2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlDress2Tex[] = dgNiwGirlDress2Tex; -#else -static const char gNiwGirlDress2Tex[] __attribute__((aligned (2))) = dgNiwGirlDress2Tex; -#endif - -#define dgNiwGirlDress3Tex "__OTR__objects/object_gr/gNiwGirlDress3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlDress3Tex[] = dgNiwGirlDress3Tex; -#else -static const char gNiwGirlDress3Tex[] __attribute__((aligned (2))) = dgNiwGirlDress3Tex; -#endif - -#define dgNiwGirlDress4Tex "__OTR__objects/object_gr/gNiwGirlDress4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlDress4Tex[] = dgNiwGirlDress4Tex; -#else -static const char gNiwGirlDress4Tex[] __attribute__((aligned (2))) = dgNiwGirlDress4Tex; -#endif - -#define dgNiwGirlDress5Tex "__OTR__objects/object_gr/gNiwGirlDress5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlDress5Tex[] = dgNiwGirlDress5Tex; -#else -static const char gNiwGirlDress5Tex[] __attribute__((aligned (2))) = dgNiwGirlDress5Tex; -#endif - -#define dgNiwGirlSkelLimbsLimb_009854DL_003638 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009854DL_003638" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_009854DL_003638[] = dgNiwGirlSkelLimbsLimb_009854DL_003638; -#else -static const char gNiwGirlSkelLimbsLimb_009854DL_003638[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_009854DL_003638; -#endif - -#define dgNiwGirlSkelLimbsLimb_009860DL_002C18 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009860DL_002C18" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_009860DL_002C18[] = dgNiwGirlSkelLimbsLimb_009860DL_002C18; -#else -static const char gNiwGirlSkelLimbsLimb_009860DL_002C18[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_009860DL_002C18; -#endif - -#define dgNiwGirlSkelLimbsLimb_00986CDL_002400 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_00986CDL_002400" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_00986CDL_002400[] = dgNiwGirlSkelLimbsLimb_00986CDL_002400; -#else -static const char gNiwGirlSkelLimbsLimb_00986CDL_002400[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_00986CDL_002400; -#endif - -#define dgNiwGirlSkelLimbsLimb_009878DL_0021C0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009878DL_0021C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_009878DL_0021C0[] = dgNiwGirlSkelLimbsLimb_009878DL_0021C0; -#else -static const char gNiwGirlSkelLimbsLimb_009878DL_0021C0[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_009878DL_0021C0; -#endif - -#define dgNiwGirlSkelLimbsLimb_009884DL_0022E0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009884DL_0022E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_009884DL_0022E0[] = dgNiwGirlSkelLimbsLimb_009884DL_0022E0; -#else -static const char gNiwGirlSkelLimbsLimb_009884DL_0022E0[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_009884DL_0022E0; -#endif - -#define dgNiwGirlSkelLimbsLimb_009890DL_003068 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009890DL_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_009890DL_003068[] = dgNiwGirlSkelLimbsLimb_009890DL_003068; -#else -static const char gNiwGirlSkelLimbsLimb_009890DL_003068[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_009890DL_003068; -#endif - -#define dgNiwGirlSkelLimbsLimb_00989CDL_002EA8 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_00989CDL_002EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_00989CDL_002EA8[] = dgNiwGirlSkelLimbsLimb_00989CDL_002EA8; -#else -static const char gNiwGirlSkelLimbsLimb_00989CDL_002EA8[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_00989CDL_002EA8; -#endif - -#define dgNiwGirlSkelLimbsLimb_0098A8DL_003430 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098A8DL_003430" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_0098A8DL_003430[] = dgNiwGirlSkelLimbsLimb_0098A8DL_003430; -#else -static const char gNiwGirlSkelLimbsLimb_0098A8DL_003430[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_0098A8DL_003430; -#endif - -#define dgNiwGirlSkelLimbsLimb_0098B4DL_003270 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098B4DL_003270" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_0098B4DL_003270[] = dgNiwGirlSkelLimbsLimb_0098B4DL_003270; -#else -static const char gNiwGirlSkelLimbsLimb_0098B4DL_003270[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_0098B4DL_003270; -#endif - -#define dgNiwGirlSkelLimbsLimb_0098C0DL_003AC0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098C0DL_003AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_0098C0DL_003AC0[] = dgNiwGirlSkelLimbsLimb_0098C0DL_003AC0; -#else -static const char gNiwGirlSkelLimbsLimb_0098C0DL_003AC0[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_0098C0DL_003AC0; -#endif - -#define dgNiwGirlSkelLimbsLimb_0098CCDL_0039A0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098CCDL_0039A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_0098CCDL_0039A0[] = dgNiwGirlSkelLimbsLimb_0098CCDL_0039A0; -#else -static const char gNiwGirlSkelLimbsLimb_0098CCDL_0039A0[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_0098CCDL_0039A0; -#endif - -#define dgNiwGirlSkelLimbsLimb_0098D8DL_0037C8 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098D8DL_0037C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_0098D8DL_0037C8[] = dgNiwGirlSkelLimbsLimb_0098D8DL_0037C8; -#else -static const char gNiwGirlSkelLimbsLimb_0098D8DL_0037C8[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_0098D8DL_0037C8; -#endif - -#define dgNiwGirlSkelLimbsLimb_0098E4DL_003E98 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098E4DL_003E98" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_0098E4DL_003E98[] = dgNiwGirlSkelLimbsLimb_0098E4DL_003E98; -#else -static const char gNiwGirlSkelLimbsLimb_0098E4DL_003E98[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_0098E4DL_003E98; -#endif - -#define dgNiwGirlSkelLimbsLimb_0098F0DL_003D78 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098F0DL_003D78" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_0098F0DL_003D78[] = dgNiwGirlSkelLimbsLimb_0098F0DL_003D78; -#else -static const char gNiwGirlSkelLimbsLimb_0098F0DL_003D78[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_0098F0DL_003D78; -#endif - -#define dgNiwGirlSkelLimbsLimb_0098FCDL_003BA0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098FCDL_003BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gNiwGirlSkelLimbsLimb_0098FCDL_003BA0[] = dgNiwGirlSkelLimbsLimb_0098FCDL_003BA0; -#else -static const char gNiwGirlSkelLimbsLimb_0098FCDL_003BA0[] __attribute__((aligned (2))) = dgNiwGirlSkelLimbsLimb_0098FCDL_003BA0; -#endif - -#define dobject_grTLUT_003F78 "__OTR__objects/object_gr/object_grTLUT_003F78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTLUT_003F78[] = dobject_grTLUT_003F78; -#else -static const char object_grTLUT_003F78[] __attribute__((aligned (2))) = dobject_grTLUT_003F78; -#endif - -#define dobject_grTex_005EB8 "__OTR__objects/object_gr/object_grTex_005EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_005EB8[] = dobject_grTex_005EB8; -#else -static const char object_grTex_005EB8[] __attribute__((aligned (2))) = dobject_grTex_005EB8; -#endif - -#define dobject_grTex_005D78 "__OTR__objects/object_gr/object_grTex_005D78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_005D78[] = dobject_grTex_005D78; -#else -static const char object_grTex_005D78[] __attribute__((aligned (2))) = dobject_grTex_005D78; -#endif - -#define dobject_grTex_005E78 "__OTR__objects/object_gr/object_grTex_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_005E78[] = dobject_grTex_005E78; -#else -static const char object_grTex_005E78[] __attribute__((aligned (2))) = dobject_grTex_005E78; -#endif - -#define dobject_grTex_0077F8 "__OTR__objects/object_gr/object_grTex_0077F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_0077F8[] = dobject_grTex_0077F8; -#else -static const char object_grTex_0077F8[] __attribute__((aligned (2))) = dobject_grTex_0077F8; -#endif - -#define dobject_grTex_007BF8 "__OTR__objects/object_gr/object_grTex_007BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_007BF8[] = dobject_grTex_007BF8; -#else -static const char object_grTex_007BF8[] __attribute__((aligned (2))) = dobject_grTex_007BF8; -#endif - -#define dobject_grTex_007FF8 "__OTR__objects/object_gr/object_grTex_007FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_007FF8[] = dobject_grTex_007FF8; -#else -static const char object_grTex_007FF8[] __attribute__((aligned (2))) = dobject_grTex_007FF8; -#endif - -#define dobject_grTex_0083F8 "__OTR__objects/object_gr/object_grTex_0083F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_0083F8[] = dobject_grTex_0083F8; -#else -static const char object_grTex_0083F8[] __attribute__((aligned (2))) = dobject_grTex_0083F8; -#endif - -#define dobject_grTex_005EF8 "__OTR__objects/object_gr/object_grTex_005EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_005EF8[] = dobject_grTex_005EF8; -#else -static const char object_grTex_005EF8[] __attribute__((aligned (2))) = dobject_grTex_005EF8; -#endif - -#define dobject_grTex_0097F8 "__OTR__objects/object_gr/object_grTex_0097F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_0097F8[] = dobject_grTex_0097F8; -#else -static const char object_grTex_0097F8[] __attribute__((aligned (2))) = dobject_grTex_0097F8; -#endif - -#define dobject_grTex_009808 "__OTR__objects/object_gr/object_grTex_009808" -#ifdef _WIN32 -static const __declspec(align(2)) char object_grTex_009808[] = dobject_grTex_009808; -#else -static const char object_grTex_009808[] __attribute__((aligned (2))) = dobject_grTex_009808; -#endif - +#include "align_asset_macro.h" + +#define dgNiwGirlSkel "__OTR__objects/object_gr/gNiwGirlSkel" +static const ALIGN_ASSET(2) char gNiwGirlSkel[] = dgNiwGirlSkel; + +#define dgNiwGirlRunAnim "__OTR__objects/object_gr/gNiwGirlRunAnim" +static const ALIGN_ASSET(2) char gNiwGirlRunAnim[] = dgNiwGirlRunAnim; + +#define dgNiwGirlJumpAnim "__OTR__objects/object_gr/gNiwGirlJumpAnim" +static const ALIGN_ASSET(2) char gNiwGirlJumpAnim[] = dgNiwGirlJumpAnim; + +#define dgNiwGirlEyeOpenTex "__OTR__objects/object_gr/gNiwGirlEyeOpenTex" +static const ALIGN_ASSET(2) char gNiwGirlEyeOpenTex[] = dgNiwGirlEyeOpenTex; + +#define dgNiwGirlEyeHalfTex "__OTR__objects/object_gr/gNiwGirlEyeHalfTex" +static const ALIGN_ASSET(2) char gNiwGirlEyeHalfTex[] = dgNiwGirlEyeHalfTex; + +#define dgNiwGirlEyeClosedTex "__OTR__objects/object_gr/gNiwGirlEyeClosedTex" +static const ALIGN_ASSET(2) char gNiwGirlEyeClosedTex[] = dgNiwGirlEyeClosedTex; + +#define dgNiwGirlMouthTex "__OTR__objects/object_gr/gNiwGirlMouthTex" +static const ALIGN_ASSET(2) char gNiwGirlMouthTex[] = dgNiwGirlMouthTex; + +#define dgNiwGirlDress1Tex "__OTR__objects/object_gr/gNiwGirlDress1Tex" +static const ALIGN_ASSET(2) char gNiwGirlDress1Tex[] = dgNiwGirlDress1Tex; + +#define dgNiwGirlDress2Tex "__OTR__objects/object_gr/gNiwGirlDress2Tex" +static const ALIGN_ASSET(2) char gNiwGirlDress2Tex[] = dgNiwGirlDress2Tex; + +#define dgNiwGirlDress3Tex "__OTR__objects/object_gr/gNiwGirlDress3Tex" +static const ALIGN_ASSET(2) char gNiwGirlDress3Tex[] = dgNiwGirlDress3Tex; + +#define dgNiwGirlDress4Tex "__OTR__objects/object_gr/gNiwGirlDress4Tex" +static const ALIGN_ASSET(2) char gNiwGirlDress4Tex[] = dgNiwGirlDress4Tex; + +#define dgNiwGirlDress5Tex "__OTR__objects/object_gr/gNiwGirlDress5Tex" +static const ALIGN_ASSET(2) char gNiwGirlDress5Tex[] = dgNiwGirlDress5Tex; + +#define dgNiwGirlSkelLimbsLimb_009854DL_003638 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009854DL_003638" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_009854DL_003638[] = dgNiwGirlSkelLimbsLimb_009854DL_003638; + +#define dgNiwGirlSkelLimbsLimb_009860DL_002C18 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009860DL_002C18" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_009860DL_002C18[] = dgNiwGirlSkelLimbsLimb_009860DL_002C18; + +#define dgNiwGirlSkelLimbsLimb_00986CDL_002400 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_00986CDL_002400" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_00986CDL_002400[] = dgNiwGirlSkelLimbsLimb_00986CDL_002400; + +#define dgNiwGirlSkelLimbsLimb_009878DL_0021C0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009878DL_0021C0" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_009878DL_0021C0[] = dgNiwGirlSkelLimbsLimb_009878DL_0021C0; + +#define dgNiwGirlSkelLimbsLimb_009884DL_0022E0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009884DL_0022E0" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_009884DL_0022E0[] = dgNiwGirlSkelLimbsLimb_009884DL_0022E0; + +#define dgNiwGirlSkelLimbsLimb_009890DL_003068 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_009890DL_003068" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_009890DL_003068[] = dgNiwGirlSkelLimbsLimb_009890DL_003068; + +#define dgNiwGirlSkelLimbsLimb_00989CDL_002EA8 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_00989CDL_002EA8" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_00989CDL_002EA8[] = dgNiwGirlSkelLimbsLimb_00989CDL_002EA8; + +#define dgNiwGirlSkelLimbsLimb_0098A8DL_003430 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098A8DL_003430" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_0098A8DL_003430[] = dgNiwGirlSkelLimbsLimb_0098A8DL_003430; + +#define dgNiwGirlSkelLimbsLimb_0098B4DL_003270 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098B4DL_003270" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_0098B4DL_003270[] = dgNiwGirlSkelLimbsLimb_0098B4DL_003270; + +#define dgNiwGirlSkelLimbsLimb_0098C0DL_003AC0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098C0DL_003AC0" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_0098C0DL_003AC0[] = dgNiwGirlSkelLimbsLimb_0098C0DL_003AC0; + +#define dgNiwGirlSkelLimbsLimb_0098CCDL_0039A0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098CCDL_0039A0" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_0098CCDL_0039A0[] = dgNiwGirlSkelLimbsLimb_0098CCDL_0039A0; + +#define dgNiwGirlSkelLimbsLimb_0098D8DL_0037C8 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098D8DL_0037C8" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_0098D8DL_0037C8[] = dgNiwGirlSkelLimbsLimb_0098D8DL_0037C8; + +#define dgNiwGirlSkelLimbsLimb_0098E4DL_003E98 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098E4DL_003E98" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_0098E4DL_003E98[] = dgNiwGirlSkelLimbsLimb_0098E4DL_003E98; + +#define dgNiwGirlSkelLimbsLimb_0098F0DL_003D78 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098F0DL_003D78" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_0098F0DL_003D78[] = dgNiwGirlSkelLimbsLimb_0098F0DL_003D78; + +#define dgNiwGirlSkelLimbsLimb_0098FCDL_003BA0 "__OTR__objects/object_gr/gNiwGirlSkelLimbsLimb_0098FCDL_003BA0" +static const ALIGN_ASSET(2) char gNiwGirlSkelLimbsLimb_0098FCDL_003BA0[] = dgNiwGirlSkelLimbsLimb_0098FCDL_003BA0; + +#define dobject_grTLUT_003F78 "__OTR__objects/object_gr/object_grTLUT_003F78" +static const ALIGN_ASSET(2) char object_grTLUT_003F78[] = dobject_grTLUT_003F78; + +#define dobject_grTex_005EB8 "__OTR__objects/object_gr/object_grTex_005EB8" +static const ALIGN_ASSET(2) char object_grTex_005EB8[] = dobject_grTex_005EB8; + +#define dobject_grTex_005D78 "__OTR__objects/object_gr/object_grTex_005D78" +static const ALIGN_ASSET(2) char object_grTex_005D78[] = dobject_grTex_005D78; + +#define dobject_grTex_005E78 "__OTR__objects/object_gr/object_grTex_005E78" +static const ALIGN_ASSET(2) char object_grTex_005E78[] = dobject_grTex_005E78; + +#define dobject_grTex_0077F8 "__OTR__objects/object_gr/object_grTex_0077F8" +static const ALIGN_ASSET(2) char object_grTex_0077F8[] = dobject_grTex_0077F8; + +#define dobject_grTex_007BF8 "__OTR__objects/object_gr/object_grTex_007BF8" +static const ALIGN_ASSET(2) char object_grTex_007BF8[] = dobject_grTex_007BF8; + +#define dobject_grTex_007FF8 "__OTR__objects/object_gr/object_grTex_007FF8" +static const ALIGN_ASSET(2) char object_grTex_007FF8[] = dobject_grTex_007FF8; + +#define dobject_grTex_0083F8 "__OTR__objects/object_gr/object_grTex_0083F8" +static const ALIGN_ASSET(2) char object_grTex_0083F8[] = dobject_grTex_0083F8; + +#define dobject_grTex_005EF8 "__OTR__objects/object_gr/object_grTex_005EF8" +static const ALIGN_ASSET(2) char object_grTex_005EF8[] = dobject_grTex_005EF8; + +#define dobject_grTex_0097F8 "__OTR__objects/object_gr/object_grTex_0097F8" +static const ALIGN_ASSET(2) char object_grTex_0097F8[] = dobject_grTex_0097F8; + +#define dobject_grTex_009808 "__OTR__objects/object_gr/object_grTex_009808" +static const ALIGN_ASSET(2) char object_grTex_009808[] = dobject_grTex_009808; \ No newline at end of file diff --git a/soh/assets/objects/object_gs/object_gs.h b/soh/assets/objects/object_gs/object_gs.h index 536e6904c..17b6ee117 100644 --- a/soh/assets/objects/object_gs/object_gs.h +++ b/soh/assets/objects/object_gs/object_gs.h @@ -1,30 +1,15 @@ #pragma once -#define dgGossipStoneTex "__OTR__objects/object_gs/gGossipStoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGossipStoneTex[] = dgGossipStoneTex; -#else -static const char gGossipStoneTex[] __attribute__((aligned (2))) = dgGossipStoneTex; -#endif - -#define dgGossipStoneMaterialDL "__OTR__objects/object_gs/gGossipStoneMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGossipStoneMaterialDL[] = dgGossipStoneMaterialDL; -#else -static const char gGossipStoneMaterialDL[] __attribute__((aligned (2))) = dgGossipStoneMaterialDL; -#endif - -#define dgGossipStoneDL "__OTR__objects/object_gs/gGossipStoneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGossipStoneDL[] = dgGossipStoneDL; -#else -static const char gGossipStoneDL[] __attribute__((aligned (2))) = dgGossipStoneDL; -#endif - -#define dgGossipStoneSquishedDL "__OTR__objects/object_gs/gGossipStoneSquishedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGossipStoneSquishedDL[] = dgGossipStoneSquishedDL; -#else -static const char gGossipStoneSquishedDL[] __attribute__((aligned (2))) = dgGossipStoneSquishedDL; -#endif - +#include "align_asset_macro.h" + +#define dgGossipStoneTex "__OTR__objects/object_gs/gGossipStoneTex" +static const ALIGN_ASSET(2) char gGossipStoneTex[] = dgGossipStoneTex; + +#define dgGossipStoneMaterialDL "__OTR__objects/object_gs/gGossipStoneMaterialDL" +static const ALIGN_ASSET(2) char gGossipStoneMaterialDL[] = dgGossipStoneMaterialDL; + +#define dgGossipStoneDL "__OTR__objects/object_gs/gGossipStoneDL" +static const ALIGN_ASSET(2) char gGossipStoneDL[] = dgGossipStoneDL; + +#define dgGossipStoneSquishedDL "__OTR__objects/object_gs/gGossipStoneSquishedDL" +static const ALIGN_ASSET(2) char gGossipStoneSquishedDL[] = dgGossipStoneSquishedDL; \ No newline at end of file diff --git a/soh/assets/objects/object_gt/object_gt.h b/soh/assets/objects/object_gt/object_gt.h index 0d8e86fd5..72c9895f5 100644 --- a/soh/assets/objects/object_gt/object_gt.h +++ b/soh/assets/objects/object_gt/object_gt.h @@ -1,198 +1,87 @@ #pragma once -#define dgTowerCollapseCsFlameSmokeTex "__OTR__objects/object_gt/gTowerCollapseCsFlameSmokeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsFlameSmokeTex[] = dgTowerCollapseCsFlameSmokeTex; -#else -static const char gTowerCollapseCsFlameSmokeTex[] __attribute__((aligned (2))) = dgTowerCollapseCsFlameSmokeTex; -#endif - -#define dgTowerCollapseCsGrayStoneTex "__OTR__objects/object_gt/gTowerCollapseCsGrayStoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsGrayStoneTex[] = dgTowerCollapseCsGrayStoneTex; -#else -static const char gTowerCollapseCsGrayStoneTex[] __attribute__((aligned (2))) = dgTowerCollapseCsGrayStoneTex; -#endif - -#define dgTowerCollapseCsExteriorBlackStoneTex "__OTR__objects/object_gt/gTowerCollapseCsExteriorBlackStoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsExteriorBlackStoneTex[] = dgTowerCollapseCsExteriorBlackStoneTex; -#else -static const char gTowerCollapseCsExteriorBlackStoneTex[] __attribute__((aligned (2))) = dgTowerCollapseCsExteriorBlackStoneTex; -#endif - -#define dgTowerCollapseCsTex_B870 "__OTR__objects/object_gt/gTowerCollapseCsTex_B870" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsTex_B870[] = dgTowerCollapseCsTex_B870; -#else -static const char gTowerCollapseCsTex_B870[] __attribute__((aligned (2))) = dgTowerCollapseCsTex_B870; -#endif - -#define dgTowerCollapseCsRaftersTex "__OTR__objects/object_gt/gTowerCollapseCsRaftersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsRaftersTex[] = dgTowerCollapseCsRaftersTex; -#else -static const char gTowerCollapseCsRaftersTex[] __attribute__((aligned (2))) = dgTowerCollapseCsRaftersTex; -#endif - -#define dgTowerCollapseCsBrownPaneledFloor1Tex "__OTR__objects/object_gt/gTowerCollapseCsBrownPaneledFloor1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsBrownPaneledFloor1Tex[] = dgTowerCollapseCsBrownPaneledFloor1Tex; -#else -static const char gTowerCollapseCsBrownPaneledFloor1Tex[] __attribute__((aligned (2))) = dgTowerCollapseCsBrownPaneledFloor1Tex; -#endif - -#define dgTowerCollapseCsBrownPaneledFloor2Tex "__OTR__objects/object_gt/gTowerCollapseCsBrownPaneledFloor2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsBrownPaneledFloor2Tex[] = dgTowerCollapseCsBrownPaneledFloor2Tex; -#else -static const char gTowerCollapseCsBrownPaneledFloor2Tex[] __attribute__((aligned (2))) = dgTowerCollapseCsBrownPaneledFloor2Tex; -#endif - -#define dgTowerCollapseCsExteriorPillarStoneTex "__OTR__objects/object_gt/gTowerCollapseCsExteriorPillarStoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsExteriorPillarStoneTex[] = dgTowerCollapseCsExteriorPillarStoneTex; -#else -static const char gTowerCollapseCsExteriorPillarStoneTex[] __attribute__((aligned (2))) = dgTowerCollapseCsExteriorPillarStoneTex; -#endif - -#define dgTowerCollapseCsRailingTex "__OTR__objects/object_gt/gTowerCollapseCsRailingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsRailingTex[] = dgTowerCollapseCsRailingTex; -#else -static const char gTowerCollapseCsRailingTex[] __attribute__((aligned (2))) = dgTowerCollapseCsRailingTex; -#endif - -#define dgTowerCollapseCsTex_EEF0 "__OTR__objects/object_gt/gTowerCollapseCsTex_EEF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsTex_EEF0[] = dgTowerCollapseCsTex_EEF0; -#else -static const char gTowerCollapseCsTex_EEF0[] __attribute__((aligned (2))) = dgTowerCollapseCsTex_EEF0; -#endif - -#define dgTowerCollapseCsTex_F2F0 "__OTR__objects/object_gt/gTowerCollapseCsTex_F2F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsTex_F2F0[] = dgTowerCollapseCsTex_F2F0; -#else -static const char gTowerCollapseCsTex_F2F0[] __attribute__((aligned (2))) = dgTowerCollapseCsTex_F2F0; -#endif - -#define dgTowerCollapseCsGrayFloorTex "__OTR__objects/object_gt/gTowerCollapseCsGrayFloorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsGrayFloorTex[] = dgTowerCollapseCsGrayFloorTex; -#else -static const char gTowerCollapseCsGrayFloorTex[] __attribute__((aligned (2))) = dgTowerCollapseCsGrayFloorTex; -#endif - -#define dgTowerCollapseCsTex_F6F0 "__OTR__objects/object_gt/gTowerCollapseCsTex_F6F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsTex_F6F0[] = dgTowerCollapseCsTex_F6F0; -#else -static const char gTowerCollapseCsTex_F6F0[] __attribute__((aligned (2))) = dgTowerCollapseCsTex_F6F0; -#endif - -#define dgTowerCollapseCsBoltedSidesTex "__OTR__objects/object_gt/gTowerCollapseCsBoltedSidesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsBoltedSidesTex[] = dgTowerCollapseCsBoltedSidesTex; -#else -static const char gTowerCollapseCsBoltedSidesTex[] __attribute__((aligned (2))) = dgTowerCollapseCsBoltedSidesTex; -#endif - -#define dgTowerCollapseCsSpikeTex "__OTR__objects/object_gt/gTowerCollapseCsSpikeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsSpikeTex[] = dgTowerCollapseCsSpikeTex; -#else -static const char gTowerCollapseCsSpikeTex[] __attribute__((aligned (2))) = dgTowerCollapseCsSpikeTex; -#endif - -#define dgTowerCollapseCsCollapsedCastleEdgeTex "__OTR__objects/object_gt/gTowerCollapseCsCollapsedCastleEdgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsCollapsedCastleEdgeTex[] = dgTowerCollapseCsCollapsedCastleEdgeTex; -#else -static const char gTowerCollapseCsCollapsedCastleEdgeTex[] __attribute__((aligned (2))) = dgTowerCollapseCsCollapsedCastleEdgeTex; -#endif - -#define dgTowerCollapseCsTex_11FF0 "__OTR__objects/object_gt/gTowerCollapseCsTex_11FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsTex_11FF0[] = dgTowerCollapseCsTex_11FF0; -#else -static const char gTowerCollapseCsTex_11FF0[] __attribute__((aligned (2))) = dgTowerCollapseCsTex_11FF0; -#endif - -#define dgTowerCollapseCsTex_123F0 "__OTR__objects/object_gt/gTowerCollapseCsTex_123F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsTex_123F0[] = dgTowerCollapseCsTex_123F0; -#else -static const char gTowerCollapseCsTex_123F0[] __attribute__((aligned (2))) = dgTowerCollapseCsTex_123F0; -#endif - -#define dgTowerCollapseCsTex_125F0 "__OTR__objects/object_gt/gTowerCollapseCsTex_125F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsTex_125F0[] = dgTowerCollapseCsTex_125F0; -#else -static const char gTowerCollapseCsTex_125F0[] __attribute__((aligned (2))) = dgTowerCollapseCsTex_125F0; -#endif - -#define dgTowerCollapseCsExteriorStructureDL "__OTR__objects/object_gt/gTowerCollapseCsExteriorStructureDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsExteriorStructureDL[] = dgTowerCollapseCsExteriorStructureDL; -#else -static const char gTowerCollapseCsExteriorStructureDL[] __attribute__((aligned (2))) = dgTowerCollapseCsExteriorStructureDL; -#endif - -#define dgTowerCollapseCsFlameSmokeDL "__OTR__objects/object_gt/gTowerCollapseCsFlameSmokeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsFlameSmokeDL[] = dgTowerCollapseCsFlameSmokeDL; -#else -static const char gTowerCollapseCsFlameSmokeDL[] __attribute__((aligned (2))) = dgTowerCollapseCsFlameSmokeDL; -#endif - -#define dgTowerCollapseCsCollapsedStructureInnerDL "__OTR__objects/object_gt/gTowerCollapseCsCollapsedStructureInnerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsCollapsedStructureInnerDL[] = dgTowerCollapseCsCollapsedStructureInnerDL; -#else -static const char gTowerCollapseCsCollapsedStructureInnerDL[] __attribute__((aligned (2))) = dgTowerCollapseCsCollapsedStructureInnerDL; -#endif - -#define dgTowerCollapseCsCollapsedStructureOuterDL "__OTR__objects/object_gt/gTowerCollapseCsCollapsedStructureOuterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsCollapsedStructureOuterDL[] = dgTowerCollapseCsCollapsedStructureOuterDL; -#else -static const char gTowerCollapseCsCollapsedStructureOuterDL[] __attribute__((aligned (2))) = dgTowerCollapseCsCollapsedStructureOuterDL; -#endif - -#define dgTowerCollapseCsStandalonePillarDL "__OTR__objects/object_gt/gTowerCollapseCsStandalonePillarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsStandalonePillarDL[] = dgTowerCollapseCsStandalonePillarDL; -#else -static const char gTowerCollapseCsStandalonePillarDL[] __attribute__((aligned (2))) = dgTowerCollapseCsStandalonePillarDL; -#endif - -#define dgTowerCollapseCsWalkwayDL "__OTR__objects/object_gt/gTowerCollapseCsWalkwayDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsWalkwayDL[] = dgTowerCollapseCsWalkwayDL; -#else -static const char gTowerCollapseCsWalkwayDL[] __attribute__((aligned (2))) = dgTowerCollapseCsWalkwayDL; -#endif - -#define dgTowerCollapseCsAlternativeWalkwayDL "__OTR__objects/object_gt/gTowerCollapseCsAlternativeWalkwayDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsAlternativeWalkwayDL[] = dgTowerCollapseCsAlternativeWalkwayDL; -#else -static const char gTowerCollapseCsAlternativeWalkwayDL[] __attribute__((aligned (2))) = dgTowerCollapseCsAlternativeWalkwayDL; -#endif - -#define dgTowerCollapseCsCollapsedStructureInnerCol "__OTR__objects/object_gt/gTowerCollapseCsCollapsedStructureInnerCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsCollapsedStructureInnerCol[] = dgTowerCollapseCsCollapsedStructureInnerCol; -#else -static const char gTowerCollapseCsCollapsedStructureInnerCol[] __attribute__((aligned (2))) = dgTowerCollapseCsCollapsedStructureInnerCol; -#endif - -#define dgTowerCollapseCsCollapsedStructureOuterCol "__OTR__objects/object_gt/gTowerCollapseCsCollapsedStructureOuterCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseCsCollapsedStructureOuterCol[] = dgTowerCollapseCsCollapsedStructureOuterCol; -#else -static const char gTowerCollapseCsCollapsedStructureOuterCol[] __attribute__((aligned (2))) = dgTowerCollapseCsCollapsedStructureOuterCol; -#endif - +#include "align_asset_macro.h" + +#define dgTowerCollapseCsFlameSmokeTex "__OTR__objects/object_gt/gTowerCollapseCsFlameSmokeTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsFlameSmokeTex[] = dgTowerCollapseCsFlameSmokeTex; + +#define dgTowerCollapseCsGrayStoneTex "__OTR__objects/object_gt/gTowerCollapseCsGrayStoneTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsGrayStoneTex[] = dgTowerCollapseCsGrayStoneTex; + +#define dgTowerCollapseCsExteriorBlackStoneTex "__OTR__objects/object_gt/gTowerCollapseCsExteriorBlackStoneTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsExteriorBlackStoneTex[] = dgTowerCollapseCsExteriorBlackStoneTex; + +#define dgTowerCollapseCsTex_B870 "__OTR__objects/object_gt/gTowerCollapseCsTex_B870" +static const ALIGN_ASSET(2) char gTowerCollapseCsTex_B870[] = dgTowerCollapseCsTex_B870; + +#define dgTowerCollapseCsRaftersTex "__OTR__objects/object_gt/gTowerCollapseCsRaftersTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsRaftersTex[] = dgTowerCollapseCsRaftersTex; + +#define dgTowerCollapseCsBrownPaneledFloor1Tex "__OTR__objects/object_gt/gTowerCollapseCsBrownPaneledFloor1Tex" +static const ALIGN_ASSET(2) char gTowerCollapseCsBrownPaneledFloor1Tex[] = dgTowerCollapseCsBrownPaneledFloor1Tex; + +#define dgTowerCollapseCsBrownPaneledFloor2Tex "__OTR__objects/object_gt/gTowerCollapseCsBrownPaneledFloor2Tex" +static const ALIGN_ASSET(2) char gTowerCollapseCsBrownPaneledFloor2Tex[] = dgTowerCollapseCsBrownPaneledFloor2Tex; + +#define dgTowerCollapseCsExteriorPillarStoneTex "__OTR__objects/object_gt/gTowerCollapseCsExteriorPillarStoneTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsExteriorPillarStoneTex[] = dgTowerCollapseCsExteriorPillarStoneTex; + +#define dgTowerCollapseCsRailingTex "__OTR__objects/object_gt/gTowerCollapseCsRailingTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsRailingTex[] = dgTowerCollapseCsRailingTex; + +#define dgTowerCollapseCsTex_EEF0 "__OTR__objects/object_gt/gTowerCollapseCsTex_EEF0" +static const ALIGN_ASSET(2) char gTowerCollapseCsTex_EEF0[] = dgTowerCollapseCsTex_EEF0; + +#define dgTowerCollapseCsTex_F2F0 "__OTR__objects/object_gt/gTowerCollapseCsTex_F2F0" +static const ALIGN_ASSET(2) char gTowerCollapseCsTex_F2F0[] = dgTowerCollapseCsTex_F2F0; + +#define dgTowerCollapseCsGrayFloorTex "__OTR__objects/object_gt/gTowerCollapseCsGrayFloorTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsGrayFloorTex[] = dgTowerCollapseCsGrayFloorTex; + +#define dgTowerCollapseCsTex_F6F0 "__OTR__objects/object_gt/gTowerCollapseCsTex_F6F0" +static const ALIGN_ASSET(2) char gTowerCollapseCsTex_F6F0[] = dgTowerCollapseCsTex_F6F0; + +#define dgTowerCollapseCsBoltedSidesTex "__OTR__objects/object_gt/gTowerCollapseCsBoltedSidesTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsBoltedSidesTex[] = dgTowerCollapseCsBoltedSidesTex; + +#define dgTowerCollapseCsSpikeTex "__OTR__objects/object_gt/gTowerCollapseCsSpikeTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsSpikeTex[] = dgTowerCollapseCsSpikeTex; + +#define dgTowerCollapseCsCollapsedCastleEdgeTex "__OTR__objects/object_gt/gTowerCollapseCsCollapsedCastleEdgeTex" +static const ALIGN_ASSET(2) char gTowerCollapseCsCollapsedCastleEdgeTex[] = dgTowerCollapseCsCollapsedCastleEdgeTex; + +#define dgTowerCollapseCsTex_11FF0 "__OTR__objects/object_gt/gTowerCollapseCsTex_11FF0" +static const ALIGN_ASSET(2) char gTowerCollapseCsTex_11FF0[] = dgTowerCollapseCsTex_11FF0; + +#define dgTowerCollapseCsTex_123F0 "__OTR__objects/object_gt/gTowerCollapseCsTex_123F0" +static const ALIGN_ASSET(2) char gTowerCollapseCsTex_123F0[] = dgTowerCollapseCsTex_123F0; + +#define dgTowerCollapseCsTex_125F0 "__OTR__objects/object_gt/gTowerCollapseCsTex_125F0" +static const ALIGN_ASSET(2) char gTowerCollapseCsTex_125F0[] = dgTowerCollapseCsTex_125F0; + +#define dgTowerCollapseCsExteriorStructureDL "__OTR__objects/object_gt/gTowerCollapseCsExteriorStructureDL" +static const ALIGN_ASSET(2) char gTowerCollapseCsExteriorStructureDL[] = dgTowerCollapseCsExteriorStructureDL; + +#define dgTowerCollapseCsFlameSmokeDL "__OTR__objects/object_gt/gTowerCollapseCsFlameSmokeDL" +static const ALIGN_ASSET(2) char gTowerCollapseCsFlameSmokeDL[] = dgTowerCollapseCsFlameSmokeDL; + +#define dgTowerCollapseCsCollapsedStructureInnerDL "__OTR__objects/object_gt/gTowerCollapseCsCollapsedStructureInnerDL" +static const ALIGN_ASSET(2) char gTowerCollapseCsCollapsedStructureInnerDL[] = dgTowerCollapseCsCollapsedStructureInnerDL; + +#define dgTowerCollapseCsCollapsedStructureOuterDL "__OTR__objects/object_gt/gTowerCollapseCsCollapsedStructureOuterDL" +static const ALIGN_ASSET(2) char gTowerCollapseCsCollapsedStructureOuterDL[] = dgTowerCollapseCsCollapsedStructureOuterDL; + +#define dgTowerCollapseCsStandalonePillarDL "__OTR__objects/object_gt/gTowerCollapseCsStandalonePillarDL" +static const ALIGN_ASSET(2) char gTowerCollapseCsStandalonePillarDL[] = dgTowerCollapseCsStandalonePillarDL; + +#define dgTowerCollapseCsWalkwayDL "__OTR__objects/object_gt/gTowerCollapseCsWalkwayDL" +static const ALIGN_ASSET(2) char gTowerCollapseCsWalkwayDL[] = dgTowerCollapseCsWalkwayDL; + +#define dgTowerCollapseCsAlternativeWalkwayDL "__OTR__objects/object_gt/gTowerCollapseCsAlternativeWalkwayDL" +static const ALIGN_ASSET(2) char gTowerCollapseCsAlternativeWalkwayDL[] = dgTowerCollapseCsAlternativeWalkwayDL; + +#define dgTowerCollapseCsCollapsedStructureInnerCol "__OTR__objects/object_gt/gTowerCollapseCsCollapsedStructureInnerCol" +static const ALIGN_ASSET(2) char gTowerCollapseCsCollapsedStructureInnerCol[] = dgTowerCollapseCsCollapsedStructureInnerCol; + +#define dgTowerCollapseCsCollapsedStructureOuterCol "__OTR__objects/object_gt/gTowerCollapseCsCollapsedStructureOuterCol" +static const ALIGN_ASSET(2) char gTowerCollapseCsCollapsedStructureOuterCol[] = dgTowerCollapseCsCollapsedStructureOuterCol; \ No newline at end of file diff --git a/soh/assets/objects/object_haka/object_haka.h b/soh/assets/objects/object_haka/object_haka.h index 5991161c4..a63ed90c9 100644 --- a/soh/assets/objects/object_haka/object_haka.h +++ b/soh/assets/objects/object_haka/object_haka.h @@ -1,44 +1,21 @@ #pragma once -#define dgGravestoneGrassTex "__OTR__objects/object_haka/gGravestoneGrassTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravestoneGrassTex[] = dgGravestoneGrassTex; -#else -static const char gGravestoneGrassTex[] __attribute__((aligned (2))) = dgGravestoneGrassTex; -#endif - -#define dgGravestoneEarthTex "__OTR__objects/object_haka/gGravestoneEarthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravestoneEarthTex[] = dgGravestoneEarthTex; -#else -static const char gGravestoneEarthTex[] __attribute__((aligned (2))) = dgGravestoneEarthTex; -#endif - -#define dgGravestoneTombTex "__OTR__objects/object_haka/gGravestoneTombTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravestoneTombTex[] = dgGravestoneTombTex; -#else -static const char gGravestoneTombTex[] __attribute__((aligned (2))) = dgGravestoneTombTex; -#endif - -#define dgGravestoneStoneDL "__OTR__objects/object_haka/gGravestoneStoneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravestoneStoneDL[] = dgGravestoneStoneDL; -#else -static const char gGravestoneStoneDL[] __attribute__((aligned (2))) = dgGravestoneStoneDL; -#endif - -#define dgGravestoneEarthDL "__OTR__objects/object_haka/gGravestoneEarthDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravestoneEarthDL[] = dgGravestoneEarthDL; -#else -static const char gGravestoneEarthDL[] __attribute__((aligned (2))) = dgGravestoneEarthDL; -#endif - -#define dgGravestoneCol "__OTR__objects/object_haka/gGravestoneCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravestoneCol[] = dgGravestoneCol; -#else -static const char gGravestoneCol[] __attribute__((aligned (2))) = dgGravestoneCol; -#endif - +#include "align_asset_macro.h" + +#define dgGravestoneGrassTex "__OTR__objects/object_haka/gGravestoneGrassTex" +static const ALIGN_ASSET(2) char gGravestoneGrassTex[] = dgGravestoneGrassTex; + +#define dgGravestoneEarthTex "__OTR__objects/object_haka/gGravestoneEarthTex" +static const ALIGN_ASSET(2) char gGravestoneEarthTex[] = dgGravestoneEarthTex; + +#define dgGravestoneTombTex "__OTR__objects/object_haka/gGravestoneTombTex" +static const ALIGN_ASSET(2) char gGravestoneTombTex[] = dgGravestoneTombTex; + +#define dgGravestoneStoneDL "__OTR__objects/object_haka/gGravestoneStoneDL" +static const ALIGN_ASSET(2) char gGravestoneStoneDL[] = dgGravestoneStoneDL; + +#define dgGravestoneEarthDL "__OTR__objects/object_haka/gGravestoneEarthDL" +static const ALIGN_ASSET(2) char gGravestoneEarthDL[] = dgGravestoneEarthDL; + +#define dgGravestoneCol "__OTR__objects/object_haka/gGravestoneCol" +static const ALIGN_ASSET(2) char gGravestoneCol[] = dgGravestoneCol; \ No newline at end of file diff --git a/soh/assets/objects/object_haka_door/object_haka_door.h b/soh/assets/objects/object_haka_door/object_haka_door.h index 0424d5c7d..93e489e2d 100644 --- a/soh/assets/objects/object_haka_door/object_haka_door.h +++ b/soh/assets/objects/object_haka_door/object_haka_door.h @@ -1,58 +1,27 @@ #pragma once -#define dobject_haka_door_Tex_000000 "__OTR__objects/object_haka_door/object_haka_door_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_door_Tex_000000[] = dobject_haka_door_Tex_000000; -#else -static const char object_haka_door_Tex_000000[] __attribute__((aligned (2))) = dobject_haka_door_Tex_000000; -#endif - -#define dobject_haka_door_DL_001310 "__OTR__objects/object_haka_door/object_haka_door_DL_001310" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_door_DL_001310[] = dobject_haka_door_DL_001310; -#else -static const char object_haka_door_DL_001310[] __attribute__((aligned (2))) = dobject_haka_door_DL_001310; -#endif - -#define dgShadowDoorLeftDL "__OTR__objects/object_haka_door/gShadowDoorLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowDoorLeftDL[] = dgShadowDoorLeftDL; -#else -static const char gShadowDoorLeftDL[] __attribute__((aligned (2))) = dgShadowDoorLeftDL; -#endif - -#define dgShadowDoorRightDL "__OTR__objects/object_haka_door/gShadowDoorRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowDoorRightDL[] = dgShadowDoorRightDL; -#else -static const char gShadowDoorRightDL[] __attribute__((aligned (2))) = dgShadowDoorRightDL; -#endif - -#define dobject_haka_door_Tex_001490 "__OTR__objects/object_haka_door/object_haka_door_Tex_001490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_door_Tex_001490[] = dobject_haka_door_Tex_001490; -#else -static const char object_haka_door_Tex_001490[] __attribute__((aligned (2))) = dobject_haka_door_Tex_001490; -#endif - -#define dobject_haka_door_DL_002620 "__OTR__objects/object_haka_door/object_haka_door_DL_002620" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_door_DL_002620[] = dobject_haka_door_DL_002620; -#else -static const char object_haka_door_DL_002620[] __attribute__((aligned (2))) = dobject_haka_door_DL_002620; -#endif - -#define dobject_haka_door_Tex_002700 "__OTR__objects/object_haka_door/object_haka_door_Tex_002700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_door_Tex_002700[] = dobject_haka_door_Tex_002700; -#else -static const char object_haka_door_Tex_002700[] __attribute__((aligned (2))) = dobject_haka_door_Tex_002700; -#endif - -#define dobject_haka_door_DL_003890 "__OTR__objects/object_haka_door/object_haka_door_DL_003890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_door_DL_003890[] = dobject_haka_door_DL_003890; -#else -static const char object_haka_door_DL_003890[] __attribute__((aligned (2))) = dobject_haka_door_DL_003890; -#endif - +#include "align_asset_macro.h" + +#define dobject_haka_door_Tex_000000 "__OTR__objects/object_haka_door/object_haka_door_Tex_000000" +static const ALIGN_ASSET(2) char object_haka_door_Tex_000000[] = dobject_haka_door_Tex_000000; + +#define dobject_haka_door_DL_001310 "__OTR__objects/object_haka_door/object_haka_door_DL_001310" +static const ALIGN_ASSET(2) char object_haka_door_DL_001310[] = dobject_haka_door_DL_001310; + +#define dgShadowDoorLeftDL "__OTR__objects/object_haka_door/gShadowDoorLeftDL" +static const ALIGN_ASSET(2) char gShadowDoorLeftDL[] = dgShadowDoorLeftDL; + +#define dgShadowDoorRightDL "__OTR__objects/object_haka_door/gShadowDoorRightDL" +static const ALIGN_ASSET(2) char gShadowDoorRightDL[] = dgShadowDoorRightDL; + +#define dobject_haka_door_Tex_001490 "__OTR__objects/object_haka_door/object_haka_door_Tex_001490" +static const ALIGN_ASSET(2) char object_haka_door_Tex_001490[] = dobject_haka_door_Tex_001490; + +#define dobject_haka_door_DL_002620 "__OTR__objects/object_haka_door/object_haka_door_DL_002620" +static const ALIGN_ASSET(2) char object_haka_door_DL_002620[] = dobject_haka_door_DL_002620; + +#define dobject_haka_door_Tex_002700 "__OTR__objects/object_haka_door/object_haka_door_Tex_002700" +static const ALIGN_ASSET(2) char object_haka_door_Tex_002700[] = dobject_haka_door_Tex_002700; + +#define dobject_haka_door_DL_003890 "__OTR__objects/object_haka_door/object_haka_door_DL_003890" +static const ALIGN_ASSET(2) char object_haka_door_DL_003890[] = dobject_haka_door_DL_003890; \ No newline at end of file diff --git a/soh/assets/objects/object_haka_objects/object_haka_objects.h b/soh/assets/objects/object_haka_objects/object_haka_objects.h index 318e227df..6a591d8ad 100644 --- a/soh/assets/objects/object_haka_objects/object_haka_objects.h +++ b/soh/assets/objects/object_haka_objects/object_haka_objects.h @@ -1,569 +1,246 @@ #pragma once -#define dobject_haka_objects_DL_000040 "__OTR__objects/object_haka_objects/object_haka_objects_DL_000040" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_000040[] = dobject_haka_objects_DL_000040; -#else -static const char object_haka_objects_DL_000040[] __attribute__((aligned (2))) = dobject_haka_objects_DL_000040; -#endif - -#define dobject_haka_objects_Col_000118 "__OTR__objects/object_haka_objects/object_haka_objects_Col_000118" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_000118[] = dobject_haka_objects_Col_000118; -#else -static const char object_haka_objects_Col_000118[] __attribute__((aligned (2))) = dobject_haka_objects_Col_000118; -#endif - -#define dobject_haka_objects_DL_001120 "__OTR__objects/object_haka_objects/object_haka_objects_DL_001120" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_001120[] = dobject_haka_objects_DL_001120; -#else -static const char object_haka_objects_DL_001120[] __attribute__((aligned (2))) = dobject_haka_objects_DL_001120; -#endif - -#define dobject_haka_objects_DL_0018F0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0018F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_0018F0[] = dobject_haka_objects_DL_0018F0; -#else -static const char object_haka_objects_DL_0018F0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_0018F0; -#endif - -#define dobject_haka_objects_DL_002ED0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_002ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_002ED0[] = dobject_haka_objects_DL_002ED0; -#else -static const char object_haka_objects_DL_002ED0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_002ED0; -#endif - -#define dobject_haka_objects_DL_003CF0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_003CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_003CF0[] = dobject_haka_objects_DL_003CF0; -#else -static const char object_haka_objects_DL_003CF0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_003CF0; -#endif - -#define dobject_haka_objects_DL_0040F0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_0040F0[] = dobject_haka_objects_DL_0040F0; -#else -static const char object_haka_objects_DL_0040F0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_0040F0; -#endif - -#define dobject_haka_objects_Col_004330 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004330" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_004330[] = dobject_haka_objects_Col_004330; -#else -static const char object_haka_objects_Col_004330[] __attribute__((aligned (2))) = dobject_haka_objects_Col_004330; -#endif - -#define dobject_haka_objects_DL_0043B0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0043B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_0043B0[] = dobject_haka_objects_DL_0043B0; -#else -static const char object_haka_objects_DL_0043B0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_0043B0; -#endif - -#define dobject_haka_objects_Col_0044D0 "__OTR__objects/object_haka_objects/object_haka_objects_Col_0044D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_0044D0[] = dobject_haka_objects_Col_0044D0; -#else -static const char object_haka_objects_Col_0044D0[] __attribute__((aligned (2))) = dobject_haka_objects_Col_0044D0; -#endif - -#define dobject_haka_objects_DL_0045A0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0045A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_0045A0[] = dobject_haka_objects_DL_0045A0; -#else -static const char object_haka_objects_DL_0045A0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_0045A0; -#endif - -#define dobject_haka_objects_Col_004780 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_004780[] = dobject_haka_objects_Col_004780; -#else -static const char object_haka_objects_Col_004780[] __attribute__((aligned (2))) = dobject_haka_objects_Col_004780; -#endif - -#define dobject_haka_objects_DL_0047F0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0047F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_0047F0[] = dobject_haka_objects_DL_0047F0; -#else -static const char object_haka_objects_DL_0047F0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_0047F0; -#endif - -#define dobject_haka_objects_Col_004940 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_004940[] = dobject_haka_objects_Col_004940; -#else -static const char object_haka_objects_Col_004940[] __attribute__((aligned (2))) = dobject_haka_objects_Col_004940; -#endif - -#define dobject_haka_objects_DL_0049B0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0049B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_0049B0[] = dobject_haka_objects_DL_0049B0; -#else -static const char object_haka_objects_DL_0049B0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_0049B0; -#endif - -#define dobject_haka_objects_Col_004B00 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004B00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_004B00[] = dobject_haka_objects_Col_004B00; -#else -static const char object_haka_objects_Col_004B00[] __attribute__((aligned (2))) = dobject_haka_objects_Col_004B00; -#endif - -#define dobject_haka_objects_DL_004B70 "__OTR__objects/object_haka_objects/object_haka_objects_DL_004B70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_004B70[] = dobject_haka_objects_DL_004B70; -#else -static const char object_haka_objects_DL_004B70[] __attribute__((aligned (2))) = dobject_haka_objects_DL_004B70; -#endif - -#define dobject_haka_objects_Col_004CC0 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_004CC0[] = dobject_haka_objects_Col_004CC0; -#else -static const char object_haka_objects_Col_004CC0[] __attribute__((aligned (2))) = dobject_haka_objects_Col_004CC0; -#endif - -#define dobject_haka_objects_DL_005000 "__OTR__objects/object_haka_objects/object_haka_objects_DL_005000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_005000[] = dobject_haka_objects_DL_005000; -#else -static const char object_haka_objects_DL_005000[] __attribute__((aligned (2))) = dobject_haka_objects_DL_005000; -#endif - -#define dobject_haka_objects_Col_005334 "__OTR__objects/object_haka_objects/object_haka_objects_Col_005334" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_005334[] = dobject_haka_objects_Col_005334; -#else -static const char object_haka_objects_Col_005334[] __attribute__((aligned (2))) = dobject_haka_objects_Col_005334; -#endif - -#define dobject_haka_objects_DL_005A70 "__OTR__objects/object_haka_objects/object_haka_objects_DL_005A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_005A70[] = dobject_haka_objects_DL_005A70; -#else -static const char object_haka_objects_DL_005A70[] __attribute__((aligned (2))) = dobject_haka_objects_DL_005A70; -#endif - -#define dobject_haka_objects_DL_005CE0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_005CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_005CE0[] = dobject_haka_objects_DL_005CE0; -#else -static const char object_haka_objects_DL_005CE0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_005CE0; -#endif - -#define dobject_haka_objects_Col_005E30 "__OTR__objects/object_haka_objects/object_haka_objects_Col_005E30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_005E30[] = dobject_haka_objects_Col_005E30; -#else -static const char object_haka_objects_Col_005E30[] __attribute__((aligned (2))) = dobject_haka_objects_Col_005E30; -#endif - -#define dobject_haka_objects_DL_0064E0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0064E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_0064E0[] = dobject_haka_objects_DL_0064E0; -#else -static const char object_haka_objects_DL_0064E0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_0064E0; -#endif - -#define dobject_haka_objects_Col_006F70 "__OTR__objects/object_haka_objects/object_haka_objects_Col_006F70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_006F70[] = dobject_haka_objects_Col_006F70; -#else -static const char object_haka_objects_Col_006F70[] __attribute__((aligned (2))) = dobject_haka_objects_Col_006F70; -#endif - -#define dobject_haka_objects_DL_0072C0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0072C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_0072C0[] = dobject_haka_objects_DL_0072C0; -#else -static const char object_haka_objects_DL_0072C0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_0072C0; -#endif - -#define dobject_haka_objects_DL_007610 "__OTR__objects/object_haka_objects/object_haka_objects_DL_007610" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_007610[] = dobject_haka_objects_DL_007610; -#else -static const char object_haka_objects_DL_007610[] __attribute__((aligned (2))) = dobject_haka_objects_DL_007610; -#endif - -#define dobject_haka_objects_DL_007EF0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_007EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_007EF0[] = dobject_haka_objects_DL_007EF0; -#else -static const char object_haka_objects_DL_007EF0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_007EF0; -#endif - -#define dobject_haka_objects_Col_0081D0 "__OTR__objects/object_haka_objects/object_haka_objects_Col_0081D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_0081D0[] = dobject_haka_objects_Col_0081D0; -#else -static const char object_haka_objects_Col_0081D0[] __attribute__((aligned (2))) = dobject_haka_objects_Col_0081D0; -#endif - -#define dobject_haka_objects_DL_008A20 "__OTR__objects/object_haka_objects/object_haka_objects_DL_008A20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_008A20[] = dobject_haka_objects_DL_008A20; -#else -static const char object_haka_objects_DL_008A20[] __attribute__((aligned (2))) = dobject_haka_objects_DL_008A20; -#endif - -#define dobject_haka_objects_Col_008D10 "__OTR__objects/object_haka_objects/object_haka_objects_Col_008D10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_008D10[] = dobject_haka_objects_Col_008D10; -#else -static const char object_haka_objects_Col_008D10[] __attribute__((aligned (2))) = dobject_haka_objects_Col_008D10; -#endif - -#define dobject_haka_objects_DL_008EB0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_008EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_008EB0[] = dobject_haka_objects_DL_008EB0; -#else -static const char object_haka_objects_DL_008EB0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_008EB0; -#endif - -#define dobject_haka_objects_Col_009168 "__OTR__objects/object_haka_objects/object_haka_objects_Col_009168" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_009168[] = dobject_haka_objects_Col_009168; -#else -static const char object_haka_objects_Col_009168[] __attribute__((aligned (2))) = dobject_haka_objects_Col_009168; -#endif - -#define dobject_haka_objects_DL_009860 "__OTR__objects/object_haka_objects/object_haka_objects_DL_009860" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_009860[] = dobject_haka_objects_DL_009860; -#else -static const char object_haka_objects_DL_009860[] __attribute__((aligned (2))) = dobject_haka_objects_DL_009860; -#endif - -#define dobject_haka_objects_Col_009CD0 "__OTR__objects/object_haka_objects/object_haka_objects_Col_009CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_009CD0[] = dobject_haka_objects_Col_009CD0; -#else -static const char object_haka_objects_Col_009CD0[] __attribute__((aligned (2))) = dobject_haka_objects_Col_009CD0; -#endif - -#define dobject_haka_objects_DL_00A1A0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00A1A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_00A1A0[] = dobject_haka_objects_DL_00A1A0; -#else -static const char object_haka_objects_DL_00A1A0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_00A1A0; -#endif - -#define dobject_haka_objects_Col_00A7F4 "__OTR__objects/object_haka_objects/object_haka_objects_Col_00A7F4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_00A7F4[] = dobject_haka_objects_Col_00A7F4; -#else -static const char object_haka_objects_Col_00A7F4[] __attribute__((aligned (2))) = dobject_haka_objects_Col_00A7F4; -#endif - -#define dobject_haka_objects_DL_00A860 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00A860" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_00A860[] = dobject_haka_objects_DL_00A860; -#else -static const char object_haka_objects_DL_00A860[] __attribute__((aligned (2))) = dobject_haka_objects_DL_00A860; -#endif - -#define dobject_haka_objects_Col_00A938 "__OTR__objects/object_haka_objects/object_haka_objects_Col_00A938" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_00A938[] = dobject_haka_objects_Col_00A938; -#else -static const char object_haka_objects_Col_00A938[] __attribute__((aligned (2))) = dobject_haka_objects_Col_00A938; -#endif - -#define dobject_haka_objects_DL_00BF20 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00BF20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_00BF20[] = dobject_haka_objects_DL_00BF20; -#else -static const char object_haka_objects_DL_00BF20[] __attribute__((aligned (2))) = dobject_haka_objects_DL_00BF20; -#endif - -#define dobject_haka_objects_DL_00D330 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00D330" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_00D330[] = dobject_haka_objects_DL_00D330; -#else -static const char object_haka_objects_DL_00D330[] __attribute__((aligned (2))) = dobject_haka_objects_DL_00D330; -#endif - -#define dobject_haka_objects_Col_00E408 "__OTR__objects/object_haka_objects/object_haka_objects_Col_00E408" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_00E408[] = dobject_haka_objects_Col_00E408; -#else -static const char object_haka_objects_Col_00E408[] __attribute__((aligned (2))) = dobject_haka_objects_Col_00E408; -#endif - -#define dobject_haka_objects_DL_00E910 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00E910" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_00E910[] = dobject_haka_objects_DL_00E910; -#else -static const char object_haka_objects_DL_00E910[] __attribute__((aligned (2))) = dobject_haka_objects_DL_00E910; -#endif - -#define dobject_haka_objects_Col_00ED7C "__OTR__objects/object_haka_objects/object_haka_objects_Col_00ED7C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_00ED7C[] = dobject_haka_objects_Col_00ED7C; -#else -static const char object_haka_objects_Col_00ED7C[] __attribute__((aligned (2))) = dobject_haka_objects_Col_00ED7C; -#endif - -#define dobject_haka_objects_DL_00F1B0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00F1B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_00F1B0[] = dobject_haka_objects_DL_00F1B0; -#else -static const char object_haka_objects_DL_00F1B0[] __attribute__((aligned (2))) = dobject_haka_objects_DL_00F1B0; -#endif - -#define dobject_haka_objects_DL_00FE40 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00FE40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_00FE40[] = dobject_haka_objects_DL_00FE40; -#else -static const char object_haka_objects_DL_00FE40[] __attribute__((aligned (2))) = dobject_haka_objects_DL_00FE40; -#endif - -#define dobject_haka_objects_Col_0108B8 "__OTR__objects/object_haka_objects/object_haka_objects_Col_0108B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_0108B8[] = dobject_haka_objects_Col_0108B8; -#else -static const char object_haka_objects_Col_0108B8[] __attribute__((aligned (2))) = dobject_haka_objects_Col_0108B8; -#endif - -#define dobject_haka_objects_DL_010A10 "__OTR__objects/object_haka_objects/object_haka_objects_DL_010A10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_010A10[] = dobject_haka_objects_DL_010A10; -#else -static const char object_haka_objects_DL_010A10[] __attribute__((aligned (2))) = dobject_haka_objects_DL_010A10; -#endif - -#define dobject_haka_objects_DL_010C10 "__OTR__objects/object_haka_objects/object_haka_objects_DL_010C10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_010C10[] = dobject_haka_objects_DL_010C10; -#else -static const char object_haka_objects_DL_010C10[] __attribute__((aligned (2))) = dobject_haka_objects_DL_010C10; -#endif - -#define dobject_haka_objects_Col_010E10 "__OTR__objects/object_haka_objects/object_haka_objects_Col_010E10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_010E10[] = dobject_haka_objects_Col_010E10; -#else -static const char object_haka_objects_Col_010E10[] __attribute__((aligned (2))) = dobject_haka_objects_Col_010E10; -#endif - -#define dobject_haka_objects_DL_012270 "__OTR__objects/object_haka_objects/object_haka_objects_DL_012270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_DL_012270[] = dobject_haka_objects_DL_012270; -#else -static const char object_haka_objects_DL_012270[] __attribute__((aligned (2))) = dobject_haka_objects_DL_012270; -#endif - -#define dobject_haka_objects_Col_0131C4 "__OTR__objects/object_haka_objects/object_haka_objects_Col_0131C4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Col_0131C4[] = dobject_haka_objects_Col_0131C4; -#else -static const char object_haka_objects_Col_0131C4[] __attribute__((aligned (2))) = dobject_haka_objects_Col_0131C4; -#endif - -#define dobject_haka_objects_Tex_0131F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0131F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0131F0[] = dobject_haka_objects_Tex_0131F0; -#else -static const char object_haka_objects_Tex_0131F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0131F0; -#endif - -#define dobject_haka_objects_Tex_0135F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0135F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0135F0[] = dobject_haka_objects_Tex_0135F0; -#else -static const char object_haka_objects_Tex_0135F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0135F0; -#endif - -#define dobject_haka_objects_Tex_013DF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_013DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_013DF0[] = dobject_haka_objects_Tex_013DF0; -#else -static const char object_haka_objects_Tex_013DF0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_013DF0; -#endif - -#define dobject_haka_objects_Tex_0145F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0145F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0145F0[] = dobject_haka_objects_Tex_0145F0; -#else -static const char object_haka_objects_Tex_0145F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0145F0; -#endif - -#define dobject_haka_objects_Tex_0155F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0155F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0155F0[] = dobject_haka_objects_Tex_0155F0; -#else -static const char object_haka_objects_Tex_0155F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0155F0; -#endif - -#define dobject_haka_objects_Tex_0165F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0165F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0165F0[] = dobject_haka_objects_Tex_0165F0; -#else -static const char object_haka_objects_Tex_0165F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0165F0; -#endif - -#define dobject_haka_objects_Tex_0167F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0167F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0167F0[] = dobject_haka_objects_Tex_0167F0; -#else -static const char object_haka_objects_Tex_0167F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0167F0; -#endif - -#define dobject_haka_objects_Tex_016BF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_016BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_016BF0[] = dobject_haka_objects_Tex_016BF0; -#else -static const char object_haka_objects_Tex_016BF0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_016BF0; -#endif - -#define dobject_haka_objects_Tex_016DF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_016DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_016DF0[] = dobject_haka_objects_Tex_016DF0; -#else -static const char object_haka_objects_Tex_016DF0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_016DF0; -#endif - -#define dobject_haka_objects_Tex_016FF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_016FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_016FF0[] = dobject_haka_objects_Tex_016FF0; -#else -static const char object_haka_objects_Tex_016FF0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_016FF0; -#endif - -#define dobject_haka_objects_Tex_0171F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0171F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0171F0[] = dobject_haka_objects_Tex_0171F0; -#else -static const char object_haka_objects_Tex_0171F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0171F0; -#endif - -#define dobject_haka_objects_Tex_0173F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0173F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0173F0[] = dobject_haka_objects_Tex_0173F0; -#else -static const char object_haka_objects_Tex_0173F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0173F0; -#endif - -#define dobject_haka_objects_Tex_0175F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0175F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0175F0[] = dobject_haka_objects_Tex_0175F0; -#else -static const char object_haka_objects_Tex_0175F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0175F0; -#endif - -#define dobject_haka_objects_Tex_0177F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0177F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0177F0[] = dobject_haka_objects_Tex_0177F0; -#else -static const char object_haka_objects_Tex_0177F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0177F0; -#endif - -#define dobject_haka_objects_Tex_017FF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_017FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_017FF0[] = dobject_haka_objects_Tex_017FF0; -#else -static const char object_haka_objects_Tex_017FF0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_017FF0; -#endif - -#define dobject_haka_objects_Tex_0187F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0187F0[] = dobject_haka_objects_Tex_0187F0; -#else -static const char object_haka_objects_Tex_0187F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0187F0; -#endif - -#define dobject_haka_objects_Tex_018FF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_018FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_018FF0[] = dobject_haka_objects_Tex_018FF0; -#else -static const char object_haka_objects_Tex_018FF0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_018FF0; -#endif - -#define dobject_haka_objects_Tex_0197F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0197F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_0197F0[] = dobject_haka_objects_Tex_0197F0; -#else -static const char object_haka_objects_Tex_0197F0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_0197F0; -#endif - -#define dobject_haka_objects_Tex_019870 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_019870" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_019870[] = dobject_haka_objects_Tex_019870; -#else -static const char object_haka_objects_Tex_019870[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_019870; -#endif - -#define dobject_haka_objects_Tex_01A070 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01A070" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01A070[] = dobject_haka_objects_Tex_01A070; -#else -static const char object_haka_objects_Tex_01A070[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01A070; -#endif - -#define dobject_haka_objects_Tex_01A470 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01A470" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01A470[] = dobject_haka_objects_Tex_01A470; -#else -static const char object_haka_objects_Tex_01A470[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01A470; -#endif - -#define dobject_haka_objects_Tex_01A670 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01A670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01A670[] = dobject_haka_objects_Tex_01A670; -#else -static const char object_haka_objects_Tex_01A670[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01A670; -#endif - -#define dobject_haka_objects_Tex_01AE70 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01AE70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01AE70[] = dobject_haka_objects_Tex_01AE70; -#else -static const char object_haka_objects_Tex_01AE70[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01AE70; -#endif - -#define dobject_haka_objects_Tex_01B270 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01B270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01B270[] = dobject_haka_objects_Tex_01B270; -#else -static const char object_haka_objects_Tex_01B270[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01B270; -#endif - -#define dobject_haka_objects_Tex_01BA70 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01BA70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01BA70[] = dobject_haka_objects_Tex_01BA70; -#else -static const char object_haka_objects_Tex_01BA70[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01BA70; -#endif - -#define dobject_haka_objects_Tex_01C270 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01C270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01C270[] = dobject_haka_objects_Tex_01C270; -#else -static const char object_haka_objects_Tex_01C270[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01C270; -#endif - -#define dobject_haka_objects_Tex_01C470 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01C470" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01C470[] = dobject_haka_objects_Tex_01C470; -#else -static const char object_haka_objects_Tex_01C470[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01C470; -#endif - -#define dobject_haka_objects_Tex_01C670 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01C670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01C670[] = dobject_haka_objects_Tex_01C670; -#else -static const char object_haka_objects_Tex_01C670[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01C670; -#endif - -#define dobject_haka_objects_Tex_01CEB0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01CEB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_haka_objects_Tex_01CEB0[] = dobject_haka_objects_Tex_01CEB0; -#else -static const char object_haka_objects_Tex_01CEB0[] __attribute__((aligned (2))) = dobject_haka_objects_Tex_01CEB0; -#endif - +#include "align_asset_macro.h" + +#define dobject_haka_objects_DL_000040 "__OTR__objects/object_haka_objects/object_haka_objects_DL_000040" +static const ALIGN_ASSET(2) char object_haka_objects_DL_000040[] = dobject_haka_objects_DL_000040; + +#define dobject_haka_objects_Col_000118 "__OTR__objects/object_haka_objects/object_haka_objects_Col_000118" +static const ALIGN_ASSET(2) char object_haka_objects_Col_000118[] = dobject_haka_objects_Col_000118; + +#define dobject_haka_objects_DL_001120 "__OTR__objects/object_haka_objects/object_haka_objects_DL_001120" +static const ALIGN_ASSET(2) char object_haka_objects_DL_001120[] = dobject_haka_objects_DL_001120; + +#define dobject_haka_objects_DL_0018F0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0018F0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_0018F0[] = dobject_haka_objects_DL_0018F0; + +#define dobject_haka_objects_DL_002ED0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_002ED0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_002ED0[] = dobject_haka_objects_DL_002ED0; + +#define dobject_haka_objects_DL_003CF0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_003CF0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_003CF0[] = dobject_haka_objects_DL_003CF0; + +#define dobject_haka_objects_DL_0040F0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0040F0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_0040F0[] = dobject_haka_objects_DL_0040F0; + +#define dobject_haka_objects_Col_004330 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004330" +static const ALIGN_ASSET(2) char object_haka_objects_Col_004330[] = dobject_haka_objects_Col_004330; + +#define dobject_haka_objects_DL_0043B0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0043B0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_0043B0[] = dobject_haka_objects_DL_0043B0; + +#define dobject_haka_objects_Col_0044D0 "__OTR__objects/object_haka_objects/object_haka_objects_Col_0044D0" +static const ALIGN_ASSET(2) char object_haka_objects_Col_0044D0[] = dobject_haka_objects_Col_0044D0; + +#define dobject_haka_objects_DL_0045A0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0045A0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_0045A0[] = dobject_haka_objects_DL_0045A0; + +#define dobject_haka_objects_Col_004780 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004780" +static const ALIGN_ASSET(2) char object_haka_objects_Col_004780[] = dobject_haka_objects_Col_004780; + +#define dobject_haka_objects_DL_0047F0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0047F0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_0047F0[] = dobject_haka_objects_DL_0047F0; + +#define dobject_haka_objects_Col_004940 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004940" +static const ALIGN_ASSET(2) char object_haka_objects_Col_004940[] = dobject_haka_objects_Col_004940; + +#define dobject_haka_objects_DL_0049B0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0049B0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_0049B0[] = dobject_haka_objects_DL_0049B0; + +#define dobject_haka_objects_Col_004B00 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004B00" +static const ALIGN_ASSET(2) char object_haka_objects_Col_004B00[] = dobject_haka_objects_Col_004B00; + +#define dobject_haka_objects_DL_004B70 "__OTR__objects/object_haka_objects/object_haka_objects_DL_004B70" +static const ALIGN_ASSET(2) char object_haka_objects_DL_004B70[] = dobject_haka_objects_DL_004B70; + +#define dobject_haka_objects_Col_004CC0 "__OTR__objects/object_haka_objects/object_haka_objects_Col_004CC0" +static const ALIGN_ASSET(2) char object_haka_objects_Col_004CC0[] = dobject_haka_objects_Col_004CC0; + +#define dobject_haka_objects_DL_005000 "__OTR__objects/object_haka_objects/object_haka_objects_DL_005000" +static const ALIGN_ASSET(2) char object_haka_objects_DL_005000[] = dobject_haka_objects_DL_005000; + +#define dobject_haka_objects_Col_005334 "__OTR__objects/object_haka_objects/object_haka_objects_Col_005334" +static const ALIGN_ASSET(2) char object_haka_objects_Col_005334[] = dobject_haka_objects_Col_005334; + +#define dobject_haka_objects_DL_005A70 "__OTR__objects/object_haka_objects/object_haka_objects_DL_005A70" +static const ALIGN_ASSET(2) char object_haka_objects_DL_005A70[] = dobject_haka_objects_DL_005A70; + +#define dobject_haka_objects_DL_005CE0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_005CE0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_005CE0[] = dobject_haka_objects_DL_005CE0; + +#define dobject_haka_objects_Col_005E30 "__OTR__objects/object_haka_objects/object_haka_objects_Col_005E30" +static const ALIGN_ASSET(2) char object_haka_objects_Col_005E30[] = dobject_haka_objects_Col_005E30; + +#define dobject_haka_objects_DL_0064E0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0064E0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_0064E0[] = dobject_haka_objects_DL_0064E0; + +#define dobject_haka_objects_Col_006F70 "__OTR__objects/object_haka_objects/object_haka_objects_Col_006F70" +static const ALIGN_ASSET(2) char object_haka_objects_Col_006F70[] = dobject_haka_objects_Col_006F70; + +#define dobject_haka_objects_DL_0072C0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_0072C0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_0072C0[] = dobject_haka_objects_DL_0072C0; + +#define dobject_haka_objects_DL_007610 "__OTR__objects/object_haka_objects/object_haka_objects_DL_007610" +static const ALIGN_ASSET(2) char object_haka_objects_DL_007610[] = dobject_haka_objects_DL_007610; + +#define dobject_haka_objects_DL_007EF0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_007EF0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_007EF0[] = dobject_haka_objects_DL_007EF0; + +#define dobject_haka_objects_Col_0081D0 "__OTR__objects/object_haka_objects/object_haka_objects_Col_0081D0" +static const ALIGN_ASSET(2) char object_haka_objects_Col_0081D0[] = dobject_haka_objects_Col_0081D0; + +#define dobject_haka_objects_DL_008A20 "__OTR__objects/object_haka_objects/object_haka_objects_DL_008A20" +static const ALIGN_ASSET(2) char object_haka_objects_DL_008A20[] = dobject_haka_objects_DL_008A20; + +#define dobject_haka_objects_Col_008D10 "__OTR__objects/object_haka_objects/object_haka_objects_Col_008D10" +static const ALIGN_ASSET(2) char object_haka_objects_Col_008D10[] = dobject_haka_objects_Col_008D10; + +#define dobject_haka_objects_DL_008EB0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_008EB0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_008EB0[] = dobject_haka_objects_DL_008EB0; + +#define dobject_haka_objects_Col_009168 "__OTR__objects/object_haka_objects/object_haka_objects_Col_009168" +static const ALIGN_ASSET(2) char object_haka_objects_Col_009168[] = dobject_haka_objects_Col_009168; + +#define dobject_haka_objects_DL_009860 "__OTR__objects/object_haka_objects/object_haka_objects_DL_009860" +static const ALIGN_ASSET(2) char object_haka_objects_DL_009860[] = dobject_haka_objects_DL_009860; + +#define dobject_haka_objects_Col_009CD0 "__OTR__objects/object_haka_objects/object_haka_objects_Col_009CD0" +static const ALIGN_ASSET(2) char object_haka_objects_Col_009CD0[] = dobject_haka_objects_Col_009CD0; + +#define dobject_haka_objects_DL_00A1A0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00A1A0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_00A1A0[] = dobject_haka_objects_DL_00A1A0; + +#define dobject_haka_objects_Col_00A7F4 "__OTR__objects/object_haka_objects/object_haka_objects_Col_00A7F4" +static const ALIGN_ASSET(2) char object_haka_objects_Col_00A7F4[] = dobject_haka_objects_Col_00A7F4; + +#define dobject_haka_objects_DL_00A860 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00A860" +static const ALIGN_ASSET(2) char object_haka_objects_DL_00A860[] = dobject_haka_objects_DL_00A860; + +#define dobject_haka_objects_Col_00A938 "__OTR__objects/object_haka_objects/object_haka_objects_Col_00A938" +static const ALIGN_ASSET(2) char object_haka_objects_Col_00A938[] = dobject_haka_objects_Col_00A938; + +#define dobject_haka_objects_DL_00BF20 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00BF20" +static const ALIGN_ASSET(2) char object_haka_objects_DL_00BF20[] = dobject_haka_objects_DL_00BF20; + +#define dobject_haka_objects_DL_00D330 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00D330" +static const ALIGN_ASSET(2) char object_haka_objects_DL_00D330[] = dobject_haka_objects_DL_00D330; + +#define dobject_haka_objects_Col_00E408 "__OTR__objects/object_haka_objects/object_haka_objects_Col_00E408" +static const ALIGN_ASSET(2) char object_haka_objects_Col_00E408[] = dobject_haka_objects_Col_00E408; + +#define dobject_haka_objects_DL_00E910 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00E910" +static const ALIGN_ASSET(2) char object_haka_objects_DL_00E910[] = dobject_haka_objects_DL_00E910; + +#define dobject_haka_objects_Col_00ED7C "__OTR__objects/object_haka_objects/object_haka_objects_Col_00ED7C" +static const ALIGN_ASSET(2) char object_haka_objects_Col_00ED7C[] = dobject_haka_objects_Col_00ED7C; + +#define dobject_haka_objects_DL_00F1B0 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00F1B0" +static const ALIGN_ASSET(2) char object_haka_objects_DL_00F1B0[] = dobject_haka_objects_DL_00F1B0; + +#define dobject_haka_objects_DL_00FE40 "__OTR__objects/object_haka_objects/object_haka_objects_DL_00FE40" +static const ALIGN_ASSET(2) char object_haka_objects_DL_00FE40[] = dobject_haka_objects_DL_00FE40; + +#define dobject_haka_objects_Col_0108B8 "__OTR__objects/object_haka_objects/object_haka_objects_Col_0108B8" +static const ALIGN_ASSET(2) char object_haka_objects_Col_0108B8[] = dobject_haka_objects_Col_0108B8; + +#define dobject_haka_objects_DL_010A10 "__OTR__objects/object_haka_objects/object_haka_objects_DL_010A10" +static const ALIGN_ASSET(2) char object_haka_objects_DL_010A10[] = dobject_haka_objects_DL_010A10; + +#define dobject_haka_objects_DL_010C10 "__OTR__objects/object_haka_objects/object_haka_objects_DL_010C10" +static const ALIGN_ASSET(2) char object_haka_objects_DL_010C10[] = dobject_haka_objects_DL_010C10; + +#define dobject_haka_objects_Col_010E10 "__OTR__objects/object_haka_objects/object_haka_objects_Col_010E10" +static const ALIGN_ASSET(2) char object_haka_objects_Col_010E10[] = dobject_haka_objects_Col_010E10; + +#define dobject_haka_objects_DL_012270 "__OTR__objects/object_haka_objects/object_haka_objects_DL_012270" +static const ALIGN_ASSET(2) char object_haka_objects_DL_012270[] = dobject_haka_objects_DL_012270; + +#define dobject_haka_objects_Col_0131C4 "__OTR__objects/object_haka_objects/object_haka_objects_Col_0131C4" +static const ALIGN_ASSET(2) char object_haka_objects_Col_0131C4[] = dobject_haka_objects_Col_0131C4; + +#define dobject_haka_objects_Tex_0131F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0131F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0131F0[] = dobject_haka_objects_Tex_0131F0; + +#define dobject_haka_objects_Tex_0135F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0135F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0135F0[] = dobject_haka_objects_Tex_0135F0; + +#define dobject_haka_objects_Tex_013DF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_013DF0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_013DF0[] = dobject_haka_objects_Tex_013DF0; + +#define dobject_haka_objects_Tex_0145F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0145F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0145F0[] = dobject_haka_objects_Tex_0145F0; + +#define dobject_haka_objects_Tex_0155F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0155F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0155F0[] = dobject_haka_objects_Tex_0155F0; + +#define dobject_haka_objects_Tex_0165F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0165F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0165F0[] = dobject_haka_objects_Tex_0165F0; + +#define dobject_haka_objects_Tex_0167F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0167F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0167F0[] = dobject_haka_objects_Tex_0167F0; + +#define dobject_haka_objects_Tex_016BF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_016BF0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_016BF0[] = dobject_haka_objects_Tex_016BF0; + +#define dobject_haka_objects_Tex_016DF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_016DF0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_016DF0[] = dobject_haka_objects_Tex_016DF0; + +#define dobject_haka_objects_Tex_016FF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_016FF0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_016FF0[] = dobject_haka_objects_Tex_016FF0; + +#define dobject_haka_objects_Tex_0171F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0171F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0171F0[] = dobject_haka_objects_Tex_0171F0; + +#define dobject_haka_objects_Tex_0173F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0173F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0173F0[] = dobject_haka_objects_Tex_0173F0; + +#define dobject_haka_objects_Tex_0175F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0175F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0175F0[] = dobject_haka_objects_Tex_0175F0; + +#define dobject_haka_objects_Tex_0177F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0177F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0177F0[] = dobject_haka_objects_Tex_0177F0; + +#define dobject_haka_objects_Tex_017FF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_017FF0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_017FF0[] = dobject_haka_objects_Tex_017FF0; + +#define dobject_haka_objects_Tex_0187F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0187F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0187F0[] = dobject_haka_objects_Tex_0187F0; + +#define dobject_haka_objects_Tex_018FF0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_018FF0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_018FF0[] = dobject_haka_objects_Tex_018FF0; + +#define dobject_haka_objects_Tex_0197F0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_0197F0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_0197F0[] = dobject_haka_objects_Tex_0197F0; + +#define dobject_haka_objects_Tex_019870 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_019870" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_019870[] = dobject_haka_objects_Tex_019870; + +#define dobject_haka_objects_Tex_01A070 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01A070" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01A070[] = dobject_haka_objects_Tex_01A070; + +#define dobject_haka_objects_Tex_01A470 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01A470" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01A470[] = dobject_haka_objects_Tex_01A470; + +#define dobject_haka_objects_Tex_01A670 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01A670" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01A670[] = dobject_haka_objects_Tex_01A670; + +#define dobject_haka_objects_Tex_01AE70 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01AE70" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01AE70[] = dobject_haka_objects_Tex_01AE70; + +#define dobject_haka_objects_Tex_01B270 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01B270" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01B270[] = dobject_haka_objects_Tex_01B270; + +#define dobject_haka_objects_Tex_01BA70 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01BA70" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01BA70[] = dobject_haka_objects_Tex_01BA70; + +#define dobject_haka_objects_Tex_01C270 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01C270" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01C270[] = dobject_haka_objects_Tex_01C270; + +#define dobject_haka_objects_Tex_01C470 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01C470" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01C470[] = dobject_haka_objects_Tex_01C470; + +#define dobject_haka_objects_Tex_01C670 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01C670" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01C670[] = dobject_haka_objects_Tex_01C670; + +#define dobject_haka_objects_Tex_01CEB0 "__OTR__objects/object_haka_objects/object_haka_objects_Tex_01CEB0" +static const ALIGN_ASSET(2) char object_haka_objects_Tex_01CEB0[] = dobject_haka_objects_Tex_01CEB0; \ No newline at end of file diff --git a/soh/assets/objects/object_hakach_objects/object_hakach_objects.h b/soh/assets/objects/object_hakach_objects/object_hakach_objects.h index 546b8fc18..608a804ce 100644 --- a/soh/assets/objects/object_hakach_objects/object_hakach_objects.h +++ b/soh/assets/objects/object_hakach_objects/object_hakach_objects.h @@ -1,163 +1,72 @@ #pragma once -#define dgBotwHoleTrap1DL "__OTR__objects/object_hakach_objects/gBotwHoleTrap1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwHoleTrap1DL[] = dgBotwHoleTrap1DL; -#else -static const char gBotwHoleTrap1DL[] __attribute__((aligned (2))) = dgBotwHoleTrap1DL; -#endif - -#define dgBotwHoleTrap2DL "__OTR__objects/object_hakach_objects/gBotwHoleTrap2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwHoleTrap2DL[] = dgBotwHoleTrap2DL; -#else -static const char gBotwHoleTrap2DL[] __attribute__((aligned (2))) = dgBotwHoleTrap2DL; -#endif - -#define dgBotwCoffinLidDL "__OTR__objects/object_hakach_objects/gBotwCoffinLidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwCoffinLidDL[] = dgBotwCoffinLidDL; -#else -static const char gBotwCoffinLidDL[] __attribute__((aligned (2))) = dgBotwCoffinLidDL; -#endif - -#define dgBotwBombSpotDL "__OTR__objects/object_hakach_objects/gBotwBombSpotDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwBombSpotDL[] = dgBotwBombSpotDL; -#else -static const char gBotwBombSpotDL[] __attribute__((aligned (2))) = dgBotwBombSpotDL; -#endif - -#define dgBotwFakeWallsAndFloorsDL "__OTR__objects/object_hakach_objects/gBotwFakeWallsAndFloorsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwFakeWallsAndFloorsDL[] = dgBotwFakeWallsAndFloorsDL; -#else -static const char gBotwFakeWallsAndFloorsDL[] __attribute__((aligned (2))) = dgBotwFakeWallsAndFloorsDL; -#endif - -#define dgBotwBloodSplatterDL "__OTR__objects/object_hakach_objects/gBotwBloodSplatterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwBloodSplatterDL[] = dgBotwBloodSplatterDL; -#else -static const char gBotwBloodSplatterDL[] __attribute__((aligned (2))) = dgBotwBloodSplatterDL; -#endif - -#define dgBotwThreeFakeFloorsDL "__OTR__objects/object_hakach_objects/gBotwThreeFakeFloorsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwThreeFakeFloorsDL[] = dgBotwThreeFakeFloorsDL; -#else -static const char gBotwThreeFakeFloorsDL[] __attribute__((aligned (2))) = dgBotwThreeFakeFloorsDL; -#endif - -#define dgBotwWaterRingDL "__OTR__objects/object_hakach_objects/gBotwWaterRingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwWaterRingDL[] = dgBotwWaterRingDL; -#else -static const char gBotwWaterRingDL[] __attribute__((aligned (2))) = dgBotwWaterRingDL; -#endif - -#define dgBotwWaterFallDL "__OTR__objects/object_hakach_objects/gBotwWaterFallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwWaterFallDL[] = dgBotwWaterFallDL; -#else -static const char gBotwWaterFallDL[] __attribute__((aligned (2))) = dgBotwWaterFallDL; -#endif - -#define dgBotwCoffinLidCol "__OTR__objects/object_hakach_objects/gBotwCoffinLidCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwCoffinLidCol[] = dgBotwCoffinLidCol; -#else -static const char gBotwCoffinLidCol[] __attribute__((aligned (2))) = dgBotwCoffinLidCol; -#endif - -#define dgBotwBombSpotCol "__OTR__objects/object_hakach_objects/gBotwBombSpotCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwBombSpotCol[] = dgBotwBombSpotCol; -#else -static const char gBotwBombSpotCol[] __attribute__((aligned (2))) = dgBotwBombSpotCol; -#endif - -#define dgBotw1Col "__OTR__objects/object_hakach_objects/gBotw1Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotw1Col[] = dgBotw1Col; -#else -static const char gBotw1Col[] __attribute__((aligned (2))) = dgBotw1Col; -#endif - -#define dgBotw2Col "__OTR__objects/object_hakach_objects/gBotw2Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotw2Col[] = dgBotw2Col; -#else -static const char gBotw2Col[] __attribute__((aligned (2))) = dgBotw2Col; -#endif - -#define dgBotwWater1Tex "__OTR__objects/object_hakach_objects/gBotwWater1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwWater1Tex[] = dgBotwWater1Tex; -#else -static const char gBotwWater1Tex[] __attribute__((aligned (2))) = dgBotwWater1Tex; -#endif - -#define dgBotwWater2Tex "__OTR__objects/object_hakach_objects/gBotwWater2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwWater2Tex[] = dgBotwWater2Tex; -#else -static const char gBotwWater2Tex[] __attribute__((aligned (2))) = dgBotwWater2Tex; -#endif - -#define dgBotwTex_0030F0 "__OTR__objects/object_hakach_objects/gBotwTex_0030F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwTex_0030F0[] = dgBotwTex_0030F0; -#else -static const char gBotwTex_0030F0[] __attribute__((aligned (2))) = dgBotwTex_0030F0; -#endif - -#define dgBotwBloodSplatterTex "__OTR__objects/object_hakach_objects/gBotwBloodSplatterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwBloodSplatterTex[] = dgBotwBloodSplatterTex; -#else -static const char gBotwBloodSplatterTex[] __attribute__((aligned (2))) = dgBotwBloodSplatterTex; -#endif - -#define dgBotwTex_0040F0 "__OTR__objects/object_hakach_objects/gBotwTex_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwTex_0040F0[] = dgBotwTex_0040F0; -#else -static const char gBotwTex_0040F0[] __attribute__((aligned (2))) = dgBotwTex_0040F0; -#endif - -#define dgBotwTex_0048F0 "__OTR__objects/object_hakach_objects/gBotwTex_0048F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwTex_0048F0[] = dgBotwTex_0048F0; -#else -static const char gBotwTex_0048F0[] __attribute__((aligned (2))) = dgBotwTex_0048F0; -#endif - -#define dgBotwTex_0050F0 "__OTR__objects/object_hakach_objects/gBotwTex_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwTex_0050F0[] = dgBotwTex_0050F0; -#else -static const char gBotwTex_0050F0[] __attribute__((aligned (2))) = dgBotwTex_0050F0; -#endif - -#define dgBotwTex_0058F0 "__OTR__objects/object_hakach_objects/gBotwTex_0058F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwTex_0058F0[] = dgBotwTex_0058F0; -#else -static const char gBotwTex_0058F0[] __attribute__((aligned (2))) = dgBotwTex_0058F0; -#endif - -#define dgBotwTex_0060F0 "__OTR__objects/object_hakach_objects/gBotwTex_0060F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBotwTex_0060F0[] = dgBotwTex_0060F0; -#else -static const char gBotwTex_0060F0[] __attribute__((aligned (2))) = dgBotwTex_0060F0; -#endif - -#define dobject_hakach_objectsTex_0062F0 "__OTR__objects/object_hakach_objects/object_hakach_objectsTex_0062F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hakach_objectsTex_0062F0[] = dobject_hakach_objectsTex_0062F0; -#else -static const char object_hakach_objectsTex_0062F0[] __attribute__((aligned (2))) = dobject_hakach_objectsTex_0062F0; -#endif - +#include "align_asset_macro.h" + +#define dgBotwHoleTrap1DL "__OTR__objects/object_hakach_objects/gBotwHoleTrap1DL" +static const ALIGN_ASSET(2) char gBotwHoleTrap1DL[] = dgBotwHoleTrap1DL; + +#define dgBotwHoleTrap2DL "__OTR__objects/object_hakach_objects/gBotwHoleTrap2DL" +static const ALIGN_ASSET(2) char gBotwHoleTrap2DL[] = dgBotwHoleTrap2DL; + +#define dgBotwCoffinLidDL "__OTR__objects/object_hakach_objects/gBotwCoffinLidDL" +static const ALIGN_ASSET(2) char gBotwCoffinLidDL[] = dgBotwCoffinLidDL; + +#define dgBotwBombSpotDL "__OTR__objects/object_hakach_objects/gBotwBombSpotDL" +static const ALIGN_ASSET(2) char gBotwBombSpotDL[] = dgBotwBombSpotDL; + +#define dgBotwFakeWallsAndFloorsDL "__OTR__objects/object_hakach_objects/gBotwFakeWallsAndFloorsDL" +static const ALIGN_ASSET(2) char gBotwFakeWallsAndFloorsDL[] = dgBotwFakeWallsAndFloorsDL; + +#define dgBotwBloodSplatterDL "__OTR__objects/object_hakach_objects/gBotwBloodSplatterDL" +static const ALIGN_ASSET(2) char gBotwBloodSplatterDL[] = dgBotwBloodSplatterDL; + +#define dgBotwThreeFakeFloorsDL "__OTR__objects/object_hakach_objects/gBotwThreeFakeFloorsDL" +static const ALIGN_ASSET(2) char gBotwThreeFakeFloorsDL[] = dgBotwThreeFakeFloorsDL; + +#define dgBotwWaterRingDL "__OTR__objects/object_hakach_objects/gBotwWaterRingDL" +static const ALIGN_ASSET(2) char gBotwWaterRingDL[] = dgBotwWaterRingDL; + +#define dgBotwWaterFallDL "__OTR__objects/object_hakach_objects/gBotwWaterFallDL" +static const ALIGN_ASSET(2) char gBotwWaterFallDL[] = dgBotwWaterFallDL; + +#define dgBotwCoffinLidCol "__OTR__objects/object_hakach_objects/gBotwCoffinLidCol" +static const ALIGN_ASSET(2) char gBotwCoffinLidCol[] = dgBotwCoffinLidCol; + +#define dgBotwBombSpotCol "__OTR__objects/object_hakach_objects/gBotwBombSpotCol" +static const ALIGN_ASSET(2) char gBotwBombSpotCol[] = dgBotwBombSpotCol; + +#define dgBotw1Col "__OTR__objects/object_hakach_objects/gBotw1Col" +static const ALIGN_ASSET(2) char gBotw1Col[] = dgBotw1Col; + +#define dgBotw2Col "__OTR__objects/object_hakach_objects/gBotw2Col" +static const ALIGN_ASSET(2) char gBotw2Col[] = dgBotw2Col; + +#define dgBotwWater1Tex "__OTR__objects/object_hakach_objects/gBotwWater1Tex" +static const ALIGN_ASSET(2) char gBotwWater1Tex[] = dgBotwWater1Tex; + +#define dgBotwWater2Tex "__OTR__objects/object_hakach_objects/gBotwWater2Tex" +static const ALIGN_ASSET(2) char gBotwWater2Tex[] = dgBotwWater2Tex; + +#define dgBotwTex_0030F0 "__OTR__objects/object_hakach_objects/gBotwTex_0030F0" +static const ALIGN_ASSET(2) char gBotwTex_0030F0[] = dgBotwTex_0030F0; + +#define dgBotwBloodSplatterTex "__OTR__objects/object_hakach_objects/gBotwBloodSplatterTex" +static const ALIGN_ASSET(2) char gBotwBloodSplatterTex[] = dgBotwBloodSplatterTex; + +#define dgBotwTex_0040F0 "__OTR__objects/object_hakach_objects/gBotwTex_0040F0" +static const ALIGN_ASSET(2) char gBotwTex_0040F0[] = dgBotwTex_0040F0; + +#define dgBotwTex_0048F0 "__OTR__objects/object_hakach_objects/gBotwTex_0048F0" +static const ALIGN_ASSET(2) char gBotwTex_0048F0[] = dgBotwTex_0048F0; + +#define dgBotwTex_0050F0 "__OTR__objects/object_hakach_objects/gBotwTex_0050F0" +static const ALIGN_ASSET(2) char gBotwTex_0050F0[] = dgBotwTex_0050F0; + +#define dgBotwTex_0058F0 "__OTR__objects/object_hakach_objects/gBotwTex_0058F0" +static const ALIGN_ASSET(2) char gBotwTex_0058F0[] = dgBotwTex_0058F0; + +#define dgBotwTex_0060F0 "__OTR__objects/object_hakach_objects/gBotwTex_0060F0" +static const ALIGN_ASSET(2) char gBotwTex_0060F0[] = dgBotwTex_0060F0; + +#define dobject_hakach_objectsTex_0062F0 "__OTR__objects/object_hakach_objects/object_hakach_objectsTex_0062F0" +static const ALIGN_ASSET(2) char object_hakach_objectsTex_0062F0[] = dobject_hakach_objectsTex_0062F0; \ No newline at end of file diff --git a/soh/assets/objects/object_hata/object_hata.h b/soh/assets/objects/object_hata/object_hata.h index 7b13cc038..36942480f 100644 --- a/soh/assets/objects/object_hata/object_hata.h +++ b/soh/assets/objects/object_hata/object_hata.h @@ -1,107 +1,48 @@ #pragma once -#define dgFlagpoleCol "__OTR__objects/object_hata/gFlagpoleCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleCol[] = dgFlagpoleCol; -#else -static const char gFlagpoleCol[] __attribute__((aligned (2))) = dgFlagpoleCol; -#endif - -#define dgFlagpoleFlapAnim "__OTR__objects/object_hata/gFlagpoleFlapAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlapAnim[] = dgFlagpoleFlapAnim; -#else -static const char gFlagpoleFlapAnim[] __attribute__((aligned (2))) = dgFlagpoleFlapAnim; -#endif - -#define dgFlagpoleSkel "__OTR__objects/object_hata/gFlagpoleSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleSkel[] = dgFlagpoleSkel; -#else -static const char gFlagpoleSkel[] __attribute__((aligned (2))) = dgFlagpoleSkel; -#endif - -#define dgFlagpolePoleDL "__OTR__objects/object_hata/gFlagpolePoleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpolePoleDL[] = dgFlagpolePoleDL; -#else -static const char gFlagpolePoleDL[] __attribute__((aligned (2))) = dgFlagpolePoleDL; -#endif - -#define dgFlagpoleFlag1FlyEndDL "__OTR__objects/object_hata/gFlagpoleFlag1FlyEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlag1FlyEndDL[] = dgFlagpoleFlag1FlyEndDL; -#else -static const char gFlagpoleFlag1FlyEndDL[] __attribute__((aligned (2))) = dgFlagpoleFlag1FlyEndDL; -#endif - -#define dgFlagpoleFlag1FlyMidDL "__OTR__objects/object_hata/gFlagpoleFlag1FlyMidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlag1FlyMidDL[] = dgFlagpoleFlag1FlyMidDL; -#else -static const char gFlagpoleFlag1FlyMidDL[] __attribute__((aligned (2))) = dgFlagpoleFlag1FlyMidDL; -#endif - -#define dgFlagpoleFlag1HoistMidDL "__OTR__objects/object_hata/gFlagpoleFlag1HoistMidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlag1HoistMidDL[] = dgFlagpoleFlag1HoistMidDL; -#else -static const char gFlagpoleFlag1HoistMidDL[] __attribute__((aligned (2))) = dgFlagpoleFlag1HoistMidDL; -#endif - -#define dgFlagpoleFlag1HoistEndDL "__OTR__objects/object_hata/gFlagpoleFlag1HoistEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlag1HoistEndDL[] = dgFlagpoleFlag1HoistEndDL; -#else -static const char gFlagpoleFlag1HoistEndDL[] __attribute__((aligned (2))) = dgFlagpoleFlag1HoistEndDL; -#endif - -#define dgFlagpoleFlag2FlyEndDL "__OTR__objects/object_hata/gFlagpoleFlag2FlyEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlag2FlyEndDL[] = dgFlagpoleFlag2FlyEndDL; -#else -static const char gFlagpoleFlag2FlyEndDL[] __attribute__((aligned (2))) = dgFlagpoleFlag2FlyEndDL; -#endif - -#define dgFlagpoleFlag2FlyMidDL "__OTR__objects/object_hata/gFlagpoleFlag2FlyMidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlag2FlyMidDL[] = dgFlagpoleFlag2FlyMidDL; -#else -static const char gFlagpoleFlag2FlyMidDL[] __attribute__((aligned (2))) = dgFlagpoleFlag2FlyMidDL; -#endif - -#define dgFlagpoleFlag2HoistMidDL "__OTR__objects/object_hata/gFlagpoleFlag2HoistMidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlag2HoistMidDL[] = dgFlagpoleFlag2HoistMidDL; -#else -static const char gFlagpoleFlag2HoistMidDL[] __attribute__((aligned (2))) = dgFlagpoleFlag2HoistMidDL; -#endif - -#define dgFlagpoleFlag2HoistEndDL "__OTR__objects/object_hata/gFlagpoleFlag2HoistEndDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlag2HoistEndDL[] = dgFlagpoleFlag2HoistEndDL; -#else -static const char gFlagpoleFlag2HoistEndDL[] __attribute__((aligned (2))) = dgFlagpoleFlag2HoistEndDL; -#endif - -#define dgFlagpolePoleTex "__OTR__objects/object_hata/gFlagpolePoleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpolePoleTex[] = dgFlagpolePoleTex; -#else -static const char gFlagpolePoleTex[] __attribute__((aligned (2))) = dgFlagpolePoleTex; -#endif - -#define dgFlagpoleTopTex "__OTR__objects/object_hata/gFlagpoleTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleTopTex[] = dgFlagpoleTopTex; -#else -static const char gFlagpoleTopTex[] __attribute__((aligned (2))) = dgFlagpoleTopTex; -#endif - -#define dgFlagpoleFlagTex "__OTR__objects/object_hata/gFlagpoleFlagTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFlagpoleFlagTex[] = dgFlagpoleFlagTex; -#else -static const char gFlagpoleFlagTex[] __attribute__((aligned (2))) = dgFlagpoleFlagTex; -#endif - +#include "align_asset_macro.h" + +#define dgFlagpoleCol "__OTR__objects/object_hata/gFlagpoleCol" +static const ALIGN_ASSET(2) char gFlagpoleCol[] = dgFlagpoleCol; + +#define dgFlagpoleFlapAnim "__OTR__objects/object_hata/gFlagpoleFlapAnim" +static const ALIGN_ASSET(2) char gFlagpoleFlapAnim[] = dgFlagpoleFlapAnim; + +#define dgFlagpoleSkel "__OTR__objects/object_hata/gFlagpoleSkel" +static const ALIGN_ASSET(2) char gFlagpoleSkel[] = dgFlagpoleSkel; + +#define dgFlagpolePoleDL "__OTR__objects/object_hata/gFlagpolePoleDL" +static const ALIGN_ASSET(2) char gFlagpolePoleDL[] = dgFlagpolePoleDL; + +#define dgFlagpoleFlag1FlyEndDL "__OTR__objects/object_hata/gFlagpoleFlag1FlyEndDL" +static const ALIGN_ASSET(2) char gFlagpoleFlag1FlyEndDL[] = dgFlagpoleFlag1FlyEndDL; + +#define dgFlagpoleFlag1FlyMidDL "__OTR__objects/object_hata/gFlagpoleFlag1FlyMidDL" +static const ALIGN_ASSET(2) char gFlagpoleFlag1FlyMidDL[] = dgFlagpoleFlag1FlyMidDL; + +#define dgFlagpoleFlag1HoistMidDL "__OTR__objects/object_hata/gFlagpoleFlag1HoistMidDL" +static const ALIGN_ASSET(2) char gFlagpoleFlag1HoistMidDL[] = dgFlagpoleFlag1HoistMidDL; + +#define dgFlagpoleFlag1HoistEndDL "__OTR__objects/object_hata/gFlagpoleFlag1HoistEndDL" +static const ALIGN_ASSET(2) char gFlagpoleFlag1HoistEndDL[] = dgFlagpoleFlag1HoistEndDL; + +#define dgFlagpoleFlag2FlyEndDL "__OTR__objects/object_hata/gFlagpoleFlag2FlyEndDL" +static const ALIGN_ASSET(2) char gFlagpoleFlag2FlyEndDL[] = dgFlagpoleFlag2FlyEndDL; + +#define dgFlagpoleFlag2FlyMidDL "__OTR__objects/object_hata/gFlagpoleFlag2FlyMidDL" +static const ALIGN_ASSET(2) char gFlagpoleFlag2FlyMidDL[] = dgFlagpoleFlag2FlyMidDL; + +#define dgFlagpoleFlag2HoistMidDL "__OTR__objects/object_hata/gFlagpoleFlag2HoistMidDL" +static const ALIGN_ASSET(2) char gFlagpoleFlag2HoistMidDL[] = dgFlagpoleFlag2HoistMidDL; + +#define dgFlagpoleFlag2HoistEndDL "__OTR__objects/object_hata/gFlagpoleFlag2HoistEndDL" +static const ALIGN_ASSET(2) char gFlagpoleFlag2HoistEndDL[] = dgFlagpoleFlag2HoistEndDL; + +#define dgFlagpolePoleTex "__OTR__objects/object_hata/gFlagpolePoleTex" +static const ALIGN_ASSET(2) char gFlagpolePoleTex[] = dgFlagpolePoleTex; + +#define dgFlagpoleTopTex "__OTR__objects/object_hata/gFlagpoleTopTex" +static const ALIGN_ASSET(2) char gFlagpoleTopTex[] = dgFlagpoleTopTex; + +#define dgFlagpoleFlagTex "__OTR__objects/object_hata/gFlagpoleFlagTex" +static const ALIGN_ASSET(2) char gFlagpoleFlagTex[] = dgFlagpoleFlagTex; \ No newline at end of file diff --git a/soh/assets/objects/object_heavy_object/object_heavy_object.h b/soh/assets/objects/object_heavy_object/object_heavy_object.h index 72d190e9c..879b1d418 100644 --- a/soh/assets/objects/object_heavy_object/object_heavy_object.h +++ b/soh/assets/objects/object_heavy_object/object_heavy_object.h @@ -1,37 +1,18 @@ #pragma once -#define dgHeavyBlockTex "__OTR__objects/object_heavy_object/gHeavyBlockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeavyBlockTex[] = dgHeavyBlockTex; -#else -static const char gHeavyBlockTex[] __attribute__((aligned (2))) = dgHeavyBlockTex; -#endif - -#define dgHeavyBlockEntirePillarDL "__OTR__objects/object_heavy_object/gHeavyBlockEntirePillarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeavyBlockEntirePillarDL[] = dgHeavyBlockEntirePillarDL; -#else -static const char gHeavyBlockEntirePillarDL[] __attribute__((aligned (2))) = dgHeavyBlockEntirePillarDL; -#endif - -#define dgHeavyBlockBigPieceDL "__OTR__objects/object_heavy_object/gHeavyBlockBigPieceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeavyBlockBigPieceDL[] = dgHeavyBlockBigPieceDL; -#else -static const char gHeavyBlockBigPieceDL[] __attribute__((aligned (2))) = dgHeavyBlockBigPieceDL; -#endif - -#define dgHeavyBlockSmallPieceDL "__OTR__objects/object_heavy_object/gHeavyBlockSmallPieceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeavyBlockSmallPieceDL[] = dgHeavyBlockSmallPieceDL; -#else -static const char gHeavyBlockSmallPieceDL[] __attribute__((aligned (2))) = dgHeavyBlockSmallPieceDL; -#endif - -#define dgHeavyBlockCol "__OTR__objects/object_heavy_object/gHeavyBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeavyBlockCol[] = dgHeavyBlockCol; -#else -static const char gHeavyBlockCol[] __attribute__((aligned (2))) = dgHeavyBlockCol; -#endif - +#include "align_asset_macro.h" + +#define dgHeavyBlockTex "__OTR__objects/object_heavy_object/gHeavyBlockTex" +static const ALIGN_ASSET(2) char gHeavyBlockTex[] = dgHeavyBlockTex; + +#define dgHeavyBlockEntirePillarDL "__OTR__objects/object_heavy_object/gHeavyBlockEntirePillarDL" +static const ALIGN_ASSET(2) char gHeavyBlockEntirePillarDL[] = dgHeavyBlockEntirePillarDL; + +#define dgHeavyBlockBigPieceDL "__OTR__objects/object_heavy_object/gHeavyBlockBigPieceDL" +static const ALIGN_ASSET(2) char gHeavyBlockBigPieceDL[] = dgHeavyBlockBigPieceDL; + +#define dgHeavyBlockSmallPieceDL "__OTR__objects/object_heavy_object/gHeavyBlockSmallPieceDL" +static const ALIGN_ASSET(2) char gHeavyBlockSmallPieceDL[] = dgHeavyBlockSmallPieceDL; + +#define dgHeavyBlockCol "__OTR__objects/object_heavy_object/gHeavyBlockCol" +static const ALIGN_ASSET(2) char gHeavyBlockCol[] = dgHeavyBlockCol; \ No newline at end of file diff --git a/soh/assets/objects/object_hidan_objects/object_hidan_objects.h b/soh/assets/objects/object_hidan_objects/object_hidan_objects.h index 8eba97103..4c62edb8a 100644 --- a/soh/assets/objects/object_hidan_objects/object_hidan_objects.h +++ b/soh/assets/objects/object_hidan_objects/object_hidan_objects.h @@ -1,611 +1,264 @@ #pragma once -#define dgFireTempleHammerableTotemBodyDL "__OTR__objects/object_hidan_objects/gFireTempleHammerableTotemBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleHammerableTotemBodyDL[] = dgFireTempleHammerableTotemBodyDL; -#else -static const char gFireTempleHammerableTotemBodyDL[] __attribute__((aligned (2))) = dgFireTempleHammerableTotemBodyDL; -#endif - -#define dgFireTempleHammerableTotemHeadDL "__OTR__objects/object_hidan_objects/gFireTempleHammerableTotemHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleHammerableTotemHeadDL[] = dgFireTempleHammerableTotemHeadDL; -#else -static const char gFireTempleHammerableTotemHeadDL[] __attribute__((aligned (2))) = dgFireTempleHammerableTotemHeadDL; -#endif - -#define dgFireTempleHammerableTotemCol "__OTR__objects/object_hidan_objects/gFireTempleHammerableTotemCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleHammerableTotemCol[] = dgFireTempleHammerableTotemCol; -#else -static const char gFireTempleHammerableTotemCol[] __attribute__((aligned (2))) = dgFireTempleHammerableTotemCol; -#endif - -#define dgFireTempleHookshotElevatorDL "__OTR__objects/object_hidan_objects/gFireTempleHookshotElevatorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleHookshotElevatorDL[] = dgFireTempleHookshotElevatorDL; -#else -static const char gFireTempleHookshotElevatorDL[] __attribute__((aligned (2))) = dgFireTempleHookshotElevatorDL; -#endif - -#define dgFireTempleHookshotElevatorCol "__OTR__objects/object_hidan_objects/gFireTempleHookshotElevatorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleHookshotElevatorCol[] = dgFireTempleHookshotElevatorCol; -#else -static const char gFireTempleHookshotElevatorCol[] __attribute__((aligned (2))) = dgFireTempleHookshotElevatorCol; -#endif - -#define dgFireTempleBigFireWallDL "__OTR__objects/object_hidan_objects/gFireTempleBigFireWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigFireWallDL[] = dgFireTempleBigFireWallDL; -#else -static const char gFireTempleBigFireWallDL[] __attribute__((aligned (2))) = dgFireTempleBigFireWallDL; -#endif - -#define dgFireTempleStoneStep1DL "__OTR__objects/object_hidan_objects/gFireTempleStoneStep1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStoneStep1DL[] = dgFireTempleStoneStep1DL; -#else -static const char gFireTempleStoneStep1DL[] __attribute__((aligned (2))) = dgFireTempleStoneStep1DL; -#endif - -#define dgFireTempleStoneStep1Col "__OTR__objects/object_hidan_objects/gFireTempleStoneStep1Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStoneStep1Col[] = dgFireTempleStoneStep1Col; -#else -static const char gFireTempleStoneStep1Col[] __attribute__((aligned (2))) = dgFireTempleStoneStep1Col; -#endif - -#define dgFireTempleStoneStep2DL "__OTR__objects/object_hidan_objects/gFireTempleStoneStep2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStoneStep2DL[] = dgFireTempleStoneStep2DL; -#else -static const char gFireTempleStoneStep2DL[] __attribute__((aligned (2))) = dgFireTempleStoneStep2DL; -#endif - -#define dgFireTempleStoneStep2Col "__OTR__objects/object_hidan_objects/gFireTempleStoneStep2Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStoneStep2Col[] = dgFireTempleStoneStep2Col; -#else -static const char gFireTempleStoneStep2Col[] __attribute__((aligned (2))) = dgFireTempleStoneStep2Col; -#endif - -#define dgFireTempleMetalFenceWithSlantDL "__OTR__objects/object_hidan_objects/gFireTempleMetalFenceWithSlantDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleMetalFenceWithSlantDL[] = dgFireTempleMetalFenceWithSlantDL; -#else -static const char gFireTempleMetalFenceWithSlantDL[] __attribute__((aligned (2))) = dgFireTempleMetalFenceWithSlantDL; -#endif - -#define dgFireTempleMetalFenceWithSlantCol "__OTR__objects/object_hidan_objects/gFireTempleMetalFenceWithSlantCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleMetalFenceWithSlantCol[] = dgFireTempleMetalFenceWithSlantCol; -#else -static const char gFireTempleMetalFenceWithSlantCol[] __attribute__((aligned (2))) = dgFireTempleMetalFenceWithSlantCol; -#endif - -#define dgFireTempleMetalFenceDL "__OTR__objects/object_hidan_objects/gFireTempleMetalFenceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleMetalFenceDL[] = dgFireTempleMetalFenceDL; -#else -static const char gFireTempleMetalFenceDL[] __attribute__((aligned (2))) = dgFireTempleMetalFenceDL; -#endif - -#define dgFireTempleMetalFenceCol "__OTR__objects/object_hidan_objects/gFireTempleMetalFenceCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleMetalFenceCol[] = dgFireTempleMetalFenceCol; -#else -static const char gFireTempleMetalFenceCol[] __attribute__((aligned (2))) = dgFireTempleMetalFenceCol; -#endif - -#define dgFireTempleMetalFence2DL "__OTR__objects/object_hidan_objects/gFireTempleMetalFence2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleMetalFence2DL[] = dgFireTempleMetalFence2DL; -#else -static const char gFireTempleMetalFence2DL[] __attribute__((aligned (2))) = dgFireTempleMetalFence2DL; -#endif - -#define dgFireTempleMetalFence2Col "__OTR__objects/object_hidan_objects/gFireTempleMetalFence2Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleMetalFence2Col[] = dgFireTempleMetalFence2Col; -#else -static const char gFireTempleMetalFence2Col[] __attribute__((aligned (2))) = dgFireTempleMetalFence2Col; -#endif - -#define dgFireTempleCrackedStoneFloorDL "__OTR__objects/object_hidan_objects/gFireTempleCrackedStoneFloorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleCrackedStoneFloorDL[] = dgFireTempleCrackedStoneFloorDL; -#else -static const char gFireTempleCrackedStoneFloorDL[] __attribute__((aligned (2))) = dgFireTempleCrackedStoneFloorDL; -#endif - -#define dgFireTempleCrackedStoneFloorCol "__OTR__objects/object_hidan_objects/gFireTempleCrackedStoneFloorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleCrackedStoneFloorCol[] = dgFireTempleCrackedStoneFloorCol; -#else -static const char gFireTempleCrackedStoneFloorCol[] __attribute__((aligned (2))) = dgFireTempleCrackedStoneFloorCol; -#endif - -#define dgFireTempleBombableWallDL "__OTR__objects/object_hidan_objects/gFireTempleBombableWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBombableWallDL[] = dgFireTempleBombableWallDL; -#else -static const char gFireTempleBombableWallDL[] __attribute__((aligned (2))) = dgFireTempleBombableWallDL; -#endif - -#define dgFireTempleBombableWallCol "__OTR__objects/object_hidan_objects/gFireTempleBombableWallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBombableWallCol[] = dgFireTempleBombableWallCol; -#else -static const char gFireTempleBombableWallCol[] __attribute__((aligned (2))) = dgFireTempleBombableWallCol; -#endif - -#define dgFireTempleLargeBombableWallDL "__OTR__objects/object_hidan_objects/gFireTempleLargeBombableWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleLargeBombableWallDL[] = dgFireTempleLargeBombableWallDL; -#else -static const char gFireTempleLargeBombableWallDL[] __attribute__((aligned (2))) = dgFireTempleLargeBombableWallDL; -#endif - -#define dgFireTempleLargeBombableWallCol "__OTR__objects/object_hidan_objects/gFireTempleLargeBombableWallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleLargeBombableWallCol[] = dgFireTempleLargeBombableWallCol; -#else -static const char gFireTempleLargeBombableWallCol[] __attribute__((aligned (2))) = dgFireTempleLargeBombableWallCol; -#endif - -#define dgFireTempleStoneBlock1DL "__OTR__objects/object_hidan_objects/gFireTempleStoneBlock1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStoneBlock1DL[] = dgFireTempleStoneBlock1DL; -#else -static const char gFireTempleStoneBlock1DL[] __attribute__((aligned (2))) = dgFireTempleStoneBlock1DL; -#endif - -#define dgFireTempleStoneBlock1Col "__OTR__objects/object_hidan_objects/gFireTempleStoneBlock1Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStoneBlock1Col[] = dgFireTempleStoneBlock1Col; -#else -static const char gFireTempleStoneBlock1Col[] __attribute__((aligned (2))) = dgFireTempleStoneBlock1Col; -#endif - -#define dgFireTempleStoneBlock2DL "__OTR__objects/object_hidan_objects/gFireTempleStoneBlock2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStoneBlock2DL[] = dgFireTempleStoneBlock2DL; -#else -static const char gFireTempleStoneBlock2DL[] __attribute__((aligned (2))) = dgFireTempleStoneBlock2DL; -#endif - -#define dgFireTempleStoneBlock2Col "__OTR__objects/object_hidan_objects/gFireTempleStoneBlock2Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStoneBlock2Col[] = dgFireTempleStoneBlock2Col; -#else -static const char gFireTempleStoneBlock2Col[] __attribute__((aligned (2))) = dgFireTempleStoneBlock2Col; -#endif - -#define dgFireTempleBigVerticalFlameDL "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlameDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlameDL[] = dgFireTempleBigVerticalFlameDL; -#else -static const char gFireTempleBigVerticalFlameDL[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlameDL; -#endif - -#define dgFireTempleBigVerticalFlame0Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame0Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlame0Tex[] = dgFireTempleBigVerticalFlame0Tex; -#else -static const char gFireTempleBigVerticalFlame0Tex[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlame0Tex; -#endif - -#define dgFireTempleBigVerticalFlame1Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlame1Tex[] = dgFireTempleBigVerticalFlame1Tex; -#else -static const char gFireTempleBigVerticalFlame1Tex[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlame1Tex; -#endif - -#define dgFireTempleBigVerticalFlame2Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlame2Tex[] = dgFireTempleBigVerticalFlame2Tex; -#else -static const char gFireTempleBigVerticalFlame2Tex[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlame2Tex; -#endif - -#define dgFireTempleBigVerticalFlame3Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlame3Tex[] = dgFireTempleBigVerticalFlame3Tex; -#else -static const char gFireTempleBigVerticalFlame3Tex[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlame3Tex; -#endif - -#define dgFireTempleBigVerticalFlame4Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlame4Tex[] = dgFireTempleBigVerticalFlame4Tex; -#else -static const char gFireTempleBigVerticalFlame4Tex[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlame4Tex; -#endif - -#define dgFireTempleBigVerticalFlame5Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlame5Tex[] = dgFireTempleBigVerticalFlame5Tex; -#else -static const char gFireTempleBigVerticalFlame5Tex[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlame5Tex; -#endif - -#define dgFireTempleBigVerticalFlame6Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlame6Tex[] = dgFireTempleBigVerticalFlame6Tex; -#else -static const char gFireTempleBigVerticalFlame6Tex[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlame6Tex; -#endif - -#define dgFireTempleBigVerticalFlame7Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBigVerticalFlame7Tex[] = dgFireTempleBigVerticalFlame7Tex; -#else -static const char gFireTempleBigVerticalFlame7Tex[] __attribute__((aligned (2))) = dgFireTempleBigVerticalFlame7Tex; -#endif - -#define dgFireTempleFireballDL "__OTR__objects/object_hidan_objects/gFireTempleFireballDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireballDL[] = dgFireTempleFireballDL; -#else -static const char gFireTempleFireballDL[] __attribute__((aligned (2))) = dgFireTempleFireballDL; -#endif - -#define dgFireTempleFireballUpperHalfDL "__OTR__objects/object_hidan_objects/gFireTempleFireballUpperHalfDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireballUpperHalfDL[] = dgFireTempleFireballUpperHalfDL; -#else -static const char gFireTempleFireballUpperHalfDL[] __attribute__((aligned (2))) = dgFireTempleFireballUpperHalfDL; -#endif - -#define dgFireTempleFireball0Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball0Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireball0Tex[] = dgFireTempleFireball0Tex; -#else -static const char gFireTempleFireball0Tex[] __attribute__((aligned (2))) = dgFireTempleFireball0Tex; -#endif - -#define dgFireTempleFireball1Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireball1Tex[] = dgFireTempleFireball1Tex; -#else -static const char gFireTempleFireball1Tex[] __attribute__((aligned (2))) = dgFireTempleFireball1Tex; -#endif - -#define dgFireTempleFireball2Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireball2Tex[] = dgFireTempleFireball2Tex; -#else -static const char gFireTempleFireball2Tex[] __attribute__((aligned (2))) = dgFireTempleFireball2Tex; -#endif - -#define dgFireTempleFireball3Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireball3Tex[] = dgFireTempleFireball3Tex; -#else -static const char gFireTempleFireball3Tex[] __attribute__((aligned (2))) = dgFireTempleFireball3Tex; -#endif - -#define dgFireTempleFireball4Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireball4Tex[] = dgFireTempleFireball4Tex; -#else -static const char gFireTempleFireball4Tex[] __attribute__((aligned (2))) = dgFireTempleFireball4Tex; -#endif - -#define dgFireTempleFireball5Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireball5Tex[] = dgFireTempleFireball5Tex; -#else -static const char gFireTempleFireball5Tex[] __attribute__((aligned (2))) = dgFireTempleFireball5Tex; -#endif - -#define dgFireTempleFireball6Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireball6Tex[] = dgFireTempleFireball6Tex; -#else -static const char gFireTempleFireball6Tex[] __attribute__((aligned (2))) = dgFireTempleFireball6Tex; -#endif - -#define dgFireTempleFireball7Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFireball7Tex[] = dgFireTempleFireball7Tex; -#else -static const char gFireTempleFireball7Tex[] __attribute__((aligned (2))) = dgFireTempleFireball7Tex; -#endif - -#define dgFireTempleSpinningFlamethrowerDL "__OTR__objects/object_hidan_objects/gFireTempleSpinningFlamethrowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleSpinningFlamethrowerDL[] = dgFireTempleSpinningFlamethrowerDL; -#else -static const char gFireTempleSpinningFlamethrowerDL[] __attribute__((aligned (2))) = dgFireTempleSpinningFlamethrowerDL; -#endif - -#define dgFireTempleSpinningFlamethrowerCol "__OTR__objects/object_hidan_objects/gFireTempleSpinningFlamethrowerCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleSpinningFlamethrowerCol[] = dgFireTempleSpinningFlamethrowerCol; -#else -static const char gFireTempleSpinningFlamethrowerCol[] __attribute__((aligned (2))) = dgFireTempleSpinningFlamethrowerCol; -#endif - -#define dgFireTempleStationaryFlamethrowerShortDL "__OTR__objects/object_hidan_objects/gFireTempleStationaryFlamethrowerShortDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStationaryFlamethrowerShortDL[] = dgFireTempleStationaryFlamethrowerShortDL; -#else -static const char gFireTempleStationaryFlamethrowerShortDL[] __attribute__((aligned (2))) = dgFireTempleStationaryFlamethrowerShortDL; -#endif - -#define dgFireTempleStationaryFlamethrowerShortCol "__OTR__objects/object_hidan_objects/gFireTempleStationaryFlamethrowerShortCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStationaryFlamethrowerShortCol[] = dgFireTempleStationaryFlamethrowerShortCol; -#else -static const char gFireTempleStationaryFlamethrowerShortCol[] __attribute__((aligned (2))) = dgFireTempleStationaryFlamethrowerShortCol; -#endif - -#define dgFireTempleStationaryFlamethrowerTallDL "__OTR__objects/object_hidan_objects/gFireTempleStationaryFlamethrowerTallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStationaryFlamethrowerTallDL[] = dgFireTempleStationaryFlamethrowerTallDL; -#else -static const char gFireTempleStationaryFlamethrowerTallDL[] __attribute__((aligned (2))) = dgFireTempleStationaryFlamethrowerTallDL; -#endif - -#define dgFireTempleStationaryFlamethrowerTallCol "__OTR__objects/object_hidan_objects/gFireTempleStationaryFlamethrowerTallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStationaryFlamethrowerTallCol[] = dgFireTempleStationaryFlamethrowerTallCol; -#else -static const char gFireTempleStationaryFlamethrowerTallCol[] __attribute__((aligned (2))) = dgFireTempleStationaryFlamethrowerTallCol; -#endif - -#define dgFireTempleStonePlatform1DL "__OTR__objects/object_hidan_objects/gFireTempleStonePlatform1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStonePlatform1DL[] = dgFireTempleStonePlatform1DL; -#else -static const char gFireTempleStonePlatform1DL[] __attribute__((aligned (2))) = dgFireTempleStonePlatform1DL; -#endif - -#define dgFireTempleStonePlatform1Col "__OTR__objects/object_hidan_objects/gFireTempleStonePlatform1Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStonePlatform1Col[] = dgFireTempleStonePlatform1Col; -#else -static const char gFireTempleStonePlatform1Col[] __attribute__((aligned (2))) = dgFireTempleStonePlatform1Col; -#endif - -#define dgFireTempleStonePlatform2DL "__OTR__objects/object_hidan_objects/gFireTempleStonePlatform2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStonePlatform2DL[] = dgFireTempleStonePlatform2DL; -#else -static const char gFireTempleStonePlatform2DL[] __attribute__((aligned (2))) = dgFireTempleStonePlatform2DL; -#endif - -#define dgFireTempleStonePlatform2Col "__OTR__objects/object_hidan_objects/gFireTempleStonePlatform2Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleStonePlatform2Col[] = dgFireTempleStonePlatform2Col; -#else -static const char gFireTempleStonePlatform2Col[] __attribute__((aligned (2))) = dgFireTempleStonePlatform2Col; -#endif - -#define dgFireTempleFlareDancerPlatformDL "__OTR__objects/object_hidan_objects/gFireTempleFlareDancerPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFlareDancerPlatformDL[] = dgFireTempleFlareDancerPlatformDL; -#else -static const char gFireTempleFlareDancerPlatformDL[] __attribute__((aligned (2))) = dgFireTempleFlareDancerPlatformDL; -#endif - -#define dgFireTempleFlareDancerPlatformCol "__OTR__objects/object_hidan_objects/gFireTempleFlareDancerPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleFlareDancerPlatformCol[] = dgFireTempleFlareDancerPlatformCol; -#else -static const char gFireTempleFlareDancerPlatformCol[] __attribute__((aligned (2))) = dgFireTempleFlareDancerPlatformCol; -#endif - -#define dgFireTempleTallestPillarAboveRoomBeforeBossDL "__OTR__objects/object_hidan_objects/gFireTempleTallestPillarAboveRoomBeforeBossDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleTallestPillarAboveRoomBeforeBossDL[] = dgFireTempleTallestPillarAboveRoomBeforeBossDL; -#else -static const char gFireTempleTallestPillarAboveRoomBeforeBossDL[] __attribute__((aligned (2))) = dgFireTempleTallestPillarAboveRoomBeforeBossDL; -#endif - -#define dgFireTempleTallestPillarAboveRoomBeforeBossCol "__OTR__objects/object_hidan_objects/gFireTempleTallestPillarAboveRoomBeforeBossCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleTallestPillarAboveRoomBeforeBossCol[] = dgFireTempleTallestPillarAboveRoomBeforeBossCol; -#else -static const char gFireTempleTallestPillarAboveRoomBeforeBossCol[] __attribute__((aligned (2))) = dgFireTempleTallestPillarAboveRoomBeforeBossCol; -#endif - -#define dgFireTemplePillarInsertedInGroundDL "__OTR__objects/object_hidan_objects/gFireTemplePillarInsertedInGroundDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePillarInsertedInGroundDL[] = dgFireTemplePillarInsertedInGroundDL; -#else -static const char gFireTemplePillarInsertedInGroundDL[] __attribute__((aligned (2))) = dgFireTemplePillarInsertedInGroundDL; -#endif - -#define dgFireTemplePillarInsertedInGroundCol "__OTR__objects/object_hidan_objects/gFireTemplePillarInsertedInGroundCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePillarInsertedInGroundCol[] = dgFireTemplePillarInsertedInGroundCol; -#else -static const char gFireTemplePillarInsertedInGroundCol[] __attribute__((aligned (2))) = dgFireTemplePillarInsertedInGroundCol; -#endif - -#define dgFireTempleBombableDoorFrameDL "__OTR__objects/object_hidan_objects/gFireTempleBombableDoorFrameDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleBombableDoorFrameDL[] = dgFireTempleBombableDoorFrameDL; -#else -static const char gFireTempleBombableDoorFrameDL[] __attribute__((aligned (2))) = dgFireTempleBombableDoorFrameDL; -#endif - -#define dgFireTempleDoorWithHandleRightDL "__OTR__objects/object_hidan_objects/gFireTempleDoorWithHandleRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleDoorWithHandleRightDL[] = dgFireTempleDoorWithHandleRightDL; -#else -static const char gFireTempleDoorWithHandleRightDL[] __attribute__((aligned (2))) = dgFireTempleDoorWithHandleRightDL; -#endif - -#define dgFireTempleDoorWithHandleLeftDL "__OTR__objects/object_hidan_objects/gFireTempleDoorWithHandleLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleDoorWithHandleLeftDL[] = dgFireTempleDoorWithHandleLeftDL; -#else -static const char gFireTempleDoorWithHandleLeftDL[] __attribute__((aligned (2))) = dgFireTempleDoorWithHandleLeftDL; -#endif - -#define dgFireTempleDoorFrontDL "__OTR__objects/object_hidan_objects/gFireTempleDoorFrontDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleDoorFrontDL[] = dgFireTempleDoorFrontDL; -#else -static const char gFireTempleDoorFrontDL[] __attribute__((aligned (2))) = dgFireTempleDoorFrontDL; -#endif - -#define dgFireTempleDoorBackDL "__OTR__objects/object_hidan_objects/gFireTempleDoorBackDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleDoorBackDL[] = dgFireTempleDoorBackDL; -#else -static const char gFireTempleDoorBackDL[] __attribute__((aligned (2))) = dgFireTempleDoorBackDL; -#endif - -#define dgFireTempleDoorKillerTex "__OTR__objects/object_hidan_objects/gFireTempleDoorKillerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleDoorKillerTex[] = dgFireTempleDoorKillerTex; -#else -static const char gFireTempleDoorKillerTex[] __attribute__((aligned (2))) = dgFireTempleDoorKillerTex; -#endif - -#define dobject_hidan_objectsTex_000A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_000A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_000A40[] = dobject_hidan_objectsTex_000A40; -#else -static const char object_hidan_objectsTex_000A40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_000A40; -#endif - -#define dobject_hidan_objectsTex_002A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_002A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_002A40[] = dobject_hidan_objectsTex_002A40; -#else -static const char object_hidan_objectsTex_002A40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_002A40; -#endif - -#define dobject_hidan_objectsTex_000040 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_000040" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_000040[] = dobject_hidan_objectsTex_000040; -#else -static const char object_hidan_objectsTex_000040[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_000040; -#endif - -#define dobject_hidan_objectsTLUT_000000 "__OTR__objects/object_hidan_objects/object_hidan_objectsTLUT_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTLUT_000000[] = dobject_hidan_objectsTLUT_000000; -#else -static const char object_hidan_objectsTLUT_000000[] __attribute__((aligned (2))) = dobject_hidan_objectsTLUT_000000; -#endif - -#define dobject_hidan_objectsTex_004A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_004A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_004A40[] = dobject_hidan_objectsTex_004A40; -#else -static const char object_hidan_objectsTex_004A40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_004A40; -#endif - -#define dobject_hidan_objectsTex_005640 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_005640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_005640[] = dobject_hidan_objectsTex_005640; -#else -static const char object_hidan_objectsTex_005640[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_005640; -#endif - -#define dobject_hidan_objectsTex_006640 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_006640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_006640[] = dobject_hidan_objectsTex_006640; -#else -static const char object_hidan_objectsTex_006640[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_006640; -#endif - -#define dobject_hidan_objectsTex_006A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_006A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_006A40[] = dobject_hidan_objectsTex_006A40; -#else -static const char object_hidan_objectsTex_006A40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_006A40; -#endif - -#define dobject_hidan_objectsTex_004240 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_004240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_004240[] = dobject_hidan_objectsTex_004240; -#else -static const char object_hidan_objectsTex_004240[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_004240; -#endif - -#define dobject_hidan_objectsTex_005E40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_005E40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_005E40[] = dobject_hidan_objectsTex_005E40; -#else -static const char object_hidan_objectsTex_005E40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_005E40; -#endif - -#define dobject_hidan_objectsTex_006C40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_006C40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_006C40[] = dobject_hidan_objectsTex_006C40; -#else -static const char object_hidan_objectsTex_006C40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_006C40; -#endif - -#define dobject_hidan_objectsTex_005240 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_005240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_005240[] = dobject_hidan_objectsTex_005240; -#else -static const char object_hidan_objectsTex_005240[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_005240; -#endif - -#define dobject_hidan_objectsTex_003A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_003A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_003A40[] = dobject_hidan_objectsTex_003A40; -#else -static const char object_hidan_objectsTex_003A40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_003A40; -#endif - -#define dobject_hidan_objectsTex_005A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_005A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_005A40[] = dobject_hidan_objectsTex_005A40; -#else -static const char object_hidan_objectsTex_005A40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_005A40; -#endif - -#define dobject_hidan_objectsTLUT_000020 "__OTR__objects/object_hidan_objects/object_hidan_objectsTLUT_000020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTLUT_000020[] = dobject_hidan_objectsTLUT_000020; -#else -static const char object_hidan_objectsTLUT_000020[] __attribute__((aligned (2))) = dobject_hidan_objectsTLUT_000020; -#endif - -#define dobject_hidan_objectsTex_001A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_001A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_001A40[] = dobject_hidan_objectsTex_001A40; -#else -static const char object_hidan_objectsTex_001A40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_001A40; -#endif - -#define dobject_hidan_objectsTex_000240 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_000240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_000240[] = dobject_hidan_objectsTex_000240; -#else -static const char object_hidan_objectsTex_000240[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_000240; -#endif - -#define dobject_hidan_objectsTex_006E40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_006E40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_006E40[] = dobject_hidan_objectsTex_006E40; -#else -static const char object_hidan_objectsTex_006E40[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_006E40; -#endif - -#define dobject_hidan_objectsTex_00FB20 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_00FB20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_00FB20[] = dobject_hidan_objectsTex_00FB20; -#else -static const char object_hidan_objectsTex_00FB20[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_00FB20; -#endif - -#define dobject_hidan_objectsTex_010D90 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_010D90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hidan_objectsTex_010D90[] = dobject_hidan_objectsTex_010D90; -#else -static const char object_hidan_objectsTex_010D90[] __attribute__((aligned (2))) = dobject_hidan_objectsTex_010D90; -#endif - +#include "align_asset_macro.h" + +#define dgFireTempleHammerableTotemBodyDL "__OTR__objects/object_hidan_objects/gFireTempleHammerableTotemBodyDL" +static const ALIGN_ASSET(2) char gFireTempleHammerableTotemBodyDL[] = dgFireTempleHammerableTotemBodyDL; + +#define dgFireTempleHammerableTotemHeadDL "__OTR__objects/object_hidan_objects/gFireTempleHammerableTotemHeadDL" +static const ALIGN_ASSET(2) char gFireTempleHammerableTotemHeadDL[] = dgFireTempleHammerableTotemHeadDL; + +#define dgFireTempleHammerableTotemCol "__OTR__objects/object_hidan_objects/gFireTempleHammerableTotemCol" +static const ALIGN_ASSET(2) char gFireTempleHammerableTotemCol[] = dgFireTempleHammerableTotemCol; + +#define dgFireTempleHookshotElevatorDL "__OTR__objects/object_hidan_objects/gFireTempleHookshotElevatorDL" +static const ALIGN_ASSET(2) char gFireTempleHookshotElevatorDL[] = dgFireTempleHookshotElevatorDL; + +#define dgFireTempleHookshotElevatorCol "__OTR__objects/object_hidan_objects/gFireTempleHookshotElevatorCol" +static const ALIGN_ASSET(2) char gFireTempleHookshotElevatorCol[] = dgFireTempleHookshotElevatorCol; + +#define dgFireTempleBigFireWallDL "__OTR__objects/object_hidan_objects/gFireTempleBigFireWallDL" +static const ALIGN_ASSET(2) char gFireTempleBigFireWallDL[] = dgFireTempleBigFireWallDL; + +#define dgFireTempleStoneStep1DL "__OTR__objects/object_hidan_objects/gFireTempleStoneStep1DL" +static const ALIGN_ASSET(2) char gFireTempleStoneStep1DL[] = dgFireTempleStoneStep1DL; + +#define dgFireTempleStoneStep1Col "__OTR__objects/object_hidan_objects/gFireTempleStoneStep1Col" +static const ALIGN_ASSET(2) char gFireTempleStoneStep1Col[] = dgFireTempleStoneStep1Col; + +#define dgFireTempleStoneStep2DL "__OTR__objects/object_hidan_objects/gFireTempleStoneStep2DL" +static const ALIGN_ASSET(2) char gFireTempleStoneStep2DL[] = dgFireTempleStoneStep2DL; + +#define dgFireTempleStoneStep2Col "__OTR__objects/object_hidan_objects/gFireTempleStoneStep2Col" +static const ALIGN_ASSET(2) char gFireTempleStoneStep2Col[] = dgFireTempleStoneStep2Col; + +#define dgFireTempleMetalFenceWithSlantDL "__OTR__objects/object_hidan_objects/gFireTempleMetalFenceWithSlantDL" +static const ALIGN_ASSET(2) char gFireTempleMetalFenceWithSlantDL[] = dgFireTempleMetalFenceWithSlantDL; + +#define dgFireTempleMetalFenceWithSlantCol "__OTR__objects/object_hidan_objects/gFireTempleMetalFenceWithSlantCol" +static const ALIGN_ASSET(2) char gFireTempleMetalFenceWithSlantCol[] = dgFireTempleMetalFenceWithSlantCol; + +#define dgFireTempleMetalFenceDL "__OTR__objects/object_hidan_objects/gFireTempleMetalFenceDL" +static const ALIGN_ASSET(2) char gFireTempleMetalFenceDL[] = dgFireTempleMetalFenceDL; + +#define dgFireTempleMetalFenceCol "__OTR__objects/object_hidan_objects/gFireTempleMetalFenceCol" +static const ALIGN_ASSET(2) char gFireTempleMetalFenceCol[] = dgFireTempleMetalFenceCol; + +#define dgFireTempleMetalFence2DL "__OTR__objects/object_hidan_objects/gFireTempleMetalFence2DL" +static const ALIGN_ASSET(2) char gFireTempleMetalFence2DL[] = dgFireTempleMetalFence2DL; + +#define dgFireTempleMetalFence2Col "__OTR__objects/object_hidan_objects/gFireTempleMetalFence2Col" +static const ALIGN_ASSET(2) char gFireTempleMetalFence2Col[] = dgFireTempleMetalFence2Col; + +#define dgFireTempleCrackedStoneFloorDL "__OTR__objects/object_hidan_objects/gFireTempleCrackedStoneFloorDL" +static const ALIGN_ASSET(2) char gFireTempleCrackedStoneFloorDL[] = dgFireTempleCrackedStoneFloorDL; + +#define dgFireTempleCrackedStoneFloorCol "__OTR__objects/object_hidan_objects/gFireTempleCrackedStoneFloorCol" +static const ALIGN_ASSET(2) char gFireTempleCrackedStoneFloorCol[] = dgFireTempleCrackedStoneFloorCol; + +#define dgFireTempleBombableWallDL "__OTR__objects/object_hidan_objects/gFireTempleBombableWallDL" +static const ALIGN_ASSET(2) char gFireTempleBombableWallDL[] = dgFireTempleBombableWallDL; + +#define dgFireTempleBombableWallCol "__OTR__objects/object_hidan_objects/gFireTempleBombableWallCol" +static const ALIGN_ASSET(2) char gFireTempleBombableWallCol[] = dgFireTempleBombableWallCol; + +#define dgFireTempleLargeBombableWallDL "__OTR__objects/object_hidan_objects/gFireTempleLargeBombableWallDL" +static const ALIGN_ASSET(2) char gFireTempleLargeBombableWallDL[] = dgFireTempleLargeBombableWallDL; + +#define dgFireTempleLargeBombableWallCol "__OTR__objects/object_hidan_objects/gFireTempleLargeBombableWallCol" +static const ALIGN_ASSET(2) char gFireTempleLargeBombableWallCol[] = dgFireTempleLargeBombableWallCol; + +#define dgFireTempleStoneBlock1DL "__OTR__objects/object_hidan_objects/gFireTempleStoneBlock1DL" +static const ALIGN_ASSET(2) char gFireTempleStoneBlock1DL[] = dgFireTempleStoneBlock1DL; + +#define dgFireTempleStoneBlock1Col "__OTR__objects/object_hidan_objects/gFireTempleStoneBlock1Col" +static const ALIGN_ASSET(2) char gFireTempleStoneBlock1Col[] = dgFireTempleStoneBlock1Col; + +#define dgFireTempleStoneBlock2DL "__OTR__objects/object_hidan_objects/gFireTempleStoneBlock2DL" +static const ALIGN_ASSET(2) char gFireTempleStoneBlock2DL[] = dgFireTempleStoneBlock2DL; + +#define dgFireTempleStoneBlock2Col "__OTR__objects/object_hidan_objects/gFireTempleStoneBlock2Col" +static const ALIGN_ASSET(2) char gFireTempleStoneBlock2Col[] = dgFireTempleStoneBlock2Col; + +#define dgFireTempleBigVerticalFlameDL "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlameDL" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlameDL[] = dgFireTempleBigVerticalFlameDL; + +#define dgFireTempleBigVerticalFlame0Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame0Tex" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlame0Tex[] = dgFireTempleBigVerticalFlame0Tex; + +#define dgFireTempleBigVerticalFlame1Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame1Tex" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlame1Tex[] = dgFireTempleBigVerticalFlame1Tex; + +#define dgFireTempleBigVerticalFlame2Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame2Tex" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlame2Tex[] = dgFireTempleBigVerticalFlame2Tex; + +#define dgFireTempleBigVerticalFlame3Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame3Tex" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlame3Tex[] = dgFireTempleBigVerticalFlame3Tex; + +#define dgFireTempleBigVerticalFlame4Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame4Tex" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlame4Tex[] = dgFireTempleBigVerticalFlame4Tex; + +#define dgFireTempleBigVerticalFlame5Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame5Tex" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlame5Tex[] = dgFireTempleBigVerticalFlame5Tex; + +#define dgFireTempleBigVerticalFlame6Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame6Tex" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlame6Tex[] = dgFireTempleBigVerticalFlame6Tex; + +#define dgFireTempleBigVerticalFlame7Tex "__OTR__objects/object_hidan_objects/gFireTempleBigVerticalFlame7Tex" +static const ALIGN_ASSET(2) char gFireTempleBigVerticalFlame7Tex[] = dgFireTempleBigVerticalFlame7Tex; + +#define dgFireTempleFireballDL "__OTR__objects/object_hidan_objects/gFireTempleFireballDL" +static const ALIGN_ASSET(2) char gFireTempleFireballDL[] = dgFireTempleFireballDL; + +#define dgFireTempleFireballUpperHalfDL "__OTR__objects/object_hidan_objects/gFireTempleFireballUpperHalfDL" +static const ALIGN_ASSET(2) char gFireTempleFireballUpperHalfDL[] = dgFireTempleFireballUpperHalfDL; + +#define dgFireTempleFireball0Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball0Tex" +static const ALIGN_ASSET(2) char gFireTempleFireball0Tex[] = dgFireTempleFireball0Tex; + +#define dgFireTempleFireball1Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball1Tex" +static const ALIGN_ASSET(2) char gFireTempleFireball1Tex[] = dgFireTempleFireball1Tex; + +#define dgFireTempleFireball2Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball2Tex" +static const ALIGN_ASSET(2) char gFireTempleFireball2Tex[] = dgFireTempleFireball2Tex; + +#define dgFireTempleFireball3Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball3Tex" +static const ALIGN_ASSET(2) char gFireTempleFireball3Tex[] = dgFireTempleFireball3Tex; + +#define dgFireTempleFireball4Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball4Tex" +static const ALIGN_ASSET(2) char gFireTempleFireball4Tex[] = dgFireTempleFireball4Tex; + +#define dgFireTempleFireball5Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball5Tex" +static const ALIGN_ASSET(2) char gFireTempleFireball5Tex[] = dgFireTempleFireball5Tex; + +#define dgFireTempleFireball6Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball6Tex" +static const ALIGN_ASSET(2) char gFireTempleFireball6Tex[] = dgFireTempleFireball6Tex; + +#define dgFireTempleFireball7Tex "__OTR__objects/object_hidan_objects/gFireTempleFireball7Tex" +static const ALIGN_ASSET(2) char gFireTempleFireball7Tex[] = dgFireTempleFireball7Tex; + +#define dgFireTempleSpinningFlamethrowerDL "__OTR__objects/object_hidan_objects/gFireTempleSpinningFlamethrowerDL" +static const ALIGN_ASSET(2) char gFireTempleSpinningFlamethrowerDL[] = dgFireTempleSpinningFlamethrowerDL; + +#define dgFireTempleSpinningFlamethrowerCol "__OTR__objects/object_hidan_objects/gFireTempleSpinningFlamethrowerCol" +static const ALIGN_ASSET(2) char gFireTempleSpinningFlamethrowerCol[] = dgFireTempleSpinningFlamethrowerCol; + +#define dgFireTempleStationaryFlamethrowerShortDL "__OTR__objects/object_hidan_objects/gFireTempleStationaryFlamethrowerShortDL" +static const ALIGN_ASSET(2) char gFireTempleStationaryFlamethrowerShortDL[] = dgFireTempleStationaryFlamethrowerShortDL; + +#define dgFireTempleStationaryFlamethrowerShortCol "__OTR__objects/object_hidan_objects/gFireTempleStationaryFlamethrowerShortCol" +static const ALIGN_ASSET(2) char gFireTempleStationaryFlamethrowerShortCol[] = dgFireTempleStationaryFlamethrowerShortCol; + +#define dgFireTempleStationaryFlamethrowerTallDL "__OTR__objects/object_hidan_objects/gFireTempleStationaryFlamethrowerTallDL" +static const ALIGN_ASSET(2) char gFireTempleStationaryFlamethrowerTallDL[] = dgFireTempleStationaryFlamethrowerTallDL; + +#define dgFireTempleStationaryFlamethrowerTallCol "__OTR__objects/object_hidan_objects/gFireTempleStationaryFlamethrowerTallCol" +static const ALIGN_ASSET(2) char gFireTempleStationaryFlamethrowerTallCol[] = dgFireTempleStationaryFlamethrowerTallCol; + +#define dgFireTempleStonePlatform1DL "__OTR__objects/object_hidan_objects/gFireTempleStonePlatform1DL" +static const ALIGN_ASSET(2) char gFireTempleStonePlatform1DL[] = dgFireTempleStonePlatform1DL; + +#define dgFireTempleStonePlatform1Col "__OTR__objects/object_hidan_objects/gFireTempleStonePlatform1Col" +static const ALIGN_ASSET(2) char gFireTempleStonePlatform1Col[] = dgFireTempleStonePlatform1Col; + +#define dgFireTempleStonePlatform2DL "__OTR__objects/object_hidan_objects/gFireTempleStonePlatform2DL" +static const ALIGN_ASSET(2) char gFireTempleStonePlatform2DL[] = dgFireTempleStonePlatform2DL; + +#define dgFireTempleStonePlatform2Col "__OTR__objects/object_hidan_objects/gFireTempleStonePlatform2Col" +static const ALIGN_ASSET(2) char gFireTempleStonePlatform2Col[] = dgFireTempleStonePlatform2Col; + +#define dgFireTempleFlareDancerPlatformDL "__OTR__objects/object_hidan_objects/gFireTempleFlareDancerPlatformDL" +static const ALIGN_ASSET(2) char gFireTempleFlareDancerPlatformDL[] = dgFireTempleFlareDancerPlatformDL; + +#define dgFireTempleFlareDancerPlatformCol "__OTR__objects/object_hidan_objects/gFireTempleFlareDancerPlatformCol" +static const ALIGN_ASSET(2) char gFireTempleFlareDancerPlatformCol[] = dgFireTempleFlareDancerPlatformCol; + +#define dgFireTempleTallestPillarAboveRoomBeforeBossDL "__OTR__objects/object_hidan_objects/gFireTempleTallestPillarAboveRoomBeforeBossDL" +static const ALIGN_ASSET(2) char gFireTempleTallestPillarAboveRoomBeforeBossDL[] = dgFireTempleTallestPillarAboveRoomBeforeBossDL; + +#define dgFireTempleTallestPillarAboveRoomBeforeBossCol "__OTR__objects/object_hidan_objects/gFireTempleTallestPillarAboveRoomBeforeBossCol" +static const ALIGN_ASSET(2) char gFireTempleTallestPillarAboveRoomBeforeBossCol[] = dgFireTempleTallestPillarAboveRoomBeforeBossCol; + +#define dgFireTemplePillarInsertedInGroundDL "__OTR__objects/object_hidan_objects/gFireTemplePillarInsertedInGroundDL" +static const ALIGN_ASSET(2) char gFireTemplePillarInsertedInGroundDL[] = dgFireTemplePillarInsertedInGroundDL; + +#define dgFireTemplePillarInsertedInGroundCol "__OTR__objects/object_hidan_objects/gFireTemplePillarInsertedInGroundCol" +static const ALIGN_ASSET(2) char gFireTemplePillarInsertedInGroundCol[] = dgFireTemplePillarInsertedInGroundCol; + +#define dgFireTempleBombableDoorFrameDL "__OTR__objects/object_hidan_objects/gFireTempleBombableDoorFrameDL" +static const ALIGN_ASSET(2) char gFireTempleBombableDoorFrameDL[] = dgFireTempleBombableDoorFrameDL; + +#define dgFireTempleDoorWithHandleRightDL "__OTR__objects/object_hidan_objects/gFireTempleDoorWithHandleRightDL" +static const ALIGN_ASSET(2) char gFireTempleDoorWithHandleRightDL[] = dgFireTempleDoorWithHandleRightDL; + +#define dgFireTempleDoorWithHandleLeftDL "__OTR__objects/object_hidan_objects/gFireTempleDoorWithHandleLeftDL" +static const ALIGN_ASSET(2) char gFireTempleDoorWithHandleLeftDL[] = dgFireTempleDoorWithHandleLeftDL; + +#define dgFireTempleDoorFrontDL "__OTR__objects/object_hidan_objects/gFireTempleDoorFrontDL" +static const ALIGN_ASSET(2) char gFireTempleDoorFrontDL[] = dgFireTempleDoorFrontDL; + +#define dgFireTempleDoorBackDL "__OTR__objects/object_hidan_objects/gFireTempleDoorBackDL" +static const ALIGN_ASSET(2) char gFireTempleDoorBackDL[] = dgFireTempleDoorBackDL; + +#define dgFireTempleDoorKillerTex "__OTR__objects/object_hidan_objects/gFireTempleDoorKillerTex" +static const ALIGN_ASSET(2) char gFireTempleDoorKillerTex[] = dgFireTempleDoorKillerTex; + +#define dobject_hidan_objectsTex_000A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_000A40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_000A40[] = dobject_hidan_objectsTex_000A40; + +#define dobject_hidan_objectsTex_002A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_002A40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_002A40[] = dobject_hidan_objectsTex_002A40; + +#define dobject_hidan_objectsTex_000040 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_000040" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_000040[] = dobject_hidan_objectsTex_000040; + +#define dobject_hidan_objectsTLUT_000000 "__OTR__objects/object_hidan_objects/object_hidan_objectsTLUT_000000" +static const ALIGN_ASSET(2) char object_hidan_objectsTLUT_000000[] = dobject_hidan_objectsTLUT_000000; + +#define dobject_hidan_objectsTex_004A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_004A40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_004A40[] = dobject_hidan_objectsTex_004A40; + +#define dobject_hidan_objectsTex_005640 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_005640" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_005640[] = dobject_hidan_objectsTex_005640; + +#define dobject_hidan_objectsTex_006640 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_006640" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_006640[] = dobject_hidan_objectsTex_006640; + +#define dobject_hidan_objectsTex_006A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_006A40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_006A40[] = dobject_hidan_objectsTex_006A40; + +#define dobject_hidan_objectsTex_004240 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_004240" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_004240[] = dobject_hidan_objectsTex_004240; + +#define dobject_hidan_objectsTex_005E40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_005E40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_005E40[] = dobject_hidan_objectsTex_005E40; + +#define dobject_hidan_objectsTex_006C40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_006C40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_006C40[] = dobject_hidan_objectsTex_006C40; + +#define dobject_hidan_objectsTex_005240 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_005240" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_005240[] = dobject_hidan_objectsTex_005240; + +#define dobject_hidan_objectsTex_003A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_003A40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_003A40[] = dobject_hidan_objectsTex_003A40; + +#define dobject_hidan_objectsTex_005A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_005A40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_005A40[] = dobject_hidan_objectsTex_005A40; + +#define dobject_hidan_objectsTLUT_000020 "__OTR__objects/object_hidan_objects/object_hidan_objectsTLUT_000020" +static const ALIGN_ASSET(2) char object_hidan_objectsTLUT_000020[] = dobject_hidan_objectsTLUT_000020; + +#define dobject_hidan_objectsTex_001A40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_001A40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_001A40[] = dobject_hidan_objectsTex_001A40; + +#define dobject_hidan_objectsTex_000240 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_000240" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_000240[] = dobject_hidan_objectsTex_000240; + +#define dobject_hidan_objectsTex_006E40 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_006E40" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_006E40[] = dobject_hidan_objectsTex_006E40; + +#define dobject_hidan_objectsTex_00FB20 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_00FB20" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_00FB20[] = dobject_hidan_objectsTex_00FB20; + +#define dobject_hidan_objectsTex_010D90 "__OTR__objects/object_hidan_objects/object_hidan_objectsTex_010D90" +static const ALIGN_ASSET(2) char object_hidan_objectsTex_010D90[] = dobject_hidan_objectsTex_010D90; \ No newline at end of file diff --git a/soh/assets/objects/object_hintnuts/object_hintnuts.h b/soh/assets/objects/object_hintnuts/object_hintnuts.h index 2e2247c1e..1eb5ac6d0 100644 --- a/soh/assets/objects/object_hintnuts/object_hintnuts.h +++ b/soh/assets/objects/object_hintnuts/object_hintnuts.h @@ -1,191 +1,84 @@ #pragma once -#define dgHintNutsSkel "__OTR__objects/object_hintnuts/gHintNutsSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkel[] = dgHintNutsSkel; -#else -static const char gHintNutsSkel[] __attribute__((aligned (2))) = dgHintNutsSkel; -#endif - -#define dgHintNutsSpitAnim "__OTR__objects/object_hintnuts/gHintNutsSpitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSpitAnim[] = dgHintNutsSpitAnim; -#else -static const char gHintNutsSpitAnim[] __attribute__((aligned (2))) = dgHintNutsSpitAnim; -#endif - -#define dgHintNutsBurrowAnim "__OTR__objects/object_hintnuts/gHintNutsBurrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsBurrowAnim[] = dgHintNutsBurrowAnim; -#else -static const char gHintNutsBurrowAnim[] __attribute__((aligned (2))) = dgHintNutsBurrowAnim; -#endif - -#define dgHintNutsUnburrowAnim "__OTR__objects/object_hintnuts/gHintNutsUnburrowAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsUnburrowAnim[] = dgHintNutsUnburrowAnim; -#else -static const char gHintNutsUnburrowAnim[] __attribute__((aligned (2))) = dgHintNutsUnburrowAnim; -#endif - -#define dgHintNutsUpAnim "__OTR__objects/object_hintnuts/gHintNutsUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsUpAnim[] = dgHintNutsUpAnim; -#else -static const char gHintNutsUpAnim[] __attribute__((aligned (2))) = dgHintNutsUpAnim; -#endif - -#define dgHintNutsLookAroundAnim "__OTR__objects/object_hintnuts/gHintNutsLookAroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsLookAroundAnim[] = dgHintNutsLookAroundAnim; -#else -static const char gHintNutsLookAroundAnim[] __attribute__((aligned (2))) = dgHintNutsLookAroundAnim; -#endif - -#define dgHintNutsFreezeAnim "__OTR__objects/object_hintnuts/gHintNutsFreezeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsFreezeAnim[] = dgHintNutsFreezeAnim; -#else -static const char gHintNutsFreezeAnim[] __attribute__((aligned (2))) = dgHintNutsFreezeAnim; -#endif - -#define dgHintNutsTalkAnim "__OTR__objects/object_hintnuts/gHintNutsTalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsTalkAnim[] = dgHintNutsTalkAnim; -#else -static const char gHintNutsTalkAnim[] __attribute__((aligned (2))) = dgHintNutsTalkAnim; -#endif - -#define dgHintNutsStandAnim "__OTR__objects/object_hintnuts/gHintNutsStandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsStandAnim[] = dgHintNutsStandAnim; -#else -static const char gHintNutsStandAnim[] __attribute__((aligned (2))) = dgHintNutsStandAnim; -#endif - -#define dgHintNutsRunAnim "__OTR__objects/object_hintnuts/gHintNutsRunAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsRunAnim[] = dgHintNutsRunAnim; -#else -static const char gHintNutsRunAnim[] __attribute__((aligned (2))) = dgHintNutsRunAnim; -#endif - -#define dgHintNutsFlowerDL "__OTR__objects/object_hintnuts/gHintNutsFlowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsFlowerDL[] = dgHintNutsFlowerDL; -#else -static const char gHintNutsFlowerDL[] __attribute__((aligned (2))) = dgHintNutsFlowerDL; -#endif - -#define dgHintNutsNutDL "__OTR__objects/object_hintnuts/gHintNutsNutDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsNutDL[] = dgHintNutsNutDL; -#else -static const char gHintNutsNutDL[] __attribute__((aligned (2))) = dgHintNutsNutDL; -#endif - -#define dgHintNutsSkelLimbsLimb_002328DL_000C68 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002328DL_000C68" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_002328DL_000C68[] = dgHintNutsSkelLimbsLimb_002328DL_000C68; -#else -static const char gHintNutsSkelLimbsLimb_002328DL_000C68[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_002328DL_000C68; -#endif - -#define dgHintNutsSkelLimbsLimb_002334DL_000B30 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002334DL_000B30" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_002334DL_000B30[] = dgHintNutsSkelLimbsLimb_002334DL_000B30; -#else -static const char gHintNutsSkelLimbsLimb_002334DL_000B30[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_002334DL_000B30; -#endif - -#define dgHintNutsSkelLimbsLimb_002340DL_0010C8 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002340DL_0010C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_002340DL_0010C8[] = dgHintNutsSkelLimbsLimb_002340DL_0010C8; -#else -static const char gHintNutsSkelLimbsLimb_002340DL_0010C8[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_002340DL_0010C8; -#endif - -#define dgHintNutsSkelLimbsLimb_00234CDL_001208 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_00234CDL_001208" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_00234CDL_001208[] = dgHintNutsSkelLimbsLimb_00234CDL_001208; -#else -static const char gHintNutsSkelLimbsLimb_00234CDL_001208[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_00234CDL_001208; -#endif - -#define dgHintNutsSkelLimbsLimb_002358DL_000D10 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002358DL_000D10" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_002358DL_000D10[] = dgHintNutsSkelLimbsLimb_002358DL_000D10; -#else -static const char gHintNutsSkelLimbsLimb_002358DL_000D10[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_002358DL_000D10; -#endif - -#define dgHintNutsSkelLimbsLimb_002364DL_001028 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002364DL_001028" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_002364DL_001028[] = dgHintNutsSkelLimbsLimb_002364DL_001028; -#else -static const char gHintNutsSkelLimbsLimb_002364DL_001028[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_002364DL_001028; -#endif - -#define dgHintNutsSkelLimbsLimb_002370DL_000F78 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002370DL_000F78" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_002370DL_000F78[] = dgHintNutsSkelLimbsLimb_002370DL_000F78; -#else -static const char gHintNutsSkelLimbsLimb_002370DL_000F78[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_002370DL_000F78; -#endif - -#define dgHintNutsSkelLimbsLimb_00237CDL_000E28 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_00237CDL_000E28" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_00237CDL_000E28[] = dgHintNutsSkelLimbsLimb_00237CDL_000E28; -#else -static const char gHintNutsSkelLimbsLimb_00237CDL_000E28[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_00237CDL_000E28; -#endif - -#define dgHintNutsSkelLimbsLimb_002388DL_000EC8 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002388DL_000EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHintNutsSkelLimbsLimb_002388DL_000EC8[] = dgHintNutsSkelLimbsLimb_002388DL_000EC8; -#else -static const char gHintNutsSkelLimbsLimb_002388DL_000EC8[] __attribute__((aligned (2))) = dgHintNutsSkelLimbsLimb_002388DL_000EC8; -#endif - -#define dobject_hintnutsTex_0015A8 "__OTR__objects/object_hintnuts/object_hintnutsTex_0015A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hintnutsTex_0015A8[] = dobject_hintnutsTex_0015A8; -#else -static const char object_hintnutsTex_0015A8[] __attribute__((aligned (2))) = dobject_hintnutsTex_0015A8; -#endif - -#define dobject_hintnutsTex_002128 "__OTR__objects/object_hintnuts/object_hintnutsTex_002128" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hintnutsTex_002128[] = dobject_hintnutsTex_002128; -#else -static const char object_hintnutsTex_002128[] __attribute__((aligned (2))) = dobject_hintnutsTex_002128; -#endif - -#define dobject_hintnutsTex_001DA8 "__OTR__objects/object_hintnuts/object_hintnutsTex_001DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hintnutsTex_001DA8[] = dobject_hintnutsTex_001DA8; -#else -static const char object_hintnutsTex_001DA8[] __attribute__((aligned (2))) = dobject_hintnutsTex_001DA8; -#endif - -#define dobject_hintnutsTex_001FA8 "__OTR__objects/object_hintnuts/object_hintnutsTex_001FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hintnutsTex_001FA8[] = dobject_hintnutsTex_001FA8; -#else -static const char object_hintnutsTex_001FA8[] __attribute__((aligned (2))) = dobject_hintnutsTex_001FA8; -#endif - -#define dobject_hintnutsTex_002028 "__OTR__objects/object_hintnuts/object_hintnutsTex_002028" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hintnutsTex_002028[] = dobject_hintnutsTex_002028; -#else -static const char object_hintnutsTex_002028[] __attribute__((aligned (2))) = dobject_hintnutsTex_002028; -#endif - -#define dobject_hintnutsTex_0020A8 "__OTR__objects/object_hintnuts/object_hintnutsTex_0020A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hintnutsTex_0020A8[] = dobject_hintnutsTex_0020A8; -#else -static const char object_hintnutsTex_0020A8[] __attribute__((aligned (2))) = dobject_hintnutsTex_0020A8; -#endif - +#include "align_asset_macro.h" + +#define dgHintNutsSkel "__OTR__objects/object_hintnuts/gHintNutsSkel" +static const ALIGN_ASSET(2) char gHintNutsSkel[] = dgHintNutsSkel; + +#define dgHintNutsSpitAnim "__OTR__objects/object_hintnuts/gHintNutsSpitAnim" +static const ALIGN_ASSET(2) char gHintNutsSpitAnim[] = dgHintNutsSpitAnim; + +#define dgHintNutsBurrowAnim "__OTR__objects/object_hintnuts/gHintNutsBurrowAnim" +static const ALIGN_ASSET(2) char gHintNutsBurrowAnim[] = dgHintNutsBurrowAnim; + +#define dgHintNutsUnburrowAnim "__OTR__objects/object_hintnuts/gHintNutsUnburrowAnim" +static const ALIGN_ASSET(2) char gHintNutsUnburrowAnim[] = dgHintNutsUnburrowAnim; + +#define dgHintNutsUpAnim "__OTR__objects/object_hintnuts/gHintNutsUpAnim" +static const ALIGN_ASSET(2) char gHintNutsUpAnim[] = dgHintNutsUpAnim; + +#define dgHintNutsLookAroundAnim "__OTR__objects/object_hintnuts/gHintNutsLookAroundAnim" +static const ALIGN_ASSET(2) char gHintNutsLookAroundAnim[] = dgHintNutsLookAroundAnim; + +#define dgHintNutsFreezeAnim "__OTR__objects/object_hintnuts/gHintNutsFreezeAnim" +static const ALIGN_ASSET(2) char gHintNutsFreezeAnim[] = dgHintNutsFreezeAnim; + +#define dgHintNutsTalkAnim "__OTR__objects/object_hintnuts/gHintNutsTalkAnim" +static const ALIGN_ASSET(2) char gHintNutsTalkAnim[] = dgHintNutsTalkAnim; + +#define dgHintNutsStandAnim "__OTR__objects/object_hintnuts/gHintNutsStandAnim" +static const ALIGN_ASSET(2) char gHintNutsStandAnim[] = dgHintNutsStandAnim; + +#define dgHintNutsRunAnim "__OTR__objects/object_hintnuts/gHintNutsRunAnim" +static const ALIGN_ASSET(2) char gHintNutsRunAnim[] = dgHintNutsRunAnim; + +#define dgHintNutsFlowerDL "__OTR__objects/object_hintnuts/gHintNutsFlowerDL" +static const ALIGN_ASSET(2) char gHintNutsFlowerDL[] = dgHintNutsFlowerDL; + +#define dgHintNutsNutDL "__OTR__objects/object_hintnuts/gHintNutsNutDL" +static const ALIGN_ASSET(2) char gHintNutsNutDL[] = dgHintNutsNutDL; + +#define dgHintNutsSkelLimbsLimb_002328DL_000C68 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002328DL_000C68" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_002328DL_000C68[] = dgHintNutsSkelLimbsLimb_002328DL_000C68; + +#define dgHintNutsSkelLimbsLimb_002334DL_000B30 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002334DL_000B30" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_002334DL_000B30[] = dgHintNutsSkelLimbsLimb_002334DL_000B30; + +#define dgHintNutsSkelLimbsLimb_002340DL_0010C8 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002340DL_0010C8" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_002340DL_0010C8[] = dgHintNutsSkelLimbsLimb_002340DL_0010C8; + +#define dgHintNutsSkelLimbsLimb_00234CDL_001208 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_00234CDL_001208" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_00234CDL_001208[] = dgHintNutsSkelLimbsLimb_00234CDL_001208; + +#define dgHintNutsSkelLimbsLimb_002358DL_000D10 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002358DL_000D10" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_002358DL_000D10[] = dgHintNutsSkelLimbsLimb_002358DL_000D10; + +#define dgHintNutsSkelLimbsLimb_002364DL_001028 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002364DL_001028" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_002364DL_001028[] = dgHintNutsSkelLimbsLimb_002364DL_001028; + +#define dgHintNutsSkelLimbsLimb_002370DL_000F78 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002370DL_000F78" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_002370DL_000F78[] = dgHintNutsSkelLimbsLimb_002370DL_000F78; + +#define dgHintNutsSkelLimbsLimb_00237CDL_000E28 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_00237CDL_000E28" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_00237CDL_000E28[] = dgHintNutsSkelLimbsLimb_00237CDL_000E28; + +#define dgHintNutsSkelLimbsLimb_002388DL_000EC8 "__OTR__objects/object_hintnuts/gHintNutsSkelLimbsLimb_002388DL_000EC8" +static const ALIGN_ASSET(2) char gHintNutsSkelLimbsLimb_002388DL_000EC8[] = dgHintNutsSkelLimbsLimb_002388DL_000EC8; + +#define dobject_hintnutsTex_0015A8 "__OTR__objects/object_hintnuts/object_hintnutsTex_0015A8" +static const ALIGN_ASSET(2) char object_hintnutsTex_0015A8[] = dobject_hintnutsTex_0015A8; + +#define dobject_hintnutsTex_002128 "__OTR__objects/object_hintnuts/object_hintnutsTex_002128" +static const ALIGN_ASSET(2) char object_hintnutsTex_002128[] = dobject_hintnutsTex_002128; + +#define dobject_hintnutsTex_001DA8 "__OTR__objects/object_hintnuts/object_hintnutsTex_001DA8" +static const ALIGN_ASSET(2) char object_hintnutsTex_001DA8[] = dobject_hintnutsTex_001DA8; + +#define dobject_hintnutsTex_001FA8 "__OTR__objects/object_hintnuts/object_hintnutsTex_001FA8" +static const ALIGN_ASSET(2) char object_hintnutsTex_001FA8[] = dobject_hintnutsTex_001FA8; + +#define dobject_hintnutsTex_002028 "__OTR__objects/object_hintnuts/object_hintnutsTex_002028" +static const ALIGN_ASSET(2) char object_hintnutsTex_002028[] = dobject_hintnutsTex_002028; + +#define dobject_hintnutsTex_0020A8 "__OTR__objects/object_hintnuts/object_hintnutsTex_0020A8" +static const ALIGN_ASSET(2) char object_hintnutsTex_0020A8[] = dobject_hintnutsTex_0020A8; \ No newline at end of file diff --git a/soh/assets/objects/object_hni/object_hni.h b/soh/assets/objects/object_hni/object_hni.h index cd8dc9684..7f4c9d06f 100644 --- a/soh/assets/objects/object_hni/object_hni.h +++ b/soh/assets/objects/object_hni/object_hni.h @@ -1,268 +1,117 @@ #pragma once -#define dgHorseIngoSkel "__OTR__objects/object_hni/gHorseIngoSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSkel[] = dgHorseIngoSkel; -#else -static const char gHorseIngoSkel[] __attribute__((aligned (2))) = dgHorseIngoSkel; -#endif - -#define dgHorseIngoIdleAnim "__OTR__objects/object_hni/gHorseIngoIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoIdleAnim[] = dgHorseIngoIdleAnim; -#else -static const char gHorseIngoIdleAnim[] __attribute__((aligned (2))) = dgHorseIngoIdleAnim; -#endif - -#define dgHorseIngoWhinnyAnim "__OTR__objects/object_hni/gHorseIngoWhinnyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoWhinnyAnim[] = dgHorseIngoWhinnyAnim; -#else -static const char gHorseIngoWhinnyAnim[] __attribute__((aligned (2))) = dgHorseIngoWhinnyAnim; -#endif - -#define dgHorseIngoRefuseAnim "__OTR__objects/object_hni/gHorseIngoRefuseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoRefuseAnim[] = dgHorseIngoRefuseAnim; -#else -static const char gHorseIngoRefuseAnim[] __attribute__((aligned (2))) = dgHorseIngoRefuseAnim; -#endif - -#define dgHorseIngoRearingAnim "__OTR__objects/object_hni/gHorseIngoRearingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoRearingAnim[] = dgHorseIngoRearingAnim; -#else -static const char gHorseIngoRearingAnim[] __attribute__((aligned (2))) = dgHorseIngoRearingAnim; -#endif - -#define dgHorseIngoWalkingAnim "__OTR__objects/object_hni/gHorseIngoWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoWalkingAnim[] = dgHorseIngoWalkingAnim; -#else -static const char gHorseIngoWalkingAnim[] __attribute__((aligned (2))) = dgHorseIngoWalkingAnim; -#endif - -#define dgHorseIngoTrottingAnim "__OTR__objects/object_hni/gHorseIngoTrottingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoTrottingAnim[] = dgHorseIngoTrottingAnim; -#else -static const char gHorseIngoTrottingAnim[] __attribute__((aligned (2))) = dgHorseIngoTrottingAnim; -#endif - -#define dgHorseIngoGallopingAnim "__OTR__objects/object_hni/gHorseIngoGallopingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoGallopingAnim[] = dgHorseIngoGallopingAnim; -#else -static const char gHorseIngoGallopingAnim[] __attribute__((aligned (2))) = dgHorseIngoGallopingAnim; -#endif - -#define dgHorseIngoJumpingAnim "__OTR__objects/object_hni/gHorseIngoJumpingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoJumpingAnim[] = dgHorseIngoJumpingAnim; -#else -static const char gHorseIngoJumpingAnim[] __attribute__((aligned (2))) = dgHorseIngoJumpingAnim; -#endif - -#define dgHorseIngoJumpingHighAnim "__OTR__objects/object_hni/gHorseIngoJumpingHighAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoJumpingHighAnim[] = dgHorseIngoJumpingHighAnim; -#else -static const char gHorseIngoJumpingHighAnim[] __attribute__((aligned (2))) = dgHorseIngoJumpingHighAnim; -#endif - -#define dgHorseIngoManeTex "__OTR__objects/object_hni/gHorseIngoManeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoManeTex[] = dgHorseIngoManeTex; -#else -static const char gHorseIngoManeTex[] __attribute__((aligned (2))) = dgHorseIngoManeTex; -#endif - -#define dgHorseIngoNostrilsTex "__OTR__objects/object_hni/gHorseIngoNostrilsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoNostrilsTex[] = dgHorseIngoNostrilsTex; -#else -static const char gHorseIngoNostrilsTex[] __attribute__((aligned (2))) = dgHorseIngoNostrilsTex; -#endif - -#define dgHorseIngoNoseTex "__OTR__objects/object_hni/gHorseIngoNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoNoseTex[] = dgHorseIngoNoseTex; -#else -static const char gHorseIngoNoseTex[] __attribute__((aligned (2))) = dgHorseIngoNoseTex; -#endif - -#define dgHorseIngoForeheadTex "__OTR__objects/object_hni/gHorseIngoForeheadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoForeheadTex[] = dgHorseIngoForeheadTex; -#else -static const char gHorseIngoForeheadTex[] __attribute__((aligned (2))) = dgHorseIngoForeheadTex; -#endif - -#define dgHorseIngoNeckTex "__OTR__objects/object_hni/gHorseIngoNeckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoNeckTex[] = dgHorseIngoNeckTex; -#else -static const char gHorseIngoNeckTex[] __attribute__((aligned (2))) = dgHorseIngoNeckTex; -#endif - -#define dgHorseIngoThighTex "__OTR__objects/object_hni/gHorseIngoThighTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoThighTex[] = dgHorseIngoThighTex; -#else -static const char gHorseIngoThighTex[] __attribute__((aligned (2))) = dgHorseIngoThighTex; -#endif - -#define dgHorseIngoShoulderTex "__OTR__objects/object_hni/gHorseIngoShoulderTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoShoulderTex[] = dgHorseIngoShoulderTex; -#else -static const char gHorseIngoShoulderTex[] __attribute__((aligned (2))) = dgHorseIngoShoulderTex; -#endif - -#define dgHorseIngoSaddleGirthTex "__OTR__objects/object_hni/gHorseIngoSaddleGirthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSaddleGirthTex[] = dgHorseIngoSaddleGirthTex; -#else -static const char gHorseIngoSaddleGirthTex[] __attribute__((aligned (2))) = dgHorseIngoSaddleGirthTex; -#endif - -#define dgHorseIngoSaddlePadTex "__OTR__objects/object_hni/gHorseIngoSaddlePadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSaddlePadTex[] = dgHorseIngoSaddlePadTex; -#else -static const char gHorseIngoSaddlePadTex[] __attribute__((aligned (2))) = dgHorseIngoSaddlePadTex; -#endif - -#define dgHorseIngoSaddleTex "__OTR__objects/object_hni/gHorseIngoSaddleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSaddleTex[] = dgHorseIngoSaddleTex; -#else -static const char gHorseIngoSaddleTex[] __attribute__((aligned (2))) = dgHorseIngoSaddleTex; -#endif - -#define dgHorseIngoSaddleFlapTex "__OTR__objects/object_hni/gHorseIngoSaddleFlapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSaddleFlapTex[] = dgHorseIngoSaddleFlapTex; -#else -static const char gHorseIngoSaddleFlapTex[] __attribute__((aligned (2))) = dgHorseIngoSaddleFlapTex; -#endif - -#define dgHorseIngoHorseshoeTex "__OTR__objects/object_hni/gHorseIngoHorseshoeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoHorseshoeTex[] = dgHorseIngoHorseshoeTex; -#else -static const char gHorseIngoHorseshoeTex[] __attribute__((aligned (2))) = dgHorseIngoHorseshoeTex; -#endif - -#define dgHorseIngoFeatheringTex "__OTR__objects/object_hni/gHorseIngoFeatheringTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoFeatheringTex[] = dgHorseIngoFeatheringTex; -#else -static const char gHorseIngoFeatheringTex[] __attribute__((aligned (2))) = dgHorseIngoFeatheringTex; -#endif - -#define dgHorseIngoGerudoSaddleDL "__OTR__objects/object_hni/gHorseIngoGerudoSaddleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoGerudoSaddleDL[] = dgHorseIngoGerudoSaddleDL; -#else -static const char gHorseIngoGerudoSaddleDL[] __attribute__((aligned (2))) = dgHorseIngoGerudoSaddleDL; -#endif - -#define dgHorseIngoGerudoSaddleTex "__OTR__objects/object_hni/gHorseIngoGerudoSaddleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoGerudoSaddleTex[] = dgHorseIngoGerudoSaddleTex; -#else -static const char gHorseIngoGerudoSaddleTex[] __attribute__((aligned (2))) = dgHorseIngoGerudoSaddleTex; -#endif - -#define dgHorseIngoGerudoSaddleFlapTex "__OTR__objects/object_hni/gHorseIngoGerudoSaddleFlapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoGerudoSaddleFlapTex[] = dgHorseIngoGerudoSaddleFlapTex; -#else -static const char gHorseIngoGerudoSaddleFlapTex[] __attribute__((aligned (2))) = dgHorseIngoGerudoSaddleFlapTex; -#endif - -#define dgHorseIngoEyeTex "__OTR__objects/object_hni/gHorseIngoEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoEyeTex[] = dgHorseIngoEyeTex; -#else -static const char gHorseIngoEyeTex[] __attribute__((aligned (2))) = dgHorseIngoEyeTex; -#endif - -#define dgHorseIngoSkelLimbsLimb_0047C8DL_002110 "__OTR__objects/object_hni/gHorseIngoSkelLimbsLimb_0047C8DL_002110" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSkelLimbsLimb_0047C8DL_002110[] = dgHorseIngoSkelLimbsLimb_0047C8DL_002110; -#else -static const char gHorseIngoSkelLimbsLimb_0047C8DL_002110[] __attribute__((aligned (2))) = dgHorseIngoSkelLimbsLimb_0047C8DL_002110; -#endif - -#define dgHorseIngoSkelLimbsLimb_004848DL_001C90 "__OTR__objects/object_hni/gHorseIngoSkelLimbsLimb_004848DL_001C90" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSkelLimbsLimb_004848DL_001C90[] = dgHorseIngoSkelLimbsLimb_004848DL_001C90; -#else -static const char gHorseIngoSkelLimbsLimb_004848DL_001C90[] __attribute__((aligned (2))) = dgHorseIngoSkelLimbsLimb_004848DL_001C90; -#endif - -#define dgHorseIngoSkelLimbsLimb_0048D8DL_001F90 "__OTR__objects/object_hni/gHorseIngoSkelLimbsLimb_0048D8DL_001F90" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSkelLimbsLimb_0048D8DL_001F90[] = dgHorseIngoSkelLimbsLimb_0048D8DL_001F90; -#else -static const char gHorseIngoSkelLimbsLimb_0048D8DL_001F90[] __attribute__((aligned (2))) = dgHorseIngoSkelLimbsLimb_0048D8DL_001F90; -#endif - -#define dgHorseIngoSkelLimbsLimb_004958DL_001E10 "__OTR__objects/object_hni/gHorseIngoSkelLimbsLimb_004958DL_001E10" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSkelLimbsLimb_004958DL_001E10[] = dgHorseIngoSkelLimbsLimb_004958DL_001E10; -#else -static const char gHorseIngoSkelLimbsLimb_004958DL_001E10[] __attribute__((aligned (2))) = dgHorseIngoSkelLimbsLimb_004958DL_001E10; -#endif - -#define dgHorseIngoHeadLimbDL_002290 "__OTR__objects/object_hni/gHorseIngoHeadLimbDL_002290" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoHeadLimbDL_002290[] = dgHorseIngoHeadLimbDL_002290; -#else -static const char gHorseIngoHeadLimbDL_002290[] __attribute__((aligned (2))) = dgHorseIngoHeadLimbDL_002290; -#endif - -#define dgHorseIngoBodyLimbSkinLimbDL_006ED0 "__OTR__objects/object_hni/gHorseIngoBodyLimbSkinLimbDL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoBodyLimbSkinLimbDL_006ED0[] = dgHorseIngoBodyLimbSkinLimbDL_006ED0; -#else -static const char gHorseIngoBodyLimbSkinLimbDL_006ED0[] __attribute__((aligned (2))) = dgHorseIngoBodyLimbSkinLimbDL_006ED0; -#endif - -#define dgHorseIngoSaddleLimbDL_0025D8 "__OTR__objects/object_hni/gHorseIngoSaddleLimbDL_0025D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoSaddleLimbDL_0025D8[] = dgHorseIngoSaddleLimbDL_0025D8; -#else -static const char gHorseIngoSaddleLimbDL_0025D8[] __attribute__((aligned (2))) = dgHorseIngoSaddleLimbDL_0025D8; -#endif - -#define dgHorseIngoHoof1LimbDL_001D08 "__OTR__objects/object_hni/gHorseIngoHoof1LimbDL_001D08" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoHoof1LimbDL_001D08[] = dgHorseIngoHoof1LimbDL_001D08; -#else -static const char gHorseIngoHoof1LimbDL_001D08[] __attribute__((aligned (2))) = dgHorseIngoHoof1LimbDL_001D08; -#endif - -#define dgHorseIngoHoof2LimbDL_001E88 "__OTR__objects/object_hni/gHorseIngoHoof2LimbDL_001E88" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoHoof2LimbDL_001E88[] = dgHorseIngoHoof2LimbDL_001E88; -#else -static const char gHorseIngoHoof2LimbDL_001E88[] __attribute__((aligned (2))) = dgHorseIngoHoof2LimbDL_001E88; -#endif - -#define dgHorseIngoHoof3LimbDL_002008 "__OTR__objects/object_hni/gHorseIngoHoof3LimbDL_002008" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoHoof3LimbDL_002008[] = dgHorseIngoHoof3LimbDL_002008; -#else -static const char gHorseIngoHoof3LimbDL_002008[] __attribute__((aligned (2))) = dgHorseIngoHoof3LimbDL_002008; -#endif - -#define dgHorseIngoHoof4LimbDL_002188 "__OTR__objects/object_hni/gHorseIngoHoof4LimbDL_002188" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseIngoHoof4LimbDL_002188[] = dgHorseIngoHoof4LimbDL_002188; -#else -static const char gHorseIngoHoof4LimbDL_002188[] __attribute__((aligned (2))) = dgHorseIngoHoof4LimbDL_002188; -#endif - +#include "align_asset_macro.h" + +#define dgHorseIngoSkel "__OTR__objects/object_hni/gHorseIngoSkel" +static const ALIGN_ASSET(2) char gHorseIngoSkel[] = dgHorseIngoSkel; + +#define dgHorseIngoIdleAnim "__OTR__objects/object_hni/gHorseIngoIdleAnim" +static const ALIGN_ASSET(2) char gHorseIngoIdleAnim[] = dgHorseIngoIdleAnim; + +#define dgHorseIngoWhinnyAnim "__OTR__objects/object_hni/gHorseIngoWhinnyAnim" +static const ALIGN_ASSET(2) char gHorseIngoWhinnyAnim[] = dgHorseIngoWhinnyAnim; + +#define dgHorseIngoRefuseAnim "__OTR__objects/object_hni/gHorseIngoRefuseAnim" +static const ALIGN_ASSET(2) char gHorseIngoRefuseAnim[] = dgHorseIngoRefuseAnim; + +#define dgHorseIngoRearingAnim "__OTR__objects/object_hni/gHorseIngoRearingAnim" +static const ALIGN_ASSET(2) char gHorseIngoRearingAnim[] = dgHorseIngoRearingAnim; + +#define dgHorseIngoWalkingAnim "__OTR__objects/object_hni/gHorseIngoWalkingAnim" +static const ALIGN_ASSET(2) char gHorseIngoWalkingAnim[] = dgHorseIngoWalkingAnim; + +#define dgHorseIngoTrottingAnim "__OTR__objects/object_hni/gHorseIngoTrottingAnim" +static const ALIGN_ASSET(2) char gHorseIngoTrottingAnim[] = dgHorseIngoTrottingAnim; + +#define dgHorseIngoGallopingAnim "__OTR__objects/object_hni/gHorseIngoGallopingAnim" +static const ALIGN_ASSET(2) char gHorseIngoGallopingAnim[] = dgHorseIngoGallopingAnim; + +#define dgHorseIngoJumpingAnim "__OTR__objects/object_hni/gHorseIngoJumpingAnim" +static const ALIGN_ASSET(2) char gHorseIngoJumpingAnim[] = dgHorseIngoJumpingAnim; + +#define dgHorseIngoJumpingHighAnim "__OTR__objects/object_hni/gHorseIngoJumpingHighAnim" +static const ALIGN_ASSET(2) char gHorseIngoJumpingHighAnim[] = dgHorseIngoJumpingHighAnim; + +#define dgHorseIngoManeTex "__OTR__objects/object_hni/gHorseIngoManeTex" +static const ALIGN_ASSET(2) char gHorseIngoManeTex[] = dgHorseIngoManeTex; + +#define dgHorseIngoNostrilsTex "__OTR__objects/object_hni/gHorseIngoNostrilsTex" +static const ALIGN_ASSET(2) char gHorseIngoNostrilsTex[] = dgHorseIngoNostrilsTex; + +#define dgHorseIngoNoseTex "__OTR__objects/object_hni/gHorseIngoNoseTex" +static const ALIGN_ASSET(2) char gHorseIngoNoseTex[] = dgHorseIngoNoseTex; + +#define dgHorseIngoForeheadTex "__OTR__objects/object_hni/gHorseIngoForeheadTex" +static const ALIGN_ASSET(2) char gHorseIngoForeheadTex[] = dgHorseIngoForeheadTex; + +#define dgHorseIngoNeckTex "__OTR__objects/object_hni/gHorseIngoNeckTex" +static const ALIGN_ASSET(2) char gHorseIngoNeckTex[] = dgHorseIngoNeckTex; + +#define dgHorseIngoThighTex "__OTR__objects/object_hni/gHorseIngoThighTex" +static const ALIGN_ASSET(2) char gHorseIngoThighTex[] = dgHorseIngoThighTex; + +#define dgHorseIngoShoulderTex "__OTR__objects/object_hni/gHorseIngoShoulderTex" +static const ALIGN_ASSET(2) char gHorseIngoShoulderTex[] = dgHorseIngoShoulderTex; + +#define dgHorseIngoSaddleGirthTex "__OTR__objects/object_hni/gHorseIngoSaddleGirthTex" +static const ALIGN_ASSET(2) char gHorseIngoSaddleGirthTex[] = dgHorseIngoSaddleGirthTex; + +#define dgHorseIngoSaddlePadTex "__OTR__objects/object_hni/gHorseIngoSaddlePadTex" +static const ALIGN_ASSET(2) char gHorseIngoSaddlePadTex[] = dgHorseIngoSaddlePadTex; + +#define dgHorseIngoSaddleTex "__OTR__objects/object_hni/gHorseIngoSaddleTex" +static const ALIGN_ASSET(2) char gHorseIngoSaddleTex[] = dgHorseIngoSaddleTex; + +#define dgHorseIngoSaddleFlapTex "__OTR__objects/object_hni/gHorseIngoSaddleFlapTex" +static const ALIGN_ASSET(2) char gHorseIngoSaddleFlapTex[] = dgHorseIngoSaddleFlapTex; + +#define dgHorseIngoHorseshoeTex "__OTR__objects/object_hni/gHorseIngoHorseshoeTex" +static const ALIGN_ASSET(2) char gHorseIngoHorseshoeTex[] = dgHorseIngoHorseshoeTex; + +#define dgHorseIngoFeatheringTex "__OTR__objects/object_hni/gHorseIngoFeatheringTex" +static const ALIGN_ASSET(2) char gHorseIngoFeatheringTex[] = dgHorseIngoFeatheringTex; + +#define dgHorseIngoGerudoSaddleDL "__OTR__objects/object_hni/gHorseIngoGerudoSaddleDL" +static const ALIGN_ASSET(2) char gHorseIngoGerudoSaddleDL[] = dgHorseIngoGerudoSaddleDL; + +#define dgHorseIngoGerudoSaddleTex "__OTR__objects/object_hni/gHorseIngoGerudoSaddleTex" +static const ALIGN_ASSET(2) char gHorseIngoGerudoSaddleTex[] = dgHorseIngoGerudoSaddleTex; + +#define dgHorseIngoGerudoSaddleFlapTex "__OTR__objects/object_hni/gHorseIngoGerudoSaddleFlapTex" +static const ALIGN_ASSET(2) char gHorseIngoGerudoSaddleFlapTex[] = dgHorseIngoGerudoSaddleFlapTex; + +#define dgHorseIngoEyeTex "__OTR__objects/object_hni/gHorseIngoEyeTex" +static const ALIGN_ASSET(2) char gHorseIngoEyeTex[] = dgHorseIngoEyeTex; + +#define dgHorseIngoSkelLimbsLimb_0047C8DL_002110 "__OTR__objects/object_hni/gHorseIngoSkelLimbsLimb_0047C8DL_002110" +static const ALIGN_ASSET(2) char gHorseIngoSkelLimbsLimb_0047C8DL_002110[] = dgHorseIngoSkelLimbsLimb_0047C8DL_002110; + +#define dgHorseIngoSkelLimbsLimb_004848DL_001C90 "__OTR__objects/object_hni/gHorseIngoSkelLimbsLimb_004848DL_001C90" +static const ALIGN_ASSET(2) char gHorseIngoSkelLimbsLimb_004848DL_001C90[] = dgHorseIngoSkelLimbsLimb_004848DL_001C90; + +#define dgHorseIngoSkelLimbsLimb_0048D8DL_001F90 "__OTR__objects/object_hni/gHorseIngoSkelLimbsLimb_0048D8DL_001F90" +static const ALIGN_ASSET(2) char gHorseIngoSkelLimbsLimb_0048D8DL_001F90[] = dgHorseIngoSkelLimbsLimb_0048D8DL_001F90; + +#define dgHorseIngoSkelLimbsLimb_004958DL_001E10 "__OTR__objects/object_hni/gHorseIngoSkelLimbsLimb_004958DL_001E10" +static const ALIGN_ASSET(2) char gHorseIngoSkelLimbsLimb_004958DL_001E10[] = dgHorseIngoSkelLimbsLimb_004958DL_001E10; + +#define dgHorseIngoHeadLimbDL_002290 "__OTR__objects/object_hni/gHorseIngoHeadLimbDL_002290" +static const ALIGN_ASSET(2) char gHorseIngoHeadLimbDL_002290[] = dgHorseIngoHeadLimbDL_002290; + +#define dgHorseIngoBodyLimbSkinLimbDL_006ED0 "__OTR__objects/object_hni/gHorseIngoBodyLimbSkinLimbDL_006ED0" +static const ALIGN_ASSET(2) char gHorseIngoBodyLimbSkinLimbDL_006ED0[] = dgHorseIngoBodyLimbSkinLimbDL_006ED0; + +#define dgHorseIngoSaddleLimbDL_0025D8 "__OTR__objects/object_hni/gHorseIngoSaddleLimbDL_0025D8" +static const ALIGN_ASSET(2) char gHorseIngoSaddleLimbDL_0025D8[] = dgHorseIngoSaddleLimbDL_0025D8; + +#define dgHorseIngoHoof1LimbDL_001D08 "__OTR__objects/object_hni/gHorseIngoHoof1LimbDL_001D08" +static const ALIGN_ASSET(2) char gHorseIngoHoof1LimbDL_001D08[] = dgHorseIngoHoof1LimbDL_001D08; + +#define dgHorseIngoHoof2LimbDL_001E88 "__OTR__objects/object_hni/gHorseIngoHoof2LimbDL_001E88" +static const ALIGN_ASSET(2) char gHorseIngoHoof2LimbDL_001E88[] = dgHorseIngoHoof2LimbDL_001E88; + +#define dgHorseIngoHoof3LimbDL_002008 "__OTR__objects/object_hni/gHorseIngoHoof3LimbDL_002008" +static const ALIGN_ASSET(2) char gHorseIngoHoof3LimbDL_002008[] = dgHorseIngoHoof3LimbDL_002008; + +#define dgHorseIngoHoof4LimbDL_002188 "__OTR__objects/object_hni/gHorseIngoHoof4LimbDL_002188" +static const ALIGN_ASSET(2) char gHorseIngoHoof4LimbDL_002188[] = dgHorseIngoHoof4LimbDL_002188; \ No newline at end of file diff --git a/soh/assets/objects/object_horse/object_horse.h b/soh/assets/objects/object_horse/object_horse.h index e72f53c0d..610166dd7 100644 --- a/soh/assets/objects/object_horse/object_horse.h +++ b/soh/assets/objects/object_horse/object_horse.h @@ -1,331 +1,144 @@ #pragma once -#define dgEponaSkel "__OTR__objects/object_horse/gEponaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaSkel[] = dgEponaSkel; -#else -static const char gEponaSkel[] __attribute__((aligned (2))) = dgEponaSkel; -#endif - -#define dgEponaIdleAnim "__OTR__objects/object_horse/gEponaIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaIdleAnim[] = dgEponaIdleAnim; -#else -static const char gEponaIdleAnim[] __attribute__((aligned (2))) = dgEponaIdleAnim; -#endif - -#define dgEponaWhinnyAnim "__OTR__objects/object_horse/gEponaWhinnyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaWhinnyAnim[] = dgEponaWhinnyAnim; -#else -static const char gEponaWhinnyAnim[] __attribute__((aligned (2))) = dgEponaWhinnyAnim; -#endif - -#define dgEponaRefuseAnim "__OTR__objects/object_horse/gEponaRefuseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaRefuseAnim[] = dgEponaRefuseAnim; -#else -static const char gEponaRefuseAnim[] __attribute__((aligned (2))) = dgEponaRefuseAnim; -#endif - -#define dgEponaRearingAnim "__OTR__objects/object_horse/gEponaRearingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaRearingAnim[] = dgEponaRearingAnim; -#else -static const char gEponaRearingAnim[] __attribute__((aligned (2))) = dgEponaRearingAnim; -#endif - -#define dgEponaWalkingAnim "__OTR__objects/object_horse/gEponaWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaWalkingAnim[] = dgEponaWalkingAnim; -#else -static const char gEponaWalkingAnim[] __attribute__((aligned (2))) = dgEponaWalkingAnim; -#endif - -#define dgEponaTrottingAnim "__OTR__objects/object_horse/gEponaTrottingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaTrottingAnim[] = dgEponaTrottingAnim; -#else -static const char gEponaTrottingAnim[] __attribute__((aligned (2))) = dgEponaTrottingAnim; -#endif - -#define dgEponaGallopingAnim "__OTR__objects/object_horse/gEponaGallopingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaGallopingAnim[] = dgEponaGallopingAnim; -#else -static const char gEponaGallopingAnim[] __attribute__((aligned (2))) = dgEponaGallopingAnim; -#endif - -#define dgEponaJumpingAnim "__OTR__objects/object_horse/gEponaJumpingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaJumpingAnim[] = dgEponaJumpingAnim; -#else -static const char gEponaJumpingAnim[] __attribute__((aligned (2))) = dgEponaJumpingAnim; -#endif - -#define dgEponaJumpingHighAnim "__OTR__objects/object_horse/gEponaJumpingHighAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaJumpingHighAnim[] = dgEponaJumpingHighAnim; -#else -static const char gEponaJumpingHighAnim[] __attribute__((aligned (2))) = dgEponaJumpingHighAnim; -#endif - -#define dgEponaFeatheringTex "__OTR__objects/object_horse/gEponaFeatheringTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaFeatheringTex[] = dgEponaFeatheringTex; -#else -static const char gEponaFeatheringTex[] __attribute__((aligned (2))) = dgEponaFeatheringTex; -#endif - -#define dgEponaHairTex "__OTR__objects/object_horse/gEponaHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaHairTex[] = dgEponaHairTex; -#else -static const char gEponaHairTex[] __attribute__((aligned (2))) = dgEponaHairTex; -#endif - -#define dgEponaCrestTex "__OTR__objects/object_horse/gEponaCrestTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaCrestTex[] = dgEponaCrestTex; -#else -static const char gEponaCrestTex[] __attribute__((aligned (2))) = dgEponaCrestTex; -#endif - -#define dgEponaManeTex "__OTR__objects/object_horse/gEponaManeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaManeTex[] = dgEponaManeTex; -#else -static const char gEponaManeTex[] __attribute__((aligned (2))) = dgEponaManeTex; -#endif - -#define dgEponaNostrilsTex "__OTR__objects/object_horse/gEponaNostrilsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaNostrilsTex[] = dgEponaNostrilsTex; -#else -static const char gEponaNostrilsTex[] __attribute__((aligned (2))) = dgEponaNostrilsTex; -#endif - -#define dgEponaForeheadTex "__OTR__objects/object_horse/gEponaForeheadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaForeheadTex[] = dgEponaForeheadTex; -#else -static const char gEponaForeheadTex[] __attribute__((aligned (2))) = dgEponaForeheadTex; -#endif - -#define dgEponaNeckTex "__OTR__objects/object_horse/gEponaNeckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaNeckTex[] = dgEponaNeckTex; -#else -static const char gEponaNeckTex[] __attribute__((aligned (2))) = dgEponaNeckTex; -#endif - -#define dgEponaChestTex "__OTR__objects/object_horse/gEponaChestTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaChestTex[] = dgEponaChestTex; -#else -static const char gEponaChestTex[] __attribute__((aligned (2))) = dgEponaChestTex; -#endif - -#define dgEponaShoulderTex "__OTR__objects/object_horse/gEponaShoulderTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaShoulderTex[] = dgEponaShoulderTex; -#else -static const char gEponaShoulderTex[] __attribute__((aligned (2))) = dgEponaShoulderTex; -#endif - -#define dgEponaThighTex "__OTR__objects/object_horse/gEponaThighTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaThighTex[] = dgEponaThighTex; -#else -static const char gEponaThighTex[] __attribute__((aligned (2))) = dgEponaThighTex; -#endif - -#define dgEponaSaddleTex "__OTR__objects/object_horse/gEponaSaddleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaSaddleTex[] = dgEponaSaddleTex; -#else -static const char gEponaSaddleTex[] __attribute__((aligned (2))) = dgEponaSaddleTex; -#endif - -#define dgEponaSaddleFlapTex "__OTR__objects/object_horse/gEponaSaddleFlapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaSaddleFlapTex[] = dgEponaSaddleFlapTex; -#else -static const char gEponaSaddleFlapTex[] __attribute__((aligned (2))) = dgEponaSaddleFlapTex; -#endif - -#define dgEponaSaddleLipTex "__OTR__objects/object_horse/gEponaSaddleLipTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaSaddleLipTex[] = dgEponaSaddleLipTex; -#else -static const char gEponaSaddleLipTex[] __attribute__((aligned (2))) = dgEponaSaddleLipTex; -#endif - -#define dgEponaSaddleGirthTex "__OTR__objects/object_horse/gEponaSaddleGirthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaSaddleGirthTex[] = dgEponaSaddleGirthTex; -#else -static const char gEponaSaddleGirthTex[] __attribute__((aligned (2))) = dgEponaSaddleGirthTex; -#endif - -#define dgEponaHorseshoeTex "__OTR__objects/object_horse/gEponaHorseshoeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaHorseshoeTex[] = dgEponaHorseshoeTex; -#else -static const char gEponaHorseshoeTex[] __attribute__((aligned (2))) = dgEponaHorseshoeTex; -#endif - -#define dgEponaEyeTLUT "__OTR__objects/object_horse/gEponaEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaEyeTLUT[] = dgEponaEyeTLUT; -#else -static const char gEponaEyeTLUT[] __attribute__((aligned (2))) = dgEponaEyeTLUT; -#endif - -#define dgEponaEyeOpenTex "__OTR__objects/object_horse/gEponaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaEyeOpenTex[] = dgEponaEyeOpenTex; -#else -static const char gEponaEyeOpenTex[] __attribute__((aligned (2))) = dgEponaEyeOpenTex; -#endif - -#define dgEponaEyeHalfTex "__OTR__objects/object_horse/gEponaEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaEyeHalfTex[] = dgEponaEyeHalfTex; -#else -static const char gEponaEyeHalfTex[] __attribute__((aligned (2))) = dgEponaEyeHalfTex; -#endif - -#define dgEponaEyeClosedTex "__OTR__objects/object_horse/gEponaEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaEyeClosedTex[] = dgEponaEyeClosedTex; -#else -static const char gEponaEyeClosedTex[] __attribute__((aligned (2))) = dgEponaEyeClosedTex; -#endif - -#define dgEponaUnusedWhiteCubeDL "__OTR__objects/object_horse/gEponaUnusedWhiteCubeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaUnusedWhiteCubeDL[] = dgEponaUnusedWhiteCubeDL; -#else -static const char gEponaUnusedWhiteCubeDL[] __attribute__((aligned (2))) = dgEponaUnusedWhiteCubeDL; -#endif - -#define dgEponaUnusedWhiteRectangle1DL "__OTR__objects/object_horse/gEponaUnusedWhiteRectangle1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaUnusedWhiteRectangle1DL[] = dgEponaUnusedWhiteRectangle1DL; -#else -static const char gEponaUnusedWhiteRectangle1DL[] __attribute__((aligned (2))) = dgEponaUnusedWhiteRectangle1DL; -#endif - -#define dgEponaUnusedWhiteRectangle2DL "__OTR__objects/object_horse/gEponaUnusedWhiteRectangle2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaUnusedWhiteRectangle2DL[] = dgEponaUnusedWhiteRectangle2DL; -#else -static const char gEponaUnusedWhiteRectangle2DL[] __attribute__((aligned (2))) = dgEponaUnusedWhiteRectangle2DL; -#endif - -#define dgEponaUnusedWhiteRectangle3DL "__OTR__objects/object_horse/gEponaUnusedWhiteRectangle3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaUnusedWhiteRectangle3DL[] = dgEponaUnusedWhiteRectangle3DL; -#else -static const char gEponaUnusedWhiteRectangle3DL[] __attribute__((aligned (2))) = dgEponaUnusedWhiteRectangle3DL; -#endif - -#define dgEponaUnusedWhiteRectangle4DL "__OTR__objects/object_horse/gEponaUnusedWhiteRectangle4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaUnusedWhiteRectangle4DL[] = dgEponaUnusedWhiteRectangle4DL; -#else -static const char gEponaUnusedWhiteRectangle4DL[] __attribute__((aligned (2))) = dgEponaUnusedWhiteRectangle4DL; -#endif - -#define dgEponaBlob_000000 "__OTR__objects/object_horse/gEponaBlob_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaBlob_000000[] = dgEponaBlob_000000; -#else -static const char gEponaBlob_000000[] __attribute__((aligned (2))) = dgEponaBlob_000000; -#endif - -#define dgEponaBlob_0007C0 "__OTR__objects/object_horse/gEponaBlob_0007C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaBlob_0007C0[] = dgEponaBlob_0007C0; -#else -static const char gEponaBlob_0007C0[] __attribute__((aligned (2))) = dgEponaBlob_0007C0; -#endif - -#define dgEponaHeadLimbDL_00AC20 "__OTR__objects/object_horse/gEponaHeadLimbDL_00AC20" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaHeadLimbDL_00AC20[] = dgEponaHeadLimbDL_00AC20; -#else -static const char gEponaHeadLimbDL_00AC20[] __attribute__((aligned (2))) = dgEponaHeadLimbDL_00AC20; -#endif - -#define dgEponaBodyLimbSkinLimbDL_00B7C0 "__OTR__objects/object_horse/gEponaBodyLimbSkinLimbDL_00B7C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaBodyLimbSkinLimbDL_00B7C0[] = dgEponaBodyLimbSkinLimbDL_00B7C0; -#else -static const char gEponaBodyLimbSkinLimbDL_00B7C0[] __attribute__((aligned (2))) = dgEponaBodyLimbSkinLimbDL_00B7C0; -#endif - -#define dgEponaSaddleLimbDL_00B5E0 "__OTR__objects/object_horse/gEponaSaddleLimbDL_00B5E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaSaddleLimbDL_00B5E0[] = dgEponaSaddleLimbDL_00B5E0; -#else -static const char gEponaSaddleLimbDL_00B5E0[] __attribute__((aligned (2))) = dgEponaSaddleLimbDL_00B5E0; -#endif - -#define dgEponaCannon1LimbDL_000BB0 "__OTR__objects/object_horse/gEponaCannon1LimbDL_000BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaCannon1LimbDL_000BB0[] = dgEponaCannon1LimbDL_000BB0; -#else -static const char gEponaCannon1LimbDL_000BB0[] __attribute__((aligned (2))) = dgEponaCannon1LimbDL_000BB0; -#endif - -#define dgEponaCannon2LimbDL_000FA0 "__OTR__objects/object_horse/gEponaCannon2LimbDL_000FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaCannon2LimbDL_000FA0[] = dgEponaCannon2LimbDL_000FA0; -#else -static const char gEponaCannon2LimbDL_000FA0[] __attribute__((aligned (2))) = dgEponaCannon2LimbDL_000FA0; -#endif - -#define dgEponaCannon3LimbDL_001370 "__OTR__objects/object_horse/gEponaCannon3LimbDL_001370" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaCannon3LimbDL_001370[] = dgEponaCannon3LimbDL_001370; -#else -static const char gEponaCannon3LimbDL_001370[] __attribute__((aligned (2))) = dgEponaCannon3LimbDL_001370; -#endif - -#define dgEponaCannon4LimbDL_001740 "__OTR__objects/object_horse/gEponaCannon4LimbDL_001740" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaCannon4LimbDL_001740[] = dgEponaCannon4LimbDL_001740; -#else -static const char gEponaCannon4LimbDL_001740[] __attribute__((aligned (2))) = dgEponaCannon4LimbDL_001740; -#endif - -#define dgEponaHoof1LimbDL_0009B0 "__OTR__objects/object_horse/gEponaHoof1LimbDL_0009B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaHoof1LimbDL_0009B0[] = dgEponaHoof1LimbDL_0009B0; -#else -static const char gEponaHoof1LimbDL_0009B0[] __attribute__((aligned (2))) = dgEponaHoof1LimbDL_0009B0; -#endif - -#define dgEponaHoof2LimbDL_000DA0 "__OTR__objects/object_horse/gEponaHoof2LimbDL_000DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaHoof2LimbDL_000DA0[] = dgEponaHoof2LimbDL_000DA0; -#else -static const char gEponaHoof2LimbDL_000DA0[] __attribute__((aligned (2))) = dgEponaHoof2LimbDL_000DA0; -#endif - -#define dgEponaHoof3LimbDL_001170 "__OTR__objects/object_horse/gEponaHoof3LimbDL_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaHoof3LimbDL_001170[] = dgEponaHoof3LimbDL_001170; -#else -static const char gEponaHoof3LimbDL_001170[] __attribute__((aligned (2))) = dgEponaHoof3LimbDL_001170; -#endif - -#define dgEponaHoof4LimbDL_001540 "__OTR__objects/object_horse/gEponaHoof4LimbDL_001540" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponaHoof4LimbDL_001540[] = dgEponaHoof4LimbDL_001540; -#else -static const char gEponaHoof4LimbDL_001540[] __attribute__((aligned (2))) = dgEponaHoof4LimbDL_001540; -#endif - +#include "align_asset_macro.h" + +#define dgEponaSkel "__OTR__objects/object_horse/gEponaSkel" +static const ALIGN_ASSET(2) char gEponaSkel[] = dgEponaSkel; + +#define dgEponaIdleAnim "__OTR__objects/object_horse/gEponaIdleAnim" +static const ALIGN_ASSET(2) char gEponaIdleAnim[] = dgEponaIdleAnim; + +#define dgEponaWhinnyAnim "__OTR__objects/object_horse/gEponaWhinnyAnim" +static const ALIGN_ASSET(2) char gEponaWhinnyAnim[] = dgEponaWhinnyAnim; + +#define dgEponaRefuseAnim "__OTR__objects/object_horse/gEponaRefuseAnim" +static const ALIGN_ASSET(2) char gEponaRefuseAnim[] = dgEponaRefuseAnim; + +#define dgEponaRearingAnim "__OTR__objects/object_horse/gEponaRearingAnim" +static const ALIGN_ASSET(2) char gEponaRearingAnim[] = dgEponaRearingAnim; + +#define dgEponaWalkingAnim "__OTR__objects/object_horse/gEponaWalkingAnim" +static const ALIGN_ASSET(2) char gEponaWalkingAnim[] = dgEponaWalkingAnim; + +#define dgEponaTrottingAnim "__OTR__objects/object_horse/gEponaTrottingAnim" +static const ALIGN_ASSET(2) char gEponaTrottingAnim[] = dgEponaTrottingAnim; + +#define dgEponaGallopingAnim "__OTR__objects/object_horse/gEponaGallopingAnim" +static const ALIGN_ASSET(2) char gEponaGallopingAnim[] = dgEponaGallopingAnim; + +#define dgEponaJumpingAnim "__OTR__objects/object_horse/gEponaJumpingAnim" +static const ALIGN_ASSET(2) char gEponaJumpingAnim[] = dgEponaJumpingAnim; + +#define dgEponaJumpingHighAnim "__OTR__objects/object_horse/gEponaJumpingHighAnim" +static const ALIGN_ASSET(2) char gEponaJumpingHighAnim[] = dgEponaJumpingHighAnim; + +#define dgEponaFeatheringTex "__OTR__objects/object_horse/gEponaFeatheringTex" +static const ALIGN_ASSET(2) char gEponaFeatheringTex[] = dgEponaFeatheringTex; + +#define dgEponaHairTex "__OTR__objects/object_horse/gEponaHairTex" +static const ALIGN_ASSET(2) char gEponaHairTex[] = dgEponaHairTex; + +#define dgEponaCrestTex "__OTR__objects/object_horse/gEponaCrestTex" +static const ALIGN_ASSET(2) char gEponaCrestTex[] = dgEponaCrestTex; + +#define dgEponaManeTex "__OTR__objects/object_horse/gEponaManeTex" +static const ALIGN_ASSET(2) char gEponaManeTex[] = dgEponaManeTex; + +#define dgEponaNostrilsTex "__OTR__objects/object_horse/gEponaNostrilsTex" +static const ALIGN_ASSET(2) char gEponaNostrilsTex[] = dgEponaNostrilsTex; + +#define dgEponaForeheadTex "__OTR__objects/object_horse/gEponaForeheadTex" +static const ALIGN_ASSET(2) char gEponaForeheadTex[] = dgEponaForeheadTex; + +#define dgEponaNeckTex "__OTR__objects/object_horse/gEponaNeckTex" +static const ALIGN_ASSET(2) char gEponaNeckTex[] = dgEponaNeckTex; + +#define dgEponaChestTex "__OTR__objects/object_horse/gEponaChestTex" +static const ALIGN_ASSET(2) char gEponaChestTex[] = dgEponaChestTex; + +#define dgEponaShoulderTex "__OTR__objects/object_horse/gEponaShoulderTex" +static const ALIGN_ASSET(2) char gEponaShoulderTex[] = dgEponaShoulderTex; + +#define dgEponaThighTex "__OTR__objects/object_horse/gEponaThighTex" +static const ALIGN_ASSET(2) char gEponaThighTex[] = dgEponaThighTex; + +#define dgEponaSaddleTex "__OTR__objects/object_horse/gEponaSaddleTex" +static const ALIGN_ASSET(2) char gEponaSaddleTex[] = dgEponaSaddleTex; + +#define dgEponaSaddleFlapTex "__OTR__objects/object_horse/gEponaSaddleFlapTex" +static const ALIGN_ASSET(2) char gEponaSaddleFlapTex[] = dgEponaSaddleFlapTex; + +#define dgEponaSaddleLipTex "__OTR__objects/object_horse/gEponaSaddleLipTex" +static const ALIGN_ASSET(2) char gEponaSaddleLipTex[] = dgEponaSaddleLipTex; + +#define dgEponaSaddleGirthTex "__OTR__objects/object_horse/gEponaSaddleGirthTex" +static const ALIGN_ASSET(2) char gEponaSaddleGirthTex[] = dgEponaSaddleGirthTex; + +#define dgEponaHorseshoeTex "__OTR__objects/object_horse/gEponaHorseshoeTex" +static const ALIGN_ASSET(2) char gEponaHorseshoeTex[] = dgEponaHorseshoeTex; + +#define dgEponaEyeTLUT "__OTR__objects/object_horse/gEponaEyeTLUT" +static const ALIGN_ASSET(2) char gEponaEyeTLUT[] = dgEponaEyeTLUT; + +#define dgEponaEyeOpenTex "__OTR__objects/object_horse/gEponaEyeOpenTex" +static const ALIGN_ASSET(2) char gEponaEyeOpenTex[] = dgEponaEyeOpenTex; + +#define dgEponaEyeHalfTex "__OTR__objects/object_horse/gEponaEyeHalfTex" +static const ALIGN_ASSET(2) char gEponaEyeHalfTex[] = dgEponaEyeHalfTex; + +#define dgEponaEyeClosedTex "__OTR__objects/object_horse/gEponaEyeClosedTex" +static const ALIGN_ASSET(2) char gEponaEyeClosedTex[] = dgEponaEyeClosedTex; + +#define dgEponaUnusedWhiteCubeDL "__OTR__objects/object_horse/gEponaUnusedWhiteCubeDL" +static const ALIGN_ASSET(2) char gEponaUnusedWhiteCubeDL[] = dgEponaUnusedWhiteCubeDL; + +#define dgEponaUnusedWhiteRectangle1DL "__OTR__objects/object_horse/gEponaUnusedWhiteRectangle1DL" +static const ALIGN_ASSET(2) char gEponaUnusedWhiteRectangle1DL[] = dgEponaUnusedWhiteRectangle1DL; + +#define dgEponaUnusedWhiteRectangle2DL "__OTR__objects/object_horse/gEponaUnusedWhiteRectangle2DL" +static const ALIGN_ASSET(2) char gEponaUnusedWhiteRectangle2DL[] = dgEponaUnusedWhiteRectangle2DL; + +#define dgEponaUnusedWhiteRectangle3DL "__OTR__objects/object_horse/gEponaUnusedWhiteRectangle3DL" +static const ALIGN_ASSET(2) char gEponaUnusedWhiteRectangle3DL[] = dgEponaUnusedWhiteRectangle3DL; + +#define dgEponaUnusedWhiteRectangle4DL "__OTR__objects/object_horse/gEponaUnusedWhiteRectangle4DL" +static const ALIGN_ASSET(2) char gEponaUnusedWhiteRectangle4DL[] = dgEponaUnusedWhiteRectangle4DL; + +#define dgEponaBlob_000000 "__OTR__objects/object_horse/gEponaBlob_000000" +static const ALIGN_ASSET(2) char gEponaBlob_000000[] = dgEponaBlob_000000; + +#define dgEponaBlob_0007C0 "__OTR__objects/object_horse/gEponaBlob_0007C0" +static const ALIGN_ASSET(2) char gEponaBlob_0007C0[] = dgEponaBlob_0007C0; + +#define dgEponaHeadLimbDL_00AC20 "__OTR__objects/object_horse/gEponaHeadLimbDL_00AC20" +static const ALIGN_ASSET(2) char gEponaHeadLimbDL_00AC20[] = dgEponaHeadLimbDL_00AC20; + +#define dgEponaBodyLimbSkinLimbDL_00B7C0 "__OTR__objects/object_horse/gEponaBodyLimbSkinLimbDL_00B7C0" +static const ALIGN_ASSET(2) char gEponaBodyLimbSkinLimbDL_00B7C0[] = dgEponaBodyLimbSkinLimbDL_00B7C0; + +#define dgEponaSaddleLimbDL_00B5E0 "__OTR__objects/object_horse/gEponaSaddleLimbDL_00B5E0" +static const ALIGN_ASSET(2) char gEponaSaddleLimbDL_00B5E0[] = dgEponaSaddleLimbDL_00B5E0; + +#define dgEponaCannon1LimbDL_000BB0 "__OTR__objects/object_horse/gEponaCannon1LimbDL_000BB0" +static const ALIGN_ASSET(2) char gEponaCannon1LimbDL_000BB0[] = dgEponaCannon1LimbDL_000BB0; + +#define dgEponaCannon2LimbDL_000FA0 "__OTR__objects/object_horse/gEponaCannon2LimbDL_000FA0" +static const ALIGN_ASSET(2) char gEponaCannon2LimbDL_000FA0[] = dgEponaCannon2LimbDL_000FA0; + +#define dgEponaCannon3LimbDL_001370 "__OTR__objects/object_horse/gEponaCannon3LimbDL_001370" +static const ALIGN_ASSET(2) char gEponaCannon3LimbDL_001370[] = dgEponaCannon3LimbDL_001370; + +#define dgEponaCannon4LimbDL_001740 "__OTR__objects/object_horse/gEponaCannon4LimbDL_001740" +static const ALIGN_ASSET(2) char gEponaCannon4LimbDL_001740[] = dgEponaCannon4LimbDL_001740; + +#define dgEponaHoof1LimbDL_0009B0 "__OTR__objects/object_horse/gEponaHoof1LimbDL_0009B0" +static const ALIGN_ASSET(2) char gEponaHoof1LimbDL_0009B0[] = dgEponaHoof1LimbDL_0009B0; + +#define dgEponaHoof2LimbDL_000DA0 "__OTR__objects/object_horse/gEponaHoof2LimbDL_000DA0" +static const ALIGN_ASSET(2) char gEponaHoof2LimbDL_000DA0[] = dgEponaHoof2LimbDL_000DA0; + +#define dgEponaHoof3LimbDL_001170 "__OTR__objects/object_horse/gEponaHoof3LimbDL_001170" +static const ALIGN_ASSET(2) char gEponaHoof3LimbDL_001170[] = dgEponaHoof3LimbDL_001170; + +#define dgEponaHoof4LimbDL_001540 "__OTR__objects/object_horse/gEponaHoof4LimbDL_001540" +static const ALIGN_ASSET(2) char gEponaHoof4LimbDL_001540[] = dgEponaHoof4LimbDL_001540; \ No newline at end of file diff --git a/soh/assets/objects/object_horse_ganon/object_horse_ganon.h b/soh/assets/objects/object_horse_ganon/object_horse_ganon.h index 99eae49d6..41f8db0ea 100644 --- a/soh/assets/objects/object_horse_ganon/object_horse_ganon.h +++ b/soh/assets/objects/object_horse_ganon/object_horse_ganon.h @@ -1,269 +1,119 @@ #pragma once -#define dgHorseGanonSkel "__OTR__objects/object_horse_ganon/gHorseGanonSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkel[] = dgHorseGanonSkel; -#else -static const char gHorseGanonSkel[] __attribute__((aligned (2))) = dgHorseGanonSkel; -#endif - -#define dgHorseGanonIdleAnim "__OTR__objects/object_horse_ganon/gHorseGanonIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonIdleAnim[] = dgHorseGanonIdleAnim; -#else -static const char gHorseGanonIdleAnim[] __attribute__((aligned (2))) = dgHorseGanonIdleAnim; -#endif - -#define dgHorseGanonWhinnyAnim "__OTR__objects/object_horse_ganon/gHorseGanonWhinnyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonWhinnyAnim[] = dgHorseGanonWhinnyAnim; -#else -static const char gHorseGanonWhinnyAnim[] __attribute__((aligned (2))) = dgHorseGanonWhinnyAnim; -#endif - -#define dgHorseGanonWalkingAnim "__OTR__objects/object_horse_ganon/gHorseGanonWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonWalkingAnim[] = dgHorseGanonWalkingAnim; -#else -static const char gHorseGanonWalkingAnim[] __attribute__((aligned (2))) = dgHorseGanonWalkingAnim; -#endif - -#define dgHorseGanonTrottingAnim "__OTR__objects/object_horse_ganon/gHorseGanonTrottingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonTrottingAnim[] = dgHorseGanonTrottingAnim; -#else -static const char gHorseGanonTrottingAnim[] __attribute__((aligned (2))) = dgHorseGanonTrottingAnim; -#endif - -#define dgHorseGanonGallopingAnim "__OTR__objects/object_horse_ganon/gHorseGanonGallopingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonGallopingAnim[] = dgHorseGanonGallopingAnim; -#else -static const char gHorseGanonGallopingAnim[] __attribute__((aligned (2))) = dgHorseGanonGallopingAnim; -#endif - -#define dgHorseGanonRearingAnim "__OTR__objects/object_horse_ganon/gHorseGanonRearingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonRearingAnim[] = dgHorseGanonRearingAnim; -#else -static const char gHorseGanonRearingAnim[] __attribute__((aligned (2))) = dgHorseGanonRearingAnim; -#endif - -#define dgHorseGanonEyeTex "__OTR__objects/object_horse_ganon/gHorseGanonEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonEyeTex[] = dgHorseGanonEyeTex; -#else -static const char gHorseGanonEyeTex[] __attribute__((aligned (2))) = dgHorseGanonEyeTex; -#endif - -#define dgHorseGanonHeadHairTex "__OTR__objects/object_horse_ganon/gHorseGanonHeadHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonHeadHairTex[] = dgHorseGanonHeadHairTex; -#else -static const char gHorseGanonHeadHairTex[] __attribute__((aligned (2))) = dgHorseGanonHeadHairTex; -#endif - -#define dgHorseGanonLegTex "__OTR__objects/object_horse_ganon/gHorseGanonLegTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonLegTex[] = dgHorseGanonLegTex; -#else -static const char gHorseGanonLegTex[] __attribute__((aligned (2))) = dgHorseGanonLegTex; -#endif - -#define dobject_horse_ganonTex_00BE90 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00BE90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00BE90[] = dobject_horse_ganonTex_00BE90; -#else -static const char object_horse_ganonTex_00BE90[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00BE90; -#endif - -#define dobject_horse_ganonTex_00A7F0 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00A7F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00A7F0[] = dobject_horse_ganonTex_00A7F0; -#else -static const char object_horse_ganonTex_00A7F0[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00A7F0; -#endif - -#define dobject_horse_ganonTex_00B010 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B010" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00B010[] = dobject_horse_ganonTex_00B010; -#else -static const char object_horse_ganonTex_00B010[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00B010; -#endif - -#define dobject_horse_ganonTex_00A5F0 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00A5F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00A5F0[] = dobject_horse_ganonTex_00A5F0; -#else -static const char object_horse_ganonTex_00A5F0[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00A5F0; -#endif - -#define dobject_horse_ganonTex_00AA10 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00AA10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00AA10[] = dobject_horse_ganonTex_00AA10; -#else -static const char object_horse_ganonTex_00AA10[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00AA10; -#endif - -#define dgHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20[] = dgHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20; -#else -static const char gHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20; -#endif - -#define dgHorseGanonSkelLimbsLimb_008314DL_0090F0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008314DL_0090F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008314DL_0090F0[] = dgHorseGanonSkelLimbsLimb_008314DL_0090F0; -#else -static const char gHorseGanonSkelLimbsLimb_008314DL_0090F0[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008314DL_0090F0; -#endif - -#define dgHorseGanonSkelLimbsLimb_008324DL_009BE0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008324DL_009BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008324DL_009BE0[] = dgHorseGanonSkelLimbsLimb_008324DL_009BE0; -#else -static const char gHorseGanonSkelLimbsLimb_008324DL_009BE0[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008324DL_009BE0; -#endif - -#define dgHorseGanonSkelLimbsLimb_008394DL_0001C0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008394DL_0001C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008394DL_0001C0[] = dgHorseGanonSkelLimbsLimb_008394DL_0001C0; -#else -static const char gHorseGanonSkelLimbsLimb_008394DL_0001C0[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008394DL_0001C0; -#endif - -#define dgHorseGanonSkelLimbsLimb_0083A4DL_000430 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_0083A4DL_000430" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_0083A4DL_000430[] = dgHorseGanonSkelLimbsLimb_0083A4DL_000430; -#else -static const char gHorseGanonSkelLimbsLimb_0083A4DL_000430[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_0083A4DL_000430; -#endif - -#define dgHorseGanonSkelLimbsLimb_0083B4DL_0007E0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_0083B4DL_0007E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_0083B4DL_0007E0[] = dgHorseGanonSkelLimbsLimb_0083B4DL_0007E0; -#else -static const char gHorseGanonSkelLimbsLimb_0083B4DL_0007E0[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_0083B4DL_0007E0; -#endif - -#define dgHorseGanonSkelLimbsLimb_0083C4DL_0013D0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_0083C4DL_0013D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_0083C4DL_0013D0[] = dgHorseGanonSkelLimbsLimb_0083C4DL_0013D0; -#else -static const char gHorseGanonSkelLimbsLimb_0083C4DL_0013D0[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_0083C4DL_0013D0; -#endif - -#define dgHorseGanonSkelLimbsLimb_008434DL_000AE0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008434DL_000AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008434DL_000AE0[] = dgHorseGanonSkelLimbsLimb_008434DL_000AE0; -#else -static const char gHorseGanonSkelLimbsLimb_008434DL_000AE0[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008434DL_000AE0; -#endif - -#define dgHorseGanonSkelLimbsLimb_008444DL_000D50 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008444DL_000D50" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008444DL_000D50[] = dgHorseGanonSkelLimbsLimb_008444DL_000D50; -#else -static const char gHorseGanonSkelLimbsLimb_008444DL_000D50[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008444DL_000D50; -#endif - -#define dgHorseGanonSkelLimbsLimb_008454DL_001100 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008454DL_001100" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008454DL_001100[] = dgHorseGanonSkelLimbsLimb_008454DL_001100; -#else -static const char gHorseGanonSkelLimbsLimb_008454DL_001100[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008454DL_001100; -#endif - -#define dgHorseGanonSkelLimbsLimb_008464DL_001F20 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008464DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008464DL_001F20[] = dgHorseGanonSkelLimbsLimb_008464DL_001F20; -#else -static const char gHorseGanonSkelLimbsLimb_008464DL_001F20[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008464DL_001F20; -#endif - -#define dgHorseGanonSkelLimbsLimb_008474DL_0060F0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008474DL_0060F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008474DL_0060F0[] = dgHorseGanonSkelLimbsLimb_008474DL_0060F0; -#else -static const char gHorseGanonSkelLimbsLimb_008474DL_0060F0[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008474DL_0060F0; -#endif - -#define dgHorseGanonSkelLimbsLimb_008484DL_009790 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008484DL_009790" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008484DL_009790[] = dgHorseGanonSkelLimbsLimb_008484DL_009790; -#else -static const char gHorseGanonSkelLimbsLimb_008484DL_009790[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008484DL_009790; -#endif - -#define dgHorseGanonSkelLimbsLimb_0084F4DL_001630 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_0084F4DL_001630" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_0084F4DL_001630[] = dgHorseGanonSkelLimbsLimb_0084F4DL_001630; -#else -static const char gHorseGanonSkelLimbsLimb_0084F4DL_001630[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_0084F4DL_001630; -#endif - -#define dgHorseGanonSkelLimbsLimb_008504DL_001880 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008504DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008504DL_001880[] = dgHorseGanonSkelLimbsLimb_008504DL_001880; -#else -static const char gHorseGanonSkelLimbsLimb_008504DL_001880[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008504DL_001880; -#endif - -#define dgHorseGanonSkelLimbsLimb_008574DL_001A90 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008574DL_001A90" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008574DL_001A90[] = dgHorseGanonSkelLimbsLimb_008574DL_001A90; -#else -static const char gHorseGanonSkelLimbsLimb_008574DL_001A90[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008574DL_001A90; -#endif - -#define dgHorseGanonSkelLimbsLimb_008584DL_001CE0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008584DL_001CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseGanonSkelLimbsLimb_008584DL_001CE0[] = dgHorseGanonSkelLimbsLimb_008584DL_001CE0; -#else -static const char gHorseGanonSkelLimbsLimb_008584DL_001CE0[] __attribute__((aligned (2))) = dgHorseGanonSkelLimbsLimb_008584DL_001CE0; -#endif - -#define dgHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20" -#define dobject_horse_ganonTex_00B510 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B510" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00B510[] = dobject_horse_ganonTex_00B510; -#else -static const char object_horse_ganonTex_00B510[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00B510; -#endif - -#define dobject_horse_ganonTex_00B110 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B110" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00B110[] = dobject_horse_ganonTex_00B110; -#else -static const char object_horse_ganonTex_00B110[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00B110; -#endif - -#define dobject_horse_ganonTex_00A570 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00A570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00A570[] = dobject_horse_ganonTex_00A570; -#else -static const char object_horse_ganonTex_00A570[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00A570; -#endif - -#define dobject_horse_ganonTex_00A810 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00A810" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00A810[] = dobject_horse_ganonTex_00A810; -#else -static const char object_horse_ganonTex_00A810[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00A810; -#endif - -#define dobject_horse_ganonTex_00B690 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B690" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00B690[] = dobject_horse_ganonTex_00B690; -#else -static const char object_horse_ganonTex_00B690[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00B690; -#endif - -#define dobject_horse_ganonTex_00B610 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B610" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_ganonTex_00B610[] = dobject_horse_ganonTex_00B610; -#else -static const char object_horse_ganonTex_00B610[] __attribute__((aligned (2))) = dobject_horse_ganonTex_00B610; -#endif - +#include "align_asset_macro.h" + +#define dgHorseGanonSkel "__OTR__objects/object_horse_ganon/gHorseGanonSkel" +static const ALIGN_ASSET(2) char gHorseGanonSkel[] = dgHorseGanonSkel; + +#define dgHorseGanonIdleAnim "__OTR__objects/object_horse_ganon/gHorseGanonIdleAnim" +static const ALIGN_ASSET(2) char gHorseGanonIdleAnim[] = dgHorseGanonIdleAnim; + +#define dgHorseGanonWhinnyAnim "__OTR__objects/object_horse_ganon/gHorseGanonWhinnyAnim" +static const ALIGN_ASSET(2) char gHorseGanonWhinnyAnim[] = dgHorseGanonWhinnyAnim; + +#define dgHorseGanonWalkingAnim "__OTR__objects/object_horse_ganon/gHorseGanonWalkingAnim" +static const ALIGN_ASSET(2) char gHorseGanonWalkingAnim[] = dgHorseGanonWalkingAnim; + +#define dgHorseGanonTrottingAnim "__OTR__objects/object_horse_ganon/gHorseGanonTrottingAnim" +static const ALIGN_ASSET(2) char gHorseGanonTrottingAnim[] = dgHorseGanonTrottingAnim; + +#define dgHorseGanonGallopingAnim "__OTR__objects/object_horse_ganon/gHorseGanonGallopingAnim" +static const ALIGN_ASSET(2) char gHorseGanonGallopingAnim[] = dgHorseGanonGallopingAnim; + +#define dgHorseGanonRearingAnim "__OTR__objects/object_horse_ganon/gHorseGanonRearingAnim" +static const ALIGN_ASSET(2) char gHorseGanonRearingAnim[] = dgHorseGanonRearingAnim; + +#define dgHorseGanonEyeTex "__OTR__objects/object_horse_ganon/gHorseGanonEyeTex" +static const ALIGN_ASSET(2) char gHorseGanonEyeTex[] = dgHorseGanonEyeTex; + +#define dgHorseGanonHeadHairTex "__OTR__objects/object_horse_ganon/gHorseGanonHeadHairTex" +static const ALIGN_ASSET(2) char gHorseGanonHeadHairTex[] = dgHorseGanonHeadHairTex; + +#define dgHorseGanonLegTex "__OTR__objects/object_horse_ganon/gHorseGanonLegTex" +static const ALIGN_ASSET(2) char gHorseGanonLegTex[] = dgHorseGanonLegTex; + +#define dobject_horse_ganonTex_00BE90 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00BE90" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00BE90[] = dobject_horse_ganonTex_00BE90; + +#define dobject_horse_ganonTex_00A7F0 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00A7F0" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00A7F0[] = dobject_horse_ganonTex_00A7F0; + +#define dobject_horse_ganonTex_00B010 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B010" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00B010[] = dobject_horse_ganonTex_00B010; + +#define dobject_horse_ganonTex_00A5F0 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00A5F0" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00A5F0[] = dobject_horse_ganonTex_00A5F0; + +#define dobject_horse_ganonTex_00AA10 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00AA10" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00AA10[] = dobject_horse_ganonTex_00AA10; + +#define dgHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20[] = dgHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20; + +#define dgHorseGanonSkelLimbsLimb_008314DL_0090F0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008314DL_0090F0" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008314DL_0090F0[] = dgHorseGanonSkelLimbsLimb_008314DL_0090F0; + +#define dgHorseGanonSkelLimbsLimb_008324DL_009BE0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008324DL_009BE0" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008324DL_009BE0[] = dgHorseGanonSkelLimbsLimb_008324DL_009BE0; + +#define dgHorseGanonSkelLimbsLimb_008394DL_0001C0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008394DL_0001C0" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008394DL_0001C0[] = dgHorseGanonSkelLimbsLimb_008394DL_0001C0; + +#define dgHorseGanonSkelLimbsLimb_0083A4DL_000430 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_0083A4DL_000430" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_0083A4DL_000430[] = dgHorseGanonSkelLimbsLimb_0083A4DL_000430; + +#define dgHorseGanonSkelLimbsLimb_0083B4DL_0007E0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_0083B4DL_0007E0" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_0083B4DL_0007E0[] = dgHorseGanonSkelLimbsLimb_0083B4DL_0007E0; + +#define dgHorseGanonSkelLimbsLimb_0083C4DL_0013D0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_0083C4DL_0013D0" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_0083C4DL_0013D0[] = dgHorseGanonSkelLimbsLimb_0083C4DL_0013D0; + +#define dgHorseGanonSkelLimbsLimb_008434DL_000AE0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008434DL_000AE0" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008434DL_000AE0[] = dgHorseGanonSkelLimbsLimb_008434DL_000AE0; + +#define dgHorseGanonSkelLimbsLimb_008444DL_000D50 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008444DL_000D50" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008444DL_000D50[] = dgHorseGanonSkelLimbsLimb_008444DL_000D50; + +#define dgHorseGanonSkelLimbsLimb_008454DL_001100 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008454DL_001100" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008454DL_001100[] = dgHorseGanonSkelLimbsLimb_008454DL_001100; + +#define dgHorseGanonSkelLimbsLimb_008464DL_001F20 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008464DL_001F20" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008464DL_001F20[] = dgHorseGanonSkelLimbsLimb_008464DL_001F20; + +#define dgHorseGanonSkelLimbsLimb_008474DL_0060F0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008474DL_0060F0" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008474DL_0060F0[] = dgHorseGanonSkelLimbsLimb_008474DL_0060F0; + +#define dgHorseGanonSkelLimbsLimb_008484DL_009790 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008484DL_009790" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008484DL_009790[] = dgHorseGanonSkelLimbsLimb_008484DL_009790; + +#define dgHorseGanonSkelLimbsLimb_0084F4DL_001630 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_0084F4DL_001630" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_0084F4DL_001630[] = dgHorseGanonSkelLimbsLimb_0084F4DL_001630; + +#define dgHorseGanonSkelLimbsLimb_008504DL_001880 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008504DL_001880" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008504DL_001880[] = dgHorseGanonSkelLimbsLimb_008504DL_001880; + +#define dgHorseGanonSkelLimbsLimb_008574DL_001A90 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008574DL_001A90" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008574DL_001A90[] = dgHorseGanonSkelLimbsLimb_008574DL_001A90; + +#define dgHorseGanonSkelLimbsLimb_008584DL_001CE0 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008584DL_001CE0" +static const ALIGN_ASSET(2) char gHorseGanonSkelLimbsLimb_008584DL_001CE0[] = dgHorseGanonSkelLimbsLimb_008584DL_001CE0; + +#define dgHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20 "__OTR__objects/object_horse_ganon/gHorseGanonSkelLimbsLimb_008294SkinLimbDL_009D20" + +#define dobject_horse_ganonTex_00B510 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B510" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00B510[] = dobject_horse_ganonTex_00B510; + +#define dobject_horse_ganonTex_00B110 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B110" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00B110[] = dobject_horse_ganonTex_00B110; + +#define dobject_horse_ganonTex_00A570 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00A570" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00A570[] = dobject_horse_ganonTex_00A570; + +#define dobject_horse_ganonTex_00A810 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00A810" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00A810[] = dobject_horse_ganonTex_00A810; + +#define dobject_horse_ganonTex_00B690 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B690" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00B690[] = dobject_horse_ganonTex_00B690; + +#define dobject_horse_ganonTex_00B610 "__OTR__objects/object_horse_ganon/object_horse_ganonTex_00B610" +static const ALIGN_ASSET(2) char object_horse_ganonTex_00B610[] = dobject_horse_ganonTex_00B610; \ No newline at end of file diff --git a/soh/assets/objects/object_horse_link_child/object_horse_link_child.h b/soh/assets/objects/object_horse_link_child/object_horse_link_child.h index dc47eae1e..b9bd05bab 100644 --- a/soh/assets/objects/object_horse_link_child/object_horse_link_child.h +++ b/soh/assets/objects/object_horse_link_child/object_horse_link_child.h @@ -1,206 +1,92 @@ #pragma once -#define dgChildEponaSkel "__OTR__objects/object_horse_link_child/gChildEponaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkel[] = dgChildEponaSkel; -#else -static const char gChildEponaSkel[] __attribute__((aligned (2))) = dgChildEponaSkel; -#endif - -#define dgChildEponaIdleAnim "__OTR__objects/object_horse_link_child/gChildEponaIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaIdleAnim[] = dgChildEponaIdleAnim; -#else -static const char gChildEponaIdleAnim[] __attribute__((aligned (2))) = dgChildEponaIdleAnim; -#endif - -#define dgChildEponaWhinnyAnim "__OTR__objects/object_horse_link_child/gChildEponaWhinnyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaWhinnyAnim[] = dgChildEponaWhinnyAnim; -#else -static const char gChildEponaWhinnyAnim[] __attribute__((aligned (2))) = dgChildEponaWhinnyAnim; -#endif - -#define dgChildEponaWalkingAnim "__OTR__objects/object_horse_link_child/gChildEponaWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaWalkingAnim[] = dgChildEponaWalkingAnim; -#else -static const char gChildEponaWalkingAnim[] __attribute__((aligned (2))) = dgChildEponaWalkingAnim; -#endif - -#define dgChildEponaTrottingAnim "__OTR__objects/object_horse_link_child/gChildEponaTrottingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaTrottingAnim[] = dgChildEponaTrottingAnim; -#else -static const char gChildEponaTrottingAnim[] __attribute__((aligned (2))) = dgChildEponaTrottingAnim; -#endif - -#define dgChildEponaGallopingAnim "__OTR__objects/object_horse_link_child/gChildEponaGallopingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaGallopingAnim[] = dgChildEponaGallopingAnim; -#else -static const char gChildEponaGallopingAnim[] __attribute__((aligned (2))) = dgChildEponaGallopingAnim; -#endif - -#define dgChildEponaEyeTLUT "__OTR__objects/object_horse_link_child/gChildEponaEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaEyeTLUT[] = dgChildEponaEyeTLUT; -#else -static const char gChildEponaEyeTLUT[] __attribute__((aligned (2))) = dgChildEponaEyeTLUT; -#endif - -#define dgChildEponaEyeOpenTex "__OTR__objects/object_horse_link_child/gChildEponaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaEyeOpenTex[] = dgChildEponaEyeOpenTex; -#else -static const char gChildEponaEyeOpenTex[] __attribute__((aligned (2))) = dgChildEponaEyeOpenTex; -#endif - -#define dgChildEponaEyeHalfTex "__OTR__objects/object_horse_link_child/gChildEponaEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaEyeHalfTex[] = dgChildEponaEyeHalfTex; -#else -static const char gChildEponaEyeHalfTex[] __attribute__((aligned (2))) = dgChildEponaEyeHalfTex; -#endif - -#define dgChildEponaEyeCloseTex "__OTR__objects/object_horse_link_child/gChildEponaEyeCloseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaEyeCloseTex[] = dgChildEponaEyeCloseTex; -#else -static const char gChildEponaEyeCloseTex[] __attribute__((aligned (2))) = dgChildEponaEyeCloseTex; -#endif - -#define dobject_horse_link_childTex_002568 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002568" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_002568[] = dobject_horse_link_childTex_002568; -#else -static const char object_horse_link_childTex_002568[] __attribute__((aligned (2))) = dobject_horse_link_childTex_002568; -#endif - -#define dobject_horse_link_childTex_008320 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_008320" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_008320[] = dobject_horse_link_childTex_008320; -#else -static const char object_horse_link_childTex_008320[] __attribute__((aligned (2))) = dobject_horse_link_childTex_008320; -#endif - -#define dobject_horse_link_childTex_002168 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002168" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_002168[] = dobject_horse_link_childTex_002168; -#else -static const char object_horse_link_childTex_002168[] __attribute__((aligned (2))) = dobject_horse_link_childTex_002168; -#endif - -#define dobject_horse_link_childTex_008120 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_008120" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_008120[] = dobject_horse_link_childTex_008120; -#else -static const char object_horse_link_childTex_008120[] __attribute__((aligned (2))) = dobject_horse_link_childTex_008120; -#endif - -#define dobject_horse_link_childTex_001F68 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_001F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_001F68[] = dobject_horse_link_childTex_001F68; -#else -static const char object_horse_link_childTex_001F68[] __attribute__((aligned (2))) = dobject_horse_link_childTex_001F68; -#endif - -#define dgChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30[] = dgChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30; -#else -static const char gChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30; -#endif - -#define dgChildEponaSkelLimbsLimb_007858DL_000C70 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007858DL_000C70" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_007858DL_000C70[] = dgChildEponaSkelLimbsLimb_007858DL_000C70; -#else -static const char gChildEponaSkelLimbsLimb_007858DL_000C70[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_007858DL_000C70; -#endif - -#define dgChildEponaSkelLimbsLimb_0078C8DL_001298 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0078C8DL_001298" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_0078C8DL_001298[] = dgChildEponaSkelLimbsLimb_0078C8DL_001298; -#else -static const char gChildEponaSkelLimbsLimb_0078C8DL_001298[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_0078C8DL_001298; -#endif - -#define dgChildEponaSkelLimbsLimb_0078D8DL_0011E8 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0078D8DL_0011E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_0078D8DL_0011E8[] = dgChildEponaSkelLimbsLimb_0078D8DL_0011E8; -#else -static const char gChildEponaSkelLimbsLimb_0078D8DL_0011E8[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_0078D8DL_0011E8; -#endif - -#define dgChildEponaSkelLimbsLimb_007948DL_0013A8 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007948DL_0013A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_007948DL_0013A8[] = dgChildEponaSkelLimbsLimb_007948DL_0013A8; -#else -static const char gChildEponaSkelLimbsLimb_007948DL_0013A8[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_007948DL_0013A8; -#endif - -#define dgChildEponaSkelLimbsLimb_007958DL_0014B8 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007958DL_0014B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_007958DL_0014B8[] = dgChildEponaSkelLimbsLimb_007958DL_0014B8; -#else -static const char gChildEponaSkelLimbsLimb_007958DL_0014B8[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_007958DL_0014B8; -#endif - -#define dgChildEponaSkelLimbsLimb_0079C8DL_0010D8 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0079C8DL_0010D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_0079C8DL_0010D8[] = dgChildEponaSkelLimbsLimb_0079C8DL_0010D8; -#else -static const char gChildEponaSkelLimbsLimb_0079C8DL_0010D8[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_0079C8DL_0010D8; -#endif - -#define dgChildEponaSkelLimbsLimb_0079D8DL_001028 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0079D8DL_001028" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_0079D8DL_001028[] = dgChildEponaSkelLimbsLimb_0079D8DL_001028; -#else -static const char gChildEponaSkelLimbsLimb_0079D8DL_001028[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_0079D8DL_001028; -#endif - -#define dgChildEponaSkelLimbsLimb_007A48DL_001568 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007A48DL_001568" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_007A48DL_001568[] = dgChildEponaSkelLimbsLimb_007A48DL_001568; -#else -static const char gChildEponaSkelLimbsLimb_007A48DL_001568[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_007A48DL_001568; -#endif - -#define dgChildEponaSkelLimbsLimb_007A58DL_001678 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007A58DL_001678" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildEponaSkelLimbsLimb_007A58DL_001678[] = dgChildEponaSkelLimbsLimb_007A58DL_001678; -#else -static const char gChildEponaSkelLimbsLimb_007A58DL_001678[] __attribute__((aligned (2))) = dgChildEponaSkelLimbsLimb_007A58DL_001678; -#endif - -#define dgChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30" -#define dobject_horse_link_childTex_002788 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002788" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_002788[] = dobject_horse_link_childTex_002788; -#else -static const char object_horse_link_childTex_002788[] __attribute__((aligned (2))) = dobject_horse_link_childTex_002788; -#endif - -#define dobject_horse_link_childTex_002588 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002588" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_002588[] = dobject_horse_link_childTex_002588; -#else -static const char object_horse_link_childTex_002588[] __attribute__((aligned (2))) = dobject_horse_link_childTex_002588; -#endif - -#define dobject_horse_link_childTex_002368 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002368" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_002368[] = dobject_horse_link_childTex_002368; -#else -static const char object_horse_link_childTex_002368[] __attribute__((aligned (2))) = dobject_horse_link_childTex_002368; -#endif - -#define dobject_horse_link_childTex_001F28 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_001F28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_link_childTex_001F28[] = dobject_horse_link_childTex_001F28; -#else -static const char object_horse_link_childTex_001F28[] __attribute__((aligned (2))) = dobject_horse_link_childTex_001F28; -#endif - +#include "align_asset_macro.h" + +#define dgChildEponaSkel "__OTR__objects/object_horse_link_child/gChildEponaSkel" +static const ALIGN_ASSET(2) char gChildEponaSkel[] = dgChildEponaSkel; + +#define dgChildEponaIdleAnim "__OTR__objects/object_horse_link_child/gChildEponaIdleAnim" +static const ALIGN_ASSET(2) char gChildEponaIdleAnim[] = dgChildEponaIdleAnim; + +#define dgChildEponaWhinnyAnim "__OTR__objects/object_horse_link_child/gChildEponaWhinnyAnim" +static const ALIGN_ASSET(2) char gChildEponaWhinnyAnim[] = dgChildEponaWhinnyAnim; + +#define dgChildEponaWalkingAnim "__OTR__objects/object_horse_link_child/gChildEponaWalkingAnim" +static const ALIGN_ASSET(2) char gChildEponaWalkingAnim[] = dgChildEponaWalkingAnim; + +#define dgChildEponaTrottingAnim "__OTR__objects/object_horse_link_child/gChildEponaTrottingAnim" +static const ALIGN_ASSET(2) char gChildEponaTrottingAnim[] = dgChildEponaTrottingAnim; + +#define dgChildEponaGallopingAnim "__OTR__objects/object_horse_link_child/gChildEponaGallopingAnim" +static const ALIGN_ASSET(2) char gChildEponaGallopingAnim[] = dgChildEponaGallopingAnim; + +#define dgChildEponaEyeTLUT "__OTR__objects/object_horse_link_child/gChildEponaEyeTLUT" +static const ALIGN_ASSET(2) char gChildEponaEyeTLUT[] = dgChildEponaEyeTLUT; + +#define dgChildEponaEyeOpenTex "__OTR__objects/object_horse_link_child/gChildEponaEyeOpenTex" +static const ALIGN_ASSET(2) char gChildEponaEyeOpenTex[] = dgChildEponaEyeOpenTex; + +#define dgChildEponaEyeHalfTex "__OTR__objects/object_horse_link_child/gChildEponaEyeHalfTex" +static const ALIGN_ASSET(2) char gChildEponaEyeHalfTex[] = dgChildEponaEyeHalfTex; + +#define dgChildEponaEyeCloseTex "__OTR__objects/object_horse_link_child/gChildEponaEyeCloseTex" +static const ALIGN_ASSET(2) char gChildEponaEyeCloseTex[] = dgChildEponaEyeCloseTex; + +#define dobject_horse_link_childTex_002568 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002568" +static const ALIGN_ASSET(2) char object_horse_link_childTex_002568[] = dobject_horse_link_childTex_002568; + +#define dobject_horse_link_childTex_008320 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_008320" +static const ALIGN_ASSET(2) char object_horse_link_childTex_008320[] = dobject_horse_link_childTex_008320; + +#define dobject_horse_link_childTex_002168 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002168" +static const ALIGN_ASSET(2) char object_horse_link_childTex_002168[] = dobject_horse_link_childTex_002168; + +#define dobject_horse_link_childTex_008120 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_008120" +static const ALIGN_ASSET(2) char object_horse_link_childTex_008120[] = dobject_horse_link_childTex_008120; + +#define dobject_horse_link_childTex_001F68 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_001F68" +static const ALIGN_ASSET(2) char object_horse_link_childTex_001F68[] = dobject_horse_link_childTex_001F68; + +#define dgChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30[] = dgChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30; + +#define dgChildEponaSkelLimbsLimb_007858DL_000C70 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007858DL_000C70" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_007858DL_000C70[] = dgChildEponaSkelLimbsLimb_007858DL_000C70; + +#define dgChildEponaSkelLimbsLimb_0078C8DL_001298 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0078C8DL_001298" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_0078C8DL_001298[] = dgChildEponaSkelLimbsLimb_0078C8DL_001298; + +#define dgChildEponaSkelLimbsLimb_0078D8DL_0011E8 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0078D8DL_0011E8" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_0078D8DL_0011E8[] = dgChildEponaSkelLimbsLimb_0078D8DL_0011E8; + +#define dgChildEponaSkelLimbsLimb_007948DL_0013A8 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007948DL_0013A8" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_007948DL_0013A8[] = dgChildEponaSkelLimbsLimb_007948DL_0013A8; + +#define dgChildEponaSkelLimbsLimb_007958DL_0014B8 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007958DL_0014B8" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_007958DL_0014B8[] = dgChildEponaSkelLimbsLimb_007958DL_0014B8; + +#define dgChildEponaSkelLimbsLimb_0079C8DL_0010D8 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0079C8DL_0010D8" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_0079C8DL_0010D8[] = dgChildEponaSkelLimbsLimb_0079C8DL_0010D8; + +#define dgChildEponaSkelLimbsLimb_0079D8DL_001028 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0079D8DL_001028" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_0079D8DL_001028[] = dgChildEponaSkelLimbsLimb_0079D8DL_001028; + +#define dgChildEponaSkelLimbsLimb_007A48DL_001568 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007A48DL_001568" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_007A48DL_001568[] = dgChildEponaSkelLimbsLimb_007A48DL_001568; + +#define dgChildEponaSkelLimbsLimb_007A58DL_001678 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_007A58DL_001678" +static const ALIGN_ASSET(2) char gChildEponaSkelLimbsLimb_007A58DL_001678[] = dgChildEponaSkelLimbsLimb_007A58DL_001678; + +#define dgChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30 "__OTR__objects/object_horse_link_child/gChildEponaSkelLimbsLimb_0077D8SkinLimbDL_007B30" + +#define dobject_horse_link_childTex_002788 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002788" +static const ALIGN_ASSET(2) char object_horse_link_childTex_002788[] = dobject_horse_link_childTex_002788; + +#define dobject_horse_link_childTex_002588 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002588" +static const ALIGN_ASSET(2) char object_horse_link_childTex_002588[] = dobject_horse_link_childTex_002588; + +#define dobject_horse_link_childTex_002368 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_002368" +static const ALIGN_ASSET(2) char object_horse_link_childTex_002368[] = dobject_horse_link_childTex_002368; + +#define dobject_horse_link_childTex_001F28 "__OTR__objects/object_horse_link_child/object_horse_link_childTex_001F28" +static const ALIGN_ASSET(2) char object_horse_link_childTex_001F28[] = dobject_horse_link_childTex_001F28; \ No newline at end of file diff --git a/soh/assets/objects/object_horse_normal/object_horse_normal.h b/soh/assets/objects/object_horse_normal/object_horse_normal.h index 20c791023..3e6337f01 100644 --- a/soh/assets/objects/object_horse_normal/object_horse_normal.h +++ b/soh/assets/objects/object_horse_normal/object_horse_normal.h @@ -1,206 +1,92 @@ #pragma once -#define dgHorseNormalSkel "__OTR__objects/object_horse_normal/gHorseNormalSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkel[] = dgHorseNormalSkel; -#else -static const char gHorseNormalSkel[] __attribute__((aligned (2))) = dgHorseNormalSkel; -#endif - -#define dgHorseNormalGallopingAnim "__OTR__objects/object_horse_normal/gHorseNormalGallopingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalGallopingAnim[] = dgHorseNormalGallopingAnim; -#else -static const char gHorseNormalGallopingAnim[] __attribute__((aligned (2))) = dgHorseNormalGallopingAnim; -#endif - -#define dgHorseNormalJumpingAnim "__OTR__objects/object_horse_normal/gHorseNormalJumpingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalJumpingAnim[] = dgHorseNormalJumpingAnim; -#else -static const char gHorseNormalJumpingAnim[] __attribute__((aligned (2))) = dgHorseNormalJumpingAnim; -#endif - -#define dgHorseNormalJumpingHighAnim "__OTR__objects/object_horse_normal/gHorseNormalJumpingHighAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalJumpingHighAnim[] = dgHorseNormalJumpingHighAnim; -#else -static const char gHorseNormalJumpingHighAnim[] __attribute__((aligned (2))) = dgHorseNormalJumpingHighAnim; -#endif - -#define dgHorseNormalTrottingAnim "__OTR__objects/object_horse_normal/gHorseNormalTrottingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalTrottingAnim[] = dgHorseNormalTrottingAnim; -#else -static const char gHorseNormalTrottingAnim[] __attribute__((aligned (2))) = dgHorseNormalTrottingAnim; -#endif - -#define dgHorseNormalRearingAnim "__OTR__objects/object_horse_normal/gHorseNormalRearingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalRearingAnim[] = dgHorseNormalRearingAnim; -#else -static const char gHorseNormalRearingAnim[] __attribute__((aligned (2))) = dgHorseNormalRearingAnim; -#endif - -#define dgHorseNormalRefuseAnim "__OTR__objects/object_horse_normal/gHorseNormalRefuseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalRefuseAnim[] = dgHorseNormalRefuseAnim; -#else -static const char gHorseNormalRefuseAnim[] __attribute__((aligned (2))) = dgHorseNormalRefuseAnim; -#endif - -#define dgHorseNormalIdleAnim "__OTR__objects/object_horse_normal/gHorseNormalIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalIdleAnim[] = dgHorseNormalIdleAnim; -#else -static const char gHorseNormalIdleAnim[] __attribute__((aligned (2))) = dgHorseNormalIdleAnim; -#endif - -#define dgHorseNormalWhinnyAnim "__OTR__objects/object_horse_normal/gHorseNormalWhinnyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalWhinnyAnim[] = dgHorseNormalWhinnyAnim; -#else -static const char gHorseNormalWhinnyAnim[] __attribute__((aligned (2))) = dgHorseNormalWhinnyAnim; -#endif - -#define dgHorseNormalWalkingAnim "__OTR__objects/object_horse_normal/gHorseNormalWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalWalkingAnim[] = dgHorseNormalWalkingAnim; -#else -static const char gHorseNormalWalkingAnim[] __attribute__((aligned (2))) = dgHorseNormalWalkingAnim; -#endif - -#define dgHorseNormalEyeTex "__OTR__objects/object_horse_normal/gHorseNormalEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalEyeTex[] = dgHorseNormalEyeTex; -#else -static const char gHorseNormalEyeTex[] __attribute__((aligned (2))) = dgHorseNormalEyeTex; -#endif - -#define dobject_horse_normalTex_005B98 "__OTR__objects/object_horse_normal/object_horse_normalTex_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_normalTex_005B98[] = dobject_horse_normalTex_005B98; -#else -static const char object_horse_normalTex_005B98[] __attribute__((aligned (2))) = dobject_horse_normalTex_005B98; -#endif - -#define dobject_horse_normalTex_007128 "__OTR__objects/object_horse_normal/object_horse_normalTex_007128" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_normalTex_007128[] = dobject_horse_normalTex_007128; -#else -static const char object_horse_normalTex_007128[] __attribute__((aligned (2))) = dobject_horse_normalTex_007128; -#endif - -#define dobject_horse_normalTex_007028 "__OTR__objects/object_horse_normal/object_horse_normalTex_007028" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_normalTex_007028[] = dobject_horse_normalTex_007028; -#else -static const char object_horse_normalTex_007028[] __attribute__((aligned (2))) = dobject_horse_normalTex_007028; -#endif - -#define dobject_horse_normalTex_006F28 "__OTR__objects/object_horse_normal/object_horse_normalTex_006F28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_normalTex_006F28[] = dobject_horse_normalTex_006F28; -#else -static const char object_horse_normalTex_006F28[] __attribute__((aligned (2))) = dobject_horse_normalTex_006F28; -#endif - -#define dobject_horse_normalTex_0058D8 "__OTR__objects/object_horse_normal/object_horse_normalTex_0058D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_normalTex_0058D8[] = dobject_horse_normalTex_0058D8; -#else -static const char object_horse_normalTex_0058D8[] __attribute__((aligned (2))) = dobject_horse_normalTex_0058D8; -#endif - -#define dgHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528[] = dgHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528; -#else -static const char gHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528; -#endif - -#define dgHorseNormalSkelLimbsLimb_009CE4DL_006C08 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009CE4DL_006C08" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009CE4DL_006C08[] = dgHorseNormalSkelLimbsLimb_009CE4DL_006C08; -#else -static const char gHorseNormalSkelLimbsLimb_009CE4DL_006C08[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009CE4DL_006C08; -#endif - -#define dgHorseNormalSkelLimbsLimb_009D54DL_006B50 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009D54DL_006B50" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009D54DL_006B50[] = dgHorseNormalSkelLimbsLimb_009D54DL_006B50; -#else -static const char gHorseNormalSkelLimbsLimb_009D54DL_006B50[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009D54DL_006B50; -#endif - -#define dgHorseNormalSkelLimbsLimb_009D64DL_006AD8 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009D64DL_006AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009D64DL_006AD8[] = dgHorseNormalSkelLimbsLimb_009D64DL_006AD8; -#else -static const char gHorseNormalSkelLimbsLimb_009D64DL_006AD8[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009D64DL_006AD8; -#endif - -#define dgHorseNormalSkelLimbsLimb_009DD4DL_0067C0 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009DD4DL_0067C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009DD4DL_0067C0[] = dgHorseNormalSkelLimbsLimb_009DD4DL_0067C0; -#else -static const char gHorseNormalSkelLimbsLimb_009DD4DL_0067C0[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009DD4DL_0067C0; -#endif - -#define dgHorseNormalSkelLimbsLimb_009DE4DL_006748 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009DE4DL_006748" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009DE4DL_006748[] = dgHorseNormalSkelLimbsLimb_009DE4DL_006748; -#else -static const char gHorseNormalSkelLimbsLimb_009DE4DL_006748[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009DE4DL_006748; -#endif - -#define dgHorseNormalSkelLimbsLimb_009E54DL_006A20 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009E54DL_006A20" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009E54DL_006A20[] = dgHorseNormalSkelLimbsLimb_009E54DL_006A20; -#else -static const char gHorseNormalSkelLimbsLimb_009E54DL_006A20[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009E54DL_006A20; -#endif - -#define dgHorseNormalSkelLimbsLimb_009E64DL_0069A8 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009E64DL_0069A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009E64DL_0069A8[] = dgHorseNormalSkelLimbsLimb_009E64DL_0069A8; -#else -static const char gHorseNormalSkelLimbsLimb_009E64DL_0069A8[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009E64DL_0069A8; -#endif - -#define dgHorseNormalSkelLimbsLimb_009ED4DL_0068F0 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009ED4DL_0068F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009ED4DL_0068F0[] = dgHorseNormalSkelLimbsLimb_009ED4DL_0068F0; -#else -static const char gHorseNormalSkelLimbsLimb_009ED4DL_0068F0[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009ED4DL_0068F0; -#endif - -#define dgHorseNormalSkelLimbsLimb_009EE4DL_006878 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009EE4DL_006878" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseNormalSkelLimbsLimb_009EE4DL_006878[] = dgHorseNormalSkelLimbsLimb_009EE4DL_006878; -#else -static const char gHorseNormalSkelLimbsLimb_009EE4DL_006878[] __attribute__((aligned (2))) = dgHorseNormalSkelLimbsLimb_009EE4DL_006878; -#endif - -#define dgHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528" -#define dobject_horse_normalTex_005918 "__OTR__objects/object_horse_normal/object_horse_normalTex_005918" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_normalTex_005918[] = dobject_horse_normalTex_005918; -#else -static const char object_horse_normalTex_005918[] __attribute__((aligned (2))) = dobject_horse_normalTex_005918; -#endif - -#define dobject_horse_normalTex_005C98 "__OTR__objects/object_horse_normal/object_horse_normalTex_005C98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_normalTex_005C98[] = dobject_horse_normalTex_005C98; -#else -static const char object_horse_normalTex_005C98[] __attribute__((aligned (2))) = dobject_horse_normalTex_005C98; -#endif - -#define dobject_horse_normalTex_005B18 "__OTR__objects/object_horse_normal/object_horse_normalTex_005B18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_normalTex_005B18[] = dobject_horse_normalTex_005B18; -#else -static const char object_horse_normalTex_005B18[] __attribute__((aligned (2))) = dobject_horse_normalTex_005B18; -#endif - +#include "align_asset_macro.h" + +#define dgHorseNormalSkel "__OTR__objects/object_horse_normal/gHorseNormalSkel" +static const ALIGN_ASSET(2) char gHorseNormalSkel[] = dgHorseNormalSkel; + +#define dgHorseNormalGallopingAnim "__OTR__objects/object_horse_normal/gHorseNormalGallopingAnim" +static const ALIGN_ASSET(2) char gHorseNormalGallopingAnim[] = dgHorseNormalGallopingAnim; + +#define dgHorseNormalJumpingAnim "__OTR__objects/object_horse_normal/gHorseNormalJumpingAnim" +static const ALIGN_ASSET(2) char gHorseNormalJumpingAnim[] = dgHorseNormalJumpingAnim; + +#define dgHorseNormalJumpingHighAnim "__OTR__objects/object_horse_normal/gHorseNormalJumpingHighAnim" +static const ALIGN_ASSET(2) char gHorseNormalJumpingHighAnim[] = dgHorseNormalJumpingHighAnim; + +#define dgHorseNormalTrottingAnim "__OTR__objects/object_horse_normal/gHorseNormalTrottingAnim" +static const ALIGN_ASSET(2) char gHorseNormalTrottingAnim[] = dgHorseNormalTrottingAnim; + +#define dgHorseNormalRearingAnim "__OTR__objects/object_horse_normal/gHorseNormalRearingAnim" +static const ALIGN_ASSET(2) char gHorseNormalRearingAnim[] = dgHorseNormalRearingAnim; + +#define dgHorseNormalRefuseAnim "__OTR__objects/object_horse_normal/gHorseNormalRefuseAnim" +static const ALIGN_ASSET(2) char gHorseNormalRefuseAnim[] = dgHorseNormalRefuseAnim; + +#define dgHorseNormalIdleAnim "__OTR__objects/object_horse_normal/gHorseNormalIdleAnim" +static const ALIGN_ASSET(2) char gHorseNormalIdleAnim[] = dgHorseNormalIdleAnim; + +#define dgHorseNormalWhinnyAnim "__OTR__objects/object_horse_normal/gHorseNormalWhinnyAnim" +static const ALIGN_ASSET(2) char gHorseNormalWhinnyAnim[] = dgHorseNormalWhinnyAnim; + +#define dgHorseNormalWalkingAnim "__OTR__objects/object_horse_normal/gHorseNormalWalkingAnim" +static const ALIGN_ASSET(2) char gHorseNormalWalkingAnim[] = dgHorseNormalWalkingAnim; + +#define dgHorseNormalEyeTex "__OTR__objects/object_horse_normal/gHorseNormalEyeTex" +static const ALIGN_ASSET(2) char gHorseNormalEyeTex[] = dgHorseNormalEyeTex; + +#define dobject_horse_normalTex_005B98 "__OTR__objects/object_horse_normal/object_horse_normalTex_005B98" +static const ALIGN_ASSET(2) char object_horse_normalTex_005B98[] = dobject_horse_normalTex_005B98; + +#define dobject_horse_normalTex_007128 "__OTR__objects/object_horse_normal/object_horse_normalTex_007128" +static const ALIGN_ASSET(2) char object_horse_normalTex_007128[] = dobject_horse_normalTex_007128; + +#define dobject_horse_normalTex_007028 "__OTR__objects/object_horse_normal/object_horse_normalTex_007028" +static const ALIGN_ASSET(2) char object_horse_normalTex_007028[] = dobject_horse_normalTex_007028; + +#define dobject_horse_normalTex_006F28 "__OTR__objects/object_horse_normal/object_horse_normalTex_006F28" +static const ALIGN_ASSET(2) char object_horse_normalTex_006F28[] = dobject_horse_normalTex_006F28; + +#define dobject_horse_normalTex_0058D8 "__OTR__objects/object_horse_normal/object_horse_normalTex_0058D8" +static const ALIGN_ASSET(2) char object_horse_normalTex_0058D8[] = dobject_horse_normalTex_0058D8; + +#define dgHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528[] = dgHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528; + +#define dgHorseNormalSkelLimbsLimb_009CE4DL_006C08 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009CE4DL_006C08" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009CE4DL_006C08[] = dgHorseNormalSkelLimbsLimb_009CE4DL_006C08; + +#define dgHorseNormalSkelLimbsLimb_009D54DL_006B50 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009D54DL_006B50" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009D54DL_006B50[] = dgHorseNormalSkelLimbsLimb_009D54DL_006B50; + +#define dgHorseNormalSkelLimbsLimb_009D64DL_006AD8 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009D64DL_006AD8" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009D64DL_006AD8[] = dgHorseNormalSkelLimbsLimb_009D64DL_006AD8; + +#define dgHorseNormalSkelLimbsLimb_009DD4DL_0067C0 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009DD4DL_0067C0" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009DD4DL_0067C0[] = dgHorseNormalSkelLimbsLimb_009DD4DL_0067C0; + +#define dgHorseNormalSkelLimbsLimb_009DE4DL_006748 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009DE4DL_006748" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009DE4DL_006748[] = dgHorseNormalSkelLimbsLimb_009DE4DL_006748; + +#define dgHorseNormalSkelLimbsLimb_009E54DL_006A20 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009E54DL_006A20" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009E54DL_006A20[] = dgHorseNormalSkelLimbsLimb_009E54DL_006A20; + +#define dgHorseNormalSkelLimbsLimb_009E64DL_0069A8 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009E64DL_0069A8" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009E64DL_0069A8[] = dgHorseNormalSkelLimbsLimb_009E64DL_0069A8; + +#define dgHorseNormalSkelLimbsLimb_009ED4DL_0068F0 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009ED4DL_0068F0" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009ED4DL_0068F0[] = dgHorseNormalSkelLimbsLimb_009ED4DL_0068F0; + +#define dgHorseNormalSkelLimbsLimb_009EE4DL_006878 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009EE4DL_006878" +static const ALIGN_ASSET(2) char gHorseNormalSkelLimbsLimb_009EE4DL_006878[] = dgHorseNormalSkelLimbsLimb_009EE4DL_006878; + +#define dgHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528 "__OTR__objects/object_horse_normal/gHorseNormalSkelLimbsLimb_009C64SkinLimbDL_007528" + +#define dobject_horse_normalTex_005918 "__OTR__objects/object_horse_normal/object_horse_normalTex_005918" +static const ALIGN_ASSET(2) char object_horse_normalTex_005918[] = dobject_horse_normalTex_005918; + +#define dobject_horse_normalTex_005C98 "__OTR__objects/object_horse_normal/object_horse_normalTex_005C98" +static const ALIGN_ASSET(2) char object_horse_normalTex_005C98[] = dobject_horse_normalTex_005C98; + +#define dobject_horse_normalTex_005B18 "__OTR__objects/object_horse_normal/object_horse_normalTex_005B18" +static const ALIGN_ASSET(2) char object_horse_normalTex_005B18[] = dobject_horse_normalTex_005B18; \ No newline at end of file diff --git a/soh/assets/objects/object_horse_zelda/object_horse_zelda.h b/soh/assets/objects/object_horse_zelda/object_horse_zelda.h index ea945c32e..d386a4d98 100644 --- a/soh/assets/objects/object_horse_zelda/object_horse_zelda.h +++ b/soh/assets/objects/object_horse_zelda/object_horse_zelda.h @@ -1,199 +1,89 @@ #pragma once -#define dgHorseZeldaSkel "__OTR__objects/object_horse_zelda/gHorseZeldaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkel[] = dgHorseZeldaSkel; -#else -static const char gHorseZeldaSkel[] __attribute__((aligned (2))) = dgHorseZeldaSkel; -#endif - -#define dgHorseZeldaGallopingAnim "__OTR__objects/object_horse_zelda/gHorseZeldaGallopingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaGallopingAnim[] = dgHorseZeldaGallopingAnim; -#else -static const char gHorseZeldaGallopingAnim[] __attribute__((aligned (2))) = dgHorseZeldaGallopingAnim; -#endif - -#define dgHorseZeldaEyeTex "__OTR__objects/object_horse_zelda/gHorseZeldaEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaEyeTex[] = dgHorseZeldaEyeTex; -#else -static const char gHorseZeldaEyeTex[] __attribute__((aligned (2))) = dgHorseZeldaEyeTex; -#endif - -#define dgHorseZeldaHeadHairTex "__OTR__objects/object_horse_zelda/gHorseZeldaHeadHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaHeadHairTex[] = dgHorseZeldaHeadHairTex; -#else -static const char gHorseZeldaHeadHairTex[] __attribute__((aligned (2))) = dgHorseZeldaHeadHairTex; -#endif - -#define dgHorseZeldaNoseTex "__OTR__objects/object_horse_zelda/gHorseZeldaNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaNoseTex[] = dgHorseZeldaNoseTex; -#else -static const char gHorseZeldaNoseTex[] __attribute__((aligned (2))) = dgHorseZeldaNoseTex; -#endif - -#define dgHorseZeldaLegTex "__OTR__objects/object_horse_zelda/gHorseZeldaLegTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaLegTex[] = dgHorseZeldaLegTex; -#else -static const char gHorseZeldaLegTex[] __attribute__((aligned (2))) = dgHorseZeldaLegTex; -#endif - -#define dobject_horse_zeldaTex_0034F8 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_0034F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_0034F8[] = dobject_horse_zeldaTex_0034F8; -#else -static const char object_horse_zeldaTex_0034F8[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_0034F8; -#endif - -#define dobject_horse_zeldaTex_0033F8 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_0033F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_0033F8[] = dobject_horse_zeldaTex_0033F8; -#else -static const char object_horse_zeldaTex_0033F8[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_0033F8; -#endif - -#define dobject_horse_zeldaTex_003378 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_003378" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_003378[] = dobject_horse_zeldaTex_003378; -#else -static const char object_horse_zeldaTex_003378[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_003378; -#endif - -#define dobject_horse_zeldaTex_003278 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_003278" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_003278[] = dobject_horse_zeldaTex_003278; -#else -static const char object_horse_zeldaTex_003278[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_003278; -#endif - -#define dobject_horse_zeldaTex_003178 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_003178" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_003178[] = dobject_horse_zeldaTex_003178; -#else -static const char object_horse_zeldaTex_003178[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_003178; -#endif - -#define dobject_horse_zeldaTex_002978 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_002978" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_002978[] = dobject_horse_zeldaTex_002978; -#else -static const char object_horse_zeldaTex_002978[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_002978; -#endif - -#define dobject_horse_zeldaTex_002778 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_002778" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_002778[] = dobject_horse_zeldaTex_002778; -#else -static const char object_horse_zeldaTex_002778[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_002778; -#endif - -#define dobject_horse_zeldaTex_002678 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_002678" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_002678[] = dobject_horse_zeldaTex_002678; -#else -static const char object_horse_zeldaTex_002678[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_002678; -#endif - -#define dobject_horse_zeldaTex_002578 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_002578" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_002578[] = dobject_horse_zeldaTex_002578; -#else -static const char object_horse_zeldaTex_002578[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_002578; -#endif - -#define dgHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8[] = dgHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8; -#else -static const char gHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8; -#endif - -#define dgHorseZeldaSkelLimbsLimb_006864DL_002258 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006864DL_002258" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_006864DL_002258[] = dgHorseZeldaSkelLimbsLimb_006864DL_002258; -#else -static const char gHorseZeldaSkelLimbsLimb_006864DL_002258[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_006864DL_002258; -#endif - -#define dgHorseZeldaSkelLimbsLimb_0068D4DL_001DA0 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0068D4DL_001DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_0068D4DL_001DA0[] = dgHorseZeldaSkelLimbsLimb_0068D4DL_001DA0; -#else -static const char gHorseZeldaSkelLimbsLimb_0068D4DL_001DA0[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_0068D4DL_001DA0; -#endif - -#define dgHorseZeldaSkelLimbsLimb_0068E4DL_001CE8 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0068E4DL_001CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_0068E4DL_001CE8[] = dgHorseZeldaSkelLimbsLimb_0068E4DL_001CE8; -#else -static const char gHorseZeldaSkelLimbsLimb_0068E4DL_001CE8[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_0068E4DL_001CE8; -#endif - -#define dgHorseZeldaSkelLimbsLimb_006954DL_001F70 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006954DL_001F70" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_006954DL_001F70[] = dgHorseZeldaSkelLimbsLimb_006954DL_001F70; -#else -static const char gHorseZeldaSkelLimbsLimb_006954DL_001F70[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_006954DL_001F70; -#endif - -#define dgHorseZeldaSkelLimbsLimb_006964DL_001EB8 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006964DL_001EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_006964DL_001EB8[] = dgHorseZeldaSkelLimbsLimb_006964DL_001EB8; -#else -static const char gHorseZeldaSkelLimbsLimb_006964DL_001EB8[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_006964DL_001EB8; -#endif - -#define dgHorseZeldaSkelLimbsLimb_0069D4DL_001BD0 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0069D4DL_001BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_0069D4DL_001BD0[] = dgHorseZeldaSkelLimbsLimb_0069D4DL_001BD0; -#else -static const char gHorseZeldaSkelLimbsLimb_0069D4DL_001BD0[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_0069D4DL_001BD0; -#endif - -#define dgHorseZeldaSkelLimbsLimb_0069E4DL_001B18 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0069E4DL_001B18" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_0069E4DL_001B18[] = dgHorseZeldaSkelLimbsLimb_0069E4DL_001B18; -#else -static const char gHorseZeldaSkelLimbsLimb_0069E4DL_001B18[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_0069E4DL_001B18; -#endif - -#define dgHorseZeldaSkelLimbsLimb_006A54DL_002140 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006A54DL_002140" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_006A54DL_002140[] = dgHorseZeldaSkelLimbsLimb_006A54DL_002140; -#else -static const char gHorseZeldaSkelLimbsLimb_006A54DL_002140[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_006A54DL_002140; -#endif - -#define dgHorseZeldaSkelLimbsLimb_006A64DL_002088 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006A64DL_002088" -#ifdef _WIN32 -static const __declspec(align(2)) char gHorseZeldaSkelLimbsLimb_006A64DL_002088[] = dgHorseZeldaSkelLimbsLimb_006A64DL_002088; -#else -static const char gHorseZeldaSkelLimbsLimb_006A64DL_002088[] __attribute__((aligned (2))) = dgHorseZeldaSkelLimbsLimb_006A64DL_002088; -#endif - -#define dgHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8" -#define dobject_horse_zeldaTex_000988 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_000988" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_000988[] = dobject_horse_zeldaTex_000988; -#else -static const char object_horse_zeldaTex_000988[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_000988; -#endif - -#define dobject_horse_zeldaTex_000888 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_000888" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_000888[] = dobject_horse_zeldaTex_000888; -#else -static const char object_horse_zeldaTex_000888[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_000888; -#endif - -#define dobject_horse_zeldaTex_000408 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_000408" -#ifdef _WIN32 -static const __declspec(align(2)) char object_horse_zeldaTex_000408[] = dobject_horse_zeldaTex_000408; -#else -static const char object_horse_zeldaTex_000408[] __attribute__((aligned (2))) = dobject_horse_zeldaTex_000408; -#endif - +#include "align_asset_macro.h" + +#define dgHorseZeldaSkel "__OTR__objects/object_horse_zelda/gHorseZeldaSkel" +static const ALIGN_ASSET(2) char gHorseZeldaSkel[] = dgHorseZeldaSkel; + +#define dgHorseZeldaGallopingAnim "__OTR__objects/object_horse_zelda/gHorseZeldaGallopingAnim" +static const ALIGN_ASSET(2) char gHorseZeldaGallopingAnim[] = dgHorseZeldaGallopingAnim; + +#define dgHorseZeldaEyeTex "__OTR__objects/object_horse_zelda/gHorseZeldaEyeTex" +static const ALIGN_ASSET(2) char gHorseZeldaEyeTex[] = dgHorseZeldaEyeTex; + +#define dgHorseZeldaHeadHairTex "__OTR__objects/object_horse_zelda/gHorseZeldaHeadHairTex" +static const ALIGN_ASSET(2) char gHorseZeldaHeadHairTex[] = dgHorseZeldaHeadHairTex; + +#define dgHorseZeldaNoseTex "__OTR__objects/object_horse_zelda/gHorseZeldaNoseTex" +static const ALIGN_ASSET(2) char gHorseZeldaNoseTex[] = dgHorseZeldaNoseTex; + +#define dgHorseZeldaLegTex "__OTR__objects/object_horse_zelda/gHorseZeldaLegTex" +static const ALIGN_ASSET(2) char gHorseZeldaLegTex[] = dgHorseZeldaLegTex; + +#define dobject_horse_zeldaTex_0034F8 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_0034F8" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_0034F8[] = dobject_horse_zeldaTex_0034F8; + +#define dobject_horse_zeldaTex_0033F8 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_0033F8" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_0033F8[] = dobject_horse_zeldaTex_0033F8; + +#define dobject_horse_zeldaTex_003378 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_003378" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_003378[] = dobject_horse_zeldaTex_003378; + +#define dobject_horse_zeldaTex_003278 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_003278" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_003278[] = dobject_horse_zeldaTex_003278; + +#define dobject_horse_zeldaTex_003178 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_003178" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_003178[] = dobject_horse_zeldaTex_003178; + +#define dobject_horse_zeldaTex_002978 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_002978" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_002978[] = dobject_horse_zeldaTex_002978; + +#define dobject_horse_zeldaTex_002778 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_002778" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_002778[] = dobject_horse_zeldaTex_002778; + +#define dobject_horse_zeldaTex_002678 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_002678" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_002678[] = dobject_horse_zeldaTex_002678; + +#define dobject_horse_zeldaTex_002578 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_002578" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_002578[] = dobject_horse_zeldaTex_002578; + +#define dgHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8[] = dgHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8; + +#define dgHorseZeldaSkelLimbsLimb_006864DL_002258 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006864DL_002258" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_006864DL_002258[] = dgHorseZeldaSkelLimbsLimb_006864DL_002258; + +#define dgHorseZeldaSkelLimbsLimb_0068D4DL_001DA0 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0068D4DL_001DA0" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_0068D4DL_001DA0[] = dgHorseZeldaSkelLimbsLimb_0068D4DL_001DA0; + +#define dgHorseZeldaSkelLimbsLimb_0068E4DL_001CE8 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0068E4DL_001CE8" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_0068E4DL_001CE8[] = dgHorseZeldaSkelLimbsLimb_0068E4DL_001CE8; + +#define dgHorseZeldaSkelLimbsLimb_006954DL_001F70 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006954DL_001F70" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_006954DL_001F70[] = dgHorseZeldaSkelLimbsLimb_006954DL_001F70; + +#define dgHorseZeldaSkelLimbsLimb_006964DL_001EB8 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006964DL_001EB8" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_006964DL_001EB8[] = dgHorseZeldaSkelLimbsLimb_006964DL_001EB8; + +#define dgHorseZeldaSkelLimbsLimb_0069D4DL_001BD0 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0069D4DL_001BD0" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_0069D4DL_001BD0[] = dgHorseZeldaSkelLimbsLimb_0069D4DL_001BD0; + +#define dgHorseZeldaSkelLimbsLimb_0069E4DL_001B18 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0069E4DL_001B18" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_0069E4DL_001B18[] = dgHorseZeldaSkelLimbsLimb_0069E4DL_001B18; + +#define dgHorseZeldaSkelLimbsLimb_006A54DL_002140 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006A54DL_002140" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_006A54DL_002140[] = dgHorseZeldaSkelLimbsLimb_006A54DL_002140; + +#define dgHorseZeldaSkelLimbsLimb_006A64DL_002088 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_006A64DL_002088" +static const ALIGN_ASSET(2) char gHorseZeldaSkelLimbsLimb_006A64DL_002088[] = dgHorseZeldaSkelLimbsLimb_006A64DL_002088; + +#define dgHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8 "__OTR__objects/object_horse_zelda/gHorseZeldaSkelLimbsLimb_0067E4SkinLimbDL_0036F8" + +#define dobject_horse_zeldaTex_000988 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_000988" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_000988[] = dobject_horse_zeldaTex_000988; + +#define dobject_horse_zeldaTex_000888 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_000888" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_000888[] = dobject_horse_zeldaTex_000888; + +#define dobject_horse_zeldaTex_000408 "__OTR__objects/object_horse_zelda/object_horse_zeldaTex_000408" +static const ALIGN_ASSET(2) char object_horse_zeldaTex_000408[] = dobject_horse_zeldaTex_000408; \ No newline at end of file diff --git a/soh/assets/objects/object_hs/object_hs.h b/soh/assets/objects/object_hs/object_hs.h index ee74c2822..f4a7b4f15 100644 --- a/soh/assets/objects/object_hs/object_hs.h +++ b/soh/assets/objects/object_hs/object_hs.h @@ -1,198 +1,87 @@ #pragma once -#define dobject_hs_Anim_000304 "__OTR__objects/object_hs/object_hs_Anim_000304" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Anim_000304[] = dobject_hs_Anim_000304; -#else -static const char object_hs_Anim_000304[] __attribute__((aligned (2))) = dobject_hs_Anim_000304; -#endif - -#define dobject_hs_Anim_000528 "__OTR__objects/object_hs/object_hs_Anim_000528" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Anim_000528[] = dobject_hs_Anim_000528; -#else -static const char object_hs_Anim_000528[] __attribute__((aligned (2))) = dobject_hs_Anim_000528; -#endif - -#define dobject_hs_Anim_0005C0 "__OTR__objects/object_hs/object_hs_Anim_0005C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Anim_0005C0[] = dobject_hs_Anim_0005C0; -#else -static const char object_hs_Anim_0005C0[] __attribute__((aligned (2))) = dobject_hs_Anim_0005C0; -#endif - -#define dobject_hs_DL_003760 "__OTR__objects/object_hs/object_hs_DL_003760" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_003760[] = dobject_hs_DL_003760; -#else -static const char object_hs_DL_003760[] __attribute__((aligned (2))) = dobject_hs_DL_003760; -#endif - -#define dobject_hs_DL_003AB0 "__OTR__objects/object_hs/object_hs_DL_003AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_003AB0[] = dobject_hs_DL_003AB0; -#else -static const char object_hs_DL_003AB0[] __attribute__((aligned (2))) = dobject_hs_DL_003AB0; -#endif - -#define dobject_hs_DL_004140 "__OTR__objects/object_hs/object_hs_DL_004140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004140[] = dobject_hs_DL_004140; -#else -static const char object_hs_DL_004140[] __attribute__((aligned (2))) = dobject_hs_DL_004140; -#endif - -#define dobject_hs_DL_0042A0 "__OTR__objects/object_hs/object_hs_DL_0042A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_0042A0[] = dobject_hs_DL_0042A0; -#else -static const char object_hs_DL_0042A0[] __attribute__((aligned (2))) = dobject_hs_DL_0042A0; -#endif - -#define dobject_hs_DL_004380 "__OTR__objects/object_hs/object_hs_DL_004380" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004380[] = dobject_hs_DL_004380; -#else -static const char object_hs_DL_004380[] __attribute__((aligned (2))) = dobject_hs_DL_004380; -#endif - -#define dobject_hs_DL_004728 "__OTR__objects/object_hs/object_hs_DL_004728" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004728[] = dobject_hs_DL_004728; -#else -static const char object_hs_DL_004728[] __attribute__((aligned (2))) = dobject_hs_DL_004728; -#endif - -#define dobject_hs_DL_004860 "__OTR__objects/object_hs/object_hs_DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004860[] = dobject_hs_DL_004860; -#else -static const char object_hs_DL_004860[] __attribute__((aligned (2))) = dobject_hs_DL_004860; -#endif - -#define dobject_hs_DL_004960 "__OTR__objects/object_hs/object_hs_DL_004960" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004960[] = dobject_hs_DL_004960; -#else -static const char object_hs_DL_004960[] __attribute__((aligned (2))) = dobject_hs_DL_004960; -#endif - -#define dobject_hs_DL_004AB8 "__OTR__objects/object_hs/object_hs_DL_004AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004AB8[] = dobject_hs_DL_004AB8; -#else -static const char object_hs_DL_004AB8[] __attribute__((aligned (2))) = dobject_hs_DL_004AB8; -#endif - -#define dobject_hs_DL_004BF0 "__OTR__objects/object_hs/object_hs_DL_004BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004BF0[] = dobject_hs_DL_004BF0; -#else -static const char object_hs_DL_004BF0[] __attribute__((aligned (2))) = dobject_hs_DL_004BF0; -#endif - -#define dobject_hs_DL_004CF0 "__OTR__objects/object_hs/object_hs_DL_004CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004CF0[] = dobject_hs_DL_004CF0; -#else -static const char object_hs_DL_004CF0[] __attribute__((aligned (2))) = dobject_hs_DL_004CF0; -#endif - -#define dobject_hs_DL_004CF8 "__OTR__objects/object_hs/object_hs_DL_004CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_DL_004CF8[] = dobject_hs_DL_004CF8; -#else -static const char object_hs_DL_004CF8[] __attribute__((aligned (2))) = dobject_hs_DL_004CF8; -#endif - -#define dobject_hs_TLUT_004E50 "__OTR__objects/object_hs/object_hs_TLUT_004E50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_TLUT_004E50[] = dobject_hs_TLUT_004E50; -#else -static const char object_hs_TLUT_004E50[] __attribute__((aligned (2))) = dobject_hs_TLUT_004E50; -#endif - -#define dobject_hs_Tex_005050 "__OTR__objects/object_hs/object_hs_Tex_005050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005050[] = dobject_hs_Tex_005050; -#else -static const char object_hs_Tex_005050[] __attribute__((aligned (2))) = dobject_hs_Tex_005050; -#endif - -#define dobject_hs_Tex_005250 "__OTR__objects/object_hs/object_hs_Tex_005250" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005250[] = dobject_hs_Tex_005250; -#else -static const char object_hs_Tex_005250[] __attribute__((aligned (2))) = dobject_hs_Tex_005250; -#endif - -#define dobject_hs_Tex_005290 "__OTR__objects/object_hs/object_hs_Tex_005290" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005290[] = dobject_hs_Tex_005290; -#else -static const char object_hs_Tex_005290[] __attribute__((aligned (2))) = dobject_hs_Tex_005290; -#endif - -#define dobject_hs_Tex_005490 "__OTR__objects/object_hs/object_hs_Tex_005490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005490[] = dobject_hs_Tex_005490; -#else -static const char object_hs_Tex_005490[] __attribute__((aligned (2))) = dobject_hs_Tex_005490; -#endif - -#define dobject_hs_Tex_005890 "__OTR__objects/object_hs/object_hs_Tex_005890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005890[] = dobject_hs_Tex_005890; -#else -static const char object_hs_Tex_005890[] __attribute__((aligned (2))) = dobject_hs_Tex_005890; -#endif - -#define dobject_hs_Tex_005990 "__OTR__objects/object_hs/object_hs_Tex_005990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005990[] = dobject_hs_Tex_005990; -#else -static const char object_hs_Tex_005990[] __attribute__((aligned (2))) = dobject_hs_Tex_005990; -#endif - -#define dobject_hs_Tex_005A90 "__OTR__objects/object_hs/object_hs_Tex_005A90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005A90[] = dobject_hs_Tex_005A90; -#else -static const char object_hs_Tex_005A90[] __attribute__((aligned (2))) = dobject_hs_Tex_005A90; -#endif - -#define dobject_hs_Tex_005AB0 "__OTR__objects/object_hs/object_hs_Tex_005AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005AB0[] = dobject_hs_Tex_005AB0; -#else -static const char object_hs_Tex_005AB0[] __attribute__((aligned (2))) = dobject_hs_Tex_005AB0; -#endif - -#define dobject_hs_Tex_005AF0 "__OTR__objects/object_hs/object_hs_Tex_005AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005AF0[] = dobject_hs_Tex_005AF0; -#else -static const char object_hs_Tex_005AF0[] __attribute__((aligned (2))) = dobject_hs_Tex_005AF0; -#endif - -#define dobject_hs_Tex_005EF0 "__OTR__objects/object_hs/object_hs_Tex_005EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005EF0[] = dobject_hs_Tex_005EF0; -#else -static const char object_hs_Tex_005EF0[] __attribute__((aligned (2))) = dobject_hs_Tex_005EF0; -#endif - -#define dobject_hs_Tex_005F70 "__OTR__objects/object_hs/object_hs_Tex_005F70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Tex_005F70[] = dobject_hs_Tex_005F70; -#else -static const char object_hs_Tex_005F70[] __attribute__((aligned (2))) = dobject_hs_Tex_005F70; -#endif - -#define dobject_hs_Skel_006260 "__OTR__objects/object_hs/object_hs_Skel_006260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_hs_Skel_006260[] = dobject_hs_Skel_006260; -#else -static const char object_hs_Skel_006260[] __attribute__((aligned (2))) = dobject_hs_Skel_006260; -#endif - +#include "align_asset_macro.h" + +#define dobject_hs_Anim_000304 "__OTR__objects/object_hs/object_hs_Anim_000304" +static const ALIGN_ASSET(2) char object_hs_Anim_000304[] = dobject_hs_Anim_000304; + +#define dobject_hs_Anim_000528 "__OTR__objects/object_hs/object_hs_Anim_000528" +static const ALIGN_ASSET(2) char object_hs_Anim_000528[] = dobject_hs_Anim_000528; + +#define dobject_hs_Anim_0005C0 "__OTR__objects/object_hs/object_hs_Anim_0005C0" +static const ALIGN_ASSET(2) char object_hs_Anim_0005C0[] = dobject_hs_Anim_0005C0; + +#define dobject_hs_DL_003760 "__OTR__objects/object_hs/object_hs_DL_003760" +static const ALIGN_ASSET(2) char object_hs_DL_003760[] = dobject_hs_DL_003760; + +#define dobject_hs_DL_003AB0 "__OTR__objects/object_hs/object_hs_DL_003AB0" +static const ALIGN_ASSET(2) char object_hs_DL_003AB0[] = dobject_hs_DL_003AB0; + +#define dobject_hs_DL_004140 "__OTR__objects/object_hs/object_hs_DL_004140" +static const ALIGN_ASSET(2) char object_hs_DL_004140[] = dobject_hs_DL_004140; + +#define dobject_hs_DL_0042A0 "__OTR__objects/object_hs/object_hs_DL_0042A0" +static const ALIGN_ASSET(2) char object_hs_DL_0042A0[] = dobject_hs_DL_0042A0; + +#define dobject_hs_DL_004380 "__OTR__objects/object_hs/object_hs_DL_004380" +static const ALIGN_ASSET(2) char object_hs_DL_004380[] = dobject_hs_DL_004380; + +#define dobject_hs_DL_004728 "__OTR__objects/object_hs/object_hs_DL_004728" +static const ALIGN_ASSET(2) char object_hs_DL_004728[] = dobject_hs_DL_004728; + +#define dobject_hs_DL_004860 "__OTR__objects/object_hs/object_hs_DL_004860" +static const ALIGN_ASSET(2) char object_hs_DL_004860[] = dobject_hs_DL_004860; + +#define dobject_hs_DL_004960 "__OTR__objects/object_hs/object_hs_DL_004960" +static const ALIGN_ASSET(2) char object_hs_DL_004960[] = dobject_hs_DL_004960; + +#define dobject_hs_DL_004AB8 "__OTR__objects/object_hs/object_hs_DL_004AB8" +static const ALIGN_ASSET(2) char object_hs_DL_004AB8[] = dobject_hs_DL_004AB8; + +#define dobject_hs_DL_004BF0 "__OTR__objects/object_hs/object_hs_DL_004BF0" +static const ALIGN_ASSET(2) char object_hs_DL_004BF0[] = dobject_hs_DL_004BF0; + +#define dobject_hs_DL_004CF0 "__OTR__objects/object_hs/object_hs_DL_004CF0" +static const ALIGN_ASSET(2) char object_hs_DL_004CF0[] = dobject_hs_DL_004CF0; + +#define dobject_hs_DL_004CF8 "__OTR__objects/object_hs/object_hs_DL_004CF8" +static const ALIGN_ASSET(2) char object_hs_DL_004CF8[] = dobject_hs_DL_004CF8; + +#define dobject_hs_TLUT_004E50 "__OTR__objects/object_hs/object_hs_TLUT_004E50" +static const ALIGN_ASSET(2) char object_hs_TLUT_004E50[] = dobject_hs_TLUT_004E50; + +#define dobject_hs_Tex_005050 "__OTR__objects/object_hs/object_hs_Tex_005050" +static const ALIGN_ASSET(2) char object_hs_Tex_005050[] = dobject_hs_Tex_005050; + +#define dobject_hs_Tex_005250 "__OTR__objects/object_hs/object_hs_Tex_005250" +static const ALIGN_ASSET(2) char object_hs_Tex_005250[] = dobject_hs_Tex_005250; + +#define dobject_hs_Tex_005290 "__OTR__objects/object_hs/object_hs_Tex_005290" +static const ALIGN_ASSET(2) char object_hs_Tex_005290[] = dobject_hs_Tex_005290; + +#define dobject_hs_Tex_005490 "__OTR__objects/object_hs/object_hs_Tex_005490" +static const ALIGN_ASSET(2) char object_hs_Tex_005490[] = dobject_hs_Tex_005490; + +#define dobject_hs_Tex_005890 "__OTR__objects/object_hs/object_hs_Tex_005890" +static const ALIGN_ASSET(2) char object_hs_Tex_005890[] = dobject_hs_Tex_005890; + +#define dobject_hs_Tex_005990 "__OTR__objects/object_hs/object_hs_Tex_005990" +static const ALIGN_ASSET(2) char object_hs_Tex_005990[] = dobject_hs_Tex_005990; + +#define dobject_hs_Tex_005A90 "__OTR__objects/object_hs/object_hs_Tex_005A90" +static const ALIGN_ASSET(2) char object_hs_Tex_005A90[] = dobject_hs_Tex_005A90; + +#define dobject_hs_Tex_005AB0 "__OTR__objects/object_hs/object_hs_Tex_005AB0" +static const ALIGN_ASSET(2) char object_hs_Tex_005AB0[] = dobject_hs_Tex_005AB0; + +#define dobject_hs_Tex_005AF0 "__OTR__objects/object_hs/object_hs_Tex_005AF0" +static const ALIGN_ASSET(2) char object_hs_Tex_005AF0[] = dobject_hs_Tex_005AF0; + +#define dobject_hs_Tex_005EF0 "__OTR__objects/object_hs/object_hs_Tex_005EF0" +static const ALIGN_ASSET(2) char object_hs_Tex_005EF0[] = dobject_hs_Tex_005EF0; + +#define dobject_hs_Tex_005F70 "__OTR__objects/object_hs/object_hs_Tex_005F70" +static const ALIGN_ASSET(2) char object_hs_Tex_005F70[] = dobject_hs_Tex_005F70; + +#define dobject_hs_Skel_006260 "__OTR__objects/object_hs/object_hs_Skel_006260" +static const ALIGN_ASSET(2) char object_hs_Skel_006260[] = dobject_hs_Skel_006260; \ No newline at end of file diff --git a/soh/assets/objects/object_human/object_human.h b/soh/assets/objects/object_human/object_human.h index f32fda04d..986fccbd2 100644 --- a/soh/assets/objects/object_human/object_human.h +++ b/soh/assets/objects/object_human/object_human.h @@ -1,723 +1,312 @@ #pragma once -#define dgHumanEyeLookForwardOpenTex "__OTR__objects/object_human/gHumanEyeLookForwardOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookForwardOpenTex[] = dgHumanEyeLookForwardOpenTex; -#else -static const char gHumanEyeLookForwardOpenTex[] __attribute__((aligned (2))) = dgHumanEyeLookForwardOpenTex; -#endif - -#define dgHumanEyeLookForwardHalfTex "__OTR__objects/object_human/gHumanEyeLookForwardHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookForwardHalfTex[] = dgHumanEyeLookForwardHalfTex; -#else -static const char gHumanEyeLookForwardHalfTex[] __attribute__((aligned (2))) = dgHumanEyeLookForwardHalfTex; -#endif - -#define dgHumanEyeLookForwardClosedTex "__OTR__objects/object_human/gHumanEyeLookForwardClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookForwardClosedTex[] = dgHumanEyeLookForwardClosedTex; -#else -static const char gHumanEyeLookForwardClosedTex[] __attribute__((aligned (2))) = dgHumanEyeLookForwardClosedTex; -#endif - -#define dgHumanEyeLookRightOpenTex "__OTR__objects/object_human/gHumanEyeLookRightOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookRightOpenTex[] = dgHumanEyeLookRightOpenTex; -#else -static const char gHumanEyeLookRightOpenTex[] __attribute__((aligned (2))) = dgHumanEyeLookRightOpenTex; -#endif - -#define dgHumanEyeLookRightHalfTex "__OTR__objects/object_human/gHumanEyeLookRightHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookRightHalfTex[] = dgHumanEyeLookRightHalfTex; -#else -static const char gHumanEyeLookRightHalfTex[] __attribute__((aligned (2))) = dgHumanEyeLookRightHalfTex; -#endif - -#define dgHumanEyeLookLeftOpenTex "__OTR__objects/object_human/gHumanEyeLookLeftOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookLeftOpenTex[] = dgHumanEyeLookLeftOpenTex; -#else -static const char gHumanEyeLookLeftOpenTex[] __attribute__((aligned (2))) = dgHumanEyeLookLeftOpenTex; -#endif - -#define dgHumanEyeLookLeftHalfTex "__OTR__objects/object_human/gHumanEyeLookLeftHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookLeftHalfTex[] = dgHumanEyeLookLeftHalfTex; -#else -static const char gHumanEyeLookLeftHalfTex[] __attribute__((aligned (2))) = dgHumanEyeLookLeftHalfTex; -#endif - -#define dgHumanEyeLookUpOpenTex "__OTR__objects/object_human/gHumanEyeLookUpOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookUpOpenTex[] = dgHumanEyeLookUpOpenTex; -#else -static const char gHumanEyeLookUpOpenTex[] __attribute__((aligned (2))) = dgHumanEyeLookUpOpenTex; -#endif - -#define dgHumanEyeLookDownOpenTex "__OTR__objects/object_human/gHumanEyeLookDownOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookDownOpenTex[] = dgHumanEyeLookDownOpenTex; -#else -static const char gHumanEyeLookDownOpenTex[] __attribute__((aligned (2))) = dgHumanEyeLookDownOpenTex; -#endif - -#define dgHumanEyebrowNormalTex "__OTR__objects/object_human/gHumanEyebrowNormalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyebrowNormalTex[] = dgHumanEyebrowNormalTex; -#else -static const char gHumanEyebrowNormalTex[] __attribute__((aligned (2))) = dgHumanEyebrowNormalTex; -#endif - -#define dgHumanEyebrowSurprisedTex "__OTR__objects/object_human/gHumanEyebrowSurprisedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyebrowSurprisedTex[] = dgHumanEyebrowSurprisedTex; -#else -static const char gHumanEyebrowSurprisedTex[] __attribute__((aligned (2))) = dgHumanEyebrowSurprisedTex; -#endif - -#define dgHumanEyebrowSadTex "__OTR__objects/object_human/gHumanEyebrowSadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyebrowSadTex[] = dgHumanEyebrowSadTex; -#else -static const char gHumanEyebrowSadTex[] __attribute__((aligned (2))) = dgHumanEyebrowSadTex; -#endif - -#define dgHumanEyeLookForwardOpen2Tex "__OTR__objects/object_human/gHumanEyeLookForwardOpen2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookForwardOpen2Tex[] = dgHumanEyeLookForwardOpen2Tex; -#else -static const char gHumanEyeLookForwardOpen2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookForwardOpen2Tex; -#endif - -#define dgHumanEyeLookForwardHalf2Tex "__OTR__objects/object_human/gHumanEyeLookForwardHalf2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookForwardHalf2Tex[] = dgHumanEyeLookForwardHalf2Tex; -#else -static const char gHumanEyeLookForwardHalf2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookForwardHalf2Tex; -#endif - -#define dgHumanEyeLookForwardClosed2Tex "__OTR__objects/object_human/gHumanEyeLookForwardClosed2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookForwardClosed2Tex[] = dgHumanEyeLookForwardClosed2Tex; -#else -static const char gHumanEyeLookForwardClosed2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookForwardClosed2Tex; -#endif - -#define dgHumanEyeLookLeftOpen2Tex "__OTR__objects/object_human/gHumanEyeLookLeftOpen2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookLeftOpen2Tex[] = dgHumanEyeLookLeftOpen2Tex; -#else -static const char gHumanEyeLookLeftOpen2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookLeftOpen2Tex; -#endif - -#define dgHumanEyeLookLeftHalf2Tex "__OTR__objects/object_human/gHumanEyeLookLeftHalf2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookLeftHalf2Tex[] = dgHumanEyeLookLeftHalf2Tex; -#else -static const char gHumanEyeLookLeftHalf2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookLeftHalf2Tex; -#endif - -#define dgHumanEyeLookRightOpen2Tex "__OTR__objects/object_human/gHumanEyeLookRightOpen2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookRightOpen2Tex[] = dgHumanEyeLookRightOpen2Tex; -#else -static const char gHumanEyeLookRightOpen2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookRightOpen2Tex; -#endif - -#define dgHumanEyeLookRightHalf2Tex "__OTR__objects/object_human/gHumanEyeLookRightHalf2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookRightHalf2Tex[] = dgHumanEyeLookRightHalf2Tex; -#else -static const char gHumanEyeLookRightHalf2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookRightHalf2Tex; -#endif - -#define dgHumanEyeLookUpOpen2Tex "__OTR__objects/object_human/gHumanEyeLookUpOpen2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookUpOpen2Tex[] = dgHumanEyeLookUpOpen2Tex; -#else -static const char gHumanEyeLookUpOpen2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookUpOpen2Tex; -#endif - -#define dgHumanEyeLookDownOpen2Tex "__OTR__objects/object_human/gHumanEyeLookDownOpen2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyeLookDownOpen2Tex[] = dgHumanEyeLookDownOpen2Tex; -#else -static const char gHumanEyeLookDownOpen2Tex[] __attribute__((aligned (2))) = dgHumanEyeLookDownOpen2Tex; -#endif - -#define dgHumanEyebrowNormal2Tex "__OTR__objects/object_human/gHumanEyebrowNormal2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyebrowNormal2Tex[] = dgHumanEyebrowNormal2Tex; -#else -static const char gHumanEyebrowNormal2Tex[] __attribute__((aligned (2))) = dgHumanEyebrowNormal2Tex; -#endif - -#define dgHumanEyebrowSurprised2Tex "__OTR__objects/object_human/gHumanEyebrowSurprised2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyebrowSurprised2Tex[] = dgHumanEyebrowSurprised2Tex; -#else -static const char gHumanEyebrowSurprised2Tex[] __attribute__((aligned (2))) = dgHumanEyebrowSurprised2Tex; -#endif - -#define dgHumanEyebrowSad2Tex "__OTR__objects/object_human/gHumanEyebrowSad2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEyebrowSad2Tex[] = dgHumanEyebrowSad2Tex; -#else -static const char gHumanEyebrowSad2Tex[] __attribute__((aligned (2))) = dgHumanEyebrowSad2Tex; -#endif - -#define dobject_human_Tex_005400 "__OTR__objects/object_human/object_human_Tex_005400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_human_Tex_005400[] = dobject_human_Tex_005400; -#else -static const char object_human_Tex_005400[] __attribute__((aligned (2))) = dobject_human_Tex_005400; -#endif - -#define dobject_human_Tex_005500 "__OTR__objects/object_human/object_human_Tex_005500" -#ifdef _WIN32 -static const __declspec(align(2)) char object_human_Tex_005500[] = dobject_human_Tex_005500; -#else -static const char object_human_Tex_005500[] __attribute__((aligned (2))) = dobject_human_Tex_005500; -#endif - -#define dgHumanMouthClosed1Tex "__OTR__objects/object_human/gHumanMouthClosed1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthClosed1Tex[] = dgHumanMouthClosed1Tex; -#else -static const char gHumanMouthClosed1Tex[] __attribute__((aligned (2))) = dgHumanMouthClosed1Tex; -#endif - -#define dgHumanMouthOpen1Tex "__OTR__objects/object_human/gHumanMouthOpen1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthOpen1Tex[] = dgHumanMouthOpen1Tex; -#else -static const char gHumanMouthOpen1Tex[] __attribute__((aligned (2))) = dgHumanMouthOpen1Tex; -#endif - -#define dgHumanMouthOpen2Tex "__OTR__objects/object_human/gHumanMouthOpen2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthOpen2Tex[] = dgHumanMouthOpen2Tex; -#else -static const char gHumanMouthOpen2Tex[] __attribute__((aligned (2))) = dgHumanMouthOpen2Tex; -#endif - -#define dgHumanMouthClosed2Tex "__OTR__objects/object_human/gHumanMouthClosed2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthClosed2Tex[] = dgHumanMouthClosed2Tex; -#else -static const char gHumanMouthClosed2Tex[] __attribute__((aligned (2))) = dgHumanMouthClosed2Tex; -#endif - -#define dgHumanMouthOpen3Tex "__OTR__objects/object_human/gHumanMouthOpen3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthOpen3Tex[] = dgHumanMouthOpen3Tex; -#else -static const char gHumanMouthOpen3Tex[] __attribute__((aligned (2))) = dgHumanMouthOpen3Tex; -#endif - -#define dgHumanMouthOpen4Tex "__OTR__objects/object_human/gHumanMouthOpen4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthOpen4Tex[] = dgHumanMouthOpen4Tex; -#else -static const char gHumanMouthOpen4Tex[] __attribute__((aligned (2))) = dgHumanMouthOpen4Tex; -#endif - -#define dgHumanMouthClosed3Tex "__OTR__objects/object_human/gHumanMouthClosed3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthClosed3Tex[] = dgHumanMouthClosed3Tex; -#else -static const char gHumanMouthClosed3Tex[] __attribute__((aligned (2))) = dgHumanMouthClosed3Tex; -#endif - -#define dgHumanMouthOpen5Tex "__OTR__objects/object_human/gHumanMouthOpen5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthOpen5Tex[] = dgHumanMouthOpen5Tex; -#else -static const char gHumanMouthOpen5Tex[] __attribute__((aligned (2))) = dgHumanMouthOpen5Tex; -#endif - -#define dgHumanMouthOpen6Tex "__OTR__objects/object_human/gHumanMouthOpen6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanMouthOpen6Tex[] = dgHumanMouthOpen6Tex; -#else -static const char gHumanMouthOpen6Tex[] __attribute__((aligned (2))) = dgHumanMouthOpen6Tex; -#endif - -#define dgHumanTLUT "__OTR__objects/object_human/gHumanTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanTLUT[] = dgHumanTLUT; -#else -static const char gHumanTLUT[] __attribute__((aligned (2))) = dgHumanTLUT; -#endif - -#define dgHumanLookingBackAnim "__OTR__objects/object_human/gHumanLookingBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLookingBackAnim[] = dgHumanLookingBackAnim; -#else -static const char gHumanLookingBackAnim[] __attribute__((aligned (2))) = dgHumanLookingBackAnim; -#endif - -#define dgHumanLookingBackStartsAnim "__OTR__objects/object_human/gHumanLookingBackStartsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLookingBackStartsAnim[] = dgHumanLookingBackStartsAnim; -#else -static const char gHumanLookingBackStartsAnim[] __attribute__((aligned (2))) = dgHumanLookingBackStartsAnim; -#endif - -#define dgHumanTiltHeadAnim "__OTR__objects/object_human/gHumanTiltHeadAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanTiltHeadAnim[] = dgHumanTiltHeadAnim; -#else -static const char gHumanTiltHeadAnim[] __attribute__((aligned (2))) = dgHumanTiltHeadAnim; -#endif - -#define dgHumanLookingAroundAnim "__OTR__objects/object_human/gHumanLookingAroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLookingAroundAnim[] = dgHumanLookingAroundAnim; -#else -static const char gHumanLookingAroundAnim[] __attribute__((aligned (2))) = dgHumanLookingAroundAnim; -#endif - -#define dgHumanLookingBackEndsAnim "__OTR__objects/object_human/gHumanLookingBackEndsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLookingBackEndsAnim[] = dgHumanLookingBackEndsAnim; -#else -static const char gHumanLookingBackEndsAnim[] __attribute__((aligned (2))) = dgHumanLookingBackEndsAnim; -#endif - -#define dgHumanThinkingEndAnim "__OTR__objects/object_human/gHumanThinkingEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanThinkingEndAnim[] = dgHumanThinkingEndAnim; -#else -static const char gHumanThinkingEndAnim[] __attribute__((aligned (2))) = dgHumanThinkingEndAnim; -#endif - -#define dgHumanThinkingStartsAnim "__OTR__objects/object_human/gHumanThinkingStartsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanThinkingStartsAnim[] = dgHumanThinkingStartsAnim; -#else -static const char gHumanThinkingStartsAnim[] __attribute__((aligned (2))) = dgHumanThinkingStartsAnim; -#endif - -#define dgHumanThinkingAnim "__OTR__objects/object_human/gHumanThinkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanThinkingAnim[] = dgHumanThinkingAnim; -#else -static const char gHumanThinkingAnim[] __attribute__((aligned (2))) = dgHumanThinkingAnim; -#endif - -#define dgHumanArmLeftDL "__OTR__objects/object_human/gHumanArmLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanArmLeftDL[] = dgHumanArmLeftDL; -#else -static const char gHumanArmLeftDL[] __attribute__((aligned (2))) = dgHumanArmLeftDL; -#endif - -#define dgHumanArmLeftWrapperDL "__OTR__objects/object_human/gHumanArmLeftWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanArmLeftWrapperDL[] = dgHumanArmLeftWrapperDL; -#else -static const char gHumanArmLeftWrapperDL[] __attribute__((aligned (2))) = dgHumanArmLeftWrapperDL; -#endif - -#define dgHumanArmLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanArmLeftWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanArmLeftWrapperWrapperDL[] = dgHumanArmLeftWrapperWrapperDL; -#else -static const char gHumanArmLeftWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanArmLeftWrapperWrapperDL; -#endif - -#define dgHumanForearmLeftDL "__OTR__objects/object_human/gHumanForearmLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanForearmLeftDL[] = dgHumanForearmLeftDL; -#else -static const char gHumanForearmLeftDL[] __attribute__((aligned (2))) = dgHumanForearmLeftDL; -#endif - -#define dgHumanForearmLeftWrapperDL "__OTR__objects/object_human/gHumanForearmLeftWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanForearmLeftWrapperDL[] = dgHumanForearmLeftWrapperDL; -#else -static const char gHumanForearmLeftWrapperDL[] __attribute__((aligned (2))) = dgHumanForearmLeftWrapperDL; -#endif - -#define dgHumanForearmLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanForearmLeftWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanForearmLeftWrapperWrapperDL[] = dgHumanForearmLeftWrapperWrapperDL; -#else -static const char gHumanForearmLeftWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanForearmLeftWrapperWrapperDL; -#endif - -#define dgHumanFootLeftDL "__OTR__objects/object_human/gHumanFootLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanFootLeftDL[] = dgHumanFootLeftDL; -#else -static const char gHumanFootLeftDL[] __attribute__((aligned (2))) = dgHumanFootLeftDL; -#endif - -#define dgHumanFootLeftWrapperDL "__OTR__objects/object_human/gHumanFootLeftWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanFootLeftWrapperDL[] = dgHumanFootLeftWrapperDL; -#else -static const char gHumanFootLeftWrapperDL[] __attribute__((aligned (2))) = dgHumanFootLeftWrapperDL; -#endif - -#define dgHumanFootLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanFootLeftWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanFootLeftWrapperWrapperDL[] = dgHumanFootLeftWrapperWrapperDL; -#else -static const char gHumanFootLeftWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanFootLeftWrapperWrapperDL; -#endif - -#define dgHumanHandLeftDL "__OTR__objects/object_human/gHumanHandLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHandLeftDL[] = dgHumanHandLeftDL; -#else -static const char gHumanHandLeftDL[] __attribute__((aligned (2))) = dgHumanHandLeftDL; -#endif - -#define dgHumanHandLeftWrapperDL "__OTR__objects/object_human/gHumanHandLeftWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHandLeftWrapperDL[] = dgHumanHandLeftWrapperDL; -#else -static const char gHumanHandLeftWrapperDL[] __attribute__((aligned (2))) = dgHumanHandLeftWrapperDL; -#endif - -#define dgHumanHandLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanHandLeftWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHandLeftWrapperWrapperDL[] = dgHumanHandLeftWrapperWrapperDL; -#else -static const char gHumanHandLeftWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanHandLeftWrapperWrapperDL; -#endif - -#define dgHumanLegLeftDL "__OTR__objects/object_human/gHumanLegLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLegLeftDL[] = dgHumanLegLeftDL; -#else -static const char gHumanLegLeftDL[] __attribute__((aligned (2))) = dgHumanLegLeftDL; -#endif - -#define dgHumanLegLeftWrapperDL "__OTR__objects/object_human/gHumanLegLeftWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLegLeftWrapperDL[] = dgHumanLegLeftWrapperDL; -#else -static const char gHumanLegLeftWrapperDL[] __attribute__((aligned (2))) = dgHumanLegLeftWrapperDL; -#endif - -#define dgHumanLegLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanLegLeftWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLegLeftWrapperWrapperDL[] = dgHumanLegLeftWrapperWrapperDL; -#else -static const char gHumanLegLeftWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanLegLeftWrapperWrapperDL; -#endif - -#define dgHumanArmRightDL "__OTR__objects/object_human/gHumanArmRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanArmRightDL[] = dgHumanArmRightDL; -#else -static const char gHumanArmRightDL[] __attribute__((aligned (2))) = dgHumanArmRightDL; -#endif - -#define dgHumanArmRightWrapperDL "__OTR__objects/object_human/gHumanArmRightWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanArmRightWrapperDL[] = dgHumanArmRightWrapperDL; -#else -static const char gHumanArmRightWrapperDL[] __attribute__((aligned (2))) = dgHumanArmRightWrapperDL; -#endif - -#define dgHumanArmRightWrapperWrapperDL "__OTR__objects/object_human/gHumanArmRightWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanArmRightWrapperWrapperDL[] = dgHumanArmRightWrapperWrapperDL; -#else -static const char gHumanArmRightWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanArmRightWrapperWrapperDL; -#endif - -#define dgHumanForearmRightDL "__OTR__objects/object_human/gHumanForearmRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanForearmRightDL[] = dgHumanForearmRightDL; -#else -static const char gHumanForearmRightDL[] __attribute__((aligned (2))) = dgHumanForearmRightDL; -#endif - -#define dgHumanForearmRightWrapperDL "__OTR__objects/object_human/gHumanForearmRightWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanForearmRightWrapperDL[] = dgHumanForearmRightWrapperDL; -#else -static const char gHumanForearmRightWrapperDL[] __attribute__((aligned (2))) = dgHumanForearmRightWrapperDL; -#endif - -#define dgHumanForearmRightWrapperWrapperDL "__OTR__objects/object_human/gHumanForearmRightWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanForearmRightWrapperWrapperDL[] = dgHumanForearmRightWrapperWrapperDL; -#else -static const char gHumanForearmRightWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanForearmRightWrapperWrapperDL; -#endif - -#define dgHumanFootRightDL "__OTR__objects/object_human/gHumanFootRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanFootRightDL[] = dgHumanFootRightDL; -#else -static const char gHumanFootRightDL[] __attribute__((aligned (2))) = dgHumanFootRightDL; -#endif - -#define dgHumanFootRightWrapperDL "__OTR__objects/object_human/gHumanFootRightWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanFootRightWrapperDL[] = dgHumanFootRightWrapperDL; -#else -static const char gHumanFootRightWrapperDL[] __attribute__((aligned (2))) = dgHumanFootRightWrapperDL; -#endif - -#define dgHumanFootRightWrapperWrapperDL "__OTR__objects/object_human/gHumanFootRightWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanFootRightWrapperWrapperDL[] = dgHumanFootRightWrapperWrapperDL; -#else -static const char gHumanFootRightWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanFootRightWrapperWrapperDL; -#endif - -#define dgHumanHandRightDL "__OTR__objects/object_human/gHumanHandRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHandRightDL[] = dgHumanHandRightDL; -#else -static const char gHumanHandRightDL[] __attribute__((aligned (2))) = dgHumanHandRightDL; -#endif - -#define dgHumanHandRightWrapperDL "__OTR__objects/object_human/gHumanHandRightWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHandRightWrapperDL[] = dgHumanHandRightWrapperDL; -#else -static const char gHumanHandRightWrapperDL[] __attribute__((aligned (2))) = dgHumanHandRightWrapperDL; -#endif - -#define dgHumanHandRightWrapperWrapperDL "__OTR__objects/object_human/gHumanHandRightWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHandRightWrapperWrapperDL[] = dgHumanHandRightWrapperWrapperDL; -#else -static const char gHumanHandRightWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanHandRightWrapperWrapperDL; -#endif - -#define dgHumanLegRightDL "__OTR__objects/object_human/gHumanLegRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLegRightDL[] = dgHumanLegRightDL; -#else -static const char gHumanLegRightDL[] __attribute__((aligned (2))) = dgHumanLegRightDL; -#endif - -#define dgHumanLegRightWrapperDL "__OTR__objects/object_human/gHumanLegRightWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLegRightWrapperDL[] = dgHumanLegRightWrapperDL; -#else -static const char gHumanLegRightWrapperDL[] __attribute__((aligned (2))) = dgHumanLegRightWrapperDL; -#endif - -#define dgHumanLegRightWrapperWrapperDL "__OTR__objects/object_human/gHumanLegRightWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanLegRightWrapperWrapperDL[] = dgHumanLegRightWrapperWrapperDL; -#else -static const char gHumanLegRightWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanLegRightWrapperWrapperDL; -#endif - -#define dgHumanTorsoDL "__OTR__objects/object_human/gHumanTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanTorsoDL[] = dgHumanTorsoDL; -#else -static const char gHumanTorsoDL[] __attribute__((aligned (2))) = dgHumanTorsoDL; -#endif - -#define dgHumanTorsoWrapperDL "__OTR__objects/object_human/gHumanTorsoWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanTorsoWrapperDL[] = dgHumanTorsoWrapperDL; -#else -static const char gHumanTorsoWrapperDL[] __attribute__((aligned (2))) = dgHumanTorsoWrapperDL; -#endif - -#define dgHumanTorsoWrapperWrapperDL "__OTR__objects/object_human/gHumanTorsoWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanTorsoWrapperWrapperDL[] = dgHumanTorsoWrapperWrapperDL; -#else -static const char gHumanTorsoWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanTorsoWrapperWrapperDL; -#endif - -#define dgHumanHairDL "__OTR__objects/object_human/gHumanHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHairDL[] = dgHumanHairDL; -#else -static const char gHumanHairDL[] __attribute__((aligned (2))) = dgHumanHairDL; -#endif - -#define dgHumanHairWrapperDL "__OTR__objects/object_human/gHumanHairWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHairWrapperDL[] = dgHumanHairWrapperDL; -#else -static const char gHumanHairWrapperDL[] __attribute__((aligned (2))) = dgHumanHairWrapperDL; -#endif - -#define dgHumanHairWrapperWrapperDL "__OTR__objects/object_human/gHumanHairWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHairWrapperWrapperDL[] = dgHumanHairWrapperWrapperDL; -#else -static const char gHumanHairWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanHairWrapperWrapperDL; -#endif - -#define dgHumanHeadDL "__OTR__objects/object_human/gHumanHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHeadDL[] = dgHumanHeadDL; -#else -static const char gHumanHeadDL[] __attribute__((aligned (2))) = dgHumanHeadDL; -#endif - -#define dgHumanHeadWrapperDL "__OTR__objects/object_human/gHumanHeadWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHeadWrapperDL[] = dgHumanHeadWrapperDL; -#else -static const char gHumanHeadWrapperDL[] __attribute__((aligned (2))) = dgHumanHeadWrapperDL; -#endif - -#define dgHumanHeadWrapperWrapperDL "__OTR__objects/object_human/gHumanHeadWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHeadWrapperWrapperDL[] = dgHumanHeadWrapperWrapperDL; -#else -static const char gHumanHeadWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanHeadWrapperWrapperDL; -#endif - -#define dgHumanWaistDL "__OTR__objects/object_human/gHumanWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanWaistDL[] = dgHumanWaistDL; -#else -static const char gHumanWaistDL[] __attribute__((aligned (2))) = dgHumanWaistDL; -#endif - -#define dgHumanWaistWrapperDL "__OTR__objects/object_human/gHumanWaistWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanWaistWrapperDL[] = dgHumanWaistWrapperDL; -#else -static const char gHumanWaistWrapperDL[] __attribute__((aligned (2))) = dgHumanWaistWrapperDL; -#endif - -#define dgHumanWaistWrapperWrapperDL "__OTR__objects/object_human/gHumanWaistWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanWaistWrapperWrapperDL[] = dgHumanWaistWrapperWrapperDL; -#else -static const char gHumanWaistWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanWaistWrapperWrapperDL; -#endif - -#define dgHumanDressLowerDL "__OTR__objects/object_human/gHumanDressLowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanDressLowerDL[] = dgHumanDressLowerDL; -#else -static const char gHumanDressLowerDL[] __attribute__((aligned (2))) = dgHumanDressLowerDL; -#endif - -#define dgHumanDressLowerWrapperDL "__OTR__objects/object_human/gHumanDressLowerWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanDressLowerWrapperDL[] = dgHumanDressLowerWrapperDL; -#else -static const char gHumanDressLowerWrapperDL[] __attribute__((aligned (2))) = dgHumanDressLowerWrapperDL; -#endif - -#define dgHumanDressLowerWrapperWrapperDL "__OTR__objects/object_human/gHumanDressLowerWrapperWrapperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanDressLowerWrapperWrapperDL[] = dgHumanDressLowerWrapperWrapperDL; -#else -static const char gHumanDressLowerWrapperWrapperDL[] __attribute__((aligned (2))) = dgHumanDressLowerWrapperWrapperDL; -#endif - -#define dgHumanEarTex "__OTR__objects/object_human/gHumanEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanEarTex[] = dgHumanEarTex; -#else -static const char gHumanEarTex[] __attribute__((aligned (2))) = dgHumanEarTex; -#endif - -#define dgHumanDressOrnamentsTex "__OTR__objects/object_human/gHumanDressOrnamentsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanDressOrnamentsTex[] = dgHumanDressOrnamentsTex; -#else -static const char gHumanDressOrnamentsTex[] __attribute__((aligned (2))) = dgHumanDressOrnamentsTex; -#endif - -#define dgHumanBeltTex "__OTR__objects/object_human/gHumanBeltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanBeltTex[] = dgHumanBeltTex; -#else -static const char gHumanBeltTex[] __attribute__((aligned (2))) = dgHumanBeltTex; -#endif - -#define dgHumanFingersTex "__OTR__objects/object_human/gHumanFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanFingersTex[] = dgHumanFingersTex; -#else -static const char gHumanFingersTex[] __attribute__((aligned (2))) = dgHumanFingersTex; -#endif - -#define dgHumanNeckTex "__OTR__objects/object_human/gHumanNeckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanNeckTex[] = dgHumanNeckTex; -#else -static const char gHumanNeckTex[] __attribute__((aligned (2))) = dgHumanNeckTex; -#endif - -#define dgHumanHairSideTex "__OTR__objects/object_human/gHumanHairSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHairSideTex[] = dgHumanHairSideTex; -#else -static const char gHumanHairSideTex[] __attribute__((aligned (2))) = dgHumanHairSideTex; -#endif - -#define dgHumanHairTex "__OTR__objects/object_human/gHumanHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanHairTex[] = dgHumanHairTex; -#else -static const char gHumanHairTex[] __attribute__((aligned (2))) = dgHumanHairTex; -#endif - -#define dobject_human_Tex_010C28 "__OTR__objects/object_human/object_human_Tex_010C28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_human_Tex_010C28[] = dobject_human_Tex_010C28; -#else -static const char object_human_Tex_010C28[] __attribute__((aligned (2))) = dobject_human_Tex_010C28; -#endif - -#define dgHumanSkinTex "__OTR__objects/object_human/gHumanSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanSkinTex[] = dgHumanSkinTex; -#else -static const char gHumanSkinTex[] __attribute__((aligned (2))) = dgHumanSkinTex; -#endif - -#define dgHumanShoeTex "__OTR__objects/object_human/gHumanShoeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanShoeTex[] = dgHumanShoeTex; -#else -static const char gHumanShoeTex[] __attribute__((aligned (2))) = dgHumanShoeTex; -#endif - -#define dgHumanIdleAnim "__OTR__objects/object_human/gHumanIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanIdleAnim[] = dgHumanIdleAnim; -#else -static const char gHumanIdleAnim[] __attribute__((aligned (2))) = dgHumanIdleAnim; -#endif - -#define dgHumanWalkingAnim "__OTR__objects/object_human/gHumanWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanWalkingAnim[] = dgHumanWalkingAnim; -#else -static const char gHumanWalkingAnim[] __attribute__((aligned (2))) = dgHumanWalkingAnim; -#endif - -#define dgHumanWalkingEndAnim "__OTR__objects/object_human/gHumanWalkingEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanWalkingEndAnim[] = dgHumanWalkingEndAnim; -#else -static const char gHumanWalkingEndAnim[] __attribute__((aligned (2))) = dgHumanWalkingEndAnim; -#endif - -#define dgHumanWalkingStartAnim "__OTR__objects/object_human/gHumanWalkingStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gHumanWalkingStartAnim[] = dgHumanWalkingStartAnim; -#else -static const char gHumanWalkingStartAnim[] __attribute__((aligned (2))) = dgHumanWalkingStartAnim; -#endif - +#include "align_asset_macro.h" + +#define dgHumanEyeLookForwardOpenTex "__OTR__objects/object_human/gHumanEyeLookForwardOpenTex" +static const ALIGN_ASSET(2) char gHumanEyeLookForwardOpenTex[] = dgHumanEyeLookForwardOpenTex; + +#define dgHumanEyeLookForwardHalfTex "__OTR__objects/object_human/gHumanEyeLookForwardHalfTex" +static const ALIGN_ASSET(2) char gHumanEyeLookForwardHalfTex[] = dgHumanEyeLookForwardHalfTex; + +#define dgHumanEyeLookForwardClosedTex "__OTR__objects/object_human/gHumanEyeLookForwardClosedTex" +static const ALIGN_ASSET(2) char gHumanEyeLookForwardClosedTex[] = dgHumanEyeLookForwardClosedTex; + +#define dgHumanEyeLookRightOpenTex "__OTR__objects/object_human/gHumanEyeLookRightOpenTex" +static const ALIGN_ASSET(2) char gHumanEyeLookRightOpenTex[] = dgHumanEyeLookRightOpenTex; + +#define dgHumanEyeLookRightHalfTex "__OTR__objects/object_human/gHumanEyeLookRightHalfTex" +static const ALIGN_ASSET(2) char gHumanEyeLookRightHalfTex[] = dgHumanEyeLookRightHalfTex; + +#define dgHumanEyeLookLeftOpenTex "__OTR__objects/object_human/gHumanEyeLookLeftOpenTex" +static const ALIGN_ASSET(2) char gHumanEyeLookLeftOpenTex[] = dgHumanEyeLookLeftOpenTex; + +#define dgHumanEyeLookLeftHalfTex "__OTR__objects/object_human/gHumanEyeLookLeftHalfTex" +static const ALIGN_ASSET(2) char gHumanEyeLookLeftHalfTex[] = dgHumanEyeLookLeftHalfTex; + +#define dgHumanEyeLookUpOpenTex "__OTR__objects/object_human/gHumanEyeLookUpOpenTex" +static const ALIGN_ASSET(2) char gHumanEyeLookUpOpenTex[] = dgHumanEyeLookUpOpenTex; + +#define dgHumanEyeLookDownOpenTex "__OTR__objects/object_human/gHumanEyeLookDownOpenTex" +static const ALIGN_ASSET(2) char gHumanEyeLookDownOpenTex[] = dgHumanEyeLookDownOpenTex; + +#define dgHumanEyebrowNormalTex "__OTR__objects/object_human/gHumanEyebrowNormalTex" +static const ALIGN_ASSET(2) char gHumanEyebrowNormalTex[] = dgHumanEyebrowNormalTex; + +#define dgHumanEyebrowSurprisedTex "__OTR__objects/object_human/gHumanEyebrowSurprisedTex" +static const ALIGN_ASSET(2) char gHumanEyebrowSurprisedTex[] = dgHumanEyebrowSurprisedTex; + +#define dgHumanEyebrowSadTex "__OTR__objects/object_human/gHumanEyebrowSadTex" +static const ALIGN_ASSET(2) char gHumanEyebrowSadTex[] = dgHumanEyebrowSadTex; + +#define dgHumanEyeLookForwardOpen2Tex "__OTR__objects/object_human/gHumanEyeLookForwardOpen2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookForwardOpen2Tex[] = dgHumanEyeLookForwardOpen2Tex; + +#define dgHumanEyeLookForwardHalf2Tex "__OTR__objects/object_human/gHumanEyeLookForwardHalf2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookForwardHalf2Tex[] = dgHumanEyeLookForwardHalf2Tex; + +#define dgHumanEyeLookForwardClosed2Tex "__OTR__objects/object_human/gHumanEyeLookForwardClosed2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookForwardClosed2Tex[] = dgHumanEyeLookForwardClosed2Tex; + +#define dgHumanEyeLookLeftOpen2Tex "__OTR__objects/object_human/gHumanEyeLookLeftOpen2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookLeftOpen2Tex[] = dgHumanEyeLookLeftOpen2Tex; + +#define dgHumanEyeLookLeftHalf2Tex "__OTR__objects/object_human/gHumanEyeLookLeftHalf2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookLeftHalf2Tex[] = dgHumanEyeLookLeftHalf2Tex; + +#define dgHumanEyeLookRightOpen2Tex "__OTR__objects/object_human/gHumanEyeLookRightOpen2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookRightOpen2Tex[] = dgHumanEyeLookRightOpen2Tex; + +#define dgHumanEyeLookRightHalf2Tex "__OTR__objects/object_human/gHumanEyeLookRightHalf2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookRightHalf2Tex[] = dgHumanEyeLookRightHalf2Tex; + +#define dgHumanEyeLookUpOpen2Tex "__OTR__objects/object_human/gHumanEyeLookUpOpen2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookUpOpen2Tex[] = dgHumanEyeLookUpOpen2Tex; + +#define dgHumanEyeLookDownOpen2Tex "__OTR__objects/object_human/gHumanEyeLookDownOpen2Tex" +static const ALIGN_ASSET(2) char gHumanEyeLookDownOpen2Tex[] = dgHumanEyeLookDownOpen2Tex; + +#define dgHumanEyebrowNormal2Tex "__OTR__objects/object_human/gHumanEyebrowNormal2Tex" +static const ALIGN_ASSET(2) char gHumanEyebrowNormal2Tex[] = dgHumanEyebrowNormal2Tex; + +#define dgHumanEyebrowSurprised2Tex "__OTR__objects/object_human/gHumanEyebrowSurprised2Tex" +static const ALIGN_ASSET(2) char gHumanEyebrowSurprised2Tex[] = dgHumanEyebrowSurprised2Tex; + +#define dgHumanEyebrowSad2Tex "__OTR__objects/object_human/gHumanEyebrowSad2Tex" +static const ALIGN_ASSET(2) char gHumanEyebrowSad2Tex[] = dgHumanEyebrowSad2Tex; + +#define dobject_human_Tex_005400 "__OTR__objects/object_human/object_human_Tex_005400" +static const ALIGN_ASSET(2) char object_human_Tex_005400[] = dobject_human_Tex_005400; + +#define dobject_human_Tex_005500 "__OTR__objects/object_human/object_human_Tex_005500" +static const ALIGN_ASSET(2) char object_human_Tex_005500[] = dobject_human_Tex_005500; + +#define dgHumanMouthClosed1Tex "__OTR__objects/object_human/gHumanMouthClosed1Tex" +static const ALIGN_ASSET(2) char gHumanMouthClosed1Tex[] = dgHumanMouthClosed1Tex; + +#define dgHumanMouthOpen1Tex "__OTR__objects/object_human/gHumanMouthOpen1Tex" +static const ALIGN_ASSET(2) char gHumanMouthOpen1Tex[] = dgHumanMouthOpen1Tex; + +#define dgHumanMouthOpen2Tex "__OTR__objects/object_human/gHumanMouthOpen2Tex" +static const ALIGN_ASSET(2) char gHumanMouthOpen2Tex[] = dgHumanMouthOpen2Tex; + +#define dgHumanMouthClosed2Tex "__OTR__objects/object_human/gHumanMouthClosed2Tex" +static const ALIGN_ASSET(2) char gHumanMouthClosed2Tex[] = dgHumanMouthClosed2Tex; + +#define dgHumanMouthOpen3Tex "__OTR__objects/object_human/gHumanMouthOpen3Tex" +static const ALIGN_ASSET(2) char gHumanMouthOpen3Tex[] = dgHumanMouthOpen3Tex; + +#define dgHumanMouthOpen4Tex "__OTR__objects/object_human/gHumanMouthOpen4Tex" +static const ALIGN_ASSET(2) char gHumanMouthOpen4Tex[] = dgHumanMouthOpen4Tex; + +#define dgHumanMouthClosed3Tex "__OTR__objects/object_human/gHumanMouthClosed3Tex" +static const ALIGN_ASSET(2) char gHumanMouthClosed3Tex[] = dgHumanMouthClosed3Tex; + +#define dgHumanMouthOpen5Tex "__OTR__objects/object_human/gHumanMouthOpen5Tex" +static const ALIGN_ASSET(2) char gHumanMouthOpen5Tex[] = dgHumanMouthOpen5Tex; + +#define dgHumanMouthOpen6Tex "__OTR__objects/object_human/gHumanMouthOpen6Tex" +static const ALIGN_ASSET(2) char gHumanMouthOpen6Tex[] = dgHumanMouthOpen6Tex; + +#define dgHumanTLUT "__OTR__objects/object_human/gHumanTLUT" +static const ALIGN_ASSET(2) char gHumanTLUT[] = dgHumanTLUT; + +#define dgHumanLookingBackAnim "__OTR__objects/object_human/gHumanLookingBackAnim" +static const ALIGN_ASSET(2) char gHumanLookingBackAnim[] = dgHumanLookingBackAnim; + +#define dgHumanLookingBackStartsAnim "__OTR__objects/object_human/gHumanLookingBackStartsAnim" +static const ALIGN_ASSET(2) char gHumanLookingBackStartsAnim[] = dgHumanLookingBackStartsAnim; + +#define dgHumanTiltHeadAnim "__OTR__objects/object_human/gHumanTiltHeadAnim" +static const ALIGN_ASSET(2) char gHumanTiltHeadAnim[] = dgHumanTiltHeadAnim; + +#define dgHumanLookingAroundAnim "__OTR__objects/object_human/gHumanLookingAroundAnim" +static const ALIGN_ASSET(2) char gHumanLookingAroundAnim[] = dgHumanLookingAroundAnim; + +#define dgHumanLookingBackEndsAnim "__OTR__objects/object_human/gHumanLookingBackEndsAnim" +static const ALIGN_ASSET(2) char gHumanLookingBackEndsAnim[] = dgHumanLookingBackEndsAnim; + +#define dgHumanThinkingEndAnim "__OTR__objects/object_human/gHumanThinkingEndAnim" +static const ALIGN_ASSET(2) char gHumanThinkingEndAnim[] = dgHumanThinkingEndAnim; + +#define dgHumanThinkingStartsAnim "__OTR__objects/object_human/gHumanThinkingStartsAnim" +static const ALIGN_ASSET(2) char gHumanThinkingStartsAnim[] = dgHumanThinkingStartsAnim; + +#define dgHumanThinkingAnim "__OTR__objects/object_human/gHumanThinkingAnim" +static const ALIGN_ASSET(2) char gHumanThinkingAnim[] = dgHumanThinkingAnim; + +#define dgHumanArmLeftDL "__OTR__objects/object_human/gHumanArmLeftDL" +static const ALIGN_ASSET(2) char gHumanArmLeftDL[] = dgHumanArmLeftDL; + +#define dgHumanArmLeftWrapperDL "__OTR__objects/object_human/gHumanArmLeftWrapperDL" +static const ALIGN_ASSET(2) char gHumanArmLeftWrapperDL[] = dgHumanArmLeftWrapperDL; + +#define dgHumanArmLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanArmLeftWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanArmLeftWrapperWrapperDL[] = dgHumanArmLeftWrapperWrapperDL; + +#define dgHumanForearmLeftDL "__OTR__objects/object_human/gHumanForearmLeftDL" +static const ALIGN_ASSET(2) char gHumanForearmLeftDL[] = dgHumanForearmLeftDL; + +#define dgHumanForearmLeftWrapperDL "__OTR__objects/object_human/gHumanForearmLeftWrapperDL" +static const ALIGN_ASSET(2) char gHumanForearmLeftWrapperDL[] = dgHumanForearmLeftWrapperDL; + +#define dgHumanForearmLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanForearmLeftWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanForearmLeftWrapperWrapperDL[] = dgHumanForearmLeftWrapperWrapperDL; + +#define dgHumanFootLeftDL "__OTR__objects/object_human/gHumanFootLeftDL" +static const ALIGN_ASSET(2) char gHumanFootLeftDL[] = dgHumanFootLeftDL; + +#define dgHumanFootLeftWrapperDL "__OTR__objects/object_human/gHumanFootLeftWrapperDL" +static const ALIGN_ASSET(2) char gHumanFootLeftWrapperDL[] = dgHumanFootLeftWrapperDL; + +#define dgHumanFootLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanFootLeftWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanFootLeftWrapperWrapperDL[] = dgHumanFootLeftWrapperWrapperDL; + +#define dgHumanHandLeftDL "__OTR__objects/object_human/gHumanHandLeftDL" +static const ALIGN_ASSET(2) char gHumanHandLeftDL[] = dgHumanHandLeftDL; + +#define dgHumanHandLeftWrapperDL "__OTR__objects/object_human/gHumanHandLeftWrapperDL" +static const ALIGN_ASSET(2) char gHumanHandLeftWrapperDL[] = dgHumanHandLeftWrapperDL; + +#define dgHumanHandLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanHandLeftWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanHandLeftWrapperWrapperDL[] = dgHumanHandLeftWrapperWrapperDL; + +#define dgHumanLegLeftDL "__OTR__objects/object_human/gHumanLegLeftDL" +static const ALIGN_ASSET(2) char gHumanLegLeftDL[] = dgHumanLegLeftDL; + +#define dgHumanLegLeftWrapperDL "__OTR__objects/object_human/gHumanLegLeftWrapperDL" +static const ALIGN_ASSET(2) char gHumanLegLeftWrapperDL[] = dgHumanLegLeftWrapperDL; + +#define dgHumanLegLeftWrapperWrapperDL "__OTR__objects/object_human/gHumanLegLeftWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanLegLeftWrapperWrapperDL[] = dgHumanLegLeftWrapperWrapperDL; + +#define dgHumanArmRightDL "__OTR__objects/object_human/gHumanArmRightDL" +static const ALIGN_ASSET(2) char gHumanArmRightDL[] = dgHumanArmRightDL; + +#define dgHumanArmRightWrapperDL "__OTR__objects/object_human/gHumanArmRightWrapperDL" +static const ALIGN_ASSET(2) char gHumanArmRightWrapperDL[] = dgHumanArmRightWrapperDL; + +#define dgHumanArmRightWrapperWrapperDL "__OTR__objects/object_human/gHumanArmRightWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanArmRightWrapperWrapperDL[] = dgHumanArmRightWrapperWrapperDL; + +#define dgHumanForearmRightDL "__OTR__objects/object_human/gHumanForearmRightDL" +static const ALIGN_ASSET(2) char gHumanForearmRightDL[] = dgHumanForearmRightDL; + +#define dgHumanForearmRightWrapperDL "__OTR__objects/object_human/gHumanForearmRightWrapperDL" +static const ALIGN_ASSET(2) char gHumanForearmRightWrapperDL[] = dgHumanForearmRightWrapperDL; + +#define dgHumanForearmRightWrapperWrapperDL "__OTR__objects/object_human/gHumanForearmRightWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanForearmRightWrapperWrapperDL[] = dgHumanForearmRightWrapperWrapperDL; + +#define dgHumanFootRightDL "__OTR__objects/object_human/gHumanFootRightDL" +static const ALIGN_ASSET(2) char gHumanFootRightDL[] = dgHumanFootRightDL; + +#define dgHumanFootRightWrapperDL "__OTR__objects/object_human/gHumanFootRightWrapperDL" +static const ALIGN_ASSET(2) char gHumanFootRightWrapperDL[] = dgHumanFootRightWrapperDL; + +#define dgHumanFootRightWrapperWrapperDL "__OTR__objects/object_human/gHumanFootRightWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanFootRightWrapperWrapperDL[] = dgHumanFootRightWrapperWrapperDL; + +#define dgHumanHandRightDL "__OTR__objects/object_human/gHumanHandRightDL" +static const ALIGN_ASSET(2) char gHumanHandRightDL[] = dgHumanHandRightDL; + +#define dgHumanHandRightWrapperDL "__OTR__objects/object_human/gHumanHandRightWrapperDL" +static const ALIGN_ASSET(2) char gHumanHandRightWrapperDL[] = dgHumanHandRightWrapperDL; + +#define dgHumanHandRightWrapperWrapperDL "__OTR__objects/object_human/gHumanHandRightWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanHandRightWrapperWrapperDL[] = dgHumanHandRightWrapperWrapperDL; + +#define dgHumanLegRightDL "__OTR__objects/object_human/gHumanLegRightDL" +static const ALIGN_ASSET(2) char gHumanLegRightDL[] = dgHumanLegRightDL; + +#define dgHumanLegRightWrapperDL "__OTR__objects/object_human/gHumanLegRightWrapperDL" +static const ALIGN_ASSET(2) char gHumanLegRightWrapperDL[] = dgHumanLegRightWrapperDL; + +#define dgHumanLegRightWrapperWrapperDL "__OTR__objects/object_human/gHumanLegRightWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanLegRightWrapperWrapperDL[] = dgHumanLegRightWrapperWrapperDL; + +#define dgHumanTorsoDL "__OTR__objects/object_human/gHumanTorsoDL" +static const ALIGN_ASSET(2) char gHumanTorsoDL[] = dgHumanTorsoDL; + +#define dgHumanTorsoWrapperDL "__OTR__objects/object_human/gHumanTorsoWrapperDL" +static const ALIGN_ASSET(2) char gHumanTorsoWrapperDL[] = dgHumanTorsoWrapperDL; + +#define dgHumanTorsoWrapperWrapperDL "__OTR__objects/object_human/gHumanTorsoWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanTorsoWrapperWrapperDL[] = dgHumanTorsoWrapperWrapperDL; + +#define dgHumanHairDL "__OTR__objects/object_human/gHumanHairDL" +static const ALIGN_ASSET(2) char gHumanHairDL[] = dgHumanHairDL; + +#define dgHumanHairWrapperDL "__OTR__objects/object_human/gHumanHairWrapperDL" +static const ALIGN_ASSET(2) char gHumanHairWrapperDL[] = dgHumanHairWrapperDL; + +#define dgHumanHairWrapperWrapperDL "__OTR__objects/object_human/gHumanHairWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanHairWrapperWrapperDL[] = dgHumanHairWrapperWrapperDL; + +#define dgHumanHeadDL "__OTR__objects/object_human/gHumanHeadDL" +static const ALIGN_ASSET(2) char gHumanHeadDL[] = dgHumanHeadDL; + +#define dgHumanHeadWrapperDL "__OTR__objects/object_human/gHumanHeadWrapperDL" +static const ALIGN_ASSET(2) char gHumanHeadWrapperDL[] = dgHumanHeadWrapperDL; + +#define dgHumanHeadWrapperWrapperDL "__OTR__objects/object_human/gHumanHeadWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanHeadWrapperWrapperDL[] = dgHumanHeadWrapperWrapperDL; + +#define dgHumanWaistDL "__OTR__objects/object_human/gHumanWaistDL" +static const ALIGN_ASSET(2) char gHumanWaistDL[] = dgHumanWaistDL; + +#define dgHumanWaistWrapperDL "__OTR__objects/object_human/gHumanWaistWrapperDL" +static const ALIGN_ASSET(2) char gHumanWaistWrapperDL[] = dgHumanWaistWrapperDL; + +#define dgHumanWaistWrapperWrapperDL "__OTR__objects/object_human/gHumanWaistWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanWaistWrapperWrapperDL[] = dgHumanWaistWrapperWrapperDL; + +#define dgHumanDressLowerDL "__OTR__objects/object_human/gHumanDressLowerDL" +static const ALIGN_ASSET(2) char gHumanDressLowerDL[] = dgHumanDressLowerDL; + +#define dgHumanDressLowerWrapperDL "__OTR__objects/object_human/gHumanDressLowerWrapperDL" +static const ALIGN_ASSET(2) char gHumanDressLowerWrapperDL[] = dgHumanDressLowerWrapperDL; + +#define dgHumanDressLowerWrapperWrapperDL "__OTR__objects/object_human/gHumanDressLowerWrapperWrapperDL" +static const ALIGN_ASSET(2) char gHumanDressLowerWrapperWrapperDL[] = dgHumanDressLowerWrapperWrapperDL; + +#define dgHumanEarTex "__OTR__objects/object_human/gHumanEarTex" +static const ALIGN_ASSET(2) char gHumanEarTex[] = dgHumanEarTex; + +#define dgHumanDressOrnamentsTex "__OTR__objects/object_human/gHumanDressOrnamentsTex" +static const ALIGN_ASSET(2) char gHumanDressOrnamentsTex[] = dgHumanDressOrnamentsTex; + +#define dgHumanBeltTex "__OTR__objects/object_human/gHumanBeltTex" +static const ALIGN_ASSET(2) char gHumanBeltTex[] = dgHumanBeltTex; + +#define dgHumanFingersTex "__OTR__objects/object_human/gHumanFingersTex" +static const ALIGN_ASSET(2) char gHumanFingersTex[] = dgHumanFingersTex; + +#define dgHumanNeckTex "__OTR__objects/object_human/gHumanNeckTex" +static const ALIGN_ASSET(2) char gHumanNeckTex[] = dgHumanNeckTex; + +#define dgHumanHairSideTex "__OTR__objects/object_human/gHumanHairSideTex" +static const ALIGN_ASSET(2) char gHumanHairSideTex[] = dgHumanHairSideTex; + +#define dgHumanHairTex "__OTR__objects/object_human/gHumanHairTex" +static const ALIGN_ASSET(2) char gHumanHairTex[] = dgHumanHairTex; + +#define dobject_human_Tex_010C28 "__OTR__objects/object_human/object_human_Tex_010C28" +static const ALIGN_ASSET(2) char object_human_Tex_010C28[] = dobject_human_Tex_010C28; + +#define dgHumanSkinTex "__OTR__objects/object_human/gHumanSkinTex" +static const ALIGN_ASSET(2) char gHumanSkinTex[] = dgHumanSkinTex; + +#define dgHumanShoeTex "__OTR__objects/object_human/gHumanShoeTex" +static const ALIGN_ASSET(2) char gHumanShoeTex[] = dgHumanShoeTex; + +#define dgHumanIdleAnim "__OTR__objects/object_human/gHumanIdleAnim" +static const ALIGN_ASSET(2) char gHumanIdleAnim[] = dgHumanIdleAnim; + +#define dgHumanWalkingAnim "__OTR__objects/object_human/gHumanWalkingAnim" +static const ALIGN_ASSET(2) char gHumanWalkingAnim[] = dgHumanWalkingAnim; + +#define dgHumanWalkingEndAnim "__OTR__objects/object_human/gHumanWalkingEndAnim" +static const ALIGN_ASSET(2) char gHumanWalkingEndAnim[] = dgHumanWalkingEndAnim; + +#define dgHumanWalkingStartAnim "__OTR__objects/object_human/gHumanWalkingStartAnim" +static const ALIGN_ASSET(2) char gHumanWalkingStartAnim[] = dgHumanWalkingStartAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_ice_objects/object_ice_objects.h b/soh/assets/objects/object_ice_objects/object_ice_objects.h index 46af3c412..f85143491 100644 --- a/soh/assets/objects/object_ice_objects/object_ice_objects.h +++ b/soh/assets/objects/object_ice_objects/object_ice_objects.h @@ -1,156 +1,69 @@ #pragma once -#define dobject_ice_objects_DL_000190 "__OTR__objects/object_ice_objects/object_ice_objects_DL_000190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_DL_000190[] = dobject_ice_objects_DL_000190; -#else -static const char object_ice_objects_DL_000190[] __attribute__((aligned (2))) = dobject_ice_objects_DL_000190; -#endif - -#define dobject_ice_objects_Col_0003F0 "__OTR__objects/object_ice_objects/object_ice_objects_Col_0003F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Col_0003F0[] = dobject_ice_objects_Col_0003F0; -#else -static const char object_ice_objects_Col_0003F0[] __attribute__((aligned (2))) = dobject_ice_objects_Col_0003F0; -#endif - -#define dobject_ice_objects_DL_0006F0 "__OTR__objects/object_ice_objects/object_ice_objects_DL_0006F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_DL_0006F0[] = dobject_ice_objects_DL_0006F0; -#else -static const char object_ice_objects_DL_0006F0[] __attribute__((aligned (2))) = dobject_ice_objects_DL_0006F0; -#endif - -#define dobject_ice_objects_DL_0012A0 "__OTR__objects/object_ice_objects/object_ice_objects_DL_0012A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_DL_0012A0[] = dobject_ice_objects_DL_0012A0; -#else -static const char object_ice_objects_DL_0012A0[] __attribute__((aligned (2))) = dobject_ice_objects_DL_0012A0; -#endif - -#define dobject_ice_objects_Col_001C1C "__OTR__objects/object_ice_objects/object_ice_objects_Col_001C1C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Col_001C1C[] = dobject_ice_objects_Col_001C1C; -#else -static const char object_ice_objects_Col_001C1C[] __attribute__((aligned (2))) = dobject_ice_objects_Col_001C1C; -#endif - -#define dobject_ice_objects_DL_001D10 "__OTR__objects/object_ice_objects/object_ice_objects_DL_001D10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_DL_001D10[] = dobject_ice_objects_DL_001D10; -#else -static const char object_ice_objects_DL_001D10[] __attribute__((aligned (2))) = dobject_ice_objects_DL_001D10; -#endif - -#define dobject_ice_objects_DL_0021F0 "__OTR__objects/object_ice_objects/object_ice_objects_DL_0021F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_DL_0021F0[] = dobject_ice_objects_DL_0021F0; -#else -static const char object_ice_objects_DL_0021F0[] __attribute__((aligned (2))) = dobject_ice_objects_DL_0021F0; -#endif - -#define dobject_ice_objects_DL_0023D0 "__OTR__objects/object_ice_objects/object_ice_objects_DL_0023D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_DL_0023D0[] = dobject_ice_objects_DL_0023D0; -#else -static const char object_ice_objects_DL_0023D0[] __attribute__((aligned (2))) = dobject_ice_objects_DL_0023D0; -#endif - -#define dobject_ice_objects_Col_002594 "__OTR__objects/object_ice_objects/object_ice_objects_Col_002594" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Col_002594[] = dobject_ice_objects_Col_002594; -#else -static const char object_ice_objects_Col_002594[] __attribute__((aligned (2))) = dobject_ice_objects_Col_002594; -#endif - -#define dobject_ice_objects_DL_002640 "__OTR__objects/object_ice_objects/object_ice_objects_DL_002640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_DL_002640[] = dobject_ice_objects_DL_002640; -#else -static const char object_ice_objects_DL_002640[] __attribute__((aligned (2))) = dobject_ice_objects_DL_002640; -#endif - -#define dobject_ice_objects_DL_002740 "__OTR__objects/object_ice_objects/object_ice_objects_DL_002740" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_DL_002740[] = dobject_ice_objects_DL_002740; -#else -static const char object_ice_objects_DL_002740[] __attribute__((aligned (2))) = dobject_ice_objects_DL_002740; -#endif - -#define dobject_ice_objects_Col_002854 "__OTR__objects/object_ice_objects/object_ice_objects_Col_002854" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Col_002854[] = dobject_ice_objects_Col_002854; -#else -static const char object_ice_objects_Col_002854[] __attribute__((aligned (2))) = dobject_ice_objects_Col_002854; -#endif - -#define dobject_ice_objects_Col_002920 "__OTR__objects/object_ice_objects/object_ice_objects_Col_002920" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Col_002920[] = dobject_ice_objects_Col_002920; -#else -static const char object_ice_objects_Col_002920[] __attribute__((aligned (2))) = dobject_ice_objects_Col_002920; -#endif - -#define dobject_ice_objects_Tex_002950 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_002950" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_002950[] = dobject_ice_objects_Tex_002950; -#else -static const char object_ice_objects_Tex_002950[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_002950; -#endif - -#define dobject_ice_objects_Tex_003150 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_003150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_003150[] = dobject_ice_objects_Tex_003150; -#else -static const char object_ice_objects_Tex_003150[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_003150; -#endif - -#define dobject_ice_objects_Tex_004150 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_004150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_004150[] = dobject_ice_objects_Tex_004150; -#else -static const char object_ice_objects_Tex_004150[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_004150; -#endif - -#define dobject_ice_objects_Tex_004950 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_004950" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_004950[] = dobject_ice_objects_Tex_004950; -#else -static const char object_ice_objects_Tex_004950[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_004950; -#endif - -#define dobject_ice_objects_Tex_005150 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_005150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_005150[] = dobject_ice_objects_Tex_005150; -#else -static const char object_ice_objects_Tex_005150[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_005150; -#endif - -#define dobject_ice_objects_Tex_005550 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_005550" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_005550[] = dobject_ice_objects_Tex_005550; -#else -static const char object_ice_objects_Tex_005550[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_005550; -#endif - -#define dobject_ice_objects_Tex_005D50 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_005D50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_005D50[] = dobject_ice_objects_Tex_005D50; -#else -static const char object_ice_objects_Tex_005D50[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_005D50; -#endif - -#define dobject_ice_objects_Tex_006D50 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_006D50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_006D50[] = dobject_ice_objects_Tex_006D50; -#else -static const char object_ice_objects_Tex_006D50[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_006D50; -#endif - -#define dobject_ice_objects_Tex_007D50 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_007D50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ice_objects_Tex_007D50[] = dobject_ice_objects_Tex_007D50; -#else -static const char object_ice_objects_Tex_007D50[] __attribute__((aligned (2))) = dobject_ice_objects_Tex_007D50; -#endif - +#include "align_asset_macro.h" + +#define dobject_ice_objects_DL_000190 "__OTR__objects/object_ice_objects/object_ice_objects_DL_000190" +static const ALIGN_ASSET(2) char object_ice_objects_DL_000190[] = dobject_ice_objects_DL_000190; + +#define dobject_ice_objects_Col_0003F0 "__OTR__objects/object_ice_objects/object_ice_objects_Col_0003F0" +static const ALIGN_ASSET(2) char object_ice_objects_Col_0003F0[] = dobject_ice_objects_Col_0003F0; + +#define dobject_ice_objects_DL_0006F0 "__OTR__objects/object_ice_objects/object_ice_objects_DL_0006F0" +static const ALIGN_ASSET(2) char object_ice_objects_DL_0006F0[] = dobject_ice_objects_DL_0006F0; + +#define dobject_ice_objects_DL_0012A0 "__OTR__objects/object_ice_objects/object_ice_objects_DL_0012A0" +static const ALIGN_ASSET(2) char object_ice_objects_DL_0012A0[] = dobject_ice_objects_DL_0012A0; + +#define dobject_ice_objects_Col_001C1C "__OTR__objects/object_ice_objects/object_ice_objects_Col_001C1C" +static const ALIGN_ASSET(2) char object_ice_objects_Col_001C1C[] = dobject_ice_objects_Col_001C1C; + +#define dobject_ice_objects_DL_001D10 "__OTR__objects/object_ice_objects/object_ice_objects_DL_001D10" +static const ALIGN_ASSET(2) char object_ice_objects_DL_001D10[] = dobject_ice_objects_DL_001D10; + +#define dobject_ice_objects_DL_0021F0 "__OTR__objects/object_ice_objects/object_ice_objects_DL_0021F0" +static const ALIGN_ASSET(2) char object_ice_objects_DL_0021F0[] = dobject_ice_objects_DL_0021F0; + +#define dobject_ice_objects_DL_0023D0 "__OTR__objects/object_ice_objects/object_ice_objects_DL_0023D0" +static const ALIGN_ASSET(2) char object_ice_objects_DL_0023D0[] = dobject_ice_objects_DL_0023D0; + +#define dobject_ice_objects_Col_002594 "__OTR__objects/object_ice_objects/object_ice_objects_Col_002594" +static const ALIGN_ASSET(2) char object_ice_objects_Col_002594[] = dobject_ice_objects_Col_002594; + +#define dobject_ice_objects_DL_002640 "__OTR__objects/object_ice_objects/object_ice_objects_DL_002640" +static const ALIGN_ASSET(2) char object_ice_objects_DL_002640[] = dobject_ice_objects_DL_002640; + +#define dobject_ice_objects_DL_002740 "__OTR__objects/object_ice_objects/object_ice_objects_DL_002740" +static const ALIGN_ASSET(2) char object_ice_objects_DL_002740[] = dobject_ice_objects_DL_002740; + +#define dobject_ice_objects_Col_002854 "__OTR__objects/object_ice_objects/object_ice_objects_Col_002854" +static const ALIGN_ASSET(2) char object_ice_objects_Col_002854[] = dobject_ice_objects_Col_002854; + +#define dobject_ice_objects_Col_002920 "__OTR__objects/object_ice_objects/object_ice_objects_Col_002920" +static const ALIGN_ASSET(2) char object_ice_objects_Col_002920[] = dobject_ice_objects_Col_002920; + +#define dobject_ice_objects_Tex_002950 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_002950" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_002950[] = dobject_ice_objects_Tex_002950; + +#define dobject_ice_objects_Tex_003150 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_003150" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_003150[] = dobject_ice_objects_Tex_003150; + +#define dobject_ice_objects_Tex_004150 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_004150" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_004150[] = dobject_ice_objects_Tex_004150; + +#define dobject_ice_objects_Tex_004950 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_004950" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_004950[] = dobject_ice_objects_Tex_004950; + +#define dobject_ice_objects_Tex_005150 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_005150" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_005150[] = dobject_ice_objects_Tex_005150; + +#define dobject_ice_objects_Tex_005550 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_005550" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_005550[] = dobject_ice_objects_Tex_005550; + +#define dobject_ice_objects_Tex_005D50 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_005D50" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_005D50[] = dobject_ice_objects_Tex_005D50; + +#define dobject_ice_objects_Tex_006D50 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_006D50" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_006D50[] = dobject_ice_objects_Tex_006D50; + +#define dobject_ice_objects_Tex_007D50 "__OTR__objects/object_ice_objects/object_ice_objects_Tex_007D50" +static const ALIGN_ASSET(2) char object_ice_objects_Tex_007D50[] = dobject_ice_objects_Tex_007D50; \ No newline at end of file diff --git a/soh/assets/objects/object_ik/object_ik.h b/soh/assets/objects/object_ik/object_ik.h index ea4091746..5996b0cf3 100644 --- a/soh/assets/objects/object_ik/object_ik.h +++ b/soh/assets/objects/object_ik/object_ik.h @@ -1,660 +1,285 @@ #pragma once -#define dobject_ik_Skel_000380 "__OTR__objects/object_ik/object_ik_Skel_000380" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_000380[] = dobject_ik_Skel_000380; -#else -static const char object_ik_Skel_000380[] __attribute__((aligned (2))) = dobject_ik_Skel_000380; -#endif - -#define dobject_ik_Skel_000660 "__OTR__objects/object_ik/object_ik_Skel_000660" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_000660[] = dobject_ik_Skel_000660; -#else -static const char object_ik_Skel_000660[] __attribute__((aligned (2))) = dobject_ik_Skel_000660; -#endif - -#define dobject_ik_Skel_000C90 "__OTR__objects/object_ik/object_ik_Skel_000C90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_000C90[] = dobject_ik_Skel_000C90; -#else -static const char object_ik_Skel_000C90[] __attribute__((aligned (2))) = dobject_ik_Skel_000C90; -#endif - -#define dobject_ik_Skel_000900 "__OTR__objects/object_ik/object_ik_Skel_000900" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_000900[] = dobject_ik_Skel_000900; -#else -static const char object_ik_Skel_000900[] __attribute__((aligned (2))) = dobject_ik_Skel_000900; -#endif - -#define dobject_ik_Skel_000F30 "__OTR__objects/object_ik/object_ik_Skel_000F30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_000F30[] = dobject_ik_Skel_000F30; -#else -static const char object_ik_Skel_000F30[] __attribute__((aligned (2))) = dobject_ik_Skel_000F30; -#endif - -#define dobject_ik_Skel_01EB40 "__OTR__objects/object_ik/object_ik_Skel_01EB40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_01EB40[] = dobject_ik_Skel_01EB40; -#else -static const char object_ik_Skel_01EB40[] __attribute__((aligned (2))) = dobject_ik_Skel_01EB40; -#endif - -#define dobject_ik_Skel_01EE60 "__OTR__objects/object_ik/object_ik_Skel_01EE60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_01EE60[] = dobject_ik_Skel_01EE60; -#else -static const char object_ik_Skel_01EE60[] __attribute__((aligned (2))) = dobject_ik_Skel_01EE60; -#endif - -#define dobject_ik_Skel_01E178 "__OTR__objects/object_ik/object_ik_Skel_01E178" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_01E178[] = dobject_ik_Skel_01E178; -#else -static const char object_ik_Skel_01E178[] __attribute__((aligned (2))) = dobject_ik_Skel_01E178; -#endif - -#define dobject_ik_Skel_0205C0 "__OTR__objects/object_ik/object_ik_Skel_0205C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Skel_0205C0[] = dobject_ik_Skel_0205C0; -#else -static const char object_ik_Skel_0205C0[] __attribute__((aligned (2))) = dobject_ik_Skel_0205C0; -#endif - -#define dobject_ik_Anim_00035C "__OTR__objects/object_ik/object_ik_Anim_00035C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_00035C[] = dobject_ik_Anim_00035C; -#else -static const char object_ik_Anim_00035C[] __attribute__((aligned (2))) = dobject_ik_Anim_00035C; -#endif - -#define dobject_ik_Anim_000634 "__OTR__objects/object_ik/object_ik_Anim_000634" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_000634[] = dobject_ik_Anim_000634; -#else -static const char object_ik_Anim_000634[] __attribute__((aligned (2))) = dobject_ik_Anim_000634; -#endif - -#define dobject_ik_Anim_0008DC "__OTR__objects/object_ik/object_ik_Anim_0008DC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_0008DC[] = dobject_ik_Anim_0008DC; -#else -static const char object_ik_Anim_0008DC[] __attribute__((aligned (2))) = dobject_ik_Anim_0008DC; -#endif - -#define dobject_ik_Anim_000C6C "__OTR__objects/object_ik/object_ik_Anim_000C6C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_000C6C[] = dobject_ik_Anim_000C6C; -#else -static const char object_ik_Anim_000C6C[] __attribute__((aligned (2))) = dobject_ik_Anim_000C6C; -#endif - -#define dobject_ik_Anim_000F0C "__OTR__objects/object_ik/object_ik_Anim_000F0C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_000F0C[] = dobject_ik_Anim_000F0C; -#else -static const char object_ik_Anim_000F0C[] __attribute__((aligned (2))) = dobject_ik_Anim_000F0C; -#endif - -#define dobject_ik_Anim_001C28 "__OTR__objects/object_ik/object_ik_Anim_001C28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_001C28[] = dobject_ik_Anim_001C28; -#else -static const char object_ik_Anim_001C28[] __attribute__((aligned (2))) = dobject_ik_Anim_001C28; -#endif - -#define dobject_ik_Anim_002538 "__OTR__objects/object_ik/object_ik_Anim_002538" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_002538[] = dobject_ik_Anim_002538; -#else -static const char object_ik_Anim_002538[] __attribute__((aligned (2))) = dobject_ik_Anim_002538; -#endif - -#define dobject_ik_Anim_0029FC "__OTR__objects/object_ik/object_ik_Anim_0029FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_0029FC[] = dobject_ik_Anim_0029FC; -#else -static const char object_ik_Anim_0029FC[] __attribute__((aligned (2))) = dobject_ik_Anim_0029FC; -#endif - -#define dobject_ik_Anim_0033C4 "__OTR__objects/object_ik/object_ik_Anim_0033C4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_0033C4[] = dobject_ik_Anim_0033C4; -#else -static const char object_ik_Anim_0033C4[] __attribute__((aligned (2))) = dobject_ik_Anim_0033C4; -#endif - -#define dobject_ik_Anim_003DBC "__OTR__objects/object_ik/object_ik_Anim_003DBC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_003DBC[] = dobject_ik_Anim_003DBC; -#else -static const char object_ik_Anim_003DBC[] __attribute__((aligned (2))) = dobject_ik_Anim_003DBC; -#endif - -#define dobject_ik_Anim_0045BC "__OTR__objects/object_ik/object_ik_Anim_0045BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_0045BC[] = dobject_ik_Anim_0045BC; -#else -static const char object_ik_Anim_0045BC[] __attribute__((aligned (2))) = dobject_ik_Anim_0045BC; -#endif - -#define dobject_ik_Anim_00485C "__OTR__objects/object_ik/object_ik_Anim_00485C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_00485C[] = dobject_ik_Anim_00485C; -#else -static const char object_ik_Anim_00485C[] __attribute__((aligned (2))) = dobject_ik_Anim_00485C; -#endif - -#define dobject_ik_Anim_005944 "__OTR__objects/object_ik/object_ik_Anim_005944" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_005944[] = dobject_ik_Anim_005944; -#else -static const char object_ik_Anim_005944[] __attribute__((aligned (2))) = dobject_ik_Anim_005944; -#endif - -#define dobject_ik_Anim_006194 "__OTR__objects/object_ik/object_ik_Anim_006194" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_006194[] = dobject_ik_Anim_006194; -#else -static const char object_ik_Anim_006194[] __attribute__((aligned (2))) = dobject_ik_Anim_006194; -#endif - -#define dobject_ik_Anim_006734 "__OTR__objects/object_ik/object_ik_Anim_006734" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_006734[] = dobject_ik_Anim_006734; -#else -static const char object_ik_Anim_006734[] __attribute__((aligned (2))) = dobject_ik_Anim_006734; -#endif - -#define dobject_ik_Anim_00C114 "__OTR__objects/object_ik/object_ik_Anim_00C114" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_00C114[] = dobject_ik_Anim_00C114; -#else -static const char object_ik_Anim_00C114[] __attribute__((aligned (2))) = dobject_ik_Anim_00C114; -#endif - -#define dobject_ik_Anim_00CD70 "__OTR__objects/object_ik/object_ik_Anim_00CD70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_00CD70[] = dobject_ik_Anim_00CD70; -#else -static const char object_ik_Anim_00CD70[] __attribute__((aligned (2))) = dobject_ik_Anim_00CD70; -#endif - -#define dobject_ik_Anim_00DD50 "__OTR__objects/object_ik/object_ik_Anim_00DD50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_00DD50[] = dobject_ik_Anim_00DD50; -#else -static const char object_ik_Anim_00DD50[] __attribute__((aligned (2))) = dobject_ik_Anim_00DD50; -#endif - -#define dobject_ik_Anim_00ED24 "__OTR__objects/object_ik/object_ik_Anim_00ED24" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_00ED24[] = dobject_ik_Anim_00ED24; -#else -static const char object_ik_Anim_00ED24[] __attribute__((aligned (2))) = dobject_ik_Anim_00ED24; -#endif - -#define dobject_ik_Anim_01EB14 "__OTR__objects/object_ik/object_ik_Anim_01EB14" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_01EB14[] = dobject_ik_Anim_01EB14; -#else -static const char object_ik_Anim_01EB14[] __attribute__((aligned (2))) = dobject_ik_Anim_01EB14; -#endif - -#define dobject_ik_Anim_01EE34 "__OTR__objects/object_ik/object_ik_Anim_01EE34" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_01EE34[] = dobject_ik_Anim_01EE34; -#else -static const char object_ik_Anim_01EE34[] __attribute__((aligned (2))) = dobject_ik_Anim_01EE34; -#endif - -#define dobject_ik_Anim_0203D8 "__OTR__objects/object_ik/object_ik_Anim_0203D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Anim_0203D8[] = dobject_ik_Anim_0203D8; -#else -static const char object_ik_Anim_0203D8[] __attribute__((aligned (2))) = dobject_ik_Anim_0203D8; -#endif - -#define dobject_ik_Tlut_00F630 "__OTR__objects/object_ik/object_ik_Tlut_00F630" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tlut_00F630[] = dobject_ik_Tlut_00F630; -#else -static const char object_ik_Tlut_00F630[] __attribute__((aligned (2))) = dobject_ik_Tlut_00F630; -#endif - -#define dobject_ik_Tex_00F7A0 "__OTR__objects/object_ik/object_ik_Tex_00F7A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_00F7A0[] = dobject_ik_Tex_00F7A0; -#else -static const char object_ik_Tex_00F7A0[] __attribute__((aligned (2))) = dobject_ik_Tex_00F7A0; -#endif - -#define dobject_ik_Tex_00FBA0 "__OTR__objects/object_ik/object_ik_Tex_00FBA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_00FBA0[] = dobject_ik_Tex_00FBA0; -#else -static const char object_ik_Tex_00FBA0[] __attribute__((aligned (2))) = dobject_ik_Tex_00FBA0; -#endif - -#define dobject_ik_Tex_00FFA0 "__OTR__objects/object_ik/object_ik_Tex_00FFA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_00FFA0[] = dobject_ik_Tex_00FFA0; -#else -static const char object_ik_Tex_00FFA0[] __attribute__((aligned (2))) = dobject_ik_Tex_00FFA0; -#endif - -#define dobject_ik_Tex_0101A0 "__OTR__objects/object_ik/object_ik_Tex_0101A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_0101A0[] = dobject_ik_Tex_0101A0; -#else -static const char object_ik_Tex_0101A0[] __attribute__((aligned (2))) = dobject_ik_Tex_0101A0; -#endif - -#define dobject_ik_Tex_0103A0 "__OTR__objects/object_ik/object_ik_Tex_0103A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_0103A0[] = dobject_ik_Tex_0103A0; -#else -static const char object_ik_Tex_0103A0[] __attribute__((aligned (2))) = dobject_ik_Tex_0103A0; -#endif - -#define dobject_ik_Tex_010BA0 "__OTR__objects/object_ik/object_ik_Tex_010BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_010BA0[] = dobject_ik_Tex_010BA0; -#else -static const char object_ik_Tex_010BA0[] __attribute__((aligned (2))) = dobject_ik_Tex_010BA0; -#endif - -#define dobject_ik_Tex_0113A0 "__OTR__objects/object_ik/object_ik_Tex_0113A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_0113A0[] = dobject_ik_Tex_0113A0; -#else -static const char object_ik_Tex_0113A0[] __attribute__((aligned (2))) = dobject_ik_Tex_0113A0; -#endif - -#define dobject_ik_Tex_011420 "__OTR__objects/object_ik/object_ik_Tex_011420" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_011420[] = dobject_ik_Tex_011420; -#else -static const char object_ik_Tex_011420[] __attribute__((aligned (2))) = dobject_ik_Tex_011420; -#endif - -#define dobject_ik_Tex_011520 "__OTR__objects/object_ik/object_ik_Tex_011520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_011520[] = dobject_ik_Tex_011520; -#else -static const char object_ik_Tex_011520[] __attribute__((aligned (2))) = dobject_ik_Tex_011520; -#endif - -#define dobject_ik_Tex_011620 "__OTR__objects/object_ik/object_ik_Tex_011620" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_011620[] = dobject_ik_Tex_011620; -#else -static const char object_ik_Tex_011620[] __attribute__((aligned (2))) = dobject_ik_Tex_011620; -#endif - -#define dobject_ik_Tex_011660 "__OTR__objects/object_ik/object_ik_Tex_011660" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_011660[] = dobject_ik_Tex_011660; -#else -static const char object_ik_Tex_011660[] __attribute__((aligned (2))) = dobject_ik_Tex_011660; -#endif - -#define dobject_ik_Tex_011760 "__OTR__objects/object_ik/object_ik_Tex_011760" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_011760[] = dobject_ik_Tex_011760; -#else -static const char object_ik_Tex_011760[] __attribute__((aligned (2))) = dobject_ik_Tex_011760; -#endif - -#define dobject_ik_Tex_0117E0 "__OTR__objects/object_ik/object_ik_Tex_0117E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_0117E0[] = dobject_ik_Tex_0117E0; -#else -static const char object_ik_Tex_0117E0[] __attribute__((aligned (2))) = dobject_ik_Tex_0117E0; -#endif - -#define dobject_ik_Tex_011860 "__OTR__objects/object_ik/object_ik_Tex_011860" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_011860[] = dobject_ik_Tex_011860; -#else -static const char object_ik_Tex_011860[] __attribute__((aligned (2))) = dobject_ik_Tex_011860; -#endif - -#define dobject_ik_Tex_011960 "__OTR__objects/object_ik/object_ik_Tex_011960" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_011960[] = dobject_ik_Tex_011960; -#else -static const char object_ik_Tex_011960[] __attribute__((aligned (2))) = dobject_ik_Tex_011960; -#endif - -#define dobject_ik_DL_0151F0 "__OTR__objects/object_ik/object_ik_DL_0151F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_0151F0[] = dobject_ik_DL_0151F0; -#else -static const char object_ik_DL_0151F0[] __attribute__((aligned (2))) = dobject_ik_DL_0151F0; -#endif - -#define dobject_ik_DL_015380 "__OTR__objects/object_ik/object_ik_DL_015380" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_015380[] = dobject_ik_DL_015380; -#else -static const char object_ik_DL_015380[] __attribute__((aligned (2))) = dobject_ik_DL_015380; -#endif - -#define dobject_ik_DL_0154E0 "__OTR__objects/object_ik/object_ik_DL_0154E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_0154E0[] = dobject_ik_DL_0154E0; -#else -static const char object_ik_DL_0154E0[] __attribute__((aligned (2))) = dobject_ik_DL_0154E0; -#endif - -#define dobject_ik_DL_015840 "__OTR__objects/object_ik/object_ik_DL_015840" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_015840[] = dobject_ik_DL_015840; -#else -static const char object_ik_DL_015840[] __attribute__((aligned (2))) = dobject_ik_DL_015840; -#endif - -#define dobject_ik_DL_015B00 "__OTR__objects/object_ik/object_ik_DL_015B00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_015B00[] = dobject_ik_DL_015B00; -#else -static const char object_ik_DL_015B00[] __attribute__((aligned (2))) = dobject_ik_DL_015B00; -#endif - -#define dobject_ik_DL_016118 "__OTR__objects/object_ik/object_ik_DL_016118" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016118[] = dobject_ik_DL_016118; -#else -static const char object_ik_DL_016118[] __attribute__((aligned (2))) = dobject_ik_DL_016118; -#endif - -#define dobject_ik_DL_016278 "__OTR__objects/object_ik/object_ik_DL_016278" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016278[] = dobject_ik_DL_016278; -#else -static const char object_ik_DL_016278[] __attribute__((aligned (2))) = dobject_ik_DL_016278; -#endif - -#define dobject_ik_DL_016340 "__OTR__objects/object_ik/object_ik_DL_016340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016340[] = dobject_ik_DL_016340; -#else -static const char object_ik_DL_016340[] __attribute__((aligned (2))) = dobject_ik_DL_016340; -#endif - -#define dobject_ik_DL_0164A0 "__OTR__objects/object_ik/object_ik_DL_0164A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_0164A0[] = dobject_ik_DL_0164A0; -#else -static const char object_ik_DL_0164A0[] __attribute__((aligned (2))) = dobject_ik_DL_0164A0; -#endif - -#define dobject_ik_DL_016568 "__OTR__objects/object_ik/object_ik_DL_016568" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016568[] = dobject_ik_DL_016568; -#else -static const char object_ik_DL_016568[] __attribute__((aligned (2))) = dobject_ik_DL_016568; -#endif - -#define dobject_ik_DL_016658 "__OTR__objects/object_ik/object_ik_DL_016658" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016658[] = dobject_ik_DL_016658; -#else -static const char object_ik_DL_016658[] __attribute__((aligned (2))) = dobject_ik_DL_016658; -#endif - -#define dobject_ik_DL_016748 "__OTR__objects/object_ik/object_ik_DL_016748" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016748[] = dobject_ik_DL_016748; -#else -static const char object_ik_DL_016748[] __attribute__((aligned (2))) = dobject_ik_DL_016748; -#endif - -#define dobject_ik_DL_0169E8 "__OTR__objects/object_ik/object_ik_DL_0169E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_0169E8[] = dobject_ik_DL_0169E8; -#else -static const char object_ik_DL_0169E8[] __attribute__((aligned (2))) = dobject_ik_DL_0169E8; -#endif - -#define dobject_ik_DL_016BE0 "__OTR__objects/object_ik/object_ik_DL_016BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016BE0[] = dobject_ik_DL_016BE0; -#else -static const char object_ik_DL_016BE0[] __attribute__((aligned (2))) = dobject_ik_DL_016BE0; -#endif - -#define dobject_ik_DL_016CD8 "__OTR__objects/object_ik/object_ik_DL_016CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016CD8[] = dobject_ik_DL_016CD8; -#else -static const char object_ik_DL_016CD8[] __attribute__((aligned (2))) = dobject_ik_DL_016CD8; -#endif - -#define dobject_ik_DL_016D88 "__OTR__objects/object_ik/object_ik_DL_016D88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016D88[] = dobject_ik_DL_016D88; -#else -static const char object_ik_DL_016D88[] __attribute__((aligned (2))) = dobject_ik_DL_016D88; -#endif - -#define dobject_ik_DL_016EE8 "__OTR__objects/object_ik/object_ik_DL_016EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016EE8[] = dobject_ik_DL_016EE8; -#else -static const char object_ik_DL_016EE8[] __attribute__((aligned (2))) = dobject_ik_DL_016EE8; -#endif - -#define dobject_ik_DL_016F88 "__OTR__objects/object_ik/object_ik_DL_016F88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_016F88[] = dobject_ik_DL_016F88; -#else -static const char object_ik_DL_016F88[] __attribute__((aligned (2))) = dobject_ik_DL_016F88; -#endif - -#define dobject_ik_DL_017028 "__OTR__objects/object_ik/object_ik_DL_017028" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_017028[] = dobject_ik_DL_017028; -#else -static const char object_ik_DL_017028[] __attribute__((aligned (2))) = dobject_ik_DL_017028; -#endif - -#define dobject_ik_DL_017170 "__OTR__objects/object_ik/object_ik_DL_017170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_017170[] = dobject_ik_DL_017170; -#else -static const char object_ik_DL_017170[] __attribute__((aligned (2))) = dobject_ik_DL_017170; -#endif - -#define dobject_ik_Tlut_017288 "__OTR__objects/object_ik/object_ik_Tlut_017288" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tlut_017288[] = dobject_ik_Tlut_017288; -#else -static const char object_ik_Tlut_017288[] __attribute__((aligned (2))) = dobject_ik_Tlut_017288; -#endif - -#define dobject_ik_Tex_017378 "__OTR__objects/object_ik/object_ik_Tex_017378" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_017378[] = dobject_ik_Tex_017378; -#else -static const char object_ik_Tex_017378[] __attribute__((aligned (2))) = dobject_ik_Tex_017378; -#endif - -#define dobject_ik_Tex_017478 "__OTR__objects/object_ik/object_ik_Tex_017478" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_017478[] = dobject_ik_Tex_017478; -#else -static const char object_ik_Tex_017478[] __attribute__((aligned (2))) = dobject_ik_Tex_017478; -#endif - -#define dobject_ik_Tex_0174B8 "__OTR__objects/object_ik/object_ik_Tex_0174B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_0174B8[] = dobject_ik_Tex_0174B8; -#else -static const char object_ik_Tex_0174B8[] __attribute__((aligned (2))) = dobject_ik_Tex_0174B8; -#endif - -#define dobject_ik_Tex_0175B8 "__OTR__objects/object_ik/object_ik_Tex_0175B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_0175B8[] = dobject_ik_Tex_0175B8; -#else -static const char object_ik_Tex_0175B8[] __attribute__((aligned (2))) = dobject_ik_Tex_0175B8; -#endif - -#define dobject_ik_Tex_017638 "__OTR__objects/object_ik/object_ik_Tex_017638" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_017638[] = dobject_ik_Tex_017638; -#else -static const char object_ik_Tex_017638[] __attribute__((aligned (2))) = dobject_ik_Tex_017638; -#endif - -#define dobject_ik_Tex_0176B8 "__OTR__objects/object_ik/object_ik_Tex_0176B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_0176B8[] = dobject_ik_Tex_0176B8; -#else -static const char object_ik_Tex_0176B8[] __attribute__((aligned (2))) = dobject_ik_Tex_0176B8; -#endif - -#define dobject_ik_DL_018E78 "__OTR__objects/object_ik/object_ik_DL_018E78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_018E78[] = dobject_ik_DL_018E78; -#else -static const char object_ik_DL_018E78[] __attribute__((aligned (2))) = dobject_ik_DL_018E78; -#endif - -#define dobject_ik_DL_019100 "__OTR__objects/object_ik/object_ik_DL_019100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_019100[] = dobject_ik_DL_019100; -#else -static const char object_ik_DL_019100[] __attribute__((aligned (2))) = dobject_ik_DL_019100; -#endif - -#define dobject_ik_DL_019E08 "__OTR__objects/object_ik/object_ik_DL_019E08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_019E08[] = dobject_ik_DL_019E08; -#else -static const char object_ik_DL_019E08[] __attribute__((aligned (2))) = dobject_ik_DL_019E08; -#endif - -#define dobject_ik_DL_01BA78 "__OTR__objects/object_ik/object_ik_DL_01BA78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01BA78[] = dobject_ik_DL_01BA78; -#else -static const char object_ik_DL_01BA78[] __attribute__((aligned (2))) = dobject_ik_DL_01BA78; -#endif - -#define dobject_ik_DL_01BE98 "__OTR__objects/object_ik/object_ik_DL_01BE98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01BE98[] = dobject_ik_DL_01BE98; -#else -static const char object_ik_DL_01BE98[] __attribute__((aligned (2))) = dobject_ik_DL_01BE98; -#endif - -#define dobject_ik_DL_01C130 "__OTR__objects/object_ik/object_ik_DL_01C130" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01C130[] = dobject_ik_DL_01C130; -#else -static const char object_ik_DL_01C130[] __attribute__((aligned (2))) = dobject_ik_DL_01C130; -#endif - -#define dobject_ik_DL_01C2B8 "__OTR__objects/object_ik/object_ik_DL_01C2B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01C2B8[] = dobject_ik_DL_01C2B8; -#else -static const char object_ik_DL_01C2B8[] __attribute__((aligned (2))) = dobject_ik_DL_01C2B8; -#endif - -#define dobject_ik_DL_01C550 "__OTR__objects/object_ik/object_ik_DL_01C550" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01C550[] = dobject_ik_DL_01C550; -#else -static const char object_ik_DL_01C550[] __attribute__((aligned (2))) = dobject_ik_DL_01C550; -#endif - -#define dobject_ik_DL_01C6D8 "__OTR__objects/object_ik/object_ik_DL_01C6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01C6D8[] = dobject_ik_DL_01C6D8; -#else -static const char object_ik_DL_01C6D8[] __attribute__((aligned (2))) = dobject_ik_DL_01C6D8; -#endif - -#define dobject_ik_DL_01C7B8 "__OTR__objects/object_ik/object_ik_DL_01C7B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01C7B8[] = dobject_ik_DL_01C7B8; -#else -static const char object_ik_DL_01C7B8[] __attribute__((aligned (2))) = dobject_ik_DL_01C7B8; -#endif - -#define dobject_ik_DL_01CB58 "__OTR__objects/object_ik/object_ik_DL_01CB58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01CB58[] = dobject_ik_DL_01CB58; -#else -static const char object_ik_DL_01CB58[] __attribute__((aligned (2))) = dobject_ik_DL_01CB58; -#endif - -#define dobject_ik_DL_01CCA0 "__OTR__objects/object_ik/object_ik_DL_01CCA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01CCA0[] = dobject_ik_DL_01CCA0; -#else -static const char object_ik_DL_01CCA0[] __attribute__((aligned (2))) = dobject_ik_DL_01CCA0; -#endif - -#define dobject_ik_DL_01CEE0 "__OTR__objects/object_ik/object_ik_DL_01CEE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01CEE0[] = dobject_ik_DL_01CEE0; -#else -static const char object_ik_DL_01CEE0[] __attribute__((aligned (2))) = dobject_ik_DL_01CEE0; -#endif - -#define dobject_ik_DL_01D2B0 "__OTR__objects/object_ik/object_ik_DL_01D2B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01D2B0[] = dobject_ik_DL_01D2B0; -#else -static const char object_ik_DL_01D2B0[] __attribute__((aligned (2))) = dobject_ik_DL_01D2B0; -#endif - -#define dobject_ik_DL_01D3F8 "__OTR__objects/object_ik/object_ik_DL_01D3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01D3F8[] = dobject_ik_DL_01D3F8; -#else -static const char object_ik_DL_01D3F8[] __attribute__((aligned (2))) = dobject_ik_DL_01D3F8; -#endif - -#define dobject_ik_DL_01D638 "__OTR__objects/object_ik/object_ik_DL_01D638" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_DL_01D638[] = dobject_ik_DL_01D638; -#else -static const char object_ik_DL_01D638[] __attribute__((aligned (2))) = dobject_ik_DL_01D638; -#endif - -#define dobject_ik_Tlut_01D9A8 "__OTR__objects/object_ik/object_ik_Tlut_01D9A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tlut_01D9A8[] = dobject_ik_Tlut_01D9A8; -#else -static const char object_ik_Tlut_01D9A8[] __attribute__((aligned (2))) = dobject_ik_Tlut_01D9A8; -#endif - -#define dobject_ik_Tex_01DBA8 "__OTR__objects/object_ik/object_ik_Tex_01DBA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_01DBA8[] = dobject_ik_Tex_01DBA8; -#else -static const char object_ik_Tex_01DBA8[] __attribute__((aligned (2))) = dobject_ik_Tex_01DBA8; -#endif - -#define dobject_ik_Tex_01DDA8 "__OTR__objects/object_ik/object_ik_Tex_01DDA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_01DDA8[] = dobject_ik_Tex_01DDA8; -#else -static const char object_ik_Tex_01DDA8[] __attribute__((aligned (2))) = dobject_ik_Tex_01DDA8; -#endif - -#define dobject_ik_Tex_01DEA8 "__OTR__objects/object_ik/object_ik_Tex_01DEA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ik_Tex_01DEA8[] = dobject_ik_Tex_01DEA8; -#else -static const char object_ik_Tex_01DEA8[] __attribute__((aligned (2))) = dobject_ik_Tex_01DEA8; -#endif - +#include "align_asset_macro.h" + +#define dobject_ik_Skel_000380 "__OTR__objects/object_ik/object_ik_Skel_000380" +static const ALIGN_ASSET(2) char object_ik_Skel_000380[] = dobject_ik_Skel_000380; + +#define dobject_ik_Skel_000660 "__OTR__objects/object_ik/object_ik_Skel_000660" +static const ALIGN_ASSET(2) char object_ik_Skel_000660[] = dobject_ik_Skel_000660; + +#define dobject_ik_Skel_000C90 "__OTR__objects/object_ik/object_ik_Skel_000C90" +static const ALIGN_ASSET(2) char object_ik_Skel_000C90[] = dobject_ik_Skel_000C90; + +#define dobject_ik_Skel_000900 "__OTR__objects/object_ik/object_ik_Skel_000900" +static const ALIGN_ASSET(2) char object_ik_Skel_000900[] = dobject_ik_Skel_000900; + +#define dobject_ik_Skel_000F30 "__OTR__objects/object_ik/object_ik_Skel_000F30" +static const ALIGN_ASSET(2) char object_ik_Skel_000F30[] = dobject_ik_Skel_000F30; + +#define dobject_ik_Skel_01EB40 "__OTR__objects/object_ik/object_ik_Skel_01EB40" +static const ALIGN_ASSET(2) char object_ik_Skel_01EB40[] = dobject_ik_Skel_01EB40; + +#define dobject_ik_Skel_01EE60 "__OTR__objects/object_ik/object_ik_Skel_01EE60" +static const ALIGN_ASSET(2) char object_ik_Skel_01EE60[] = dobject_ik_Skel_01EE60; + +#define dobject_ik_Skel_01E178 "__OTR__objects/object_ik/object_ik_Skel_01E178" +static const ALIGN_ASSET(2) char object_ik_Skel_01E178[] = dobject_ik_Skel_01E178; + +#define dobject_ik_Skel_0205C0 "__OTR__objects/object_ik/object_ik_Skel_0205C0" +static const ALIGN_ASSET(2) char object_ik_Skel_0205C0[] = dobject_ik_Skel_0205C0; + +#define dobject_ik_Anim_00035C "__OTR__objects/object_ik/object_ik_Anim_00035C" +static const ALIGN_ASSET(2) char object_ik_Anim_00035C[] = dobject_ik_Anim_00035C; + +#define dobject_ik_Anim_000634 "__OTR__objects/object_ik/object_ik_Anim_000634" +static const ALIGN_ASSET(2) char object_ik_Anim_000634[] = dobject_ik_Anim_000634; + +#define dobject_ik_Anim_0008DC "__OTR__objects/object_ik/object_ik_Anim_0008DC" +static const ALIGN_ASSET(2) char object_ik_Anim_0008DC[] = dobject_ik_Anim_0008DC; + +#define dobject_ik_Anim_000C6C "__OTR__objects/object_ik/object_ik_Anim_000C6C" +static const ALIGN_ASSET(2) char object_ik_Anim_000C6C[] = dobject_ik_Anim_000C6C; + +#define dobject_ik_Anim_000F0C "__OTR__objects/object_ik/object_ik_Anim_000F0C" +static const ALIGN_ASSET(2) char object_ik_Anim_000F0C[] = dobject_ik_Anim_000F0C; + +#define dobject_ik_Anim_001C28 "__OTR__objects/object_ik/object_ik_Anim_001C28" +static const ALIGN_ASSET(2) char object_ik_Anim_001C28[] = dobject_ik_Anim_001C28; + +#define dobject_ik_Anim_002538 "__OTR__objects/object_ik/object_ik_Anim_002538" +static const ALIGN_ASSET(2) char object_ik_Anim_002538[] = dobject_ik_Anim_002538; + +#define dobject_ik_Anim_0029FC "__OTR__objects/object_ik/object_ik_Anim_0029FC" +static const ALIGN_ASSET(2) char object_ik_Anim_0029FC[] = dobject_ik_Anim_0029FC; + +#define dobject_ik_Anim_0033C4 "__OTR__objects/object_ik/object_ik_Anim_0033C4" +static const ALIGN_ASSET(2) char object_ik_Anim_0033C4[] = dobject_ik_Anim_0033C4; + +#define dobject_ik_Anim_003DBC "__OTR__objects/object_ik/object_ik_Anim_003DBC" +static const ALIGN_ASSET(2) char object_ik_Anim_003DBC[] = dobject_ik_Anim_003DBC; + +#define dobject_ik_Anim_0045BC "__OTR__objects/object_ik/object_ik_Anim_0045BC" +static const ALIGN_ASSET(2) char object_ik_Anim_0045BC[] = dobject_ik_Anim_0045BC; + +#define dobject_ik_Anim_00485C "__OTR__objects/object_ik/object_ik_Anim_00485C" +static const ALIGN_ASSET(2) char object_ik_Anim_00485C[] = dobject_ik_Anim_00485C; + +#define dobject_ik_Anim_005944 "__OTR__objects/object_ik/object_ik_Anim_005944" +static const ALIGN_ASSET(2) char object_ik_Anim_005944[] = dobject_ik_Anim_005944; + +#define dobject_ik_Anim_006194 "__OTR__objects/object_ik/object_ik_Anim_006194" +static const ALIGN_ASSET(2) char object_ik_Anim_006194[] = dobject_ik_Anim_006194; + +#define dobject_ik_Anim_006734 "__OTR__objects/object_ik/object_ik_Anim_006734" +static const ALIGN_ASSET(2) char object_ik_Anim_006734[] = dobject_ik_Anim_006734; + +#define dobject_ik_Anim_00C114 "__OTR__objects/object_ik/object_ik_Anim_00C114" +static const ALIGN_ASSET(2) char object_ik_Anim_00C114[] = dobject_ik_Anim_00C114; + +#define dobject_ik_Anim_00CD70 "__OTR__objects/object_ik/object_ik_Anim_00CD70" +static const ALIGN_ASSET(2) char object_ik_Anim_00CD70[] = dobject_ik_Anim_00CD70; + +#define dobject_ik_Anim_00DD50 "__OTR__objects/object_ik/object_ik_Anim_00DD50" +static const ALIGN_ASSET(2) char object_ik_Anim_00DD50[] = dobject_ik_Anim_00DD50; + +#define dobject_ik_Anim_00ED24 "__OTR__objects/object_ik/object_ik_Anim_00ED24" +static const ALIGN_ASSET(2) char object_ik_Anim_00ED24[] = dobject_ik_Anim_00ED24; + +#define dobject_ik_Anim_01EB14 "__OTR__objects/object_ik/object_ik_Anim_01EB14" +static const ALIGN_ASSET(2) char object_ik_Anim_01EB14[] = dobject_ik_Anim_01EB14; + +#define dobject_ik_Anim_01EE34 "__OTR__objects/object_ik/object_ik_Anim_01EE34" +static const ALIGN_ASSET(2) char object_ik_Anim_01EE34[] = dobject_ik_Anim_01EE34; + +#define dobject_ik_Anim_0203D8 "__OTR__objects/object_ik/object_ik_Anim_0203D8" +static const ALIGN_ASSET(2) char object_ik_Anim_0203D8[] = dobject_ik_Anim_0203D8; + +#define dobject_ik_Tlut_00F630 "__OTR__objects/object_ik/object_ik_Tlut_00F630" +static const ALIGN_ASSET(2) char object_ik_Tlut_00F630[] = dobject_ik_Tlut_00F630; + +#define dobject_ik_Tex_00F7A0 "__OTR__objects/object_ik/object_ik_Tex_00F7A0" +static const ALIGN_ASSET(2) char object_ik_Tex_00F7A0[] = dobject_ik_Tex_00F7A0; + +#define dobject_ik_Tex_00FBA0 "__OTR__objects/object_ik/object_ik_Tex_00FBA0" +static const ALIGN_ASSET(2) char object_ik_Tex_00FBA0[] = dobject_ik_Tex_00FBA0; + +#define dobject_ik_Tex_00FFA0 "__OTR__objects/object_ik/object_ik_Tex_00FFA0" +static const ALIGN_ASSET(2) char object_ik_Tex_00FFA0[] = dobject_ik_Tex_00FFA0; + +#define dobject_ik_Tex_0101A0 "__OTR__objects/object_ik/object_ik_Tex_0101A0" +static const ALIGN_ASSET(2) char object_ik_Tex_0101A0[] = dobject_ik_Tex_0101A0; + +#define dobject_ik_Tex_0103A0 "__OTR__objects/object_ik/object_ik_Tex_0103A0" +static const ALIGN_ASSET(2) char object_ik_Tex_0103A0[] = dobject_ik_Tex_0103A0; + +#define dobject_ik_Tex_010BA0 "__OTR__objects/object_ik/object_ik_Tex_010BA0" +static const ALIGN_ASSET(2) char object_ik_Tex_010BA0[] = dobject_ik_Tex_010BA0; + +#define dobject_ik_Tex_0113A0 "__OTR__objects/object_ik/object_ik_Tex_0113A0" +static const ALIGN_ASSET(2) char object_ik_Tex_0113A0[] = dobject_ik_Tex_0113A0; + +#define dobject_ik_Tex_011420 "__OTR__objects/object_ik/object_ik_Tex_011420" +static const ALIGN_ASSET(2) char object_ik_Tex_011420[] = dobject_ik_Tex_011420; + +#define dobject_ik_Tex_011520 "__OTR__objects/object_ik/object_ik_Tex_011520" +static const ALIGN_ASSET(2) char object_ik_Tex_011520[] = dobject_ik_Tex_011520; + +#define dobject_ik_Tex_011620 "__OTR__objects/object_ik/object_ik_Tex_011620" +static const ALIGN_ASSET(2) char object_ik_Tex_011620[] = dobject_ik_Tex_011620; + +#define dobject_ik_Tex_011660 "__OTR__objects/object_ik/object_ik_Tex_011660" +static const ALIGN_ASSET(2) char object_ik_Tex_011660[] = dobject_ik_Tex_011660; + +#define dobject_ik_Tex_011760 "__OTR__objects/object_ik/object_ik_Tex_011760" +static const ALIGN_ASSET(2) char object_ik_Tex_011760[] = dobject_ik_Tex_011760; + +#define dobject_ik_Tex_0117E0 "__OTR__objects/object_ik/object_ik_Tex_0117E0" +static const ALIGN_ASSET(2) char object_ik_Tex_0117E0[] = dobject_ik_Tex_0117E0; + +#define dobject_ik_Tex_011860 "__OTR__objects/object_ik/object_ik_Tex_011860" +static const ALIGN_ASSET(2) char object_ik_Tex_011860[] = dobject_ik_Tex_011860; + +#define dobject_ik_Tex_011960 "__OTR__objects/object_ik/object_ik_Tex_011960" +static const ALIGN_ASSET(2) char object_ik_Tex_011960[] = dobject_ik_Tex_011960; + +#define dobject_ik_DL_0151F0 "__OTR__objects/object_ik/object_ik_DL_0151F0" +static const ALIGN_ASSET(2) char object_ik_DL_0151F0[] = dobject_ik_DL_0151F0; + +#define dobject_ik_DL_015380 "__OTR__objects/object_ik/object_ik_DL_015380" +static const ALIGN_ASSET(2) char object_ik_DL_015380[] = dobject_ik_DL_015380; + +#define dobject_ik_DL_0154E0 "__OTR__objects/object_ik/object_ik_DL_0154E0" +static const ALIGN_ASSET(2) char object_ik_DL_0154E0[] = dobject_ik_DL_0154E0; + +#define dobject_ik_DL_015840 "__OTR__objects/object_ik/object_ik_DL_015840" +static const ALIGN_ASSET(2) char object_ik_DL_015840[] = dobject_ik_DL_015840; + +#define dobject_ik_DL_015B00 "__OTR__objects/object_ik/object_ik_DL_015B00" +static const ALIGN_ASSET(2) char object_ik_DL_015B00[] = dobject_ik_DL_015B00; + +#define dobject_ik_DL_016118 "__OTR__objects/object_ik/object_ik_DL_016118" +static const ALIGN_ASSET(2) char object_ik_DL_016118[] = dobject_ik_DL_016118; + +#define dobject_ik_DL_016278 "__OTR__objects/object_ik/object_ik_DL_016278" +static const ALIGN_ASSET(2) char object_ik_DL_016278[] = dobject_ik_DL_016278; + +#define dobject_ik_DL_016340 "__OTR__objects/object_ik/object_ik_DL_016340" +static const ALIGN_ASSET(2) char object_ik_DL_016340[] = dobject_ik_DL_016340; + +#define dobject_ik_DL_0164A0 "__OTR__objects/object_ik/object_ik_DL_0164A0" +static const ALIGN_ASSET(2) char object_ik_DL_0164A0[] = dobject_ik_DL_0164A0; + +#define dobject_ik_DL_016568 "__OTR__objects/object_ik/object_ik_DL_016568" +static const ALIGN_ASSET(2) char object_ik_DL_016568[] = dobject_ik_DL_016568; + +#define dobject_ik_DL_016658 "__OTR__objects/object_ik/object_ik_DL_016658" +static const ALIGN_ASSET(2) char object_ik_DL_016658[] = dobject_ik_DL_016658; + +#define dobject_ik_DL_016748 "__OTR__objects/object_ik/object_ik_DL_016748" +static const ALIGN_ASSET(2) char object_ik_DL_016748[] = dobject_ik_DL_016748; + +#define dobject_ik_DL_0169E8 "__OTR__objects/object_ik/object_ik_DL_0169E8" +static const ALIGN_ASSET(2) char object_ik_DL_0169E8[] = dobject_ik_DL_0169E8; + +#define dobject_ik_DL_016BE0 "__OTR__objects/object_ik/object_ik_DL_016BE0" +static const ALIGN_ASSET(2) char object_ik_DL_016BE0[] = dobject_ik_DL_016BE0; + +#define dobject_ik_DL_016CD8 "__OTR__objects/object_ik/object_ik_DL_016CD8" +static const ALIGN_ASSET(2) char object_ik_DL_016CD8[] = dobject_ik_DL_016CD8; + +#define dobject_ik_DL_016D88 "__OTR__objects/object_ik/object_ik_DL_016D88" +static const ALIGN_ASSET(2) char object_ik_DL_016D88[] = dobject_ik_DL_016D88; + +#define dobject_ik_DL_016EE8 "__OTR__objects/object_ik/object_ik_DL_016EE8" +static const ALIGN_ASSET(2) char object_ik_DL_016EE8[] = dobject_ik_DL_016EE8; + +#define dobject_ik_DL_016F88 "__OTR__objects/object_ik/object_ik_DL_016F88" +static const ALIGN_ASSET(2) char object_ik_DL_016F88[] = dobject_ik_DL_016F88; + +#define dobject_ik_DL_017028 "__OTR__objects/object_ik/object_ik_DL_017028" +static const ALIGN_ASSET(2) char object_ik_DL_017028[] = dobject_ik_DL_017028; + +#define dobject_ik_DL_017170 "__OTR__objects/object_ik/object_ik_DL_017170" +static const ALIGN_ASSET(2) char object_ik_DL_017170[] = dobject_ik_DL_017170; + +#define dobject_ik_Tlut_017288 "__OTR__objects/object_ik/object_ik_Tlut_017288" +static const ALIGN_ASSET(2) char object_ik_Tlut_017288[] = dobject_ik_Tlut_017288; + +#define dobject_ik_Tex_017378 "__OTR__objects/object_ik/object_ik_Tex_017378" +static const ALIGN_ASSET(2) char object_ik_Tex_017378[] = dobject_ik_Tex_017378; + +#define dobject_ik_Tex_017478 "__OTR__objects/object_ik/object_ik_Tex_017478" +static const ALIGN_ASSET(2) char object_ik_Tex_017478[] = dobject_ik_Tex_017478; + +#define dobject_ik_Tex_0174B8 "__OTR__objects/object_ik/object_ik_Tex_0174B8" +static const ALIGN_ASSET(2) char object_ik_Tex_0174B8[] = dobject_ik_Tex_0174B8; + +#define dobject_ik_Tex_0175B8 "__OTR__objects/object_ik/object_ik_Tex_0175B8" +static const ALIGN_ASSET(2) char object_ik_Tex_0175B8[] = dobject_ik_Tex_0175B8; + +#define dobject_ik_Tex_017638 "__OTR__objects/object_ik/object_ik_Tex_017638" +static const ALIGN_ASSET(2) char object_ik_Tex_017638[] = dobject_ik_Tex_017638; + +#define dobject_ik_Tex_0176B8 "__OTR__objects/object_ik/object_ik_Tex_0176B8" +static const ALIGN_ASSET(2) char object_ik_Tex_0176B8[] = dobject_ik_Tex_0176B8; + +#define dobject_ik_DL_018E78 "__OTR__objects/object_ik/object_ik_DL_018E78" +static const ALIGN_ASSET(2) char object_ik_DL_018E78[] = dobject_ik_DL_018E78; + +#define dobject_ik_DL_019100 "__OTR__objects/object_ik/object_ik_DL_019100" +static const ALIGN_ASSET(2) char object_ik_DL_019100[] = dobject_ik_DL_019100; + +#define dobject_ik_DL_019E08 "__OTR__objects/object_ik/object_ik_DL_019E08" +static const ALIGN_ASSET(2) char object_ik_DL_019E08[] = dobject_ik_DL_019E08; + +#define dobject_ik_DL_01BA78 "__OTR__objects/object_ik/object_ik_DL_01BA78" +static const ALIGN_ASSET(2) char object_ik_DL_01BA78[] = dobject_ik_DL_01BA78; + +#define dobject_ik_DL_01BE98 "__OTR__objects/object_ik/object_ik_DL_01BE98" +static const ALIGN_ASSET(2) char object_ik_DL_01BE98[] = dobject_ik_DL_01BE98; + +#define dobject_ik_DL_01C130 "__OTR__objects/object_ik/object_ik_DL_01C130" +static const ALIGN_ASSET(2) char object_ik_DL_01C130[] = dobject_ik_DL_01C130; + +#define dobject_ik_DL_01C2B8 "__OTR__objects/object_ik/object_ik_DL_01C2B8" +static const ALIGN_ASSET(2) char object_ik_DL_01C2B8[] = dobject_ik_DL_01C2B8; + +#define dobject_ik_DL_01C550 "__OTR__objects/object_ik/object_ik_DL_01C550" +static const ALIGN_ASSET(2) char object_ik_DL_01C550[] = dobject_ik_DL_01C550; + +#define dobject_ik_DL_01C6D8 "__OTR__objects/object_ik/object_ik_DL_01C6D8" +static const ALIGN_ASSET(2) char object_ik_DL_01C6D8[] = dobject_ik_DL_01C6D8; + +#define dobject_ik_DL_01C7B8 "__OTR__objects/object_ik/object_ik_DL_01C7B8" +static const ALIGN_ASSET(2) char object_ik_DL_01C7B8[] = dobject_ik_DL_01C7B8; + +#define dobject_ik_DL_01CB58 "__OTR__objects/object_ik/object_ik_DL_01CB58" +static const ALIGN_ASSET(2) char object_ik_DL_01CB58[] = dobject_ik_DL_01CB58; + +#define dobject_ik_DL_01CCA0 "__OTR__objects/object_ik/object_ik_DL_01CCA0" +static const ALIGN_ASSET(2) char object_ik_DL_01CCA0[] = dobject_ik_DL_01CCA0; + +#define dobject_ik_DL_01CEE0 "__OTR__objects/object_ik/object_ik_DL_01CEE0" +static const ALIGN_ASSET(2) char object_ik_DL_01CEE0[] = dobject_ik_DL_01CEE0; + +#define dobject_ik_DL_01D2B0 "__OTR__objects/object_ik/object_ik_DL_01D2B0" +static const ALIGN_ASSET(2) char object_ik_DL_01D2B0[] = dobject_ik_DL_01D2B0; + +#define dobject_ik_DL_01D3F8 "__OTR__objects/object_ik/object_ik_DL_01D3F8" +static const ALIGN_ASSET(2) char object_ik_DL_01D3F8[] = dobject_ik_DL_01D3F8; + +#define dobject_ik_DL_01D638 "__OTR__objects/object_ik/object_ik_DL_01D638" +static const ALIGN_ASSET(2) char object_ik_DL_01D638[] = dobject_ik_DL_01D638; + +#define dobject_ik_Tlut_01D9A8 "__OTR__objects/object_ik/object_ik_Tlut_01D9A8" +static const ALIGN_ASSET(2) char object_ik_Tlut_01D9A8[] = dobject_ik_Tlut_01D9A8; + +#define dobject_ik_Tex_01DBA8 "__OTR__objects/object_ik/object_ik_Tex_01DBA8" +static const ALIGN_ASSET(2) char object_ik_Tex_01DBA8[] = dobject_ik_Tex_01DBA8; + +#define dobject_ik_Tex_01DDA8 "__OTR__objects/object_ik/object_ik_Tex_01DDA8" +static const ALIGN_ASSET(2) char object_ik_Tex_01DDA8[] = dobject_ik_Tex_01DDA8; + +#define dobject_ik_Tex_01DEA8 "__OTR__objects/object_ik/object_ik_Tex_01DEA8" +static const ALIGN_ASSET(2) char object_ik_Tex_01DEA8[] = dobject_ik_Tex_01DEA8; \ No newline at end of file diff --git a/soh/assets/objects/object_im/object_im.h b/soh/assets/objects/object_im/object_im.h index 15a2daa0e..4ec1bc29d 100644 --- a/soh/assets/objects/object_im/object_im.h +++ b/soh/assets/objects/object_im/object_im.h @@ -1,401 +1,174 @@ #pragma once -#define dgImpaRaiseArmsAnim "__OTR__objects/object_im/gImpaRaiseArmsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaRaiseArmsAnim[] = dgImpaRaiseArmsAnim; -#else -static const char gImpaRaiseArmsAnim[] __attribute__((aligned (2))) = dgImpaRaiseArmsAnim; -#endif - -#define dgImpaPresentShadowMedallionAnim "__OTR__objects/object_im/gImpaPresentShadowMedallionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaPresentShadowMedallionAnim[] = dgImpaPresentShadowMedallionAnim; -#else -static const char gImpaPresentShadowMedallionAnim[] __attribute__((aligned (2))) = dgImpaPresentShadowMedallionAnim; -#endif - -#define dgImpaThrowDekuNutAnim "__OTR__objects/object_im/gImpaThrowDekuNutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaThrowDekuNutAnim[] = dgImpaThrowDekuNutAnim; -#else -static const char gImpaThrowDekuNutAnim[] __attribute__((aligned (2))) = dgImpaThrowDekuNutAnim; -#endif - -#define dgImpaIdleAnim "__OTR__objects/object_im/gImpaIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaIdleAnim[] = dgImpaIdleAnim; -#else -static const char gImpaIdleAnim[] __attribute__((aligned (2))) = dgImpaIdleAnim; -#endif - -#define dobject_im_TLUT_001880 "__OTR__objects/object_im/object_im_TLUT_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_im_TLUT_001880[] = dobject_im_TLUT_001880; -#else -static const char object_im_TLUT_001880[] __attribute__((aligned (2))) = dobject_im_TLUT_001880; -#endif - -#define dgImpaBrownGradientTex "__OTR__objects/object_im/gImpaBrownGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaBrownGradientTex[] = dgImpaBrownGradientTex; -#else -static const char gImpaBrownGradientTex[] __attribute__((aligned (2))) = dgImpaBrownGradientTex; -#endif - -#define dgImpaSkinAndArmGuardTex "__OTR__objects/object_im/gImpaSkinAndArmGuardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaSkinAndArmGuardTex[] = dgImpaSkinAndArmGuardTex; -#else -static const char gImpaSkinAndArmGuardTex[] __attribute__((aligned (2))) = dgImpaSkinAndArmGuardTex; -#endif - -#define dgImpaElbowTex "__OTR__objects/object_im/gImpaElbowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaElbowTex[] = dgImpaElbowTex; -#else -static const char gImpaElbowTex[] __attribute__((aligned (2))) = dgImpaElbowTex; -#endif - -#define dgImpaShoulderPadBottomEdgeTex "__OTR__objects/object_im/gImpaShoulderPadBottomEdgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaShoulderPadBottomEdgeTex[] = dgImpaShoulderPadBottomEdgeTex; -#else -static const char gImpaShoulderPadBottomEdgeTex[] __attribute__((aligned (2))) = dgImpaShoulderPadBottomEdgeTex; -#endif - -#define dgImpaShoulderSkinTex "__OTR__objects/object_im/gImpaShoulderSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaShoulderSkinTex[] = dgImpaShoulderSkinTex; -#else -static const char gImpaShoulderSkinTex[] __attribute__((aligned (2))) = dgImpaShoulderSkinTex; -#endif - -#define dgImpaChestPlateTex "__OTR__objects/object_im/gImpaChestPlateTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaChestPlateTex[] = dgImpaChestPlateTex; -#else -static const char gImpaChestPlateTex[] __attribute__((aligned (2))) = dgImpaChestPlateTex; -#endif - -#define dgImpaEmblemTex "__OTR__objects/object_im/gImpaEmblemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaEmblemTex[] = dgImpaEmblemTex; -#else -static const char gImpaEmblemTex[] __attribute__((aligned (2))) = dgImpaEmblemTex; -#endif - -#define dgImpaSpearEmblemTex "__OTR__objects/object_im/gImpaSpearEmblemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaSpearEmblemTex[] = dgImpaSpearEmblemTex; -#else -static const char gImpaSpearEmblemTex[] __attribute__((aligned (2))) = dgImpaSpearEmblemTex; -#endif - -#define dgImpaChestPlateStrapTex "__OTR__objects/object_im/gImpaChestPlateStrapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaChestPlateStrapTex[] = dgImpaChestPlateStrapTex; -#else -static const char gImpaChestPlateStrapTex[] __attribute__((aligned (2))) = dgImpaChestPlateStrapTex; -#endif - -#define dgImpaChestPlateEdgeTex "__OTR__objects/object_im/gImpaChestPlateEdgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaChestPlateEdgeTex[] = dgImpaChestPlateEdgeTex; -#else -static const char gImpaChestPlateEdgeTex[] __attribute__((aligned (2))) = dgImpaChestPlateEdgeTex; -#endif - -#define dgImpaNeckTex "__OTR__objects/object_im/gImpaNeckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaNeckTex[] = dgImpaNeckTex; -#else -static const char gImpaNeckTex[] __attribute__((aligned (2))) = dgImpaNeckTex; -#endif - -#define dgImpaSwordHandleTex "__OTR__objects/object_im/gImpaSwordHandleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaSwordHandleTex[] = dgImpaSwordHandleTex; -#else -static const char gImpaSwordHandleTex[] __attribute__((aligned (2))) = dgImpaSwordHandleTex; -#endif - -#define dgImpaPantsAndSkinTex "__OTR__objects/object_im/gImpaPantsAndSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaPantsAndSkinTex[] = dgImpaPantsAndSkinTex; -#else -static const char gImpaPantsAndSkinTex[] __attribute__((aligned (2))) = dgImpaPantsAndSkinTex; -#endif - -#define dgImpaBlackTex "__OTR__objects/object_im/gImpaBlackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaBlackTex[] = dgImpaBlackTex; -#else -static const char gImpaBlackTex[] __attribute__((aligned (2))) = dgImpaBlackTex; -#endif - -#define dgImpaChestDL "__OTR__objects/object_im/gImpaChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaChestDL[] = dgImpaChestDL; -#else -static const char gImpaChestDL[] __attribute__((aligned (2))) = dgImpaChestDL; -#endif - -#define dgImpaRightShoulderDL "__OTR__objects/object_im/gImpaRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaRightShoulderDL[] = dgImpaRightShoulderDL; -#else -static const char gImpaRightShoulderDL[] __attribute__((aligned (2))) = dgImpaRightShoulderDL; -#endif - -#define dgImpaRightArmDL "__OTR__objects/object_im/gImpaRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaRightArmDL[] = dgImpaRightArmDL; -#else -static const char gImpaRightArmDL[] __attribute__((aligned (2))) = dgImpaRightArmDL; -#endif - -#define dgImpaLeftShoulderDL "__OTR__objects/object_im/gImpaLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaLeftShoulderDL[] = dgImpaLeftShoulderDL; -#else -static const char gImpaLeftShoulderDL[] __attribute__((aligned (2))) = dgImpaLeftShoulderDL; -#endif - -#define dgImpaLeftArmDL "__OTR__objects/object_im/gImpaLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaLeftArmDL[] = dgImpaLeftArmDL; -#else -static const char gImpaLeftArmDL[] __attribute__((aligned (2))) = dgImpaLeftArmDL; -#endif - -#define dgImpaTorsoDL "__OTR__objects/object_im/gImpaTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaTorsoDL[] = dgImpaTorsoDL; -#else -static const char gImpaTorsoDL[] __attribute__((aligned (2))) = dgImpaTorsoDL; -#endif - -#define dgImpaRightThighDL "__OTR__objects/object_im/gImpaRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaRightThighDL[] = dgImpaRightThighDL; -#else -static const char gImpaRightThighDL[] __attribute__((aligned (2))) = dgImpaRightThighDL; -#endif - -#define dgImpaRightLegDL "__OTR__objects/object_im/gImpaRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaRightLegDL[] = dgImpaRightLegDL; -#else -static const char gImpaRightLegDL[] __attribute__((aligned (2))) = dgImpaRightLegDL; -#endif - -#define dgImpaLeftThighDL "__OTR__objects/object_im/gImpaLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaLeftThighDL[] = dgImpaLeftThighDL; -#else -static const char gImpaLeftThighDL[] __attribute__((aligned (2))) = dgImpaLeftThighDL; -#endif - -#define dgImpaLeftLegDL "__OTR__objects/object_im/gImpaLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaLeftLegDL[] = dgImpaLeftLegDL; -#else -static const char gImpaLeftLegDL[] __attribute__((aligned (2))) = dgImpaLeftLegDL; -#endif - -#define dgImpaEyesTLUT "__OTR__objects/object_im/gImpaEyesTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaEyesTLUT[] = dgImpaEyesTLUT; -#else -static const char gImpaEyesTLUT[] __attribute__((aligned (2))) = dgImpaEyesTLUT; -#endif - -#define dobject_im_TLUT_007140 "__OTR__objects/object_im/object_im_TLUT_007140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_im_TLUT_007140[] = dobject_im_TLUT_007140; -#else -static const char object_im_TLUT_007140[] __attribute__((aligned (2))) = dobject_im_TLUT_007140; -#endif - -#define dgImpaEyeOpenTex "__OTR__objects/object_im/gImpaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaEyeOpenTex[] = dgImpaEyeOpenTex; -#else -static const char gImpaEyeOpenTex[] __attribute__((aligned (2))) = dgImpaEyeOpenTex; -#endif - -#define dgImpaEyeHalfTex "__OTR__objects/object_im/gImpaEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaEyeHalfTex[] = dgImpaEyeHalfTex; -#else -static const char gImpaEyeHalfTex[] __attribute__((aligned (2))) = dgImpaEyeHalfTex; -#endif - -#define dgImpaEyeClosedTex "__OTR__objects/object_im/gImpaEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaEyeClosedTex[] = dgImpaEyeClosedTex; -#else -static const char gImpaEyeClosedTex[] __attribute__((aligned (2))) = dgImpaEyeClosedTex; -#endif - -#define dgImpaEarTex "__OTR__objects/object_im/gImpaEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaEarTex[] = dgImpaEarTex; -#else -static const char gImpaEarTex[] __attribute__((aligned (2))) = dgImpaEarTex; -#endif - -#define dgImpaHeadUnmaskedDL "__OTR__objects/object_im/gImpaHeadUnmaskedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaHeadUnmaskedDL[] = dgImpaHeadUnmaskedDL; -#else -static const char gImpaHeadUnmaskedDL[] __attribute__((aligned (2))) = dgImpaHeadUnmaskedDL; -#endif - -#define dgImpaHeadGradientTex "__OTR__objects/object_im/gImpaHeadGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaHeadGradientTex[] = dgImpaHeadGradientTex; -#else -static const char gImpaHeadGradientTex[] __attribute__((aligned (2))) = dgImpaHeadGradientTex; -#endif - -#define dobject_im_Tex_007750 "__OTR__objects/object_im/object_im_Tex_007750" -#ifdef _WIN32 -static const __declspec(align(2)) char object_im_Tex_007750[] = dobject_im_Tex_007750; -#else -static const char object_im_Tex_007750[] __attribute__((aligned (2))) = dobject_im_Tex_007750; -#endif - -#define dgImpaHair2Tex "__OTR__objects/object_im/gImpaHair2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaHair2Tex[] = dgImpaHair2Tex; -#else -static const char gImpaHair2Tex[] __attribute__((aligned (2))) = dgImpaHair2Tex; -#endif - -#define dobject_im_Tex_0079D0 "__OTR__objects/object_im/object_im_Tex_0079D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_im_Tex_0079D0[] = dobject_im_Tex_0079D0; -#else -static const char object_im_Tex_0079D0[] __attribute__((aligned (2))) = dobject_im_Tex_0079D0; -#endif - -#define dgImpaShoulderPadTopTex "__OTR__objects/object_im/gImpaShoulderPadTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaShoulderPadTopTex[] = dgImpaShoulderPadTopTex; -#else -static const char gImpaShoulderPadTopTex[] __attribute__((aligned (2))) = dgImpaShoulderPadTopTex; -#endif - -#define dobject_im_Tex_007B10 "__OTR__objects/object_im/object_im_Tex_007B10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_im_Tex_007B10[] = dobject_im_Tex_007B10; -#else -static const char object_im_Tex_007B10[] __attribute__((aligned (2))) = dobject_im_Tex_007B10; -#endif - -#define dobject_im_Tex_007B50 "__OTR__objects/object_im/object_im_Tex_007B50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_im_Tex_007B50[] = dobject_im_Tex_007B50; -#else -static const char object_im_Tex_007B50[] __attribute__((aligned (2))) = dobject_im_Tex_007B50; -#endif - -#define dgImpaFingers2Tex "__OTR__objects/object_im/gImpaFingers2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaFingers2Tex[] = dgImpaFingers2Tex; -#else -static const char gImpaFingers2Tex[] __attribute__((aligned (2))) = dgImpaFingers2Tex; -#endif - -#define dgImpaHeadMaskedDL "__OTR__objects/object_im/gImpaHeadMaskedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaHeadMaskedDL[] = dgImpaHeadMaskedDL; -#else -static const char gImpaHeadMaskedDL[] __attribute__((aligned (2))) = dgImpaHeadMaskedDL; -#endif - -#define dgImpaLeftFootDL "__OTR__objects/object_im/gImpaLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaLeftFootDL[] = dgImpaLeftFootDL; -#else -static const char gImpaLeftFootDL[] __attribute__((aligned (2))) = dgImpaLeftFootDL; -#endif - -#define dgImpaLeftHandDL "__OTR__objects/object_im/gImpaLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaLeftHandDL[] = dgImpaLeftHandDL; -#else -static const char gImpaLeftHandDL[] __attribute__((aligned (2))) = dgImpaLeftHandDL; -#endif - -#define dgImpaRightFootDL "__OTR__objects/object_im/gImpaRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaRightFootDL[] = dgImpaRightFootDL; -#else -static const char gImpaRightFootDL[] __attribute__((aligned (2))) = dgImpaRightFootDL; -#endif - -#define dgImpaRightHandDL "__OTR__objects/object_im/gImpaRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaRightHandDL[] = dgImpaRightHandDL; -#else -static const char gImpaRightHandDL[] __attribute__((aligned (2))) = dgImpaRightHandDL; -#endif - -#define dgImpaHandPointingDL "__OTR__objects/object_im/gImpaHandPointingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaHandPointingDL[] = dgImpaHandPointingDL; -#else -static const char gImpaHandPointingDL[] __attribute__((aligned (2))) = dgImpaHandPointingDL; -#endif - -#define dgImpaSkel "__OTR__objects/object_im/gImpaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaSkel[] = dgImpaSkel; -#else -static const char gImpaSkel[] __attribute__((aligned (2))) = dgImpaSkel; -#endif - -#define dobject_im_Anim_00FB10 "__OTR__objects/object_im/object_im_Anim_00FB10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_im_Anim_00FB10[] = dobject_im_Anim_00FB10; -#else -static const char object_im_Anim_00FB10[] __attribute__((aligned (2))) = dobject_im_Anim_00FB10; -#endif - -#define dobject_im_Anim_0101C8 "__OTR__objects/object_im/object_im_Anim_0101C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_im_Anim_0101C8[] = dobject_im_Anim_0101C8; -#else -static const char object_im_Anim_0101C8[] __attribute__((aligned (2))) = dobject_im_Anim_0101C8; -#endif - -#define dgImpaStartWhistlingAnim "__OTR__objects/object_im/gImpaStartWhistlingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaStartWhistlingAnim[] = dgImpaStartWhistlingAnim; -#else -static const char gImpaStartWhistlingAnim[] __attribute__((aligned (2))) = dgImpaStartWhistlingAnim; -#endif - -#define dgImpaWhistlingAnim "__OTR__objects/object_im/gImpaWhistlingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaWhistlingAnim[] = dgImpaWhistlingAnim; -#else -static const char gImpaWhistlingAnim[] __attribute__((aligned (2))) = dgImpaWhistlingAnim; -#endif - -#define dgImpaPrepareSealGanonAnim "__OTR__objects/object_im/gImpaPrepareSealGanonAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaPrepareSealGanonAnim[] = dgImpaPrepareSealGanonAnim; -#else -static const char gImpaPrepareSealGanonAnim[] __attribute__((aligned (2))) = dgImpaPrepareSealGanonAnim; -#endif - -#define dgImpaSealGanonAnim "__OTR__objects/object_im/gImpaSealGanonAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gImpaSealGanonAnim[] = dgImpaSealGanonAnim; -#else -static const char gImpaSealGanonAnim[] __attribute__((aligned (2))) = dgImpaSealGanonAnim; -#endif - +#include "align_asset_macro.h" + +#define dgImpaRaiseArmsAnim "__OTR__objects/object_im/gImpaRaiseArmsAnim" +static const ALIGN_ASSET(2) char gImpaRaiseArmsAnim[] = dgImpaRaiseArmsAnim; + +#define dgImpaPresentShadowMedallionAnim "__OTR__objects/object_im/gImpaPresentShadowMedallionAnim" +static const ALIGN_ASSET(2) char gImpaPresentShadowMedallionAnim[] = dgImpaPresentShadowMedallionAnim; + +#define dgImpaThrowDekuNutAnim "__OTR__objects/object_im/gImpaThrowDekuNutAnim" +static const ALIGN_ASSET(2) char gImpaThrowDekuNutAnim[] = dgImpaThrowDekuNutAnim; + +#define dgImpaIdleAnim "__OTR__objects/object_im/gImpaIdleAnim" +static const ALIGN_ASSET(2) char gImpaIdleAnim[] = dgImpaIdleAnim; + +#define dobject_im_TLUT_001880 "__OTR__objects/object_im/object_im_TLUT_001880" +static const ALIGN_ASSET(2) char object_im_TLUT_001880[] = dobject_im_TLUT_001880; + +#define dgImpaBrownGradientTex "__OTR__objects/object_im/gImpaBrownGradientTex" +static const ALIGN_ASSET(2) char gImpaBrownGradientTex[] = dgImpaBrownGradientTex; + +#define dgImpaSkinAndArmGuardTex "__OTR__objects/object_im/gImpaSkinAndArmGuardTex" +static const ALIGN_ASSET(2) char gImpaSkinAndArmGuardTex[] = dgImpaSkinAndArmGuardTex; + +#define dgImpaElbowTex "__OTR__objects/object_im/gImpaElbowTex" +static const ALIGN_ASSET(2) char gImpaElbowTex[] = dgImpaElbowTex; + +#define dgImpaShoulderPadBottomEdgeTex "__OTR__objects/object_im/gImpaShoulderPadBottomEdgeTex" +static const ALIGN_ASSET(2) char gImpaShoulderPadBottomEdgeTex[] = dgImpaShoulderPadBottomEdgeTex; + +#define dgImpaShoulderSkinTex "__OTR__objects/object_im/gImpaShoulderSkinTex" +static const ALIGN_ASSET(2) char gImpaShoulderSkinTex[] = dgImpaShoulderSkinTex; + +#define dgImpaChestPlateTex "__OTR__objects/object_im/gImpaChestPlateTex" +static const ALIGN_ASSET(2) char gImpaChestPlateTex[] = dgImpaChestPlateTex; + +#define dgImpaEmblemTex "__OTR__objects/object_im/gImpaEmblemTex" +static const ALIGN_ASSET(2) char gImpaEmblemTex[] = dgImpaEmblemTex; + +#define dgImpaSpearEmblemTex "__OTR__objects/object_im/gImpaSpearEmblemTex" +static const ALIGN_ASSET(2) char gImpaSpearEmblemTex[] = dgImpaSpearEmblemTex; + +#define dgImpaChestPlateStrapTex "__OTR__objects/object_im/gImpaChestPlateStrapTex" +static const ALIGN_ASSET(2) char gImpaChestPlateStrapTex[] = dgImpaChestPlateStrapTex; + +#define dgImpaChestPlateEdgeTex "__OTR__objects/object_im/gImpaChestPlateEdgeTex" +static const ALIGN_ASSET(2) char gImpaChestPlateEdgeTex[] = dgImpaChestPlateEdgeTex; + +#define dgImpaNeckTex "__OTR__objects/object_im/gImpaNeckTex" +static const ALIGN_ASSET(2) char gImpaNeckTex[] = dgImpaNeckTex; + +#define dgImpaSwordHandleTex "__OTR__objects/object_im/gImpaSwordHandleTex" +static const ALIGN_ASSET(2) char gImpaSwordHandleTex[] = dgImpaSwordHandleTex; + +#define dgImpaPantsAndSkinTex "__OTR__objects/object_im/gImpaPantsAndSkinTex" +static const ALIGN_ASSET(2) char gImpaPantsAndSkinTex[] = dgImpaPantsAndSkinTex; + +#define dgImpaBlackTex "__OTR__objects/object_im/gImpaBlackTex" +static const ALIGN_ASSET(2) char gImpaBlackTex[] = dgImpaBlackTex; + +#define dgImpaChestDL "__OTR__objects/object_im/gImpaChestDL" +static const ALIGN_ASSET(2) char gImpaChestDL[] = dgImpaChestDL; + +#define dgImpaRightShoulderDL "__OTR__objects/object_im/gImpaRightShoulderDL" +static const ALIGN_ASSET(2) char gImpaRightShoulderDL[] = dgImpaRightShoulderDL; + +#define dgImpaRightArmDL "__OTR__objects/object_im/gImpaRightArmDL" +static const ALIGN_ASSET(2) char gImpaRightArmDL[] = dgImpaRightArmDL; + +#define dgImpaLeftShoulderDL "__OTR__objects/object_im/gImpaLeftShoulderDL" +static const ALIGN_ASSET(2) char gImpaLeftShoulderDL[] = dgImpaLeftShoulderDL; + +#define dgImpaLeftArmDL "__OTR__objects/object_im/gImpaLeftArmDL" +static const ALIGN_ASSET(2) char gImpaLeftArmDL[] = dgImpaLeftArmDL; + +#define dgImpaTorsoDL "__OTR__objects/object_im/gImpaTorsoDL" +static const ALIGN_ASSET(2) char gImpaTorsoDL[] = dgImpaTorsoDL; + +#define dgImpaRightThighDL "__OTR__objects/object_im/gImpaRightThighDL" +static const ALIGN_ASSET(2) char gImpaRightThighDL[] = dgImpaRightThighDL; + +#define dgImpaRightLegDL "__OTR__objects/object_im/gImpaRightLegDL" +static const ALIGN_ASSET(2) char gImpaRightLegDL[] = dgImpaRightLegDL; + +#define dgImpaLeftThighDL "__OTR__objects/object_im/gImpaLeftThighDL" +static const ALIGN_ASSET(2) char gImpaLeftThighDL[] = dgImpaLeftThighDL; + +#define dgImpaLeftLegDL "__OTR__objects/object_im/gImpaLeftLegDL" +static const ALIGN_ASSET(2) char gImpaLeftLegDL[] = dgImpaLeftLegDL; + +#define dgImpaEyesTLUT "__OTR__objects/object_im/gImpaEyesTLUT" +static const ALIGN_ASSET(2) char gImpaEyesTLUT[] = dgImpaEyesTLUT; + +#define dobject_im_TLUT_007140 "__OTR__objects/object_im/object_im_TLUT_007140" +static const ALIGN_ASSET(2) char object_im_TLUT_007140[] = dobject_im_TLUT_007140; + +#define dgImpaEyeOpenTex "__OTR__objects/object_im/gImpaEyeOpenTex" +static const ALIGN_ASSET(2) char gImpaEyeOpenTex[] = dgImpaEyeOpenTex; + +#define dgImpaEyeHalfTex "__OTR__objects/object_im/gImpaEyeHalfTex" +static const ALIGN_ASSET(2) char gImpaEyeHalfTex[] = dgImpaEyeHalfTex; + +#define dgImpaEyeClosedTex "__OTR__objects/object_im/gImpaEyeClosedTex" +static const ALIGN_ASSET(2) char gImpaEyeClosedTex[] = dgImpaEyeClosedTex; + +#define dgImpaEarTex "__OTR__objects/object_im/gImpaEarTex" +static const ALIGN_ASSET(2) char gImpaEarTex[] = dgImpaEarTex; + +#define dgImpaHeadUnmaskedDL "__OTR__objects/object_im/gImpaHeadUnmaskedDL" +static const ALIGN_ASSET(2) char gImpaHeadUnmaskedDL[] = dgImpaHeadUnmaskedDL; + +#define dgImpaHeadGradientTex "__OTR__objects/object_im/gImpaHeadGradientTex" +static const ALIGN_ASSET(2) char gImpaHeadGradientTex[] = dgImpaHeadGradientTex; + +#define dobject_im_Tex_007750 "__OTR__objects/object_im/object_im_Tex_007750" +static const ALIGN_ASSET(2) char object_im_Tex_007750[] = dobject_im_Tex_007750; + +#define dgImpaHair2Tex "__OTR__objects/object_im/gImpaHair2Tex" +static const ALIGN_ASSET(2) char gImpaHair2Tex[] = dgImpaHair2Tex; + +#define dobject_im_Tex_0079D0 "__OTR__objects/object_im/object_im_Tex_0079D0" +static const ALIGN_ASSET(2) char object_im_Tex_0079D0[] = dobject_im_Tex_0079D0; + +#define dgImpaShoulderPadTopTex "__OTR__objects/object_im/gImpaShoulderPadTopTex" +static const ALIGN_ASSET(2) char gImpaShoulderPadTopTex[] = dgImpaShoulderPadTopTex; + +#define dobject_im_Tex_007B10 "__OTR__objects/object_im/object_im_Tex_007B10" +static const ALIGN_ASSET(2) char object_im_Tex_007B10[] = dobject_im_Tex_007B10; + +#define dobject_im_Tex_007B50 "__OTR__objects/object_im/object_im_Tex_007B50" +static const ALIGN_ASSET(2) char object_im_Tex_007B50[] = dobject_im_Tex_007B50; + +#define dgImpaFingers2Tex "__OTR__objects/object_im/gImpaFingers2Tex" +static const ALIGN_ASSET(2) char gImpaFingers2Tex[] = dgImpaFingers2Tex; + +#define dgImpaHeadMaskedDL "__OTR__objects/object_im/gImpaHeadMaskedDL" +static const ALIGN_ASSET(2) char gImpaHeadMaskedDL[] = dgImpaHeadMaskedDL; + +#define dgImpaLeftFootDL "__OTR__objects/object_im/gImpaLeftFootDL" +static const ALIGN_ASSET(2) char gImpaLeftFootDL[] = dgImpaLeftFootDL; + +#define dgImpaLeftHandDL "__OTR__objects/object_im/gImpaLeftHandDL" +static const ALIGN_ASSET(2) char gImpaLeftHandDL[] = dgImpaLeftHandDL; + +#define dgImpaRightFootDL "__OTR__objects/object_im/gImpaRightFootDL" +static const ALIGN_ASSET(2) char gImpaRightFootDL[] = dgImpaRightFootDL; + +#define dgImpaRightHandDL "__OTR__objects/object_im/gImpaRightHandDL" +static const ALIGN_ASSET(2) char gImpaRightHandDL[] = dgImpaRightHandDL; + +#define dgImpaHandPointingDL "__OTR__objects/object_im/gImpaHandPointingDL" +static const ALIGN_ASSET(2) char gImpaHandPointingDL[] = dgImpaHandPointingDL; + +#define dgImpaSkel "__OTR__objects/object_im/gImpaSkel" +static const ALIGN_ASSET(2) char gImpaSkel[] = dgImpaSkel; + +#define dobject_im_Anim_00FB10 "__OTR__objects/object_im/object_im_Anim_00FB10" +static const ALIGN_ASSET(2) char object_im_Anim_00FB10[] = dobject_im_Anim_00FB10; + +#define dobject_im_Anim_0101C8 "__OTR__objects/object_im/object_im_Anim_0101C8" +static const ALIGN_ASSET(2) char object_im_Anim_0101C8[] = dobject_im_Anim_0101C8; + +#define dgImpaStartWhistlingAnim "__OTR__objects/object_im/gImpaStartWhistlingAnim" +static const ALIGN_ASSET(2) char gImpaStartWhistlingAnim[] = dgImpaStartWhistlingAnim; + +#define dgImpaWhistlingAnim "__OTR__objects/object_im/gImpaWhistlingAnim" +static const ALIGN_ASSET(2) char gImpaWhistlingAnim[] = dgImpaWhistlingAnim; + +#define dgImpaPrepareSealGanonAnim "__OTR__objects/object_im/gImpaPrepareSealGanonAnim" +static const ALIGN_ASSET(2) char gImpaPrepareSealGanonAnim[] = dgImpaPrepareSealGanonAnim; + +#define dgImpaSealGanonAnim "__OTR__objects/object_im/gImpaSealGanonAnim" +static const ALIGN_ASSET(2) char gImpaSealGanonAnim[] = dgImpaSealGanonAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_in/object_in.h b/soh/assets/objects/object_in/object_in.h index 73b270973..884423198 100644 --- a/soh/assets/objects/object_in/object_in.h +++ b/soh/assets/objects/object_in/object_in.h @@ -1,758 +1,327 @@ #pragma once -#define dobject_in_Anim_0003B4 "__OTR__objects/object_in/object_in_Anim_0003B4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_0003B4[] = dobject_in_Anim_0003B4; -#else -static const char object_in_Anim_0003B4[] __attribute__((aligned (2))) = dobject_in_Anim_0003B4; -#endif - -#define dobject_in_Anim_000CB0 "__OTR__objects/object_in/object_in_Anim_000CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_000CB0[] = dobject_in_Anim_000CB0; -#else -static const char object_in_Anim_000CB0[] __attribute__((aligned (2))) = dobject_in_Anim_000CB0; -#endif - -#define dobject_in_Anim_001BE0 "__OTR__objects/object_in/object_in_Anim_001BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_001BE0[] = dobject_in_Anim_001BE0; -#else -static const char object_in_Anim_001BE0[] __attribute__((aligned (2))) = dobject_in_Anim_001BE0; -#endif - -#define dobject_in_Anim_001CC0 "__OTR__objects/object_in/object_in_Anim_001CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_001CC0[] = dobject_in_Anim_001CC0; -#else -static const char object_in_Anim_001CC0[] __attribute__((aligned (2))) = dobject_in_Anim_001CC0; -#endif - -#define dgIngoTLUT "__OTR__objects/object_in/gIngoTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoTLUT[] = dgIngoTLUT; -#else -static const char gIngoTLUT[] __attribute__((aligned (2))) = dgIngoTLUT; -#endif - -#define dgIngoSkinGradientTLUT "__OTR__objects/object_in/gIngoSkinGradientTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoSkinGradientTLUT[] = dgIngoSkinGradientTLUT; -#else -static const char gIngoSkinGradientTLUT[] __attribute__((aligned (2))) = dgIngoSkinGradientTLUT; -#endif - -#define dgIngoUnusedEyeTex "__OTR__objects/object_in/gIngoUnusedEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoUnusedEyeTex[] = dgIngoUnusedEyeTex; -#else -static const char gIngoUnusedEyeTex[] __attribute__((aligned (2))) = dgIngoUnusedEyeTex; -#endif - -#define dgIngoSkinGradientTex "__OTR__objects/object_in/gIngoSkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoSkinGradientTex[] = dgIngoSkinGradientTex; -#else -static const char gIngoSkinGradientTex[] __attribute__((aligned (2))) = dgIngoSkinGradientTex; -#endif - -#define dgIngoArmHairTex "__OTR__objects/object_in/gIngoArmHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoArmHairTex[] = dgIngoArmHairTex; -#else -static const char gIngoArmHairTex[] __attribute__((aligned (2))) = dgIngoArmHairTex; -#endif - -#define dgIngoFingersTex "__OTR__objects/object_in/gIngoFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoFingersTex[] = dgIngoFingersTex; -#else -static const char gIngoFingersTex[] __attribute__((aligned (2))) = dgIngoFingersTex; -#endif - -#define dgIngoShirtSleeveTex "__OTR__objects/object_in/gIngoShirtSleeveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoShirtSleeveTex[] = dgIngoShirtSleeveTex; -#else -static const char gIngoShirtSleeveTex[] __attribute__((aligned (2))) = dgIngoShirtSleeveTex; -#endif - -#define dgIngoShirtButtonsTex "__OTR__objects/object_in/gIngoShirtButtonsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoShirtButtonsTex[] = dgIngoShirtButtonsTex; -#else -static const char gIngoShirtButtonsTex[] __attribute__((aligned (2))) = dgIngoShirtButtonsTex; -#endif - -#define dgIngoClothTex "__OTR__objects/object_in/gIngoClothTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoClothTex[] = dgIngoClothTex; -#else -static const char gIngoClothTex[] __attribute__((aligned (2))) = dgIngoClothTex; -#endif - -#define dgIngoClothStainTex "__OTR__objects/object_in/gIngoClothStainTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoClothStainTex[] = dgIngoClothStainTex; -#else -static const char gIngoClothStainTex[] __attribute__((aligned (2))) = dgIngoClothStainTex; -#endif - -#define dgIngoPocketTex "__OTR__objects/object_in/gIngoPocketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoPocketTex[] = dgIngoPocketTex; -#else -static const char gIngoPocketTex[] __attribute__((aligned (2))) = dgIngoPocketTex; -#endif - -#define dgIngoHeadTLUT "__OTR__objects/object_in/gIngoHeadTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoHeadTLUT[] = dgIngoHeadTLUT; -#else -static const char gIngoHeadTLUT[] __attribute__((aligned (2))) = dgIngoHeadTLUT; -#endif - -#define dgIngoTLUT2 "__OTR__objects/object_in/gIngoTLUT2" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoTLUT2[] = dgIngoTLUT2; -#else -static const char gIngoTLUT2[] __attribute__((aligned (2))) = dgIngoTLUT2; -#endif - -#define dgIngoHeadGradient2Tex "__OTR__objects/object_in/gIngoHeadGradient2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoHeadGradient2Tex[] = dgIngoHeadGradient2Tex; -#else -static const char gIngoHeadGradient2Tex[] __attribute__((aligned (2))) = dgIngoHeadGradient2Tex; -#endif - -#define dgIngoEarTex "__OTR__objects/object_in/gIngoEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoEarTex[] = dgIngoEarTex; -#else -static const char gIngoEarTex[] __attribute__((aligned (2))) = dgIngoEarTex; -#endif - -#define dgIngoBrownTex "__OTR__objects/object_in/gIngoBrownTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoBrownTex[] = dgIngoBrownTex; -#else -static const char gIngoBrownTex[] __attribute__((aligned (2))) = dgIngoBrownTex; -#endif - -#define dgIngoEyebrowEdgeTex "__OTR__objects/object_in/gIngoEyebrowEdgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoEyebrowEdgeTex[] = dgIngoEyebrowEdgeTex; -#else -static const char gIngoEyebrowEdgeTex[] __attribute__((aligned (2))) = dgIngoEyebrowEdgeTex; -#endif - -#define dgIngoHairTex "__OTR__objects/object_in/gIngoHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoHairTex[] = dgIngoHairTex; -#else -static const char gIngoHairTex[] __attribute__((aligned (2))) = dgIngoHairTex; -#endif - -#define dgIngoSideburnsTex "__OTR__objects/object_in/gIngoSideburnsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoSideburnsTex[] = dgIngoSideburnsTex; -#else -static const char gIngoSideburnsTex[] __attribute__((aligned (2))) = dgIngoSideburnsTex; -#endif - -#define dgIngoPitchforkTex "__OTR__objects/object_in/gIngoPitchforkTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoPitchforkTex[] = dgIngoPitchforkTex; -#else -static const char gIngoPitchforkTex[] __attribute__((aligned (2))) = dgIngoPitchforkTex; -#endif - -#define dgIngoBasketTex "__OTR__objects/object_in/gIngoBasketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoBasketTex[] = dgIngoBasketTex; -#else -static const char gIngoBasketTex[] __attribute__((aligned (2))) = dgIngoBasketTex; -#endif - -#define dgIngoBeardTex "__OTR__objects/object_in/gIngoBeardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoBeardTex[] = dgIngoBeardTex; -#else -static const char gIngoBeardTex[] __attribute__((aligned (2))) = dgIngoBeardTex; -#endif - -#define dgIngoBasketInsideTex "__OTR__objects/object_in/gIngoBasketInsideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoBasketInsideTex[] = dgIngoBasketInsideTex; -#else -static const char gIngoBasketInsideTex[] __attribute__((aligned (2))) = dgIngoBasketInsideTex; -#endif - -#define dgIngoBootSideTex "__OTR__objects/object_in/gIngoBootSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoBootSideTex[] = dgIngoBootSideTex; -#else -static const char gIngoBootSideTex[] __attribute__((aligned (2))) = dgIngoBootSideTex; -#endif - -#define dgIngoBootTopTex "__OTR__objects/object_in/gIngoBootTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoBootTopTex[] = dgIngoBootTopTex; -#else -static const char gIngoBootTopTex[] __attribute__((aligned (2))) = dgIngoBootTopTex; -#endif - -#define dgIngoHeadGradientTex "__OTR__objects/object_in/gIngoHeadGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoHeadGradientTex[] = dgIngoHeadGradientTex; -#else -static const char gIngoHeadGradientTex[] __attribute__((aligned (2))) = dgIngoHeadGradientTex; -#endif - -#define dgIngoEyeOpenTex "__OTR__objects/object_in/gIngoEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoEyeOpenTex[] = dgIngoEyeOpenTex; -#else -static const char gIngoEyeOpenTex[] __attribute__((aligned (2))) = dgIngoEyeOpenTex; -#endif - -#define dgIngoRedTex "__OTR__objects/object_in/gIngoRedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoRedTex[] = dgIngoRedTex; -#else -static const char gIngoRedTex[] __attribute__((aligned (2))) = dgIngoRedTex; -#endif - -#define dgIngoEyeHalfTex "__OTR__objects/object_in/gIngoEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoEyeHalfTex[] = dgIngoEyeHalfTex; -#else -static const char gIngoEyeHalfTex[] __attribute__((aligned (2))) = dgIngoEyeHalfTex; -#endif - -#define dgIngoEyeClosedTex "__OTR__objects/object_in/gIngoEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoEyeClosedTex[] = dgIngoEyeClosedTex; -#else -static const char gIngoEyeClosedTex[] __attribute__((aligned (2))) = dgIngoEyeClosedTex; -#endif - -#define dgIngoEyeClosed2Tex "__OTR__objects/object_in/gIngoEyeClosed2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoEyeClosed2Tex[] = dgIngoEyeClosed2Tex; -#else -static const char gIngoEyeClosed2Tex[] __attribute__((aligned (2))) = dgIngoEyeClosed2Tex; -#endif - -#define dgIngoChildEraHeadDL "__OTR__objects/object_in/gIngoChildEraHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraHeadDL[] = dgIngoChildEraHeadDL; -#else -static const char gIngoChildEraHeadDL[] __attribute__((aligned (2))) = dgIngoChildEraHeadDL; -#endif - -#define dgIngoChildEraRightEyebrowDL "__OTR__objects/object_in/gIngoChildEraRightEyebrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraRightEyebrowDL[] = dgIngoChildEraRightEyebrowDL; -#else -static const char gIngoChildEraRightEyebrowDL[] __attribute__((aligned (2))) = dgIngoChildEraRightEyebrowDL; -#endif - -#define dgIngoChildEraLeftEyebrowDL "__OTR__objects/object_in/gIngoChildEraLeftEyebrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraLeftEyebrowDL[] = dgIngoChildEraLeftEyebrowDL; -#else -static const char gIngoChildEraLeftEyebrowDL[] __attribute__((aligned (2))) = dgIngoChildEraLeftEyebrowDL; -#endif - -#define dgIngoChildEraMustacheDL "__OTR__objects/object_in/gIngoChildEraMustacheDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraMustacheDL[] = dgIngoChildEraMustacheDL; -#else -static const char gIngoChildEraMustacheDL[] __attribute__((aligned (2))) = dgIngoChildEraMustacheDL; -#endif - -#define dgIngoChildEraLeftFootDL "__OTR__objects/object_in/gIngoChildEraLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraLeftFootDL[] = dgIngoChildEraLeftFootDL; -#else -static const char gIngoChildEraLeftFootDL[] __attribute__((aligned (2))) = dgIngoChildEraLeftFootDL; -#endif - -#define dgIngoChildEraRightFootDL "__OTR__objects/object_in/gIngoChildEraRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraRightFootDL[] = dgIngoChildEraRightFootDL; -#else -static const char gIngoChildEraRightFootDL[] __attribute__((aligned (2))) = dgIngoChildEraRightFootDL; -#endif - -#define dgIngoChildEraBasketDL "__OTR__objects/object_in/gIngoChildEraBasketDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraBasketDL[] = dgIngoChildEraBasketDL; -#else -static const char gIngoChildEraBasketDL[] __attribute__((aligned (2))) = dgIngoChildEraBasketDL; -#endif - -#define dgIngoChildEraPitchForkDL "__OTR__objects/object_in/gIngoChildEraPitchForkDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraPitchForkDL[] = dgIngoChildEraPitchForkDL; -#else -static const char gIngoChildEraPitchForkDL[] __attribute__((aligned (2))) = dgIngoChildEraPitchForkDL; -#endif - -#define dgIngoChildEraChestDL "__OTR__objects/object_in/gIngoChildEraChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraChestDL[] = dgIngoChildEraChestDL; -#else -static const char gIngoChildEraChestDL[] __attribute__((aligned (2))) = dgIngoChildEraChestDL; -#endif - -#define dgIngoChildEraRightShoulderDL "__OTR__objects/object_in/gIngoChildEraRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraRightShoulderDL[] = dgIngoChildEraRightShoulderDL; -#else -static const char gIngoChildEraRightShoulderDL[] __attribute__((aligned (2))) = dgIngoChildEraRightShoulderDL; -#endif - -#define dgIngoChildEraRightArmDL "__OTR__objects/object_in/gIngoChildEraRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraRightArmDL[] = dgIngoChildEraRightArmDL; -#else -static const char gIngoChildEraRightArmDL[] __attribute__((aligned (2))) = dgIngoChildEraRightArmDL; -#endif - -#define dgIngoChildEraRightHandDL "__OTR__objects/object_in/gIngoChildEraRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraRightHandDL[] = dgIngoChildEraRightHandDL; -#else -static const char gIngoChildEraRightHandDL[] __attribute__((aligned (2))) = dgIngoChildEraRightHandDL; -#endif - -#define dgIngoChildEraLeftShoulderDL "__OTR__objects/object_in/gIngoChildEraLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraLeftShoulderDL[] = dgIngoChildEraLeftShoulderDL; -#else -static const char gIngoChildEraLeftShoulderDL[] __attribute__((aligned (2))) = dgIngoChildEraLeftShoulderDL; -#endif - -#define dgIngoChildEraLeftArmDL "__OTR__objects/object_in/gIngoChildEraLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraLeftArmDL[] = dgIngoChildEraLeftArmDL; -#else -static const char gIngoChildEraLeftArmDL[] __attribute__((aligned (2))) = dgIngoChildEraLeftArmDL; -#endif - -#define dgIngoChildEraLeftHandDL "__OTR__objects/object_in/gIngoChildEraLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraLeftHandDL[] = dgIngoChildEraLeftHandDL; -#else -static const char gIngoChildEraLeftHandDL[] __attribute__((aligned (2))) = dgIngoChildEraLeftHandDL; -#endif - -#define dgIngoChildEraTorsoDL "__OTR__objects/object_in/gIngoChildEraTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraTorsoDL[] = dgIngoChildEraTorsoDL; -#else -static const char gIngoChildEraTorsoDL[] __attribute__((aligned (2))) = dgIngoChildEraTorsoDL; -#endif - -#define dgIngoChildEraRightThighDL "__OTR__objects/object_in/gIngoChildEraRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraRightThighDL[] = dgIngoChildEraRightThighDL; -#else -static const char gIngoChildEraRightThighDL[] __attribute__((aligned (2))) = dgIngoChildEraRightThighDL; -#endif - -#define dgIngoChildEraRightLegDL "__OTR__objects/object_in/gIngoChildEraRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraRightLegDL[] = dgIngoChildEraRightLegDL; -#else -static const char gIngoChildEraRightLegDL[] __attribute__((aligned (2))) = dgIngoChildEraRightLegDL; -#endif - -#define dgIngoChildEraLeftThighDL "__OTR__objects/object_in/gIngoChildEraLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraLeftThighDL[] = dgIngoChildEraLeftThighDL; -#else -static const char gIngoChildEraLeftThighDL[] __attribute__((aligned (2))) = dgIngoChildEraLeftThighDL; -#endif - -#define dgIngoChildEraLeftLegDL "__OTR__objects/object_in/gIngoChildEraLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoChildEraLeftLegDL[] = dgIngoChildEraLeftLegDL; -#else -static const char gIngoChildEraLeftLegDL[] __attribute__((aligned (2))) = dgIngoChildEraLeftLegDL; -#endif - -#define dgIngoAdultEraTLUT "__OTR__objects/object_in/gIngoAdultEraTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraTLUT[] = dgIngoAdultEraTLUT; -#else -static const char gIngoAdultEraTLUT[] __attribute__((aligned (2))) = dgIngoAdultEraTLUT; -#endif - -#define dgIngoAdultEraEyebrowEdgeTex "__OTR__objects/object_in/gIngoAdultEraEyebrowEdgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraEyebrowEdgeTex[] = dgIngoAdultEraEyebrowEdgeTex; -#else -static const char gIngoAdultEraEyebrowEdgeTex[] __attribute__((aligned (2))) = dgIngoAdultEraEyebrowEdgeTex; -#endif - -#define dgIngoAdultEraFaceHairTex "__OTR__objects/object_in/gIngoAdultEraFaceHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraFaceHairTex[] = dgIngoAdultEraFaceHairTex; -#else -static const char gIngoAdultEraFaceHairTex[] __attribute__((aligned (2))) = dgIngoAdultEraFaceHairTex; -#endif - -#define dgIngoAdultEraGradientTex "__OTR__objects/object_in/gIngoAdultEraGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraGradientTex[] = dgIngoAdultEraGradientTex; -#else -static const char gIngoAdultEraGradientTex[] __attribute__((aligned (2))) = dgIngoAdultEraGradientTex; -#endif - -#define dgIngoAdultEraEarTex "__OTR__objects/object_in/gIngoAdultEraEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraEarTex[] = dgIngoAdultEraEarTex; -#else -static const char gIngoAdultEraEarTex[] __attribute__((aligned (2))) = dgIngoAdultEraEarTex; -#endif - -#define dobject_in_Tex_00C758 "__OTR__objects/object_in/object_in_Tex_00C758" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Tex_00C758[] = dobject_in_Tex_00C758; -#else -static const char object_in_Tex_00C758[] __attribute__((aligned (2))) = dobject_in_Tex_00C758; -#endif - -#define dgIngoAdultEraHairTex "__OTR__objects/object_in/gIngoAdultEraHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraHairTex[] = dgIngoAdultEraHairTex; -#else -static const char gIngoAdultEraHairTex[] __attribute__((aligned (2))) = dgIngoAdultEraHairTex; -#endif - -#define dgIngoAdultEraSideburnsTex "__OTR__objects/object_in/gIngoAdultEraSideburnsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraSideburnsTex[] = dgIngoAdultEraSideburnsTex; -#else -static const char gIngoAdultEraSideburnsTex[] __attribute__((aligned (2))) = dgIngoAdultEraSideburnsTex; -#endif - -#define dgIngoAdultEraGradient2Tex "__OTR__objects/object_in/gIngoAdultEraGradient2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraGradient2Tex[] = dgIngoAdultEraGradient2Tex; -#else -static const char gIngoAdultEraGradient2Tex[] __attribute__((aligned (2))) = dgIngoAdultEraGradient2Tex; -#endif - -#define dgIngoUnusedEyeOpenTex "__OTR__objects/object_in/gIngoUnusedEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoUnusedEyeOpenTex[] = dgIngoUnusedEyeOpenTex; -#else -static const char gIngoUnusedEyeOpenTex[] __attribute__((aligned (2))) = dgIngoUnusedEyeOpenTex; -#endif - -#define dgIngoUnusedEyeHalfTex "__OTR__objects/object_in/gIngoUnusedEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoUnusedEyeHalfTex[] = dgIngoUnusedEyeHalfTex; -#else -static const char gIngoUnusedEyeHalfTex[] __attribute__((aligned (2))) = dgIngoUnusedEyeHalfTex; -#endif - -#define dgIngoUnusedEyeClosedTex "__OTR__objects/object_in/gIngoUnusedEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoUnusedEyeClosedTex[] = dgIngoUnusedEyeClosedTex; -#else -static const char gIngoUnusedEyeClosedTex[] __attribute__((aligned (2))) = dgIngoUnusedEyeClosedTex; -#endif - -#define dgIngoAdultEraFingersTex "__OTR__objects/object_in/gIngoAdultEraFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraFingersTex[] = dgIngoAdultEraFingersTex; -#else -static const char gIngoAdultEraFingersTex[] __attribute__((aligned (2))) = dgIngoAdultEraFingersTex; -#endif - -#define dgIngoAdultEraArmHairTex "__OTR__objects/object_in/gIngoAdultEraArmHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraArmHairTex[] = dgIngoAdultEraArmHairTex; -#else -static const char gIngoAdultEraArmHairTex[] __attribute__((aligned (2))) = dgIngoAdultEraArmHairTex; -#endif - -#define dgIngoAdultEraSleeveTex "__OTR__objects/object_in/gIngoAdultEraSleeveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraSleeveTex[] = dgIngoAdultEraSleeveTex; -#else -static const char gIngoAdultEraSleeveTex[] __attribute__((aligned (2))) = dgIngoAdultEraSleeveTex; -#endif - -#define dgIngoAdultEraCollarTex "__OTR__objects/object_in/gIngoAdultEraCollarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraCollarTex[] = dgIngoAdultEraCollarTex; -#else -static const char gIngoAdultEraCollarTex[] __attribute__((aligned (2))) = dgIngoAdultEraCollarTex; -#endif - -#define dgIngoAdultEraCollar2Tex "__OTR__objects/object_in/gIngoAdultEraCollar2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraCollar2Tex[] = dgIngoAdultEraCollar2Tex; -#else -static const char gIngoAdultEraCollar2Tex[] __attribute__((aligned (2))) = dgIngoAdultEraCollar2Tex; -#endif - -#define dgIngoAdultEraShirtTex "__OTR__objects/object_in/gIngoAdultEraShirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraShirtTex[] = dgIngoAdultEraShirtTex; -#else -static const char gIngoAdultEraShirtTex[] __attribute__((aligned (2))) = dgIngoAdultEraShirtTex; -#endif - -#define dgIngoAdultEraShoesTex "__OTR__objects/object_in/gIngoAdultEraShoesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraShoesTex[] = dgIngoAdultEraShoesTex; -#else -static const char gIngoAdultEraShoesTex[] __attribute__((aligned (2))) = dgIngoAdultEraShoesTex; -#endif - -#define dgIngoAdultEraPantsTex "__OTR__objects/object_in/gIngoAdultEraPantsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraPantsTex[] = dgIngoAdultEraPantsTex; -#else -static const char gIngoAdultEraPantsTex[] __attribute__((aligned (2))) = dgIngoAdultEraPantsTex; -#endif - -#define dgIngoAdultEraChestDL "__OTR__objects/object_in/gIngoAdultEraChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraChestDL[] = dgIngoAdultEraChestDL; -#else -static const char gIngoAdultEraChestDL[] __attribute__((aligned (2))) = dgIngoAdultEraChestDL; -#endif - -#define dgIngoAdultEraHeadDL "__OTR__objects/object_in/gIngoAdultEraHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraHeadDL[] = dgIngoAdultEraHeadDL; -#else -static const char gIngoAdultEraHeadDL[] __attribute__((aligned (2))) = dgIngoAdultEraHeadDL; -#endif - -#define dgIngoAdultEraMustacheDL "__OTR__objects/object_in/gIngoAdultEraMustacheDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraMustacheDL[] = dgIngoAdultEraMustacheDL; -#else -static const char gIngoAdultEraMustacheDL[] __attribute__((aligned (2))) = dgIngoAdultEraMustacheDL; -#endif - -#define dgIngoAdultEraRightEyebrowDL "__OTR__objects/object_in/gIngoAdultEraRightEyebrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraRightEyebrowDL[] = dgIngoAdultEraRightEyebrowDL; -#else -static const char gIngoAdultEraRightEyebrowDL[] __attribute__((aligned (2))) = dgIngoAdultEraRightEyebrowDL; -#endif - -#define dgIngoAdultEraLeftEyebrowDL "__OTR__objects/object_in/gIngoAdultEraLeftEyebrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraLeftEyebrowDL[] = dgIngoAdultEraLeftEyebrowDL; -#else -static const char gIngoAdultEraLeftEyebrowDL[] __attribute__((aligned (2))) = dgIngoAdultEraLeftEyebrowDL; -#endif - -#define dgIngoAdultEraRightShoulderDL "__OTR__objects/object_in/gIngoAdultEraRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraRightShoulderDL[] = dgIngoAdultEraRightShoulderDL; -#else -static const char gIngoAdultEraRightShoulderDL[] __attribute__((aligned (2))) = dgIngoAdultEraRightShoulderDL; -#endif - -#define dgIngoAdultEraRightArmDL "__OTR__objects/object_in/gIngoAdultEraRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraRightArmDL[] = dgIngoAdultEraRightArmDL; -#else -static const char gIngoAdultEraRightArmDL[] __attribute__((aligned (2))) = dgIngoAdultEraRightArmDL; -#endif - -#define dgIngoAdultEraRightHandDL "__OTR__objects/object_in/gIngoAdultEraRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraRightHandDL[] = dgIngoAdultEraRightHandDL; -#else -static const char gIngoAdultEraRightHandDL[] __attribute__((aligned (2))) = dgIngoAdultEraRightHandDL; -#endif - -#define dgIngoAdultEraLeftShoulderDL "__OTR__objects/object_in/gIngoAdultEraLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraLeftShoulderDL[] = dgIngoAdultEraLeftShoulderDL; -#else -static const char gIngoAdultEraLeftShoulderDL[] __attribute__((aligned (2))) = dgIngoAdultEraLeftShoulderDL; -#endif - -#define dgIngoAdultEraLeftArmDL "__OTR__objects/object_in/gIngoAdultEraLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraLeftArmDL[] = dgIngoAdultEraLeftArmDL; -#else -static const char gIngoAdultEraLeftArmDL[] __attribute__((aligned (2))) = dgIngoAdultEraLeftArmDL; -#endif - -#define dgIngoAdultEraLeftHandDL "__OTR__objects/object_in/gIngoAdultEraLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraLeftHandDL[] = dgIngoAdultEraLeftHandDL; -#else -static const char gIngoAdultEraLeftHandDL[] __attribute__((aligned (2))) = dgIngoAdultEraLeftHandDL; -#endif - -#define dgIngoAdultEraTorsoDL "__OTR__objects/object_in/gIngoAdultEraTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraTorsoDL[] = dgIngoAdultEraTorsoDL; -#else -static const char gIngoAdultEraTorsoDL[] __attribute__((aligned (2))) = dgIngoAdultEraTorsoDL; -#endif - -#define dgIngoAdultEraRightThighDL "__OTR__objects/object_in/gIngoAdultEraRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraRightThighDL[] = dgIngoAdultEraRightThighDL; -#else -static const char gIngoAdultEraRightThighDL[] __attribute__((aligned (2))) = dgIngoAdultEraRightThighDL; -#endif - -#define dgIngoAdultEraRightLegDL "__OTR__objects/object_in/gIngoAdultEraRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraRightLegDL[] = dgIngoAdultEraRightLegDL; -#else -static const char gIngoAdultEraRightLegDL[] __attribute__((aligned (2))) = dgIngoAdultEraRightLegDL; -#endif - -#define dgIngoAdultEraRightFootDL "__OTR__objects/object_in/gIngoAdultEraRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraRightFootDL[] = dgIngoAdultEraRightFootDL; -#else -static const char gIngoAdultEraRightFootDL[] __attribute__((aligned (2))) = dgIngoAdultEraRightFootDL; -#endif - -#define dgIngoAdultEraLeftThighDL "__OTR__objects/object_in/gIngoAdultEraLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraLeftThighDL[] = dgIngoAdultEraLeftThighDL; -#else -static const char gIngoAdultEraLeftThighDL[] __attribute__((aligned (2))) = dgIngoAdultEraLeftThighDL; -#endif - -#define dgIngoAdultEraLeftLegDL "__OTR__objects/object_in/gIngoAdultEraLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraLeftLegDL[] = dgIngoAdultEraLeftLegDL; -#else -static const char gIngoAdultEraLeftLegDL[] __attribute__((aligned (2))) = dgIngoAdultEraLeftLegDL; -#endif - -#define dgIngoAdultEraLeftFootDL "__OTR__objects/object_in/gIngoAdultEraLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoAdultEraLeftFootDL[] = dgIngoAdultEraLeftFootDL; -#else -static const char gIngoAdultEraLeftFootDL[] __attribute__((aligned (2))) = dgIngoAdultEraLeftFootDL; -#endif - -#define dgIngoSkel "__OTR__objects/object_in/gIngoSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoSkel[] = dgIngoSkel; -#else -static const char gIngoSkel[] __attribute__((aligned (2))) = dgIngoSkel; -#endif - -#define dobject_in_Anim_013C6C "__OTR__objects/object_in/object_in_Anim_013C6C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_013C6C[] = dobject_in_Anim_013C6C; -#else -static const char object_in_Anim_013C6C[] __attribute__((aligned (2))) = dobject_in_Anim_013C6C; -#endif - -#define dobject_in_Anim_013D60 "__OTR__objects/object_in/object_in_Anim_013D60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_013D60[] = dobject_in_Anim_013D60; -#else -static const char object_in_Anim_013D60[] __attribute__((aligned (2))) = dobject_in_Anim_013D60; -#endif - -#define dobject_in_Anim_01431C "__OTR__objects/object_in/object_in_Anim_01431C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_01431C[] = dobject_in_Anim_01431C; -#else -static const char object_in_Anim_01431C[] __attribute__((aligned (2))) = dobject_in_Anim_01431C; -#endif - -#define dobject_in_Anim_014CA8 "__OTR__objects/object_in/object_in_Anim_014CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_014CA8[] = dobject_in_Anim_014CA8; -#else -static const char object_in_Anim_014CA8[] __attribute__((aligned (2))) = dobject_in_Anim_014CA8; -#endif - -#define dobject_in_Anim_0151C8 "__OTR__objects/object_in/object_in_Anim_0151C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_0151C8[] = dobject_in_Anim_0151C8; -#else -static const char object_in_Anim_0151C8[] __attribute__((aligned (2))) = dobject_in_Anim_0151C8; -#endif - -#define dobject_in_Anim_015814 "__OTR__objects/object_in/object_in_Anim_015814" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_015814[] = dobject_in_Anim_015814; -#else -static const char object_in_Anim_015814[] __attribute__((aligned (2))) = dobject_in_Anim_015814; -#endif - -#define dobject_in_Anim_015DF0 "__OTR__objects/object_in/object_in_Anim_015DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_015DF0[] = dobject_in_Anim_015DF0; -#else -static const char object_in_Anim_015DF0[] __attribute__((aligned (2))) = dobject_in_Anim_015DF0; -#endif - -#define dobject_in_Anim_01646C "__OTR__objects/object_in/object_in_Anim_01646C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_01646C[] = dobject_in_Anim_01646C; -#else -static const char object_in_Anim_01646C[] __attribute__((aligned (2))) = dobject_in_Anim_01646C; -#endif - -#define dobject_in_Anim_016B3C "__OTR__objects/object_in/object_in_Anim_016B3C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_016B3C[] = dobject_in_Anim_016B3C; -#else -static const char object_in_Anim_016B3C[] __attribute__((aligned (2))) = dobject_in_Anim_016B3C; -#endif - -#define dobject_in_Anim_0175D0 "__OTR__objects/object_in/object_in_Anim_0175D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_0175D0[] = dobject_in_Anim_0175D0; -#else -static const char object_in_Anim_0175D0[] __attribute__((aligned (2))) = dobject_in_Anim_0175D0; -#endif - -#define dobject_in_Anim_017B58 "__OTR__objects/object_in/object_in_Anim_017B58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_017B58[] = dobject_in_Anim_017B58; -#else -static const char object_in_Anim_017B58[] __attribute__((aligned (2))) = dobject_in_Anim_017B58; -#endif - -#define dobject_in_Anim_018C38 "__OTR__objects/object_in/object_in_Anim_018C38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_in_Anim_018C38[] = dobject_in_Anim_018C38; -#else -static const char object_in_Anim_018C38[] __attribute__((aligned (2))) = dobject_in_Anim_018C38; -#endif - -#define dgIngoBlob_0020D0 "__OTR__objects/object_in/gIngoBlob_0020D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoBlob_0020D0[] = dgIngoBlob_0020D0; -#else -static const char gIngoBlob_0020D0[] __attribute__((aligned (2))) = dgIngoBlob_0020D0; -#endif - -#define dgIngoBlob_003150 "__OTR__objects/object_in/gIngoBlob_003150" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoBlob_003150[] = dgIngoBlob_003150; -#else -static const char gIngoBlob_003150[] __attribute__((aligned (2))) = dgIngoBlob_003150; -#endif - +#include "align_asset_macro.h" + +#define dobject_in_Anim_0003B4 "__OTR__objects/object_in/object_in_Anim_0003B4" +static const ALIGN_ASSET(2) char object_in_Anim_0003B4[] = dobject_in_Anim_0003B4; + +#define dobject_in_Anim_000CB0 "__OTR__objects/object_in/object_in_Anim_000CB0" +static const ALIGN_ASSET(2) char object_in_Anim_000CB0[] = dobject_in_Anim_000CB0; + +#define dobject_in_Anim_001BE0 "__OTR__objects/object_in/object_in_Anim_001BE0" +static const ALIGN_ASSET(2) char object_in_Anim_001BE0[] = dobject_in_Anim_001BE0; + +#define dobject_in_Anim_001CC0 "__OTR__objects/object_in/object_in_Anim_001CC0" +static const ALIGN_ASSET(2) char object_in_Anim_001CC0[] = dobject_in_Anim_001CC0; + +#define dgIngoTLUT "__OTR__objects/object_in/gIngoTLUT" +static const ALIGN_ASSET(2) char gIngoTLUT[] = dgIngoTLUT; + +#define dgIngoSkinGradientTLUT "__OTR__objects/object_in/gIngoSkinGradientTLUT" +static const ALIGN_ASSET(2) char gIngoSkinGradientTLUT[] = dgIngoSkinGradientTLUT; + +#define dgIngoUnusedEyeTex "__OTR__objects/object_in/gIngoUnusedEyeTex" +static const ALIGN_ASSET(2) char gIngoUnusedEyeTex[] = dgIngoUnusedEyeTex; + +#define dgIngoSkinGradientTex "__OTR__objects/object_in/gIngoSkinGradientTex" +static const ALIGN_ASSET(2) char gIngoSkinGradientTex[] = dgIngoSkinGradientTex; + +#define dgIngoArmHairTex "__OTR__objects/object_in/gIngoArmHairTex" +static const ALIGN_ASSET(2) char gIngoArmHairTex[] = dgIngoArmHairTex; + +#define dgIngoFingersTex "__OTR__objects/object_in/gIngoFingersTex" +static const ALIGN_ASSET(2) char gIngoFingersTex[] = dgIngoFingersTex; + +#define dgIngoShirtSleeveTex "__OTR__objects/object_in/gIngoShirtSleeveTex" +static const ALIGN_ASSET(2) char gIngoShirtSleeveTex[] = dgIngoShirtSleeveTex; + +#define dgIngoShirtButtonsTex "__OTR__objects/object_in/gIngoShirtButtonsTex" +static const ALIGN_ASSET(2) char gIngoShirtButtonsTex[] = dgIngoShirtButtonsTex; + +#define dgIngoClothTex "__OTR__objects/object_in/gIngoClothTex" +static const ALIGN_ASSET(2) char gIngoClothTex[] = dgIngoClothTex; + +#define dgIngoClothStainTex "__OTR__objects/object_in/gIngoClothStainTex" +static const ALIGN_ASSET(2) char gIngoClothStainTex[] = dgIngoClothStainTex; + +#define dgIngoPocketTex "__OTR__objects/object_in/gIngoPocketTex" +static const ALIGN_ASSET(2) char gIngoPocketTex[] = dgIngoPocketTex; + +#define dgIngoHeadTLUT "__OTR__objects/object_in/gIngoHeadTLUT" +static const ALIGN_ASSET(2) char gIngoHeadTLUT[] = dgIngoHeadTLUT; + +#define dgIngoTLUT2 "__OTR__objects/object_in/gIngoTLUT2" +static const ALIGN_ASSET(2) char gIngoTLUT2[] = dgIngoTLUT2; + +#define dgIngoHeadGradient2Tex "__OTR__objects/object_in/gIngoHeadGradient2Tex" +static const ALIGN_ASSET(2) char gIngoHeadGradient2Tex[] = dgIngoHeadGradient2Tex; + +#define dgIngoEarTex "__OTR__objects/object_in/gIngoEarTex" +static const ALIGN_ASSET(2) char gIngoEarTex[] = dgIngoEarTex; + +#define dgIngoBrownTex "__OTR__objects/object_in/gIngoBrownTex" +static const ALIGN_ASSET(2) char gIngoBrownTex[] = dgIngoBrownTex; + +#define dgIngoEyebrowEdgeTex "__OTR__objects/object_in/gIngoEyebrowEdgeTex" +static const ALIGN_ASSET(2) char gIngoEyebrowEdgeTex[] = dgIngoEyebrowEdgeTex; + +#define dgIngoHairTex "__OTR__objects/object_in/gIngoHairTex" +static const ALIGN_ASSET(2) char gIngoHairTex[] = dgIngoHairTex; + +#define dgIngoSideburnsTex "__OTR__objects/object_in/gIngoSideburnsTex" +static const ALIGN_ASSET(2) char gIngoSideburnsTex[] = dgIngoSideburnsTex; + +#define dgIngoPitchforkTex "__OTR__objects/object_in/gIngoPitchforkTex" +static const ALIGN_ASSET(2) char gIngoPitchforkTex[] = dgIngoPitchforkTex; + +#define dgIngoBasketTex "__OTR__objects/object_in/gIngoBasketTex" +static const ALIGN_ASSET(2) char gIngoBasketTex[] = dgIngoBasketTex; + +#define dgIngoBeardTex "__OTR__objects/object_in/gIngoBeardTex" +static const ALIGN_ASSET(2) char gIngoBeardTex[] = dgIngoBeardTex; + +#define dgIngoBasketInsideTex "__OTR__objects/object_in/gIngoBasketInsideTex" +static const ALIGN_ASSET(2) char gIngoBasketInsideTex[] = dgIngoBasketInsideTex; + +#define dgIngoBootSideTex "__OTR__objects/object_in/gIngoBootSideTex" +static const ALIGN_ASSET(2) char gIngoBootSideTex[] = dgIngoBootSideTex; + +#define dgIngoBootTopTex "__OTR__objects/object_in/gIngoBootTopTex" +static const ALIGN_ASSET(2) char gIngoBootTopTex[] = dgIngoBootTopTex; + +#define dgIngoHeadGradientTex "__OTR__objects/object_in/gIngoHeadGradientTex" +static const ALIGN_ASSET(2) char gIngoHeadGradientTex[] = dgIngoHeadGradientTex; + +#define dgIngoEyeOpenTex "__OTR__objects/object_in/gIngoEyeOpenTex" +static const ALIGN_ASSET(2) char gIngoEyeOpenTex[] = dgIngoEyeOpenTex; + +#define dgIngoRedTex "__OTR__objects/object_in/gIngoRedTex" +static const ALIGN_ASSET(2) char gIngoRedTex[] = dgIngoRedTex; + +#define dgIngoEyeHalfTex "__OTR__objects/object_in/gIngoEyeHalfTex" +static const ALIGN_ASSET(2) char gIngoEyeHalfTex[] = dgIngoEyeHalfTex; + +#define dgIngoEyeClosedTex "__OTR__objects/object_in/gIngoEyeClosedTex" +static const ALIGN_ASSET(2) char gIngoEyeClosedTex[] = dgIngoEyeClosedTex; + +#define dgIngoEyeClosed2Tex "__OTR__objects/object_in/gIngoEyeClosed2Tex" +static const ALIGN_ASSET(2) char gIngoEyeClosed2Tex[] = dgIngoEyeClosed2Tex; + +#define dgIngoChildEraHeadDL "__OTR__objects/object_in/gIngoChildEraHeadDL" +static const ALIGN_ASSET(2) char gIngoChildEraHeadDL[] = dgIngoChildEraHeadDL; + +#define dgIngoChildEraRightEyebrowDL "__OTR__objects/object_in/gIngoChildEraRightEyebrowDL" +static const ALIGN_ASSET(2) char gIngoChildEraRightEyebrowDL[] = dgIngoChildEraRightEyebrowDL; + +#define dgIngoChildEraLeftEyebrowDL "__OTR__objects/object_in/gIngoChildEraLeftEyebrowDL" +static const ALIGN_ASSET(2) char gIngoChildEraLeftEyebrowDL[] = dgIngoChildEraLeftEyebrowDL; + +#define dgIngoChildEraMustacheDL "__OTR__objects/object_in/gIngoChildEraMustacheDL" +static const ALIGN_ASSET(2) char gIngoChildEraMustacheDL[] = dgIngoChildEraMustacheDL; + +#define dgIngoChildEraLeftFootDL "__OTR__objects/object_in/gIngoChildEraLeftFootDL" +static const ALIGN_ASSET(2) char gIngoChildEraLeftFootDL[] = dgIngoChildEraLeftFootDL; + +#define dgIngoChildEraRightFootDL "__OTR__objects/object_in/gIngoChildEraRightFootDL" +static const ALIGN_ASSET(2) char gIngoChildEraRightFootDL[] = dgIngoChildEraRightFootDL; + +#define dgIngoChildEraBasketDL "__OTR__objects/object_in/gIngoChildEraBasketDL" +static const ALIGN_ASSET(2) char gIngoChildEraBasketDL[] = dgIngoChildEraBasketDL; + +#define dgIngoChildEraPitchForkDL "__OTR__objects/object_in/gIngoChildEraPitchForkDL" +static const ALIGN_ASSET(2) char gIngoChildEraPitchForkDL[] = dgIngoChildEraPitchForkDL; + +#define dgIngoChildEraChestDL "__OTR__objects/object_in/gIngoChildEraChestDL" +static const ALIGN_ASSET(2) char gIngoChildEraChestDL[] = dgIngoChildEraChestDL; + +#define dgIngoChildEraRightShoulderDL "__OTR__objects/object_in/gIngoChildEraRightShoulderDL" +static const ALIGN_ASSET(2) char gIngoChildEraRightShoulderDL[] = dgIngoChildEraRightShoulderDL; + +#define dgIngoChildEraRightArmDL "__OTR__objects/object_in/gIngoChildEraRightArmDL" +static const ALIGN_ASSET(2) char gIngoChildEraRightArmDL[] = dgIngoChildEraRightArmDL; + +#define dgIngoChildEraRightHandDL "__OTR__objects/object_in/gIngoChildEraRightHandDL" +static const ALIGN_ASSET(2) char gIngoChildEraRightHandDL[] = dgIngoChildEraRightHandDL; + +#define dgIngoChildEraLeftShoulderDL "__OTR__objects/object_in/gIngoChildEraLeftShoulderDL" +static const ALIGN_ASSET(2) char gIngoChildEraLeftShoulderDL[] = dgIngoChildEraLeftShoulderDL; + +#define dgIngoChildEraLeftArmDL "__OTR__objects/object_in/gIngoChildEraLeftArmDL" +static const ALIGN_ASSET(2) char gIngoChildEraLeftArmDL[] = dgIngoChildEraLeftArmDL; + +#define dgIngoChildEraLeftHandDL "__OTR__objects/object_in/gIngoChildEraLeftHandDL" +static const ALIGN_ASSET(2) char gIngoChildEraLeftHandDL[] = dgIngoChildEraLeftHandDL; + +#define dgIngoChildEraTorsoDL "__OTR__objects/object_in/gIngoChildEraTorsoDL" +static const ALIGN_ASSET(2) char gIngoChildEraTorsoDL[] = dgIngoChildEraTorsoDL; + +#define dgIngoChildEraRightThighDL "__OTR__objects/object_in/gIngoChildEraRightThighDL" +static const ALIGN_ASSET(2) char gIngoChildEraRightThighDL[] = dgIngoChildEraRightThighDL; + +#define dgIngoChildEraRightLegDL "__OTR__objects/object_in/gIngoChildEraRightLegDL" +static const ALIGN_ASSET(2) char gIngoChildEraRightLegDL[] = dgIngoChildEraRightLegDL; + +#define dgIngoChildEraLeftThighDL "__OTR__objects/object_in/gIngoChildEraLeftThighDL" +static const ALIGN_ASSET(2) char gIngoChildEraLeftThighDL[] = dgIngoChildEraLeftThighDL; + +#define dgIngoChildEraLeftLegDL "__OTR__objects/object_in/gIngoChildEraLeftLegDL" +static const ALIGN_ASSET(2) char gIngoChildEraLeftLegDL[] = dgIngoChildEraLeftLegDL; + +#define dgIngoAdultEraTLUT "__OTR__objects/object_in/gIngoAdultEraTLUT" +static const ALIGN_ASSET(2) char gIngoAdultEraTLUT[] = dgIngoAdultEraTLUT; + +#define dgIngoAdultEraEyebrowEdgeTex "__OTR__objects/object_in/gIngoAdultEraEyebrowEdgeTex" +static const ALIGN_ASSET(2) char gIngoAdultEraEyebrowEdgeTex[] = dgIngoAdultEraEyebrowEdgeTex; + +#define dgIngoAdultEraFaceHairTex "__OTR__objects/object_in/gIngoAdultEraFaceHairTex" +static const ALIGN_ASSET(2) char gIngoAdultEraFaceHairTex[] = dgIngoAdultEraFaceHairTex; + +#define dgIngoAdultEraGradientTex "__OTR__objects/object_in/gIngoAdultEraGradientTex" +static const ALIGN_ASSET(2) char gIngoAdultEraGradientTex[] = dgIngoAdultEraGradientTex; + +#define dgIngoAdultEraEarTex "__OTR__objects/object_in/gIngoAdultEraEarTex" +static const ALIGN_ASSET(2) char gIngoAdultEraEarTex[] = dgIngoAdultEraEarTex; + +#define dobject_in_Tex_00C758 "__OTR__objects/object_in/object_in_Tex_00C758" +static const ALIGN_ASSET(2) char object_in_Tex_00C758[] = dobject_in_Tex_00C758; + +#define dgIngoAdultEraHairTex "__OTR__objects/object_in/gIngoAdultEraHairTex" +static const ALIGN_ASSET(2) char gIngoAdultEraHairTex[] = dgIngoAdultEraHairTex; + +#define dgIngoAdultEraSideburnsTex "__OTR__objects/object_in/gIngoAdultEraSideburnsTex" +static const ALIGN_ASSET(2) char gIngoAdultEraSideburnsTex[] = dgIngoAdultEraSideburnsTex; + +#define dgIngoAdultEraGradient2Tex "__OTR__objects/object_in/gIngoAdultEraGradient2Tex" +static const ALIGN_ASSET(2) char gIngoAdultEraGradient2Tex[] = dgIngoAdultEraGradient2Tex; + +#define dgIngoUnusedEyeOpenTex "__OTR__objects/object_in/gIngoUnusedEyeOpenTex" +static const ALIGN_ASSET(2) char gIngoUnusedEyeOpenTex[] = dgIngoUnusedEyeOpenTex; + +#define dgIngoUnusedEyeHalfTex "__OTR__objects/object_in/gIngoUnusedEyeHalfTex" +static const ALIGN_ASSET(2) char gIngoUnusedEyeHalfTex[] = dgIngoUnusedEyeHalfTex; + +#define dgIngoUnusedEyeClosedTex "__OTR__objects/object_in/gIngoUnusedEyeClosedTex" +static const ALIGN_ASSET(2) char gIngoUnusedEyeClosedTex[] = dgIngoUnusedEyeClosedTex; + +#define dgIngoAdultEraFingersTex "__OTR__objects/object_in/gIngoAdultEraFingersTex" +static const ALIGN_ASSET(2) char gIngoAdultEraFingersTex[] = dgIngoAdultEraFingersTex; + +#define dgIngoAdultEraArmHairTex "__OTR__objects/object_in/gIngoAdultEraArmHairTex" +static const ALIGN_ASSET(2) char gIngoAdultEraArmHairTex[] = dgIngoAdultEraArmHairTex; + +#define dgIngoAdultEraSleeveTex "__OTR__objects/object_in/gIngoAdultEraSleeveTex" +static const ALIGN_ASSET(2) char gIngoAdultEraSleeveTex[] = dgIngoAdultEraSleeveTex; + +#define dgIngoAdultEraCollarTex "__OTR__objects/object_in/gIngoAdultEraCollarTex" +static const ALIGN_ASSET(2) char gIngoAdultEraCollarTex[] = dgIngoAdultEraCollarTex; + +#define dgIngoAdultEraCollar2Tex "__OTR__objects/object_in/gIngoAdultEraCollar2Tex" +static const ALIGN_ASSET(2) char gIngoAdultEraCollar2Tex[] = dgIngoAdultEraCollar2Tex; + +#define dgIngoAdultEraShirtTex "__OTR__objects/object_in/gIngoAdultEraShirtTex" +static const ALIGN_ASSET(2) char gIngoAdultEraShirtTex[] = dgIngoAdultEraShirtTex; + +#define dgIngoAdultEraShoesTex "__OTR__objects/object_in/gIngoAdultEraShoesTex" +static const ALIGN_ASSET(2) char gIngoAdultEraShoesTex[] = dgIngoAdultEraShoesTex; + +#define dgIngoAdultEraPantsTex "__OTR__objects/object_in/gIngoAdultEraPantsTex" +static const ALIGN_ASSET(2) char gIngoAdultEraPantsTex[] = dgIngoAdultEraPantsTex; + +#define dgIngoAdultEraChestDL "__OTR__objects/object_in/gIngoAdultEraChestDL" +static const ALIGN_ASSET(2) char gIngoAdultEraChestDL[] = dgIngoAdultEraChestDL; + +#define dgIngoAdultEraHeadDL "__OTR__objects/object_in/gIngoAdultEraHeadDL" +static const ALIGN_ASSET(2) char gIngoAdultEraHeadDL[] = dgIngoAdultEraHeadDL; + +#define dgIngoAdultEraMustacheDL "__OTR__objects/object_in/gIngoAdultEraMustacheDL" +static const ALIGN_ASSET(2) char gIngoAdultEraMustacheDL[] = dgIngoAdultEraMustacheDL; + +#define dgIngoAdultEraRightEyebrowDL "__OTR__objects/object_in/gIngoAdultEraRightEyebrowDL" +static const ALIGN_ASSET(2) char gIngoAdultEraRightEyebrowDL[] = dgIngoAdultEraRightEyebrowDL; + +#define dgIngoAdultEraLeftEyebrowDL "__OTR__objects/object_in/gIngoAdultEraLeftEyebrowDL" +static const ALIGN_ASSET(2) char gIngoAdultEraLeftEyebrowDL[] = dgIngoAdultEraLeftEyebrowDL; + +#define dgIngoAdultEraRightShoulderDL "__OTR__objects/object_in/gIngoAdultEraRightShoulderDL" +static const ALIGN_ASSET(2) char gIngoAdultEraRightShoulderDL[] = dgIngoAdultEraRightShoulderDL; + +#define dgIngoAdultEraRightArmDL "__OTR__objects/object_in/gIngoAdultEraRightArmDL" +static const ALIGN_ASSET(2) char gIngoAdultEraRightArmDL[] = dgIngoAdultEraRightArmDL; + +#define dgIngoAdultEraRightHandDL "__OTR__objects/object_in/gIngoAdultEraRightHandDL" +static const ALIGN_ASSET(2) char gIngoAdultEraRightHandDL[] = dgIngoAdultEraRightHandDL; + +#define dgIngoAdultEraLeftShoulderDL "__OTR__objects/object_in/gIngoAdultEraLeftShoulderDL" +static const ALIGN_ASSET(2) char gIngoAdultEraLeftShoulderDL[] = dgIngoAdultEraLeftShoulderDL; + +#define dgIngoAdultEraLeftArmDL "__OTR__objects/object_in/gIngoAdultEraLeftArmDL" +static const ALIGN_ASSET(2) char gIngoAdultEraLeftArmDL[] = dgIngoAdultEraLeftArmDL; + +#define dgIngoAdultEraLeftHandDL "__OTR__objects/object_in/gIngoAdultEraLeftHandDL" +static const ALIGN_ASSET(2) char gIngoAdultEraLeftHandDL[] = dgIngoAdultEraLeftHandDL; + +#define dgIngoAdultEraTorsoDL "__OTR__objects/object_in/gIngoAdultEraTorsoDL" +static const ALIGN_ASSET(2) char gIngoAdultEraTorsoDL[] = dgIngoAdultEraTorsoDL; + +#define dgIngoAdultEraRightThighDL "__OTR__objects/object_in/gIngoAdultEraRightThighDL" +static const ALIGN_ASSET(2) char gIngoAdultEraRightThighDL[] = dgIngoAdultEraRightThighDL; + +#define dgIngoAdultEraRightLegDL "__OTR__objects/object_in/gIngoAdultEraRightLegDL" +static const ALIGN_ASSET(2) char gIngoAdultEraRightLegDL[] = dgIngoAdultEraRightLegDL; + +#define dgIngoAdultEraRightFootDL "__OTR__objects/object_in/gIngoAdultEraRightFootDL" +static const ALIGN_ASSET(2) char gIngoAdultEraRightFootDL[] = dgIngoAdultEraRightFootDL; + +#define dgIngoAdultEraLeftThighDL "__OTR__objects/object_in/gIngoAdultEraLeftThighDL" +static const ALIGN_ASSET(2) char gIngoAdultEraLeftThighDL[] = dgIngoAdultEraLeftThighDL; + +#define dgIngoAdultEraLeftLegDL "__OTR__objects/object_in/gIngoAdultEraLeftLegDL" +static const ALIGN_ASSET(2) char gIngoAdultEraLeftLegDL[] = dgIngoAdultEraLeftLegDL; + +#define dgIngoAdultEraLeftFootDL "__OTR__objects/object_in/gIngoAdultEraLeftFootDL" +static const ALIGN_ASSET(2) char gIngoAdultEraLeftFootDL[] = dgIngoAdultEraLeftFootDL; + +#define dgIngoSkel "__OTR__objects/object_in/gIngoSkel" +static const ALIGN_ASSET(2) char gIngoSkel[] = dgIngoSkel; + +#define dobject_in_Anim_013C6C "__OTR__objects/object_in/object_in_Anim_013C6C" +static const ALIGN_ASSET(2) char object_in_Anim_013C6C[] = dobject_in_Anim_013C6C; + +#define dobject_in_Anim_013D60 "__OTR__objects/object_in/object_in_Anim_013D60" +static const ALIGN_ASSET(2) char object_in_Anim_013D60[] = dobject_in_Anim_013D60; + +#define dobject_in_Anim_01431C "__OTR__objects/object_in/object_in_Anim_01431C" +static const ALIGN_ASSET(2) char object_in_Anim_01431C[] = dobject_in_Anim_01431C; + +#define dobject_in_Anim_014CA8 "__OTR__objects/object_in/object_in_Anim_014CA8" +static const ALIGN_ASSET(2) char object_in_Anim_014CA8[] = dobject_in_Anim_014CA8; + +#define dobject_in_Anim_0151C8 "__OTR__objects/object_in/object_in_Anim_0151C8" +static const ALIGN_ASSET(2) char object_in_Anim_0151C8[] = dobject_in_Anim_0151C8; + +#define dobject_in_Anim_015814 "__OTR__objects/object_in/object_in_Anim_015814" +static const ALIGN_ASSET(2) char object_in_Anim_015814[] = dobject_in_Anim_015814; + +#define dobject_in_Anim_015DF0 "__OTR__objects/object_in/object_in_Anim_015DF0" +static const ALIGN_ASSET(2) char object_in_Anim_015DF0[] = dobject_in_Anim_015DF0; + +#define dobject_in_Anim_01646C "__OTR__objects/object_in/object_in_Anim_01646C" +static const ALIGN_ASSET(2) char object_in_Anim_01646C[] = dobject_in_Anim_01646C; + +#define dobject_in_Anim_016B3C "__OTR__objects/object_in/object_in_Anim_016B3C" +static const ALIGN_ASSET(2) char object_in_Anim_016B3C[] = dobject_in_Anim_016B3C; + +#define dobject_in_Anim_0175D0 "__OTR__objects/object_in/object_in_Anim_0175D0" +static const ALIGN_ASSET(2) char object_in_Anim_0175D0[] = dobject_in_Anim_0175D0; + +#define dobject_in_Anim_017B58 "__OTR__objects/object_in/object_in_Anim_017B58" +static const ALIGN_ASSET(2) char object_in_Anim_017B58[] = dobject_in_Anim_017B58; + +#define dobject_in_Anim_018C38 "__OTR__objects/object_in/object_in_Anim_018C38" +static const ALIGN_ASSET(2) char object_in_Anim_018C38[] = dobject_in_Anim_018C38; + +#define dgIngoBlob_0020D0 "__OTR__objects/object_in/gIngoBlob_0020D0" +static const ALIGN_ASSET(2) char gIngoBlob_0020D0[] = dgIngoBlob_0020D0; + +#define dgIngoBlob_003150 "__OTR__objects/object_in/gIngoBlob_003150" +static const ALIGN_ASSET(2) char gIngoBlob_003150[] = dgIngoBlob_003150; \ No newline at end of file diff --git a/soh/assets/objects/object_ingate/object_ingate.h b/soh/assets/objects/object_ingate/object_ingate.h index 63142890e..e460c9a34 100644 --- a/soh/assets/objects/object_ingate/object_ingate.h +++ b/soh/assets/objects/object_ingate/object_ingate.h @@ -1,23 +1,12 @@ #pragma once -#define dgIngoGateTex "__OTR__objects/object_ingate/gIngoGateTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoGateTex[] = dgIngoGateTex; -#else -static const char gIngoGateTex[] __attribute__((aligned (2))) = dgIngoGateTex; -#endif - -#define dgIngoGateDL "__OTR__objects/object_ingate/gIngoGateDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoGateDL[] = dgIngoGateDL; -#else -static const char gIngoGateDL[] __attribute__((aligned (2))) = dgIngoGateDL; -#endif - -#define dgIngoGateCol "__OTR__objects/object_ingate/gIngoGateCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gIngoGateCol[] = dgIngoGateCol; -#else -static const char gIngoGateCol[] __attribute__((aligned (2))) = dgIngoGateCol; -#endif - +#include "align_asset_macro.h" + +#define dgIngoGateTex "__OTR__objects/object_ingate/gIngoGateTex" +static const ALIGN_ASSET(2) char gIngoGateTex[] = dgIngoGateTex; + +#define dgIngoGateDL "__OTR__objects/object_ingate/gIngoGateDL" +static const ALIGN_ASSET(2) char gIngoGateDL[] = dgIngoGateDL; + +#define dgIngoGateCol "__OTR__objects/object_ingate/gIngoGateCol" +static const ALIGN_ASSET(2) char gIngoGateCol[] = dgIngoGateCol; \ No newline at end of file diff --git a/soh/assets/objects/object_jj/object_jj.h b/soh/assets/objects/object_jj/object_jj.h index 5149fef72..ecbda13dd 100644 --- a/soh/assets/objects/object_jj/object_jj.h +++ b/soh/assets/objects/object_jj/object_jj.h @@ -1,247 +1,108 @@ #pragma once -#define dgJabuJabuAnim "__OTR__objects/object_jj/gJabuJabuAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuAnim[] = dgJabuJabuAnim; -#else -static const char gJabuJabuAnim[] __attribute__((aligned (2))) = dgJabuJabuAnim; -#endif - -#define dgJabuJabuEyeOpenTex "__OTR__objects/object_jj/gJabuJabuEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuEyeOpenTex[] = dgJabuJabuEyeOpenTex; -#else -static const char gJabuJabuEyeOpenTex[] __attribute__((aligned (2))) = dgJabuJabuEyeOpenTex; -#endif - -#define dgJabuJabuEyeHalfTex "__OTR__objects/object_jj/gJabuJabuEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuEyeHalfTex[] = dgJabuJabuEyeHalfTex; -#else -static const char gJabuJabuEyeHalfTex[] __attribute__((aligned (2))) = dgJabuJabuEyeHalfTex; -#endif - -#define dgJabuJabuEyeClosedTex "__OTR__objects/object_jj/gJabuJabuEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuEyeClosedTex[] = dgJabuJabuEyeClosedTex; -#else -static const char gJabuJabuEyeClosedTex[] __attribute__((aligned (2))) = dgJabuJabuEyeClosedTex; -#endif - -#define dgJabuJabuSkel "__OTR__objects/object_jj/gJabuJabuSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuSkel[] = dgJabuJabuSkel; -#else -static const char gJabuJabuSkel[] __attribute__((aligned (2))) = dgJabuJabuSkel; -#endif - -#define dgJabuJabuBodyDL "__OTR__objects/object_jj/gJabuJabuBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuBodyDL[] = dgJabuJabuBodyDL; -#else -static const char gJabuJabuBodyDL[] __attribute__((aligned (2))) = dgJabuJabuBodyDL; -#endif - -#define dgJabuJabuLeftUpperFlipperDL "__OTR__objects/object_jj/gJabuJabuLeftUpperFlipperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuLeftUpperFlipperDL[] = dgJabuJabuLeftUpperFlipperDL; -#else -static const char gJabuJabuLeftUpperFlipperDL[] __attribute__((aligned (2))) = dgJabuJabuLeftUpperFlipperDL; -#endif - -#define dgJabuJabuLeftMidFlipperDL "__OTR__objects/object_jj/gJabuJabuLeftMidFlipperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuLeftMidFlipperDL[] = dgJabuJabuLeftMidFlipperDL; -#else -static const char gJabuJabuLeftMidFlipperDL[] __attribute__((aligned (2))) = dgJabuJabuLeftMidFlipperDL; -#endif - -#define dgJabuJabuLeftLowerFlipperDL "__OTR__objects/object_jj/gJabuJabuLeftLowerFlipperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuLeftLowerFlipperDL[] = dgJabuJabuLeftLowerFlipperDL; -#else -static const char gJabuJabuLeftLowerFlipperDL[] __attribute__((aligned (2))) = dgJabuJabuLeftLowerFlipperDL; -#endif - -#define dgJabuJabuHeadDL "__OTR__objects/object_jj/gJabuJabuHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuHeadDL[] = dgJabuJabuHeadDL; -#else -static const char gJabuJabuHeadDL[] __attribute__((aligned (2))) = dgJabuJabuHeadDL; -#endif - -#define dgJabuJabuLeftFrillDL "__OTR__objects/object_jj/gJabuJabuLeftFrillDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuLeftFrillDL[] = dgJabuJabuLeftFrillDL; -#else -static const char gJabuJabuLeftFrillDL[] __attribute__((aligned (2))) = dgJabuJabuLeftFrillDL; -#endif - -#define dgJabuJabuRightFrillDL "__OTR__objects/object_jj/gJabuJabuRightFrillDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuRightFrillDL[] = dgJabuJabuRightFrillDL; -#else -static const char gJabuJabuRightFrillDL[] __attribute__((aligned (2))) = dgJabuJabuRightFrillDL; -#endif - -#define dgJabuJabuRightUpperFlipperDL "__OTR__objects/object_jj/gJabuJabuRightUpperFlipperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuRightUpperFlipperDL[] = dgJabuJabuRightUpperFlipperDL; -#else -static const char gJabuJabuRightUpperFlipperDL[] __attribute__((aligned (2))) = dgJabuJabuRightUpperFlipperDL; -#endif - -#define dgJabuJabuRightMidFlipperDL "__OTR__objects/object_jj/gJabuJabuRightMidFlipperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuRightMidFlipperDL[] = dgJabuJabuRightMidFlipperDL; -#else -static const char gJabuJabuRightMidFlipperDL[] __attribute__((aligned (2))) = dgJabuJabuRightMidFlipperDL; -#endif - -#define dgJabuJabuRightLowerFlipperDL "__OTR__objects/object_jj/gJabuJabuRightLowerFlipperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuRightLowerFlipperDL[] = dgJabuJabuRightLowerFlipperDL; -#else -static const char gJabuJabuRightLowerFlipperDL[] __attribute__((aligned (2))) = dgJabuJabuRightLowerFlipperDL; -#endif - -#define dgJabuJabuFlukeDL "__OTR__objects/object_jj/gJabuJabuFlukeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuFlukeDL[] = dgJabuJabuFlukeDL; -#else -static const char gJabuJabuFlukeDL[] __attribute__((aligned (2))) = dgJabuJabuFlukeDL; -#endif - -#define dgJabuJabuFrillTex "__OTR__objects/object_jj/gJabuJabuFrillTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuFrillTex[] = dgJabuJabuFrillTex; -#else -static const char gJabuJabuFrillTex[] __attribute__((aligned (2))) = dgJabuJabuFrillTex; -#endif - -#define dgJabuJabuNostrilTex "__OTR__objects/object_jj/gJabuJabuNostrilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuNostrilTex[] = dgJabuJabuNostrilTex; -#else -static const char gJabuJabuNostrilTex[] __attribute__((aligned (2))) = dgJabuJabuNostrilTex; -#endif - -#define dgJabuJabuNoseDecorationTex "__OTR__objects/object_jj/gJabuJabuNoseDecorationTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuNoseDecorationTex[] = dgJabuJabuNoseDecorationTex; -#else -static const char gJabuJabuNoseDecorationTex[] __attribute__((aligned (2))) = dgJabuJabuNoseDecorationTex; -#endif - -#define dgJabuJabuToothTex "__OTR__objects/object_jj/gJabuJabuToothTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuToothTex[] = dgJabuJabuToothTex; -#else -static const char gJabuJabuToothTex[] __attribute__((aligned (2))) = dgJabuJabuToothTex; -#endif - -#define dgJabuJabuLipTex "__OTR__objects/object_jj/gJabuJabuLipTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuLipTex[] = dgJabuJabuLipTex; -#else -static const char gJabuJabuLipTex[] __attribute__((aligned (2))) = dgJabuJabuLipTex; -#endif - -#define dgJabuJabuLipMouthCornerTex "__OTR__objects/object_jj/gJabuJabuLipMouthCornerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuLipMouthCornerTex[] = dgJabuJabuLipMouthCornerTex; -#else -static const char gJabuJabuLipMouthCornerTex[] __attribute__((aligned (2))) = dgJabuJabuLipMouthCornerTex; -#endif - -#define dgJabuJabuDiademSideTex "__OTR__objects/object_jj/gJabuJabuDiademSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuDiademSideTex[] = dgJabuJabuDiademSideTex; -#else -static const char gJabuJabuDiademSideTex[] __attribute__((aligned (2))) = dgJabuJabuDiademSideTex; -#endif - -#define dgJabuJabuLateralTex "__OTR__objects/object_jj/gJabuJabuLateralTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuLateralTex[] = dgJabuJabuLateralTex; -#else -static const char gJabuJabuLateralTex[] __attribute__((aligned (2))) = dgJabuJabuLateralTex; -#endif - -#define dgJabuJabuEyeOrbitTex "__OTR__objects/object_jj/gJabuJabuEyeOrbitTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuEyeOrbitTex[] = dgJabuJabuEyeOrbitTex; -#else -static const char gJabuJabuEyeOrbitTex[] __attribute__((aligned (2))) = dgJabuJabuEyeOrbitTex; -#endif - -#define dgJabuJabuDorsalTex "__OTR__objects/object_jj/gJabuJabuDorsalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuDorsalTex[] = dgJabuJabuDorsalTex; -#else -static const char gJabuJabuDorsalTex[] __attribute__((aligned (2))) = dgJabuJabuDorsalTex; -#endif - -#define dgJabuJabuCapOuterTex "__OTR__objects/object_jj/gJabuJabuCapOuterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuCapOuterTex[] = dgJabuJabuCapOuterTex; -#else -static const char gJabuJabuCapOuterTex[] __attribute__((aligned (2))) = dgJabuJabuCapOuterTex; -#endif - -#define dgJabuJabuCapInnerTex "__OTR__objects/object_jj/gJabuJabuCapInnerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuCapInnerTex[] = dgJabuJabuCapInnerTex; -#else -static const char gJabuJabuCapInnerTex[] __attribute__((aligned (2))) = dgJabuJabuCapInnerTex; -#endif - -#define dgJabuJabuMouthRoofTex "__OTR__objects/object_jj/gJabuJabuMouthRoofTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuMouthRoofTex[] = dgJabuJabuMouthRoofTex; -#else -static const char gJabuJabuMouthRoofTex[] __attribute__((aligned (2))) = dgJabuJabuMouthRoofTex; -#endif - -#define dgJabuJabuDiademCenterTex "__OTR__objects/object_jj/gJabuJabuDiademCenterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuDiademCenterTex[] = dgJabuJabuDiademCenterTex; -#else -static const char gJabuJabuDiademCenterTex[] __attribute__((aligned (2))) = dgJabuJabuDiademCenterTex; -#endif - -#define dgJabuJabuFinTex "__OTR__objects/object_jj/gJabuJabuFinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuFinTex[] = dgJabuJabuFinTex; -#else -static const char gJabuJabuFinTex[] __attribute__((aligned (2))) = dgJabuJabuFinTex; -#endif - -#define dgJabuJabuMouthFloorTex "__OTR__objects/object_jj/gJabuJabuMouthFloorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuMouthFloorTex[] = dgJabuJabuMouthFloorTex; -#else -static const char gJabuJabuMouthFloorTex[] __attribute__((aligned (2))) = dgJabuJabuMouthFloorTex; -#endif - -#define dgJabuJabuHeadCol "__OTR__objects/object_jj/gJabuJabuHeadCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuHeadCol[] = dgJabuJabuHeadCol; -#else -static const char gJabuJabuHeadCol[] __attribute__((aligned (2))) = dgJabuJabuHeadCol; -#endif - -#define dgJabuJabuBodyCol "__OTR__objects/object_jj/gJabuJabuBodyCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuBodyCol[] = dgJabuJabuBodyCol; -#else -static const char gJabuJabuBodyCol[] __attribute__((aligned (2))) = dgJabuJabuBodyCol; -#endif - -#define dgJabuJabuUnusedCol "__OTR__objects/object_jj/gJabuJabuUnusedCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuUnusedCol[] = dgJabuJabuUnusedCol; -#else -static const char gJabuJabuUnusedCol[] __attribute__((aligned (2))) = dgJabuJabuUnusedCol; -#endif - +#include "align_asset_macro.h" + +#define dgJabuJabuAnim "__OTR__objects/object_jj/gJabuJabuAnim" +static const ALIGN_ASSET(2) char gJabuJabuAnim[] = dgJabuJabuAnim; + +#define dgJabuJabuEyeOpenTex "__OTR__objects/object_jj/gJabuJabuEyeOpenTex" +static const ALIGN_ASSET(2) char gJabuJabuEyeOpenTex[] = dgJabuJabuEyeOpenTex; + +#define dgJabuJabuEyeHalfTex "__OTR__objects/object_jj/gJabuJabuEyeHalfTex" +static const ALIGN_ASSET(2) char gJabuJabuEyeHalfTex[] = dgJabuJabuEyeHalfTex; + +#define dgJabuJabuEyeClosedTex "__OTR__objects/object_jj/gJabuJabuEyeClosedTex" +static const ALIGN_ASSET(2) char gJabuJabuEyeClosedTex[] = dgJabuJabuEyeClosedTex; + +#define dgJabuJabuSkel "__OTR__objects/object_jj/gJabuJabuSkel" +static const ALIGN_ASSET(2) char gJabuJabuSkel[] = dgJabuJabuSkel; + +#define dgJabuJabuBodyDL "__OTR__objects/object_jj/gJabuJabuBodyDL" +static const ALIGN_ASSET(2) char gJabuJabuBodyDL[] = dgJabuJabuBodyDL; + +#define dgJabuJabuLeftUpperFlipperDL "__OTR__objects/object_jj/gJabuJabuLeftUpperFlipperDL" +static const ALIGN_ASSET(2) char gJabuJabuLeftUpperFlipperDL[] = dgJabuJabuLeftUpperFlipperDL; + +#define dgJabuJabuLeftMidFlipperDL "__OTR__objects/object_jj/gJabuJabuLeftMidFlipperDL" +static const ALIGN_ASSET(2) char gJabuJabuLeftMidFlipperDL[] = dgJabuJabuLeftMidFlipperDL; + +#define dgJabuJabuLeftLowerFlipperDL "__OTR__objects/object_jj/gJabuJabuLeftLowerFlipperDL" +static const ALIGN_ASSET(2) char gJabuJabuLeftLowerFlipperDL[] = dgJabuJabuLeftLowerFlipperDL; + +#define dgJabuJabuHeadDL "__OTR__objects/object_jj/gJabuJabuHeadDL" +static const ALIGN_ASSET(2) char gJabuJabuHeadDL[] = dgJabuJabuHeadDL; + +#define dgJabuJabuLeftFrillDL "__OTR__objects/object_jj/gJabuJabuLeftFrillDL" +static const ALIGN_ASSET(2) char gJabuJabuLeftFrillDL[] = dgJabuJabuLeftFrillDL; + +#define dgJabuJabuRightFrillDL "__OTR__objects/object_jj/gJabuJabuRightFrillDL" +static const ALIGN_ASSET(2) char gJabuJabuRightFrillDL[] = dgJabuJabuRightFrillDL; + +#define dgJabuJabuRightUpperFlipperDL "__OTR__objects/object_jj/gJabuJabuRightUpperFlipperDL" +static const ALIGN_ASSET(2) char gJabuJabuRightUpperFlipperDL[] = dgJabuJabuRightUpperFlipperDL; + +#define dgJabuJabuRightMidFlipperDL "__OTR__objects/object_jj/gJabuJabuRightMidFlipperDL" +static const ALIGN_ASSET(2) char gJabuJabuRightMidFlipperDL[] = dgJabuJabuRightMidFlipperDL; + +#define dgJabuJabuRightLowerFlipperDL "__OTR__objects/object_jj/gJabuJabuRightLowerFlipperDL" +static const ALIGN_ASSET(2) char gJabuJabuRightLowerFlipperDL[] = dgJabuJabuRightLowerFlipperDL; + +#define dgJabuJabuFlukeDL "__OTR__objects/object_jj/gJabuJabuFlukeDL" +static const ALIGN_ASSET(2) char gJabuJabuFlukeDL[] = dgJabuJabuFlukeDL; + +#define dgJabuJabuFrillTex "__OTR__objects/object_jj/gJabuJabuFrillTex" +static const ALIGN_ASSET(2) char gJabuJabuFrillTex[] = dgJabuJabuFrillTex; + +#define dgJabuJabuNostrilTex "__OTR__objects/object_jj/gJabuJabuNostrilTex" +static const ALIGN_ASSET(2) char gJabuJabuNostrilTex[] = dgJabuJabuNostrilTex; + +#define dgJabuJabuNoseDecorationTex "__OTR__objects/object_jj/gJabuJabuNoseDecorationTex" +static const ALIGN_ASSET(2) char gJabuJabuNoseDecorationTex[] = dgJabuJabuNoseDecorationTex; + +#define dgJabuJabuToothTex "__OTR__objects/object_jj/gJabuJabuToothTex" +static const ALIGN_ASSET(2) char gJabuJabuToothTex[] = dgJabuJabuToothTex; + +#define dgJabuJabuLipTex "__OTR__objects/object_jj/gJabuJabuLipTex" +static const ALIGN_ASSET(2) char gJabuJabuLipTex[] = dgJabuJabuLipTex; + +#define dgJabuJabuLipMouthCornerTex "__OTR__objects/object_jj/gJabuJabuLipMouthCornerTex" +static const ALIGN_ASSET(2) char gJabuJabuLipMouthCornerTex[] = dgJabuJabuLipMouthCornerTex; + +#define dgJabuJabuDiademSideTex "__OTR__objects/object_jj/gJabuJabuDiademSideTex" +static const ALIGN_ASSET(2) char gJabuJabuDiademSideTex[] = dgJabuJabuDiademSideTex; + +#define dgJabuJabuLateralTex "__OTR__objects/object_jj/gJabuJabuLateralTex" +static const ALIGN_ASSET(2) char gJabuJabuLateralTex[] = dgJabuJabuLateralTex; + +#define dgJabuJabuEyeOrbitTex "__OTR__objects/object_jj/gJabuJabuEyeOrbitTex" +static const ALIGN_ASSET(2) char gJabuJabuEyeOrbitTex[] = dgJabuJabuEyeOrbitTex; + +#define dgJabuJabuDorsalTex "__OTR__objects/object_jj/gJabuJabuDorsalTex" +static const ALIGN_ASSET(2) char gJabuJabuDorsalTex[] = dgJabuJabuDorsalTex; + +#define dgJabuJabuCapOuterTex "__OTR__objects/object_jj/gJabuJabuCapOuterTex" +static const ALIGN_ASSET(2) char gJabuJabuCapOuterTex[] = dgJabuJabuCapOuterTex; + +#define dgJabuJabuCapInnerTex "__OTR__objects/object_jj/gJabuJabuCapInnerTex" +static const ALIGN_ASSET(2) char gJabuJabuCapInnerTex[] = dgJabuJabuCapInnerTex; + +#define dgJabuJabuMouthRoofTex "__OTR__objects/object_jj/gJabuJabuMouthRoofTex" +static const ALIGN_ASSET(2) char gJabuJabuMouthRoofTex[] = dgJabuJabuMouthRoofTex; + +#define dgJabuJabuDiademCenterTex "__OTR__objects/object_jj/gJabuJabuDiademCenterTex" +static const ALIGN_ASSET(2) char gJabuJabuDiademCenterTex[] = dgJabuJabuDiademCenterTex; + +#define dgJabuJabuFinTex "__OTR__objects/object_jj/gJabuJabuFinTex" +static const ALIGN_ASSET(2) char gJabuJabuFinTex[] = dgJabuJabuFinTex; + +#define dgJabuJabuMouthFloorTex "__OTR__objects/object_jj/gJabuJabuMouthFloorTex" +static const ALIGN_ASSET(2) char gJabuJabuMouthFloorTex[] = dgJabuJabuMouthFloorTex; + +#define dgJabuJabuHeadCol "__OTR__objects/object_jj/gJabuJabuHeadCol" +static const ALIGN_ASSET(2) char gJabuJabuHeadCol[] = dgJabuJabuHeadCol; + +#define dgJabuJabuBodyCol "__OTR__objects/object_jj/gJabuJabuBodyCol" +static const ALIGN_ASSET(2) char gJabuJabuBodyCol[] = dgJabuJabuBodyCol; + +#define dgJabuJabuUnusedCol "__OTR__objects/object_jj/gJabuJabuUnusedCol" +static const ALIGN_ASSET(2) char gJabuJabuUnusedCol[] = dgJabuJabuUnusedCol; \ No newline at end of file diff --git a/soh/assets/objects/object_js/object_js.h b/soh/assets/objects/object_js/object_js.h index 606a34f9f..fdf602113 100644 --- a/soh/assets/objects/object_js/object_js.h +++ b/soh/assets/objects/object_js/object_js.h @@ -1,184 +1,81 @@ #pragma once -#define dgCarpetMerchantSkel "__OTR__objects/object_js/gCarpetMerchantSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantSkel[] = dgCarpetMerchantSkel; -#else -static const char gCarpetMerchantSkel[] __attribute__((aligned (2))) = dgCarpetMerchantSkel; -#endif - -#define dgCarpetMerchantBlanketAndLowerBodyDL "__OTR__objects/object_js/gCarpetMerchantBlanketAndLowerBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantBlanketAndLowerBodyDL[] = dgCarpetMerchantBlanketAndLowerBodyDL; -#else -static const char gCarpetMerchantBlanketAndLowerBodyDL[] __attribute__((aligned (2))) = dgCarpetMerchantBlanketAndLowerBodyDL; -#endif - -#define dgCarpetMerchantLowerHairDL "__OTR__objects/object_js/gCarpetMerchantLowerHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantLowerHairDL[] = dgCarpetMerchantLowerHairDL; -#else -static const char gCarpetMerchantLowerHairDL[] __attribute__((aligned (2))) = dgCarpetMerchantLowerHairDL; -#endif - -#define dgCarpetMerchantUpperHairDL "__OTR__objects/object_js/gCarpetMerchantUpperHairDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantUpperHairDL[] = dgCarpetMerchantUpperHairDL; -#else -static const char gCarpetMerchantUpperHairDL[] __attribute__((aligned (2))) = dgCarpetMerchantUpperHairDL; -#endif - -#define dgCarpetMerchantTorsoDL "__OTR__objects/object_js/gCarpetMerchantTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantTorsoDL[] = dgCarpetMerchantTorsoDL; -#else -static const char gCarpetMerchantTorsoDL[] __attribute__((aligned (2))) = dgCarpetMerchantTorsoDL; -#endif - -#define dgCarpetMerchantUpperArmLeftDL "__OTR__objects/object_js/gCarpetMerchantUpperArmLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantUpperArmLeftDL[] = dgCarpetMerchantUpperArmLeftDL; -#else -static const char gCarpetMerchantUpperArmLeftDL[] __attribute__((aligned (2))) = dgCarpetMerchantUpperArmLeftDL; -#endif - -#define dgCarpetMerchantForearmLeftDL "__OTR__objects/object_js/gCarpetMerchantForearmLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantForearmLeftDL[] = dgCarpetMerchantForearmLeftDL; -#else -static const char gCarpetMerchantForearmLeftDL[] __attribute__((aligned (2))) = dgCarpetMerchantForearmLeftDL; -#endif - -#define dgCarpetMerchantLeftHandDL "__OTR__objects/object_js/gCarpetMerchantLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantLeftHandDL[] = dgCarpetMerchantLeftHandDL; -#else -static const char gCarpetMerchantLeftHandDL[] __attribute__((aligned (2))) = dgCarpetMerchantLeftHandDL; -#endif - -#define dgCarpetMerchantUpperArmRightDL "__OTR__objects/object_js/gCarpetMerchantUpperArmRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantUpperArmRightDL[] = dgCarpetMerchantUpperArmRightDL; -#else -static const char gCarpetMerchantUpperArmRightDL[] __attribute__((aligned (2))) = dgCarpetMerchantUpperArmRightDL; -#endif - -#define dgCarpetMerchantForearmRightDL "__OTR__objects/object_js/gCarpetMerchantForearmRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantForearmRightDL[] = dgCarpetMerchantForearmRightDL; -#else -static const char gCarpetMerchantForearmRightDL[] __attribute__((aligned (2))) = dgCarpetMerchantForearmRightDL; -#endif - -#define dgCarpetMerchantRightHandDL "__OTR__objects/object_js/gCarpetMerchantRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantRightHandDL[] = dgCarpetMerchantRightHandDL; -#else -static const char gCarpetMerchantRightHandDL[] __attribute__((aligned (2))) = dgCarpetMerchantRightHandDL; -#endif - -#define dgCarpetMerchantHeadDL "__OTR__objects/object_js/gCarpetMerchantHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantHeadDL[] = dgCarpetMerchantHeadDL; -#else -static const char gCarpetMerchantHeadDL[] __attribute__((aligned (2))) = dgCarpetMerchantHeadDL; -#endif - -#define dgCarpetMerchantTLUT "__OTR__objects/object_js/gCarpetMerchantTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantTLUT[] = dgCarpetMerchantTLUT; -#else -static const char gCarpetMerchantTLUT[] __attribute__((aligned (2))) = dgCarpetMerchantTLUT; -#endif - -#define dgCarpetMerchantPantsTex "__OTR__objects/object_js/gCarpetMerchantPantsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantPantsTex[] = dgCarpetMerchantPantsTex; -#else -static const char gCarpetMerchantPantsTex[] __attribute__((aligned (2))) = dgCarpetMerchantPantsTex; -#endif - -#define dgCarpetMerchantHairTex "__OTR__objects/object_js/gCarpetMerchantHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantHairTex[] = dgCarpetMerchantHairTex; -#else -static const char gCarpetMerchantHairTex[] __attribute__((aligned (2))) = dgCarpetMerchantHairTex; -#endif - -#define dgCarpetMerchantFootTex "__OTR__objects/object_js/gCarpetMerchantFootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantFootTex[] = dgCarpetMerchantFootTex; -#else -static const char gCarpetMerchantFootTex[] __attribute__((aligned (2))) = dgCarpetMerchantFootTex; -#endif - -#define dgCarpetMerchantSkinGradientTex "__OTR__objects/object_js/gCarpetMerchantSkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantSkinGradientTex[] = dgCarpetMerchantSkinGradientTex; -#else -static const char gCarpetMerchantSkinGradientTex[] __attribute__((aligned (2))) = dgCarpetMerchantSkinGradientTex; -#endif - -#define dgCarpetMerchantFootSoleTex "__OTR__objects/object_js/gCarpetMerchantFootSoleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantFootSoleTex[] = dgCarpetMerchantFootSoleTex; -#else -static const char gCarpetMerchantFootSoleTex[] __attribute__((aligned (2))) = dgCarpetMerchantFootSoleTex; -#endif - -#define dgCarpetMerchantHandTex "__OTR__objects/object_js/gCarpetMerchantHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantHandTex[] = dgCarpetMerchantHandTex; -#else -static const char gCarpetMerchantHandTex[] __attribute__((aligned (2))) = dgCarpetMerchantHandTex; -#endif - -#define dgCarpetMerchantBraceletTex "__OTR__objects/object_js/gCarpetMerchantBraceletTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantBraceletTex[] = dgCarpetMerchantBraceletTex; -#else -static const char gCarpetMerchantBraceletTex[] __attribute__((aligned (2))) = dgCarpetMerchantBraceletTex; -#endif - -#define dgCarpetMerchantShirtTex "__OTR__objects/object_js/gCarpetMerchantShirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantShirtTex[] = dgCarpetMerchantShirtTex; -#else -static const char gCarpetMerchantShirtTex[] __attribute__((aligned (2))) = dgCarpetMerchantShirtTex; -#endif - -#define dgCarpetMerchantChestTex "__OTR__objects/object_js/gCarpetMerchantChestTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantChestTex[] = dgCarpetMerchantChestTex; -#else -static const char gCarpetMerchantChestTex[] __attribute__((aligned (2))) = dgCarpetMerchantChestTex; -#endif - -#define dgCarpetMerchantHatTex "__OTR__objects/object_js/gCarpetMerchantHatTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantHatTex[] = dgCarpetMerchantHatTex; -#else -static const char gCarpetMerchantHatTex[] __attribute__((aligned (2))) = dgCarpetMerchantHatTex; -#endif - -#define dgCarpetMerchantSlappingKneeAnim "__OTR__objects/object_js/gCarpetMerchantSlappingKneeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantSlappingKneeAnim[] = dgCarpetMerchantSlappingKneeAnim; -#else -static const char gCarpetMerchantSlappingKneeAnim[] __attribute__((aligned (2))) = dgCarpetMerchantSlappingKneeAnim; -#endif - -#define dgCarpetMerchantIdleAnim "__OTR__objects/object_js/gCarpetMerchantIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantIdleAnim[] = dgCarpetMerchantIdleAnim; -#else -static const char gCarpetMerchantIdleAnim[] __attribute__((aligned (2))) = dgCarpetMerchantIdleAnim; -#endif - -#define dgCarpetMerchantCol "__OTR__objects/object_js/gCarpetMerchantCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpetMerchantCol[] = dgCarpetMerchantCol; -#else -static const char gCarpetMerchantCol[] __attribute__((aligned (2))) = dgCarpetMerchantCol; -#endif - +#include "align_asset_macro.h" + +#define dgCarpetMerchantSkel "__OTR__objects/object_js/gCarpetMerchantSkel" +static const ALIGN_ASSET(2) char gCarpetMerchantSkel[] = dgCarpetMerchantSkel; + +#define dgCarpetMerchantBlanketAndLowerBodyDL "__OTR__objects/object_js/gCarpetMerchantBlanketAndLowerBodyDL" +static const ALIGN_ASSET(2) char gCarpetMerchantBlanketAndLowerBodyDL[] = dgCarpetMerchantBlanketAndLowerBodyDL; + +#define dgCarpetMerchantLowerHairDL "__OTR__objects/object_js/gCarpetMerchantLowerHairDL" +static const ALIGN_ASSET(2) char gCarpetMerchantLowerHairDL[] = dgCarpetMerchantLowerHairDL; + +#define dgCarpetMerchantUpperHairDL "__OTR__objects/object_js/gCarpetMerchantUpperHairDL" +static const ALIGN_ASSET(2) char gCarpetMerchantUpperHairDL[] = dgCarpetMerchantUpperHairDL; + +#define dgCarpetMerchantTorsoDL "__OTR__objects/object_js/gCarpetMerchantTorsoDL" +static const ALIGN_ASSET(2) char gCarpetMerchantTorsoDL[] = dgCarpetMerchantTorsoDL; + +#define dgCarpetMerchantUpperArmLeftDL "__OTR__objects/object_js/gCarpetMerchantUpperArmLeftDL" +static const ALIGN_ASSET(2) char gCarpetMerchantUpperArmLeftDL[] = dgCarpetMerchantUpperArmLeftDL; + +#define dgCarpetMerchantForearmLeftDL "__OTR__objects/object_js/gCarpetMerchantForearmLeftDL" +static const ALIGN_ASSET(2) char gCarpetMerchantForearmLeftDL[] = dgCarpetMerchantForearmLeftDL; + +#define dgCarpetMerchantLeftHandDL "__OTR__objects/object_js/gCarpetMerchantLeftHandDL" +static const ALIGN_ASSET(2) char gCarpetMerchantLeftHandDL[] = dgCarpetMerchantLeftHandDL; + +#define dgCarpetMerchantUpperArmRightDL "__OTR__objects/object_js/gCarpetMerchantUpperArmRightDL" +static const ALIGN_ASSET(2) char gCarpetMerchantUpperArmRightDL[] = dgCarpetMerchantUpperArmRightDL; + +#define dgCarpetMerchantForearmRightDL "__OTR__objects/object_js/gCarpetMerchantForearmRightDL" +static const ALIGN_ASSET(2) char gCarpetMerchantForearmRightDL[] = dgCarpetMerchantForearmRightDL; + +#define dgCarpetMerchantRightHandDL "__OTR__objects/object_js/gCarpetMerchantRightHandDL" +static const ALIGN_ASSET(2) char gCarpetMerchantRightHandDL[] = dgCarpetMerchantRightHandDL; + +#define dgCarpetMerchantHeadDL "__OTR__objects/object_js/gCarpetMerchantHeadDL" +static const ALIGN_ASSET(2) char gCarpetMerchantHeadDL[] = dgCarpetMerchantHeadDL; + +#define dgCarpetMerchantTLUT "__OTR__objects/object_js/gCarpetMerchantTLUT" +static const ALIGN_ASSET(2) char gCarpetMerchantTLUT[] = dgCarpetMerchantTLUT; + +#define dgCarpetMerchantPantsTex "__OTR__objects/object_js/gCarpetMerchantPantsTex" +static const ALIGN_ASSET(2) char gCarpetMerchantPantsTex[] = dgCarpetMerchantPantsTex; + +#define dgCarpetMerchantHairTex "__OTR__objects/object_js/gCarpetMerchantHairTex" +static const ALIGN_ASSET(2) char gCarpetMerchantHairTex[] = dgCarpetMerchantHairTex; + +#define dgCarpetMerchantFootTex "__OTR__objects/object_js/gCarpetMerchantFootTex" +static const ALIGN_ASSET(2) char gCarpetMerchantFootTex[] = dgCarpetMerchantFootTex; + +#define dgCarpetMerchantSkinGradientTex "__OTR__objects/object_js/gCarpetMerchantSkinGradientTex" +static const ALIGN_ASSET(2) char gCarpetMerchantSkinGradientTex[] = dgCarpetMerchantSkinGradientTex; + +#define dgCarpetMerchantFootSoleTex "__OTR__objects/object_js/gCarpetMerchantFootSoleTex" +static const ALIGN_ASSET(2) char gCarpetMerchantFootSoleTex[] = dgCarpetMerchantFootSoleTex; + +#define dgCarpetMerchantHandTex "__OTR__objects/object_js/gCarpetMerchantHandTex" +static const ALIGN_ASSET(2) char gCarpetMerchantHandTex[] = dgCarpetMerchantHandTex; + +#define dgCarpetMerchantBraceletTex "__OTR__objects/object_js/gCarpetMerchantBraceletTex" +static const ALIGN_ASSET(2) char gCarpetMerchantBraceletTex[] = dgCarpetMerchantBraceletTex; + +#define dgCarpetMerchantShirtTex "__OTR__objects/object_js/gCarpetMerchantShirtTex" +static const ALIGN_ASSET(2) char gCarpetMerchantShirtTex[] = dgCarpetMerchantShirtTex; + +#define dgCarpetMerchantChestTex "__OTR__objects/object_js/gCarpetMerchantChestTex" +static const ALIGN_ASSET(2) char gCarpetMerchantChestTex[] = dgCarpetMerchantChestTex; + +#define dgCarpetMerchantHatTex "__OTR__objects/object_js/gCarpetMerchantHatTex" +static const ALIGN_ASSET(2) char gCarpetMerchantHatTex[] = dgCarpetMerchantHatTex; + +#define dgCarpetMerchantSlappingKneeAnim "__OTR__objects/object_js/gCarpetMerchantSlappingKneeAnim" +static const ALIGN_ASSET(2) char gCarpetMerchantSlappingKneeAnim[] = dgCarpetMerchantSlappingKneeAnim; + +#define dgCarpetMerchantIdleAnim "__OTR__objects/object_js/gCarpetMerchantIdleAnim" +static const ALIGN_ASSET(2) char gCarpetMerchantIdleAnim[] = dgCarpetMerchantIdleAnim; + +#define dgCarpetMerchantCol "__OTR__objects/object_js/gCarpetMerchantCol" +static const ALIGN_ASSET(2) char gCarpetMerchantCol[] = dgCarpetMerchantCol; \ No newline at end of file diff --git a/soh/assets/objects/object_jya_door/object_jya_door.h b/soh/assets/objects/object_jya_door/object_jya_door.h index 920ec8186..c3b367e00 100644 --- a/soh/assets/objects/object_jya_door/object_jya_door.h +++ b/soh/assets/objects/object_jya_door/object_jya_door.h @@ -1,30 +1,15 @@ #pragma once -#define dgSpiritDoorDL "__OTR__objects/object_jya_door/gSpiritDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritDoorDL[] = dgSpiritDoorDL; -#else -static const char gSpiritDoorDL[] __attribute__((aligned (2))) = dgSpiritDoorDL; -#endif - -#define dgJyaDoorMetalBarsDL "__OTR__objects/object_jya_door/gJyaDoorMetalBarsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJyaDoorMetalBarsDL[] = dgJyaDoorMetalBarsDL; -#else -static const char gJyaDoorMetalBarsDL[] __attribute__((aligned (2))) = dgJyaDoorMetalBarsDL; -#endif - -#define dgSpiritDoorTex "__OTR__objects/object_jya_door/gSpiritDoorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritDoorTex[] = dgSpiritDoorTex; -#else -static const char gSpiritDoorTex[] __attribute__((aligned (2))) = dgSpiritDoorTex; -#endif - -#define dgSpiritDoorMetalBarsTex "__OTR__objects/object_jya_door/gSpiritDoorMetalBarsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritDoorMetalBarsTex[] = dgSpiritDoorMetalBarsTex; -#else -static const char gSpiritDoorMetalBarsTex[] __attribute__((aligned (2))) = dgSpiritDoorMetalBarsTex; -#endif - +#include "align_asset_macro.h" + +#define dgSpiritDoorDL "__OTR__objects/object_jya_door/gSpiritDoorDL" +static const ALIGN_ASSET(2) char gSpiritDoorDL[] = dgSpiritDoorDL; + +#define dgJyaDoorMetalBarsDL "__OTR__objects/object_jya_door/gJyaDoorMetalBarsDL" +static const ALIGN_ASSET(2) char gJyaDoorMetalBarsDL[] = dgJyaDoorMetalBarsDL; + +#define dgSpiritDoorTex "__OTR__objects/object_jya_door/gSpiritDoorTex" +static const ALIGN_ASSET(2) char gSpiritDoorTex[] = dgSpiritDoorTex; + +#define dgSpiritDoorMetalBarsTex "__OTR__objects/object_jya_door/gSpiritDoorMetalBarsTex" +static const ALIGN_ASSET(2) char gSpiritDoorMetalBarsTex[] = dgSpiritDoorMetalBarsTex; \ No newline at end of file diff --git a/soh/assets/objects/object_jya_iron/object_jya_iron.h b/soh/assets/objects/object_jya_iron/object_jya_iron.h index 6b12ee3d6..85c142d7e 100644 --- a/soh/assets/objects/object_jya_iron/object_jya_iron.h +++ b/soh/assets/objects/object_jya_iron/object_jya_iron.h @@ -1,65 +1,30 @@ #pragma once -#define dgPillarDL "__OTR__objects/object_jya_iron/gPillarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPillarDL[] = dgPillarDL; -#else -static const char gPillarDL[] __attribute__((aligned (2))) = dgPillarDL; -#endif - -#define dgObjectJyaIronDL_000600 "__OTR__objects/object_jya_iron/gObjectJyaIronDL_000600" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectJyaIronDL_000600[] = dgObjectJyaIronDL_000600; -#else -static const char gObjectJyaIronDL_000600[] __attribute__((aligned (2))) = dgObjectJyaIronDL_000600; -#endif - -#define dgObjectJyaIronDL_000880 "__OTR__objects/object_jya_iron/gObjectJyaIronDL_000880" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectJyaIronDL_000880[] = dgObjectJyaIronDL_000880; -#else -static const char gObjectJyaIronDL_000880[] __attribute__((aligned (2))) = dgObjectJyaIronDL_000880; -#endif - -#define dgObjectJyaIronDL_000AE0 "__OTR__objects/object_jya_iron/gObjectJyaIronDL_000AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectJyaIronDL_000AE0[] = dgObjectJyaIronDL_000AE0; -#else -static const char gObjectJyaIronDL_000AE0[] __attribute__((aligned (2))) = dgObjectJyaIronDL_000AE0; -#endif - -#define dgPillarCol "__OTR__objects/object_jya_iron/gPillarCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gPillarCol[] = dgPillarCol; -#else -static const char gPillarCol[] __attribute__((aligned (2))) = dgPillarCol; -#endif - -#define dgThroneDL "__OTR__objects/object_jya_iron/gThroneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gThroneDL[] = dgThroneDL; -#else -static const char gThroneDL[] __attribute__((aligned (2))) = dgThroneDL; -#endif - -#define dgThroneCol "__OTR__objects/object_jya_iron/gThroneCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gThroneCol[] = dgThroneCol; -#else -static const char gThroneCol[] __attribute__((aligned (2))) = dgThroneCol; -#endif - -#define dgPillarSideTex "__OTR__objects/object_jya_iron/gPillarSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPillarSideTex[] = dgPillarSideTex; -#else -static const char gPillarSideTex[] __attribute__((aligned (2))) = dgPillarSideTex; -#endif - -#define dgPillarTopTex "__OTR__objects/object_jya_iron/gPillarTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPillarTopTex[] = dgPillarTopTex; -#else -static const char gPillarTopTex[] __attribute__((aligned (2))) = dgPillarTopTex; -#endif - +#include "align_asset_macro.h" + +#define dgPillarDL "__OTR__objects/object_jya_iron/gPillarDL" +static const ALIGN_ASSET(2) char gPillarDL[] = dgPillarDL; + +#define dgObjectJyaIronDL_000600 "__OTR__objects/object_jya_iron/gObjectJyaIronDL_000600" +static const ALIGN_ASSET(2) char gObjectJyaIronDL_000600[] = dgObjectJyaIronDL_000600; + +#define dgObjectJyaIronDL_000880 "__OTR__objects/object_jya_iron/gObjectJyaIronDL_000880" +static const ALIGN_ASSET(2) char gObjectJyaIronDL_000880[] = dgObjectJyaIronDL_000880; + +#define dgObjectJyaIronDL_000AE0 "__OTR__objects/object_jya_iron/gObjectJyaIronDL_000AE0" +static const ALIGN_ASSET(2) char gObjectJyaIronDL_000AE0[] = dgObjectJyaIronDL_000AE0; + +#define dgPillarCol "__OTR__objects/object_jya_iron/gPillarCol" +static const ALIGN_ASSET(2) char gPillarCol[] = dgPillarCol; + +#define dgThroneDL "__OTR__objects/object_jya_iron/gThroneDL" +static const ALIGN_ASSET(2) char gThroneDL[] = dgThroneDL; + +#define dgThroneCol "__OTR__objects/object_jya_iron/gThroneCol" +static const ALIGN_ASSET(2) char gThroneCol[] = dgThroneCol; + +#define dgPillarSideTex "__OTR__objects/object_jya_iron/gPillarSideTex" +static const ALIGN_ASSET(2) char gPillarSideTex[] = dgPillarSideTex; + +#define dgPillarTopTex "__OTR__objects/object_jya_iron/gPillarTopTex" +static const ALIGN_ASSET(2) char gPillarTopTex[] = dgPillarTopTex; \ No newline at end of file diff --git a/soh/assets/objects/object_jya_obj/object_jya_obj.h b/soh/assets/objects/object_jya_obj/object_jya_obj.h index 1f243ef26..37caa8f36 100644 --- a/soh/assets/objects/object_jya_obj/object_jya_obj.h +++ b/soh/assets/objects/object_jya_obj/object_jya_obj.h @@ -1,583 +1,252 @@ #pragma once -#define dg1fliftDL "__OTR__objects/object_jya_obj/g1fliftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char g1fliftDL[] = dg1fliftDL; -#else -static const char g1fliftDL[] __attribute__((aligned (2))) = dg1fliftDL; -#endif - -#define dg1fliftCol "__OTR__objects/object_jya_obj/g1fliftCol" -#ifdef _WIN32 -static const __declspec(align(2)) char g1fliftCol[] = dg1fliftCol; -#else -static const char g1fliftCol[] __attribute__((aligned (2))) = dg1fliftCol; -#endif - -#define dg1f1fiftTopTex "__OTR__objects/object_jya_obj/g1f1fiftTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char g1f1fiftTopTex[] = dg1f1fiftTopTex; -#else -static const char g1f1fiftTopTex[] __attribute__((aligned (2))) = dg1f1fiftTopTex; -#endif - -#define dg1fLiftBottomTex "__OTR__objects/object_jya_obj/g1fLiftBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char g1fLiftBottomTex[] = dg1fLiftBottomTex; -#else -static const char g1fLiftBottomTex[] __attribute__((aligned (2))) = dg1fLiftBottomTex; -#endif - -#define dgAmishutterDL "__OTR__objects/object_jya_obj/gAmishutterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmishutterDL[] = dgAmishutterDL; -#else -static const char gAmishutterDL[] __attribute__((aligned (2))) = dgAmishutterDL; -#endif - -#define dgAmishutterCol "__OTR__objects/object_jya_obj/gAmishutterCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmishutterCol[] = dgAmishutterCol; -#else -static const char gAmishutterCol[] __attribute__((aligned (2))) = dgAmishutterCol; -#endif - -#define dgBigMirror1DL "__OTR__objects/object_jya_obj/gBigMirror1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigMirror1DL[] = dgBigMirror1DL; -#else -static const char gBigMirror1DL[] __attribute__((aligned (2))) = dgBigMirror1DL; -#endif - -#define dgBigMirror2DL "__OTR__objects/object_jya_obj/gBigMirror2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigMirror2DL[] = dgBigMirror2DL; -#else -static const char gBigMirror2DL[] __attribute__((aligned (2))) = dgBigMirror2DL; -#endif - -#define dgBigMirror3DL "__OTR__objects/object_jya_obj/gBigMirror3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigMirror3DL[] = dgBigMirror3DL; -#else -static const char gBigMirror3DL[] __attribute__((aligned (2))) = dgBigMirror3DL; -#endif - -#define dgBigMirror4DL "__OTR__objects/object_jya_obj/gBigMirror4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigMirror4DL[] = dgBigMirror4DL; -#else -static const char gBigMirror4DL[] __attribute__((aligned (2))) = dgBigMirror4DL; -#endif - -#define dgBigMirrorGradientTex "__OTR__objects/object_jya_obj/gBigMirrorGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigMirrorGradientTex[] = dgBigMirrorGradientTex; -#else -static const char gBigMirrorGradientTex[] __attribute__((aligned (2))) = dgBigMirrorGradientTex; -#endif - -#define dgBombchuiwaDL "__OTR__objects/object_jya_obj/gBombchuiwaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuiwaDL[] = dgBombchuiwaDL; -#else -static const char gBombchuiwaDL[] __attribute__((aligned (2))) = dgBombchuiwaDL; -#endif - -#define dgBombchuiwaLight1DL "__OTR__objects/object_jya_obj/gBombchuiwaLight1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuiwaLight1DL[] = dgBombchuiwaLight1DL; -#else -static const char gBombchuiwaLight1DL[] __attribute__((aligned (2))) = dgBombchuiwaLight1DL; -#endif - -#define dgBombchuiwaLight2DL "__OTR__objects/object_jya_obj/gBombchuiwaLight2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuiwaLight2DL[] = dgBombchuiwaLight2DL; -#else -static const char gBombchuiwaLight2DL[] __attribute__((aligned (2))) = dgBombchuiwaLight2DL; -#endif - -#define dgBombchuiwa2DL "__OTR__objects/object_jya_obj/gBombchuiwa2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuiwa2DL[] = dgBombchuiwa2DL; -#else -static const char gBombchuiwa2DL[] __attribute__((aligned (2))) = dgBombchuiwa2DL; -#endif - -#define dgBombiwaDL "__OTR__objects/object_jya_obj/gBombiwaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombiwaDL[] = dgBombiwaDL; -#else -static const char gBombiwaDL[] __attribute__((aligned (2))) = dgBombiwaDL; -#endif - -#define dgBombiwaEffectDL "__OTR__objects/object_jya_obj/gBombiwaEffectDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombiwaEffectDL[] = dgBombiwaEffectDL; -#else -static const char gBombiwaEffectDL[] __attribute__((aligned (2))) = dgBombiwaEffectDL; -#endif - -#define dgBombiwaRockTex "__OTR__objects/object_jya_obj/gBombiwaRockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombiwaRockTex[] = dgBombiwaRockTex; -#else -static const char gBombiwaRockTex[] __attribute__((aligned (2))) = dgBombiwaRockTex; -#endif - -#define dgBombiwaLight1Tex "__OTR__objects/object_jya_obj/gBombiwaLight1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombiwaLight1Tex[] = dgBombiwaLight1Tex; -#else -static const char gBombiwaLight1Tex[] __attribute__((aligned (2))) = dgBombiwaLight1Tex; -#endif - -#define dgBombiwaCol "__OTR__objects/object_jya_obj/gBombiwaCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombiwaCol[] = dgBombiwaCol; -#else -static const char gBombiwaCol[] __attribute__((aligned (2))) = dgBombiwaCol; -#endif - -#define dgCobra1DL "__OTR__objects/object_jya_obj/gCobra1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobra1DL[] = dgCobra1DL; -#else -static const char gCobra1DL[] __attribute__((aligned (2))) = dgCobra1DL; -#endif - -#define dgCobra2DL "__OTR__objects/object_jya_obj/gCobra2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobra2DL[] = dgCobra2DL; -#else -static const char gCobra2DL[] __attribute__((aligned (2))) = dgCobra2DL; -#endif - -#define dgCobraCol "__OTR__objects/object_jya_obj/gCobraCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobraCol[] = dgCobraCol; -#else -static const char gCobraCol[] __attribute__((aligned (2))) = dgCobraCol; -#endif - -#define dgCobra3DL "__OTR__objects/object_jya_obj/gCobra3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobra3DL[] = dgCobra3DL; -#else -static const char gCobra3DL[] __attribute__((aligned (2))) = dgCobra3DL; -#endif - -#define dgCobraMirrorStoneTex "__OTR__objects/object_jya_obj/gCobraMirrorStoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobraMirrorStoneTex[] = dgCobraMirrorStoneTex; -#else -static const char gCobraMirrorStoneTex[] __attribute__((aligned (2))) = dgCobraMirrorStoneTex; -#endif - -#define dgCobraMirrorBorderTex "__OTR__objects/object_jya_obj/gCobraMirrorBorderTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobraMirrorBorderTex[] = dgCobraMirrorBorderTex; -#else -static const char gCobraMirrorBorderTex[] __attribute__((aligned (2))) = dgCobraMirrorBorderTex; -#endif - -#define dgCobraMirrorEyeTex "__OTR__objects/object_jya_obj/gCobraMirrorEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobraMirrorEyeTex[] = dgCobraMirrorEyeTex; -#else -static const char gCobraMirrorEyeTex[] __attribute__((aligned (2))) = dgCobraMirrorEyeTex; -#endif - -#define dgCobraMirrorHandleTex "__OTR__objects/object_jya_obj/gCobraMirrorHandleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobraMirrorHandleTex[] = dgCobraMirrorHandleTex; -#else -static const char gCobraMirrorHandleTex[] __attribute__((aligned (2))) = dgCobraMirrorHandleTex; -#endif - -#define dgCobraMirrorMirrorTex "__OTR__objects/object_jya_obj/gCobraMirrorMirrorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobraMirrorMirrorTex[] = dgCobraMirrorMirrorTex; -#else -static const char gCobraMirrorMirrorTex[] __attribute__((aligned (2))) = dgCobraMirrorMirrorTex; -#endif - -#define dgCobraMirrorToothTex "__OTR__objects/object_jya_obj/gCobraMirrorToothTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCobraMirrorToothTex[] = dgCobraMirrorToothTex; -#else -static const char gCobraMirrorToothTex[] __attribute__((aligned (2))) = dgCobraMirrorToothTex; -#endif - -#define dgKanaamiDL "__OTR__objects/object_jya_obj/gKanaamiDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKanaamiDL[] = dgKanaamiDL; -#else -static const char gKanaamiDL[] __attribute__((aligned (2))) = dgKanaamiDL; -#endif - -#define dgKanaamiCol "__OTR__objects/object_jya_obj/gKanaamiCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gKanaamiCol[] = dgKanaamiCol; -#else -static const char gKanaamiCol[] __attribute__((aligned (2))) = dgKanaamiCol; -#endif - -#define dgKanaamiTopTex "__OTR__objects/object_jya_obj/gKanaamiTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKanaamiTopTex[] = dgKanaamiTopTex; -#else -static const char gKanaamiTopTex[] __attribute__((aligned (2))) = dgKanaamiTopTex; -#endif - -#define dgKanaamiMiddleTex "__OTR__objects/object_jya_obj/gKanaamiMiddleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKanaamiMiddleTex[] = dgKanaamiMiddleTex; -#else -static const char gKanaamiMiddleTex[] __attribute__((aligned (2))) = dgKanaamiMiddleTex; -#endif - -#define dgLiftDL "__OTR__objects/object_jya_obj/gLiftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLiftDL[] = dgLiftDL; -#else -static const char gLiftDL[] __attribute__((aligned (2))) = dgLiftDL; -#endif - -#define dgLiftChainTex "__OTR__objects/object_jya_obj/gLiftChainTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLiftChainTex[] = dgLiftChainTex; -#else -static const char gLiftChainTex[] __attribute__((aligned (2))) = dgLiftChainTex; -#endif - -#define dgLiftTopTex "__OTR__objects/object_jya_obj/gLiftTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLiftTopTex[] = dgLiftTopTex; -#else -static const char gLiftTopTex[] __attribute__((aligned (2))) = dgLiftTopTex; -#endif - -#define dgLiftUpperChainTex "__OTR__objects/object_jya_obj/gLiftUpperChainTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLiftUpperChainTex[] = dgLiftUpperChainTex; -#else -static const char gLiftUpperChainTex[] __attribute__((aligned (2))) = dgLiftUpperChainTex; -#endif - -#define dgLiftCol "__OTR__objects/object_jya_obj/gLiftCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gLiftCol[] = dgLiftCol; -#else -static const char gLiftCol[] __attribute__((aligned (2))) = dgLiftCol; -#endif - -#define dgMegami1DL "__OTR__objects/object_jya_obj/gMegami1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami1DL[] = dgMegami1DL; -#else -static const char gMegami1DL[] __attribute__((aligned (2))) = dgMegami1DL; -#endif - -#define dGMegamiCol "__OTR__objects/object_jya_obj/GMegamiCol" -#ifdef _WIN32 -static const __declspec(align(2)) char GMegamiCol[] = dGMegamiCol; -#else -static const char GMegamiCol[] __attribute__((aligned (2))) = dGMegamiCol; -#endif - -#define dgMegami2DL "__OTR__objects/object_jya_obj/gMegami2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami2DL[] = dgMegami2DL; -#else -static const char gMegami2DL[] __attribute__((aligned (2))) = dgMegami2DL; -#endif - -#define dgMegamiPiece1DL "__OTR__objects/object_jya_obj/gMegamiPiece1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece1DL[] = dgMegamiPiece1DL; -#else -static const char gMegamiPiece1DL[] __attribute__((aligned (2))) = dgMegamiPiece1DL; -#endif - -#define dgMegamiPiece2DL "__OTR__objects/object_jya_obj/gMegamiPiece2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece2DL[] = dgMegamiPiece2DL; -#else -static const char gMegamiPiece2DL[] __attribute__((aligned (2))) = dgMegamiPiece2DL; -#endif - -#define dgMegamiPiece3DL "__OTR__objects/object_jya_obj/gMegamiPiece3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece3DL[] = dgMegamiPiece3DL; -#else -static const char gMegamiPiece3DL[] __attribute__((aligned (2))) = dgMegamiPiece3DL; -#endif - -#define dgMegamiPiece4DL "__OTR__objects/object_jya_obj/gMegamiPiece4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece4DL[] = dgMegamiPiece4DL; -#else -static const char gMegamiPiece4DL[] __attribute__((aligned (2))) = dgMegamiPiece4DL; -#endif - -#define dgMegamiPiece5DL "__OTR__objects/object_jya_obj/gMegamiPiece5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece5DL[] = dgMegamiPiece5DL; -#else -static const char gMegamiPiece5DL[] __attribute__((aligned (2))) = dgMegamiPiece5DL; -#endif - -#define dgMegamiPiece6DL "__OTR__objects/object_jya_obj/gMegamiPiece6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece6DL[] = dgMegamiPiece6DL; -#else -static const char gMegamiPiece6DL[] __attribute__((aligned (2))) = dgMegamiPiece6DL; -#endif - -#define dgMegamiPiece7DL "__OTR__objects/object_jya_obj/gMegamiPiece7DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece7DL[] = dgMegamiPiece7DL; -#else -static const char gMegamiPiece7DL[] __attribute__((aligned (2))) = dgMegamiPiece7DL; -#endif - -#define dgMegamiPiece8DL "__OTR__objects/object_jya_obj/gMegamiPiece8DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece8DL[] = dgMegamiPiece8DL; -#else -static const char gMegamiPiece8DL[] __attribute__((aligned (2))) = dgMegamiPiece8DL; -#endif - -#define dgMegamiPiece9DL "__OTR__objects/object_jya_obj/gMegamiPiece9DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece9DL[] = dgMegamiPiece9DL; -#else -static const char gMegamiPiece9DL[] __attribute__((aligned (2))) = dgMegamiPiece9DL; -#endif - -#define dgMegamiPiece10DL "__OTR__objects/object_jya_obj/gMegamiPiece10DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece10DL[] = dgMegamiPiece10DL; -#else -static const char gMegamiPiece10DL[] __attribute__((aligned (2))) = dgMegamiPiece10DL; -#endif - -#define dgMegamiPiece11DL "__OTR__objects/object_jya_obj/gMegamiPiece11DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece11DL[] = dgMegamiPiece11DL; -#else -static const char gMegamiPiece11DL[] __attribute__((aligned (2))) = dgMegamiPiece11DL; -#endif - -#define dgMegamiPiece12DL "__OTR__objects/object_jya_obj/gMegamiPiece12DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece12DL[] = dgMegamiPiece12DL; -#else -static const char gMegamiPiece12DL[] __attribute__((aligned (2))) = dgMegamiPiece12DL; -#endif - -#define dgMegamiPiece13DL "__OTR__objects/object_jya_obj/gMegamiPiece13DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiPiece13DL[] = dgMegamiPiece13DL; -#else -static const char gMegamiPiece13DL[] __attribute__((aligned (2))) = dgMegamiPiece13DL; -#endif - -#define dgMegami1TLUT "__OTR__objects/object_jya_obj/gMegami1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami1TLUT[] = dgMegami1TLUT; -#else -static const char gMegami1TLUT[] __attribute__((aligned (2))) = dgMegami1TLUT; -#endif - -#define dgMegami1Tex "__OTR__objects/object_jya_obj/gMegami1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami1Tex[] = dgMegami1Tex; -#else -static const char gMegami1Tex[] __attribute__((aligned (2))) = dgMegami1Tex; -#endif - -#define dgMegami2TLUT "__OTR__objects/object_jya_obj/gMegami2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami2TLUT[] = dgMegami2TLUT; -#else -static const char gMegami2TLUT[] __attribute__((aligned (2))) = dgMegami2TLUT; -#endif - -#define dgMegami2Tex "__OTR__objects/object_jya_obj/gMegami2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami2Tex[] = dgMegami2Tex; -#else -static const char gMegami2Tex[] __attribute__((aligned (2))) = dgMegami2Tex; -#endif - -#define dgMegami3TLUT "__OTR__objects/object_jya_obj/gMegami3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami3TLUT[] = dgMegami3TLUT; -#else -static const char gMegami3TLUT[] __attribute__((aligned (2))) = dgMegami3TLUT; -#endif - -#define dgMegami3Tex "__OTR__objects/object_jya_obj/gMegami3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami3Tex[] = dgMegami3Tex; -#else -static const char gMegami3Tex[] __attribute__((aligned (2))) = dgMegami3Tex; -#endif - -#define dgMegami4TLUT "__OTR__objects/object_jya_obj/gMegami4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami4TLUT[] = dgMegami4TLUT; -#else -static const char gMegami4TLUT[] __attribute__((aligned (2))) = dgMegami4TLUT; -#endif - -#define dgMegami5TLUT "__OTR__objects/object_jya_obj/gMegami5TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegami5TLUT[] = dgMegami5TLUT; -#else -static const char gMegami5TLUT[] __attribute__((aligned (2))) = dgMegami5TLUT; -#endif - -#define dgMegamiCrumbleTLUT "__OTR__objects/object_jya_obj/gMegamiCrumbleTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiCrumbleTLUT[] = dgMegamiCrumbleTLUT; -#else -static const char gMegamiCrumbleTLUT[] __attribute__((aligned (2))) = dgMegamiCrumbleTLUT; -#endif - -#define dgMegamiRightCrumble1Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiRightCrumble1Tex[] = dgMegamiRightCrumble1Tex; -#else -static const char gMegamiRightCrumble1Tex[] __attribute__((aligned (2))) = dgMegamiRightCrumble1Tex; -#endif - -#define dgMegamiRightCrumble2Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiRightCrumble2Tex[] = dgMegamiRightCrumble2Tex; -#else -static const char gMegamiRightCrumble2Tex[] __attribute__((aligned (2))) = dgMegamiRightCrumble2Tex; -#endif - -#define dgMegamiRightCrumble3Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiRightCrumble3Tex[] = dgMegamiRightCrumble3Tex; -#else -static const char gMegamiRightCrumble3Tex[] __attribute__((aligned (2))) = dgMegamiRightCrumble3Tex; -#endif - -#define dgMegamiRightCrumble4Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiRightCrumble4Tex[] = dgMegamiRightCrumble4Tex; -#else -static const char gMegamiRightCrumble4Tex[] __attribute__((aligned (2))) = dgMegamiRightCrumble4Tex; -#endif - -#define dgMegamiRightCrumble5Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiRightCrumble5Tex[] = dgMegamiRightCrumble5Tex; -#else -static const char gMegamiRightCrumble5Tex[] __attribute__((aligned (2))) = dgMegamiRightCrumble5Tex; -#endif - -#define dgMegamiLeftCrumble1Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiLeftCrumble1Tex[] = dgMegamiLeftCrumble1Tex; -#else -static const char gMegamiLeftCrumble1Tex[] __attribute__((aligned (2))) = dgMegamiLeftCrumble1Tex; -#endif - -#define dgMegamiLeftCrumble2Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiLeftCrumble2Tex[] = dgMegamiLeftCrumble2Tex; -#else -static const char gMegamiLeftCrumble2Tex[] __attribute__((aligned (2))) = dgMegamiLeftCrumble2Tex; -#endif - -#define dgMegamiLeftCrumble3Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiLeftCrumble3Tex[] = dgMegamiLeftCrumble3Tex; -#else -static const char gMegamiLeftCrumble3Tex[] __attribute__((aligned (2))) = dgMegamiLeftCrumble3Tex; -#endif - -#define dgMegamiLeftCrumble4Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiLeftCrumble4Tex[] = dgMegamiLeftCrumble4Tex; -#else -static const char gMegamiLeftCrumble4Tex[] __attribute__((aligned (2))) = dgMegamiLeftCrumble4Tex; -#endif - -#define dgMegamiLeftCrumble5Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegamiLeftCrumble5Tex[] = dgMegamiLeftCrumble5Tex; -#else -static const char gMegamiLeftCrumble5Tex[] __attribute__((aligned (2))) = dgMegamiLeftCrumble5Tex; -#endif - -#define dgZurerukabeDL "__OTR__objects/object_jya_obj/gZurerukabeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZurerukabeDL[] = dgZurerukabeDL; -#else -static const char gZurerukabeDL[] __attribute__((aligned (2))) = dgZurerukabeDL; -#endif - -#define dgZurerukabeCol "__OTR__objects/object_jya_obj/gZurerukabeCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gZurerukabeCol[] = dgZurerukabeCol; -#else -static const char gZurerukabeCol[] __attribute__((aligned (2))) = dgZurerukabeCol; -#endif - -#define dobject_jya_objTex_017140 "__OTR__objects/object_jya_obj/object_jya_objTex_017140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_jya_objTex_017140[] = dobject_jya_objTex_017140; -#else -static const char object_jya_objTex_017140[] __attribute__((aligned (2))) = dobject_jya_objTex_017140; -#endif - -#define dobject_jya_objTex_01B340 "__OTR__objects/object_jya_obj/object_jya_objTex_01B340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_jya_objTex_01B340[] = dobject_jya_objTex_01B340; -#else -static const char object_jya_objTex_01B340[] __attribute__((aligned (2))) = dobject_jya_objTex_01B340; -#endif - -#define dobject_jya_objTex_01B740 "__OTR__objects/object_jya_obj/object_jya_objTex_01B740" -#ifdef _WIN32 -static const __declspec(align(2)) char object_jya_objTex_01B740[] = dobject_jya_objTex_01B740; -#else -static const char object_jya_objTex_01B740[] __attribute__((aligned (2))) = dobject_jya_objTex_01B740; -#endif - -#define dobject_jya_objTex_00B4B8 "__OTR__objects/object_jya_obj/object_jya_objTex_00B4B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_jya_objTex_00B4B8[] = dobject_jya_objTex_00B4B8; -#else -static const char object_jya_objTex_00B4B8[] __attribute__((aligned (2))) = dobject_jya_objTex_00B4B8; -#endif - -#define dobject_jya_objTex_016140 "__OTR__objects/object_jya_obj/object_jya_objTex_016140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_jya_objTex_016140[] = dobject_jya_objTex_016140; -#else -static const char object_jya_objTex_016140[] __attribute__((aligned (2))) = dobject_jya_objTex_016140; -#endif - -#define dobject_jya_objTex_011A80 "__OTR__objects/object_jya_obj/object_jya_objTex_011A80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_jya_objTex_011A80[] = dobject_jya_objTex_011A80; -#else -static const char object_jya_objTex_011A80[] __attribute__((aligned (2))) = dobject_jya_objTex_011A80; -#endif - -#define dobject_jya_objTLUT_011A60 "__OTR__objects/object_jya_obj/object_jya_objTLUT_011A60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_jya_objTLUT_011A60[] = dobject_jya_objTLUT_011A60; -#else -static const char object_jya_objTLUT_011A60[] __attribute__((aligned (2))) = dobject_jya_objTLUT_011A60; -#endif - +#include "align_asset_macro.h" + +#define dg1fliftDL "__OTR__objects/object_jya_obj/g1fliftDL" +static const ALIGN_ASSET(2) char g1fliftDL[] = dg1fliftDL; + +#define dg1fliftCol "__OTR__objects/object_jya_obj/g1fliftCol" +static const ALIGN_ASSET(2) char g1fliftCol[] = dg1fliftCol; + +#define dg1f1fiftTopTex "__OTR__objects/object_jya_obj/g1f1fiftTopTex" +static const ALIGN_ASSET(2) char g1f1fiftTopTex[] = dg1f1fiftTopTex; + +#define dg1fLiftBottomTex "__OTR__objects/object_jya_obj/g1fLiftBottomTex" +static const ALIGN_ASSET(2) char g1fLiftBottomTex[] = dg1fLiftBottomTex; + +#define dgAmishutterDL "__OTR__objects/object_jya_obj/gAmishutterDL" +static const ALIGN_ASSET(2) char gAmishutterDL[] = dgAmishutterDL; + +#define dgAmishutterCol "__OTR__objects/object_jya_obj/gAmishutterCol" +static const ALIGN_ASSET(2) char gAmishutterCol[] = dgAmishutterCol; + +#define dgBigMirror1DL "__OTR__objects/object_jya_obj/gBigMirror1DL" +static const ALIGN_ASSET(2) char gBigMirror1DL[] = dgBigMirror1DL; + +#define dgBigMirror2DL "__OTR__objects/object_jya_obj/gBigMirror2DL" +static const ALIGN_ASSET(2) char gBigMirror2DL[] = dgBigMirror2DL; + +#define dgBigMirror3DL "__OTR__objects/object_jya_obj/gBigMirror3DL" +static const ALIGN_ASSET(2) char gBigMirror3DL[] = dgBigMirror3DL; + +#define dgBigMirror4DL "__OTR__objects/object_jya_obj/gBigMirror4DL" +static const ALIGN_ASSET(2) char gBigMirror4DL[] = dgBigMirror4DL; + +#define dgBigMirrorGradientTex "__OTR__objects/object_jya_obj/gBigMirrorGradientTex" +static const ALIGN_ASSET(2) char gBigMirrorGradientTex[] = dgBigMirrorGradientTex; + +#define dgBombchuiwaDL "__OTR__objects/object_jya_obj/gBombchuiwaDL" +static const ALIGN_ASSET(2) char gBombchuiwaDL[] = dgBombchuiwaDL; + +#define dgBombchuiwaLight1DL "__OTR__objects/object_jya_obj/gBombchuiwaLight1DL" +static const ALIGN_ASSET(2) char gBombchuiwaLight1DL[] = dgBombchuiwaLight1DL; + +#define dgBombchuiwaLight2DL "__OTR__objects/object_jya_obj/gBombchuiwaLight2DL" +static const ALIGN_ASSET(2) char gBombchuiwaLight2DL[] = dgBombchuiwaLight2DL; + +#define dgBombchuiwa2DL "__OTR__objects/object_jya_obj/gBombchuiwa2DL" +static const ALIGN_ASSET(2) char gBombchuiwa2DL[] = dgBombchuiwa2DL; + +#define dgBombiwaDL "__OTR__objects/object_jya_obj/gBombiwaDL" +static const ALIGN_ASSET(2) char gBombiwaDL[] = dgBombiwaDL; + +#define dgBombiwaEffectDL "__OTR__objects/object_jya_obj/gBombiwaEffectDL" +static const ALIGN_ASSET(2) char gBombiwaEffectDL[] = dgBombiwaEffectDL; + +#define dgBombiwaRockTex "__OTR__objects/object_jya_obj/gBombiwaRockTex" +static const ALIGN_ASSET(2) char gBombiwaRockTex[] = dgBombiwaRockTex; + +#define dgBombiwaLight1Tex "__OTR__objects/object_jya_obj/gBombiwaLight1Tex" +static const ALIGN_ASSET(2) char gBombiwaLight1Tex[] = dgBombiwaLight1Tex; + +#define dgBombiwaCol "__OTR__objects/object_jya_obj/gBombiwaCol" +static const ALIGN_ASSET(2) char gBombiwaCol[] = dgBombiwaCol; + +#define dgCobra1DL "__OTR__objects/object_jya_obj/gCobra1DL" +static const ALIGN_ASSET(2) char gCobra1DL[] = dgCobra1DL; + +#define dgCobra2DL "__OTR__objects/object_jya_obj/gCobra2DL" +static const ALIGN_ASSET(2) char gCobra2DL[] = dgCobra2DL; + +#define dgCobraCol "__OTR__objects/object_jya_obj/gCobraCol" +static const ALIGN_ASSET(2) char gCobraCol[] = dgCobraCol; + +#define dgCobra3DL "__OTR__objects/object_jya_obj/gCobra3DL" +static const ALIGN_ASSET(2) char gCobra3DL[] = dgCobra3DL; + +#define dgCobraMirrorStoneTex "__OTR__objects/object_jya_obj/gCobraMirrorStoneTex" +static const ALIGN_ASSET(2) char gCobraMirrorStoneTex[] = dgCobraMirrorStoneTex; + +#define dgCobraMirrorBorderTex "__OTR__objects/object_jya_obj/gCobraMirrorBorderTex" +static const ALIGN_ASSET(2) char gCobraMirrorBorderTex[] = dgCobraMirrorBorderTex; + +#define dgCobraMirrorEyeTex "__OTR__objects/object_jya_obj/gCobraMirrorEyeTex" +static const ALIGN_ASSET(2) char gCobraMirrorEyeTex[] = dgCobraMirrorEyeTex; + +#define dgCobraMirrorHandleTex "__OTR__objects/object_jya_obj/gCobraMirrorHandleTex" +static const ALIGN_ASSET(2) char gCobraMirrorHandleTex[] = dgCobraMirrorHandleTex; + +#define dgCobraMirrorMirrorTex "__OTR__objects/object_jya_obj/gCobraMirrorMirrorTex" +static const ALIGN_ASSET(2) char gCobraMirrorMirrorTex[] = dgCobraMirrorMirrorTex; + +#define dgCobraMirrorToothTex "__OTR__objects/object_jya_obj/gCobraMirrorToothTex" +static const ALIGN_ASSET(2) char gCobraMirrorToothTex[] = dgCobraMirrorToothTex; + +#define dgKanaamiDL "__OTR__objects/object_jya_obj/gKanaamiDL" +static const ALIGN_ASSET(2) char gKanaamiDL[] = dgKanaamiDL; + +#define dgKanaamiCol "__OTR__objects/object_jya_obj/gKanaamiCol" +static const ALIGN_ASSET(2) char gKanaamiCol[] = dgKanaamiCol; + +#define dgKanaamiTopTex "__OTR__objects/object_jya_obj/gKanaamiTopTex" +static const ALIGN_ASSET(2) char gKanaamiTopTex[] = dgKanaamiTopTex; + +#define dgKanaamiMiddleTex "__OTR__objects/object_jya_obj/gKanaamiMiddleTex" +static const ALIGN_ASSET(2) char gKanaamiMiddleTex[] = dgKanaamiMiddleTex; + +#define dgLiftDL "__OTR__objects/object_jya_obj/gLiftDL" +static const ALIGN_ASSET(2) char gLiftDL[] = dgLiftDL; + +#define dgLiftChainTex "__OTR__objects/object_jya_obj/gLiftChainTex" +static const ALIGN_ASSET(2) char gLiftChainTex[] = dgLiftChainTex; + +#define dgLiftTopTex "__OTR__objects/object_jya_obj/gLiftTopTex" +static const ALIGN_ASSET(2) char gLiftTopTex[] = dgLiftTopTex; + +#define dgLiftUpperChainTex "__OTR__objects/object_jya_obj/gLiftUpperChainTex" +static const ALIGN_ASSET(2) char gLiftUpperChainTex[] = dgLiftUpperChainTex; + +#define dgLiftCol "__OTR__objects/object_jya_obj/gLiftCol" +static const ALIGN_ASSET(2) char gLiftCol[] = dgLiftCol; + +#define dgMegami1DL "__OTR__objects/object_jya_obj/gMegami1DL" +static const ALIGN_ASSET(2) char gMegami1DL[] = dgMegami1DL; + +#define dGMegamiCol "__OTR__objects/object_jya_obj/GMegamiCol" +static const ALIGN_ASSET(2) char GMegamiCol[] = dGMegamiCol; + +#define dgMegami2DL "__OTR__objects/object_jya_obj/gMegami2DL" +static const ALIGN_ASSET(2) char gMegami2DL[] = dgMegami2DL; + +#define dgMegamiPiece1DL "__OTR__objects/object_jya_obj/gMegamiPiece1DL" +static const ALIGN_ASSET(2) char gMegamiPiece1DL[] = dgMegamiPiece1DL; + +#define dgMegamiPiece2DL "__OTR__objects/object_jya_obj/gMegamiPiece2DL" +static const ALIGN_ASSET(2) char gMegamiPiece2DL[] = dgMegamiPiece2DL; + +#define dgMegamiPiece3DL "__OTR__objects/object_jya_obj/gMegamiPiece3DL" +static const ALIGN_ASSET(2) char gMegamiPiece3DL[] = dgMegamiPiece3DL; + +#define dgMegamiPiece4DL "__OTR__objects/object_jya_obj/gMegamiPiece4DL" +static const ALIGN_ASSET(2) char gMegamiPiece4DL[] = dgMegamiPiece4DL; + +#define dgMegamiPiece5DL "__OTR__objects/object_jya_obj/gMegamiPiece5DL" +static const ALIGN_ASSET(2) char gMegamiPiece5DL[] = dgMegamiPiece5DL; + +#define dgMegamiPiece6DL "__OTR__objects/object_jya_obj/gMegamiPiece6DL" +static const ALIGN_ASSET(2) char gMegamiPiece6DL[] = dgMegamiPiece6DL; + +#define dgMegamiPiece7DL "__OTR__objects/object_jya_obj/gMegamiPiece7DL" +static const ALIGN_ASSET(2) char gMegamiPiece7DL[] = dgMegamiPiece7DL; + +#define dgMegamiPiece8DL "__OTR__objects/object_jya_obj/gMegamiPiece8DL" +static const ALIGN_ASSET(2) char gMegamiPiece8DL[] = dgMegamiPiece8DL; + +#define dgMegamiPiece9DL "__OTR__objects/object_jya_obj/gMegamiPiece9DL" +static const ALIGN_ASSET(2) char gMegamiPiece9DL[] = dgMegamiPiece9DL; + +#define dgMegamiPiece10DL "__OTR__objects/object_jya_obj/gMegamiPiece10DL" +static const ALIGN_ASSET(2) char gMegamiPiece10DL[] = dgMegamiPiece10DL; + +#define dgMegamiPiece11DL "__OTR__objects/object_jya_obj/gMegamiPiece11DL" +static const ALIGN_ASSET(2) char gMegamiPiece11DL[] = dgMegamiPiece11DL; + +#define dgMegamiPiece12DL "__OTR__objects/object_jya_obj/gMegamiPiece12DL" +static const ALIGN_ASSET(2) char gMegamiPiece12DL[] = dgMegamiPiece12DL; + +#define dgMegamiPiece13DL "__OTR__objects/object_jya_obj/gMegamiPiece13DL" +static const ALIGN_ASSET(2) char gMegamiPiece13DL[] = dgMegamiPiece13DL; + +#define dgMegami1TLUT "__OTR__objects/object_jya_obj/gMegami1TLUT" +static const ALIGN_ASSET(2) char gMegami1TLUT[] = dgMegami1TLUT; + +#define dgMegami1Tex "__OTR__objects/object_jya_obj/gMegami1Tex" +static const ALIGN_ASSET(2) char gMegami1Tex[] = dgMegami1Tex; + +#define dgMegami2TLUT "__OTR__objects/object_jya_obj/gMegami2TLUT" +static const ALIGN_ASSET(2) char gMegami2TLUT[] = dgMegami2TLUT; + +#define dgMegami2Tex "__OTR__objects/object_jya_obj/gMegami2Tex" +static const ALIGN_ASSET(2) char gMegami2Tex[] = dgMegami2Tex; + +#define dgMegami3TLUT "__OTR__objects/object_jya_obj/gMegami3TLUT" +static const ALIGN_ASSET(2) char gMegami3TLUT[] = dgMegami3TLUT; + +#define dgMegami3Tex "__OTR__objects/object_jya_obj/gMegami3Tex" +static const ALIGN_ASSET(2) char gMegami3Tex[] = dgMegami3Tex; + +#define dgMegami4TLUT "__OTR__objects/object_jya_obj/gMegami4TLUT" +static const ALIGN_ASSET(2) char gMegami4TLUT[] = dgMegami4TLUT; + +#define dgMegami5TLUT "__OTR__objects/object_jya_obj/gMegami5TLUT" +static const ALIGN_ASSET(2) char gMegami5TLUT[] = dgMegami5TLUT; + +#define dgMegamiCrumbleTLUT "__OTR__objects/object_jya_obj/gMegamiCrumbleTLUT" +static const ALIGN_ASSET(2) char gMegamiCrumbleTLUT[] = dgMegamiCrumbleTLUT; + +#define dgMegamiRightCrumble1Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble1Tex" +static const ALIGN_ASSET(2) char gMegamiRightCrumble1Tex[] = dgMegamiRightCrumble1Tex; + +#define dgMegamiRightCrumble2Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble2Tex" +static const ALIGN_ASSET(2) char gMegamiRightCrumble2Tex[] = dgMegamiRightCrumble2Tex; + +#define dgMegamiRightCrumble3Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble3Tex" +static const ALIGN_ASSET(2) char gMegamiRightCrumble3Tex[] = dgMegamiRightCrumble3Tex; + +#define dgMegamiRightCrumble4Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble4Tex" +static const ALIGN_ASSET(2) char gMegamiRightCrumble4Tex[] = dgMegamiRightCrumble4Tex; + +#define dgMegamiRightCrumble5Tex "__OTR__objects/object_jya_obj/gMegamiRightCrumble5Tex" +static const ALIGN_ASSET(2) char gMegamiRightCrumble5Tex[] = dgMegamiRightCrumble5Tex; + +#define dgMegamiLeftCrumble1Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble1Tex" +static const ALIGN_ASSET(2) char gMegamiLeftCrumble1Tex[] = dgMegamiLeftCrumble1Tex; + +#define dgMegamiLeftCrumble2Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble2Tex" +static const ALIGN_ASSET(2) char gMegamiLeftCrumble2Tex[] = dgMegamiLeftCrumble2Tex; + +#define dgMegamiLeftCrumble3Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble3Tex" +static const ALIGN_ASSET(2) char gMegamiLeftCrumble3Tex[] = dgMegamiLeftCrumble3Tex; + +#define dgMegamiLeftCrumble4Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble4Tex" +static const ALIGN_ASSET(2) char gMegamiLeftCrumble4Tex[] = dgMegamiLeftCrumble4Tex; + +#define dgMegamiLeftCrumble5Tex "__OTR__objects/object_jya_obj/gMegamiLeftCrumble5Tex" +static const ALIGN_ASSET(2) char gMegamiLeftCrumble5Tex[] = dgMegamiLeftCrumble5Tex; + +#define dgZurerukabeDL "__OTR__objects/object_jya_obj/gZurerukabeDL" +static const ALIGN_ASSET(2) char gZurerukabeDL[] = dgZurerukabeDL; + +#define dgZurerukabeCol "__OTR__objects/object_jya_obj/gZurerukabeCol" +static const ALIGN_ASSET(2) char gZurerukabeCol[] = dgZurerukabeCol; + +#define dobject_jya_objTex_017140 "__OTR__objects/object_jya_obj/object_jya_objTex_017140" +static const ALIGN_ASSET(2) char object_jya_objTex_017140[] = dobject_jya_objTex_017140; + +#define dobject_jya_objTex_01B340 "__OTR__objects/object_jya_obj/object_jya_objTex_01B340" +static const ALIGN_ASSET(2) char object_jya_objTex_01B340[] = dobject_jya_objTex_01B340; + +#define dobject_jya_objTex_01B740 "__OTR__objects/object_jya_obj/object_jya_objTex_01B740" +static const ALIGN_ASSET(2) char object_jya_objTex_01B740[] = dobject_jya_objTex_01B740; + +#define dobject_jya_objTex_00B4B8 "__OTR__objects/object_jya_obj/object_jya_objTex_00B4B8" +static const ALIGN_ASSET(2) char object_jya_objTex_00B4B8[] = dobject_jya_objTex_00B4B8; + +#define dobject_jya_objTex_016140 "__OTR__objects/object_jya_obj/object_jya_objTex_016140" +static const ALIGN_ASSET(2) char object_jya_objTex_016140[] = dobject_jya_objTex_016140; + +#define dobject_jya_objTex_011A80 "__OTR__objects/object_jya_obj/object_jya_objTex_011A80" +static const ALIGN_ASSET(2) char object_jya_objTex_011A80[] = dobject_jya_objTex_011A80; + +#define dobject_jya_objTLUT_011A60 "__OTR__objects/object_jya_obj/object_jya_objTLUT_011A60" +static const ALIGN_ASSET(2) char object_jya_objTLUT_011A60[] = dobject_jya_objTLUT_011A60; \ No newline at end of file diff --git a/soh/assets/objects/object_ka/object_ka.h b/soh/assets/objects/object_ka/object_ka.h index 4c899dd7a..1a1d85f98 100644 --- a/soh/assets/objects/object_ka/object_ka.h +++ b/soh/assets/objects/object_ka/object_ka.h @@ -1,233 +1,102 @@ #pragma once -#define dobject_ka_Anim_000214 "__OTR__objects/object_ka/object_ka_Anim_000214" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Anim_000214[] = dobject_ka_Anim_000214; -#else -static const char object_ka_Anim_000214[] __attribute__((aligned (2))) = dobject_ka_Anim_000214; -#endif - -#define dobject_ka_DL_001550 "__OTR__objects/object_ka/object_ka_DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_001550[] = dobject_ka_DL_001550; -#else -static const char object_ka_DL_001550[] __attribute__((aligned (2))) = dobject_ka_DL_001550; -#endif - -#define dobject_ka_DL_001600 "__OTR__objects/object_ka/object_ka_DL_001600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_001600[] = dobject_ka_DL_001600; -#else -static const char object_ka_DL_001600[] __attribute__((aligned (2))) = dobject_ka_DL_001600; -#endif - -#define dobject_ka_DL_0017D8 "__OTR__objects/object_ka/object_ka_DL_0017D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_0017D8[] = dobject_ka_DL_0017D8; -#else -static const char object_ka_DL_0017D8[] __attribute__((aligned (2))) = dobject_ka_DL_0017D8; -#endif - -#define dobject_ka_DL_001878 "__OTR__objects/object_ka/object_ka_DL_001878" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_001878[] = dobject_ka_DL_001878; -#else -static const char object_ka_DL_001878[] __attribute__((aligned (2))) = dobject_ka_DL_001878; -#endif - -#define dobject_ka_DL_001918 "__OTR__objects/object_ka/object_ka_DL_001918" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_001918[] = dobject_ka_DL_001918; -#else -static const char object_ka_DL_001918[] __attribute__((aligned (2))) = dobject_ka_DL_001918; -#endif - -#define dobject_ka_DL_0019B8 "__OTR__objects/object_ka/object_ka_DL_0019B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_0019B8[] = dobject_ka_DL_0019B8; -#else -static const char object_ka_DL_0019B8[] __attribute__((aligned (2))) = dobject_ka_DL_0019B8; -#endif - -#define dobject_ka_DL_001CD8 "__OTR__objects/object_ka/object_ka_DL_001CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_001CD8[] = dobject_ka_DL_001CD8; -#else -static const char object_ka_DL_001CD8[] __attribute__((aligned (2))) = dobject_ka_DL_001CD8; -#endif - -#define dobject_ka_DL_001F68 "__OTR__objects/object_ka/object_ka_DL_001F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_001F68[] = dobject_ka_DL_001F68; -#else -static const char object_ka_DL_001F68[] __attribute__((aligned (2))) = dobject_ka_DL_001F68; -#endif - -#define dobject_ka_DL_002020 "__OTR__objects/object_ka/object_ka_DL_002020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002020[] = dobject_ka_DL_002020; -#else -static const char object_ka_DL_002020[] __attribute__((aligned (2))) = dobject_ka_DL_002020; -#endif - -#define dobject_ka_DL_0020C0 "__OTR__objects/object_ka/object_ka_DL_0020C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_0020C0[] = dobject_ka_DL_0020C0; -#else -static const char object_ka_DL_0020C0[] __attribute__((aligned (2))) = dobject_ka_DL_0020C0; -#endif - -#define dobject_ka_DL_002160 "__OTR__objects/object_ka/object_ka_DL_002160" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002160[] = dobject_ka_DL_002160; -#else -static const char object_ka_DL_002160[] __attribute__((aligned (2))) = dobject_ka_DL_002160; -#endif - -#define dobject_ka_DL_002200 "__OTR__objects/object_ka/object_ka_DL_002200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002200[] = dobject_ka_DL_002200; -#else -static const char object_ka_DL_002200[] __attribute__((aligned (2))) = dobject_ka_DL_002200; -#endif - -#define dobject_ka_DL_0022A0 "__OTR__objects/object_ka/object_ka_DL_0022A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_0022A0[] = dobject_ka_DL_0022A0; -#else -static const char object_ka_DL_0022A0[] __attribute__((aligned (2))) = dobject_ka_DL_0022A0; -#endif - -#define dobject_ka_DL_002340 "__OTR__objects/object_ka/object_ka_DL_002340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002340[] = dobject_ka_DL_002340; -#else -static const char object_ka_DL_002340[] __attribute__((aligned (2))) = dobject_ka_DL_002340; -#endif - -#define dobject_ka_DL_002430 "__OTR__objects/object_ka/object_ka_DL_002430" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002430[] = dobject_ka_DL_002430; -#else -static const char object_ka_DL_002430[] __attribute__((aligned (2))) = dobject_ka_DL_002430; -#endif - -#define dobject_ka_DL_0024D0 "__OTR__objects/object_ka/object_ka_DL_0024D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_0024D0[] = dobject_ka_DL_0024D0; -#else -static const char object_ka_DL_0024D0[] __attribute__((aligned (2))) = dobject_ka_DL_0024D0; -#endif - -#define dobject_ka_DL_002570 "__OTR__objects/object_ka/object_ka_DL_002570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002570[] = dobject_ka_DL_002570; -#else -static const char object_ka_DL_002570[] __attribute__((aligned (2))) = dobject_ka_DL_002570; -#endif - -#define dobject_ka_DL_002610 "__OTR__objects/object_ka/object_ka_DL_002610" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002610[] = dobject_ka_DL_002610; -#else -static const char object_ka_DL_002610[] __attribute__((aligned (2))) = dobject_ka_DL_002610; -#endif - -#define dobject_ka_DL_0027A0 "__OTR__objects/object_ka/object_ka_DL_0027A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_0027A0[] = dobject_ka_DL_0027A0; -#else -static const char object_ka_DL_0027A0[] __attribute__((aligned (2))) = dobject_ka_DL_0027A0; -#endif - -#define dobject_ka_DL_002890 "__OTR__objects/object_ka/object_ka_DL_002890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002890[] = dobject_ka_DL_002890; -#else -static const char object_ka_DL_002890[] __attribute__((aligned (2))) = dobject_ka_DL_002890; -#endif - -#define dobject_ka_DL_002930 "__OTR__objects/object_ka/object_ka_DL_002930" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002930[] = dobject_ka_DL_002930; -#else -static const char object_ka_DL_002930[] __attribute__((aligned (2))) = dobject_ka_DL_002930; -#endif - -#define dobject_ka_DL_0029D0 "__OTR__objects/object_ka/object_ka_DL_0029D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_0029D0[] = dobject_ka_DL_0029D0; -#else -static const char object_ka_DL_0029D0[] __attribute__((aligned (2))) = dobject_ka_DL_0029D0; -#endif - -#define dobject_ka_DL_002A70 "__OTR__objects/object_ka/object_ka_DL_002A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_DL_002A70[] = dobject_ka_DL_002A70; -#else -static const char object_ka_DL_002A70[] __attribute__((aligned (2))) = dobject_ka_DL_002A70; -#endif - -#define dobject_ka_Tex_002C00 "__OTR__objects/object_ka/object_ka_Tex_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Tex_002C00[] = dobject_ka_Tex_002C00; -#else -static const char object_ka_Tex_002C00[] __attribute__((aligned (2))) = dobject_ka_Tex_002C00; -#endif - -#define dobject_ka_Tex_003400 "__OTR__objects/object_ka/object_ka_Tex_003400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Tex_003400[] = dobject_ka_Tex_003400; -#else -static const char object_ka_Tex_003400[] __attribute__((aligned (2))) = dobject_ka_Tex_003400; -#endif - -#define dobject_ka_Tex_003C00 "__OTR__objects/object_ka/object_ka_Tex_003C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Tex_003C00[] = dobject_ka_Tex_003C00; -#else -static const char object_ka_Tex_003C00[] __attribute__((aligned (2))) = dobject_ka_Tex_003C00; -#endif - -#define dobject_ka_Tex_004400 "__OTR__objects/object_ka/object_ka_Tex_004400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Tex_004400[] = dobject_ka_Tex_004400; -#else -static const char object_ka_Tex_004400[] __attribute__((aligned (2))) = dobject_ka_Tex_004400; -#endif - -#define dobject_ka_Tex_004C00 "__OTR__objects/object_ka/object_ka_Tex_004C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Tex_004C00[] = dobject_ka_Tex_004C00; -#else -static const char object_ka_Tex_004C00[] __attribute__((aligned (2))) = dobject_ka_Tex_004C00; -#endif - -#define dobject_ka_Tex_005400 "__OTR__objects/object_ka/object_ka_Tex_005400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Tex_005400[] = dobject_ka_Tex_005400; -#else -static const char object_ka_Tex_005400[] __attribute__((aligned (2))) = dobject_ka_Tex_005400; -#endif - -#define dobject_ka_Tex_005C00 "__OTR__objects/object_ka/object_ka_Tex_005C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Tex_005C00[] = dobject_ka_Tex_005C00; -#else -static const char object_ka_Tex_005C00[] __attribute__((aligned (2))) = dobject_ka_Tex_005C00; -#endif - -#define dobject_ka_Skel_0065B0 "__OTR__objects/object_ka/object_ka_Skel_0065B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Skel_0065B0[] = dobject_ka_Skel_0065B0; -#else -static const char object_ka_Skel_0065B0[] __attribute__((aligned (2))) = dobject_ka_Skel_0065B0; -#endif - -#define dobject_ka_Anim_0067AC "__OTR__objects/object_ka/object_ka_Anim_0067AC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ka_Anim_0067AC[] = dobject_ka_Anim_0067AC; -#else -static const char object_ka_Anim_0067AC[] __attribute__((aligned (2))) = dobject_ka_Anim_0067AC; -#endif - +#include "align_asset_macro.h" + +#define dobject_ka_Anim_000214 "__OTR__objects/object_ka/object_ka_Anim_000214" +static const ALIGN_ASSET(2) char object_ka_Anim_000214[] = dobject_ka_Anim_000214; + +#define dobject_ka_DL_001550 "__OTR__objects/object_ka/object_ka_DL_001550" +static const ALIGN_ASSET(2) char object_ka_DL_001550[] = dobject_ka_DL_001550; + +#define dobject_ka_DL_001600 "__OTR__objects/object_ka/object_ka_DL_001600" +static const ALIGN_ASSET(2) char object_ka_DL_001600[] = dobject_ka_DL_001600; + +#define dobject_ka_DL_0017D8 "__OTR__objects/object_ka/object_ka_DL_0017D8" +static const ALIGN_ASSET(2) char object_ka_DL_0017D8[] = dobject_ka_DL_0017D8; + +#define dobject_ka_DL_001878 "__OTR__objects/object_ka/object_ka_DL_001878" +static const ALIGN_ASSET(2) char object_ka_DL_001878[] = dobject_ka_DL_001878; + +#define dobject_ka_DL_001918 "__OTR__objects/object_ka/object_ka_DL_001918" +static const ALIGN_ASSET(2) char object_ka_DL_001918[] = dobject_ka_DL_001918; + +#define dobject_ka_DL_0019B8 "__OTR__objects/object_ka/object_ka_DL_0019B8" +static const ALIGN_ASSET(2) char object_ka_DL_0019B8[] = dobject_ka_DL_0019B8; + +#define dobject_ka_DL_001CD8 "__OTR__objects/object_ka/object_ka_DL_001CD8" +static const ALIGN_ASSET(2) char object_ka_DL_001CD8[] = dobject_ka_DL_001CD8; + +#define dobject_ka_DL_001F68 "__OTR__objects/object_ka/object_ka_DL_001F68" +static const ALIGN_ASSET(2) char object_ka_DL_001F68[] = dobject_ka_DL_001F68; + +#define dobject_ka_DL_002020 "__OTR__objects/object_ka/object_ka_DL_002020" +static const ALIGN_ASSET(2) char object_ka_DL_002020[] = dobject_ka_DL_002020; + +#define dobject_ka_DL_0020C0 "__OTR__objects/object_ka/object_ka_DL_0020C0" +static const ALIGN_ASSET(2) char object_ka_DL_0020C0[] = dobject_ka_DL_0020C0; + +#define dobject_ka_DL_002160 "__OTR__objects/object_ka/object_ka_DL_002160" +static const ALIGN_ASSET(2) char object_ka_DL_002160[] = dobject_ka_DL_002160; + +#define dobject_ka_DL_002200 "__OTR__objects/object_ka/object_ka_DL_002200" +static const ALIGN_ASSET(2) char object_ka_DL_002200[] = dobject_ka_DL_002200; + +#define dobject_ka_DL_0022A0 "__OTR__objects/object_ka/object_ka_DL_0022A0" +static const ALIGN_ASSET(2) char object_ka_DL_0022A0[] = dobject_ka_DL_0022A0; + +#define dobject_ka_DL_002340 "__OTR__objects/object_ka/object_ka_DL_002340" +static const ALIGN_ASSET(2) char object_ka_DL_002340[] = dobject_ka_DL_002340; + +#define dobject_ka_DL_002430 "__OTR__objects/object_ka/object_ka_DL_002430" +static const ALIGN_ASSET(2) char object_ka_DL_002430[] = dobject_ka_DL_002430; + +#define dobject_ka_DL_0024D0 "__OTR__objects/object_ka/object_ka_DL_0024D0" +static const ALIGN_ASSET(2) char object_ka_DL_0024D0[] = dobject_ka_DL_0024D0; + +#define dobject_ka_DL_002570 "__OTR__objects/object_ka/object_ka_DL_002570" +static const ALIGN_ASSET(2) char object_ka_DL_002570[] = dobject_ka_DL_002570; + +#define dobject_ka_DL_002610 "__OTR__objects/object_ka/object_ka_DL_002610" +static const ALIGN_ASSET(2) char object_ka_DL_002610[] = dobject_ka_DL_002610; + +#define dobject_ka_DL_0027A0 "__OTR__objects/object_ka/object_ka_DL_0027A0" +static const ALIGN_ASSET(2) char object_ka_DL_0027A0[] = dobject_ka_DL_0027A0; + +#define dobject_ka_DL_002890 "__OTR__objects/object_ka/object_ka_DL_002890" +static const ALIGN_ASSET(2) char object_ka_DL_002890[] = dobject_ka_DL_002890; + +#define dobject_ka_DL_002930 "__OTR__objects/object_ka/object_ka_DL_002930" +static const ALIGN_ASSET(2) char object_ka_DL_002930[] = dobject_ka_DL_002930; + +#define dobject_ka_DL_0029D0 "__OTR__objects/object_ka/object_ka_DL_0029D0" +static const ALIGN_ASSET(2) char object_ka_DL_0029D0[] = dobject_ka_DL_0029D0; + +#define dobject_ka_DL_002A70 "__OTR__objects/object_ka/object_ka_DL_002A70" +static const ALIGN_ASSET(2) char object_ka_DL_002A70[] = dobject_ka_DL_002A70; + +#define dobject_ka_Tex_002C00 "__OTR__objects/object_ka/object_ka_Tex_002C00" +static const ALIGN_ASSET(2) char object_ka_Tex_002C00[] = dobject_ka_Tex_002C00; + +#define dobject_ka_Tex_003400 "__OTR__objects/object_ka/object_ka_Tex_003400" +static const ALIGN_ASSET(2) char object_ka_Tex_003400[] = dobject_ka_Tex_003400; + +#define dobject_ka_Tex_003C00 "__OTR__objects/object_ka/object_ka_Tex_003C00" +static const ALIGN_ASSET(2) char object_ka_Tex_003C00[] = dobject_ka_Tex_003C00; + +#define dobject_ka_Tex_004400 "__OTR__objects/object_ka/object_ka_Tex_004400" +static const ALIGN_ASSET(2) char object_ka_Tex_004400[] = dobject_ka_Tex_004400; + +#define dobject_ka_Tex_004C00 "__OTR__objects/object_ka/object_ka_Tex_004C00" +static const ALIGN_ASSET(2) char object_ka_Tex_004C00[] = dobject_ka_Tex_004C00; + +#define dobject_ka_Tex_005400 "__OTR__objects/object_ka/object_ka_Tex_005400" +static const ALIGN_ASSET(2) char object_ka_Tex_005400[] = dobject_ka_Tex_005400; + +#define dobject_ka_Tex_005C00 "__OTR__objects/object_ka/object_ka_Tex_005C00" +static const ALIGN_ASSET(2) char object_ka_Tex_005C00[] = dobject_ka_Tex_005C00; + +#define dobject_ka_Skel_0065B0 "__OTR__objects/object_ka/object_ka_Skel_0065B0" +static const ALIGN_ASSET(2) char object_ka_Skel_0065B0[] = dobject_ka_Skel_0065B0; + +#define dobject_ka_Anim_0067AC "__OTR__objects/object_ka/object_ka_Anim_0067AC" +static const ALIGN_ASSET(2) char object_ka_Anim_0067AC[] = dobject_ka_Anim_0067AC; \ No newline at end of file diff --git a/soh/assets/objects/object_kanban/object_kanban.h b/soh/assets/objects/object_kanban/object_kanban.h index 7b6ba2191..490ab5b08 100644 --- a/soh/assets/objects/object_kanban/object_kanban.h +++ b/soh/assets/objects/object_kanban/object_kanban.h @@ -1,100 +1,45 @@ #pragma once -#define dobject_kanban_DL_000C30 "__OTR__objects/object_kanban/object_kanban_DL_000C30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_000C30[] = dobject_kanban_DL_000C30; -#else -static const char object_kanban_DL_000C30[] __attribute__((aligned (2))) = dobject_kanban_DL_000C30; -#endif - -#define dobject_kanban_DL_000CB0 "__OTR__objects/object_kanban/object_kanban_DL_000CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_000CB0[] = dobject_kanban_DL_000CB0; -#else -static const char object_kanban_DL_000CB0[] __attribute__((aligned (2))) = dobject_kanban_DL_000CB0; -#endif - -#define dobject_kanban_DL_000DB8 "__OTR__objects/object_kanban/object_kanban_DL_000DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_000DB8[] = dobject_kanban_DL_000DB8; -#else -static const char object_kanban_DL_000DB8[] __attribute__((aligned (2))) = dobject_kanban_DL_000DB8; -#endif - -#define dobject_kanban_DL_000E78 "__OTR__objects/object_kanban/object_kanban_DL_000E78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_000E78[] = dobject_kanban_DL_000E78; -#else -static const char object_kanban_DL_000E78[] __attribute__((aligned (2))) = dobject_kanban_DL_000E78; -#endif - -#define dobject_kanban_DL_000F38 "__OTR__objects/object_kanban/object_kanban_DL_000F38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_000F38[] = dobject_kanban_DL_000F38; -#else -static const char object_kanban_DL_000F38[] __attribute__((aligned (2))) = dobject_kanban_DL_000F38; -#endif - -#define dobject_kanban_DL_000FF8 "__OTR__objects/object_kanban/object_kanban_DL_000FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_000FF8[] = dobject_kanban_DL_000FF8; -#else -static const char object_kanban_DL_000FF8[] __attribute__((aligned (2))) = dobject_kanban_DL_000FF8; -#endif - -#define dobject_kanban_DL_0010B8 "__OTR__objects/object_kanban/object_kanban_DL_0010B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_0010B8[] = dobject_kanban_DL_0010B8; -#else -static const char object_kanban_DL_0010B8[] __attribute__((aligned (2))) = dobject_kanban_DL_0010B8; -#endif - -#define dobject_kanban_DL_0011C0 "__OTR__objects/object_kanban/object_kanban_DL_0011C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_0011C0[] = dobject_kanban_DL_0011C0; -#else -static const char object_kanban_DL_0011C0[] __attribute__((aligned (2))) = dobject_kanban_DL_0011C0; -#endif - -#define dobject_kanban_DL_0012C8 "__OTR__objects/object_kanban/object_kanban_DL_0012C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_0012C8[] = dobject_kanban_DL_0012C8; -#else -static const char object_kanban_DL_0012C8[] __attribute__((aligned (2))) = dobject_kanban_DL_0012C8; -#endif - -#define dobject_kanban_DL_0013D0 "__OTR__objects/object_kanban/object_kanban_DL_0013D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_0013D0[] = dobject_kanban_DL_0013D0; -#else -static const char object_kanban_DL_0013D0[] __attribute__((aligned (2))) = dobject_kanban_DL_0013D0; -#endif - -#define dobject_kanban_DL_001488 "__OTR__objects/object_kanban/object_kanban_DL_001488" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_001488[] = dobject_kanban_DL_001488; -#else -static const char object_kanban_DL_001488[] __attribute__((aligned (2))) = dobject_kanban_DL_001488; -#endif - -#define dobject_kanban_DL_001540 "__OTR__objects/object_kanban/object_kanban_DL_001540" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_001540[] = dobject_kanban_DL_001540; -#else -static const char object_kanban_DL_001540[] __attribute__((aligned (2))) = dobject_kanban_DL_001540; -#endif - -#define dobject_kanban_DL_001630 "__OTR__objects/object_kanban/object_kanban_DL_001630" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_DL_001630[] = dobject_kanban_DL_001630; -#else -static const char object_kanban_DL_001630[] __attribute__((aligned (2))) = dobject_kanban_DL_001630; -#endif - -#define dobject_kanban_Tex_0016B0 "__OTR__objects/object_kanban/object_kanban_Tex_0016B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kanban_Tex_0016B0[] = dobject_kanban_Tex_0016B0; -#else -static const char object_kanban_Tex_0016B0[] __attribute__((aligned (2))) = dobject_kanban_Tex_0016B0; -#endif - +#include "align_asset_macro.h" + +#define dobject_kanban_DL_000C30 "__OTR__objects/object_kanban/object_kanban_DL_000C30" +static const ALIGN_ASSET(2) char object_kanban_DL_000C30[] = dobject_kanban_DL_000C30; + +#define dobject_kanban_DL_000CB0 "__OTR__objects/object_kanban/object_kanban_DL_000CB0" +static const ALIGN_ASSET(2) char object_kanban_DL_000CB0[] = dobject_kanban_DL_000CB0; + +#define dobject_kanban_DL_000DB8 "__OTR__objects/object_kanban/object_kanban_DL_000DB8" +static const ALIGN_ASSET(2) char object_kanban_DL_000DB8[] = dobject_kanban_DL_000DB8; + +#define dobject_kanban_DL_000E78 "__OTR__objects/object_kanban/object_kanban_DL_000E78" +static const ALIGN_ASSET(2) char object_kanban_DL_000E78[] = dobject_kanban_DL_000E78; + +#define dobject_kanban_DL_000F38 "__OTR__objects/object_kanban/object_kanban_DL_000F38" +static const ALIGN_ASSET(2) char object_kanban_DL_000F38[] = dobject_kanban_DL_000F38; + +#define dobject_kanban_DL_000FF8 "__OTR__objects/object_kanban/object_kanban_DL_000FF8" +static const ALIGN_ASSET(2) char object_kanban_DL_000FF8[] = dobject_kanban_DL_000FF8; + +#define dobject_kanban_DL_0010B8 "__OTR__objects/object_kanban/object_kanban_DL_0010B8" +static const ALIGN_ASSET(2) char object_kanban_DL_0010B8[] = dobject_kanban_DL_0010B8; + +#define dobject_kanban_DL_0011C0 "__OTR__objects/object_kanban/object_kanban_DL_0011C0" +static const ALIGN_ASSET(2) char object_kanban_DL_0011C0[] = dobject_kanban_DL_0011C0; + +#define dobject_kanban_DL_0012C8 "__OTR__objects/object_kanban/object_kanban_DL_0012C8" +static const ALIGN_ASSET(2) char object_kanban_DL_0012C8[] = dobject_kanban_DL_0012C8; + +#define dobject_kanban_DL_0013D0 "__OTR__objects/object_kanban/object_kanban_DL_0013D0" +static const ALIGN_ASSET(2) char object_kanban_DL_0013D0[] = dobject_kanban_DL_0013D0; + +#define dobject_kanban_DL_001488 "__OTR__objects/object_kanban/object_kanban_DL_001488" +static const ALIGN_ASSET(2) char object_kanban_DL_001488[] = dobject_kanban_DL_001488; + +#define dobject_kanban_DL_001540 "__OTR__objects/object_kanban/object_kanban_DL_001540" +static const ALIGN_ASSET(2) char object_kanban_DL_001540[] = dobject_kanban_DL_001540; + +#define dobject_kanban_DL_001630 "__OTR__objects/object_kanban/object_kanban_DL_001630" +static const ALIGN_ASSET(2) char object_kanban_DL_001630[] = dobject_kanban_DL_001630; + +#define dobject_kanban_Tex_0016B0 "__OTR__objects/object_kanban/object_kanban_Tex_0016B0" +static const ALIGN_ASSET(2) char object_kanban_Tex_0016B0[] = dobject_kanban_Tex_0016B0; \ No newline at end of file diff --git a/soh/assets/objects/object_kibako2/object_kibako2.h b/soh/assets/objects/object_kibako2/object_kibako2.h index 6e38ac948..a9574a423 100644 --- a/soh/assets/objects/object_kibako2/object_kibako2.h +++ b/soh/assets/objects/object_kibako2/object_kibako2.h @@ -1,58 +1,27 @@ #pragma once -#define dgLargeCrateDL "__OTR__objects/object_kibako2/gLargeCrateDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargeCrateDL[] = dgLargeCrateDL; -#else -static const char gLargeCrateDL[] __attribute__((aligned (2))) = dgLargeCrateDL; -#endif - -#define dgLargeCrateFragmentDL "__OTR__objects/object_kibako2/gLargeCrateFragmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargeCrateFragmentDL[] = dgLargeCrateFragmentDL; -#else -static const char gLargeCrateFragmentDL[] __attribute__((aligned (2))) = dgLargeCrateFragmentDL; -#endif - -#define dgLargeCrate1TLUT "__OTR__objects/object_kibako2/gLargeCrate1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargeCrate1TLUT[] = dgLargeCrate1TLUT; -#else -static const char gLargeCrate1TLUT[] __attribute__((aligned (2))) = dgLargeCrate1TLUT; -#endif - -#define dgLargeCrate2TLUT "__OTR__objects/object_kibako2/gLargeCrate2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargeCrate2TLUT[] = dgLargeCrate2TLUT; -#else -static const char gLargeCrate2TLUT[] __attribute__((aligned (2))) = dgLargeCrate2TLUT; -#endif - -#define dgLargeCrateTex "__OTR__objects/object_kibako2/gLargeCrateTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargeCrateTex[] = dgLargeCrateTex; -#else -static const char gLargeCrateTex[] __attribute__((aligned (2))) = dgLargeCrateTex; -#endif - -#define dgLargeCrateFragment1Tex "__OTR__objects/object_kibako2/gLargeCrateFragment1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargeCrateFragment1Tex[] = dgLargeCrateFragment1Tex; -#else -static const char gLargeCrateFragment1Tex[] __attribute__((aligned (2))) = dgLargeCrateFragment1Tex; -#endif - -#define dgLargeCrateFragment2Tex "__OTR__objects/object_kibako2/gLargeCrateFragment2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargeCrateFragment2Tex[] = dgLargeCrateFragment2Tex; -#else -static const char gLargeCrateFragment2Tex[] __attribute__((aligned (2))) = dgLargeCrateFragment2Tex; -#endif - -#define dgLargeCrateCol "__OTR__objects/object_kibako2/gLargeCrateCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gLargeCrateCol[] = dgLargeCrateCol; -#else -static const char gLargeCrateCol[] __attribute__((aligned (2))) = dgLargeCrateCol; -#endif - +#include "align_asset_macro.h" + +#define dgLargeCrateDL "__OTR__objects/object_kibako2/gLargeCrateDL" +static const ALIGN_ASSET(2) char gLargeCrateDL[] = dgLargeCrateDL; + +#define dgLargeCrateFragmentDL "__OTR__objects/object_kibako2/gLargeCrateFragmentDL" +static const ALIGN_ASSET(2) char gLargeCrateFragmentDL[] = dgLargeCrateFragmentDL; + +#define dgLargeCrate1TLUT "__OTR__objects/object_kibako2/gLargeCrate1TLUT" +static const ALIGN_ASSET(2) char gLargeCrate1TLUT[] = dgLargeCrate1TLUT; + +#define dgLargeCrate2TLUT "__OTR__objects/object_kibako2/gLargeCrate2TLUT" +static const ALIGN_ASSET(2) char gLargeCrate2TLUT[] = dgLargeCrate2TLUT; + +#define dgLargeCrateTex "__OTR__objects/object_kibako2/gLargeCrateTex" +static const ALIGN_ASSET(2) char gLargeCrateTex[] = dgLargeCrateTex; + +#define dgLargeCrateFragment1Tex "__OTR__objects/object_kibako2/gLargeCrateFragment1Tex" +static const ALIGN_ASSET(2) char gLargeCrateFragment1Tex[] = dgLargeCrateFragment1Tex; + +#define dgLargeCrateFragment2Tex "__OTR__objects/object_kibako2/gLargeCrateFragment2Tex" +static const ALIGN_ASSET(2) char gLargeCrateFragment2Tex[] = dgLargeCrateFragment2Tex; + +#define dgLargeCrateCol "__OTR__objects/object_kibako2/gLargeCrateCol" +static const ALIGN_ASSET(2) char gLargeCrateCol[] = dgLargeCrateCol; \ No newline at end of file diff --git a/soh/assets/objects/object_kingdodongo/object_kingdodongo.h b/soh/assets/objects/object_kingdodongo/object_kingdodongo.h index 4a649175a..fb9ecb135 100644 --- a/soh/assets/objects/object_kingdodongo/object_kingdodongo.h +++ b/soh/assets/objects/object_kingdodongo/object_kingdodongo.h @@ -1,548 +1,237 @@ #pragma once -#define dobject_kingdodongo_Anim_000690 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_000690" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_000690[] = dobject_kingdodongo_Anim_000690; -#else -static const char object_kingdodongo_Anim_000690[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_000690; -#endif - -#define dobject_kingdodongo_Anim_001074 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_001074" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_001074[] = dobject_kingdodongo_Anim_001074; -#else -static const char object_kingdodongo_Anim_001074[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_001074; -#endif - -#define dobject_kingdodongo_Anim_002D0C "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_002D0C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_002D0C[] = dobject_kingdodongo_Anim_002D0C; -#else -static const char object_kingdodongo_Anim_002D0C[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_002D0C; -#endif - -#define dobject_kingdodongo_Anim_003CF8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_003CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_003CF8[] = dobject_kingdodongo_Anim_003CF8; -#else -static const char object_kingdodongo_Anim_003CF8[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_003CF8; -#endif - -#define dobject_kingdodongo_Anim_0042A8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_0042A8[] = dobject_kingdodongo_Anim_0042A8; -#else -static const char object_kingdodongo_Anim_0042A8[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_0042A8; -#endif - -#define dobject_kingdodongo_Anim_004E0C "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_004E0C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_004E0C[] = dobject_kingdodongo_Anim_004E0C; -#else -static const char object_kingdodongo_Anim_004E0C[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_004E0C; -#endif - -#define dobject_kingdodongo_Anim_0061D4 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_0061D4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_0061D4[] = dobject_kingdodongo_Anim_0061D4; -#else -static const char object_kingdodongo_Anim_0061D4[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_0061D4; -#endif - -#define dobject_kingdodongo_Anim_006924 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_006924" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_006924[] = dobject_kingdodongo_Anim_006924; -#else -static const char object_kingdodongo_Anim_006924[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_006924; -#endif - -#define dobject_kingdodongo_Anim_008EEC "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_008EEC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_008EEC[] = dobject_kingdodongo_Anim_008EEC; -#else -static const char object_kingdodongo_Anim_008EEC[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_008EEC; -#endif - -#define dobject_kingdodongo_Anim_009D10 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_009D10[] = dobject_kingdodongo_Anim_009D10; -#else -static const char object_kingdodongo_Anim_009D10[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_009D10; -#endif - -#define dobject_kingdodongo_DL_009D50 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_009D50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_009D50[] = dobject_kingdodongo_DL_009D50; -#else -static const char object_kingdodongo_DL_009D50[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_009D50; -#endif - -#define dobject_kingdodongo_DL_009DD0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_009DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_009DD0[] = dobject_kingdodongo_DL_009DD0; -#else -static const char object_kingdodongo_DL_009DD0[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_009DD0; -#endif - -#define dobject_kingdodongo_Tex_009DE8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_009DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_009DE8[] = dobject_kingdodongo_Tex_009DE8; -#else -static const char object_kingdodongo_Tex_009DE8[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_009DE8; -#endif - -#define dobject_kingdodongo_Anim_00AA9C "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_00AA9C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_00AA9C[] = dobject_kingdodongo_Anim_00AA9C; -#else -static const char object_kingdodongo_Anim_00AA9C[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_00AA9C; -#endif - -#define dobject_kingdodongo_Anim_00DF38 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_00DF38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_00DF38[] = dobject_kingdodongo_Anim_00DF38; -#else -static const char object_kingdodongo_Anim_00DF38[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_00DF38; -#endif - -#define dobject_kingdodongo_Anim_00E848 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_00E848" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_00E848[] = dobject_kingdodongo_Anim_00E848; -#else -static const char object_kingdodongo_Anim_00E848[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_00E848; -#endif - -#define dobject_kingdodongo_Anim_00F0D8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_00F0D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_00F0D8[] = dobject_kingdodongo_Anim_00F0D8; -#else -static const char object_kingdodongo_Anim_00F0D8[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_00F0D8; -#endif - -#define dobject_kingdodongo_DL_00F310 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_00F310" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_00F310[] = dobject_kingdodongo_DL_00F310; -#else -static const char object_kingdodongo_DL_00F310[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_00F310; -#endif - -#define dobject_kingdodongo_DL_00F6C0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_00F6C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_00F6C0[] = dobject_kingdodongo_DL_00F6C0; -#else -static const char object_kingdodongo_DL_00F6C0[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_00F6C0; -#endif - -#define dobject_kingdodongo_DL_00FAC0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_00FAC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_00FAC0[] = dobject_kingdodongo_DL_00FAC0; -#else -static const char object_kingdodongo_DL_00FAC0[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_00FAC0; -#endif - -#define dobject_kingdodongo_DL_00FF68 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_00FF68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_00FF68[] = dobject_kingdodongo_DL_00FF68; -#else -static const char object_kingdodongo_DL_00FF68[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_00FF68; -#endif - -#define dobject_kingdodongo_DL_010390 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_010390" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_010390[] = dobject_kingdodongo_DL_010390; -#else -static const char object_kingdodongo_DL_010390[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_010390; -#endif - -#define dobject_kingdodongo_DL_010878 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_010878" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_010878[] = dobject_kingdodongo_DL_010878; -#else -static const char object_kingdodongo_DL_010878[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_010878; -#endif - -#define dobject_kingdodongo_DL_010BE0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_010BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_010BE0[] = dobject_kingdodongo_DL_010BE0; -#else -static const char object_kingdodongo_DL_010BE0[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_010BE0; -#endif - -#define dobject_kingdodongo_DL_010F90 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_010F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_010F90[] = dobject_kingdodongo_DL_010F90; -#else -static const char object_kingdodongo_DL_010F90[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_010F90; -#endif - -#define dobject_kingdodongo_DL_011390 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_011390" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_011390[] = dobject_kingdodongo_DL_011390; -#else -static const char object_kingdodongo_DL_011390[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_011390; -#endif - -#define dobject_kingdodongo_DL_011838 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_011838" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_011838[] = dobject_kingdodongo_DL_011838; -#else -static const char object_kingdodongo_DL_011838[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_011838; -#endif - -#define dobject_kingdodongo_DL_011C60 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_011C60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_011C60[] = dobject_kingdodongo_DL_011C60; -#else -static const char object_kingdodongo_DL_011C60[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_011C60; -#endif - -#define dobject_kingdodongo_DL_012148 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_012148" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_012148[] = dobject_kingdodongo_DL_012148; -#else -static const char object_kingdodongo_DL_012148[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_012148; -#endif - -#define dobject_kingdodongo_DL_0127D0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_0127D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_0127D0[] = dobject_kingdodongo_DL_0127D0; -#else -static const char object_kingdodongo_DL_0127D0[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_0127D0; -#endif - -#define dobject_kingdodongo_DL_012F28 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_012F28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_012F28[] = dobject_kingdodongo_DL_012F28; -#else -static const char object_kingdodongo_DL_012F28[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_012F28; -#endif - -#define dobject_kingdodongo_DL_0137B0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_0137B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_0137B0[] = dobject_kingdodongo_DL_0137B0; -#else -static const char object_kingdodongo_DL_0137B0[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_0137B0; -#endif - -#define dobject_kingdodongo_DL_013C20 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_013C20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_013C20[] = dobject_kingdodongo_DL_013C20; -#else -static const char object_kingdodongo_DL_013C20[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_013C20; -#endif - -#define dobject_kingdodongo_DL_013EF8 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_013EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_013EF8[] = dobject_kingdodongo_DL_013EF8; -#else -static const char object_kingdodongo_DL_013EF8[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_013EF8; -#endif - -#define dobject_kingdodongo_DL_014100 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_014100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_014100[] = dobject_kingdodongo_DL_014100; -#else -static const char object_kingdodongo_DL_014100[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_014100; -#endif - -#define dobject_kingdodongo_DL_014A30 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_014A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_014A30[] = dobject_kingdodongo_DL_014A30; -#else -static const char object_kingdodongo_DL_014A30[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_014A30; -#endif - -#define dobject_kingdodongo_DL_015630 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_015630" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_015630[] = dobject_kingdodongo_DL_015630; -#else -static const char object_kingdodongo_DL_015630[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_015630; -#endif - -#define dobject_kingdodongo_Tex_015890 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_015890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_015890[] = dobject_kingdodongo_Tex_015890; -#else -static const char object_kingdodongo_Tex_015890[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_015890; -#endif - -#define dobject_kingdodongo_Tex_015990 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_015990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_015990[] = dobject_kingdodongo_Tex_015990; -#else -static const char object_kingdodongo_Tex_015990[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_015990; -#endif - -#define dobject_kingdodongo_Tex_015D90 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_015D90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_015D90[] = dobject_kingdodongo_Tex_015D90; -#else -static const char object_kingdodongo_Tex_015D90[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_015D90; -#endif - -#define dobject_kingdodongo_Tex_015F90 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_015F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_015F90[] = dobject_kingdodongo_Tex_015F90; -#else -static const char object_kingdodongo_Tex_015F90[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_015F90; -#endif - -#define dobject_kingdodongo_Tex_016390 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016390" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_016390[] = dobject_kingdodongo_Tex_016390; -#else -static const char object_kingdodongo_Tex_016390[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_016390; -#endif - -#define dobject_kingdodongo_Tex_016590 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016590" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_016590[] = dobject_kingdodongo_Tex_016590; -#else -static const char object_kingdodongo_Tex_016590[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_016590; -#endif - -#define dobject_kingdodongo_Tex_016790 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_016790[] = dobject_kingdodongo_Tex_016790; -#else -static const char object_kingdodongo_Tex_016790[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_016790; -#endif - -#define dobject_kingdodongo_Tex_016990 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_016990[] = dobject_kingdodongo_Tex_016990; -#else -static const char object_kingdodongo_Tex_016990[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_016990; -#endif - -#define dobject_kingdodongo_Tex_016D90 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016D90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_016D90[] = dobject_kingdodongo_Tex_016D90; -#else -static const char object_kingdodongo_Tex_016D90[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_016D90; -#endif - -#define dobject_kingdodongo_Tex_016E10 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016E10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_016E10[] = dobject_kingdodongo_Tex_016E10; -#else -static const char object_kingdodongo_Tex_016E10[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_016E10; -#endif - -#define dobject_kingdodongo_Tex_017210 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_017210" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_017210[] = dobject_kingdodongo_Tex_017210; -#else -static const char object_kingdodongo_Tex_017210[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_017210; -#endif - -#define dgKingDodongoTitleCardTex "__OTR__objects/object_kingdodongo/gKingDodongoTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKingDodongoTitleCardTex[] = dgKingDodongoTitleCardTex; -#else -static const char gKingDodongoTitleCardTex[] __attribute__((aligned (2))) = dgKingDodongoTitleCardTex; -#endif - -#define dobject_kingdodongo_Skel_01B310 "__OTR__objects/object_kingdodongo/object_kingdodongo_Skel_01B310" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Skel_01B310[] = dobject_kingdodongo_Skel_01B310; -#else -static const char object_kingdodongo_Skel_01B310[] __attribute__((aligned (2))) = dobject_kingdodongo_Skel_01B310; -#endif - -#define dobject_kingdodongo_Anim_01CAE0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_01CAE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_01CAE0[] = dobject_kingdodongo_Anim_01CAE0; -#else -static const char object_kingdodongo_Anim_01CAE0[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_01CAE0; -#endif - -#define dobject_kingdodongo_Anim_01D218 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_01D218" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_01D218[] = dobject_kingdodongo_Anim_01D218; -#else -static const char object_kingdodongo_Anim_01D218[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_01D218; -#endif - -#define dobject_kingdodongo_Anim_01D934 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_01D934" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Anim_01D934[] = dobject_kingdodongo_Anim_01D934; -#else -static const char object_kingdodongo_Anim_01D934[] __attribute__((aligned (2))) = dobject_kingdodongo_Anim_01D934; -#endif - -#define dobject_kingdodongo_DL_01D950 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_01D950" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_01D950[] = dobject_kingdodongo_DL_01D950; -#else -static const char object_kingdodongo_DL_01D950[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_01D950; -#endif - -#define dobject_kingdodongo_DL_0259F0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_0259F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_0259F0[] = dobject_kingdodongo_DL_0259F0; -#else -static const char object_kingdodongo_DL_0259F0[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_0259F0; -#endif - -#define dobject_kingdodongo_DL_025A90 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_025A90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_025A90[] = dobject_kingdodongo_DL_025A90; -#else -static const char object_kingdodongo_DL_025A90[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_025A90; -#endif - -#define dobject_kingdodongo_Col_025B64 "__OTR__objects/object_kingdodongo/object_kingdodongo_Col_025B64" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Col_025B64[] = dobject_kingdodongo_Col_025B64; -#else -static const char object_kingdodongo_Col_025B64[] __attribute__((aligned (2))) = dobject_kingdodongo_Col_025B64; -#endif - -#define dobject_kingdodongo_DL_025BD0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_025BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_DL_025BD0[] = dobject_kingdodongo_DL_025BD0; -#else -static const char object_kingdodongo_DL_025BD0[] __attribute__((aligned (2))) = dobject_kingdodongo_DL_025BD0; -#endif - -#define dobject_kingdodongo_Tex_025C58 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_025C58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_025C58[] = dobject_kingdodongo_Tex_025C58; -#else -static const char object_kingdodongo_Tex_025C58[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_025C58; -#endif - -#define dobject_kingdodongo_Col_0264A8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Col_0264A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Col_0264A8[] = dobject_kingdodongo_Col_0264A8; -#else -static const char object_kingdodongo_Col_0264A8[] __attribute__((aligned (2))) = dobject_kingdodongo_Col_0264A8; -#endif - -#define dobject_kingdodongo_Tex_0264E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0264E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_0264E0[] = dobject_kingdodongo_Tex_0264E0; -#else -static const char object_kingdodongo_Tex_0264E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_0264E0; -#endif - -#define dobject_kingdodongo_Tex_0274E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0274E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_0274E0[] = dobject_kingdodongo_Tex_0274E0; -#else -static const char object_kingdodongo_Tex_0274E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_0274E0; -#endif - -#define dobject_kingdodongo_Tex_0284E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0284E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_0284E0[] = dobject_kingdodongo_Tex_0284E0; -#else -static const char object_kingdodongo_Tex_0284E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_0284E0; -#endif - -#define dobject_kingdodongo_Tex_0294E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0294E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_0294E0[] = dobject_kingdodongo_Tex_0294E0; -#else -static const char object_kingdodongo_Tex_0294E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_0294E0; -#endif - -#define dobject_kingdodongo_Tex_02A4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02A4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02A4E0[] = dobject_kingdodongo_Tex_02A4E0; -#else -static const char object_kingdodongo_Tex_02A4E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02A4E0; -#endif - -#define dobject_kingdodongo_Tex_02B4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02B4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02B4E0[] = dobject_kingdodongo_Tex_02B4E0; -#else -static const char object_kingdodongo_Tex_02B4E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02B4E0; -#endif - -#define dobject_kingdodongo_Tex_02C4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02C4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02C4E0[] = dobject_kingdodongo_Tex_02C4E0; -#else -static const char object_kingdodongo_Tex_02C4E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02C4E0; -#endif - -#define dobject_kingdodongo_Tex_02D4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02D4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02D4E0[] = dobject_kingdodongo_Tex_02D4E0; -#else -static const char object_kingdodongo_Tex_02D4E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02D4E0; -#endif - -#define dobject_kingdodongo_Tex_02E4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02E4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02E4E0[] = dobject_kingdodongo_Tex_02E4E0; -#else -static const char object_kingdodongo_Tex_02E4E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02E4E0; -#endif - -#define dobject_kingdodongo_Tex_02E8E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02E8E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02E8E0[] = dobject_kingdodongo_Tex_02E8E0; -#else -static const char object_kingdodongo_Tex_02E8E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02E8E0; -#endif - -#define dobject_kingdodongo_Tex_02ECE0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02ECE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02ECE0[] = dobject_kingdodongo_Tex_02ECE0; -#else -static const char object_kingdodongo_Tex_02ECE0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02ECE0; -#endif - -#define dobject_kingdodongo_Tex_02F0E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02F0E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02F0E0[] = dobject_kingdodongo_Tex_02F0E0; -#else -static const char object_kingdodongo_Tex_02F0E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02F0E0; -#endif - -#define dobject_kingdodongo_Tex_02F4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02F4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02F4E0[] = dobject_kingdodongo_Tex_02F4E0; -#else -static const char object_kingdodongo_Tex_02F4E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02F4E0; -#endif - -#define dobject_kingdodongo_Tex_02F8E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02F8E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02F8E0[] = dobject_kingdodongo_Tex_02F8E0; -#else -static const char object_kingdodongo_Tex_02F8E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02F8E0; -#endif - -#define dobject_kingdodongo_Tex_02FCE0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02FCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_02FCE0[] = dobject_kingdodongo_Tex_02FCE0; -#else -static const char object_kingdodongo_Tex_02FCE0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_02FCE0; -#endif - -#define dobject_kingdodongo_Tex_0300E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0300E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_0300E0[] = dobject_kingdodongo_Tex_0300E0; -#else -static const char object_kingdodongo_Tex_0300E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_0300E0; -#endif - -#define dobject_kingdodongo_Tex_0304E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0304E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_0304E0[] = dobject_kingdodongo_Tex_0304E0; -#else -static const char object_kingdodongo_Tex_0304E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_0304E0; -#endif - -#define dobject_kingdodongo_Tex_0308E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0308E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kingdodongo_Tex_0308E0[] = dobject_kingdodongo_Tex_0308E0; -#else -static const char object_kingdodongo_Tex_0308E0[] __attribute__((aligned (2))) = dobject_kingdodongo_Tex_0308E0; -#endif - +#include "align_asset_macro.h" + +#define dobject_kingdodongo_Anim_000690 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_000690" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_000690[] = dobject_kingdodongo_Anim_000690; + +#define dobject_kingdodongo_Anim_001074 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_001074" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_001074[] = dobject_kingdodongo_Anim_001074; + +#define dobject_kingdodongo_Anim_002D0C "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_002D0C" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_002D0C[] = dobject_kingdodongo_Anim_002D0C; + +#define dobject_kingdodongo_Anim_003CF8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_003CF8" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_003CF8[] = dobject_kingdodongo_Anim_003CF8; + +#define dobject_kingdodongo_Anim_0042A8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_0042A8" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_0042A8[] = dobject_kingdodongo_Anim_0042A8; + +#define dobject_kingdodongo_Anim_004E0C "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_004E0C" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_004E0C[] = dobject_kingdodongo_Anim_004E0C; + +#define dobject_kingdodongo_Anim_0061D4 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_0061D4" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_0061D4[] = dobject_kingdodongo_Anim_0061D4; + +#define dobject_kingdodongo_Anim_006924 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_006924" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_006924[] = dobject_kingdodongo_Anim_006924; + +#define dobject_kingdodongo_Anim_008EEC "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_008EEC" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_008EEC[] = dobject_kingdodongo_Anim_008EEC; + +#define dobject_kingdodongo_Anim_009D10 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_009D10" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_009D10[] = dobject_kingdodongo_Anim_009D10; + +#define dobject_kingdodongo_DL_009D50 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_009D50" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_009D50[] = dobject_kingdodongo_DL_009D50; + +#define dobject_kingdodongo_DL_009DD0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_009DD0" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_009DD0[] = dobject_kingdodongo_DL_009DD0; + +#define dobject_kingdodongo_Tex_009DE8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_009DE8" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_009DE8[] = dobject_kingdodongo_Tex_009DE8; + +#define dobject_kingdodongo_Anim_00AA9C "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_00AA9C" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_00AA9C[] = dobject_kingdodongo_Anim_00AA9C; + +#define dobject_kingdodongo_Anim_00DF38 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_00DF38" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_00DF38[] = dobject_kingdodongo_Anim_00DF38; + +#define dobject_kingdodongo_Anim_00E848 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_00E848" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_00E848[] = dobject_kingdodongo_Anim_00E848; + +#define dobject_kingdodongo_Anim_00F0D8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_00F0D8" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_00F0D8[] = dobject_kingdodongo_Anim_00F0D8; + +#define dobject_kingdodongo_DL_00F310 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_00F310" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_00F310[] = dobject_kingdodongo_DL_00F310; + +#define dobject_kingdodongo_DL_00F6C0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_00F6C0" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_00F6C0[] = dobject_kingdodongo_DL_00F6C0; + +#define dobject_kingdodongo_DL_00FAC0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_00FAC0" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_00FAC0[] = dobject_kingdodongo_DL_00FAC0; + +#define dobject_kingdodongo_DL_00FF68 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_00FF68" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_00FF68[] = dobject_kingdodongo_DL_00FF68; + +#define dobject_kingdodongo_DL_010390 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_010390" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_010390[] = dobject_kingdodongo_DL_010390; + +#define dobject_kingdodongo_DL_010878 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_010878" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_010878[] = dobject_kingdodongo_DL_010878; + +#define dobject_kingdodongo_DL_010BE0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_010BE0" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_010BE0[] = dobject_kingdodongo_DL_010BE0; + +#define dobject_kingdodongo_DL_010F90 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_010F90" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_010F90[] = dobject_kingdodongo_DL_010F90; + +#define dobject_kingdodongo_DL_011390 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_011390" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_011390[] = dobject_kingdodongo_DL_011390; + +#define dobject_kingdodongo_DL_011838 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_011838" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_011838[] = dobject_kingdodongo_DL_011838; + +#define dobject_kingdodongo_DL_011C60 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_011C60" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_011C60[] = dobject_kingdodongo_DL_011C60; + +#define dobject_kingdodongo_DL_012148 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_012148" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_012148[] = dobject_kingdodongo_DL_012148; + +#define dobject_kingdodongo_DL_0127D0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_0127D0" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_0127D0[] = dobject_kingdodongo_DL_0127D0; + +#define dobject_kingdodongo_DL_012F28 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_012F28" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_012F28[] = dobject_kingdodongo_DL_012F28; + +#define dobject_kingdodongo_DL_0137B0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_0137B0" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_0137B0[] = dobject_kingdodongo_DL_0137B0; + +#define dobject_kingdodongo_DL_013C20 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_013C20" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_013C20[] = dobject_kingdodongo_DL_013C20; + +#define dobject_kingdodongo_DL_013EF8 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_013EF8" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_013EF8[] = dobject_kingdodongo_DL_013EF8; + +#define dobject_kingdodongo_DL_014100 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_014100" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_014100[] = dobject_kingdodongo_DL_014100; + +#define dobject_kingdodongo_DL_014A30 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_014A30" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_014A30[] = dobject_kingdodongo_DL_014A30; + +#define dobject_kingdodongo_DL_015630 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_015630" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_015630[] = dobject_kingdodongo_DL_015630; + +#define dobject_kingdodongo_Tex_015890 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_015890" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_015890[] = dobject_kingdodongo_Tex_015890; + +#define dobject_kingdodongo_Tex_015990 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_015990" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_015990[] = dobject_kingdodongo_Tex_015990; + +#define dobject_kingdodongo_Tex_015D90 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_015D90" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_015D90[] = dobject_kingdodongo_Tex_015D90; + +#define dobject_kingdodongo_Tex_015F90 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_015F90" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_015F90[] = dobject_kingdodongo_Tex_015F90; + +#define dobject_kingdodongo_Tex_016390 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016390" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_016390[] = dobject_kingdodongo_Tex_016390; + +#define dobject_kingdodongo_Tex_016590 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016590" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_016590[] = dobject_kingdodongo_Tex_016590; + +#define dobject_kingdodongo_Tex_016790 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016790" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_016790[] = dobject_kingdodongo_Tex_016790; + +#define dobject_kingdodongo_Tex_016990 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016990" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_016990[] = dobject_kingdodongo_Tex_016990; + +#define dobject_kingdodongo_Tex_016D90 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016D90" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_016D90[] = dobject_kingdodongo_Tex_016D90; + +#define dobject_kingdodongo_Tex_016E10 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_016E10" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_016E10[] = dobject_kingdodongo_Tex_016E10; + +#define dobject_kingdodongo_Tex_017210 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_017210" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_017210[] = dobject_kingdodongo_Tex_017210; + +#define dgKingDodongoTitleCardTex "__OTR__objects/object_kingdodongo/gKingDodongoTitleCardTex" +static const ALIGN_ASSET(2) char gKingDodongoTitleCardTex[] = dgKingDodongoTitleCardTex; + +#define dobject_kingdodongo_Skel_01B310 "__OTR__objects/object_kingdodongo/object_kingdodongo_Skel_01B310" +static const ALIGN_ASSET(2) char object_kingdodongo_Skel_01B310[] = dobject_kingdodongo_Skel_01B310; + +#define dobject_kingdodongo_Anim_01CAE0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_01CAE0" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_01CAE0[] = dobject_kingdodongo_Anim_01CAE0; + +#define dobject_kingdodongo_Anim_01D218 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_01D218" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_01D218[] = dobject_kingdodongo_Anim_01D218; + +#define dobject_kingdodongo_Anim_01D934 "__OTR__objects/object_kingdodongo/object_kingdodongo_Anim_01D934" +static const ALIGN_ASSET(2) char object_kingdodongo_Anim_01D934[] = dobject_kingdodongo_Anim_01D934; + +#define dobject_kingdodongo_DL_01D950 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_01D950" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_01D950[] = dobject_kingdodongo_DL_01D950; + +#define dobject_kingdodongo_DL_0259F0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_0259F0" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_0259F0[] = dobject_kingdodongo_DL_0259F0; + +#define dobject_kingdodongo_DL_025A90 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_025A90" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_025A90[] = dobject_kingdodongo_DL_025A90; + +#define dobject_kingdodongo_Col_025B64 "__OTR__objects/object_kingdodongo/object_kingdodongo_Col_025B64" +static const ALIGN_ASSET(2) char object_kingdodongo_Col_025B64[] = dobject_kingdodongo_Col_025B64; + +#define dobject_kingdodongo_DL_025BD0 "__OTR__objects/object_kingdodongo/object_kingdodongo_DL_025BD0" +static const ALIGN_ASSET(2) char object_kingdodongo_DL_025BD0[] = dobject_kingdodongo_DL_025BD0; + +#define dobject_kingdodongo_Tex_025C58 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_025C58" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_025C58[] = dobject_kingdodongo_Tex_025C58; + +#define dobject_kingdodongo_Col_0264A8 "__OTR__objects/object_kingdodongo/object_kingdodongo_Col_0264A8" +static const ALIGN_ASSET(2) char object_kingdodongo_Col_0264A8[] = dobject_kingdodongo_Col_0264A8; + +#define dobject_kingdodongo_Tex_0264E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0264E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_0264E0[] = dobject_kingdodongo_Tex_0264E0; + +#define dobject_kingdodongo_Tex_0274E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0274E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_0274E0[] = dobject_kingdodongo_Tex_0274E0; + +#define dobject_kingdodongo_Tex_0284E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0284E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_0284E0[] = dobject_kingdodongo_Tex_0284E0; + +#define dobject_kingdodongo_Tex_0294E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0294E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_0294E0[] = dobject_kingdodongo_Tex_0294E0; + +#define dobject_kingdodongo_Tex_02A4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02A4E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02A4E0[] = dobject_kingdodongo_Tex_02A4E0; + +#define dobject_kingdodongo_Tex_02B4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02B4E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02B4E0[] = dobject_kingdodongo_Tex_02B4E0; + +#define dobject_kingdodongo_Tex_02C4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02C4E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02C4E0[] = dobject_kingdodongo_Tex_02C4E0; + +#define dobject_kingdodongo_Tex_02D4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02D4E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02D4E0[] = dobject_kingdodongo_Tex_02D4E0; + +#define dobject_kingdodongo_Tex_02E4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02E4E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02E4E0[] = dobject_kingdodongo_Tex_02E4E0; + +#define dobject_kingdodongo_Tex_02E8E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02E8E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02E8E0[] = dobject_kingdodongo_Tex_02E8E0; + +#define dobject_kingdodongo_Tex_02ECE0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02ECE0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02ECE0[] = dobject_kingdodongo_Tex_02ECE0; + +#define dobject_kingdodongo_Tex_02F0E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02F0E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02F0E0[] = dobject_kingdodongo_Tex_02F0E0; + +#define dobject_kingdodongo_Tex_02F4E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02F4E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02F4E0[] = dobject_kingdodongo_Tex_02F4E0; + +#define dobject_kingdodongo_Tex_02F8E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02F8E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02F8E0[] = dobject_kingdodongo_Tex_02F8E0; + +#define dobject_kingdodongo_Tex_02FCE0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_02FCE0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_02FCE0[] = dobject_kingdodongo_Tex_02FCE0; + +#define dobject_kingdodongo_Tex_0300E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0300E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_0300E0[] = dobject_kingdodongo_Tex_0300E0; + +#define dobject_kingdodongo_Tex_0304E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0304E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_0304E0[] = dobject_kingdodongo_Tex_0304E0; + +#define dobject_kingdodongo_Tex_0308E0 "__OTR__objects/object_kingdodongo/object_kingdodongo_Tex_0308E0" +static const ALIGN_ASSET(2) char object_kingdodongo_Tex_0308E0[] = dobject_kingdodongo_Tex_0308E0; \ No newline at end of file diff --git a/soh/assets/objects/object_km1/object_km1.h b/soh/assets/objects/object_km1/object_km1.h index bf0c18eda..c27f260a7 100644 --- a/soh/assets/objects/object_km1/object_km1.h +++ b/soh/assets/objects/object_km1/object_km1.h @@ -1,198 +1,87 @@ #pragma once -#define dgKm1Skel "__OTR__objects/object_km1/gKm1Skel" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1Skel[] = dgKm1Skel; -#else -static const char gKm1Skel[] __attribute__((aligned (2))) = dgKm1Skel; -#endif - -#define dgKm1TLUT_0000FC "__OTR__objects/object_km1/gKm1TLUT_0000FC" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1TLUT_0000FC[] = dgKm1TLUT_0000FC; -#else -static const char gKm1TLUT_0000FC[] __attribute__((aligned (2))) = dgKm1TLUT_0000FC; -#endif - -#define dgKm1TunicTex "__OTR__objects/object_km1/gKm1TunicTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1TunicTex[] = dgKm1TunicTex; -#else -static const char gKm1TunicTex[] __attribute__((aligned (2))) = dgKm1TunicTex; -#endif - -#define dgKm1BootWrinkleTex "__OTR__objects/object_km1/gKm1BootWrinkleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1BootWrinkleTex[] = dgKm1BootWrinkleTex; -#else -static const char gKm1BootWrinkleTex[] __attribute__((aligned (2))) = dgKm1BootWrinkleTex; -#endif - -#define dgKm1Skin1Tex "__OTR__objects/object_km1/gKm1Skin1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1Skin1Tex[] = dgKm1Skin1Tex; -#else -static const char gKm1Skin1Tex[] __attribute__((aligned (2))) = dgKm1Skin1Tex; -#endif - -#define dgKm1TunicFringeTex "__OTR__objects/object_km1/gKm1TunicFringeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1TunicFringeTex[] = dgKm1TunicFringeTex; -#else -static const char gKm1TunicFringeTex[] __attribute__((aligned (2))) = dgKm1TunicFringeTex; -#endif - -#define dgKm1UnusedHairTex "__OTR__objects/object_km1/gKm1UnusedHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1UnusedHairTex[] = dgKm1UnusedHairTex; -#else -static const char gKm1UnusedHairTex[] __attribute__((aligned (2))) = dgKm1UnusedHairTex; -#endif - -#define dgKm1Ear1Tex "__OTR__objects/object_km1/gKm1Ear1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1Ear1Tex[] = dgKm1Ear1Tex; -#else -static const char gKm1Ear1Tex[] __attribute__((aligned (2))) = dgKm1Ear1Tex; -#endif - -#define dgKm1HandTex "__OTR__objects/object_km1/gKm1HandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1HandTex[] = dgKm1HandTex; -#else -static const char gKm1HandTex[] __attribute__((aligned (2))) = dgKm1HandTex; -#endif - -#define dgKm1TLUT_00083C "__OTR__objects/object_km1/gKm1TLUT_00083C" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1TLUT_00083C[] = dgKm1TLUT_00083C; -#else -static const char gKm1TLUT_00083C[] __attribute__((aligned (2))) = dgKm1TLUT_00083C; -#endif - -#define dgKm1Ear2Tex "__OTR__objects/object_km1/gKm1Ear2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1Ear2Tex[] = dgKm1Ear2Tex; -#else -static const char gKm1Ear2Tex[] __attribute__((aligned (2))) = dgKm1Ear2Tex; -#endif - -#define dgKm1Skin2Tex "__OTR__objects/object_km1/gKm1Skin2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1Skin2Tex[] = dgKm1Skin2Tex; -#else -static const char gKm1Skin2Tex[] __attribute__((aligned (2))) = dgKm1Skin2Tex; -#endif - -#define dgKm1HairTex "__OTR__objects/object_km1/gKm1HairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1HairTex[] = dgKm1HairTex; -#else -static const char gKm1HairTex[] __attribute__((aligned (2))) = dgKm1HairTex; -#endif - -#define dgKm1DL "__OTR__objects/object_km1/gKm1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1DL[] = dgKm1DL; -#else -static const char gKm1DL[] __attribute__((aligned (2))) = dgKm1DL; -#endif - -#define dgKm1SkelLimb_000000DL_004D90 "__OTR__objects/object_km1/gKm1SkelLimb_000000DL_004D90" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000000DL_004D90[] = dgKm1SkelLimb_000000DL_004D90; -#else -static const char gKm1SkelLimb_000000DL_004D90[] __attribute__((aligned (2))) = dgKm1SkelLimb_000000DL_004D90; -#endif - -#define dgKm1SkelLimb_00000CDL_005428 "__OTR__objects/object_km1/gKm1SkelLimb_00000CDL_005428" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_00000CDL_005428[] = dgKm1SkelLimb_00000CDL_005428; -#else -static const char gKm1SkelLimb_00000CDL_005428[] __attribute__((aligned (2))) = dgKm1SkelLimb_00000CDL_005428; -#endif - -#define dgKm1SkelLimb_000018DL_005668 "__OTR__objects/object_km1/gKm1SkelLimb_000018DL_005668" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000018DL_005668[] = dgKm1SkelLimb_000018DL_005668; -#else -static const char gKm1SkelLimb_000018DL_005668[] __attribute__((aligned (2))) = dgKm1SkelLimb_000018DL_005668; -#endif - -#define dgKm1SkelLimb_000024DL_0058B0 "__OTR__objects/object_km1/gKm1SkelLimb_000024DL_0058B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000024DL_0058B0[] = dgKm1SkelLimb_000024DL_0058B0; -#else -static const char gKm1SkelLimb_000024DL_0058B0[] __attribute__((aligned (2))) = dgKm1SkelLimb_000024DL_0058B0; -#endif - -#define dgKm1SkelLimb_000030DL_004E98 "__OTR__objects/object_km1/gKm1SkelLimb_000030DL_004E98" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000030DL_004E98[] = dgKm1SkelLimb_000030DL_004E98; -#else -static const char gKm1SkelLimb_000030DL_004E98[] __attribute__((aligned (2))) = dgKm1SkelLimb_000030DL_004E98; -#endif - -#define dgKm1SkelLimb_00003CDL_0050D8 "__OTR__objects/object_km1/gKm1SkelLimb_00003CDL_0050D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_00003CDL_0050D8[] = dgKm1SkelLimb_00003CDL_0050D8; -#else -static const char gKm1SkelLimb_00003CDL_0050D8[] __attribute__((aligned (2))) = dgKm1SkelLimb_00003CDL_0050D8; -#endif - -#define dgKm1SkelLimb_000048DL_005320 "__OTR__objects/object_km1/gKm1SkelLimb_000048DL_005320" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000048DL_005320[] = dgKm1SkelLimb_000048DL_005320; -#else -static const char gKm1SkelLimb_000048DL_005320[] __attribute__((aligned (2))) = dgKm1SkelLimb_000048DL_005320; -#endif - -#define dgKm1SkelLimb_000054DL_003F08 "__OTR__objects/object_km1/gKm1SkelLimb_000054DL_003F08" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000054DL_003F08[] = dgKm1SkelLimb_000054DL_003F08; -#else -static const char gKm1SkelLimb_000054DL_003F08[] __attribute__((aligned (2))) = dgKm1SkelLimb_000054DL_003F08; -#endif - -#define dgKm1SkelLimb_000060DL_0047A0 "__OTR__objects/object_km1/gKm1SkelLimb_000060DL_0047A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000060DL_0047A0[] = dgKm1SkelLimb_000060DL_0047A0; -#else -static const char gKm1SkelLimb_000060DL_0047A0[] __attribute__((aligned (2))) = dgKm1SkelLimb_000060DL_0047A0; -#endif - -#define dgKm1SkelLimb_00006CDL_0049D8 "__OTR__objects/object_km1/gKm1SkelLimb_00006CDL_0049D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_00006CDL_0049D8[] = dgKm1SkelLimb_00006CDL_0049D8; -#else -static const char gKm1SkelLimb_00006CDL_0049D8[] __attribute__((aligned (2))) = dgKm1SkelLimb_00006CDL_0049D8; -#endif - -#define dgKm1SkelLimb_000078DL_004B10 "__OTR__objects/object_km1/gKm1SkelLimb_000078DL_004B10" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000078DL_004B10[] = dgKm1SkelLimb_000078DL_004B10; -#else -static const char gKm1SkelLimb_000078DL_004B10[] __attribute__((aligned (2))) = dgKm1SkelLimb_000078DL_004B10; -#endif - -#define dgKm1SkelLimb_000084DL_004138 "__OTR__objects/object_km1/gKm1SkelLimb_000084DL_004138" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000084DL_004138[] = dgKm1SkelLimb_000084DL_004138; -#else -static const char gKm1SkelLimb_000084DL_004138[] __attribute__((aligned (2))) = dgKm1SkelLimb_000084DL_004138; -#endif - -#define dgKm1SkelLimb_000090DL_004370 "__OTR__objects/object_km1/gKm1SkelLimb_000090DL_004370" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_000090DL_004370[] = dgKm1SkelLimb_000090DL_004370; -#else -static const char gKm1SkelLimb_000090DL_004370[] __attribute__((aligned (2))) = dgKm1SkelLimb_000090DL_004370; -#endif - -#define dgKm1SkelLimb_00009CDL_0044A8 "__OTR__objects/object_km1/gKm1SkelLimb_00009CDL_0044A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gKm1SkelLimb_00009CDL_0044A8[] = dgKm1SkelLimb_00009CDL_0044A8; -#else -static const char gKm1SkelLimb_00009CDL_0044A8[] __attribute__((aligned (2))) = dgKm1SkelLimb_00009CDL_0044A8; -#endif - +#include "align_asset_macro.h" + +#define dgKm1Skel "__OTR__objects/object_km1/gKm1Skel" +static const ALIGN_ASSET(2) char gKm1Skel[] = dgKm1Skel; + +#define dgKm1TLUT_0000FC "__OTR__objects/object_km1/gKm1TLUT_0000FC" +static const ALIGN_ASSET(2) char gKm1TLUT_0000FC[] = dgKm1TLUT_0000FC; + +#define dgKm1TunicTex "__OTR__objects/object_km1/gKm1TunicTex" +static const ALIGN_ASSET(2) char gKm1TunicTex[] = dgKm1TunicTex; + +#define dgKm1BootWrinkleTex "__OTR__objects/object_km1/gKm1BootWrinkleTex" +static const ALIGN_ASSET(2) char gKm1BootWrinkleTex[] = dgKm1BootWrinkleTex; + +#define dgKm1Skin1Tex "__OTR__objects/object_km1/gKm1Skin1Tex" +static const ALIGN_ASSET(2) char gKm1Skin1Tex[] = dgKm1Skin1Tex; + +#define dgKm1TunicFringeTex "__OTR__objects/object_km1/gKm1TunicFringeTex" +static const ALIGN_ASSET(2) char gKm1TunicFringeTex[] = dgKm1TunicFringeTex; + +#define dgKm1UnusedHairTex "__OTR__objects/object_km1/gKm1UnusedHairTex" +static const ALIGN_ASSET(2) char gKm1UnusedHairTex[] = dgKm1UnusedHairTex; + +#define dgKm1Ear1Tex "__OTR__objects/object_km1/gKm1Ear1Tex" +static const ALIGN_ASSET(2) char gKm1Ear1Tex[] = dgKm1Ear1Tex; + +#define dgKm1HandTex "__OTR__objects/object_km1/gKm1HandTex" +static const ALIGN_ASSET(2) char gKm1HandTex[] = dgKm1HandTex; + +#define dgKm1TLUT_00083C "__OTR__objects/object_km1/gKm1TLUT_00083C" +static const ALIGN_ASSET(2) char gKm1TLUT_00083C[] = dgKm1TLUT_00083C; + +#define dgKm1Ear2Tex "__OTR__objects/object_km1/gKm1Ear2Tex" +static const ALIGN_ASSET(2) char gKm1Ear2Tex[] = dgKm1Ear2Tex; + +#define dgKm1Skin2Tex "__OTR__objects/object_km1/gKm1Skin2Tex" +static const ALIGN_ASSET(2) char gKm1Skin2Tex[] = dgKm1Skin2Tex; + +#define dgKm1HairTex "__OTR__objects/object_km1/gKm1HairTex" +static const ALIGN_ASSET(2) char gKm1HairTex[] = dgKm1HairTex; + +#define dgKm1DL "__OTR__objects/object_km1/gKm1DL" +static const ALIGN_ASSET(2) char gKm1DL[] = dgKm1DL; + +#define dgKm1SkelLimb_000000DL_004D90 "__OTR__objects/object_km1/gKm1SkelLimb_000000DL_004D90" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000000DL_004D90[] = dgKm1SkelLimb_000000DL_004D90; + +#define dgKm1SkelLimb_00000CDL_005428 "__OTR__objects/object_km1/gKm1SkelLimb_00000CDL_005428" +static const ALIGN_ASSET(2) char gKm1SkelLimb_00000CDL_005428[] = dgKm1SkelLimb_00000CDL_005428; + +#define dgKm1SkelLimb_000018DL_005668 "__OTR__objects/object_km1/gKm1SkelLimb_000018DL_005668" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000018DL_005668[] = dgKm1SkelLimb_000018DL_005668; + +#define dgKm1SkelLimb_000024DL_0058B0 "__OTR__objects/object_km1/gKm1SkelLimb_000024DL_0058B0" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000024DL_0058B0[] = dgKm1SkelLimb_000024DL_0058B0; + +#define dgKm1SkelLimb_000030DL_004E98 "__OTR__objects/object_km1/gKm1SkelLimb_000030DL_004E98" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000030DL_004E98[] = dgKm1SkelLimb_000030DL_004E98; + +#define dgKm1SkelLimb_00003CDL_0050D8 "__OTR__objects/object_km1/gKm1SkelLimb_00003CDL_0050D8" +static const ALIGN_ASSET(2) char gKm1SkelLimb_00003CDL_0050D8[] = dgKm1SkelLimb_00003CDL_0050D8; + +#define dgKm1SkelLimb_000048DL_005320 "__OTR__objects/object_km1/gKm1SkelLimb_000048DL_005320" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000048DL_005320[] = dgKm1SkelLimb_000048DL_005320; + +#define dgKm1SkelLimb_000054DL_003F08 "__OTR__objects/object_km1/gKm1SkelLimb_000054DL_003F08" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000054DL_003F08[] = dgKm1SkelLimb_000054DL_003F08; + +#define dgKm1SkelLimb_000060DL_0047A0 "__OTR__objects/object_km1/gKm1SkelLimb_000060DL_0047A0" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000060DL_0047A0[] = dgKm1SkelLimb_000060DL_0047A0; + +#define dgKm1SkelLimb_00006CDL_0049D8 "__OTR__objects/object_km1/gKm1SkelLimb_00006CDL_0049D8" +static const ALIGN_ASSET(2) char gKm1SkelLimb_00006CDL_0049D8[] = dgKm1SkelLimb_00006CDL_0049D8; + +#define dgKm1SkelLimb_000078DL_004B10 "__OTR__objects/object_km1/gKm1SkelLimb_000078DL_004B10" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000078DL_004B10[] = dgKm1SkelLimb_000078DL_004B10; + +#define dgKm1SkelLimb_000084DL_004138 "__OTR__objects/object_km1/gKm1SkelLimb_000084DL_004138" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000084DL_004138[] = dgKm1SkelLimb_000084DL_004138; + +#define dgKm1SkelLimb_000090DL_004370 "__OTR__objects/object_km1/gKm1SkelLimb_000090DL_004370" +static const ALIGN_ASSET(2) char gKm1SkelLimb_000090DL_004370[] = dgKm1SkelLimb_000090DL_004370; + +#define dgKm1SkelLimb_00009CDL_0044A8 "__OTR__objects/object_km1/gKm1SkelLimb_00009CDL_0044A8" +static const ALIGN_ASSET(2) char gKm1SkelLimb_00009CDL_0044A8[] = dgKm1SkelLimb_00009CDL_0044A8; \ No newline at end of file diff --git a/soh/assets/objects/object_kusa/object_kusa.h b/soh/assets/objects/object_kusa/object_kusa.h index 6892b3538..7996f1da0 100644 --- a/soh/assets/objects/object_kusa/object_kusa.h +++ b/soh/assets/objects/object_kusa/object_kusa.h @@ -1,16 +1,9 @@ #pragma once -#define dobject_kusa_DL_000140 "__OTR__objects/object_kusa/object_kusa_DL_000140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kusa_DL_000140[] = dobject_kusa_DL_000140; -#else -static const char object_kusa_DL_000140[] __attribute__((aligned (2))) = dobject_kusa_DL_000140; -#endif - -#define dobject_kusa_DL_0002E0 "__OTR__objects/object_kusa/object_kusa_DL_0002E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kusa_DL_0002E0[] = dobject_kusa_DL_0002E0; -#else -static const char object_kusa_DL_0002E0[] __attribute__((aligned (2))) = dobject_kusa_DL_0002E0; -#endif - +#include "align_asset_macro.h" + +#define dobject_kusa_DL_000140 "__OTR__objects/object_kusa/object_kusa_DL_000140" +static const ALIGN_ASSET(2) char object_kusa_DL_000140[] = dobject_kusa_DL_000140; + +#define dobject_kusa_DL_0002E0 "__OTR__objects/object_kusa/object_kusa_DL_0002E0" +static const ALIGN_ASSET(2) char object_kusa_DL_0002E0[] = dobject_kusa_DL_0002E0; \ No newline at end of file diff --git a/soh/assets/objects/object_kw1/object_kw1.h b/soh/assets/objects/object_kw1/object_kw1.h index 6bcc1f311..a4f1bdb59 100644 --- a/soh/assets/objects/object_kw1/object_kw1.h +++ b/soh/assets/objects/object_kw1/object_kw1.h @@ -1,233 +1,102 @@ #pragma once -#define dgKw1Skel "__OTR__objects/object_kw1/gKw1Skel" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1Skel[] = dgKw1Skel; -#else -static const char gKw1Skel[] __attribute__((aligned (2))) = dgKw1Skel; -#endif - -#define dobject_kw1_TLUT_0000FC "__OTR__objects/object_kw1/object_kw1_TLUT_0000FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_TLUT_0000FC[] = dobject_kw1_TLUT_0000FC; -#else -static const char object_kw1_TLUT_0000FC[] __attribute__((aligned (2))) = dobject_kw1_TLUT_0000FC; -#endif - -#define dgKw1BootsTex "__OTR__objects/object_kw1/gKw1BootsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1BootsTex[] = dgKw1BootsTex; -#else -static const char gKw1BootsTex[] __attribute__((aligned (2))) = dgKw1BootsTex; -#endif - -#define dgKw1Skin1Tex "__OTR__objects/object_kw1/gKw1Skin1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1Skin1Tex[] = dgKw1Skin1Tex; -#else -static const char gKw1Skin1Tex[] __attribute__((aligned (2))) = dgKw1Skin1Tex; -#endif - -#define dgKw1TunicTex "__OTR__objects/object_kw1/gKw1TunicTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1TunicTex[] = dgKw1TunicTex; -#else -static const char gKw1TunicTex[] __attribute__((aligned (2))) = dgKw1TunicTex; -#endif - -#define dobject_kw1_Tex_00047C "__OTR__objects/object_kw1/object_kw1_Tex_00047C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_Tex_00047C[] = dobject_kw1_Tex_00047C; -#else -static const char object_kw1_Tex_00047C[] __attribute__((aligned (2))) = dobject_kw1_Tex_00047C; -#endif - -#define dgKw1UnusedEyeOpenTex "__OTR__objects/object_kw1/gKw1UnusedEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1UnusedEyeOpenTex[] = dgKw1UnusedEyeOpenTex; -#else -static const char gKw1UnusedEyeOpenTex[] __attribute__((aligned (2))) = dgKw1UnusedEyeOpenTex; -#endif - -#define dgKw1HandTex "__OTR__objects/object_kw1/gKw1HandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1HandTex[] = dgKw1HandTex; -#else -static const char gKw1HandTex[] __attribute__((aligned (2))) = dgKw1HandTex; -#endif - -#define dgKw1BeltBuckleTex "__OTR__objects/object_kw1/gKw1BeltBuckleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1BeltBuckleTex[] = dgKw1BeltBuckleTex; -#else -static const char gKw1BeltBuckleTex[] __attribute__((aligned (2))) = dgKw1BeltBuckleTex; -#endif - -#define dobject_kw1_TLUT_000D3C "__OTR__objects/object_kw1/object_kw1_TLUT_000D3C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_TLUT_000D3C[] = dobject_kw1_TLUT_000D3C; -#else -static const char object_kw1_TLUT_000D3C[] __attribute__((aligned (2))) = dobject_kw1_TLUT_000D3C; -#endif - -#define dgKw1EarTex "__OTR__objects/object_kw1/gKw1EarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1EarTex[] = dgKw1EarTex; -#else -static const char gKw1EarTex[] __attribute__((aligned (2))) = dgKw1EarTex; -#endif - -#define dgKw1EyeOpenTex "__OTR__objects/object_kw1/gKw1EyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1EyeOpenTex[] = dgKw1EyeOpenTex; -#else -static const char gKw1EyeOpenTex[] __attribute__((aligned (2))) = dgKw1EyeOpenTex; -#endif - -#define dgKw1EyeHalfTex "__OTR__objects/object_kw1/gKw1EyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1EyeHalfTex[] = dgKw1EyeHalfTex; -#else -static const char gKw1EyeHalfTex[] __attribute__((aligned (2))) = dgKw1EyeHalfTex; -#endif - -#define dgKw1EyeClosedTex "__OTR__objects/object_kw1/gKw1EyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1EyeClosedTex[] = dgKw1EyeClosedTex; -#else -static const char gKw1EyeClosedTex[] __attribute__((aligned (2))) = dgKw1EyeClosedTex; -#endif - -#define dgKw1HairTex "__OTR__objects/object_kw1/gKw1HairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1HairTex[] = dgKw1HairTex; -#else -static const char gKw1HairTex[] __attribute__((aligned (2))) = dgKw1HairTex; -#endif - -#define dgKw1Skin2Tex "__OTR__objects/object_kw1/gKw1Skin2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1Skin2Tex[] = dgKw1Skin2Tex; -#else -static const char gKw1Skin2Tex[] __attribute__((aligned (2))) = dgKw1Skin2Tex; -#endif - -#define dgKw1HairlineTex "__OTR__objects/object_kw1/gKw1HairlineTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1HairlineTex[] = dgKw1HairlineTex; -#else -static const char gKw1HairlineTex[] __attribute__((aligned (2))) = dgKw1HairlineTex; -#endif - -#define dgKw1MouthTex "__OTR__objects/object_kw1/gKw1MouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKw1MouthTex[] = dgKw1MouthTex; -#else -static const char gKw1MouthTex[] __attribute__((aligned (2))) = dgKw1MouthTex; -#endif - -#define dobject_kw1_DL_002C10 "__OTR__objects/object_kw1/object_kw1_DL_002C10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_002C10[] = dobject_kw1_DL_002C10; -#else -static const char object_kw1_DL_002C10[] __attribute__((aligned (2))) = dobject_kw1_DL_002C10; -#endif - -#define dobject_kw1_DL_0053F8 "__OTR__objects/object_kw1/object_kw1_DL_0053F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_0053F8[] = dobject_kw1_DL_0053F8; -#else -static const char object_kw1_DL_0053F8[] __attribute__((aligned (2))) = dobject_kw1_DL_0053F8; -#endif - -#define dobject_kw1_DL_005668 "__OTR__objects/object_kw1/object_kw1_DL_005668" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_005668[] = dobject_kw1_DL_005668; -#else -static const char object_kw1_DL_005668[] __attribute__((aligned (2))) = dobject_kw1_DL_005668; -#endif - -#define dobject_kw1_DL_0057A8 "__OTR__objects/object_kw1/object_kw1_DL_0057A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_0057A8[] = dobject_kw1_DL_0057A8; -#else -static const char object_kw1_DL_0057A8[] __attribute__((aligned (2))) = dobject_kw1_DL_0057A8; -#endif - -#define dobject_kw1_DL_0058D8 "__OTR__objects/object_kw1/object_kw1_DL_0058D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_0058D8[] = dobject_kw1_DL_0058D8; -#else -static const char object_kw1_DL_0058D8[] __attribute__((aligned (2))) = dobject_kw1_DL_0058D8; -#endif - -#define dobject_kw1_DL_005A60 "__OTR__objects/object_kw1/object_kw1_DL_005A60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_005A60[] = dobject_kw1_DL_005A60; -#else -static const char object_kw1_DL_005A60[] __attribute__((aligned (2))) = dobject_kw1_DL_005A60; -#endif - -#define dobject_kw1_DL_005BA0 "__OTR__objects/object_kw1/object_kw1_DL_005BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_005BA0[] = dobject_kw1_DL_005BA0; -#else -static const char object_kw1_DL_005BA0[] __attribute__((aligned (2))) = dobject_kw1_DL_005BA0; -#endif - -#define dobject_kw1_DL_005CD0 "__OTR__objects/object_kw1/object_kw1_DL_005CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_005CD0[] = dobject_kw1_DL_005CD0; -#else -static const char object_kw1_DL_005CD0[] __attribute__((aligned (2))) = dobject_kw1_DL_005CD0; -#endif - -#define dobject_kw1_DL_005E58 "__OTR__objects/object_kw1/object_kw1_DL_005E58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_005E58[] = dobject_kw1_DL_005E58; -#else -static const char object_kw1_DL_005E58[] __attribute__((aligned (2))) = dobject_kw1_DL_005E58; -#endif - -#define dobject_kw1_DL_006018 "__OTR__objects/object_kw1/object_kw1_DL_006018" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_006018[] = dobject_kw1_DL_006018; -#else -static const char object_kw1_DL_006018[] __attribute__((aligned (2))) = dobject_kw1_DL_006018; -#endif - -#define dobject_kw1_DL_0061C0 "__OTR__objects/object_kw1/object_kw1_DL_0061C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_0061C0[] = dobject_kw1_DL_0061C0; -#else -static const char object_kw1_DL_0061C0[] __attribute__((aligned (2))) = dobject_kw1_DL_0061C0; -#endif - -#define dobject_kw1_DL_006360 "__OTR__objects/object_kw1/object_kw1_DL_006360" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_006360[] = dobject_kw1_DL_006360; -#else -static const char object_kw1_DL_006360[] __attribute__((aligned (2))) = dobject_kw1_DL_006360; -#endif - -#define dobject_kw1_DL_006478 "__OTR__objects/object_kw1/object_kw1_DL_006478" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_006478[] = dobject_kw1_DL_006478; -#else -static const char object_kw1_DL_006478[] __attribute__((aligned (2))) = dobject_kw1_DL_006478; -#endif - -#define dobject_kw1_DL_006620 "__OTR__objects/object_kw1/object_kw1_DL_006620" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_006620[] = dobject_kw1_DL_006620; -#else -static const char object_kw1_DL_006620[] __attribute__((aligned (2))) = dobject_kw1_DL_006620; -#endif - -#define dobject_kw1_DL_0067C0 "__OTR__objects/object_kw1/object_kw1_DL_0067C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kw1_DL_0067C0[] = dobject_kw1_DL_0067C0; -#else -static const char object_kw1_DL_0067C0[] __attribute__((aligned (2))) = dobject_kw1_DL_0067C0; -#endif - +#include "align_asset_macro.h" + +#define dgKw1Skel "__OTR__objects/object_kw1/gKw1Skel" +static const ALIGN_ASSET(2) char gKw1Skel[] = dgKw1Skel; + +#define dobject_kw1_TLUT_0000FC "__OTR__objects/object_kw1/object_kw1_TLUT_0000FC" +static const ALIGN_ASSET(2) char object_kw1_TLUT_0000FC[] = dobject_kw1_TLUT_0000FC; + +#define dgKw1BootsTex "__OTR__objects/object_kw1/gKw1BootsTex" +static const ALIGN_ASSET(2) char gKw1BootsTex[] = dgKw1BootsTex; + +#define dgKw1Skin1Tex "__OTR__objects/object_kw1/gKw1Skin1Tex" +static const ALIGN_ASSET(2) char gKw1Skin1Tex[] = dgKw1Skin1Tex; + +#define dgKw1TunicTex "__OTR__objects/object_kw1/gKw1TunicTex" +static const ALIGN_ASSET(2) char gKw1TunicTex[] = dgKw1TunicTex; + +#define dobject_kw1_Tex_00047C "__OTR__objects/object_kw1/object_kw1_Tex_00047C" +static const ALIGN_ASSET(2) char object_kw1_Tex_00047C[] = dobject_kw1_Tex_00047C; + +#define dgKw1UnusedEyeOpenTex "__OTR__objects/object_kw1/gKw1UnusedEyeOpenTex" +static const ALIGN_ASSET(2) char gKw1UnusedEyeOpenTex[] = dgKw1UnusedEyeOpenTex; + +#define dgKw1HandTex "__OTR__objects/object_kw1/gKw1HandTex" +static const ALIGN_ASSET(2) char gKw1HandTex[] = dgKw1HandTex; + +#define dgKw1BeltBuckleTex "__OTR__objects/object_kw1/gKw1BeltBuckleTex" +static const ALIGN_ASSET(2) char gKw1BeltBuckleTex[] = dgKw1BeltBuckleTex; + +#define dobject_kw1_TLUT_000D3C "__OTR__objects/object_kw1/object_kw1_TLUT_000D3C" +static const ALIGN_ASSET(2) char object_kw1_TLUT_000D3C[] = dobject_kw1_TLUT_000D3C; + +#define dgKw1EarTex "__OTR__objects/object_kw1/gKw1EarTex" +static const ALIGN_ASSET(2) char gKw1EarTex[] = dgKw1EarTex; + +#define dgKw1EyeOpenTex "__OTR__objects/object_kw1/gKw1EyeOpenTex" +static const ALIGN_ASSET(2) char gKw1EyeOpenTex[] = dgKw1EyeOpenTex; + +#define dgKw1EyeHalfTex "__OTR__objects/object_kw1/gKw1EyeHalfTex" +static const ALIGN_ASSET(2) char gKw1EyeHalfTex[] = dgKw1EyeHalfTex; + +#define dgKw1EyeClosedTex "__OTR__objects/object_kw1/gKw1EyeClosedTex" +static const ALIGN_ASSET(2) char gKw1EyeClosedTex[] = dgKw1EyeClosedTex; + +#define dgKw1HairTex "__OTR__objects/object_kw1/gKw1HairTex" +static const ALIGN_ASSET(2) char gKw1HairTex[] = dgKw1HairTex; + +#define dgKw1Skin2Tex "__OTR__objects/object_kw1/gKw1Skin2Tex" +static const ALIGN_ASSET(2) char gKw1Skin2Tex[] = dgKw1Skin2Tex; + +#define dgKw1HairlineTex "__OTR__objects/object_kw1/gKw1HairlineTex" +static const ALIGN_ASSET(2) char gKw1HairlineTex[] = dgKw1HairlineTex; + +#define dgKw1MouthTex "__OTR__objects/object_kw1/gKw1MouthTex" +static const ALIGN_ASSET(2) char gKw1MouthTex[] = dgKw1MouthTex; + +#define dobject_kw1_DL_002C10 "__OTR__objects/object_kw1/object_kw1_DL_002C10" +static const ALIGN_ASSET(2) char object_kw1_DL_002C10[] = dobject_kw1_DL_002C10; + +#define dobject_kw1_DL_0053F8 "__OTR__objects/object_kw1/object_kw1_DL_0053F8" +static const ALIGN_ASSET(2) char object_kw1_DL_0053F8[] = dobject_kw1_DL_0053F8; + +#define dobject_kw1_DL_005668 "__OTR__objects/object_kw1/object_kw1_DL_005668" +static const ALIGN_ASSET(2) char object_kw1_DL_005668[] = dobject_kw1_DL_005668; + +#define dobject_kw1_DL_0057A8 "__OTR__objects/object_kw1/object_kw1_DL_0057A8" +static const ALIGN_ASSET(2) char object_kw1_DL_0057A8[] = dobject_kw1_DL_0057A8; + +#define dobject_kw1_DL_0058D8 "__OTR__objects/object_kw1/object_kw1_DL_0058D8" +static const ALIGN_ASSET(2) char object_kw1_DL_0058D8[] = dobject_kw1_DL_0058D8; + +#define dobject_kw1_DL_005A60 "__OTR__objects/object_kw1/object_kw1_DL_005A60" +static const ALIGN_ASSET(2) char object_kw1_DL_005A60[] = dobject_kw1_DL_005A60; + +#define dobject_kw1_DL_005BA0 "__OTR__objects/object_kw1/object_kw1_DL_005BA0" +static const ALIGN_ASSET(2) char object_kw1_DL_005BA0[] = dobject_kw1_DL_005BA0; + +#define dobject_kw1_DL_005CD0 "__OTR__objects/object_kw1/object_kw1_DL_005CD0" +static const ALIGN_ASSET(2) char object_kw1_DL_005CD0[] = dobject_kw1_DL_005CD0; + +#define dobject_kw1_DL_005E58 "__OTR__objects/object_kw1/object_kw1_DL_005E58" +static const ALIGN_ASSET(2) char object_kw1_DL_005E58[] = dobject_kw1_DL_005E58; + +#define dobject_kw1_DL_006018 "__OTR__objects/object_kw1/object_kw1_DL_006018" +static const ALIGN_ASSET(2) char object_kw1_DL_006018[] = dobject_kw1_DL_006018; + +#define dobject_kw1_DL_0061C0 "__OTR__objects/object_kw1/object_kw1_DL_0061C0" +static const ALIGN_ASSET(2) char object_kw1_DL_0061C0[] = dobject_kw1_DL_0061C0; + +#define dobject_kw1_DL_006360 "__OTR__objects/object_kw1/object_kw1_DL_006360" +static const ALIGN_ASSET(2) char object_kw1_DL_006360[] = dobject_kw1_DL_006360; + +#define dobject_kw1_DL_006478 "__OTR__objects/object_kw1/object_kw1_DL_006478" +static const ALIGN_ASSET(2) char object_kw1_DL_006478[] = dobject_kw1_DL_006478; + +#define dobject_kw1_DL_006620 "__OTR__objects/object_kw1/object_kw1_DL_006620" +static const ALIGN_ASSET(2) char object_kw1_DL_006620[] = dobject_kw1_DL_006620; + +#define dobject_kw1_DL_0067C0 "__OTR__objects/object_kw1/object_kw1_DL_0067C0" +static const ALIGN_ASSET(2) char object_kw1_DL_0067C0[] = dobject_kw1_DL_0067C0; \ No newline at end of file diff --git a/soh/assets/objects/object_kz/object_kz.h b/soh/assets/objects/object_kz/object_kz.h index da3bf9d62..4fc6c3096 100644 --- a/soh/assets/objects/object_kz/object_kz.h +++ b/soh/assets/objects/object_kz/object_kz.h @@ -1,198 +1,87 @@ #pragma once -#define dgKzMweepAnim "__OTR__objects/object_kz/gKzMweepAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzMweepAnim[] = dgKzMweepAnim; -#else -static const char gKzMweepAnim[] __attribute__((aligned (2))) = dgKzMweepAnim; -#endif - -#define dgKzIdleAnim "__OTR__objects/object_kz/gKzIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzIdleAnim[] = dgKzIdleAnim; -#else -static const char gKzIdleAnim[] __attribute__((aligned (2))) = dgKzIdleAnim; -#endif - -#define dgKzTLUT "__OTR__objects/object_kz/gKzTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzTLUT[] = dgKzTLUT; -#else -static const char gKzTLUT[] __attribute__((aligned (2))) = dgKzTLUT; -#endif - -#define dgKzEyeTLUT "__OTR__objects/object_kz/gKzEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzEyeTLUT[] = dgKzEyeTLUT; -#else -static const char gKzEyeTLUT[] __attribute__((aligned (2))) = dgKzEyeTLUT; -#endif - -#define dgKzFaceScalesTex "__OTR__objects/object_kz/gKzFaceScalesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzFaceScalesTex[] = dgKzFaceScalesTex; -#else -static const char gKzFaceScalesTex[] __attribute__((aligned (2))) = dgKzFaceScalesTex; -#endif - -#define dgKzSkinGradient1Tex "__OTR__objects/object_kz/gKzSkinGradient1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzSkinGradient1Tex[] = dgKzSkinGradient1Tex; -#else -static const char gKzSkinGradient1Tex[] __attribute__((aligned (2))) = dgKzSkinGradient1Tex; -#endif - -#define dgKzCrownTex "__OTR__objects/object_kz/gKzCrownTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzCrownTex[] = dgKzCrownTex; -#else -static const char gKzCrownTex[] __attribute__((aligned (2))) = dgKzCrownTex; -#endif - -#define dgKzSkinGradient2Tex "__OTR__objects/object_kz/gKzSkinGradient2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzSkinGradient2Tex[] = dgKzSkinGradient2Tex; -#else -static const char gKzSkinGradient2Tex[] __attribute__((aligned (2))) = dgKzSkinGradient2Tex; -#endif - -#define dobject_kz_Tex_001430 "__OTR__objects/object_kz/object_kz_Tex_001430" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kz_Tex_001430[] = dobject_kz_Tex_001430; -#else -static const char object_kz_Tex_001430[] __attribute__((aligned (2))) = dobject_kz_Tex_001430; -#endif - -#define dgKzEyeOpenTex "__OTR__objects/object_kz/gKzEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzEyeOpenTex[] = dgKzEyeOpenTex; -#else -static const char gKzEyeOpenTex[] __attribute__((aligned (2))) = dgKzEyeOpenTex; -#endif - -#define dgKzEyeHalfTex "__OTR__objects/object_kz/gKzEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzEyeHalfTex[] = dgKzEyeHalfTex; -#else -static const char gKzEyeHalfTex[] __attribute__((aligned (2))) = dgKzEyeHalfTex; -#endif - -#define dgKzEyeClosedTex "__OTR__objects/object_kz/gKzEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzEyeClosedTex[] = dgKzEyeClosedTex; -#else -static const char gKzEyeClosedTex[] __attribute__((aligned (2))) = dgKzEyeClosedTex; -#endif - -#define dgKzEyeOpen2Tex "__OTR__objects/object_kz/gKzEyeOpen2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzEyeOpen2Tex[] = dgKzEyeOpen2Tex; -#else -static const char gKzEyeOpen2Tex[] __attribute__((aligned (2))) = dgKzEyeOpen2Tex; -#endif - -#define dgKzHandAndFootTex "__OTR__objects/object_kz/gKzHandAndFootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzHandAndFootTex[] = dgKzHandAndFootTex; -#else -static const char gKzHandAndFootTex[] __attribute__((aligned (2))) = dgKzHandAndFootTex; -#endif - -#define dobject_kz_Tex_002570 "__OTR__objects/object_kz/object_kz_Tex_002570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_kz_Tex_002570[] = dobject_kz_Tex_002570; -#else -static const char object_kz_Tex_002570[] __attribute__((aligned (2))) = dobject_kz_Tex_002570; -#endif - -#define dgKzCloakOutlineTex "__OTR__objects/object_kz/gKzCloakOutlineTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzCloakOutlineTex[] = dgKzCloakOutlineTex; -#else -static const char gKzCloakOutlineTex[] __attribute__((aligned (2))) = dgKzCloakOutlineTex; -#endif - -#define dgKzCloakAndTorsoDL "__OTR__objects/object_kz/gKzCloakAndTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzCloakAndTorsoDL[] = dgKzCloakAndTorsoDL; -#else -static const char gKzCloakAndTorsoDL[] __attribute__((aligned (2))) = dgKzCloakAndTorsoDL; -#endif - -#define dgKzHeadDL "__OTR__objects/object_kz/gKzHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzHeadDL[] = dgKzHeadDL; -#else -static const char gKzHeadDL[] __attribute__((aligned (2))) = dgKzHeadDL; -#endif - -#define dgKzRightHandDL "__OTR__objects/object_kz/gKzRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzRightHandDL[] = dgKzRightHandDL; -#else -static const char gKzRightHandDL[] __attribute__((aligned (2))) = dgKzRightHandDL; -#endif - -#define dgKzLeftHandDL "__OTR__objects/object_kz/gKzLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzLeftHandDL[] = dgKzLeftHandDL; -#else -static const char gKzLeftHandDL[] __attribute__((aligned (2))) = dgKzLeftHandDL; -#endif - -#define dgKzPelvisDL "__OTR__objects/object_kz/gKzPelvisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzPelvisDL[] = dgKzPelvisDL; -#else -static const char gKzPelvisDL[] __attribute__((aligned (2))) = dgKzPelvisDL; -#endif - -#define dgKzRightThighDL "__OTR__objects/object_kz/gKzRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzRightThighDL[] = dgKzRightThighDL; -#else -static const char gKzRightThighDL[] __attribute__((aligned (2))) = dgKzRightThighDL; -#endif - -#define dgKzRightLegDL "__OTR__objects/object_kz/gKzRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzRightLegDL[] = dgKzRightLegDL; -#else -static const char gKzRightLegDL[] __attribute__((aligned (2))) = dgKzRightLegDL; -#endif - -#define dgKzRightFootDL "__OTR__objects/object_kz/gKzRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzRightFootDL[] = dgKzRightFootDL; -#else -static const char gKzRightFootDL[] __attribute__((aligned (2))) = dgKzRightFootDL; -#endif - -#define dgKzLeftThighDL "__OTR__objects/object_kz/gKzLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzLeftThighDL[] = dgKzLeftThighDL; -#else -static const char gKzLeftThighDL[] __attribute__((aligned (2))) = dgKzLeftThighDL; -#endif - -#define dgKzLeftLegDL "__OTR__objects/object_kz/gKzLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzLeftLegDL[] = dgKzLeftLegDL; -#else -static const char gKzLeftLegDL[] __attribute__((aligned (2))) = dgKzLeftLegDL; -#endif - -#define dgKzLeftFootDL "__OTR__objects/object_kz/gKzLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzLeftFootDL[] = dgKzLeftFootDL; -#else -static const char gKzLeftFootDL[] __attribute__((aligned (2))) = dgKzLeftFootDL; -#endif - -#define dgKzSkel "__OTR__objects/object_kz/gKzSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gKzSkel[] = dgKzSkel; -#else -static const char gKzSkel[] __attribute__((aligned (2))) = dgKzSkel; -#endif - +#include "align_asset_macro.h" + +#define dgKzMweepAnim "__OTR__objects/object_kz/gKzMweepAnim" +static const ALIGN_ASSET(2) char gKzMweepAnim[] = dgKzMweepAnim; + +#define dgKzIdleAnim "__OTR__objects/object_kz/gKzIdleAnim" +static const ALIGN_ASSET(2) char gKzIdleAnim[] = dgKzIdleAnim; + +#define dgKzTLUT "__OTR__objects/object_kz/gKzTLUT" +static const ALIGN_ASSET(2) char gKzTLUT[] = dgKzTLUT; + +#define dgKzEyeTLUT "__OTR__objects/object_kz/gKzEyeTLUT" +static const ALIGN_ASSET(2) char gKzEyeTLUT[] = dgKzEyeTLUT; + +#define dgKzFaceScalesTex "__OTR__objects/object_kz/gKzFaceScalesTex" +static const ALIGN_ASSET(2) char gKzFaceScalesTex[] = dgKzFaceScalesTex; + +#define dgKzSkinGradient1Tex "__OTR__objects/object_kz/gKzSkinGradient1Tex" +static const ALIGN_ASSET(2) char gKzSkinGradient1Tex[] = dgKzSkinGradient1Tex; + +#define dgKzCrownTex "__OTR__objects/object_kz/gKzCrownTex" +static const ALIGN_ASSET(2) char gKzCrownTex[] = dgKzCrownTex; + +#define dgKzSkinGradient2Tex "__OTR__objects/object_kz/gKzSkinGradient2Tex" +static const ALIGN_ASSET(2) char gKzSkinGradient2Tex[] = dgKzSkinGradient2Tex; + +#define dobject_kz_Tex_001430 "__OTR__objects/object_kz/object_kz_Tex_001430" +static const ALIGN_ASSET(2) char object_kz_Tex_001430[] = dobject_kz_Tex_001430; + +#define dgKzEyeOpenTex "__OTR__objects/object_kz/gKzEyeOpenTex" +static const ALIGN_ASSET(2) char gKzEyeOpenTex[] = dgKzEyeOpenTex; + +#define dgKzEyeHalfTex "__OTR__objects/object_kz/gKzEyeHalfTex" +static const ALIGN_ASSET(2) char gKzEyeHalfTex[] = dgKzEyeHalfTex; + +#define dgKzEyeClosedTex "__OTR__objects/object_kz/gKzEyeClosedTex" +static const ALIGN_ASSET(2) char gKzEyeClosedTex[] = dgKzEyeClosedTex; + +#define dgKzEyeOpen2Tex "__OTR__objects/object_kz/gKzEyeOpen2Tex" +static const ALIGN_ASSET(2) char gKzEyeOpen2Tex[] = dgKzEyeOpen2Tex; + +#define dgKzHandAndFootTex "__OTR__objects/object_kz/gKzHandAndFootTex" +static const ALIGN_ASSET(2) char gKzHandAndFootTex[] = dgKzHandAndFootTex; + +#define dobject_kz_Tex_002570 "__OTR__objects/object_kz/object_kz_Tex_002570" +static const ALIGN_ASSET(2) char object_kz_Tex_002570[] = dobject_kz_Tex_002570; + +#define dgKzCloakOutlineTex "__OTR__objects/object_kz/gKzCloakOutlineTex" +static const ALIGN_ASSET(2) char gKzCloakOutlineTex[] = dgKzCloakOutlineTex; + +#define dgKzCloakAndTorsoDL "__OTR__objects/object_kz/gKzCloakAndTorsoDL" +static const ALIGN_ASSET(2) char gKzCloakAndTorsoDL[] = dgKzCloakAndTorsoDL; + +#define dgKzHeadDL "__OTR__objects/object_kz/gKzHeadDL" +static const ALIGN_ASSET(2) char gKzHeadDL[] = dgKzHeadDL; + +#define dgKzRightHandDL "__OTR__objects/object_kz/gKzRightHandDL" +static const ALIGN_ASSET(2) char gKzRightHandDL[] = dgKzRightHandDL; + +#define dgKzLeftHandDL "__OTR__objects/object_kz/gKzLeftHandDL" +static const ALIGN_ASSET(2) char gKzLeftHandDL[] = dgKzLeftHandDL; + +#define dgKzPelvisDL "__OTR__objects/object_kz/gKzPelvisDL" +static const ALIGN_ASSET(2) char gKzPelvisDL[] = dgKzPelvisDL; + +#define dgKzRightThighDL "__OTR__objects/object_kz/gKzRightThighDL" +static const ALIGN_ASSET(2) char gKzRightThighDL[] = dgKzRightThighDL; + +#define dgKzRightLegDL "__OTR__objects/object_kz/gKzRightLegDL" +static const ALIGN_ASSET(2) char gKzRightLegDL[] = dgKzRightLegDL; + +#define dgKzRightFootDL "__OTR__objects/object_kz/gKzRightFootDL" +static const ALIGN_ASSET(2) char gKzRightFootDL[] = dgKzRightFootDL; + +#define dgKzLeftThighDL "__OTR__objects/object_kz/gKzLeftThighDL" +static const ALIGN_ASSET(2) char gKzLeftThighDL[] = dgKzLeftThighDL; + +#define dgKzLeftLegDL "__OTR__objects/object_kz/gKzLeftLegDL" +static const ALIGN_ASSET(2) char gKzLeftLegDL[] = dgKzLeftLegDL; + +#define dgKzLeftFootDL "__OTR__objects/object_kz/gKzLeftFootDL" +static const ALIGN_ASSET(2) char gKzLeftFootDL[] = dgKzLeftFootDL; + +#define dgKzSkel "__OTR__objects/object_kz/gKzSkel" +static const ALIGN_ASSET(2) char gKzSkel[] = dgKzSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_light_ring/object_light_ring.h b/soh/assets/objects/object_light_ring/object_light_ring.h index ef00a8636..b0fd766cb 100644 --- a/soh/assets/objects/object_light_ring/object_light_ring.h +++ b/soh/assets/objects/object_light_ring/object_light_ring.h @@ -1,16 +1,9 @@ #pragma once -#define dgGoldenGoddessLightRingDL "__OTR__objects/object_light_ring/gGoldenGoddessLightRingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGoddessLightRingDL[] = dgGoldenGoddessLightRingDL; -#else -static const char gGoldenGoddessLightRingDL[] __attribute__((aligned (2))) = dgGoldenGoddessLightRingDL; -#endif - -#define dgGoldenGoddessLightRingTex "__OTR__objects/object_light_ring/gGoldenGoddessLightRingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGoddessLightRingTex[] = dgGoldenGoddessLightRingTex; -#else -static const char gGoldenGoddessLightRingTex[] __attribute__((aligned (2))) = dgGoldenGoddessLightRingTex; -#endif - +#include "align_asset_macro.h" + +#define dgGoldenGoddessLightRingDL "__OTR__objects/object_light_ring/gGoldenGoddessLightRingDL" +static const ALIGN_ASSET(2) char gGoldenGoddessLightRingDL[] = dgGoldenGoddessLightRingDL; + +#define dgGoldenGoddessLightRingTex "__OTR__objects/object_light_ring/gGoldenGoddessLightRingTex" +static const ALIGN_ASSET(2) char gGoldenGoddessLightRingTex[] = dgGoldenGoddessLightRingTex; \ No newline at end of file diff --git a/soh/assets/objects/object_lightbox/object_lightbox.h b/soh/assets/objects/object_lightbox/object_lightbox.h index 5cec9ad60..c173d8d9a 100644 --- a/soh/assets/objects/object_lightbox/object_lightbox.h +++ b/soh/assets/objects/object_lightbox/object_lightbox.h @@ -1,79 +1,36 @@ #pragma once -#define dobject_lightbox_Blob_000000 "__OTR__objects/object_lightbox/object_lightbox_Blob_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_Blob_000000[] = dobject_lightbox_Blob_000000; -#else -static const char object_lightbox_Blob_000000[] __attribute__((aligned (2))) = dobject_lightbox_Blob_000000; -#endif - -#define dobject_lightbox_DL_000008 "__OTR__objects/object_lightbox/object_lightbox_DL_000008" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_DL_000008[] = dobject_lightbox_DL_000008; -#else -static const char object_lightbox_DL_000008[] __attribute__((aligned (2))) = dobject_lightbox_DL_000008; -#endif - -#define dobject_lightbox_Blob_0002A0 "__OTR__objects/object_lightbox/object_lightbox_Blob_0002A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_Blob_0002A0[] = dobject_lightbox_Blob_0002A0; -#else -static const char object_lightbox_Blob_0002A0[] __attribute__((aligned (2))) = dobject_lightbox_Blob_0002A0; -#endif - -#define dobject_lightbox_DL_0003D0 "__OTR__objects/object_lightbox/object_lightbox_DL_0003D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_DL_0003D0[] = dobject_lightbox_DL_0003D0; -#else -static const char object_lightbox_DL_0003D0[] __attribute__((aligned (2))) = dobject_lightbox_DL_0003D0; -#endif - -#define dobject_lightbox_Blob_000670 "__OTR__objects/object_lightbox/object_lightbox_Blob_000670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_Blob_000670[] = dobject_lightbox_Blob_000670; -#else -static const char object_lightbox_Blob_000670[] __attribute__((aligned (2))) = dobject_lightbox_Blob_000670; -#endif - -#define dobject_lightbox_DL_0007A0 "__OTR__objects/object_lightbox/object_lightbox_DL_0007A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_DL_0007A0[] = dobject_lightbox_DL_0007A0; -#else -static const char object_lightbox_DL_0007A0[] __attribute__((aligned (2))) = dobject_lightbox_DL_0007A0; -#endif - -#define dobject_lightbox_Blob_000A40 "__OTR__objects/object_lightbox/object_lightbox_Blob_000A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_Blob_000A40[] = dobject_lightbox_Blob_000A40; -#else -static const char object_lightbox_Blob_000A40[] __attribute__((aligned (2))) = dobject_lightbox_Blob_000A40; -#endif - -#define dobject_lightbox_DL_000B70 "__OTR__objects/object_lightbox/object_lightbox_DL_000B70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_DL_000B70[] = dobject_lightbox_DL_000B70; -#else -static const char object_lightbox_DL_000B70[] __attribute__((aligned (2))) = dobject_lightbox_DL_000B70; -#endif - -#define dobject_lightbox_Tex_000E10 "__OTR__objects/object_lightbox/object_lightbox_Tex_000E10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_Tex_000E10[] = dobject_lightbox_Tex_000E10; -#else -static const char object_lightbox_Tex_000E10[] __attribute__((aligned (2))) = dobject_lightbox_Tex_000E10; -#endif - -#define dobject_lightbox_Tex_001610 "__OTR__objects/object_lightbox/object_lightbox_Tex_001610" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_Tex_001610[] = dobject_lightbox_Tex_001610; -#else -static const char object_lightbox_Tex_001610[] __attribute__((aligned (2))) = dobject_lightbox_Tex_001610; -#endif - -#define dobject_lightbox_Col_001F10 "__OTR__objects/object_lightbox/object_lightbox_Col_001F10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightbox_Col_001F10[] = dobject_lightbox_Col_001F10; -#else -static const char object_lightbox_Col_001F10[] __attribute__((aligned (2))) = dobject_lightbox_Col_001F10; -#endif - +#include "align_asset_macro.h" + +#define dobject_lightbox_Blob_000000 "__OTR__objects/object_lightbox/object_lightbox_Blob_000000" +static const ALIGN_ASSET(2) char object_lightbox_Blob_000000[] = dobject_lightbox_Blob_000000; + +#define dobject_lightbox_DL_000008 "__OTR__objects/object_lightbox/object_lightbox_DL_000008" +static const ALIGN_ASSET(2) char object_lightbox_DL_000008[] = dobject_lightbox_DL_000008; + +#define dobject_lightbox_Blob_0002A0 "__OTR__objects/object_lightbox/object_lightbox_Blob_0002A0" +static const ALIGN_ASSET(2) char object_lightbox_Blob_0002A0[] = dobject_lightbox_Blob_0002A0; + +#define dobject_lightbox_DL_0003D0 "__OTR__objects/object_lightbox/object_lightbox_DL_0003D0" +static const ALIGN_ASSET(2) char object_lightbox_DL_0003D0[] = dobject_lightbox_DL_0003D0; + +#define dobject_lightbox_Blob_000670 "__OTR__objects/object_lightbox/object_lightbox_Blob_000670" +static const ALIGN_ASSET(2) char object_lightbox_Blob_000670[] = dobject_lightbox_Blob_000670; + +#define dobject_lightbox_DL_0007A0 "__OTR__objects/object_lightbox/object_lightbox_DL_0007A0" +static const ALIGN_ASSET(2) char object_lightbox_DL_0007A0[] = dobject_lightbox_DL_0007A0; + +#define dobject_lightbox_Blob_000A40 "__OTR__objects/object_lightbox/object_lightbox_Blob_000A40" +static const ALIGN_ASSET(2) char object_lightbox_Blob_000A40[] = dobject_lightbox_Blob_000A40; + +#define dobject_lightbox_DL_000B70 "__OTR__objects/object_lightbox/object_lightbox_DL_000B70" +static const ALIGN_ASSET(2) char object_lightbox_DL_000B70[] = dobject_lightbox_DL_000B70; + +#define dobject_lightbox_Tex_000E10 "__OTR__objects/object_lightbox/object_lightbox_Tex_000E10" +static const ALIGN_ASSET(2) char object_lightbox_Tex_000E10[] = dobject_lightbox_Tex_000E10; + +#define dobject_lightbox_Tex_001610 "__OTR__objects/object_lightbox/object_lightbox_Tex_001610" +static const ALIGN_ASSET(2) char object_lightbox_Tex_001610[] = dobject_lightbox_Tex_001610; + +#define dobject_lightbox_Col_001F10 "__OTR__objects/object_lightbox/object_lightbox_Col_001F10" +static const ALIGN_ASSET(2) char object_lightbox_Col_001F10[] = dobject_lightbox_Col_001F10; \ No newline at end of file diff --git a/soh/assets/objects/object_lightswitch/object_lightswitch.h b/soh/assets/objects/object_lightswitch/object_lightswitch.h index 0dd75ba01..2393f96d5 100644 --- a/soh/assets/objects/object_lightswitch/object_lightswitch.h +++ b/soh/assets/objects/object_lightswitch/object_lightswitch.h @@ -1,51 +1,24 @@ #pragma once -#define dobject_lightswitch_DL_000260 "__OTR__objects/object_lightswitch/object_lightswitch_DL_000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightswitch_DL_000260[] = dobject_lightswitch_DL_000260; -#else -static const char object_lightswitch_DL_000260[] __attribute__((aligned (2))) = dobject_lightswitch_DL_000260; -#endif - -#define dobject_lightswitch_DL_000398 "__OTR__objects/object_lightswitch/object_lightswitch_DL_000398" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightswitch_DL_000398[] = dobject_lightswitch_DL_000398; -#else -static const char object_lightswitch_DL_000398[] __attribute__((aligned (2))) = dobject_lightswitch_DL_000398; -#endif - -#define dobject_lightswitch_DL_000408 "__OTR__objects/object_lightswitch/object_lightswitch_DL_000408" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightswitch_DL_000408[] = dobject_lightswitch_DL_000408; -#else -static const char object_lightswitch_DL_000408[] __attribute__((aligned (2))) = dobject_lightswitch_DL_000408; -#endif - -#define dobject_lightswitch_Tex_000420 "__OTR__objects/object_lightswitch/object_lightswitch_Tex_000420" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightswitch_Tex_000420[] = dobject_lightswitch_Tex_000420; -#else -static const char object_lightswitch_Tex_000420[] __attribute__((aligned (2))) = dobject_lightswitch_Tex_000420; -#endif - -#define dobject_lightswitch_Tex_000C20 "__OTR__objects/object_lightswitch/object_lightswitch_Tex_000C20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightswitch_Tex_000C20[] = dobject_lightswitch_Tex_000C20; -#else -static const char object_lightswitch_Tex_000C20[] __attribute__((aligned (2))) = dobject_lightswitch_Tex_000C20; -#endif - -#define dobject_lightswitch_Tex_001420 "__OTR__objects/object_lightswitch/object_lightswitch_Tex_001420" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightswitch_Tex_001420[] = dobject_lightswitch_Tex_001420; -#else -static const char object_lightswitch_Tex_001420[] __attribute__((aligned (2))) = dobject_lightswitch_Tex_001420; -#endif - -#define dobject_lightswitch_Tex_001C20 "__OTR__objects/object_lightswitch/object_lightswitch_Tex_001C20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_lightswitch_Tex_001C20[] = dobject_lightswitch_Tex_001C20; -#else -static const char object_lightswitch_Tex_001C20[] __attribute__((aligned (2))) = dobject_lightswitch_Tex_001C20; -#endif - +#include "align_asset_macro.h" + +#define dobject_lightswitch_DL_000260 "__OTR__objects/object_lightswitch/object_lightswitch_DL_000260" +static const ALIGN_ASSET(2) char object_lightswitch_DL_000260[] = dobject_lightswitch_DL_000260; + +#define dobject_lightswitch_DL_000398 "__OTR__objects/object_lightswitch/object_lightswitch_DL_000398" +static const ALIGN_ASSET(2) char object_lightswitch_DL_000398[] = dobject_lightswitch_DL_000398; + +#define dobject_lightswitch_DL_000408 "__OTR__objects/object_lightswitch/object_lightswitch_DL_000408" +static const ALIGN_ASSET(2) char object_lightswitch_DL_000408[] = dobject_lightswitch_DL_000408; + +#define dobject_lightswitch_Tex_000420 "__OTR__objects/object_lightswitch/object_lightswitch_Tex_000420" +static const ALIGN_ASSET(2) char object_lightswitch_Tex_000420[] = dobject_lightswitch_Tex_000420; + +#define dobject_lightswitch_Tex_000C20 "__OTR__objects/object_lightswitch/object_lightswitch_Tex_000C20" +static const ALIGN_ASSET(2) char object_lightswitch_Tex_000C20[] = dobject_lightswitch_Tex_000C20; + +#define dobject_lightswitch_Tex_001420 "__OTR__objects/object_lightswitch/object_lightswitch_Tex_001420" +static const ALIGN_ASSET(2) char object_lightswitch_Tex_001420[] = dobject_lightswitch_Tex_001420; + +#define dobject_lightswitch_Tex_001C20 "__OTR__objects/object_lightswitch/object_lightswitch_Tex_001C20" +static const ALIGN_ASSET(2) char object_lightswitch_Tex_001C20[] = dobject_lightswitch_Tex_001C20; \ No newline at end of file diff --git a/soh/assets/objects/object_link_boy/object_link_boy.h b/soh/assets/objects/object_link_boy/object_link_boy.h index fed359c8a..26af6703c 100644 --- a/soh/assets/objects/object_link_boy/object_link_boy.h +++ b/soh/assets/objects/object_link_boy/object_link_boy.h @@ -1,1178 +1,507 @@ #pragma once -#define dgLinkAdultSkel "__OTR__objects/object_link_boy/gLinkAdultSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSkel[] = dgLinkAdultSkel; -#else -static const char gLinkAdultSkel[] __attribute__((aligned (2))) = dgLinkAdultSkel; -#endif - -#define dgLinkAdultWaistFarDL "__OTR__objects/object_link_boy/gLinkAdultWaistFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultWaistFarDL[] = dgLinkAdultWaistFarDL; -#else -static const char gLinkAdultWaistFarDL[] __attribute__((aligned (2))) = dgLinkAdultWaistFarDL; -#endif - -#define dgLinkAdultRightThighFarDL "__OTR__objects/object_link_boy/gLinkAdultRightThighFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightThighFarDL[] = dgLinkAdultRightThighFarDL; -#else -static const char gLinkAdultRightThighFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightThighFarDL; -#endif - -#define dgLinkAdultRightLegFarDL "__OTR__objects/object_link_boy/gLinkAdultRightLegFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightLegFarDL[] = dgLinkAdultRightLegFarDL; -#else -static const char gLinkAdultRightLegFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightLegFarDL; -#endif - -#define dgLinkAdultRightFootFarDL "__OTR__objects/object_link_boy/gLinkAdultRightFootFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightFootFarDL[] = dgLinkAdultRightFootFarDL; -#else -static const char gLinkAdultRightFootFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightFootFarDL; -#endif - -#define dgLinkAdultLeftThighFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftThighFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftThighFarDL[] = dgLinkAdultLeftThighFarDL; -#else -static const char gLinkAdultLeftThighFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftThighFarDL; -#endif - -#define dgLinkAdultLeftLegFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftLegFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftLegFarDL[] = dgLinkAdultLeftLegFarDL; -#else -static const char gLinkAdultLeftLegFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftLegFarDL; -#endif - -#define dgLinkAdultLeftFootFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftFootFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftFootFarDL[] = dgLinkAdultLeftFootFarDL; -#else -static const char gLinkAdultLeftFootFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftFootFarDL; -#endif - -#define dgLinkAdultCollarFarDL "__OTR__objects/object_link_boy/gLinkAdultCollarFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultCollarFarDL[] = dgLinkAdultCollarFarDL; -#else -static const char gLinkAdultCollarFarDL[] __attribute__((aligned (2))) = dgLinkAdultCollarFarDL; -#endif - -#define dgLinkAdultTorsoFarDL "__OTR__objects/object_link_boy/gLinkAdultTorsoFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultTorsoFarDL[] = dgLinkAdultTorsoFarDL; -#else -static const char gLinkAdultTorsoFarDL[] __attribute__((aligned (2))) = dgLinkAdultTorsoFarDL; -#endif - -#define dgLinkAdultHeadFarDL "__OTR__objects/object_link_boy/gLinkAdultHeadFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHeadFarDL[] = dgLinkAdultHeadFarDL; -#else -static const char gLinkAdultHeadFarDL[] __attribute__((aligned (2))) = dgLinkAdultHeadFarDL; -#endif - -#define dgLinkAdultHatFarDL "__OTR__objects/object_link_boy/gLinkAdultHatFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHatFarDL[] = dgLinkAdultHatFarDL; -#else -static const char gLinkAdultHatFarDL[] __attribute__((aligned (2))) = dgLinkAdultHatFarDL; -#endif - -#define dgLinkAdultRightShoulderFarDL "__OTR__objects/object_link_boy/gLinkAdultRightShoulderFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightShoulderFarDL[] = dgLinkAdultRightShoulderFarDL; -#else -static const char gLinkAdultRightShoulderFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightShoulderFarDL; -#endif - -#define dgLinkAdultRightArmFarDL "__OTR__objects/object_link_boy/gLinkAdultRightArmFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightArmFarDL[] = dgLinkAdultRightArmFarDL; -#else -static const char gLinkAdultRightArmFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightArmFarDL; -#endif - -#define dgLinkAdultRightHandFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandFarDL[] = dgLinkAdultRightHandFarDL; -#else -static const char gLinkAdultRightHandFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandFarDL; -#endif - -#define dgLinkAdultLeftShoulderFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftShoulderFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftShoulderFarDL[] = dgLinkAdultLeftShoulderFarDL; -#else -static const char gLinkAdultLeftShoulderFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftShoulderFarDL; -#endif - -#define dgLinkAdultLeftArmFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftArmFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftArmFarDL[] = dgLinkAdultLeftArmFarDL; -#else -static const char gLinkAdultLeftArmFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftArmFarDL; -#endif - -#define dgLinkAdultLeftHandFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandFarDL[] = dgLinkAdultLeftHandFarDL; -#else -static const char gLinkAdultLeftHandFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandFarDL; -#endif - -#define dgLinkAdultWaistNearDL "__OTR__objects/object_link_boy/gLinkAdultWaistNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultWaistNearDL[] = dgLinkAdultWaistNearDL; -#else -static const char gLinkAdultWaistNearDL[] __attribute__((aligned (2))) = dgLinkAdultWaistNearDL; -#endif - -#define dgLinkAdultRightThighNearDL "__OTR__objects/object_link_boy/gLinkAdultRightThighNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightThighNearDL[] = dgLinkAdultRightThighNearDL; -#else -static const char gLinkAdultRightThighNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightThighNearDL; -#endif - -#define dgLinkAdultRightLegNearDL "__OTR__objects/object_link_boy/gLinkAdultRightLegNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightLegNearDL[] = dgLinkAdultRightLegNearDL; -#else -static const char gLinkAdultRightLegNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightLegNearDL; -#endif - -#define dgLinkAdultRightFootNearDL "__OTR__objects/object_link_boy/gLinkAdultRightFootNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightFootNearDL[] = dgLinkAdultRightFootNearDL; -#else -static const char gLinkAdultRightFootNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightFootNearDL; -#endif - -#define dgLinkAdultLeftThighNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftThighNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftThighNearDL[] = dgLinkAdultLeftThighNearDL; -#else -static const char gLinkAdultLeftThighNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftThighNearDL; -#endif - -#define dgLinkAdultLeftLegNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftLegNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftLegNearDL[] = dgLinkAdultLeftLegNearDL; -#else -static const char gLinkAdultLeftLegNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftLegNearDL; -#endif - -#define dgLinkAdultLeftFootNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftFootNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftFootNearDL[] = dgLinkAdultLeftFootNearDL; -#else -static const char gLinkAdultLeftFootNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftFootNearDL; -#endif - -#define dgLinkAdultCollarNearDL "__OTR__objects/object_link_boy/gLinkAdultCollarNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultCollarNearDL[] = dgLinkAdultCollarNearDL; -#else -static const char gLinkAdultCollarNearDL[] __attribute__((aligned (2))) = dgLinkAdultCollarNearDL; -#endif - -#define dgLinkAdultTorsoNearDL "__OTR__objects/object_link_boy/gLinkAdultTorsoNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultTorsoNearDL[] = dgLinkAdultTorsoNearDL; -#else -static const char gLinkAdultTorsoNearDL[] __attribute__((aligned (2))) = dgLinkAdultTorsoNearDL; -#endif - -#define dgLinkAdultHeadNearDL "__OTR__objects/object_link_boy/gLinkAdultHeadNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHeadNearDL[] = dgLinkAdultHeadNearDL; -#else -static const char gLinkAdultHeadNearDL[] __attribute__((aligned (2))) = dgLinkAdultHeadNearDL; -#endif - -#define dgLinkAdultHatNearDL "__OTR__objects/object_link_boy/gLinkAdultHatNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHatNearDL[] = dgLinkAdultHatNearDL; -#else -static const char gLinkAdultHatNearDL[] __attribute__((aligned (2))) = dgLinkAdultHatNearDL; -#endif - -#define dgLinkAdultRightShoulderNearDL "__OTR__objects/object_link_boy/gLinkAdultRightShoulderNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightShoulderNearDL[] = dgLinkAdultRightShoulderNearDL; -#else -static const char gLinkAdultRightShoulderNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightShoulderNearDL; -#endif - -#define dgLinkAdultRightArmNearDL "__OTR__objects/object_link_boy/gLinkAdultRightArmNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightArmNearDL[] = dgLinkAdultRightArmNearDL; -#else -static const char gLinkAdultRightArmNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightArmNearDL; -#endif - -#define dgLinkAdultRightHandNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandNearDL[] = dgLinkAdultRightHandNearDL; -#else -static const char gLinkAdultRightHandNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandNearDL; -#endif - -#define dgLinkAdultLeftShoulderNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftShoulderNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftShoulderNearDL[] = dgLinkAdultLeftShoulderNearDL; -#else -static const char gLinkAdultLeftShoulderNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftShoulderNearDL; -#endif - -#define dgLinkAdultLeftArmNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftArmNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftArmNearDL[] = dgLinkAdultLeftArmNearDL; -#else -static const char gLinkAdultLeftArmNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftArmNearDL; -#endif - -#define dgLinkAdultLeftHandNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandNearDL[] = dgLinkAdultLeftHandNearDL; -#else -static const char gLinkAdultLeftHandNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandNearDL; -#endif - -#define dgLinkAdultBottleDL "__OTR__objects/object_link_boy/gLinkAdultBottleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBottleDL[] = dgLinkAdultBottleDL; -#else -static const char gLinkAdultBottleDL[] __attribute__((aligned (2))) = dgLinkAdultBottleDL; -#endif - -#define dgLinkAdultHandHoldingBottleDL "__OTR__objects/object_link_boy/gLinkAdultHandHoldingBottleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHandHoldingBottleDL[] = dgLinkAdultHandHoldingBottleDL; -#else -static const char gLinkAdultHandHoldingBottleDL[] __attribute__((aligned (2))) = dgLinkAdultHandHoldingBottleDL; -#endif - -#define dgLinkAdultRightHandClosedNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandClosedNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandClosedNearDL[] = dgLinkAdultRightHandClosedNearDL; -#else -static const char gLinkAdultRightHandClosedNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandClosedNearDL; -#endif - -#define dgLinkAdultRightHandClosedFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandClosedFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandClosedFarDL[] = dgLinkAdultRightHandClosedFarDL; -#else -static const char gLinkAdultRightHandClosedFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandClosedFarDL; -#endif - -#define dgLinkAdultLeftHandHoldingMasterSwordNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingMasterSwordNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandHoldingMasterSwordNearDL[] = dgLinkAdultLeftHandHoldingMasterSwordNearDL; -#else -static const char gLinkAdultLeftHandHoldingMasterSwordNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandHoldingMasterSwordNearDL; -#endif - -#define dgLinkAdultLeftHandHoldingMasterSwordFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingMasterSwordFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandHoldingMasterSwordFarDL[] = dgLinkAdultLeftHandHoldingMasterSwordFarDL; -#else -static const char gLinkAdultLeftHandHoldingMasterSwordFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandHoldingMasterSwordFarDL; -#endif - -#define dgLinkAdultLeftHandClosedNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandClosedNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandClosedNearDL[] = dgLinkAdultLeftHandClosedNearDL; -#else -static const char gLinkAdultLeftHandClosedNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandClosedNearDL; -#endif - -#define dgLinkAdultLeftHandClosedFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandClosedFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandClosedFarDL[] = dgLinkAdultLeftHandClosedFarDL; -#else -static const char gLinkAdultLeftHandClosedFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandClosedFarDL; -#endif - -#define dgLinkAdultRightArmOutNearDL "__OTR__objects/object_link_boy/gLinkAdultRightArmOutNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightArmOutNearDL[] = dgLinkAdultRightArmOutNearDL; -#else -static const char gLinkAdultRightArmOutNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightArmOutNearDL; -#endif - -#define dgLinkAdultRightHandOutNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandOutNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandOutNearDL[] = dgLinkAdultRightHandOutNearDL; -#else -static const char gLinkAdultRightHandOutNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandOutNearDL; -#endif - -#define dgLinkAdultLeftArmOutNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftArmOutNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftArmOutNearDL[] = dgLinkAdultLeftArmOutNearDL; -#else -static const char gLinkAdultLeftArmOutNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftArmOutNearDL; -#endif - -#define dgLinkAdultLeftHandOutNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandOutNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandOutNearDL[] = dgLinkAdultLeftHandOutNearDL; -#else -static const char gLinkAdultLeftHandOutNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandOutNearDL; -#endif - -#define dgLinkAdultMasterSwordAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultMasterSwordAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMasterSwordAndSheathNearDL[] = dgLinkAdultMasterSwordAndSheathNearDL; -#else -static const char gLinkAdultMasterSwordAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkAdultMasterSwordAndSheathNearDL; -#endif - -#define dgLinkAdultMasterSwordAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultMasterSwordAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMasterSwordAndSheathFarDL[] = dgLinkAdultMasterSwordAndSheathFarDL; -#else -static const char gLinkAdultMasterSwordAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkAdultMasterSwordAndSheathFarDL; -#endif - -#define dgLinkAdultHylianShieldSwordAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultHylianShieldSwordAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHylianShieldSwordAndSheathNearDL[] = dgLinkAdultHylianShieldSwordAndSheathNearDL; -#else -static const char gLinkAdultHylianShieldSwordAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkAdultHylianShieldSwordAndSheathNearDL; -#endif - -#define dgLinkAdultHylianShieldSwordAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultHylianShieldSwordAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHylianShieldSwordAndSheathFarDL[] = dgLinkAdultHylianShieldSwordAndSheathFarDL; -#else -static const char gLinkAdultHylianShieldSwordAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkAdultHylianShieldSwordAndSheathFarDL; -#endif - -#define dgLinkAdultHylianShieldAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultHylianShieldAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHylianShieldAndSheathNearDL[] = dgLinkAdultHylianShieldAndSheathNearDL; -#else -static const char gLinkAdultHylianShieldAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkAdultHylianShieldAndSheathNearDL; -#endif - -#define dgLinkAdultHylianShieldAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultHylianShieldAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHylianShieldAndSheathFarDL[] = dgLinkAdultHylianShieldAndSheathFarDL; -#else -static const char gLinkAdultHylianShieldAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkAdultHylianShieldAndSheathFarDL; -#endif - -#define dgLinkAdultMirrorShieldAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMirrorShieldAndSheathNearDL[] = dgLinkAdultMirrorShieldAndSheathNearDL; -#else -static const char gLinkAdultMirrorShieldAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkAdultMirrorShieldAndSheathNearDL; -#endif - -#define dgLinkAdultMirrorShieldAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMirrorShieldAndSheathFarDL[] = dgLinkAdultMirrorShieldAndSheathFarDL; -#else -static const char gLinkAdultMirrorShieldAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkAdultMirrorShieldAndSheathFarDL; -#endif - -#define dgLinkAdultMirrorShieldSwordAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldSwordAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMirrorShieldSwordAndSheathNearDL[] = dgLinkAdultMirrorShieldSwordAndSheathNearDL; -#else -static const char gLinkAdultMirrorShieldSwordAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkAdultMirrorShieldSwordAndSheathNearDL; -#endif - -#define dgLinkAdultMirrorShieldSwordAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldSwordAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMirrorShieldSwordAndSheathFarDL[] = dgLinkAdultMirrorShieldSwordAndSheathFarDL; -#else -static const char gLinkAdultMirrorShieldSwordAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkAdultMirrorShieldSwordAndSheathFarDL; -#endif - -#define dgLinkAdultLeftHandHoldingBgsNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingBgsNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandHoldingBgsNearDL[] = dgLinkAdultLeftHandHoldingBgsNearDL; -#else -static const char gLinkAdultLeftHandHoldingBgsNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandHoldingBgsNearDL; -#endif - -#define dgLinkAdultLeftHandHoldingBgsFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingBgsFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandHoldingBgsFarDL[] = dgLinkAdultLeftHandHoldingBgsFarDL; -#else -static const char gLinkAdultLeftHandHoldingBgsFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandHoldingBgsFarDL; -#endif - -#define dgLinkAdultHandHoldingBrokenGiantsKnifeDL "__OTR__objects/object_link_boy/gLinkAdultHandHoldingBrokenGiantsKnifeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHandHoldingBrokenGiantsKnifeDL[] = dgLinkAdultHandHoldingBrokenGiantsKnifeDL; -#else -static const char gLinkAdultHandHoldingBrokenGiantsKnifeDL[] __attribute__((aligned (2))) = dgLinkAdultHandHoldingBrokenGiantsKnifeDL; -#endif - -#define dgLinkAdultHandHoldingBrokenGiantsKnifeFarDL "__OTR__objects/object_link_boy/gLinkAdultHandHoldingBrokenGiantsKnifeFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHandHoldingBrokenGiantsKnifeFarDL[] = dgLinkAdultHandHoldingBrokenGiantsKnifeFarDL; -#else -static const char gLinkAdultHandHoldingBrokenGiantsKnifeFarDL[] __attribute__((aligned (2))) = dgLinkAdultHandHoldingBrokenGiantsKnifeFarDL; -#endif - -#define dgLinkAdultSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSheathNearDL[] = dgLinkAdultSheathNearDL; -#else -static const char gLinkAdultSheathNearDL[] __attribute__((aligned (2))) = dgLinkAdultSheathNearDL; -#endif - -#define dgLinkAdultSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSheathFarDL[] = dgLinkAdultSheathFarDL; -#else -static const char gLinkAdultSheathFarDL[] __attribute__((aligned (2))) = dgLinkAdultSheathFarDL; -#endif - -#define dgLinkAdultRightHandHoldingHylianShieldNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingHylianShieldNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingHylianShieldNearDL[] = dgLinkAdultRightHandHoldingHylianShieldNearDL; -#else -static const char gLinkAdultRightHandHoldingHylianShieldNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingHylianShieldNearDL; -#endif - -#define dgLinkAdultRightHandHoldingHylianShieldFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingHylianShieldFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingHylianShieldFarDL[] = dgLinkAdultRightHandHoldingHylianShieldFarDL; -#else -static const char gLinkAdultRightHandHoldingHylianShieldFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingHylianShieldFarDL; -#endif - -#define dgLinkAdultBrokenGiantsKnifeBladeDL "__OTR__objects/object_link_boy/gLinkAdultBrokenGiantsKnifeBladeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBrokenGiantsKnifeBladeDL[] = dgLinkAdultBrokenGiantsKnifeBladeDL; -#else -static const char gLinkAdultBrokenGiantsKnifeBladeDL[] __attribute__((aligned (2))) = dgLinkAdultBrokenGiantsKnifeBladeDL; -#endif - -#define dgLinkAdultShieldHandleTex "__OTR__objects/object_link_boy/gLinkAdultShieldHandleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultShieldHandleTex[] = dgLinkAdultShieldHandleTex; -#else -static const char gLinkAdultShieldHandleTex[] __attribute__((aligned (2))) = dgLinkAdultShieldHandleTex; -#endif - -#define dgLinkAdultHylianShieldBackTex "__OTR__objects/object_link_boy/gLinkAdultHylianShieldBackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHylianShieldBackTex[] = dgLinkAdultHylianShieldBackTex; -#else -static const char gLinkAdultHylianShieldBackTex[] __attribute__((aligned (2))) = dgLinkAdultHylianShieldBackTex; -#endif - -#define dgLinkAdultSheathBandTex "__OTR__objects/object_link_boy/gLinkAdultSheathBandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSheathBandTex[] = dgLinkAdultSheathBandTex; -#else -static const char gLinkAdultSheathBandTex[] __attribute__((aligned (2))) = dgLinkAdultSheathBandTex; -#endif - -#define dgLinkAdultMirrorShieldLowerDesignTex "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldLowerDesignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMirrorShieldLowerDesignTex[] = dgLinkAdultMirrorShieldLowerDesignTex; -#else -static const char gLinkAdultMirrorShieldLowerDesignTex[] __attribute__((aligned (2))) = dgLinkAdultMirrorShieldLowerDesignTex; -#endif - -#define dgLinkAdultMirrorShieldUpperDesignTex "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldUpperDesignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMirrorShieldUpperDesignTex[] = dgLinkAdultMirrorShieldUpperDesignTex; -#else -static const char gLinkAdultMirrorShieldUpperDesignTex[] __attribute__((aligned (2))) = dgLinkAdultMirrorShieldUpperDesignTex; -#endif - -#define dgLinkAdultDefaultGauntlet1Tex "__OTR__objects/object_link_boy/gLinkAdultDefaultGauntlet1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultDefaultGauntlet1Tex[] = dgLinkAdultDefaultGauntlet1Tex; -#else -static const char gLinkAdultDefaultGauntlet1Tex[] __attribute__((aligned (2))) = dgLinkAdultDefaultGauntlet1Tex; -#endif - -#define dgLinkAdultDefaultGauntlet2Tex "__OTR__objects/object_link_boy/gLinkAdultDefaultGauntlet2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultDefaultGauntlet2Tex[] = dgLinkAdultDefaultGauntlet2Tex; -#else -static const char gLinkAdultDefaultGauntlet2Tex[] __attribute__((aligned (2))) = dgLinkAdultDefaultGauntlet2Tex; -#endif - -#define dgLinkAdultHandTex "__OTR__objects/object_link_boy/gLinkAdultHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHandTex[] = dgLinkAdultHandTex; -#else -static const char gLinkAdultHandTex[] __attribute__((aligned (2))) = dgLinkAdultHandTex; -#endif - -#define dgLinkAdultClosedHandThumbTex "__OTR__objects/object_link_boy/gLinkAdultClosedHandThumbTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultClosedHandThumbTex[] = dgLinkAdultClosedHandThumbTex; -#else -static const char gLinkAdultClosedHandThumbTex[] __attribute__((aligned (2))) = dgLinkAdultClosedHandThumbTex; -#endif - -#define dgLinkAdultClosedHandSideTex "__OTR__objects/object_link_boy/gLinkAdultClosedHandSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultClosedHandSideTex[] = dgLinkAdultClosedHandSideTex; -#else -static const char gLinkAdultClosedHandSideTex[] __attribute__((aligned (2))) = dgLinkAdultClosedHandSideTex; -#endif - -#define dgLinkAdultBowBodyTex "__OTR__objects/object_link_boy/gLinkAdultBowBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBowBodyTex[] = dgLinkAdultBowBodyTex; -#else -static const char gLinkAdultBowBodyTex[] __attribute__((aligned (2))) = dgLinkAdultBowBodyTex; -#endif - -#define dgLinkAdultSwordEmblemTex "__OTR__objects/object_link_boy/gLinkAdultSwordEmblemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSwordEmblemTex[] = dgLinkAdultSwordEmblemTex; -#else -static const char gLinkAdultSwordEmblemTex[] __attribute__((aligned (2))) = dgLinkAdultSwordEmblemTex; -#endif - -#define dgLinkAdultArmOutSleeveTex "__OTR__objects/object_link_boy/gLinkAdultArmOutSleeveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultArmOutSleeveTex[] = dgLinkAdultArmOutSleeveTex; -#else -static const char gLinkAdultArmOutSleeveTex[] __attribute__((aligned (2))) = dgLinkAdultArmOutSleeveTex; -#endif - -#define dgLinkAdultArmOutUpperGauntletTex "__OTR__objects/object_link_boy/gLinkAdultArmOutUpperGauntletTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultArmOutUpperGauntletTex[] = dgLinkAdultArmOutUpperGauntletTex; -#else -static const char gLinkAdultArmOutUpperGauntletTex[] __attribute__((aligned (2))) = dgLinkAdultArmOutUpperGauntletTex; -#endif - -#define dgLinkAdultArmGauntletTex "__OTR__objects/object_link_boy/gLinkAdultArmGauntletTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultArmGauntletTex[] = dgLinkAdultArmGauntletTex; -#else -static const char gLinkAdultArmGauntletTex[] __attribute__((aligned (2))) = dgLinkAdultArmGauntletTex; -#endif - -#define dgLinkAdultBoot2Tex "__OTR__objects/object_link_boy/gLinkAdultBoot2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBoot2Tex[] = dgLinkAdultBoot2Tex; -#else -static const char gLinkAdultBoot2Tex[] __attribute__((aligned (2))) = dgLinkAdultBoot2Tex; -#endif - -#define dgLinkAdultBootBuckleTex "__OTR__objects/object_link_boy/gLinkAdultBootBuckleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBootBuckleTex[] = dgLinkAdultBootBuckleTex; -#else -static const char gLinkAdultBootBuckleTex[] __attribute__((aligned (2))) = dgLinkAdultBootBuckleTex; -#endif - -#define dgLinkAdultEarringTex "__OTR__objects/object_link_boy/gLinkAdultEarringTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEarringTex[] = dgLinkAdultEarringTex; -#else -static const char gLinkAdultEarringTex[] __attribute__((aligned (2))) = dgLinkAdultEarringTex; -#endif - -#define dgLinkAdultRightHandHoldingBowNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingBowNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingBowNearDL[] = dgLinkAdultRightHandHoldingBowNearDL; -#else -static const char gLinkAdultRightHandHoldingBowNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingBowNearDL; -#endif - -#define dgLinkAdultRightHandHoldingBowFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingBowFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingBowFarDL[] = dgLinkAdultRightHandHoldingBowFarDL; -#else -static const char gLinkAdultRightHandHoldingBowFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingBowFarDL; -#endif - -#define dgLinkAdultRightHandHoldingBowFirstPersonDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingBowFirstPersonDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingBowFirstPersonDL[] = dgLinkAdultRightHandHoldingBowFirstPersonDL; -#else -static const char gLinkAdultRightHandHoldingBowFirstPersonDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingBowFirstPersonDL; -#endif - -#define dgLinkAdultBowStringDL "__OTR__objects/object_link_boy/gLinkAdultBowStringDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBowStringDL[] = dgLinkAdultBowStringDL; -#else -static const char gLinkAdultBowStringDL[] __attribute__((aligned (2))) = dgLinkAdultBowStringDL; -#endif - -#define dgLinkAdultLeftHandHoldingHammerNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingHammerNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandHoldingHammerNearDL[] = dgLinkAdultLeftHandHoldingHammerNearDL; -#else -static const char gLinkAdultLeftHandHoldingHammerNearDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandHoldingHammerNearDL; -#endif - -#define dgLinkAdultLeftHandHoldingHammerFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingHammerFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHandHoldingHammerFarDL[] = dgLinkAdultLeftHandHoldingHammerFarDL; -#else -static const char gLinkAdultLeftHandHoldingHammerFarDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHandHoldingHammerFarDL; -#endif - -#define dgLinkAdultRightHandHoldingMirrorShieldNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingMirrorShieldNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingMirrorShieldNearDL[] = dgLinkAdultRightHandHoldingMirrorShieldNearDL; -#else -static const char gLinkAdultRightHandHoldingMirrorShieldNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingMirrorShieldNearDL; -#endif - -#define dgLinkAdultRightHandHoldingMirrorShieldFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingMirrorShieldFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingMirrorShieldFarDL[] = dgLinkAdultRightHandHoldingMirrorShieldFarDL; -#else -static const char gLinkAdultRightHandHoldingMirrorShieldFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingMirrorShieldFarDL; -#endif - -#define dgLinkAdultRightHandHoldingOotNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingOotNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingOotNearDL[] = dgLinkAdultRightHandHoldingOotNearDL; -#else -static const char gLinkAdultRightHandHoldingOotNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingOotNearDL; -#endif - -#define dgLinkAdultRightHandHoldingOotFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingOotFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingOotFarDL[] = dgLinkAdultRightHandHoldingOotFarDL; -#else -static const char gLinkAdultRightHandHoldingOotFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingOotFarDL; -#endif - -#define dgLinkAdultRightHandHoldingHookshotNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingHookshotNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingHookshotNearDL[] = dgLinkAdultRightHandHoldingHookshotNearDL; -#else -static const char gLinkAdultRightHandHoldingHookshotNearDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingHookshotNearDL; -#endif - -#define dgLinkAdultRightHandHoldingHookshotFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingHookshotFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHandHoldingHookshotFarDL[] = dgLinkAdultRightHandHoldingHookshotFarDL; -#else -static const char gLinkAdultRightHandHoldingHookshotFarDL[] __attribute__((aligned (2))) = dgLinkAdultRightHandHoldingHookshotFarDL; -#endif - -#define dgLinkAdultHookshotChainDL "__OTR__objects/object_link_boy/gLinkAdultHookshotChainDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHookshotChainDL[] = dgLinkAdultHookshotChainDL; -#else -static const char gLinkAdultHookshotChainDL[] __attribute__((aligned (2))) = dgLinkAdultHookshotChainDL; -#endif - -#define dgLinkAdultHookshotTipDL "__OTR__objects/object_link_boy/gLinkAdultHookshotTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHookshotTipDL[] = dgLinkAdultHookshotTipDL; -#else -static const char gLinkAdultHookshotTipDL[] __attribute__((aligned (2))) = dgLinkAdultHookshotTipDL; -#endif - -#define dgLinkAdultHookshotMetalTex "__OTR__objects/object_link_boy/gLinkAdultHookshotMetalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHookshotMetalTex[] = dgLinkAdultHookshotMetalTex; -#else -static const char gLinkAdultHookshotMetalTex[] __attribute__((aligned (2))) = dgLinkAdultHookshotMetalTex; -#endif - -#define dgLinkAdultHookshotHandleTex "__OTR__objects/object_link_boy/gLinkAdultHookshotHandleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHookshotHandleTex[] = dgLinkAdultHookshotHandleTex; -#else -static const char gLinkAdultHookshotHandleTex[] __attribute__((aligned (2))) = dgLinkAdultHookshotHandleTex; -#endif - -#define dgLinkAdultHookshotDesignTex "__OTR__objects/object_link_boy/gLinkAdultHookshotDesignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHookshotDesignTex[] = dgLinkAdultHookshotDesignTex; -#else -static const char gLinkAdultHookshotDesignTex[] __attribute__((aligned (2))) = dgLinkAdultHookshotDesignTex; -#endif - -#define dgLinkAdultHookshotChainTex "__OTR__objects/object_link_boy/gLinkAdultHookshotChainTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHookshotChainTex[] = dgLinkAdultHookshotChainTex; -#else -static const char gLinkAdultHookshotChainTex[] __attribute__((aligned (2))) = dgLinkAdultHookshotChainTex; -#endif - -#define dgLinkAdultHookshotReticleTex "__OTR__objects/object_link_boy/gLinkAdultHookshotReticleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHookshotReticleTex[] = dgLinkAdultHookshotReticleTex; -#else -static const char gLinkAdultHookshotReticleTex[] __attribute__((aligned (2))) = dgLinkAdultHookshotReticleTex; -#endif - -#define dgLinkAdultBeltClaspTex "__OTR__objects/object_link_boy/gLinkAdultBeltClaspTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBeltClaspTex[] = dgLinkAdultBeltClaspTex; -#else -static const char gLinkAdultBeltClaspTex[] __attribute__((aligned (2))) = dgLinkAdultBeltClaspTex; -#endif - -#define dgLinkAdultSkirtAndHatTex "__OTR__objects/object_link_boy/gLinkAdultSkirtAndHatTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSkirtAndHatTex[] = dgLinkAdultSkirtAndHatTex; -#else -static const char gLinkAdultSkirtAndHatTex[] __attribute__((aligned (2))) = dgLinkAdultSkirtAndHatTex; -#endif - -#define dgLinkAdultBeltTex "__OTR__objects/object_link_boy/gLinkAdultBeltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBeltTex[] = dgLinkAdultBeltTex; -#else -static const char gLinkAdultBeltTex[] __attribute__((aligned (2))) = dgLinkAdultBeltTex; -#endif - -#define dgLinkAdultLegTex "__OTR__objects/object_link_boy/gLinkAdultLegTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLegTex[] = dgLinkAdultLegTex; -#else -static const char gLinkAdultLegTex[] __attribute__((aligned (2))) = dgLinkAdultLegTex; -#endif - -#define dgLinkAdultBootFarTex "__OTR__objects/object_link_boy/gLinkAdultBootFarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBootFarTex[] = dgLinkAdultBootFarTex; -#else -static const char gLinkAdultBootFarTex[] __attribute__((aligned (2))) = dgLinkAdultBootFarTex; -#endif - -#define dgLinkAdultBootTex "__OTR__objects/object_link_boy/gLinkAdultBootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultBootTex[] = dgLinkAdultBootTex; -#else -static const char gLinkAdultBootTex[] __attribute__((aligned (2))) = dgLinkAdultBootTex; -#endif - -#define dgLinkAdultCollarTex "__OTR__objects/object_link_boy/gLinkAdultCollarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultCollarTex[] = dgLinkAdultCollarTex; -#else -static const char gLinkAdultCollarTex[] __attribute__((aligned (2))) = dgLinkAdultCollarTex; -#endif - -#define dgLinkAdultTunicTex "__OTR__objects/object_link_boy/gLinkAdultTunicTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultTunicTex[] = dgLinkAdultTunicTex; -#else -static const char gLinkAdultTunicTex[] __attribute__((aligned (2))) = dgLinkAdultTunicTex; -#endif - -#define dgLinkAdultNeckTex "__OTR__objects/object_link_boy/gLinkAdultNeckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultNeckTex[] = dgLinkAdultNeckTex; -#else -static const char gLinkAdultNeckTex[] __attribute__((aligned (2))) = dgLinkAdultNeckTex; -#endif - -#define dgLinkAdultNose2Tex "__OTR__objects/object_link_boy/gLinkAdultNose2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultNose2Tex[] = dgLinkAdultNose2Tex; -#else -static const char gLinkAdultNose2Tex[] __attribute__((aligned (2))) = dgLinkAdultNose2Tex; -#endif - -#define dgLinkAdultLeftGauntletPlate1DL "__OTR__objects/object_link_boy/gLinkAdultLeftGauntletPlate1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftGauntletPlate1DL[] = dgLinkAdultLeftGauntletPlate1DL; -#else -static const char gLinkAdultLeftGauntletPlate1DL[] __attribute__((aligned (2))) = dgLinkAdultLeftGauntletPlate1DL; -#endif - -#define dgLinkAdultLeftGauntletPlate2DL "__OTR__objects/object_link_boy/gLinkAdultLeftGauntletPlate2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftGauntletPlate2DL[] = dgLinkAdultLeftGauntletPlate2DL; -#else -static const char gLinkAdultLeftGauntletPlate2DL[] __attribute__((aligned (2))) = dgLinkAdultLeftGauntletPlate2DL; -#endif - -#define dgLinkAdultLeftGauntletPlate3DL "__OTR__objects/object_link_boy/gLinkAdultLeftGauntletPlate3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftGauntletPlate3DL[] = dgLinkAdultLeftGauntletPlate3DL; -#else -static const char gLinkAdultLeftGauntletPlate3DL[] __attribute__((aligned (2))) = dgLinkAdultLeftGauntletPlate3DL; -#endif - -#define dgLinkAdultRightGauntletPlate1DL "__OTR__objects/object_link_boy/gLinkAdultRightGauntletPlate1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightGauntletPlate1DL[] = dgLinkAdultRightGauntletPlate1DL; -#else -static const char gLinkAdultRightGauntletPlate1DL[] __attribute__((aligned (2))) = dgLinkAdultRightGauntletPlate1DL; -#endif - -#define dgLinkAdultRightGauntletPlate2DL "__OTR__objects/object_link_boy/gLinkAdultRightGauntletPlate2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightGauntletPlate2DL[] = dgLinkAdultRightGauntletPlate2DL; -#else -static const char gLinkAdultRightGauntletPlate2DL[] __attribute__((aligned (2))) = dgLinkAdultRightGauntletPlate2DL; -#endif - -#define dgLinkAdultRightGauntletPlate3DL "__OTR__objects/object_link_boy/gLinkAdultRightGauntletPlate3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightGauntletPlate3DL[] = dgLinkAdultRightGauntletPlate3DL; -#else -static const char gLinkAdultRightGauntletPlate3DL[] __attribute__((aligned (2))) = dgLinkAdultRightGauntletPlate3DL; -#endif - -#define dgLinkAdultGauntletPlate1Tex "__OTR__objects/object_link_boy/gLinkAdultGauntletPlate1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultGauntletPlate1Tex[] = dgLinkAdultGauntletPlate1Tex; -#else -static const char gLinkAdultGauntletPlate1Tex[] __attribute__((aligned (2))) = dgLinkAdultGauntletPlate1Tex; -#endif - -#define dgLinkAdultGauntletPlate2Tex "__OTR__objects/object_link_boy/gLinkAdultGauntletPlate2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultGauntletPlate2Tex[] = dgLinkAdultGauntletPlate2Tex; -#else -static const char gLinkAdultGauntletPlate2Tex[] __attribute__((aligned (2))) = dgLinkAdultGauntletPlate2Tex; -#endif - -#define dgLinkAdultHookshotReticleDL "__OTR__objects/object_link_boy/gLinkAdultHookshotReticleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHookshotReticleDL[] = dgLinkAdultHookshotReticleDL; -#else -static const char gLinkAdultHookshotReticleDL[] __attribute__((aligned (2))) = dgLinkAdultHookshotReticleDL; -#endif - -#define dgLinkAdultLeftIronBootDL "__OTR__objects/object_link_boy/gLinkAdultLeftIronBootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftIronBootDL[] = dgLinkAdultLeftIronBootDL; -#else -static const char gLinkAdultLeftIronBootDL[] __attribute__((aligned (2))) = dgLinkAdultLeftIronBootDL; -#endif - -#define dgLinkAdultRightIronBootDL "__OTR__objects/object_link_boy/gLinkAdultRightIronBootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightIronBootDL[] = dgLinkAdultRightIronBootDL; -#else -static const char gLinkAdultRightIronBootDL[] __attribute__((aligned (2))) = dgLinkAdultRightIronBootDL; -#endif - -#define dgLinkAdultIronBootTex "__OTR__objects/object_link_boy/gLinkAdultIronBootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultIronBootTex[] = dgLinkAdultIronBootTex; -#else -static const char gLinkAdultIronBootTex[] __attribute__((aligned (2))) = dgLinkAdultIronBootTex; -#endif - -#define dgLinkAdultLeftHoverBootDL "__OTR__objects/object_link_boy/gLinkAdultLeftHoverBootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultLeftHoverBootDL[] = dgLinkAdultLeftHoverBootDL; -#else -static const char gLinkAdultLeftHoverBootDL[] __attribute__((aligned (2))) = dgLinkAdultLeftHoverBootDL; -#endif - -#define dgLinkAdultRightHoverBootDL "__OTR__objects/object_link_boy/gLinkAdultRightHoverBootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultRightHoverBootDL[] = dgLinkAdultRightHoverBootDL; -#else -static const char gLinkAdultRightHoverBootDL[] __attribute__((aligned (2))) = dgLinkAdultRightHoverBootDL; -#endif - -#define dgLinkAdultHoverBootsHeelTex "__OTR__objects/object_link_boy/gLinkAdultHoverBootsHeelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHoverBootsHeelTex[] = dgLinkAdultHoverBootsHeelTex; -#else -static const char gLinkAdultHoverBootsHeelTex[] __attribute__((aligned (2))) = dgLinkAdultHoverBootsHeelTex; -#endif - -#define dgLinkAdultHoverBootsJetTex "__OTR__objects/object_link_boy/gLinkAdultHoverBootsJetTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHoverBootsJetTex[] = dgLinkAdultHoverBootsJetTex; -#else -static const char gLinkAdultHoverBootsJetTex[] __attribute__((aligned (2))) = dgLinkAdultHoverBootsJetTex; -#endif - -#define dgLinkAdultHoverBootsFeatherTex "__OTR__objects/object_link_boy/gLinkAdultHoverBootsFeatherTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHoverBootsFeatherTex[] = dgLinkAdultHoverBootsFeatherTex; -#else -static const char gLinkAdultHoverBootsFeatherTex[] __attribute__((aligned (2))) = dgLinkAdultHoverBootsFeatherTex; -#endif - -#define dgLinkAdultSheathTex "__OTR__objects/object_link_boy/gLinkAdultSheathTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSheathTex[] = dgLinkAdultSheathTex; -#else -static const char gLinkAdultSheathTex[] __attribute__((aligned (2))) = dgLinkAdultSheathTex; -#endif - -#define dgLinkAdultSwordPommelTex "__OTR__objects/object_link_boy/gLinkAdultSwordPommelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSwordPommelTex[] = dgLinkAdultSwordPommelTex; -#else -static const char gLinkAdultSwordPommelTex[] __attribute__((aligned (2))) = dgLinkAdultSwordPommelTex; -#endif - -#define dgLinkAdultSwordGuardTex "__OTR__objects/object_link_boy/gLinkAdultSwordGuardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultSwordGuardTex[] = dgLinkAdultSwordGuardTex; -#else -static const char gLinkAdultSwordGuardTex[] __attribute__((aligned (2))) = dgLinkAdultSwordGuardTex; -#endif - -#define dgLinkAdultEyesOpenTex "__OTR__objects/object_link_boy/gLinkAdultEyesOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEyesOpenTex[] = dgLinkAdultEyesOpenTex; -#else -static const char gLinkAdultEyesOpenTex[] __attribute__((aligned (2))) = dgLinkAdultEyesOpenTex; -#endif - -#define dgLinkAdultEyesHalfTex "__OTR__objects/object_link_boy/gLinkAdultEyesHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEyesHalfTex[] = dgLinkAdultEyesHalfTex; -#else -static const char gLinkAdultEyesHalfTex[] __attribute__((aligned (2))) = dgLinkAdultEyesHalfTex; -#endif - -#define dgLinkAdultEyesClosedfTex "__OTR__objects/object_link_boy/gLinkAdultEyesClosedfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEyesClosedfTex[] = dgLinkAdultEyesClosedfTex; -#else -static const char gLinkAdultEyesClosedfTex[] __attribute__((aligned (2))) = dgLinkAdultEyesClosedfTex; -#endif - -#define dgLinkAdultEyesRollLeftTex "__OTR__objects/object_link_boy/gLinkAdultEyesRollLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEyesRollLeftTex[] = dgLinkAdultEyesRollLeftTex; -#else -static const char gLinkAdultEyesRollLeftTex[] __attribute__((aligned (2))) = dgLinkAdultEyesRollLeftTex; -#endif - -#define dgLinkAdultEyesRollRightTex "__OTR__objects/object_link_boy/gLinkAdultEyesRollRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEyesRollRightTex[] = dgLinkAdultEyesRollRightTex; -#else -static const char gLinkAdultEyesRollRightTex[] __attribute__((aligned (2))) = dgLinkAdultEyesRollRightTex; -#endif - -#define dgLinkAdultEyesShockTex "__OTR__objects/object_link_boy/gLinkAdultEyesShockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEyesShockTex[] = dgLinkAdultEyesShockTex; -#else -static const char gLinkAdultEyesShockTex[] __attribute__((aligned (2))) = dgLinkAdultEyesShockTex; -#endif - -#define dgLinkAdultEyesUnk1Tex "__OTR__objects/object_link_boy/gLinkAdultEyesUnk1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEyesUnk1Tex[] = dgLinkAdultEyesUnk1Tex; -#else -static const char gLinkAdultEyesUnk1Tex[] __attribute__((aligned (2))) = dgLinkAdultEyesUnk1Tex; -#endif - -#define dgLinkAdultEyesUnk2Tex "__OTR__objects/object_link_boy/gLinkAdultEyesUnk2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEyesUnk2Tex[] = dgLinkAdultEyesUnk2Tex; -#else -static const char gLinkAdultEyesUnk2Tex[] __attribute__((aligned (2))) = dgLinkAdultEyesUnk2Tex; -#endif - -#define dgLinkAdultMouth1Tex "__OTR__objects/object_link_boy/gLinkAdultMouth1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMouth1Tex[] = dgLinkAdultMouth1Tex; -#else -static const char gLinkAdultMouth1Tex[] __attribute__((aligned (2))) = dgLinkAdultMouth1Tex; -#endif - -#define dgLinkAdultMouth2Tex "__OTR__objects/object_link_boy/gLinkAdultMouth2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMouth2Tex[] = dgLinkAdultMouth2Tex; -#else -static const char gLinkAdultMouth2Tex[] __attribute__((aligned (2))) = dgLinkAdultMouth2Tex; -#endif - -#define dgLinkAdultMouth3Tex "__OTR__objects/object_link_boy/gLinkAdultMouth3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMouth3Tex[] = dgLinkAdultMouth3Tex; -#else -static const char gLinkAdultMouth3Tex[] __attribute__((aligned (2))) = dgLinkAdultMouth3Tex; -#endif - -#define dgLinkAdultMouth4Tex "__OTR__objects/object_link_boy/gLinkAdultMouth4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultMouth4Tex[] = dgLinkAdultMouth4Tex; -#else -static const char gLinkAdultMouth4Tex[] __attribute__((aligned (2))) = dgLinkAdultMouth4Tex; -#endif - -#define dgLinkAdultEarTex "__OTR__objects/object_link_boy/gLinkAdultEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultEarTex[] = dgLinkAdultEarTex; -#else -static const char gLinkAdultEarTex[] __attribute__((aligned (2))) = dgLinkAdultEarTex; -#endif - -#define dgLinkAdultNoseTex "__OTR__objects/object_link_boy/gLinkAdultNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultNoseTex[] = dgLinkAdultNoseTex; -#else -static const char gLinkAdultNoseTex[] __attribute__((aligned (2))) = dgLinkAdultNoseTex; -#endif - -#define dgLinkAdultHeadTLUT "__OTR__objects/object_link_boy/gLinkAdultHeadTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultHeadTLUT[] = dgLinkAdultHeadTLUT; -#else -static const char gLinkAdultHeadTLUT[] __attribute__((aligned (2))) = dgLinkAdultHeadTLUT; -#endif - -#define dgLinkAdultTlut_005E00 "__OTR__objects/object_link_boy/gLinkAdultTlut_005E00" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultTlut_005E00[] = dgLinkAdultTlut_005E00; -#else -static const char gLinkAdultTlut_005E00[] __attribute__((aligned (2))) = dgLinkAdultTlut_005E00; -#endif - -#define dgLinkAdultUnusedHandTex "__OTR__objects/object_link_boy/gLinkAdultUnusedHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultUnusedHandTex[] = dgLinkAdultUnusedHandTex; -#else -static const char gLinkAdultUnusedHandTex[] __attribute__((aligned (2))) = dgLinkAdultUnusedHandTex; -#endif - -#define dgLinkAdultUnusedGauntlet1Tex "__OTR__objects/object_link_boy/gLinkAdultUnusedGauntlet1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultUnusedGauntlet1Tex[] = dgLinkAdultUnusedGauntlet1Tex; -#else -static const char gLinkAdultUnusedGauntlet1Tex[] __attribute__((aligned (2))) = dgLinkAdultUnusedGauntlet1Tex; -#endif - -#define dgLinkAdultUnusedGauntlet2Tex "__OTR__objects/object_link_boy/gLinkAdultUnusedGauntlet2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultUnusedGauntlet2Tex[] = dgLinkAdultUnusedGauntlet2Tex; -#else -static const char gLinkAdultUnusedGauntlet2Tex[] __attribute__((aligned (2))) = dgLinkAdultUnusedGauntlet2Tex; -#endif - -#define dgLinkAdultUnusedSheathTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSheathTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultUnusedSheathTex[] = dgLinkAdultUnusedSheathTex; -#else -static const char gLinkAdultUnusedSheathTex[] __attribute__((aligned (2))) = dgLinkAdultUnusedSheathTex; -#endif - -#define dgLinkAdultUnusedSheathBandTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSheathBandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultUnusedSheathBandTex[] = dgLinkAdultUnusedSheathBandTex; -#else -static const char gLinkAdultUnusedSheathBandTex[] __attribute__((aligned (2))) = dgLinkAdultUnusedSheathBandTex; -#endif - -#define dgLinkAdultUnusedSwordPommelTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSwordPommelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultUnusedSwordPommelTex[] = dgLinkAdultUnusedSwordPommelTex; -#else -static const char gLinkAdultUnusedSwordPommelTex[] __attribute__((aligned (2))) = dgLinkAdultUnusedSwordPommelTex; -#endif - -#define dgLinkAdultUnusedSwordGuardTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSwordGuardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultUnusedSwordGuardTex[] = dgLinkAdultUnusedSwordGuardTex; -#else -static const char gLinkAdultUnusedSwordGuardTex[] __attribute__((aligned (2))) = dgLinkAdultUnusedSwordGuardTex; -#endif - -#define dgLinkAdultUnusedSwordEmblemTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSwordEmblemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultUnusedSwordEmblemTex[] = dgLinkAdultUnusedSwordEmblemTex; -#else -static const char gLinkAdultUnusedSwordEmblemTex[] __attribute__((aligned (2))) = dgLinkAdultUnusedSwordEmblemTex; -#endif - -#define dgLinkAdultVtx_02E120 "__OTR__objects/object_link_boy/gLinkAdultVtx_02E120" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultVtx_02E120[] = dgLinkAdultVtx_02E120; -#else -static const char gLinkAdultVtx_02E120[] __attribute__((aligned (2))) = dgLinkAdultVtx_02E120; -#endif - -#define dgLinkAdultVtx_033760 "__OTR__objects/object_link_boy/gLinkAdultVtx_033760" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultVtx_033760[] = dgLinkAdultVtx_033760; -#else -static const char gLinkAdultVtx_033760[] __attribute__((aligned (2))) = dgLinkAdultVtx_033760; -#endif - -#define dgLinkAdultVtx_0340A0 "__OTR__objects/object_link_boy/gLinkAdultVtx_0340A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultVtx_0340A0[] = dgLinkAdultVtx_0340A0; -#else -static const char gLinkAdultVtx_0340A0[] __attribute__((aligned (2))) = dgLinkAdultVtx_0340A0; -#endif - -#define dgLinkAdultVtx_02E7E0 "__OTR__objects/object_link_boy/gLinkAdultVtx_02E7E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkAdultVtx_02E7E0[] = dgLinkAdultVtx_02E7E0; -#else -static const char gLinkAdultVtx_02E7E0[] __attribute__((aligned (2))) = dgLinkAdultVtx_02E7E0; -#endif - -#define dobject_link_boyTLUT_005800 "__OTR__objects/object_link_boy/object_link_boyTLUT_005800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_link_boyTLUT_005800[] = dobject_link_boyTLUT_005800; -#else -static const char object_link_boyTLUT_005800[] __attribute__((aligned (2))) = dobject_link_boyTLUT_005800; -#endif - -#define dobject_link_boyTLUT_005A00 "__OTR__objects/object_link_boy/object_link_boyTLUT_005A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_link_boyTLUT_005A00[] = dobject_link_boyTLUT_005A00; -#else -static const char object_link_boyTLUT_005A00[] __attribute__((aligned (2))) = dobject_link_boyTLUT_005A00; -#endif - -#define dobject_link_boyTLUT_005400 "__OTR__objects/object_link_boy/object_link_boyTLUT_005400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_link_boyTLUT_005400[] = dobject_link_boyTLUT_005400; -#else -static const char object_link_boyTLUT_005400[] __attribute__((aligned (2))) = dobject_link_boyTLUT_005400; -#endif - -#define dobject_link_boyTLUT_00CD48 "__OTR__objects/object_link_boy/object_link_boyTLUT_00CD48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_link_boyTLUT_00CD48[] = dobject_link_boyTLUT_00CD48; -#else -static const char object_link_boyTLUT_00CD48[] __attribute__((aligned (2))) = dobject_link_boyTLUT_00CD48; -#endif - -#define dobject_link_boyTLUT_00CF50 "__OTR__objects/object_link_boy/object_link_boyTLUT_00CF50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_link_boyTLUT_00CF50[] = dobject_link_boyTLUT_00CF50; -#else -static const char object_link_boyTLUT_00CF50[] __attribute__((aligned (2))) = dobject_link_boyTLUT_00CF50; -#endif - -#define dobject_link_boyTLUT_00CB40 "__OTR__objects/object_link_boy/object_link_boyTLUT_00CB40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_link_boyTLUT_00CB40[] = dobject_link_boyTLUT_00CB40; -#else -static const char object_link_boyTLUT_00CB40[] __attribute__((aligned (2))) = dobject_link_boyTLUT_00CB40; -#endif - -#define dobject_link_boyTLUT_00D078 "__OTR__objects/object_link_boy/object_link_boyTLUT_00D078" -#ifdef _WIN32 -static const __declspec(align(2)) char object_link_boyTLUT_00D078[] = dobject_link_boyTLUT_00D078; -#else -static const char object_link_boyTLUT_00D078[] __attribute__((aligned (2))) = dobject_link_boyTLUT_00D078; -#endif - +#include "align_asset_macro.h" + +#define dgLinkAdultSkel "__OTR__objects/object_link_boy/gLinkAdultSkel" +static const ALIGN_ASSET(2) char gLinkAdultSkel[] = dgLinkAdultSkel; + +#define dgLinkAdultWaistFarDL "__OTR__objects/object_link_boy/gLinkAdultWaistFarDL" +static const ALIGN_ASSET(2) char gLinkAdultWaistFarDL[] = dgLinkAdultWaistFarDL; + +#define dgLinkAdultRightThighFarDL "__OTR__objects/object_link_boy/gLinkAdultRightThighFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightThighFarDL[] = dgLinkAdultRightThighFarDL; + +#define dgLinkAdultRightLegFarDL "__OTR__objects/object_link_boy/gLinkAdultRightLegFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightLegFarDL[] = dgLinkAdultRightLegFarDL; + +#define dgLinkAdultRightFootFarDL "__OTR__objects/object_link_boy/gLinkAdultRightFootFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightFootFarDL[] = dgLinkAdultRightFootFarDL; + +#define dgLinkAdultLeftThighFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftThighFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftThighFarDL[] = dgLinkAdultLeftThighFarDL; + +#define dgLinkAdultLeftLegFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftLegFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftLegFarDL[] = dgLinkAdultLeftLegFarDL; + +#define dgLinkAdultLeftFootFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftFootFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftFootFarDL[] = dgLinkAdultLeftFootFarDL; + +#define dgLinkAdultCollarFarDL "__OTR__objects/object_link_boy/gLinkAdultCollarFarDL" +static const ALIGN_ASSET(2) char gLinkAdultCollarFarDL[] = dgLinkAdultCollarFarDL; + +#define dgLinkAdultTorsoFarDL "__OTR__objects/object_link_boy/gLinkAdultTorsoFarDL" +static const ALIGN_ASSET(2) char gLinkAdultTorsoFarDL[] = dgLinkAdultTorsoFarDL; + +#define dgLinkAdultHeadFarDL "__OTR__objects/object_link_boy/gLinkAdultHeadFarDL" +static const ALIGN_ASSET(2) char gLinkAdultHeadFarDL[] = dgLinkAdultHeadFarDL; + +#define dgLinkAdultHatFarDL "__OTR__objects/object_link_boy/gLinkAdultHatFarDL" +static const ALIGN_ASSET(2) char gLinkAdultHatFarDL[] = dgLinkAdultHatFarDL; + +#define dgLinkAdultRightShoulderFarDL "__OTR__objects/object_link_boy/gLinkAdultRightShoulderFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightShoulderFarDL[] = dgLinkAdultRightShoulderFarDL; + +#define dgLinkAdultRightArmFarDL "__OTR__objects/object_link_boy/gLinkAdultRightArmFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightArmFarDL[] = dgLinkAdultRightArmFarDL; + +#define dgLinkAdultRightHandFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandFarDL[] = dgLinkAdultRightHandFarDL; + +#define dgLinkAdultLeftShoulderFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftShoulderFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftShoulderFarDL[] = dgLinkAdultLeftShoulderFarDL; + +#define dgLinkAdultLeftArmFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftArmFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftArmFarDL[] = dgLinkAdultLeftArmFarDL; + +#define dgLinkAdultLeftHandFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandFarDL[] = dgLinkAdultLeftHandFarDL; + +#define dgLinkAdultWaistNearDL "__OTR__objects/object_link_boy/gLinkAdultWaistNearDL" +static const ALIGN_ASSET(2) char gLinkAdultWaistNearDL[] = dgLinkAdultWaistNearDL; + +#define dgLinkAdultRightThighNearDL "__OTR__objects/object_link_boy/gLinkAdultRightThighNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightThighNearDL[] = dgLinkAdultRightThighNearDL; + +#define dgLinkAdultRightLegNearDL "__OTR__objects/object_link_boy/gLinkAdultRightLegNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightLegNearDL[] = dgLinkAdultRightLegNearDL; + +#define dgLinkAdultRightFootNearDL "__OTR__objects/object_link_boy/gLinkAdultRightFootNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightFootNearDL[] = dgLinkAdultRightFootNearDL; + +#define dgLinkAdultLeftThighNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftThighNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftThighNearDL[] = dgLinkAdultLeftThighNearDL; + +#define dgLinkAdultLeftLegNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftLegNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftLegNearDL[] = dgLinkAdultLeftLegNearDL; + +#define dgLinkAdultLeftFootNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftFootNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftFootNearDL[] = dgLinkAdultLeftFootNearDL; + +#define dgLinkAdultCollarNearDL "__OTR__objects/object_link_boy/gLinkAdultCollarNearDL" +static const ALIGN_ASSET(2) char gLinkAdultCollarNearDL[] = dgLinkAdultCollarNearDL; + +#define dgLinkAdultTorsoNearDL "__OTR__objects/object_link_boy/gLinkAdultTorsoNearDL" +static const ALIGN_ASSET(2) char gLinkAdultTorsoNearDL[] = dgLinkAdultTorsoNearDL; + +#define dgLinkAdultHeadNearDL "__OTR__objects/object_link_boy/gLinkAdultHeadNearDL" +static const ALIGN_ASSET(2) char gLinkAdultHeadNearDL[] = dgLinkAdultHeadNearDL; + +#define dgLinkAdultHatNearDL "__OTR__objects/object_link_boy/gLinkAdultHatNearDL" +static const ALIGN_ASSET(2) char gLinkAdultHatNearDL[] = dgLinkAdultHatNearDL; + +#define dgLinkAdultRightShoulderNearDL "__OTR__objects/object_link_boy/gLinkAdultRightShoulderNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightShoulderNearDL[] = dgLinkAdultRightShoulderNearDL; + +#define dgLinkAdultRightArmNearDL "__OTR__objects/object_link_boy/gLinkAdultRightArmNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightArmNearDL[] = dgLinkAdultRightArmNearDL; + +#define dgLinkAdultRightHandNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandNearDL[] = dgLinkAdultRightHandNearDL; + +#define dgLinkAdultLeftShoulderNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftShoulderNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftShoulderNearDL[] = dgLinkAdultLeftShoulderNearDL; + +#define dgLinkAdultLeftArmNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftArmNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftArmNearDL[] = dgLinkAdultLeftArmNearDL; + +#define dgLinkAdultLeftHandNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandNearDL[] = dgLinkAdultLeftHandNearDL; + +#define dgLinkAdultBottleDL "__OTR__objects/object_link_boy/gLinkAdultBottleDL" +static const ALIGN_ASSET(2) char gLinkAdultBottleDL[] = dgLinkAdultBottleDL; + +#define dgLinkAdultHandHoldingBottleDL "__OTR__objects/object_link_boy/gLinkAdultHandHoldingBottleDL" +static const ALIGN_ASSET(2) char gLinkAdultHandHoldingBottleDL[] = dgLinkAdultHandHoldingBottleDL; + +#define dgLinkAdultRightHandClosedNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandClosedNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandClosedNearDL[] = dgLinkAdultRightHandClosedNearDL; + +#define dgLinkAdultRightHandClosedFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandClosedFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandClosedFarDL[] = dgLinkAdultRightHandClosedFarDL; + +#define dgLinkAdultLeftHandHoldingMasterSwordNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingMasterSwordNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandHoldingMasterSwordNearDL[] = dgLinkAdultLeftHandHoldingMasterSwordNearDL; + +#define dgLinkAdultLeftHandHoldingMasterSwordFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingMasterSwordFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandHoldingMasterSwordFarDL[] = dgLinkAdultLeftHandHoldingMasterSwordFarDL; + +#define dgLinkAdultLeftHandClosedNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandClosedNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandClosedNearDL[] = dgLinkAdultLeftHandClosedNearDL; + +#define dgLinkAdultLeftHandClosedFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandClosedFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandClosedFarDL[] = dgLinkAdultLeftHandClosedFarDL; + +#define dgLinkAdultRightArmOutNearDL "__OTR__objects/object_link_boy/gLinkAdultRightArmOutNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightArmOutNearDL[] = dgLinkAdultRightArmOutNearDL; + +#define dgLinkAdultRightHandOutNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandOutNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandOutNearDL[] = dgLinkAdultRightHandOutNearDL; + +#define dgLinkAdultLeftArmOutNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftArmOutNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftArmOutNearDL[] = dgLinkAdultLeftArmOutNearDL; + +#define dgLinkAdultLeftHandOutNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandOutNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandOutNearDL[] = dgLinkAdultLeftHandOutNearDL; + +#define dgLinkAdultMasterSwordAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultMasterSwordAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkAdultMasterSwordAndSheathNearDL[] = dgLinkAdultMasterSwordAndSheathNearDL; + +#define dgLinkAdultMasterSwordAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultMasterSwordAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkAdultMasterSwordAndSheathFarDL[] = dgLinkAdultMasterSwordAndSheathFarDL; + +#define dgLinkAdultHylianShieldSwordAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultHylianShieldSwordAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkAdultHylianShieldSwordAndSheathNearDL[] = dgLinkAdultHylianShieldSwordAndSheathNearDL; + +#define dgLinkAdultHylianShieldSwordAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultHylianShieldSwordAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkAdultHylianShieldSwordAndSheathFarDL[] = dgLinkAdultHylianShieldSwordAndSheathFarDL; + +#define dgLinkAdultHylianShieldAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultHylianShieldAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkAdultHylianShieldAndSheathNearDL[] = dgLinkAdultHylianShieldAndSheathNearDL; + +#define dgLinkAdultHylianShieldAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultHylianShieldAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkAdultHylianShieldAndSheathFarDL[] = dgLinkAdultHylianShieldAndSheathFarDL; + +#define dgLinkAdultMirrorShieldAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkAdultMirrorShieldAndSheathNearDL[] = dgLinkAdultMirrorShieldAndSheathNearDL; + +#define dgLinkAdultMirrorShieldAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkAdultMirrorShieldAndSheathFarDL[] = dgLinkAdultMirrorShieldAndSheathFarDL; + +#define dgLinkAdultMirrorShieldSwordAndSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldSwordAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkAdultMirrorShieldSwordAndSheathNearDL[] = dgLinkAdultMirrorShieldSwordAndSheathNearDL; + +#define dgLinkAdultMirrorShieldSwordAndSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldSwordAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkAdultMirrorShieldSwordAndSheathFarDL[] = dgLinkAdultMirrorShieldSwordAndSheathFarDL; + +#define dgLinkAdultLeftHandHoldingBgsNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingBgsNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandHoldingBgsNearDL[] = dgLinkAdultLeftHandHoldingBgsNearDL; + +#define dgLinkAdultLeftHandHoldingBgsFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingBgsFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandHoldingBgsFarDL[] = dgLinkAdultLeftHandHoldingBgsFarDL; + +#define dgLinkAdultHandHoldingBrokenGiantsKnifeDL "__OTR__objects/object_link_boy/gLinkAdultHandHoldingBrokenGiantsKnifeDL" +static const ALIGN_ASSET(2) char gLinkAdultHandHoldingBrokenGiantsKnifeDL[] = dgLinkAdultHandHoldingBrokenGiantsKnifeDL; + +#define dgLinkAdultHandHoldingBrokenGiantsKnifeFarDL "__OTR__objects/object_link_boy/gLinkAdultHandHoldingBrokenGiantsKnifeFarDL" +static const ALIGN_ASSET(2) char gLinkAdultHandHoldingBrokenGiantsKnifeFarDL[] = dgLinkAdultHandHoldingBrokenGiantsKnifeFarDL; + +#define dgLinkAdultSheathNearDL "__OTR__objects/object_link_boy/gLinkAdultSheathNearDL" +static const ALIGN_ASSET(2) char gLinkAdultSheathNearDL[] = dgLinkAdultSheathNearDL; + +#define dgLinkAdultSheathFarDL "__OTR__objects/object_link_boy/gLinkAdultSheathFarDL" +static const ALIGN_ASSET(2) char gLinkAdultSheathFarDL[] = dgLinkAdultSheathFarDL; + +#define dgLinkAdultRightHandHoldingHylianShieldNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingHylianShieldNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingHylianShieldNearDL[] = dgLinkAdultRightHandHoldingHylianShieldNearDL; + +#define dgLinkAdultRightHandHoldingHylianShieldFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingHylianShieldFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingHylianShieldFarDL[] = dgLinkAdultRightHandHoldingHylianShieldFarDL; + +#define dgLinkAdultBrokenGiantsKnifeBladeDL "__OTR__objects/object_link_boy/gLinkAdultBrokenGiantsKnifeBladeDL" +static const ALIGN_ASSET(2) char gLinkAdultBrokenGiantsKnifeBladeDL[] = dgLinkAdultBrokenGiantsKnifeBladeDL; + +#define dgLinkAdultShieldHandleTex "__OTR__objects/object_link_boy/gLinkAdultShieldHandleTex" +static const ALIGN_ASSET(2) char gLinkAdultShieldHandleTex[] = dgLinkAdultShieldHandleTex; + +#define dgLinkAdultHylianShieldBackTex "__OTR__objects/object_link_boy/gLinkAdultHylianShieldBackTex" +static const ALIGN_ASSET(2) char gLinkAdultHylianShieldBackTex[] = dgLinkAdultHylianShieldBackTex; + +#define dgLinkAdultSheathBandTex "__OTR__objects/object_link_boy/gLinkAdultSheathBandTex" +static const ALIGN_ASSET(2) char gLinkAdultSheathBandTex[] = dgLinkAdultSheathBandTex; + +#define dgLinkAdultMirrorShieldLowerDesignTex "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldLowerDesignTex" +static const ALIGN_ASSET(2) char gLinkAdultMirrorShieldLowerDesignTex[] = dgLinkAdultMirrorShieldLowerDesignTex; + +#define dgLinkAdultMirrorShieldUpperDesignTex "__OTR__objects/object_link_boy/gLinkAdultMirrorShieldUpperDesignTex" +static const ALIGN_ASSET(2) char gLinkAdultMirrorShieldUpperDesignTex[] = dgLinkAdultMirrorShieldUpperDesignTex; + +#define dgLinkAdultDefaultGauntlet1Tex "__OTR__objects/object_link_boy/gLinkAdultDefaultGauntlet1Tex" +static const ALIGN_ASSET(2) char gLinkAdultDefaultGauntlet1Tex[] = dgLinkAdultDefaultGauntlet1Tex; + +#define dgLinkAdultDefaultGauntlet2Tex "__OTR__objects/object_link_boy/gLinkAdultDefaultGauntlet2Tex" +static const ALIGN_ASSET(2) char gLinkAdultDefaultGauntlet2Tex[] = dgLinkAdultDefaultGauntlet2Tex; + +#define dgLinkAdultHandTex "__OTR__objects/object_link_boy/gLinkAdultHandTex" +static const ALIGN_ASSET(2) char gLinkAdultHandTex[] = dgLinkAdultHandTex; + +#define dgLinkAdultClosedHandThumbTex "__OTR__objects/object_link_boy/gLinkAdultClosedHandThumbTex" +static const ALIGN_ASSET(2) char gLinkAdultClosedHandThumbTex[] = dgLinkAdultClosedHandThumbTex; + +#define dgLinkAdultClosedHandSideTex "__OTR__objects/object_link_boy/gLinkAdultClosedHandSideTex" +static const ALIGN_ASSET(2) char gLinkAdultClosedHandSideTex[] = dgLinkAdultClosedHandSideTex; + +#define dgLinkAdultBowBodyTex "__OTR__objects/object_link_boy/gLinkAdultBowBodyTex" +static const ALIGN_ASSET(2) char gLinkAdultBowBodyTex[] = dgLinkAdultBowBodyTex; + +#define dgLinkAdultSwordEmblemTex "__OTR__objects/object_link_boy/gLinkAdultSwordEmblemTex" +static const ALIGN_ASSET(2) char gLinkAdultSwordEmblemTex[] = dgLinkAdultSwordEmblemTex; + +#define dgLinkAdultArmOutSleeveTex "__OTR__objects/object_link_boy/gLinkAdultArmOutSleeveTex" +static const ALIGN_ASSET(2) char gLinkAdultArmOutSleeveTex[] = dgLinkAdultArmOutSleeveTex; + +#define dgLinkAdultArmOutUpperGauntletTex "__OTR__objects/object_link_boy/gLinkAdultArmOutUpperGauntletTex" +static const ALIGN_ASSET(2) char gLinkAdultArmOutUpperGauntletTex[] = dgLinkAdultArmOutUpperGauntletTex; + +#define dgLinkAdultArmGauntletTex "__OTR__objects/object_link_boy/gLinkAdultArmGauntletTex" +static const ALIGN_ASSET(2) char gLinkAdultArmGauntletTex[] = dgLinkAdultArmGauntletTex; + +#define dgLinkAdultBoot2Tex "__OTR__objects/object_link_boy/gLinkAdultBoot2Tex" +static const ALIGN_ASSET(2) char gLinkAdultBoot2Tex[] = dgLinkAdultBoot2Tex; + +#define dgLinkAdultBootBuckleTex "__OTR__objects/object_link_boy/gLinkAdultBootBuckleTex" +static const ALIGN_ASSET(2) char gLinkAdultBootBuckleTex[] = dgLinkAdultBootBuckleTex; + +#define dgLinkAdultEarringTex "__OTR__objects/object_link_boy/gLinkAdultEarringTex" +static const ALIGN_ASSET(2) char gLinkAdultEarringTex[] = dgLinkAdultEarringTex; + +#define dgLinkAdultRightHandHoldingBowNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingBowNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingBowNearDL[] = dgLinkAdultRightHandHoldingBowNearDL; + +#define dgLinkAdultRightHandHoldingBowFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingBowFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingBowFarDL[] = dgLinkAdultRightHandHoldingBowFarDL; + +#define dgLinkAdultRightHandHoldingBowFirstPersonDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingBowFirstPersonDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingBowFirstPersonDL[] = dgLinkAdultRightHandHoldingBowFirstPersonDL; + +#define dgLinkAdultBowStringDL "__OTR__objects/object_link_boy/gLinkAdultBowStringDL" +static const ALIGN_ASSET(2) char gLinkAdultBowStringDL[] = dgLinkAdultBowStringDL; + +#define dgLinkAdultLeftHandHoldingHammerNearDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingHammerNearDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandHoldingHammerNearDL[] = dgLinkAdultLeftHandHoldingHammerNearDL; + +#define dgLinkAdultLeftHandHoldingHammerFarDL "__OTR__objects/object_link_boy/gLinkAdultLeftHandHoldingHammerFarDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHandHoldingHammerFarDL[] = dgLinkAdultLeftHandHoldingHammerFarDL; + +#define dgLinkAdultRightHandHoldingMirrorShieldNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingMirrorShieldNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingMirrorShieldNearDL[] = dgLinkAdultRightHandHoldingMirrorShieldNearDL; + +#define dgLinkAdultRightHandHoldingMirrorShieldFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingMirrorShieldFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingMirrorShieldFarDL[] = dgLinkAdultRightHandHoldingMirrorShieldFarDL; + +#define dgLinkAdultRightHandHoldingOotNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingOotNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingOotNearDL[] = dgLinkAdultRightHandHoldingOotNearDL; + +#define dgLinkAdultRightHandHoldingOotFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingOotFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingOotFarDL[] = dgLinkAdultRightHandHoldingOotFarDL; + +#define dgLinkAdultRightHandHoldingHookshotNearDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingHookshotNearDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingHookshotNearDL[] = dgLinkAdultRightHandHoldingHookshotNearDL; + +#define dgLinkAdultRightHandHoldingHookshotFarDL "__OTR__objects/object_link_boy/gLinkAdultRightHandHoldingHookshotFarDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHandHoldingHookshotFarDL[] = dgLinkAdultRightHandHoldingHookshotFarDL; + +#define dgLinkAdultHookshotChainDL "__OTR__objects/object_link_boy/gLinkAdultHookshotChainDL" +static const ALIGN_ASSET(2) char gLinkAdultHookshotChainDL[] = dgLinkAdultHookshotChainDL; + +#define dgLinkAdultHookshotTipDL "__OTR__objects/object_link_boy/gLinkAdultHookshotTipDL" +static const ALIGN_ASSET(2) char gLinkAdultHookshotTipDL[] = dgLinkAdultHookshotTipDL; + +#define dgLinkAdultHookshotMetalTex "__OTR__objects/object_link_boy/gLinkAdultHookshotMetalTex" +static const ALIGN_ASSET(2) char gLinkAdultHookshotMetalTex[] = dgLinkAdultHookshotMetalTex; + +#define dgLinkAdultHookshotHandleTex "__OTR__objects/object_link_boy/gLinkAdultHookshotHandleTex" +static const ALIGN_ASSET(2) char gLinkAdultHookshotHandleTex[] = dgLinkAdultHookshotHandleTex; + +#define dgLinkAdultHookshotDesignTex "__OTR__objects/object_link_boy/gLinkAdultHookshotDesignTex" +static const ALIGN_ASSET(2) char gLinkAdultHookshotDesignTex[] = dgLinkAdultHookshotDesignTex; + +#define dgLinkAdultHookshotChainTex "__OTR__objects/object_link_boy/gLinkAdultHookshotChainTex" +static const ALIGN_ASSET(2) char gLinkAdultHookshotChainTex[] = dgLinkAdultHookshotChainTex; + +#define dgLinkAdultHookshotReticleTex "__OTR__objects/object_link_boy/gLinkAdultHookshotReticleTex" +static const ALIGN_ASSET(2) char gLinkAdultHookshotReticleTex[] = dgLinkAdultHookshotReticleTex; + +#define dgLinkAdultBeltClaspTex "__OTR__objects/object_link_boy/gLinkAdultBeltClaspTex" +static const ALIGN_ASSET(2) char gLinkAdultBeltClaspTex[] = dgLinkAdultBeltClaspTex; + +#define dgLinkAdultSkirtAndHatTex "__OTR__objects/object_link_boy/gLinkAdultSkirtAndHatTex" +static const ALIGN_ASSET(2) char gLinkAdultSkirtAndHatTex[] = dgLinkAdultSkirtAndHatTex; + +#define dgLinkAdultBeltTex "__OTR__objects/object_link_boy/gLinkAdultBeltTex" +static const ALIGN_ASSET(2) char gLinkAdultBeltTex[] = dgLinkAdultBeltTex; + +#define dgLinkAdultLegTex "__OTR__objects/object_link_boy/gLinkAdultLegTex" +static const ALIGN_ASSET(2) char gLinkAdultLegTex[] = dgLinkAdultLegTex; + +#define dgLinkAdultBootFarTex "__OTR__objects/object_link_boy/gLinkAdultBootFarTex" +static const ALIGN_ASSET(2) char gLinkAdultBootFarTex[] = dgLinkAdultBootFarTex; + +#define dgLinkAdultBootTex "__OTR__objects/object_link_boy/gLinkAdultBootTex" +static const ALIGN_ASSET(2) char gLinkAdultBootTex[] = dgLinkAdultBootTex; + +#define dgLinkAdultCollarTex "__OTR__objects/object_link_boy/gLinkAdultCollarTex" +static const ALIGN_ASSET(2) char gLinkAdultCollarTex[] = dgLinkAdultCollarTex; + +#define dgLinkAdultTunicTex "__OTR__objects/object_link_boy/gLinkAdultTunicTex" +static const ALIGN_ASSET(2) char gLinkAdultTunicTex[] = dgLinkAdultTunicTex; + +#define dgLinkAdultNeckTex "__OTR__objects/object_link_boy/gLinkAdultNeckTex" +static const ALIGN_ASSET(2) char gLinkAdultNeckTex[] = dgLinkAdultNeckTex; + +#define dgLinkAdultNose2Tex "__OTR__objects/object_link_boy/gLinkAdultNose2Tex" +static const ALIGN_ASSET(2) char gLinkAdultNose2Tex[] = dgLinkAdultNose2Tex; + +#define dgLinkAdultLeftGauntletPlate1DL "__OTR__objects/object_link_boy/gLinkAdultLeftGauntletPlate1DL" +static const ALIGN_ASSET(2) char gLinkAdultLeftGauntletPlate1DL[] = dgLinkAdultLeftGauntletPlate1DL; + +#define dgLinkAdultLeftGauntletPlate2DL "__OTR__objects/object_link_boy/gLinkAdultLeftGauntletPlate2DL" +static const ALIGN_ASSET(2) char gLinkAdultLeftGauntletPlate2DL[] = dgLinkAdultLeftGauntletPlate2DL; + +#define dgLinkAdultLeftGauntletPlate3DL "__OTR__objects/object_link_boy/gLinkAdultLeftGauntletPlate3DL" +static const ALIGN_ASSET(2) char gLinkAdultLeftGauntletPlate3DL[] = dgLinkAdultLeftGauntletPlate3DL; + +#define dgLinkAdultRightGauntletPlate1DL "__OTR__objects/object_link_boy/gLinkAdultRightGauntletPlate1DL" +static const ALIGN_ASSET(2) char gLinkAdultRightGauntletPlate1DL[] = dgLinkAdultRightGauntletPlate1DL; + +#define dgLinkAdultRightGauntletPlate2DL "__OTR__objects/object_link_boy/gLinkAdultRightGauntletPlate2DL" +static const ALIGN_ASSET(2) char gLinkAdultRightGauntletPlate2DL[] = dgLinkAdultRightGauntletPlate2DL; + +#define dgLinkAdultRightGauntletPlate3DL "__OTR__objects/object_link_boy/gLinkAdultRightGauntletPlate3DL" +static const ALIGN_ASSET(2) char gLinkAdultRightGauntletPlate3DL[] = dgLinkAdultRightGauntletPlate3DL; + +#define dgLinkAdultGauntletPlate1Tex "__OTR__objects/object_link_boy/gLinkAdultGauntletPlate1Tex" +static const ALIGN_ASSET(2) char gLinkAdultGauntletPlate1Tex[] = dgLinkAdultGauntletPlate1Tex; + +#define dgLinkAdultGauntletPlate2Tex "__OTR__objects/object_link_boy/gLinkAdultGauntletPlate2Tex" +static const ALIGN_ASSET(2) char gLinkAdultGauntletPlate2Tex[] = dgLinkAdultGauntletPlate2Tex; + +#define dgLinkAdultHookshotReticleDL "__OTR__objects/object_link_boy/gLinkAdultHookshotReticleDL" +static const ALIGN_ASSET(2) char gLinkAdultHookshotReticleDL[] = dgLinkAdultHookshotReticleDL; + +#define dgLinkAdultLeftIronBootDL "__OTR__objects/object_link_boy/gLinkAdultLeftIronBootDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftIronBootDL[] = dgLinkAdultLeftIronBootDL; + +#define dgLinkAdultRightIronBootDL "__OTR__objects/object_link_boy/gLinkAdultRightIronBootDL" +static const ALIGN_ASSET(2) char gLinkAdultRightIronBootDL[] = dgLinkAdultRightIronBootDL; + +#define dgLinkAdultIronBootTex "__OTR__objects/object_link_boy/gLinkAdultIronBootTex" +static const ALIGN_ASSET(2) char gLinkAdultIronBootTex[] = dgLinkAdultIronBootTex; + +#define dgLinkAdultLeftHoverBootDL "__OTR__objects/object_link_boy/gLinkAdultLeftHoverBootDL" +static const ALIGN_ASSET(2) char gLinkAdultLeftHoverBootDL[] = dgLinkAdultLeftHoverBootDL; + +#define dgLinkAdultRightHoverBootDL "__OTR__objects/object_link_boy/gLinkAdultRightHoverBootDL" +static const ALIGN_ASSET(2) char gLinkAdultRightHoverBootDL[] = dgLinkAdultRightHoverBootDL; + +#define dgLinkAdultHoverBootsHeelTex "__OTR__objects/object_link_boy/gLinkAdultHoverBootsHeelTex" +static const ALIGN_ASSET(2) char gLinkAdultHoverBootsHeelTex[] = dgLinkAdultHoverBootsHeelTex; + +#define dgLinkAdultHoverBootsJetTex "__OTR__objects/object_link_boy/gLinkAdultHoverBootsJetTex" +static const ALIGN_ASSET(2) char gLinkAdultHoverBootsJetTex[] = dgLinkAdultHoverBootsJetTex; + +#define dgLinkAdultHoverBootsFeatherTex "__OTR__objects/object_link_boy/gLinkAdultHoverBootsFeatherTex" +static const ALIGN_ASSET(2) char gLinkAdultHoverBootsFeatherTex[] = dgLinkAdultHoverBootsFeatherTex; + +#define dgLinkAdultSheathTex "__OTR__objects/object_link_boy/gLinkAdultSheathTex" +static const ALIGN_ASSET(2) char gLinkAdultSheathTex[] = dgLinkAdultSheathTex; + +#define dgLinkAdultSwordPommelTex "__OTR__objects/object_link_boy/gLinkAdultSwordPommelTex" +static const ALIGN_ASSET(2) char gLinkAdultSwordPommelTex[] = dgLinkAdultSwordPommelTex; + +#define dgLinkAdultSwordGuardTex "__OTR__objects/object_link_boy/gLinkAdultSwordGuardTex" +static const ALIGN_ASSET(2) char gLinkAdultSwordGuardTex[] = dgLinkAdultSwordGuardTex; + +#define dgLinkAdultEyesOpenTex "__OTR__objects/object_link_boy/gLinkAdultEyesOpenTex" +static const ALIGN_ASSET(2) char gLinkAdultEyesOpenTex[] = dgLinkAdultEyesOpenTex; + +#define dgLinkAdultEyesHalfTex "__OTR__objects/object_link_boy/gLinkAdultEyesHalfTex" +static const ALIGN_ASSET(2) char gLinkAdultEyesHalfTex[] = dgLinkAdultEyesHalfTex; + +#define dgLinkAdultEyesClosedfTex "__OTR__objects/object_link_boy/gLinkAdultEyesClosedfTex" +static const ALIGN_ASSET(2) char gLinkAdultEyesClosedfTex[] = dgLinkAdultEyesClosedfTex; + +#define dgLinkAdultEyesRollLeftTex "__OTR__objects/object_link_boy/gLinkAdultEyesRollLeftTex" +static const ALIGN_ASSET(2) char gLinkAdultEyesRollLeftTex[] = dgLinkAdultEyesRollLeftTex; + +#define dgLinkAdultEyesRollRightTex "__OTR__objects/object_link_boy/gLinkAdultEyesRollRightTex" +static const ALIGN_ASSET(2) char gLinkAdultEyesRollRightTex[] = dgLinkAdultEyesRollRightTex; + +#define dgLinkAdultEyesShockTex "__OTR__objects/object_link_boy/gLinkAdultEyesShockTex" +static const ALIGN_ASSET(2) char gLinkAdultEyesShockTex[] = dgLinkAdultEyesShockTex; + +#define dgLinkAdultEyesUnk1Tex "__OTR__objects/object_link_boy/gLinkAdultEyesUnk1Tex" +static const ALIGN_ASSET(2) char gLinkAdultEyesUnk1Tex[] = dgLinkAdultEyesUnk1Tex; + +#define dgLinkAdultEyesUnk2Tex "__OTR__objects/object_link_boy/gLinkAdultEyesUnk2Tex" +static const ALIGN_ASSET(2) char gLinkAdultEyesUnk2Tex[] = dgLinkAdultEyesUnk2Tex; + +#define dgLinkAdultMouth1Tex "__OTR__objects/object_link_boy/gLinkAdultMouth1Tex" +static const ALIGN_ASSET(2) char gLinkAdultMouth1Tex[] = dgLinkAdultMouth1Tex; + +#define dgLinkAdultMouth2Tex "__OTR__objects/object_link_boy/gLinkAdultMouth2Tex" +static const ALIGN_ASSET(2) char gLinkAdultMouth2Tex[] = dgLinkAdultMouth2Tex; + +#define dgLinkAdultMouth3Tex "__OTR__objects/object_link_boy/gLinkAdultMouth3Tex" +static const ALIGN_ASSET(2) char gLinkAdultMouth3Tex[] = dgLinkAdultMouth3Tex; + +#define dgLinkAdultMouth4Tex "__OTR__objects/object_link_boy/gLinkAdultMouth4Tex" +static const ALIGN_ASSET(2) char gLinkAdultMouth4Tex[] = dgLinkAdultMouth4Tex; + +#define dgLinkAdultEarTex "__OTR__objects/object_link_boy/gLinkAdultEarTex" +static const ALIGN_ASSET(2) char gLinkAdultEarTex[] = dgLinkAdultEarTex; + +#define dgLinkAdultNoseTex "__OTR__objects/object_link_boy/gLinkAdultNoseTex" +static const ALIGN_ASSET(2) char gLinkAdultNoseTex[] = dgLinkAdultNoseTex; + +#define dgLinkAdultHeadTLUT "__OTR__objects/object_link_boy/gLinkAdultHeadTLUT" +static const ALIGN_ASSET(2) char gLinkAdultHeadTLUT[] = dgLinkAdultHeadTLUT; + +#define dgLinkAdultTlut_005E00 "__OTR__objects/object_link_boy/gLinkAdultTlut_005E00" +static const ALIGN_ASSET(2) char gLinkAdultTlut_005E00[] = dgLinkAdultTlut_005E00; + +#define dgLinkAdultUnusedHandTex "__OTR__objects/object_link_boy/gLinkAdultUnusedHandTex" +static const ALIGN_ASSET(2) char gLinkAdultUnusedHandTex[] = dgLinkAdultUnusedHandTex; + +#define dgLinkAdultUnusedGauntlet1Tex "__OTR__objects/object_link_boy/gLinkAdultUnusedGauntlet1Tex" +static const ALIGN_ASSET(2) char gLinkAdultUnusedGauntlet1Tex[] = dgLinkAdultUnusedGauntlet1Tex; + +#define dgLinkAdultUnusedGauntlet2Tex "__OTR__objects/object_link_boy/gLinkAdultUnusedGauntlet2Tex" +static const ALIGN_ASSET(2) char gLinkAdultUnusedGauntlet2Tex[] = dgLinkAdultUnusedGauntlet2Tex; + +#define dgLinkAdultUnusedSheathTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSheathTex" +static const ALIGN_ASSET(2) char gLinkAdultUnusedSheathTex[] = dgLinkAdultUnusedSheathTex; + +#define dgLinkAdultUnusedSheathBandTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSheathBandTex" +static const ALIGN_ASSET(2) char gLinkAdultUnusedSheathBandTex[] = dgLinkAdultUnusedSheathBandTex; + +#define dgLinkAdultUnusedSwordPommelTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSwordPommelTex" +static const ALIGN_ASSET(2) char gLinkAdultUnusedSwordPommelTex[] = dgLinkAdultUnusedSwordPommelTex; + +#define dgLinkAdultUnusedSwordGuardTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSwordGuardTex" +static const ALIGN_ASSET(2) char gLinkAdultUnusedSwordGuardTex[] = dgLinkAdultUnusedSwordGuardTex; + +#define dgLinkAdultUnusedSwordEmblemTex "__OTR__objects/object_link_boy/gLinkAdultUnusedSwordEmblemTex" +static const ALIGN_ASSET(2) char gLinkAdultUnusedSwordEmblemTex[] = dgLinkAdultUnusedSwordEmblemTex; + +#define dgLinkAdultVtx_02E120 "__OTR__objects/object_link_boy/gLinkAdultVtx_02E120" +static const ALIGN_ASSET(2) char gLinkAdultVtx_02E120[] = dgLinkAdultVtx_02E120; + +#define dgLinkAdultVtx_033760 "__OTR__objects/object_link_boy/gLinkAdultVtx_033760" +static const ALIGN_ASSET(2) char gLinkAdultVtx_033760[] = dgLinkAdultVtx_033760; + +#define dgLinkAdultVtx_0340A0 "__OTR__objects/object_link_boy/gLinkAdultVtx_0340A0" +static const ALIGN_ASSET(2) char gLinkAdultVtx_0340A0[] = dgLinkAdultVtx_0340A0; + +#define dgLinkAdultVtx_02E7E0 "__OTR__objects/object_link_boy/gLinkAdultVtx_02E7E0" +static const ALIGN_ASSET(2) char gLinkAdultVtx_02E7E0[] = dgLinkAdultVtx_02E7E0; + +#define dobject_link_boyTLUT_005800 "__OTR__objects/object_link_boy/object_link_boyTLUT_005800" +static const ALIGN_ASSET(2) char object_link_boyTLUT_005800[] = dobject_link_boyTLUT_005800; + +#define dobject_link_boyTLUT_005A00 "__OTR__objects/object_link_boy/object_link_boyTLUT_005A00" +static const ALIGN_ASSET(2) char object_link_boyTLUT_005A00[] = dobject_link_boyTLUT_005A00; + +#define dobject_link_boyTLUT_005400 "__OTR__objects/object_link_boy/object_link_boyTLUT_005400" +static const ALIGN_ASSET(2) char object_link_boyTLUT_005400[] = dobject_link_boyTLUT_005400; + +#define dobject_link_boyTLUT_00CD48 "__OTR__objects/object_link_boy/object_link_boyTLUT_00CD48" +static const ALIGN_ASSET(2) char object_link_boyTLUT_00CD48[] = dobject_link_boyTLUT_00CD48; + +#define dobject_link_boyTLUT_00CF50 "__OTR__objects/object_link_boy/object_link_boyTLUT_00CF50" +static const ALIGN_ASSET(2) char object_link_boyTLUT_00CF50[] = dobject_link_boyTLUT_00CF50; + +#define dobject_link_boyTLUT_00CB40 "__OTR__objects/object_link_boy/object_link_boyTLUT_00CB40" +static const ALIGN_ASSET(2) char object_link_boyTLUT_00CB40[] = dobject_link_boyTLUT_00CB40; + +#define dobject_link_boyTLUT_00D078 "__OTR__objects/object_link_boy/object_link_boyTLUT_00D078" +static const ALIGN_ASSET(2) char object_link_boyTLUT_00D078[] = dobject_link_boyTLUT_00D078; \ No newline at end of file diff --git a/soh/assets/objects/object_link_child/object_link_child.h b/soh/assets/objects/object_link_child/object_link_child.h index cb488fbdb..b73523fc5 100644 --- a/soh/assets/objects/object_link_child/object_link_child.h +++ b/soh/assets/objects/object_link_child/object_link_child.h @@ -1,1066 +1,459 @@ #pragma once -#define dgLinkChildSkel "__OTR__objects/object_link_child/gLinkChildSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSkel[] = dgLinkChildSkel; -#else -static const char gLinkChildSkel[] __attribute__((aligned (2))) = dgLinkChildSkel; -#endif - -#define dgLinkChildLeftHandFarDL "__OTR__objects/object_link_child/gLinkChildLeftHandFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftHandFarDL[] = dgLinkChildLeftHandFarDL; -#else -static const char gLinkChildLeftHandFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftHandFarDL; -#endif - -#define dgLinkChildRightHandFarDL "__OTR__objects/object_link_child/gLinkChildRightHandFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandFarDL[] = dgLinkChildRightHandFarDL; -#else -static const char gLinkChildRightHandFarDL[] __attribute__((aligned (2))) = dgLinkChildRightHandFarDL; -#endif - -#define dgLinkChildSwordAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildSwordAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSwordAndSheathFarDL[] = dgLinkChildSwordAndSheathFarDL; -#else -static const char gLinkChildSwordAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkChildSwordAndSheathFarDL; -#endif - -#define dgLinkChildWaistFarDL "__OTR__objects/object_link_child/gLinkChildWaistFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildWaistFarDL[] = dgLinkChildWaistFarDL; -#else -static const char gLinkChildWaistFarDL[] __attribute__((aligned (2))) = dgLinkChildWaistFarDL; -#endif - -#define dgLinkChildRightThighFarDL "__OTR__objects/object_link_child/gLinkChildRightThighFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightThighFarDL[] = dgLinkChildRightThighFarDL; -#else -static const char gLinkChildRightThighFarDL[] __attribute__((aligned (2))) = dgLinkChildRightThighFarDL; -#endif - -#define dgLinkChildRightShinFarDL "__OTR__objects/object_link_child/gLinkChildRightShinFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightShinFarDL[] = dgLinkChildRightShinFarDL; -#else -static const char gLinkChildRightShinFarDL[] __attribute__((aligned (2))) = dgLinkChildRightShinFarDL; -#endif - -#define dgLinkChildRightFootFarDL "__OTR__objects/object_link_child/gLinkChildRightFootFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightFootFarDL[] = dgLinkChildRightFootFarDL; -#else -static const char gLinkChildRightFootFarDL[] __attribute__((aligned (2))) = dgLinkChildRightFootFarDL; -#endif - -#define dgLinkChildLeftThighFarDL "__OTR__objects/object_link_child/gLinkChildLeftThighFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftThighFarDL[] = dgLinkChildLeftThighFarDL; -#else -static const char gLinkChildLeftThighFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftThighFarDL; -#endif - -#define dgLinkChildLeftShinFarDL "__OTR__objects/object_link_child/gLinkChildLeftShinFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftShinFarDL[] = dgLinkChildLeftShinFarDL; -#else -static const char gLinkChildLeftShinFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftShinFarDL; -#endif - -#define dgLinkChildLeftFootFarDL "__OTR__objects/object_link_child/gLinkChildLeftFootFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftFootFarDL[] = dgLinkChildLeftFootFarDL; -#else -static const char gLinkChildLeftFootFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftFootFarDL; -#endif - -#define dgLinkChildCollarFarDL "__OTR__objects/object_link_child/gLinkChildCollarFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildCollarFarDL[] = dgLinkChildCollarFarDL; -#else -static const char gLinkChildCollarFarDL[] __attribute__((aligned (2))) = dgLinkChildCollarFarDL; -#endif - -#define dgLinkChildTorsoFarDL "__OTR__objects/object_link_child/gLinkChildTorsoFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildTorsoFarDL[] = dgLinkChildTorsoFarDL; -#else -static const char gLinkChildTorsoFarDL[] __attribute__((aligned (2))) = dgLinkChildTorsoFarDL; -#endif - -#define dgLinkChildHeadFarDL "__OTR__objects/object_link_child/gLinkChildHeadFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHeadFarDL[] = dgLinkChildHeadFarDL; -#else -static const char gLinkChildHeadFarDL[] __attribute__((aligned (2))) = dgLinkChildHeadFarDL; -#endif - -#define dgLinkChildHatFarDL "__OTR__objects/object_link_child/gLinkChildHatFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHatFarDL[] = dgLinkChildHatFarDL; -#else -static const char gLinkChildHatFarDL[] __attribute__((aligned (2))) = dgLinkChildHatFarDL; -#endif - -#define dgLinkChildRightShoulderFarDL "__OTR__objects/object_link_child/gLinkChildRightShoulderFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightShoulderFarDL[] = dgLinkChildRightShoulderFarDL; -#else -static const char gLinkChildRightShoulderFarDL[] __attribute__((aligned (2))) = dgLinkChildRightShoulderFarDL; -#endif - -#define dgLinkChildRightForearmFarDL "__OTR__objects/object_link_child/gLinkChildRightForearmFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightForearmFarDL[] = dgLinkChildRightForearmFarDL; -#else -static const char gLinkChildRightForearmFarDL[] __attribute__((aligned (2))) = dgLinkChildRightForearmFarDL; -#endif - -#define dgLinkChildLeftShoulderFarDL "__OTR__objects/object_link_child/gLinkChildLeftShoulderFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftShoulderFarDL[] = dgLinkChildLeftShoulderFarDL; -#else -static const char gLinkChildLeftShoulderFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftShoulderFarDL; -#endif - -#define dgLinkChildLeftForearmFarDL "__OTR__objects/object_link_child/gLinkChildLeftForearmFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftForearmFarDL[] = dgLinkChildLeftForearmFarDL; -#else -static const char gLinkChildLeftForearmFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftForearmFarDL; -#endif - -#define dgLinkChildLeftHandNearDL "__OTR__objects/object_link_child/gLinkChildLeftHandNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftHandNearDL[] = dgLinkChildLeftHandNearDL; -#else -static const char gLinkChildLeftHandNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftHandNearDL; -#endif - -#define dgLinkChildRightHandNearDL "__OTR__objects/object_link_child/gLinkChildRightHandNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandNearDL[] = dgLinkChildRightHandNearDL; -#else -static const char gLinkChildRightHandNearDL[] __attribute__((aligned (2))) = dgLinkChildRightHandNearDL; -#endif - -#define dgLinkChildSwordAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildSwordAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSwordAndSheathNearDL[] = dgLinkChildSwordAndSheathNearDL; -#else -static const char gLinkChildSwordAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkChildSwordAndSheathNearDL; -#endif - -#define dgLinkChildWaistNearDL "__OTR__objects/object_link_child/gLinkChildWaistNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildWaistNearDL[] = dgLinkChildWaistNearDL; -#else -static const char gLinkChildWaistNearDL[] __attribute__((aligned (2))) = dgLinkChildWaistNearDL; -#endif - -#define dgLinkChildRightThighNearDL "__OTR__objects/object_link_child/gLinkChildRightThighNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightThighNearDL[] = dgLinkChildRightThighNearDL; -#else -static const char gLinkChildRightThighNearDL[] __attribute__((aligned (2))) = dgLinkChildRightThighNearDL; -#endif - -#define dgLinkChildRightShinNearDL "__OTR__objects/object_link_child/gLinkChildRightShinNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightShinNearDL[] = dgLinkChildRightShinNearDL; -#else -static const char gLinkChildRightShinNearDL[] __attribute__((aligned (2))) = dgLinkChildRightShinNearDL; -#endif - -#define dgLinkChildRightFootNearDL "__OTR__objects/object_link_child/gLinkChildRightFootNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightFootNearDL[] = dgLinkChildRightFootNearDL; -#else -static const char gLinkChildRightFootNearDL[] __attribute__((aligned (2))) = dgLinkChildRightFootNearDL; -#endif - -#define dgLinkChildLeftThighNearDL "__OTR__objects/object_link_child/gLinkChildLeftThighNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftThighNearDL[] = dgLinkChildLeftThighNearDL; -#else -static const char gLinkChildLeftThighNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftThighNearDL; -#endif - -#define dgLinkChildLeftShinNearDL "__OTR__objects/object_link_child/gLinkChildLeftShinNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftShinNearDL[] = dgLinkChildLeftShinNearDL; -#else -static const char gLinkChildLeftShinNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftShinNearDL; -#endif - -#define dgLinkChildLeftFootNearDL "__OTR__objects/object_link_child/gLinkChildLeftFootNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftFootNearDL[] = dgLinkChildLeftFootNearDL; -#else -static const char gLinkChildLeftFootNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftFootNearDL; -#endif - -#define dgLinkChildCollarNearDL "__OTR__objects/object_link_child/gLinkChildCollarNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildCollarNearDL[] = dgLinkChildCollarNearDL; -#else -static const char gLinkChildCollarNearDL[] __attribute__((aligned (2))) = dgLinkChildCollarNearDL; -#endif - -#define dgLinkChildTorsoNearDL "__OTR__objects/object_link_child/gLinkChildTorsoNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildTorsoNearDL[] = dgLinkChildTorsoNearDL; -#else -static const char gLinkChildTorsoNearDL[] __attribute__((aligned (2))) = dgLinkChildTorsoNearDL; -#endif - -#define dgLinkChildHeadNearDL "__OTR__objects/object_link_child/gLinkChildHeadNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHeadNearDL[] = dgLinkChildHeadNearDL; -#else -static const char gLinkChildHeadNearDL[] __attribute__((aligned (2))) = dgLinkChildHeadNearDL; -#endif - -#define dgLinkChildHatNearDL "__OTR__objects/object_link_child/gLinkChildHatNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHatNearDL[] = dgLinkChildHatNearDL; -#else -static const char gLinkChildHatNearDL[] __attribute__((aligned (2))) = dgLinkChildHatNearDL; -#endif - -#define dgLinkChildRightShoulderNearDL "__OTR__objects/object_link_child/gLinkChildRightShoulderNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightShoulderNearDL[] = dgLinkChildRightShoulderNearDL; -#else -static const char gLinkChildRightShoulderNearDL[] __attribute__((aligned (2))) = dgLinkChildRightShoulderNearDL; -#endif - -#define dgLinkChildRightForearmNearDL "__OTR__objects/object_link_child/gLinkChildRightForearmNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightForearmNearDL[] = dgLinkChildRightForearmNearDL; -#else -static const char gLinkChildRightForearmNearDL[] __attribute__((aligned (2))) = dgLinkChildRightForearmNearDL; -#endif - -#define dgLinkChildLeftShoulderNearDL "__OTR__objects/object_link_child/gLinkChildLeftShoulderNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftShoulderNearDL[] = dgLinkChildLeftShoulderNearDL; -#else -static const char gLinkChildLeftShoulderNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftShoulderNearDL; -#endif - -#define dgLinkChildLeftForearmNearDL "__OTR__objects/object_link_child/gLinkChildLeftForearmNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftForearmNearDL[] = dgLinkChildLeftForearmNearDL; -#else -static const char gLinkChildLeftForearmNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftForearmNearDL; -#endif - -#define dgLinkChildLinkDekuStickDL "__OTR__objects/object_link_child/gLinkChildLinkDekuStickDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLinkDekuStickDL[] = dgLinkChildLinkDekuStickDL; -#else -static const char gLinkChildLinkDekuStickDL[] __attribute__((aligned (2))) = dgLinkChildLinkDekuStickDL; -#endif - -#define dgLinkChildLeftHandHoldingMasterSwordDL "__OTR__objects/object_link_child/gLinkChildLeftHandHoldingMasterSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftHandHoldingMasterSwordDL[] = dgLinkChildLeftHandHoldingMasterSwordDL; -#else -static const char gLinkChildLeftHandHoldingMasterSwordDL[] __attribute__((aligned (2))) = dgLinkChildLeftHandHoldingMasterSwordDL; -#endif - -#define dgLinkChildGoronBraceletDL "__OTR__objects/object_link_child/gLinkChildGoronBraceletDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronBraceletDL[] = dgLinkChildGoronBraceletDL; -#else -static const char gLinkChildGoronBraceletDL[] __attribute__((aligned (2))) = dgLinkChildGoronBraceletDL; -#endif - -#define dgLinkChildLeftFistNearDL "__OTR__objects/object_link_child/gLinkChildLeftFistNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftFistNearDL[] = dgLinkChildLeftFistNearDL; -#else -static const char gLinkChildLeftFistNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftFistNearDL; -#endif - -#define dgLinkChildRightHandClosedNearDL "__OTR__objects/object_link_child/gLinkChildRightHandClosedNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandClosedNearDL[] = dgLinkChildRightHandClosedNearDL; -#else -static const char gLinkChildRightHandClosedNearDL[] __attribute__((aligned (2))) = dgLinkChildRightHandClosedNearDL; -#endif - -#define dgLinkChildRightHandClosedFarDL "__OTR__objects/object_link_child/gLinkChildRightHandClosedFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandClosedFarDL[] = dgLinkChildRightHandClosedFarDL; -#else -static const char gLinkChildRightHandClosedFarDL[] __attribute__((aligned (2))) = dgLinkChildRightHandClosedFarDL; -#endif - -#define dgLinkChildLeftFistFarDL "__OTR__objects/object_link_child/gLinkChildLeftFistFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftFistFarDL[] = dgLinkChildLeftFistFarDL; -#else -static const char gLinkChildLeftFistFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftFistFarDL; -#endif - -#define dgLinkChildLeftFistAndKokiriSwordNearDL "__OTR__objects/object_link_child/gLinkChildLeftFistAndKokiriSwordNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftFistAndKokiriSwordNearDL[] = dgLinkChildLeftFistAndKokiriSwordNearDL; -#else -static const char gLinkChildLeftFistAndKokiriSwordNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftFistAndKokiriSwordNearDL; -#endif - -#define dgLinkChildLeftFistAndKokiriSwordFarDL "__OTR__objects/object_link_child/gLinkChildLeftFistAndKokiriSwordFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftFistAndKokiriSwordFarDL[] = dgLinkChildLeftFistAndKokiriSwordFarDL; -#else -static const char gLinkChildLeftFistAndKokiriSwordFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftFistAndKokiriSwordFarDL; -#endif - -#define dgLinkChildRightFistAndDekuShieldNearDL "__OTR__objects/object_link_child/gLinkChildRightFistAndDekuShieldNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightFistAndDekuShieldNearDL[] = dgLinkChildRightFistAndDekuShieldNearDL; -#else -static const char gLinkChildRightFistAndDekuShieldNearDL[] __attribute__((aligned (2))) = dgLinkChildRightFistAndDekuShieldNearDL; -#endif - -#define dgLinkChildRightFistAndDekuShieldFarDL "__OTR__objects/object_link_child/gLinkChildRightFistAndDekuShieldFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightFistAndDekuShieldFarDL[] = dgLinkChildRightFistAndDekuShieldFarDL; -#else -static const char gLinkChildRightFistAndDekuShieldFarDL[] __attribute__((aligned (2))) = dgLinkChildRightFistAndDekuShieldFarDL; -#endif - -#define dgLinkChildLeftFistAndBoomerangNearDL "__OTR__objects/object_link_child/gLinkChildLeftFistAndBoomerangNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftFistAndBoomerangNearDL[] = dgLinkChildLeftFistAndBoomerangNearDL; -#else -static const char gLinkChildLeftFistAndBoomerangNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftFistAndBoomerangNearDL; -#endif - -#define dgLinkChildLeftFistAndBoomerangFarDL "__OTR__objects/object_link_child/gLinkChildLeftFistAndBoomerangFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftFistAndBoomerangFarDL[] = dgLinkChildLeftFistAndBoomerangFarDL; -#else -static const char gLinkChildLeftFistAndBoomerangFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftFistAndBoomerangFarDL; -#endif - -#define dgLinkChildHylianShieldSwordAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildHylianShieldSwordAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHylianShieldSwordAndSheathNearDL[] = dgLinkChildHylianShieldSwordAndSheathNearDL; -#else -static const char gLinkChildHylianShieldSwordAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkChildHylianShieldSwordAndSheathNearDL; -#endif - -#define dgLinkChildHylianShieldSwordAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildHylianShieldSwordAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHylianShieldSwordAndSheathFarDL[] = dgLinkChildHylianShieldSwordAndSheathFarDL; -#else -static const char gLinkChildHylianShieldSwordAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkChildHylianShieldSwordAndSheathFarDL; -#endif - -#define dgLinkChildHylianShieldAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildHylianShieldAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHylianShieldAndSheathNearDL[] = dgLinkChildHylianShieldAndSheathNearDL; -#else -static const char gLinkChildHylianShieldAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkChildHylianShieldAndSheathNearDL; -#endif - -#define dgLinkChildHylianShieldAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildHylianShieldAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHylianShieldAndSheathFarDL[] = dgLinkChildHylianShieldAndSheathFarDL; -#else -static const char gLinkChildHylianShieldAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkChildHylianShieldAndSheathFarDL; -#endif - -#define dgLinkChildDekuShieldSwordAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildDekuShieldSwordAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDekuShieldSwordAndSheathNearDL[] = dgLinkChildDekuShieldSwordAndSheathNearDL; -#else -static const char gLinkChildDekuShieldSwordAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkChildDekuShieldSwordAndSheathNearDL; -#endif - -#define dgLinkChildDekuShieldSwordAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildDekuShieldSwordAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDekuShieldSwordAndSheathFarDL[] = dgLinkChildDekuShieldSwordAndSheathFarDL; -#else -static const char gLinkChildDekuShieldSwordAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkChildDekuShieldSwordAndSheathFarDL; -#endif - -#define dgLinkChildDekuShieldAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildDekuShieldAndSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDekuShieldAndSheathNearDL[] = dgLinkChildDekuShieldAndSheathNearDL; -#else -static const char gLinkChildDekuShieldAndSheathNearDL[] __attribute__((aligned (2))) = dgLinkChildDekuShieldAndSheathNearDL; -#endif - -#define dgLinkChildDekuShieldAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildDekuShieldAndSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDekuShieldAndSheathFarDL[] = dgLinkChildDekuShieldAndSheathFarDL; -#else -static const char gLinkChildDekuShieldAndSheathFarDL[] __attribute__((aligned (2))) = dgLinkChildDekuShieldAndSheathFarDL; -#endif - -#define dgLinkChildSheathNearDL "__OTR__objects/object_link_child/gLinkChildSheathNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSheathNearDL[] = dgLinkChildSheathNearDL; -#else -static const char gLinkChildSheathNearDL[] __attribute__((aligned (2))) = dgLinkChildSheathNearDL; -#endif - -#define dgLinkChildSheathFarDL "__OTR__objects/object_link_child/gLinkChildSheathFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSheathFarDL[] = dgLinkChildSheathFarDL; -#else -static const char gLinkChildSheathFarDL[] __attribute__((aligned (2))) = dgLinkChildSheathFarDL; -#endif - -#define dgLinkChildRightHandAndOotNearDL "__OTR__objects/object_link_child/gLinkChildRightHandAndOotNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandAndOotNearDL[] = dgLinkChildRightHandAndOotNearDL; -#else -static const char gLinkChildRightHandAndOotNearDL[] __attribute__((aligned (2))) = dgLinkChildRightHandAndOotNearDL; -#endif - -#define dgLinkChildRightHandHoldingOOTFarDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingOOTFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandHoldingOOTFarDL[] = dgLinkChildRightHandHoldingOOTFarDL; -#else -static const char gLinkChildRightHandHoldingOOTFarDL[] __attribute__((aligned (2))) = dgLinkChildRightHandHoldingOOTFarDL; -#endif - -#define dgLinkChildRightHandHoldingFairyOcarinaNearDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingFairyOcarinaNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandHoldingFairyOcarinaNearDL[] = dgLinkChildRightHandHoldingFairyOcarinaNearDL; -#else -static const char gLinkChildRightHandHoldingFairyOcarinaNearDL[] __attribute__((aligned (2))) = dgLinkChildRightHandHoldingFairyOcarinaNearDL; -#endif - -#define dgLinkChildRightHandHoldingFairyOcarinaFarDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingFairyOcarinaFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandHoldingFairyOcarinaFarDL[] = dgLinkChildRightHandHoldingFairyOcarinaFarDL; -#else -static const char gLinkChildRightHandHoldingFairyOcarinaFarDL[] __attribute__((aligned (2))) = dgLinkChildRightHandHoldingFairyOcarinaFarDL; -#endif - -#define dgLinkChildRightHandHoldingSlingshotNearDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingSlingshotNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandHoldingSlingshotNearDL[] = dgLinkChildRightHandHoldingSlingshotNearDL; -#else -static const char gLinkChildRightHandHoldingSlingshotNearDL[] __attribute__((aligned (2))) = dgLinkChildRightHandHoldingSlingshotNearDL; -#endif - -#define dgLinkChildRightHandHoldingSlingshotFarDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingSlingshotFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightHandHoldingSlingshotFarDL[] = dgLinkChildRightHandHoldingSlingshotFarDL; -#else -static const char gLinkChildRightHandHoldingSlingshotFarDL[] __attribute__((aligned (2))) = dgLinkChildRightHandHoldingSlingshotFarDL; -#endif - -#define dgLinkChildLeftHandUpNearDL "__OTR__objects/object_link_child/gLinkChildLeftHandUpNearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftHandUpNearDL[] = dgLinkChildLeftHandUpNearDL; -#else -static const char gLinkChildLeftHandUpNearDL[] __attribute__((aligned (2))) = dgLinkChildLeftHandUpNearDL; -#endif - -#define dgLinkChildLeftHandUpFarDL "__OTR__objects/object_link_child/gLinkChildLeftHandUpFarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLeftHandUpFarDL[] = dgLinkChildLeftHandUpFarDL; -#else -static const char gLinkChildLeftHandUpFarDL[] __attribute__((aligned (2))) = dgLinkChildLeftHandUpFarDL; -#endif - -#define dgLinkChildRightArmStretchedSlingshotDL "__OTR__objects/object_link_child/gLinkChildRightArmStretchedSlingshotDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildRightArmStretchedSlingshotDL[] = dgLinkChildRightArmStretchedSlingshotDL; -#else -static const char gLinkChildRightArmStretchedSlingshotDL[] __attribute__((aligned (2))) = dgLinkChildRightArmStretchedSlingshotDL; -#endif - -#define dgLinkChildBottleDL "__OTR__objects/object_link_child/gLinkChildBottleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBottleDL[] = dgLinkChildBottleDL; -#else -static const char gLinkChildBottleDL[] __attribute__((aligned (2))) = dgLinkChildBottleDL; -#endif - -#define dgLinkChildDL_18580 "__OTR__objects/object_link_child/gLinkChildDL_18580" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDL_18580[] = dgLinkChildDL_18580; -#else -static const char gLinkChildDL_18580[] __attribute__((aligned (2))) = dgLinkChildDL_18580; -#endif - -#define dgLinkChildBottle2DL "__OTR__objects/object_link_child/gLinkChildBottle2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBottle2DL[] = dgLinkChildBottle2DL; -#else -static const char gLinkChildBottle2DL[] __attribute__((aligned (2))) = dgLinkChildBottle2DL; -#endif - -#define dgLinkChildSlinghotStringDL "__OTR__objects/object_link_child/gLinkChildSlinghotStringDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSlinghotStringDL[] = dgLinkChildSlinghotStringDL; -#else -static const char gLinkChildSlinghotStringDL[] __attribute__((aligned (2))) = dgLinkChildSlinghotStringDL; -#endif - -#define dgLinkChildDekuShieldDL "__OTR__objects/object_link_child/gLinkChildDekuShieldDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDekuShieldDL[] = dgLinkChildDekuShieldDL; -#else -static const char gLinkChildDekuShieldDL[] __attribute__((aligned (2))) = dgLinkChildDekuShieldDL; -#endif - -#define dgLinkChildDekuShieldWithMatrixDL "__OTR__objects/object_link_child/gLinkChildDekuShieldWithMatrixDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDekuShieldWithMatrixDL[] = dgLinkChildDekuShieldWithMatrixDL; -#else -static const char gLinkChildDekuShieldWithMatrixDL[] __attribute__((aligned (2))) = dgLinkChildDekuShieldWithMatrixDL; -#endif - -#define dgLinkChildSkullMaskDL "__OTR__objects/object_link_child/gLinkChildSkullMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSkullMaskDL[] = dgLinkChildSkullMaskDL; -#else -static const char gLinkChildSkullMaskDL[] __attribute__((aligned (2))) = dgLinkChildSkullMaskDL; -#endif - -#define dgLinkChildSpookyMaskDL "__OTR__objects/object_link_child/gLinkChildSpookyMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSpookyMaskDL[] = dgLinkChildSpookyMaskDL; -#else -static const char gLinkChildSpookyMaskDL[] __attribute__((aligned (2))) = dgLinkChildSpookyMaskDL; -#endif - -#define dgLinkChildKeatonMaskDL "__OTR__objects/object_link_child/gLinkChildKeatonMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildKeatonMaskDL[] = dgLinkChildKeatonMaskDL; -#else -static const char gLinkChildKeatonMaskDL[] __attribute__((aligned (2))) = dgLinkChildKeatonMaskDL; -#endif - -#define dgLinkChildMaskOfTruthDL "__OTR__objects/object_link_child/gLinkChildMaskOfTruthDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMaskOfTruthDL[] = dgLinkChildMaskOfTruthDL; -#else -static const char gLinkChildMaskOfTruthDL[] __attribute__((aligned (2))) = dgLinkChildMaskOfTruthDL; -#endif - -#define dgLinkChildGoronMaskDL "__OTR__objects/object_link_child/gLinkChildGoronMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronMaskDL[] = dgLinkChildGoronMaskDL; -#else -static const char gLinkChildGoronMaskDL[] __attribute__((aligned (2))) = dgLinkChildGoronMaskDL; -#endif - -#define dgLinkChildZoraMaskDL "__OTR__objects/object_link_child/gLinkChildZoraMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildZoraMaskDL[] = dgLinkChildZoraMaskDL; -#else -static const char gLinkChildZoraMaskDL[] __attribute__((aligned (2))) = dgLinkChildZoraMaskDL; -#endif - -#define dgLinkChildGerudoMaskDL "__OTR__objects/object_link_child/gLinkChildGerudoMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGerudoMaskDL[] = dgLinkChildGerudoMaskDL; -#else -static const char gLinkChildGerudoMaskDL[] __attribute__((aligned (2))) = dgLinkChildGerudoMaskDL; -#endif - -#define dgLinkChildBunnyHoodDL "__OTR__objects/object_link_child/gLinkChildBunnyHoodDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBunnyHoodDL[] = dgLinkChildBunnyHoodDL; -#else -static const char gLinkChildBunnyHoodDL[] __attribute__((aligned (2))) = dgLinkChildBunnyHoodDL; -#endif - -#define dgLinkChildNoseTex "__OTR__objects/object_link_child/gLinkChildNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildNoseTex[] = dgLinkChildNoseTex; -#else -static const char gLinkChildNoseTex[] __attribute__((aligned (2))) = dgLinkChildNoseTex; -#endif - -#define dgLinkChildUnusedHandTex "__OTR__objects/object_link_child/gLinkChildUnusedHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildUnusedHandTex[] = dgLinkChildUnusedHandTex; -#else -static const char gLinkChildUnusedHandTex[] __attribute__((aligned (2))) = dgLinkChildUnusedHandTex; -#endif - -#define dgLinkChildEarTex "__OTR__objects/object_link_child/gLinkChildEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEarTex[] = dgLinkChildEarTex; -#else -static const char gLinkChildEarTex[] __attribute__((aligned (2))) = dgLinkChildEarTex; -#endif - -#define dgLinkChildLowerBootTex "__OTR__objects/object_link_child/gLinkChildLowerBootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildLowerBootTex[] = dgLinkChildLowerBootTex; -#else -static const char gLinkChildLowerBootTex[] __attribute__((aligned (2))) = dgLinkChildLowerBootTex; -#endif - -#define dgLinkChildBootTex "__OTR__objects/object_link_child/gLinkChildBootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBootTex[] = dgLinkChildBootTex; -#else -static const char gLinkChildBootTex[] __attribute__((aligned (2))) = dgLinkChildBootTex; -#endif - -#define dgLinkChildWaistTex "__OTR__objects/object_link_child/gLinkChildWaistTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildWaistTex[] = dgLinkChildWaistTex; -#else -static const char gLinkChildWaistTex[] __attribute__((aligned (2))) = dgLinkChildWaistTex; -#endif - -#define dgLinkChildBeltTex "__OTR__objects/object_link_child/gLinkChildBeltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBeltTex[] = dgLinkChildBeltTex; -#else -static const char gLinkChildBeltTex[] __attribute__((aligned (2))) = dgLinkChildBeltTex; -#endif - -#define dgLinkChildBeltClaspTex "__OTR__objects/object_link_child/gLinkChildBeltClaspTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBeltClaspTex[] = dgLinkChildBeltClaspTex; -#else -static const char gLinkChildBeltClaspTex[] __attribute__((aligned (2))) = dgLinkChildBeltClaspTex; -#endif - -#define dgLinkChildFairyOcarinaTex "__OTR__objects/object_link_child/gLinkChildFairyOcarinaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildFairyOcarinaTex[] = dgLinkChildFairyOcarinaTex; -#else -static const char gLinkChildFairyOcarinaTex[] __attribute__((aligned (2))) = dgLinkChildFairyOcarinaTex; -#endif - -#define dgLinkChildDekuShieldBackTex "__OTR__objects/object_link_child/gLinkChildDekuShieldBackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDekuShieldBackTex[] = dgLinkChildDekuShieldBackTex; -#else -static const char gLinkChildDekuShieldBackTex[] __attribute__((aligned (2))) = dgLinkChildDekuShieldBackTex; -#endif - -#define dgLinkChildDekuShieldFrontTex "__OTR__objects/object_link_child/gLinkChildDekuShieldFrontTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildDekuShieldFrontTex[] = dgLinkChildDekuShieldFrontTex; -#else -static const char gLinkChildDekuShieldFrontTex[] __attribute__((aligned (2))) = dgLinkChildDekuShieldFrontTex; -#endif - -#define dgLinkChildHylianShieldBackTex "__OTR__objects/object_link_child/gLinkChildHylianShieldBackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHylianShieldBackTex[] = dgLinkChildHylianShieldBackTex; -#else -static const char gLinkChildHylianShieldBackTex[] __attribute__((aligned (2))) = dgLinkChildHylianShieldBackTex; -#endif - -#define dgLinkChildSlingshotTex "__OTR__objects/object_link_child/gLinkChildSlingshotTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSlingshotTex[] = dgLinkChildSlingshotTex; -#else -static const char gLinkChildSlingshotTex[] __attribute__((aligned (2))) = dgLinkChildSlingshotTex; -#endif - -#define dgLinkChildSlingshotSeedTex "__OTR__objects/object_link_child/gLinkChildSlingshotSeedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSlingshotSeedTex[] = dgLinkChildSlingshotSeedTex; -#else -static const char gLinkChildSlingshotSeedTex[] __attribute__((aligned (2))) = dgLinkChildSlingshotSeedTex; -#endif - -#define dgLinkChildHandTex "__OTR__objects/object_link_child/gLinkChildHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHandTex[] = dgLinkChildHandTex; -#else -static const char gLinkChildHandTex[] __attribute__((aligned (2))) = dgLinkChildHandTex; -#endif - -#define dgLinkChildKokiriSwordSheathTex "__OTR__objects/object_link_child/gLinkChildKokiriSwordSheathTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildKokiriSwordSheathTex[] = dgLinkChildKokiriSwordSheathTex; -#else -static const char gLinkChildKokiriSwordSheathTex[] __attribute__((aligned (2))) = dgLinkChildKokiriSwordSheathTex; -#endif - -#define dgLinkChildSwordJewelTex "__OTR__objects/object_link_child/gLinkChildSwordJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSwordJewelTex[] = dgLinkChildSwordJewelTex; -#else -static const char gLinkChildSwordJewelTex[] __attribute__((aligned (2))) = dgLinkChildSwordJewelTex; -#endif - -#define dgLinkChildMasterSwordPommelTex "__OTR__objects/object_link_child/gLinkChildMasterSwordPommelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMasterSwordPommelTex[] = dgLinkChildMasterSwordPommelTex; -#else -static const char gLinkChildMasterSwordPommelTex[] __attribute__((aligned (2))) = dgLinkChildMasterSwordPommelTex; -#endif - -#define dgLinkChildMasterSwordGuardTex "__OTR__objects/object_link_child/gLinkChildMasterSwordGuardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMasterSwordGuardTex[] = dgLinkChildMasterSwordGuardTex; -#else -static const char gLinkChildMasterSwordGuardTex[] __attribute__((aligned (2))) = dgLinkChildMasterSwordGuardTex; -#endif - -#define dgLinkChildMasterSwordEmblemTex "__OTR__objects/object_link_child/gLinkChildMasterSwordEmblemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMasterSwordEmblemTex[] = dgLinkChildMasterSwordEmblemTex; -#else -static const char gLinkChildMasterSwordEmblemTex[] __attribute__((aligned (2))) = dgLinkChildMasterSwordEmblemTex; -#endif - -#define dgLinkChildGoronBraceletTex "__OTR__objects/object_link_child/gLinkChildGoronBraceletTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronBraceletTex[] = dgLinkChildGoronBraceletTex; -#else -static const char gLinkChildGoronBraceletTex[] __attribute__((aligned (2))) = dgLinkChildGoronBraceletTex; -#endif - -#define dgLinkChildGoronSymbolTex "__OTR__objects/object_link_child/gLinkChildGoronSymbolTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronSymbolTex[] = dgLinkChildGoronSymbolTex; -#else -static const char gLinkChildGoronSymbolTex[] __attribute__((aligned (2))) = dgLinkChildGoronSymbolTex; -#endif - -#define dgLinkChildSkullMaskTeethTex "__OTR__objects/object_link_child/gLinkChildSkullMaskTeethTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSkullMaskTeethTex[] = dgLinkChildSkullMaskTeethTex; -#else -static const char gLinkChildSkullMaskTeethTex[] __attribute__((aligned (2))) = dgLinkChildSkullMaskTeethTex; -#endif - -#define dgLinkChildSkullMaskNoseTex "__OTR__objects/object_link_child/gLinkChildSkullMaskNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSkullMaskNoseTex[] = dgLinkChildSkullMaskNoseTex; -#else -static const char gLinkChildSkullMaskNoseTex[] __attribute__((aligned (2))) = dgLinkChildSkullMaskNoseTex; -#endif - -#define dgLinkChildSkullMaskEyeTex "__OTR__objects/object_link_child/gLinkChildSkullMaskEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSkullMaskEyeTex[] = dgLinkChildSkullMaskEyeTex; -#else -static const char gLinkChildSkullMaskEyeTex[] __attribute__((aligned (2))) = dgLinkChildSkullMaskEyeTex; -#endif - -#define dgLinkChildSpookyMaskTex "__OTR__objects/object_link_child/gLinkChildSpookyMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSpookyMaskTex[] = dgLinkChildSpookyMaskTex; -#else -static const char gLinkChildSpookyMaskTex[] __attribute__((aligned (2))) = dgLinkChildSpookyMaskTex; -#endif - -#define dgLinkChildKeatonMaskEyeBrowTex "__OTR__objects/object_link_child/gLinkChildKeatonMaskEyeBrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildKeatonMaskEyeBrowTex[] = dgLinkChildKeatonMaskEyeBrowTex; -#else -static const char gLinkChildKeatonMaskEyeBrowTex[] __attribute__((aligned (2))) = dgLinkChildKeatonMaskEyeBrowTex; -#endif - -#define dgLinkChildKeatonMaskEarTex "__OTR__objects/object_link_child/gLinkChildKeatonMaskEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildKeatonMaskEarTex[] = dgLinkChildKeatonMaskEarTex; -#else -static const char gLinkChildKeatonMaskEarTex[] __attribute__((aligned (2))) = dgLinkChildKeatonMaskEarTex; -#endif - -#define dgLinkChildMaskOfTruthCurveTex "__OTR__objects/object_link_child/gLinkChildMaskOfTruthCurveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMaskOfTruthCurveTex[] = dgLinkChildMaskOfTruthCurveTex; -#else -static const char gLinkChildMaskOfTruthCurveTex[] __attribute__((aligned (2))) = dgLinkChildMaskOfTruthCurveTex; -#endif - -#define dgLinkChildMaskOfTruthTex "__OTR__objects/object_link_child/gLinkChildMaskOfTruthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMaskOfTruthTex[] = dgLinkChildMaskOfTruthTex; -#else -static const char gLinkChildMaskOfTruthTex[] __attribute__((aligned (2))) = dgLinkChildMaskOfTruthTex; -#endif - -#define dgLinkChildGoronMaskMouthTex "__OTR__objects/object_link_child/gLinkChildGoronMaskMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronMaskMouthTex[] = dgLinkChildGoronMaskMouthTex; -#else -static const char gLinkChildGoronMaskMouthTex[] __attribute__((aligned (2))) = dgLinkChildGoronMaskMouthTex; -#endif - -#define dgLinkChildGoronMaskEyeTex "__OTR__objects/object_link_child/gLinkChildGoronMaskEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronMaskEyeTex[] = dgLinkChildGoronMaskEyeTex; -#else -static const char gLinkChildGoronMaskEyeTex[] __attribute__((aligned (2))) = dgLinkChildGoronMaskEyeTex; -#endif - -#define dgLinkChildGoronMaskNoseTex "__OTR__objects/object_link_child/gLinkChildGoronMaskNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronMaskNoseTex[] = dgLinkChildGoronMaskNoseTex; -#else -static const char gLinkChildGoronMaskNoseTex[] __attribute__((aligned (2))) = dgLinkChildGoronMaskNoseTex; -#endif - -#define dgLinkChildGoronMaskHairTex "__OTR__objects/object_link_child/gLinkChildGoronMaskHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronMaskHairTex[] = dgLinkChildGoronMaskHairTex; -#else -static const char gLinkChildGoronMaskHairTex[] __attribute__((aligned (2))) = dgLinkChildGoronMaskHairTex; -#endif - -#define dgLinkChildGoronMaskEarTex "__OTR__objects/object_link_child/gLinkChildGoronMaskEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGoronMaskEarTex[] = dgLinkChildGoronMaskEarTex; -#else -static const char gLinkChildGoronMaskEarTex[] __attribute__((aligned (2))) = dgLinkChildGoronMaskEarTex; -#endif - -#define dgLinkChildZoraMaskEyeBoarderTex "__OTR__objects/object_link_child/gLinkChildZoraMaskEyeBoarderTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildZoraMaskEyeBoarderTex[] = dgLinkChildZoraMaskEyeBoarderTex; -#else -static const char gLinkChildZoraMaskEyeBoarderTex[] __attribute__((aligned (2))) = dgLinkChildZoraMaskEyeBoarderTex; -#endif - -#define dgLinkChildZoraMaskEarTex "__OTR__objects/object_link_child/gLinkChildZoraMaskEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildZoraMaskEarTex[] = dgLinkChildZoraMaskEarTex; -#else -static const char gLinkChildZoraMaskEarTex[] __attribute__((aligned (2))) = dgLinkChildZoraMaskEarTex; -#endif - -#define dgLinkChildZoraMaskEyeTex "__OTR__objects/object_link_child/gLinkChildZoraMaskEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildZoraMaskEyeTex[] = dgLinkChildZoraMaskEyeTex; -#else -static const char gLinkChildZoraMaskEyeTex[] __attribute__((aligned (2))) = dgLinkChildZoraMaskEyeTex; -#endif - -#define dgLinkChildZoraMaskMouthTex "__OTR__objects/object_link_child/gLinkChildZoraMaskMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildZoraMaskMouthTex[] = dgLinkChildZoraMaskMouthTex; -#else -static const char gLinkChildZoraMaskMouthTex[] __attribute__((aligned (2))) = dgLinkChildZoraMaskMouthTex; -#endif - -#define dgLinkChildGerudoMaskEyeTex "__OTR__objects/object_link_child/gLinkChildGerudoMaskEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGerudoMaskEyeTex[] = dgLinkChildGerudoMaskEyeTex; -#else -static const char gLinkChildGerudoMaskEyeTex[] __attribute__((aligned (2))) = dgLinkChildGerudoMaskEyeTex; -#endif - -#define dgLinkChildGerudoMaskMouthTex "__OTR__objects/object_link_child/gLinkChildGerudoMaskMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGerudoMaskMouthTex[] = dgLinkChildGerudoMaskMouthTex; -#else -static const char gLinkChildGerudoMaskMouthTex[] __attribute__((aligned (2))) = dgLinkChildGerudoMaskMouthTex; -#endif - -#define dgLinkChildGerudoMaskHairTex "__OTR__objects/object_link_child/gLinkChildGerudoMaskHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGerudoMaskHairTex[] = dgLinkChildGerudoMaskHairTex; -#else -static const char gLinkChildGerudoMaskHairTex[] __attribute__((aligned (2))) = dgLinkChildGerudoMaskHairTex; -#endif - -#define dgLinkChildGerudoMaskNoseTex "__OTR__objects/object_link_child/gLinkChildGerudoMaskNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildGerudoMaskNoseTex[] = dgLinkChildGerudoMaskNoseTex; -#else -static const char gLinkChildGerudoMaskNoseTex[] __attribute__((aligned (2))) = dgLinkChildGerudoMaskNoseTex; -#endif - -#define dgLinkChildBunnyHoodEyeTex "__OTR__objects/object_link_child/gLinkChildBunnyHoodEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBunnyHoodEyeTex[] = dgLinkChildBunnyHoodEyeTex; -#else -static const char gLinkChildBunnyHoodEyeTex[] __attribute__((aligned (2))) = dgLinkChildBunnyHoodEyeTex; -#endif - -#define dgLinkChildBunnyHoodTex "__OTR__objects/object_link_child/gLinkChildBunnyHoodTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBunnyHoodTex[] = dgLinkChildBunnyHoodTex; -#else -static const char gLinkChildBunnyHoodTex[] __attribute__((aligned (2))) = dgLinkChildBunnyHoodTex; -#endif - -#define dgLinkChildBunnyHoodEarTex "__OTR__objects/object_link_child/gLinkChildBunnyHoodEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBunnyHoodEarTex[] = dgLinkChildBunnyHoodEarTex; -#else -static const char gLinkChildBunnyHoodEarTex[] __attribute__((aligned (2))) = dgLinkChildBunnyHoodEarTex; -#endif - -#define dgLinkChildSkinTLUT "__OTR__objects/object_link_child/gLinkChildSkinTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSkinTLUT[] = dgLinkChildSkinTLUT; -#else -static const char gLinkChildSkinTLUT[] __attribute__((aligned (2))) = dgLinkChildSkinTLUT; -#endif - -#define dgLinkChildHandTLUT "__OTR__objects/object_link_child/gLinkChildHandTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildHandTLUT[] = dgLinkChildHandTLUT; -#else -static const char gLinkChildHandTLUT[] __attribute__((aligned (2))) = dgLinkChildHandTLUT; -#endif - -#define dgLinkChildSwordsTLUT "__OTR__objects/object_link_child/gLinkChildSwordsTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSwordsTLUT[] = dgLinkChildSwordsTLUT; -#else -static const char gLinkChildSwordsTLUT[] __attribute__((aligned (2))) = dgLinkChildSwordsTLUT; -#endif - -#define dgLinkChildSwordTLUT "__OTR__objects/object_link_child/gLinkChildSwordTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildSwordTLUT[] = dgLinkChildSwordTLUT; -#else -static const char gLinkChildSwordTLUT[] __attribute__((aligned (2))) = dgLinkChildSwordTLUT; -#endif - -#define dgLinkChildBeltTLUT "__OTR__objects/object_link_child/gLinkChildBeltTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildBeltTLUT[] = dgLinkChildBeltTLUT; -#else -static const char gLinkChildBeltTLUT[] __attribute__((aligned (2))) = dgLinkChildBeltTLUT; -#endif - -#define dgLinkChildEyesOpenTex "__OTR__objects/object_link_child/gLinkChildEyesOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEyesOpenTex[] = dgLinkChildEyesOpenTex; -#else -static const char gLinkChildEyesOpenTex[] __attribute__((aligned (2))) = dgLinkChildEyesOpenTex; -#endif - -#define dgLinkChildEyesHalfTex "__OTR__objects/object_link_child/gLinkChildEyesHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEyesHalfTex[] = dgLinkChildEyesHalfTex; -#else -static const char gLinkChildEyesHalfTex[] __attribute__((aligned (2))) = dgLinkChildEyesHalfTex; -#endif - -#define dgLinkChildEyesClosedfTex "__OTR__objects/object_link_child/gLinkChildEyesClosedfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEyesClosedfTex[] = dgLinkChildEyesClosedfTex; -#else -static const char gLinkChildEyesClosedfTex[] __attribute__((aligned (2))) = dgLinkChildEyesClosedfTex; -#endif - -#define dgLinkChildEyesRollLeftTex "__OTR__objects/object_link_child/gLinkChildEyesRollLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEyesRollLeftTex[] = dgLinkChildEyesRollLeftTex; -#else -static const char gLinkChildEyesRollLeftTex[] __attribute__((aligned (2))) = dgLinkChildEyesRollLeftTex; -#endif - -#define dgLinkChildEyesRollRightTex "__OTR__objects/object_link_child/gLinkChildEyesRollRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEyesRollRightTex[] = dgLinkChildEyesRollRightTex; -#else -static const char gLinkChildEyesRollRightTex[] __attribute__((aligned (2))) = dgLinkChildEyesRollRightTex; -#endif - -#define dgLinkChildEyesShockTex "__OTR__objects/object_link_child/gLinkChildEyesShockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEyesShockTex[] = dgLinkChildEyesShockTex; -#else -static const char gLinkChildEyesShockTex[] __attribute__((aligned (2))) = dgLinkChildEyesShockTex; -#endif - -#define dgLinkChildEyesUnk1Tex "__OTR__objects/object_link_child/gLinkChildEyesUnk1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEyesUnk1Tex[] = dgLinkChildEyesUnk1Tex; -#else -static const char gLinkChildEyesUnk1Tex[] __attribute__((aligned (2))) = dgLinkChildEyesUnk1Tex; -#endif - -#define dgLinkChildEyesUnk2Tex "__OTR__objects/object_link_child/gLinkChildEyesUnk2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildEyesUnk2Tex[] = dgLinkChildEyesUnk2Tex; -#else -static const char gLinkChildEyesUnk2Tex[] __attribute__((aligned (2))) = dgLinkChildEyesUnk2Tex; -#endif - -#define dgLinkChildMouth1Tex "__OTR__objects/object_link_child/gLinkChildMouth1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMouth1Tex[] = dgLinkChildMouth1Tex; -#else -static const char gLinkChildMouth1Tex[] __attribute__((aligned (2))) = dgLinkChildMouth1Tex; -#endif - -#define dgLinkChildMouth2Tex "__OTR__objects/object_link_child/gLinkChildMouth2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMouth2Tex[] = dgLinkChildMouth2Tex; -#else -static const char gLinkChildMouth2Tex[] __attribute__((aligned (2))) = dgLinkChildMouth2Tex; -#endif - -#define dgLinkChildMouth3Tex "__OTR__objects/object_link_child/gLinkChildMouth3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMouth3Tex[] = dgLinkChildMouth3Tex; -#else -static const char gLinkChildMouth3Tex[] __attribute__((aligned (2))) = dgLinkChildMouth3Tex; -#endif - -#define dgLinkChildMouth4Tex "__OTR__objects/object_link_child/gLinkChildMouth4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildMouth4Tex[] = dgLinkChildMouth4Tex; -#else -static const char gLinkChildMouth4Tex[] __attribute__((aligned (2))) = dgLinkChildMouth4Tex; -#endif - -#define dgLinkChildVtx_019E08 "__OTR__objects/object_link_child/gLinkChildVtx_019E08" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildVtx_019E08[] = dgLinkChildVtx_019E08; -#else -static const char gLinkChildVtx_019E08[] __attribute__((aligned (2))) = dgLinkChildVtx_019E08; -#endif - -#define dgLinkChildVtx_01A428 "__OTR__objects/object_link_child/gLinkChildVtx_01A428" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildVtx_01A428[] = dgLinkChildVtx_01A428; -#else -static const char gLinkChildVtx_01A428[] __attribute__((aligned (2))) = dgLinkChildVtx_01A428; -#endif - -#define dgLinkChildVtx_01AA98 "__OTR__objects/object_link_child/gLinkChildVtx_01AA98" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildVtx_01AA98[] = dgLinkChildVtx_01AA98; -#else -static const char gLinkChildVtx_01AA98[] __attribute__((aligned (2))) = dgLinkChildVtx_01AA98; -#endif - -#define dgLinkChildVtx_01EB38 "__OTR__objects/object_link_child/gLinkChildVtx_01EB38" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildVtx_01EB38[] = dgLinkChildVtx_01EB38; -#else -static const char gLinkChildVtx_01EB38[] __attribute__((aligned (2))) = dgLinkChildVtx_01EB38; -#endif - -#define dgLinkChildVtx_01F2B8 "__OTR__objects/object_link_child/gLinkChildVtx_01F2B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildVtx_01F2B8[] = dgLinkChildVtx_01F2B8; -#else -static const char gLinkChildVtx_01F2B8[] __attribute__((aligned (2))) = dgLinkChildVtx_01F2B8; -#endif - -#define dgLinkChildVtx_01FA28 "__OTR__objects/object_link_child/gLinkChildVtx_01FA28" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinkChildVtx_01FA28[] = dgLinkChildVtx_01FA28; -#else -static const char gLinkChildVtx_01FA28[] __attribute__((aligned (2))) = dgLinkChildVtx_01FA28; -#endif - +#include "align_asset_macro.h" + +#define dgLinkChildSkel "__OTR__objects/object_link_child/gLinkChildSkel" +static const ALIGN_ASSET(2) char gLinkChildSkel[] = dgLinkChildSkel; + +#define dgLinkChildLeftHandFarDL "__OTR__objects/object_link_child/gLinkChildLeftHandFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftHandFarDL[] = dgLinkChildLeftHandFarDL; + +#define dgLinkChildRightHandFarDL "__OTR__objects/object_link_child/gLinkChildRightHandFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandFarDL[] = dgLinkChildRightHandFarDL; + +#define dgLinkChildSwordAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildSwordAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkChildSwordAndSheathFarDL[] = dgLinkChildSwordAndSheathFarDL; + +#define dgLinkChildWaistFarDL "__OTR__objects/object_link_child/gLinkChildWaistFarDL" +static const ALIGN_ASSET(2) char gLinkChildWaistFarDL[] = dgLinkChildWaistFarDL; + +#define dgLinkChildRightThighFarDL "__OTR__objects/object_link_child/gLinkChildRightThighFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightThighFarDL[] = dgLinkChildRightThighFarDL; + +#define dgLinkChildRightShinFarDL "__OTR__objects/object_link_child/gLinkChildRightShinFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightShinFarDL[] = dgLinkChildRightShinFarDL; + +#define dgLinkChildRightFootFarDL "__OTR__objects/object_link_child/gLinkChildRightFootFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightFootFarDL[] = dgLinkChildRightFootFarDL; + +#define dgLinkChildLeftThighFarDL "__OTR__objects/object_link_child/gLinkChildLeftThighFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftThighFarDL[] = dgLinkChildLeftThighFarDL; + +#define dgLinkChildLeftShinFarDL "__OTR__objects/object_link_child/gLinkChildLeftShinFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftShinFarDL[] = dgLinkChildLeftShinFarDL; + +#define dgLinkChildLeftFootFarDL "__OTR__objects/object_link_child/gLinkChildLeftFootFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftFootFarDL[] = dgLinkChildLeftFootFarDL; + +#define dgLinkChildCollarFarDL "__OTR__objects/object_link_child/gLinkChildCollarFarDL" +static const ALIGN_ASSET(2) char gLinkChildCollarFarDL[] = dgLinkChildCollarFarDL; + +#define dgLinkChildTorsoFarDL "__OTR__objects/object_link_child/gLinkChildTorsoFarDL" +static const ALIGN_ASSET(2) char gLinkChildTorsoFarDL[] = dgLinkChildTorsoFarDL; + +#define dgLinkChildHeadFarDL "__OTR__objects/object_link_child/gLinkChildHeadFarDL" +static const ALIGN_ASSET(2) char gLinkChildHeadFarDL[] = dgLinkChildHeadFarDL; + +#define dgLinkChildHatFarDL "__OTR__objects/object_link_child/gLinkChildHatFarDL" +static const ALIGN_ASSET(2) char gLinkChildHatFarDL[] = dgLinkChildHatFarDL; + +#define dgLinkChildRightShoulderFarDL "__OTR__objects/object_link_child/gLinkChildRightShoulderFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightShoulderFarDL[] = dgLinkChildRightShoulderFarDL; + +#define dgLinkChildRightForearmFarDL "__OTR__objects/object_link_child/gLinkChildRightForearmFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightForearmFarDL[] = dgLinkChildRightForearmFarDL; + +#define dgLinkChildLeftShoulderFarDL "__OTR__objects/object_link_child/gLinkChildLeftShoulderFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftShoulderFarDL[] = dgLinkChildLeftShoulderFarDL; + +#define dgLinkChildLeftForearmFarDL "__OTR__objects/object_link_child/gLinkChildLeftForearmFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftForearmFarDL[] = dgLinkChildLeftForearmFarDL; + +#define dgLinkChildLeftHandNearDL "__OTR__objects/object_link_child/gLinkChildLeftHandNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftHandNearDL[] = dgLinkChildLeftHandNearDL; + +#define dgLinkChildRightHandNearDL "__OTR__objects/object_link_child/gLinkChildRightHandNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandNearDL[] = dgLinkChildRightHandNearDL; + +#define dgLinkChildSwordAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildSwordAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkChildSwordAndSheathNearDL[] = dgLinkChildSwordAndSheathNearDL; + +#define dgLinkChildWaistNearDL "__OTR__objects/object_link_child/gLinkChildWaistNearDL" +static const ALIGN_ASSET(2) char gLinkChildWaistNearDL[] = dgLinkChildWaistNearDL; + +#define dgLinkChildRightThighNearDL "__OTR__objects/object_link_child/gLinkChildRightThighNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightThighNearDL[] = dgLinkChildRightThighNearDL; + +#define dgLinkChildRightShinNearDL "__OTR__objects/object_link_child/gLinkChildRightShinNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightShinNearDL[] = dgLinkChildRightShinNearDL; + +#define dgLinkChildRightFootNearDL "__OTR__objects/object_link_child/gLinkChildRightFootNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightFootNearDL[] = dgLinkChildRightFootNearDL; + +#define dgLinkChildLeftThighNearDL "__OTR__objects/object_link_child/gLinkChildLeftThighNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftThighNearDL[] = dgLinkChildLeftThighNearDL; + +#define dgLinkChildLeftShinNearDL "__OTR__objects/object_link_child/gLinkChildLeftShinNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftShinNearDL[] = dgLinkChildLeftShinNearDL; + +#define dgLinkChildLeftFootNearDL "__OTR__objects/object_link_child/gLinkChildLeftFootNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftFootNearDL[] = dgLinkChildLeftFootNearDL; + +#define dgLinkChildCollarNearDL "__OTR__objects/object_link_child/gLinkChildCollarNearDL" +static const ALIGN_ASSET(2) char gLinkChildCollarNearDL[] = dgLinkChildCollarNearDL; + +#define dgLinkChildTorsoNearDL "__OTR__objects/object_link_child/gLinkChildTorsoNearDL" +static const ALIGN_ASSET(2) char gLinkChildTorsoNearDL[] = dgLinkChildTorsoNearDL; + +#define dgLinkChildHeadNearDL "__OTR__objects/object_link_child/gLinkChildHeadNearDL" +static const ALIGN_ASSET(2) char gLinkChildHeadNearDL[] = dgLinkChildHeadNearDL; + +#define dgLinkChildHatNearDL "__OTR__objects/object_link_child/gLinkChildHatNearDL" +static const ALIGN_ASSET(2) char gLinkChildHatNearDL[] = dgLinkChildHatNearDL; + +#define dgLinkChildRightShoulderNearDL "__OTR__objects/object_link_child/gLinkChildRightShoulderNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightShoulderNearDL[] = dgLinkChildRightShoulderNearDL; + +#define dgLinkChildRightForearmNearDL "__OTR__objects/object_link_child/gLinkChildRightForearmNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightForearmNearDL[] = dgLinkChildRightForearmNearDL; + +#define dgLinkChildLeftShoulderNearDL "__OTR__objects/object_link_child/gLinkChildLeftShoulderNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftShoulderNearDL[] = dgLinkChildLeftShoulderNearDL; + +#define dgLinkChildLeftForearmNearDL "__OTR__objects/object_link_child/gLinkChildLeftForearmNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftForearmNearDL[] = dgLinkChildLeftForearmNearDL; + +#define dgLinkChildLinkDekuStickDL "__OTR__objects/object_link_child/gLinkChildLinkDekuStickDL" +static const ALIGN_ASSET(2) char gLinkChildLinkDekuStickDL[] = dgLinkChildLinkDekuStickDL; + +#define dgLinkChildLeftHandHoldingMasterSwordDL "__OTR__objects/object_link_child/gLinkChildLeftHandHoldingMasterSwordDL" +static const ALIGN_ASSET(2) char gLinkChildLeftHandHoldingMasterSwordDL[] = dgLinkChildLeftHandHoldingMasterSwordDL; + +#define dgLinkChildGoronBraceletDL "__OTR__objects/object_link_child/gLinkChildGoronBraceletDL" +static const ALIGN_ASSET(2) char gLinkChildGoronBraceletDL[] = dgLinkChildGoronBraceletDL; + +#define dgLinkChildLeftFistNearDL "__OTR__objects/object_link_child/gLinkChildLeftFistNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftFistNearDL[] = dgLinkChildLeftFistNearDL; + +#define dgLinkChildRightHandClosedNearDL "__OTR__objects/object_link_child/gLinkChildRightHandClosedNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandClosedNearDL[] = dgLinkChildRightHandClosedNearDL; + +#define dgLinkChildRightHandClosedFarDL "__OTR__objects/object_link_child/gLinkChildRightHandClosedFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandClosedFarDL[] = dgLinkChildRightHandClosedFarDL; + +#define dgLinkChildLeftFistFarDL "__OTR__objects/object_link_child/gLinkChildLeftFistFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftFistFarDL[] = dgLinkChildLeftFistFarDL; + +#define dgLinkChildLeftFistAndKokiriSwordNearDL "__OTR__objects/object_link_child/gLinkChildLeftFistAndKokiriSwordNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftFistAndKokiriSwordNearDL[] = dgLinkChildLeftFistAndKokiriSwordNearDL; + +#define dgLinkChildLeftFistAndKokiriSwordFarDL "__OTR__objects/object_link_child/gLinkChildLeftFistAndKokiriSwordFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftFistAndKokiriSwordFarDL[] = dgLinkChildLeftFistAndKokiriSwordFarDL; + +#define dgLinkChildRightFistAndDekuShieldNearDL "__OTR__objects/object_link_child/gLinkChildRightFistAndDekuShieldNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightFistAndDekuShieldNearDL[] = dgLinkChildRightFistAndDekuShieldNearDL; + +#define dgLinkChildRightFistAndDekuShieldFarDL "__OTR__objects/object_link_child/gLinkChildRightFistAndDekuShieldFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightFistAndDekuShieldFarDL[] = dgLinkChildRightFistAndDekuShieldFarDL; + +#define dgLinkChildLeftFistAndBoomerangNearDL "__OTR__objects/object_link_child/gLinkChildLeftFistAndBoomerangNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftFistAndBoomerangNearDL[] = dgLinkChildLeftFistAndBoomerangNearDL; + +#define dgLinkChildLeftFistAndBoomerangFarDL "__OTR__objects/object_link_child/gLinkChildLeftFistAndBoomerangFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftFistAndBoomerangFarDL[] = dgLinkChildLeftFistAndBoomerangFarDL; + +#define dgLinkChildHylianShieldSwordAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildHylianShieldSwordAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkChildHylianShieldSwordAndSheathNearDL[] = dgLinkChildHylianShieldSwordAndSheathNearDL; + +#define dgLinkChildHylianShieldSwordAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildHylianShieldSwordAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkChildHylianShieldSwordAndSheathFarDL[] = dgLinkChildHylianShieldSwordAndSheathFarDL; + +#define dgLinkChildHylianShieldAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildHylianShieldAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkChildHylianShieldAndSheathNearDL[] = dgLinkChildHylianShieldAndSheathNearDL; + +#define dgLinkChildHylianShieldAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildHylianShieldAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkChildHylianShieldAndSheathFarDL[] = dgLinkChildHylianShieldAndSheathFarDL; + +#define dgLinkChildDekuShieldSwordAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildDekuShieldSwordAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkChildDekuShieldSwordAndSheathNearDL[] = dgLinkChildDekuShieldSwordAndSheathNearDL; + +#define dgLinkChildDekuShieldSwordAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildDekuShieldSwordAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkChildDekuShieldSwordAndSheathFarDL[] = dgLinkChildDekuShieldSwordAndSheathFarDL; + +#define dgLinkChildDekuShieldAndSheathNearDL "__OTR__objects/object_link_child/gLinkChildDekuShieldAndSheathNearDL" +static const ALIGN_ASSET(2) char gLinkChildDekuShieldAndSheathNearDL[] = dgLinkChildDekuShieldAndSheathNearDL; + +#define dgLinkChildDekuShieldAndSheathFarDL "__OTR__objects/object_link_child/gLinkChildDekuShieldAndSheathFarDL" +static const ALIGN_ASSET(2) char gLinkChildDekuShieldAndSheathFarDL[] = dgLinkChildDekuShieldAndSheathFarDL; + +#define dgLinkChildSheathNearDL "__OTR__objects/object_link_child/gLinkChildSheathNearDL" +static const ALIGN_ASSET(2) char gLinkChildSheathNearDL[] = dgLinkChildSheathNearDL; + +#define dgLinkChildSheathFarDL "__OTR__objects/object_link_child/gLinkChildSheathFarDL" +static const ALIGN_ASSET(2) char gLinkChildSheathFarDL[] = dgLinkChildSheathFarDL; + +#define dgLinkChildRightHandAndOotNearDL "__OTR__objects/object_link_child/gLinkChildRightHandAndOotNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandAndOotNearDL[] = dgLinkChildRightHandAndOotNearDL; + +#define dgLinkChildRightHandHoldingOOTFarDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingOOTFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandHoldingOOTFarDL[] = dgLinkChildRightHandHoldingOOTFarDL; + +#define dgLinkChildRightHandHoldingFairyOcarinaNearDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingFairyOcarinaNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandHoldingFairyOcarinaNearDL[] = dgLinkChildRightHandHoldingFairyOcarinaNearDL; + +#define dgLinkChildRightHandHoldingFairyOcarinaFarDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingFairyOcarinaFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandHoldingFairyOcarinaFarDL[] = dgLinkChildRightHandHoldingFairyOcarinaFarDL; + +#define dgLinkChildRightHandHoldingSlingshotNearDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingSlingshotNearDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandHoldingSlingshotNearDL[] = dgLinkChildRightHandHoldingSlingshotNearDL; + +#define dgLinkChildRightHandHoldingSlingshotFarDL "__OTR__objects/object_link_child/gLinkChildRightHandHoldingSlingshotFarDL" +static const ALIGN_ASSET(2) char gLinkChildRightHandHoldingSlingshotFarDL[] = dgLinkChildRightHandHoldingSlingshotFarDL; + +#define dgLinkChildLeftHandUpNearDL "__OTR__objects/object_link_child/gLinkChildLeftHandUpNearDL" +static const ALIGN_ASSET(2) char gLinkChildLeftHandUpNearDL[] = dgLinkChildLeftHandUpNearDL; + +#define dgLinkChildLeftHandUpFarDL "__OTR__objects/object_link_child/gLinkChildLeftHandUpFarDL" +static const ALIGN_ASSET(2) char gLinkChildLeftHandUpFarDL[] = dgLinkChildLeftHandUpFarDL; + +#define dgLinkChildRightArmStretchedSlingshotDL "__OTR__objects/object_link_child/gLinkChildRightArmStretchedSlingshotDL" +static const ALIGN_ASSET(2) char gLinkChildRightArmStretchedSlingshotDL[] = dgLinkChildRightArmStretchedSlingshotDL; + +#define dgLinkChildBottleDL "__OTR__objects/object_link_child/gLinkChildBottleDL" +static const ALIGN_ASSET(2) char gLinkChildBottleDL[] = dgLinkChildBottleDL; + +#define dgLinkChildDL_18580 "__OTR__objects/object_link_child/gLinkChildDL_18580" +static const ALIGN_ASSET(2) char gLinkChildDL_18580[] = dgLinkChildDL_18580; + +#define dgLinkChildBottle2DL "__OTR__objects/object_link_child/gLinkChildBottle2DL" +static const ALIGN_ASSET(2) char gLinkChildBottle2DL[] = dgLinkChildBottle2DL; + +#define dgLinkChildSlinghotStringDL "__OTR__objects/object_link_child/gLinkChildSlinghotStringDL" +static const ALIGN_ASSET(2) char gLinkChildSlinghotStringDL[] = dgLinkChildSlinghotStringDL; + +#define dgLinkChildDekuShieldDL "__OTR__objects/object_link_child/gLinkChildDekuShieldDL" +static const ALIGN_ASSET(2) char gLinkChildDekuShieldDL[] = dgLinkChildDekuShieldDL; + +#define dgLinkChildDekuShieldWithMatrixDL "__OTR__objects/object_link_child/gLinkChildDekuShieldWithMatrixDL" +static const ALIGN_ASSET(2) char gLinkChildDekuShieldWithMatrixDL[] = dgLinkChildDekuShieldWithMatrixDL; + +#define dgLinkChildSkullMaskDL "__OTR__objects/object_link_child/gLinkChildSkullMaskDL" +static const ALIGN_ASSET(2) char gLinkChildSkullMaskDL[] = dgLinkChildSkullMaskDL; + +#define dgLinkChildSpookyMaskDL "__OTR__objects/object_link_child/gLinkChildSpookyMaskDL" +static const ALIGN_ASSET(2) char gLinkChildSpookyMaskDL[] = dgLinkChildSpookyMaskDL; + +#define dgLinkChildKeatonMaskDL "__OTR__objects/object_link_child/gLinkChildKeatonMaskDL" +static const ALIGN_ASSET(2) char gLinkChildKeatonMaskDL[] = dgLinkChildKeatonMaskDL; + +#define dgLinkChildMaskOfTruthDL "__OTR__objects/object_link_child/gLinkChildMaskOfTruthDL" +static const ALIGN_ASSET(2) char gLinkChildMaskOfTruthDL[] = dgLinkChildMaskOfTruthDL; + +#define dgLinkChildGoronMaskDL "__OTR__objects/object_link_child/gLinkChildGoronMaskDL" +static const ALIGN_ASSET(2) char gLinkChildGoronMaskDL[] = dgLinkChildGoronMaskDL; + +#define dgLinkChildZoraMaskDL "__OTR__objects/object_link_child/gLinkChildZoraMaskDL" +static const ALIGN_ASSET(2) char gLinkChildZoraMaskDL[] = dgLinkChildZoraMaskDL; + +#define dgLinkChildGerudoMaskDL "__OTR__objects/object_link_child/gLinkChildGerudoMaskDL" +static const ALIGN_ASSET(2) char gLinkChildGerudoMaskDL[] = dgLinkChildGerudoMaskDL; + +#define dgLinkChildBunnyHoodDL "__OTR__objects/object_link_child/gLinkChildBunnyHoodDL" +static const ALIGN_ASSET(2) char gLinkChildBunnyHoodDL[] = dgLinkChildBunnyHoodDL; + +#define dgLinkChildNoseTex "__OTR__objects/object_link_child/gLinkChildNoseTex" +static const ALIGN_ASSET(2) char gLinkChildNoseTex[] = dgLinkChildNoseTex; + +#define dgLinkChildUnusedHandTex "__OTR__objects/object_link_child/gLinkChildUnusedHandTex" +static const ALIGN_ASSET(2) char gLinkChildUnusedHandTex[] = dgLinkChildUnusedHandTex; + +#define dgLinkChildEarTex "__OTR__objects/object_link_child/gLinkChildEarTex" +static const ALIGN_ASSET(2) char gLinkChildEarTex[] = dgLinkChildEarTex; + +#define dgLinkChildLowerBootTex "__OTR__objects/object_link_child/gLinkChildLowerBootTex" +static const ALIGN_ASSET(2) char gLinkChildLowerBootTex[] = dgLinkChildLowerBootTex; + +#define dgLinkChildBootTex "__OTR__objects/object_link_child/gLinkChildBootTex" +static const ALIGN_ASSET(2) char gLinkChildBootTex[] = dgLinkChildBootTex; + +#define dgLinkChildWaistTex "__OTR__objects/object_link_child/gLinkChildWaistTex" +static const ALIGN_ASSET(2) char gLinkChildWaistTex[] = dgLinkChildWaistTex; + +#define dgLinkChildBeltTex "__OTR__objects/object_link_child/gLinkChildBeltTex" +static const ALIGN_ASSET(2) char gLinkChildBeltTex[] = dgLinkChildBeltTex; + +#define dgLinkChildBeltClaspTex "__OTR__objects/object_link_child/gLinkChildBeltClaspTex" +static const ALIGN_ASSET(2) char gLinkChildBeltClaspTex[] = dgLinkChildBeltClaspTex; + +#define dgLinkChildFairyOcarinaTex "__OTR__objects/object_link_child/gLinkChildFairyOcarinaTex" +static const ALIGN_ASSET(2) char gLinkChildFairyOcarinaTex[] = dgLinkChildFairyOcarinaTex; + +#define dgLinkChildDekuShieldBackTex "__OTR__objects/object_link_child/gLinkChildDekuShieldBackTex" +static const ALIGN_ASSET(2) char gLinkChildDekuShieldBackTex[] = dgLinkChildDekuShieldBackTex; + +#define dgLinkChildDekuShieldFrontTex "__OTR__objects/object_link_child/gLinkChildDekuShieldFrontTex" +static const ALIGN_ASSET(2) char gLinkChildDekuShieldFrontTex[] = dgLinkChildDekuShieldFrontTex; + +#define dgLinkChildHylianShieldBackTex "__OTR__objects/object_link_child/gLinkChildHylianShieldBackTex" +static const ALIGN_ASSET(2) char gLinkChildHylianShieldBackTex[] = dgLinkChildHylianShieldBackTex; + +#define dgLinkChildSlingshotTex "__OTR__objects/object_link_child/gLinkChildSlingshotTex" +static const ALIGN_ASSET(2) char gLinkChildSlingshotTex[] = dgLinkChildSlingshotTex; + +#define dgLinkChildSlingshotSeedTex "__OTR__objects/object_link_child/gLinkChildSlingshotSeedTex" +static const ALIGN_ASSET(2) char gLinkChildSlingshotSeedTex[] = dgLinkChildSlingshotSeedTex; + +#define dgLinkChildHandTex "__OTR__objects/object_link_child/gLinkChildHandTex" +static const ALIGN_ASSET(2) char gLinkChildHandTex[] = dgLinkChildHandTex; + +#define dgLinkChildKokiriSwordSheathTex "__OTR__objects/object_link_child/gLinkChildKokiriSwordSheathTex" +static const ALIGN_ASSET(2) char gLinkChildKokiriSwordSheathTex[] = dgLinkChildKokiriSwordSheathTex; + +#define dgLinkChildSwordJewelTex "__OTR__objects/object_link_child/gLinkChildSwordJewelTex" +static const ALIGN_ASSET(2) char gLinkChildSwordJewelTex[] = dgLinkChildSwordJewelTex; + +#define dgLinkChildMasterSwordPommelTex "__OTR__objects/object_link_child/gLinkChildMasterSwordPommelTex" +static const ALIGN_ASSET(2) char gLinkChildMasterSwordPommelTex[] = dgLinkChildMasterSwordPommelTex; + +#define dgLinkChildMasterSwordGuardTex "__OTR__objects/object_link_child/gLinkChildMasterSwordGuardTex" +static const ALIGN_ASSET(2) char gLinkChildMasterSwordGuardTex[] = dgLinkChildMasterSwordGuardTex; + +#define dgLinkChildMasterSwordEmblemTex "__OTR__objects/object_link_child/gLinkChildMasterSwordEmblemTex" +static const ALIGN_ASSET(2) char gLinkChildMasterSwordEmblemTex[] = dgLinkChildMasterSwordEmblemTex; + +#define dgLinkChildGoronBraceletTex "__OTR__objects/object_link_child/gLinkChildGoronBraceletTex" +static const ALIGN_ASSET(2) char gLinkChildGoronBraceletTex[] = dgLinkChildGoronBraceletTex; + +#define dgLinkChildGoronSymbolTex "__OTR__objects/object_link_child/gLinkChildGoronSymbolTex" +static const ALIGN_ASSET(2) char gLinkChildGoronSymbolTex[] = dgLinkChildGoronSymbolTex; + +#define dgLinkChildSkullMaskTeethTex "__OTR__objects/object_link_child/gLinkChildSkullMaskTeethTex" +static const ALIGN_ASSET(2) char gLinkChildSkullMaskTeethTex[] = dgLinkChildSkullMaskTeethTex; + +#define dgLinkChildSkullMaskNoseTex "__OTR__objects/object_link_child/gLinkChildSkullMaskNoseTex" +static const ALIGN_ASSET(2) char gLinkChildSkullMaskNoseTex[] = dgLinkChildSkullMaskNoseTex; + +#define dgLinkChildSkullMaskEyeTex "__OTR__objects/object_link_child/gLinkChildSkullMaskEyeTex" +static const ALIGN_ASSET(2) char gLinkChildSkullMaskEyeTex[] = dgLinkChildSkullMaskEyeTex; + +#define dgLinkChildSpookyMaskTex "__OTR__objects/object_link_child/gLinkChildSpookyMaskTex" +static const ALIGN_ASSET(2) char gLinkChildSpookyMaskTex[] = dgLinkChildSpookyMaskTex; + +#define dgLinkChildKeatonMaskEyeBrowTex "__OTR__objects/object_link_child/gLinkChildKeatonMaskEyeBrowTex" +static const ALIGN_ASSET(2) char gLinkChildKeatonMaskEyeBrowTex[] = dgLinkChildKeatonMaskEyeBrowTex; + +#define dgLinkChildKeatonMaskEarTex "__OTR__objects/object_link_child/gLinkChildKeatonMaskEarTex" +static const ALIGN_ASSET(2) char gLinkChildKeatonMaskEarTex[] = dgLinkChildKeatonMaskEarTex; + +#define dgLinkChildMaskOfTruthCurveTex "__OTR__objects/object_link_child/gLinkChildMaskOfTruthCurveTex" +static const ALIGN_ASSET(2) char gLinkChildMaskOfTruthCurveTex[] = dgLinkChildMaskOfTruthCurveTex; + +#define dgLinkChildMaskOfTruthTex "__OTR__objects/object_link_child/gLinkChildMaskOfTruthTex" +static const ALIGN_ASSET(2) char gLinkChildMaskOfTruthTex[] = dgLinkChildMaskOfTruthTex; + +#define dgLinkChildGoronMaskMouthTex "__OTR__objects/object_link_child/gLinkChildGoronMaskMouthTex" +static const ALIGN_ASSET(2) char gLinkChildGoronMaskMouthTex[] = dgLinkChildGoronMaskMouthTex; + +#define dgLinkChildGoronMaskEyeTex "__OTR__objects/object_link_child/gLinkChildGoronMaskEyeTex" +static const ALIGN_ASSET(2) char gLinkChildGoronMaskEyeTex[] = dgLinkChildGoronMaskEyeTex; + +#define dgLinkChildGoronMaskNoseTex "__OTR__objects/object_link_child/gLinkChildGoronMaskNoseTex" +static const ALIGN_ASSET(2) char gLinkChildGoronMaskNoseTex[] = dgLinkChildGoronMaskNoseTex; + +#define dgLinkChildGoronMaskHairTex "__OTR__objects/object_link_child/gLinkChildGoronMaskHairTex" +static const ALIGN_ASSET(2) char gLinkChildGoronMaskHairTex[] = dgLinkChildGoronMaskHairTex; + +#define dgLinkChildGoronMaskEarTex "__OTR__objects/object_link_child/gLinkChildGoronMaskEarTex" +static const ALIGN_ASSET(2) char gLinkChildGoronMaskEarTex[] = dgLinkChildGoronMaskEarTex; + +#define dgLinkChildZoraMaskEyeBoarderTex "__OTR__objects/object_link_child/gLinkChildZoraMaskEyeBoarderTex" +static const ALIGN_ASSET(2) char gLinkChildZoraMaskEyeBoarderTex[] = dgLinkChildZoraMaskEyeBoarderTex; + +#define dgLinkChildZoraMaskEarTex "__OTR__objects/object_link_child/gLinkChildZoraMaskEarTex" +static const ALIGN_ASSET(2) char gLinkChildZoraMaskEarTex[] = dgLinkChildZoraMaskEarTex; + +#define dgLinkChildZoraMaskEyeTex "__OTR__objects/object_link_child/gLinkChildZoraMaskEyeTex" +static const ALIGN_ASSET(2) char gLinkChildZoraMaskEyeTex[] = dgLinkChildZoraMaskEyeTex; + +#define dgLinkChildZoraMaskMouthTex "__OTR__objects/object_link_child/gLinkChildZoraMaskMouthTex" +static const ALIGN_ASSET(2) char gLinkChildZoraMaskMouthTex[] = dgLinkChildZoraMaskMouthTex; + +#define dgLinkChildGerudoMaskEyeTex "__OTR__objects/object_link_child/gLinkChildGerudoMaskEyeTex" +static const ALIGN_ASSET(2) char gLinkChildGerudoMaskEyeTex[] = dgLinkChildGerudoMaskEyeTex; + +#define dgLinkChildGerudoMaskMouthTex "__OTR__objects/object_link_child/gLinkChildGerudoMaskMouthTex" +static const ALIGN_ASSET(2) char gLinkChildGerudoMaskMouthTex[] = dgLinkChildGerudoMaskMouthTex; + +#define dgLinkChildGerudoMaskHairTex "__OTR__objects/object_link_child/gLinkChildGerudoMaskHairTex" +static const ALIGN_ASSET(2) char gLinkChildGerudoMaskHairTex[] = dgLinkChildGerudoMaskHairTex; + +#define dgLinkChildGerudoMaskNoseTex "__OTR__objects/object_link_child/gLinkChildGerudoMaskNoseTex" +static const ALIGN_ASSET(2) char gLinkChildGerudoMaskNoseTex[] = dgLinkChildGerudoMaskNoseTex; + +#define dgLinkChildBunnyHoodEyeTex "__OTR__objects/object_link_child/gLinkChildBunnyHoodEyeTex" +static const ALIGN_ASSET(2) char gLinkChildBunnyHoodEyeTex[] = dgLinkChildBunnyHoodEyeTex; + +#define dgLinkChildBunnyHoodTex "__OTR__objects/object_link_child/gLinkChildBunnyHoodTex" +static const ALIGN_ASSET(2) char gLinkChildBunnyHoodTex[] = dgLinkChildBunnyHoodTex; + +#define dgLinkChildBunnyHoodEarTex "__OTR__objects/object_link_child/gLinkChildBunnyHoodEarTex" +static const ALIGN_ASSET(2) char gLinkChildBunnyHoodEarTex[] = dgLinkChildBunnyHoodEarTex; + +#define dgLinkChildSkinTLUT "__OTR__objects/object_link_child/gLinkChildSkinTLUT" +static const ALIGN_ASSET(2) char gLinkChildSkinTLUT[] = dgLinkChildSkinTLUT; + +#define dgLinkChildHandTLUT "__OTR__objects/object_link_child/gLinkChildHandTLUT" +static const ALIGN_ASSET(2) char gLinkChildHandTLUT[] = dgLinkChildHandTLUT; + +#define dgLinkChildSwordsTLUT "__OTR__objects/object_link_child/gLinkChildSwordsTLUT" +static const ALIGN_ASSET(2) char gLinkChildSwordsTLUT[] = dgLinkChildSwordsTLUT; + +#define dgLinkChildSwordTLUT "__OTR__objects/object_link_child/gLinkChildSwordTLUT" +static const ALIGN_ASSET(2) char gLinkChildSwordTLUT[] = dgLinkChildSwordTLUT; + +#define dgLinkChildBeltTLUT "__OTR__objects/object_link_child/gLinkChildBeltTLUT" +static const ALIGN_ASSET(2) char gLinkChildBeltTLUT[] = dgLinkChildBeltTLUT; + +#define dgLinkChildEyesOpenTex "__OTR__objects/object_link_child/gLinkChildEyesOpenTex" +static const ALIGN_ASSET(2) char gLinkChildEyesOpenTex[] = dgLinkChildEyesOpenTex; + +#define dgLinkChildEyesHalfTex "__OTR__objects/object_link_child/gLinkChildEyesHalfTex" +static const ALIGN_ASSET(2) char gLinkChildEyesHalfTex[] = dgLinkChildEyesHalfTex; + +#define dgLinkChildEyesClosedfTex "__OTR__objects/object_link_child/gLinkChildEyesClosedfTex" +static const ALIGN_ASSET(2) char gLinkChildEyesClosedfTex[] = dgLinkChildEyesClosedfTex; + +#define dgLinkChildEyesRollLeftTex "__OTR__objects/object_link_child/gLinkChildEyesRollLeftTex" +static const ALIGN_ASSET(2) char gLinkChildEyesRollLeftTex[] = dgLinkChildEyesRollLeftTex; + +#define dgLinkChildEyesRollRightTex "__OTR__objects/object_link_child/gLinkChildEyesRollRightTex" +static const ALIGN_ASSET(2) char gLinkChildEyesRollRightTex[] = dgLinkChildEyesRollRightTex; + +#define dgLinkChildEyesShockTex "__OTR__objects/object_link_child/gLinkChildEyesShockTex" +static const ALIGN_ASSET(2) char gLinkChildEyesShockTex[] = dgLinkChildEyesShockTex; + +#define dgLinkChildEyesUnk1Tex "__OTR__objects/object_link_child/gLinkChildEyesUnk1Tex" +static const ALIGN_ASSET(2) char gLinkChildEyesUnk1Tex[] = dgLinkChildEyesUnk1Tex; + +#define dgLinkChildEyesUnk2Tex "__OTR__objects/object_link_child/gLinkChildEyesUnk2Tex" +static const ALIGN_ASSET(2) char gLinkChildEyesUnk2Tex[] = dgLinkChildEyesUnk2Tex; + +#define dgLinkChildMouth1Tex "__OTR__objects/object_link_child/gLinkChildMouth1Tex" +static const ALIGN_ASSET(2) char gLinkChildMouth1Tex[] = dgLinkChildMouth1Tex; + +#define dgLinkChildMouth2Tex "__OTR__objects/object_link_child/gLinkChildMouth2Tex" +static const ALIGN_ASSET(2) char gLinkChildMouth2Tex[] = dgLinkChildMouth2Tex; + +#define dgLinkChildMouth3Tex "__OTR__objects/object_link_child/gLinkChildMouth3Tex" +static const ALIGN_ASSET(2) char gLinkChildMouth3Tex[] = dgLinkChildMouth3Tex; + +#define dgLinkChildMouth4Tex "__OTR__objects/object_link_child/gLinkChildMouth4Tex" +static const ALIGN_ASSET(2) char gLinkChildMouth4Tex[] = dgLinkChildMouth4Tex; + +#define dgLinkChildVtx_019E08 "__OTR__objects/object_link_child/gLinkChildVtx_019E08" +static const ALIGN_ASSET(2) char gLinkChildVtx_019E08[] = dgLinkChildVtx_019E08; + +#define dgLinkChildVtx_01A428 "__OTR__objects/object_link_child/gLinkChildVtx_01A428" +static const ALIGN_ASSET(2) char gLinkChildVtx_01A428[] = dgLinkChildVtx_01A428; + +#define dgLinkChildVtx_01AA98 "__OTR__objects/object_link_child/gLinkChildVtx_01AA98" +static const ALIGN_ASSET(2) char gLinkChildVtx_01AA98[] = dgLinkChildVtx_01AA98; + +#define dgLinkChildVtx_01EB38 "__OTR__objects/object_link_child/gLinkChildVtx_01EB38" +static const ALIGN_ASSET(2) char gLinkChildVtx_01EB38[] = dgLinkChildVtx_01EB38; + +#define dgLinkChildVtx_01F2B8 "__OTR__objects/object_link_child/gLinkChildVtx_01F2B8" +static const ALIGN_ASSET(2) char gLinkChildVtx_01F2B8[] = dgLinkChildVtx_01F2B8; + +#define dgLinkChildVtx_01FA28 "__OTR__objects/object_link_child/gLinkChildVtx_01FA28" +static const ALIGN_ASSET(2) char gLinkChildVtx_01FA28[] = dgLinkChildVtx_01FA28; \ No newline at end of file diff --git a/soh/assets/objects/object_ma1/object_ma1.h b/soh/assets/objects/object_ma1/object_ma1.h index 2fdbad3fd..209ec0c98 100644 --- a/soh/assets/objects/object_ma1/object_ma1.h +++ b/soh/assets/objects/object_ma1/object_ma1.h @@ -1,275 +1,120 @@ #pragma once -#define dgMalonChildSkel "__OTR__objects/object_ma1/gMalonChildSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildSkel[] = dgMalonChildSkel; -#else -static const char gMalonChildSkel[] __attribute__((aligned (2))) = dgMalonChildSkel; -#endif - -#define dgMalonChildRaiseHandsAnim "__OTR__objects/object_ma1/gMalonChildRaiseHandsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildRaiseHandsAnim[] = dgMalonChildRaiseHandsAnim; -#else -static const char gMalonChildRaiseHandsAnim[] __attribute__((aligned (2))) = dgMalonChildRaiseHandsAnim; -#endif - -#define dgMalonChildIdleAnim "__OTR__objects/object_ma1/gMalonChildIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildIdleAnim[] = dgMalonChildIdleAnim; -#else -static const char gMalonChildIdleAnim[] __attribute__((aligned (2))) = dgMalonChildIdleAnim; -#endif - -#define dgMalonChildSingAnim "__OTR__objects/object_ma1/gMalonChildSingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildSingAnim[] = dgMalonChildSingAnim; -#else -static const char gMalonChildSingAnim[] __attribute__((aligned (2))) = dgMalonChildSingAnim; -#endif - -#define dgMalonChildDressTLUT "__OTR__objects/object_ma1/gMalonChildDressTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildDressTLUT[] = dgMalonChildDressTLUT; -#else -static const char gMalonChildDressTLUT[] __attribute__((aligned (2))) = dgMalonChildDressTLUT; -#endif - -#define dgMalonChildDressDesignTex "__OTR__objects/object_ma1/gMalonChildDressDesignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildDressDesignTex[] = dgMalonChildDressDesignTex; -#else -static const char gMalonChildDressDesignTex[] __attribute__((aligned (2))) = dgMalonChildDressDesignTex; -#endif - -#define dgMalonChildFingersTex "__OTR__objects/object_ma1/gMalonChildFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildFingersTex[] = dgMalonChildFingersTex; -#else -static const char gMalonChildFingersTex[] __attribute__((aligned (2))) = dgMalonChildFingersTex; -#endif - -#define dgMalonChildBowserTex "__OTR__objects/object_ma1/gMalonChildBowserTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildBowserTex[] = dgMalonChildBowserTex; -#else -static const char gMalonChildBowserTex[] __attribute__((aligned (2))) = dgMalonChildBowserTex; -#endif - -#define dgMalonChildScarfTex "__OTR__objects/object_ma1/gMalonChildScarfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildScarfTex[] = dgMalonChildScarfTex; -#else -static const char gMalonChildScarfTex[] __attribute__((aligned (2))) = dgMalonChildScarfTex; -#endif - -#define dgMalonChildBootTex "__OTR__objects/object_ma1/gMalonChildBootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildBootTex[] = dgMalonChildBootTex; -#else -static const char gMalonChildBootTex[] __attribute__((aligned (2))) = dgMalonChildBootTex; -#endif - -#define dgMalonChildHairTLUT "__OTR__objects/object_ma1/gMalonChildHairTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildHairTLUT[] = dgMalonChildHairTLUT; -#else -static const char gMalonChildHairTLUT[] __attribute__((aligned (2))) = dgMalonChildHairTLUT; -#endif - -#define dgMalonChildSkinGradientTex "__OTR__objects/object_ma1/gMalonChildSkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildSkinGradientTex[] = dgMalonChildSkinGradientTex; -#else -static const char gMalonChildSkinGradientTex[] __attribute__((aligned (2))) = dgMalonChildSkinGradientTex; -#endif - -#define dgMalonChildBrownCircleTex "__OTR__objects/object_ma1/gMalonChildBrownCircleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildBrownCircleTex[] = dgMalonChildBrownCircleTex; -#else -static const char gMalonChildBrownCircleTex[] __attribute__((aligned (2))) = dgMalonChildBrownCircleTex; -#endif - -#define dgMalonChildEarTex "__OTR__objects/object_ma1/gMalonChildEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildEarTex[] = dgMalonChildEarTex; -#else -static const char gMalonChildEarTex[] __attribute__((aligned (2))) = dgMalonChildEarTex; -#endif - -#define dgMalonChildHairTex "__OTR__objects/object_ma1/gMalonChildHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildHairTex[] = dgMalonChildHairTex; -#else -static const char gMalonChildHairTex[] __attribute__((aligned (2))) = dgMalonChildHairTex; -#endif - -#define dgMalonChildNeutralMouthTex "__OTR__objects/object_ma1/gMalonChildNeutralMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildNeutralMouthTex[] = dgMalonChildNeutralMouthTex; -#else -static const char gMalonChildNeutralMouthTex[] __attribute__((aligned (2))) = dgMalonChildNeutralMouthTex; -#endif - -#define dgMalonChildSmilingMouthTex "__OTR__objects/object_ma1/gMalonChildSmilingMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildSmilingMouthTex[] = dgMalonChildSmilingMouthTex; -#else -static const char gMalonChildSmilingMouthTex[] __attribute__((aligned (2))) = dgMalonChildSmilingMouthTex; -#endif - -#define dgMalonChildTalkingMouthTex "__OTR__objects/object_ma1/gMalonChildTalkingMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildTalkingMouthTex[] = dgMalonChildTalkingMouthTex; -#else -static const char gMalonChildTalkingMouthTex[] __attribute__((aligned (2))) = dgMalonChildTalkingMouthTex; -#endif - -#define dgMalonChildEyeTLUT "__OTR__objects/object_ma1/gMalonChildEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildEyeTLUT[] = dgMalonChildEyeTLUT; -#else -static const char gMalonChildEyeTLUT[] __attribute__((aligned (2))) = dgMalonChildEyeTLUT; -#endif - -#define dgMalonChildEyeOpenTex "__OTR__objects/object_ma1/gMalonChildEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildEyeOpenTex[] = dgMalonChildEyeOpenTex; -#else -static const char gMalonChildEyeOpenTex[] __attribute__((aligned (2))) = dgMalonChildEyeOpenTex; -#endif - -#define dgMalonChildEyeHalfTex "__OTR__objects/object_ma1/gMalonChildEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildEyeHalfTex[] = dgMalonChildEyeHalfTex; -#else -static const char gMalonChildEyeHalfTex[] __attribute__((aligned (2))) = dgMalonChildEyeHalfTex; -#endif - -#define dgMalonChildEyeClosedTex "__OTR__objects/object_ma1/gMalonChildEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildEyeClosedTex[] = dgMalonChildEyeClosedTex; -#else -static const char gMalonChildEyeClosedTex[] __attribute__((aligned (2))) = dgMalonChildEyeClosedTex; -#endif - -#define dgMalonChildHeadDL "__OTR__objects/object_ma1/gMalonChildHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildHeadDL[] = dgMalonChildHeadDL; -#else -static const char gMalonChildHeadDL[] __attribute__((aligned (2))) = dgMalonChildHeadDL; -#endif - -#define dgMalonChildDressLowerDL "__OTR__objects/object_ma1/gMalonChildDressLowerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildDressLowerDL[] = dgMalonChildDressLowerDL; -#else -static const char gMalonChildDressLowerDL[] __attribute__((aligned (2))) = dgMalonChildDressLowerDL; -#endif - -#define dgMalonChildDressMiddleDL "__OTR__objects/object_ma1/gMalonChildDressMiddleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildDressMiddleDL[] = dgMalonChildDressMiddleDL; -#else -static const char gMalonChildDressMiddleDL[] __attribute__((aligned (2))) = dgMalonChildDressMiddleDL; -#endif - -#define dgMalonChildChestDL "__OTR__objects/object_ma1/gMalonChildChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildChestDL[] = dgMalonChildChestDL; -#else -static const char gMalonChildChestDL[] __attribute__((aligned (2))) = dgMalonChildChestDL; -#endif - -#define dgMalonChildRightShoulderDL "__OTR__objects/object_ma1/gMalonChildRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildRightShoulderDL[] = dgMalonChildRightShoulderDL; -#else -static const char gMalonChildRightShoulderDL[] __attribute__((aligned (2))) = dgMalonChildRightShoulderDL; -#endif - -#define dgMalonChildRightArmDL "__OTR__objects/object_ma1/gMalonChildRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildRightArmDL[] = dgMalonChildRightArmDL; -#else -static const char gMalonChildRightArmDL[] __attribute__((aligned (2))) = dgMalonChildRightArmDL; -#endif - -#define dgMalonChildRightHandDL "__OTR__objects/object_ma1/gMalonChildRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildRightHandDL[] = dgMalonChildRightHandDL; -#else -static const char gMalonChildRightHandDL[] __attribute__((aligned (2))) = dgMalonChildRightHandDL; -#endif - -#define dgMalonChildLeftShoulderDL "__OTR__objects/object_ma1/gMalonChildLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildLeftShoulderDL[] = dgMalonChildLeftShoulderDL; -#else -static const char gMalonChildLeftShoulderDL[] __attribute__((aligned (2))) = dgMalonChildLeftShoulderDL; -#endif - -#define dgMalonChildLeftArmDL "__OTR__objects/object_ma1/gMalonChildLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildLeftArmDL[] = dgMalonChildLeftArmDL; -#else -static const char gMalonChildLeftArmDL[] __attribute__((aligned (2))) = dgMalonChildLeftArmDL; -#endif - -#define dgMalonChildLeftHandDL "__OTR__objects/object_ma1/gMalonChildLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildLeftHandDL[] = dgMalonChildLeftHandDL; -#else -static const char gMalonChildLeftHandDL[] __attribute__((aligned (2))) = dgMalonChildLeftHandDL; -#endif - -#define dgMalonChildDressUpperDL "__OTR__objects/object_ma1/gMalonChildDressUpperDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildDressUpperDL[] = dgMalonChildDressUpperDL; -#else -static const char gMalonChildDressUpperDL[] __attribute__((aligned (2))) = dgMalonChildDressUpperDL; -#endif - -#define dgMalonChildRightThighDL "__OTR__objects/object_ma1/gMalonChildRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildRightThighDL[] = dgMalonChildRightThighDL; -#else -static const char gMalonChildRightThighDL[] __attribute__((aligned (2))) = dgMalonChildRightThighDL; -#endif - -#define dgMalonChildRightShinDL "__OTR__objects/object_ma1/gMalonChildRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildRightShinDL[] = dgMalonChildRightShinDL; -#else -static const char gMalonChildRightShinDL[] __attribute__((aligned (2))) = dgMalonChildRightShinDL; -#endif - -#define dgMalonChildRightFoorDL "__OTR__objects/object_ma1/gMalonChildRightFoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildRightFoorDL[] = dgMalonChildRightFoorDL; -#else -static const char gMalonChildRightFoorDL[] __attribute__((aligned (2))) = dgMalonChildRightFoorDL; -#endif - -#define dgMalonChildLeftThighDL "__OTR__objects/object_ma1/gMalonChildLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildLeftThighDL[] = dgMalonChildLeftThighDL; -#else -static const char gMalonChildLeftThighDL[] __attribute__((aligned (2))) = dgMalonChildLeftThighDL; -#endif - -#define dgMalonChildLeftShinDL "__OTR__objects/object_ma1/gMalonChildLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildLeftShinDL[] = dgMalonChildLeftShinDL; -#else -static const char gMalonChildLeftShinDL[] __attribute__((aligned (2))) = dgMalonChildLeftShinDL; -#endif - -#define dgMalonChildLeftFootDL "__OTR__objects/object_ma1/gMalonChildLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonChildLeftFootDL[] = dgMalonChildLeftFootDL; -#else -static const char gMalonChildLeftFootDL[] __attribute__((aligned (2))) = dgMalonChildLeftFootDL; -#endif - +#include "align_asset_macro.h" + +#define dgMalonChildSkel "__OTR__objects/object_ma1/gMalonChildSkel" +static const ALIGN_ASSET(2) char gMalonChildSkel[] = dgMalonChildSkel; + +#define dgMalonChildRaiseHandsAnim "__OTR__objects/object_ma1/gMalonChildRaiseHandsAnim" +static const ALIGN_ASSET(2) char gMalonChildRaiseHandsAnim[] = dgMalonChildRaiseHandsAnim; + +#define dgMalonChildIdleAnim "__OTR__objects/object_ma1/gMalonChildIdleAnim" +static const ALIGN_ASSET(2) char gMalonChildIdleAnim[] = dgMalonChildIdleAnim; + +#define dgMalonChildSingAnim "__OTR__objects/object_ma1/gMalonChildSingAnim" +static const ALIGN_ASSET(2) char gMalonChildSingAnim[] = dgMalonChildSingAnim; + +#define dgMalonChildDressTLUT "__OTR__objects/object_ma1/gMalonChildDressTLUT" +static const ALIGN_ASSET(2) char gMalonChildDressTLUT[] = dgMalonChildDressTLUT; + +#define dgMalonChildDressDesignTex "__OTR__objects/object_ma1/gMalonChildDressDesignTex" +static const ALIGN_ASSET(2) char gMalonChildDressDesignTex[] = dgMalonChildDressDesignTex; + +#define dgMalonChildFingersTex "__OTR__objects/object_ma1/gMalonChildFingersTex" +static const ALIGN_ASSET(2) char gMalonChildFingersTex[] = dgMalonChildFingersTex; + +#define dgMalonChildBowserTex "__OTR__objects/object_ma1/gMalonChildBowserTex" +static const ALIGN_ASSET(2) char gMalonChildBowserTex[] = dgMalonChildBowserTex; + +#define dgMalonChildScarfTex "__OTR__objects/object_ma1/gMalonChildScarfTex" +static const ALIGN_ASSET(2) char gMalonChildScarfTex[] = dgMalonChildScarfTex; + +#define dgMalonChildBootTex "__OTR__objects/object_ma1/gMalonChildBootTex" +static const ALIGN_ASSET(2) char gMalonChildBootTex[] = dgMalonChildBootTex; + +#define dgMalonChildHairTLUT "__OTR__objects/object_ma1/gMalonChildHairTLUT" +static const ALIGN_ASSET(2) char gMalonChildHairTLUT[] = dgMalonChildHairTLUT; + +#define dgMalonChildSkinGradientTex "__OTR__objects/object_ma1/gMalonChildSkinGradientTex" +static const ALIGN_ASSET(2) char gMalonChildSkinGradientTex[] = dgMalonChildSkinGradientTex; + +#define dgMalonChildBrownCircleTex "__OTR__objects/object_ma1/gMalonChildBrownCircleTex" +static const ALIGN_ASSET(2) char gMalonChildBrownCircleTex[] = dgMalonChildBrownCircleTex; + +#define dgMalonChildEarTex "__OTR__objects/object_ma1/gMalonChildEarTex" +static const ALIGN_ASSET(2) char gMalonChildEarTex[] = dgMalonChildEarTex; + +#define dgMalonChildHairTex "__OTR__objects/object_ma1/gMalonChildHairTex" +static const ALIGN_ASSET(2) char gMalonChildHairTex[] = dgMalonChildHairTex; + +#define dgMalonChildNeutralMouthTex "__OTR__objects/object_ma1/gMalonChildNeutralMouthTex" +static const ALIGN_ASSET(2) char gMalonChildNeutralMouthTex[] = dgMalonChildNeutralMouthTex; + +#define dgMalonChildSmilingMouthTex "__OTR__objects/object_ma1/gMalonChildSmilingMouthTex" +static const ALIGN_ASSET(2) char gMalonChildSmilingMouthTex[] = dgMalonChildSmilingMouthTex; + +#define dgMalonChildTalkingMouthTex "__OTR__objects/object_ma1/gMalonChildTalkingMouthTex" +static const ALIGN_ASSET(2) char gMalonChildTalkingMouthTex[] = dgMalonChildTalkingMouthTex; + +#define dgMalonChildEyeTLUT "__OTR__objects/object_ma1/gMalonChildEyeTLUT" +static const ALIGN_ASSET(2) char gMalonChildEyeTLUT[] = dgMalonChildEyeTLUT; + +#define dgMalonChildEyeOpenTex "__OTR__objects/object_ma1/gMalonChildEyeOpenTex" +static const ALIGN_ASSET(2) char gMalonChildEyeOpenTex[] = dgMalonChildEyeOpenTex; + +#define dgMalonChildEyeHalfTex "__OTR__objects/object_ma1/gMalonChildEyeHalfTex" +static const ALIGN_ASSET(2) char gMalonChildEyeHalfTex[] = dgMalonChildEyeHalfTex; + +#define dgMalonChildEyeClosedTex "__OTR__objects/object_ma1/gMalonChildEyeClosedTex" +static const ALIGN_ASSET(2) char gMalonChildEyeClosedTex[] = dgMalonChildEyeClosedTex; + +#define dgMalonChildHeadDL "__OTR__objects/object_ma1/gMalonChildHeadDL" +static const ALIGN_ASSET(2) char gMalonChildHeadDL[] = dgMalonChildHeadDL; + +#define dgMalonChildDressLowerDL "__OTR__objects/object_ma1/gMalonChildDressLowerDL" +static const ALIGN_ASSET(2) char gMalonChildDressLowerDL[] = dgMalonChildDressLowerDL; + +#define dgMalonChildDressMiddleDL "__OTR__objects/object_ma1/gMalonChildDressMiddleDL" +static const ALIGN_ASSET(2) char gMalonChildDressMiddleDL[] = dgMalonChildDressMiddleDL; + +#define dgMalonChildChestDL "__OTR__objects/object_ma1/gMalonChildChestDL" +static const ALIGN_ASSET(2) char gMalonChildChestDL[] = dgMalonChildChestDL; + +#define dgMalonChildRightShoulderDL "__OTR__objects/object_ma1/gMalonChildRightShoulderDL" +static const ALIGN_ASSET(2) char gMalonChildRightShoulderDL[] = dgMalonChildRightShoulderDL; + +#define dgMalonChildRightArmDL "__OTR__objects/object_ma1/gMalonChildRightArmDL" +static const ALIGN_ASSET(2) char gMalonChildRightArmDL[] = dgMalonChildRightArmDL; + +#define dgMalonChildRightHandDL "__OTR__objects/object_ma1/gMalonChildRightHandDL" +static const ALIGN_ASSET(2) char gMalonChildRightHandDL[] = dgMalonChildRightHandDL; + +#define dgMalonChildLeftShoulderDL "__OTR__objects/object_ma1/gMalonChildLeftShoulderDL" +static const ALIGN_ASSET(2) char gMalonChildLeftShoulderDL[] = dgMalonChildLeftShoulderDL; + +#define dgMalonChildLeftArmDL "__OTR__objects/object_ma1/gMalonChildLeftArmDL" +static const ALIGN_ASSET(2) char gMalonChildLeftArmDL[] = dgMalonChildLeftArmDL; + +#define dgMalonChildLeftHandDL "__OTR__objects/object_ma1/gMalonChildLeftHandDL" +static const ALIGN_ASSET(2) char gMalonChildLeftHandDL[] = dgMalonChildLeftHandDL; + +#define dgMalonChildDressUpperDL "__OTR__objects/object_ma1/gMalonChildDressUpperDL" +static const ALIGN_ASSET(2) char gMalonChildDressUpperDL[] = dgMalonChildDressUpperDL; + +#define dgMalonChildRightThighDL "__OTR__objects/object_ma1/gMalonChildRightThighDL" +static const ALIGN_ASSET(2) char gMalonChildRightThighDL[] = dgMalonChildRightThighDL; + +#define dgMalonChildRightShinDL "__OTR__objects/object_ma1/gMalonChildRightShinDL" +static const ALIGN_ASSET(2) char gMalonChildRightShinDL[] = dgMalonChildRightShinDL; + +#define dgMalonChildRightFoorDL "__OTR__objects/object_ma1/gMalonChildRightFoorDL" +static const ALIGN_ASSET(2) char gMalonChildRightFoorDL[] = dgMalonChildRightFoorDL; + +#define dgMalonChildLeftThighDL "__OTR__objects/object_ma1/gMalonChildLeftThighDL" +static const ALIGN_ASSET(2) char gMalonChildLeftThighDL[] = dgMalonChildLeftThighDL; + +#define dgMalonChildLeftShinDL "__OTR__objects/object_ma1/gMalonChildLeftShinDL" +static const ALIGN_ASSET(2) char gMalonChildLeftShinDL[] = dgMalonChildLeftShinDL; + +#define dgMalonChildLeftFootDL "__OTR__objects/object_ma1/gMalonChildLeftFootDL" +static const ALIGN_ASSET(2) char gMalonChildLeftFootDL[] = dgMalonChildLeftFootDL; \ No newline at end of file diff --git a/soh/assets/objects/object_ma2/object_ma2.h b/soh/assets/objects/object_ma2/object_ma2.h index a2ad23075..589413798 100644 --- a/soh/assets/objects/object_ma2/object_ma2.h +++ b/soh/assets/objects/object_ma2/object_ma2.h @@ -1,331 +1,144 @@ #pragma once -#define dgMalonAdultClothesTLUT "__OTR__objects/object_ma2/gMalonAdultClothesTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultClothesTLUT[] = dgMalonAdultClothesTLUT; -#else -static const char gMalonAdultClothesTLUT[] __attribute__((aligned (2))) = dgMalonAdultClothesTLUT; -#endif - -#define dgMalonAdultFingersTex "__OTR__objects/object_ma2/gMalonAdultFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultFingersTex[] = dgMalonAdultFingersTex; -#else -static const char gMalonAdultFingersTex[] __attribute__((aligned (2))) = dgMalonAdultFingersTex; -#endif - -#define dgMalonAdultShirtTex "__OTR__objects/object_ma2/gMalonAdultShirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultShirtTex[] = dgMalonAdultShirtTex; -#else -static const char gMalonAdultShirtTex[] __attribute__((aligned (2))) = dgMalonAdultShirtTex; -#endif - -#define dgMalonAdultShirtCuffTex "__OTR__objects/object_ma2/gMalonAdultShirtCuffTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultShirtCuffTex[] = dgMalonAdultShirtCuffTex; -#else -static const char gMalonAdultShirtCuffTex[] __attribute__((aligned (2))) = dgMalonAdultShirtCuffTex; -#endif - -#define dgMalonAdultScarfTex "__OTR__objects/object_ma2/gMalonAdultScarfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultScarfTex[] = dgMalonAdultScarfTex; -#else -static const char gMalonAdultScarfTex[] __attribute__((aligned (2))) = dgMalonAdultScarfTex; -#endif - -#define dgMalonBowserTex "__OTR__objects/object_ma2/gMalonBowserTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonBowserTex[] = dgMalonBowserTex; -#else -static const char gMalonBowserTex[] __attribute__((aligned (2))) = dgMalonBowserTex; -#endif - -#define dgMalonAdultMiddleDressTex "__OTR__objects/object_ma2/gMalonAdultMiddleDressTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultMiddleDressTex[] = dgMalonAdultMiddleDressTex; -#else -static const char gMalonAdultMiddleDressTex[] __attribute__((aligned (2))) = dgMalonAdultMiddleDressTex; -#endif - -#define dgMalonAdultFrontDressTex "__OTR__objects/object_ma2/gMalonAdultFrontDressTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultFrontDressTex[] = dgMalonAdultFrontDressTex; -#else -static const char gMalonAdultFrontDressTex[] __attribute__((aligned (2))) = dgMalonAdultFrontDressTex; -#endif - -#define dgMalonAdultDressPatternTex "__OTR__objects/object_ma2/gMalonAdultDressPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultDressPatternTex[] = dgMalonAdultDressPatternTex; -#else -static const char gMalonAdultDressPatternTex[] __attribute__((aligned (2))) = dgMalonAdultDressPatternTex; -#endif - -#define dgMalonAdultBootTex "__OTR__objects/object_ma2/gMalonAdultBootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultBootTex[] = dgMalonAdultBootTex; -#else -static const char gMalonAdultBootTex[] __attribute__((aligned (2))) = dgMalonAdultBootTex; -#endif - -#define dgMalonAdultBeltTex "__OTR__objects/object_ma2/gMalonAdultBeltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultBeltTex[] = dgMalonAdultBeltTex; -#else -static const char gMalonAdultBeltTex[] __attribute__((aligned (2))) = dgMalonAdultBeltTex; -#endif - -#define dgMalonAdultHairTLUT "__OTR__objects/object_ma2/gMalonAdultHairTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultHairTLUT[] = dgMalonAdultHairTLUT; -#else -static const char gMalonAdultHairTLUT[] __attribute__((aligned (2))) = dgMalonAdultHairTLUT; -#endif - -#define dgMalonAdultGradientTex "__OTR__objects/object_ma2/gMalonAdultGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultGradientTex[] = dgMalonAdultGradientTex; -#else -static const char gMalonAdultGradientTex[] __attribute__((aligned (2))) = dgMalonAdultGradientTex; -#endif - -#define dgMalonAdultNoseTex "__OTR__objects/object_ma2/gMalonAdultNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultNoseTex[] = dgMalonAdultNoseTex; -#else -static const char gMalonAdultNoseTex[] __attribute__((aligned (2))) = dgMalonAdultNoseTex; -#endif - -#define dgMalonAdultEarTex "__OTR__objects/object_ma2/gMalonAdultEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultEarTex[] = dgMalonAdultEarTex; -#else -static const char gMalonAdultEarTex[] __attribute__((aligned (2))) = dgMalonAdultEarTex; -#endif - -#define dgMalonAdultHairTex "__OTR__objects/object_ma2/gMalonAdultHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultHairTex[] = dgMalonAdultHairTex; -#else -static const char gMalonAdultHairTex[] __attribute__((aligned (2))) = dgMalonAdultHairTex; -#endif - -#define dgMalonAdultFaceTLUT "__OTR__objects/object_ma2/gMalonAdultFaceTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultFaceTLUT[] = dgMalonAdultFaceTLUT; -#else -static const char gMalonAdultFaceTLUT[] __attribute__((aligned (2))) = dgMalonAdultFaceTLUT; -#endif - -#define dgMalonAdultEyeOpenTex "__OTR__objects/object_ma2/gMalonAdultEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultEyeOpenTex[] = dgMalonAdultEyeOpenTex; -#else -static const char gMalonAdultEyeOpenTex[] __attribute__((aligned (2))) = dgMalonAdultEyeOpenTex; -#endif - -#define dgMalonAdultEyeHalfTex "__OTR__objects/object_ma2/gMalonAdultEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultEyeHalfTex[] = dgMalonAdultEyeHalfTex; -#else -static const char gMalonAdultEyeHalfTex[] __attribute__((aligned (2))) = dgMalonAdultEyeHalfTex; -#endif - -#define dgMalonAdultEyeClosedTex "__OTR__objects/object_ma2/gMalonAdultEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultEyeClosedTex[] = dgMalonAdultEyeClosedTex; -#else -static const char gMalonAdultEyeClosedTex[] __attribute__((aligned (2))) = dgMalonAdultEyeClosedTex; -#endif - -#define dgMalonAdultBasketTex "__OTR__objects/object_ma2/gMalonAdultBasketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultBasketTex[] = dgMalonAdultBasketTex; -#else -static const char gMalonAdultBasketTex[] __attribute__((aligned (2))) = dgMalonAdultBasketTex; -#endif - -#define dgMalonAdultBasketInsideTex "__OTR__objects/object_ma2/gMalonAdultBasketInsideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultBasketInsideTex[] = dgMalonAdultBasketInsideTex; -#else -static const char gMalonAdultBasketInsideTex[] __attribute__((aligned (2))) = dgMalonAdultBasketInsideTex; -#endif - -#define dgMalonAdultMouthNeutralTex "__OTR__objects/object_ma2/gMalonAdultMouthNeutralTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultMouthNeutralTex[] = dgMalonAdultMouthNeutralTex; -#else -static const char gMalonAdultMouthNeutralTex[] __attribute__((aligned (2))) = dgMalonAdultMouthNeutralTex; -#endif - -#define dgMalonAdultMouthSadTex "__OTR__objects/object_ma2/gMalonAdultMouthSadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultMouthSadTex[] = dgMalonAdultMouthSadTex; -#else -static const char gMalonAdultMouthSadTex[] __attribute__((aligned (2))) = dgMalonAdultMouthSadTex; -#endif - -#define dgMalonAdultMouthHappyTex "__OTR__objects/object_ma2/gMalonAdultMouthHappyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultMouthHappyTex[] = dgMalonAdultMouthHappyTex; -#else -static const char gMalonAdultMouthHappyTex[] __attribute__((aligned (2))) = dgMalonAdultMouthHappyTex; -#endif - -#define dgMalonAdultHeadDL "__OTR__objects/object_ma2/gMalonAdultHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultHeadDL[] = dgMalonAdultHeadDL; -#else -static const char gMalonAdultHeadDL[] __attribute__((aligned (2))) = dgMalonAdultHeadDL; -#endif - -#define dgMalonAdultBasketDL "__OTR__objects/object_ma2/gMalonAdultBasketDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultBasketDL[] = dgMalonAdultBasketDL; -#else -static const char gMalonAdultBasketDL[] __attribute__((aligned (2))) = dgMalonAdultBasketDL; -#endif - -#define dgMalonAdultChestAndNeckDL "__OTR__objects/object_ma2/gMalonAdultChestAndNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultChestAndNeckDL[] = dgMalonAdultChestAndNeckDL; -#else -static const char gMalonAdultChestAndNeckDL[] __attribute__((aligned (2))) = dgMalonAdultChestAndNeckDL; -#endif - -#define dgMalonAdultRightShoulderDL "__OTR__objects/object_ma2/gMalonAdultRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultRightShoulderDL[] = dgMalonAdultRightShoulderDL; -#else -static const char gMalonAdultRightShoulderDL[] __attribute__((aligned (2))) = dgMalonAdultRightShoulderDL; -#endif - -#define dgMalonAdultRightArmDL "__OTR__objects/object_ma2/gMalonAdultRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultRightArmDL[] = dgMalonAdultRightArmDL; -#else -static const char gMalonAdultRightArmDL[] __attribute__((aligned (2))) = dgMalonAdultRightArmDL; -#endif - -#define dgMalonAdultRightHandDL "__OTR__objects/object_ma2/gMalonAdultRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultRightHandDL[] = dgMalonAdultRightHandDL; -#else -static const char gMalonAdultRightHandDL[] __attribute__((aligned (2))) = dgMalonAdultRightHandDL; -#endif - -#define dgMalonAdultLeftShoulderDL "__OTR__objects/object_ma2/gMalonAdultLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultLeftShoulderDL[] = dgMalonAdultLeftShoulderDL; -#else -static const char gMalonAdultLeftShoulderDL[] __attribute__((aligned (2))) = dgMalonAdultLeftShoulderDL; -#endif - -#define dgMalonAdultLeftArmDL "__OTR__objects/object_ma2/gMalonAdultLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultLeftArmDL[] = dgMalonAdultLeftArmDL; -#else -static const char gMalonAdultLeftArmDL[] __attribute__((aligned (2))) = dgMalonAdultLeftArmDL; -#endif - -#define dgMalonAdultLeftHandDL "__OTR__objects/object_ma2/gMalonAdultLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultLeftHandDL[] = dgMalonAdultLeftHandDL; -#else -static const char gMalonAdultLeftHandDL[] __attribute__((aligned (2))) = dgMalonAdultLeftHandDL; -#endif - -#define dgMalonAdultDressDL "__OTR__objects/object_ma2/gMalonAdultDressDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultDressDL[] = dgMalonAdultDressDL; -#else -static const char gMalonAdultDressDL[] __attribute__((aligned (2))) = dgMalonAdultDressDL; -#endif - -#define dgMalonAdultTorsoDL "__OTR__objects/object_ma2/gMalonAdultTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultTorsoDL[] = dgMalonAdultTorsoDL; -#else -static const char gMalonAdultTorsoDL[] __attribute__((aligned (2))) = dgMalonAdultTorsoDL; -#endif - -#define dgMalonAdultRightThighDL "__OTR__objects/object_ma2/gMalonAdultRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultRightThighDL[] = dgMalonAdultRightThighDL; -#else -static const char gMalonAdultRightThighDL[] __attribute__((aligned (2))) = dgMalonAdultRightThighDL; -#endif - -#define dgMalonAdultRightLegDL "__OTR__objects/object_ma2/gMalonAdultRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultRightLegDL[] = dgMalonAdultRightLegDL; -#else -static const char gMalonAdultRightLegDL[] __attribute__((aligned (2))) = dgMalonAdultRightLegDL; -#endif - -#define dgMalonAdultRightFootDL "__OTR__objects/object_ma2/gMalonAdultRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultRightFootDL[] = dgMalonAdultRightFootDL; -#else -static const char gMalonAdultRightFootDL[] __attribute__((aligned (2))) = dgMalonAdultRightFootDL; -#endif - -#define dgMalonAdultLeftThighDL "__OTR__objects/object_ma2/gMalonAdultLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultLeftThighDL[] = dgMalonAdultLeftThighDL; -#else -static const char gMalonAdultLeftThighDL[] __attribute__((aligned (2))) = dgMalonAdultLeftThighDL; -#endif - -#define dgMalonAdultLeftLegDL "__OTR__objects/object_ma2/gMalonAdultLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultLeftLegDL[] = dgMalonAdultLeftLegDL; -#else -static const char gMalonAdultLeftLegDL[] __attribute__((aligned (2))) = dgMalonAdultLeftLegDL; -#endif - -#define dgMalonAdultLeftFootDL "__OTR__objects/object_ma2/gMalonAdultLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultLeftFootDL[] = dgMalonAdultLeftFootDL; -#else -static const char gMalonAdultLeftFootDL[] __attribute__((aligned (2))) = dgMalonAdultLeftFootDL; -#endif - -#define dgMalonAdultSkel "__OTR__objects/object_ma2/gMalonAdultSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultSkel[] = dgMalonAdultSkel; -#else -static const char gMalonAdultSkel[] __attribute__((aligned (2))) = dgMalonAdultSkel; -#endif - -#define dgMalonAdultIdleAnim "__OTR__objects/object_ma2/gMalonAdultIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultIdleAnim[] = dgMalonAdultIdleAnim; -#else -static const char gMalonAdultIdleAnim[] __attribute__((aligned (2))) = dgMalonAdultIdleAnim; -#endif - -#define dgMalonAdultSingToIdleAnim "__OTR__objects/object_ma2/gMalonAdultSingToIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultSingToIdleAnim[] = dgMalonAdultSingToIdleAnim; -#else -static const char gMalonAdultSingToIdleAnim[] __attribute__((aligned (2))) = dgMalonAdultSingToIdleAnim; -#endif - -#define dgMalonAdultStandStillAnim "__OTR__objects/object_ma2/gMalonAdultStandStillAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultStandStillAnim[] = dgMalonAdultStandStillAnim; -#else -static const char gMalonAdultStandStillAnim[] __attribute__((aligned (2))) = dgMalonAdultStandStillAnim; -#endif - -#define dgMalonAdultSingAnim "__OTR__objects/object_ma2/gMalonAdultSingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMalonAdultSingAnim[] = dgMalonAdultSingAnim; -#else -static const char gMalonAdultSingAnim[] __attribute__((aligned (2))) = dgMalonAdultSingAnim; -#endif - +#include "align_asset_macro.h" + +#define dgMalonAdultClothesTLUT "__OTR__objects/object_ma2/gMalonAdultClothesTLUT" +static const ALIGN_ASSET(2) char gMalonAdultClothesTLUT[] = dgMalonAdultClothesTLUT; + +#define dgMalonAdultFingersTex "__OTR__objects/object_ma2/gMalonAdultFingersTex" +static const ALIGN_ASSET(2) char gMalonAdultFingersTex[] = dgMalonAdultFingersTex; + +#define dgMalonAdultShirtTex "__OTR__objects/object_ma2/gMalonAdultShirtTex" +static const ALIGN_ASSET(2) char gMalonAdultShirtTex[] = dgMalonAdultShirtTex; + +#define dgMalonAdultShirtCuffTex "__OTR__objects/object_ma2/gMalonAdultShirtCuffTex" +static const ALIGN_ASSET(2) char gMalonAdultShirtCuffTex[] = dgMalonAdultShirtCuffTex; + +#define dgMalonAdultScarfTex "__OTR__objects/object_ma2/gMalonAdultScarfTex" +static const ALIGN_ASSET(2) char gMalonAdultScarfTex[] = dgMalonAdultScarfTex; + +#define dgMalonBowserTex "__OTR__objects/object_ma2/gMalonBowserTex" +static const ALIGN_ASSET(2) char gMalonBowserTex[] = dgMalonBowserTex; + +#define dgMalonAdultMiddleDressTex "__OTR__objects/object_ma2/gMalonAdultMiddleDressTex" +static const ALIGN_ASSET(2) char gMalonAdultMiddleDressTex[] = dgMalonAdultMiddleDressTex; + +#define dgMalonAdultFrontDressTex "__OTR__objects/object_ma2/gMalonAdultFrontDressTex" +static const ALIGN_ASSET(2) char gMalonAdultFrontDressTex[] = dgMalonAdultFrontDressTex; + +#define dgMalonAdultDressPatternTex "__OTR__objects/object_ma2/gMalonAdultDressPatternTex" +static const ALIGN_ASSET(2) char gMalonAdultDressPatternTex[] = dgMalonAdultDressPatternTex; + +#define dgMalonAdultBootTex "__OTR__objects/object_ma2/gMalonAdultBootTex" +static const ALIGN_ASSET(2) char gMalonAdultBootTex[] = dgMalonAdultBootTex; + +#define dgMalonAdultBeltTex "__OTR__objects/object_ma2/gMalonAdultBeltTex" +static const ALIGN_ASSET(2) char gMalonAdultBeltTex[] = dgMalonAdultBeltTex; + +#define dgMalonAdultHairTLUT "__OTR__objects/object_ma2/gMalonAdultHairTLUT" +static const ALIGN_ASSET(2) char gMalonAdultHairTLUT[] = dgMalonAdultHairTLUT; + +#define dgMalonAdultGradientTex "__OTR__objects/object_ma2/gMalonAdultGradientTex" +static const ALIGN_ASSET(2) char gMalonAdultGradientTex[] = dgMalonAdultGradientTex; + +#define dgMalonAdultNoseTex "__OTR__objects/object_ma2/gMalonAdultNoseTex" +static const ALIGN_ASSET(2) char gMalonAdultNoseTex[] = dgMalonAdultNoseTex; + +#define dgMalonAdultEarTex "__OTR__objects/object_ma2/gMalonAdultEarTex" +static const ALIGN_ASSET(2) char gMalonAdultEarTex[] = dgMalonAdultEarTex; + +#define dgMalonAdultHairTex "__OTR__objects/object_ma2/gMalonAdultHairTex" +static const ALIGN_ASSET(2) char gMalonAdultHairTex[] = dgMalonAdultHairTex; + +#define dgMalonAdultFaceTLUT "__OTR__objects/object_ma2/gMalonAdultFaceTLUT" +static const ALIGN_ASSET(2) char gMalonAdultFaceTLUT[] = dgMalonAdultFaceTLUT; + +#define dgMalonAdultEyeOpenTex "__OTR__objects/object_ma2/gMalonAdultEyeOpenTex" +static const ALIGN_ASSET(2) char gMalonAdultEyeOpenTex[] = dgMalonAdultEyeOpenTex; + +#define dgMalonAdultEyeHalfTex "__OTR__objects/object_ma2/gMalonAdultEyeHalfTex" +static const ALIGN_ASSET(2) char gMalonAdultEyeHalfTex[] = dgMalonAdultEyeHalfTex; + +#define dgMalonAdultEyeClosedTex "__OTR__objects/object_ma2/gMalonAdultEyeClosedTex" +static const ALIGN_ASSET(2) char gMalonAdultEyeClosedTex[] = dgMalonAdultEyeClosedTex; + +#define dgMalonAdultBasketTex "__OTR__objects/object_ma2/gMalonAdultBasketTex" +static const ALIGN_ASSET(2) char gMalonAdultBasketTex[] = dgMalonAdultBasketTex; + +#define dgMalonAdultBasketInsideTex "__OTR__objects/object_ma2/gMalonAdultBasketInsideTex" +static const ALIGN_ASSET(2) char gMalonAdultBasketInsideTex[] = dgMalonAdultBasketInsideTex; + +#define dgMalonAdultMouthNeutralTex "__OTR__objects/object_ma2/gMalonAdultMouthNeutralTex" +static const ALIGN_ASSET(2) char gMalonAdultMouthNeutralTex[] = dgMalonAdultMouthNeutralTex; + +#define dgMalonAdultMouthSadTex "__OTR__objects/object_ma2/gMalonAdultMouthSadTex" +static const ALIGN_ASSET(2) char gMalonAdultMouthSadTex[] = dgMalonAdultMouthSadTex; + +#define dgMalonAdultMouthHappyTex "__OTR__objects/object_ma2/gMalonAdultMouthHappyTex" +static const ALIGN_ASSET(2) char gMalonAdultMouthHappyTex[] = dgMalonAdultMouthHappyTex; + +#define dgMalonAdultHeadDL "__OTR__objects/object_ma2/gMalonAdultHeadDL" +static const ALIGN_ASSET(2) char gMalonAdultHeadDL[] = dgMalonAdultHeadDL; + +#define dgMalonAdultBasketDL "__OTR__objects/object_ma2/gMalonAdultBasketDL" +static const ALIGN_ASSET(2) char gMalonAdultBasketDL[] = dgMalonAdultBasketDL; + +#define dgMalonAdultChestAndNeckDL "__OTR__objects/object_ma2/gMalonAdultChestAndNeckDL" +static const ALIGN_ASSET(2) char gMalonAdultChestAndNeckDL[] = dgMalonAdultChestAndNeckDL; + +#define dgMalonAdultRightShoulderDL "__OTR__objects/object_ma2/gMalonAdultRightShoulderDL" +static const ALIGN_ASSET(2) char gMalonAdultRightShoulderDL[] = dgMalonAdultRightShoulderDL; + +#define dgMalonAdultRightArmDL "__OTR__objects/object_ma2/gMalonAdultRightArmDL" +static const ALIGN_ASSET(2) char gMalonAdultRightArmDL[] = dgMalonAdultRightArmDL; + +#define dgMalonAdultRightHandDL "__OTR__objects/object_ma2/gMalonAdultRightHandDL" +static const ALIGN_ASSET(2) char gMalonAdultRightHandDL[] = dgMalonAdultRightHandDL; + +#define dgMalonAdultLeftShoulderDL "__OTR__objects/object_ma2/gMalonAdultLeftShoulderDL" +static const ALIGN_ASSET(2) char gMalonAdultLeftShoulderDL[] = dgMalonAdultLeftShoulderDL; + +#define dgMalonAdultLeftArmDL "__OTR__objects/object_ma2/gMalonAdultLeftArmDL" +static const ALIGN_ASSET(2) char gMalonAdultLeftArmDL[] = dgMalonAdultLeftArmDL; + +#define dgMalonAdultLeftHandDL "__OTR__objects/object_ma2/gMalonAdultLeftHandDL" +static const ALIGN_ASSET(2) char gMalonAdultLeftHandDL[] = dgMalonAdultLeftHandDL; + +#define dgMalonAdultDressDL "__OTR__objects/object_ma2/gMalonAdultDressDL" +static const ALIGN_ASSET(2) char gMalonAdultDressDL[] = dgMalonAdultDressDL; + +#define dgMalonAdultTorsoDL "__OTR__objects/object_ma2/gMalonAdultTorsoDL" +static const ALIGN_ASSET(2) char gMalonAdultTorsoDL[] = dgMalonAdultTorsoDL; + +#define dgMalonAdultRightThighDL "__OTR__objects/object_ma2/gMalonAdultRightThighDL" +static const ALIGN_ASSET(2) char gMalonAdultRightThighDL[] = dgMalonAdultRightThighDL; + +#define dgMalonAdultRightLegDL "__OTR__objects/object_ma2/gMalonAdultRightLegDL" +static const ALIGN_ASSET(2) char gMalonAdultRightLegDL[] = dgMalonAdultRightLegDL; + +#define dgMalonAdultRightFootDL "__OTR__objects/object_ma2/gMalonAdultRightFootDL" +static const ALIGN_ASSET(2) char gMalonAdultRightFootDL[] = dgMalonAdultRightFootDL; + +#define dgMalonAdultLeftThighDL "__OTR__objects/object_ma2/gMalonAdultLeftThighDL" +static const ALIGN_ASSET(2) char gMalonAdultLeftThighDL[] = dgMalonAdultLeftThighDL; + +#define dgMalonAdultLeftLegDL "__OTR__objects/object_ma2/gMalonAdultLeftLegDL" +static const ALIGN_ASSET(2) char gMalonAdultLeftLegDL[] = dgMalonAdultLeftLegDL; + +#define dgMalonAdultLeftFootDL "__OTR__objects/object_ma2/gMalonAdultLeftFootDL" +static const ALIGN_ASSET(2) char gMalonAdultLeftFootDL[] = dgMalonAdultLeftFootDL; + +#define dgMalonAdultSkel "__OTR__objects/object_ma2/gMalonAdultSkel" +static const ALIGN_ASSET(2) char gMalonAdultSkel[] = dgMalonAdultSkel; + +#define dgMalonAdultIdleAnim "__OTR__objects/object_ma2/gMalonAdultIdleAnim" +static const ALIGN_ASSET(2) char gMalonAdultIdleAnim[] = dgMalonAdultIdleAnim; + +#define dgMalonAdultSingToIdleAnim "__OTR__objects/object_ma2/gMalonAdultSingToIdleAnim" +static const ALIGN_ASSET(2) char gMalonAdultSingToIdleAnim[] = dgMalonAdultSingToIdleAnim; + +#define dgMalonAdultStandStillAnim "__OTR__objects/object_ma2/gMalonAdultStandStillAnim" +static const ALIGN_ASSET(2) char gMalonAdultStandStillAnim[] = dgMalonAdultStandStillAnim; + +#define dgMalonAdultSingAnim "__OTR__objects/object_ma2/gMalonAdultSingAnim" +static const ALIGN_ASSET(2) char gMalonAdultSingAnim[] = dgMalonAdultSingAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_mag/object_mag.h b/soh/assets/objects/object_mag/object_mag.h index 56d34d9b9..8d397a0c5 100644 --- a/soh/assets/objects/object_mag/object_mag.h +++ b/soh/assets/objects/object_mag/object_mag.h @@ -1,142 +1,63 @@ #pragma once -#define dgTitleZeldaShieldLogoMQTex "__OTR__objects/object_mag/gTitleZeldaShieldLogoMQTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleZeldaShieldLogoMQTex[] = dgTitleZeldaShieldLogoMQTex; -#else -static const char gTitleZeldaShieldLogoMQTex[] __attribute__((aligned (2))) = dgTitleZeldaShieldLogoMQTex; -#endif - -#define dgTitleZeldaShieldLogoTex "__OTR__objects/object_mag/gTitleZeldaShieldLogoTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleZeldaShieldLogoTex[] = dgTitleZeldaShieldLogoTex; -#else -static const char gTitleZeldaShieldLogoTex[] __attribute__((aligned (2))) = dgTitleZeldaShieldLogoTex; -#endif - -#define dgTitleCopyright19982002Tex "__OTR__objects/object_mag/gTitleCopyright19982002Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleCopyright19982002Tex[] = dgTitleCopyright19982002Tex; -#else -static const char gTitleCopyright19982002Tex[] __attribute__((aligned (2))) = dgTitleCopyright19982002Tex; -#endif - -#define dgTitleCopyright19982003Tex "__OTR__objects/object_mag/gTitleCopyright19982003Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleCopyright19982003Tex[] = dgTitleCopyright19982003Tex; -#else -static const char gTitleCopyright19982003Tex[] __attribute__((aligned (2))) = dgTitleCopyright19982003Tex; -#endif - -#define dgTitleMasterQuestSubtitleTex "__OTR__objects/object_mag/gTitleMasterQuestSubtitleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleMasterQuestSubtitleTex[] = dgTitleMasterQuestSubtitleTex; -#else -static const char gTitleMasterQuestSubtitleTex[] __attribute__((aligned (2))) = dgTitleMasterQuestSubtitleTex; -#endif - -#define dgTitleEffectMask00Tex "__OTR__objects/object_mag/gTitleEffectMask00Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask00Tex[] = dgTitleEffectMask00Tex; -#else -static const char gTitleEffectMask00Tex[] __attribute__((aligned (2))) = dgTitleEffectMask00Tex; -#endif - -#define dgTitleEffectMask01Tex "__OTR__objects/object_mag/gTitleEffectMask01Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask01Tex[] = dgTitleEffectMask01Tex; -#else -static const char gTitleEffectMask01Tex[] __attribute__((aligned (2))) = dgTitleEffectMask01Tex; -#endif - -#define dgTitleEffectMask02Tex "__OTR__objects/object_mag/gTitleEffectMask02Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask02Tex[] = dgTitleEffectMask02Tex; -#else -static const char gTitleEffectMask02Tex[] __attribute__((aligned (2))) = dgTitleEffectMask02Tex; -#endif - -#define dgTitleEffectMask10Tex "__OTR__objects/object_mag/gTitleEffectMask10Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask10Tex[] = dgTitleEffectMask10Tex; -#else -static const char gTitleEffectMask10Tex[] __attribute__((aligned (2))) = dgTitleEffectMask10Tex; -#endif - -#define dgTitleEffectMask11Tex "__OTR__objects/object_mag/gTitleEffectMask11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask11Tex[] = dgTitleEffectMask11Tex; -#else -static const char gTitleEffectMask11Tex[] __attribute__((aligned (2))) = dgTitleEffectMask11Tex; -#endif - -#define dgTitleEffectMask12Tex "__OTR__objects/object_mag/gTitleEffectMask12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask12Tex[] = dgTitleEffectMask12Tex; -#else -static const char gTitleEffectMask12Tex[] __attribute__((aligned (2))) = dgTitleEffectMask12Tex; -#endif - -#define dgTitleEffectMask20Tex "__OTR__objects/object_mag/gTitleEffectMask20Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask20Tex[] = dgTitleEffectMask20Tex; -#else -static const char gTitleEffectMask20Tex[] __attribute__((aligned (2))) = dgTitleEffectMask20Tex; -#endif - -#define dgTitleEffectMask21Tex "__OTR__objects/object_mag/gTitleEffectMask21Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask21Tex[] = dgTitleEffectMask21Tex; -#else -static const char gTitleEffectMask21Tex[] __attribute__((aligned (2))) = dgTitleEffectMask21Tex; -#endif - -#define dgTitleEffectMask22Tex "__OTR__objects/object_mag/gTitleEffectMask22Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleEffectMask22Tex[] = dgTitleEffectMask22Tex; -#else -static const char gTitleEffectMask22Tex[] __attribute__((aligned (2))) = dgTitleEffectMask22Tex; -#endif - -#define dgTitleFlameEffectTex "__OTR__objects/object_mag/gTitleFlameEffectTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleFlameEffectTex[] = dgTitleFlameEffectTex; -#else -static const char gTitleFlameEffectTex[] __attribute__((aligned (2))) = dgTitleFlameEffectTex; -#endif - -#define dgTitleTheLegendOfTextTex "__OTR__objects/object_mag/gTitleTheLegendOfTextTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleTheLegendOfTextTex[] = dgTitleTheLegendOfTextTex; -#else -static const char gTitleTheLegendOfTextTex[] __attribute__((aligned (2))) = dgTitleTheLegendOfTextTex; -#endif - -#define dgTitleOcarinaOfTimeTMTextTex "__OTR__objects/object_mag/gTitleOcarinaOfTimeTMTextTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleOcarinaOfTimeTMTextTex[] = dgTitleOcarinaOfTimeTMTextTex; -#else -static const char gTitleOcarinaOfTimeTMTextTex[] __attribute__((aligned (2))) = dgTitleOcarinaOfTimeTMTextTex; -#endif - -#define dgTitleUraLogoTex "__OTR__objects/object_mag/gTitleUraLogoTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleUraLogoTex[] = dgTitleUraLogoTex; -#else -static const char gTitleUraLogoTex[] __attribute__((aligned (2))) = dgTitleUraLogoTex; -#endif - -#define dgTitleDiskTex "__OTR__objects/object_mag/gTitleDiskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleDiskTex[] = dgTitleDiskTex; -#else -static const char gTitleDiskTex[] __attribute__((aligned (2))) = dgTitleDiskTex; -#endif - -#define dgTitleTitleJPNTex "__OTR__objects/object_mag/gTitleTitleJPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTitleTitleJPNTex[] = dgTitleTitleJPNTex; -#else -static const char gTitleTitleJPNTex[] __attribute__((aligned (2))) = dgTitleTitleJPNTex; -#endif - +#include "align_asset_macro.h" + +#define dgTitleZeldaShieldLogoMQTex "__OTR__objects/object_mag/gTitleZeldaShieldLogoMQTex" +static const ALIGN_ASSET(2) char gTitleZeldaShieldLogoMQTex[] = dgTitleZeldaShieldLogoMQTex; + +#define dgTitleZeldaShieldLogoTex "__OTR__objects/object_mag/gTitleZeldaShieldLogoTex" +static const ALIGN_ASSET(2) char gTitleZeldaShieldLogoTex[] = dgTitleZeldaShieldLogoTex; + +#define dgTitleCopyright19982002Tex "__OTR__objects/object_mag/gTitleCopyright19982002Tex" +static const ALIGN_ASSET(2) char gTitleCopyright19982002Tex[] = dgTitleCopyright19982002Tex; + +#define dgTitleCopyright19982003Tex "__OTR__objects/object_mag/gTitleCopyright19982003Tex" +static const ALIGN_ASSET(2) char gTitleCopyright19982003Tex[] = dgTitleCopyright19982003Tex; + +#define dgTitleMasterQuestSubtitleTex "__OTR__objects/object_mag/gTitleMasterQuestSubtitleTex" +static const ALIGN_ASSET(2) char gTitleMasterQuestSubtitleTex[] = dgTitleMasterQuestSubtitleTex; + +#define dgTitleEffectMask00Tex "__OTR__objects/object_mag/gTitleEffectMask00Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask00Tex[] = dgTitleEffectMask00Tex; + +#define dgTitleEffectMask01Tex "__OTR__objects/object_mag/gTitleEffectMask01Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask01Tex[] = dgTitleEffectMask01Tex; + +#define dgTitleEffectMask02Tex "__OTR__objects/object_mag/gTitleEffectMask02Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask02Tex[] = dgTitleEffectMask02Tex; + +#define dgTitleEffectMask10Tex "__OTR__objects/object_mag/gTitleEffectMask10Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask10Tex[] = dgTitleEffectMask10Tex; + +#define dgTitleEffectMask11Tex "__OTR__objects/object_mag/gTitleEffectMask11Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask11Tex[] = dgTitleEffectMask11Tex; + +#define dgTitleEffectMask12Tex "__OTR__objects/object_mag/gTitleEffectMask12Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask12Tex[] = dgTitleEffectMask12Tex; + +#define dgTitleEffectMask20Tex "__OTR__objects/object_mag/gTitleEffectMask20Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask20Tex[] = dgTitleEffectMask20Tex; + +#define dgTitleEffectMask21Tex "__OTR__objects/object_mag/gTitleEffectMask21Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask21Tex[] = dgTitleEffectMask21Tex; + +#define dgTitleEffectMask22Tex "__OTR__objects/object_mag/gTitleEffectMask22Tex" +static const ALIGN_ASSET(2) char gTitleEffectMask22Tex[] = dgTitleEffectMask22Tex; + +#define dgTitleFlameEffectTex "__OTR__objects/object_mag/gTitleFlameEffectTex" +static const ALIGN_ASSET(2) char gTitleFlameEffectTex[] = dgTitleFlameEffectTex; + +#define dgTitleTheLegendOfTextTex "__OTR__objects/object_mag/gTitleTheLegendOfTextTex" +static const ALIGN_ASSET(2) char gTitleTheLegendOfTextTex[] = dgTitleTheLegendOfTextTex; + +#define dgTitleOcarinaOfTimeTMTextTex "__OTR__objects/object_mag/gTitleOcarinaOfTimeTMTextTex" +static const ALIGN_ASSET(2) char gTitleOcarinaOfTimeTMTextTex[] = dgTitleOcarinaOfTimeTMTextTex; + +#define dgTitleUraLogoTex "__OTR__objects/object_mag/gTitleUraLogoTex" +static const ALIGN_ASSET(2) char gTitleUraLogoTex[] = dgTitleUraLogoTex; + +#define dgTitleDiskTex "__OTR__objects/object_mag/gTitleDiskTex" +static const ALIGN_ASSET(2) char gTitleDiskTex[] = dgTitleDiskTex; + +#define dgTitleTitleJPNTex "__OTR__objects/object_mag/gTitleTitleJPNTex" +static const ALIGN_ASSET(2) char gTitleTitleJPNTex[] = dgTitleTitleJPNTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mamenoki/object_mamenoki.h b/soh/assets/objects/object_mamenoki/object_mamenoki.h index 03eec1774..75c1cab5f 100644 --- a/soh/assets/objects/object_mamenoki/object_mamenoki.h +++ b/soh/assets/objects/object_mamenoki/object_mamenoki.h @@ -1,79 +1,36 @@ #pragma once -#define dgMagicBeanSeedlingDL "__OTR__objects/object_mamenoki/gMagicBeanSeedlingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanSeedlingDL[] = dgMagicBeanSeedlingDL; -#else -static const char gMagicBeanSeedlingDL[] __attribute__((aligned (2))) = dgMagicBeanSeedlingDL; -#endif - -#define dgMagicBeanStemDL "__OTR__objects/object_mamenoki/gMagicBeanStemDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanStemDL[] = dgMagicBeanStemDL; -#else -static const char gMagicBeanStemDL[] __attribute__((aligned (2))) = dgMagicBeanStemDL; -#endif - -#define dgMagicBeanPlatformDL "__OTR__objects/object_mamenoki/gMagicBeanPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanPlatformDL[] = dgMagicBeanPlatformDL; -#else -static const char gMagicBeanPlatformDL[] __attribute__((aligned (2))) = dgMagicBeanPlatformDL; -#endif - -#define dgMagicBeanSoftSoilDL "__OTR__objects/object_mamenoki/gMagicBeanSoftSoilDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanSoftSoilDL[] = dgMagicBeanSoftSoilDL; -#else -static const char gMagicBeanSoftSoilDL[] __attribute__((aligned (2))) = dgMagicBeanSoftSoilDL; -#endif - -#define dgMagicBeanSoftSoilTex "__OTR__objects/object_mamenoki/gMagicBeanSoftSoilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanSoftSoilTex[] = dgMagicBeanSoftSoilTex; -#else -static const char gMagicBeanSoftSoilTex[] __attribute__((aligned (2))) = dgMagicBeanSoftSoilTex; -#endif - -#define dgMagicBeanSeedlingTex "__OTR__objects/object_mamenoki/gMagicBeanSeedlingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanSeedlingTex[] = dgMagicBeanSeedlingTex; -#else -static const char gMagicBeanSeedlingTex[] __attribute__((aligned (2))) = dgMagicBeanSeedlingTex; -#endif - -#define dgMagicBeanPlatformTex "__OTR__objects/object_mamenoki/gMagicBeanPlatformTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanPlatformTex[] = dgMagicBeanPlatformTex; -#else -static const char gMagicBeanPlatformTex[] __attribute__((aligned (2))) = dgMagicBeanPlatformTex; -#endif - -#define dgMagicBeanPlatformStemTex "__OTR__objects/object_mamenoki/gMagicBeanPlatformStemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanPlatformStemTex[] = dgMagicBeanPlatformStemTex; -#else -static const char gMagicBeanPlatformStemTex[] __attribute__((aligned (2))) = dgMagicBeanPlatformStemTex; -#endif - -#define dgMagicBeanPlatformRootsTex "__OTR__objects/object_mamenoki/gMagicBeanPlatformRootsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanPlatformRootsTex[] = dgMagicBeanPlatformRootsTex; -#else -static const char gMagicBeanPlatformRootsTex[] __attribute__((aligned (2))) = dgMagicBeanPlatformRootsTex; -#endif - -#define dgMagicBeanStemTex "__OTR__objects/object_mamenoki/gMagicBeanStemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanStemTex[] = dgMagicBeanStemTex; -#else -static const char gMagicBeanStemTex[] __attribute__((aligned (2))) = dgMagicBeanStemTex; -#endif - -#define dgMagicBeanPlatformCol "__OTR__objects/object_mamenoki/gMagicBeanPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeanPlatformCol[] = dgMagicBeanPlatformCol; -#else -static const char gMagicBeanPlatformCol[] __attribute__((aligned (2))) = dgMagicBeanPlatformCol; -#endif - +#include "align_asset_macro.h" + +#define dgMagicBeanSeedlingDL "__OTR__objects/object_mamenoki/gMagicBeanSeedlingDL" +static const ALIGN_ASSET(2) char gMagicBeanSeedlingDL[] = dgMagicBeanSeedlingDL; + +#define dgMagicBeanStemDL "__OTR__objects/object_mamenoki/gMagicBeanStemDL" +static const ALIGN_ASSET(2) char gMagicBeanStemDL[] = dgMagicBeanStemDL; + +#define dgMagicBeanPlatformDL "__OTR__objects/object_mamenoki/gMagicBeanPlatformDL" +static const ALIGN_ASSET(2) char gMagicBeanPlatformDL[] = dgMagicBeanPlatformDL; + +#define dgMagicBeanSoftSoilDL "__OTR__objects/object_mamenoki/gMagicBeanSoftSoilDL" +static const ALIGN_ASSET(2) char gMagicBeanSoftSoilDL[] = dgMagicBeanSoftSoilDL; + +#define dgMagicBeanSoftSoilTex "__OTR__objects/object_mamenoki/gMagicBeanSoftSoilTex" +static const ALIGN_ASSET(2) char gMagicBeanSoftSoilTex[] = dgMagicBeanSoftSoilTex; + +#define dgMagicBeanSeedlingTex "__OTR__objects/object_mamenoki/gMagicBeanSeedlingTex" +static const ALIGN_ASSET(2) char gMagicBeanSeedlingTex[] = dgMagicBeanSeedlingTex; + +#define dgMagicBeanPlatformTex "__OTR__objects/object_mamenoki/gMagicBeanPlatformTex" +static const ALIGN_ASSET(2) char gMagicBeanPlatformTex[] = dgMagicBeanPlatformTex; + +#define dgMagicBeanPlatformStemTex "__OTR__objects/object_mamenoki/gMagicBeanPlatformStemTex" +static const ALIGN_ASSET(2) char gMagicBeanPlatformStemTex[] = dgMagicBeanPlatformStemTex; + +#define dgMagicBeanPlatformRootsTex "__OTR__objects/object_mamenoki/gMagicBeanPlatformRootsTex" +static const ALIGN_ASSET(2) char gMagicBeanPlatformRootsTex[] = dgMagicBeanPlatformRootsTex; + +#define dgMagicBeanStemTex "__OTR__objects/object_mamenoki/gMagicBeanStemTex" +static const ALIGN_ASSET(2) char gMagicBeanStemTex[] = dgMagicBeanStemTex; + +#define dgMagicBeanPlatformCol "__OTR__objects/object_mamenoki/gMagicBeanPlatformCol" +static const ALIGN_ASSET(2) char gMagicBeanPlatformCol[] = dgMagicBeanPlatformCol; \ No newline at end of file diff --git a/soh/assets/objects/object_mastergolon/object_mastergolon.h b/soh/assets/objects/object_mastergolon/object_mastergolon.h index 1fa250d9e..f27c44e0d 100644 --- a/soh/assets/objects/object_mastergolon/object_mastergolon.h +++ b/soh/assets/objects/object_mastergolon/object_mastergolon.h @@ -1,9 +1,6 @@ #pragma once -#define dgGoronShopkeeperAnim "__OTR__objects/object_mastergolon/gGoronShopkeeperAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronShopkeeperAnim[] = dgGoronShopkeeperAnim; -#else -static const char gGoronShopkeeperAnim[] __attribute__((aligned (2))) = dgGoronShopkeeperAnim; -#endif - +#include "align_asset_macro.h" + +#define dgGoronShopkeeperAnim "__OTR__objects/object_mastergolon/gGoronShopkeeperAnim" +static const ALIGN_ASSET(2) char gGoronShopkeeperAnim[] = dgGoronShopkeeperAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_masterkokiri/object_masterkokiri.h b/soh/assets/objects/object_masterkokiri/object_masterkokiri.h index f4bcbdb3e..482f8e04d 100644 --- a/soh/assets/objects/object_masterkokiri/object_masterkokiri.h +++ b/soh/assets/objects/object_masterkokiri/object_masterkokiri.h @@ -1,9 +1,6 @@ #pragma once -#define dobject_masterkokiri_Anim_0004A8 "__OTR__objects/object_masterkokiri/object_masterkokiri_Anim_0004A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_masterkokiri_Anim_0004A8[] = dobject_masterkokiri_Anim_0004A8; -#else -static const char object_masterkokiri_Anim_0004A8[] __attribute__((aligned (2))) = dobject_masterkokiri_Anim_0004A8; -#endif - +#include "align_asset_macro.h" + +#define dobject_masterkokiri_Anim_0004A8 "__OTR__objects/object_masterkokiri/object_masterkokiri_Anim_0004A8" +static const ALIGN_ASSET(2) char object_masterkokiri_Anim_0004A8[] = dobject_masterkokiri_Anim_0004A8; \ No newline at end of file diff --git a/soh/assets/objects/object_masterkokirihead/object_masterkokirihead.h b/soh/assets/objects/object_masterkokirihead/object_masterkokirihead.h index f6bd057b4..60a94e0a3 100644 --- a/soh/assets/objects/object_masterkokirihead/object_masterkokirihead.h +++ b/soh/assets/objects/object_masterkokirihead/object_masterkokirihead.h @@ -1,86 +1,39 @@ #pragma once -#define dgKokiriShopkeeperHeadDL "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperHeadDL[] = dgKokiriShopkeeperHeadDL; -#else -static const char gKokiriShopkeeperHeadDL[] __attribute__((aligned (2))) = dgKokiriShopkeeperHeadDL; -#endif - -#define dgKokiriShopkeeperTLUT "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperTLUT[] = dgKokiriShopkeeperTLUT; -#else -static const char gKokiriShopkeeperTLUT[] __attribute__((aligned (2))) = dgKokiriShopkeeperTLUT; -#endif - -#define dgKokiriShopkeeperEyeHalfTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperEyeHalfTex[] = dgKokiriShopkeeperEyeHalfTex; -#else -static const char gKokiriShopkeeperEyeHalfTex[] __attribute__((aligned (2))) = dgKokiriShopkeeperEyeHalfTex; -#endif - -#define dgKokiriShopkeeperEyeOpenTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperEyeOpenTex[] = dgKokiriShopkeeperEyeOpenTex; -#else -static const char gKokiriShopkeeperEyeOpenTex[] __attribute__((aligned (2))) = dgKokiriShopkeeperEyeOpenTex; -#endif - -#define dgKokiriShopkeeperHairTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperHairTex[] = dgKokiriShopkeeperHairTex; -#else -static const char gKokiriShopkeeperHairTex[] __attribute__((aligned (2))) = dgKokiriShopkeeperHairTex; -#endif - -#define dgKokiriShopkeeperNoseTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperNoseTex[] = dgKokiriShopkeeperNoseTex; -#else -static const char gKokiriShopkeeperNoseTex[] __attribute__((aligned (2))) = dgKokiriShopkeeperNoseTex; -#endif - -#define dgKokiriShopkeeperEarTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperEarTex[] = dgKokiriShopkeeperEarTex; -#else -static const char gKokiriShopkeeperEarTex[] __attribute__((aligned (2))) = dgKokiriShopkeeperEarTex; -#endif - -#define dgKokiriShopkeeperEyeDefaultTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperEyeDefaultTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperEyeDefaultTex[] = dgKokiriShopkeeperEyeDefaultTex; -#else -static const char gKokiriShopkeeperEyeDefaultTex[] __attribute__((aligned (2))) = dgKokiriShopkeeperEyeDefaultTex; -#endif - -#define dgKokiriShopkeeperHatTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperHatTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperHatTex[] = dgKokiriShopkeeperHatTex; -#else -static const char gKokiriShopkeeperHatTex[] __attribute__((aligned (2))) = dgKokiriShopkeeperHatTex; -#endif - -#define dgKokiriShopkeeperMouthAndNoseTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperMouthAndNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopkeeperMouthAndNoseTex[] = dgKokiriShopkeeperMouthAndNoseTex; -#else -static const char gKokiriShopkeeperMouthAndNoseTex[] __attribute__((aligned (2))) = dgKokiriShopkeeperMouthAndNoseTex; -#endif - -#define dobject_masterkokiriheadTex_0009F0 "__OTR__objects/object_masterkokirihead/object_masterkokiriheadTex_0009F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_masterkokiriheadTex_0009F0[] = dobject_masterkokiriheadTex_0009F0; -#else -static const char object_masterkokiriheadTex_0009F0[] __attribute__((aligned (2))) = dobject_masterkokiriheadTex_0009F0; -#endif - -#define dobject_masterkokiriheadTex_000A30 "__OTR__objects/object_masterkokirihead/object_masterkokiriheadTex_000A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_masterkokiriheadTex_000A30[] = dobject_masterkokiriheadTex_000A30; -#else -static const char object_masterkokiriheadTex_000A30[] __attribute__((aligned (2))) = dobject_masterkokiriheadTex_000A30; -#endif - +#include "align_asset_macro.h" + +#define dgKokiriShopkeeperHeadDL "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperHeadDL" +static const ALIGN_ASSET(2) char gKokiriShopkeeperHeadDL[] = dgKokiriShopkeeperHeadDL; + +#define dgKokiriShopkeeperTLUT "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperTLUT" +static const ALIGN_ASSET(2) char gKokiriShopkeeperTLUT[] = dgKokiriShopkeeperTLUT; + +#define dgKokiriShopkeeperEyeHalfTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperEyeHalfTex" +static const ALIGN_ASSET(2) char gKokiriShopkeeperEyeHalfTex[] = dgKokiriShopkeeperEyeHalfTex; + +#define dgKokiriShopkeeperEyeOpenTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperEyeOpenTex" +static const ALIGN_ASSET(2) char gKokiriShopkeeperEyeOpenTex[] = dgKokiriShopkeeperEyeOpenTex; + +#define dgKokiriShopkeeperHairTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperHairTex" +static const ALIGN_ASSET(2) char gKokiriShopkeeperHairTex[] = dgKokiriShopkeeperHairTex; + +#define dgKokiriShopkeeperNoseTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperNoseTex" +static const ALIGN_ASSET(2) char gKokiriShopkeeperNoseTex[] = dgKokiriShopkeeperNoseTex; + +#define dgKokiriShopkeeperEarTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperEarTex" +static const ALIGN_ASSET(2) char gKokiriShopkeeperEarTex[] = dgKokiriShopkeeperEarTex; + +#define dgKokiriShopkeeperEyeDefaultTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperEyeDefaultTex" +static const ALIGN_ASSET(2) char gKokiriShopkeeperEyeDefaultTex[] = dgKokiriShopkeeperEyeDefaultTex; + +#define dgKokiriShopkeeperHatTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperHatTex" +static const ALIGN_ASSET(2) char gKokiriShopkeeperHatTex[] = dgKokiriShopkeeperHatTex; + +#define dgKokiriShopkeeperMouthAndNoseTex "__OTR__objects/object_masterkokirihead/gKokiriShopkeeperMouthAndNoseTex" +static const ALIGN_ASSET(2) char gKokiriShopkeeperMouthAndNoseTex[] = dgKokiriShopkeeperMouthAndNoseTex; + +#define dobject_masterkokiriheadTex_0009F0 "__OTR__objects/object_masterkokirihead/object_masterkokiriheadTex_0009F0" +static const ALIGN_ASSET(2) char object_masterkokiriheadTex_0009F0[] = dobject_masterkokiriheadTex_0009F0; + +#define dobject_masterkokiriheadTex_000A30 "__OTR__objects/object_masterkokirihead/object_masterkokiriheadTex_000A30" +static const ALIGN_ASSET(2) char object_masterkokiriheadTex_000A30[] = dobject_masterkokiriheadTex_000A30; \ No newline at end of file diff --git a/soh/assets/objects/object_masterzoora/object_masterzoora.h b/soh/assets/objects/object_masterzoora/object_masterzoora.h index baf4df976..960f616ed 100644 --- a/soh/assets/objects/object_masterzoora/object_masterzoora.h +++ b/soh/assets/objects/object_masterzoora/object_masterzoora.h @@ -1,9 +1,6 @@ #pragma once -#define dgZoraShopkeeperAnim "__OTR__objects/object_masterzoora/gZoraShopkeeperAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraShopkeeperAnim[] = dgZoraShopkeeperAnim; -#else -static const char gZoraShopkeeperAnim[] __attribute__((aligned (2))) = dgZoraShopkeeperAnim; -#endif - +#include "align_asset_macro.h" + +#define dgZoraShopkeeperAnim "__OTR__objects/object_masterzoora/gZoraShopkeeperAnim" +static const ALIGN_ASSET(2) char gZoraShopkeeperAnim[] = dgZoraShopkeeperAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_mb/object_mb.h b/soh/assets/objects/object_mb/object_mb.h index e00758c28..7aed44cba 100644 --- a/soh/assets/objects/object_mb/object_mb.h +++ b/soh/assets/objects/object_mb/object_mb.h @@ -1,492 +1,213 @@ #pragma once -#define dgEnMbSpearSkel "__OTR__objects/object_mb/gEnMbSpearSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearSkel[] = dgEnMbSpearSkel; -#else -static const char gEnMbSpearSkel[] __attribute__((aligned (2))) = dgEnMbSpearSkel; -#endif - -#define dgEnMbClubSkel "__OTR__objects/object_mb/gEnMbClubSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubSkel[] = dgEnMbClubSkel; -#else -static const char gEnMbClubSkel[] __attribute__((aligned (2))) = dgEnMbClubSkel; -#endif - -#define dgEnMbSpearFallFaceDownAnim "__OTR__objects/object_mb/gEnMbSpearFallFaceDownAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearFallFaceDownAnim[] = dgEnMbSpearFallFaceDownAnim; -#else -static const char gEnMbSpearFallFaceDownAnim[] __attribute__((aligned (2))) = dgEnMbSpearFallFaceDownAnim; -#endif - -#define dgEnMbSpearDamagedFromBehindAnim "__OTR__objects/object_mb/gEnMbSpearDamagedFromBehindAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearDamagedFromBehindAnim[] = dgEnMbSpearDamagedFromBehindAnim; -#else -static const char gEnMbSpearDamagedFromBehindAnim[] __attribute__((aligned (2))) = dgEnMbSpearDamagedFromBehindAnim; -#endif - -#define dgEnMbSpearDamagedUngrabSpearAnim "__OTR__objects/object_mb/gEnMbSpearDamagedUngrabSpearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearDamagedUngrabSpearAnim[] = dgEnMbSpearDamagedUngrabSpearAnim; -#else -static const char gEnMbSpearDamagedUngrabSpearAnim[] __attribute__((aligned (2))) = dgEnMbSpearDamagedUngrabSpearAnim; -#endif - -#define dgEnMbSpearFallOnItsBackAnim "__OTR__objects/object_mb/gEnMbSpearFallOnItsBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearFallOnItsBackAnim[] = dgEnMbSpearFallOnItsBackAnim; -#else -static const char gEnMbSpearFallOnItsBackAnim[] __attribute__((aligned (2))) = dgEnMbSpearFallOnItsBackAnim; -#endif - -#define dgEnMbSpearDamagedFromFrontAnim "__OTR__objects/object_mb/gEnMbSpearDamagedFromFrontAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearDamagedFromFrontAnim[] = dgEnMbSpearDamagedFromFrontAnim; -#else -static const char gEnMbSpearDamagedFromFrontAnim[] __attribute__((aligned (2))) = dgEnMbSpearDamagedFromFrontAnim; -#endif - -#define dgEnMbSpearStandStillAnim "__OTR__objects/object_mb/gEnMbSpearStandStillAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearStandStillAnim[] = dgEnMbSpearStandStillAnim; -#else -static const char gEnMbSpearStandStillAnim[] __attribute__((aligned (2))) = dgEnMbSpearStandStillAnim; -#endif - -#define dgEnMbSpearPrepareChargeAnim "__OTR__objects/object_mb/gEnMbSpearPrepareChargeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearPrepareChargeAnim[] = dgEnMbSpearPrepareChargeAnim; -#else -static const char gEnMbSpearPrepareChargeAnim[] __attribute__((aligned (2))) = dgEnMbSpearPrepareChargeAnim; -#endif - -#define dgEnMbSpearChargeAnim "__OTR__objects/object_mb/gEnMbSpearChargeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearChargeAnim[] = dgEnMbSpearChargeAnim; -#else -static const char gEnMbSpearChargeAnim[] __attribute__((aligned (2))) = dgEnMbSpearChargeAnim; -#endif - -#define dgEnMbSpearLookLeftAndRightAnim "__OTR__objects/object_mb/gEnMbSpearLookLeftAndRightAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearLookLeftAndRightAnim[] = dgEnMbSpearLookLeftAndRightAnim; -#else -static const char gEnMbSpearLookLeftAndRightAnim[] __attribute__((aligned (2))) = dgEnMbSpearLookLeftAndRightAnim; -#endif - -#define dgEnMbSpearSlowDownAnim "__OTR__objects/object_mb/gEnMbSpearSlowDownAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearSlowDownAnim[] = dgEnMbSpearSlowDownAnim; -#else -static const char gEnMbSpearSlowDownAnim[] __attribute__((aligned (2))) = dgEnMbSpearSlowDownAnim; -#endif - -#define dgEnMbSpearLookLeftAnim "__OTR__objects/object_mb/gEnMbSpearLookLeftAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearLookLeftAnim[] = dgEnMbSpearLookLeftAnim; -#else -static const char gEnMbSpearLookLeftAnim[] __attribute__((aligned (2))) = dgEnMbSpearLookLeftAnim; -#endif - -#define dgEnMbSpearWalkAnim "__OTR__objects/object_mb/gEnMbSpearWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearWalkAnim[] = dgEnMbSpearWalkAnim; -#else -static const char gEnMbSpearWalkAnim[] __attribute__((aligned (2))) = dgEnMbSpearWalkAnim; -#endif - -#define dgEnMbSpearUngrabSpearAnim "__OTR__objects/object_mb/gEnMbSpearUngrabSpearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearUngrabSpearAnim[] = dgEnMbSpearUngrabSpearAnim; -#else -static const char gEnMbSpearUngrabSpearAnim[] __attribute__((aligned (2))) = dgEnMbSpearUngrabSpearAnim; -#endif - -#define dgEnMbSpearGrabSpearAnim "__OTR__objects/object_mb/gEnMbSpearGrabSpearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearGrabSpearAnim[] = dgEnMbSpearGrabSpearAnim; -#else -static const char gEnMbSpearGrabSpearAnim[] __attribute__((aligned (2))) = dgEnMbSpearGrabSpearAnim; -#endif - -#define dgEnMbClubStrikeDownAnim "__OTR__objects/object_mb/gEnMbClubStrikeDownAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubStrikeDownAnim[] = dgEnMbClubStrikeDownAnim; -#else -static const char gEnMbClubStrikeDownAnim[] __attribute__((aligned (2))) = dgEnMbClubStrikeDownAnim; -#endif - -#define dgEnMbClubLiftClubAnim "__OTR__objects/object_mb/gEnMbClubLiftClubAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubLiftClubAnim[] = dgEnMbClubLiftClubAnim; -#else -static const char gEnMbClubLiftClubAnim[] __attribute__((aligned (2))) = dgEnMbClubLiftClubAnim; -#endif - -#define dgEnMbClubFallOnItsBackAnim "__OTR__objects/object_mb/gEnMbClubFallOnItsBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubFallOnItsBackAnim[] = dgEnMbClubFallOnItsBackAnim; -#else -static const char gEnMbClubFallOnItsBackAnim[] __attribute__((aligned (2))) = dgEnMbClubFallOnItsBackAnim; -#endif - -#define dgEnMbClubDamagedKneelAnim "__OTR__objects/object_mb/gEnMbClubDamagedKneelAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubDamagedKneelAnim[] = dgEnMbClubDamagedKneelAnim; -#else -static const char gEnMbClubDamagedKneelAnim[] __attribute__((aligned (2))) = dgEnMbClubDamagedKneelAnim; -#endif - -#define dgEnMbClubStandStillClubUpAnim "__OTR__objects/object_mb/gEnMbClubStandStillClubUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubStandStillClubUpAnim[] = dgEnMbClubStandStillClubUpAnim; -#else -static const char gEnMbClubStandStillClubUpAnim[] __attribute__((aligned (2))) = dgEnMbClubStandStillClubUpAnim; -#endif - -#define dgEnMbClubKneelingAnim "__OTR__objects/object_mb/gEnMbClubKneelingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubKneelingAnim[] = dgEnMbClubKneelingAnim; -#else -static const char gEnMbClubKneelingAnim[] __attribute__((aligned (2))) = dgEnMbClubKneelingAnim; -#endif - -#define dgEnMbClubBeatenKneelingAnim "__OTR__objects/object_mb/gEnMbClubBeatenKneelingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubBeatenKneelingAnim[] = dgEnMbClubBeatenKneelingAnim; -#else -static const char gEnMbClubBeatenKneelingAnim[] __attribute__((aligned (2))) = dgEnMbClubBeatenKneelingAnim; -#endif - -#define dgEnMbClubStandUpAnim "__OTR__objects/object_mb/gEnMbClubStandUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubStandUpAnim[] = dgEnMbClubStandUpAnim; -#else -static const char gEnMbClubStandUpAnim[] __attribute__((aligned (2))) = dgEnMbClubStandUpAnim; -#endif - -#define dgEnMbClubStandStillClubDownAnim "__OTR__objects/object_mb/gEnMbClubStandStillClubDownAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbClubStandStillClubDownAnim[] = dgEnMbClubStandStillClubDownAnim; -#else -static const char gEnMbClubStandStillClubDownAnim[] __attribute__((aligned (2))) = dgEnMbClubStandStillClubDownAnim; -#endif - -#define dgEnMbDL_006930 "__OTR__objects/object_mb/gEnMbDL_006930" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_006930[] = dgEnMbDL_006930; -#else -static const char gEnMbDL_006930[] __attribute__((aligned (2))) = dgEnMbDL_006930; -#endif - -#define dgEnMbDL_006A18 "__OTR__objects/object_mb/gEnMbDL_006A18" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_006A18[] = dgEnMbDL_006A18; -#else -static const char gEnMbDL_006A18[] __attribute__((aligned (2))) = dgEnMbDL_006A18; -#endif - -#define dgEnMbDL_006B20 "__OTR__objects/object_mb/gEnMbDL_006B20" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_006B20[] = dgEnMbDL_006B20; -#else -static const char gEnMbDL_006B20[] __attribute__((aligned (2))) = dgEnMbDL_006B20; -#endif - -#define dgEnMbDL_006CD0 "__OTR__objects/object_mb/gEnMbDL_006CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_006CD0[] = dgEnMbDL_006CD0; -#else -static const char gEnMbDL_006CD0[] __attribute__((aligned (2))) = dgEnMbDL_006CD0; -#endif - -#define dgEnMbDL_006DD8 "__OTR__objects/object_mb/gEnMbDL_006DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_006DD8[] = dgEnMbDL_006DD8; -#else -static const char gEnMbDL_006DD8[] __attribute__((aligned (2))) = dgEnMbDL_006DD8; -#endif - -#define dgEnMbDL_006EE0 "__OTR__objects/object_mb/gEnMbDL_006EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_006EE0[] = dgEnMbDL_006EE0; -#else -static const char gEnMbDL_006EE0[] __attribute__((aligned (2))) = dgEnMbDL_006EE0; -#endif - -#define dgEnMbDL_007090 "__OTR__objects/object_mb/gEnMbDL_007090" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_007090[] = dgEnMbDL_007090; -#else -static const char gEnMbDL_007090[] __attribute__((aligned (2))) = dgEnMbDL_007090; -#endif - -#define dgEnMbDL_007198 "__OTR__objects/object_mb/gEnMbDL_007198" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_007198[] = dgEnMbDL_007198; -#else -static const char gEnMbDL_007198[] __attribute__((aligned (2))) = dgEnMbDL_007198; -#endif - -#define dgEnMbDL_0073F0 "__OTR__objects/object_mb/gEnMbDL_0073F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_0073F0[] = dgEnMbDL_0073F0; -#else -static const char gEnMbDL_0073F0[] __attribute__((aligned (2))) = dgEnMbDL_0073F0; -#endif - -#define dgEnMbDL_007500 "__OTR__objects/object_mb/gEnMbDL_007500" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_007500[] = dgEnMbDL_007500; -#else -static const char gEnMbDL_007500[] __attribute__((aligned (2))) = dgEnMbDL_007500; -#endif - -#define dgEnMbDL_0076C8 "__OTR__objects/object_mb/gEnMbDL_0076C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_0076C8[] = dgEnMbDL_0076C8; -#else -static const char gEnMbDL_0076C8[] __attribute__((aligned (2))) = dgEnMbDL_0076C8; -#endif - -#define dgEnMbDL_0077F8 "__OTR__objects/object_mb/gEnMbDL_0077F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_0077F8[] = dgEnMbDL_0077F8; -#else -static const char gEnMbDL_0077F8[] __attribute__((aligned (2))) = dgEnMbDL_0077F8; -#endif - -#define dgEnMbDL_007AD0 "__OTR__objects/object_mb/gEnMbDL_007AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_007AD0[] = dgEnMbDL_007AD0; -#else -static const char gEnMbDL_007AD0[] __attribute__((aligned (2))) = dgEnMbDL_007AD0; -#endif - -#define dgEnMbDL_007E70 "__OTR__objects/object_mb/gEnMbDL_007E70" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_007E70[] = dgEnMbDL_007E70; -#else -static const char gEnMbDL_007E70[] __attribute__((aligned (2))) = dgEnMbDL_007E70; -#endif - -#define dgEnMbFaceTex "__OTR__objects/object_mb/gEnMbFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbFaceTex[] = dgEnMbFaceTex; -#else -static const char gEnMbFaceTex[] __attribute__((aligned (2))) = dgEnMbFaceTex; -#endif - -#define dgEnMbDL_012580 "__OTR__objects/object_mb/gEnMbDL_012580" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_012580[] = dgEnMbDL_012580; -#else -static const char gEnMbDL_012580[] __attribute__((aligned (2))) = dgEnMbDL_012580; -#endif - -#define dgEnMbDL_012698 "__OTR__objects/object_mb/gEnMbDL_012698" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_012698[] = dgEnMbDL_012698; -#else -static const char gEnMbDL_012698[] __attribute__((aligned (2))) = dgEnMbDL_012698; -#endif - -#define dgEnMbDL_012868 "__OTR__objects/object_mb/gEnMbDL_012868" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_012868[] = dgEnMbDL_012868; -#else -static const char gEnMbDL_012868[] __attribute__((aligned (2))) = dgEnMbDL_012868; -#endif - -#define dgEnMbDL_012A18 "__OTR__objects/object_mb/gEnMbDL_012A18" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_012A18[] = dgEnMbDL_012A18; -#else -static const char gEnMbDL_012A18[] __attribute__((aligned (2))) = dgEnMbDL_012A18; -#endif - -#define dgEnMbDL_012B20 "__OTR__objects/object_mb/gEnMbDL_012B20" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_012B20[] = dgEnMbDL_012B20; -#else -static const char gEnMbDL_012B20[] __attribute__((aligned (2))) = dgEnMbDL_012B20; -#endif - -#define dgEnMbDL_012CF0 "__OTR__objects/object_mb/gEnMbDL_012CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_012CF0[] = dgEnMbDL_012CF0; -#else -static const char gEnMbDL_012CF0[] __attribute__((aligned (2))) = dgEnMbDL_012CF0; -#endif - -#define dgEnMbDL_012EA0 "__OTR__objects/object_mb/gEnMbDL_012EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_012EA0[] = dgEnMbDL_012EA0; -#else -static const char gEnMbDL_012EA0[] __attribute__((aligned (2))) = dgEnMbDL_012EA0; -#endif - -#define dgEnMbDL_012FA8 "__OTR__objects/object_mb/gEnMbDL_012FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_012FA8[] = dgEnMbDL_012FA8; -#else -static const char gEnMbDL_012FA8[] __attribute__((aligned (2))) = dgEnMbDL_012FA8; -#endif - -#define dgEnMbDL_0130D8 "__OTR__objects/object_mb/gEnMbDL_0130D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_0130D8[] = dgEnMbDL_0130D8; -#else -static const char gEnMbDL_0130D8[] __attribute__((aligned (2))) = dgEnMbDL_0130D8; -#endif - -#define dgEnMbDL_013228 "__OTR__objects/object_mb/gEnMbDL_013228" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_013228[] = dgEnMbDL_013228; -#else -static const char gEnMbDL_013228[] __attribute__((aligned (2))) = dgEnMbDL_013228; -#endif - -#define dgEnMbDL_013440 "__OTR__objects/object_mb/gEnMbDL_013440" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_013440[] = dgEnMbDL_013440; -#else -static const char gEnMbDL_013440[] __attribute__((aligned (2))) = dgEnMbDL_013440; -#endif - -#define dgEnMbDL_0136C8 "__OTR__objects/object_mb/gEnMbDL_0136C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_0136C8[] = dgEnMbDL_0136C8; -#else -static const char gEnMbDL_0136C8[] __attribute__((aligned (2))) = dgEnMbDL_0136C8; -#endif - -#define dgEnMbDL_013818 "__OTR__objects/object_mb/gEnMbDL_013818" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_013818[] = dgEnMbDL_013818; -#else -static const char gEnMbDL_013818[] __attribute__((aligned (2))) = dgEnMbDL_013818; -#endif - -#define dgEnMbDL_013A30 "__OTR__objects/object_mb/gEnMbDL_013A30" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_013A30[] = dgEnMbDL_013A30; -#else -static const char gEnMbDL_013A30[] __attribute__((aligned (2))) = dgEnMbDL_013A30; -#endif - -#define dgEnMbDL_013DF0 "__OTR__objects/object_mb/gEnMbDL_013DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbDL_013DF0[] = dgEnMbDL_013DF0; -#else -static const char gEnMbDL_013DF0[] __attribute__((aligned (2))) = dgEnMbDL_013DF0; -#endif - -#define dgEnMbSpearSkelLimbsLimb_008DE8DL_007908 "__OTR__objects/object_mb/gEnMbSpearSkelLimbsLimb_008DE8DL_007908" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnMbSpearSkelLimbsLimb_008DE8DL_007908[] = dgEnMbSpearSkelLimbsLimb_008DE8DL_007908; -#else -static const char gEnMbSpearSkelLimbsLimb_008DE8DL_007908[] __attribute__((aligned (2))) = dgEnMbSpearSkelLimbsLimb_008DE8DL_007908; -#endif - -#define dobject_mbTex_008328 "__OTR__objects/object_mb/object_mbTex_008328" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_008328[] = dobject_mbTex_008328; -#else -static const char object_mbTex_008328[] __attribute__((aligned (2))) = dobject_mbTex_008328; -#endif - -#define dobject_mbTex_008128 "__OTR__objects/object_mb/object_mbTex_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_008128[] = dobject_mbTex_008128; -#else -static const char object_mbTex_008128[] __attribute__((aligned (2))) = dobject_mbTex_008128; -#endif - -#define dobject_mbTex_008BC8 "__OTR__objects/object_mb/object_mbTex_008BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_008BC8[] = dobject_mbTex_008BC8; -#else -static const char object_mbTex_008BC8[] __attribute__((aligned (2))) = dobject_mbTex_008BC8; -#endif - -#define dobject_mbTex_008C48 "__OTR__objects/object_mb/object_mbTex_008C48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_008C48[] = dobject_mbTex_008C48; -#else -static const char object_mbTex_008C48[] __attribute__((aligned (2))) = dobject_mbTex_008C48; -#endif - -#define dobject_mbTex_008C88 "__OTR__objects/object_mb/object_mbTex_008C88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_008C88[] = dobject_mbTex_008C88; -#else -static const char object_mbTex_008C88[] __attribute__((aligned (2))) = dobject_mbTex_008C88; -#endif - -#define dobject_mbTex_008A48 "__OTR__objects/object_mb/object_mbTex_008A48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_008A48[] = dobject_mbTex_008A48; -#else -static const char object_mbTex_008A48[] __attribute__((aligned (2))) = dobject_mbTex_008A48; -#endif - -#define dobject_mbTex_008928 "__OTR__objects/object_mb/object_mbTex_008928" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_008928[] = dobject_mbTex_008928; -#else -static const char object_mbTex_008928[] __attribute__((aligned (2))) = dobject_mbTex_008928; -#endif - -#define dobject_mbTex_008A28 "__OTR__objects/object_mb/object_mbTex_008A28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_008A28[] = dobject_mbTex_008A28; -#else -static const char object_mbTex_008A28[] __attribute__((aligned (2))) = dobject_mbTex_008A28; -#endif - -#define dobject_mbTex_00F280 "__OTR__objects/object_mb/object_mbTex_00F280" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_00F280[] = dobject_mbTex_00F280; -#else -static const char object_mbTex_00F280[] __attribute__((aligned (2))) = dobject_mbTex_00F280; -#endif - -#define dobject_mbTex_00EE00 "__OTR__objects/object_mb/object_mbTex_00EE00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_00EE00[] = dobject_mbTex_00EE00; -#else -static const char object_mbTex_00EE00[] __attribute__((aligned (2))) = dobject_mbTex_00EE00; -#endif - -#define dobject_mbTex_00EC00 "__OTR__objects/object_mb/object_mbTex_00EC00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_00EC00[] = dobject_mbTex_00EC00; -#else -static const char object_mbTex_00EC00[] __attribute__((aligned (2))) = dobject_mbTex_00EC00; -#endif - -#define dobject_mbTex_00EF00 "__OTR__objects/object_mb/object_mbTex_00EF00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_00EF00[] = dobject_mbTex_00EF00; -#else -static const char object_mbTex_00EF00[] __attribute__((aligned (2))) = dobject_mbTex_00EF00; -#endif - -#define dobject_mbTex_00F000 "__OTR__objects/object_mb/object_mbTex_00F000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_00F000[] = dobject_mbTex_00F000; -#else -static const char object_mbTex_00F000[] __attribute__((aligned (2))) = dobject_mbTex_00F000; -#endif - -#define dobject_mbTex_00F200 "__OTR__objects/object_mb/object_mbTex_00F200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mbTex_00F200[] = dobject_mbTex_00F200; -#else -static const char object_mbTex_00F200[] __attribute__((aligned (2))) = dobject_mbTex_00F200; -#endif - +#include "align_asset_macro.h" + +#define dgEnMbSpearSkel "__OTR__objects/object_mb/gEnMbSpearSkel" +static const ALIGN_ASSET(2) char gEnMbSpearSkel[] = dgEnMbSpearSkel; + +#define dgEnMbClubSkel "__OTR__objects/object_mb/gEnMbClubSkel" +static const ALIGN_ASSET(2) char gEnMbClubSkel[] = dgEnMbClubSkel; + +#define dgEnMbSpearFallFaceDownAnim "__OTR__objects/object_mb/gEnMbSpearFallFaceDownAnim" +static const ALIGN_ASSET(2) char gEnMbSpearFallFaceDownAnim[] = dgEnMbSpearFallFaceDownAnim; + +#define dgEnMbSpearDamagedFromBehindAnim "__OTR__objects/object_mb/gEnMbSpearDamagedFromBehindAnim" +static const ALIGN_ASSET(2) char gEnMbSpearDamagedFromBehindAnim[] = dgEnMbSpearDamagedFromBehindAnim; + +#define dgEnMbSpearDamagedUngrabSpearAnim "__OTR__objects/object_mb/gEnMbSpearDamagedUngrabSpearAnim" +static const ALIGN_ASSET(2) char gEnMbSpearDamagedUngrabSpearAnim[] = dgEnMbSpearDamagedUngrabSpearAnim; + +#define dgEnMbSpearFallOnItsBackAnim "__OTR__objects/object_mb/gEnMbSpearFallOnItsBackAnim" +static const ALIGN_ASSET(2) char gEnMbSpearFallOnItsBackAnim[] = dgEnMbSpearFallOnItsBackAnim; + +#define dgEnMbSpearDamagedFromFrontAnim "__OTR__objects/object_mb/gEnMbSpearDamagedFromFrontAnim" +static const ALIGN_ASSET(2) char gEnMbSpearDamagedFromFrontAnim[] = dgEnMbSpearDamagedFromFrontAnim; + +#define dgEnMbSpearStandStillAnim "__OTR__objects/object_mb/gEnMbSpearStandStillAnim" +static const ALIGN_ASSET(2) char gEnMbSpearStandStillAnim[] = dgEnMbSpearStandStillAnim; + +#define dgEnMbSpearPrepareChargeAnim "__OTR__objects/object_mb/gEnMbSpearPrepareChargeAnim" +static const ALIGN_ASSET(2) char gEnMbSpearPrepareChargeAnim[] = dgEnMbSpearPrepareChargeAnim; + +#define dgEnMbSpearChargeAnim "__OTR__objects/object_mb/gEnMbSpearChargeAnim" +static const ALIGN_ASSET(2) char gEnMbSpearChargeAnim[] = dgEnMbSpearChargeAnim; + +#define dgEnMbSpearLookLeftAndRightAnim "__OTR__objects/object_mb/gEnMbSpearLookLeftAndRightAnim" +static const ALIGN_ASSET(2) char gEnMbSpearLookLeftAndRightAnim[] = dgEnMbSpearLookLeftAndRightAnim; + +#define dgEnMbSpearSlowDownAnim "__OTR__objects/object_mb/gEnMbSpearSlowDownAnim" +static const ALIGN_ASSET(2) char gEnMbSpearSlowDownAnim[] = dgEnMbSpearSlowDownAnim; + +#define dgEnMbSpearLookLeftAnim "__OTR__objects/object_mb/gEnMbSpearLookLeftAnim" +static const ALIGN_ASSET(2) char gEnMbSpearLookLeftAnim[] = dgEnMbSpearLookLeftAnim; + +#define dgEnMbSpearWalkAnim "__OTR__objects/object_mb/gEnMbSpearWalkAnim" +static const ALIGN_ASSET(2) char gEnMbSpearWalkAnim[] = dgEnMbSpearWalkAnim; + +#define dgEnMbSpearUngrabSpearAnim "__OTR__objects/object_mb/gEnMbSpearUngrabSpearAnim" +static const ALIGN_ASSET(2) char gEnMbSpearUngrabSpearAnim[] = dgEnMbSpearUngrabSpearAnim; + +#define dgEnMbSpearGrabSpearAnim "__OTR__objects/object_mb/gEnMbSpearGrabSpearAnim" +static const ALIGN_ASSET(2) char gEnMbSpearGrabSpearAnim[] = dgEnMbSpearGrabSpearAnim; + +#define dgEnMbClubStrikeDownAnim "__OTR__objects/object_mb/gEnMbClubStrikeDownAnim" +static const ALIGN_ASSET(2) char gEnMbClubStrikeDownAnim[] = dgEnMbClubStrikeDownAnim; + +#define dgEnMbClubLiftClubAnim "__OTR__objects/object_mb/gEnMbClubLiftClubAnim" +static const ALIGN_ASSET(2) char gEnMbClubLiftClubAnim[] = dgEnMbClubLiftClubAnim; + +#define dgEnMbClubFallOnItsBackAnim "__OTR__objects/object_mb/gEnMbClubFallOnItsBackAnim" +static const ALIGN_ASSET(2) char gEnMbClubFallOnItsBackAnim[] = dgEnMbClubFallOnItsBackAnim; + +#define dgEnMbClubDamagedKneelAnim "__OTR__objects/object_mb/gEnMbClubDamagedKneelAnim" +static const ALIGN_ASSET(2) char gEnMbClubDamagedKneelAnim[] = dgEnMbClubDamagedKneelAnim; + +#define dgEnMbClubStandStillClubUpAnim "__OTR__objects/object_mb/gEnMbClubStandStillClubUpAnim" +static const ALIGN_ASSET(2) char gEnMbClubStandStillClubUpAnim[] = dgEnMbClubStandStillClubUpAnim; + +#define dgEnMbClubKneelingAnim "__OTR__objects/object_mb/gEnMbClubKneelingAnim" +static const ALIGN_ASSET(2) char gEnMbClubKneelingAnim[] = dgEnMbClubKneelingAnim; + +#define dgEnMbClubBeatenKneelingAnim "__OTR__objects/object_mb/gEnMbClubBeatenKneelingAnim" +static const ALIGN_ASSET(2) char gEnMbClubBeatenKneelingAnim[] = dgEnMbClubBeatenKneelingAnim; + +#define dgEnMbClubStandUpAnim "__OTR__objects/object_mb/gEnMbClubStandUpAnim" +static const ALIGN_ASSET(2) char gEnMbClubStandUpAnim[] = dgEnMbClubStandUpAnim; + +#define dgEnMbClubStandStillClubDownAnim "__OTR__objects/object_mb/gEnMbClubStandStillClubDownAnim" +static const ALIGN_ASSET(2) char gEnMbClubStandStillClubDownAnim[] = dgEnMbClubStandStillClubDownAnim; + +#define dgEnMbDL_006930 "__OTR__objects/object_mb/gEnMbDL_006930" +static const ALIGN_ASSET(2) char gEnMbDL_006930[] = dgEnMbDL_006930; + +#define dgEnMbDL_006A18 "__OTR__objects/object_mb/gEnMbDL_006A18" +static const ALIGN_ASSET(2) char gEnMbDL_006A18[] = dgEnMbDL_006A18; + +#define dgEnMbDL_006B20 "__OTR__objects/object_mb/gEnMbDL_006B20" +static const ALIGN_ASSET(2) char gEnMbDL_006B20[] = dgEnMbDL_006B20; + +#define dgEnMbDL_006CD0 "__OTR__objects/object_mb/gEnMbDL_006CD0" +static const ALIGN_ASSET(2) char gEnMbDL_006CD0[] = dgEnMbDL_006CD0; + +#define dgEnMbDL_006DD8 "__OTR__objects/object_mb/gEnMbDL_006DD8" +static const ALIGN_ASSET(2) char gEnMbDL_006DD8[] = dgEnMbDL_006DD8; + +#define dgEnMbDL_006EE0 "__OTR__objects/object_mb/gEnMbDL_006EE0" +static const ALIGN_ASSET(2) char gEnMbDL_006EE0[] = dgEnMbDL_006EE0; + +#define dgEnMbDL_007090 "__OTR__objects/object_mb/gEnMbDL_007090" +static const ALIGN_ASSET(2) char gEnMbDL_007090[] = dgEnMbDL_007090; + +#define dgEnMbDL_007198 "__OTR__objects/object_mb/gEnMbDL_007198" +static const ALIGN_ASSET(2) char gEnMbDL_007198[] = dgEnMbDL_007198; + +#define dgEnMbDL_0073F0 "__OTR__objects/object_mb/gEnMbDL_0073F0" +static const ALIGN_ASSET(2) char gEnMbDL_0073F0[] = dgEnMbDL_0073F0; + +#define dgEnMbDL_007500 "__OTR__objects/object_mb/gEnMbDL_007500" +static const ALIGN_ASSET(2) char gEnMbDL_007500[] = dgEnMbDL_007500; + +#define dgEnMbDL_0076C8 "__OTR__objects/object_mb/gEnMbDL_0076C8" +static const ALIGN_ASSET(2) char gEnMbDL_0076C8[] = dgEnMbDL_0076C8; + +#define dgEnMbDL_0077F8 "__OTR__objects/object_mb/gEnMbDL_0077F8" +static const ALIGN_ASSET(2) char gEnMbDL_0077F8[] = dgEnMbDL_0077F8; + +#define dgEnMbDL_007AD0 "__OTR__objects/object_mb/gEnMbDL_007AD0" +static const ALIGN_ASSET(2) char gEnMbDL_007AD0[] = dgEnMbDL_007AD0; + +#define dgEnMbDL_007E70 "__OTR__objects/object_mb/gEnMbDL_007E70" +static const ALIGN_ASSET(2) char gEnMbDL_007E70[] = dgEnMbDL_007E70; + +#define dgEnMbFaceTex "__OTR__objects/object_mb/gEnMbFaceTex" +static const ALIGN_ASSET(2) char gEnMbFaceTex[] = dgEnMbFaceTex; + +#define dgEnMbDL_012580 "__OTR__objects/object_mb/gEnMbDL_012580" +static const ALIGN_ASSET(2) char gEnMbDL_012580[] = dgEnMbDL_012580; + +#define dgEnMbDL_012698 "__OTR__objects/object_mb/gEnMbDL_012698" +static const ALIGN_ASSET(2) char gEnMbDL_012698[] = dgEnMbDL_012698; + +#define dgEnMbDL_012868 "__OTR__objects/object_mb/gEnMbDL_012868" +static const ALIGN_ASSET(2) char gEnMbDL_012868[] = dgEnMbDL_012868; + +#define dgEnMbDL_012A18 "__OTR__objects/object_mb/gEnMbDL_012A18" +static const ALIGN_ASSET(2) char gEnMbDL_012A18[] = dgEnMbDL_012A18; + +#define dgEnMbDL_012B20 "__OTR__objects/object_mb/gEnMbDL_012B20" +static const ALIGN_ASSET(2) char gEnMbDL_012B20[] = dgEnMbDL_012B20; + +#define dgEnMbDL_012CF0 "__OTR__objects/object_mb/gEnMbDL_012CF0" +static const ALIGN_ASSET(2) char gEnMbDL_012CF0[] = dgEnMbDL_012CF0; + +#define dgEnMbDL_012EA0 "__OTR__objects/object_mb/gEnMbDL_012EA0" +static const ALIGN_ASSET(2) char gEnMbDL_012EA0[] = dgEnMbDL_012EA0; + +#define dgEnMbDL_012FA8 "__OTR__objects/object_mb/gEnMbDL_012FA8" +static const ALIGN_ASSET(2) char gEnMbDL_012FA8[] = dgEnMbDL_012FA8; + +#define dgEnMbDL_0130D8 "__OTR__objects/object_mb/gEnMbDL_0130D8" +static const ALIGN_ASSET(2) char gEnMbDL_0130D8[] = dgEnMbDL_0130D8; + +#define dgEnMbDL_013228 "__OTR__objects/object_mb/gEnMbDL_013228" +static const ALIGN_ASSET(2) char gEnMbDL_013228[] = dgEnMbDL_013228; + +#define dgEnMbDL_013440 "__OTR__objects/object_mb/gEnMbDL_013440" +static const ALIGN_ASSET(2) char gEnMbDL_013440[] = dgEnMbDL_013440; + +#define dgEnMbDL_0136C8 "__OTR__objects/object_mb/gEnMbDL_0136C8" +static const ALIGN_ASSET(2) char gEnMbDL_0136C8[] = dgEnMbDL_0136C8; + +#define dgEnMbDL_013818 "__OTR__objects/object_mb/gEnMbDL_013818" +static const ALIGN_ASSET(2) char gEnMbDL_013818[] = dgEnMbDL_013818; + +#define dgEnMbDL_013A30 "__OTR__objects/object_mb/gEnMbDL_013A30" +static const ALIGN_ASSET(2) char gEnMbDL_013A30[] = dgEnMbDL_013A30; + +#define dgEnMbDL_013DF0 "__OTR__objects/object_mb/gEnMbDL_013DF0" +static const ALIGN_ASSET(2) char gEnMbDL_013DF0[] = dgEnMbDL_013DF0; + +#define dgEnMbSpearSkelLimbsLimb_008DE8DL_007908 "__OTR__objects/object_mb/gEnMbSpearSkelLimbsLimb_008DE8DL_007908" +static const ALIGN_ASSET(2) char gEnMbSpearSkelLimbsLimb_008DE8DL_007908[] = dgEnMbSpearSkelLimbsLimb_008DE8DL_007908; + +#define dobject_mbTex_008328 "__OTR__objects/object_mb/object_mbTex_008328" +static const ALIGN_ASSET(2) char object_mbTex_008328[] = dobject_mbTex_008328; + +#define dobject_mbTex_008128 "__OTR__objects/object_mb/object_mbTex_008128" +static const ALIGN_ASSET(2) char object_mbTex_008128[] = dobject_mbTex_008128; + +#define dobject_mbTex_008BC8 "__OTR__objects/object_mb/object_mbTex_008BC8" +static const ALIGN_ASSET(2) char object_mbTex_008BC8[] = dobject_mbTex_008BC8; + +#define dobject_mbTex_008C48 "__OTR__objects/object_mb/object_mbTex_008C48" +static const ALIGN_ASSET(2) char object_mbTex_008C48[] = dobject_mbTex_008C48; + +#define dobject_mbTex_008C88 "__OTR__objects/object_mb/object_mbTex_008C88" +static const ALIGN_ASSET(2) char object_mbTex_008C88[] = dobject_mbTex_008C88; + +#define dobject_mbTex_008A48 "__OTR__objects/object_mb/object_mbTex_008A48" +static const ALIGN_ASSET(2) char object_mbTex_008A48[] = dobject_mbTex_008A48; + +#define dobject_mbTex_008928 "__OTR__objects/object_mb/object_mbTex_008928" +static const ALIGN_ASSET(2) char object_mbTex_008928[] = dobject_mbTex_008928; + +#define dobject_mbTex_008A28 "__OTR__objects/object_mb/object_mbTex_008A28" +static const ALIGN_ASSET(2) char object_mbTex_008A28[] = dobject_mbTex_008A28; + +#define dobject_mbTex_00F280 "__OTR__objects/object_mb/object_mbTex_00F280" +static const ALIGN_ASSET(2) char object_mbTex_00F280[] = dobject_mbTex_00F280; + +#define dobject_mbTex_00EE00 "__OTR__objects/object_mb/object_mbTex_00EE00" +static const ALIGN_ASSET(2) char object_mbTex_00EE00[] = dobject_mbTex_00EE00; + +#define dobject_mbTex_00EC00 "__OTR__objects/object_mb/object_mbTex_00EC00" +static const ALIGN_ASSET(2) char object_mbTex_00EC00[] = dobject_mbTex_00EC00; + +#define dobject_mbTex_00EF00 "__OTR__objects/object_mb/object_mbTex_00EF00" +static const ALIGN_ASSET(2) char object_mbTex_00EF00[] = dobject_mbTex_00EF00; + +#define dobject_mbTex_00F000 "__OTR__objects/object_mb/object_mbTex_00F000" +static const ALIGN_ASSET(2) char object_mbTex_00F000[] = dobject_mbTex_00F000; + +#define dobject_mbTex_00F200 "__OTR__objects/object_mb/object_mbTex_00F200" +static const ALIGN_ASSET(2) char object_mbTex_00F200[] = dobject_mbTex_00F200; \ No newline at end of file diff --git a/soh/assets/objects/object_md/object_md.h b/soh/assets/objects/object_md/object_md.h index e667ada15..e7769fe83 100644 --- a/soh/assets/objects/object_md/object_md.h +++ b/soh/assets/objects/object_md/object_md.h @@ -1,380 +1,165 @@ #pragma once -#define dgMidoSkel "__OTR__objects/object_md/gMidoSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoSkel[] = dgMidoSkel; -#else -static const char gMidoSkel[] __attribute__((aligned (2))) = dgMidoSkel; -#endif - -#define dgMidoWaistDL "__OTR__objects/object_md/gMidoWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoWaistDL[] = dgMidoWaistDL; -#else -static const char gMidoWaistDL[] __attribute__((aligned (2))) = dgMidoWaistDL; -#endif - -#define dgMidoLeftThighDL "__OTR__objects/object_md/gMidoLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoLeftThighDL[] = dgMidoLeftThighDL; -#else -static const char gMidoLeftThighDL[] __attribute__((aligned (2))) = dgMidoLeftThighDL; -#endif - -#define dgMidoLeftLegDL "__OTR__objects/object_md/gMidoLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoLeftLegDL[] = dgMidoLeftLegDL; -#else -static const char gMidoLeftLegDL[] __attribute__((aligned (2))) = dgMidoLeftLegDL; -#endif - -#define dgMidoLeftFootDL "__OTR__objects/object_md/gMidoLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoLeftFootDL[] = dgMidoLeftFootDL; -#else -static const char gMidoLeftFootDL[] __attribute__((aligned (2))) = dgMidoLeftFootDL; -#endif - -#define dgMidoRightThighDL "__OTR__objects/object_md/gMidoRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoRightThighDL[] = dgMidoRightThighDL; -#else -static const char gMidoRightThighDL[] __attribute__((aligned (2))) = dgMidoRightThighDL; -#endif - -#define dgMidoRightLegDL "__OTR__objects/object_md/gMidoRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoRightLegDL[] = dgMidoRightLegDL; -#else -static const char gMidoRightLegDL[] __attribute__((aligned (2))) = dgMidoRightLegDL; -#endif - -#define dgMidoRightFootDL "__OTR__objects/object_md/gMidoRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoRightFootDL[] = dgMidoRightFootDL; -#else -static const char gMidoRightFootDL[] __attribute__((aligned (2))) = dgMidoRightFootDL; -#endif - -#define dgMidoTorsoDL "__OTR__objects/object_md/gMidoTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTorsoDL[] = dgMidoTorsoDL; -#else -static const char gMidoTorsoDL[] __attribute__((aligned (2))) = dgMidoTorsoDL; -#endif - -#define dgMidoLeftUpperArmDL "__OTR__objects/object_md/gMidoLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoLeftUpperArmDL[] = dgMidoLeftUpperArmDL; -#else -static const char gMidoLeftUpperArmDL[] __attribute__((aligned (2))) = dgMidoLeftUpperArmDL; -#endif - -#define dgMidoLeftForearmDL "__OTR__objects/object_md/gMidoLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoLeftForearmDL[] = dgMidoLeftForearmDL; -#else -static const char gMidoLeftForearmDL[] __attribute__((aligned (2))) = dgMidoLeftForearmDL; -#endif - -#define dgMidoLeftHandDL "__OTR__objects/object_md/gMidoLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoLeftHandDL[] = dgMidoLeftHandDL; -#else -static const char gMidoLeftHandDL[] __attribute__((aligned (2))) = dgMidoLeftHandDL; -#endif - -#define dgMidoRightUpperArmDL "__OTR__objects/object_md/gMidoRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoRightUpperArmDL[] = dgMidoRightUpperArmDL; -#else -static const char gMidoRightUpperArmDL[] __attribute__((aligned (2))) = dgMidoRightUpperArmDL; -#endif - -#define dgMidoRightForearmDL "__OTR__objects/object_md/gMidoRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoRightForearmDL[] = dgMidoRightForearmDL; -#else -static const char gMidoRightForearmDL[] __attribute__((aligned (2))) = dgMidoRightForearmDL; -#endif - -#define dgMidoRightHandDL "__OTR__objects/object_md/gMidoRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoRightHandDL[] = dgMidoRightHandDL; -#else -static const char gMidoRightHandDL[] __attribute__((aligned (2))) = dgMidoRightHandDL; -#endif - -#define dgMidoHeadDL "__OTR__objects/object_md/gMidoHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoHeadDL[] = dgMidoHeadDL; -#else -static const char gMidoHeadDL[] __attribute__((aligned (2))) = dgMidoHeadDL; -#endif - -#define dgMido1TLUT "__OTR__objects/object_md/gMido1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMido1TLUT[] = dgMido1TLUT; -#else -static const char gMido1TLUT[] __attribute__((aligned (2))) = dgMido1TLUT; -#endif - -#define dgMido2TLUT "__OTR__objects/object_md/gMido2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMido2TLUT[] = dgMido2TLUT; -#else -static const char gMido2TLUT[] __attribute__((aligned (2))) = dgMido2TLUT; -#endif - -#define dgMido3TLUT "__OTR__objects/object_md/gMido3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMido3TLUT[] = dgMido3TLUT; -#else -static const char gMido3TLUT[] __attribute__((aligned (2))) = dgMido3TLUT; -#endif - -#define dgMidoEyeOpenTex "__OTR__objects/object_md/gMidoEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoEyeOpenTex[] = dgMidoEyeOpenTex; -#else -static const char gMidoEyeOpenTex[] __attribute__((aligned (2))) = dgMidoEyeOpenTex; -#endif - -#define dgMidoEyeHalfTex "__OTR__objects/object_md/gMidoEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoEyeHalfTex[] = dgMidoEyeHalfTex; -#else -static const char gMidoEyeHalfTex[] __attribute__((aligned (2))) = dgMidoEyeHalfTex; -#endif - -#define dgMidoEyeClosedTex "__OTR__objects/object_md/gMidoEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoEyeClosedTex[] = dgMidoEyeClosedTex; -#else -static const char gMidoEyeClosedTex[] __attribute__((aligned (2))) = dgMidoEyeClosedTex; -#endif - -#define dgMidoEyeAngryTex "__OTR__objects/object_md/gMidoEyeAngryTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoEyeAngryTex[] = dgMidoEyeAngryTex; -#else -static const char gMidoEyeAngryTex[] __attribute__((aligned (2))) = dgMidoEyeAngryTex; -#endif - -#define dgMidoEyeLookingUpTex "__OTR__objects/object_md/gMidoEyeLookingUpTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoEyeLookingUpTex[] = dgMidoEyeLookingUpTex; -#else -static const char gMidoEyeLookingUpTex[] __attribute__((aligned (2))) = dgMidoEyeLookingUpTex; -#endif - -#define dgMidoGradientTex "__OTR__objects/object_md/gMidoGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoGradientTex[] = dgMidoGradientTex; -#else -static const char gMidoGradientTex[] __attribute__((aligned (2))) = dgMidoGradientTex; -#endif - -#define dgMidoTex_D20 "__OTR__objects/object_md/gMidoTex_D20" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_D20[] = dgMidoTex_D20; -#else -static const char gMidoTex_D20[] __attribute__((aligned (2))) = dgMidoTex_D20; -#endif - -#define dgMidoTex_DA0 "__OTR__objects/object_md/gMidoTex_DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_DA0[] = dgMidoTex_DA0; -#else -static const char gMidoTex_DA0[] __attribute__((aligned (2))) = dgMidoTex_DA0; -#endif - -#define dgMidoHairCurl1Tex "__OTR__objects/object_md/gMidoHairCurl1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoHairCurl1Tex[] = dgMidoHairCurl1Tex; -#else -static const char gMidoHairCurl1Tex[] __attribute__((aligned (2))) = dgMidoHairCurl1Tex; -#endif - -#define dgMidoTex_1220 "__OTR__objects/object_md/gMidoTex_1220" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_1220[] = dgMidoTex_1220; -#else -static const char gMidoTex_1220[] __attribute__((aligned (2))) = dgMidoTex_1220; -#endif - -#define dgMidoTex_1260 "__OTR__objects/object_md/gMidoTex_1260" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_1260[] = dgMidoTex_1260; -#else -static const char gMidoTex_1260[] __attribute__((aligned (2))) = dgMidoTex_1260; -#endif - -#define dgMidoBackOfHandTex "__OTR__objects/object_md/gMidoBackOfHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoBackOfHandTex[] = dgMidoBackOfHandTex; -#else -static const char gMidoBackOfHandTex[] __attribute__((aligned (2))) = dgMidoBackOfHandTex; -#endif - -#define dgMidoClothesTex "__OTR__objects/object_md/gMidoClothesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoClothesTex[] = dgMidoClothesTex; -#else -static const char gMidoClothesTex[] __attribute__((aligned (2))) = dgMidoClothesTex; -#endif - -#define dgMidoUndershirtTex "__OTR__objects/object_md/gMidoUndershirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoUndershirtTex[] = dgMidoUndershirtTex; -#else -static const char gMidoUndershirtTex[] __attribute__((aligned (2))) = dgMidoUndershirtTex; -#endif - -#define dgMidoShoeTex "__OTR__objects/object_md/gMidoShoeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoShoeTex[] = dgMidoShoeTex; -#else -static const char gMidoShoeTex[] __attribute__((aligned (2))) = dgMidoShoeTex; -#endif - -#define dgMidoAnkleTex "__OTR__objects/object_md/gMidoAnkleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoAnkleTex[] = dgMidoAnkleTex; -#else -static const char gMidoAnkleTex[] __attribute__((aligned (2))) = dgMidoAnkleTex; -#endif - -#define dgMidoPantsTex "__OTR__objects/object_md/gMidoPantsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoPantsTex[] = dgMidoPantsTex; -#else -static const char gMidoPantsTex[] __attribute__((aligned (2))) = dgMidoPantsTex; -#endif - -#define dgMidoTex_4FB0 "__OTR__objects/object_md/gMidoTex_4FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_4FB0[] = dgMidoTex_4FB0; -#else -static const char gMidoTex_4FB0[] __attribute__((aligned (2))) = dgMidoTex_4FB0; -#endif - -#define dgMidoTex_53F0 "__OTR__objects/object_md/gMidoTex_53F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_53F0[] = dgMidoTex_53F0; -#else -static const char gMidoTex_53F0[] __attribute__((aligned (2))) = dgMidoTex_53F0; -#endif - -#define dgMidoTex_5430 "__OTR__objects/object_md/gMidoTex_5430" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_5430[] = dgMidoTex_5430; -#else -static const char gMidoTex_5430[] __attribute__((aligned (2))) = dgMidoTex_5430; -#endif - -#define dgMidoHairCurl2Tex "__OTR__objects/object_md/gMidoHairCurl2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoHairCurl2Tex[] = dgMidoHairCurl2Tex; -#else -static const char gMidoHairCurl2Tex[] __attribute__((aligned (2))) = dgMidoHairCurl2Tex; -#endif - -#define dgMidoTex_5870 "__OTR__objects/object_md/gMidoTex_5870" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_5870[] = dgMidoTex_5870; -#else -static const char gMidoTex_5870[] __attribute__((aligned (2))) = dgMidoTex_5870; -#endif - -#define dgMidoTex_58F0 "__OTR__objects/object_md/gMidoTex_58F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoTex_58F0[] = dgMidoTex_58F0; -#else -static const char gMidoTex_58F0[] __attribute__((aligned (2))) = dgMidoTex_58F0; -#endif - -#define dgMidoHandsOnHipsIdleAnim "__OTR__objects/object_md/gMidoHandsOnHipsIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoHandsOnHipsIdleAnim[] = dgMidoHandsOnHipsIdleAnim; -#else -static const char gMidoHandsOnHipsIdleAnim[] __attribute__((aligned (2))) = dgMidoHandsOnHipsIdleAnim; -#endif - -#define dgMidoSlamAnim "__OTR__objects/object_md/gMidoSlamAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoSlamAnim[] = dgMidoSlamAnim; -#else -static const char gMidoSlamAnim[] __attribute__((aligned (2))) = dgMidoSlamAnim; -#endif - -#define dgMidoAngryHeadTurnAnim "__OTR__objects/object_md/gMidoAngryHeadTurnAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoAngryHeadTurnAnim[] = dgMidoAngryHeadTurnAnim; -#else -static const char gMidoAngryHeadTurnAnim[] __attribute__((aligned (2))) = dgMidoAngryHeadTurnAnim; -#endif - -#define dgMidoAnnoyedPointedHeadIdle1Anim "__OTR__objects/object_md/gMidoAnnoyedPointedHeadIdle1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoAnnoyedPointedHeadIdle1Anim[] = dgMidoAnnoyedPointedHeadIdle1Anim; -#else -static const char gMidoAnnoyedPointedHeadIdle1Anim[] __attribute__((aligned (2))) = dgMidoAnnoyedPointedHeadIdle1Anim; -#endif - -#define dgMidoHandsOnHipsTransitionAnim "__OTR__objects/object_md/gMidoHandsOnHipsTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoHandsOnHipsTransitionAnim[] = dgMidoHandsOnHipsTransitionAnim; -#else -static const char gMidoHandsOnHipsTransitionAnim[] __attribute__((aligned (2))) = dgMidoHandsOnHipsTransitionAnim; -#endif - -#define dgMidoRaiseHand1Anim "__OTR__objects/object_md/gMidoRaiseHand1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoRaiseHand1Anim[] = dgMidoRaiseHand1Anim; -#else -static const char gMidoRaiseHand1Anim[] __attribute__((aligned (2))) = dgMidoRaiseHand1Anim; -#endif - -#define dgMidoAnim_92B0 "__OTR__objects/object_md/gMidoAnim_92B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoAnim_92B0[] = dgMidoAnim_92B0; -#else -static const char gMidoAnim_92B0[] __attribute__((aligned (2))) = dgMidoAnim_92B0; -#endif - -#define dgMidoRaiseHand2Anim "__OTR__objects/object_md/gMidoRaiseHand2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoRaiseHand2Anim[] = dgMidoRaiseHand2Anim; -#else -static const char gMidoRaiseHand2Anim[] __attribute__((aligned (2))) = dgMidoRaiseHand2Anim; -#endif - -#define dgMidoAnnoyedPointedHeadIdle2Anim "__OTR__objects/object_md/gMidoAnnoyedPointedHeadIdle2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoAnnoyedPointedHeadIdle2Anim[] = dgMidoAnnoyedPointedHeadIdle2Anim; -#else -static const char gMidoAnnoyedPointedHeadIdle2Anim[] __attribute__((aligned (2))) = dgMidoAnnoyedPointedHeadIdle2Anim; -#endif - -#define dgMidoPutHandDownAnim "__OTR__objects/object_md/gMidoPutHandDownAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoPutHandDownAnim[] = dgMidoPutHandDownAnim; -#else -static const char gMidoPutHandDownAnim[] __attribute__((aligned (2))) = dgMidoPutHandDownAnim; -#endif - -#define dgMidoHaltAnim "__OTR__objects/object_md/gMidoHaltAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoHaltAnim[] = dgMidoHaltAnim; -#else -static const char gMidoHaltAnim[] __attribute__((aligned (2))) = dgMidoHaltAnim; -#endif - -#define dgMidoWalkingAnim "__OTR__objects/object_md/gMidoWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidoWalkingAnim[] = dgMidoWalkingAnim; -#else -static const char gMidoWalkingAnim[] __attribute__((aligned (2))) = dgMidoWalkingAnim; -#endif - +#include "align_asset_macro.h" + +#define dgMidoSkel "__OTR__objects/object_md/gMidoSkel" +static const ALIGN_ASSET(2) char gMidoSkel[] = dgMidoSkel; + +#define dgMidoWaistDL "__OTR__objects/object_md/gMidoWaistDL" +static const ALIGN_ASSET(2) char gMidoWaistDL[] = dgMidoWaistDL; + +#define dgMidoLeftThighDL "__OTR__objects/object_md/gMidoLeftThighDL" +static const ALIGN_ASSET(2) char gMidoLeftThighDL[] = dgMidoLeftThighDL; + +#define dgMidoLeftLegDL "__OTR__objects/object_md/gMidoLeftLegDL" +static const ALIGN_ASSET(2) char gMidoLeftLegDL[] = dgMidoLeftLegDL; + +#define dgMidoLeftFootDL "__OTR__objects/object_md/gMidoLeftFootDL" +static const ALIGN_ASSET(2) char gMidoLeftFootDL[] = dgMidoLeftFootDL; + +#define dgMidoRightThighDL "__OTR__objects/object_md/gMidoRightThighDL" +static const ALIGN_ASSET(2) char gMidoRightThighDL[] = dgMidoRightThighDL; + +#define dgMidoRightLegDL "__OTR__objects/object_md/gMidoRightLegDL" +static const ALIGN_ASSET(2) char gMidoRightLegDL[] = dgMidoRightLegDL; + +#define dgMidoRightFootDL "__OTR__objects/object_md/gMidoRightFootDL" +static const ALIGN_ASSET(2) char gMidoRightFootDL[] = dgMidoRightFootDL; + +#define dgMidoTorsoDL "__OTR__objects/object_md/gMidoTorsoDL" +static const ALIGN_ASSET(2) char gMidoTorsoDL[] = dgMidoTorsoDL; + +#define dgMidoLeftUpperArmDL "__OTR__objects/object_md/gMidoLeftUpperArmDL" +static const ALIGN_ASSET(2) char gMidoLeftUpperArmDL[] = dgMidoLeftUpperArmDL; + +#define dgMidoLeftForearmDL "__OTR__objects/object_md/gMidoLeftForearmDL" +static const ALIGN_ASSET(2) char gMidoLeftForearmDL[] = dgMidoLeftForearmDL; + +#define dgMidoLeftHandDL "__OTR__objects/object_md/gMidoLeftHandDL" +static const ALIGN_ASSET(2) char gMidoLeftHandDL[] = dgMidoLeftHandDL; + +#define dgMidoRightUpperArmDL "__OTR__objects/object_md/gMidoRightUpperArmDL" +static const ALIGN_ASSET(2) char gMidoRightUpperArmDL[] = dgMidoRightUpperArmDL; + +#define dgMidoRightForearmDL "__OTR__objects/object_md/gMidoRightForearmDL" +static const ALIGN_ASSET(2) char gMidoRightForearmDL[] = dgMidoRightForearmDL; + +#define dgMidoRightHandDL "__OTR__objects/object_md/gMidoRightHandDL" +static const ALIGN_ASSET(2) char gMidoRightHandDL[] = dgMidoRightHandDL; + +#define dgMidoHeadDL "__OTR__objects/object_md/gMidoHeadDL" +static const ALIGN_ASSET(2) char gMidoHeadDL[] = dgMidoHeadDL; + +#define dgMido1TLUT "__OTR__objects/object_md/gMido1TLUT" +static const ALIGN_ASSET(2) char gMido1TLUT[] = dgMido1TLUT; + +#define dgMido2TLUT "__OTR__objects/object_md/gMido2TLUT" +static const ALIGN_ASSET(2) char gMido2TLUT[] = dgMido2TLUT; + +#define dgMido3TLUT "__OTR__objects/object_md/gMido3TLUT" +static const ALIGN_ASSET(2) char gMido3TLUT[] = dgMido3TLUT; + +#define dgMidoEyeOpenTex "__OTR__objects/object_md/gMidoEyeOpenTex" +static const ALIGN_ASSET(2) char gMidoEyeOpenTex[] = dgMidoEyeOpenTex; + +#define dgMidoEyeHalfTex "__OTR__objects/object_md/gMidoEyeHalfTex" +static const ALIGN_ASSET(2) char gMidoEyeHalfTex[] = dgMidoEyeHalfTex; + +#define dgMidoEyeClosedTex "__OTR__objects/object_md/gMidoEyeClosedTex" +static const ALIGN_ASSET(2) char gMidoEyeClosedTex[] = dgMidoEyeClosedTex; + +#define dgMidoEyeAngryTex "__OTR__objects/object_md/gMidoEyeAngryTex" +static const ALIGN_ASSET(2) char gMidoEyeAngryTex[] = dgMidoEyeAngryTex; + +#define dgMidoEyeLookingUpTex "__OTR__objects/object_md/gMidoEyeLookingUpTex" +static const ALIGN_ASSET(2) char gMidoEyeLookingUpTex[] = dgMidoEyeLookingUpTex; + +#define dgMidoGradientTex "__OTR__objects/object_md/gMidoGradientTex" +static const ALIGN_ASSET(2) char gMidoGradientTex[] = dgMidoGradientTex; + +#define dgMidoTex_D20 "__OTR__objects/object_md/gMidoTex_D20" +static const ALIGN_ASSET(2) char gMidoTex_D20[] = dgMidoTex_D20; + +#define dgMidoTex_DA0 "__OTR__objects/object_md/gMidoTex_DA0" +static const ALIGN_ASSET(2) char gMidoTex_DA0[] = dgMidoTex_DA0; + +#define dgMidoHairCurl1Tex "__OTR__objects/object_md/gMidoHairCurl1Tex" +static const ALIGN_ASSET(2) char gMidoHairCurl1Tex[] = dgMidoHairCurl1Tex; + +#define dgMidoTex_1220 "__OTR__objects/object_md/gMidoTex_1220" +static const ALIGN_ASSET(2) char gMidoTex_1220[] = dgMidoTex_1220; + +#define dgMidoTex_1260 "__OTR__objects/object_md/gMidoTex_1260" +static const ALIGN_ASSET(2) char gMidoTex_1260[] = dgMidoTex_1260; + +#define dgMidoBackOfHandTex "__OTR__objects/object_md/gMidoBackOfHandTex" +static const ALIGN_ASSET(2) char gMidoBackOfHandTex[] = dgMidoBackOfHandTex; + +#define dgMidoClothesTex "__OTR__objects/object_md/gMidoClothesTex" +static const ALIGN_ASSET(2) char gMidoClothesTex[] = dgMidoClothesTex; + +#define dgMidoUndershirtTex "__OTR__objects/object_md/gMidoUndershirtTex" +static const ALIGN_ASSET(2) char gMidoUndershirtTex[] = dgMidoUndershirtTex; + +#define dgMidoShoeTex "__OTR__objects/object_md/gMidoShoeTex" +static const ALIGN_ASSET(2) char gMidoShoeTex[] = dgMidoShoeTex; + +#define dgMidoAnkleTex "__OTR__objects/object_md/gMidoAnkleTex" +static const ALIGN_ASSET(2) char gMidoAnkleTex[] = dgMidoAnkleTex; + +#define dgMidoPantsTex "__OTR__objects/object_md/gMidoPantsTex" +static const ALIGN_ASSET(2) char gMidoPantsTex[] = dgMidoPantsTex; + +#define dgMidoTex_4FB0 "__OTR__objects/object_md/gMidoTex_4FB0" +static const ALIGN_ASSET(2) char gMidoTex_4FB0[] = dgMidoTex_4FB0; + +#define dgMidoTex_53F0 "__OTR__objects/object_md/gMidoTex_53F0" +static const ALIGN_ASSET(2) char gMidoTex_53F0[] = dgMidoTex_53F0; + +#define dgMidoTex_5430 "__OTR__objects/object_md/gMidoTex_5430" +static const ALIGN_ASSET(2) char gMidoTex_5430[] = dgMidoTex_5430; + +#define dgMidoHairCurl2Tex "__OTR__objects/object_md/gMidoHairCurl2Tex" +static const ALIGN_ASSET(2) char gMidoHairCurl2Tex[] = dgMidoHairCurl2Tex; + +#define dgMidoTex_5870 "__OTR__objects/object_md/gMidoTex_5870" +static const ALIGN_ASSET(2) char gMidoTex_5870[] = dgMidoTex_5870; + +#define dgMidoTex_58F0 "__OTR__objects/object_md/gMidoTex_58F0" +static const ALIGN_ASSET(2) char gMidoTex_58F0[] = dgMidoTex_58F0; + +#define dgMidoHandsOnHipsIdleAnim "__OTR__objects/object_md/gMidoHandsOnHipsIdleAnim" +static const ALIGN_ASSET(2) char gMidoHandsOnHipsIdleAnim[] = dgMidoHandsOnHipsIdleAnim; + +#define dgMidoSlamAnim "__OTR__objects/object_md/gMidoSlamAnim" +static const ALIGN_ASSET(2) char gMidoSlamAnim[] = dgMidoSlamAnim; + +#define dgMidoAngryHeadTurnAnim "__OTR__objects/object_md/gMidoAngryHeadTurnAnim" +static const ALIGN_ASSET(2) char gMidoAngryHeadTurnAnim[] = dgMidoAngryHeadTurnAnim; + +#define dgMidoAnnoyedPointedHeadIdle1Anim "__OTR__objects/object_md/gMidoAnnoyedPointedHeadIdle1Anim" +static const ALIGN_ASSET(2) char gMidoAnnoyedPointedHeadIdle1Anim[] = dgMidoAnnoyedPointedHeadIdle1Anim; + +#define dgMidoHandsOnHipsTransitionAnim "__OTR__objects/object_md/gMidoHandsOnHipsTransitionAnim" +static const ALIGN_ASSET(2) char gMidoHandsOnHipsTransitionAnim[] = dgMidoHandsOnHipsTransitionAnim; + +#define dgMidoRaiseHand1Anim "__OTR__objects/object_md/gMidoRaiseHand1Anim" +static const ALIGN_ASSET(2) char gMidoRaiseHand1Anim[] = dgMidoRaiseHand1Anim; + +#define dgMidoAnim_92B0 "__OTR__objects/object_md/gMidoAnim_92B0" +static const ALIGN_ASSET(2) char gMidoAnim_92B0[] = dgMidoAnim_92B0; + +#define dgMidoRaiseHand2Anim "__OTR__objects/object_md/gMidoRaiseHand2Anim" +static const ALIGN_ASSET(2) char gMidoRaiseHand2Anim[] = dgMidoRaiseHand2Anim; + +#define dgMidoAnnoyedPointedHeadIdle2Anim "__OTR__objects/object_md/gMidoAnnoyedPointedHeadIdle2Anim" +static const ALIGN_ASSET(2) char gMidoAnnoyedPointedHeadIdle2Anim[] = dgMidoAnnoyedPointedHeadIdle2Anim; + +#define dgMidoPutHandDownAnim "__OTR__objects/object_md/gMidoPutHandDownAnim" +static const ALIGN_ASSET(2) char gMidoPutHandDownAnim[] = dgMidoPutHandDownAnim; + +#define dgMidoHaltAnim "__OTR__objects/object_md/gMidoHaltAnim" +static const ALIGN_ASSET(2) char gMidoHaltAnim[] = dgMidoHaltAnim; + +#define dgMidoWalkingAnim "__OTR__objects/object_md/gMidoWalkingAnim" +static const ALIGN_ASSET(2) char gMidoWalkingAnim[] = dgMidoWalkingAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_medal/object_medal.h b/soh/assets/objects/object_medal/object_medal.h index 23238f6fc..d051b1aad 100644 --- a/soh/assets/objects/object_medal/object_medal.h +++ b/soh/assets/objects/object_medal/object_medal.h @@ -1,93 +1,42 @@ #pragma once -#define dobject_medal_DL_000360 "__OTR__objects/object_medal/object_medal_DL_000360" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_DL_000360[] = dobject_medal_DL_000360; -#else -static const char object_medal_DL_000360[] __attribute__((aligned (2))) = dobject_medal_DL_000360; -#endif - -#define dobject_medal_DL_000840 "__OTR__objects/object_medal/object_medal_DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_DL_000840[] = dobject_medal_DL_000840; -#else -static const char object_medal_DL_000840[] __attribute__((aligned (2))) = dobject_medal_DL_000840; -#endif - -#define dobject_medal_DL_000D20 "__OTR__objects/object_medal/object_medal_DL_000D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_DL_000D20[] = dobject_medal_DL_000D20; -#else -static const char object_medal_DL_000D20[] __attribute__((aligned (2))) = dobject_medal_DL_000D20; -#endif - -#define dobject_medal_DL_001200 "__OTR__objects/object_medal/object_medal_DL_001200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_DL_001200[] = dobject_medal_DL_001200; -#else -static const char object_medal_DL_001200[] __attribute__((aligned (2))) = dobject_medal_DL_001200; -#endif - -#define dobject_medal_DL_0016E0 "__OTR__objects/object_medal/object_medal_DL_0016E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_DL_0016E0[] = dobject_medal_DL_0016E0; -#else -static const char object_medal_DL_0016E0[] __attribute__((aligned (2))) = dobject_medal_DL_0016E0; -#endif - -#define dobject_medal_DL_001BC0 "__OTR__objects/object_medal/object_medal_DL_001BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_DL_001BC0[] = dobject_medal_DL_001BC0; -#else -static const char object_medal_DL_001BC0[] __attribute__((aligned (2))) = dobject_medal_DL_001BC0; -#endif - -#define dobject_medal_Blob_001D40 "__OTR__objects/object_medal/object_medal_Blob_001D40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_Blob_001D40[] = dobject_medal_Blob_001D40; -#else -static const char object_medal_Blob_001D40[] __attribute__((aligned (2))) = dobject_medal_Blob_001D40; -#endif - -#define dobject_medal_Tex_002140 "__OTR__objects/object_medal/object_medal_Tex_002140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_Tex_002140[] = dobject_medal_Tex_002140; -#else -static const char object_medal_Tex_002140[] __attribute__((aligned (2))) = dobject_medal_Tex_002140; -#endif - -#define dobject_medal_Tex_002940 "__OTR__objects/object_medal/object_medal_Tex_002940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_Tex_002940[] = dobject_medal_Tex_002940; -#else -static const char object_medal_Tex_002940[] __attribute__((aligned (2))) = dobject_medal_Tex_002940; -#endif - -#define dobject_medal_Tex_003140 "__OTR__objects/object_medal/object_medal_Tex_003140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_Tex_003140[] = dobject_medal_Tex_003140; -#else -static const char object_medal_Tex_003140[] __attribute__((aligned (2))) = dobject_medal_Tex_003140; -#endif - -#define dobject_medal_Tex_003940 "__OTR__objects/object_medal/object_medal_Tex_003940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_Tex_003940[] = dobject_medal_Tex_003940; -#else -static const char object_medal_Tex_003940[] __attribute__((aligned (2))) = dobject_medal_Tex_003940; -#endif - -#define dobject_medal_Tex_004140 "__OTR__objects/object_medal/object_medal_Tex_004140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_Tex_004140[] = dobject_medal_Tex_004140; -#else -static const char object_medal_Tex_004140[] __attribute__((aligned (2))) = dobject_medal_Tex_004140; -#endif - -#define dobject_medal_Tex_004940 "__OTR__objects/object_medal/object_medal_Tex_004940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_medal_Tex_004940[] = dobject_medal_Tex_004940; -#else -static const char object_medal_Tex_004940[] __attribute__((aligned (2))) = dobject_medal_Tex_004940; -#endif - +#include "align_asset_macro.h" + +#define dobject_medal_DL_000360 "__OTR__objects/object_medal/object_medal_DL_000360" +static const ALIGN_ASSET(2) char object_medal_DL_000360[] = dobject_medal_DL_000360; + +#define dobject_medal_DL_000840 "__OTR__objects/object_medal/object_medal_DL_000840" +static const ALIGN_ASSET(2) char object_medal_DL_000840[] = dobject_medal_DL_000840; + +#define dobject_medal_DL_000D20 "__OTR__objects/object_medal/object_medal_DL_000D20" +static const ALIGN_ASSET(2) char object_medal_DL_000D20[] = dobject_medal_DL_000D20; + +#define dobject_medal_DL_001200 "__OTR__objects/object_medal/object_medal_DL_001200" +static const ALIGN_ASSET(2) char object_medal_DL_001200[] = dobject_medal_DL_001200; + +#define dobject_medal_DL_0016E0 "__OTR__objects/object_medal/object_medal_DL_0016E0" +static const ALIGN_ASSET(2) char object_medal_DL_0016E0[] = dobject_medal_DL_0016E0; + +#define dobject_medal_DL_001BC0 "__OTR__objects/object_medal/object_medal_DL_001BC0" +static const ALIGN_ASSET(2) char object_medal_DL_001BC0[] = dobject_medal_DL_001BC0; + +#define dobject_medal_Blob_001D40 "__OTR__objects/object_medal/object_medal_Blob_001D40" +static const ALIGN_ASSET(2) char object_medal_Blob_001D40[] = dobject_medal_Blob_001D40; + +#define dobject_medal_Tex_002140 "__OTR__objects/object_medal/object_medal_Tex_002140" +static const ALIGN_ASSET(2) char object_medal_Tex_002140[] = dobject_medal_Tex_002140; + +#define dobject_medal_Tex_002940 "__OTR__objects/object_medal/object_medal_Tex_002940" +static const ALIGN_ASSET(2) char object_medal_Tex_002940[] = dobject_medal_Tex_002940; + +#define dobject_medal_Tex_003140 "__OTR__objects/object_medal/object_medal_Tex_003140" +static const ALIGN_ASSET(2) char object_medal_Tex_003140[] = dobject_medal_Tex_003140; + +#define dobject_medal_Tex_003940 "__OTR__objects/object_medal/object_medal_Tex_003940" +static const ALIGN_ASSET(2) char object_medal_Tex_003940[] = dobject_medal_Tex_003940; + +#define dobject_medal_Tex_004140 "__OTR__objects/object_medal/object_medal_Tex_004140" +static const ALIGN_ASSET(2) char object_medal_Tex_004140[] = dobject_medal_Tex_004140; + +#define dobject_medal_Tex_004940 "__OTR__objects/object_medal/object_medal_Tex_004940" +static const ALIGN_ASSET(2) char object_medal_Tex_004940[] = dobject_medal_Tex_004940; \ No newline at end of file diff --git a/soh/assets/objects/object_menkuri_objects/object_menkuri_objects.h b/soh/assets/objects/object_menkuri_objects/object_menkuri_objects.h index 95746046c..d883aa380 100644 --- a/soh/assets/objects/object_menkuri_objects/object_menkuri_objects.h +++ b/soh/assets/objects/object_menkuri_objects/object_menkuri_objects.h @@ -1,100 +1,45 @@ #pragma once -#define dgGTGDoorTex "__OTR__objects/object_menkuri_objects/gGTGDoorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGDoorTex[] = dgGTGDoorTex; -#else -static const char gGTGDoorTex[] __attribute__((aligned (2))) = dgGTGDoorTex; -#endif - -#define dgGTGFakeWallTex "__OTR__objects/object_menkuri_objects/gGTGFakeWallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGFakeWallTex[] = dgGTGFakeWallTex; -#else -static const char gGTGFakeWallTex[] __attribute__((aligned (2))) = dgGTGFakeWallTex; -#endif - -#define dgGTGFakeCeilingTex "__OTR__objects/object_menkuri_objects/gGTGFakeCeilingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGFakeCeilingTex[] = dgGTGFakeCeilingTex; -#else -static const char gGTGFakeCeilingTex[] __attribute__((aligned (2))) = dgGTGFakeCeilingTex; -#endif - -#define dgGTGRotatingRingPlatformInnerCircleTex "__OTR__objects/object_menkuri_objects/gGTGRotatingRingPlatformInnerCircleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGRotatingRingPlatformInnerCircleTex[] = dgGTGRotatingRingPlatformInnerCircleTex; -#else -static const char gGTGRotatingRingPlatformInnerCircleTex[] __attribute__((aligned (2))) = dgGTGRotatingRingPlatformInnerCircleTex; -#endif - -#define dgGTGStatueTex "__OTR__objects/object_menkuri_objects/gGTGStatueTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGStatueTex[] = dgGTGStatueTex; -#else -static const char gGTGStatueTex[] __attribute__((aligned (2))) = dgGTGStatueTex; -#endif - -#define dgGTGTex_6310 "__OTR__objects/object_menkuri_objects/gGTGTex_6310" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGTex_6310[] = dgGTGTex_6310; -#else -static const char gGTGTex_6310[] __attribute__((aligned (2))) = dgGTGTex_6310; -#endif - -#define dgGTGStatueEyeTex "__OTR__objects/object_menkuri_objects/gGTGStatueEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGStatueEyeTex[] = dgGTGStatueEyeTex; -#else -static const char gGTGStatueEyeTex[] __attribute__((aligned (2))) = dgGTGStatueEyeTex; -#endif - -#define dgGTGRotatingRingPlatformOuterCircleTex "__OTR__objects/object_menkuri_objects/gGTGRotatingRingPlatformOuterCircleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGRotatingRingPlatformOuterCircleTex[] = dgGTGRotatingRingPlatformOuterCircleTex; -#else -static const char gGTGRotatingRingPlatformOuterCircleTex[] __attribute__((aligned (2))) = dgGTGRotatingRingPlatformOuterCircleTex; -#endif - -#define dgGTGDoorDL "__OTR__objects/object_menkuri_objects/gGTGDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGDoorDL[] = dgGTGDoorDL; -#else -static const char gGTGDoorDL[] __attribute__((aligned (2))) = dgGTGDoorDL; -#endif - -#define dgGTGFakeWallDL "__OTR__objects/object_menkuri_objects/gGTGFakeWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGFakeWallDL[] = dgGTGFakeWallDL; -#else -static const char gGTGFakeWallDL[] __attribute__((aligned (2))) = dgGTGFakeWallDL; -#endif - -#define dgGTGFakeCeilingDL "__OTR__objects/object_menkuri_objects/gGTGFakeCeilingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGFakeCeilingDL[] = dgGTGFakeCeilingDL; -#else -static const char gGTGFakeCeilingDL[] __attribute__((aligned (2))) = dgGTGFakeCeilingDL; -#endif - -#define dgGTGEyeStatueEyeDL "__OTR__objects/object_menkuri_objects/gGTGEyeStatueEyeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGEyeStatueEyeDL[] = dgGTGEyeStatueEyeDL; -#else -static const char gGTGEyeStatueEyeDL[] __attribute__((aligned (2))) = dgGTGEyeStatueEyeDL; -#endif - -#define dgGTGRotatingRingPlatformDL "__OTR__objects/object_menkuri_objects/gGTGRotatingRingPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGRotatingRingPlatformDL[] = dgGTGRotatingRingPlatformDL; -#else -static const char gGTGRotatingRingPlatformDL[] __attribute__((aligned (2))) = dgGTGRotatingRingPlatformDL; -#endif - -#define dgGTGRotatingRingPlatformCol "__OTR__objects/object_menkuri_objects/gGTGRotatingRingPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGRotatingRingPlatformCol[] = dgGTGRotatingRingPlatformCol; -#else -static const char gGTGRotatingRingPlatformCol[] __attribute__((aligned (2))) = dgGTGRotatingRingPlatformCol; -#endif - +#include "align_asset_macro.h" + +#define dgGTGDoorTex "__OTR__objects/object_menkuri_objects/gGTGDoorTex" +static const ALIGN_ASSET(2) char gGTGDoorTex[] = dgGTGDoorTex; + +#define dgGTGFakeWallTex "__OTR__objects/object_menkuri_objects/gGTGFakeWallTex" +static const ALIGN_ASSET(2) char gGTGFakeWallTex[] = dgGTGFakeWallTex; + +#define dgGTGFakeCeilingTex "__OTR__objects/object_menkuri_objects/gGTGFakeCeilingTex" +static const ALIGN_ASSET(2) char gGTGFakeCeilingTex[] = dgGTGFakeCeilingTex; + +#define dgGTGRotatingRingPlatformInnerCircleTex "__OTR__objects/object_menkuri_objects/gGTGRotatingRingPlatformInnerCircleTex" +static const ALIGN_ASSET(2) char gGTGRotatingRingPlatformInnerCircleTex[] = dgGTGRotatingRingPlatformInnerCircleTex; + +#define dgGTGStatueTex "__OTR__objects/object_menkuri_objects/gGTGStatueTex" +static const ALIGN_ASSET(2) char gGTGStatueTex[] = dgGTGStatueTex; + +#define dgGTGTex_6310 "__OTR__objects/object_menkuri_objects/gGTGTex_6310" +static const ALIGN_ASSET(2) char gGTGTex_6310[] = dgGTGTex_6310; + +#define dgGTGStatueEyeTex "__OTR__objects/object_menkuri_objects/gGTGStatueEyeTex" +static const ALIGN_ASSET(2) char gGTGStatueEyeTex[] = dgGTGStatueEyeTex; + +#define dgGTGRotatingRingPlatformOuterCircleTex "__OTR__objects/object_menkuri_objects/gGTGRotatingRingPlatformOuterCircleTex" +static const ALIGN_ASSET(2) char gGTGRotatingRingPlatformOuterCircleTex[] = dgGTGRotatingRingPlatformOuterCircleTex; + +#define dgGTGDoorDL "__OTR__objects/object_menkuri_objects/gGTGDoorDL" +static const ALIGN_ASSET(2) char gGTGDoorDL[] = dgGTGDoorDL; + +#define dgGTGFakeWallDL "__OTR__objects/object_menkuri_objects/gGTGFakeWallDL" +static const ALIGN_ASSET(2) char gGTGFakeWallDL[] = dgGTGFakeWallDL; + +#define dgGTGFakeCeilingDL "__OTR__objects/object_menkuri_objects/gGTGFakeCeilingDL" +static const ALIGN_ASSET(2) char gGTGFakeCeilingDL[] = dgGTGFakeCeilingDL; + +#define dgGTGEyeStatueEyeDL "__OTR__objects/object_menkuri_objects/gGTGEyeStatueEyeDL" +static const ALIGN_ASSET(2) char gGTGEyeStatueEyeDL[] = dgGTGEyeStatueEyeDL; + +#define dgGTGRotatingRingPlatformDL "__OTR__objects/object_menkuri_objects/gGTGRotatingRingPlatformDL" +static const ALIGN_ASSET(2) char gGTGRotatingRingPlatformDL[] = dgGTGRotatingRingPlatformDL; + +#define dgGTGRotatingRingPlatformCol "__OTR__objects/object_menkuri_objects/gGTGRotatingRingPlatformCol" +static const ALIGN_ASSET(2) char gGTGRotatingRingPlatformCol[] = dgGTGRotatingRingPlatformCol; \ No newline at end of file diff --git a/soh/assets/objects/object_mir_ray/object_mir_ray.h b/soh/assets/objects/object_mir_ray/object_mir_ray.h index 8bfd268c9..a697e3cb3 100644 --- a/soh/assets/objects/object_mir_ray/object_mir_ray.h +++ b/soh/assets/objects/object_mir_ray/object_mir_ray.h @@ -1,37 +1,18 @@ #pragma once -#define dgShieldBeamImageDL "__OTR__objects/object_mir_ray/gShieldBeamImageDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gShieldBeamImageDL[] = dgShieldBeamImageDL; -#else -static const char gShieldBeamImageDL[] __attribute__((aligned (2))) = dgShieldBeamImageDL; -#endif - -#define dgShieldBeamGlowDL "__OTR__objects/object_mir_ray/gShieldBeamGlowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gShieldBeamGlowDL[] = dgShieldBeamGlowDL; -#else -static const char gShieldBeamGlowDL[] __attribute__((aligned (2))) = dgShieldBeamGlowDL; -#endif - -#define dgShieldBeamImageCircleTex "__OTR__objects/object_mir_ray/gShieldBeamImageCircleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShieldBeamImageCircleTex[] = dgShieldBeamImageCircleTex; -#else -static const char gShieldBeamImageCircleTex[] __attribute__((aligned (2))) = dgShieldBeamImageCircleTex; -#endif - -#define dgShieldBeamImageGerudoSymbolNewTex "__OTR__objects/object_mir_ray/gShieldBeamImageGerudoSymbolNewTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShieldBeamImageGerudoSymbolNewTex[] = dgShieldBeamImageGerudoSymbolNewTex; -#else -static const char gShieldBeamImageGerudoSymbolNewTex[] __attribute__((aligned (2))) = dgShieldBeamImageGerudoSymbolNewTex; -#endif - -#define dgShieldBeamGlowRayTex "__OTR__objects/object_mir_ray/gShieldBeamGlowRayTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShieldBeamGlowRayTex[] = dgShieldBeamGlowRayTex; -#else -static const char gShieldBeamGlowRayTex[] __attribute__((aligned (2))) = dgShieldBeamGlowRayTex; -#endif - +#include "align_asset_macro.h" + +#define dgShieldBeamImageDL "__OTR__objects/object_mir_ray/gShieldBeamImageDL" +static const ALIGN_ASSET(2) char gShieldBeamImageDL[] = dgShieldBeamImageDL; + +#define dgShieldBeamGlowDL "__OTR__objects/object_mir_ray/gShieldBeamGlowDL" +static const ALIGN_ASSET(2) char gShieldBeamGlowDL[] = dgShieldBeamGlowDL; + +#define dgShieldBeamImageCircleTex "__OTR__objects/object_mir_ray/gShieldBeamImageCircleTex" +static const ALIGN_ASSET(2) char gShieldBeamImageCircleTex[] = dgShieldBeamImageCircleTex; + +#define dgShieldBeamImageGerudoSymbolNewTex "__OTR__objects/object_mir_ray/gShieldBeamImageGerudoSymbolNewTex" +static const ALIGN_ASSET(2) char gShieldBeamImageGerudoSymbolNewTex[] = dgShieldBeamImageGerudoSymbolNewTex; + +#define dgShieldBeamGlowRayTex "__OTR__objects/object_mir_ray/gShieldBeamGlowRayTex" +static const ALIGN_ASSET(2) char gShieldBeamGlowRayTex[] = dgShieldBeamGlowRayTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mizu_objects/object_mizu_objects.h b/soh/assets/objects/object_mizu_objects/object_mizu_objects.h index 9ec9f83fe..aa5b5b7de 100644 --- a/soh/assets/objects/object_mizu_objects/object_mizu_objects.h +++ b/soh/assets/objects/object_mizu_objects/object_mizu_objects.h @@ -1,310 +1,135 @@ #pragma once -#define dgObjectMizuObjectsMovebgDL_000190 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_000190" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgDL_000190[] = dgObjectMizuObjectsMovebgDL_000190; -#else -static const char gObjectMizuObjectsMovebgDL_000190[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgDL_000190; -#endif - -#define dgObjectMizuObjectsMovebgCol_0003F0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_0003F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgCol_0003F0[] = dgObjectMizuObjectsMovebgCol_0003F0; -#else -static const char gObjectMizuObjectsMovebgCol_0003F0[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgCol_0003F0; -#endif - -#define dgObjectMizuObjectsMovebgDL_000680 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_000680" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgDL_000680[] = dgObjectMizuObjectsMovebgDL_000680; -#else -static const char gObjectMizuObjectsMovebgDL_000680[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgDL_000680; -#endif - -#define dgObjectMizuObjectsMovebgCol_000998 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_000998" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgCol_000998[] = dgObjectMizuObjectsMovebgCol_000998; -#else -static const char gObjectMizuObjectsMovebgCol_000998[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgCol_000998; -#endif - -#define dgObjectMizuObjectsMovebgDL_000C20 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_000C20" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgDL_000C20[] = dgObjectMizuObjectsMovebgDL_000C20; -#else -static const char gObjectMizuObjectsMovebgDL_000C20[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgDL_000C20; -#endif - -#define dgObjectMizuObjectsMovebgCol_000ED0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_000ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgCol_000ED0[] = dgObjectMizuObjectsMovebgCol_000ED0; -#else -static const char gObjectMizuObjectsMovebgCol_000ED0[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgCol_000ED0; -#endif - -#define dgObjectMizuObjectsMovebgDL_0011F0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_0011F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgDL_0011F0[] = dgObjectMizuObjectsMovebgDL_0011F0; -#else -static const char gObjectMizuObjectsMovebgDL_0011F0[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgDL_0011F0; -#endif - -#define dgObjectMizuObjectsMovebgCol_0015F8 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_0015F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgCol_0015F8[] = dgObjectMizuObjectsMovebgCol_0015F8; -#else -static const char gObjectMizuObjectsMovebgCol_0015F8[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgCol_0015F8; -#endif - -#define dgObjectMizuObjectsMovebgDL_002E10 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_002E10" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgDL_002E10[] = dgObjectMizuObjectsMovebgDL_002E10; -#else -static const char gObjectMizuObjectsMovebgDL_002E10[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgDL_002E10; -#endif - -#define dgObjectMizuObjectsMovebgCol_003590 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_003590" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsMovebgCol_003590[] = dgObjectMizuObjectsMovebgCol_003590; -#else -static const char gObjectMizuObjectsMovebgCol_003590[] __attribute__((aligned (2))) = dgObjectMizuObjectsMovebgCol_003590; -#endif - -#define dgObjectMizuObjectsBwallDL_001770 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_001770" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsBwallDL_001770[] = dgObjectMizuObjectsBwallDL_001770; -#else -static const char gObjectMizuObjectsBwallDL_001770[] __attribute__((aligned (2))) = dgObjectMizuObjectsBwallDL_001770; -#endif - -#define dgObjectMizuObjectsBwallDL_001A30 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_001A30" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsBwallDL_001A30[] = dgObjectMizuObjectsBwallDL_001A30; -#else -static const char gObjectMizuObjectsBwallDL_001A30[] __attribute__((aligned (2))) = dgObjectMizuObjectsBwallDL_001A30; -#endif - -#define dgObjectMizuObjectsBwallCol_001C58 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallCol_001C58" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsBwallCol_001C58[] = dgObjectMizuObjectsBwallCol_001C58; -#else -static const char gObjectMizuObjectsBwallCol_001C58[] __attribute__((aligned (2))) = dgObjectMizuObjectsBwallCol_001C58; -#endif - -#define dgObjectMizuObjectsBwallDL_001CD0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_001CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsBwallDL_001CD0[] = dgObjectMizuObjectsBwallDL_001CD0; -#else -static const char gObjectMizuObjectsBwallDL_001CD0[] __attribute__((aligned (2))) = dgObjectMizuObjectsBwallDL_001CD0; -#endif - -#define dgObjectMizuObjectsBwallCol_001DE8 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallCol_001DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsBwallCol_001DE8[] = dgObjectMizuObjectsBwallCol_001DE8; -#else -static const char gObjectMizuObjectsBwallCol_001DE8[] __attribute__((aligned (2))) = dgObjectMizuObjectsBwallCol_001DE8; -#endif - -#define dgObjectMizuObjectsBwallDL_002090 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_002090" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsBwallDL_002090[] = dgObjectMizuObjectsBwallDL_002090; -#else -static const char gObjectMizuObjectsBwallDL_002090[] __attribute__((aligned (2))) = dgObjectMizuObjectsBwallDL_002090; -#endif - -#define dgObjectMizuObjectsBwallDL_002390 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_002390" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsBwallDL_002390[] = dgObjectMizuObjectsBwallDL_002390; -#else -static const char gObjectMizuObjectsBwallDL_002390[] __attribute__((aligned (2))) = dgObjectMizuObjectsBwallDL_002390; -#endif - -#define dgObjectMizuObjectsBwallCol_0025A4 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallCol_0025A4" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsBwallCol_0025A4[] = dgObjectMizuObjectsBwallCol_0025A4; -#else -static const char gObjectMizuObjectsBwallCol_0025A4[] __attribute__((aligned (2))) = dgObjectMizuObjectsBwallCol_0025A4; -#endif - -#define dobject_mizu_objects_Tex_0035C0 "__OTR__objects/object_mizu_objects/object_mizu_objects_Tex_0035C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objects_Tex_0035C0[] = dobject_mizu_objects_Tex_0035C0; -#else -static const char object_mizu_objects_Tex_0035C0[] __attribute__((aligned (2))) = dobject_mizu_objects_Tex_0035C0; -#endif - -#define dgWaterTempleDoorDL_0048B0 "__OTR__objects/object_mizu_objects/gWaterTempleDoorDL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleDoorDL_0048B0[] = dgWaterTempleDoorDL_0048B0; -#else -static const char gWaterTempleDoorDL_0048B0[] __attribute__((aligned (2))) = dgWaterTempleDoorDL_0048B0; -#endif - -#define dgWaterTempleDoorLeftDL "__OTR__objects/object_mizu_objects/gWaterTempleDoorLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleDoorLeftDL[] = dgWaterTempleDoorLeftDL; -#else -static const char gWaterTempleDoorLeftDL[] __attribute__((aligned (2))) = dgWaterTempleDoorLeftDL; -#endif - -#define dgWaterTempleDoorRightDL "__OTR__objects/object_mizu_objects/gWaterTempleDoorRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleDoorRightDL[] = dgWaterTempleDoorRightDL; -#else -static const char gWaterTempleDoorRightDL[] __attribute__((aligned (2))) = dgWaterTempleDoorRightDL; -#endif - -#define dgObjectMizuObjectsWaterDL_004B20 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsWaterDL_004B20" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsWaterDL_004B20[] = dgObjectMizuObjectsWaterDL_004B20; -#else -static const char gObjectMizuObjectsWaterDL_004B20[] __attribute__((aligned (2))) = dgObjectMizuObjectsWaterDL_004B20; -#endif - -#define dgObjectMizuObjectsDoorShutterDL_005D90 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsDoorShutterDL_005D90" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsDoorShutterDL_005D90[] = dgObjectMizuObjectsDoorShutterDL_005D90; -#else -static const char gObjectMizuObjectsDoorShutterDL_005D90[] __attribute__((aligned (2))) = dgObjectMizuObjectsDoorShutterDL_005D90; -#endif - -#define dgObjectMizuObjectsDoorShutterDL_007000 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsDoorShutterDL_007000" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsDoorShutterDL_007000[] = dgObjectMizuObjectsDoorShutterDL_007000; -#else -static const char gObjectMizuObjectsDoorShutterDL_007000[] __attribute__((aligned (2))) = dgObjectMizuObjectsDoorShutterDL_007000; -#endif - -#define dgObjectMizuObjectsShutterDL_007130 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsShutterDL_007130" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsShutterDL_007130[] = dgObjectMizuObjectsShutterDL_007130; -#else -static const char gObjectMizuObjectsShutterDL_007130[] __attribute__((aligned (2))) = dgObjectMizuObjectsShutterDL_007130; -#endif - -#define dgObjectMizuObjectsShutterCol_007250 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsShutterCol_007250" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsShutterCol_007250[] = dgObjectMizuObjectsShutterCol_007250; -#else -static const char gObjectMizuObjectsShutterCol_007250[] __attribute__((aligned (2))) = dgObjectMizuObjectsShutterCol_007250; -#endif - -#define dgObjectMizuObjectsShutterDL_0072D0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsShutterDL_0072D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsShutterDL_0072D0[] = dgObjectMizuObjectsShutterDL_0072D0; -#else -static const char gObjectMizuObjectsShutterDL_0072D0[] __attribute__((aligned (2))) = dgObjectMizuObjectsShutterDL_0072D0; -#endif - -#define dgObjectMizuObjectsShutterCol_0073F0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsShutterCol_0073F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsShutterCol_0073F0[] = dgObjectMizuObjectsShutterCol_0073F0; -#else -static const char gObjectMizuObjectsShutterCol_0073F0[] __attribute__((aligned (2))) = dgObjectMizuObjectsShutterCol_0073F0; -#endif - -#define dgObjectMizuObjectsUzuCol_0074EC "__OTR__objects/object_mizu_objects/gObjectMizuObjectsUzuCol_0074EC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectMizuObjectsUzuCol_0074EC[] = dgObjectMizuObjectsUzuCol_0074EC; -#else -static const char gObjectMizuObjectsUzuCol_0074EC[] __attribute__((aligned (2))) = dgObjectMizuObjectsUzuCol_0074EC; -#endif - -#define dobject_mizu_objectsTex_007D20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_007D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_007D20[] = dobject_mizu_objectsTex_007D20; -#else -static const char object_mizu_objectsTex_007D20[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_007D20; -#endif - -#define dobject_mizu_objectsTex_008520 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_008520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_008520[] = dobject_mizu_objectsTex_008520; -#else -static const char object_mizu_objectsTex_008520[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_008520; -#endif - -#define dobject_mizu_objectsTex_008D20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_008D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_008D20[] = dobject_mizu_objectsTex_008D20; -#else -static const char object_mizu_objectsTex_008D20[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_008D20; -#endif - -#define dobject_mizu_objectsTex_00AB20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_00AB20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_00AB20[] = dobject_mizu_objectsTex_00AB20; -#else -static const char object_mizu_objectsTex_00AB20[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_00AB20; -#endif - -#define dobject_mizu_objectsTex_009B20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009B20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_009B20[] = dobject_mizu_objectsTex_009B20; -#else -static const char object_mizu_objectsTex_009B20[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_009B20; -#endif - -#define dobject_mizu_objectsTex_009D20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_009D20[] = dobject_mizu_objectsTex_009D20; -#else -static const char object_mizu_objectsTex_009D20[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_009D20; -#endif - -#define dobject_mizu_objectsTex_009920 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009920" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_009920[] = dobject_mizu_objectsTex_009920; -#else -static const char object_mizu_objectsTex_009920[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_009920; -#endif - -#define dobject_mizu_objectsTex_009720 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_009720[] = dobject_mizu_objectsTex_009720; -#else -static const char object_mizu_objectsTex_009720[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_009720; -#endif - -#define dobject_mizu_objectsTex_009520 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_009520[] = dobject_mizu_objectsTex_009520; -#else -static const char object_mizu_objectsTex_009520[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_009520; -#endif - -#define dobject_mizu_objectsTex_009F20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_009F20[] = dobject_mizu_objectsTex_009F20; -#else -static const char object_mizu_objectsTex_009F20[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_009F20; -#endif - -#define dobject_mizu_objectsTex_007520 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_007520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_007520[] = dobject_mizu_objectsTex_007520; -#else -static const char object_mizu_objectsTex_007520[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_007520; -#endif - -#define dobject_mizu_objectsTex_004C00 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_004C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_004C00[] = dobject_mizu_objectsTex_004C00; -#else -static const char object_mizu_objectsTex_004C00[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_004C00; -#endif - -#define dobject_mizu_objectsTex_005E70 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_005E70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_005E70[] = dobject_mizu_objectsTex_005E70; -#else -static const char object_mizu_objectsTex_005E70[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_005E70; -#endif - -#define dobject_mizu_objectsTex_00A720 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_00A720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mizu_objectsTex_00A720[] = dobject_mizu_objectsTex_00A720; -#else -static const char object_mizu_objectsTex_00A720[] __attribute__((aligned (2))) = dobject_mizu_objectsTex_00A720; -#endif - +#include "align_asset_macro.h" + +#define dgObjectMizuObjectsMovebgDL_000190 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_000190" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgDL_000190[] = dgObjectMizuObjectsMovebgDL_000190; + +#define dgObjectMizuObjectsMovebgCol_0003F0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_0003F0" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgCol_0003F0[] = dgObjectMizuObjectsMovebgCol_0003F0; + +#define dgObjectMizuObjectsMovebgDL_000680 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_000680" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgDL_000680[] = dgObjectMizuObjectsMovebgDL_000680; + +#define dgObjectMizuObjectsMovebgCol_000998 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_000998" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgCol_000998[] = dgObjectMizuObjectsMovebgCol_000998; + +#define dgObjectMizuObjectsMovebgDL_000C20 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_000C20" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgDL_000C20[] = dgObjectMizuObjectsMovebgDL_000C20; + +#define dgObjectMizuObjectsMovebgCol_000ED0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_000ED0" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgCol_000ED0[] = dgObjectMizuObjectsMovebgCol_000ED0; + +#define dgObjectMizuObjectsMovebgDL_0011F0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_0011F0" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgDL_0011F0[] = dgObjectMizuObjectsMovebgDL_0011F0; + +#define dgObjectMizuObjectsMovebgCol_0015F8 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_0015F8" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgCol_0015F8[] = dgObjectMizuObjectsMovebgCol_0015F8; + +#define dgObjectMizuObjectsMovebgDL_002E10 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgDL_002E10" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgDL_002E10[] = dgObjectMizuObjectsMovebgDL_002E10; + +#define dgObjectMizuObjectsMovebgCol_003590 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsMovebgCol_003590" +static const ALIGN_ASSET(2) char gObjectMizuObjectsMovebgCol_003590[] = dgObjectMizuObjectsMovebgCol_003590; + +#define dgObjectMizuObjectsBwallDL_001770 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_001770" +static const ALIGN_ASSET(2) char gObjectMizuObjectsBwallDL_001770[] = dgObjectMizuObjectsBwallDL_001770; + +#define dgObjectMizuObjectsBwallDL_001A30 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_001A30" +static const ALIGN_ASSET(2) char gObjectMizuObjectsBwallDL_001A30[] = dgObjectMizuObjectsBwallDL_001A30; + +#define dgObjectMizuObjectsBwallCol_001C58 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallCol_001C58" +static const ALIGN_ASSET(2) char gObjectMizuObjectsBwallCol_001C58[] = dgObjectMizuObjectsBwallCol_001C58; + +#define dgObjectMizuObjectsBwallDL_001CD0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_001CD0" +static const ALIGN_ASSET(2) char gObjectMizuObjectsBwallDL_001CD0[] = dgObjectMizuObjectsBwallDL_001CD0; + +#define dgObjectMizuObjectsBwallCol_001DE8 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallCol_001DE8" +static const ALIGN_ASSET(2) char gObjectMizuObjectsBwallCol_001DE8[] = dgObjectMizuObjectsBwallCol_001DE8; + +#define dgObjectMizuObjectsBwallDL_002090 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_002090" +static const ALIGN_ASSET(2) char gObjectMizuObjectsBwallDL_002090[] = dgObjectMizuObjectsBwallDL_002090; + +#define dgObjectMizuObjectsBwallDL_002390 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallDL_002390" +static const ALIGN_ASSET(2) char gObjectMizuObjectsBwallDL_002390[] = dgObjectMizuObjectsBwallDL_002390; + +#define dgObjectMizuObjectsBwallCol_0025A4 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsBwallCol_0025A4" +static const ALIGN_ASSET(2) char gObjectMizuObjectsBwallCol_0025A4[] = dgObjectMizuObjectsBwallCol_0025A4; + +#define dobject_mizu_objects_Tex_0035C0 "__OTR__objects/object_mizu_objects/object_mizu_objects_Tex_0035C0" +static const ALIGN_ASSET(2) char object_mizu_objects_Tex_0035C0[] = dobject_mizu_objects_Tex_0035C0; + +#define dgWaterTempleDoorDL_0048B0 "__OTR__objects/object_mizu_objects/gWaterTempleDoorDL_0048B0" +static const ALIGN_ASSET(2) char gWaterTempleDoorDL_0048B0[] = dgWaterTempleDoorDL_0048B0; + +#define dgWaterTempleDoorLeftDL "__OTR__objects/object_mizu_objects/gWaterTempleDoorLeftDL" +static const ALIGN_ASSET(2) char gWaterTempleDoorLeftDL[] = dgWaterTempleDoorLeftDL; + +#define dgWaterTempleDoorRightDL "__OTR__objects/object_mizu_objects/gWaterTempleDoorRightDL" +static const ALIGN_ASSET(2) char gWaterTempleDoorRightDL[] = dgWaterTempleDoorRightDL; + +#define dgObjectMizuObjectsWaterDL_004B20 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsWaterDL_004B20" +static const ALIGN_ASSET(2) char gObjectMizuObjectsWaterDL_004B20[] = dgObjectMizuObjectsWaterDL_004B20; + +#define dgObjectMizuObjectsDoorShutterDL_005D90 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsDoorShutterDL_005D90" +static const ALIGN_ASSET(2) char gObjectMizuObjectsDoorShutterDL_005D90[] = dgObjectMizuObjectsDoorShutterDL_005D90; + +#define dgObjectMizuObjectsDoorShutterDL_007000 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsDoorShutterDL_007000" +static const ALIGN_ASSET(2) char gObjectMizuObjectsDoorShutterDL_007000[] = dgObjectMizuObjectsDoorShutterDL_007000; + +#define dgObjectMizuObjectsShutterDL_007130 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsShutterDL_007130" +static const ALIGN_ASSET(2) char gObjectMizuObjectsShutterDL_007130[] = dgObjectMizuObjectsShutterDL_007130; + +#define dgObjectMizuObjectsShutterCol_007250 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsShutterCol_007250" +static const ALIGN_ASSET(2) char gObjectMizuObjectsShutterCol_007250[] = dgObjectMizuObjectsShutterCol_007250; + +#define dgObjectMizuObjectsShutterDL_0072D0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsShutterDL_0072D0" +static const ALIGN_ASSET(2) char gObjectMizuObjectsShutterDL_0072D0[] = dgObjectMizuObjectsShutterDL_0072D0; + +#define dgObjectMizuObjectsShutterCol_0073F0 "__OTR__objects/object_mizu_objects/gObjectMizuObjectsShutterCol_0073F0" +static const ALIGN_ASSET(2) char gObjectMizuObjectsShutterCol_0073F0[] = dgObjectMizuObjectsShutterCol_0073F0; + +#define dgObjectMizuObjectsUzuCol_0074EC "__OTR__objects/object_mizu_objects/gObjectMizuObjectsUzuCol_0074EC" +static const ALIGN_ASSET(2) char gObjectMizuObjectsUzuCol_0074EC[] = dgObjectMizuObjectsUzuCol_0074EC; + +#define dobject_mizu_objectsTex_007D20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_007D20" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_007D20[] = dobject_mizu_objectsTex_007D20; + +#define dobject_mizu_objectsTex_008520 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_008520" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_008520[] = dobject_mizu_objectsTex_008520; + +#define dobject_mizu_objectsTex_008D20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_008D20" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_008D20[] = dobject_mizu_objectsTex_008D20; + +#define dobject_mizu_objectsTex_00AB20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_00AB20" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_00AB20[] = dobject_mizu_objectsTex_00AB20; + +#define dobject_mizu_objectsTex_009B20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009B20" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_009B20[] = dobject_mizu_objectsTex_009B20; + +#define dobject_mizu_objectsTex_009D20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009D20" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_009D20[] = dobject_mizu_objectsTex_009D20; + +#define dobject_mizu_objectsTex_009920 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009920" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_009920[] = dobject_mizu_objectsTex_009920; + +#define dobject_mizu_objectsTex_009720 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009720" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_009720[] = dobject_mizu_objectsTex_009720; + +#define dobject_mizu_objectsTex_009520 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009520" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_009520[] = dobject_mizu_objectsTex_009520; + +#define dobject_mizu_objectsTex_009F20 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_009F20" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_009F20[] = dobject_mizu_objectsTex_009F20; + +#define dobject_mizu_objectsTex_007520 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_007520" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_007520[] = dobject_mizu_objectsTex_007520; + +#define dobject_mizu_objectsTex_004C00 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_004C00" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_004C00[] = dobject_mizu_objectsTex_004C00; + +#define dobject_mizu_objectsTex_005E70 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_005E70" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_005E70[] = dobject_mizu_objectsTex_005E70; + +#define dobject_mizu_objectsTex_00A720 "__OTR__objects/object_mizu_objects/object_mizu_objectsTex_00A720" +static const ALIGN_ASSET(2) char object_mizu_objectsTex_00A720[] = dobject_mizu_objectsTex_00A720; \ No newline at end of file diff --git a/soh/assets/objects/object_mjin/object_mjin.h b/soh/assets/objects/object_mjin/object_mjin.h index 7da89e9ea..ce95b1b64 100644 --- a/soh/assets/objects/object_mjin/object_mjin.h +++ b/soh/assets/objects/object_mjin/object_mjin.h @@ -1,30 +1,15 @@ #pragma once -#define dgWarpPadBaseDL "__OTR__objects/object_mjin/gWarpPadBaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpPadBaseDL[] = dgWarpPadBaseDL; -#else -static const char gWarpPadBaseDL[] __attribute__((aligned (2))) = dgWarpPadBaseDL; -#endif - -#define dgWarpPadCol "__OTR__objects/object_mjin/gWarpPadCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpPadCol[] = dgWarpPadCol; -#else -static const char gWarpPadCol[] __attribute__((aligned (2))) = dgWarpPadCol; -#endif - -#define dgWarpPadSideTex "__OTR__objects/object_mjin/gWarpPadSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpPadSideTex[] = dgWarpPadSideTex; -#else -static const char gWarpPadSideTex[] __attribute__((aligned (2))) = dgWarpPadSideTex; -#endif - -#define dgWarpPadTopTex "__OTR__objects/object_mjin/gWarpPadTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpPadTopTex[] = dgWarpPadTopTex; -#else -static const char gWarpPadTopTex[] __attribute__((aligned (2))) = dgWarpPadTopTex; -#endif - +#include "align_asset_macro.h" + +#define dgWarpPadBaseDL "__OTR__objects/object_mjin/gWarpPadBaseDL" +static const ALIGN_ASSET(2) char gWarpPadBaseDL[] = dgWarpPadBaseDL; + +#define dgWarpPadCol "__OTR__objects/object_mjin/gWarpPadCol" +static const ALIGN_ASSET(2) char gWarpPadCol[] = dgWarpPadCol; + +#define dgWarpPadSideTex "__OTR__objects/object_mjin/gWarpPadSideTex" +static const ALIGN_ASSET(2) char gWarpPadSideTex[] = dgWarpPadSideTex; + +#define dgWarpPadTopTex "__OTR__objects/object_mjin/gWarpPadTopTex" +static const ALIGN_ASSET(2) char gWarpPadTopTex[] = dgWarpPadTopTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mjin_dark/object_mjin_dark.h b/soh/assets/objects/object_mjin_dark/object_mjin_dark.h index 52edd63f8..f591919ac 100644 --- a/soh/assets/objects/object_mjin_dark/object_mjin_dark.h +++ b/soh/assets/objects/object_mjin_dark/object_mjin_dark.h @@ -1,9 +1,6 @@ #pragma once -#define dgShadowMedallionPlatformTex "__OTR__objects/object_mjin_dark/gShadowMedallionPlatformTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowMedallionPlatformTex[] = dgShadowMedallionPlatformTex; -#else -static const char gShadowMedallionPlatformTex[] __attribute__((aligned (2))) = dgShadowMedallionPlatformTex; -#endif - +#include "align_asset_macro.h" + +#define dgShadowMedallionPlatformTex "__OTR__objects/object_mjin_dark/gShadowMedallionPlatformTex" +static const ALIGN_ASSET(2) char gShadowMedallionPlatformTex[] = dgShadowMedallionPlatformTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mjin_flame/object_mjin_flame.h b/soh/assets/objects/object_mjin_flame/object_mjin_flame.h index d805320ed..7c423bc6b 100644 --- a/soh/assets/objects/object_mjin_flame/object_mjin_flame.h +++ b/soh/assets/objects/object_mjin_flame/object_mjin_flame.h @@ -1,9 +1,6 @@ #pragma once -#define dgFireMedallionPlatformTex "__OTR__objects/object_mjin_flame/gFireMedallionPlatformTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireMedallionPlatformTex[] = dgFireMedallionPlatformTex; -#else -static const char gFireMedallionPlatformTex[] __attribute__((aligned (2))) = dgFireMedallionPlatformTex; -#endif - +#include "align_asset_macro.h" + +#define dgFireMedallionPlatformTex "__OTR__objects/object_mjin_flame/gFireMedallionPlatformTex" +static const ALIGN_ASSET(2) char gFireMedallionPlatformTex[] = dgFireMedallionPlatformTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mjin_flash/object_mjin_flash.h b/soh/assets/objects/object_mjin_flash/object_mjin_flash.h index f8ad8b8a3..0ec2e155e 100644 --- a/soh/assets/objects/object_mjin_flash/object_mjin_flash.h +++ b/soh/assets/objects/object_mjin_flash/object_mjin_flash.h @@ -1,9 +1,6 @@ #pragma once -#define dgLightMedallionPlatformTex "__OTR__objects/object_mjin_flash/gLightMedallionPlatformTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightMedallionPlatformTex[] = dgLightMedallionPlatformTex; -#else -static const char gLightMedallionPlatformTex[] __attribute__((aligned (2))) = dgLightMedallionPlatformTex; -#endif - +#include "align_asset_macro.h" + +#define dgLightMedallionPlatformTex "__OTR__objects/object_mjin_flash/gLightMedallionPlatformTex" +static const ALIGN_ASSET(2) char gLightMedallionPlatformTex[] = dgLightMedallionPlatformTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mjin_ice/object_mjin_ice.h b/soh/assets/objects/object_mjin_ice/object_mjin_ice.h index 761b4b31a..5cb0a2a6c 100644 --- a/soh/assets/objects/object_mjin_ice/object_mjin_ice.h +++ b/soh/assets/objects/object_mjin_ice/object_mjin_ice.h @@ -1,9 +1,6 @@ #pragma once -#define dgWaterMedallionPlatformTex "__OTR__objects/object_mjin_ice/gWaterMedallionPlatformTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterMedallionPlatformTex[] = dgWaterMedallionPlatformTex; -#else -static const char gWaterMedallionPlatformTex[] __attribute__((aligned (2))) = dgWaterMedallionPlatformTex; -#endif - +#include "align_asset_macro.h" + +#define dgWaterMedallionPlatformTex "__OTR__objects/object_mjin_ice/gWaterMedallionPlatformTex" +static const ALIGN_ASSET(2) char gWaterMedallionPlatformTex[] = dgWaterMedallionPlatformTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mjin_oka/object_mjin_oka.h b/soh/assets/objects/object_mjin_oka/object_mjin_oka.h index 98e97a939..f76bd1d42 100644 --- a/soh/assets/objects/object_mjin_oka/object_mjin_oka.h +++ b/soh/assets/objects/object_mjin_oka/object_mjin_oka.h @@ -1,30 +1,15 @@ #pragma once -#define dgOcarinaWarpPadDL "__OTR__objects/object_mjin_oka/gOcarinaWarpPadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaWarpPadDL[] = dgOcarinaWarpPadDL; -#else -static const char gOcarinaWarpPadDL[] __attribute__((aligned (2))) = dgOcarinaWarpPadDL; -#endif - -#define dgOcarinaWarpPadCol "__OTR__objects/object_mjin_oka/gOcarinaWarpPadCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaWarpPadCol[] = dgOcarinaWarpPadCol; -#else -static const char gOcarinaWarpPadCol[] __attribute__((aligned (2))) = dgOcarinaWarpPadCol; -#endif - -#define dgOcarinaWarpPadSideTex "__OTR__objects/object_mjin_oka/gOcarinaWarpPadSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaWarpPadSideTex[] = dgOcarinaWarpPadSideTex; -#else -static const char gOcarinaWarpPadSideTex[] __attribute__((aligned (2))) = dgOcarinaWarpPadSideTex; -#endif - -#define dgOcarinaWarpPadOcarinaTex "__OTR__objects/object_mjin_oka/gOcarinaWarpPadOcarinaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaWarpPadOcarinaTex[] = dgOcarinaWarpPadOcarinaTex; -#else -static const char gOcarinaWarpPadOcarinaTex[] __attribute__((aligned (2))) = dgOcarinaWarpPadOcarinaTex; -#endif - +#include "align_asset_macro.h" + +#define dgOcarinaWarpPadDL "__OTR__objects/object_mjin_oka/gOcarinaWarpPadDL" +static const ALIGN_ASSET(2) char gOcarinaWarpPadDL[] = dgOcarinaWarpPadDL; + +#define dgOcarinaWarpPadCol "__OTR__objects/object_mjin_oka/gOcarinaWarpPadCol" +static const ALIGN_ASSET(2) char gOcarinaWarpPadCol[] = dgOcarinaWarpPadCol; + +#define dgOcarinaWarpPadSideTex "__OTR__objects/object_mjin_oka/gOcarinaWarpPadSideTex" +static const ALIGN_ASSET(2) char gOcarinaWarpPadSideTex[] = dgOcarinaWarpPadSideTex; + +#define dgOcarinaWarpPadOcarinaTex "__OTR__objects/object_mjin_oka/gOcarinaWarpPadOcarinaTex" +static const ALIGN_ASSET(2) char gOcarinaWarpPadOcarinaTex[] = dgOcarinaWarpPadOcarinaTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mjin_soul/object_mjin_soul.h b/soh/assets/objects/object_mjin_soul/object_mjin_soul.h index b75579a3b..13dff55d4 100644 --- a/soh/assets/objects/object_mjin_soul/object_mjin_soul.h +++ b/soh/assets/objects/object_mjin_soul/object_mjin_soul.h @@ -1,9 +1,6 @@ #pragma once -#define dgSpiritMedallionPlatformTex "__OTR__objects/object_mjin_soul/gSpiritMedallionPlatformTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritMedallionPlatformTex[] = dgSpiritMedallionPlatformTex; -#else -static const char gSpiritMedallionPlatformTex[] __attribute__((aligned (2))) = dgSpiritMedallionPlatformTex; -#endif - +#include "align_asset_macro.h" + +#define dgSpiritMedallionPlatformTex "__OTR__objects/object_mjin_soul/gSpiritMedallionPlatformTex" +static const ALIGN_ASSET(2) char gSpiritMedallionPlatformTex[] = dgSpiritMedallionPlatformTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mjin_wind/object_mjin_wind.h b/soh/assets/objects/object_mjin_wind/object_mjin_wind.h index bd1bbf96c..d964ebc78 100644 --- a/soh/assets/objects/object_mjin_wind/object_mjin_wind.h +++ b/soh/assets/objects/object_mjin_wind/object_mjin_wind.h @@ -1,9 +1,6 @@ #pragma once -#define dgForestMedallionPlatformTex "__OTR__objects/object_mjin_wind/gForestMedallionPlatformTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestMedallionPlatformTex[] = dgForestMedallionPlatformTex; -#else -static const char gForestMedallionPlatformTex[] __attribute__((aligned (2))) = dgForestMedallionPlatformTex; -#endif - +#include "align_asset_macro.h" + +#define dgForestMedallionPlatformTex "__OTR__objects/object_mjin_wind/gForestMedallionPlatformTex" +static const ALIGN_ASSET(2) char gForestMedallionPlatformTex[] = dgForestMedallionPlatformTex; \ No newline at end of file diff --git a/soh/assets/objects/object_mk/object_mk.h b/soh/assets/objects/object_mk/object_mk.h index 0b7d92b07..069b5b18d 100644 --- a/soh/assets/objects/object_mk/object_mk.h +++ b/soh/assets/objects/object_mk/object_mk.h @@ -1,198 +1,87 @@ #pragma once -#define dobject_mk_Anim_000368 "__OTR__objects/object_mk/object_mk_Anim_000368" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Anim_000368[] = dobject_mk_Anim_000368; -#else -static const char object_mk_Anim_000368[] __attribute__((aligned (2))) = dobject_mk_Anim_000368; -#endif - -#define dobject_mk_Anim_000724 "__OTR__objects/object_mk/object_mk_Anim_000724" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Anim_000724[] = dobject_mk_Anim_000724; -#else -static const char object_mk_Anim_000724[] __attribute__((aligned (2))) = dobject_mk_Anim_000724; -#endif - -#define dobject_mk_Anim_000AC0 "__OTR__objects/object_mk/object_mk_Anim_000AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Anim_000AC0[] = dobject_mk_Anim_000AC0; -#else -static const char object_mk_Anim_000AC0[] __attribute__((aligned (2))) = dobject_mk_Anim_000AC0; -#endif - -#define dobject_mk_Anim_000D88 "__OTR__objects/object_mk/object_mk_Anim_000D88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Anim_000D88[] = dobject_mk_Anim_000D88; -#else -static const char object_mk_Anim_000D88[] __attribute__((aligned (2))) = dobject_mk_Anim_000D88; -#endif - -#define dobject_mk_DL_003470 "__OTR__objects/object_mk/object_mk_DL_003470" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_003470[] = dobject_mk_DL_003470; -#else -static const char object_mk_DL_003470[] __attribute__((aligned (2))) = dobject_mk_DL_003470; -#endif - -#define dobject_mk_DL_003760 "__OTR__objects/object_mk/object_mk_DL_003760" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_003760[] = dobject_mk_DL_003760; -#else -static const char object_mk_DL_003760[] __attribute__((aligned (2))) = dobject_mk_DL_003760; -#endif - -#define dobject_mk_DL_003AB0 "__OTR__objects/object_mk/object_mk_DL_003AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_003AB0[] = dobject_mk_DL_003AB0; -#else -static const char object_mk_DL_003AB0[] __attribute__((aligned (2))) = dobject_mk_DL_003AB0; -#endif - -#define dobject_mk_DL_003BC8 "__OTR__objects/object_mk/object_mk_DL_003BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_003BC8[] = dobject_mk_DL_003BC8; -#else -static const char object_mk_DL_003BC8[] __attribute__((aligned (2))) = dobject_mk_DL_003BC8; -#endif - -#define dobject_mk_DL_0042D0 "__OTR__objects/object_mk/object_mk_DL_0042D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_0042D0[] = dobject_mk_DL_0042D0; -#else -static const char object_mk_DL_0042D0[] __attribute__((aligned (2))) = dobject_mk_DL_0042D0; -#endif - -#define dobject_mk_DL_004650 "__OTR__objects/object_mk/object_mk_DL_004650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_004650[] = dobject_mk_DL_004650; -#else -static const char object_mk_DL_004650[] __attribute__((aligned (2))) = dobject_mk_DL_004650; -#endif - -#define dobject_mk_DL_004780 "__OTR__objects/object_mk/object_mk_DL_004780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_004780[] = dobject_mk_DL_004780; -#else -static const char object_mk_DL_004780[] __attribute__((aligned (2))) = dobject_mk_DL_004780; -#endif - -#define dobject_mk_DL_0048B0 "__OTR__objects/object_mk/object_mk_DL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_0048B0[] = dobject_mk_DL_0048B0; -#else -static const char object_mk_DL_0048B0[] __attribute__((aligned (2))) = dobject_mk_DL_0048B0; -#endif - -#define dobject_mk_DL_004A00 "__OTR__objects/object_mk/object_mk_DL_004A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_004A00[] = dobject_mk_DL_004A00; -#else -static const char object_mk_DL_004A00[] __attribute__((aligned (2))) = dobject_mk_DL_004A00; -#endif - -#define dobject_mk_DL_004B30 "__OTR__objects/object_mk/object_mk_DL_004B30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_004B30[] = dobject_mk_DL_004B30; -#else -static const char object_mk_DL_004B30[] __attribute__((aligned (2))) = dobject_mk_DL_004B30; -#endif - -#define dobject_mk_DL_004C60 "__OTR__objects/object_mk/object_mk_DL_004C60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_004C60[] = dobject_mk_DL_004C60; -#else -static const char object_mk_DL_004C60[] __attribute__((aligned (2))) = dobject_mk_DL_004C60; -#endif - -#define dobject_mk_DL_004DB0 "__OTR__objects/object_mk/object_mk_DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_DL_004DB0[] = dobject_mk_DL_004DB0; -#else -static const char object_mk_DL_004DB0[] __attribute__((aligned (2))) = dobject_mk_DL_004DB0; -#endif - -#define dobject_mk_TLUT_004F30 "__OTR__objects/object_mk/object_mk_TLUT_004F30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_TLUT_004F30[] = dobject_mk_TLUT_004F30; -#else -static const char object_mk_TLUT_004F30[] __attribute__((aligned (2))) = dobject_mk_TLUT_004F30; -#endif - -#define dobject_mk_Tex_005130 "__OTR__objects/object_mk/object_mk_Tex_005130" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_005130[] = dobject_mk_Tex_005130; -#else -static const char object_mk_Tex_005130[] __attribute__((aligned (2))) = dobject_mk_Tex_005130; -#endif - -#define dobject_mk_Tex_005170 "__OTR__objects/object_mk/object_mk_Tex_005170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_005170[] = dobject_mk_Tex_005170; -#else -static const char object_mk_Tex_005170[] __attribute__((aligned (2))) = dobject_mk_Tex_005170; -#endif - -#define dobject_mk_Tex_005270 "__OTR__objects/object_mk/object_mk_Tex_005270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_005270[] = dobject_mk_Tex_005270; -#else -static const char object_mk_Tex_005270[] __attribute__((aligned (2))) = dobject_mk_Tex_005270; -#endif - -#define dobject_mk_Tex_0052B0 "__OTR__objects/object_mk/object_mk_Tex_0052B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_0052B0[] = dobject_mk_Tex_0052B0; -#else -static const char object_mk_Tex_0052B0[] __attribute__((aligned (2))) = dobject_mk_Tex_0052B0; -#endif - -#define dobject_mk_Tex_0052F0 "__OTR__objects/object_mk/object_mk_Tex_0052F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_0052F0[] = dobject_mk_Tex_0052F0; -#else -static const char object_mk_Tex_0052F0[] __attribute__((aligned (2))) = dobject_mk_Tex_0052F0; -#endif - -#define dobject_mk_Tex_005370 "__OTR__objects/object_mk/object_mk_Tex_005370" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_005370[] = dobject_mk_Tex_005370; -#else -static const char object_mk_Tex_005370[] __attribute__((aligned (2))) = dobject_mk_Tex_005370; -#endif - -#define dobject_mk_Tex_005B70 "__OTR__objects/object_mk/object_mk_Tex_005B70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_005B70[] = dobject_mk_Tex_005B70; -#else -static const char object_mk_Tex_005B70[] __attribute__((aligned (2))) = dobject_mk_Tex_005B70; -#endif - -#define dobject_mk_Tex_005BB0 "__OTR__objects/object_mk/object_mk_Tex_005BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_005BB0[] = dobject_mk_Tex_005BB0; -#else -static const char object_mk_Tex_005BB0[] __attribute__((aligned (2))) = dobject_mk_Tex_005BB0; -#endif - -#define dobject_mk_Tex_005BF0 "__OTR__objects/object_mk/object_mk_Tex_005BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_005BF0[] = dobject_mk_Tex_005BF0; -#else -static const char object_mk_Tex_005BF0[] __attribute__((aligned (2))) = dobject_mk_Tex_005BF0; -#endif - -#define dobject_mk_Tex_005C30 "__OTR__objects/object_mk/object_mk_Tex_005C30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Tex_005C30[] = dobject_mk_Tex_005C30; -#else -static const char object_mk_Tex_005C30[] __attribute__((aligned (2))) = dobject_mk_Tex_005C30; -#endif - -#define dobject_mk_Skel_005DF0 "__OTR__objects/object_mk/object_mk_Skel_005DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mk_Skel_005DF0[] = dobject_mk_Skel_005DF0; -#else -static const char object_mk_Skel_005DF0[] __attribute__((aligned (2))) = dobject_mk_Skel_005DF0; -#endif - +#include "align_asset_macro.h" + +#define dobject_mk_Anim_000368 "__OTR__objects/object_mk/object_mk_Anim_000368" +static const ALIGN_ASSET(2) char object_mk_Anim_000368[] = dobject_mk_Anim_000368; + +#define dobject_mk_Anim_000724 "__OTR__objects/object_mk/object_mk_Anim_000724" +static const ALIGN_ASSET(2) char object_mk_Anim_000724[] = dobject_mk_Anim_000724; + +#define dobject_mk_Anim_000AC0 "__OTR__objects/object_mk/object_mk_Anim_000AC0" +static const ALIGN_ASSET(2) char object_mk_Anim_000AC0[] = dobject_mk_Anim_000AC0; + +#define dobject_mk_Anim_000D88 "__OTR__objects/object_mk/object_mk_Anim_000D88" +static const ALIGN_ASSET(2) char object_mk_Anim_000D88[] = dobject_mk_Anim_000D88; + +#define dobject_mk_DL_003470 "__OTR__objects/object_mk/object_mk_DL_003470" +static const ALIGN_ASSET(2) char object_mk_DL_003470[] = dobject_mk_DL_003470; + +#define dobject_mk_DL_003760 "__OTR__objects/object_mk/object_mk_DL_003760" +static const ALIGN_ASSET(2) char object_mk_DL_003760[] = dobject_mk_DL_003760; + +#define dobject_mk_DL_003AB0 "__OTR__objects/object_mk/object_mk_DL_003AB0" +static const ALIGN_ASSET(2) char object_mk_DL_003AB0[] = dobject_mk_DL_003AB0; + +#define dobject_mk_DL_003BC8 "__OTR__objects/object_mk/object_mk_DL_003BC8" +static const ALIGN_ASSET(2) char object_mk_DL_003BC8[] = dobject_mk_DL_003BC8; + +#define dobject_mk_DL_0042D0 "__OTR__objects/object_mk/object_mk_DL_0042D0" +static const ALIGN_ASSET(2) char object_mk_DL_0042D0[] = dobject_mk_DL_0042D0; + +#define dobject_mk_DL_004650 "__OTR__objects/object_mk/object_mk_DL_004650" +static const ALIGN_ASSET(2) char object_mk_DL_004650[] = dobject_mk_DL_004650; + +#define dobject_mk_DL_004780 "__OTR__objects/object_mk/object_mk_DL_004780" +static const ALIGN_ASSET(2) char object_mk_DL_004780[] = dobject_mk_DL_004780; + +#define dobject_mk_DL_0048B0 "__OTR__objects/object_mk/object_mk_DL_0048B0" +static const ALIGN_ASSET(2) char object_mk_DL_0048B0[] = dobject_mk_DL_0048B0; + +#define dobject_mk_DL_004A00 "__OTR__objects/object_mk/object_mk_DL_004A00" +static const ALIGN_ASSET(2) char object_mk_DL_004A00[] = dobject_mk_DL_004A00; + +#define dobject_mk_DL_004B30 "__OTR__objects/object_mk/object_mk_DL_004B30" +static const ALIGN_ASSET(2) char object_mk_DL_004B30[] = dobject_mk_DL_004B30; + +#define dobject_mk_DL_004C60 "__OTR__objects/object_mk/object_mk_DL_004C60" +static const ALIGN_ASSET(2) char object_mk_DL_004C60[] = dobject_mk_DL_004C60; + +#define dobject_mk_DL_004DB0 "__OTR__objects/object_mk/object_mk_DL_004DB0" +static const ALIGN_ASSET(2) char object_mk_DL_004DB0[] = dobject_mk_DL_004DB0; + +#define dobject_mk_TLUT_004F30 "__OTR__objects/object_mk/object_mk_TLUT_004F30" +static const ALIGN_ASSET(2) char object_mk_TLUT_004F30[] = dobject_mk_TLUT_004F30; + +#define dobject_mk_Tex_005130 "__OTR__objects/object_mk/object_mk_Tex_005130" +static const ALIGN_ASSET(2) char object_mk_Tex_005130[] = dobject_mk_Tex_005130; + +#define dobject_mk_Tex_005170 "__OTR__objects/object_mk/object_mk_Tex_005170" +static const ALIGN_ASSET(2) char object_mk_Tex_005170[] = dobject_mk_Tex_005170; + +#define dobject_mk_Tex_005270 "__OTR__objects/object_mk/object_mk_Tex_005270" +static const ALIGN_ASSET(2) char object_mk_Tex_005270[] = dobject_mk_Tex_005270; + +#define dobject_mk_Tex_0052B0 "__OTR__objects/object_mk/object_mk_Tex_0052B0" +static const ALIGN_ASSET(2) char object_mk_Tex_0052B0[] = dobject_mk_Tex_0052B0; + +#define dobject_mk_Tex_0052F0 "__OTR__objects/object_mk/object_mk_Tex_0052F0" +static const ALIGN_ASSET(2) char object_mk_Tex_0052F0[] = dobject_mk_Tex_0052F0; + +#define dobject_mk_Tex_005370 "__OTR__objects/object_mk/object_mk_Tex_005370" +static const ALIGN_ASSET(2) char object_mk_Tex_005370[] = dobject_mk_Tex_005370; + +#define dobject_mk_Tex_005B70 "__OTR__objects/object_mk/object_mk_Tex_005B70" +static const ALIGN_ASSET(2) char object_mk_Tex_005B70[] = dobject_mk_Tex_005B70; + +#define dobject_mk_Tex_005BB0 "__OTR__objects/object_mk/object_mk_Tex_005BB0" +static const ALIGN_ASSET(2) char object_mk_Tex_005BB0[] = dobject_mk_Tex_005BB0; + +#define dobject_mk_Tex_005BF0 "__OTR__objects/object_mk/object_mk_Tex_005BF0" +static const ALIGN_ASSET(2) char object_mk_Tex_005BF0[] = dobject_mk_Tex_005BF0; + +#define dobject_mk_Tex_005C30 "__OTR__objects/object_mk/object_mk_Tex_005C30" +static const ALIGN_ASSET(2) char object_mk_Tex_005C30[] = dobject_mk_Tex_005C30; + +#define dobject_mk_Skel_005DF0 "__OTR__objects/object_mk/object_mk_Skel_005DF0" +static const ALIGN_ASSET(2) char object_mk_Skel_005DF0[] = dobject_mk_Skel_005DF0; \ No newline at end of file diff --git a/soh/assets/objects/object_mm/object_mm.h b/soh/assets/objects/object_mm/object_mm.h index 8cd5e00c3..1507b02c4 100644 --- a/soh/assets/objects/object_mm/object_mm.h +++ b/soh/assets/objects/object_mm/object_mm.h @@ -1,240 +1,105 @@ #pragma once -#define dgRunningManSkel "__OTR__objects/object_mm/gRunningManSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkel[] = dgRunningManSkel; -#else -static const char gRunningManSkel[] __attribute__((aligned (2))) = dgRunningManSkel; -#endif - -#define dgRunningManRunAnim "__OTR__objects/object_mm/gRunningManRunAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManRunAnim[] = dgRunningManRunAnim; -#else -static const char gRunningManRunAnim[] __attribute__((aligned (2))) = dgRunningManRunAnim; -#endif - -#define dgRunningManSitStandAnim "__OTR__objects/object_mm/gRunningManSitStandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSitStandAnim[] = dgRunningManSitStandAnim; -#else -static const char gRunningManSitStandAnim[] __attribute__((aligned (2))) = dgRunningManSitStandAnim; -#endif - -#define dgRunningManSitWaitAnim "__OTR__objects/object_mm/gRunningManSitWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSitWaitAnim[] = dgRunningManSitWaitAnim; -#else -static const char gRunningManSitWaitAnim[] __attribute__((aligned (2))) = dgRunningManSitWaitAnim; -#endif - -#define dgRunningManSprintAnim "__OTR__objects/object_mm/gRunningManSprintAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSprintAnim[] = dgRunningManSprintAnim; -#else -static const char gRunningManSprintAnim[] __attribute__((aligned (2))) = dgRunningManSprintAnim; -#endif - -#define dgRunningManExcitedAnim "__OTR__objects/object_mm/gRunningManExcitedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManExcitedAnim[] = dgRunningManExcitedAnim; -#else -static const char gRunningManExcitedAnim[] __attribute__((aligned (2))) = dgRunningManExcitedAnim; -#endif - -#define dgRunningManHappyAnim "__OTR__objects/object_mm/gRunningManHappyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManHappyAnim[] = dgRunningManHappyAnim; -#else -static const char gRunningManHappyAnim[] __attribute__((aligned (2))) = dgRunningManHappyAnim; -#endif - -#define dgRunningManTLUT "__OTR__objects/object_mm/gRunningManTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManTLUT[] = dgRunningManTLUT; -#else -static const char gRunningManTLUT[] __attribute__((aligned (2))) = dgRunningManTLUT; -#endif - -#define dgRunningManMouthOpenTex "__OTR__objects/object_mm/gRunningManMouthOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManMouthOpenTex[] = dgRunningManMouthOpenTex; -#else -static const char gRunningManMouthOpenTex[] __attribute__((aligned (2))) = dgRunningManMouthOpenTex; -#endif - -#define dgRunningManMouthClosedTex "__OTR__objects/object_mm/gRunningManMouthClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManMouthClosedTex[] = dgRunningManMouthClosedTex; -#else -static const char gRunningManMouthClosedTex[] __attribute__((aligned (2))) = dgRunningManMouthClosedTex; -#endif - -#define dgRunningManSkelLimbsLimb_005D28DL_005328 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D28DL_005328" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D28DL_005328[] = dgRunningManSkelLimbsLimb_005D28DL_005328; -#else -static const char gRunningManSkelLimbsLimb_005D28DL_005328[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D28DL_005328; -#endif - -#define dgRunningManSkelLimbsLimb_005D34DL_0058B8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D34DL_0058B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D34DL_0058B8[] = dgRunningManSkelLimbsLimb_005D34DL_0058B8; -#else -static const char gRunningManSkelLimbsLimb_005D34DL_0058B8[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D34DL_0058B8; -#endif - -#define dgRunningManSkelLimbsLimb_005D40DL_005A90 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D40DL_005A90" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D40DL_005A90[] = dgRunningManSkelLimbsLimb_005D40DL_005A90; -#else -static const char gRunningManSkelLimbsLimb_005D40DL_005A90[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D40DL_005A90; -#endif - -#define dgRunningManSkelLimbsLimb_005D4CDL_005BF8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D4CDL_005BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D4CDL_005BF8[] = dgRunningManSkelLimbsLimb_005D4CDL_005BF8; -#else -static const char gRunningManSkelLimbsLimb_005D4CDL_005BF8[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D4CDL_005BF8; -#endif - -#define dgRunningManSkelLimbsLimb_005D58DL_0053C0 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D58DL_0053C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D58DL_0053C0[] = dgRunningManSkelLimbsLimb_005D58DL_0053C0; -#else -static const char gRunningManSkelLimbsLimb_005D58DL_0053C0[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D58DL_0053C0; -#endif - -#define dgRunningManSkelLimbsLimb_005D64DL_005620 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D64DL_005620" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D64DL_005620[] = dgRunningManSkelLimbsLimb_005D64DL_005620; -#else -static const char gRunningManSkelLimbsLimb_005D64DL_005620[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D64DL_005620; -#endif - -#define dgRunningManSkelLimbsLimb_005D70DL_005788 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D70DL_005788" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D70DL_005788[] = dgRunningManSkelLimbsLimb_005D70DL_005788; -#else -static const char gRunningManSkelLimbsLimb_005D70DL_005788[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D70DL_005788; -#endif - -#define dgRunningManSkelLimbsLimb_005D7CDL_004010 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D7CDL_004010" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D7CDL_004010[] = dgRunningManSkelLimbsLimb_005D7CDL_004010; -#else -static const char gRunningManSkelLimbsLimb_005D7CDL_004010[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D7CDL_004010; -#endif - -#define dgRunningManSkelLimbsLimb_005D88DL_004EC8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D88DL_004EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D88DL_004EC8[] = dgRunningManSkelLimbsLimb_005D88DL_004EC8; -#else -static const char gRunningManSkelLimbsLimb_005D88DL_004EC8[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D88DL_004EC8; -#endif - -#define dgRunningManSkelLimbsLimb_005D94DL_004FF8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D94DL_004FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005D94DL_004FF8[] = dgRunningManSkelLimbsLimb_005D94DL_004FF8; -#else -static const char gRunningManSkelLimbsLimb_005D94DL_004FF8[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005D94DL_004FF8; -#endif - -#define dgRunningManSkelLimbsLimb_005DA0DL_005128 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DA0DL_005128" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005DA0DL_005128[] = dgRunningManSkelLimbsLimb_005DA0DL_005128; -#else -static const char gRunningManSkelLimbsLimb_005DA0DL_005128[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005DA0DL_005128; -#endif - -#define dgRunningManSkelLimbsLimb_005DACDL_004A68 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DACDL_004A68" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005DACDL_004A68[] = dgRunningManSkelLimbsLimb_005DACDL_004A68; -#else -static const char gRunningManSkelLimbsLimb_005DACDL_004A68[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005DACDL_004A68; -#endif - -#define dgRunningManSkelLimbsLimb_005DB8DL_004B98 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DB8DL_004B98" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005DB8DL_004B98[] = dgRunningManSkelLimbsLimb_005DB8DL_004B98; -#else -static const char gRunningManSkelLimbsLimb_005DB8DL_004B98[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005DB8DL_004B98; -#endif - -#define dgRunningManSkelLimbsLimb_005DC4DL_004CC8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DC4DL_004CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005DC4DL_004CC8[] = dgRunningManSkelLimbsLimb_005DC4DL_004CC8; -#else -static const char gRunningManSkelLimbsLimb_005DC4DL_004CC8[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005DC4DL_004CC8; -#endif - -#define dgRunningManSkelLimbsLimb_005DD0DL_004348 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DD0DL_004348" -#ifdef _WIN32 -static const __declspec(align(2)) char gRunningManSkelLimbsLimb_005DD0DL_004348[] = dgRunningManSkelLimbsLimb_005DD0DL_004348; -#else -static const char gRunningManSkelLimbsLimb_005DD0DL_004348[] __attribute__((aligned (2))) = dgRunningManSkelLimbsLimb_005DD0DL_004348; -#endif - -#define dobject_mmTex_001330 "__OTR__objects/object_mm/object_mmTex_001330" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_001330[] = dobject_mmTex_001330; -#else -static const char object_mmTex_001330[] __attribute__((aligned (2))) = dobject_mmTex_001330; -#endif - -#define dobject_mmTex_001130 "__OTR__objects/object_mm/object_mmTex_001130" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_001130[] = dobject_mmTex_001130; -#else -static const char object_mmTex_001130[] __attribute__((aligned (2))) = dobject_mmTex_001130; -#endif - -#define dobject_mmTex_000930 "__OTR__objects/object_mm/object_mmTex_000930" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_000930[] = dobject_mmTex_000930; -#else -static const char object_mmTex_000930[] __attribute__((aligned (2))) = dobject_mmTex_000930; -#endif - -#define dobject_mmTex_000970 "__OTR__objects/object_mm/object_mmTex_000970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_000970[] = dobject_mmTex_000970; -#else -static const char object_mmTex_000970[] __attribute__((aligned (2))) = dobject_mmTex_000970; -#endif - -#define dobject_mmTex_001030 "__OTR__objects/object_mm/object_mmTex_001030" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_001030[] = dobject_mmTex_001030; -#else -static const char object_mmTex_001030[] __attribute__((aligned (2))) = dobject_mmTex_001030; -#endif - -#define dobject_mmTex_0009B0 "__OTR__objects/object_mm/object_mmTex_0009B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_0009B0[] = dobject_mmTex_0009B0; -#else -static const char object_mmTex_0009B0[] __attribute__((aligned (2))) = dobject_mmTex_0009B0; -#endif - -#define dobject_mmTex_0009F0 "__OTR__objects/object_mm/object_mmTex_0009F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_0009F0[] = dobject_mmTex_0009F0; -#else -static const char object_mmTex_0009F0[] __attribute__((aligned (2))) = dobject_mmTex_0009F0; -#endif - -#define dobject_mmTex_000A30 "__OTR__objects/object_mm/object_mmTex_000A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_000A30[] = dobject_mmTex_000A30; -#else -static const char object_mmTex_000A30[] __attribute__((aligned (2))) = dobject_mmTex_000A30; -#endif - -#define dobject_mmTex_000B30 "__OTR__objects/object_mm/object_mmTex_000B30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mmTex_000B30[] = dobject_mmTex_000B30; -#else -static const char object_mmTex_000B30[] __attribute__((aligned (2))) = dobject_mmTex_000B30; -#endif - +#include "align_asset_macro.h" + +#define dgRunningManSkel "__OTR__objects/object_mm/gRunningManSkel" +static const ALIGN_ASSET(2) char gRunningManSkel[] = dgRunningManSkel; + +#define dgRunningManRunAnim "__OTR__objects/object_mm/gRunningManRunAnim" +static const ALIGN_ASSET(2) char gRunningManRunAnim[] = dgRunningManRunAnim; + +#define dgRunningManSitStandAnim "__OTR__objects/object_mm/gRunningManSitStandAnim" +static const ALIGN_ASSET(2) char gRunningManSitStandAnim[] = dgRunningManSitStandAnim; + +#define dgRunningManSitWaitAnim "__OTR__objects/object_mm/gRunningManSitWaitAnim" +static const ALIGN_ASSET(2) char gRunningManSitWaitAnim[] = dgRunningManSitWaitAnim; + +#define dgRunningManSprintAnim "__OTR__objects/object_mm/gRunningManSprintAnim" +static const ALIGN_ASSET(2) char gRunningManSprintAnim[] = dgRunningManSprintAnim; + +#define dgRunningManExcitedAnim "__OTR__objects/object_mm/gRunningManExcitedAnim" +static const ALIGN_ASSET(2) char gRunningManExcitedAnim[] = dgRunningManExcitedAnim; + +#define dgRunningManHappyAnim "__OTR__objects/object_mm/gRunningManHappyAnim" +static const ALIGN_ASSET(2) char gRunningManHappyAnim[] = dgRunningManHappyAnim; + +#define dgRunningManTLUT "__OTR__objects/object_mm/gRunningManTLUT" +static const ALIGN_ASSET(2) char gRunningManTLUT[] = dgRunningManTLUT; + +#define dgRunningManMouthOpenTex "__OTR__objects/object_mm/gRunningManMouthOpenTex" +static const ALIGN_ASSET(2) char gRunningManMouthOpenTex[] = dgRunningManMouthOpenTex; + +#define dgRunningManMouthClosedTex "__OTR__objects/object_mm/gRunningManMouthClosedTex" +static const ALIGN_ASSET(2) char gRunningManMouthClosedTex[] = dgRunningManMouthClosedTex; + +#define dgRunningManSkelLimbsLimb_005D28DL_005328 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D28DL_005328" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D28DL_005328[] = dgRunningManSkelLimbsLimb_005D28DL_005328; + +#define dgRunningManSkelLimbsLimb_005D34DL_0058B8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D34DL_0058B8" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D34DL_0058B8[] = dgRunningManSkelLimbsLimb_005D34DL_0058B8; + +#define dgRunningManSkelLimbsLimb_005D40DL_005A90 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D40DL_005A90" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D40DL_005A90[] = dgRunningManSkelLimbsLimb_005D40DL_005A90; + +#define dgRunningManSkelLimbsLimb_005D4CDL_005BF8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D4CDL_005BF8" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D4CDL_005BF8[] = dgRunningManSkelLimbsLimb_005D4CDL_005BF8; + +#define dgRunningManSkelLimbsLimb_005D58DL_0053C0 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D58DL_0053C0" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D58DL_0053C0[] = dgRunningManSkelLimbsLimb_005D58DL_0053C0; + +#define dgRunningManSkelLimbsLimb_005D64DL_005620 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D64DL_005620" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D64DL_005620[] = dgRunningManSkelLimbsLimb_005D64DL_005620; + +#define dgRunningManSkelLimbsLimb_005D70DL_005788 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D70DL_005788" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D70DL_005788[] = dgRunningManSkelLimbsLimb_005D70DL_005788; + +#define dgRunningManSkelLimbsLimb_005D7CDL_004010 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D7CDL_004010" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D7CDL_004010[] = dgRunningManSkelLimbsLimb_005D7CDL_004010; + +#define dgRunningManSkelLimbsLimb_005D88DL_004EC8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D88DL_004EC8" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D88DL_004EC8[] = dgRunningManSkelLimbsLimb_005D88DL_004EC8; + +#define dgRunningManSkelLimbsLimb_005D94DL_004FF8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005D94DL_004FF8" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005D94DL_004FF8[] = dgRunningManSkelLimbsLimb_005D94DL_004FF8; + +#define dgRunningManSkelLimbsLimb_005DA0DL_005128 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DA0DL_005128" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005DA0DL_005128[] = dgRunningManSkelLimbsLimb_005DA0DL_005128; + +#define dgRunningManSkelLimbsLimb_005DACDL_004A68 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DACDL_004A68" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005DACDL_004A68[] = dgRunningManSkelLimbsLimb_005DACDL_004A68; + +#define dgRunningManSkelLimbsLimb_005DB8DL_004B98 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DB8DL_004B98" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005DB8DL_004B98[] = dgRunningManSkelLimbsLimb_005DB8DL_004B98; + +#define dgRunningManSkelLimbsLimb_005DC4DL_004CC8 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DC4DL_004CC8" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005DC4DL_004CC8[] = dgRunningManSkelLimbsLimb_005DC4DL_004CC8; + +#define dgRunningManSkelLimbsLimb_005DD0DL_004348 "__OTR__objects/object_mm/gRunningManSkelLimbsLimb_005DD0DL_004348" +static const ALIGN_ASSET(2) char gRunningManSkelLimbsLimb_005DD0DL_004348[] = dgRunningManSkelLimbsLimb_005DD0DL_004348; + +#define dobject_mmTex_001330 "__OTR__objects/object_mm/object_mmTex_001330" +static const ALIGN_ASSET(2) char object_mmTex_001330[] = dobject_mmTex_001330; + +#define dobject_mmTex_001130 "__OTR__objects/object_mm/object_mmTex_001130" +static const ALIGN_ASSET(2) char object_mmTex_001130[] = dobject_mmTex_001130; + +#define dobject_mmTex_000930 "__OTR__objects/object_mm/object_mmTex_000930" +static const ALIGN_ASSET(2) char object_mmTex_000930[] = dobject_mmTex_000930; + +#define dobject_mmTex_000970 "__OTR__objects/object_mm/object_mmTex_000970" +static const ALIGN_ASSET(2) char object_mmTex_000970[] = dobject_mmTex_000970; + +#define dobject_mmTex_001030 "__OTR__objects/object_mm/object_mmTex_001030" +static const ALIGN_ASSET(2) char object_mmTex_001030[] = dobject_mmTex_001030; + +#define dobject_mmTex_0009B0 "__OTR__objects/object_mm/object_mmTex_0009B0" +static const ALIGN_ASSET(2) char object_mmTex_0009B0[] = dobject_mmTex_0009B0; + +#define dobject_mmTex_0009F0 "__OTR__objects/object_mm/object_mmTex_0009F0" +static const ALIGN_ASSET(2) char object_mmTex_0009F0[] = dobject_mmTex_0009F0; + +#define dobject_mmTex_000A30 "__OTR__objects/object_mm/object_mmTex_000A30" +static const ALIGN_ASSET(2) char object_mmTex_000A30[] = dobject_mmTex_000A30; + +#define dobject_mmTex_000B30 "__OTR__objects/object_mm/object_mmTex_000B30" +static const ALIGN_ASSET(2) char object_mmTex_000B30[] = dobject_mmTex_000B30; \ No newline at end of file diff --git a/soh/assets/objects/object_mo/object_mo.h b/soh/assets/objects/object_mo/object_mo.h index 32f31ebbe..07fb70c36 100644 --- a/soh/assets/objects/object_mo/object_mo.h +++ b/soh/assets/objects/object_mo/object_mo.h @@ -1,436 +1,189 @@ #pragma once -#define dgMorphaTitleCardTex "__OTR__objects/object_mo/gMorphaTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTitleCardTex[] = dgMorphaTitleCardTex; -#else -static const char gMorphaTitleCardTex[] __attribute__((aligned (2))) = dgMorphaTitleCardTex; -#endif - -#define dgMorphaCoreMembraneDL "__OTR__objects/object_mo/gMorphaCoreMembraneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaCoreMembraneDL[] = dgMorphaCoreMembraneDL; -#else -static const char gMorphaCoreMembraneDL[] __attribute__((aligned (2))) = dgMorphaCoreMembraneDL; -#endif - -#define dgMorphaCoreNucleusDL "__OTR__objects/object_mo/gMorphaCoreNucleusDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaCoreNucleusDL[] = dgMorphaCoreNucleusDL; -#else -static const char gMorphaCoreNucleusDL[] __attribute__((aligned (2))) = dgMorphaCoreNucleusDL; -#endif - -#define dgMorphaTentacleBaseDL "__OTR__objects/object_mo/gMorphaTentacleBaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentacleBaseDL[] = dgMorphaTentacleBaseDL; -#else -static const char gMorphaTentacleBaseDL[] __attribute__((aligned (2))) = dgMorphaTentacleBaseDL; -#endif - -#define dgMorphaTentaclePart0DL "__OTR__objects/object_mo/gMorphaTentaclePart0DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart0DL[] = dgMorphaTentaclePart0DL; -#else -static const char gMorphaTentaclePart0DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart0DL; -#endif - -#define dgMorphaTentaclePart1DL "__OTR__objects/object_mo/gMorphaTentaclePart1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart1DL[] = dgMorphaTentaclePart1DL; -#else -static const char gMorphaTentaclePart1DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart1DL; -#endif - -#define dgMorphaTentaclePart2DL "__OTR__objects/object_mo/gMorphaTentaclePart2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart2DL[] = dgMorphaTentaclePart2DL; -#else -static const char gMorphaTentaclePart2DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart2DL; -#endif - -#define dgMorphaTentaclePart3DL "__OTR__objects/object_mo/gMorphaTentaclePart3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart3DL[] = dgMorphaTentaclePart3DL; -#else -static const char gMorphaTentaclePart3DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart3DL; -#endif - -#define dgMorphaTentaclePart4DL "__OTR__objects/object_mo/gMorphaTentaclePart4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart4DL[] = dgMorphaTentaclePart4DL; -#else -static const char gMorphaTentaclePart4DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart4DL; -#endif - -#define dgMorphaTentaclePart5DL "__OTR__objects/object_mo/gMorphaTentaclePart5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart5DL[] = dgMorphaTentaclePart5DL; -#else -static const char gMorphaTentaclePart5DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart5DL; -#endif - -#define dgMorphaTentaclePart6DL "__OTR__objects/object_mo/gMorphaTentaclePart6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart6DL[] = dgMorphaTentaclePart6DL; -#else -static const char gMorphaTentaclePart6DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart6DL; -#endif - -#define dgMorphaTentaclePart7DL "__OTR__objects/object_mo/gMorphaTentaclePart7DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart7DL[] = dgMorphaTentaclePart7DL; -#else -static const char gMorphaTentaclePart7DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart7DL; -#endif - -#define dgMorphaTentaclePart8DL "__OTR__objects/object_mo/gMorphaTentaclePart8DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart8DL[] = dgMorphaTentaclePart8DL; -#else -static const char gMorphaTentaclePart8DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart8DL; -#endif - -#define dgMorphaTentaclePart9DL "__OTR__objects/object_mo/gMorphaTentaclePart9DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart9DL[] = dgMorphaTentaclePart9DL; -#else -static const char gMorphaTentaclePart9DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart9DL; -#endif - -#define dgMorphaTentaclePart10DL "__OTR__objects/object_mo/gMorphaTentaclePart10DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart10DL[] = dgMorphaTentaclePart10DL; -#else -static const char gMorphaTentaclePart10DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart10DL; -#endif - -#define dgMorphaTentaclePart11DL "__OTR__objects/object_mo/gMorphaTentaclePart11DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart11DL[] = dgMorphaTentaclePart11DL; -#else -static const char gMorphaTentaclePart11DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart11DL; -#endif - -#define dgMorphaTentaclePart12DL "__OTR__objects/object_mo/gMorphaTentaclePart12DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart12DL[] = dgMorphaTentaclePart12DL; -#else -static const char gMorphaTentaclePart12DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart12DL; -#endif - -#define dgMorphaTentaclePart13DL "__OTR__objects/object_mo/gMorphaTentaclePart13DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart13DL[] = dgMorphaTentaclePart13DL; -#else -static const char gMorphaTentaclePart13DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart13DL; -#endif - -#define dgMorphaTentaclePart14DL "__OTR__objects/object_mo/gMorphaTentaclePart14DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart14DL[] = dgMorphaTentaclePart14DL; -#else -static const char gMorphaTentaclePart14DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart14DL; -#endif - -#define dgMorphaTentaclePart15DL "__OTR__objects/object_mo/gMorphaTentaclePart15DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart15DL[] = dgMorphaTentaclePart15DL; -#else -static const char gMorphaTentaclePart15DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart15DL; -#endif - -#define dgMorphaTentaclePart16DL "__OTR__objects/object_mo/gMorphaTentaclePart16DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart16DL[] = dgMorphaTentaclePart16DL; -#else -static const char gMorphaTentaclePart16DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart16DL; -#endif - -#define dgMorphaTentaclePart17DL "__OTR__objects/object_mo/gMorphaTentaclePart17DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart17DL[] = dgMorphaTentaclePart17DL; -#else -static const char gMorphaTentaclePart17DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart17DL; -#endif - -#define dgMorphaTentaclePart18DL "__OTR__objects/object_mo/gMorphaTentaclePart18DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart18DL[] = dgMorphaTentaclePart18DL; -#else -static const char gMorphaTentaclePart18DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart18DL; -#endif - -#define dgMorphaTentaclePart19DL "__OTR__objects/object_mo/gMorphaTentaclePart19DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart19DL[] = dgMorphaTentaclePart19DL; -#else -static const char gMorphaTentaclePart19DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart19DL; -#endif - -#define dgMorphaTentaclePart20DL "__OTR__objects/object_mo/gMorphaTentaclePart20DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart20DL[] = dgMorphaTentaclePart20DL; -#else -static const char gMorphaTentaclePart20DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart20DL; -#endif - -#define dgMorphaTentaclePart21DL "__OTR__objects/object_mo/gMorphaTentaclePart21DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart21DL[] = dgMorphaTentaclePart21DL; -#else -static const char gMorphaTentaclePart21DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart21DL; -#endif - -#define dgMorphaTentaclePart22DL "__OTR__objects/object_mo/gMorphaTentaclePart22DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart22DL[] = dgMorphaTentaclePart22DL; -#else -static const char gMorphaTentaclePart22DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart22DL; -#endif - -#define dgMorphaTentaclePart23DL "__OTR__objects/object_mo/gMorphaTentaclePart23DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart23DL[] = dgMorphaTentaclePart23DL; -#else -static const char gMorphaTentaclePart23DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart23DL; -#endif - -#define dgMorphaTentaclePart24DL "__OTR__objects/object_mo/gMorphaTentaclePart24DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart24DL[] = dgMorphaTentaclePart24DL; -#else -static const char gMorphaTentaclePart24DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart24DL; -#endif - -#define dgMorphaTentaclePart25DL "__OTR__objects/object_mo/gMorphaTentaclePart25DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart25DL[] = dgMorphaTentaclePart25DL; -#else -static const char gMorphaTentaclePart25DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart25DL; -#endif - -#define dgMorphaTentaclePart26DL "__OTR__objects/object_mo/gMorphaTentaclePart26DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart26DL[] = dgMorphaTentaclePart26DL; -#else -static const char gMorphaTentaclePart26DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart26DL; -#endif - -#define dgMorphaTentaclePart27DL "__OTR__objects/object_mo/gMorphaTentaclePart27DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart27DL[] = dgMorphaTentaclePart27DL; -#else -static const char gMorphaTentaclePart27DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart27DL; -#endif - -#define dgMorphaTentaclePart28DL "__OTR__objects/object_mo/gMorphaTentaclePart28DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart28DL[] = dgMorphaTentaclePart28DL; -#else -static const char gMorphaTentaclePart28DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart28DL; -#endif - -#define dgMorphaTentaclePart29DL "__OTR__objects/object_mo/gMorphaTentaclePart29DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart29DL[] = dgMorphaTentaclePart29DL; -#else -static const char gMorphaTentaclePart29DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart29DL; -#endif - -#define dgMorphaTentaclePart30DL "__OTR__objects/object_mo/gMorphaTentaclePart30DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart30DL[] = dgMorphaTentaclePart30DL; -#else -static const char gMorphaTentaclePart30DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart30DL; -#endif - -#define dgMorphaTentaclePart31DL "__OTR__objects/object_mo/gMorphaTentaclePart31DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart31DL[] = dgMorphaTentaclePart31DL; -#else -static const char gMorphaTentaclePart31DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart31DL; -#endif - -#define dgMorphaTentaclePart32DL "__OTR__objects/object_mo/gMorphaTentaclePart32DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart32DL[] = dgMorphaTentaclePart32DL; -#else -static const char gMorphaTentaclePart32DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart32DL; -#endif - -#define dgMorphaTentaclePart33DL "__OTR__objects/object_mo/gMorphaTentaclePart33DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart33DL[] = dgMorphaTentaclePart33DL; -#else -static const char gMorphaTentaclePart33DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart33DL; -#endif - -#define dgMorphaTentaclePart34DL "__OTR__objects/object_mo/gMorphaTentaclePart34DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart34DL[] = dgMorphaTentaclePart34DL; -#else -static const char gMorphaTentaclePart34DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart34DL; -#endif - -#define dgMorphaTentaclePart35DL "__OTR__objects/object_mo/gMorphaTentaclePart35DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart35DL[] = dgMorphaTentaclePart35DL; -#else -static const char gMorphaTentaclePart35DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart35DL; -#endif - -#define dgMorphaTentaclePart36DL "__OTR__objects/object_mo/gMorphaTentaclePart36DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart36DL[] = dgMorphaTentaclePart36DL; -#else -static const char gMorphaTentaclePart36DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart36DL; -#endif - -#define dgMorphaTentaclePart37DL "__OTR__objects/object_mo/gMorphaTentaclePart37DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart37DL[] = dgMorphaTentaclePart37DL; -#else -static const char gMorphaTentaclePart37DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart37DL; -#endif - -#define dgMorphaTentaclePart38DL "__OTR__objects/object_mo/gMorphaTentaclePart38DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart38DL[] = dgMorphaTentaclePart38DL; -#else -static const char gMorphaTentaclePart38DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart38DL; -#endif - -#define dgMorphaTentaclePart39DL "__OTR__objects/object_mo/gMorphaTentaclePart39DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart39DL[] = dgMorphaTentaclePart39DL; -#else -static const char gMorphaTentaclePart39DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart39DL; -#endif - -#define dgMorphaTentaclePart40DL "__OTR__objects/object_mo/gMorphaTentaclePart40DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaTentaclePart40DL[] = dgMorphaTentaclePart40DL; -#else -static const char gMorphaTentaclePart40DL[] __attribute__((aligned (2))) = dgMorphaTentaclePart40DL; -#endif - -#define dgMorphaWaterTex "__OTR__objects/object_mo/gMorphaWaterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaWaterTex[] = dgMorphaWaterTex; -#else -static const char gMorphaWaterTex[] __attribute__((aligned (2))) = dgMorphaWaterTex; -#endif - -#define dgMorphaBubbleDL "__OTR__objects/object_mo/gMorphaBubbleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaBubbleDL[] = dgMorphaBubbleDL; -#else -static const char gMorphaBubbleDL[] __attribute__((aligned (2))) = dgMorphaBubbleDL; -#endif - -#define dgMorphaDropletMaterialDL "__OTR__objects/object_mo/gMorphaDropletMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaDropletMaterialDL[] = dgMorphaDropletMaterialDL; -#else -static const char gMorphaDropletMaterialDL[] __attribute__((aligned (2))) = dgMorphaDropletMaterialDL; -#endif - -#define dgMorphaDropletModelDL "__OTR__objects/object_mo/gMorphaDropletModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaDropletModelDL[] = dgMorphaDropletModelDL; -#else -static const char gMorphaDropletModelDL[] __attribute__((aligned (2))) = dgMorphaDropletModelDL; -#endif - -#define dgMorphaWetSpotModelDL "__OTR__objects/object_mo/gMorphaWetSpotModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaWetSpotModelDL[] = dgMorphaWetSpotModelDL; -#else -static const char gMorphaWetSpotModelDL[] __attribute__((aligned (2))) = dgMorphaWetSpotModelDL; -#endif - -#define dgMorphaWaterDL "__OTR__objects/object_mo/gMorphaWaterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaWaterDL[] = dgMorphaWaterDL; -#else -static const char gMorphaWaterDL[] __attribute__((aligned (2))) = dgMorphaWaterDL; -#endif - -#define dgMorphaDL_000550 "__OTR__objects/object_mo/gMorphaDL_000550" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaDL_000550[] = dgMorphaDL_000550; -#else -static const char gMorphaDL_000550[] __attribute__((aligned (2))) = dgMorphaDL_000550; -#endif - -#define dgMorphaDL_000EC0 "__OTR__objects/object_mo/gMorphaDL_000EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaDL_000EC0[] = dgMorphaDL_000EC0; -#else -static const char gMorphaDL_000EC0[] __attribute__((aligned (2))) = dgMorphaDL_000EC0; -#endif - -#define dgMorphaDL_000EF8 "__OTR__objects/object_mo/gMorphaDL_000EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaDL_000EF8[] = dgMorphaDL_000EF8; -#else -static const char gMorphaDL_000EF8[] __attribute__((aligned (2))) = dgMorphaDL_000EF8; -#endif - -#define dgMorphaDL_007BF8 "__OTR__objects/object_mo/gMorphaDL_007BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaDL_007BF8[] = dgMorphaDL_007BF8; -#else -static const char gMorphaDL_007BF8[] __attribute__((aligned (2))) = dgMorphaDL_007BF8; -#endif - -#define dgMorphaVtx_006938 "__OTR__objects/object_mo/gMorphaVtx_006938" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaVtx_006938[] = dgMorphaVtx_006938; -#else -static const char gMorphaVtx_006938[] __attribute__((aligned (2))) = dgMorphaVtx_006938; -#endif - -#define dgMorphaVtx_007BB8 "__OTR__objects/object_mo/gMorphaVtx_007BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorphaVtx_007BB8[] = dgMorphaVtx_007BB8; -#else -static const char gMorphaVtx_007BB8[] __attribute__((aligned (2))) = dgMorphaVtx_007BB8; -#endif - -#define dobject_moTex_004D20 "__OTR__objects/object_mo/object_moTex_004D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_moTex_004D20[] = dobject_moTex_004D20; -#else -static const char object_moTex_004D20[] __attribute__((aligned (2))) = dobject_moTex_004D20; -#endif - -#define dobject_moTex_005D20 "__OTR__objects/object_mo/object_moTex_005D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_moTex_005D20[] = dobject_moTex_005D20; -#else -static const char object_moTex_005D20[] __attribute__((aligned (2))) = dobject_moTex_005D20; -#endif - -#define dobject_moTex_005520 "__OTR__objects/object_mo/object_moTex_005520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_moTex_005520[] = dobject_moTex_005520; -#else -static const char object_moTex_005520[] __attribute__((aligned (2))) = dobject_moTex_005520; -#endif - -#define dobject_moTex_000000 "__OTR__objects/object_mo/object_moTex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_moTex_000000[] = dobject_moTex_000000; -#else -static const char object_moTex_000000[] __attribute__((aligned (2))) = dobject_moTex_000000; -#endif - -#define dobject_moTex_000680 "__OTR__objects/object_mo/object_moTex_000680" -#ifdef _WIN32 -static const __declspec(align(2)) char object_moTex_000680[] = dobject_moTex_000680; -#else -static const char object_moTex_000680[] __attribute__((aligned (2))) = dobject_moTex_000680; -#endif - +#include "align_asset_macro.h" + +#define dgMorphaTitleCardTex "__OTR__objects/object_mo/gMorphaTitleCardTex" +static const ALIGN_ASSET(2) char gMorphaTitleCardTex[] = dgMorphaTitleCardTex; + +#define dgMorphaCoreMembraneDL "__OTR__objects/object_mo/gMorphaCoreMembraneDL" +static const ALIGN_ASSET(2) char gMorphaCoreMembraneDL[] = dgMorphaCoreMembraneDL; + +#define dgMorphaCoreNucleusDL "__OTR__objects/object_mo/gMorphaCoreNucleusDL" +static const ALIGN_ASSET(2) char gMorphaCoreNucleusDL[] = dgMorphaCoreNucleusDL; + +#define dgMorphaTentacleBaseDL "__OTR__objects/object_mo/gMorphaTentacleBaseDL" +static const ALIGN_ASSET(2) char gMorphaTentacleBaseDL[] = dgMorphaTentacleBaseDL; + +#define dgMorphaTentaclePart0DL "__OTR__objects/object_mo/gMorphaTentaclePart0DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart0DL[] = dgMorphaTentaclePart0DL; + +#define dgMorphaTentaclePart1DL "__OTR__objects/object_mo/gMorphaTentaclePart1DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart1DL[] = dgMorphaTentaclePart1DL; + +#define dgMorphaTentaclePart2DL "__OTR__objects/object_mo/gMorphaTentaclePart2DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart2DL[] = dgMorphaTentaclePart2DL; + +#define dgMorphaTentaclePart3DL "__OTR__objects/object_mo/gMorphaTentaclePart3DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart3DL[] = dgMorphaTentaclePart3DL; + +#define dgMorphaTentaclePart4DL "__OTR__objects/object_mo/gMorphaTentaclePart4DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart4DL[] = dgMorphaTentaclePart4DL; + +#define dgMorphaTentaclePart5DL "__OTR__objects/object_mo/gMorphaTentaclePart5DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart5DL[] = dgMorphaTentaclePart5DL; + +#define dgMorphaTentaclePart6DL "__OTR__objects/object_mo/gMorphaTentaclePart6DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart6DL[] = dgMorphaTentaclePart6DL; + +#define dgMorphaTentaclePart7DL "__OTR__objects/object_mo/gMorphaTentaclePart7DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart7DL[] = dgMorphaTentaclePart7DL; + +#define dgMorphaTentaclePart8DL "__OTR__objects/object_mo/gMorphaTentaclePart8DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart8DL[] = dgMorphaTentaclePart8DL; + +#define dgMorphaTentaclePart9DL "__OTR__objects/object_mo/gMorphaTentaclePart9DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart9DL[] = dgMorphaTentaclePart9DL; + +#define dgMorphaTentaclePart10DL "__OTR__objects/object_mo/gMorphaTentaclePart10DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart10DL[] = dgMorphaTentaclePart10DL; + +#define dgMorphaTentaclePart11DL "__OTR__objects/object_mo/gMorphaTentaclePart11DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart11DL[] = dgMorphaTentaclePart11DL; + +#define dgMorphaTentaclePart12DL "__OTR__objects/object_mo/gMorphaTentaclePart12DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart12DL[] = dgMorphaTentaclePart12DL; + +#define dgMorphaTentaclePart13DL "__OTR__objects/object_mo/gMorphaTentaclePart13DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart13DL[] = dgMorphaTentaclePart13DL; + +#define dgMorphaTentaclePart14DL "__OTR__objects/object_mo/gMorphaTentaclePart14DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart14DL[] = dgMorphaTentaclePart14DL; + +#define dgMorphaTentaclePart15DL "__OTR__objects/object_mo/gMorphaTentaclePart15DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart15DL[] = dgMorphaTentaclePart15DL; + +#define dgMorphaTentaclePart16DL "__OTR__objects/object_mo/gMorphaTentaclePart16DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart16DL[] = dgMorphaTentaclePart16DL; + +#define dgMorphaTentaclePart17DL "__OTR__objects/object_mo/gMorphaTentaclePart17DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart17DL[] = dgMorphaTentaclePart17DL; + +#define dgMorphaTentaclePart18DL "__OTR__objects/object_mo/gMorphaTentaclePart18DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart18DL[] = dgMorphaTentaclePart18DL; + +#define dgMorphaTentaclePart19DL "__OTR__objects/object_mo/gMorphaTentaclePart19DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart19DL[] = dgMorphaTentaclePart19DL; + +#define dgMorphaTentaclePart20DL "__OTR__objects/object_mo/gMorphaTentaclePart20DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart20DL[] = dgMorphaTentaclePart20DL; + +#define dgMorphaTentaclePart21DL "__OTR__objects/object_mo/gMorphaTentaclePart21DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart21DL[] = dgMorphaTentaclePart21DL; + +#define dgMorphaTentaclePart22DL "__OTR__objects/object_mo/gMorphaTentaclePart22DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart22DL[] = dgMorphaTentaclePart22DL; + +#define dgMorphaTentaclePart23DL "__OTR__objects/object_mo/gMorphaTentaclePart23DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart23DL[] = dgMorphaTentaclePart23DL; + +#define dgMorphaTentaclePart24DL "__OTR__objects/object_mo/gMorphaTentaclePart24DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart24DL[] = dgMorphaTentaclePart24DL; + +#define dgMorphaTentaclePart25DL "__OTR__objects/object_mo/gMorphaTentaclePart25DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart25DL[] = dgMorphaTentaclePart25DL; + +#define dgMorphaTentaclePart26DL "__OTR__objects/object_mo/gMorphaTentaclePart26DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart26DL[] = dgMorphaTentaclePart26DL; + +#define dgMorphaTentaclePart27DL "__OTR__objects/object_mo/gMorphaTentaclePart27DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart27DL[] = dgMorphaTentaclePart27DL; + +#define dgMorphaTentaclePart28DL "__OTR__objects/object_mo/gMorphaTentaclePart28DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart28DL[] = dgMorphaTentaclePart28DL; + +#define dgMorphaTentaclePart29DL "__OTR__objects/object_mo/gMorphaTentaclePart29DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart29DL[] = dgMorphaTentaclePart29DL; + +#define dgMorphaTentaclePart30DL "__OTR__objects/object_mo/gMorphaTentaclePart30DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart30DL[] = dgMorphaTentaclePart30DL; + +#define dgMorphaTentaclePart31DL "__OTR__objects/object_mo/gMorphaTentaclePart31DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart31DL[] = dgMorphaTentaclePart31DL; + +#define dgMorphaTentaclePart32DL "__OTR__objects/object_mo/gMorphaTentaclePart32DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart32DL[] = dgMorphaTentaclePart32DL; + +#define dgMorphaTentaclePart33DL "__OTR__objects/object_mo/gMorphaTentaclePart33DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart33DL[] = dgMorphaTentaclePart33DL; + +#define dgMorphaTentaclePart34DL "__OTR__objects/object_mo/gMorphaTentaclePart34DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart34DL[] = dgMorphaTentaclePart34DL; + +#define dgMorphaTentaclePart35DL "__OTR__objects/object_mo/gMorphaTentaclePart35DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart35DL[] = dgMorphaTentaclePart35DL; + +#define dgMorphaTentaclePart36DL "__OTR__objects/object_mo/gMorphaTentaclePart36DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart36DL[] = dgMorphaTentaclePart36DL; + +#define dgMorphaTentaclePart37DL "__OTR__objects/object_mo/gMorphaTentaclePart37DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart37DL[] = dgMorphaTentaclePart37DL; + +#define dgMorphaTentaclePart38DL "__OTR__objects/object_mo/gMorphaTentaclePart38DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart38DL[] = dgMorphaTentaclePart38DL; + +#define dgMorphaTentaclePart39DL "__OTR__objects/object_mo/gMorphaTentaclePart39DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart39DL[] = dgMorphaTentaclePart39DL; + +#define dgMorphaTentaclePart40DL "__OTR__objects/object_mo/gMorphaTentaclePart40DL" +static const ALIGN_ASSET(2) char gMorphaTentaclePart40DL[] = dgMorphaTentaclePart40DL; + +#define dgMorphaWaterTex "__OTR__objects/object_mo/gMorphaWaterTex" +static const ALIGN_ASSET(2) char gMorphaWaterTex[] = dgMorphaWaterTex; + +#define dgMorphaBubbleDL "__OTR__objects/object_mo/gMorphaBubbleDL" +static const ALIGN_ASSET(2) char gMorphaBubbleDL[] = dgMorphaBubbleDL; + +#define dgMorphaDropletMaterialDL "__OTR__objects/object_mo/gMorphaDropletMaterialDL" +static const ALIGN_ASSET(2) char gMorphaDropletMaterialDL[] = dgMorphaDropletMaterialDL; + +#define dgMorphaDropletModelDL "__OTR__objects/object_mo/gMorphaDropletModelDL" +static const ALIGN_ASSET(2) char gMorphaDropletModelDL[] = dgMorphaDropletModelDL; + +#define dgMorphaWetSpotModelDL "__OTR__objects/object_mo/gMorphaWetSpotModelDL" +static const ALIGN_ASSET(2) char gMorphaWetSpotModelDL[] = dgMorphaWetSpotModelDL; + +#define dgMorphaWaterDL "__OTR__objects/object_mo/gMorphaWaterDL" +static const ALIGN_ASSET(2) char gMorphaWaterDL[] = dgMorphaWaterDL; + +#define dgMorphaDL_000550 "__OTR__objects/object_mo/gMorphaDL_000550" +static const ALIGN_ASSET(2) char gMorphaDL_000550[] = dgMorphaDL_000550; + +#define dgMorphaDL_000EC0 "__OTR__objects/object_mo/gMorphaDL_000EC0" +static const ALIGN_ASSET(2) char gMorphaDL_000EC0[] = dgMorphaDL_000EC0; + +#define dgMorphaDL_000EF8 "__OTR__objects/object_mo/gMorphaDL_000EF8" +static const ALIGN_ASSET(2) char gMorphaDL_000EF8[] = dgMorphaDL_000EF8; + +#define dgMorphaDL_007BF8 "__OTR__objects/object_mo/gMorphaDL_007BF8" +static const ALIGN_ASSET(2) char gMorphaDL_007BF8[] = dgMorphaDL_007BF8; + +#define dgMorphaVtx_006938 "__OTR__objects/object_mo/gMorphaVtx_006938" +static const ALIGN_ASSET(2) char gMorphaVtx_006938[] = dgMorphaVtx_006938; + +#define dgMorphaVtx_007BB8 "__OTR__objects/object_mo/gMorphaVtx_007BB8" +static const ALIGN_ASSET(2) char gMorphaVtx_007BB8[] = dgMorphaVtx_007BB8; + +#define dobject_moTex_004D20 "__OTR__objects/object_mo/object_moTex_004D20" +static const ALIGN_ASSET(2) char object_moTex_004D20[] = dobject_moTex_004D20; + +#define dobject_moTex_005D20 "__OTR__objects/object_mo/object_moTex_005D20" +static const ALIGN_ASSET(2) char object_moTex_005D20[] = dobject_moTex_005D20; + +#define dobject_moTex_005520 "__OTR__objects/object_mo/object_moTex_005520" +static const ALIGN_ASSET(2) char object_moTex_005520[] = dobject_moTex_005520; + +#define dobject_moTex_000000 "__OTR__objects/object_mo/object_moTex_000000" +static const ALIGN_ASSET(2) char object_moTex_000000[] = dobject_moTex_000000; + +#define dobject_moTex_000680 "__OTR__objects/object_mo/object_moTex_000680" +static const ALIGN_ASSET(2) char object_moTex_000680[] = dobject_moTex_000680; \ No newline at end of file diff --git a/soh/assets/objects/object_mori_hineri1/object_mori_hineri1.h b/soh/assets/objects/object_mori_hineri1/object_mori_hineri1.h index c8b0c5c63..c133abb6d 100644 --- a/soh/assets/objects/object_mori_hineri1/object_mori_hineri1.h +++ b/soh/assets/objects/object_mori_hineri1/object_mori_hineri1.h @@ -1,16 +1,9 @@ #pragma once -#define dobject_mori_hineri1_DL_0024E0 "__OTR__objects/object_mori_hineri1/object_mori_hineri1_DL_0024E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mori_hineri1_DL_0024E0[] = dobject_mori_hineri1_DL_0024E0; -#else -static const char object_mori_hineri1_DL_0024E0[] __attribute__((aligned (2))) = dobject_mori_hineri1_DL_0024E0; -#endif - -#define dobject_mori_hineri1_Col_0054B8 "__OTR__objects/object_mori_hineri1/object_mori_hineri1_Col_0054B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mori_hineri1_Col_0054B8[] = dobject_mori_hineri1_Col_0054B8; -#else -static const char object_mori_hineri1_Col_0054B8[] __attribute__((aligned (2))) = dobject_mori_hineri1_Col_0054B8; -#endif - +#include "align_asset_macro.h" + +#define dobject_mori_hineri1_DL_0024E0 "__OTR__objects/object_mori_hineri1/object_mori_hineri1_DL_0024E0" +static const ALIGN_ASSET(2) char object_mori_hineri1_DL_0024E0[] = dobject_mori_hineri1_DL_0024E0; + +#define dobject_mori_hineri1_Col_0054B8 "__OTR__objects/object_mori_hineri1/object_mori_hineri1_Col_0054B8" +static const ALIGN_ASSET(2) char object_mori_hineri1_Col_0054B8[] = dobject_mori_hineri1_Col_0054B8; \ No newline at end of file diff --git a/soh/assets/objects/object_mori_hineri1a/object_mori_hineri1a.h b/soh/assets/objects/object_mori_hineri1a/object_mori_hineri1a.h index 7f7793468..35ac0f8e9 100644 --- a/soh/assets/objects/object_mori_hineri1a/object_mori_hineri1a.h +++ b/soh/assets/objects/object_mori_hineri1a/object_mori_hineri1a.h @@ -1,16 +1,9 @@ #pragma once -#define dobject_mori_hineri1a_DL_001980 "__OTR__objects/object_mori_hineri1a/object_mori_hineri1a_DL_001980" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mori_hineri1a_DL_001980[] = dobject_mori_hineri1a_DL_001980; -#else -static const char object_mori_hineri1a_DL_001980[] __attribute__((aligned (2))) = dobject_mori_hineri1a_DL_001980; -#endif - -#define dobject_mori_hineri1a_Col_003490 "__OTR__objects/object_mori_hineri1a/object_mori_hineri1a_Col_003490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mori_hineri1a_Col_003490[] = dobject_mori_hineri1a_Col_003490; -#else -static const char object_mori_hineri1a_Col_003490[] __attribute__((aligned (2))) = dobject_mori_hineri1a_Col_003490; -#endif - +#include "align_asset_macro.h" + +#define dobject_mori_hineri1a_DL_001980 "__OTR__objects/object_mori_hineri1a/object_mori_hineri1a_DL_001980" +static const ALIGN_ASSET(2) char object_mori_hineri1a_DL_001980[] = dobject_mori_hineri1a_DL_001980; + +#define dobject_mori_hineri1a_Col_003490 "__OTR__objects/object_mori_hineri1a/object_mori_hineri1a_Col_003490" +static const ALIGN_ASSET(2) char object_mori_hineri1a_Col_003490[] = dobject_mori_hineri1a_Col_003490; \ No newline at end of file diff --git a/soh/assets/objects/object_mori_hineri2/object_mori_hineri2.h b/soh/assets/objects/object_mori_hineri2/object_mori_hineri2.h index 2544fdddc..3de482459 100644 --- a/soh/assets/objects/object_mori_hineri2/object_mori_hineri2.h +++ b/soh/assets/objects/object_mori_hineri2/object_mori_hineri2.h @@ -1,16 +1,9 @@ #pragma once -#define dobject_mori_hineri2_DL_0020F0 "__OTR__objects/object_mori_hineri2/object_mori_hineri2_DL_0020F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mori_hineri2_DL_0020F0[] = dobject_mori_hineri2_DL_0020F0; -#else -static const char object_mori_hineri2_DL_0020F0[] __attribute__((aligned (2))) = dobject_mori_hineri2_DL_0020F0; -#endif - -#define dobject_mori_hineri2_Col_0043D0 "__OTR__objects/object_mori_hineri2/object_mori_hineri2_Col_0043D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mori_hineri2_Col_0043D0[] = dobject_mori_hineri2_Col_0043D0; -#else -static const char object_mori_hineri2_Col_0043D0[] __attribute__((aligned (2))) = dobject_mori_hineri2_Col_0043D0; -#endif - +#include "align_asset_macro.h" + +#define dobject_mori_hineri2_DL_0020F0 "__OTR__objects/object_mori_hineri2/object_mori_hineri2_DL_0020F0" +static const ALIGN_ASSET(2) char object_mori_hineri2_DL_0020F0[] = dobject_mori_hineri2_DL_0020F0; + +#define dobject_mori_hineri2_Col_0043D0 "__OTR__objects/object_mori_hineri2/object_mori_hineri2_Col_0043D0" +static const ALIGN_ASSET(2) char object_mori_hineri2_Col_0043D0[] = dobject_mori_hineri2_Col_0043D0; \ No newline at end of file diff --git a/soh/assets/objects/object_mori_hineri2a/object_mori_hineri2a.h b/soh/assets/objects/object_mori_hineri2a/object_mori_hineri2a.h index 12607c929..62c1d0036 100644 --- a/soh/assets/objects/object_mori_hineri2a/object_mori_hineri2a.h +++ b/soh/assets/objects/object_mori_hineri2a/object_mori_hineri2a.h @@ -1,16 +1,9 @@ #pragma once -#define dobject_mori_hineri2a_DL_002B70 "__OTR__objects/object_mori_hineri2a/object_mori_hineri2a_DL_002B70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mori_hineri2a_DL_002B70[] = dobject_mori_hineri2a_DL_002B70; -#else -static const char object_mori_hineri2a_DL_002B70[] __attribute__((aligned (2))) = dobject_mori_hineri2a_DL_002B70; -#endif - -#define dobject_mori_hineri2a_Col_006078 "__OTR__objects/object_mori_hineri2a/object_mori_hineri2a_Col_006078" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mori_hineri2a_Col_006078[] = dobject_mori_hineri2a_Col_006078; -#else -static const char object_mori_hineri2a_Col_006078[] __attribute__((aligned (2))) = dobject_mori_hineri2a_Col_006078; -#endif - +#include "align_asset_macro.h" + +#define dobject_mori_hineri2a_DL_002B70 "__OTR__objects/object_mori_hineri2a/object_mori_hineri2a_DL_002B70" +static const ALIGN_ASSET(2) char object_mori_hineri2a_DL_002B70[] = dobject_mori_hineri2a_DL_002B70; + +#define dobject_mori_hineri2a_Col_006078 "__OTR__objects/object_mori_hineri2a/object_mori_hineri2a_Col_006078" +static const ALIGN_ASSET(2) char object_mori_hineri2a_Col_006078[] = dobject_mori_hineri2a_Col_006078; \ No newline at end of file diff --git a/soh/assets/objects/object_mori_objects/object_mori_objects.h b/soh/assets/objects/object_mori_objects/object_mori_objects.h index a990e78b9..bf6a5f21a 100644 --- a/soh/assets/objects/object_mori_objects/object_mori_objects.h +++ b/soh/assets/objects/object_mori_objects/object_mori_objects.h @@ -1,142 +1,63 @@ #pragma once -#define dgMoriHashiraTLUT "__OTR__objects/object_mori_objects/gMoriHashiraTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashiraTLUT[] = dgMoriHashiraTLUT; -#else -static const char gMoriHashiraTLUT[] __attribute__((aligned (2))) = dgMoriHashiraTLUT; -#endif - -#define dgMoriHashiraTex "__OTR__objects/object_mori_objects/gMoriHashiraTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashiraTex[] = dgMoriHashiraTex; -#else -static const char gMoriHashiraTex[] __attribute__((aligned (2))) = dgMoriHashiraTex; -#endif - -#define dgMoriHashigoClaspTLUT "__OTR__objects/object_mori_objects/gMoriHashigoClaspTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashigoClaspTLUT[] = dgMoriHashigoClaspTLUT; -#else -static const char gMoriHashigoClaspTLUT[] __attribute__((aligned (2))) = dgMoriHashigoClaspTLUT; -#endif - -#define dgMoriHashigoClaspTex "__OTR__objects/object_mori_objects/gMoriHashigoClaspTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashigoClaspTex[] = dgMoriHashigoClaspTex; -#else -static const char gMoriHashigoClaspTex[] __attribute__((aligned (2))) = dgMoriHashigoClaspTex; -#endif - -#define dgMoriBigstCol "__OTR__objects/object_mori_objects/gMoriBigstCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriBigstCol[] = dgMoriBigstCol; -#else -static const char gMoriBigstCol[] __attribute__((aligned (2))) = dgMoriBigstCol; -#endif - -#define dgMoriBigstDL "__OTR__objects/object_mori_objects/gMoriBigstDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriBigstDL[] = dgMoriBigstDL; -#else -static const char gMoriBigstDL[] __attribute__((aligned (2))) = dgMoriBigstDL; -#endif - -#define dgMoriElevatorCol "__OTR__objects/object_mori_objects/gMoriElevatorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriElevatorCol[] = dgMoriElevatorCol; -#else -static const char gMoriElevatorCol[] __attribute__((aligned (2))) = dgMoriElevatorCol; -#endif - -#define dgMoriElevatorDL "__OTR__objects/object_mori_objects/gMoriElevatorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriElevatorDL[] = dgMoriElevatorDL; -#else -static const char gMoriElevatorDL[] __attribute__((aligned (2))) = dgMoriElevatorDL; -#endif - -#define dgMoriHashigoCol "__OTR__objects/object_mori_objects/gMoriHashigoCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashigoCol[] = dgMoriHashigoCol; -#else -static const char gMoriHashigoCol[] __attribute__((aligned (2))) = dgMoriHashigoCol; -#endif - -#define dgMoriHashigoLadderDL "__OTR__objects/object_mori_objects/gMoriHashigoLadderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashigoLadderDL[] = dgMoriHashigoLadderDL; -#else -static const char gMoriHashigoLadderDL[] __attribute__((aligned (2))) = dgMoriHashigoLadderDL; -#endif - -#define dgMoriHashigoClaspDL "__OTR__objects/object_mori_objects/gMoriHashigoClaspDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashigoClaspDL[] = dgMoriHashigoClaspDL; -#else -static const char gMoriHashigoClaspDL[] __attribute__((aligned (2))) = dgMoriHashigoClaspDL; -#endif - -#define dgMoriHashira1Col "__OTR__objects/object_mori_objects/gMoriHashira1Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashira1Col[] = dgMoriHashira1Col; -#else -static const char gMoriHashira1Col[] __attribute__((aligned (2))) = dgMoriHashira1Col; -#endif - -#define dgMoriHashira2Col "__OTR__objects/object_mori_objects/gMoriHashira2Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashira2Col[] = dgMoriHashira2Col; -#else -static const char gMoriHashira2Col[] __attribute__((aligned (2))) = dgMoriHashira2Col; -#endif - -#define dgMoriHashiraPlatformsDL "__OTR__objects/object_mori_objects/gMoriHashiraPlatformsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashiraPlatformsDL[] = dgMoriHashiraPlatformsDL; -#else -static const char gMoriHashiraPlatformsDL[] __attribute__((aligned (2))) = dgMoriHashiraPlatformsDL; -#endif - -#define dgMoriHashiraGateDL "__OTR__objects/object_mori_objects/gMoriHashiraGateDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashiraGateDL[] = dgMoriHashiraGateDL; -#else -static const char gMoriHashiraGateDL[] __attribute__((aligned (2))) = dgMoriHashiraGateDL; -#endif - -#define dgMoriIdomizuWaterDL "__OTR__objects/object_mori_objects/gMoriIdomizuWaterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriIdomizuWaterDL[] = dgMoriIdomizuWaterDL; -#else -static const char gMoriIdomizuWaterDL[] __attribute__((aligned (2))) = dgMoriIdomizuWaterDL; -#endif - -#define dgMoriKaitenkabeCol "__OTR__objects/object_mori_objects/gMoriKaitenkabeCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriKaitenkabeCol[] = dgMoriKaitenkabeCol; -#else -static const char gMoriKaitenkabeCol[] __attribute__((aligned (2))) = dgMoriKaitenkabeCol; -#endif - -#define dgMoriKaitenkabeDL "__OTR__objects/object_mori_objects/gMoriKaitenkabeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriKaitenkabeDL[] = dgMoriKaitenkabeDL; -#else -static const char gMoriKaitenkabeDL[] __attribute__((aligned (2))) = dgMoriKaitenkabeDL; -#endif - -#define dgMoriRakkatenjoCol "__OTR__objects/object_mori_objects/gMoriRakkatenjoCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriRakkatenjoCol[] = dgMoriRakkatenjoCol; -#else -static const char gMoriRakkatenjoCol[] __attribute__((aligned (2))) = dgMoriRakkatenjoCol; -#endif - -#define dgMoriRakkatenjoDL "__OTR__objects/object_mori_objects/gMoriRakkatenjoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriRakkatenjoDL[] = dgMoriRakkatenjoDL; -#else -static const char gMoriRakkatenjoDL[] __attribute__((aligned (2))) = dgMoriRakkatenjoDL; -#endif - +#include "align_asset_macro.h" + +#define dgMoriHashiraTLUT "__OTR__objects/object_mori_objects/gMoriHashiraTLUT" +static const ALIGN_ASSET(2) char gMoriHashiraTLUT[] = dgMoriHashiraTLUT; + +#define dgMoriHashiraTex "__OTR__objects/object_mori_objects/gMoriHashiraTex" +static const ALIGN_ASSET(2) char gMoriHashiraTex[] = dgMoriHashiraTex; + +#define dgMoriHashigoClaspTLUT "__OTR__objects/object_mori_objects/gMoriHashigoClaspTLUT" +static const ALIGN_ASSET(2) char gMoriHashigoClaspTLUT[] = dgMoriHashigoClaspTLUT; + +#define dgMoriHashigoClaspTex "__OTR__objects/object_mori_objects/gMoriHashigoClaspTex" +static const ALIGN_ASSET(2) char gMoriHashigoClaspTex[] = dgMoriHashigoClaspTex; + +#define dgMoriBigstCol "__OTR__objects/object_mori_objects/gMoriBigstCol" +static const ALIGN_ASSET(2) char gMoriBigstCol[] = dgMoriBigstCol; + +#define dgMoriBigstDL "__OTR__objects/object_mori_objects/gMoriBigstDL" +static const ALIGN_ASSET(2) char gMoriBigstDL[] = dgMoriBigstDL; + +#define dgMoriElevatorCol "__OTR__objects/object_mori_objects/gMoriElevatorCol" +static const ALIGN_ASSET(2) char gMoriElevatorCol[] = dgMoriElevatorCol; + +#define dgMoriElevatorDL "__OTR__objects/object_mori_objects/gMoriElevatorDL" +static const ALIGN_ASSET(2) char gMoriElevatorDL[] = dgMoriElevatorDL; + +#define dgMoriHashigoCol "__OTR__objects/object_mori_objects/gMoriHashigoCol" +static const ALIGN_ASSET(2) char gMoriHashigoCol[] = dgMoriHashigoCol; + +#define dgMoriHashigoLadderDL "__OTR__objects/object_mori_objects/gMoriHashigoLadderDL" +static const ALIGN_ASSET(2) char gMoriHashigoLadderDL[] = dgMoriHashigoLadderDL; + +#define dgMoriHashigoClaspDL "__OTR__objects/object_mori_objects/gMoriHashigoClaspDL" +static const ALIGN_ASSET(2) char gMoriHashigoClaspDL[] = dgMoriHashigoClaspDL; + +#define dgMoriHashira1Col "__OTR__objects/object_mori_objects/gMoriHashira1Col" +static const ALIGN_ASSET(2) char gMoriHashira1Col[] = dgMoriHashira1Col; + +#define dgMoriHashira2Col "__OTR__objects/object_mori_objects/gMoriHashira2Col" +static const ALIGN_ASSET(2) char gMoriHashira2Col[] = dgMoriHashira2Col; + +#define dgMoriHashiraPlatformsDL "__OTR__objects/object_mori_objects/gMoriHashiraPlatformsDL" +static const ALIGN_ASSET(2) char gMoriHashiraPlatformsDL[] = dgMoriHashiraPlatformsDL; + +#define dgMoriHashiraGateDL "__OTR__objects/object_mori_objects/gMoriHashiraGateDL" +static const ALIGN_ASSET(2) char gMoriHashiraGateDL[] = dgMoriHashiraGateDL; + +#define dgMoriIdomizuWaterDL "__OTR__objects/object_mori_objects/gMoriIdomizuWaterDL" +static const ALIGN_ASSET(2) char gMoriIdomizuWaterDL[] = dgMoriIdomizuWaterDL; + +#define dgMoriKaitenkabeCol "__OTR__objects/object_mori_objects/gMoriKaitenkabeCol" +static const ALIGN_ASSET(2) char gMoriKaitenkabeCol[] = dgMoriKaitenkabeCol; + +#define dgMoriKaitenkabeDL "__OTR__objects/object_mori_objects/gMoriKaitenkabeDL" +static const ALIGN_ASSET(2) char gMoriKaitenkabeDL[] = dgMoriKaitenkabeDL; + +#define dgMoriRakkatenjoCol "__OTR__objects/object_mori_objects/gMoriRakkatenjoCol" +static const ALIGN_ASSET(2) char gMoriRakkatenjoCol[] = dgMoriRakkatenjoCol; + +#define dgMoriRakkatenjoDL "__OTR__objects/object_mori_objects/gMoriRakkatenjoDL" +static const ALIGN_ASSET(2) char gMoriRakkatenjoDL[] = dgMoriRakkatenjoDL; \ No newline at end of file diff --git a/soh/assets/objects/object_mori_tex/object_mori_tex.h b/soh/assets/objects/object_mori_tex/object_mori_tex.h index 95c755d2a..2780e6fa5 100644 --- a/soh/assets/objects/object_mori_tex/object_mori_tex.h +++ b/soh/assets/objects/object_mori_tex/object_mori_tex.h @@ -1,128 +1,57 @@ #pragma once -#define dgMoriElevatorBarTex "__OTR__objects/object_mori_tex/gMoriElevatorBarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriElevatorBarTex[] = dgMoriElevatorBarTex; -#else -static const char gMoriElevatorBarTex[] __attribute__((aligned (2))) = dgMoriElevatorBarTex; -#endif - -#define dgMoriElevatorTopTex "__OTR__objects/object_mori_tex/gMoriElevatorTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriElevatorTopTex[] = dgMoriElevatorTopTex; -#else -static const char gMoriElevatorTopTex[] __attribute__((aligned (2))) = dgMoriElevatorTopTex; -#endif - -#define dgMoriElevatorSideTex "__OTR__objects/object_mori_tex/gMoriElevatorSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriElevatorSideTex[] = dgMoriElevatorSideTex; -#else -static const char gMoriElevatorSideTex[] __attribute__((aligned (2))) = dgMoriElevatorSideTex; -#endif - -#define dgMorieStoneWallTex "__OTR__objects/object_mori_tex/gMorieStoneWallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMorieStoneWallTex[] = dgMorieStoneWallTex; -#else -static const char gMorieStoneWallTex[] __attribute__((aligned (2))) = dgMorieStoneWallTex; -#endif - -#define dgMoriKaitenkabeMetalWallTex "__OTR__objects/object_mori_tex/gMoriKaitenkabeMetalWallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriKaitenkabeMetalWallTex[] = dgMoriKaitenkabeMetalWallTex; -#else -static const char gMoriKaitenkabeMetalWallTex[] __attribute__((aligned (2))) = dgMoriKaitenkabeMetalWallTex; -#endif - -#define dgMoriRakkatenjoCheckerboardTex "__OTR__objects/object_mori_tex/gMoriRakkatenjoCheckerboardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriRakkatenjoCheckerboardTex[] = dgMoriRakkatenjoCheckerboardTex; -#else -static const char gMoriRakkatenjoCheckerboardTex[] __attribute__((aligned (2))) = dgMoriRakkatenjoCheckerboardTex; -#endif - -#define dgMoriStalfosPlatformSideTex "__OTR__objects/object_mori_tex/gMoriStalfosPlatformSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriStalfosPlatformSideTex[] = dgMoriStalfosPlatformSideTex; -#else -static const char gMoriStalfosPlatformSideTex[] __attribute__((aligned (2))) = dgMoriStalfosPlatformSideTex; -#endif - -#define dgMoriStalfosPlatformTopTex "__OTR__objects/object_mori_tex/gMoriStalfosPlatformTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriStalfosPlatformTopTex[] = dgMoriStalfosPlatformTopTex; -#else -static const char gMoriStalfosPlatformTopTex[] __attribute__((aligned (2))) = dgMoriStalfosPlatformTopTex; -#endif - -#define dgMoriHashiraPlatformsTex "__OTR__objects/object_mori_tex/gMoriHashiraPlatformsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashiraPlatformsTex[] = dgMoriHashiraPlatformsTex; -#else -static const char gMoriHashiraPlatformsTex[] __attribute__((aligned (2))) = dgMoriHashiraPlatformsTex; -#endif - -#define dgMoriWaterTex "__OTR__objects/object_mori_tex/gMoriWaterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriWaterTex[] = dgMoriWaterTex; -#else -static const char gMoriWaterTex[] __attribute__((aligned (2))) = dgMoriWaterTex; -#endif - -#define dgMoriHashigoLadderTex "__OTR__objects/object_mori_tex/gMoriHashigoLadderTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashigoLadderTex[] = dgMoriHashigoLadderTex; -#else -static const char gMoriHashigoLadderTex[] __attribute__((aligned (2))) = dgMoriHashigoLadderTex; -#endif - -#define dgForestTwistedHallwayPillarTex "__OTR__objects/object_mori_tex/gForestTwistedHallwayPillarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTwistedHallwayPillarTex[] = dgForestTwistedHallwayPillarTex; -#else -static const char gForestTwistedHallwayPillarTex[] __attribute__((aligned (2))) = dgForestTwistedHallwayPillarTex; -#endif - -#define dgForestTwistedHallwayWallAndFloorTex "__OTR__objects/object_mori_tex/gForestTwistedHallwayWallAndFloorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTwistedHallwayWallAndFloorTex[] = dgForestTwistedHallwayWallAndFloorTex; -#else -static const char gForestTwistedHallwayWallAndFloorTex[] __attribute__((aligned (2))) = dgForestTwistedHallwayWallAndFloorTex; -#endif - -#define dgForestTwistedHallwayWallDesignTex "__OTR__objects/object_mori_tex/gForestTwistedHallwayWallDesignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTwistedHallwayWallDesignTex[] = dgForestTwistedHallwayWallDesignTex; -#else -static const char gForestTwistedHallwayWallDesignTex[] __attribute__((aligned (2))) = dgForestTwistedHallwayWallDesignTex; -#endif - -#define dgForestTwistedHallCarpetTex "__OTR__objects/object_mori_tex/gForestTwistedHallCarpetTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTwistedHallCarpetTex[] = dgForestTwistedHallCarpetTex; -#else -static const char gForestTwistedHallCarpetTex[] __attribute__((aligned (2))) = dgForestTwistedHallCarpetTex; -#endif - -#define dgForestTwistedHallLadderTex "__OTR__objects/object_mori_tex/gForestTwistedHallLadderTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTwistedHallLadderTex[] = dgForestTwistedHallLadderTex; -#else -static const char gForestTwistedHallLadderTex[] __attribute__((aligned (2))) = dgForestTwistedHallLadderTex; -#endif - -#define dgForestTwistedHallBrickTex "__OTR__objects/object_mori_tex/gForestTwistedHallBrickTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTwistedHallBrickTex[] = dgForestTwistedHallBrickTex; -#else -static const char gForestTwistedHallBrickTex[] __attribute__((aligned (2))) = dgForestTwistedHallBrickTex; -#endif - -#define dgMoriHashiraGateTex "__OTR__objects/object_mori_tex/gMoriHashiraGateTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMoriHashiraGateTex[] = dgMoriHashiraGateTex; -#else -static const char gMoriHashiraGateTex[] __attribute__((aligned (2))) = dgMoriHashiraGateTex; -#endif - +#include "align_asset_macro.h" + +#define dgMoriElevatorBarTex "__OTR__objects/object_mori_tex/gMoriElevatorBarTex" +static const ALIGN_ASSET(2) char gMoriElevatorBarTex[] = dgMoriElevatorBarTex; + +#define dgMoriElevatorTopTex "__OTR__objects/object_mori_tex/gMoriElevatorTopTex" +static const ALIGN_ASSET(2) char gMoriElevatorTopTex[] = dgMoriElevatorTopTex; + +#define dgMoriElevatorSideTex "__OTR__objects/object_mori_tex/gMoriElevatorSideTex" +static const ALIGN_ASSET(2) char gMoriElevatorSideTex[] = dgMoriElevatorSideTex; + +#define dgMorieStoneWallTex "__OTR__objects/object_mori_tex/gMorieStoneWallTex" +static const ALIGN_ASSET(2) char gMorieStoneWallTex[] = dgMorieStoneWallTex; + +#define dgMoriKaitenkabeMetalWallTex "__OTR__objects/object_mori_tex/gMoriKaitenkabeMetalWallTex" +static const ALIGN_ASSET(2) char gMoriKaitenkabeMetalWallTex[] = dgMoriKaitenkabeMetalWallTex; + +#define dgMoriRakkatenjoCheckerboardTex "__OTR__objects/object_mori_tex/gMoriRakkatenjoCheckerboardTex" +static const ALIGN_ASSET(2) char gMoriRakkatenjoCheckerboardTex[] = dgMoriRakkatenjoCheckerboardTex; + +#define dgMoriStalfosPlatformSideTex "__OTR__objects/object_mori_tex/gMoriStalfosPlatformSideTex" +static const ALIGN_ASSET(2) char gMoriStalfosPlatformSideTex[] = dgMoriStalfosPlatformSideTex; + +#define dgMoriStalfosPlatformTopTex "__OTR__objects/object_mori_tex/gMoriStalfosPlatformTopTex" +static const ALIGN_ASSET(2) char gMoriStalfosPlatformTopTex[] = dgMoriStalfosPlatformTopTex; + +#define dgMoriHashiraPlatformsTex "__OTR__objects/object_mori_tex/gMoriHashiraPlatformsTex" +static const ALIGN_ASSET(2) char gMoriHashiraPlatformsTex[] = dgMoriHashiraPlatformsTex; + +#define dgMoriWaterTex "__OTR__objects/object_mori_tex/gMoriWaterTex" +static const ALIGN_ASSET(2) char gMoriWaterTex[] = dgMoriWaterTex; + +#define dgMoriHashigoLadderTex "__OTR__objects/object_mori_tex/gMoriHashigoLadderTex" +static const ALIGN_ASSET(2) char gMoriHashigoLadderTex[] = dgMoriHashigoLadderTex; + +#define dgForestTwistedHallwayPillarTex "__OTR__objects/object_mori_tex/gForestTwistedHallwayPillarTex" +static const ALIGN_ASSET(2) char gForestTwistedHallwayPillarTex[] = dgForestTwistedHallwayPillarTex; + +#define dgForestTwistedHallwayWallAndFloorTex "__OTR__objects/object_mori_tex/gForestTwistedHallwayWallAndFloorTex" +static const ALIGN_ASSET(2) char gForestTwistedHallwayWallAndFloorTex[] = dgForestTwistedHallwayWallAndFloorTex; + +#define dgForestTwistedHallwayWallDesignTex "__OTR__objects/object_mori_tex/gForestTwistedHallwayWallDesignTex" +static const ALIGN_ASSET(2) char gForestTwistedHallwayWallDesignTex[] = dgForestTwistedHallwayWallDesignTex; + +#define dgForestTwistedHallCarpetTex "__OTR__objects/object_mori_tex/gForestTwistedHallCarpetTex" +static const ALIGN_ASSET(2) char gForestTwistedHallCarpetTex[] = dgForestTwistedHallCarpetTex; + +#define dgForestTwistedHallLadderTex "__OTR__objects/object_mori_tex/gForestTwistedHallLadderTex" +static const ALIGN_ASSET(2) char gForestTwistedHallLadderTex[] = dgForestTwistedHallLadderTex; + +#define dgForestTwistedHallBrickTex "__OTR__objects/object_mori_tex/gForestTwistedHallBrickTex" +static const ALIGN_ASSET(2) char gForestTwistedHallBrickTex[] = dgForestTwistedHallBrickTex; + +#define dgMoriHashiraGateTex "__OTR__objects/object_mori_tex/gMoriHashiraGateTex" +static const ALIGN_ASSET(2) char gMoriHashiraGateTex[] = dgMoriHashiraGateTex; \ No newline at end of file diff --git a/soh/assets/objects/object_ms/object_ms.h b/soh/assets/objects/object_ms/object_ms.h index d41f52130..f6ccd936f 100644 --- a/soh/assets/objects/object_ms/object_ms.h +++ b/soh/assets/objects/object_ms/object_ms.h @@ -1,142 +1,63 @@ #pragma once -#define dgBeanSalesmanSkel "__OTR__objects/object_ms/gBeanSalesmanSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanSkel[] = dgBeanSalesmanSkel; -#else -static const char gBeanSalesmanSkel[] __attribute__((aligned (2))) = dgBeanSalesmanSkel; -#endif - -#define dgBeanSalesmanLeftUpperArmDL "__OTR__objects/object_ms/gBeanSalesmanLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanLeftUpperArmDL[] = dgBeanSalesmanLeftUpperArmDL; -#else -static const char gBeanSalesmanLeftUpperArmDL[] __attribute__((aligned (2))) = dgBeanSalesmanLeftUpperArmDL; -#endif - -#define dgBeanSalesmanLeftForearmDL "__OTR__objects/object_ms/gBeanSalesmanLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanLeftForearmDL[] = dgBeanSalesmanLeftForearmDL; -#else -static const char gBeanSalesmanLeftForearmDL[] __attribute__((aligned (2))) = dgBeanSalesmanLeftForearmDL; -#endif - -#define dgBeanSalesmanLeftHandDL "__OTR__objects/object_ms/gBeanSalesmanLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanLeftHandDL[] = dgBeanSalesmanLeftHandDL; -#else -static const char gBeanSalesmanLeftHandDL[] __attribute__((aligned (2))) = dgBeanSalesmanLeftHandDL; -#endif - -#define dgBeanSalesmanHeadDL "__OTR__objects/object_ms/gBeanSalesmanHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanHeadDL[] = dgBeanSalesmanHeadDL; -#else -static const char gBeanSalesmanHeadDL[] __attribute__((aligned (2))) = dgBeanSalesmanHeadDL; -#endif - -#define dgBeanSalesmanMouthDL "__OTR__objects/object_ms/gBeanSalesmanMouthDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanMouthDL[] = dgBeanSalesmanMouthDL; -#else -static const char gBeanSalesmanMouthDL[] __attribute__((aligned (2))) = dgBeanSalesmanMouthDL; -#endif - -#define dgBeanSalesmanBodyDL "__OTR__objects/object_ms/gBeanSalesmanBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanBodyDL[] = dgBeanSalesmanBodyDL; -#else -static const char gBeanSalesmanBodyDL[] __attribute__((aligned (2))) = dgBeanSalesmanBodyDL; -#endif - -#define dgBeanSalesmanBeanbagDL "__OTR__objects/object_ms/gBeanSalesmanBeanbagDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanBeanbagDL[] = dgBeanSalesmanBeanbagDL; -#else -static const char gBeanSalesmanBeanbagDL[] __attribute__((aligned (2))) = dgBeanSalesmanBeanbagDL; -#endif - -#define dgBeanSalesmanTLUT "__OTR__objects/object_ms/gBeanSalesmanTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanTLUT[] = dgBeanSalesmanTLUT; -#else -static const char gBeanSalesmanTLUT[] __attribute__((aligned (2))) = dgBeanSalesmanTLUT; -#endif - -#define dgBeanSalesmanBackOfHandTex "__OTR__objects/object_ms/gBeanSalesmanBackOfHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanBackOfHandTex[] = dgBeanSalesmanBackOfHandTex; -#else -static const char gBeanSalesmanBackOfHandTex[] __attribute__((aligned (2))) = dgBeanSalesmanBackOfHandTex; -#endif - -#define dgBeanSalesmanTattooTex "__OTR__objects/object_ms/gBeanSalesmanTattooTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanTattooTex[] = dgBeanSalesmanTattooTex; -#else -static const char gBeanSalesmanTattooTex[] __attribute__((aligned (2))) = dgBeanSalesmanTattooTex; -#endif - -#define dgBeanSalesmanMouthTex "__OTR__objects/object_ms/gBeanSalesmanMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanMouthTex[] = dgBeanSalesmanMouthTex; -#else -static const char gBeanSalesmanMouthTex[] __attribute__((aligned (2))) = dgBeanSalesmanMouthTex; -#endif - -#define dgBeanSalesmanEarTex "__OTR__objects/object_ms/gBeanSalesmanEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanEarTex[] = dgBeanSalesmanEarTex; -#else -static const char gBeanSalesmanEarTex[] __attribute__((aligned (2))) = dgBeanSalesmanEarTex; -#endif - -#define dgBeanSalesmanNoseTex "__OTR__objects/object_ms/gBeanSalesmanNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanNoseTex[] = dgBeanSalesmanNoseTex; -#else -static const char gBeanSalesmanNoseTex[] __attribute__((aligned (2))) = dgBeanSalesmanNoseTex; -#endif - -#define dgBeanSalesmanEyeTex "__OTR__objects/object_ms/gBeanSalesmanEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanEyeTex[] = dgBeanSalesmanEyeTex; -#else -static const char gBeanSalesmanEyeTex[] __attribute__((aligned (2))) = dgBeanSalesmanEyeTex; -#endif - -#define dgBeanSalesmanPantsTex "__OTR__objects/object_ms/gBeanSalesmanPantsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanPantsTex[] = dgBeanSalesmanPantsTex; -#else -static const char gBeanSalesmanPantsTex[] __attribute__((aligned (2))) = dgBeanSalesmanPantsTex; -#endif - -#define dgBeanSalesmanShoeTex "__OTR__objects/object_ms/gBeanSalesmanShoeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanShoeTex[] = dgBeanSalesmanShoeTex; -#else -static const char gBeanSalesmanShoeTex[] __attribute__((aligned (2))) = dgBeanSalesmanShoeTex; -#endif - -#define dgBeanSalesmanSkinGradientTex "__OTR__objects/object_ms/gBeanSalesmanSkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanSkinGradientTex[] = dgBeanSalesmanSkinGradientTex; -#else -static const char gBeanSalesmanSkinGradientTex[] __attribute__((aligned (2))) = dgBeanSalesmanSkinGradientTex; -#endif - -#define dgBeanSalesmanBeanbagTex "__OTR__objects/object_ms/gBeanSalesmanBeanbagTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanBeanbagTex[] = dgBeanSalesmanBeanbagTex; -#else -static const char gBeanSalesmanBeanbagTex[] __attribute__((aligned (2))) = dgBeanSalesmanBeanbagTex; -#endif - -#define dgBeanSalesmanEatingAnim "__OTR__objects/object_ms/gBeanSalesmanEatingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeanSalesmanEatingAnim[] = dgBeanSalesmanEatingAnim; -#else -static const char gBeanSalesmanEatingAnim[] __attribute__((aligned (2))) = dgBeanSalesmanEatingAnim; -#endif - +#include "align_asset_macro.h" + +#define dgBeanSalesmanSkel "__OTR__objects/object_ms/gBeanSalesmanSkel" +static const ALIGN_ASSET(2) char gBeanSalesmanSkel[] = dgBeanSalesmanSkel; + +#define dgBeanSalesmanLeftUpperArmDL "__OTR__objects/object_ms/gBeanSalesmanLeftUpperArmDL" +static const ALIGN_ASSET(2) char gBeanSalesmanLeftUpperArmDL[] = dgBeanSalesmanLeftUpperArmDL; + +#define dgBeanSalesmanLeftForearmDL "__OTR__objects/object_ms/gBeanSalesmanLeftForearmDL" +static const ALIGN_ASSET(2) char gBeanSalesmanLeftForearmDL[] = dgBeanSalesmanLeftForearmDL; + +#define dgBeanSalesmanLeftHandDL "__OTR__objects/object_ms/gBeanSalesmanLeftHandDL" +static const ALIGN_ASSET(2) char gBeanSalesmanLeftHandDL[] = dgBeanSalesmanLeftHandDL; + +#define dgBeanSalesmanHeadDL "__OTR__objects/object_ms/gBeanSalesmanHeadDL" +static const ALIGN_ASSET(2) char gBeanSalesmanHeadDL[] = dgBeanSalesmanHeadDL; + +#define dgBeanSalesmanMouthDL "__OTR__objects/object_ms/gBeanSalesmanMouthDL" +static const ALIGN_ASSET(2) char gBeanSalesmanMouthDL[] = dgBeanSalesmanMouthDL; + +#define dgBeanSalesmanBodyDL "__OTR__objects/object_ms/gBeanSalesmanBodyDL" +static const ALIGN_ASSET(2) char gBeanSalesmanBodyDL[] = dgBeanSalesmanBodyDL; + +#define dgBeanSalesmanBeanbagDL "__OTR__objects/object_ms/gBeanSalesmanBeanbagDL" +static const ALIGN_ASSET(2) char gBeanSalesmanBeanbagDL[] = dgBeanSalesmanBeanbagDL; + +#define dgBeanSalesmanTLUT "__OTR__objects/object_ms/gBeanSalesmanTLUT" +static const ALIGN_ASSET(2) char gBeanSalesmanTLUT[] = dgBeanSalesmanTLUT; + +#define dgBeanSalesmanBackOfHandTex "__OTR__objects/object_ms/gBeanSalesmanBackOfHandTex" +static const ALIGN_ASSET(2) char gBeanSalesmanBackOfHandTex[] = dgBeanSalesmanBackOfHandTex; + +#define dgBeanSalesmanTattooTex "__OTR__objects/object_ms/gBeanSalesmanTattooTex" +static const ALIGN_ASSET(2) char gBeanSalesmanTattooTex[] = dgBeanSalesmanTattooTex; + +#define dgBeanSalesmanMouthTex "__OTR__objects/object_ms/gBeanSalesmanMouthTex" +static const ALIGN_ASSET(2) char gBeanSalesmanMouthTex[] = dgBeanSalesmanMouthTex; + +#define dgBeanSalesmanEarTex "__OTR__objects/object_ms/gBeanSalesmanEarTex" +static const ALIGN_ASSET(2) char gBeanSalesmanEarTex[] = dgBeanSalesmanEarTex; + +#define dgBeanSalesmanNoseTex "__OTR__objects/object_ms/gBeanSalesmanNoseTex" +static const ALIGN_ASSET(2) char gBeanSalesmanNoseTex[] = dgBeanSalesmanNoseTex; + +#define dgBeanSalesmanEyeTex "__OTR__objects/object_ms/gBeanSalesmanEyeTex" +static const ALIGN_ASSET(2) char gBeanSalesmanEyeTex[] = dgBeanSalesmanEyeTex; + +#define dgBeanSalesmanPantsTex "__OTR__objects/object_ms/gBeanSalesmanPantsTex" +static const ALIGN_ASSET(2) char gBeanSalesmanPantsTex[] = dgBeanSalesmanPantsTex; + +#define dgBeanSalesmanShoeTex "__OTR__objects/object_ms/gBeanSalesmanShoeTex" +static const ALIGN_ASSET(2) char gBeanSalesmanShoeTex[] = dgBeanSalesmanShoeTex; + +#define dgBeanSalesmanSkinGradientTex "__OTR__objects/object_ms/gBeanSalesmanSkinGradientTex" +static const ALIGN_ASSET(2) char gBeanSalesmanSkinGradientTex[] = dgBeanSalesmanSkinGradientTex; + +#define dgBeanSalesmanBeanbagTex "__OTR__objects/object_ms/gBeanSalesmanBeanbagTex" +static const ALIGN_ASSET(2) char gBeanSalesmanBeanbagTex[] = dgBeanSalesmanBeanbagTex; + +#define dgBeanSalesmanEatingAnim "__OTR__objects/object_ms/gBeanSalesmanEatingAnim" +static const ALIGN_ASSET(2) char gBeanSalesmanEatingAnim[] = dgBeanSalesmanEatingAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_mu/object_mu.h b/soh/assets/objects/object_mu/object_mu.h index 93fa4e7e4..307ae6d17 100644 --- a/soh/assets/objects/object_mu/object_mu.h +++ b/soh/assets/objects/object_mu/object_mu.h @@ -1,401 +1,174 @@ #pragma once -#define dobject_mu_Anim_0003F4 "__OTR__objects/object_mu/object_mu_Anim_0003F4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Anim_0003F4[] = dobject_mu_Anim_0003F4; -#else -static const char object_mu_Anim_0003F4[] __attribute__((aligned (2))) = dobject_mu_Anim_0003F4; -#endif - -#define dobject_mu_TLUT_000410 "__OTR__objects/object_mu/object_mu_TLUT_000410" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_TLUT_000410[] = dobject_mu_TLUT_000410; -#else -static const char object_mu_TLUT_000410[] __attribute__((aligned (2))) = dobject_mu_TLUT_000410; -#endif - -#define dobject_mu_Tex_000610 "__OTR__objects/object_mu/object_mu_Tex_000610" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_000610[] = dobject_mu_Tex_000610; -#else -static const char object_mu_Tex_000610[] __attribute__((aligned (2))) = dobject_mu_Tex_000610; -#endif - -#define dobject_mu_Tex_000650 "__OTR__objects/object_mu/object_mu_Tex_000650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_000650[] = dobject_mu_Tex_000650; -#else -static const char object_mu_Tex_000650[] __attribute__((aligned (2))) = dobject_mu_Tex_000650; -#endif - -#define dobject_mu_Tex_000690 "__OTR__objects/object_mu/object_mu_Tex_000690" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_000690[] = dobject_mu_Tex_000690; -#else -static const char object_mu_Tex_000690[] __attribute__((aligned (2))) = dobject_mu_Tex_000690; -#endif - -#define dobject_mu_Tex_0006D0 "__OTR__objects/object_mu/object_mu_Tex_0006D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_0006D0[] = dobject_mu_Tex_0006D0; -#else -static const char object_mu_Tex_0006D0[] __attribute__((aligned (2))) = dobject_mu_Tex_0006D0; -#endif - -#define dobject_mu_Tex_000710 "__OTR__objects/object_mu/object_mu_Tex_000710" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_000710[] = dobject_mu_Tex_000710; -#else -static const char object_mu_Tex_000710[] __attribute__((aligned (2))) = dobject_mu_Tex_000710; -#endif - -#define dobject_mu_Tex_000790 "__OTR__objects/object_mu/object_mu_Tex_000790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_000790[] = dobject_mu_Tex_000790; -#else -static const char object_mu_Tex_000790[] __attribute__((aligned (2))) = dobject_mu_Tex_000790; -#endif - -#define dobject_mu_Tex_0007D0 "__OTR__objects/object_mu/object_mu_Tex_0007D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_0007D0[] = dobject_mu_Tex_0007D0; -#else -static const char object_mu_Tex_0007D0[] __attribute__((aligned (2))) = dobject_mu_Tex_0007D0; -#endif - -#define dobject_mu_Tex_000810 "__OTR__objects/object_mu/object_mu_Tex_000810" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_000810[] = dobject_mu_Tex_000810; -#else -static const char object_mu_Tex_000810[] __attribute__((aligned (2))) = dobject_mu_Tex_000810; -#endif - -#define dobject_mu_Tex_000850 "__OTR__objects/object_mu/object_mu_Tex_000850" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_000850[] = dobject_mu_Tex_000850; -#else -static const char object_mu_Tex_000850[] __attribute__((aligned (2))) = dobject_mu_Tex_000850; -#endif - -#define dobject_mu_Tex_000890 "__OTR__objects/object_mu/object_mu_Tex_000890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_000890[] = dobject_mu_Tex_000890; -#else -static const char object_mu_Tex_000890[] __attribute__((aligned (2))) = dobject_mu_Tex_000890; -#endif - -#define dobject_mu_DL_003110 "__OTR__objects/object_mu/object_mu_DL_003110" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_003110[] = dobject_mu_DL_003110; -#else -static const char object_mu_DL_003110[] __attribute__((aligned (2))) = dobject_mu_DL_003110; -#endif - -#define dobject_mu_DL_0035E8 "__OTR__objects/object_mu/object_mu_DL_0035E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_0035E8[] = dobject_mu_DL_0035E8; -#else -static const char object_mu_DL_0035E8[] __attribute__((aligned (2))) = dobject_mu_DL_0035E8; -#endif - -#define dobject_mu_DL_0037B0 "__OTR__objects/object_mu/object_mu_DL_0037B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_0037B0[] = dobject_mu_DL_0037B0; -#else -static const char object_mu_DL_0037B0[] __attribute__((aligned (2))) = dobject_mu_DL_0037B0; -#endif - -#define dobject_mu_DL_003B08 "__OTR__objects/object_mu/object_mu_DL_003B08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_003B08[] = dobject_mu_DL_003B08; -#else -static const char object_mu_DL_003B08[] __attribute__((aligned (2))) = dobject_mu_DL_003B08; -#endif - -#define dobject_mu_DL_003DB0 "__OTR__objects/object_mu/object_mu_DL_003DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_003DB0[] = dobject_mu_DL_003DB0; -#else -static const char object_mu_DL_003DB0[] __attribute__((aligned (2))) = dobject_mu_DL_003DB0; -#endif - -#define dobject_mu_DL_004108 "__OTR__objects/object_mu/object_mu_DL_004108" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_004108[] = dobject_mu_DL_004108; -#else -static const char object_mu_DL_004108[] __attribute__((aligned (2))) = dobject_mu_DL_004108; -#endif - -#define dobject_mu_DL_0043E0 "__OTR__objects/object_mu/object_mu_DL_0043E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_0043E0[] = dobject_mu_DL_0043E0; -#else -static const char object_mu_DL_0043E0[] __attribute__((aligned (2))) = dobject_mu_DL_0043E0; -#endif - -#define dobject_mu_DL_0044C8 "__OTR__objects/object_mu/object_mu_DL_0044C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_0044C8[] = dobject_mu_DL_0044C8; -#else -static const char object_mu_DL_0044C8[] __attribute__((aligned (2))) = dobject_mu_DL_0044C8; -#endif - -#define dobject_mu_DL_0045F0 "__OTR__objects/object_mu/object_mu_DL_0045F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_0045F0[] = dobject_mu_DL_0045F0; -#else -static const char object_mu_DL_0045F0[] __attribute__((aligned (2))) = dobject_mu_DL_0045F0; -#endif - -#define dobject_mu_DL_004798 "__OTR__objects/object_mu/object_mu_DL_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_004798[] = dobject_mu_DL_004798; -#else -static const char object_mu_DL_004798[] __attribute__((aligned (2))) = dobject_mu_DL_004798; -#endif - -#define dobject_mu_DL_004958 "__OTR__objects/object_mu/object_mu_DL_004958" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_004958[] = dobject_mu_DL_004958; -#else -static const char object_mu_DL_004958[] __attribute__((aligned (2))) = dobject_mu_DL_004958; -#endif - -#define dobject_mu_DL_004C68 "__OTR__objects/object_mu/object_mu_DL_004C68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_004C68[] = dobject_mu_DL_004C68; -#else -static const char object_mu_DL_004C68[] __attribute__((aligned (2))) = dobject_mu_DL_004C68; -#endif - -#define dobject_mu_DL_004D80 "__OTR__objects/object_mu/object_mu_DL_004D80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_004D80[] = dobject_mu_DL_004D80; -#else -static const char object_mu_DL_004D80[] __attribute__((aligned (2))) = dobject_mu_DL_004D80; -#endif - -#define dobject_mu_Skel_004F70 "__OTR__objects/object_mu/object_mu_Skel_004F70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Skel_004F70[] = dobject_mu_Skel_004F70; -#else -static const char object_mu_Skel_004F70[] __attribute__((aligned (2))) = dobject_mu_Skel_004F70; -#endif - -#define dgDancingCoupleAnim "__OTR__objects/object_mu/gDancingCoupleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDancingCoupleAnim[] = dgDancingCoupleAnim; -#else -static const char gDancingCoupleAnim[] __attribute__((aligned (2))) = dgDancingCoupleAnim; -#endif - -#define dobject_mu_TLUT_005050 "__OTR__objects/object_mu/object_mu_TLUT_005050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_TLUT_005050[] = dobject_mu_TLUT_005050; -#else -static const char object_mu_TLUT_005050[] __attribute__((aligned (2))) = dobject_mu_TLUT_005050; -#endif - -#define dobject_mu_Tex_005250 "__OTR__objects/object_mu/object_mu_Tex_005250" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005250[] = dobject_mu_Tex_005250; -#else -static const char object_mu_Tex_005250[] __attribute__((aligned (2))) = dobject_mu_Tex_005250; -#endif - -#define dobject_mu_Tex_005350 "__OTR__objects/object_mu/object_mu_Tex_005350" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005350[] = dobject_mu_Tex_005350; -#else -static const char object_mu_Tex_005350[] __attribute__((aligned (2))) = dobject_mu_Tex_005350; -#endif - -#define dobject_mu_Tex_005450 "__OTR__objects/object_mu/object_mu_Tex_005450" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005450[] = dobject_mu_Tex_005450; -#else -static const char object_mu_Tex_005450[] __attribute__((aligned (2))) = dobject_mu_Tex_005450; -#endif - -#define dobject_mu_Tex_005490 "__OTR__objects/object_mu/object_mu_Tex_005490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005490[] = dobject_mu_Tex_005490; -#else -static const char object_mu_Tex_005490[] __attribute__((aligned (2))) = dobject_mu_Tex_005490; -#endif - -#define dobject_mu_Tex_0054D0 "__OTR__objects/object_mu/object_mu_Tex_0054D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_0054D0[] = dobject_mu_Tex_0054D0; -#else -static const char object_mu_Tex_0054D0[] __attribute__((aligned (2))) = dobject_mu_Tex_0054D0; -#endif - -#define dobject_mu_Tex_0055D0 "__OTR__objects/object_mu/object_mu_Tex_0055D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_0055D0[] = dobject_mu_Tex_0055D0; -#else -static const char object_mu_Tex_0055D0[] __attribute__((aligned (2))) = dobject_mu_Tex_0055D0; -#endif - -#define dobject_mu_Tex_005610 "__OTR__objects/object_mu/object_mu_Tex_005610" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005610[] = dobject_mu_Tex_005610; -#else -static const char object_mu_Tex_005610[] __attribute__((aligned (2))) = dobject_mu_Tex_005610; -#endif - -#define dobject_mu_Tex_005810 "__OTR__objects/object_mu/object_mu_Tex_005810" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005810[] = dobject_mu_Tex_005810; -#else -static const char object_mu_Tex_005810[] __attribute__((aligned (2))) = dobject_mu_Tex_005810; -#endif - -#define dobject_mu_Tex_005C10 "__OTR__objects/object_mu/object_mu_Tex_005C10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005C10[] = dobject_mu_Tex_005C10; -#else -static const char object_mu_Tex_005C10[] __attribute__((aligned (2))) = dobject_mu_Tex_005C10; -#endif - -#define dobject_mu_Tex_005C50 "__OTR__objects/object_mu/object_mu_Tex_005C50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005C50[] = dobject_mu_Tex_005C50; -#else -static const char object_mu_Tex_005C50[] __attribute__((aligned (2))) = dobject_mu_Tex_005C50; -#endif - -#define dobject_mu_Tex_005CD0 "__OTR__objects/object_mu/object_mu_Tex_005CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_Tex_005CD0[] = dobject_mu_Tex_005CD0; -#else -static const char object_mu_Tex_005CD0[] __attribute__((aligned (2))) = dobject_mu_Tex_005CD0; -#endif - -#define dobject_mu_DL_008FD0 "__OTR__objects/object_mu/object_mu_DL_008FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_008FD0[] = dobject_mu_DL_008FD0; -#else -static const char object_mu_DL_008FD0[] __attribute__((aligned (2))) = dobject_mu_DL_008FD0; -#endif - -#define dobject_mu_DL_009328 "__OTR__objects/object_mu/object_mu_DL_009328" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_009328[] = dobject_mu_DL_009328; -#else -static const char object_mu_DL_009328[] __attribute__((aligned (2))) = dobject_mu_DL_009328; -#endif - -#define dobject_mu_DL_009828 "__OTR__objects/object_mu/object_mu_DL_009828" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_009828[] = dobject_mu_DL_009828; -#else -static const char object_mu_DL_009828[] __attribute__((aligned (2))) = dobject_mu_DL_009828; -#endif - -#define dobject_mu_DL_009970 "__OTR__objects/object_mu/object_mu_DL_009970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_009970[] = dobject_mu_DL_009970; -#else -static const char object_mu_DL_009970[] __attribute__((aligned (2))) = dobject_mu_DL_009970; -#endif - -#define dobject_mu_DL_009A70 "__OTR__objects/object_mu/object_mu_DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_009A70[] = dobject_mu_DL_009A70; -#else -static const char object_mu_DL_009A70[] __attribute__((aligned (2))) = dobject_mu_DL_009A70; -#endif - -#define dobject_mu_DL_009B70 "__OTR__objects/object_mu/object_mu_DL_009B70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_009B70[] = dobject_mu_DL_009B70; -#else -static const char object_mu_DL_009B70[] __attribute__((aligned (2))) = dobject_mu_DL_009B70; -#endif - -#define dobject_mu_DL_009CB8 "__OTR__objects/object_mu/object_mu_DL_009CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_009CB8[] = dobject_mu_DL_009CB8; -#else -static const char object_mu_DL_009CB8[] __attribute__((aligned (2))) = dobject_mu_DL_009CB8; -#endif - -#define dobject_mu_DL_009DB8 "__OTR__objects/object_mu/object_mu_DL_009DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_009DB8[] = dobject_mu_DL_009DB8; -#else -static const char object_mu_DL_009DB8[] __attribute__((aligned (2))) = dobject_mu_DL_009DB8; -#endif - -#define dobject_mu_DL_009EB8 "__OTR__objects/object_mu/object_mu_DL_009EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_009EB8[] = dobject_mu_DL_009EB8; -#else -static const char object_mu_DL_009EB8[] __attribute__((aligned (2))) = dobject_mu_DL_009EB8; -#endif - -#define dobject_mu_DL_00A028 "__OTR__objects/object_mu/object_mu_DL_00A028" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_00A028[] = dobject_mu_DL_00A028; -#else -static const char object_mu_DL_00A028[] __attribute__((aligned (2))) = dobject_mu_DL_00A028; -#endif - -#define dobject_mu_DL_00A170 "__OTR__objects/object_mu/object_mu_DL_00A170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_00A170[] = dobject_mu_DL_00A170; -#else -static const char object_mu_DL_00A170[] __attribute__((aligned (2))) = dobject_mu_DL_00A170; -#endif - -#define dobject_mu_DL_00A670 "__OTR__objects/object_mu/object_mu_DL_00A670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_00A670[] = dobject_mu_DL_00A670; -#else -static const char object_mu_DL_00A670[] __attribute__((aligned (2))) = dobject_mu_DL_00A670; -#endif - -#define dobject_mu_DL_00A770 "__OTR__objects/object_mu/object_mu_DL_00A770" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_00A770[] = dobject_mu_DL_00A770; -#else -static const char object_mu_DL_00A770[] __attribute__((aligned (2))) = dobject_mu_DL_00A770; -#endif - -#define dobject_mu_DL_00A870 "__OTR__objects/object_mu/object_mu_DL_00A870" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_00A870[] = dobject_mu_DL_00A870; -#else -static const char object_mu_DL_00A870[] __attribute__((aligned (2))) = dobject_mu_DL_00A870; -#endif - -#define dobject_mu_DL_00A9B8 "__OTR__objects/object_mu/object_mu_DL_00A9B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_00A9B8[] = dobject_mu_DL_00A9B8; -#else -static const char object_mu_DL_00A9B8[] __attribute__((aligned (2))) = dobject_mu_DL_00A9B8; -#endif - -#define dobject_mu_DL_00AAB8 "__OTR__objects/object_mu/object_mu_DL_00AAB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_00AAB8[] = dobject_mu_DL_00AAB8; -#else -static const char object_mu_DL_00AAB8[] __attribute__((aligned (2))) = dobject_mu_DL_00AAB8; -#endif - -#define dobject_mu_DL_00ABB8 "__OTR__objects/object_mu/object_mu_DL_00ABB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_mu_DL_00ABB8[] = dobject_mu_DL_00ABB8; -#else -static const char object_mu_DL_00ABB8[] __attribute__((aligned (2))) = dobject_mu_DL_00ABB8; -#endif - -#define dgDancingCoupleSkel "__OTR__objects/object_mu/gDancingCoupleSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDancingCoupleSkel[] = dgDancingCoupleSkel; -#else -static const char gDancingCoupleSkel[] __attribute__((aligned (2))) = dgDancingCoupleSkel; -#endif - +#include "align_asset_macro.h" + +#define dobject_mu_Anim_0003F4 "__OTR__objects/object_mu/object_mu_Anim_0003F4" +static const ALIGN_ASSET(2) char object_mu_Anim_0003F4[] = dobject_mu_Anim_0003F4; + +#define dobject_mu_TLUT_000410 "__OTR__objects/object_mu/object_mu_TLUT_000410" +static const ALIGN_ASSET(2) char object_mu_TLUT_000410[] = dobject_mu_TLUT_000410; + +#define dobject_mu_Tex_000610 "__OTR__objects/object_mu/object_mu_Tex_000610" +static const ALIGN_ASSET(2) char object_mu_Tex_000610[] = dobject_mu_Tex_000610; + +#define dobject_mu_Tex_000650 "__OTR__objects/object_mu/object_mu_Tex_000650" +static const ALIGN_ASSET(2) char object_mu_Tex_000650[] = dobject_mu_Tex_000650; + +#define dobject_mu_Tex_000690 "__OTR__objects/object_mu/object_mu_Tex_000690" +static const ALIGN_ASSET(2) char object_mu_Tex_000690[] = dobject_mu_Tex_000690; + +#define dobject_mu_Tex_0006D0 "__OTR__objects/object_mu/object_mu_Tex_0006D0" +static const ALIGN_ASSET(2) char object_mu_Tex_0006D0[] = dobject_mu_Tex_0006D0; + +#define dobject_mu_Tex_000710 "__OTR__objects/object_mu/object_mu_Tex_000710" +static const ALIGN_ASSET(2) char object_mu_Tex_000710[] = dobject_mu_Tex_000710; + +#define dobject_mu_Tex_000790 "__OTR__objects/object_mu/object_mu_Tex_000790" +static const ALIGN_ASSET(2) char object_mu_Tex_000790[] = dobject_mu_Tex_000790; + +#define dobject_mu_Tex_0007D0 "__OTR__objects/object_mu/object_mu_Tex_0007D0" +static const ALIGN_ASSET(2) char object_mu_Tex_0007D0[] = dobject_mu_Tex_0007D0; + +#define dobject_mu_Tex_000810 "__OTR__objects/object_mu/object_mu_Tex_000810" +static const ALIGN_ASSET(2) char object_mu_Tex_000810[] = dobject_mu_Tex_000810; + +#define dobject_mu_Tex_000850 "__OTR__objects/object_mu/object_mu_Tex_000850" +static const ALIGN_ASSET(2) char object_mu_Tex_000850[] = dobject_mu_Tex_000850; + +#define dobject_mu_Tex_000890 "__OTR__objects/object_mu/object_mu_Tex_000890" +static const ALIGN_ASSET(2) char object_mu_Tex_000890[] = dobject_mu_Tex_000890; + +#define dobject_mu_DL_003110 "__OTR__objects/object_mu/object_mu_DL_003110" +static const ALIGN_ASSET(2) char object_mu_DL_003110[] = dobject_mu_DL_003110; + +#define dobject_mu_DL_0035E8 "__OTR__objects/object_mu/object_mu_DL_0035E8" +static const ALIGN_ASSET(2) char object_mu_DL_0035E8[] = dobject_mu_DL_0035E8; + +#define dobject_mu_DL_0037B0 "__OTR__objects/object_mu/object_mu_DL_0037B0" +static const ALIGN_ASSET(2) char object_mu_DL_0037B0[] = dobject_mu_DL_0037B0; + +#define dobject_mu_DL_003B08 "__OTR__objects/object_mu/object_mu_DL_003B08" +static const ALIGN_ASSET(2) char object_mu_DL_003B08[] = dobject_mu_DL_003B08; + +#define dobject_mu_DL_003DB0 "__OTR__objects/object_mu/object_mu_DL_003DB0" +static const ALIGN_ASSET(2) char object_mu_DL_003DB0[] = dobject_mu_DL_003DB0; + +#define dobject_mu_DL_004108 "__OTR__objects/object_mu/object_mu_DL_004108" +static const ALIGN_ASSET(2) char object_mu_DL_004108[] = dobject_mu_DL_004108; + +#define dobject_mu_DL_0043E0 "__OTR__objects/object_mu/object_mu_DL_0043E0" +static const ALIGN_ASSET(2) char object_mu_DL_0043E0[] = dobject_mu_DL_0043E0; + +#define dobject_mu_DL_0044C8 "__OTR__objects/object_mu/object_mu_DL_0044C8" +static const ALIGN_ASSET(2) char object_mu_DL_0044C8[] = dobject_mu_DL_0044C8; + +#define dobject_mu_DL_0045F0 "__OTR__objects/object_mu/object_mu_DL_0045F0" +static const ALIGN_ASSET(2) char object_mu_DL_0045F0[] = dobject_mu_DL_0045F0; + +#define dobject_mu_DL_004798 "__OTR__objects/object_mu/object_mu_DL_004798" +static const ALIGN_ASSET(2) char object_mu_DL_004798[] = dobject_mu_DL_004798; + +#define dobject_mu_DL_004958 "__OTR__objects/object_mu/object_mu_DL_004958" +static const ALIGN_ASSET(2) char object_mu_DL_004958[] = dobject_mu_DL_004958; + +#define dobject_mu_DL_004C68 "__OTR__objects/object_mu/object_mu_DL_004C68" +static const ALIGN_ASSET(2) char object_mu_DL_004C68[] = dobject_mu_DL_004C68; + +#define dobject_mu_DL_004D80 "__OTR__objects/object_mu/object_mu_DL_004D80" +static const ALIGN_ASSET(2) char object_mu_DL_004D80[] = dobject_mu_DL_004D80; + +#define dobject_mu_Skel_004F70 "__OTR__objects/object_mu/object_mu_Skel_004F70" +static const ALIGN_ASSET(2) char object_mu_Skel_004F70[] = dobject_mu_Skel_004F70; + +#define dgDancingCoupleAnim "__OTR__objects/object_mu/gDancingCoupleAnim" +static const ALIGN_ASSET(2) char gDancingCoupleAnim[] = dgDancingCoupleAnim; + +#define dobject_mu_TLUT_005050 "__OTR__objects/object_mu/object_mu_TLUT_005050" +static const ALIGN_ASSET(2) char object_mu_TLUT_005050[] = dobject_mu_TLUT_005050; + +#define dobject_mu_Tex_005250 "__OTR__objects/object_mu/object_mu_Tex_005250" +static const ALIGN_ASSET(2) char object_mu_Tex_005250[] = dobject_mu_Tex_005250; + +#define dobject_mu_Tex_005350 "__OTR__objects/object_mu/object_mu_Tex_005350" +static const ALIGN_ASSET(2) char object_mu_Tex_005350[] = dobject_mu_Tex_005350; + +#define dobject_mu_Tex_005450 "__OTR__objects/object_mu/object_mu_Tex_005450" +static const ALIGN_ASSET(2) char object_mu_Tex_005450[] = dobject_mu_Tex_005450; + +#define dobject_mu_Tex_005490 "__OTR__objects/object_mu/object_mu_Tex_005490" +static const ALIGN_ASSET(2) char object_mu_Tex_005490[] = dobject_mu_Tex_005490; + +#define dobject_mu_Tex_0054D0 "__OTR__objects/object_mu/object_mu_Tex_0054D0" +static const ALIGN_ASSET(2) char object_mu_Tex_0054D0[] = dobject_mu_Tex_0054D0; + +#define dobject_mu_Tex_0055D0 "__OTR__objects/object_mu/object_mu_Tex_0055D0" +static const ALIGN_ASSET(2) char object_mu_Tex_0055D0[] = dobject_mu_Tex_0055D0; + +#define dobject_mu_Tex_005610 "__OTR__objects/object_mu/object_mu_Tex_005610" +static const ALIGN_ASSET(2) char object_mu_Tex_005610[] = dobject_mu_Tex_005610; + +#define dobject_mu_Tex_005810 "__OTR__objects/object_mu/object_mu_Tex_005810" +static const ALIGN_ASSET(2) char object_mu_Tex_005810[] = dobject_mu_Tex_005810; + +#define dobject_mu_Tex_005C10 "__OTR__objects/object_mu/object_mu_Tex_005C10" +static const ALIGN_ASSET(2) char object_mu_Tex_005C10[] = dobject_mu_Tex_005C10; + +#define dobject_mu_Tex_005C50 "__OTR__objects/object_mu/object_mu_Tex_005C50" +static const ALIGN_ASSET(2) char object_mu_Tex_005C50[] = dobject_mu_Tex_005C50; + +#define dobject_mu_Tex_005CD0 "__OTR__objects/object_mu/object_mu_Tex_005CD0" +static const ALIGN_ASSET(2) char object_mu_Tex_005CD0[] = dobject_mu_Tex_005CD0; + +#define dobject_mu_DL_008FD0 "__OTR__objects/object_mu/object_mu_DL_008FD0" +static const ALIGN_ASSET(2) char object_mu_DL_008FD0[] = dobject_mu_DL_008FD0; + +#define dobject_mu_DL_009328 "__OTR__objects/object_mu/object_mu_DL_009328" +static const ALIGN_ASSET(2) char object_mu_DL_009328[] = dobject_mu_DL_009328; + +#define dobject_mu_DL_009828 "__OTR__objects/object_mu/object_mu_DL_009828" +static const ALIGN_ASSET(2) char object_mu_DL_009828[] = dobject_mu_DL_009828; + +#define dobject_mu_DL_009970 "__OTR__objects/object_mu/object_mu_DL_009970" +static const ALIGN_ASSET(2) char object_mu_DL_009970[] = dobject_mu_DL_009970; + +#define dobject_mu_DL_009A70 "__OTR__objects/object_mu/object_mu_DL_009A70" +static const ALIGN_ASSET(2) char object_mu_DL_009A70[] = dobject_mu_DL_009A70; + +#define dobject_mu_DL_009B70 "__OTR__objects/object_mu/object_mu_DL_009B70" +static const ALIGN_ASSET(2) char object_mu_DL_009B70[] = dobject_mu_DL_009B70; + +#define dobject_mu_DL_009CB8 "__OTR__objects/object_mu/object_mu_DL_009CB8" +static const ALIGN_ASSET(2) char object_mu_DL_009CB8[] = dobject_mu_DL_009CB8; + +#define dobject_mu_DL_009DB8 "__OTR__objects/object_mu/object_mu_DL_009DB8" +static const ALIGN_ASSET(2) char object_mu_DL_009DB8[] = dobject_mu_DL_009DB8; + +#define dobject_mu_DL_009EB8 "__OTR__objects/object_mu/object_mu_DL_009EB8" +static const ALIGN_ASSET(2) char object_mu_DL_009EB8[] = dobject_mu_DL_009EB8; + +#define dobject_mu_DL_00A028 "__OTR__objects/object_mu/object_mu_DL_00A028" +static const ALIGN_ASSET(2) char object_mu_DL_00A028[] = dobject_mu_DL_00A028; + +#define dobject_mu_DL_00A170 "__OTR__objects/object_mu/object_mu_DL_00A170" +static const ALIGN_ASSET(2) char object_mu_DL_00A170[] = dobject_mu_DL_00A170; + +#define dobject_mu_DL_00A670 "__OTR__objects/object_mu/object_mu_DL_00A670" +static const ALIGN_ASSET(2) char object_mu_DL_00A670[] = dobject_mu_DL_00A670; + +#define dobject_mu_DL_00A770 "__OTR__objects/object_mu/object_mu_DL_00A770" +static const ALIGN_ASSET(2) char object_mu_DL_00A770[] = dobject_mu_DL_00A770; + +#define dobject_mu_DL_00A870 "__OTR__objects/object_mu/object_mu_DL_00A870" +static const ALIGN_ASSET(2) char object_mu_DL_00A870[] = dobject_mu_DL_00A870; + +#define dobject_mu_DL_00A9B8 "__OTR__objects/object_mu/object_mu_DL_00A9B8" +static const ALIGN_ASSET(2) char object_mu_DL_00A9B8[] = dobject_mu_DL_00A9B8; + +#define dobject_mu_DL_00AAB8 "__OTR__objects/object_mu/object_mu_DL_00AAB8" +static const ALIGN_ASSET(2) char object_mu_DL_00AAB8[] = dobject_mu_DL_00AAB8; + +#define dobject_mu_DL_00ABB8 "__OTR__objects/object_mu/object_mu_DL_00ABB8" +static const ALIGN_ASSET(2) char object_mu_DL_00ABB8[] = dobject_mu_DL_00ABB8; + +#define dgDancingCoupleSkel "__OTR__objects/object_mu/gDancingCoupleSkel" +static const ALIGN_ASSET(2) char gDancingCoupleSkel[] = dgDancingCoupleSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_nb/object_nb.h b/soh/assets/objects/object_nb/object_nb.h index 2614c7513..f960dcc27 100644 --- a/soh/assets/objects/object_nb/object_nb.h +++ b/soh/assets/objects/object_nb/object_nb.h @@ -1,548 +1,237 @@ #pragma once -#define dgNabooruSkel "__OTR__objects/object_nb/gNabooruSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruSkel[] = dgNabooruSkel; -#else -static const char gNabooruSkel[] __attribute__((aligned (2))) = dgNabooruSkel; -#endif - -#define dgNabooruHeadMouthOpenDL "__OTR__objects/object_nb/gNabooruHeadMouthOpenDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruHeadMouthOpenDL[] = dgNabooruHeadMouthOpenDL; -#else -static const char gNabooruHeadMouthOpenDL[] __attribute__((aligned (2))) = dgNabooruHeadMouthOpenDL; -#endif - -#define dgNabooruLeftThighDL "__OTR__objects/object_nb/gNabooruLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruLeftThighDL[] = dgNabooruLeftThighDL; -#else -static const char gNabooruLeftThighDL[] __attribute__((aligned (2))) = dgNabooruLeftThighDL; -#endif - -#define dgNabooruLeftShinDL "__OTR__objects/object_nb/gNabooruLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruLeftShinDL[] = dgNabooruLeftShinDL; -#else -static const char gNabooruLeftShinDL[] __attribute__((aligned (2))) = dgNabooruLeftShinDL; -#endif - -#define dgNabooruLeftFootDL "__OTR__objects/object_nb/gNabooruLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruLeftFootDL[] = dgNabooruLeftFootDL; -#else -static const char gNabooruLeftFootDL[] __attribute__((aligned (2))) = dgNabooruLeftFootDL; -#endif - -#define dgNabooruRightThighDL "__OTR__objects/object_nb/gNabooruRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruRightThighDL[] = dgNabooruRightThighDL; -#else -static const char gNabooruRightThighDL[] __attribute__((aligned (2))) = dgNabooruRightThighDL; -#endif - -#define dgNabooruRightShinDL "__OTR__objects/object_nb/gNabooruRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruRightShinDL[] = dgNabooruRightShinDL; -#else -static const char gNabooruRightShinDL[] __attribute__((aligned (2))) = dgNabooruRightShinDL; -#endif - -#define dgNabooruRightFootDL "__OTR__objects/object_nb/gNabooruRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruRightFootDL[] = dgNabooruRightFootDL; -#else -static const char gNabooruRightFootDL[] __attribute__((aligned (2))) = dgNabooruRightFootDL; -#endif - -#define dgNabooruTorsoDL "__OTR__objects/object_nb/gNabooruTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruTorsoDL[] = dgNabooruTorsoDL; -#else -static const char gNabooruTorsoDL[] __attribute__((aligned (2))) = dgNabooruTorsoDL; -#endif - -#define dgNabooruLeftUpperArmDL "__OTR__objects/object_nb/gNabooruLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruLeftUpperArmDL[] = dgNabooruLeftUpperArmDL; -#else -static const char gNabooruLeftUpperArmDL[] __attribute__((aligned (2))) = dgNabooruLeftUpperArmDL; -#endif - -#define dgNabooruLeftForearmDL "__OTR__objects/object_nb/gNabooruLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruLeftForearmDL[] = dgNabooruLeftForearmDL; -#else -static const char gNabooruLeftForearmDL[] __attribute__((aligned (2))) = dgNabooruLeftForearmDL; -#endif - -#define dgNabooruLeftHandDL "__OTR__objects/object_nb/gNabooruLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruLeftHandDL[] = dgNabooruLeftHandDL; -#else -static const char gNabooruLeftHandDL[] __attribute__((aligned (2))) = dgNabooruLeftHandDL; -#endif - -#define dgNabooruRightUpperArmDL "__OTR__objects/object_nb/gNabooruRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruRightUpperArmDL[] = dgNabooruRightUpperArmDL; -#else -static const char gNabooruRightUpperArmDL[] __attribute__((aligned (2))) = dgNabooruRightUpperArmDL; -#endif - -#define dgNabooruRightForearmDL "__OTR__objects/object_nb/gNabooruRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruRightForearmDL[] = dgNabooruRightForearmDL; -#else -static const char gNabooruRightForearmDL[] __attribute__((aligned (2))) = dgNabooruRightForearmDL; -#endif - -#define dgNabooruRightHandDL "__OTR__objects/object_nb/gNabooruRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruRightHandDL[] = dgNabooruRightHandDL; -#else -static const char gNabooruRightHandDL[] __attribute__((aligned (2))) = dgNabooruRightHandDL; -#endif - -#define dgNabooruHeadMouthClosedDL "__OTR__objects/object_nb/gNabooruHeadMouthClosedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruHeadMouthClosedDL[] = dgNabooruHeadMouthClosedDL; -#else -static const char gNabooruHeadMouthClosedDL[] __attribute__((aligned (2))) = dgNabooruHeadMouthClosedDL; -#endif - -#define dgNabooruBlankDL "__OTR__objects/object_nb/gNabooruBlankDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruBlankDL[] = dgNabooruBlankDL; -#else -static const char gNabooruBlankDL[] __attribute__((aligned (2))) = dgNabooruBlankDL; -#endif - -#define dgNabooruPonytailDL "__OTR__objects/object_nb/gNabooruPonytailDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruPonytailDL[] = dgNabooruPonytailDL; -#else -static const char gNabooruPonytailDL[] __attribute__((aligned (2))) = dgNabooruPonytailDL; -#endif - -#define dgNabooruWaistDL "__OTR__objects/object_nb/gNabooruWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruWaistDL[] = dgNabooruWaistDL; -#else -static const char gNabooruWaistDL[] __attribute__((aligned (2))) = dgNabooruWaistDL; -#endif - -#define dgNabooru1TLUT "__OTR__objects/object_nb/gNabooru1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooru1TLUT[] = dgNabooru1TLUT; -#else -static const char gNabooru1TLUT[] __attribute__((aligned (2))) = dgNabooru1TLUT; -#endif - -#define dgNabooru2TLUT "__OTR__objects/object_nb/gNabooru2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooru2TLUT[] = dgNabooru2TLUT; -#else -static const char gNabooru2TLUT[] __attribute__((aligned (2))) = dgNabooru2TLUT; -#endif - -#define dgNabooru3TLUT "__OTR__objects/object_nb/gNabooru3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooru3TLUT[] = dgNabooru3TLUT; -#else -static const char gNabooru3TLUT[] __attribute__((aligned (2))) = dgNabooru3TLUT; -#endif - -#define dgNabooruClothesButtonsTex "__OTR__objects/object_nb/gNabooruClothesButtonsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruClothesButtonsTex[] = dgNabooruClothesButtonsTex; -#else -static const char gNabooruClothesButtonsTex[] __attribute__((aligned (2))) = dgNabooruClothesButtonsTex; -#endif - -#define dgNabooruSkinGradient1Tex "__OTR__objects/object_nb/gNabooruSkinGradient1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruSkinGradient1Tex[] = dgNabooruSkinGradient1Tex; -#else -static const char gNabooruSkinGradient1Tex[] __attribute__((aligned (2))) = dgNabooruSkinGradient1Tex; -#endif - -#define dgNabooruNavelTex "__OTR__objects/object_nb/gNabooruNavelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruNavelTex[] = dgNabooruNavelTex; -#else -static const char gNabooruNavelTex[] __attribute__((aligned (2))) = dgNabooruNavelTex; -#endif - -#define dgNabooruPendantJewelTex "__OTR__objects/object_nb/gNabooruPendantJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruPendantJewelTex[] = dgNabooruPendantJewelTex; -#else -static const char gNabooruPendantJewelTex[] __attribute__((aligned (2))) = dgNabooruPendantJewelTex; -#endif - -#define dgNabooruCleavageTex "__OTR__objects/object_nb/gNabooruCleavageTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruCleavageTex[] = dgNabooruCleavageTex; -#else -static const char gNabooruCleavageTex[] __attribute__((aligned (2))) = dgNabooruCleavageTex; -#endif - -#define dgNabooruTopFabricPatternTex "__OTR__objects/object_nb/gNabooruTopFabricPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruTopFabricPatternTex[] = dgNabooruTopFabricPatternTex; -#else -static const char gNabooruTopFabricPatternTex[] __attribute__((aligned (2))) = dgNabooruTopFabricPatternTex; -#endif - -#define dgNabooruAnkleBraceletTex "__OTR__objects/object_nb/gNabooruAnkleBraceletTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruAnkleBraceletTex[] = dgNabooruAnkleBraceletTex; -#else -static const char gNabooruAnkleBraceletTex[] __attribute__((aligned (2))) = dgNabooruAnkleBraceletTex; -#endif - -#define dgNabooruTrousersShadowTex "__OTR__objects/object_nb/gNabooruTrousersShadowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruTrousersShadowTex[] = dgNabooruTrousersShadowTex; -#else -static const char gNabooruTrousersShadowTex[] __attribute__((aligned (2))) = dgNabooruTrousersShadowTex; -#endif - -#define dgNabooruTrousersFabricTex "__OTR__objects/object_nb/gNabooruTrousersFabricTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruTrousersFabricTex[] = dgNabooruTrousersFabricTex; -#else -static const char gNabooruTrousersFabricTex[] __attribute__((aligned (2))) = dgNabooruTrousersFabricTex; -#endif - -#define dgNabooruTrouserCuffPatternTex "__OTR__objects/object_nb/gNabooruTrouserCuffPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruTrouserCuffPatternTex[] = dgNabooruTrouserCuffPatternTex; -#else -static const char gNabooruTrouserCuffPatternTex[] __attribute__((aligned (2))) = dgNabooruTrouserCuffPatternTex; -#endif - -#define dgNabooruBeltJewelTex "__OTR__objects/object_nb/gNabooruBeltJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruBeltJewelTex[] = dgNabooruBeltJewelTex; -#else -static const char gNabooruBeltJewelTex[] __attribute__((aligned (2))) = dgNabooruBeltJewelTex; -#endif - -#define dgNabooruBeltTex "__OTR__objects/object_nb/gNabooruBeltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruBeltTex[] = dgNabooruBeltTex; -#else -static const char gNabooruBeltTex[] __attribute__((aligned (2))) = dgNabooruBeltTex; -#endif - -#define dgNabooruSkinGradient2Tex "__OTR__objects/object_nb/gNabooruSkinGradient2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruSkinGradient2Tex[] = dgNabooruSkinGradient2Tex; -#else -static const char gNabooruSkinGradient2Tex[] __attribute__((aligned (2))) = dgNabooruSkinGradient2Tex; -#endif - -#define dgNabooruForeheadJewelSettingTopTex "__OTR__objects/object_nb/gNabooruForeheadJewelSettingTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruForeheadJewelSettingTopTex[] = dgNabooruForeheadJewelSettingTopTex; -#else -static const char gNabooruForeheadJewelSettingTopTex[] __attribute__((aligned (2))) = dgNabooruForeheadJewelSettingTopTex; -#endif - -#define dgNabooruForeheadJewelSettingBottomTex "__OTR__objects/object_nb/gNabooruForeheadJewelSettingBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruForeheadJewelSettingBottomTex[] = dgNabooruForeheadJewelSettingBottomTex; -#else -static const char gNabooruForeheadJewelSettingBottomTex[] __attribute__((aligned (2))) = dgNabooruForeheadJewelSettingBottomTex; -#endif - -#define dgNabooruForeheadJewelSettingSideTex "__OTR__objects/object_nb/gNabooruForeheadJewelSettingSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruForeheadJewelSettingSideTex[] = dgNabooruForeheadJewelSettingSideTex; -#else -static const char gNabooruForeheadJewelSettingSideTex[] __attribute__((aligned (2))) = dgNabooruForeheadJewelSettingSideTex; -#endif - -#define dgNabooruHairTex "__OTR__objects/object_nb/gNabooruHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruHairTex[] = dgNabooruHairTex; -#else -static const char gNabooruHairTex[] __attribute__((aligned (2))) = dgNabooruHairTex; -#endif - -#define dgNabooruForeheadJewelTex "__OTR__objects/object_nb/gNabooruForeheadJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruForeheadJewelTex[] = dgNabooruForeheadJewelTex; -#else -static const char gNabooruForeheadJewelTex[] __attribute__((aligned (2))) = dgNabooruForeheadJewelTex; -#endif - -#define dgNabooruEarTex "__OTR__objects/object_nb/gNabooruEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruEarTex[] = dgNabooruEarTex; -#else -static const char gNabooruEarTex[] __attribute__((aligned (2))) = dgNabooruEarTex; -#endif - -#define dgNabooruFingersBackSideTex "__OTR__objects/object_nb/gNabooruFingersBackSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruFingersBackSideTex[] = dgNabooruFingersBackSideTex; -#else -static const char gNabooruFingersBackSideTex[] __attribute__((aligned (2))) = dgNabooruFingersBackSideTex; -#endif - -#define dgNabooruEarringsNecklaceArmletTex "__OTR__objects/object_nb/gNabooruEarringsNecklaceArmletTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruEarringsNecklaceArmletTex[] = dgNabooruEarringsNecklaceArmletTex; -#else -static const char gNabooruEarringsNecklaceArmletTex[] __attribute__((aligned (2))) = dgNabooruEarringsNecklaceArmletTex; -#endif - -#define dgNabooruPonytailCuffJewelTex "__OTR__objects/object_nb/gNabooruPonytailCuffJewelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruPonytailCuffJewelTex[] = dgNabooruPonytailCuffJewelTex; -#else -static const char gNabooruPonytailCuffJewelTex[] __attribute__((aligned (2))) = dgNabooruPonytailCuffJewelTex; -#endif - -#define dgNabooruGloveHandBackTex "__OTR__objects/object_nb/gNabooruGloveHandBackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruGloveHandBackTex[] = dgNabooruGloveHandBackTex; -#else -static const char gNabooruGloveHandBackTex[] __attribute__((aligned (2))) = dgNabooruGloveHandBackTex; -#endif - -#define dgNabooruGloveHandPalmTex "__OTR__objects/object_nb/gNabooruGloveHandPalmTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruGloveHandPalmTex[] = dgNabooruGloveHandPalmTex; -#else -static const char gNabooruGloveHandPalmTex[] __attribute__((aligned (2))) = dgNabooruGloveHandPalmTex; -#endif - -#define dgNabooruShoeUpperMouthTex "__OTR__objects/object_nb/gNabooruShoeUpperMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruShoeUpperMouthTex[] = dgNabooruShoeUpperMouthTex; -#else -static const char gNabooruShoeUpperMouthTex[] __attribute__((aligned (2))) = dgNabooruShoeUpperMouthTex; -#endif - -#define dgNabooruShoeSoleTex "__OTR__objects/object_nb/gNabooruShoeSoleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruShoeSoleTex[] = dgNabooruShoeSoleTex; -#else -static const char gNabooruShoeSoleTex[] __attribute__((aligned (2))) = dgNabooruShoeSoleTex; -#endif - -#define dgNabooruTopOfFootTex "__OTR__objects/object_nb/gNabooruTopOfFootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruTopOfFootTex[] = dgNabooruTopOfFootTex; -#else -static const char gNabooruTopOfFootTex[] __attribute__((aligned (2))) = dgNabooruTopOfFootTex; -#endif - -#define dgNabooruFingersPalmSideTex "__OTR__objects/object_nb/gNabooruFingersPalmSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruFingersPalmSideTex[] = dgNabooruFingersPalmSideTex; -#else -static const char gNabooruFingersPalmSideTex[] __attribute__((aligned (2))) = dgNabooruFingersPalmSideTex; -#endif - -#define dgNabooruLipsTex "__OTR__objects/object_nb/gNabooruLipsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruLipsTex[] = dgNabooruLipsTex; -#else -static const char gNabooruLipsTex[] __attribute__((aligned (2))) = dgNabooruLipsTex; -#endif - -#define dgNabooruEyeOpenTex "__OTR__objects/object_nb/gNabooruEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruEyeOpenTex[] = dgNabooruEyeOpenTex; -#else -static const char gNabooruEyeOpenTex[] __attribute__((aligned (2))) = dgNabooruEyeOpenTex; -#endif - -#define dgNabooruEyeHalfTex "__OTR__objects/object_nb/gNabooruEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruEyeHalfTex[] = dgNabooruEyeHalfTex; -#else -static const char gNabooruEyeHalfTex[] __attribute__((aligned (2))) = dgNabooruEyeHalfTex; -#endif - -#define dgNabooruEyeClosedTex "__OTR__objects/object_nb/gNabooruEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruEyeClosedTex[] = dgNabooruEyeClosedTex; -#else -static const char gNabooruEyeClosedTex[] __attribute__((aligned (2))) = dgNabooruEyeClosedTex; -#endif - -#define dgNabooruEyeWideTex "__OTR__objects/object_nb/gNabooruEyeWideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruEyeWideTex[] = dgNabooruEyeWideTex; -#else -static const char gNabooruEyeWideTex[] __attribute__((aligned (2))) = dgNabooruEyeWideTex; -#endif - -#define dgNabooruPuttingHandsTogetherCastingMagicAnim "__OTR__objects/object_nb/gNabooruPuttingHandsTogetherCastingMagicAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruPuttingHandsTogetherCastingMagicAnim[] = dgNabooruPuttingHandsTogetherCastingMagicAnim; -#else -static const char gNabooruPuttingHandsTogetherCastingMagicAnim[] __attribute__((aligned (2))) = dgNabooruPuttingHandsTogetherCastingMagicAnim; -#endif - -#define dgNabooruSittingCrossLeggedAnim "__OTR__objects/object_nb/gNabooruSittingCrossLeggedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruSittingCrossLeggedAnim[] = dgNabooruSittingCrossLeggedAnim; -#else -static const char gNabooruSittingCrossLeggedAnim[] __attribute__((aligned (2))) = dgNabooruSittingCrossLeggedAnim; -#endif - -#define dgNabooruTrappedInVortexRaisingArmAnim "__OTR__objects/object_nb/gNabooruTrappedInVortexRaisingArmAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruTrappedInVortexRaisingArmAnim[] = dgNabooruTrappedInVortexRaisingArmAnim; -#else -static const char gNabooruTrappedInVortexRaisingArmAnim[] __attribute__((aligned (2))) = dgNabooruTrappedInVortexRaisingArmAnim; -#endif - -#define dgNabooruSuckedByVortexAnim "__OTR__objects/object_nb/gNabooruSuckedByVortexAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruSuckedByVortexAnim[] = dgNabooruSuckedByVortexAnim; -#else -static const char gNabooruSuckedByVortexAnim[] __attribute__((aligned (2))) = dgNabooruSuckedByVortexAnim; -#endif - -#define dgNabooruTrappedInVortexPushingGroundAnim "__OTR__objects/object_nb/gNabooruTrappedInVortexPushingGroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruTrappedInVortexPushingGroundAnim[] = dgNabooruTrappedInVortexPushingGroundAnim; -#else -static const char gNabooruTrappedInVortexPushingGroundAnim[] __attribute__((aligned (2))) = dgNabooruTrappedInVortexPushingGroundAnim; -#endif - -#define dgNabooruRaisingArmsGivingMedallionAnim "__OTR__objects/object_nb/gNabooruRaisingArmsGivingMedallionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruRaisingArmsGivingMedallionAnim[] = dgNabooruRaisingArmsGivingMedallionAnim; -#else -static const char gNabooruRaisingArmsGivingMedallionAnim[] __attribute__((aligned (2))) = dgNabooruRaisingArmsGivingMedallionAnim; -#endif - -#define dgNabooruArmsRaisedGivingMedallionAnim "__OTR__objects/object_nb/gNabooruArmsRaisedGivingMedallionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruArmsRaisedGivingMedallionAnim[] = dgNabooruArmsRaisedGivingMedallionAnim; -#else -static const char gNabooruArmsRaisedGivingMedallionAnim[] __attribute__((aligned (2))) = dgNabooruArmsRaisedGivingMedallionAnim; -#endif - -#define dgNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim "__OTR__objects/object_nb/gNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim[] = dgNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim; -#else -static const char gNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim[] __attribute__((aligned (2))) = dgNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim; -#endif - -#define dgNabooruOnOneKneeLookingLeftAnim "__OTR__objects/object_nb/gNabooruOnOneKneeLookingLeftAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruOnOneKneeLookingLeftAnim[] = dgNabooruOnOneKneeLookingLeftAnim; -#else -static const char gNabooruOnOneKneeLookingLeftAnim[] __attribute__((aligned (2))) = dgNabooruOnOneKneeLookingLeftAnim; -#endif - -#define dgNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim "__OTR__objects/object_nb/gNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim[] = dgNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim; -#else -static const char gNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim[] __attribute__((aligned (2))) = dgNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim; -#endif - -#define dgNabooruOnOneKneeLookingRightAnim "__OTR__objects/object_nb/gNabooruOnOneKneeLookingRightAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruOnOneKneeLookingRightAnim[] = dgNabooruOnOneKneeLookingRightAnim; -#else -static const char gNabooruOnOneKneeLookingRightAnim[] __attribute__((aligned (2))) = dgNabooruOnOneKneeLookingRightAnim; -#endif - -#define dgNabooruOnAllFoursAnim "__OTR__objects/object_nb/gNabooruOnAllFoursAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruOnAllFoursAnim[] = dgNabooruOnAllFoursAnim; -#else -static const char gNabooruOnAllFoursAnim[] __attribute__((aligned (2))) = dgNabooruOnAllFoursAnim; -#endif - -#define dgNabooruStandingHandsOnHipsAnim "__OTR__objects/object_nb/gNabooruStandingHandsOnHipsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruStandingHandsOnHipsAnim[] = dgNabooruStandingHandsOnHipsAnim; -#else -static const char gNabooruStandingHandsOnHipsAnim[] __attribute__((aligned (2))) = dgNabooruStandingHandsOnHipsAnim; -#endif - -#define dgNabooruStandingToWalkingTransitionAnim "__OTR__objects/object_nb/gNabooruStandingToWalkingTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruStandingToWalkingTransitionAnim[] = dgNabooruStandingToWalkingTransitionAnim; -#else -static const char gNabooruStandingToWalkingTransitionAnim[] __attribute__((aligned (2))) = dgNabooruStandingToWalkingTransitionAnim; -#endif - -#define dgNabooruSittingCrossLeggedLookingUpRightAnim "__OTR__objects/object_nb/gNabooruSittingCrossLeggedLookingUpRightAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruSittingCrossLeggedLookingUpRightAnim[] = dgNabooruSittingCrossLeggedLookingUpRightAnim; -#else -static const char gNabooruSittingCrossLeggedLookingUpRightAnim[] __attribute__((aligned (2))) = dgNabooruSittingCrossLeggedLookingUpRightAnim; -#endif - -#define dgNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim "__OTR__objects/object_nb/gNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim[] = dgNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim; -#else -static const char gNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim[] __attribute__((aligned (2))) = dgNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim; -#endif - -#define dgNabooruKneeingToRunningToHitAnim "__OTR__objects/object_nb/gNabooruKneeingToRunningToHitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruKneeingToRunningToHitAnim[] = dgNabooruKneeingToRunningToHitAnim; -#else -static const char gNabooruKneeingToRunningToHitAnim[] __attribute__((aligned (2))) = dgNabooruKneeingToRunningToHitAnim; -#endif - -#define dgNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim "__OTR__objects/object_nb/gNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim[] = dgNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim; -#else -static const char gNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim[] __attribute__((aligned (2))) = dgNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim; -#endif - -#define dgNabooruKneeingAtCrawlspaceAnim "__OTR__objects/object_nb/gNabooruKneeingAtCrawlspaceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruKneeingAtCrawlspaceAnim[] = dgNabooruKneeingAtCrawlspaceAnim; -#else -static const char gNabooruKneeingAtCrawlspaceAnim[] __attribute__((aligned (2))) = dgNabooruKneeingAtCrawlspaceAnim; -#endif - -#define dgNabooruCollapseFromStandingToKneelingTransitionAnim "__OTR__objects/object_nb/gNabooruCollapseFromStandingToKneelingTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruCollapseFromStandingToKneelingTransitionAnim[] = dgNabooruCollapseFromStandingToKneelingTransitionAnim; -#else -static const char gNabooruCollapseFromStandingToKneelingTransitionAnim[] __attribute__((aligned (2))) = dgNabooruCollapseFromStandingToKneelingTransitionAnim; -#endif - -#define dgNabooruWalkingAnim "__OTR__objects/object_nb/gNabooruWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruWalkingAnim[] = dgNabooruWalkingAnim; -#else -static const char gNabooruWalkingAnim[] __attribute__((aligned (2))) = dgNabooruWalkingAnim; -#endif - -#define dgNabooruStandingHandsOnHipsChamberOfSagesAnim "__OTR__objects/object_nb/gNabooruStandingHandsOnHipsChamberOfSagesAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruStandingHandsOnHipsChamberOfSagesAnim[] = dgNabooruStandingHandsOnHipsChamberOfSagesAnim; -#else -static const char gNabooruStandingHandsOnHipsChamberOfSagesAnim[] __attribute__((aligned (2))) = dgNabooruStandingHandsOnHipsChamberOfSagesAnim; -#endif - -#define dgNabooruUnusedVtx_00EFF8 "__OTR__objects/object_nb/gNabooruUnusedVtx_00EFF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gNabooruUnusedVtx_00EFF8[] = dgNabooruUnusedVtx_00EFF8; -#else -static const char gNabooruUnusedVtx_00EFF8[] __attribute__((aligned (2))) = dgNabooruUnusedVtx_00EFF8; -#endif - +#include "align_asset_macro.h" + +#define dgNabooruSkel "__OTR__objects/object_nb/gNabooruSkel" +static const ALIGN_ASSET(2) char gNabooruSkel[] = dgNabooruSkel; + +#define dgNabooruHeadMouthOpenDL "__OTR__objects/object_nb/gNabooruHeadMouthOpenDL" +static const ALIGN_ASSET(2) char gNabooruHeadMouthOpenDL[] = dgNabooruHeadMouthOpenDL; + +#define dgNabooruLeftThighDL "__OTR__objects/object_nb/gNabooruLeftThighDL" +static const ALIGN_ASSET(2) char gNabooruLeftThighDL[] = dgNabooruLeftThighDL; + +#define dgNabooruLeftShinDL "__OTR__objects/object_nb/gNabooruLeftShinDL" +static const ALIGN_ASSET(2) char gNabooruLeftShinDL[] = dgNabooruLeftShinDL; + +#define dgNabooruLeftFootDL "__OTR__objects/object_nb/gNabooruLeftFootDL" +static const ALIGN_ASSET(2) char gNabooruLeftFootDL[] = dgNabooruLeftFootDL; + +#define dgNabooruRightThighDL "__OTR__objects/object_nb/gNabooruRightThighDL" +static const ALIGN_ASSET(2) char gNabooruRightThighDL[] = dgNabooruRightThighDL; + +#define dgNabooruRightShinDL "__OTR__objects/object_nb/gNabooruRightShinDL" +static const ALIGN_ASSET(2) char gNabooruRightShinDL[] = dgNabooruRightShinDL; + +#define dgNabooruRightFootDL "__OTR__objects/object_nb/gNabooruRightFootDL" +static const ALIGN_ASSET(2) char gNabooruRightFootDL[] = dgNabooruRightFootDL; + +#define dgNabooruTorsoDL "__OTR__objects/object_nb/gNabooruTorsoDL" +static const ALIGN_ASSET(2) char gNabooruTorsoDL[] = dgNabooruTorsoDL; + +#define dgNabooruLeftUpperArmDL "__OTR__objects/object_nb/gNabooruLeftUpperArmDL" +static const ALIGN_ASSET(2) char gNabooruLeftUpperArmDL[] = dgNabooruLeftUpperArmDL; + +#define dgNabooruLeftForearmDL "__OTR__objects/object_nb/gNabooruLeftForearmDL" +static const ALIGN_ASSET(2) char gNabooruLeftForearmDL[] = dgNabooruLeftForearmDL; + +#define dgNabooruLeftHandDL "__OTR__objects/object_nb/gNabooruLeftHandDL" +static const ALIGN_ASSET(2) char gNabooruLeftHandDL[] = dgNabooruLeftHandDL; + +#define dgNabooruRightUpperArmDL "__OTR__objects/object_nb/gNabooruRightUpperArmDL" +static const ALIGN_ASSET(2) char gNabooruRightUpperArmDL[] = dgNabooruRightUpperArmDL; + +#define dgNabooruRightForearmDL "__OTR__objects/object_nb/gNabooruRightForearmDL" +static const ALIGN_ASSET(2) char gNabooruRightForearmDL[] = dgNabooruRightForearmDL; + +#define dgNabooruRightHandDL "__OTR__objects/object_nb/gNabooruRightHandDL" +static const ALIGN_ASSET(2) char gNabooruRightHandDL[] = dgNabooruRightHandDL; + +#define dgNabooruHeadMouthClosedDL "__OTR__objects/object_nb/gNabooruHeadMouthClosedDL" +static const ALIGN_ASSET(2) char gNabooruHeadMouthClosedDL[] = dgNabooruHeadMouthClosedDL; + +#define dgNabooruBlankDL "__OTR__objects/object_nb/gNabooruBlankDL" +static const ALIGN_ASSET(2) char gNabooruBlankDL[] = dgNabooruBlankDL; + +#define dgNabooruPonytailDL "__OTR__objects/object_nb/gNabooruPonytailDL" +static const ALIGN_ASSET(2) char gNabooruPonytailDL[] = dgNabooruPonytailDL; + +#define dgNabooruWaistDL "__OTR__objects/object_nb/gNabooruWaistDL" +static const ALIGN_ASSET(2) char gNabooruWaistDL[] = dgNabooruWaistDL; + +#define dgNabooru1TLUT "__OTR__objects/object_nb/gNabooru1TLUT" +static const ALIGN_ASSET(2) char gNabooru1TLUT[] = dgNabooru1TLUT; + +#define dgNabooru2TLUT "__OTR__objects/object_nb/gNabooru2TLUT" +static const ALIGN_ASSET(2) char gNabooru2TLUT[] = dgNabooru2TLUT; + +#define dgNabooru3TLUT "__OTR__objects/object_nb/gNabooru3TLUT" +static const ALIGN_ASSET(2) char gNabooru3TLUT[] = dgNabooru3TLUT; + +#define dgNabooruClothesButtonsTex "__OTR__objects/object_nb/gNabooruClothesButtonsTex" +static const ALIGN_ASSET(2) char gNabooruClothesButtonsTex[] = dgNabooruClothesButtonsTex; + +#define dgNabooruSkinGradient1Tex "__OTR__objects/object_nb/gNabooruSkinGradient1Tex" +static const ALIGN_ASSET(2) char gNabooruSkinGradient1Tex[] = dgNabooruSkinGradient1Tex; + +#define dgNabooruNavelTex "__OTR__objects/object_nb/gNabooruNavelTex" +static const ALIGN_ASSET(2) char gNabooruNavelTex[] = dgNabooruNavelTex; + +#define dgNabooruPendantJewelTex "__OTR__objects/object_nb/gNabooruPendantJewelTex" +static const ALIGN_ASSET(2) char gNabooruPendantJewelTex[] = dgNabooruPendantJewelTex; + +#define dgNabooruCleavageTex "__OTR__objects/object_nb/gNabooruCleavageTex" +static const ALIGN_ASSET(2) char gNabooruCleavageTex[] = dgNabooruCleavageTex; + +#define dgNabooruTopFabricPatternTex "__OTR__objects/object_nb/gNabooruTopFabricPatternTex" +static const ALIGN_ASSET(2) char gNabooruTopFabricPatternTex[] = dgNabooruTopFabricPatternTex; + +#define dgNabooruAnkleBraceletTex "__OTR__objects/object_nb/gNabooruAnkleBraceletTex" +static const ALIGN_ASSET(2) char gNabooruAnkleBraceletTex[] = dgNabooruAnkleBraceletTex; + +#define dgNabooruTrousersShadowTex "__OTR__objects/object_nb/gNabooruTrousersShadowTex" +static const ALIGN_ASSET(2) char gNabooruTrousersShadowTex[] = dgNabooruTrousersShadowTex; + +#define dgNabooruTrousersFabricTex "__OTR__objects/object_nb/gNabooruTrousersFabricTex" +static const ALIGN_ASSET(2) char gNabooruTrousersFabricTex[] = dgNabooruTrousersFabricTex; + +#define dgNabooruTrouserCuffPatternTex "__OTR__objects/object_nb/gNabooruTrouserCuffPatternTex" +static const ALIGN_ASSET(2) char gNabooruTrouserCuffPatternTex[] = dgNabooruTrouserCuffPatternTex; + +#define dgNabooruBeltJewelTex "__OTR__objects/object_nb/gNabooruBeltJewelTex" +static const ALIGN_ASSET(2) char gNabooruBeltJewelTex[] = dgNabooruBeltJewelTex; + +#define dgNabooruBeltTex "__OTR__objects/object_nb/gNabooruBeltTex" +static const ALIGN_ASSET(2) char gNabooruBeltTex[] = dgNabooruBeltTex; + +#define dgNabooruSkinGradient2Tex "__OTR__objects/object_nb/gNabooruSkinGradient2Tex" +static const ALIGN_ASSET(2) char gNabooruSkinGradient2Tex[] = dgNabooruSkinGradient2Tex; + +#define dgNabooruForeheadJewelSettingTopTex "__OTR__objects/object_nb/gNabooruForeheadJewelSettingTopTex" +static const ALIGN_ASSET(2) char gNabooruForeheadJewelSettingTopTex[] = dgNabooruForeheadJewelSettingTopTex; + +#define dgNabooruForeheadJewelSettingBottomTex "__OTR__objects/object_nb/gNabooruForeheadJewelSettingBottomTex" +static const ALIGN_ASSET(2) char gNabooruForeheadJewelSettingBottomTex[] = dgNabooruForeheadJewelSettingBottomTex; + +#define dgNabooruForeheadJewelSettingSideTex "__OTR__objects/object_nb/gNabooruForeheadJewelSettingSideTex" +static const ALIGN_ASSET(2) char gNabooruForeheadJewelSettingSideTex[] = dgNabooruForeheadJewelSettingSideTex; + +#define dgNabooruHairTex "__OTR__objects/object_nb/gNabooruHairTex" +static const ALIGN_ASSET(2) char gNabooruHairTex[] = dgNabooruHairTex; + +#define dgNabooruForeheadJewelTex "__OTR__objects/object_nb/gNabooruForeheadJewelTex" +static const ALIGN_ASSET(2) char gNabooruForeheadJewelTex[] = dgNabooruForeheadJewelTex; + +#define dgNabooruEarTex "__OTR__objects/object_nb/gNabooruEarTex" +static const ALIGN_ASSET(2) char gNabooruEarTex[] = dgNabooruEarTex; + +#define dgNabooruFingersBackSideTex "__OTR__objects/object_nb/gNabooruFingersBackSideTex" +static const ALIGN_ASSET(2) char gNabooruFingersBackSideTex[] = dgNabooruFingersBackSideTex; + +#define dgNabooruEarringsNecklaceArmletTex "__OTR__objects/object_nb/gNabooruEarringsNecklaceArmletTex" +static const ALIGN_ASSET(2) char gNabooruEarringsNecklaceArmletTex[] = dgNabooruEarringsNecklaceArmletTex; + +#define dgNabooruPonytailCuffJewelTex "__OTR__objects/object_nb/gNabooruPonytailCuffJewelTex" +static const ALIGN_ASSET(2) char gNabooruPonytailCuffJewelTex[] = dgNabooruPonytailCuffJewelTex; + +#define dgNabooruGloveHandBackTex "__OTR__objects/object_nb/gNabooruGloveHandBackTex" +static const ALIGN_ASSET(2) char gNabooruGloveHandBackTex[] = dgNabooruGloveHandBackTex; + +#define dgNabooruGloveHandPalmTex "__OTR__objects/object_nb/gNabooruGloveHandPalmTex" +static const ALIGN_ASSET(2) char gNabooruGloveHandPalmTex[] = dgNabooruGloveHandPalmTex; + +#define dgNabooruShoeUpperMouthTex "__OTR__objects/object_nb/gNabooruShoeUpperMouthTex" +static const ALIGN_ASSET(2) char gNabooruShoeUpperMouthTex[] = dgNabooruShoeUpperMouthTex; + +#define dgNabooruShoeSoleTex "__OTR__objects/object_nb/gNabooruShoeSoleTex" +static const ALIGN_ASSET(2) char gNabooruShoeSoleTex[] = dgNabooruShoeSoleTex; + +#define dgNabooruTopOfFootTex "__OTR__objects/object_nb/gNabooruTopOfFootTex" +static const ALIGN_ASSET(2) char gNabooruTopOfFootTex[] = dgNabooruTopOfFootTex; + +#define dgNabooruFingersPalmSideTex "__OTR__objects/object_nb/gNabooruFingersPalmSideTex" +static const ALIGN_ASSET(2) char gNabooruFingersPalmSideTex[] = dgNabooruFingersPalmSideTex; + +#define dgNabooruLipsTex "__OTR__objects/object_nb/gNabooruLipsTex" +static const ALIGN_ASSET(2) char gNabooruLipsTex[] = dgNabooruLipsTex; + +#define dgNabooruEyeOpenTex "__OTR__objects/object_nb/gNabooruEyeOpenTex" +static const ALIGN_ASSET(2) char gNabooruEyeOpenTex[] = dgNabooruEyeOpenTex; + +#define dgNabooruEyeHalfTex "__OTR__objects/object_nb/gNabooruEyeHalfTex" +static const ALIGN_ASSET(2) char gNabooruEyeHalfTex[] = dgNabooruEyeHalfTex; + +#define dgNabooruEyeClosedTex "__OTR__objects/object_nb/gNabooruEyeClosedTex" +static const ALIGN_ASSET(2) char gNabooruEyeClosedTex[] = dgNabooruEyeClosedTex; + +#define dgNabooruEyeWideTex "__OTR__objects/object_nb/gNabooruEyeWideTex" +static const ALIGN_ASSET(2) char gNabooruEyeWideTex[] = dgNabooruEyeWideTex; + +#define dgNabooruPuttingHandsTogetherCastingMagicAnim "__OTR__objects/object_nb/gNabooruPuttingHandsTogetherCastingMagicAnim" +static const ALIGN_ASSET(2) char gNabooruPuttingHandsTogetherCastingMagicAnim[] = dgNabooruPuttingHandsTogetherCastingMagicAnim; + +#define dgNabooruSittingCrossLeggedAnim "__OTR__objects/object_nb/gNabooruSittingCrossLeggedAnim" +static const ALIGN_ASSET(2) char gNabooruSittingCrossLeggedAnim[] = dgNabooruSittingCrossLeggedAnim; + +#define dgNabooruTrappedInVortexRaisingArmAnim "__OTR__objects/object_nb/gNabooruTrappedInVortexRaisingArmAnim" +static const ALIGN_ASSET(2) char gNabooruTrappedInVortexRaisingArmAnim[] = dgNabooruTrappedInVortexRaisingArmAnim; + +#define dgNabooruSuckedByVortexAnim "__OTR__objects/object_nb/gNabooruSuckedByVortexAnim" +static const ALIGN_ASSET(2) char gNabooruSuckedByVortexAnim[] = dgNabooruSuckedByVortexAnim; + +#define dgNabooruTrappedInVortexPushingGroundAnim "__OTR__objects/object_nb/gNabooruTrappedInVortexPushingGroundAnim" +static const ALIGN_ASSET(2) char gNabooruTrappedInVortexPushingGroundAnim[] = dgNabooruTrappedInVortexPushingGroundAnim; + +#define dgNabooruRaisingArmsGivingMedallionAnim "__OTR__objects/object_nb/gNabooruRaisingArmsGivingMedallionAnim" +static const ALIGN_ASSET(2) char gNabooruRaisingArmsGivingMedallionAnim[] = dgNabooruRaisingArmsGivingMedallionAnim; + +#define dgNabooruArmsRaisedGivingMedallionAnim "__OTR__objects/object_nb/gNabooruArmsRaisedGivingMedallionAnim" +static const ALIGN_ASSET(2) char gNabooruArmsRaisedGivingMedallionAnim[] = dgNabooruArmsRaisedGivingMedallionAnim; + +#define dgNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim "__OTR__objects/object_nb/gNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim" +static const ALIGN_ASSET(2) char gNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim[] = dgNabooruOnOneKneeTurningHeadRightToLeftTransitionAnim; + +#define dgNabooruOnOneKneeLookingLeftAnim "__OTR__objects/object_nb/gNabooruOnOneKneeLookingLeftAnim" +static const ALIGN_ASSET(2) char gNabooruOnOneKneeLookingLeftAnim[] = dgNabooruOnOneKneeLookingLeftAnim; + +#define dgNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim "__OTR__objects/object_nb/gNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim" +static const ALIGN_ASSET(2) char gNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim[] = dgNabooruOnAllFoursToOnOneKneeLookingRightTransitionAnim; + +#define dgNabooruOnOneKneeLookingRightAnim "__OTR__objects/object_nb/gNabooruOnOneKneeLookingRightAnim" +static const ALIGN_ASSET(2) char gNabooruOnOneKneeLookingRightAnim[] = dgNabooruOnOneKneeLookingRightAnim; + +#define dgNabooruOnAllFoursAnim "__OTR__objects/object_nb/gNabooruOnAllFoursAnim" +static const ALIGN_ASSET(2) char gNabooruOnAllFoursAnim[] = dgNabooruOnAllFoursAnim; + +#define dgNabooruStandingHandsOnHipsAnim "__OTR__objects/object_nb/gNabooruStandingHandsOnHipsAnim" +static const ALIGN_ASSET(2) char gNabooruStandingHandsOnHipsAnim[] = dgNabooruStandingHandsOnHipsAnim; + +#define dgNabooruStandingToWalkingTransitionAnim "__OTR__objects/object_nb/gNabooruStandingToWalkingTransitionAnim" +static const ALIGN_ASSET(2) char gNabooruStandingToWalkingTransitionAnim[] = dgNabooruStandingToWalkingTransitionAnim; + +#define dgNabooruSittingCrossLeggedLookingUpRightAnim "__OTR__objects/object_nb/gNabooruSittingCrossLeggedLookingUpRightAnim" +static const ALIGN_ASSET(2) char gNabooruSittingCrossLeggedLookingUpRightAnim[] = dgNabooruSittingCrossLeggedLookingUpRightAnim; + +#define dgNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim "__OTR__objects/object_nb/gNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim" +static const ALIGN_ASSET(2) char gNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim[] = dgNabooruSittingCrossLeggedTurningToLookUpRightTransitionAnim; + +#define dgNabooruKneeingToRunningToHitAnim "__OTR__objects/object_nb/gNabooruKneeingToRunningToHitAnim" +static const ALIGN_ASSET(2) char gNabooruKneeingToRunningToHitAnim[] = dgNabooruKneeingToRunningToHitAnim; + +#define dgNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim "__OTR__objects/object_nb/gNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim" +static const ALIGN_ASSET(2) char gNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim[] = dgNabooruUnusedKneelingAtCrawlspaceToStandingTransitionAnim; + +#define dgNabooruKneeingAtCrawlspaceAnim "__OTR__objects/object_nb/gNabooruKneeingAtCrawlspaceAnim" +static const ALIGN_ASSET(2) char gNabooruKneeingAtCrawlspaceAnim[] = dgNabooruKneeingAtCrawlspaceAnim; + +#define dgNabooruCollapseFromStandingToKneelingTransitionAnim "__OTR__objects/object_nb/gNabooruCollapseFromStandingToKneelingTransitionAnim" +static const ALIGN_ASSET(2) char gNabooruCollapseFromStandingToKneelingTransitionAnim[] = dgNabooruCollapseFromStandingToKneelingTransitionAnim; + +#define dgNabooruWalkingAnim "__OTR__objects/object_nb/gNabooruWalkingAnim" +static const ALIGN_ASSET(2) char gNabooruWalkingAnim[] = dgNabooruWalkingAnim; + +#define dgNabooruStandingHandsOnHipsChamberOfSagesAnim "__OTR__objects/object_nb/gNabooruStandingHandsOnHipsChamberOfSagesAnim" +static const ALIGN_ASSET(2) char gNabooruStandingHandsOnHipsChamberOfSagesAnim[] = dgNabooruStandingHandsOnHipsChamberOfSagesAnim; + +#define dgNabooruUnusedVtx_00EFF8 "__OTR__objects/object_nb/gNabooruUnusedVtx_00EFF8" +static const ALIGN_ASSET(2) char gNabooruUnusedVtx_00EFF8[] = dgNabooruUnusedVtx_00EFF8; \ No newline at end of file diff --git a/soh/assets/objects/object_niw/object_niw.h b/soh/assets/objects/object_niw/object_niw.h index 67167965c..cdac4b02b 100644 --- a/soh/assets/objects/object_niw/object_niw.h +++ b/soh/assets/objects/object_niw/object_niw.h @@ -1,135 +1,60 @@ #pragma once -#define dgCuccoSkel "__OTR__objects/object_niw/gCuccoSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoSkel[] = dgCuccoSkel; -#else -static const char gCuccoSkel[] __attribute__((aligned (2))) = dgCuccoSkel; -#endif - -#define dgCuccoTailAndUndersideDL "__OTR__objects/object_niw/gCuccoTailAndUndersideDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoTailAndUndersideDL[] = dgCuccoTailAndUndersideDL; -#else -static const char gCuccoTailAndUndersideDL[] __attribute__((aligned (2))) = dgCuccoTailAndUndersideDL; -#endif - -#define dgCuccoLeftFootDL "__OTR__objects/object_niw/gCuccoLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLeftFootDL[] = dgCuccoLeftFootDL; -#else -static const char gCuccoLeftFootDL[] __attribute__((aligned (2))) = dgCuccoLeftFootDL; -#endif - -#define dgCuccoLeftWingDL "__OTR__objects/object_niw/gCuccoLeftWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoLeftWingDL[] = dgCuccoLeftWingDL; -#else -static const char gCuccoLeftWingDL[] __attribute__((aligned (2))) = dgCuccoLeftWingDL; -#endif - -#define dgCuccoRightFootDL "__OTR__objects/object_niw/gCuccoRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoRightFootDL[] = dgCuccoRightFootDL; -#else -static const char gCuccoRightFootDL[] __attribute__((aligned (2))) = dgCuccoRightFootDL; -#endif - -#define dgCuccoRightWingDL "__OTR__objects/object_niw/gCuccoRightWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoRightWingDL[] = dgCuccoRightWingDL; -#else -static const char gCuccoRightWingDL[] __attribute__((aligned (2))) = dgCuccoRightWingDL; -#endif - -#define dgCuccoNeckDL "__OTR__objects/object_niw/gCuccoNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoNeckDL[] = dgCuccoNeckDL; -#else -static const char gCuccoNeckDL[] __attribute__((aligned (2))) = dgCuccoNeckDL; -#endif - -#define dgCuccoHeadDL "__OTR__objects/object_niw/gCuccoHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoHeadDL[] = dgCuccoHeadDL; -#else -static const char gCuccoHeadDL[] __attribute__((aligned (2))) = dgCuccoHeadDL; -#endif - -#define dgCuccoEffectFeatherMaterialDL "__OTR__objects/object_niw/gCuccoEffectFeatherMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoEffectFeatherMaterialDL[] = dgCuccoEffectFeatherMaterialDL; -#else -static const char gCuccoEffectFeatherMaterialDL[] __attribute__((aligned (2))) = dgCuccoEffectFeatherMaterialDL; -#endif - -#define dgCuccoEffectFeatherModelDL "__OTR__objects/object_niw/gCuccoEffectFeatherModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoEffectFeatherModelDL[] = dgCuccoEffectFeatherModelDL; -#else -static const char gCuccoEffectFeatherModelDL[] __attribute__((aligned (2))) = dgCuccoEffectFeatherModelDL; -#endif - -#define dgCuccoEyeTex "__OTR__objects/object_niw/gCuccoEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoEyeTex[] = dgCuccoEyeTex; -#else -static const char gCuccoEyeTex[] __attribute__((aligned (2))) = dgCuccoEyeTex; -#endif - -#define dgCuccoHeadFeathersTex "__OTR__objects/object_niw/gCuccoHeadFeathersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoHeadFeathersTex[] = dgCuccoHeadFeathersTex; -#else -static const char gCuccoHeadFeathersTex[] __attribute__((aligned (2))) = dgCuccoHeadFeathersTex; -#endif - -#define dgCuccoBaseFeathersTex "__OTR__objects/object_niw/gCuccoBaseFeathersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoBaseFeathersTex[] = dgCuccoBaseFeathersTex; -#else -static const char gCuccoBaseFeathersTex[] __attribute__((aligned (2))) = dgCuccoBaseFeathersTex; -#endif - -#define dgCuccoBeakTex "__OTR__objects/object_niw/gCuccoBeakTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoBeakTex[] = dgCuccoBeakTex; -#else -static const char gCuccoBeakTex[] __attribute__((aligned (2))) = dgCuccoBeakTex; -#endif - -#define dgCuccoCombTex "__OTR__objects/object_niw/gCuccoCombTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoCombTex[] = dgCuccoCombTex; -#else -static const char gCuccoCombTex[] __attribute__((aligned (2))) = dgCuccoCombTex; -#endif - -#define dgCuccoTailFeathersTex "__OTR__objects/object_niw/gCuccoTailFeathersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoTailFeathersTex[] = dgCuccoTailFeathersTex; -#else -static const char gCuccoTailFeathersTex[] __attribute__((aligned (2))) = dgCuccoTailFeathersTex; -#endif - -#define dgCuccoClawTex "__OTR__objects/object_niw/gCuccoClawTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoClawTex[] = dgCuccoClawTex; -#else -static const char gCuccoClawTex[] __attribute__((aligned (2))) = dgCuccoClawTex; -#endif - -#define dgCuccoTex_2180 "__OTR__objects/object_niw/gCuccoTex_2180" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoTex_2180[] = dgCuccoTex_2180; -#else -static const char gCuccoTex_2180[] __attribute__((aligned (2))) = dgCuccoTex_2180; -#endif - -#define dgCuccoAnim "__OTR__objects/object_niw/gCuccoAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoAnim[] = dgCuccoAnim; -#else -static const char gCuccoAnim[] __attribute__((aligned (2))) = dgCuccoAnim; -#endif - +#include "align_asset_macro.h" + +#define dgCuccoSkel "__OTR__objects/object_niw/gCuccoSkel" +static const ALIGN_ASSET(2) char gCuccoSkel[] = dgCuccoSkel; + +#define dgCuccoTailAndUndersideDL "__OTR__objects/object_niw/gCuccoTailAndUndersideDL" +static const ALIGN_ASSET(2) char gCuccoTailAndUndersideDL[] = dgCuccoTailAndUndersideDL; + +#define dgCuccoLeftFootDL "__OTR__objects/object_niw/gCuccoLeftFootDL" +static const ALIGN_ASSET(2) char gCuccoLeftFootDL[] = dgCuccoLeftFootDL; + +#define dgCuccoLeftWingDL "__OTR__objects/object_niw/gCuccoLeftWingDL" +static const ALIGN_ASSET(2) char gCuccoLeftWingDL[] = dgCuccoLeftWingDL; + +#define dgCuccoRightFootDL "__OTR__objects/object_niw/gCuccoRightFootDL" +static const ALIGN_ASSET(2) char gCuccoRightFootDL[] = dgCuccoRightFootDL; + +#define dgCuccoRightWingDL "__OTR__objects/object_niw/gCuccoRightWingDL" +static const ALIGN_ASSET(2) char gCuccoRightWingDL[] = dgCuccoRightWingDL; + +#define dgCuccoNeckDL "__OTR__objects/object_niw/gCuccoNeckDL" +static const ALIGN_ASSET(2) char gCuccoNeckDL[] = dgCuccoNeckDL; + +#define dgCuccoHeadDL "__OTR__objects/object_niw/gCuccoHeadDL" +static const ALIGN_ASSET(2) char gCuccoHeadDL[] = dgCuccoHeadDL; + +#define dgCuccoEffectFeatherMaterialDL "__OTR__objects/object_niw/gCuccoEffectFeatherMaterialDL" +static const ALIGN_ASSET(2) char gCuccoEffectFeatherMaterialDL[] = dgCuccoEffectFeatherMaterialDL; + +#define dgCuccoEffectFeatherModelDL "__OTR__objects/object_niw/gCuccoEffectFeatherModelDL" +static const ALIGN_ASSET(2) char gCuccoEffectFeatherModelDL[] = dgCuccoEffectFeatherModelDL; + +#define dgCuccoEyeTex "__OTR__objects/object_niw/gCuccoEyeTex" +static const ALIGN_ASSET(2) char gCuccoEyeTex[] = dgCuccoEyeTex; + +#define dgCuccoHeadFeathersTex "__OTR__objects/object_niw/gCuccoHeadFeathersTex" +static const ALIGN_ASSET(2) char gCuccoHeadFeathersTex[] = dgCuccoHeadFeathersTex; + +#define dgCuccoBaseFeathersTex "__OTR__objects/object_niw/gCuccoBaseFeathersTex" +static const ALIGN_ASSET(2) char gCuccoBaseFeathersTex[] = dgCuccoBaseFeathersTex; + +#define dgCuccoBeakTex "__OTR__objects/object_niw/gCuccoBeakTex" +static const ALIGN_ASSET(2) char gCuccoBeakTex[] = dgCuccoBeakTex; + +#define dgCuccoCombTex "__OTR__objects/object_niw/gCuccoCombTex" +static const ALIGN_ASSET(2) char gCuccoCombTex[] = dgCuccoCombTex; + +#define dgCuccoTailFeathersTex "__OTR__objects/object_niw/gCuccoTailFeathersTex" +static const ALIGN_ASSET(2) char gCuccoTailFeathersTex[] = dgCuccoTailFeathersTex; + +#define dgCuccoClawTex "__OTR__objects/object_niw/gCuccoClawTex" +static const ALIGN_ASSET(2) char gCuccoClawTex[] = dgCuccoClawTex; + +#define dgCuccoTex_2180 "__OTR__objects/object_niw/gCuccoTex_2180" +static const ALIGN_ASSET(2) char gCuccoTex_2180[] = dgCuccoTex_2180; + +#define dgCuccoAnim "__OTR__objects/object_niw/gCuccoAnim" +static const ALIGN_ASSET(2) char gCuccoAnim[] = dgCuccoAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_nwc/object_nwc.h b/soh/assets/objects/object_nwc/object_nwc.h index 149b969ac..03442ec62 100644 --- a/soh/assets/objects/object_nwc/object_nwc.h +++ b/soh/assets/objects/object_nwc/object_nwc.h @@ -1,79 +1,36 @@ #pragma once -#define dgCuccoChickBodyTex "__OTR__objects/object_nwc/gCuccoChickBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickBodyTex[] = dgCuccoChickBodyTex; -#else -static const char gCuccoChickBodyTex[] __attribute__((aligned (2))) = dgCuccoChickBodyTex; -#endif - -#define dgCuccoChickEyeTex "__OTR__objects/object_nwc/gCuccoChickEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickEyeTex[] = dgCuccoChickEyeTex; -#else -static const char gCuccoChickEyeTex[] __attribute__((aligned (2))) = dgCuccoChickEyeTex; -#endif - -#define dgCuccoChickBeakTex "__OTR__objects/object_nwc/gCuccoChickBeakTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickBeakTex[] = dgCuccoChickBeakTex; -#else -static const char gCuccoChickBeakTex[] __attribute__((aligned (2))) = dgCuccoChickBeakTex; -#endif - -#define dgCuccoChickSetupBodyDL "__OTR__objects/object_nwc/gCuccoChickSetupBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickSetupBodyDL[] = dgCuccoChickSetupBodyDL; -#else -static const char gCuccoChickSetupBodyDL[] __attribute__((aligned (2))) = dgCuccoChickSetupBodyDL; -#endif - -#define dgCuccoChickBodyDL "__OTR__objects/object_nwc/gCuccoChickBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickBodyDL[] = dgCuccoChickBodyDL; -#else -static const char gCuccoChickBodyDL[] __attribute__((aligned (2))) = dgCuccoChickBodyDL; -#endif - -#define dgCuccoChickSetupEyeDL "__OTR__objects/object_nwc/gCuccoChickSetupEyeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickSetupEyeDL[] = dgCuccoChickSetupEyeDL; -#else -static const char gCuccoChickSetupEyeDL[] __attribute__((aligned (2))) = dgCuccoChickSetupEyeDL; -#endif - -#define dgCuccoChickEyesDL "__OTR__objects/object_nwc/gCuccoChickEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickEyesDL[] = dgCuccoChickEyesDL; -#else -static const char gCuccoChickEyesDL[] __attribute__((aligned (2))) = dgCuccoChickEyesDL; -#endif - -#define dgCuccoChickSetupBeakDL "__OTR__objects/object_nwc/gCuccoChickSetupBeakDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickSetupBeakDL[] = dgCuccoChickSetupBeakDL; -#else -static const char gCuccoChickSetupBeakDL[] __attribute__((aligned (2))) = dgCuccoChickSetupBeakDL; -#endif - -#define dgCuccoChickBeakDL "__OTR__objects/object_nwc/gCuccoChickBeakDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickBeakDL[] = dgCuccoChickBeakDL; -#else -static const char gCuccoChickBeakDL[] __attribute__((aligned (2))) = dgCuccoChickBeakDL; -#endif - -#define dgCuccoChickSetupShadowDL "__OTR__objects/object_nwc/gCuccoChickSetupShadowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickSetupShadowDL[] = dgCuccoChickSetupShadowDL; -#else -static const char gCuccoChickSetupShadowDL[] __attribute__((aligned (2))) = dgCuccoChickSetupShadowDL; -#endif - -#define dgCuccoChickShadowDL "__OTR__objects/object_nwc/gCuccoChickShadowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoChickShadowDL[] = dgCuccoChickShadowDL; -#else -static const char gCuccoChickShadowDL[] __attribute__((aligned (2))) = dgCuccoChickShadowDL; -#endif - +#include "align_asset_macro.h" + +#define dgCuccoChickBodyTex "__OTR__objects/object_nwc/gCuccoChickBodyTex" +static const ALIGN_ASSET(2) char gCuccoChickBodyTex[] = dgCuccoChickBodyTex; + +#define dgCuccoChickEyeTex "__OTR__objects/object_nwc/gCuccoChickEyeTex" +static const ALIGN_ASSET(2) char gCuccoChickEyeTex[] = dgCuccoChickEyeTex; + +#define dgCuccoChickBeakTex "__OTR__objects/object_nwc/gCuccoChickBeakTex" +static const ALIGN_ASSET(2) char gCuccoChickBeakTex[] = dgCuccoChickBeakTex; + +#define dgCuccoChickSetupBodyDL "__OTR__objects/object_nwc/gCuccoChickSetupBodyDL" +static const ALIGN_ASSET(2) char gCuccoChickSetupBodyDL[] = dgCuccoChickSetupBodyDL; + +#define dgCuccoChickBodyDL "__OTR__objects/object_nwc/gCuccoChickBodyDL" +static const ALIGN_ASSET(2) char gCuccoChickBodyDL[] = dgCuccoChickBodyDL; + +#define dgCuccoChickSetupEyeDL "__OTR__objects/object_nwc/gCuccoChickSetupEyeDL" +static const ALIGN_ASSET(2) char gCuccoChickSetupEyeDL[] = dgCuccoChickSetupEyeDL; + +#define dgCuccoChickEyesDL "__OTR__objects/object_nwc/gCuccoChickEyesDL" +static const ALIGN_ASSET(2) char gCuccoChickEyesDL[] = dgCuccoChickEyesDL; + +#define dgCuccoChickSetupBeakDL "__OTR__objects/object_nwc/gCuccoChickSetupBeakDL" +static const ALIGN_ASSET(2) char gCuccoChickSetupBeakDL[] = dgCuccoChickSetupBeakDL; + +#define dgCuccoChickBeakDL "__OTR__objects/object_nwc/gCuccoChickBeakDL" +static const ALIGN_ASSET(2) char gCuccoChickBeakDL[] = dgCuccoChickBeakDL; + +#define dgCuccoChickSetupShadowDL "__OTR__objects/object_nwc/gCuccoChickSetupShadowDL" +static const ALIGN_ASSET(2) char gCuccoChickSetupShadowDL[] = dgCuccoChickSetupShadowDL; + +#define dgCuccoChickShadowDL "__OTR__objects/object_nwc/gCuccoChickShadowDL" +static const ALIGN_ASSET(2) char gCuccoChickShadowDL[] = dgCuccoChickShadowDL; \ No newline at end of file diff --git a/soh/assets/objects/object_ny/object_ny.h b/soh/assets/objects/object_ny/object_ny.h index c2536ff57..251262591 100644 --- a/soh/assets/objects/object_ny/object_ny.h +++ b/soh/assets/objects/object_ny/object_ny.h @@ -1,44 +1,21 @@ #pragma once -#define dgEnNyRockBodyTex "__OTR__objects/object_ny/gEnNyRockBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnNyRockBodyTex[] = dgEnNyRockBodyTex; -#else -static const char gEnNyRockBodyTex[] __attribute__((aligned (2))) = dgEnNyRockBodyTex; -#endif - -#define dgEnNySpikeTex "__OTR__objects/object_ny/gEnNySpikeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnNySpikeTex[] = dgEnNySpikeTex; -#else -static const char gEnNySpikeTex[] __attribute__((aligned (2))) = dgEnNySpikeTex; -#endif - -#define dgEnNyMetalBodyTex "__OTR__objects/object_ny/gEnNyMetalBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnNyMetalBodyTex[] = dgEnNyMetalBodyTex; -#else -static const char gEnNyMetalBodyTex[] __attribute__((aligned (2))) = dgEnNyMetalBodyTex; -#endif - -#define dgEnNyRockBodyDL "__OTR__objects/object_ny/gEnNyRockBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnNyRockBodyDL[] = dgEnNyRockBodyDL; -#else -static const char gEnNyRockBodyDL[] __attribute__((aligned (2))) = dgEnNyRockBodyDL; -#endif - -#define dgEnNyMetalBodyDL "__OTR__objects/object_ny/gEnNyMetalBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnNyMetalBodyDL[] = dgEnNyMetalBodyDL; -#else -static const char gEnNyMetalBodyDL[] __attribute__((aligned (2))) = dgEnNyMetalBodyDL; -#endif - -#define dgEnNySpikeDL "__OTR__objects/object_ny/gEnNySpikeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnNySpikeDL[] = dgEnNySpikeDL; -#else -static const char gEnNySpikeDL[] __attribute__((aligned (2))) = dgEnNySpikeDL; -#endif - +#include "align_asset_macro.h" + +#define dgEnNyRockBodyTex "__OTR__objects/object_ny/gEnNyRockBodyTex" +static const ALIGN_ASSET(2) char gEnNyRockBodyTex[] = dgEnNyRockBodyTex; + +#define dgEnNySpikeTex "__OTR__objects/object_ny/gEnNySpikeTex" +static const ALIGN_ASSET(2) char gEnNySpikeTex[] = dgEnNySpikeTex; + +#define dgEnNyMetalBodyTex "__OTR__objects/object_ny/gEnNyMetalBodyTex" +static const ALIGN_ASSET(2) char gEnNyMetalBodyTex[] = dgEnNyMetalBodyTex; + +#define dgEnNyRockBodyDL "__OTR__objects/object_ny/gEnNyRockBodyDL" +static const ALIGN_ASSET(2) char gEnNyRockBodyDL[] = dgEnNyRockBodyDL; + +#define dgEnNyMetalBodyDL "__OTR__objects/object_ny/gEnNyMetalBodyDL" +static const ALIGN_ASSET(2) char gEnNyMetalBodyDL[] = dgEnNyMetalBodyDL; + +#define dgEnNySpikeDL "__OTR__objects/object_ny/gEnNySpikeDL" +static const ALIGN_ASSET(2) char gEnNySpikeDL[] = dgEnNySpikeDL; \ No newline at end of file diff --git a/soh/assets/objects/object_oA1/object_oA1.h b/soh/assets/objects/object_oA1/object_oA1.h index 4bc2f7c9a..0fb6bbc62 100644 --- a/soh/assets/objects/object_oA1/object_oA1.h +++ b/soh/assets/objects/object_oA1/object_oA1.h @@ -1,191 +1,84 @@ #pragma once -#define dobject_oA1_Skel_00000260 "__OTR__objects/object_oA1/object_oA1_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Skel_00000260[] = dobject_oA1_Skel_00000260; -#else -static const char object_oA1_Skel_00000260[] __attribute__((aligned (2))) = dobject_oA1_Skel_00000260; -#endif - -#define dobject_oA1_DL_00002228 "__OTR__objects/object_oA1/object_oA1_DL_00002228" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00002228[] = dobject_oA1_DL_00002228; -#else -static const char object_oA1_DL_00002228[] __attribute__((aligned (2))) = dobject_oA1_DL_00002228; -#endif - -#define dobject_oA1_DL_000024C8 "__OTR__objects/object_oA1/object_oA1_DL_000024C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_000024C8[] = dobject_oA1_DL_000024C8; -#else -static const char object_oA1_DL_000024C8[] __attribute__((aligned (2))) = dobject_oA1_DL_000024C8; -#endif - -#define dobject_oA1_DL_00002640 "__OTR__objects/object_oA1/object_oA1_DL_00002640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00002640[] = dobject_oA1_DL_00002640; -#else -static const char object_oA1_DL_00002640[] __attribute__((aligned (2))) = dobject_oA1_DL_00002640; -#endif - -#define dobject_oA1_DL_000029D8 "__OTR__objects/object_oA1/object_oA1_DL_000029D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_000029D8[] = dobject_oA1_DL_000029D8; -#else -static const char object_oA1_DL_000029D8[] __attribute__((aligned (2))) = dobject_oA1_DL_000029D8; -#endif - -#define dobject_oA1_DL_00002AF0 "__OTR__objects/object_oA1/object_oA1_DL_00002AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00002AF0[] = dobject_oA1_DL_00002AF0; -#else -static const char object_oA1_DL_00002AF0[] __attribute__((aligned (2))) = dobject_oA1_DL_00002AF0; -#endif - -#define dobject_oA1_DL_00002BE8 "__OTR__objects/object_oA1/object_oA1_DL_00002BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00002BE8[] = dobject_oA1_DL_00002BE8; -#else -static const char object_oA1_DL_00002BE8[] __attribute__((aligned (2))) = dobject_oA1_DL_00002BE8; -#endif - -#define dobject_oA1_DL_00002D18 "__OTR__objects/object_oA1/object_oA1_DL_00002D18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00002D18[] = dobject_oA1_DL_00002D18; -#else -static const char object_oA1_DL_00002D18[] __attribute__((aligned (2))) = dobject_oA1_DL_00002D18; -#endif - -#define dobject_oA1_DL_00002E50 "__OTR__objects/object_oA1/object_oA1_DL_00002E50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00002E50[] = dobject_oA1_DL_00002E50; -#else -static const char object_oA1_DL_00002E50[] __attribute__((aligned (2))) = dobject_oA1_DL_00002E50; -#endif - -#define dobject_oA1_DL_00002FC0 "__OTR__objects/object_oA1/object_oA1_DL_00002FC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00002FC0[] = dobject_oA1_DL_00002FC0; -#else -static const char object_oA1_DL_00002FC0[] __attribute__((aligned (2))) = dobject_oA1_DL_00002FC0; -#endif - -#define dobject_oA1_DL_00003090 "__OTR__objects/object_oA1/object_oA1_DL_00003090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00003090[] = dobject_oA1_DL_00003090; -#else -static const char object_oA1_DL_00003090[] __attribute__((aligned (2))) = dobject_oA1_DL_00003090; -#endif - -#define dobject_oA1_DL_000031A8 "__OTR__objects/object_oA1/object_oA1_DL_000031A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_000031A8[] = dobject_oA1_DL_000031A8; -#else -static const char object_oA1_DL_000031A8[] __attribute__((aligned (2))) = dobject_oA1_DL_000031A8; -#endif - -#define dobject_oA1_DL_000032A0 "__OTR__objects/object_oA1/object_oA1_DL_000032A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_000032A0[] = dobject_oA1_DL_000032A0; -#else -static const char object_oA1_DL_000032A0[] __attribute__((aligned (2))) = dobject_oA1_DL_000032A0; -#endif - -#define dobject_oA1_DL_000033D0 "__OTR__objects/object_oA1/object_oA1_DL_000033D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_000033D0[] = dobject_oA1_DL_000033D0; -#else -static const char object_oA1_DL_000033D0[] __attribute__((aligned (2))) = dobject_oA1_DL_000033D0; -#endif - -#define dobject_oA1_DL_00003508 "__OTR__objects/object_oA1/object_oA1_DL_00003508" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00003508[] = dobject_oA1_DL_00003508; -#else -static const char object_oA1_DL_00003508[] __attribute__((aligned (2))) = dobject_oA1_DL_00003508; -#endif - -#define dobject_oA1_DL_00003678 "__OTR__objects/object_oA1/object_oA1_DL_00003678" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_DL_00003678[] = dobject_oA1_DL_00003678; -#else -static const char object_oA1_DL_00003678[] __attribute__((aligned (2))) = dobject_oA1_DL_00003678; -#endif - -#define dobject_oA1_TLUT_00003748 "__OTR__objects/object_oA1/object_oA1_TLUT_00003748" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_TLUT_00003748[] = dobject_oA1_TLUT_00003748; -#else -static const char object_oA1_TLUT_00003748[] __attribute__((aligned (2))) = dobject_oA1_TLUT_00003748; -#endif - -#define dobject_oA1_Tex_00003948 "__OTR__objects/object_oA1/object_oA1_Tex_00003948" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00003948[] = dobject_oA1_Tex_00003948; -#else -static const char object_oA1_Tex_00003948[] __attribute__((aligned (2))) = dobject_oA1_Tex_00003948; -#endif - -#define dobject_oA1_Tex_00003D48 "__OTR__objects/object_oA1/object_oA1_Tex_00003D48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00003D48[] = dobject_oA1_Tex_00003D48; -#else -static const char object_oA1_Tex_00003D48[] __attribute__((aligned (2))) = dobject_oA1_Tex_00003D48; -#endif - -#define dobject_oA1_Tex_00003E48 "__OTR__objects/object_oA1/object_oA1_Tex_00003E48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00003E48[] = dobject_oA1_Tex_00003E48; -#else -static const char object_oA1_Tex_00003E48[] __attribute__((aligned (2))) = dobject_oA1_Tex_00003E48; -#endif - -#define dobject_oA1_Tex_00003E88 "__OTR__objects/object_oA1/object_oA1_Tex_00003E88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00003E88[] = dobject_oA1_Tex_00003E88; -#else -static const char object_oA1_Tex_00003E88[] __attribute__((aligned (2))) = dobject_oA1_Tex_00003E88; -#endif - -#define dobject_oA1_Tex_00003F88 "__OTR__objects/object_oA1/object_oA1_Tex_00003F88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00003F88[] = dobject_oA1_Tex_00003F88; -#else -static const char object_oA1_Tex_00003F88[] __attribute__((aligned (2))) = dobject_oA1_Tex_00003F88; -#endif - -#define dobject_oA1_Tex_00004088 "__OTR__objects/object_oA1/object_oA1_Tex_00004088" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00004088[] = dobject_oA1_Tex_00004088; -#else -static const char object_oA1_Tex_00004088[] __attribute__((aligned (2))) = dobject_oA1_Tex_00004088; -#endif - -#define dobject_oA1_Tex_00004188 "__OTR__objects/object_oA1/object_oA1_Tex_00004188" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00004188[] = dobject_oA1_Tex_00004188; -#else -static const char object_oA1_Tex_00004188[] __attribute__((aligned (2))) = dobject_oA1_Tex_00004188; -#endif - -#define dobject_oA1_Tex_00004208 "__OTR__objects/object_oA1/object_oA1_Tex_00004208" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00004208[] = dobject_oA1_Tex_00004208; -#else -static const char object_oA1_Tex_00004208[] __attribute__((aligned (2))) = dobject_oA1_Tex_00004208; -#endif - -#define dobject_oA1_Tex_00004308 "__OTR__objects/object_oA1/object_oA1_Tex_00004308" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00004308[] = dobject_oA1_Tex_00004308; -#else -static const char object_oA1_Tex_00004308[] __attribute__((aligned (2))) = dobject_oA1_Tex_00004308; -#endif - -#define dobject_oA1_Tex_00004508 "__OTR__objects/object_oA1/object_oA1_Tex_00004508" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA1_Tex_00004508[] = dobject_oA1_Tex_00004508; -#else -static const char object_oA1_Tex_00004508[] __attribute__((aligned (2))) = dobject_oA1_Tex_00004508; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA1_Skel_00000260 "__OTR__objects/object_oA1/object_oA1_Skel_00000260" +static const ALIGN_ASSET(2) char object_oA1_Skel_00000260[] = dobject_oA1_Skel_00000260; + +#define dobject_oA1_DL_00002228 "__OTR__objects/object_oA1/object_oA1_DL_00002228" +static const ALIGN_ASSET(2) char object_oA1_DL_00002228[] = dobject_oA1_DL_00002228; + +#define dobject_oA1_DL_000024C8 "__OTR__objects/object_oA1/object_oA1_DL_000024C8" +static const ALIGN_ASSET(2) char object_oA1_DL_000024C8[] = dobject_oA1_DL_000024C8; + +#define dobject_oA1_DL_00002640 "__OTR__objects/object_oA1/object_oA1_DL_00002640" +static const ALIGN_ASSET(2) char object_oA1_DL_00002640[] = dobject_oA1_DL_00002640; + +#define dobject_oA1_DL_000029D8 "__OTR__objects/object_oA1/object_oA1_DL_000029D8" +static const ALIGN_ASSET(2) char object_oA1_DL_000029D8[] = dobject_oA1_DL_000029D8; + +#define dobject_oA1_DL_00002AF0 "__OTR__objects/object_oA1/object_oA1_DL_00002AF0" +static const ALIGN_ASSET(2) char object_oA1_DL_00002AF0[] = dobject_oA1_DL_00002AF0; + +#define dobject_oA1_DL_00002BE8 "__OTR__objects/object_oA1/object_oA1_DL_00002BE8" +static const ALIGN_ASSET(2) char object_oA1_DL_00002BE8[] = dobject_oA1_DL_00002BE8; + +#define dobject_oA1_DL_00002D18 "__OTR__objects/object_oA1/object_oA1_DL_00002D18" +static const ALIGN_ASSET(2) char object_oA1_DL_00002D18[] = dobject_oA1_DL_00002D18; + +#define dobject_oA1_DL_00002E50 "__OTR__objects/object_oA1/object_oA1_DL_00002E50" +static const ALIGN_ASSET(2) char object_oA1_DL_00002E50[] = dobject_oA1_DL_00002E50; + +#define dobject_oA1_DL_00002FC0 "__OTR__objects/object_oA1/object_oA1_DL_00002FC0" +static const ALIGN_ASSET(2) char object_oA1_DL_00002FC0[] = dobject_oA1_DL_00002FC0; + +#define dobject_oA1_DL_00003090 "__OTR__objects/object_oA1/object_oA1_DL_00003090" +static const ALIGN_ASSET(2) char object_oA1_DL_00003090[] = dobject_oA1_DL_00003090; + +#define dobject_oA1_DL_000031A8 "__OTR__objects/object_oA1/object_oA1_DL_000031A8" +static const ALIGN_ASSET(2) char object_oA1_DL_000031A8[] = dobject_oA1_DL_000031A8; + +#define dobject_oA1_DL_000032A0 "__OTR__objects/object_oA1/object_oA1_DL_000032A0" +static const ALIGN_ASSET(2) char object_oA1_DL_000032A0[] = dobject_oA1_DL_000032A0; + +#define dobject_oA1_DL_000033D0 "__OTR__objects/object_oA1/object_oA1_DL_000033D0" +static const ALIGN_ASSET(2) char object_oA1_DL_000033D0[] = dobject_oA1_DL_000033D0; + +#define dobject_oA1_DL_00003508 "__OTR__objects/object_oA1/object_oA1_DL_00003508" +static const ALIGN_ASSET(2) char object_oA1_DL_00003508[] = dobject_oA1_DL_00003508; + +#define dobject_oA1_DL_00003678 "__OTR__objects/object_oA1/object_oA1_DL_00003678" +static const ALIGN_ASSET(2) char object_oA1_DL_00003678[] = dobject_oA1_DL_00003678; + +#define dobject_oA1_TLUT_00003748 "__OTR__objects/object_oA1/object_oA1_TLUT_00003748" +static const ALIGN_ASSET(2) char object_oA1_TLUT_00003748[] = dobject_oA1_TLUT_00003748; + +#define dobject_oA1_Tex_00003948 "__OTR__objects/object_oA1/object_oA1_Tex_00003948" +static const ALIGN_ASSET(2) char object_oA1_Tex_00003948[] = dobject_oA1_Tex_00003948; + +#define dobject_oA1_Tex_00003D48 "__OTR__objects/object_oA1/object_oA1_Tex_00003D48" +static const ALIGN_ASSET(2) char object_oA1_Tex_00003D48[] = dobject_oA1_Tex_00003D48; + +#define dobject_oA1_Tex_00003E48 "__OTR__objects/object_oA1/object_oA1_Tex_00003E48" +static const ALIGN_ASSET(2) char object_oA1_Tex_00003E48[] = dobject_oA1_Tex_00003E48; + +#define dobject_oA1_Tex_00003E88 "__OTR__objects/object_oA1/object_oA1_Tex_00003E88" +static const ALIGN_ASSET(2) char object_oA1_Tex_00003E88[] = dobject_oA1_Tex_00003E88; + +#define dobject_oA1_Tex_00003F88 "__OTR__objects/object_oA1/object_oA1_Tex_00003F88" +static const ALIGN_ASSET(2) char object_oA1_Tex_00003F88[] = dobject_oA1_Tex_00003F88; + +#define dobject_oA1_Tex_00004088 "__OTR__objects/object_oA1/object_oA1_Tex_00004088" +static const ALIGN_ASSET(2) char object_oA1_Tex_00004088[] = dobject_oA1_Tex_00004088; + +#define dobject_oA1_Tex_00004188 "__OTR__objects/object_oA1/object_oA1_Tex_00004188" +static const ALIGN_ASSET(2) char object_oA1_Tex_00004188[] = dobject_oA1_Tex_00004188; + +#define dobject_oA1_Tex_00004208 "__OTR__objects/object_oA1/object_oA1_Tex_00004208" +static const ALIGN_ASSET(2) char object_oA1_Tex_00004208[] = dobject_oA1_Tex_00004208; + +#define dobject_oA1_Tex_00004308 "__OTR__objects/object_oA1/object_oA1_Tex_00004308" +static const ALIGN_ASSET(2) char object_oA1_Tex_00004308[] = dobject_oA1_Tex_00004308; + +#define dobject_oA1_Tex_00004508 "__OTR__objects/object_oA1/object_oA1_Tex_00004508" +static const ALIGN_ASSET(2) char object_oA1_Tex_00004508[] = dobject_oA1_Tex_00004508; \ No newline at end of file diff --git a/soh/assets/objects/object_oA10/object_oA10.h b/soh/assets/objects/object_oA10/object_oA10.h index 599ead550..ab34c52e7 100644 --- a/soh/assets/objects/object_oA10/object_oA10.h +++ b/soh/assets/objects/object_oA10/object_oA10.h @@ -1,170 +1,75 @@ #pragma once -#define dobject_oA10_Skel_00000260 "__OTR__objects/object_oA10/object_oA10_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Skel_00000260[] = dobject_oA10_Skel_00000260; -#else -static const char object_oA10_Skel_00000260[] __attribute__((aligned (2))) = dobject_oA10_Skel_00000260; -#endif - -#define dobject_oA10_DL_00001878 "__OTR__objects/object_oA10/object_oA10_DL_00001878" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00001878[] = dobject_oA10_DL_00001878; -#else -static const char object_oA10_DL_00001878[] __attribute__((aligned (2))) = dobject_oA10_DL_00001878; -#endif - -#define dobject_oA10_DL_00001990 "__OTR__objects/object_oA10/object_oA10_DL_00001990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00001990[] = dobject_oA10_DL_00001990; -#else -static const char object_oA10_DL_00001990[] __attribute__((aligned (2))) = dobject_oA10_DL_00001990; -#endif - -#define dobject_oA10_DL_00001AE0 "__OTR__objects/object_oA10/object_oA10_DL_00001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00001AE0[] = dobject_oA10_DL_00001AE0; -#else -static const char object_oA10_DL_00001AE0[] __attribute__((aligned (2))) = dobject_oA10_DL_00001AE0; -#endif - -#define dobject_oA10_DL_00001D48 "__OTR__objects/object_oA10/object_oA10_DL_00001D48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00001D48[] = dobject_oA10_DL_00001D48; -#else -static const char object_oA10_DL_00001D48[] __attribute__((aligned (2))) = dobject_oA10_DL_00001D48; -#endif - -#define dobject_oA10_DL_00001E68 "__OTR__objects/object_oA10/object_oA10_DL_00001E68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00001E68[] = dobject_oA10_DL_00001E68; -#else -static const char object_oA10_DL_00001E68[] __attribute__((aligned (2))) = dobject_oA10_DL_00001E68; -#endif - -#define dobject_oA10_DL_00001F50 "__OTR__objects/object_oA10/object_oA10_DL_00001F50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00001F50[] = dobject_oA10_DL_00001F50; -#else -static const char object_oA10_DL_00001F50[] __attribute__((aligned (2))) = dobject_oA10_DL_00001F50; -#endif - -#define dobject_oA10_DL_00001FF8 "__OTR__objects/object_oA10/object_oA10_DL_00001FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00001FF8[] = dobject_oA10_DL_00001FF8; -#else -static const char object_oA10_DL_00001FF8[] __attribute__((aligned (2))) = dobject_oA10_DL_00001FF8; -#endif - -#define dobject_oA10_DL_00002088 "__OTR__objects/object_oA10/object_oA10_DL_00002088" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00002088[] = dobject_oA10_DL_00002088; -#else -static const char object_oA10_DL_00002088[] __attribute__((aligned (2))) = dobject_oA10_DL_00002088; -#endif - -#define dobject_oA10_DL_00002170 "__OTR__objects/object_oA10/object_oA10_DL_00002170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00002170[] = dobject_oA10_DL_00002170; -#else -static const char object_oA10_DL_00002170[] __attribute__((aligned (2))) = dobject_oA10_DL_00002170; -#endif - -#define dobject_oA10_DL_00002220 "__OTR__objects/object_oA10/object_oA10_DL_00002220" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00002220[] = dobject_oA10_DL_00002220; -#else -static const char object_oA10_DL_00002220[] __attribute__((aligned (2))) = dobject_oA10_DL_00002220; -#endif - -#define dobject_oA10_DL_000022B8 "__OTR__objects/object_oA10/object_oA10_DL_000022B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_000022B8[] = dobject_oA10_DL_000022B8; -#else -static const char object_oA10_DL_000022B8[] __attribute__((aligned (2))) = dobject_oA10_DL_000022B8; -#endif - -#define dobject_oA10_DL_000023A0 "__OTR__objects/object_oA10/object_oA10_DL_000023A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_000023A0[] = dobject_oA10_DL_000023A0; -#else -static const char object_oA10_DL_000023A0[] __attribute__((aligned (2))) = dobject_oA10_DL_000023A0; -#endif - -#define dobject_oA10_DL_00002448 "__OTR__objects/object_oA10/object_oA10_DL_00002448" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_00002448[] = dobject_oA10_DL_00002448; -#else -static const char object_oA10_DL_00002448[] __attribute__((aligned (2))) = dobject_oA10_DL_00002448; -#endif - -#define dobject_oA10_DL_000024D8 "__OTR__objects/object_oA10/object_oA10_DL_000024D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_000024D8[] = dobject_oA10_DL_000024D8; -#else -static const char object_oA10_DL_000024D8[] __attribute__((aligned (2))) = dobject_oA10_DL_000024D8; -#endif - -#define dobject_oA10_DL_000025C0 "__OTR__objects/object_oA10/object_oA10_DL_000025C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_DL_000025C0[] = dobject_oA10_DL_000025C0; -#else -static const char object_oA10_DL_000025C0[] __attribute__((aligned (2))) = dobject_oA10_DL_000025C0; -#endif - -#define dobject_oA10_Tex_00002670 "__OTR__objects/object_oA10/object_oA10_Tex_00002670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Tex_00002670[] = dobject_oA10_Tex_00002670; -#else -static const char object_oA10_Tex_00002670[] __attribute__((aligned (2))) = dobject_oA10_Tex_00002670; -#endif - -#define dobject_oA10_Tex_00002770 "__OTR__objects/object_oA10/object_oA10_Tex_00002770" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Tex_00002770[] = dobject_oA10_Tex_00002770; -#else -static const char object_oA10_Tex_00002770[] __attribute__((aligned (2))) = dobject_oA10_Tex_00002770; -#endif - -#define dobject_oA10_Tex_000027F0 "__OTR__objects/object_oA10/object_oA10_Tex_000027F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Tex_000027F0[] = dobject_oA10_Tex_000027F0; -#else -static const char object_oA10_Tex_000027F0[] __attribute__((aligned (2))) = dobject_oA10_Tex_000027F0; -#endif - -#define dobject_oA10_Tex_00002830 "__OTR__objects/object_oA10/object_oA10_Tex_00002830" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Tex_00002830[] = dobject_oA10_Tex_00002830; -#else -static const char object_oA10_Tex_00002830[] __attribute__((aligned (2))) = dobject_oA10_Tex_00002830; -#endif - -#define dobject_oA10_Tex_00002930 "__OTR__objects/object_oA10/object_oA10_Tex_00002930" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Tex_00002930[] = dobject_oA10_Tex_00002930; -#else -static const char object_oA10_Tex_00002930[] __attribute__((aligned (2))) = dobject_oA10_Tex_00002930; -#endif - -#define dobject_oA10_Tex_00002D30 "__OTR__objects/object_oA10/object_oA10_Tex_00002D30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Tex_00002D30[] = dobject_oA10_Tex_00002D30; -#else -static const char object_oA10_Tex_00002D30[] __attribute__((aligned (2))) = dobject_oA10_Tex_00002D30; -#endif - -#define dobject_oA10_Tex_00002DB0 "__OTR__objects/object_oA10/object_oA10_Tex_00002DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Tex_00002DB0[] = dobject_oA10_Tex_00002DB0; -#else -static const char object_oA10_Tex_00002DB0[] __attribute__((aligned (2))) = dobject_oA10_Tex_00002DB0; -#endif - -#define dobject_oA10_Tex_00002E30 "__OTR__objects/object_oA10/object_oA10_Tex_00002E30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA10_Tex_00002E30[] = dobject_oA10_Tex_00002E30; -#else -static const char object_oA10_Tex_00002E30[] __attribute__((aligned (2))) = dobject_oA10_Tex_00002E30; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA10_Skel_00000260 "__OTR__objects/object_oA10/object_oA10_Skel_00000260" +static const ALIGN_ASSET(2) char object_oA10_Skel_00000260[] = dobject_oA10_Skel_00000260; + +#define dobject_oA10_DL_00001878 "__OTR__objects/object_oA10/object_oA10_DL_00001878" +static const ALIGN_ASSET(2) char object_oA10_DL_00001878[] = dobject_oA10_DL_00001878; + +#define dobject_oA10_DL_00001990 "__OTR__objects/object_oA10/object_oA10_DL_00001990" +static const ALIGN_ASSET(2) char object_oA10_DL_00001990[] = dobject_oA10_DL_00001990; + +#define dobject_oA10_DL_00001AE0 "__OTR__objects/object_oA10/object_oA10_DL_00001AE0" +static const ALIGN_ASSET(2) char object_oA10_DL_00001AE0[] = dobject_oA10_DL_00001AE0; + +#define dobject_oA10_DL_00001D48 "__OTR__objects/object_oA10/object_oA10_DL_00001D48" +static const ALIGN_ASSET(2) char object_oA10_DL_00001D48[] = dobject_oA10_DL_00001D48; + +#define dobject_oA10_DL_00001E68 "__OTR__objects/object_oA10/object_oA10_DL_00001E68" +static const ALIGN_ASSET(2) char object_oA10_DL_00001E68[] = dobject_oA10_DL_00001E68; + +#define dobject_oA10_DL_00001F50 "__OTR__objects/object_oA10/object_oA10_DL_00001F50" +static const ALIGN_ASSET(2) char object_oA10_DL_00001F50[] = dobject_oA10_DL_00001F50; + +#define dobject_oA10_DL_00001FF8 "__OTR__objects/object_oA10/object_oA10_DL_00001FF8" +static const ALIGN_ASSET(2) char object_oA10_DL_00001FF8[] = dobject_oA10_DL_00001FF8; + +#define dobject_oA10_DL_00002088 "__OTR__objects/object_oA10/object_oA10_DL_00002088" +static const ALIGN_ASSET(2) char object_oA10_DL_00002088[] = dobject_oA10_DL_00002088; + +#define dobject_oA10_DL_00002170 "__OTR__objects/object_oA10/object_oA10_DL_00002170" +static const ALIGN_ASSET(2) char object_oA10_DL_00002170[] = dobject_oA10_DL_00002170; + +#define dobject_oA10_DL_00002220 "__OTR__objects/object_oA10/object_oA10_DL_00002220" +static const ALIGN_ASSET(2) char object_oA10_DL_00002220[] = dobject_oA10_DL_00002220; + +#define dobject_oA10_DL_000022B8 "__OTR__objects/object_oA10/object_oA10_DL_000022B8" +static const ALIGN_ASSET(2) char object_oA10_DL_000022B8[] = dobject_oA10_DL_000022B8; + +#define dobject_oA10_DL_000023A0 "__OTR__objects/object_oA10/object_oA10_DL_000023A0" +static const ALIGN_ASSET(2) char object_oA10_DL_000023A0[] = dobject_oA10_DL_000023A0; + +#define dobject_oA10_DL_00002448 "__OTR__objects/object_oA10/object_oA10_DL_00002448" +static const ALIGN_ASSET(2) char object_oA10_DL_00002448[] = dobject_oA10_DL_00002448; + +#define dobject_oA10_DL_000024D8 "__OTR__objects/object_oA10/object_oA10_DL_000024D8" +static const ALIGN_ASSET(2) char object_oA10_DL_000024D8[] = dobject_oA10_DL_000024D8; + +#define dobject_oA10_DL_000025C0 "__OTR__objects/object_oA10/object_oA10_DL_000025C0" +static const ALIGN_ASSET(2) char object_oA10_DL_000025C0[] = dobject_oA10_DL_000025C0; + +#define dobject_oA10_Tex_00002670 "__OTR__objects/object_oA10/object_oA10_Tex_00002670" +static const ALIGN_ASSET(2) char object_oA10_Tex_00002670[] = dobject_oA10_Tex_00002670; + +#define dobject_oA10_Tex_00002770 "__OTR__objects/object_oA10/object_oA10_Tex_00002770" +static const ALIGN_ASSET(2) char object_oA10_Tex_00002770[] = dobject_oA10_Tex_00002770; + +#define dobject_oA10_Tex_000027F0 "__OTR__objects/object_oA10/object_oA10_Tex_000027F0" +static const ALIGN_ASSET(2) char object_oA10_Tex_000027F0[] = dobject_oA10_Tex_000027F0; + +#define dobject_oA10_Tex_00002830 "__OTR__objects/object_oA10/object_oA10_Tex_00002830" +static const ALIGN_ASSET(2) char object_oA10_Tex_00002830[] = dobject_oA10_Tex_00002830; + +#define dobject_oA10_Tex_00002930 "__OTR__objects/object_oA10/object_oA10_Tex_00002930" +static const ALIGN_ASSET(2) char object_oA10_Tex_00002930[] = dobject_oA10_Tex_00002930; + +#define dobject_oA10_Tex_00002D30 "__OTR__objects/object_oA10/object_oA10_Tex_00002D30" +static const ALIGN_ASSET(2) char object_oA10_Tex_00002D30[] = dobject_oA10_Tex_00002D30; + +#define dobject_oA10_Tex_00002DB0 "__OTR__objects/object_oA10/object_oA10_Tex_00002DB0" +static const ALIGN_ASSET(2) char object_oA10_Tex_00002DB0[] = dobject_oA10_Tex_00002DB0; + +#define dobject_oA10_Tex_00002E30 "__OTR__objects/object_oA10/object_oA10_Tex_00002E30" +static const ALIGN_ASSET(2) char object_oA10_Tex_00002E30[] = dobject_oA10_Tex_00002E30; \ No newline at end of file diff --git a/soh/assets/objects/object_oA11/object_oA11.h b/soh/assets/objects/object_oA11/object_oA11.h index e874a3728..699647e5d 100644 --- a/soh/assets/objects/object_oA11/object_oA11.h +++ b/soh/assets/objects/object_oA11/object_oA11.h @@ -1,79 +1,36 @@ #pragma once -#define dobject_oA11_DL_000A58 "__OTR__objects/object_oA11/object_oA11_DL_000A58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_DL_000A58[] = dobject_oA11_DL_000A58; -#else -static const char object_oA11_DL_000A58[] __attribute__((aligned (2))) = dobject_oA11_DL_000A58; -#endif - -#define dobject_oA11_DL_000BA8 "__OTR__objects/object_oA11/object_oA11_DL_000BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_DL_000BA8[] = dobject_oA11_DL_000BA8; -#else -static const char object_oA11_DL_000BA8[] __attribute__((aligned (2))) = dobject_oA11_DL_000BA8; -#endif - -#define dobject_oA11_DL_000C40 "__OTR__objects/object_oA11/object_oA11_DL_000C40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_DL_000C40[] = dobject_oA11_DL_000C40; -#else -static const char object_oA11_DL_000C40[] __attribute__((aligned (2))) = dobject_oA11_DL_000C40; -#endif - -#define dobject_oA11_DL_000D28 "__OTR__objects/object_oA11/object_oA11_DL_000D28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_DL_000D28[] = dobject_oA11_DL_000D28; -#else -static const char object_oA11_DL_000D28[] __attribute__((aligned (2))) = dobject_oA11_DL_000D28; -#endif - -#define dobject_oA11_DL_000DD0 "__OTR__objects/object_oA11/object_oA11_DL_000DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_DL_000DD0[] = dobject_oA11_DL_000DD0; -#else -static const char object_oA11_DL_000DD0[] __attribute__((aligned (2))) = dobject_oA11_DL_000DD0; -#endif - -#define dobject_oA11_DL_000EF0 "__OTR__objects/object_oA11/object_oA11_DL_000EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_DL_000EF0[] = dobject_oA11_DL_000EF0; -#else -static const char object_oA11_DL_000EF0[] __attribute__((aligned (2))) = dobject_oA11_DL_000EF0; -#endif - -#define dobject_oA11_DL_000FD8 "__OTR__objects/object_oA11/object_oA11_DL_000FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_DL_000FD8[] = dobject_oA11_DL_000FD8; -#else -static const char object_oA11_DL_000FD8[] __attribute__((aligned (2))) = dobject_oA11_DL_000FD8; -#endif - -#define dobject_oA11_Tex_001080 "__OTR__objects/object_oA11/object_oA11_Tex_001080" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_Tex_001080[] = dobject_oA11_Tex_001080; -#else -static const char object_oA11_Tex_001080[] __attribute__((aligned (2))) = dobject_oA11_Tex_001080; -#endif - -#define dobject_oA11_Tex_001100 "__OTR__objects/object_oA11/object_oA11_Tex_001100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_Tex_001100[] = dobject_oA11_Tex_001100; -#else -static const char object_oA11_Tex_001100[] __attribute__((aligned (2))) = dobject_oA11_Tex_001100; -#endif - -#define dobject_oA11_Tex_001140 "__OTR__objects/object_oA11/object_oA11_Tex_001140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_Tex_001140[] = dobject_oA11_Tex_001140; -#else -static const char object_oA11_Tex_001140[] __attribute__((aligned (2))) = dobject_oA11_Tex_001140; -#endif - -#define dobject_oA11_Tex_001540 "__OTR__objects/object_oA11/object_oA11_Tex_001540" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA11_Tex_001540[] = dobject_oA11_Tex_001540; -#else -static const char object_oA11_Tex_001540[] __attribute__((aligned (2))) = dobject_oA11_Tex_001540; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA11_DL_000A58 "__OTR__objects/object_oA11/object_oA11_DL_000A58" +static const ALIGN_ASSET(2) char object_oA11_DL_000A58[] = dobject_oA11_DL_000A58; + +#define dobject_oA11_DL_000BA8 "__OTR__objects/object_oA11/object_oA11_DL_000BA8" +static const ALIGN_ASSET(2) char object_oA11_DL_000BA8[] = dobject_oA11_DL_000BA8; + +#define dobject_oA11_DL_000C40 "__OTR__objects/object_oA11/object_oA11_DL_000C40" +static const ALIGN_ASSET(2) char object_oA11_DL_000C40[] = dobject_oA11_DL_000C40; + +#define dobject_oA11_DL_000D28 "__OTR__objects/object_oA11/object_oA11_DL_000D28" +static const ALIGN_ASSET(2) char object_oA11_DL_000D28[] = dobject_oA11_DL_000D28; + +#define dobject_oA11_DL_000DD0 "__OTR__objects/object_oA11/object_oA11_DL_000DD0" +static const ALIGN_ASSET(2) char object_oA11_DL_000DD0[] = dobject_oA11_DL_000DD0; + +#define dobject_oA11_DL_000EF0 "__OTR__objects/object_oA11/object_oA11_DL_000EF0" +static const ALIGN_ASSET(2) char object_oA11_DL_000EF0[] = dobject_oA11_DL_000EF0; + +#define dobject_oA11_DL_000FD8 "__OTR__objects/object_oA11/object_oA11_DL_000FD8" +static const ALIGN_ASSET(2) char object_oA11_DL_000FD8[] = dobject_oA11_DL_000FD8; + +#define dobject_oA11_Tex_001080 "__OTR__objects/object_oA11/object_oA11_Tex_001080" +static const ALIGN_ASSET(2) char object_oA11_Tex_001080[] = dobject_oA11_Tex_001080; + +#define dobject_oA11_Tex_001100 "__OTR__objects/object_oA11/object_oA11_Tex_001100" +static const ALIGN_ASSET(2) char object_oA11_Tex_001100[] = dobject_oA11_Tex_001100; + +#define dobject_oA11_Tex_001140 "__OTR__objects/object_oA11/object_oA11_Tex_001140" +static const ALIGN_ASSET(2) char object_oA11_Tex_001140[] = dobject_oA11_Tex_001140; + +#define dobject_oA11_Tex_001540 "__OTR__objects/object_oA11/object_oA11_Tex_001540" +static const ALIGN_ASSET(2) char object_oA11_Tex_001540[] = dobject_oA11_Tex_001540; \ No newline at end of file diff --git a/soh/assets/objects/object_oA2/object_oA2.h b/soh/assets/objects/object_oA2/object_oA2.h index ea93a2e40..17d55d584 100644 --- a/soh/assets/objects/object_oA2/object_oA2.h +++ b/soh/assets/objects/object_oA2/object_oA2.h @@ -1,114 +1,51 @@ #pragma once -#define dobject_oA2_Skel_00000260 "__OTR__objects/object_oA2/object_oA2_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_Skel_00000260[] = dobject_oA2_Skel_00000260; -#else -static const char object_oA2_Skel_00000260[] __attribute__((aligned (2))) = dobject_oA2_Skel_00000260; -#endif - -#define dobject_oA2_DL_00000448 "__OTR__objects/object_oA2/object_oA2_DL_00000448" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00000448[] = dobject_oA2_DL_00000448; -#else -static const char object_oA2_DL_00000448[] __attribute__((aligned (2))) = dobject_oA2_DL_00000448; -#endif - -#define dobject_oA2_DL_00000818 "__OTR__objects/object_oA2/object_oA2_DL_00000818" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00000818[] = dobject_oA2_DL_00000818; -#else -static const char object_oA2_DL_00000818[] __attribute__((aligned (2))) = dobject_oA2_DL_00000818; -#endif - -#define dobject_oA2_DL_00000C38 "__OTR__objects/object_oA2/object_oA2_DL_00000C38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00000C38[] = dobject_oA2_DL_00000C38; -#else -static const char object_oA2_DL_00000C38[] __attribute__((aligned (2))) = dobject_oA2_DL_00000C38; -#endif - -#define dobject_oA2_DL_00000ED8 "__OTR__objects/object_oA2/object_oA2_DL_00000ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00000ED8[] = dobject_oA2_DL_00000ED8; -#else -static const char object_oA2_DL_00000ED8[] __attribute__((aligned (2))) = dobject_oA2_DL_00000ED8; -#endif - -#define dobject_oA2_DL_000012A8 "__OTR__objects/object_oA2/object_oA2_DL_000012A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_000012A8[] = dobject_oA2_DL_000012A8; -#else -static const char object_oA2_DL_000012A8[] __attribute__((aligned (2))) = dobject_oA2_DL_000012A8; -#endif - -#define dobject_oA2_DL_000016C8 "__OTR__objects/object_oA2/object_oA2_DL_000016C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_000016C8[] = dobject_oA2_DL_000016C8; -#else -static const char object_oA2_DL_000016C8[] __attribute__((aligned (2))) = dobject_oA2_DL_000016C8; -#endif - -#define dobject_oA2_DL_00001C08 "__OTR__objects/object_oA2/object_oA2_DL_00001C08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00001C08[] = dobject_oA2_DL_00001C08; -#else -static const char object_oA2_DL_00001C08[] __attribute__((aligned (2))) = dobject_oA2_DL_00001C08; -#endif - -#define dobject_oA2_DL_00002A80 "__OTR__objects/object_oA2/object_oA2_DL_00002A80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00002A80[] = dobject_oA2_DL_00002A80; -#else -static const char object_oA2_DL_00002A80[] __attribute__((aligned (2))) = dobject_oA2_DL_00002A80; -#endif - -#define dobject_oA2_DL_000032E8 "__OTR__objects/object_oA2/object_oA2_DL_000032E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_000032E8[] = dobject_oA2_DL_000032E8; -#else -static const char object_oA2_DL_000032E8[] __attribute__((aligned (2))) = dobject_oA2_DL_000032E8; -#endif - -#define dobject_oA2_DL_00003718 "__OTR__objects/object_oA2/object_oA2_DL_00003718" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00003718[] = dobject_oA2_DL_00003718; -#else -static const char object_oA2_DL_00003718[] __attribute__((aligned (2))) = dobject_oA2_DL_00003718; -#endif - -#define dobject_oA2_DL_00003BE8 "__OTR__objects/object_oA2/object_oA2_DL_00003BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00003BE8[] = dobject_oA2_DL_00003BE8; -#else -static const char object_oA2_DL_00003BE8[] __attribute__((aligned (2))) = dobject_oA2_DL_00003BE8; -#endif - -#define dobject_oA2_DL_00004270 "__OTR__objects/object_oA2/object_oA2_DL_00004270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00004270[] = dobject_oA2_DL_00004270; -#else -static const char object_oA2_DL_00004270[] __attribute__((aligned (2))) = dobject_oA2_DL_00004270; -#endif - -#define dobject_oA2_DL_000046A0 "__OTR__objects/object_oA2/object_oA2_DL_000046A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_000046A0[] = dobject_oA2_DL_000046A0; -#else -static const char object_oA2_DL_000046A0[] __attribute__((aligned (2))) = dobject_oA2_DL_000046A0; -#endif - -#define dobject_oA2_DL_00004B70 "__OTR__objects/object_oA2/object_oA2_DL_00004B70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_00004B70[] = dobject_oA2_DL_00004B70; -#else -static const char object_oA2_DL_00004B70[] __attribute__((aligned (2))) = dobject_oA2_DL_00004B70; -#endif - -#define dobject_oA2_DL_000054F8 "__OTR__objects/object_oA2/object_oA2_DL_000054F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA2_DL_000054F8[] = dobject_oA2_DL_000054F8; -#else -static const char object_oA2_DL_000054F8[] __attribute__((aligned (2))) = dobject_oA2_DL_000054F8; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA2_Skel_00000260 "__OTR__objects/object_oA2/object_oA2_Skel_00000260" +static const ALIGN_ASSET(2) char object_oA2_Skel_00000260[] = dobject_oA2_Skel_00000260; + +#define dobject_oA2_DL_00000448 "__OTR__objects/object_oA2/object_oA2_DL_00000448" +static const ALIGN_ASSET(2) char object_oA2_DL_00000448[] = dobject_oA2_DL_00000448; + +#define dobject_oA2_DL_00000818 "__OTR__objects/object_oA2/object_oA2_DL_00000818" +static const ALIGN_ASSET(2) char object_oA2_DL_00000818[] = dobject_oA2_DL_00000818; + +#define dobject_oA2_DL_00000C38 "__OTR__objects/object_oA2/object_oA2_DL_00000C38" +static const ALIGN_ASSET(2) char object_oA2_DL_00000C38[] = dobject_oA2_DL_00000C38; + +#define dobject_oA2_DL_00000ED8 "__OTR__objects/object_oA2/object_oA2_DL_00000ED8" +static const ALIGN_ASSET(2) char object_oA2_DL_00000ED8[] = dobject_oA2_DL_00000ED8; + +#define dobject_oA2_DL_000012A8 "__OTR__objects/object_oA2/object_oA2_DL_000012A8" +static const ALIGN_ASSET(2) char object_oA2_DL_000012A8[] = dobject_oA2_DL_000012A8; + +#define dobject_oA2_DL_000016C8 "__OTR__objects/object_oA2/object_oA2_DL_000016C8" +static const ALIGN_ASSET(2) char object_oA2_DL_000016C8[] = dobject_oA2_DL_000016C8; + +#define dobject_oA2_DL_00001C08 "__OTR__objects/object_oA2/object_oA2_DL_00001C08" +static const ALIGN_ASSET(2) char object_oA2_DL_00001C08[] = dobject_oA2_DL_00001C08; + +#define dobject_oA2_DL_00002A80 "__OTR__objects/object_oA2/object_oA2_DL_00002A80" +static const ALIGN_ASSET(2) char object_oA2_DL_00002A80[] = dobject_oA2_DL_00002A80; + +#define dobject_oA2_DL_000032E8 "__OTR__objects/object_oA2/object_oA2_DL_000032E8" +static const ALIGN_ASSET(2) char object_oA2_DL_000032E8[] = dobject_oA2_DL_000032E8; + +#define dobject_oA2_DL_00003718 "__OTR__objects/object_oA2/object_oA2_DL_00003718" +static const ALIGN_ASSET(2) char object_oA2_DL_00003718[] = dobject_oA2_DL_00003718; + +#define dobject_oA2_DL_00003BE8 "__OTR__objects/object_oA2/object_oA2_DL_00003BE8" +static const ALIGN_ASSET(2) char object_oA2_DL_00003BE8[] = dobject_oA2_DL_00003BE8; + +#define dobject_oA2_DL_00004270 "__OTR__objects/object_oA2/object_oA2_DL_00004270" +static const ALIGN_ASSET(2) char object_oA2_DL_00004270[] = dobject_oA2_DL_00004270; + +#define dobject_oA2_DL_000046A0 "__OTR__objects/object_oA2/object_oA2_DL_000046A0" +static const ALIGN_ASSET(2) char object_oA2_DL_000046A0[] = dobject_oA2_DL_000046A0; + +#define dobject_oA2_DL_00004B70 "__OTR__objects/object_oA2/object_oA2_DL_00004B70" +static const ALIGN_ASSET(2) char object_oA2_DL_00004B70[] = dobject_oA2_DL_00004B70; + +#define dobject_oA2_DL_000054F8 "__OTR__objects/object_oA2/object_oA2_DL_000054F8" +static const ALIGN_ASSET(2) char object_oA2_DL_000054F8[] = dobject_oA2_DL_000054F8; \ No newline at end of file diff --git a/soh/assets/objects/object_oA3/object_oA3.h b/soh/assets/objects/object_oA3/object_oA3.h index 7f83fc137..1ea513fe2 100644 --- a/soh/assets/objects/object_oA3/object_oA3.h +++ b/soh/assets/objects/object_oA3/object_oA3.h @@ -1,51 +1,24 @@ #pragma once -#define dobject_oA3_Blob_00000000 "__OTR__objects/object_oA3/object_oA3_Blob_00000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA3_Blob_00000000[] = dobject_oA3_Blob_00000000; -#else -static const char object_oA3_Blob_00000000[] __attribute__((aligned (2))) = dobject_oA3_Blob_00000000; -#endif - -#define dobject_oA3_DL_00000008 "__OTR__objects/object_oA3/object_oA3_DL_00000008" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA3_DL_00000008[] = dobject_oA3_DL_00000008; -#else -static const char object_oA3_DL_00000008[] __attribute__((aligned (2))) = dobject_oA3_DL_00000008; -#endif - -#define dobject_oA3_Tex_000012F0 "__OTR__objects/object_oA3/object_oA3_Tex_000012F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA3_Tex_000012F0[] = dobject_oA3_Tex_000012F0; -#else -static const char object_oA3_Tex_000012F0[] __attribute__((aligned (2))) = dobject_oA3_Tex_000012F0; -#endif - -#define dobject_oA3_Tex_00001AF0 "__OTR__objects/object_oA3/object_oA3_Tex_00001AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA3_Tex_00001AF0[] = dobject_oA3_Tex_00001AF0; -#else -static const char object_oA3_Tex_00001AF0[] __attribute__((aligned (2))) = dobject_oA3_Tex_00001AF0; -#endif - -#define dobject_oA3_Tex_00001CF0 "__OTR__objects/object_oA3/object_oA3_Tex_00001CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA3_Tex_00001CF0[] = dobject_oA3_Tex_00001CF0; -#else -static const char object_oA3_Tex_00001CF0[] __attribute__((aligned (2))) = dobject_oA3_Tex_00001CF0; -#endif - -#define dobject_oA3_Tex_00001EF0 "__OTR__objects/object_oA3/object_oA3_Tex_00001EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA3_Tex_00001EF0[] = dobject_oA3_Tex_00001EF0; -#else -static const char object_oA3_Tex_00001EF0[] __attribute__((aligned (2))) = dobject_oA3_Tex_00001EF0; -#endif - -#define dobject_oA3_Tex_000020F0 "__OTR__objects/object_oA3/object_oA3_Tex_000020F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA3_Tex_000020F0[] = dobject_oA3_Tex_000020F0; -#else -static const char object_oA3_Tex_000020F0[] __attribute__((aligned (2))) = dobject_oA3_Tex_000020F0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA3_Blob_00000000 "__OTR__objects/object_oA3/object_oA3_Blob_00000000" +static const ALIGN_ASSET(2) char object_oA3_Blob_00000000[] = dobject_oA3_Blob_00000000; + +#define dobject_oA3_DL_00000008 "__OTR__objects/object_oA3/object_oA3_DL_00000008" +static const ALIGN_ASSET(2) char object_oA3_DL_00000008[] = dobject_oA3_DL_00000008; + +#define dobject_oA3_Tex_000012F0 "__OTR__objects/object_oA3/object_oA3_Tex_000012F0" +static const ALIGN_ASSET(2) char object_oA3_Tex_000012F0[] = dobject_oA3_Tex_000012F0; + +#define dobject_oA3_Tex_00001AF0 "__OTR__objects/object_oA3/object_oA3_Tex_00001AF0" +static const ALIGN_ASSET(2) char object_oA3_Tex_00001AF0[] = dobject_oA3_Tex_00001AF0; + +#define dobject_oA3_Tex_00001CF0 "__OTR__objects/object_oA3/object_oA3_Tex_00001CF0" +static const ALIGN_ASSET(2) char object_oA3_Tex_00001CF0[] = dobject_oA3_Tex_00001CF0; + +#define dobject_oA3_Tex_00001EF0 "__OTR__objects/object_oA3/object_oA3_Tex_00001EF0" +static const ALIGN_ASSET(2) char object_oA3_Tex_00001EF0[] = dobject_oA3_Tex_00001EF0; + +#define dobject_oA3_Tex_000020F0 "__OTR__objects/object_oA3/object_oA3_Tex_000020F0" +static const ALIGN_ASSET(2) char object_oA3_Tex_000020F0[] = dobject_oA3_Tex_000020F0; \ No newline at end of file diff --git a/soh/assets/objects/object_oA4/object_oA4.h b/soh/assets/objects/object_oA4/object_oA4.h index 04bdd6fbd..7a1b23672 100644 --- a/soh/assets/objects/object_oA4/object_oA4.h +++ b/soh/assets/objects/object_oA4/object_oA4.h @@ -1,156 +1,69 @@ #pragma once -#define dobject_oA4_Skel_00000260 "__OTR__objects/object_oA4/object_oA4_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_Skel_00000260[] = dobject_oA4_Skel_00000260; -#else -static const char object_oA4_Skel_00000260[] __attribute__((aligned (2))) = dobject_oA4_Skel_00000260; -#endif - -#define dobject_oA4_DL_00000B28 "__OTR__objects/object_oA4/object_oA4_DL_00000B28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00000B28[] = dobject_oA4_DL_00000B28; -#else -static const char object_oA4_DL_00000B28[] __attribute__((aligned (2))) = dobject_oA4_DL_00000B28; -#endif - -#define dobject_oA4_DL_00000BA8 "__OTR__objects/object_oA4/object_oA4_DL_00000BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00000BA8[] = dobject_oA4_DL_00000BA8; -#else -static const char object_oA4_DL_00000BA8[] __attribute__((aligned (2))) = dobject_oA4_DL_00000BA8; -#endif - -#define dobject_oA4_DL_00000C80 "__OTR__objects/object_oA4/object_oA4_DL_00000C80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00000C80[] = dobject_oA4_DL_00000C80; -#else -static const char object_oA4_DL_00000C80[] __attribute__((aligned (2))) = dobject_oA4_DL_00000C80; -#endif - -#define dobject_oA4_DL_00000E38 "__OTR__objects/object_oA4/object_oA4_DL_00000E38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00000E38[] = dobject_oA4_DL_00000E38; -#else -static const char object_oA4_DL_00000E38[] __attribute__((aligned (2))) = dobject_oA4_DL_00000E38; -#endif - -#define dobject_oA4_DL_00000F18 "__OTR__objects/object_oA4/object_oA4_DL_00000F18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00000F18[] = dobject_oA4_DL_00000F18; -#else -static const char object_oA4_DL_00000F18[] __attribute__((aligned (2))) = dobject_oA4_DL_00000F18; -#endif - -#define dobject_oA4_DL_00000F70 "__OTR__objects/object_oA4/object_oA4_DL_00000F70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00000F70[] = dobject_oA4_DL_00000F70; -#else -static const char object_oA4_DL_00000F70[] __attribute__((aligned (2))) = dobject_oA4_DL_00000F70; -#endif - -#define dobject_oA4_DL_00000FD0 "__OTR__objects/object_oA4/object_oA4_DL_00000FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00000FD0[] = dobject_oA4_DL_00000FD0; -#else -static const char object_oA4_DL_00000FD0[] __attribute__((aligned (2))) = dobject_oA4_DL_00000FD0; -#endif - -#define dobject_oA4_DL_00001028 "__OTR__objects/object_oA4/object_oA4_DL_00001028" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00001028[] = dobject_oA4_DL_00001028; -#else -static const char object_oA4_DL_00001028[] __attribute__((aligned (2))) = dobject_oA4_DL_00001028; -#endif - -#define dobject_oA4_DL_00001088 "__OTR__objects/object_oA4/object_oA4_DL_00001088" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00001088[] = dobject_oA4_DL_00001088; -#else -static const char object_oA4_DL_00001088[] __attribute__((aligned (2))) = dobject_oA4_DL_00001088; -#endif - -#define dobject_oA4_DL_000010F0 "__OTR__objects/object_oA4/object_oA4_DL_000010F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_000010F0[] = dobject_oA4_DL_000010F0; -#else -static const char object_oA4_DL_000010F0[] __attribute__((aligned (2))) = dobject_oA4_DL_000010F0; -#endif - -#define dobject_oA4_DL_000011D0 "__OTR__objects/object_oA4/object_oA4_DL_000011D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_000011D0[] = dobject_oA4_DL_000011D0; -#else -static const char object_oA4_DL_000011D0[] __attribute__((aligned (2))) = dobject_oA4_DL_000011D0; -#endif - -#define dobject_oA4_DL_00001228 "__OTR__objects/object_oA4/object_oA4_DL_00001228" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00001228[] = dobject_oA4_DL_00001228; -#else -static const char object_oA4_DL_00001228[] __attribute__((aligned (2))) = dobject_oA4_DL_00001228; -#endif - -#define dobject_oA4_DL_00001288 "__OTR__objects/object_oA4/object_oA4_DL_00001288" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00001288[] = dobject_oA4_DL_00001288; -#else -static const char object_oA4_DL_00001288[] __attribute__((aligned (2))) = dobject_oA4_DL_00001288; -#endif - -#define dobject_oA4_DL_000012E0 "__OTR__objects/object_oA4/object_oA4_DL_000012E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_000012E0[] = dobject_oA4_DL_000012E0; -#else -static const char object_oA4_DL_000012E0[] __attribute__((aligned (2))) = dobject_oA4_DL_000012E0; -#endif - -#define dobject_oA4_DL_00001340 "__OTR__objects/object_oA4/object_oA4_DL_00001340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_DL_00001340[] = dobject_oA4_DL_00001340; -#else -static const char object_oA4_DL_00001340[] __attribute__((aligned (2))) = dobject_oA4_DL_00001340; -#endif - -#define dobject_oA4_Tex_000013A8 "__OTR__objects/object_oA4/object_oA4_Tex_000013A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_Tex_000013A8[] = dobject_oA4_Tex_000013A8; -#else -static const char object_oA4_Tex_000013A8[] __attribute__((aligned (2))) = dobject_oA4_Tex_000013A8; -#endif - -#define dobject_oA4_Tex_000014A8 "__OTR__objects/object_oA4/object_oA4_Tex_000014A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_Tex_000014A8[] = dobject_oA4_Tex_000014A8; -#else -static const char object_oA4_Tex_000014A8[] __attribute__((aligned (2))) = dobject_oA4_Tex_000014A8; -#endif - -#define dobject_oA4_Tex_00001528 "__OTR__objects/object_oA4/object_oA4_Tex_00001528" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_Tex_00001528[] = dobject_oA4_Tex_00001528; -#else -static const char object_oA4_Tex_00001528[] __attribute__((aligned (2))) = dobject_oA4_Tex_00001528; -#endif - -#define dobject_oA4_Tex_000015A8 "__OTR__objects/object_oA4/object_oA4_Tex_000015A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_Tex_000015A8[] = dobject_oA4_Tex_000015A8; -#else -static const char object_oA4_Tex_000015A8[] __attribute__((aligned (2))) = dobject_oA4_Tex_000015A8; -#endif - -#define dobject_oA4_Tex_00001628 "__OTR__objects/object_oA4/object_oA4_Tex_00001628" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_Tex_00001628[] = dobject_oA4_Tex_00001628; -#else -static const char object_oA4_Tex_00001628[] __attribute__((aligned (2))) = dobject_oA4_Tex_00001628; -#endif - -#define dobject_oA4_Tex_000016A8 "__OTR__objects/object_oA4/object_oA4_Tex_000016A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA4_Tex_000016A8[] = dobject_oA4_Tex_000016A8; -#else -static const char object_oA4_Tex_000016A8[] __attribute__((aligned (2))) = dobject_oA4_Tex_000016A8; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA4_Skel_00000260 "__OTR__objects/object_oA4/object_oA4_Skel_00000260" +static const ALIGN_ASSET(2) char object_oA4_Skel_00000260[] = dobject_oA4_Skel_00000260; + +#define dobject_oA4_DL_00000B28 "__OTR__objects/object_oA4/object_oA4_DL_00000B28" +static const ALIGN_ASSET(2) char object_oA4_DL_00000B28[] = dobject_oA4_DL_00000B28; + +#define dobject_oA4_DL_00000BA8 "__OTR__objects/object_oA4/object_oA4_DL_00000BA8" +static const ALIGN_ASSET(2) char object_oA4_DL_00000BA8[] = dobject_oA4_DL_00000BA8; + +#define dobject_oA4_DL_00000C80 "__OTR__objects/object_oA4/object_oA4_DL_00000C80" +static const ALIGN_ASSET(2) char object_oA4_DL_00000C80[] = dobject_oA4_DL_00000C80; + +#define dobject_oA4_DL_00000E38 "__OTR__objects/object_oA4/object_oA4_DL_00000E38" +static const ALIGN_ASSET(2) char object_oA4_DL_00000E38[] = dobject_oA4_DL_00000E38; + +#define dobject_oA4_DL_00000F18 "__OTR__objects/object_oA4/object_oA4_DL_00000F18" +static const ALIGN_ASSET(2) char object_oA4_DL_00000F18[] = dobject_oA4_DL_00000F18; + +#define dobject_oA4_DL_00000F70 "__OTR__objects/object_oA4/object_oA4_DL_00000F70" +static const ALIGN_ASSET(2) char object_oA4_DL_00000F70[] = dobject_oA4_DL_00000F70; + +#define dobject_oA4_DL_00000FD0 "__OTR__objects/object_oA4/object_oA4_DL_00000FD0" +static const ALIGN_ASSET(2) char object_oA4_DL_00000FD0[] = dobject_oA4_DL_00000FD0; + +#define dobject_oA4_DL_00001028 "__OTR__objects/object_oA4/object_oA4_DL_00001028" +static const ALIGN_ASSET(2) char object_oA4_DL_00001028[] = dobject_oA4_DL_00001028; + +#define dobject_oA4_DL_00001088 "__OTR__objects/object_oA4/object_oA4_DL_00001088" +static const ALIGN_ASSET(2) char object_oA4_DL_00001088[] = dobject_oA4_DL_00001088; + +#define dobject_oA4_DL_000010F0 "__OTR__objects/object_oA4/object_oA4_DL_000010F0" +static const ALIGN_ASSET(2) char object_oA4_DL_000010F0[] = dobject_oA4_DL_000010F0; + +#define dobject_oA4_DL_000011D0 "__OTR__objects/object_oA4/object_oA4_DL_000011D0" +static const ALIGN_ASSET(2) char object_oA4_DL_000011D0[] = dobject_oA4_DL_000011D0; + +#define dobject_oA4_DL_00001228 "__OTR__objects/object_oA4/object_oA4_DL_00001228" +static const ALIGN_ASSET(2) char object_oA4_DL_00001228[] = dobject_oA4_DL_00001228; + +#define dobject_oA4_DL_00001288 "__OTR__objects/object_oA4/object_oA4_DL_00001288" +static const ALIGN_ASSET(2) char object_oA4_DL_00001288[] = dobject_oA4_DL_00001288; + +#define dobject_oA4_DL_000012E0 "__OTR__objects/object_oA4/object_oA4_DL_000012E0" +static const ALIGN_ASSET(2) char object_oA4_DL_000012E0[] = dobject_oA4_DL_000012E0; + +#define dobject_oA4_DL_00001340 "__OTR__objects/object_oA4/object_oA4_DL_00001340" +static const ALIGN_ASSET(2) char object_oA4_DL_00001340[] = dobject_oA4_DL_00001340; + +#define dobject_oA4_Tex_000013A8 "__OTR__objects/object_oA4/object_oA4_Tex_000013A8" +static const ALIGN_ASSET(2) char object_oA4_Tex_000013A8[] = dobject_oA4_Tex_000013A8; + +#define dobject_oA4_Tex_000014A8 "__OTR__objects/object_oA4/object_oA4_Tex_000014A8" +static const ALIGN_ASSET(2) char object_oA4_Tex_000014A8[] = dobject_oA4_Tex_000014A8; + +#define dobject_oA4_Tex_00001528 "__OTR__objects/object_oA4/object_oA4_Tex_00001528" +static const ALIGN_ASSET(2) char object_oA4_Tex_00001528[] = dobject_oA4_Tex_00001528; + +#define dobject_oA4_Tex_000015A8 "__OTR__objects/object_oA4/object_oA4_Tex_000015A8" +static const ALIGN_ASSET(2) char object_oA4_Tex_000015A8[] = dobject_oA4_Tex_000015A8; + +#define dobject_oA4_Tex_00001628 "__OTR__objects/object_oA4/object_oA4_Tex_00001628" +static const ALIGN_ASSET(2) char object_oA4_Tex_00001628[] = dobject_oA4_Tex_00001628; + +#define dobject_oA4_Tex_000016A8 "__OTR__objects/object_oA4/object_oA4_Tex_000016A8" +static const ALIGN_ASSET(2) char object_oA4_Tex_000016A8[] = dobject_oA4_Tex_000016A8; \ No newline at end of file diff --git a/soh/assets/objects/object_oA5/object_oA5.h b/soh/assets/objects/object_oA5/object_oA5.h index fc26fd3fa..65e86b6b8 100644 --- a/soh/assets/objects/object_oA5/object_oA5.h +++ b/soh/assets/objects/object_oA5/object_oA5.h @@ -1,156 +1,69 @@ #pragma once -#define dobject_oA5_Skel_00000260 "__OTR__objects/object_oA5/object_oA5_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_Skel_00000260[] = dobject_oA5_Skel_00000260; -#else -static const char object_oA5_Skel_00000260[] __attribute__((aligned (2))) = dobject_oA5_Skel_00000260; -#endif - -#define dobject_oA5_DL_00000298 "__OTR__objects/object_oA5/object_oA5_DL_00000298" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000298[] = dobject_oA5_DL_00000298; -#else -static const char object_oA5_DL_00000298[] __attribute__((aligned (2))) = dobject_oA5_DL_00000298; -#endif - -#define dobject_oA5_DL_00000318 "__OTR__objects/object_oA5/object_oA5_DL_00000318" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000318[] = dobject_oA5_DL_00000318; -#else -static const char object_oA5_DL_00000318[] __attribute__((aligned (2))) = dobject_oA5_DL_00000318; -#endif - -#define dobject_oA5_DL_00000398 "__OTR__objects/object_oA5/object_oA5_DL_00000398" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000398[] = dobject_oA5_DL_00000398; -#else -static const char object_oA5_DL_00000398[] __attribute__((aligned (2))) = dobject_oA5_DL_00000398; -#endif - -#define dobject_oA5_DL_00000448 "__OTR__objects/object_oA5/object_oA5_DL_00000448" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000448[] = dobject_oA5_DL_00000448; -#else -static const char object_oA5_DL_00000448[] __attribute__((aligned (2))) = dobject_oA5_DL_00000448; -#endif - -#define dobject_oA5_DL_00000518 "__OTR__objects/object_oA5/object_oA5_DL_00000518" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000518[] = dobject_oA5_DL_00000518; -#else -static const char object_oA5_DL_00000518[] __attribute__((aligned (2))) = dobject_oA5_DL_00000518; -#endif - -#define dobject_oA5_DL_000005F8 "__OTR__objects/object_oA5/object_oA5_DL_000005F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_000005F8[] = dobject_oA5_DL_000005F8; -#else -static const char object_oA5_DL_000005F8[] __attribute__((aligned (2))) = dobject_oA5_DL_000005F8; -#endif - -#define dobject_oA5_DL_000006B8 "__OTR__objects/object_oA5/object_oA5_DL_000006B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_000006B8[] = dobject_oA5_DL_000006B8; -#else -static const char object_oA5_DL_000006B8[] __attribute__((aligned (2))) = dobject_oA5_DL_000006B8; -#endif - -#define dobject_oA5_DL_00000738 "__OTR__objects/object_oA5/object_oA5_DL_00000738" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000738[] = dobject_oA5_DL_00000738; -#else -static const char object_oA5_DL_00000738[] __attribute__((aligned (2))) = dobject_oA5_DL_00000738; -#endif - -#define dobject_oA5_DL_000007B8 "__OTR__objects/object_oA5/object_oA5_DL_000007B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_000007B8[] = dobject_oA5_DL_000007B8; -#else -static const char object_oA5_DL_000007B8[] __attribute__((aligned (2))) = dobject_oA5_DL_000007B8; -#endif - -#define dobject_oA5_DL_00000868 "__OTR__objects/object_oA5/object_oA5_DL_00000868" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000868[] = dobject_oA5_DL_00000868; -#else -static const char object_oA5_DL_00000868[] __attribute__((aligned (2))) = dobject_oA5_DL_00000868; -#endif - -#define dobject_oA5_DL_00000938 "__OTR__objects/object_oA5/object_oA5_DL_00000938" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000938[] = dobject_oA5_DL_00000938; -#else -static const char object_oA5_DL_00000938[] __attribute__((aligned (2))) = dobject_oA5_DL_00000938; -#endif - -#define dobject_oA5_DL_00000A18 "__OTR__objects/object_oA5/object_oA5_DL_00000A18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000A18[] = dobject_oA5_DL_00000A18; -#else -static const char object_oA5_DL_00000A18[] __attribute__((aligned (2))) = dobject_oA5_DL_00000A18; -#endif - -#define dobject_oA5_DL_00000D28 "__OTR__objects/object_oA5/object_oA5_DL_00000D28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000D28[] = dobject_oA5_DL_00000D28; -#else -static const char object_oA5_DL_00000D28[] __attribute__((aligned (2))) = dobject_oA5_DL_00000D28; -#endif - -#define dobject_oA5_DL_00000FF0 "__OTR__objects/object_oA5/object_oA5_DL_00000FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00000FF0[] = dobject_oA5_DL_00000FF0; -#else -static const char object_oA5_DL_00000FF0[] __attribute__((aligned (2))) = dobject_oA5_DL_00000FF0; -#endif - -#define dobject_oA5_DL_00001278 "__OTR__objects/object_oA5/object_oA5_DL_00001278" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_DL_00001278[] = dobject_oA5_DL_00001278; -#else -static const char object_oA5_DL_00001278[] __attribute__((aligned (2))) = dobject_oA5_DL_00001278; -#endif - -#define dobject_oA5_Tex_00001330 "__OTR__objects/object_oA5/object_oA5_Tex_00001330" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_Tex_00001330[] = dobject_oA5_Tex_00001330; -#else -static const char object_oA5_Tex_00001330[] __attribute__((aligned (2))) = dobject_oA5_Tex_00001330; -#endif - -#define dobject_oA5_Tex_000013B0 "__OTR__objects/object_oA5/object_oA5_Tex_000013B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_Tex_000013B0[] = dobject_oA5_Tex_000013B0; -#else -static const char object_oA5_Tex_000013B0[] __attribute__((aligned (2))) = dobject_oA5_Tex_000013B0; -#endif - -#define dobject_oA5_Tex_00001430 "__OTR__objects/object_oA5/object_oA5_Tex_00001430" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_Tex_00001430[] = dobject_oA5_Tex_00001430; -#else -static const char object_oA5_Tex_00001430[] __attribute__((aligned (2))) = dobject_oA5_Tex_00001430; -#endif - -#define dobject_oA5_Tex_00001530 "__OTR__objects/object_oA5/object_oA5_Tex_00001530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_Tex_00001530[] = dobject_oA5_Tex_00001530; -#else -static const char object_oA5_Tex_00001530[] __attribute__((aligned (2))) = dobject_oA5_Tex_00001530; -#endif - -#define dobject_oA5_Tex_000015B0 "__OTR__objects/object_oA5/object_oA5_Tex_000015B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_Tex_000015B0[] = dobject_oA5_Tex_000015B0; -#else -static const char object_oA5_Tex_000015B0[] __attribute__((aligned (2))) = dobject_oA5_Tex_000015B0; -#endif - -#define dobject_oA5_Tex_00001630 "__OTR__objects/object_oA5/object_oA5_Tex_00001630" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA5_Tex_00001630[] = dobject_oA5_Tex_00001630; -#else -static const char object_oA5_Tex_00001630[] __attribute__((aligned (2))) = dobject_oA5_Tex_00001630; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA5_Skel_00000260 "__OTR__objects/object_oA5/object_oA5_Skel_00000260" +static const ALIGN_ASSET(2) char object_oA5_Skel_00000260[] = dobject_oA5_Skel_00000260; + +#define dobject_oA5_DL_00000298 "__OTR__objects/object_oA5/object_oA5_DL_00000298" +static const ALIGN_ASSET(2) char object_oA5_DL_00000298[] = dobject_oA5_DL_00000298; + +#define dobject_oA5_DL_00000318 "__OTR__objects/object_oA5/object_oA5_DL_00000318" +static const ALIGN_ASSET(2) char object_oA5_DL_00000318[] = dobject_oA5_DL_00000318; + +#define dobject_oA5_DL_00000398 "__OTR__objects/object_oA5/object_oA5_DL_00000398" +static const ALIGN_ASSET(2) char object_oA5_DL_00000398[] = dobject_oA5_DL_00000398; + +#define dobject_oA5_DL_00000448 "__OTR__objects/object_oA5/object_oA5_DL_00000448" +static const ALIGN_ASSET(2) char object_oA5_DL_00000448[] = dobject_oA5_DL_00000448; + +#define dobject_oA5_DL_00000518 "__OTR__objects/object_oA5/object_oA5_DL_00000518" +static const ALIGN_ASSET(2) char object_oA5_DL_00000518[] = dobject_oA5_DL_00000518; + +#define dobject_oA5_DL_000005F8 "__OTR__objects/object_oA5/object_oA5_DL_000005F8" +static const ALIGN_ASSET(2) char object_oA5_DL_000005F8[] = dobject_oA5_DL_000005F8; + +#define dobject_oA5_DL_000006B8 "__OTR__objects/object_oA5/object_oA5_DL_000006B8" +static const ALIGN_ASSET(2) char object_oA5_DL_000006B8[] = dobject_oA5_DL_000006B8; + +#define dobject_oA5_DL_00000738 "__OTR__objects/object_oA5/object_oA5_DL_00000738" +static const ALIGN_ASSET(2) char object_oA5_DL_00000738[] = dobject_oA5_DL_00000738; + +#define dobject_oA5_DL_000007B8 "__OTR__objects/object_oA5/object_oA5_DL_000007B8" +static const ALIGN_ASSET(2) char object_oA5_DL_000007B8[] = dobject_oA5_DL_000007B8; + +#define dobject_oA5_DL_00000868 "__OTR__objects/object_oA5/object_oA5_DL_00000868" +static const ALIGN_ASSET(2) char object_oA5_DL_00000868[] = dobject_oA5_DL_00000868; + +#define dobject_oA5_DL_00000938 "__OTR__objects/object_oA5/object_oA5_DL_00000938" +static const ALIGN_ASSET(2) char object_oA5_DL_00000938[] = dobject_oA5_DL_00000938; + +#define dobject_oA5_DL_00000A18 "__OTR__objects/object_oA5/object_oA5_DL_00000A18" +static const ALIGN_ASSET(2) char object_oA5_DL_00000A18[] = dobject_oA5_DL_00000A18; + +#define dobject_oA5_DL_00000D28 "__OTR__objects/object_oA5/object_oA5_DL_00000D28" +static const ALIGN_ASSET(2) char object_oA5_DL_00000D28[] = dobject_oA5_DL_00000D28; + +#define dobject_oA5_DL_00000FF0 "__OTR__objects/object_oA5/object_oA5_DL_00000FF0" +static const ALIGN_ASSET(2) char object_oA5_DL_00000FF0[] = dobject_oA5_DL_00000FF0; + +#define dobject_oA5_DL_00001278 "__OTR__objects/object_oA5/object_oA5_DL_00001278" +static const ALIGN_ASSET(2) char object_oA5_DL_00001278[] = dobject_oA5_DL_00001278; + +#define dobject_oA5_Tex_00001330 "__OTR__objects/object_oA5/object_oA5_Tex_00001330" +static const ALIGN_ASSET(2) char object_oA5_Tex_00001330[] = dobject_oA5_Tex_00001330; + +#define dobject_oA5_Tex_000013B0 "__OTR__objects/object_oA5/object_oA5_Tex_000013B0" +static const ALIGN_ASSET(2) char object_oA5_Tex_000013B0[] = dobject_oA5_Tex_000013B0; + +#define dobject_oA5_Tex_00001430 "__OTR__objects/object_oA5/object_oA5_Tex_00001430" +static const ALIGN_ASSET(2) char object_oA5_Tex_00001430[] = dobject_oA5_Tex_00001430; + +#define dobject_oA5_Tex_00001530 "__OTR__objects/object_oA5/object_oA5_Tex_00001530" +static const ALIGN_ASSET(2) char object_oA5_Tex_00001530[] = dobject_oA5_Tex_00001530; + +#define dobject_oA5_Tex_000015B0 "__OTR__objects/object_oA5/object_oA5_Tex_000015B0" +static const ALIGN_ASSET(2) char object_oA5_Tex_000015B0[] = dobject_oA5_Tex_000015B0; + +#define dobject_oA5_Tex_00001630 "__OTR__objects/object_oA5/object_oA5_Tex_00001630" +static const ALIGN_ASSET(2) char object_oA5_Tex_00001630[] = dobject_oA5_Tex_00001630; \ No newline at end of file diff --git a/soh/assets/objects/object_oA6/object_oA6.h b/soh/assets/objects/object_oA6/object_oA6.h index cf63e0e37..ed5a1a2f8 100644 --- a/soh/assets/objects/object_oA6/object_oA6.h +++ b/soh/assets/objects/object_oA6/object_oA6.h @@ -1,156 +1,69 @@ #pragma once -#define dobject_oA6_Skel_00000260 "__OTR__objects/object_oA6/object_oA6_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_Skel_00000260[] = dobject_oA6_Skel_00000260; -#else -static const char object_oA6_Skel_00000260[] __attribute__((aligned (2))) = dobject_oA6_Skel_00000260; -#endif - -#define dobject_oA6_DL_00000C98 "__OTR__objects/object_oA6/object_oA6_DL_00000C98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00000C98[] = dobject_oA6_DL_00000C98; -#else -static const char object_oA6_DL_00000C98[] __attribute__((aligned (2))) = dobject_oA6_DL_00000C98; -#endif - -#define dobject_oA6_DL_00000D50 "__OTR__objects/object_oA6/object_oA6_DL_00000D50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00000D50[] = dobject_oA6_DL_00000D50; -#else -static const char object_oA6_DL_00000D50[] __attribute__((aligned (2))) = dobject_oA6_DL_00000D50; -#endif - -#define dobject_oA6_DL_00000DE8 "__OTR__objects/object_oA6/object_oA6_DL_00000DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00000DE8[] = dobject_oA6_DL_00000DE8; -#else -static const char object_oA6_DL_00000DE8[] __attribute__((aligned (2))) = dobject_oA6_DL_00000DE8; -#endif - -#define dobject_oA6_DL_00000F90 "__OTR__objects/object_oA6/object_oA6_DL_00000F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00000F90[] = dobject_oA6_DL_00000F90; -#else -static const char object_oA6_DL_00000F90[] __attribute__((aligned (2))) = dobject_oA6_DL_00000F90; -#endif - -#define dobject_oA6_DL_00001028 "__OTR__objects/object_oA6/object_oA6_DL_00001028" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00001028[] = dobject_oA6_DL_00001028; -#else -static const char object_oA6_DL_00001028[] __attribute__((aligned (2))) = dobject_oA6_DL_00001028; -#endif - -#define dobject_oA6_DL_000010B8 "__OTR__objects/object_oA6/object_oA6_DL_000010B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_000010B8[] = dobject_oA6_DL_000010B8; -#else -static const char object_oA6_DL_000010B8[] __attribute__((aligned (2))) = dobject_oA6_DL_000010B8; -#endif - -#define dobject_oA6_DL_00001150 "__OTR__objects/object_oA6/object_oA6_DL_00001150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00001150[] = dobject_oA6_DL_00001150; -#else -static const char object_oA6_DL_00001150[] __attribute__((aligned (2))) = dobject_oA6_DL_00001150; -#endif - -#define dobject_oA6_DL_000011B8 "__OTR__objects/object_oA6/object_oA6_DL_000011B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_000011B8[] = dobject_oA6_DL_000011B8; -#else -static const char object_oA6_DL_000011B8[] __attribute__((aligned (2))) = dobject_oA6_DL_000011B8; -#endif - -#define dobject_oA6_DL_00001210 "__OTR__objects/object_oA6/object_oA6_DL_00001210" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00001210[] = dobject_oA6_DL_00001210; -#else -static const char object_oA6_DL_00001210[] __attribute__((aligned (2))) = dobject_oA6_DL_00001210; -#endif - -#define dobject_oA6_DL_000012C8 "__OTR__objects/object_oA6/object_oA6_DL_000012C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_000012C8[] = dobject_oA6_DL_000012C8; -#else -static const char object_oA6_DL_000012C8[] __attribute__((aligned (2))) = dobject_oA6_DL_000012C8; -#endif - -#define dobject_oA6_DL_00001360 "__OTR__objects/object_oA6/object_oA6_DL_00001360" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00001360[] = dobject_oA6_DL_00001360; -#else -static const char object_oA6_DL_00001360[] __attribute__((aligned (2))) = dobject_oA6_DL_00001360; -#endif - -#define dobject_oA6_DL_000013F0 "__OTR__objects/object_oA6/object_oA6_DL_000013F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_000013F0[] = dobject_oA6_DL_000013F0; -#else -static const char object_oA6_DL_000013F0[] __attribute__((aligned (2))) = dobject_oA6_DL_000013F0; -#endif - -#define dobject_oA6_DL_00001488 "__OTR__objects/object_oA6/object_oA6_DL_00001488" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00001488[] = dobject_oA6_DL_00001488; -#else -static const char object_oA6_DL_00001488[] __attribute__((aligned (2))) = dobject_oA6_DL_00001488; -#endif - -#define dobject_oA6_DL_000014F0 "__OTR__objects/object_oA6/object_oA6_DL_000014F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_000014F0[] = dobject_oA6_DL_000014F0; -#else -static const char object_oA6_DL_000014F0[] __attribute__((aligned (2))) = dobject_oA6_DL_000014F0; -#endif - -#define dobject_oA6_DL_00001548 "__OTR__objects/object_oA6/object_oA6_DL_00001548" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_DL_00001548[] = dobject_oA6_DL_00001548; -#else -static const char object_oA6_DL_00001548[] __attribute__((aligned (2))) = dobject_oA6_DL_00001548; -#endif - -#define dobject_oA6_Tex_00001600 "__OTR__objects/object_oA6/object_oA6_Tex_00001600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_Tex_00001600[] = dobject_oA6_Tex_00001600; -#else -static const char object_oA6_Tex_00001600[] __attribute__((aligned (2))) = dobject_oA6_Tex_00001600; -#endif - -#define dobject_oA6_Tex_00001700 "__OTR__objects/object_oA6/object_oA6_Tex_00001700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_Tex_00001700[] = dobject_oA6_Tex_00001700; -#else -static const char object_oA6_Tex_00001700[] __attribute__((aligned (2))) = dobject_oA6_Tex_00001700; -#endif - -#define dobject_oA6_Tex_00001780 "__OTR__objects/object_oA6/object_oA6_Tex_00001780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_Tex_00001780[] = dobject_oA6_Tex_00001780; -#else -static const char object_oA6_Tex_00001780[] __attribute__((aligned (2))) = dobject_oA6_Tex_00001780; -#endif - -#define dobject_oA6_Tex_00001800 "__OTR__objects/object_oA6/object_oA6_Tex_00001800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_Tex_00001800[] = dobject_oA6_Tex_00001800; -#else -static const char object_oA6_Tex_00001800[] __attribute__((aligned (2))) = dobject_oA6_Tex_00001800; -#endif - -#define dobject_oA6_Tex_00001900 "__OTR__objects/object_oA6/object_oA6_Tex_00001900" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_Tex_00001900[] = dobject_oA6_Tex_00001900; -#else -static const char object_oA6_Tex_00001900[] __attribute__((aligned (2))) = dobject_oA6_Tex_00001900; -#endif - -#define dobject_oA6_Tex_00001980 "__OTR__objects/object_oA6/object_oA6_Tex_00001980" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA6_Tex_00001980[] = dobject_oA6_Tex_00001980; -#else -static const char object_oA6_Tex_00001980[] __attribute__((aligned (2))) = dobject_oA6_Tex_00001980; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA6_Skel_00000260 "__OTR__objects/object_oA6/object_oA6_Skel_00000260" +static const ALIGN_ASSET(2) char object_oA6_Skel_00000260[] = dobject_oA6_Skel_00000260; + +#define dobject_oA6_DL_00000C98 "__OTR__objects/object_oA6/object_oA6_DL_00000C98" +static const ALIGN_ASSET(2) char object_oA6_DL_00000C98[] = dobject_oA6_DL_00000C98; + +#define dobject_oA6_DL_00000D50 "__OTR__objects/object_oA6/object_oA6_DL_00000D50" +static const ALIGN_ASSET(2) char object_oA6_DL_00000D50[] = dobject_oA6_DL_00000D50; + +#define dobject_oA6_DL_00000DE8 "__OTR__objects/object_oA6/object_oA6_DL_00000DE8" +static const ALIGN_ASSET(2) char object_oA6_DL_00000DE8[] = dobject_oA6_DL_00000DE8; + +#define dobject_oA6_DL_00000F90 "__OTR__objects/object_oA6/object_oA6_DL_00000F90" +static const ALIGN_ASSET(2) char object_oA6_DL_00000F90[] = dobject_oA6_DL_00000F90; + +#define dobject_oA6_DL_00001028 "__OTR__objects/object_oA6/object_oA6_DL_00001028" +static const ALIGN_ASSET(2) char object_oA6_DL_00001028[] = dobject_oA6_DL_00001028; + +#define dobject_oA6_DL_000010B8 "__OTR__objects/object_oA6/object_oA6_DL_000010B8" +static const ALIGN_ASSET(2) char object_oA6_DL_000010B8[] = dobject_oA6_DL_000010B8; + +#define dobject_oA6_DL_00001150 "__OTR__objects/object_oA6/object_oA6_DL_00001150" +static const ALIGN_ASSET(2) char object_oA6_DL_00001150[] = dobject_oA6_DL_00001150; + +#define dobject_oA6_DL_000011B8 "__OTR__objects/object_oA6/object_oA6_DL_000011B8" +static const ALIGN_ASSET(2) char object_oA6_DL_000011B8[] = dobject_oA6_DL_000011B8; + +#define dobject_oA6_DL_00001210 "__OTR__objects/object_oA6/object_oA6_DL_00001210" +static const ALIGN_ASSET(2) char object_oA6_DL_00001210[] = dobject_oA6_DL_00001210; + +#define dobject_oA6_DL_000012C8 "__OTR__objects/object_oA6/object_oA6_DL_000012C8" +static const ALIGN_ASSET(2) char object_oA6_DL_000012C8[] = dobject_oA6_DL_000012C8; + +#define dobject_oA6_DL_00001360 "__OTR__objects/object_oA6/object_oA6_DL_00001360" +static const ALIGN_ASSET(2) char object_oA6_DL_00001360[] = dobject_oA6_DL_00001360; + +#define dobject_oA6_DL_000013F0 "__OTR__objects/object_oA6/object_oA6_DL_000013F0" +static const ALIGN_ASSET(2) char object_oA6_DL_000013F0[] = dobject_oA6_DL_000013F0; + +#define dobject_oA6_DL_00001488 "__OTR__objects/object_oA6/object_oA6_DL_00001488" +static const ALIGN_ASSET(2) char object_oA6_DL_00001488[] = dobject_oA6_DL_00001488; + +#define dobject_oA6_DL_000014F0 "__OTR__objects/object_oA6/object_oA6_DL_000014F0" +static const ALIGN_ASSET(2) char object_oA6_DL_000014F0[] = dobject_oA6_DL_000014F0; + +#define dobject_oA6_DL_00001548 "__OTR__objects/object_oA6/object_oA6_DL_00001548" +static const ALIGN_ASSET(2) char object_oA6_DL_00001548[] = dobject_oA6_DL_00001548; + +#define dobject_oA6_Tex_00001600 "__OTR__objects/object_oA6/object_oA6_Tex_00001600" +static const ALIGN_ASSET(2) char object_oA6_Tex_00001600[] = dobject_oA6_Tex_00001600; + +#define dobject_oA6_Tex_00001700 "__OTR__objects/object_oA6/object_oA6_Tex_00001700" +static const ALIGN_ASSET(2) char object_oA6_Tex_00001700[] = dobject_oA6_Tex_00001700; + +#define dobject_oA6_Tex_00001780 "__OTR__objects/object_oA6/object_oA6_Tex_00001780" +static const ALIGN_ASSET(2) char object_oA6_Tex_00001780[] = dobject_oA6_Tex_00001780; + +#define dobject_oA6_Tex_00001800 "__OTR__objects/object_oA6/object_oA6_Tex_00001800" +static const ALIGN_ASSET(2) char object_oA6_Tex_00001800[] = dobject_oA6_Tex_00001800; + +#define dobject_oA6_Tex_00001900 "__OTR__objects/object_oA6/object_oA6_Tex_00001900" +static const ALIGN_ASSET(2) char object_oA6_Tex_00001900[] = dobject_oA6_Tex_00001900; + +#define dobject_oA6_Tex_00001980 "__OTR__objects/object_oA6/object_oA6_Tex_00001980" +static const ALIGN_ASSET(2) char object_oA6_Tex_00001980[] = dobject_oA6_Tex_00001980; \ No newline at end of file diff --git a/soh/assets/objects/object_oA7/object_oA7.h b/soh/assets/objects/object_oA7/object_oA7.h index 77516968a..70382ec7a 100644 --- a/soh/assets/objects/object_oA7/object_oA7.h +++ b/soh/assets/objects/object_oA7/object_oA7.h @@ -1,142 +1,63 @@ #pragma once -#define dobject_oA7_Skel_00000260 "__OTR__objects/object_oA7/object_oA7_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_Skel_00000260[] = dobject_oA7_Skel_00000260; -#else -static const char object_oA7_Skel_00000260[] __attribute__((aligned (2))) = dobject_oA7_Skel_00000260; -#endif - -#define dobject_oA7_DL_000002C8 "__OTR__objects/object_oA7/object_oA7_DL_000002C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_000002C8[] = dobject_oA7_DL_000002C8; -#else -static const char object_oA7_DL_000002C8[] __attribute__((aligned (2))) = dobject_oA7_DL_000002C8; -#endif - -#define dobject_oA7_DL_000003E8 "__OTR__objects/object_oA7/object_oA7_DL_000003E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_000003E8[] = dobject_oA7_DL_000003E8; -#else -static const char object_oA7_DL_000003E8[] __attribute__((aligned (2))) = dobject_oA7_DL_000003E8; -#endif - -#define dobject_oA7_DL_000004B8 "__OTR__objects/object_oA7/object_oA7_DL_000004B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_000004B8[] = dobject_oA7_DL_000004B8; -#else -static const char object_oA7_DL_000004B8[] __attribute__((aligned (2))) = dobject_oA7_DL_000004B8; -#endif - -#define dobject_oA7_DL_00000568 "__OTR__objects/object_oA7/object_oA7_DL_00000568" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_00000568[] = dobject_oA7_DL_00000568; -#else -static const char object_oA7_DL_00000568[] __attribute__((aligned (2))) = dobject_oA7_DL_00000568; -#endif - -#define dobject_oA7_DL_00000600 "__OTR__objects/object_oA7/object_oA7_DL_00000600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_00000600[] = dobject_oA7_DL_00000600; -#else -static const char object_oA7_DL_00000600[] __attribute__((aligned (2))) = dobject_oA7_DL_00000600; -#endif - -#define dobject_oA7_DL_000006D8 "__OTR__objects/object_oA7/object_oA7_DL_000006D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_000006D8[] = dobject_oA7_DL_000006D8; -#else -static const char object_oA7_DL_000006D8[] __attribute__((aligned (2))) = dobject_oA7_DL_000006D8; -#endif - -#define dobject_oA7_DL_000007C8 "__OTR__objects/object_oA7/object_oA7_DL_000007C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_000007C8[] = dobject_oA7_DL_000007C8; -#else -static const char object_oA7_DL_000007C8[] __attribute__((aligned (2))) = dobject_oA7_DL_000007C8; -#endif - -#define dobject_oA7_DL_000008E8 "__OTR__objects/object_oA7/object_oA7_DL_000008E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_000008E8[] = dobject_oA7_DL_000008E8; -#else -static const char object_oA7_DL_000008E8[] __attribute__((aligned (2))) = dobject_oA7_DL_000008E8; -#endif - -#define dobject_oA7_DL_000009B8 "__OTR__objects/object_oA7/object_oA7_DL_000009B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_000009B8[] = dobject_oA7_DL_000009B8; -#else -static const char object_oA7_DL_000009B8[] __attribute__((aligned (2))) = dobject_oA7_DL_000009B8; -#endif - -#define dobject_oA7_DL_00000A68 "__OTR__objects/object_oA7/object_oA7_DL_00000A68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_00000A68[] = dobject_oA7_DL_00000A68; -#else -static const char object_oA7_DL_00000A68[] __attribute__((aligned (2))) = dobject_oA7_DL_00000A68; -#endif - -#define dobject_oA7_DL_00000B00 "__OTR__objects/object_oA7/object_oA7_DL_00000B00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_00000B00[] = dobject_oA7_DL_00000B00; -#else -static const char object_oA7_DL_00000B00[] __attribute__((aligned (2))) = dobject_oA7_DL_00000B00; -#endif - -#define dobject_oA7_DL_00000BD8 "__OTR__objects/object_oA7/object_oA7_DL_00000BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_00000BD8[] = dobject_oA7_DL_00000BD8; -#else -static const char object_oA7_DL_00000BD8[] __attribute__((aligned (2))) = dobject_oA7_DL_00000BD8; -#endif - -#define dobject_oA7_DL_00000EE8 "__OTR__objects/object_oA7/object_oA7_DL_00000EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_00000EE8[] = dobject_oA7_DL_00000EE8; -#else -static const char object_oA7_DL_00000EE8[] __attribute__((aligned (2))) = dobject_oA7_DL_00000EE8; -#endif - -#define dobject_oA7_DL_00001068 "__OTR__objects/object_oA7/object_oA7_DL_00001068" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_00001068[] = dobject_oA7_DL_00001068; -#else -static const char object_oA7_DL_00001068[] __attribute__((aligned (2))) = dobject_oA7_DL_00001068; -#endif - -#define dobject_oA7_DL_00001218 "__OTR__objects/object_oA7/object_oA7_DL_00001218" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_DL_00001218[] = dobject_oA7_DL_00001218; -#else -static const char object_oA7_DL_00001218[] __attribute__((aligned (2))) = dobject_oA7_DL_00001218; -#endif - -#define dobject_oA7_Tex_000012C8 "__OTR__objects/object_oA7/object_oA7_Tex_000012C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_Tex_000012C8[] = dobject_oA7_Tex_000012C8; -#else -static const char object_oA7_Tex_000012C8[] __attribute__((aligned (2))) = dobject_oA7_Tex_000012C8; -#endif - -#define dobject_oA7_Tex_00001348 "__OTR__objects/object_oA7/object_oA7_Tex_00001348" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_Tex_00001348[] = dobject_oA7_Tex_00001348; -#else -static const char object_oA7_Tex_00001348[] __attribute__((aligned (2))) = dobject_oA7_Tex_00001348; -#endif - -#define dobject_oA7_Tex_000013C8 "__OTR__objects/object_oA7/object_oA7_Tex_000013C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_Tex_000013C8[] = dobject_oA7_Tex_000013C8; -#else -static const char object_oA7_Tex_000013C8[] __attribute__((aligned (2))) = dobject_oA7_Tex_000013C8; -#endif - -#define dobject_oA7_Tex_000014C8 "__OTR__objects/object_oA7/object_oA7_Tex_000014C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA7_Tex_000014C8[] = dobject_oA7_Tex_000014C8; -#else -static const char object_oA7_Tex_000014C8[] __attribute__((aligned (2))) = dobject_oA7_Tex_000014C8; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA7_Skel_00000260 "__OTR__objects/object_oA7/object_oA7_Skel_00000260" +static const ALIGN_ASSET(2) char object_oA7_Skel_00000260[] = dobject_oA7_Skel_00000260; + +#define dobject_oA7_DL_000002C8 "__OTR__objects/object_oA7/object_oA7_DL_000002C8" +static const ALIGN_ASSET(2) char object_oA7_DL_000002C8[] = dobject_oA7_DL_000002C8; + +#define dobject_oA7_DL_000003E8 "__OTR__objects/object_oA7/object_oA7_DL_000003E8" +static const ALIGN_ASSET(2) char object_oA7_DL_000003E8[] = dobject_oA7_DL_000003E8; + +#define dobject_oA7_DL_000004B8 "__OTR__objects/object_oA7/object_oA7_DL_000004B8" +static const ALIGN_ASSET(2) char object_oA7_DL_000004B8[] = dobject_oA7_DL_000004B8; + +#define dobject_oA7_DL_00000568 "__OTR__objects/object_oA7/object_oA7_DL_00000568" +static const ALIGN_ASSET(2) char object_oA7_DL_00000568[] = dobject_oA7_DL_00000568; + +#define dobject_oA7_DL_00000600 "__OTR__objects/object_oA7/object_oA7_DL_00000600" +static const ALIGN_ASSET(2) char object_oA7_DL_00000600[] = dobject_oA7_DL_00000600; + +#define dobject_oA7_DL_000006D8 "__OTR__objects/object_oA7/object_oA7_DL_000006D8" +static const ALIGN_ASSET(2) char object_oA7_DL_000006D8[] = dobject_oA7_DL_000006D8; + +#define dobject_oA7_DL_000007C8 "__OTR__objects/object_oA7/object_oA7_DL_000007C8" +static const ALIGN_ASSET(2) char object_oA7_DL_000007C8[] = dobject_oA7_DL_000007C8; + +#define dobject_oA7_DL_000008E8 "__OTR__objects/object_oA7/object_oA7_DL_000008E8" +static const ALIGN_ASSET(2) char object_oA7_DL_000008E8[] = dobject_oA7_DL_000008E8; + +#define dobject_oA7_DL_000009B8 "__OTR__objects/object_oA7/object_oA7_DL_000009B8" +static const ALIGN_ASSET(2) char object_oA7_DL_000009B8[] = dobject_oA7_DL_000009B8; + +#define dobject_oA7_DL_00000A68 "__OTR__objects/object_oA7/object_oA7_DL_00000A68" +static const ALIGN_ASSET(2) char object_oA7_DL_00000A68[] = dobject_oA7_DL_00000A68; + +#define dobject_oA7_DL_00000B00 "__OTR__objects/object_oA7/object_oA7_DL_00000B00" +static const ALIGN_ASSET(2) char object_oA7_DL_00000B00[] = dobject_oA7_DL_00000B00; + +#define dobject_oA7_DL_00000BD8 "__OTR__objects/object_oA7/object_oA7_DL_00000BD8" +static const ALIGN_ASSET(2) char object_oA7_DL_00000BD8[] = dobject_oA7_DL_00000BD8; + +#define dobject_oA7_DL_00000EE8 "__OTR__objects/object_oA7/object_oA7_DL_00000EE8" +static const ALIGN_ASSET(2) char object_oA7_DL_00000EE8[] = dobject_oA7_DL_00000EE8; + +#define dobject_oA7_DL_00001068 "__OTR__objects/object_oA7/object_oA7_DL_00001068" +static const ALIGN_ASSET(2) char object_oA7_DL_00001068[] = dobject_oA7_DL_00001068; + +#define dobject_oA7_DL_00001218 "__OTR__objects/object_oA7/object_oA7_DL_00001218" +static const ALIGN_ASSET(2) char object_oA7_DL_00001218[] = dobject_oA7_DL_00001218; + +#define dobject_oA7_Tex_000012C8 "__OTR__objects/object_oA7/object_oA7_Tex_000012C8" +static const ALIGN_ASSET(2) char object_oA7_Tex_000012C8[] = dobject_oA7_Tex_000012C8; + +#define dobject_oA7_Tex_00001348 "__OTR__objects/object_oA7/object_oA7_Tex_00001348" +static const ALIGN_ASSET(2) char object_oA7_Tex_00001348[] = dobject_oA7_Tex_00001348; + +#define dobject_oA7_Tex_000013C8 "__OTR__objects/object_oA7/object_oA7_Tex_000013C8" +static const ALIGN_ASSET(2) char object_oA7_Tex_000013C8[] = dobject_oA7_Tex_000013C8; + +#define dobject_oA7_Tex_000014C8 "__OTR__objects/object_oA7/object_oA7_Tex_000014C8" +static const ALIGN_ASSET(2) char object_oA7_Tex_000014C8[] = dobject_oA7_Tex_000014C8; \ No newline at end of file diff --git a/soh/assets/objects/object_oA8/object_oA8.h b/soh/assets/objects/object_oA8/object_oA8.h index ef2b3640c..48a5d36f7 100644 --- a/soh/assets/objects/object_oA8/object_oA8.h +++ b/soh/assets/objects/object_oA8/object_oA8.h @@ -1,135 +1,60 @@ #pragma once -#define dobject_oA8_Skel_00000260 "__OTR__objects/object_oA8/object_oA8_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_Skel_00000260[] = dobject_oA8_Skel_00000260; -#else -static const char object_oA8_Skel_00000260[] __attribute__((aligned (2))) = dobject_oA8_Skel_00000260; -#endif - -#define dobject_oA8_DL_00000CB8 "__OTR__objects/object_oA8/object_oA8_DL_00000CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00000CB8[] = dobject_oA8_DL_00000CB8; -#else -static const char object_oA8_DL_00000CB8[] __attribute__((aligned (2))) = dobject_oA8_DL_00000CB8; -#endif - -#define dobject_oA8_DL_00000D90 "__OTR__objects/object_oA8/object_oA8_DL_00000D90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00000D90[] = dobject_oA8_DL_00000D90; -#else -static const char object_oA8_DL_00000D90[] __attribute__((aligned (2))) = dobject_oA8_DL_00000D90; -#endif - -#define dobject_oA8_DL_00000E48 "__OTR__objects/object_oA8/object_oA8_DL_00000E48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00000E48[] = dobject_oA8_DL_00000E48; -#else -static const char object_oA8_DL_00000E48[] __attribute__((aligned (2))) = dobject_oA8_DL_00000E48; -#endif - -#define dobject_oA8_DL_00000F70 "__OTR__objects/object_oA8/object_oA8_DL_00000F70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00000F70[] = dobject_oA8_DL_00000F70; -#else -static const char object_oA8_DL_00000F70[] __attribute__((aligned (2))) = dobject_oA8_DL_00000F70; -#endif - -#define dobject_oA8_DL_00000FC8 "__OTR__objects/object_oA8/object_oA8_DL_00000FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00000FC8[] = dobject_oA8_DL_00000FC8; -#else -static const char object_oA8_DL_00000FC8[] __attribute__((aligned (2))) = dobject_oA8_DL_00000FC8; -#endif - -#define dobject_oA8_DL_00001080 "__OTR__objects/object_oA8/object_oA8_DL_00001080" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00001080[] = dobject_oA8_DL_00001080; -#else -static const char object_oA8_DL_00001080[] __attribute__((aligned (2))) = dobject_oA8_DL_00001080; -#endif - -#define dobject_oA8_DL_00001140 "__OTR__objects/object_oA8/object_oA8_DL_00001140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00001140[] = dobject_oA8_DL_00001140; -#else -static const char object_oA8_DL_00001140[] __attribute__((aligned (2))) = dobject_oA8_DL_00001140; -#endif - -#define dobject_oA8_DL_00001198 "__OTR__objects/object_oA8/object_oA8_DL_00001198" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00001198[] = dobject_oA8_DL_00001198; -#else -static const char object_oA8_DL_00001198[] __attribute__((aligned (2))) = dobject_oA8_DL_00001198; -#endif - -#define dobject_oA8_DL_000011F0 "__OTR__objects/object_oA8/object_oA8_DL_000011F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_000011F0[] = dobject_oA8_DL_000011F0; -#else -static const char object_oA8_DL_000011F0[] __attribute__((aligned (2))) = dobject_oA8_DL_000011F0; -#endif - -#define dobject_oA8_DL_00001248 "__OTR__objects/object_oA8/object_oA8_DL_00001248" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00001248[] = dobject_oA8_DL_00001248; -#else -static const char object_oA8_DL_00001248[] __attribute__((aligned (2))) = dobject_oA8_DL_00001248; -#endif - -#define dobject_oA8_DL_000012D8 "__OTR__objects/object_oA8/object_oA8_DL_000012D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_000012D8[] = dobject_oA8_DL_000012D8; -#else -static const char object_oA8_DL_000012D8[] __attribute__((aligned (2))) = dobject_oA8_DL_000012D8; -#endif - -#define dobject_oA8_DL_00001390 "__OTR__objects/object_oA8/object_oA8_DL_00001390" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00001390[] = dobject_oA8_DL_00001390; -#else -static const char object_oA8_DL_00001390[] __attribute__((aligned (2))) = dobject_oA8_DL_00001390; -#endif - -#define dobject_oA8_DL_00001468 "__OTR__objects/object_oA8/object_oA8_DL_00001468" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00001468[] = dobject_oA8_DL_00001468; -#else -static const char object_oA8_DL_00001468[] __attribute__((aligned (2))) = dobject_oA8_DL_00001468; -#endif - -#define dobject_oA8_DL_000014C0 "__OTR__objects/object_oA8/object_oA8_DL_000014C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_000014C0[] = dobject_oA8_DL_000014C0; -#else -static const char object_oA8_DL_000014C0[] __attribute__((aligned (2))) = dobject_oA8_DL_000014C0; -#endif - -#define dobject_oA8_DL_00001518 "__OTR__objects/object_oA8/object_oA8_DL_00001518" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_DL_00001518[] = dobject_oA8_DL_00001518; -#else -static const char object_oA8_DL_00001518[] __attribute__((aligned (2))) = dobject_oA8_DL_00001518; -#endif - -#define dobject_oA8_Tex_00001570 "__OTR__objects/object_oA8/object_oA8_Tex_00001570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_Tex_00001570[] = dobject_oA8_Tex_00001570; -#else -static const char object_oA8_Tex_00001570[] __attribute__((aligned (2))) = dobject_oA8_Tex_00001570; -#endif - -#define dobject_oA8_Tex_00001670 "__OTR__objects/object_oA8/object_oA8_Tex_00001670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_Tex_00001670[] = dobject_oA8_Tex_00001670; -#else -static const char object_oA8_Tex_00001670[] __attribute__((aligned (2))) = dobject_oA8_Tex_00001670; -#endif - -#define dobject_oA8_Tex_00001770 "__OTR__objects/object_oA8/object_oA8_Tex_00001770" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA8_Tex_00001770[] = dobject_oA8_Tex_00001770; -#else -static const char object_oA8_Tex_00001770[] __attribute__((aligned (2))) = dobject_oA8_Tex_00001770; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA8_Skel_00000260 "__OTR__objects/object_oA8/object_oA8_Skel_00000260" +static const ALIGN_ASSET(2) char object_oA8_Skel_00000260[] = dobject_oA8_Skel_00000260; + +#define dobject_oA8_DL_00000CB8 "__OTR__objects/object_oA8/object_oA8_DL_00000CB8" +static const ALIGN_ASSET(2) char object_oA8_DL_00000CB8[] = dobject_oA8_DL_00000CB8; + +#define dobject_oA8_DL_00000D90 "__OTR__objects/object_oA8/object_oA8_DL_00000D90" +static const ALIGN_ASSET(2) char object_oA8_DL_00000D90[] = dobject_oA8_DL_00000D90; + +#define dobject_oA8_DL_00000E48 "__OTR__objects/object_oA8/object_oA8_DL_00000E48" +static const ALIGN_ASSET(2) char object_oA8_DL_00000E48[] = dobject_oA8_DL_00000E48; + +#define dobject_oA8_DL_00000F70 "__OTR__objects/object_oA8/object_oA8_DL_00000F70" +static const ALIGN_ASSET(2) char object_oA8_DL_00000F70[] = dobject_oA8_DL_00000F70; + +#define dobject_oA8_DL_00000FC8 "__OTR__objects/object_oA8/object_oA8_DL_00000FC8" +static const ALIGN_ASSET(2) char object_oA8_DL_00000FC8[] = dobject_oA8_DL_00000FC8; + +#define dobject_oA8_DL_00001080 "__OTR__objects/object_oA8/object_oA8_DL_00001080" +static const ALIGN_ASSET(2) char object_oA8_DL_00001080[] = dobject_oA8_DL_00001080; + +#define dobject_oA8_DL_00001140 "__OTR__objects/object_oA8/object_oA8_DL_00001140" +static const ALIGN_ASSET(2) char object_oA8_DL_00001140[] = dobject_oA8_DL_00001140; + +#define dobject_oA8_DL_00001198 "__OTR__objects/object_oA8/object_oA8_DL_00001198" +static const ALIGN_ASSET(2) char object_oA8_DL_00001198[] = dobject_oA8_DL_00001198; + +#define dobject_oA8_DL_000011F0 "__OTR__objects/object_oA8/object_oA8_DL_000011F0" +static const ALIGN_ASSET(2) char object_oA8_DL_000011F0[] = dobject_oA8_DL_000011F0; + +#define dobject_oA8_DL_00001248 "__OTR__objects/object_oA8/object_oA8_DL_00001248" +static const ALIGN_ASSET(2) char object_oA8_DL_00001248[] = dobject_oA8_DL_00001248; + +#define dobject_oA8_DL_000012D8 "__OTR__objects/object_oA8/object_oA8_DL_000012D8" +static const ALIGN_ASSET(2) char object_oA8_DL_000012D8[] = dobject_oA8_DL_000012D8; + +#define dobject_oA8_DL_00001390 "__OTR__objects/object_oA8/object_oA8_DL_00001390" +static const ALIGN_ASSET(2) char object_oA8_DL_00001390[] = dobject_oA8_DL_00001390; + +#define dobject_oA8_DL_00001468 "__OTR__objects/object_oA8/object_oA8_DL_00001468" +static const ALIGN_ASSET(2) char object_oA8_DL_00001468[] = dobject_oA8_DL_00001468; + +#define dobject_oA8_DL_000014C0 "__OTR__objects/object_oA8/object_oA8_DL_000014C0" +static const ALIGN_ASSET(2) char object_oA8_DL_000014C0[] = dobject_oA8_DL_000014C0; + +#define dobject_oA8_DL_00001518 "__OTR__objects/object_oA8/object_oA8_DL_00001518" +static const ALIGN_ASSET(2) char object_oA8_DL_00001518[] = dobject_oA8_DL_00001518; + +#define dobject_oA8_Tex_00001570 "__OTR__objects/object_oA8/object_oA8_Tex_00001570" +static const ALIGN_ASSET(2) char object_oA8_Tex_00001570[] = dobject_oA8_Tex_00001570; + +#define dobject_oA8_Tex_00001670 "__OTR__objects/object_oA8/object_oA8_Tex_00001670" +static const ALIGN_ASSET(2) char object_oA8_Tex_00001670[] = dobject_oA8_Tex_00001670; + +#define dobject_oA8_Tex_00001770 "__OTR__objects/object_oA8/object_oA8_Tex_00001770" +static const ALIGN_ASSET(2) char object_oA8_Tex_00001770[] = dobject_oA8_Tex_00001770; \ No newline at end of file diff --git a/soh/assets/objects/object_oA9/object_oA9.h b/soh/assets/objects/object_oA9/object_oA9.h index 09ad82f60..39e8426c8 100644 --- a/soh/assets/objects/object_oA9/object_oA9.h +++ b/soh/assets/objects/object_oA9/object_oA9.h @@ -1,23 +1,12 @@ #pragma once -#define dobject_oA9_DL_00000250 "__OTR__objects/object_oA9/object_oA9_DL_00000250" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA9_DL_00000250[] = dobject_oA9_DL_00000250; -#else -static const char object_oA9_DL_00000250[] __attribute__((aligned (2))) = dobject_oA9_DL_00000250; -#endif - -#define dobject_oA9_Tex_000003A0 "__OTR__objects/object_oA9/object_oA9_Tex_000003A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA9_Tex_000003A0[] = dobject_oA9_Tex_000003A0; -#else -static const char object_oA9_Tex_000003A0[] __attribute__((aligned (2))) = dobject_oA9_Tex_000003A0; -#endif - -#define dobject_oA9_Tex_000004A0 "__OTR__objects/object_oA9/object_oA9_Tex_000004A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oA9_Tex_000004A0[] = dobject_oA9_Tex_000004A0; -#else -static const char object_oA9_Tex_000004A0[] __attribute__((aligned (2))) = dobject_oA9_Tex_000004A0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oA9_DL_00000250 "__OTR__objects/object_oA9/object_oA9_DL_00000250" +static const ALIGN_ASSET(2) char object_oA9_DL_00000250[] = dobject_oA9_DL_00000250; + +#define dobject_oA9_Tex_000003A0 "__OTR__objects/object_oA9/object_oA9_Tex_000003A0" +static const ALIGN_ASSET(2) char object_oA9_Tex_000003A0[] = dobject_oA9_Tex_000003A0; + +#define dobject_oA9_Tex_000004A0 "__OTR__objects/object_oA9/object_oA9_Tex_000004A0" +static const ALIGN_ASSET(2) char object_oA9_Tex_000004A0[] = dobject_oA9_Tex_000004A0; \ No newline at end of file diff --git a/soh/assets/objects/object_oB1/object_oB1.h b/soh/assets/objects/object_oB1/object_oB1.h index b3007e721..2f091a5c6 100644 --- a/soh/assets/objects/object_oB1/object_oB1.h +++ b/soh/assets/objects/object_oB1/object_oB1.h @@ -1,191 +1,84 @@ #pragma once -#define dobject_oB1_Skel_00000260 "__OTR__objects/object_oB1/object_oB1_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Skel_00000260[] = dobject_oB1_Skel_00000260; -#else -static const char object_oB1_Skel_00000260[] __attribute__((aligned (2))) = dobject_oB1_Skel_00000260; -#endif - -#define dobject_oB1_DL_00000448 "__OTR__objects/object_oB1/object_oB1_DL_00000448" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00000448[] = dobject_oB1_DL_00000448; -#else -static const char object_oB1_DL_00000448[] __attribute__((aligned (2))) = dobject_oB1_DL_00000448; -#endif - -#define dobject_oB1_DL_00000750 "__OTR__objects/object_oB1/object_oB1_DL_00000750" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00000750[] = dobject_oB1_DL_00000750; -#else -static const char object_oB1_DL_00000750[] __attribute__((aligned (2))) = dobject_oB1_DL_00000750; -#endif - -#define dobject_oB1_DL_000008E8 "__OTR__objects/object_oB1/object_oB1_DL_000008E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_000008E8[] = dobject_oB1_DL_000008E8; -#else -static const char object_oB1_DL_000008E8[] __attribute__((aligned (2))) = dobject_oB1_DL_000008E8; -#endif - -#define dobject_oB1_DL_00000C08 "__OTR__objects/object_oB1/object_oB1_DL_00000C08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00000C08[] = dobject_oB1_DL_00000C08; -#else -static const char object_oB1_DL_00000C08[] __attribute__((aligned (2))) = dobject_oB1_DL_00000C08; -#endif - -#define dobject_oB1_DL_00000EF0 "__OTR__objects/object_oB1/object_oB1_DL_00000EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00000EF0[] = dobject_oB1_DL_00000EF0; -#else -static const char object_oB1_DL_00000EF0[] __attribute__((aligned (2))) = dobject_oB1_DL_00000EF0; -#endif - -#define dobject_oB1_DL_00001490 "__OTR__objects/object_oB1/object_oB1_DL_00001490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00001490[] = dobject_oB1_DL_00001490; -#else -static const char object_oB1_DL_00001490[] __attribute__((aligned (2))) = dobject_oB1_DL_00001490; -#endif - -#define dobject_oB1_DL_00001920 "__OTR__objects/object_oB1/object_oB1_DL_00001920" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00001920[] = dobject_oB1_DL_00001920; -#else -static const char object_oB1_DL_00001920[] __attribute__((aligned (2))) = dobject_oB1_DL_00001920; -#endif - -#define dobject_oB1_DL_00001C28 "__OTR__objects/object_oB1/object_oB1_DL_00001C28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00001C28[] = dobject_oB1_DL_00001C28; -#else -static const char object_oB1_DL_00001C28[] __attribute__((aligned (2))) = dobject_oB1_DL_00001C28; -#endif - -#define dobject_oB1_DL_00001DC0 "__OTR__objects/object_oB1/object_oB1_DL_00001DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00001DC0[] = dobject_oB1_DL_00001DC0; -#else -static const char object_oB1_DL_00001DC0[] __attribute__((aligned (2))) = dobject_oB1_DL_00001DC0; -#endif - -#define dobject_oB1_DL_000020E0 "__OTR__objects/object_oB1/object_oB1_DL_000020E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_000020E0[] = dobject_oB1_DL_000020E0; -#else -static const char object_oB1_DL_000020E0[] __attribute__((aligned (2))) = dobject_oB1_DL_000020E0; -#endif - -#define dobject_oB1_DL_000023C8 "__OTR__objects/object_oB1/object_oB1_DL_000023C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_000023C8[] = dobject_oB1_DL_000023C8; -#else -static const char object_oB1_DL_000023C8[] __attribute__((aligned (2))) = dobject_oB1_DL_000023C8; -#endif - -#define dobject_oB1_DL_00002968 "__OTR__objects/object_oB1/object_oB1_DL_00002968" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00002968[] = dobject_oB1_DL_00002968; -#else -static const char object_oB1_DL_00002968[] __attribute__((aligned (2))) = dobject_oB1_DL_00002968; -#endif - -#define dobject_oB1_DL_000032F8 "__OTR__objects/object_oB1/object_oB1_DL_000032F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_000032F8[] = dobject_oB1_DL_000032F8; -#else -static const char object_oB1_DL_000032F8[] __attribute__((aligned (2))) = dobject_oB1_DL_000032F8; -#endif - -#define dobject_oB1_DL_00003600 "__OTR__objects/object_oB1/object_oB1_DL_00003600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00003600[] = dobject_oB1_DL_00003600; -#else -static const char object_oB1_DL_00003600[] __attribute__((aligned (2))) = dobject_oB1_DL_00003600; -#endif - -#define dobject_oB1_DL_00003CA8 "__OTR__objects/object_oB1/object_oB1_DL_00003CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_DL_00003CA8[] = dobject_oB1_DL_00003CA8; -#else -static const char object_oB1_DL_00003CA8[] __attribute__((aligned (2))) = dobject_oB1_DL_00003CA8; -#endif - -#define dobject_oB1_Tex_00003EB0 "__OTR__objects/object_oB1/object_oB1_Tex_00003EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_00003EB0[] = dobject_oB1_Tex_00003EB0; -#else -static const char object_oB1_Tex_00003EB0[] __attribute__((aligned (2))) = dobject_oB1_Tex_00003EB0; -#endif - -#define dobject_oB1_Tex_000040B0 "__OTR__objects/object_oB1/object_oB1_Tex_000040B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_000040B0[] = dobject_oB1_Tex_000040B0; -#else -static const char object_oB1_Tex_000040B0[] __attribute__((aligned (2))) = dobject_oB1_Tex_000040B0; -#endif - -#define dobject_oB1_Tex_000042B0 "__OTR__objects/object_oB1/object_oB1_Tex_000042B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_000042B0[] = dobject_oB1_Tex_000042B0; -#else -static const char object_oB1_Tex_000042B0[] __attribute__((aligned (2))) = dobject_oB1_Tex_000042B0; -#endif - -#define dobject_oB1_Tex_00004AB0 "__OTR__objects/object_oB1/object_oB1_Tex_00004AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_00004AB0[] = dobject_oB1_Tex_00004AB0; -#else -static const char object_oB1_Tex_00004AB0[] __attribute__((aligned (2))) = dobject_oB1_Tex_00004AB0; -#endif - -#define dobject_oB1_Tex_00004CB0 "__OTR__objects/object_oB1/object_oB1_Tex_00004CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_00004CB0[] = dobject_oB1_Tex_00004CB0; -#else -static const char object_oB1_Tex_00004CB0[] __attribute__((aligned (2))) = dobject_oB1_Tex_00004CB0; -#endif - -#define dobject_oB1_Tex_000054B0 "__OTR__objects/object_oB1/object_oB1_Tex_000054B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_000054B0[] = dobject_oB1_Tex_000054B0; -#else -static const char object_oB1_Tex_000054B0[] __attribute__((aligned (2))) = dobject_oB1_Tex_000054B0; -#endif - -#define dobject_oB1_Tex_000056B0 "__OTR__objects/object_oB1/object_oB1_Tex_000056B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_000056B0[] = dobject_oB1_Tex_000056B0; -#else -static const char object_oB1_Tex_000056B0[] __attribute__((aligned (2))) = dobject_oB1_Tex_000056B0; -#endif - -#define dobject_oB1_Tex_00005EB0 "__OTR__objects/object_oB1/object_oB1_Tex_00005EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_00005EB0[] = dobject_oB1_Tex_00005EB0; -#else -static const char object_oB1_Tex_00005EB0[] __attribute__((aligned (2))) = dobject_oB1_Tex_00005EB0; -#endif - -#define dobject_oB1_Tex_000060B0 "__OTR__objects/object_oB1/object_oB1_Tex_000060B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_000060B0[] = dobject_oB1_Tex_000060B0; -#else -static const char object_oB1_Tex_000060B0[] __attribute__((aligned (2))) = dobject_oB1_Tex_000060B0; -#endif - -#define dobject_oB1_Tex_000062B0 "__OTR__objects/object_oB1/object_oB1_Tex_000062B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_000062B0[] = dobject_oB1_Tex_000062B0; -#else -static const char object_oB1_Tex_000062B0[] __attribute__((aligned (2))) = dobject_oB1_Tex_000062B0; -#endif - -#define dobject_oB1_Tex_000064B0 "__OTR__objects/object_oB1/object_oB1_Tex_000064B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB1_Tex_000064B0[] = dobject_oB1_Tex_000064B0; -#else -static const char object_oB1_Tex_000064B0[] __attribute__((aligned (2))) = dobject_oB1_Tex_000064B0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oB1_Skel_00000260 "__OTR__objects/object_oB1/object_oB1_Skel_00000260" +static const ALIGN_ASSET(2) char object_oB1_Skel_00000260[] = dobject_oB1_Skel_00000260; + +#define dobject_oB1_DL_00000448 "__OTR__objects/object_oB1/object_oB1_DL_00000448" +static const ALIGN_ASSET(2) char object_oB1_DL_00000448[] = dobject_oB1_DL_00000448; + +#define dobject_oB1_DL_00000750 "__OTR__objects/object_oB1/object_oB1_DL_00000750" +static const ALIGN_ASSET(2) char object_oB1_DL_00000750[] = dobject_oB1_DL_00000750; + +#define dobject_oB1_DL_000008E8 "__OTR__objects/object_oB1/object_oB1_DL_000008E8" +static const ALIGN_ASSET(2) char object_oB1_DL_000008E8[] = dobject_oB1_DL_000008E8; + +#define dobject_oB1_DL_00000C08 "__OTR__objects/object_oB1/object_oB1_DL_00000C08" +static const ALIGN_ASSET(2) char object_oB1_DL_00000C08[] = dobject_oB1_DL_00000C08; + +#define dobject_oB1_DL_00000EF0 "__OTR__objects/object_oB1/object_oB1_DL_00000EF0" +static const ALIGN_ASSET(2) char object_oB1_DL_00000EF0[] = dobject_oB1_DL_00000EF0; + +#define dobject_oB1_DL_00001490 "__OTR__objects/object_oB1/object_oB1_DL_00001490" +static const ALIGN_ASSET(2) char object_oB1_DL_00001490[] = dobject_oB1_DL_00001490; + +#define dobject_oB1_DL_00001920 "__OTR__objects/object_oB1/object_oB1_DL_00001920" +static const ALIGN_ASSET(2) char object_oB1_DL_00001920[] = dobject_oB1_DL_00001920; + +#define dobject_oB1_DL_00001C28 "__OTR__objects/object_oB1/object_oB1_DL_00001C28" +static const ALIGN_ASSET(2) char object_oB1_DL_00001C28[] = dobject_oB1_DL_00001C28; + +#define dobject_oB1_DL_00001DC0 "__OTR__objects/object_oB1/object_oB1_DL_00001DC0" +static const ALIGN_ASSET(2) char object_oB1_DL_00001DC0[] = dobject_oB1_DL_00001DC0; + +#define dobject_oB1_DL_000020E0 "__OTR__objects/object_oB1/object_oB1_DL_000020E0" +static const ALIGN_ASSET(2) char object_oB1_DL_000020E0[] = dobject_oB1_DL_000020E0; + +#define dobject_oB1_DL_000023C8 "__OTR__objects/object_oB1/object_oB1_DL_000023C8" +static const ALIGN_ASSET(2) char object_oB1_DL_000023C8[] = dobject_oB1_DL_000023C8; + +#define dobject_oB1_DL_00002968 "__OTR__objects/object_oB1/object_oB1_DL_00002968" +static const ALIGN_ASSET(2) char object_oB1_DL_00002968[] = dobject_oB1_DL_00002968; + +#define dobject_oB1_DL_000032F8 "__OTR__objects/object_oB1/object_oB1_DL_000032F8" +static const ALIGN_ASSET(2) char object_oB1_DL_000032F8[] = dobject_oB1_DL_000032F8; + +#define dobject_oB1_DL_00003600 "__OTR__objects/object_oB1/object_oB1_DL_00003600" +static const ALIGN_ASSET(2) char object_oB1_DL_00003600[] = dobject_oB1_DL_00003600; + +#define dobject_oB1_DL_00003CA8 "__OTR__objects/object_oB1/object_oB1_DL_00003CA8" +static const ALIGN_ASSET(2) char object_oB1_DL_00003CA8[] = dobject_oB1_DL_00003CA8; + +#define dobject_oB1_Tex_00003EB0 "__OTR__objects/object_oB1/object_oB1_Tex_00003EB0" +static const ALIGN_ASSET(2) char object_oB1_Tex_00003EB0[] = dobject_oB1_Tex_00003EB0; + +#define dobject_oB1_Tex_000040B0 "__OTR__objects/object_oB1/object_oB1_Tex_000040B0" +static const ALIGN_ASSET(2) char object_oB1_Tex_000040B0[] = dobject_oB1_Tex_000040B0; + +#define dobject_oB1_Tex_000042B0 "__OTR__objects/object_oB1/object_oB1_Tex_000042B0" +static const ALIGN_ASSET(2) char object_oB1_Tex_000042B0[] = dobject_oB1_Tex_000042B0; + +#define dobject_oB1_Tex_00004AB0 "__OTR__objects/object_oB1/object_oB1_Tex_00004AB0" +static const ALIGN_ASSET(2) char object_oB1_Tex_00004AB0[] = dobject_oB1_Tex_00004AB0; + +#define dobject_oB1_Tex_00004CB0 "__OTR__objects/object_oB1/object_oB1_Tex_00004CB0" +static const ALIGN_ASSET(2) char object_oB1_Tex_00004CB0[] = dobject_oB1_Tex_00004CB0; + +#define dobject_oB1_Tex_000054B0 "__OTR__objects/object_oB1/object_oB1_Tex_000054B0" +static const ALIGN_ASSET(2) char object_oB1_Tex_000054B0[] = dobject_oB1_Tex_000054B0; + +#define dobject_oB1_Tex_000056B0 "__OTR__objects/object_oB1/object_oB1_Tex_000056B0" +static const ALIGN_ASSET(2) char object_oB1_Tex_000056B0[] = dobject_oB1_Tex_000056B0; + +#define dobject_oB1_Tex_00005EB0 "__OTR__objects/object_oB1/object_oB1_Tex_00005EB0" +static const ALIGN_ASSET(2) char object_oB1_Tex_00005EB0[] = dobject_oB1_Tex_00005EB0; + +#define dobject_oB1_Tex_000060B0 "__OTR__objects/object_oB1/object_oB1_Tex_000060B0" +static const ALIGN_ASSET(2) char object_oB1_Tex_000060B0[] = dobject_oB1_Tex_000060B0; + +#define dobject_oB1_Tex_000062B0 "__OTR__objects/object_oB1/object_oB1_Tex_000062B0" +static const ALIGN_ASSET(2) char object_oB1_Tex_000062B0[] = dobject_oB1_Tex_000062B0; + +#define dobject_oB1_Tex_000064B0 "__OTR__objects/object_oB1/object_oB1_Tex_000064B0" +static const ALIGN_ASSET(2) char object_oB1_Tex_000064B0[] = dobject_oB1_Tex_000064B0; \ No newline at end of file diff --git a/soh/assets/objects/object_oB2/object_oB2.h b/soh/assets/objects/object_oB2/object_oB2.h index fd2a7c8a4..d2c60de10 100644 --- a/soh/assets/objects/object_oB2/object_oB2.h +++ b/soh/assets/objects/object_oB2/object_oB2.h @@ -1,128 +1,57 @@ #pragma once -#define dobject_oB2_DL_001F68 "__OTR__objects/object_oB2/object_oB2_DL_001F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_DL_001F68[] = dobject_oB2_DL_001F68; -#else -static const char object_oB2_DL_001F68[] __attribute__((aligned (2))) = dobject_oB2_DL_001F68; -#endif - -#define dobject_oB2_DL_0021D0 "__OTR__objects/object_oB2/object_oB2_DL_0021D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_DL_0021D0[] = dobject_oB2_DL_0021D0; -#else -static const char object_oB2_DL_0021D0[] __attribute__((aligned (2))) = dobject_oB2_DL_0021D0; -#endif - -#define dobject_oB2_DL_002450 "__OTR__objects/object_oB2/object_oB2_DL_002450" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_DL_002450[] = dobject_oB2_DL_002450; -#else -static const char object_oB2_DL_002450[] __attribute__((aligned (2))) = dobject_oB2_DL_002450; -#endif - -#define dobject_oB2_DL_0025B8 "__OTR__objects/object_oB2/object_oB2_DL_0025B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_DL_0025B8[] = dobject_oB2_DL_0025B8; -#else -static const char object_oB2_DL_0025B8[] __attribute__((aligned (2))) = dobject_oB2_DL_0025B8; -#endif - -#define dobject_oB2_DL_002678 "__OTR__objects/object_oB2/object_oB2_DL_002678" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_DL_002678[] = dobject_oB2_DL_002678; -#else -static const char object_oB2_DL_002678[] __attribute__((aligned (2))) = dobject_oB2_DL_002678; -#endif - -#define dobject_oB2_DL_002758 "__OTR__objects/object_oB2/object_oB2_DL_002758" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_DL_002758[] = dobject_oB2_DL_002758; -#else -static const char object_oB2_DL_002758[] __attribute__((aligned (2))) = dobject_oB2_DL_002758; -#endif - -#define dobject_oB2_DL_0028B8 "__OTR__objects/object_oB2/object_oB2_DL_0028B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_DL_0028B8[] = dobject_oB2_DL_0028B8; -#else -static const char object_oB2_DL_0028B8[] __attribute__((aligned (2))) = dobject_oB2_DL_0028B8; -#endif - -#define dobject_oB2_DL_002978 "__OTR__objects/object_oB2/object_oB2_DL_002978" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_DL_002978[] = dobject_oB2_DL_002978; -#else -static const char object_oB2_DL_002978[] __attribute__((aligned (2))) = dobject_oB2_DL_002978; -#endif - -#define dobject_oB2_Tex_002A58 "__OTR__objects/object_oB2/object_oB2_Tex_002A58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_002A58[] = dobject_oB2_Tex_002A58; -#else -static const char object_oB2_Tex_002A58[] __attribute__((aligned (2))) = dobject_oB2_Tex_002A58; -#endif - -#define dobject_oB2_Tex_002C58 "__OTR__objects/object_oB2/object_oB2_Tex_002C58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_002C58[] = dobject_oB2_Tex_002C58; -#else -static const char object_oB2_Tex_002C58[] __attribute__((aligned (2))) = dobject_oB2_Tex_002C58; -#endif - -#define dobject_oB2_Tex_002CD8 "__OTR__objects/object_oB2/object_oB2_Tex_002CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_002CD8[] = dobject_oB2_Tex_002CD8; -#else -static const char object_oB2_Tex_002CD8[] __attribute__((aligned (2))) = dobject_oB2_Tex_002CD8; -#endif - -#define dobject_oB2_Tex_0030D8 "__OTR__objects/object_oB2/object_oB2_Tex_0030D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_0030D8[] = dobject_oB2_Tex_0030D8; -#else -static const char object_oB2_Tex_0030D8[] __attribute__((aligned (2))) = dobject_oB2_Tex_0030D8; -#endif - -#define dobject_oB2_Tex_0031D8 "__OTR__objects/object_oB2/object_oB2_Tex_0031D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_0031D8[] = dobject_oB2_Tex_0031D8; -#else -static const char object_oB2_Tex_0031D8[] __attribute__((aligned (2))) = dobject_oB2_Tex_0031D8; -#endif - -#define dobject_oB2_Tex_0039D8 "__OTR__objects/object_oB2/object_oB2_Tex_0039D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_0039D8[] = dobject_oB2_Tex_0039D8; -#else -static const char object_oB2_Tex_0039D8[] __attribute__((aligned (2))) = dobject_oB2_Tex_0039D8; -#endif - -#define dobject_oB2_Tex_003BD8 "__OTR__objects/object_oB2/object_oB2_Tex_003BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_003BD8[] = dobject_oB2_Tex_003BD8; -#else -static const char object_oB2_Tex_003BD8[] __attribute__((aligned (2))) = dobject_oB2_Tex_003BD8; -#endif - -#define dobject_oB2_Tex_003C58 "__OTR__objects/object_oB2/object_oB2_Tex_003C58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_003C58[] = dobject_oB2_Tex_003C58; -#else -static const char object_oB2_Tex_003C58[] __attribute__((aligned (2))) = dobject_oB2_Tex_003C58; -#endif - -#define dobject_oB2_Tex_003E58 "__OTR__objects/object_oB2/object_oB2_Tex_003E58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_003E58[] = dobject_oB2_Tex_003E58; -#else -static const char object_oB2_Tex_003E58[] __attribute__((aligned (2))) = dobject_oB2_Tex_003E58; -#endif - -#define dobject_oB2_Tex_004058 "__OTR__objects/object_oB2/object_oB2_Tex_004058" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB2_Tex_004058[] = dobject_oB2_Tex_004058; -#else -static const char object_oB2_Tex_004058[] __attribute__((aligned (2))) = dobject_oB2_Tex_004058; -#endif - +#include "align_asset_macro.h" + +#define dobject_oB2_DL_001F68 "__OTR__objects/object_oB2/object_oB2_DL_001F68" +static const ALIGN_ASSET(2) char object_oB2_DL_001F68[] = dobject_oB2_DL_001F68; + +#define dobject_oB2_DL_0021D0 "__OTR__objects/object_oB2/object_oB2_DL_0021D0" +static const ALIGN_ASSET(2) char object_oB2_DL_0021D0[] = dobject_oB2_DL_0021D0; + +#define dobject_oB2_DL_002450 "__OTR__objects/object_oB2/object_oB2_DL_002450" +static const ALIGN_ASSET(2) char object_oB2_DL_002450[] = dobject_oB2_DL_002450; + +#define dobject_oB2_DL_0025B8 "__OTR__objects/object_oB2/object_oB2_DL_0025B8" +static const ALIGN_ASSET(2) char object_oB2_DL_0025B8[] = dobject_oB2_DL_0025B8; + +#define dobject_oB2_DL_002678 "__OTR__objects/object_oB2/object_oB2_DL_002678" +static const ALIGN_ASSET(2) char object_oB2_DL_002678[] = dobject_oB2_DL_002678; + +#define dobject_oB2_DL_002758 "__OTR__objects/object_oB2/object_oB2_DL_002758" +static const ALIGN_ASSET(2) char object_oB2_DL_002758[] = dobject_oB2_DL_002758; + +#define dobject_oB2_DL_0028B8 "__OTR__objects/object_oB2/object_oB2_DL_0028B8" +static const ALIGN_ASSET(2) char object_oB2_DL_0028B8[] = dobject_oB2_DL_0028B8; + +#define dobject_oB2_DL_002978 "__OTR__objects/object_oB2/object_oB2_DL_002978" +static const ALIGN_ASSET(2) char object_oB2_DL_002978[] = dobject_oB2_DL_002978; + +#define dobject_oB2_Tex_002A58 "__OTR__objects/object_oB2/object_oB2_Tex_002A58" +static const ALIGN_ASSET(2) char object_oB2_Tex_002A58[] = dobject_oB2_Tex_002A58; + +#define dobject_oB2_Tex_002C58 "__OTR__objects/object_oB2/object_oB2_Tex_002C58" +static const ALIGN_ASSET(2) char object_oB2_Tex_002C58[] = dobject_oB2_Tex_002C58; + +#define dobject_oB2_Tex_002CD8 "__OTR__objects/object_oB2/object_oB2_Tex_002CD8" +static const ALIGN_ASSET(2) char object_oB2_Tex_002CD8[] = dobject_oB2_Tex_002CD8; + +#define dobject_oB2_Tex_0030D8 "__OTR__objects/object_oB2/object_oB2_Tex_0030D8" +static const ALIGN_ASSET(2) char object_oB2_Tex_0030D8[] = dobject_oB2_Tex_0030D8; + +#define dobject_oB2_Tex_0031D8 "__OTR__objects/object_oB2/object_oB2_Tex_0031D8" +static const ALIGN_ASSET(2) char object_oB2_Tex_0031D8[] = dobject_oB2_Tex_0031D8; + +#define dobject_oB2_Tex_0039D8 "__OTR__objects/object_oB2/object_oB2_Tex_0039D8" +static const ALIGN_ASSET(2) char object_oB2_Tex_0039D8[] = dobject_oB2_Tex_0039D8; + +#define dobject_oB2_Tex_003BD8 "__OTR__objects/object_oB2/object_oB2_Tex_003BD8" +static const ALIGN_ASSET(2) char object_oB2_Tex_003BD8[] = dobject_oB2_Tex_003BD8; + +#define dobject_oB2_Tex_003C58 "__OTR__objects/object_oB2/object_oB2_Tex_003C58" +static const ALIGN_ASSET(2) char object_oB2_Tex_003C58[] = dobject_oB2_Tex_003C58; + +#define dobject_oB2_Tex_003E58 "__OTR__objects/object_oB2/object_oB2_Tex_003E58" +static const ALIGN_ASSET(2) char object_oB2_Tex_003E58[] = dobject_oB2_Tex_003E58; + +#define dobject_oB2_Tex_004058 "__OTR__objects/object_oB2/object_oB2_Tex_004058" +static const ALIGN_ASSET(2) char object_oB2_Tex_004058[] = dobject_oB2_Tex_004058; \ No newline at end of file diff --git a/soh/assets/objects/object_oB3/object_oB3.h b/soh/assets/objects/object_oB3/object_oB3.h index eeb85b861..ead2159cf 100644 --- a/soh/assets/objects/object_oB3/object_oB3.h +++ b/soh/assets/objects/object_oB3/object_oB3.h @@ -1,198 +1,87 @@ #pragma once -#define dobject_oB3_Skel_00000260 "__OTR__objects/object_oB3/object_oB3_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Skel_00000260[] = dobject_oB3_Skel_00000260; -#else -static const char object_oB3_Skel_00000260[] __attribute__((aligned (2))) = dobject_oB3_Skel_00000260; -#endif - -#define dobject_oB3_DL_00001F28 "__OTR__objects/object_oB3/object_oB3_DL_00001F28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00001F28[] = dobject_oB3_DL_00001F28; -#else -static const char object_oB3_DL_00001F28[] __attribute__((aligned (2))) = dobject_oB3_DL_00001F28; -#endif - -#define dobject_oB3_DL_00002118 "__OTR__objects/object_oB3/object_oB3_DL_00002118" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002118[] = dobject_oB3_DL_00002118; -#else -static const char object_oB3_DL_00002118[] __attribute__((aligned (2))) = dobject_oB3_DL_00002118; -#endif - -#define dobject_oB3_DL_00002208 "__OTR__objects/object_oB3/object_oB3_DL_00002208" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002208[] = dobject_oB3_DL_00002208; -#else -static const char object_oB3_DL_00002208[] __attribute__((aligned (2))) = dobject_oB3_DL_00002208; -#endif - -#define dobject_oB3_DL_00002528 "__OTR__objects/object_oB3/object_oB3_DL_00002528" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002528[] = dobject_oB3_DL_00002528; -#else -static const char object_oB3_DL_00002528[] __attribute__((aligned (2))) = dobject_oB3_DL_00002528; -#endif - -#define dobject_oB3_DL_00002640 "__OTR__objects/object_oB3/object_oB3_DL_00002640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002640[] = dobject_oB3_DL_00002640; -#else -static const char object_oB3_DL_00002640[] __attribute__((aligned (2))) = dobject_oB3_DL_00002640; -#endif - -#define dobject_oB3_DL_00002748 "__OTR__objects/object_oB3/object_oB3_DL_00002748" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002748[] = dobject_oB3_DL_00002748; -#else -static const char object_oB3_DL_00002748[] __attribute__((aligned (2))) = dobject_oB3_DL_00002748; -#endif - -#define dobject_oB3_DL_00002810 "__OTR__objects/object_oB3/object_oB3_DL_00002810" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002810[] = dobject_oB3_DL_00002810; -#else -static const char object_oB3_DL_00002810[] __attribute__((aligned (2))) = dobject_oB3_DL_00002810; -#endif - -#define dobject_oB3_DL_00002868 "__OTR__objects/object_oB3/object_oB3_DL_00002868" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002868[] = dobject_oB3_DL_00002868; -#else -static const char object_oB3_DL_00002868[] __attribute__((aligned (2))) = dobject_oB3_DL_00002868; -#endif - -#define dobject_oB3_DL_000028C0 "__OTR__objects/object_oB3/object_oB3_DL_000028C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_000028C0[] = dobject_oB3_DL_000028C0; -#else -static const char object_oB3_DL_000028C0[] __attribute__((aligned (2))) = dobject_oB3_DL_000028C0; -#endif - -#define dobject_oB3_DL_00002918 "__OTR__objects/object_oB3/object_oB3_DL_00002918" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002918[] = dobject_oB3_DL_00002918; -#else -static const char object_oB3_DL_00002918[] __attribute__((aligned (2))) = dobject_oB3_DL_00002918; -#endif - -#define dobject_oB3_DL_00002A30 "__OTR__objects/object_oB3/object_oB3_DL_00002A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002A30[] = dobject_oB3_DL_00002A30; -#else -static const char object_oB3_DL_00002A30[] __attribute__((aligned (2))) = dobject_oB3_DL_00002A30; -#endif - -#define dobject_oB3_DL_00002B38 "__OTR__objects/object_oB3/object_oB3_DL_00002B38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002B38[] = dobject_oB3_DL_00002B38; -#else -static const char object_oB3_DL_00002B38[] __attribute__((aligned (2))) = dobject_oB3_DL_00002B38; -#endif - -#define dobject_oB3_DL_00002C00 "__OTR__objects/object_oB3/object_oB3_DL_00002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002C00[] = dobject_oB3_DL_00002C00; -#else -static const char object_oB3_DL_00002C00[] __attribute__((aligned (2))) = dobject_oB3_DL_00002C00; -#endif - -#define dobject_oB3_DL_00002C58 "__OTR__objects/object_oB3/object_oB3_DL_00002C58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002C58[] = dobject_oB3_DL_00002C58; -#else -static const char object_oB3_DL_00002C58[] __attribute__((aligned (2))) = dobject_oB3_DL_00002C58; -#endif - -#define dobject_oB3_DL_00002CB0 "__OTR__objects/object_oB3/object_oB3_DL_00002CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_DL_00002CB0[] = dobject_oB3_DL_00002CB0; -#else -static const char object_oB3_DL_00002CB0[] __attribute__((aligned (2))) = dobject_oB3_DL_00002CB0; -#endif - -#define dobject_oB3_Tex_00002D08 "__OTR__objects/object_oB3/object_oB3_Tex_00002D08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00002D08[] = dobject_oB3_Tex_00002D08; -#else -static const char object_oB3_Tex_00002D08[] __attribute__((aligned (2))) = dobject_oB3_Tex_00002D08; -#endif - -#define dobject_oB3_Tex_00003108 "__OTR__objects/object_oB3/object_oB3_Tex_00003108" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00003108[] = dobject_oB3_Tex_00003108; -#else -static const char object_oB3_Tex_00003108[] __attribute__((aligned (2))) = dobject_oB3_Tex_00003108; -#endif - -#define dobject_oB3_Tex_00003508 "__OTR__objects/object_oB3/object_oB3_Tex_00003508" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00003508[] = dobject_oB3_Tex_00003508; -#else -static const char object_oB3_Tex_00003508[] __attribute__((aligned (2))) = dobject_oB3_Tex_00003508; -#endif - -#define dobject_oB3_Tex_00003588 "__OTR__objects/object_oB3/object_oB3_Tex_00003588" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00003588[] = dobject_oB3_Tex_00003588; -#else -static const char object_oB3_Tex_00003588[] __attribute__((aligned (2))) = dobject_oB3_Tex_00003588; -#endif - -#define dobject_oB3_Tex_00003788 "__OTR__objects/object_oB3/object_oB3_Tex_00003788" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00003788[] = dobject_oB3_Tex_00003788; -#else -static const char object_oB3_Tex_00003788[] __attribute__((aligned (2))) = dobject_oB3_Tex_00003788; -#endif - -#define dobject_oB3_Tex_00003988 "__OTR__objects/object_oB3/object_oB3_Tex_00003988" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00003988[] = dobject_oB3_Tex_00003988; -#else -static const char object_oB3_Tex_00003988[] __attribute__((aligned (2))) = dobject_oB3_Tex_00003988; -#endif - -#define dobject_oB3_Tex_00003A08 "__OTR__objects/object_oB3/object_oB3_Tex_00003A08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00003A08[] = dobject_oB3_Tex_00003A08; -#else -static const char object_oB3_Tex_00003A08[] __attribute__((aligned (2))) = dobject_oB3_Tex_00003A08; -#endif - -#define dobject_oB3_Tex_00003A88 "__OTR__objects/object_oB3/object_oB3_Tex_00003A88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00003A88[] = dobject_oB3_Tex_00003A88; -#else -static const char object_oB3_Tex_00003A88[] __attribute__((aligned (2))) = dobject_oB3_Tex_00003A88; -#endif - -#define dobject_oB3_Tex_00003B08 "__OTR__objects/object_oB3/object_oB3_Tex_00003B08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00003B08[] = dobject_oB3_Tex_00003B08; -#else -static const char object_oB3_Tex_00003B08[] __attribute__((aligned (2))) = dobject_oB3_Tex_00003B08; -#endif - -#define dobject_oB3_Tex_00004308 "__OTR__objects/object_oB3/object_oB3_Tex_00004308" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00004308[] = dobject_oB3_Tex_00004308; -#else -static const char object_oB3_Tex_00004308[] __attribute__((aligned (2))) = dobject_oB3_Tex_00004308; -#endif - -#define dobject_oB3_Tex_00004388 "__OTR__objects/object_oB3/object_oB3_Tex_00004388" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00004388[] = dobject_oB3_Tex_00004388; -#else -static const char object_oB3_Tex_00004388[] __attribute__((aligned (2))) = dobject_oB3_Tex_00004388; -#endif - -#define dobject_oB3_Tex_00004408 "__OTR__objects/object_oB3/object_oB3_Tex_00004408" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB3_Tex_00004408[] = dobject_oB3_Tex_00004408; -#else -static const char object_oB3_Tex_00004408[] __attribute__((aligned (2))) = dobject_oB3_Tex_00004408; -#endif - +#include "align_asset_macro.h" + +#define dobject_oB3_Skel_00000260 "__OTR__objects/object_oB3/object_oB3_Skel_00000260" +static const ALIGN_ASSET(2) char object_oB3_Skel_00000260[] = dobject_oB3_Skel_00000260; + +#define dobject_oB3_DL_00001F28 "__OTR__objects/object_oB3/object_oB3_DL_00001F28" +static const ALIGN_ASSET(2) char object_oB3_DL_00001F28[] = dobject_oB3_DL_00001F28; + +#define dobject_oB3_DL_00002118 "__OTR__objects/object_oB3/object_oB3_DL_00002118" +static const ALIGN_ASSET(2) char object_oB3_DL_00002118[] = dobject_oB3_DL_00002118; + +#define dobject_oB3_DL_00002208 "__OTR__objects/object_oB3/object_oB3_DL_00002208" +static const ALIGN_ASSET(2) char object_oB3_DL_00002208[] = dobject_oB3_DL_00002208; + +#define dobject_oB3_DL_00002528 "__OTR__objects/object_oB3/object_oB3_DL_00002528" +static const ALIGN_ASSET(2) char object_oB3_DL_00002528[] = dobject_oB3_DL_00002528; + +#define dobject_oB3_DL_00002640 "__OTR__objects/object_oB3/object_oB3_DL_00002640" +static const ALIGN_ASSET(2) char object_oB3_DL_00002640[] = dobject_oB3_DL_00002640; + +#define dobject_oB3_DL_00002748 "__OTR__objects/object_oB3/object_oB3_DL_00002748" +static const ALIGN_ASSET(2) char object_oB3_DL_00002748[] = dobject_oB3_DL_00002748; + +#define dobject_oB3_DL_00002810 "__OTR__objects/object_oB3/object_oB3_DL_00002810" +static const ALIGN_ASSET(2) char object_oB3_DL_00002810[] = dobject_oB3_DL_00002810; + +#define dobject_oB3_DL_00002868 "__OTR__objects/object_oB3/object_oB3_DL_00002868" +static const ALIGN_ASSET(2) char object_oB3_DL_00002868[] = dobject_oB3_DL_00002868; + +#define dobject_oB3_DL_000028C0 "__OTR__objects/object_oB3/object_oB3_DL_000028C0" +static const ALIGN_ASSET(2) char object_oB3_DL_000028C0[] = dobject_oB3_DL_000028C0; + +#define dobject_oB3_DL_00002918 "__OTR__objects/object_oB3/object_oB3_DL_00002918" +static const ALIGN_ASSET(2) char object_oB3_DL_00002918[] = dobject_oB3_DL_00002918; + +#define dobject_oB3_DL_00002A30 "__OTR__objects/object_oB3/object_oB3_DL_00002A30" +static const ALIGN_ASSET(2) char object_oB3_DL_00002A30[] = dobject_oB3_DL_00002A30; + +#define dobject_oB3_DL_00002B38 "__OTR__objects/object_oB3/object_oB3_DL_00002B38" +static const ALIGN_ASSET(2) char object_oB3_DL_00002B38[] = dobject_oB3_DL_00002B38; + +#define dobject_oB3_DL_00002C00 "__OTR__objects/object_oB3/object_oB3_DL_00002C00" +static const ALIGN_ASSET(2) char object_oB3_DL_00002C00[] = dobject_oB3_DL_00002C00; + +#define dobject_oB3_DL_00002C58 "__OTR__objects/object_oB3/object_oB3_DL_00002C58" +static const ALIGN_ASSET(2) char object_oB3_DL_00002C58[] = dobject_oB3_DL_00002C58; + +#define dobject_oB3_DL_00002CB0 "__OTR__objects/object_oB3/object_oB3_DL_00002CB0" +static const ALIGN_ASSET(2) char object_oB3_DL_00002CB0[] = dobject_oB3_DL_00002CB0; + +#define dobject_oB3_Tex_00002D08 "__OTR__objects/object_oB3/object_oB3_Tex_00002D08" +static const ALIGN_ASSET(2) char object_oB3_Tex_00002D08[] = dobject_oB3_Tex_00002D08; + +#define dobject_oB3_Tex_00003108 "__OTR__objects/object_oB3/object_oB3_Tex_00003108" +static const ALIGN_ASSET(2) char object_oB3_Tex_00003108[] = dobject_oB3_Tex_00003108; + +#define dobject_oB3_Tex_00003508 "__OTR__objects/object_oB3/object_oB3_Tex_00003508" +static const ALIGN_ASSET(2) char object_oB3_Tex_00003508[] = dobject_oB3_Tex_00003508; + +#define dobject_oB3_Tex_00003588 "__OTR__objects/object_oB3/object_oB3_Tex_00003588" +static const ALIGN_ASSET(2) char object_oB3_Tex_00003588[] = dobject_oB3_Tex_00003588; + +#define dobject_oB3_Tex_00003788 "__OTR__objects/object_oB3/object_oB3_Tex_00003788" +static const ALIGN_ASSET(2) char object_oB3_Tex_00003788[] = dobject_oB3_Tex_00003788; + +#define dobject_oB3_Tex_00003988 "__OTR__objects/object_oB3/object_oB3_Tex_00003988" +static const ALIGN_ASSET(2) char object_oB3_Tex_00003988[] = dobject_oB3_Tex_00003988; + +#define dobject_oB3_Tex_00003A08 "__OTR__objects/object_oB3/object_oB3_Tex_00003A08" +static const ALIGN_ASSET(2) char object_oB3_Tex_00003A08[] = dobject_oB3_Tex_00003A08; + +#define dobject_oB3_Tex_00003A88 "__OTR__objects/object_oB3/object_oB3_Tex_00003A88" +static const ALIGN_ASSET(2) char object_oB3_Tex_00003A88[] = dobject_oB3_Tex_00003A88; + +#define dobject_oB3_Tex_00003B08 "__OTR__objects/object_oB3/object_oB3_Tex_00003B08" +static const ALIGN_ASSET(2) char object_oB3_Tex_00003B08[] = dobject_oB3_Tex_00003B08; + +#define dobject_oB3_Tex_00004308 "__OTR__objects/object_oB3/object_oB3_Tex_00004308" +static const ALIGN_ASSET(2) char object_oB3_Tex_00004308[] = dobject_oB3_Tex_00004308; + +#define dobject_oB3_Tex_00004388 "__OTR__objects/object_oB3/object_oB3_Tex_00004388" +static const ALIGN_ASSET(2) char object_oB3_Tex_00004388[] = dobject_oB3_Tex_00004388; + +#define dobject_oB3_Tex_00004408 "__OTR__objects/object_oB3/object_oB3_Tex_00004408" +static const ALIGN_ASSET(2) char object_oB3_Tex_00004408[] = dobject_oB3_Tex_00004408; \ No newline at end of file diff --git a/soh/assets/objects/object_oB4/object_oB4.h b/soh/assets/objects/object_oB4/object_oB4.h index e376020b2..b0c196534 100644 --- a/soh/assets/objects/object_oB4/object_oB4.h +++ b/soh/assets/objects/object_oB4/object_oB4.h @@ -1,156 +1,69 @@ #pragma once -#define dobject_oB4_Skel_00000260 "__OTR__objects/object_oB4/object_oB4_Skel_00000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_Skel_00000260[] = dobject_oB4_Skel_00000260; -#else -static const char object_oB4_Skel_00000260[] __attribute__((aligned (2))) = dobject_oB4_Skel_00000260; -#endif - -#define dobject_oB4_DL_00000BE8 "__OTR__objects/object_oB4/object_oB4_DL_00000BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00000BE8[] = dobject_oB4_DL_00000BE8; -#else -static const char object_oB4_DL_00000BE8[] __attribute__((aligned (2))) = dobject_oB4_DL_00000BE8; -#endif - -#define dobject_oB4_DL_00000C90 "__OTR__objects/object_oB4/object_oB4_DL_00000C90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00000C90[] = dobject_oB4_DL_00000C90; -#else -static const char object_oB4_DL_00000C90[] __attribute__((aligned (2))) = dobject_oB4_DL_00000C90; -#endif - -#define dobject_oB4_DL_00000DF8 "__OTR__objects/object_oB4/object_oB4_DL_00000DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00000DF8[] = dobject_oB4_DL_00000DF8; -#else -static const char object_oB4_DL_00000DF8[] __attribute__((aligned (2))) = dobject_oB4_DL_00000DF8; -#endif - -#define dobject_oB4_DL_00000E98 "__OTR__objects/object_oB4/object_oB4_DL_00000E98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00000E98[] = dobject_oB4_DL_00000E98; -#else -static const char object_oB4_DL_00000E98[] __attribute__((aligned (2))) = dobject_oB4_DL_00000E98; -#endif - -#define dobject_oB4_DL_00000F58 "__OTR__objects/object_oB4/object_oB4_DL_00000F58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00000F58[] = dobject_oB4_DL_00000F58; -#else -static const char object_oB4_DL_00000F58[] __attribute__((aligned (2))) = dobject_oB4_DL_00000F58; -#endif - -#define dobject_oB4_DL_00000FC0 "__OTR__objects/object_oB4/object_oB4_DL_00000FC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00000FC0[] = dobject_oB4_DL_00000FC0; -#else -static const char object_oB4_DL_00000FC0[] __attribute__((aligned (2))) = dobject_oB4_DL_00000FC0; -#endif - -#define dobject_oB4_DL_00001018 "__OTR__objects/object_oB4/object_oB4_DL_00001018" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00001018[] = dobject_oB4_DL_00001018; -#else -static const char object_oB4_DL_00001018[] __attribute__((aligned (2))) = dobject_oB4_DL_00001018; -#endif - -#define dobject_oB4_DL_00001070 "__OTR__objects/object_oB4/object_oB4_DL_00001070" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00001070[] = dobject_oB4_DL_00001070; -#else -static const char object_oB4_DL_00001070[] __attribute__((aligned (2))) = dobject_oB4_DL_00001070; -#endif - -#define dobject_oB4_DL_000010C8 "__OTR__objects/object_oB4/object_oB4_DL_000010C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_000010C8[] = dobject_oB4_DL_000010C8; -#else -static const char object_oB4_DL_000010C8[] __attribute__((aligned (2))) = dobject_oB4_DL_000010C8; -#endif - -#define dobject_oB4_DL_00001168 "__OTR__objects/object_oB4/object_oB4_DL_00001168" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00001168[] = dobject_oB4_DL_00001168; -#else -static const char object_oB4_DL_00001168[] __attribute__((aligned (2))) = dobject_oB4_DL_00001168; -#endif - -#define dobject_oB4_DL_00001228 "__OTR__objects/object_oB4/object_oB4_DL_00001228" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00001228[] = dobject_oB4_DL_00001228; -#else -static const char object_oB4_DL_00001228[] __attribute__((aligned (2))) = dobject_oB4_DL_00001228; -#endif - -#define dobject_oB4_DL_00001290 "__OTR__objects/object_oB4/object_oB4_DL_00001290" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00001290[] = dobject_oB4_DL_00001290; -#else -static const char object_oB4_DL_00001290[] __attribute__((aligned (2))) = dobject_oB4_DL_00001290; -#endif - -#define dobject_oB4_DL_000012E8 "__OTR__objects/object_oB4/object_oB4_DL_000012E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_000012E8[] = dobject_oB4_DL_000012E8; -#else -static const char object_oB4_DL_000012E8[] __attribute__((aligned (2))) = dobject_oB4_DL_000012E8; -#endif - -#define dobject_oB4_DL_00001340 "__OTR__objects/object_oB4/object_oB4_DL_00001340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00001340[] = dobject_oB4_DL_00001340; -#else -static const char object_oB4_DL_00001340[] __attribute__((aligned (2))) = dobject_oB4_DL_00001340; -#endif - -#define dobject_oB4_DL_00001398 "__OTR__objects/object_oB4/object_oB4_DL_00001398" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_DL_00001398[] = dobject_oB4_DL_00001398; -#else -static const char object_oB4_DL_00001398[] __attribute__((aligned (2))) = dobject_oB4_DL_00001398; -#endif - -#define dobject_oB4_Tex_00001468 "__OTR__objects/object_oB4/object_oB4_Tex_00001468" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_Tex_00001468[] = dobject_oB4_Tex_00001468; -#else -static const char object_oB4_Tex_00001468[] __attribute__((aligned (2))) = dobject_oB4_Tex_00001468; -#endif - -#define dobject_oB4_Tex_00001568 "__OTR__objects/object_oB4/object_oB4_Tex_00001568" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_Tex_00001568[] = dobject_oB4_Tex_00001568; -#else -static const char object_oB4_Tex_00001568[] __attribute__((aligned (2))) = dobject_oB4_Tex_00001568; -#endif - -#define dobject_oB4_Tex_000015E8 "__OTR__objects/object_oB4/object_oB4_Tex_000015E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_Tex_000015E8[] = dobject_oB4_Tex_000015E8; -#else -static const char object_oB4_Tex_000015E8[] __attribute__((aligned (2))) = dobject_oB4_Tex_000015E8; -#endif - -#define dobject_oB4_Tex_00001668 "__OTR__objects/object_oB4/object_oB4_Tex_00001668" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_Tex_00001668[] = dobject_oB4_Tex_00001668; -#else -static const char object_oB4_Tex_00001668[] __attribute__((aligned (2))) = dobject_oB4_Tex_00001668; -#endif - -#define dobject_oB4_Tex_00001768 "__OTR__objects/object_oB4/object_oB4_Tex_00001768" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_Tex_00001768[] = dobject_oB4_Tex_00001768; -#else -static const char object_oB4_Tex_00001768[] __attribute__((aligned (2))) = dobject_oB4_Tex_00001768; -#endif - -#define dobject_oB4_Tex_000017E8 "__OTR__objects/object_oB4/object_oB4_Tex_000017E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oB4_Tex_000017E8[] = dobject_oB4_Tex_000017E8; -#else -static const char object_oB4_Tex_000017E8[] __attribute__((aligned (2))) = dobject_oB4_Tex_000017E8; -#endif - +#include "align_asset_macro.h" + +#define dobject_oB4_Skel_00000260 "__OTR__objects/object_oB4/object_oB4_Skel_00000260" +static const ALIGN_ASSET(2) char object_oB4_Skel_00000260[] = dobject_oB4_Skel_00000260; + +#define dobject_oB4_DL_00000BE8 "__OTR__objects/object_oB4/object_oB4_DL_00000BE8" +static const ALIGN_ASSET(2) char object_oB4_DL_00000BE8[] = dobject_oB4_DL_00000BE8; + +#define dobject_oB4_DL_00000C90 "__OTR__objects/object_oB4/object_oB4_DL_00000C90" +static const ALIGN_ASSET(2) char object_oB4_DL_00000C90[] = dobject_oB4_DL_00000C90; + +#define dobject_oB4_DL_00000DF8 "__OTR__objects/object_oB4/object_oB4_DL_00000DF8" +static const ALIGN_ASSET(2) char object_oB4_DL_00000DF8[] = dobject_oB4_DL_00000DF8; + +#define dobject_oB4_DL_00000E98 "__OTR__objects/object_oB4/object_oB4_DL_00000E98" +static const ALIGN_ASSET(2) char object_oB4_DL_00000E98[] = dobject_oB4_DL_00000E98; + +#define dobject_oB4_DL_00000F58 "__OTR__objects/object_oB4/object_oB4_DL_00000F58" +static const ALIGN_ASSET(2) char object_oB4_DL_00000F58[] = dobject_oB4_DL_00000F58; + +#define dobject_oB4_DL_00000FC0 "__OTR__objects/object_oB4/object_oB4_DL_00000FC0" +static const ALIGN_ASSET(2) char object_oB4_DL_00000FC0[] = dobject_oB4_DL_00000FC0; + +#define dobject_oB4_DL_00001018 "__OTR__objects/object_oB4/object_oB4_DL_00001018" +static const ALIGN_ASSET(2) char object_oB4_DL_00001018[] = dobject_oB4_DL_00001018; + +#define dobject_oB4_DL_00001070 "__OTR__objects/object_oB4/object_oB4_DL_00001070" +static const ALIGN_ASSET(2) char object_oB4_DL_00001070[] = dobject_oB4_DL_00001070; + +#define dobject_oB4_DL_000010C8 "__OTR__objects/object_oB4/object_oB4_DL_000010C8" +static const ALIGN_ASSET(2) char object_oB4_DL_000010C8[] = dobject_oB4_DL_000010C8; + +#define dobject_oB4_DL_00001168 "__OTR__objects/object_oB4/object_oB4_DL_00001168" +static const ALIGN_ASSET(2) char object_oB4_DL_00001168[] = dobject_oB4_DL_00001168; + +#define dobject_oB4_DL_00001228 "__OTR__objects/object_oB4/object_oB4_DL_00001228" +static const ALIGN_ASSET(2) char object_oB4_DL_00001228[] = dobject_oB4_DL_00001228; + +#define dobject_oB4_DL_00001290 "__OTR__objects/object_oB4/object_oB4_DL_00001290" +static const ALIGN_ASSET(2) char object_oB4_DL_00001290[] = dobject_oB4_DL_00001290; + +#define dobject_oB4_DL_000012E8 "__OTR__objects/object_oB4/object_oB4_DL_000012E8" +static const ALIGN_ASSET(2) char object_oB4_DL_000012E8[] = dobject_oB4_DL_000012E8; + +#define dobject_oB4_DL_00001340 "__OTR__objects/object_oB4/object_oB4_DL_00001340" +static const ALIGN_ASSET(2) char object_oB4_DL_00001340[] = dobject_oB4_DL_00001340; + +#define dobject_oB4_DL_00001398 "__OTR__objects/object_oB4/object_oB4_DL_00001398" +static const ALIGN_ASSET(2) char object_oB4_DL_00001398[] = dobject_oB4_DL_00001398; + +#define dobject_oB4_Tex_00001468 "__OTR__objects/object_oB4/object_oB4_Tex_00001468" +static const ALIGN_ASSET(2) char object_oB4_Tex_00001468[] = dobject_oB4_Tex_00001468; + +#define dobject_oB4_Tex_00001568 "__OTR__objects/object_oB4/object_oB4_Tex_00001568" +static const ALIGN_ASSET(2) char object_oB4_Tex_00001568[] = dobject_oB4_Tex_00001568; + +#define dobject_oB4_Tex_000015E8 "__OTR__objects/object_oB4/object_oB4_Tex_000015E8" +static const ALIGN_ASSET(2) char object_oB4_Tex_000015E8[] = dobject_oB4_Tex_000015E8; + +#define dobject_oB4_Tex_00001668 "__OTR__objects/object_oB4/object_oB4_Tex_00001668" +static const ALIGN_ASSET(2) char object_oB4_Tex_00001668[] = dobject_oB4_Tex_00001668; + +#define dobject_oB4_Tex_00001768 "__OTR__objects/object_oB4/object_oB4_Tex_00001768" +static const ALIGN_ASSET(2) char object_oB4_Tex_00001768[] = dobject_oB4_Tex_00001768; + +#define dobject_oB4_Tex_000017E8 "__OTR__objects/object_oB4/object_oB4_Tex_000017E8" +static const ALIGN_ASSET(2) char object_oB4_Tex_000017E8[] = dobject_oB4_Tex_000017E8; \ No newline at end of file diff --git a/soh/assets/objects/object_oE1/object_oE1.h b/soh/assets/objects/object_oE1/object_oE1.h index f1bfe5fb0..769bbeed6 100644 --- a/soh/assets/objects/object_oE1/object_oE1.h +++ b/soh/assets/objects/object_oE1/object_oE1.h @@ -1,198 +1,87 @@ #pragma once -#define dobject_oE1_Skel_000260 "__OTR__objects/object_oE1/object_oE1_Skel_000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Skel_000260[] = dobject_oE1_Skel_000260; -#else -static const char object_oE1_Skel_000260[] __attribute__((aligned (2))) = dobject_oE1_Skel_000260; -#endif - -#define dobject_oE1_DL_002FE8 "__OTR__objects/object_oE1/object_oE1_DL_002FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_002FE8[] = dobject_oE1_DL_002FE8; -#else -static const char object_oE1_DL_002FE8[] __attribute__((aligned (2))) = dobject_oE1_DL_002FE8; -#endif - -#define dobject_oE1_DL_003250 "__OTR__objects/object_oE1/object_oE1_DL_003250" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_003250[] = dobject_oE1_DL_003250; -#else -static const char object_oE1_DL_003250[] __attribute__((aligned (2))) = dobject_oE1_DL_003250; -#endif - -#define dobject_oE1_DL_003380 "__OTR__objects/object_oE1/object_oE1_DL_003380" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_003380[] = dobject_oE1_DL_003380; -#else -static const char object_oE1_DL_003380[] __attribute__((aligned (2))) = dobject_oE1_DL_003380; -#endif - -#define dobject_oE1_DL_003868 "__OTR__objects/object_oE1/object_oE1_DL_003868" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_003868[] = dobject_oE1_DL_003868; -#else -static const char object_oE1_DL_003868[] __attribute__((aligned (2))) = dobject_oE1_DL_003868; -#endif - -#define dobject_oE1_DL_003A80 "__OTR__objects/object_oE1/object_oE1_DL_003A80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_003A80[] = dobject_oE1_DL_003A80; -#else -static const char object_oE1_DL_003A80[] __attribute__((aligned (2))) = dobject_oE1_DL_003A80; -#endif - -#define dobject_oE1_DL_003BE8 "__OTR__objects/object_oE1/object_oE1_DL_003BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_003BE8[] = dobject_oE1_DL_003BE8; -#else -static const char object_oE1_DL_003BE8[] __attribute__((aligned (2))) = dobject_oE1_DL_003BE8; -#endif - -#define dobject_oE1_DL_003D60 "__OTR__objects/object_oE1/object_oE1_DL_003D60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_003D60[] = dobject_oE1_DL_003D60; -#else -static const char object_oE1_DL_003D60[] __attribute__((aligned (2))) = dobject_oE1_DL_003D60; -#endif - -#define dobject_oE1_DL_003E18 "__OTR__objects/object_oE1/object_oE1_DL_003E18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_003E18[] = dobject_oE1_DL_003E18; -#else -static const char object_oE1_DL_003E18[] __attribute__((aligned (2))) = dobject_oE1_DL_003E18; -#endif - -#define dobject_oE1_DL_003F68 "__OTR__objects/object_oE1/object_oE1_DL_003F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_003F68[] = dobject_oE1_DL_003F68; -#else -static const char object_oE1_DL_003F68[] __attribute__((aligned (2))) = dobject_oE1_DL_003F68; -#endif - -#define dobject_oE1_DL_004038 "__OTR__objects/object_oE1/object_oE1_DL_004038" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_004038[] = dobject_oE1_DL_004038; -#else -static const char object_oE1_DL_004038[] __attribute__((aligned (2))) = dobject_oE1_DL_004038; -#endif - -#define dobject_oE1_DL_004250 "__OTR__objects/object_oE1/object_oE1_DL_004250" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_004250[] = dobject_oE1_DL_004250; -#else -static const char object_oE1_DL_004250[] __attribute__((aligned (2))) = dobject_oE1_DL_004250; -#endif - -#define dobject_oE1_DL_0043B8 "__OTR__objects/object_oE1/object_oE1_DL_0043B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_0043B8[] = dobject_oE1_DL_0043B8; -#else -static const char object_oE1_DL_0043B8[] __attribute__((aligned (2))) = dobject_oE1_DL_0043B8; -#endif - -#define dobject_oE1_DL_004530 "__OTR__objects/object_oE1/object_oE1_DL_004530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_004530[] = dobject_oE1_DL_004530; -#else -static const char object_oE1_DL_004530[] __attribute__((aligned (2))) = dobject_oE1_DL_004530; -#endif - -#define dobject_oE1_DL_0045E8 "__OTR__objects/object_oE1/object_oE1_DL_0045E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_0045E8[] = dobject_oE1_DL_0045E8; -#else -static const char object_oE1_DL_0045E8[] __attribute__((aligned (2))) = dobject_oE1_DL_0045E8; -#endif - -#define dobject_oE1_DL_004738 "__OTR__objects/object_oE1/object_oE1_DL_004738" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_DL_004738[] = dobject_oE1_DL_004738; -#else -static const char object_oE1_DL_004738[] __attribute__((aligned (2))) = dobject_oE1_DL_004738; -#endif - -#define dobject_oE1_TLUT_004808 "__OTR__objects/object_oE1/object_oE1_TLUT_004808" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_TLUT_004808[] = dobject_oE1_TLUT_004808; -#else -static const char object_oE1_TLUT_004808[] __attribute__((aligned (2))) = dobject_oE1_TLUT_004808; -#endif - -#define dobject_oE1_Tex_004A08 "__OTR__objects/object_oE1/object_oE1_Tex_004A08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_004A08[] = dobject_oE1_Tex_004A08; -#else -static const char object_oE1_Tex_004A08[] __attribute__((aligned (2))) = dobject_oE1_Tex_004A08; -#endif - -#define dobject_oE1_Blob_004E08 "__OTR__objects/object_oE1/object_oE1_Blob_004E08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Blob_004E08[] = dobject_oE1_Blob_004E08; -#else -static const char object_oE1_Blob_004E08[] __attribute__((aligned (2))) = dobject_oE1_Blob_004E08; -#endif - -#define dobject_oE1_TLUT_005608 "__OTR__objects/object_oE1/object_oE1_TLUT_005608" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_TLUT_005608[] = dobject_oE1_TLUT_005608; -#else -static const char object_oE1_TLUT_005608[] __attribute__((aligned (2))) = dobject_oE1_TLUT_005608; -#endif - -#define dobject_oE1_Tex_005808 "__OTR__objects/object_oE1/object_oE1_Tex_005808" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_005808[] = dobject_oE1_Tex_005808; -#else -static const char object_oE1_Tex_005808[] __attribute__((aligned (2))) = dobject_oE1_Tex_005808; -#endif - -#define dobject_oE1_Tex_005848 "__OTR__objects/object_oE1/object_oE1_Tex_005848" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_005848[] = dobject_oE1_Tex_005848; -#else -static const char object_oE1_Tex_005848[] __attribute__((aligned (2))) = dobject_oE1_Tex_005848; -#endif - -#define dobject_oE1_Tex_005948 "__OTR__objects/object_oE1/object_oE1_Tex_005948" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_005948[] = dobject_oE1_Tex_005948; -#else -static const char object_oE1_Tex_005948[] __attribute__((aligned (2))) = dobject_oE1_Tex_005948; -#endif - -#define dobject_oE1_Tex_005A48 "__OTR__objects/object_oE1/object_oE1_Tex_005A48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_005A48[] = dobject_oE1_Tex_005A48; -#else -static const char object_oE1_Tex_005A48[] __attribute__((aligned (2))) = dobject_oE1_Tex_005A48; -#endif - -#define dobject_oE1_Tex_005E48 "__OTR__objects/object_oE1/object_oE1_Tex_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_005E48[] = dobject_oE1_Tex_005E48; -#else -static const char object_oE1_Tex_005E48[] __attribute__((aligned (2))) = dobject_oE1_Tex_005E48; -#endif - -#define dobject_oE1_Tex_006648 "__OTR__objects/object_oE1/object_oE1_Tex_006648" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_006648[] = dobject_oE1_Tex_006648; -#else -static const char object_oE1_Tex_006648[] __attribute__((aligned (2))) = dobject_oE1_Tex_006648; -#endif - -#define dobject_oE1_Tex_006688 "__OTR__objects/object_oE1/object_oE1_Tex_006688" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_006688[] = dobject_oE1_Tex_006688; -#else -static const char object_oE1_Tex_006688[] __attribute__((aligned (2))) = dobject_oE1_Tex_006688; -#endif - -#define dobject_oE1_Tex_006708 "__OTR__objects/object_oE1/object_oE1_Tex_006708" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1_Tex_006708[] = dobject_oE1_Tex_006708; -#else -static const char object_oE1_Tex_006708[] __attribute__((aligned (2))) = dobject_oE1_Tex_006708; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE1_Skel_000260 "__OTR__objects/object_oE1/object_oE1_Skel_000260" +static const ALIGN_ASSET(2) char object_oE1_Skel_000260[] = dobject_oE1_Skel_000260; + +#define dobject_oE1_DL_002FE8 "__OTR__objects/object_oE1/object_oE1_DL_002FE8" +static const ALIGN_ASSET(2) char object_oE1_DL_002FE8[] = dobject_oE1_DL_002FE8; + +#define dobject_oE1_DL_003250 "__OTR__objects/object_oE1/object_oE1_DL_003250" +static const ALIGN_ASSET(2) char object_oE1_DL_003250[] = dobject_oE1_DL_003250; + +#define dobject_oE1_DL_003380 "__OTR__objects/object_oE1/object_oE1_DL_003380" +static const ALIGN_ASSET(2) char object_oE1_DL_003380[] = dobject_oE1_DL_003380; + +#define dobject_oE1_DL_003868 "__OTR__objects/object_oE1/object_oE1_DL_003868" +static const ALIGN_ASSET(2) char object_oE1_DL_003868[] = dobject_oE1_DL_003868; + +#define dobject_oE1_DL_003A80 "__OTR__objects/object_oE1/object_oE1_DL_003A80" +static const ALIGN_ASSET(2) char object_oE1_DL_003A80[] = dobject_oE1_DL_003A80; + +#define dobject_oE1_DL_003BE8 "__OTR__objects/object_oE1/object_oE1_DL_003BE8" +static const ALIGN_ASSET(2) char object_oE1_DL_003BE8[] = dobject_oE1_DL_003BE8; + +#define dobject_oE1_DL_003D60 "__OTR__objects/object_oE1/object_oE1_DL_003D60" +static const ALIGN_ASSET(2) char object_oE1_DL_003D60[] = dobject_oE1_DL_003D60; + +#define dobject_oE1_DL_003E18 "__OTR__objects/object_oE1/object_oE1_DL_003E18" +static const ALIGN_ASSET(2) char object_oE1_DL_003E18[] = dobject_oE1_DL_003E18; + +#define dobject_oE1_DL_003F68 "__OTR__objects/object_oE1/object_oE1_DL_003F68" +static const ALIGN_ASSET(2) char object_oE1_DL_003F68[] = dobject_oE1_DL_003F68; + +#define dobject_oE1_DL_004038 "__OTR__objects/object_oE1/object_oE1_DL_004038" +static const ALIGN_ASSET(2) char object_oE1_DL_004038[] = dobject_oE1_DL_004038; + +#define dobject_oE1_DL_004250 "__OTR__objects/object_oE1/object_oE1_DL_004250" +static const ALIGN_ASSET(2) char object_oE1_DL_004250[] = dobject_oE1_DL_004250; + +#define dobject_oE1_DL_0043B8 "__OTR__objects/object_oE1/object_oE1_DL_0043B8" +static const ALIGN_ASSET(2) char object_oE1_DL_0043B8[] = dobject_oE1_DL_0043B8; + +#define dobject_oE1_DL_004530 "__OTR__objects/object_oE1/object_oE1_DL_004530" +static const ALIGN_ASSET(2) char object_oE1_DL_004530[] = dobject_oE1_DL_004530; + +#define dobject_oE1_DL_0045E8 "__OTR__objects/object_oE1/object_oE1_DL_0045E8" +static const ALIGN_ASSET(2) char object_oE1_DL_0045E8[] = dobject_oE1_DL_0045E8; + +#define dobject_oE1_DL_004738 "__OTR__objects/object_oE1/object_oE1_DL_004738" +static const ALIGN_ASSET(2) char object_oE1_DL_004738[] = dobject_oE1_DL_004738; + +#define dobject_oE1_TLUT_004808 "__OTR__objects/object_oE1/object_oE1_TLUT_004808" +static const ALIGN_ASSET(2) char object_oE1_TLUT_004808[] = dobject_oE1_TLUT_004808; + +#define dobject_oE1_Tex_004A08 "__OTR__objects/object_oE1/object_oE1_Tex_004A08" +static const ALIGN_ASSET(2) char object_oE1_Tex_004A08[] = dobject_oE1_Tex_004A08; + +#define dobject_oE1_Blob_004E08 "__OTR__objects/object_oE1/object_oE1_Blob_004E08" +static const ALIGN_ASSET(2) char object_oE1_Blob_004E08[] = dobject_oE1_Blob_004E08; + +#define dobject_oE1_TLUT_005608 "__OTR__objects/object_oE1/object_oE1_TLUT_005608" +static const ALIGN_ASSET(2) char object_oE1_TLUT_005608[] = dobject_oE1_TLUT_005608; + +#define dobject_oE1_Tex_005808 "__OTR__objects/object_oE1/object_oE1_Tex_005808" +static const ALIGN_ASSET(2) char object_oE1_Tex_005808[] = dobject_oE1_Tex_005808; + +#define dobject_oE1_Tex_005848 "__OTR__objects/object_oE1/object_oE1_Tex_005848" +static const ALIGN_ASSET(2) char object_oE1_Tex_005848[] = dobject_oE1_Tex_005848; + +#define dobject_oE1_Tex_005948 "__OTR__objects/object_oE1/object_oE1_Tex_005948" +static const ALIGN_ASSET(2) char object_oE1_Tex_005948[] = dobject_oE1_Tex_005948; + +#define dobject_oE1_Tex_005A48 "__OTR__objects/object_oE1/object_oE1_Tex_005A48" +static const ALIGN_ASSET(2) char object_oE1_Tex_005A48[] = dobject_oE1_Tex_005A48; + +#define dobject_oE1_Tex_005E48 "__OTR__objects/object_oE1/object_oE1_Tex_005E48" +static const ALIGN_ASSET(2) char object_oE1_Tex_005E48[] = dobject_oE1_Tex_005E48; + +#define dobject_oE1_Tex_006648 "__OTR__objects/object_oE1/object_oE1_Tex_006648" +static const ALIGN_ASSET(2) char object_oE1_Tex_006648[] = dobject_oE1_Tex_006648; + +#define dobject_oE1_Tex_006688 "__OTR__objects/object_oE1/object_oE1_Tex_006688" +static const ALIGN_ASSET(2) char object_oE1_Tex_006688[] = dobject_oE1_Tex_006688; + +#define dobject_oE1_Tex_006708 "__OTR__objects/object_oE1/object_oE1_Tex_006708" +static const ALIGN_ASSET(2) char object_oE1_Tex_006708[] = dobject_oE1_Tex_006708; \ No newline at end of file diff --git a/soh/assets/objects/object_oE10/object_oE10.h b/soh/assets/objects/object_oE10/object_oE10.h index 5c9c6631f..ed9c06fd3 100644 --- a/soh/assets/objects/object_oE10/object_oE10.h +++ b/soh/assets/objects/object_oE10/object_oE10.h @@ -1,79 +1,36 @@ #pragma once -#define dobject_oE10_DL_000720 "__OTR__objects/object_oE10/object_oE10_DL_000720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_DL_000720[] = dobject_oE10_DL_000720; -#else -static const char object_oE10_DL_000720[] __attribute__((aligned (2))) = dobject_oE10_DL_000720; -#endif - -#define dobject_oE10_TLUT_000C10 "__OTR__objects/object_oE10/object_oE10_TLUT_000C10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_TLUT_000C10[] = dobject_oE10_TLUT_000C10; -#else -static const char object_oE10_TLUT_000C10[] __attribute__((aligned (2))) = dobject_oE10_TLUT_000C10; -#endif - -#define dobject_oE10_Tex_000E10 "__OTR__objects/object_oE10/object_oE10_Tex_000E10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_Tex_000E10[] = dobject_oE10_Tex_000E10; -#else -static const char object_oE10_Tex_000E10[] __attribute__((aligned (2))) = dobject_oE10_Tex_000E10; -#endif - -#define dobject_oE10_Tex_000E50 "__OTR__objects/object_oE10/object_oE10_Tex_000E50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_Tex_000E50[] = dobject_oE10_Tex_000E50; -#else -static const char object_oE10_Tex_000E50[] __attribute__((aligned (2))) = dobject_oE10_Tex_000E50; -#endif - -#define dobject_oE10_Tex_000F50 "__OTR__objects/object_oE10/object_oE10_Tex_000F50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_Tex_000F50[] = dobject_oE10_Tex_000F50; -#else -static const char object_oE10_Tex_000F50[] __attribute__((aligned (2))) = dobject_oE10_Tex_000F50; -#endif - -#define dobject_oE10_TLUT_000F90 "__OTR__objects/object_oE10/object_oE10_TLUT_000F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_TLUT_000F90[] = dobject_oE10_TLUT_000F90; -#else -static const char object_oE10_TLUT_000F90[] __attribute__((aligned (2))) = dobject_oE10_TLUT_000F90; -#endif - -#define dobject_oE10_Tex_001190 "__OTR__objects/object_oE10/object_oE10_Tex_001190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_Tex_001190[] = dobject_oE10_Tex_001190; -#else -static const char object_oE10_Tex_001190[] __attribute__((aligned (2))) = dobject_oE10_Tex_001190; -#endif - -#define dobject_oE10_Tex_001590 "__OTR__objects/object_oE10/object_oE10_Tex_001590" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_Tex_001590[] = dobject_oE10_Tex_001590; -#else -static const char object_oE10_Tex_001590[] __attribute__((aligned (2))) = dobject_oE10_Tex_001590; -#endif - -#define dobject_oE10_Tex_001D90 "__OTR__objects/object_oE10/object_oE10_Tex_001D90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_Tex_001D90[] = dobject_oE10_Tex_001D90; -#else -static const char object_oE10_Tex_001D90[] __attribute__((aligned (2))) = dobject_oE10_Tex_001D90; -#endif - -#define dobject_oE10_Tex_001DD0 "__OTR__objects/object_oE10/object_oE10_Tex_001DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_Tex_001DD0[] = dobject_oE10_Tex_001DD0; -#else -static const char object_oE10_Tex_001DD0[] __attribute__((aligned (2))) = dobject_oE10_Tex_001DD0; -#endif - -#define dobject_oE10_Tex_0021D0 "__OTR__objects/object_oE10/object_oE10_Tex_0021D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE10_Tex_0021D0[] = dobject_oE10_Tex_0021D0; -#else -static const char object_oE10_Tex_0021D0[] __attribute__((aligned (2))) = dobject_oE10_Tex_0021D0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE10_DL_000720 "__OTR__objects/object_oE10/object_oE10_DL_000720" +static const ALIGN_ASSET(2) char object_oE10_DL_000720[] = dobject_oE10_DL_000720; + +#define dobject_oE10_TLUT_000C10 "__OTR__objects/object_oE10/object_oE10_TLUT_000C10" +static const ALIGN_ASSET(2) char object_oE10_TLUT_000C10[] = dobject_oE10_TLUT_000C10; + +#define dobject_oE10_Tex_000E10 "__OTR__objects/object_oE10/object_oE10_Tex_000E10" +static const ALIGN_ASSET(2) char object_oE10_Tex_000E10[] = dobject_oE10_Tex_000E10; + +#define dobject_oE10_Tex_000E50 "__OTR__objects/object_oE10/object_oE10_Tex_000E50" +static const ALIGN_ASSET(2) char object_oE10_Tex_000E50[] = dobject_oE10_Tex_000E50; + +#define dobject_oE10_Tex_000F50 "__OTR__objects/object_oE10/object_oE10_Tex_000F50" +static const ALIGN_ASSET(2) char object_oE10_Tex_000F50[] = dobject_oE10_Tex_000F50; + +#define dobject_oE10_TLUT_000F90 "__OTR__objects/object_oE10/object_oE10_TLUT_000F90" +static const ALIGN_ASSET(2) char object_oE10_TLUT_000F90[] = dobject_oE10_TLUT_000F90; + +#define dobject_oE10_Tex_001190 "__OTR__objects/object_oE10/object_oE10_Tex_001190" +static const ALIGN_ASSET(2) char object_oE10_Tex_001190[] = dobject_oE10_Tex_001190; + +#define dobject_oE10_Tex_001590 "__OTR__objects/object_oE10/object_oE10_Tex_001590" +static const ALIGN_ASSET(2) char object_oE10_Tex_001590[] = dobject_oE10_Tex_001590; + +#define dobject_oE10_Tex_001D90 "__OTR__objects/object_oE10/object_oE10_Tex_001D90" +static const ALIGN_ASSET(2) char object_oE10_Tex_001D90[] = dobject_oE10_Tex_001D90; + +#define dobject_oE10_Tex_001DD0 "__OTR__objects/object_oE10/object_oE10_Tex_001DD0" +static const ALIGN_ASSET(2) char object_oE10_Tex_001DD0[] = dobject_oE10_Tex_001DD0; + +#define dobject_oE10_Tex_0021D0 "__OTR__objects/object_oE10/object_oE10_Tex_0021D0" +static const ALIGN_ASSET(2) char object_oE10_Tex_0021D0[] = dobject_oE10_Tex_0021D0; \ No newline at end of file diff --git a/soh/assets/objects/object_oE11/object_oE11.h b/soh/assets/objects/object_oE11/object_oE11.h index 42a71f509..529021cac 100644 --- a/soh/assets/objects/object_oE11/object_oE11.h +++ b/soh/assets/objects/object_oE11/object_oE11.h @@ -1,79 +1,36 @@ #pragma once -#define dobject_oE11_DL_0009F0 "__OTR__objects/object_oE11/object_oE11_DL_0009F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_DL_0009F0[] = dobject_oE11_DL_0009F0; -#else -static const char object_oE11_DL_0009F0[] __attribute__((aligned (2))) = dobject_oE11_DL_0009F0; -#endif - -#define dobject_oE11_TLUT_000F70 "__OTR__objects/object_oE11/object_oE11_TLUT_000F70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_TLUT_000F70[] = dobject_oE11_TLUT_000F70; -#else -static const char object_oE11_TLUT_000F70[] __attribute__((aligned (2))) = dobject_oE11_TLUT_000F70; -#endif - -#define dobject_oE11_Tex_001170 "__OTR__objects/object_oE11/object_oE11_Tex_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_Tex_001170[] = dobject_oE11_Tex_001170; -#else -static const char object_oE11_Tex_001170[] __attribute__((aligned (2))) = dobject_oE11_Tex_001170; -#endif - -#define dobject_oE11_Blob_001570 "__OTR__objects/object_oE11/object_oE11_Blob_001570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_Blob_001570[] = dobject_oE11_Blob_001570; -#else -static const char object_oE11_Blob_001570[] __attribute__((aligned (2))) = dobject_oE11_Blob_001570; -#endif - -#define dobject_oE11_TLUT_001D70 "__OTR__objects/object_oE11/object_oE11_TLUT_001D70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_TLUT_001D70[] = dobject_oE11_TLUT_001D70; -#else -static const char object_oE11_TLUT_001D70[] __attribute__((aligned (2))) = dobject_oE11_TLUT_001D70; -#endif - -#define dobject_oE11_Tex_001F70 "__OTR__objects/object_oE11/object_oE11_Tex_001F70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_Tex_001F70[] = dobject_oE11_Tex_001F70; -#else -static const char object_oE11_Tex_001F70[] __attribute__((aligned (2))) = dobject_oE11_Tex_001F70; -#endif - -#define dobject_oE11_Tex_001FB0 "__OTR__objects/object_oE11/object_oE11_Tex_001FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_Tex_001FB0[] = dobject_oE11_Tex_001FB0; -#else -static const char object_oE11_Tex_001FB0[] __attribute__((aligned (2))) = dobject_oE11_Tex_001FB0; -#endif - -#define dobject_oE11_Tex_0020B0 "__OTR__objects/object_oE11/object_oE11_Tex_0020B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_Tex_0020B0[] = dobject_oE11_Tex_0020B0; -#else -static const char object_oE11_Tex_0020B0[] __attribute__((aligned (2))) = dobject_oE11_Tex_0020B0; -#endif - -#define dobject_oE11_Tex_0021B0 "__OTR__objects/object_oE11/object_oE11_Tex_0021B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_Tex_0021B0[] = dobject_oE11_Tex_0021B0; -#else -static const char object_oE11_Tex_0021B0[] __attribute__((aligned (2))) = dobject_oE11_Tex_0021B0; -#endif - -#define dobject_oE11_Tex_0029B0 "__OTR__objects/object_oE11/object_oE11_Tex_0029B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_Tex_0029B0[] = dobject_oE11_Tex_0029B0; -#else -static const char object_oE11_Tex_0029B0[] __attribute__((aligned (2))) = dobject_oE11_Tex_0029B0; -#endif - -#define dobject_oE11_Tex_0031B0 "__OTR__objects/object_oE11/object_oE11_Tex_0031B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE11_Tex_0031B0[] = dobject_oE11_Tex_0031B0; -#else -static const char object_oE11_Tex_0031B0[] __attribute__((aligned (2))) = dobject_oE11_Tex_0031B0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE11_DL_0009F0 "__OTR__objects/object_oE11/object_oE11_DL_0009F0" +static const ALIGN_ASSET(2) char object_oE11_DL_0009F0[] = dobject_oE11_DL_0009F0; + +#define dobject_oE11_TLUT_000F70 "__OTR__objects/object_oE11/object_oE11_TLUT_000F70" +static const ALIGN_ASSET(2) char object_oE11_TLUT_000F70[] = dobject_oE11_TLUT_000F70; + +#define dobject_oE11_Tex_001170 "__OTR__objects/object_oE11/object_oE11_Tex_001170" +static const ALIGN_ASSET(2) char object_oE11_Tex_001170[] = dobject_oE11_Tex_001170; + +#define dobject_oE11_Blob_001570 "__OTR__objects/object_oE11/object_oE11_Blob_001570" +static const ALIGN_ASSET(2) char object_oE11_Blob_001570[] = dobject_oE11_Blob_001570; + +#define dobject_oE11_TLUT_001D70 "__OTR__objects/object_oE11/object_oE11_TLUT_001D70" +static const ALIGN_ASSET(2) char object_oE11_TLUT_001D70[] = dobject_oE11_TLUT_001D70; + +#define dobject_oE11_Tex_001F70 "__OTR__objects/object_oE11/object_oE11_Tex_001F70" +static const ALIGN_ASSET(2) char object_oE11_Tex_001F70[] = dobject_oE11_Tex_001F70; + +#define dobject_oE11_Tex_001FB0 "__OTR__objects/object_oE11/object_oE11_Tex_001FB0" +static const ALIGN_ASSET(2) char object_oE11_Tex_001FB0[] = dobject_oE11_Tex_001FB0; + +#define dobject_oE11_Tex_0020B0 "__OTR__objects/object_oE11/object_oE11_Tex_0020B0" +static const ALIGN_ASSET(2) char object_oE11_Tex_0020B0[] = dobject_oE11_Tex_0020B0; + +#define dobject_oE11_Tex_0021B0 "__OTR__objects/object_oE11/object_oE11_Tex_0021B0" +static const ALIGN_ASSET(2) char object_oE11_Tex_0021B0[] = dobject_oE11_Tex_0021B0; + +#define dobject_oE11_Tex_0029B0 "__OTR__objects/object_oE11/object_oE11_Tex_0029B0" +static const ALIGN_ASSET(2) char object_oE11_Tex_0029B0[] = dobject_oE11_Tex_0029B0; + +#define dobject_oE11_Tex_0031B0 "__OTR__objects/object_oE11/object_oE11_Tex_0031B0" +static const ALIGN_ASSET(2) char object_oE11_Tex_0031B0[] = dobject_oE11_Tex_0031B0; \ No newline at end of file diff --git a/soh/assets/objects/object_oE12/object_oE12.h b/soh/assets/objects/object_oE12/object_oE12.h index f0c47a8dd..d5d87fcfe 100644 --- a/soh/assets/objects/object_oE12/object_oE12.h +++ b/soh/assets/objects/object_oE12/object_oE12.h @@ -1,79 +1,36 @@ #pragma once -#define dobject_oE12_DL_001020 "__OTR__objects/object_oE12/object_oE12_DL_001020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_DL_001020[] = dobject_oE12_DL_001020; -#else -static const char object_oE12_DL_001020[] __attribute__((aligned (2))) = dobject_oE12_DL_001020; -#endif - -#define dobject_oE12_TLUT_001600 "__OTR__objects/object_oE12/object_oE12_TLUT_001600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_TLUT_001600[] = dobject_oE12_TLUT_001600; -#else -static const char object_oE12_TLUT_001600[] __attribute__((aligned (2))) = dobject_oE12_TLUT_001600; -#endif - -#define dobject_oE12_Tex_001800 "__OTR__objects/object_oE12/object_oE12_Tex_001800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Tex_001800[] = dobject_oE12_Tex_001800; -#else -static const char object_oE12_Tex_001800[] __attribute__((aligned (2))) = dobject_oE12_Tex_001800; -#endif - -#define dobject_oE12_Blob_001C00 "__OTR__objects/object_oE12/object_oE12_Blob_001C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Blob_001C00[] = dobject_oE12_Blob_001C00; -#else -static const char object_oE12_Blob_001C00[] __attribute__((aligned (2))) = dobject_oE12_Blob_001C00; -#endif - -#define dobject_oE12_Tex_002400 "__OTR__objects/object_oE12/object_oE12_Tex_002400" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Tex_002400[] = dobject_oE12_Tex_002400; -#else -static const char object_oE12_Tex_002400[] __attribute__((aligned (2))) = dobject_oE12_Tex_002400; -#endif - -#define dobject_oE12_Tex_002480 "__OTR__objects/object_oE12/object_oE12_Tex_002480" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Tex_002480[] = dobject_oE12_Tex_002480; -#else -static const char object_oE12_Tex_002480[] __attribute__((aligned (2))) = dobject_oE12_Tex_002480; -#endif - -#define dobject_oE12_Tex_002880 "__OTR__objects/object_oE12/object_oE12_Tex_002880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Tex_002880[] = dobject_oE12_Tex_002880; -#else -static const char object_oE12_Tex_002880[] __attribute__((aligned (2))) = dobject_oE12_Tex_002880; -#endif - -#define dobject_oE12_Tex_002980 "__OTR__objects/object_oE12/object_oE12_Tex_002980" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Tex_002980[] = dobject_oE12_Tex_002980; -#else -static const char object_oE12_Tex_002980[] __attribute__((aligned (2))) = dobject_oE12_Tex_002980; -#endif - -#define dobject_oE12_Tex_002B80 "__OTR__objects/object_oE12/object_oE12_Tex_002B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Tex_002B80[] = dobject_oE12_Tex_002B80; -#else -static const char object_oE12_Tex_002B80[] __attribute__((aligned (2))) = dobject_oE12_Tex_002B80; -#endif - -#define dobject_oE12_Tex_003380 "__OTR__objects/object_oE12/object_oE12_Tex_003380" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Tex_003380[] = dobject_oE12_Tex_003380; -#else -static const char object_oE12_Tex_003380[] __attribute__((aligned (2))) = dobject_oE12_Tex_003380; -#endif - -#define dobject_oE12_Tex_003780 "__OTR__objects/object_oE12/object_oE12_Tex_003780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE12_Tex_003780[] = dobject_oE12_Tex_003780; -#else -static const char object_oE12_Tex_003780[] __attribute__((aligned (2))) = dobject_oE12_Tex_003780; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE12_DL_001020 "__OTR__objects/object_oE12/object_oE12_DL_001020" +static const ALIGN_ASSET(2) char object_oE12_DL_001020[] = dobject_oE12_DL_001020; + +#define dobject_oE12_TLUT_001600 "__OTR__objects/object_oE12/object_oE12_TLUT_001600" +static const ALIGN_ASSET(2) char object_oE12_TLUT_001600[] = dobject_oE12_TLUT_001600; + +#define dobject_oE12_Tex_001800 "__OTR__objects/object_oE12/object_oE12_Tex_001800" +static const ALIGN_ASSET(2) char object_oE12_Tex_001800[] = dobject_oE12_Tex_001800; + +#define dobject_oE12_Blob_001C00 "__OTR__objects/object_oE12/object_oE12_Blob_001C00" +static const ALIGN_ASSET(2) char object_oE12_Blob_001C00[] = dobject_oE12_Blob_001C00; + +#define dobject_oE12_Tex_002400 "__OTR__objects/object_oE12/object_oE12_Tex_002400" +static const ALIGN_ASSET(2) char object_oE12_Tex_002400[] = dobject_oE12_Tex_002400; + +#define dobject_oE12_Tex_002480 "__OTR__objects/object_oE12/object_oE12_Tex_002480" +static const ALIGN_ASSET(2) char object_oE12_Tex_002480[] = dobject_oE12_Tex_002480; + +#define dobject_oE12_Tex_002880 "__OTR__objects/object_oE12/object_oE12_Tex_002880" +static const ALIGN_ASSET(2) char object_oE12_Tex_002880[] = dobject_oE12_Tex_002880; + +#define dobject_oE12_Tex_002980 "__OTR__objects/object_oE12/object_oE12_Tex_002980" +static const ALIGN_ASSET(2) char object_oE12_Tex_002980[] = dobject_oE12_Tex_002980; + +#define dobject_oE12_Tex_002B80 "__OTR__objects/object_oE12/object_oE12_Tex_002B80" +static const ALIGN_ASSET(2) char object_oE12_Tex_002B80[] = dobject_oE12_Tex_002B80; + +#define dobject_oE12_Tex_003380 "__OTR__objects/object_oE12/object_oE12_Tex_003380" +static const ALIGN_ASSET(2) char object_oE12_Tex_003380[] = dobject_oE12_Tex_003380; + +#define dobject_oE12_Tex_003780 "__OTR__objects/object_oE12/object_oE12_Tex_003780" +static const ALIGN_ASSET(2) char object_oE12_Tex_003780[] = dobject_oE12_Tex_003780; \ No newline at end of file diff --git a/soh/assets/objects/object_oE1s/object_oE1s.h b/soh/assets/objects/object_oE1s/object_oE1s.h index 065dd6f1a..aea2c848d 100644 --- a/soh/assets/objects/object_oE1s/object_oE1s.h +++ b/soh/assets/objects/object_oE1s/object_oE1s.h @@ -1,212 +1,93 @@ #pragma once -#define dobject_oE1s_Anim_00007C "__OTR__objects/object_oE1s/object_oE1s_Anim_00007C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Anim_00007C[] = dobject_oE1s_Anim_00007C; -#else -static const char object_oE1s_Anim_00007C[] __attribute__((aligned (2))) = dobject_oE1s_Anim_00007C; -#endif - -#define dobject_oE1s_Skel_000190 "__OTR__objects/object_oE1s/object_oE1s_Skel_000190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Skel_000190[] = dobject_oE1s_Skel_000190; -#else -static const char object_oE1s_Skel_000190[] __attribute__((aligned (2))) = dobject_oE1s_Skel_000190; -#endif - -#define dobject_oE1s_TLUT_0003A0 "__OTR__objects/object_oE1s/object_oE1s_TLUT_0003A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_TLUT_0003A0[] = dobject_oE1s_TLUT_0003A0; -#else -static const char object_oE1s_TLUT_0003A0[] __attribute__((aligned (2))) = dobject_oE1s_TLUT_0003A0; -#endif - -#define dobject_oE1s_Tex_000878 "__OTR__objects/object_oE1s/object_oE1s_Tex_000878" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Tex_000878[] = dobject_oE1s_Tex_000878; -#else -static const char object_oE1s_Tex_000878[] __attribute__((aligned (2))) = dobject_oE1s_Tex_000878; -#endif - -#define dobject_oE1s_Tex_0008B8 "__OTR__objects/object_oE1s/object_oE1s_Tex_0008B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Tex_0008B8[] = dobject_oE1s_Tex_0008B8; -#else -static const char object_oE1s_Tex_0008B8[] __attribute__((aligned (2))) = dobject_oE1s_Tex_0008B8; -#endif - -#define dobject_oE1s_Tex_000CB8 "__OTR__objects/object_oE1s/object_oE1s_Tex_000CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Tex_000CB8[] = dobject_oE1s_Tex_000CB8; -#else -static const char object_oE1s_Tex_000CB8[] __attribute__((aligned (2))) = dobject_oE1s_Tex_000CB8; -#endif - -#define dobject_oE1s_Tex_0014B8 "__OTR__objects/object_oE1s/object_oE1s_Tex_0014B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Tex_0014B8[] = dobject_oE1s_Tex_0014B8; -#else -static const char object_oE1s_Tex_0014B8[] __attribute__((aligned (2))) = dobject_oE1s_Tex_0014B8; -#endif - -#define dobject_oE1s_Tex_0015B8 "__OTR__objects/object_oE1s/object_oE1s_Tex_0015B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Tex_0015B8[] = dobject_oE1s_Tex_0015B8; -#else -static const char object_oE1s_Tex_0015B8[] __attribute__((aligned (2))) = dobject_oE1s_Tex_0015B8; -#endif - -#define dobject_oE1s_Blob_0015F8 "__OTR__objects/object_oE1s/object_oE1s_Blob_0015F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Blob_0015F8[] = dobject_oE1s_Blob_0015F8; -#else -static const char object_oE1s_Blob_0015F8[] __attribute__((aligned (2))) = dobject_oE1s_Blob_0015F8; -#endif - -#define dobject_oE1s_Tex_0019F8 "__OTR__objects/object_oE1s/object_oE1s_Tex_0019F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Tex_0019F8[] = dobject_oE1s_Tex_0019F8; -#else -static const char object_oE1s_Tex_0019F8[] __attribute__((aligned (2))) = dobject_oE1s_Tex_0019F8; -#endif - -#define dobject_oE1s_Tex_001A78 "__OTR__objects/object_oE1s/object_oE1s_Tex_001A78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Tex_001A78[] = dobject_oE1s_Tex_001A78; -#else -static const char object_oE1s_Tex_001A78[] __attribute__((aligned (2))) = dobject_oE1s_Tex_001A78; -#endif - -#define dobject_oE1s_Tex_001B78 "__OTR__objects/object_oE1s/object_oE1s_Tex_001B78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Tex_001B78[] = dobject_oE1s_Tex_001B78; -#else -static const char object_oE1s_Tex_001B78[] __attribute__((aligned (2))) = dobject_oE1s_Tex_001B78; -#endif - -#define dobject_oE1s_Blob_001C78 "__OTR__objects/object_oE1s/object_oE1s_Blob_001C78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_Blob_001C78[] = dobject_oE1s_Blob_001C78; -#else -static const char object_oE1s_Blob_001C78[] __attribute__((aligned (2))) = dobject_oE1s_Blob_001C78; -#endif - -#define dobject_oE1s_DL_004D98 "__OTR__objects/object_oE1s/object_oE1s_DL_004D98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_004D98[] = dobject_oE1s_DL_004D98; -#else -static const char object_oE1s_DL_004D98[] __attribute__((aligned (2))) = dobject_oE1s_DL_004D98; -#endif - -#define dobject_oE1s_DL_005010 "__OTR__objects/object_oE1s/object_oE1s_DL_005010" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005010[] = dobject_oE1s_DL_005010; -#else -static const char object_oE1s_DL_005010[] __attribute__((aligned (2))) = dobject_oE1s_DL_005010; -#endif - -#define dobject_oE1s_DL_005150 "__OTR__objects/object_oE1s/object_oE1s_DL_005150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005150[] = dobject_oE1s_DL_005150; -#else -static const char object_oE1s_DL_005150[] __attribute__((aligned (2))) = dobject_oE1s_DL_005150; -#endif - -#define dobject_oE1s_DL_005620 "__OTR__objects/object_oE1s/object_oE1s_DL_005620" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005620[] = dobject_oE1s_DL_005620; -#else -static const char object_oE1s_DL_005620[] __attribute__((aligned (2))) = dobject_oE1s_DL_005620; -#endif - -#define dobject_oE1s_DL_005808 "__OTR__objects/object_oE1s/object_oE1s_DL_005808" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005808[] = dobject_oE1s_DL_005808; -#else -static const char object_oE1s_DL_005808[] __attribute__((aligned (2))) = dobject_oE1s_DL_005808; -#endif - -#define dobject_oE1s_DL_005970 "__OTR__objects/object_oE1s/object_oE1s_DL_005970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005970[] = dobject_oE1s_DL_005970; -#else -static const char object_oE1s_DL_005970[] __attribute__((aligned (2))) = dobject_oE1s_DL_005970; -#endif - -#define dobject_oE1s_DL_005AE8 "__OTR__objects/object_oE1s/object_oE1s_DL_005AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005AE8[] = dobject_oE1s_DL_005AE8; -#else -static const char object_oE1s_DL_005AE8[] __attribute__((aligned (2))) = dobject_oE1s_DL_005AE8; -#endif - -#define dobject_oE1s_DL_005BA0 "__OTR__objects/object_oE1s/object_oE1s_DL_005BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005BA0[] = dobject_oE1s_DL_005BA0; -#else -static const char object_oE1s_DL_005BA0[] __attribute__((aligned (2))) = dobject_oE1s_DL_005BA0; -#endif - -#define dobject_oE1s_DL_005CF0 "__OTR__objects/object_oE1s/object_oE1s_DL_005CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005CF0[] = dobject_oE1s_DL_005CF0; -#else -static const char object_oE1s_DL_005CF0[] __attribute__((aligned (2))) = dobject_oE1s_DL_005CF0; -#endif - -#define dobject_oE1s_DL_005DC0 "__OTR__objects/object_oE1s/object_oE1s_DL_005DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005DC0[] = dobject_oE1s_DL_005DC0; -#else -static const char object_oE1s_DL_005DC0[] __attribute__((aligned (2))) = dobject_oE1s_DL_005DC0; -#endif - -#define dobject_oE1s_DL_005FA8 "__OTR__objects/object_oE1s/object_oE1s_DL_005FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_005FA8[] = dobject_oE1s_DL_005FA8; -#else -static const char object_oE1s_DL_005FA8[] __attribute__((aligned (2))) = dobject_oE1s_DL_005FA8; -#endif - -#define dobject_oE1s_DL_006110 "__OTR__objects/object_oE1s/object_oE1s_DL_006110" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_006110[] = dobject_oE1s_DL_006110; -#else -static const char object_oE1s_DL_006110[] __attribute__((aligned (2))) = dobject_oE1s_DL_006110; -#endif - -#define dobject_oE1s_DL_006288 "__OTR__objects/object_oE1s/object_oE1s_DL_006288" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_006288[] = dobject_oE1s_DL_006288; -#else -static const char object_oE1s_DL_006288[] __attribute__((aligned (2))) = dobject_oE1s_DL_006288; -#endif - -#define dobject_oE1s_DL_006340 "__OTR__objects/object_oE1s/object_oE1s_DL_006340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_006340[] = dobject_oE1s_DL_006340; -#else -static const char object_oE1s_DL_006340[] __attribute__((aligned (2))) = dobject_oE1s_DL_006340; -#endif - -#define dobject_oE1s_DL_006490 "__OTR__objects/object_oE1s/object_oE1s_DL_006490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1s_DL_006490[] = dobject_oE1s_DL_006490; -#else -static const char object_oE1s_DL_006490[] __attribute__((aligned (2))) = dobject_oE1s_DL_006490; -#endif - -#define dobject_oE1sTex_000478 "__OTR__objects/object_oE1s/object_oE1sTex_000478" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1sTex_000478[] = dobject_oE1sTex_000478; -#else -static const char object_oE1sTex_000478[] __attribute__((aligned (2))) = dobject_oE1sTex_000478; -#endif - -#define dobject_oE1sTLUT_0001A8 "__OTR__objects/object_oE1s/object_oE1sTLUT_0001A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE1sTLUT_0001A8[] = dobject_oE1sTLUT_0001A8; -#else -static const char object_oE1sTLUT_0001A8[] __attribute__((aligned (2))) = dobject_oE1sTLUT_0001A8; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE1s_Anim_00007C "__OTR__objects/object_oE1s/object_oE1s_Anim_00007C" +static const ALIGN_ASSET(2) char object_oE1s_Anim_00007C[] = dobject_oE1s_Anim_00007C; + +#define dobject_oE1s_Skel_000190 "__OTR__objects/object_oE1s/object_oE1s_Skel_000190" +static const ALIGN_ASSET(2) char object_oE1s_Skel_000190[] = dobject_oE1s_Skel_000190; + +#define dobject_oE1s_TLUT_0003A0 "__OTR__objects/object_oE1s/object_oE1s_TLUT_0003A0" +static const ALIGN_ASSET(2) char object_oE1s_TLUT_0003A0[] = dobject_oE1s_TLUT_0003A0; + +#define dobject_oE1s_Tex_000878 "__OTR__objects/object_oE1s/object_oE1s_Tex_000878" +static const ALIGN_ASSET(2) char object_oE1s_Tex_000878[] = dobject_oE1s_Tex_000878; + +#define dobject_oE1s_Tex_0008B8 "__OTR__objects/object_oE1s/object_oE1s_Tex_0008B8" +static const ALIGN_ASSET(2) char object_oE1s_Tex_0008B8[] = dobject_oE1s_Tex_0008B8; + +#define dobject_oE1s_Tex_000CB8 "__OTR__objects/object_oE1s/object_oE1s_Tex_000CB8" +static const ALIGN_ASSET(2) char object_oE1s_Tex_000CB8[] = dobject_oE1s_Tex_000CB8; + +#define dobject_oE1s_Tex_0014B8 "__OTR__objects/object_oE1s/object_oE1s_Tex_0014B8" +static const ALIGN_ASSET(2) char object_oE1s_Tex_0014B8[] = dobject_oE1s_Tex_0014B8; + +#define dobject_oE1s_Tex_0015B8 "__OTR__objects/object_oE1s/object_oE1s_Tex_0015B8" +static const ALIGN_ASSET(2) char object_oE1s_Tex_0015B8[] = dobject_oE1s_Tex_0015B8; + +#define dobject_oE1s_Blob_0015F8 "__OTR__objects/object_oE1s/object_oE1s_Blob_0015F8" +static const ALIGN_ASSET(2) char object_oE1s_Blob_0015F8[] = dobject_oE1s_Blob_0015F8; + +#define dobject_oE1s_Tex_0019F8 "__OTR__objects/object_oE1s/object_oE1s_Tex_0019F8" +static const ALIGN_ASSET(2) char object_oE1s_Tex_0019F8[] = dobject_oE1s_Tex_0019F8; + +#define dobject_oE1s_Tex_001A78 "__OTR__objects/object_oE1s/object_oE1s_Tex_001A78" +static const ALIGN_ASSET(2) char object_oE1s_Tex_001A78[] = dobject_oE1s_Tex_001A78; + +#define dobject_oE1s_Tex_001B78 "__OTR__objects/object_oE1s/object_oE1s_Tex_001B78" +static const ALIGN_ASSET(2) char object_oE1s_Tex_001B78[] = dobject_oE1s_Tex_001B78; + +#define dobject_oE1s_Blob_001C78 "__OTR__objects/object_oE1s/object_oE1s_Blob_001C78" +static const ALIGN_ASSET(2) char object_oE1s_Blob_001C78[] = dobject_oE1s_Blob_001C78; + +#define dobject_oE1s_DL_004D98 "__OTR__objects/object_oE1s/object_oE1s_DL_004D98" +static const ALIGN_ASSET(2) char object_oE1s_DL_004D98[] = dobject_oE1s_DL_004D98; + +#define dobject_oE1s_DL_005010 "__OTR__objects/object_oE1s/object_oE1s_DL_005010" +static const ALIGN_ASSET(2) char object_oE1s_DL_005010[] = dobject_oE1s_DL_005010; + +#define dobject_oE1s_DL_005150 "__OTR__objects/object_oE1s/object_oE1s_DL_005150" +static const ALIGN_ASSET(2) char object_oE1s_DL_005150[] = dobject_oE1s_DL_005150; + +#define dobject_oE1s_DL_005620 "__OTR__objects/object_oE1s/object_oE1s_DL_005620" +static const ALIGN_ASSET(2) char object_oE1s_DL_005620[] = dobject_oE1s_DL_005620; + +#define dobject_oE1s_DL_005808 "__OTR__objects/object_oE1s/object_oE1s_DL_005808" +static const ALIGN_ASSET(2) char object_oE1s_DL_005808[] = dobject_oE1s_DL_005808; + +#define dobject_oE1s_DL_005970 "__OTR__objects/object_oE1s/object_oE1s_DL_005970" +static const ALIGN_ASSET(2) char object_oE1s_DL_005970[] = dobject_oE1s_DL_005970; + +#define dobject_oE1s_DL_005AE8 "__OTR__objects/object_oE1s/object_oE1s_DL_005AE8" +static const ALIGN_ASSET(2) char object_oE1s_DL_005AE8[] = dobject_oE1s_DL_005AE8; + +#define dobject_oE1s_DL_005BA0 "__OTR__objects/object_oE1s/object_oE1s_DL_005BA0" +static const ALIGN_ASSET(2) char object_oE1s_DL_005BA0[] = dobject_oE1s_DL_005BA0; + +#define dobject_oE1s_DL_005CF0 "__OTR__objects/object_oE1s/object_oE1s_DL_005CF0" +static const ALIGN_ASSET(2) char object_oE1s_DL_005CF0[] = dobject_oE1s_DL_005CF0; + +#define dobject_oE1s_DL_005DC0 "__OTR__objects/object_oE1s/object_oE1s_DL_005DC0" +static const ALIGN_ASSET(2) char object_oE1s_DL_005DC0[] = dobject_oE1s_DL_005DC0; + +#define dobject_oE1s_DL_005FA8 "__OTR__objects/object_oE1s/object_oE1s_DL_005FA8" +static const ALIGN_ASSET(2) char object_oE1s_DL_005FA8[] = dobject_oE1s_DL_005FA8; + +#define dobject_oE1s_DL_006110 "__OTR__objects/object_oE1s/object_oE1s_DL_006110" +static const ALIGN_ASSET(2) char object_oE1s_DL_006110[] = dobject_oE1s_DL_006110; + +#define dobject_oE1s_DL_006288 "__OTR__objects/object_oE1s/object_oE1s_DL_006288" +static const ALIGN_ASSET(2) char object_oE1s_DL_006288[] = dobject_oE1s_DL_006288; + +#define dobject_oE1s_DL_006340 "__OTR__objects/object_oE1s/object_oE1s_DL_006340" +static const ALIGN_ASSET(2) char object_oE1s_DL_006340[] = dobject_oE1s_DL_006340; + +#define dobject_oE1s_DL_006490 "__OTR__objects/object_oE1s/object_oE1s_DL_006490" +static const ALIGN_ASSET(2) char object_oE1s_DL_006490[] = dobject_oE1s_DL_006490; + +#define dobject_oE1sTex_000478 "__OTR__objects/object_oE1s/object_oE1sTex_000478" +static const ALIGN_ASSET(2) char object_oE1sTex_000478[] = dobject_oE1sTex_000478; + +#define dobject_oE1sTLUT_0001A8 "__OTR__objects/object_oE1s/object_oE1sTLUT_0001A8" +static const ALIGN_ASSET(2) char object_oE1sTLUT_0001A8[] = dobject_oE1sTLUT_0001A8; \ No newline at end of file diff --git a/soh/assets/objects/object_oE2/object_oE2.h b/soh/assets/objects/object_oE2/object_oE2.h index 5bc2e78cc..c773c0937 100644 --- a/soh/assets/objects/object_oE2/object_oE2.h +++ b/soh/assets/objects/object_oE2/object_oE2.h @@ -1,205 +1,90 @@ #pragma once -#define dobject_oE2_Skel_000260 "__OTR__objects/object_oE2/object_oE2_Skel_000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Skel_000260[] = dobject_oE2_Skel_000260; -#else -static const char object_oE2_Skel_000260[] __attribute__((aligned (2))) = dobject_oE2_Skel_000260; -#endif - -#define dobject_oE2_DL_0025A8 "__OTR__objects/object_oE2/object_oE2_DL_0025A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_0025A8[] = dobject_oE2_DL_0025A8; -#else -static const char object_oE2_DL_0025A8[] __attribute__((aligned (2))) = dobject_oE2_DL_0025A8; -#endif - -#define dobject_oE2_DL_002718 "__OTR__objects/object_oE2/object_oE2_DL_002718" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_002718[] = dobject_oE2_DL_002718; -#else -static const char object_oE2_DL_002718[] __attribute__((aligned (2))) = dobject_oE2_DL_002718; -#endif - -#define dobject_oE2_DL_002C70 "__OTR__objects/object_oE2/object_oE2_DL_002C70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_002C70[] = dobject_oE2_DL_002C70; -#else -static const char object_oE2_DL_002C70[] __attribute__((aligned (2))) = dobject_oE2_DL_002C70; -#endif - -#define dobject_oE2_DL_002DB0 "__OTR__objects/object_oE2/object_oE2_DL_002DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_002DB0[] = dobject_oE2_DL_002DB0; -#else -static const char object_oE2_DL_002DB0[] __attribute__((aligned (2))) = dobject_oE2_DL_002DB0; -#endif - -#define dobject_oE2_DL_002F60 "__OTR__objects/object_oE2/object_oE2_DL_002F60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_002F60[] = dobject_oE2_DL_002F60; -#else -static const char object_oE2_DL_002F60[] __attribute__((aligned (2))) = dobject_oE2_DL_002F60; -#endif - -#define dobject_oE2_DL_003050 "__OTR__objects/object_oE2/object_oE2_DL_003050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_003050[] = dobject_oE2_DL_003050; -#else -static const char object_oE2_DL_003050[] __attribute__((aligned (2))) = dobject_oE2_DL_003050; -#endif - -#define dobject_oE2_DL_003150 "__OTR__objects/object_oE2/object_oE2_DL_003150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_003150[] = dobject_oE2_DL_003150; -#else -static const char object_oE2_DL_003150[] __attribute__((aligned (2))) = dobject_oE2_DL_003150; -#endif - -#define dobject_oE2_DL_003210 "__OTR__objects/object_oE2/object_oE2_DL_003210" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_003210[] = dobject_oE2_DL_003210; -#else -static const char object_oE2_DL_003210[] __attribute__((aligned (2))) = dobject_oE2_DL_003210; -#endif - -#define dobject_oE2_DL_003350 "__OTR__objects/object_oE2/object_oE2_DL_003350" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_003350[] = dobject_oE2_DL_003350; -#else -static const char object_oE2_DL_003350[] __attribute__((aligned (2))) = dobject_oE2_DL_003350; -#endif - -#define dobject_oE2_DL_003510 "__OTR__objects/object_oE2/object_oE2_DL_003510" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_003510[] = dobject_oE2_DL_003510; -#else -static const char object_oE2_DL_003510[] __attribute__((aligned (2))) = dobject_oE2_DL_003510; -#endif - -#define dobject_oE2_DL_0036C0 "__OTR__objects/object_oE2/object_oE2_DL_0036C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_0036C0[] = dobject_oE2_DL_0036C0; -#else -static const char object_oE2_DL_0036C0[] __attribute__((aligned (2))) = dobject_oE2_DL_0036C0; -#endif - -#define dobject_oE2_DL_0037B0 "__OTR__objects/object_oE2/object_oE2_DL_0037B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_0037B0[] = dobject_oE2_DL_0037B0; -#else -static const char object_oE2_DL_0037B0[] __attribute__((aligned (2))) = dobject_oE2_DL_0037B0; -#endif - -#define dobject_oE2_DL_0038B0 "__OTR__objects/object_oE2/object_oE2_DL_0038B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_0038B0[] = dobject_oE2_DL_0038B0; -#else -static const char object_oE2_DL_0038B0[] __attribute__((aligned (2))) = dobject_oE2_DL_0038B0; -#endif - -#define dobject_oE2_DL_003970 "__OTR__objects/object_oE2/object_oE2_DL_003970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_003970[] = dobject_oE2_DL_003970; -#else -static const char object_oE2_DL_003970[] __attribute__((aligned (2))) = dobject_oE2_DL_003970; -#endif - -#define dobject_oE2_DL_003AB0 "__OTR__objects/object_oE2/object_oE2_DL_003AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_DL_003AB0[] = dobject_oE2_DL_003AB0; -#else -static const char object_oE2_DL_003AB0[] __attribute__((aligned (2))) = dobject_oE2_DL_003AB0; -#endif - -#define dobject_oE2_TLUT_003C70 "__OTR__objects/object_oE2/object_oE2_TLUT_003C70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_TLUT_003C70[] = dobject_oE2_TLUT_003C70; -#else -static const char object_oE2_TLUT_003C70[] __attribute__((aligned (2))) = dobject_oE2_TLUT_003C70; -#endif - -#define dobject_oE2_Tex_003E70 "__OTR__objects/object_oE2/object_oE2_Tex_003E70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_003E70[] = dobject_oE2_Tex_003E70; -#else -static const char object_oE2_Tex_003E70[] __attribute__((aligned (2))) = dobject_oE2_Tex_003E70; -#endif - -#define dobject_oE2_Blob_004270 "__OTR__objects/object_oE2/object_oE2_Blob_004270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Blob_004270[] = dobject_oE2_Blob_004270; -#else -static const char object_oE2_Blob_004270[] __attribute__((aligned (2))) = dobject_oE2_Blob_004270; -#endif - -#define dobject_oE2_TLUT_004A70 "__OTR__objects/object_oE2/object_oE2_TLUT_004A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_TLUT_004A70[] = dobject_oE2_TLUT_004A70; -#else -static const char object_oE2_TLUT_004A70[] __attribute__((aligned (2))) = dobject_oE2_TLUT_004A70; -#endif - -#define dobject_oE2_Tex_004C70 "__OTR__objects/object_oE2/object_oE2_Tex_004C70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_004C70[] = dobject_oE2_Tex_004C70; -#else -static const char object_oE2_Tex_004C70[] __attribute__((aligned (2))) = dobject_oE2_Tex_004C70; -#endif - -#define dobject_oE2_Tex_005070 "__OTR__objects/object_oE2/object_oE2_Tex_005070" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_005070[] = dobject_oE2_Tex_005070; -#else -static const char object_oE2_Tex_005070[] __attribute__((aligned (2))) = dobject_oE2_Tex_005070; -#endif - -#define dobject_oE2_Tex_005170 "__OTR__objects/object_oE2/object_oE2_Tex_005170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_005170[] = dobject_oE2_Tex_005170; -#else -static const char object_oE2_Tex_005170[] __attribute__((aligned (2))) = dobject_oE2_Tex_005170; -#endif - -#define dobject_oE2_Tex_005270 "__OTR__objects/object_oE2/object_oE2_Tex_005270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_005270[] = dobject_oE2_Tex_005270; -#else -static const char object_oE2_Tex_005270[] __attribute__((aligned (2))) = dobject_oE2_Tex_005270; -#endif - -#define dobject_oE2_Tex_005670 "__OTR__objects/object_oE2/object_oE2_Tex_005670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_005670[] = dobject_oE2_Tex_005670; -#else -static const char object_oE2_Tex_005670[] __attribute__((aligned (2))) = dobject_oE2_Tex_005670; -#endif - -#define dobject_oE2_Tex_005870 "__OTR__objects/object_oE2/object_oE2_Tex_005870" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_005870[] = dobject_oE2_Tex_005870; -#else -static const char object_oE2_Tex_005870[] __attribute__((aligned (2))) = dobject_oE2_Tex_005870; -#endif - -#define dobject_oE2_Tex_005970 "__OTR__objects/object_oE2/object_oE2_Tex_005970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_005970[] = dobject_oE2_Tex_005970; -#else -static const char object_oE2_Tex_005970[] __attribute__((aligned (2))) = dobject_oE2_Tex_005970; -#endif - -#define dobject_oE2_Tex_0059F0 "__OTR__objects/object_oE2/object_oE2_Tex_0059F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_0059F0[] = dobject_oE2_Tex_0059F0; -#else -static const char object_oE2_Tex_0059F0[] __attribute__((aligned (2))) = dobject_oE2_Tex_0059F0; -#endif - -#define dobject_oE2_Tex_005A30 "__OTR__objects/object_oE2/object_oE2_Tex_005A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE2_Tex_005A30[] = dobject_oE2_Tex_005A30; -#else -static const char object_oE2_Tex_005A30[] __attribute__((aligned (2))) = dobject_oE2_Tex_005A30; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE2_Skel_000260 "__OTR__objects/object_oE2/object_oE2_Skel_000260" +static const ALIGN_ASSET(2) char object_oE2_Skel_000260[] = dobject_oE2_Skel_000260; + +#define dobject_oE2_DL_0025A8 "__OTR__objects/object_oE2/object_oE2_DL_0025A8" +static const ALIGN_ASSET(2) char object_oE2_DL_0025A8[] = dobject_oE2_DL_0025A8; + +#define dobject_oE2_DL_002718 "__OTR__objects/object_oE2/object_oE2_DL_002718" +static const ALIGN_ASSET(2) char object_oE2_DL_002718[] = dobject_oE2_DL_002718; + +#define dobject_oE2_DL_002C70 "__OTR__objects/object_oE2/object_oE2_DL_002C70" +static const ALIGN_ASSET(2) char object_oE2_DL_002C70[] = dobject_oE2_DL_002C70; + +#define dobject_oE2_DL_002DB0 "__OTR__objects/object_oE2/object_oE2_DL_002DB0" +static const ALIGN_ASSET(2) char object_oE2_DL_002DB0[] = dobject_oE2_DL_002DB0; + +#define dobject_oE2_DL_002F60 "__OTR__objects/object_oE2/object_oE2_DL_002F60" +static const ALIGN_ASSET(2) char object_oE2_DL_002F60[] = dobject_oE2_DL_002F60; + +#define dobject_oE2_DL_003050 "__OTR__objects/object_oE2/object_oE2_DL_003050" +static const ALIGN_ASSET(2) char object_oE2_DL_003050[] = dobject_oE2_DL_003050; + +#define dobject_oE2_DL_003150 "__OTR__objects/object_oE2/object_oE2_DL_003150" +static const ALIGN_ASSET(2) char object_oE2_DL_003150[] = dobject_oE2_DL_003150; + +#define dobject_oE2_DL_003210 "__OTR__objects/object_oE2/object_oE2_DL_003210" +static const ALIGN_ASSET(2) char object_oE2_DL_003210[] = dobject_oE2_DL_003210; + +#define dobject_oE2_DL_003350 "__OTR__objects/object_oE2/object_oE2_DL_003350" +static const ALIGN_ASSET(2) char object_oE2_DL_003350[] = dobject_oE2_DL_003350; + +#define dobject_oE2_DL_003510 "__OTR__objects/object_oE2/object_oE2_DL_003510" +static const ALIGN_ASSET(2) char object_oE2_DL_003510[] = dobject_oE2_DL_003510; + +#define dobject_oE2_DL_0036C0 "__OTR__objects/object_oE2/object_oE2_DL_0036C0" +static const ALIGN_ASSET(2) char object_oE2_DL_0036C0[] = dobject_oE2_DL_0036C0; + +#define dobject_oE2_DL_0037B0 "__OTR__objects/object_oE2/object_oE2_DL_0037B0" +static const ALIGN_ASSET(2) char object_oE2_DL_0037B0[] = dobject_oE2_DL_0037B0; + +#define dobject_oE2_DL_0038B0 "__OTR__objects/object_oE2/object_oE2_DL_0038B0" +static const ALIGN_ASSET(2) char object_oE2_DL_0038B0[] = dobject_oE2_DL_0038B0; + +#define dobject_oE2_DL_003970 "__OTR__objects/object_oE2/object_oE2_DL_003970" +static const ALIGN_ASSET(2) char object_oE2_DL_003970[] = dobject_oE2_DL_003970; + +#define dobject_oE2_DL_003AB0 "__OTR__objects/object_oE2/object_oE2_DL_003AB0" +static const ALIGN_ASSET(2) char object_oE2_DL_003AB0[] = dobject_oE2_DL_003AB0; + +#define dobject_oE2_TLUT_003C70 "__OTR__objects/object_oE2/object_oE2_TLUT_003C70" +static const ALIGN_ASSET(2) char object_oE2_TLUT_003C70[] = dobject_oE2_TLUT_003C70; + +#define dobject_oE2_Tex_003E70 "__OTR__objects/object_oE2/object_oE2_Tex_003E70" +static const ALIGN_ASSET(2) char object_oE2_Tex_003E70[] = dobject_oE2_Tex_003E70; + +#define dobject_oE2_Blob_004270 "__OTR__objects/object_oE2/object_oE2_Blob_004270" +static const ALIGN_ASSET(2) char object_oE2_Blob_004270[] = dobject_oE2_Blob_004270; + +#define dobject_oE2_TLUT_004A70 "__OTR__objects/object_oE2/object_oE2_TLUT_004A70" +static const ALIGN_ASSET(2) char object_oE2_TLUT_004A70[] = dobject_oE2_TLUT_004A70; + +#define dobject_oE2_Tex_004C70 "__OTR__objects/object_oE2/object_oE2_Tex_004C70" +static const ALIGN_ASSET(2) char object_oE2_Tex_004C70[] = dobject_oE2_Tex_004C70; + +#define dobject_oE2_Tex_005070 "__OTR__objects/object_oE2/object_oE2_Tex_005070" +static const ALIGN_ASSET(2) char object_oE2_Tex_005070[] = dobject_oE2_Tex_005070; + +#define dobject_oE2_Tex_005170 "__OTR__objects/object_oE2/object_oE2_Tex_005170" +static const ALIGN_ASSET(2) char object_oE2_Tex_005170[] = dobject_oE2_Tex_005170; + +#define dobject_oE2_Tex_005270 "__OTR__objects/object_oE2/object_oE2_Tex_005270" +static const ALIGN_ASSET(2) char object_oE2_Tex_005270[] = dobject_oE2_Tex_005270; + +#define dobject_oE2_Tex_005670 "__OTR__objects/object_oE2/object_oE2_Tex_005670" +static const ALIGN_ASSET(2) char object_oE2_Tex_005670[] = dobject_oE2_Tex_005670; + +#define dobject_oE2_Tex_005870 "__OTR__objects/object_oE2/object_oE2_Tex_005870" +static const ALIGN_ASSET(2) char object_oE2_Tex_005870[] = dobject_oE2_Tex_005870; + +#define dobject_oE2_Tex_005970 "__OTR__objects/object_oE2/object_oE2_Tex_005970" +static const ALIGN_ASSET(2) char object_oE2_Tex_005970[] = dobject_oE2_Tex_005970; + +#define dobject_oE2_Tex_0059F0 "__OTR__objects/object_oE2/object_oE2_Tex_0059F0" +static const ALIGN_ASSET(2) char object_oE2_Tex_0059F0[] = dobject_oE2_Tex_0059F0; + +#define dobject_oE2_Tex_005A30 "__OTR__objects/object_oE2/object_oE2_Tex_005A30" +static const ALIGN_ASSET(2) char object_oE2_Tex_005A30[] = dobject_oE2_Tex_005A30; \ No newline at end of file diff --git a/soh/assets/objects/object_oE3/object_oE3.h b/soh/assets/objects/object_oE3/object_oE3.h index ee872e132..3db4c88da 100644 --- a/soh/assets/objects/object_oE3/object_oE3.h +++ b/soh/assets/objects/object_oE3/object_oE3.h @@ -1,219 +1,96 @@ #pragma once -#define dobject_oE3_Skel_000260 "__OTR__objects/object_oE3/object_oE3_Skel_000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Skel_000260[] = dobject_oE3_Skel_000260; -#else -static const char object_oE3_Skel_000260[] __attribute__((aligned (2))) = dobject_oE3_Skel_000260; -#endif - -#define dobject_oE3_DL_003788 "__OTR__objects/object_oE3/object_oE3_DL_003788" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_003788[] = dobject_oE3_DL_003788; -#else -static const char object_oE3_DL_003788[] __attribute__((aligned (2))) = dobject_oE3_DL_003788; -#endif - -#define dobject_oE3_DL_003938 "__OTR__objects/object_oE3/object_oE3_DL_003938" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_003938[] = dobject_oE3_DL_003938; -#else -static const char object_oE3_DL_003938[] __attribute__((aligned (2))) = dobject_oE3_DL_003938; -#endif - -#define dobject_oE3_DL_003A30 "__OTR__objects/object_oE3/object_oE3_DL_003A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_003A30[] = dobject_oE3_DL_003A30; -#else -static const char object_oE3_DL_003A30[] __attribute__((aligned (2))) = dobject_oE3_DL_003A30; -#endif - -#define dobject_oE3_DL_004000 "__OTR__objects/object_oE3/object_oE3_DL_004000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004000[] = dobject_oE3_DL_004000; -#else -static const char object_oE3_DL_004000[] __attribute__((aligned (2))) = dobject_oE3_DL_004000; -#endif - -#define dobject_oE3_DL_0041B0 "__OTR__objects/object_oE3/object_oE3_DL_0041B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_0041B0[] = dobject_oE3_DL_0041B0; -#else -static const char object_oE3_DL_0041B0[] __attribute__((aligned (2))) = dobject_oE3_DL_0041B0; -#endif - -#define dobject_oE3_DL_004270 "__OTR__objects/object_oE3/object_oE3_DL_004270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004270[] = dobject_oE3_DL_004270; -#else -static const char object_oE3_DL_004270[] __attribute__((aligned (2))) = dobject_oE3_DL_004270; -#endif - -#define dobject_oE3_DL_004348 "__OTR__objects/object_oE3/object_oE3_DL_004348" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004348[] = dobject_oE3_DL_004348; -#else -static const char object_oE3_DL_004348[] __attribute__((aligned (2))) = dobject_oE3_DL_004348; -#endif - -#define dobject_oE3_DL_0044A0 "__OTR__objects/object_oE3/object_oE3_DL_0044A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_0044A0[] = dobject_oE3_DL_0044A0; -#else -static const char object_oE3_DL_0044A0[] __attribute__((aligned (2))) = dobject_oE3_DL_0044A0; -#endif - -#define dobject_oE3_DL_0045E0 "__OTR__objects/object_oE3/object_oE3_DL_0045E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_0045E0[] = dobject_oE3_DL_0045E0; -#else -static const char object_oE3_DL_0045E0[] __attribute__((aligned (2))) = dobject_oE3_DL_0045E0; -#endif - -#define dobject_oE3_DL_004790 "__OTR__objects/object_oE3/object_oE3_DL_004790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004790[] = dobject_oE3_DL_004790; -#else -static const char object_oE3_DL_004790[] __attribute__((aligned (2))) = dobject_oE3_DL_004790; -#endif - -#define dobject_oE3_DL_004940 "__OTR__objects/object_oE3/object_oE3_DL_004940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004940[] = dobject_oE3_DL_004940; -#else -static const char object_oE3_DL_004940[] __attribute__((aligned (2))) = dobject_oE3_DL_004940; -#endif - -#define dobject_oE3_DL_004A00 "__OTR__objects/object_oE3/object_oE3_DL_004A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004A00[] = dobject_oE3_DL_004A00; -#else -static const char object_oE3_DL_004A00[] __attribute__((aligned (2))) = dobject_oE3_DL_004A00; -#endif - -#define dobject_oE3_DL_004AD8 "__OTR__objects/object_oE3/object_oE3_DL_004AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004AD8[] = dobject_oE3_DL_004AD8; -#else -static const char object_oE3_DL_004AD8[] __attribute__((aligned (2))) = dobject_oE3_DL_004AD8; -#endif - -#define dobject_oE3_DL_004C30 "__OTR__objects/object_oE3/object_oE3_DL_004C30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004C30[] = dobject_oE3_DL_004C30; -#else -static const char object_oE3_DL_004C30[] __attribute__((aligned (2))) = dobject_oE3_DL_004C30; -#endif - -#define dobject_oE3_DL_004D70 "__OTR__objects/object_oE3/object_oE3_DL_004D70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_DL_004D70[] = dobject_oE3_DL_004D70; -#else -static const char object_oE3_DL_004D70[] __attribute__((aligned (2))) = dobject_oE3_DL_004D70; -#endif - -#define dobject_oE3_TLUT_004F20 "__OTR__objects/object_oE3/object_oE3_TLUT_004F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_TLUT_004F20[] = dobject_oE3_TLUT_004F20; -#else -static const char object_oE3_TLUT_004F20[] __attribute__((aligned (2))) = dobject_oE3_TLUT_004F20; -#endif - -#define dobject_oE3_Tex_005120 "__OTR__objects/object_oE3/object_oE3_Tex_005120" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_005120[] = dobject_oE3_Tex_005120; -#else -static const char object_oE3_Tex_005120[] __attribute__((aligned (2))) = dobject_oE3_Tex_005120; -#endif - -#define dobject_oE3_Blob_005520 "__OTR__objects/object_oE3/object_oE3_Blob_005520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Blob_005520[] = dobject_oE3_Blob_005520; -#else -static const char object_oE3_Blob_005520[] __attribute__((aligned (2))) = dobject_oE3_Blob_005520; -#endif - -#define dobject_oE3_TLUT_005D20 "__OTR__objects/object_oE3/object_oE3_TLUT_005D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_TLUT_005D20[] = dobject_oE3_TLUT_005D20; -#else -static const char object_oE3_TLUT_005D20[] __attribute__((aligned (2))) = dobject_oE3_TLUT_005D20; -#endif - -#define dobject_oE3_Tex_005F20 "__OTR__objects/object_oE3/object_oE3_Tex_005F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_005F20[] = dobject_oE3_Tex_005F20; -#else -static const char object_oE3_Tex_005F20[] __attribute__((aligned (2))) = dobject_oE3_Tex_005F20; -#endif - -#define dobject_oE3_Blob_005F60 "__OTR__objects/object_oE3/object_oE3_Blob_005F60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Blob_005F60[] = dobject_oE3_Blob_005F60; -#else -static const char object_oE3_Blob_005F60[] __attribute__((aligned (2))) = dobject_oE3_Blob_005F60; -#endif - -#define dobject_oE3_Tex_006160 "__OTR__objects/object_oE3/object_oE3_Tex_006160" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_006160[] = dobject_oE3_Tex_006160; -#else -static const char object_oE3_Tex_006160[] __attribute__((aligned (2))) = dobject_oE3_Tex_006160; -#endif - -#define dobject_oE3_Tex_006260 "__OTR__objects/object_oE3/object_oE3_Tex_006260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_006260[] = dobject_oE3_Tex_006260; -#else -static const char object_oE3_Tex_006260[] __attribute__((aligned (2))) = dobject_oE3_Tex_006260; -#endif - -#define dobject_oE3_Blob_006360 "__OTR__objects/object_oE3/object_oE3_Blob_006360" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Blob_006360[] = dobject_oE3_Blob_006360; -#else -static const char object_oE3_Blob_006360[] __attribute__((aligned (2))) = dobject_oE3_Blob_006360; -#endif - -#define dobject_oE3_Tex_006560 "__OTR__objects/object_oE3/object_oE3_Tex_006560" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_006560[] = dobject_oE3_Tex_006560; -#else -static const char object_oE3_Tex_006560[] __attribute__((aligned (2))) = dobject_oE3_Tex_006560; -#endif - -#define dobject_oE3_Tex_006660 "__OTR__objects/object_oE3/object_oE3_Tex_006660" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_006660[] = dobject_oE3_Tex_006660; -#else -static const char object_oE3_Tex_006660[] __attribute__((aligned (2))) = dobject_oE3_Tex_006660; -#endif - -#define dobject_oE3_Tex_006E60 "__OTR__objects/object_oE3/object_oE3_Tex_006E60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_006E60[] = dobject_oE3_Tex_006E60; -#else -static const char object_oE3_Tex_006E60[] __attribute__((aligned (2))) = dobject_oE3_Tex_006E60; -#endif - -#define dobject_oE3_Tex_006EA0 "__OTR__objects/object_oE3/object_oE3_Tex_006EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_006EA0[] = dobject_oE3_Tex_006EA0; -#else -static const char object_oE3_Tex_006EA0[] __attribute__((aligned (2))) = dobject_oE3_Tex_006EA0; -#endif - -#define dobject_oE3_Tex_0070A0 "__OTR__objects/object_oE3/object_oE3_Tex_0070A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_0070A0[] = dobject_oE3_Tex_0070A0; -#else -static const char object_oE3_Tex_0070A0[] __attribute__((aligned (2))) = dobject_oE3_Tex_0070A0; -#endif - -#define dobject_oE3_Tex_0070E0 "__OTR__objects/object_oE3/object_oE3_Tex_0070E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE3_Tex_0070E0[] = dobject_oE3_Tex_0070E0; -#else -static const char object_oE3_Tex_0070E0[] __attribute__((aligned (2))) = dobject_oE3_Tex_0070E0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE3_Skel_000260 "__OTR__objects/object_oE3/object_oE3_Skel_000260" +static const ALIGN_ASSET(2) char object_oE3_Skel_000260[] = dobject_oE3_Skel_000260; + +#define dobject_oE3_DL_003788 "__OTR__objects/object_oE3/object_oE3_DL_003788" +static const ALIGN_ASSET(2) char object_oE3_DL_003788[] = dobject_oE3_DL_003788; + +#define dobject_oE3_DL_003938 "__OTR__objects/object_oE3/object_oE3_DL_003938" +static const ALIGN_ASSET(2) char object_oE3_DL_003938[] = dobject_oE3_DL_003938; + +#define dobject_oE3_DL_003A30 "__OTR__objects/object_oE3/object_oE3_DL_003A30" +static const ALIGN_ASSET(2) char object_oE3_DL_003A30[] = dobject_oE3_DL_003A30; + +#define dobject_oE3_DL_004000 "__OTR__objects/object_oE3/object_oE3_DL_004000" +static const ALIGN_ASSET(2) char object_oE3_DL_004000[] = dobject_oE3_DL_004000; + +#define dobject_oE3_DL_0041B0 "__OTR__objects/object_oE3/object_oE3_DL_0041B0" +static const ALIGN_ASSET(2) char object_oE3_DL_0041B0[] = dobject_oE3_DL_0041B0; + +#define dobject_oE3_DL_004270 "__OTR__objects/object_oE3/object_oE3_DL_004270" +static const ALIGN_ASSET(2) char object_oE3_DL_004270[] = dobject_oE3_DL_004270; + +#define dobject_oE3_DL_004348 "__OTR__objects/object_oE3/object_oE3_DL_004348" +static const ALIGN_ASSET(2) char object_oE3_DL_004348[] = dobject_oE3_DL_004348; + +#define dobject_oE3_DL_0044A0 "__OTR__objects/object_oE3/object_oE3_DL_0044A0" +static const ALIGN_ASSET(2) char object_oE3_DL_0044A0[] = dobject_oE3_DL_0044A0; + +#define dobject_oE3_DL_0045E0 "__OTR__objects/object_oE3/object_oE3_DL_0045E0" +static const ALIGN_ASSET(2) char object_oE3_DL_0045E0[] = dobject_oE3_DL_0045E0; + +#define dobject_oE3_DL_004790 "__OTR__objects/object_oE3/object_oE3_DL_004790" +static const ALIGN_ASSET(2) char object_oE3_DL_004790[] = dobject_oE3_DL_004790; + +#define dobject_oE3_DL_004940 "__OTR__objects/object_oE3/object_oE3_DL_004940" +static const ALIGN_ASSET(2) char object_oE3_DL_004940[] = dobject_oE3_DL_004940; + +#define dobject_oE3_DL_004A00 "__OTR__objects/object_oE3/object_oE3_DL_004A00" +static const ALIGN_ASSET(2) char object_oE3_DL_004A00[] = dobject_oE3_DL_004A00; + +#define dobject_oE3_DL_004AD8 "__OTR__objects/object_oE3/object_oE3_DL_004AD8" +static const ALIGN_ASSET(2) char object_oE3_DL_004AD8[] = dobject_oE3_DL_004AD8; + +#define dobject_oE3_DL_004C30 "__OTR__objects/object_oE3/object_oE3_DL_004C30" +static const ALIGN_ASSET(2) char object_oE3_DL_004C30[] = dobject_oE3_DL_004C30; + +#define dobject_oE3_DL_004D70 "__OTR__objects/object_oE3/object_oE3_DL_004D70" +static const ALIGN_ASSET(2) char object_oE3_DL_004D70[] = dobject_oE3_DL_004D70; + +#define dobject_oE3_TLUT_004F20 "__OTR__objects/object_oE3/object_oE3_TLUT_004F20" +static const ALIGN_ASSET(2) char object_oE3_TLUT_004F20[] = dobject_oE3_TLUT_004F20; + +#define dobject_oE3_Tex_005120 "__OTR__objects/object_oE3/object_oE3_Tex_005120" +static const ALIGN_ASSET(2) char object_oE3_Tex_005120[] = dobject_oE3_Tex_005120; + +#define dobject_oE3_Blob_005520 "__OTR__objects/object_oE3/object_oE3_Blob_005520" +static const ALIGN_ASSET(2) char object_oE3_Blob_005520[] = dobject_oE3_Blob_005520; + +#define dobject_oE3_TLUT_005D20 "__OTR__objects/object_oE3/object_oE3_TLUT_005D20" +static const ALIGN_ASSET(2) char object_oE3_TLUT_005D20[] = dobject_oE3_TLUT_005D20; + +#define dobject_oE3_Tex_005F20 "__OTR__objects/object_oE3/object_oE3_Tex_005F20" +static const ALIGN_ASSET(2) char object_oE3_Tex_005F20[] = dobject_oE3_Tex_005F20; + +#define dobject_oE3_Blob_005F60 "__OTR__objects/object_oE3/object_oE3_Blob_005F60" +static const ALIGN_ASSET(2) char object_oE3_Blob_005F60[] = dobject_oE3_Blob_005F60; + +#define dobject_oE3_Tex_006160 "__OTR__objects/object_oE3/object_oE3_Tex_006160" +static const ALIGN_ASSET(2) char object_oE3_Tex_006160[] = dobject_oE3_Tex_006160; + +#define dobject_oE3_Tex_006260 "__OTR__objects/object_oE3/object_oE3_Tex_006260" +static const ALIGN_ASSET(2) char object_oE3_Tex_006260[] = dobject_oE3_Tex_006260; + +#define dobject_oE3_Blob_006360 "__OTR__objects/object_oE3/object_oE3_Blob_006360" +static const ALIGN_ASSET(2) char object_oE3_Blob_006360[] = dobject_oE3_Blob_006360; + +#define dobject_oE3_Tex_006560 "__OTR__objects/object_oE3/object_oE3_Tex_006560" +static const ALIGN_ASSET(2) char object_oE3_Tex_006560[] = dobject_oE3_Tex_006560; + +#define dobject_oE3_Tex_006660 "__OTR__objects/object_oE3/object_oE3_Tex_006660" +static const ALIGN_ASSET(2) char object_oE3_Tex_006660[] = dobject_oE3_Tex_006660; + +#define dobject_oE3_Tex_006E60 "__OTR__objects/object_oE3/object_oE3_Tex_006E60" +static const ALIGN_ASSET(2) char object_oE3_Tex_006E60[] = dobject_oE3_Tex_006E60; + +#define dobject_oE3_Tex_006EA0 "__OTR__objects/object_oE3/object_oE3_Tex_006EA0" +static const ALIGN_ASSET(2) char object_oE3_Tex_006EA0[] = dobject_oE3_Tex_006EA0; + +#define dobject_oE3_Tex_0070A0 "__OTR__objects/object_oE3/object_oE3_Tex_0070A0" +static const ALIGN_ASSET(2) char object_oE3_Tex_0070A0[] = dobject_oE3_Tex_0070A0; + +#define dobject_oE3_Tex_0070E0 "__OTR__objects/object_oE3/object_oE3_Tex_0070E0" +static const ALIGN_ASSET(2) char object_oE3_Tex_0070E0[] = dobject_oE3_Tex_0070E0; \ No newline at end of file diff --git a/soh/assets/objects/object_oE4/object_oE4.h b/soh/assets/objects/object_oE4/object_oE4.h index 0a2b72ff8..56c84ac31 100644 --- a/soh/assets/objects/object_oE4/object_oE4.h +++ b/soh/assets/objects/object_oE4/object_oE4.h @@ -1,191 +1,84 @@ #pragma once -#define dobject_oE4_Skel_000260 "__OTR__objects/object_oE4/object_oE4_Skel_000260" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Skel_000260[] = dobject_oE4_Skel_000260; -#else -static const char object_oE4_Skel_000260[] __attribute__((aligned (2))) = dobject_oE4_Skel_000260; -#endif - -#define dobject_oE4_DL_002CA8 "__OTR__objects/object_oE4/object_oE4_DL_002CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_002CA8[] = dobject_oE4_DL_002CA8; -#else -static const char object_oE4_DL_002CA8[] __attribute__((aligned (2))) = dobject_oE4_DL_002CA8; -#endif - -#define dobject_oE4_DL_002E50 "__OTR__objects/object_oE4/object_oE4_DL_002E50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_002E50[] = dobject_oE4_DL_002E50; -#else -static const char object_oE4_DL_002E50[] __attribute__((aligned (2))) = dobject_oE4_DL_002E50; -#endif - -#define dobject_oE4_DL_002F58 "__OTR__objects/object_oE4/object_oE4_DL_002F58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_002F58[] = dobject_oE4_DL_002F58; -#else -static const char object_oE4_DL_002F58[] __attribute__((aligned (2))) = dobject_oE4_DL_002F58; -#endif - -#define dobject_oE4_DL_0035A0 "__OTR__objects/object_oE4/object_oE4_DL_0035A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_0035A0[] = dobject_oE4_DL_0035A0; -#else -static const char object_oE4_DL_0035A0[] __attribute__((aligned (2))) = dobject_oE4_DL_0035A0; -#endif - -#define dobject_oE4_DL_003748 "__OTR__objects/object_oE4/object_oE4_DL_003748" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003748[] = dobject_oE4_DL_003748; -#else -static const char object_oE4_DL_003748[] __attribute__((aligned (2))) = dobject_oE4_DL_003748; -#endif - -#define dobject_oE4_DL_003838 "__OTR__objects/object_oE4/object_oE4_DL_003838" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003838[] = dobject_oE4_DL_003838; -#else -static const char object_oE4_DL_003838[] __attribute__((aligned (2))) = dobject_oE4_DL_003838; -#endif - -#define dobject_oE4_DL_003928 "__OTR__objects/object_oE4/object_oE4_DL_003928" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003928[] = dobject_oE4_DL_003928; -#else -static const char object_oE4_DL_003928[] __attribute__((aligned (2))) = dobject_oE4_DL_003928; -#endif - -#define dobject_oE4_DL_0039E0 "__OTR__objects/object_oE4/object_oE4_DL_0039E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_0039E0[] = dobject_oE4_DL_0039E0; -#else -static const char object_oE4_DL_0039E0[] __attribute__((aligned (2))) = dobject_oE4_DL_0039E0; -#endif - -#define dobject_oE4_DL_003A98 "__OTR__objects/object_oE4/object_oE4_DL_003A98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003A98[] = dobject_oE4_DL_003A98; -#else -static const char object_oE4_DL_003A98[] __attribute__((aligned (2))) = dobject_oE4_DL_003A98; -#endif - -#define dobject_oE4_DL_003BA0 "__OTR__objects/object_oE4/object_oE4_DL_003BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003BA0[] = dobject_oE4_DL_003BA0; -#else -static const char object_oE4_DL_003BA0[] __attribute__((aligned (2))) = dobject_oE4_DL_003BA0; -#endif - -#define dobject_oE4_DL_003D48 "__OTR__objects/object_oE4/object_oE4_DL_003D48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003D48[] = dobject_oE4_DL_003D48; -#else -static const char object_oE4_DL_003D48[] __attribute__((aligned (2))) = dobject_oE4_DL_003D48; -#endif - -#define dobject_oE4_DL_003E38 "__OTR__objects/object_oE4/object_oE4_DL_003E38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003E38[] = dobject_oE4_DL_003E38; -#else -static const char object_oE4_DL_003E38[] __attribute__((aligned (2))) = dobject_oE4_DL_003E38; -#endif - -#define dobject_oE4_DL_003F28 "__OTR__objects/object_oE4/object_oE4_DL_003F28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003F28[] = dobject_oE4_DL_003F28; -#else -static const char object_oE4_DL_003F28[] __attribute__((aligned (2))) = dobject_oE4_DL_003F28; -#endif - -#define dobject_oE4_DL_003FE0 "__OTR__objects/object_oE4/object_oE4_DL_003FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_003FE0[] = dobject_oE4_DL_003FE0; -#else -static const char object_oE4_DL_003FE0[] __attribute__((aligned (2))) = dobject_oE4_DL_003FE0; -#endif - -#define dobject_oE4_DL_004098 "__OTR__objects/object_oE4/object_oE4_DL_004098" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_DL_004098[] = dobject_oE4_DL_004098; -#else -static const char object_oE4_DL_004098[] __attribute__((aligned (2))) = dobject_oE4_DL_004098; -#endif - -#define dobject_oE4_TLUT_004188 "__OTR__objects/object_oE4/object_oE4_TLUT_004188" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_TLUT_004188[] = dobject_oE4_TLUT_004188; -#else -static const char object_oE4_TLUT_004188[] __attribute__((aligned (2))) = dobject_oE4_TLUT_004188; -#endif - -#define dobject_oE4_Tex_004388 "__OTR__objects/object_oE4/object_oE4_Tex_004388" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_004388[] = dobject_oE4_Tex_004388; -#else -static const char object_oE4_Tex_004388[] __attribute__((aligned (2))) = dobject_oE4_Tex_004388; -#endif - -#define dobject_oE4_Tex_004488 "__OTR__objects/object_oE4/object_oE4_Tex_004488" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_004488[] = dobject_oE4_Tex_004488; -#else -static const char object_oE4_Tex_004488[] __attribute__((aligned (2))) = dobject_oE4_Tex_004488; -#endif - -#define dobject_oE4_Tex_004588 "__OTR__objects/object_oE4/object_oE4_Tex_004588" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_004588[] = dobject_oE4_Tex_004588; -#else -static const char object_oE4_Tex_004588[] __attribute__((aligned (2))) = dobject_oE4_Tex_004588; -#endif - -#define dobject_oE4_Tex_0045C8 "__OTR__objects/object_oE4/object_oE4_Tex_0045C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_0045C8[] = dobject_oE4_Tex_0045C8; -#else -static const char object_oE4_Tex_0045C8[] __attribute__((aligned (2))) = dobject_oE4_Tex_0045C8; -#endif - -#define dobject_oE4_Tex_0046C8 "__OTR__objects/object_oE4/object_oE4_Tex_0046C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_0046C8[] = dobject_oE4_Tex_0046C8; -#else -static const char object_oE4_Tex_0046C8[] __attribute__((aligned (2))) = dobject_oE4_Tex_0046C8; -#endif - -#define dobject_oE4_Tex_0047C8 "__OTR__objects/object_oE4/object_oE4_Tex_0047C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_0047C8[] = dobject_oE4_Tex_0047C8; -#else -static const char object_oE4_Tex_0047C8[] __attribute__((aligned (2))) = dobject_oE4_Tex_0047C8; -#endif - -#define dobject_oE4_Tex_004BC8 "__OTR__objects/object_oE4/object_oE4_Tex_004BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_004BC8[] = dobject_oE4_Tex_004BC8; -#else -static const char object_oE4_Tex_004BC8[] __attribute__((aligned (2))) = dobject_oE4_Tex_004BC8; -#endif - -#define dobject_oE4_Tex_004CC8 "__OTR__objects/object_oE4/object_oE4_Tex_004CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_004CC8[] = dobject_oE4_Tex_004CC8; -#else -static const char object_oE4_Tex_004CC8[] __attribute__((aligned (2))) = dobject_oE4_Tex_004CC8; -#endif - -#define dobject_oE4_Tex_004D48 "__OTR__objects/object_oE4/object_oE4_Tex_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_004D48[] = dobject_oE4_Tex_004D48; -#else -static const char object_oE4_Tex_004D48[] __attribute__((aligned (2))) = dobject_oE4_Tex_004D48; -#endif - -#define dobject_oE4_Tex_004DC8 "__OTR__objects/object_oE4/object_oE4_Tex_004DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4_Tex_004DC8[] = dobject_oE4_Tex_004DC8; -#else -static const char object_oE4_Tex_004DC8[] __attribute__((aligned (2))) = dobject_oE4_Tex_004DC8; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE4_Skel_000260 "__OTR__objects/object_oE4/object_oE4_Skel_000260" +static const ALIGN_ASSET(2) char object_oE4_Skel_000260[] = dobject_oE4_Skel_000260; + +#define dobject_oE4_DL_002CA8 "__OTR__objects/object_oE4/object_oE4_DL_002CA8" +static const ALIGN_ASSET(2) char object_oE4_DL_002CA8[] = dobject_oE4_DL_002CA8; + +#define dobject_oE4_DL_002E50 "__OTR__objects/object_oE4/object_oE4_DL_002E50" +static const ALIGN_ASSET(2) char object_oE4_DL_002E50[] = dobject_oE4_DL_002E50; + +#define dobject_oE4_DL_002F58 "__OTR__objects/object_oE4/object_oE4_DL_002F58" +static const ALIGN_ASSET(2) char object_oE4_DL_002F58[] = dobject_oE4_DL_002F58; + +#define dobject_oE4_DL_0035A0 "__OTR__objects/object_oE4/object_oE4_DL_0035A0" +static const ALIGN_ASSET(2) char object_oE4_DL_0035A0[] = dobject_oE4_DL_0035A0; + +#define dobject_oE4_DL_003748 "__OTR__objects/object_oE4/object_oE4_DL_003748" +static const ALIGN_ASSET(2) char object_oE4_DL_003748[] = dobject_oE4_DL_003748; + +#define dobject_oE4_DL_003838 "__OTR__objects/object_oE4/object_oE4_DL_003838" +static const ALIGN_ASSET(2) char object_oE4_DL_003838[] = dobject_oE4_DL_003838; + +#define dobject_oE4_DL_003928 "__OTR__objects/object_oE4/object_oE4_DL_003928" +static const ALIGN_ASSET(2) char object_oE4_DL_003928[] = dobject_oE4_DL_003928; + +#define dobject_oE4_DL_0039E0 "__OTR__objects/object_oE4/object_oE4_DL_0039E0" +static const ALIGN_ASSET(2) char object_oE4_DL_0039E0[] = dobject_oE4_DL_0039E0; + +#define dobject_oE4_DL_003A98 "__OTR__objects/object_oE4/object_oE4_DL_003A98" +static const ALIGN_ASSET(2) char object_oE4_DL_003A98[] = dobject_oE4_DL_003A98; + +#define dobject_oE4_DL_003BA0 "__OTR__objects/object_oE4/object_oE4_DL_003BA0" +static const ALIGN_ASSET(2) char object_oE4_DL_003BA0[] = dobject_oE4_DL_003BA0; + +#define dobject_oE4_DL_003D48 "__OTR__objects/object_oE4/object_oE4_DL_003D48" +static const ALIGN_ASSET(2) char object_oE4_DL_003D48[] = dobject_oE4_DL_003D48; + +#define dobject_oE4_DL_003E38 "__OTR__objects/object_oE4/object_oE4_DL_003E38" +static const ALIGN_ASSET(2) char object_oE4_DL_003E38[] = dobject_oE4_DL_003E38; + +#define dobject_oE4_DL_003F28 "__OTR__objects/object_oE4/object_oE4_DL_003F28" +static const ALIGN_ASSET(2) char object_oE4_DL_003F28[] = dobject_oE4_DL_003F28; + +#define dobject_oE4_DL_003FE0 "__OTR__objects/object_oE4/object_oE4_DL_003FE0" +static const ALIGN_ASSET(2) char object_oE4_DL_003FE0[] = dobject_oE4_DL_003FE0; + +#define dobject_oE4_DL_004098 "__OTR__objects/object_oE4/object_oE4_DL_004098" +static const ALIGN_ASSET(2) char object_oE4_DL_004098[] = dobject_oE4_DL_004098; + +#define dobject_oE4_TLUT_004188 "__OTR__objects/object_oE4/object_oE4_TLUT_004188" +static const ALIGN_ASSET(2) char object_oE4_TLUT_004188[] = dobject_oE4_TLUT_004188; + +#define dobject_oE4_Tex_004388 "__OTR__objects/object_oE4/object_oE4_Tex_004388" +static const ALIGN_ASSET(2) char object_oE4_Tex_004388[] = dobject_oE4_Tex_004388; + +#define dobject_oE4_Tex_004488 "__OTR__objects/object_oE4/object_oE4_Tex_004488" +static const ALIGN_ASSET(2) char object_oE4_Tex_004488[] = dobject_oE4_Tex_004488; + +#define dobject_oE4_Tex_004588 "__OTR__objects/object_oE4/object_oE4_Tex_004588" +static const ALIGN_ASSET(2) char object_oE4_Tex_004588[] = dobject_oE4_Tex_004588; + +#define dobject_oE4_Tex_0045C8 "__OTR__objects/object_oE4/object_oE4_Tex_0045C8" +static const ALIGN_ASSET(2) char object_oE4_Tex_0045C8[] = dobject_oE4_Tex_0045C8; + +#define dobject_oE4_Tex_0046C8 "__OTR__objects/object_oE4/object_oE4_Tex_0046C8" +static const ALIGN_ASSET(2) char object_oE4_Tex_0046C8[] = dobject_oE4_Tex_0046C8; + +#define dobject_oE4_Tex_0047C8 "__OTR__objects/object_oE4/object_oE4_Tex_0047C8" +static const ALIGN_ASSET(2) char object_oE4_Tex_0047C8[] = dobject_oE4_Tex_0047C8; + +#define dobject_oE4_Tex_004BC8 "__OTR__objects/object_oE4/object_oE4_Tex_004BC8" +static const ALIGN_ASSET(2) char object_oE4_Tex_004BC8[] = dobject_oE4_Tex_004BC8; + +#define dobject_oE4_Tex_004CC8 "__OTR__objects/object_oE4/object_oE4_Tex_004CC8" +static const ALIGN_ASSET(2) char object_oE4_Tex_004CC8[] = dobject_oE4_Tex_004CC8; + +#define dobject_oE4_Tex_004D48 "__OTR__objects/object_oE4/object_oE4_Tex_004D48" +static const ALIGN_ASSET(2) char object_oE4_Tex_004D48[] = dobject_oE4_Tex_004D48; + +#define dobject_oE4_Tex_004DC8 "__OTR__objects/object_oE4/object_oE4_Tex_004DC8" +static const ALIGN_ASSET(2) char object_oE4_Tex_004DC8[] = dobject_oE4_Tex_004DC8; \ No newline at end of file diff --git a/soh/assets/objects/object_oE4s/object_oE4s.h b/soh/assets/objects/object_oE4s/object_oE4s.h index 49dadd2b3..197b37026 100644 --- a/soh/assets/objects/object_oE4s/object_oE4s.h +++ b/soh/assets/objects/object_oE4s/object_oE4s.h @@ -1,198 +1,87 @@ #pragma once -#define dobject_oE4s_Anim_00007C "__OTR__objects/object_oE4s/object_oE4s_Anim_00007C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Anim_00007C[] = dobject_oE4s_Anim_00007C; -#else -static const char object_oE4s_Anim_00007C[] __attribute__((aligned (2))) = dobject_oE4s_Anim_00007C; -#endif - -#define dobject_oE4s_Skel_000190 "__OTR__objects/object_oE4s/object_oE4s_Skel_000190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Skel_000190[] = dobject_oE4s_Skel_000190; -#else -static const char object_oE4s_Skel_000190[] __attribute__((aligned (2))) = dobject_oE4s_Skel_000190; -#endif - -#define dobject_oE4s_TLUT_0001A8 "__OTR__objects/object_oE4s/object_oE4s_TLUT_0001A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_TLUT_0001A8[] = dobject_oE4s_TLUT_0001A8; -#else -static const char object_oE4s_TLUT_0001A8[] __attribute__((aligned (2))) = dobject_oE4s_TLUT_0001A8; -#endif - -#define dobject_oE4s_Tex_0004A0 "__OTR__objects/object_oE4s/object_oE4s_Tex_0004A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Tex_0004A0[] = dobject_oE4s_Tex_0004A0; -#else -static const char object_oE4s_Tex_0004A0[] __attribute__((aligned (2))) = dobject_oE4s_Tex_0004A0; -#endif - -#define dobject_oE4s_Tex_0004E0 "__OTR__objects/object_oE4s/object_oE4s_Tex_0004E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Tex_0004E0[] = dobject_oE4s_Tex_0004E0; -#else -static const char object_oE4s_Tex_0004E0[] __attribute__((aligned (2))) = dobject_oE4s_Tex_0004E0; -#endif - -#define dobject_oE4s_Tex_0008E0 "__OTR__objects/object_oE4s/object_oE4s_Tex_0008E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Tex_0008E0[] = dobject_oE4s_Tex_0008E0; -#else -static const char object_oE4s_Tex_0008E0[] __attribute__((aligned (2))) = dobject_oE4s_Tex_0008E0; -#endif - -#define dobject_oE4s_Tex_0009E0 "__OTR__objects/object_oE4s/object_oE4s_Tex_0009E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Tex_0009E0[] = dobject_oE4s_Tex_0009E0; -#else -static const char object_oE4s_Tex_0009E0[] __attribute__((aligned (2))) = dobject_oE4s_Tex_0009E0; -#endif - -#define dobject_oE4s_Tex_000AE0 "__OTR__objects/object_oE4s/object_oE4s_Tex_000AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Tex_000AE0[] = dobject_oE4s_Tex_000AE0; -#else -static const char object_oE4s_Tex_000AE0[] __attribute__((aligned (2))) = dobject_oE4s_Tex_000AE0; -#endif - -#define dobject_oE4s_Tex_000B60 "__OTR__objects/object_oE4s/object_oE4s_Tex_000B60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Tex_000B60[] = dobject_oE4s_Tex_000B60; -#else -static const char object_oE4s_Tex_000B60[] __attribute__((aligned (2))) = dobject_oE4s_Tex_000B60; -#endif - -#define dobject_oE4s_Tex_000BE0 "__OTR__objects/object_oE4s/object_oE4s_Tex_000BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Tex_000BE0[] = dobject_oE4s_Tex_000BE0; -#else -static const char object_oE4s_Tex_000BE0[] __attribute__((aligned (2))) = dobject_oE4s_Tex_000BE0; -#endif - -#define dobject_oE4s_Tex_000CE0 "__OTR__objects/object_oE4s/object_oE4s_Tex_000CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_Tex_000CE0[] = dobject_oE4s_Tex_000CE0; -#else -static const char object_oE4s_Tex_000CE0[] __attribute__((aligned (2))) = dobject_oE4s_Tex_000CE0; -#endif - -#define dobject_oE4s_DL_003970 "__OTR__objects/object_oE4s/object_oE4s_DL_003970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_003970[] = dobject_oE4s_DL_003970; -#else -static const char object_oE4s_DL_003970[] __attribute__((aligned (2))) = dobject_oE4s_DL_003970; -#endif - -#define dobject_oE4s_DL_003B28 "__OTR__objects/object_oE4s/object_oE4s_DL_003B28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_003B28[] = dobject_oE4s_DL_003B28; -#else -static const char object_oE4s_DL_003B28[] __attribute__((aligned (2))) = dobject_oE4s_DL_003B28; -#endif - -#define dobject_oE4s_DL_003C40 "__OTR__objects/object_oE4s/object_oE4s_DL_003C40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_003C40[] = dobject_oE4s_DL_003C40; -#else -static const char object_oE4s_DL_003C40[] __attribute__((aligned (2))) = dobject_oE4s_DL_003C40; -#endif - -#define dobject_oE4s_DL_004230 "__OTR__objects/object_oE4s/object_oE4s_DL_004230" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004230[] = dobject_oE4s_DL_004230; -#else -static const char object_oE4s_DL_004230[] __attribute__((aligned (2))) = dobject_oE4s_DL_004230; -#endif - -#define dobject_oE4s_DL_0043A8 "__OTR__objects/object_oE4s/object_oE4s_DL_0043A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_0043A8[] = dobject_oE4s_DL_0043A8; -#else -static const char object_oE4s_DL_0043A8[] __attribute__((aligned (2))) = dobject_oE4s_DL_0043A8; -#endif - -#define dobject_oE4s_DL_004498 "__OTR__objects/object_oE4s/object_oE4s_DL_004498" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004498[] = dobject_oE4s_DL_004498; -#else -static const char object_oE4s_DL_004498[] __attribute__((aligned (2))) = dobject_oE4s_DL_004498; -#endif - -#define dobject_oE4s_DL_004598 "__OTR__objects/object_oE4s/object_oE4s_DL_004598" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004598[] = dobject_oE4s_DL_004598; -#else -static const char object_oE4s_DL_004598[] __attribute__((aligned (2))) = dobject_oE4s_DL_004598; -#endif - -#define dobject_oE4s_DL_004650 "__OTR__objects/object_oE4s/object_oE4s_DL_004650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004650[] = dobject_oE4s_DL_004650; -#else -static const char object_oE4s_DL_004650[] __attribute__((aligned (2))) = dobject_oE4s_DL_004650; -#endif - -#define dobject_oE4s_DL_004708 "__OTR__objects/object_oE4s/object_oE4s_DL_004708" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004708[] = dobject_oE4s_DL_004708; -#else -static const char object_oE4s_DL_004708[] __attribute__((aligned (2))) = dobject_oE4s_DL_004708; -#endif - -#define dobject_oE4s_DL_004828 "__OTR__objects/object_oE4s/object_oE4s_DL_004828" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004828[] = dobject_oE4s_DL_004828; -#else -static const char object_oE4s_DL_004828[] __attribute__((aligned (2))) = dobject_oE4s_DL_004828; -#endif - -#define dobject_oE4s_DL_0049A0 "__OTR__objects/object_oE4s/object_oE4s_DL_0049A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_0049A0[] = dobject_oE4s_DL_0049A0; -#else -static const char object_oE4s_DL_0049A0[] __attribute__((aligned (2))) = dobject_oE4s_DL_0049A0; -#endif - -#define dobject_oE4s_DL_004A90 "__OTR__objects/object_oE4s/object_oE4s_DL_004A90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004A90[] = dobject_oE4s_DL_004A90; -#else -static const char object_oE4s_DL_004A90[] __attribute__((aligned (2))) = dobject_oE4s_DL_004A90; -#endif - -#define dobject_oE4s_DL_004B90 "__OTR__objects/object_oE4s/object_oE4s_DL_004B90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004B90[] = dobject_oE4s_DL_004B90; -#else -static const char object_oE4s_DL_004B90[] __attribute__((aligned (2))) = dobject_oE4s_DL_004B90; -#endif - -#define dobject_oE4s_DL_004C48 "__OTR__objects/object_oE4s/object_oE4s_DL_004C48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004C48[] = dobject_oE4s_DL_004C48; -#else -static const char object_oE4s_DL_004C48[] __attribute__((aligned (2))) = dobject_oE4s_DL_004C48; -#endif - -#define dobject_oE4s_DL_004D00 "__OTR__objects/object_oE4s/object_oE4s_DL_004D00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4s_DL_004D00[] = dobject_oE4s_DL_004D00; -#else -static const char object_oE4s_DL_004D00[] __attribute__((aligned (2))) = dobject_oE4s_DL_004D00; -#endif - -#define dobject_oE4sTex_0002A0 "__OTR__objects/object_oE4s/object_oE4sTex_0002A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4sTex_0002A0[] = dobject_oE4sTex_0002A0; -#else -static const char object_oE4sTex_0002A0[] __attribute__((aligned (2))) = dobject_oE4sTex_0002A0; -#endif - -#define dobject_oE4sTex_0003A0 "__OTR__objects/object_oE4s/object_oE4sTex_0003A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE4sTex_0003A0[] = dobject_oE4sTex_0003A0; -#else -static const char object_oE4sTex_0003A0[] __attribute__((aligned (2))) = dobject_oE4sTex_0003A0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE4s_Anim_00007C "__OTR__objects/object_oE4s/object_oE4s_Anim_00007C" +static const ALIGN_ASSET(2) char object_oE4s_Anim_00007C[] = dobject_oE4s_Anim_00007C; + +#define dobject_oE4s_Skel_000190 "__OTR__objects/object_oE4s/object_oE4s_Skel_000190" +static const ALIGN_ASSET(2) char object_oE4s_Skel_000190[] = dobject_oE4s_Skel_000190; + +#define dobject_oE4s_TLUT_0001A8 "__OTR__objects/object_oE4s/object_oE4s_TLUT_0001A8" +static const ALIGN_ASSET(2) char object_oE4s_TLUT_0001A8[] = dobject_oE4s_TLUT_0001A8; + +#define dobject_oE4s_Tex_0004A0 "__OTR__objects/object_oE4s/object_oE4s_Tex_0004A0" +static const ALIGN_ASSET(2) char object_oE4s_Tex_0004A0[] = dobject_oE4s_Tex_0004A0; + +#define dobject_oE4s_Tex_0004E0 "__OTR__objects/object_oE4s/object_oE4s_Tex_0004E0" +static const ALIGN_ASSET(2) char object_oE4s_Tex_0004E0[] = dobject_oE4s_Tex_0004E0; + +#define dobject_oE4s_Tex_0008E0 "__OTR__objects/object_oE4s/object_oE4s_Tex_0008E0" +static const ALIGN_ASSET(2) char object_oE4s_Tex_0008E0[] = dobject_oE4s_Tex_0008E0; + +#define dobject_oE4s_Tex_0009E0 "__OTR__objects/object_oE4s/object_oE4s_Tex_0009E0" +static const ALIGN_ASSET(2) char object_oE4s_Tex_0009E0[] = dobject_oE4s_Tex_0009E0; + +#define dobject_oE4s_Tex_000AE0 "__OTR__objects/object_oE4s/object_oE4s_Tex_000AE0" +static const ALIGN_ASSET(2) char object_oE4s_Tex_000AE0[] = dobject_oE4s_Tex_000AE0; + +#define dobject_oE4s_Tex_000B60 "__OTR__objects/object_oE4s/object_oE4s_Tex_000B60" +static const ALIGN_ASSET(2) char object_oE4s_Tex_000B60[] = dobject_oE4s_Tex_000B60; + +#define dobject_oE4s_Tex_000BE0 "__OTR__objects/object_oE4s/object_oE4s_Tex_000BE0" +static const ALIGN_ASSET(2) char object_oE4s_Tex_000BE0[] = dobject_oE4s_Tex_000BE0; + +#define dobject_oE4s_Tex_000CE0 "__OTR__objects/object_oE4s/object_oE4s_Tex_000CE0" +static const ALIGN_ASSET(2) char object_oE4s_Tex_000CE0[] = dobject_oE4s_Tex_000CE0; + +#define dobject_oE4s_DL_003970 "__OTR__objects/object_oE4s/object_oE4s_DL_003970" +static const ALIGN_ASSET(2) char object_oE4s_DL_003970[] = dobject_oE4s_DL_003970; + +#define dobject_oE4s_DL_003B28 "__OTR__objects/object_oE4s/object_oE4s_DL_003B28" +static const ALIGN_ASSET(2) char object_oE4s_DL_003B28[] = dobject_oE4s_DL_003B28; + +#define dobject_oE4s_DL_003C40 "__OTR__objects/object_oE4s/object_oE4s_DL_003C40" +static const ALIGN_ASSET(2) char object_oE4s_DL_003C40[] = dobject_oE4s_DL_003C40; + +#define dobject_oE4s_DL_004230 "__OTR__objects/object_oE4s/object_oE4s_DL_004230" +static const ALIGN_ASSET(2) char object_oE4s_DL_004230[] = dobject_oE4s_DL_004230; + +#define dobject_oE4s_DL_0043A8 "__OTR__objects/object_oE4s/object_oE4s_DL_0043A8" +static const ALIGN_ASSET(2) char object_oE4s_DL_0043A8[] = dobject_oE4s_DL_0043A8; + +#define dobject_oE4s_DL_004498 "__OTR__objects/object_oE4s/object_oE4s_DL_004498" +static const ALIGN_ASSET(2) char object_oE4s_DL_004498[] = dobject_oE4s_DL_004498; + +#define dobject_oE4s_DL_004598 "__OTR__objects/object_oE4s/object_oE4s_DL_004598" +static const ALIGN_ASSET(2) char object_oE4s_DL_004598[] = dobject_oE4s_DL_004598; + +#define dobject_oE4s_DL_004650 "__OTR__objects/object_oE4s/object_oE4s_DL_004650" +static const ALIGN_ASSET(2) char object_oE4s_DL_004650[] = dobject_oE4s_DL_004650; + +#define dobject_oE4s_DL_004708 "__OTR__objects/object_oE4s/object_oE4s_DL_004708" +static const ALIGN_ASSET(2) char object_oE4s_DL_004708[] = dobject_oE4s_DL_004708; + +#define dobject_oE4s_DL_004828 "__OTR__objects/object_oE4s/object_oE4s_DL_004828" +static const ALIGN_ASSET(2) char object_oE4s_DL_004828[] = dobject_oE4s_DL_004828; + +#define dobject_oE4s_DL_0049A0 "__OTR__objects/object_oE4s/object_oE4s_DL_0049A0" +static const ALIGN_ASSET(2) char object_oE4s_DL_0049A0[] = dobject_oE4s_DL_0049A0; + +#define dobject_oE4s_DL_004A90 "__OTR__objects/object_oE4s/object_oE4s_DL_004A90" +static const ALIGN_ASSET(2) char object_oE4s_DL_004A90[] = dobject_oE4s_DL_004A90; + +#define dobject_oE4s_DL_004B90 "__OTR__objects/object_oE4s/object_oE4s_DL_004B90" +static const ALIGN_ASSET(2) char object_oE4s_DL_004B90[] = dobject_oE4s_DL_004B90; + +#define dobject_oE4s_DL_004C48 "__OTR__objects/object_oE4s/object_oE4s_DL_004C48" +static const ALIGN_ASSET(2) char object_oE4s_DL_004C48[] = dobject_oE4s_DL_004C48; + +#define dobject_oE4s_DL_004D00 "__OTR__objects/object_oE4s/object_oE4s_DL_004D00" +static const ALIGN_ASSET(2) char object_oE4s_DL_004D00[] = dobject_oE4s_DL_004D00; + +#define dobject_oE4sTex_0002A0 "__OTR__objects/object_oE4s/object_oE4sTex_0002A0" +static const ALIGN_ASSET(2) char object_oE4sTex_0002A0[] = dobject_oE4sTex_0002A0; + +#define dobject_oE4sTex_0003A0 "__OTR__objects/object_oE4s/object_oE4sTex_0003A0" +static const ALIGN_ASSET(2) char object_oE4sTex_0003A0[] = dobject_oE4sTex_0003A0; \ No newline at end of file diff --git a/soh/assets/objects/object_oE5/object_oE5.h b/soh/assets/objects/object_oE5/object_oE5.h index 3ccc8e47b..255682887 100644 --- a/soh/assets/objects/object_oE5/object_oE5.h +++ b/soh/assets/objects/object_oE5/object_oE5.h @@ -1,149 +1,66 @@ #pragma once -#define dobject_oE5_DL_0024E8 "__OTR__objects/object_oE5/object_oE5_DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_DL_0024E8[] = dobject_oE5_DL_0024E8; -#else -static const char object_oE5_DL_0024E8[] __attribute__((aligned (2))) = dobject_oE5_DL_0024E8; -#endif - -#define dobject_oE5_DL_002690 "__OTR__objects/object_oE5/object_oE5_DL_002690" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_DL_002690[] = dobject_oE5_DL_002690; -#else -static const char object_oE5_DL_002690[] __attribute__((aligned (2))) = dobject_oE5_DL_002690; -#endif - -#define dobject_oE5_DL_002C60 "__OTR__objects/object_oE5/object_oE5_DL_002C60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_DL_002C60[] = dobject_oE5_DL_002C60; -#else -static const char object_oE5_DL_002C60[] __attribute__((aligned (2))) = dobject_oE5_DL_002C60; -#endif - -#define dobject_oE5_DL_002E10 "__OTR__objects/object_oE5/object_oE5_DL_002E10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_DL_002E10[] = dobject_oE5_DL_002E10; -#else -static const char object_oE5_DL_002E10[] __attribute__((aligned (2))) = dobject_oE5_DL_002E10; -#endif - -#define dobject_oE5_DL_002F00 "__OTR__objects/object_oE5/object_oE5_DL_002F00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_DL_002F00[] = dobject_oE5_DL_002F00; -#else -static const char object_oE5_DL_002F00[] __attribute__((aligned (2))) = dobject_oE5_DL_002F00; -#endif - -#define dobject_oE5_DL_003050 "__OTR__objects/object_oE5/object_oE5_DL_003050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_DL_003050[] = dobject_oE5_DL_003050; -#else -static const char object_oE5_DL_003050[] __attribute__((aligned (2))) = dobject_oE5_DL_003050; -#endif - -#define dobject_oE5_DL_003200 "__OTR__objects/object_oE5/object_oE5_DL_003200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_DL_003200[] = dobject_oE5_DL_003200; -#else -static const char object_oE5_DL_003200[] __attribute__((aligned (2))) = dobject_oE5_DL_003200; -#endif - -#define dobject_oE5_DL_0032F0 "__OTR__objects/object_oE5/object_oE5_DL_0032F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_DL_0032F0[] = dobject_oE5_DL_0032F0; -#else -static const char object_oE5_DL_0032F0[] __attribute__((aligned (2))) = dobject_oE5_DL_0032F0; -#endif - -#define dobject_oE5_TLUT_003440 "__OTR__objects/object_oE5/object_oE5_TLUT_003440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_TLUT_003440[] = dobject_oE5_TLUT_003440; -#else -static const char object_oE5_TLUT_003440[] __attribute__((aligned (2))) = dobject_oE5_TLUT_003440; -#endif - -#define dobject_oE5_Tex_003640 "__OTR__objects/object_oE5/object_oE5_Tex_003640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_003640[] = dobject_oE5_Tex_003640; -#else -static const char object_oE5_Tex_003640[] __attribute__((aligned (2))) = dobject_oE5_Tex_003640; -#endif - -#define dobject_oE5_Blob_003A40 "__OTR__objects/object_oE5/object_oE5_Blob_003A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Blob_003A40[] = dobject_oE5_Blob_003A40; -#else -static const char object_oE5_Blob_003A40[] __attribute__((aligned (2))) = dobject_oE5_Blob_003A40; -#endif - -#define dobject_oE5_TLUT_004240 "__OTR__objects/object_oE5/object_oE5_TLUT_004240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_TLUT_004240[] = dobject_oE5_TLUT_004240; -#else -static const char object_oE5_TLUT_004240[] __attribute__((aligned (2))) = dobject_oE5_TLUT_004240; -#endif - -#define dobject_oE5_Tex_004440 "__OTR__objects/object_oE5/object_oE5_Tex_004440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_004440[] = dobject_oE5_Tex_004440; -#else -static const char object_oE5_Tex_004440[] __attribute__((aligned (2))) = dobject_oE5_Tex_004440; -#endif - -#define dobject_oE5_Tex_004480 "__OTR__objects/object_oE5/object_oE5_Tex_004480" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_004480[] = dobject_oE5_Tex_004480; -#else -static const char object_oE5_Tex_004480[] __attribute__((aligned (2))) = dobject_oE5_Tex_004480; -#endif - -#define dobject_oE5_Tex_004580 "__OTR__objects/object_oE5/object_oE5_Tex_004580" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_004580[] = dobject_oE5_Tex_004580; -#else -static const char object_oE5_Tex_004580[] __attribute__((aligned (2))) = dobject_oE5_Tex_004580; -#endif - -#define dobject_oE5_Tex_004680 "__OTR__objects/object_oE5/object_oE5_Tex_004680" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_004680[] = dobject_oE5_Tex_004680; -#else -static const char object_oE5_Tex_004680[] __attribute__((aligned (2))) = dobject_oE5_Tex_004680; -#endif - -#define dobject_oE5_Tex_004A80 "__OTR__objects/object_oE5/object_oE5_Tex_004A80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_004A80[] = dobject_oE5_Tex_004A80; -#else -static const char object_oE5_Tex_004A80[] __attribute__((aligned (2))) = dobject_oE5_Tex_004A80; -#endif - -#define dobject_oE5_Tex_004B80 "__OTR__objects/object_oE5/object_oE5_Tex_004B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_004B80[] = dobject_oE5_Tex_004B80; -#else -static const char object_oE5_Tex_004B80[] __attribute__((aligned (2))) = dobject_oE5_Tex_004B80; -#endif - -#define dobject_oE5_Tex_004BC0 "__OTR__objects/object_oE5/object_oE5_Tex_004BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_004BC0[] = dobject_oE5_Tex_004BC0; -#else -static const char object_oE5_Tex_004BC0[] __attribute__((aligned (2))) = dobject_oE5_Tex_004BC0; -#endif - -#define dobject_oE5_Tex_0053C0 "__OTR__objects/object_oE5/object_oE5_Tex_0053C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_0053C0[] = dobject_oE5_Tex_0053C0; -#else -static const char object_oE5_Tex_0053C0[] __attribute__((aligned (2))) = dobject_oE5_Tex_0053C0; -#endif - -#define dobject_oE5_Tex_0054C0 "__OTR__objects/object_oE5/object_oE5_Tex_0054C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE5_Tex_0054C0[] = dobject_oE5_Tex_0054C0; -#else -static const char object_oE5_Tex_0054C0[] __attribute__((aligned (2))) = dobject_oE5_Tex_0054C0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE5_DL_0024E8 "__OTR__objects/object_oE5/object_oE5_DL_0024E8" +static const ALIGN_ASSET(2) char object_oE5_DL_0024E8[] = dobject_oE5_DL_0024E8; + +#define dobject_oE5_DL_002690 "__OTR__objects/object_oE5/object_oE5_DL_002690" +static const ALIGN_ASSET(2) char object_oE5_DL_002690[] = dobject_oE5_DL_002690; + +#define dobject_oE5_DL_002C60 "__OTR__objects/object_oE5/object_oE5_DL_002C60" +static const ALIGN_ASSET(2) char object_oE5_DL_002C60[] = dobject_oE5_DL_002C60; + +#define dobject_oE5_DL_002E10 "__OTR__objects/object_oE5/object_oE5_DL_002E10" +static const ALIGN_ASSET(2) char object_oE5_DL_002E10[] = dobject_oE5_DL_002E10; + +#define dobject_oE5_DL_002F00 "__OTR__objects/object_oE5/object_oE5_DL_002F00" +static const ALIGN_ASSET(2) char object_oE5_DL_002F00[] = dobject_oE5_DL_002F00; + +#define dobject_oE5_DL_003050 "__OTR__objects/object_oE5/object_oE5_DL_003050" +static const ALIGN_ASSET(2) char object_oE5_DL_003050[] = dobject_oE5_DL_003050; + +#define dobject_oE5_DL_003200 "__OTR__objects/object_oE5/object_oE5_DL_003200" +static const ALIGN_ASSET(2) char object_oE5_DL_003200[] = dobject_oE5_DL_003200; + +#define dobject_oE5_DL_0032F0 "__OTR__objects/object_oE5/object_oE5_DL_0032F0" +static const ALIGN_ASSET(2) char object_oE5_DL_0032F0[] = dobject_oE5_DL_0032F0; + +#define dobject_oE5_TLUT_003440 "__OTR__objects/object_oE5/object_oE5_TLUT_003440" +static const ALIGN_ASSET(2) char object_oE5_TLUT_003440[] = dobject_oE5_TLUT_003440; + +#define dobject_oE5_Tex_003640 "__OTR__objects/object_oE5/object_oE5_Tex_003640" +static const ALIGN_ASSET(2) char object_oE5_Tex_003640[] = dobject_oE5_Tex_003640; + +#define dobject_oE5_Blob_003A40 "__OTR__objects/object_oE5/object_oE5_Blob_003A40" +static const ALIGN_ASSET(2) char object_oE5_Blob_003A40[] = dobject_oE5_Blob_003A40; + +#define dobject_oE5_TLUT_004240 "__OTR__objects/object_oE5/object_oE5_TLUT_004240" +static const ALIGN_ASSET(2) char object_oE5_TLUT_004240[] = dobject_oE5_TLUT_004240; + +#define dobject_oE5_Tex_004440 "__OTR__objects/object_oE5/object_oE5_Tex_004440" +static const ALIGN_ASSET(2) char object_oE5_Tex_004440[] = dobject_oE5_Tex_004440; + +#define dobject_oE5_Tex_004480 "__OTR__objects/object_oE5/object_oE5_Tex_004480" +static const ALIGN_ASSET(2) char object_oE5_Tex_004480[] = dobject_oE5_Tex_004480; + +#define dobject_oE5_Tex_004580 "__OTR__objects/object_oE5/object_oE5_Tex_004580" +static const ALIGN_ASSET(2) char object_oE5_Tex_004580[] = dobject_oE5_Tex_004580; + +#define dobject_oE5_Tex_004680 "__OTR__objects/object_oE5/object_oE5_Tex_004680" +static const ALIGN_ASSET(2) char object_oE5_Tex_004680[] = dobject_oE5_Tex_004680; + +#define dobject_oE5_Tex_004A80 "__OTR__objects/object_oE5/object_oE5_Tex_004A80" +static const ALIGN_ASSET(2) char object_oE5_Tex_004A80[] = dobject_oE5_Tex_004A80; + +#define dobject_oE5_Tex_004B80 "__OTR__objects/object_oE5/object_oE5_Tex_004B80" +static const ALIGN_ASSET(2) char object_oE5_Tex_004B80[] = dobject_oE5_Tex_004B80; + +#define dobject_oE5_Tex_004BC0 "__OTR__objects/object_oE5/object_oE5_Tex_004BC0" +static const ALIGN_ASSET(2) char object_oE5_Tex_004BC0[] = dobject_oE5_Tex_004BC0; + +#define dobject_oE5_Tex_0053C0 "__OTR__objects/object_oE5/object_oE5_Tex_0053C0" +static const ALIGN_ASSET(2) char object_oE5_Tex_0053C0[] = dobject_oE5_Tex_0053C0; + +#define dobject_oE5_Tex_0054C0 "__OTR__objects/object_oE5/object_oE5_Tex_0054C0" +static const ALIGN_ASSET(2) char object_oE5_Tex_0054C0[] = dobject_oE5_Tex_0054C0; \ No newline at end of file diff --git a/soh/assets/objects/object_oE6/object_oE6.h b/soh/assets/objects/object_oE6/object_oE6.h index d94cc66e3..4824908d0 100644 --- a/soh/assets/objects/object_oE6/object_oE6.h +++ b/soh/assets/objects/object_oE6/object_oE6.h @@ -1,79 +1,36 @@ #pragma once -#define dobject_oE6_DL_000AE0 "__OTR__objects/object_oE6/object_oE6_DL_000AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_DL_000AE0[] = dobject_oE6_DL_000AE0; -#else -static const char object_oE6_DL_000AE0[] __attribute__((aligned (2))) = dobject_oE6_DL_000AE0; -#endif - -#define dobject_oE6_TLUT_000FD0 "__OTR__objects/object_oE6/object_oE6_TLUT_000FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_TLUT_000FD0[] = dobject_oE6_TLUT_000FD0; -#else -static const char object_oE6_TLUT_000FD0[] __attribute__((aligned (2))) = dobject_oE6_TLUT_000FD0; -#endif - -#define dobject_oE6_Tex_0011D0 "__OTR__objects/object_oE6/object_oE6_Tex_0011D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_Tex_0011D0[] = dobject_oE6_Tex_0011D0; -#else -static const char object_oE6_Tex_0011D0[] __attribute__((aligned (2))) = dobject_oE6_Tex_0011D0; -#endif - -#define dobject_oE6_Blob_0015D0 "__OTR__objects/object_oE6/object_oE6_Blob_0015D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_Blob_0015D0[] = dobject_oE6_Blob_0015D0; -#else -static const char object_oE6_Blob_0015D0[] __attribute__((aligned (2))) = dobject_oE6_Blob_0015D0; -#endif - -#define dobject_oE6_TLUT_001DD0 "__OTR__objects/object_oE6/object_oE6_TLUT_001DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_TLUT_001DD0[] = dobject_oE6_TLUT_001DD0; -#else -static const char object_oE6_TLUT_001DD0[] __attribute__((aligned (2))) = dobject_oE6_TLUT_001DD0; -#endif - -#define dobject_oE6_Tex_001FD0 "__OTR__objects/object_oE6/object_oE6_Tex_001FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_Tex_001FD0[] = dobject_oE6_Tex_001FD0; -#else -static const char object_oE6_Tex_001FD0[] __attribute__((aligned (2))) = dobject_oE6_Tex_001FD0; -#endif - -#define dobject_oE6_Tex_002010 "__OTR__objects/object_oE6/object_oE6_Tex_002010" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_Tex_002010[] = dobject_oE6_Tex_002010; -#else -static const char object_oE6_Tex_002010[] __attribute__((aligned (2))) = dobject_oE6_Tex_002010; -#endif - -#define dobject_oE6_Tex_002110 "__OTR__objects/object_oE6/object_oE6_Tex_002110" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_Tex_002110[] = dobject_oE6_Tex_002110; -#else -static const char object_oE6_Tex_002110[] __attribute__((aligned (2))) = dobject_oE6_Tex_002110; -#endif - -#define dobject_oE6_Tex_002210 "__OTR__objects/object_oE6/object_oE6_Tex_002210" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_Tex_002210[] = dobject_oE6_Tex_002210; -#else -static const char object_oE6_Tex_002210[] __attribute__((aligned (2))) = dobject_oE6_Tex_002210; -#endif - -#define dobject_oE6_Tex_002A10 "__OTR__objects/object_oE6/object_oE6_Tex_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_Tex_002A10[] = dobject_oE6_Tex_002A10; -#else -static const char object_oE6_Tex_002A10[] __attribute__((aligned (2))) = dobject_oE6_Tex_002A10; -#endif - -#define dobject_oE6_Tex_002E10 "__OTR__objects/object_oE6/object_oE6_Tex_002E10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE6_Tex_002E10[] = dobject_oE6_Tex_002E10; -#else -static const char object_oE6_Tex_002E10[] __attribute__((aligned (2))) = dobject_oE6_Tex_002E10; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE6_DL_000AE0 "__OTR__objects/object_oE6/object_oE6_DL_000AE0" +static const ALIGN_ASSET(2) char object_oE6_DL_000AE0[] = dobject_oE6_DL_000AE0; + +#define dobject_oE6_TLUT_000FD0 "__OTR__objects/object_oE6/object_oE6_TLUT_000FD0" +static const ALIGN_ASSET(2) char object_oE6_TLUT_000FD0[] = dobject_oE6_TLUT_000FD0; + +#define dobject_oE6_Tex_0011D0 "__OTR__objects/object_oE6/object_oE6_Tex_0011D0" +static const ALIGN_ASSET(2) char object_oE6_Tex_0011D0[] = dobject_oE6_Tex_0011D0; + +#define dobject_oE6_Blob_0015D0 "__OTR__objects/object_oE6/object_oE6_Blob_0015D0" +static const ALIGN_ASSET(2) char object_oE6_Blob_0015D0[] = dobject_oE6_Blob_0015D0; + +#define dobject_oE6_TLUT_001DD0 "__OTR__objects/object_oE6/object_oE6_TLUT_001DD0" +static const ALIGN_ASSET(2) char object_oE6_TLUT_001DD0[] = dobject_oE6_TLUT_001DD0; + +#define dobject_oE6_Tex_001FD0 "__OTR__objects/object_oE6/object_oE6_Tex_001FD0" +static const ALIGN_ASSET(2) char object_oE6_Tex_001FD0[] = dobject_oE6_Tex_001FD0; + +#define dobject_oE6_Tex_002010 "__OTR__objects/object_oE6/object_oE6_Tex_002010" +static const ALIGN_ASSET(2) char object_oE6_Tex_002010[] = dobject_oE6_Tex_002010; + +#define dobject_oE6_Tex_002110 "__OTR__objects/object_oE6/object_oE6_Tex_002110" +static const ALIGN_ASSET(2) char object_oE6_Tex_002110[] = dobject_oE6_Tex_002110; + +#define dobject_oE6_Tex_002210 "__OTR__objects/object_oE6/object_oE6_Tex_002210" +static const ALIGN_ASSET(2) char object_oE6_Tex_002210[] = dobject_oE6_Tex_002210; + +#define dobject_oE6_Tex_002A10 "__OTR__objects/object_oE6/object_oE6_Tex_002A10" +static const ALIGN_ASSET(2) char object_oE6_Tex_002A10[] = dobject_oE6_Tex_002A10; + +#define dobject_oE6_Tex_002E10 "__OTR__objects/object_oE6/object_oE6_Tex_002E10" +static const ALIGN_ASSET(2) char object_oE6_Tex_002E10[] = dobject_oE6_Tex_002E10; \ No newline at end of file diff --git a/soh/assets/objects/object_oE7/object_oE7.h b/soh/assets/objects/object_oE7/object_oE7.h index f170dd32e..21add2f91 100644 --- a/soh/assets/objects/object_oE7/object_oE7.h +++ b/soh/assets/objects/object_oE7/object_oE7.h @@ -1,72 +1,33 @@ #pragma once -#define dobject_oE7_DL_0006B0 "__OTR__objects/object_oE7/object_oE7_DL_0006B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_DL_0006B0[] = dobject_oE7_DL_0006B0; -#else -static const char object_oE7_DL_0006B0[] __attribute__((aligned (2))) = dobject_oE7_DL_0006B0; -#endif - -#define dobject_oE7_TLUT_000B18 "__OTR__objects/object_oE7/object_oE7_TLUT_000B18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_TLUT_000B18[] = dobject_oE7_TLUT_000B18; -#else -static const char object_oE7_TLUT_000B18[] __attribute__((aligned (2))) = dobject_oE7_TLUT_000B18; -#endif - -#define dobject_oE7_Tex_000D18 "__OTR__objects/object_oE7/object_oE7_Tex_000D18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_Tex_000D18[] = dobject_oE7_Tex_000D18; -#else -static const char object_oE7_Tex_000D18[] __attribute__((aligned (2))) = dobject_oE7_Tex_000D18; -#endif - -#define dobject_oE7_Tex_001118 "__OTR__objects/object_oE7/object_oE7_Tex_001118" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_Tex_001118[] = dobject_oE7_Tex_001118; -#else -static const char object_oE7_Tex_001118[] __attribute__((aligned (2))) = dobject_oE7_Tex_001118; -#endif - -#define dobject_oE7_Tex_001158 "__OTR__objects/object_oE7/object_oE7_Tex_001158" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_Tex_001158[] = dobject_oE7_Tex_001158; -#else -static const char object_oE7_Tex_001158[] __attribute__((aligned (2))) = dobject_oE7_Tex_001158; -#endif - -#define dobject_oE7_TLUT_001258 "__OTR__objects/object_oE7/object_oE7_TLUT_001258" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_TLUT_001258[] = dobject_oE7_TLUT_001258; -#else -static const char object_oE7_TLUT_001258[] __attribute__((aligned (2))) = dobject_oE7_TLUT_001258; -#endif - -#define dobject_oE7_Tex_001458 "__OTR__objects/object_oE7/object_oE7_Tex_001458" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_Tex_001458[] = dobject_oE7_Tex_001458; -#else -static const char object_oE7_Tex_001458[] __attribute__((aligned (2))) = dobject_oE7_Tex_001458; -#endif - -#define dobject_oE7_Blob_001858 "__OTR__objects/object_oE7/object_oE7_Blob_001858" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_Blob_001858[] = dobject_oE7_Blob_001858; -#else -static const char object_oE7_Blob_001858[] __attribute__((aligned (2))) = dobject_oE7_Blob_001858; -#endif - -#define dobject_oE7_Tex_002058 "__OTR__objects/object_oE7/object_oE7_Tex_002058" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_Tex_002058[] = dobject_oE7_Tex_002058; -#else -static const char object_oE7_Tex_002058[] __attribute__((aligned (2))) = dobject_oE7_Tex_002058; -#endif - -#define dobject_oE7_Tex_002858 "__OTR__objects/object_oE7/object_oE7_Tex_002858" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE7_Tex_002858[] = dobject_oE7_Tex_002858; -#else -static const char object_oE7_Tex_002858[] __attribute__((aligned (2))) = dobject_oE7_Tex_002858; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE7_DL_0006B0 "__OTR__objects/object_oE7/object_oE7_DL_0006B0" +static const ALIGN_ASSET(2) char object_oE7_DL_0006B0[] = dobject_oE7_DL_0006B0; + +#define dobject_oE7_TLUT_000B18 "__OTR__objects/object_oE7/object_oE7_TLUT_000B18" +static const ALIGN_ASSET(2) char object_oE7_TLUT_000B18[] = dobject_oE7_TLUT_000B18; + +#define dobject_oE7_Tex_000D18 "__OTR__objects/object_oE7/object_oE7_Tex_000D18" +static const ALIGN_ASSET(2) char object_oE7_Tex_000D18[] = dobject_oE7_Tex_000D18; + +#define dobject_oE7_Tex_001118 "__OTR__objects/object_oE7/object_oE7_Tex_001118" +static const ALIGN_ASSET(2) char object_oE7_Tex_001118[] = dobject_oE7_Tex_001118; + +#define dobject_oE7_Tex_001158 "__OTR__objects/object_oE7/object_oE7_Tex_001158" +static const ALIGN_ASSET(2) char object_oE7_Tex_001158[] = dobject_oE7_Tex_001158; + +#define dobject_oE7_TLUT_001258 "__OTR__objects/object_oE7/object_oE7_TLUT_001258" +static const ALIGN_ASSET(2) char object_oE7_TLUT_001258[] = dobject_oE7_TLUT_001258; + +#define dobject_oE7_Tex_001458 "__OTR__objects/object_oE7/object_oE7_Tex_001458" +static const ALIGN_ASSET(2) char object_oE7_Tex_001458[] = dobject_oE7_Tex_001458; + +#define dobject_oE7_Blob_001858 "__OTR__objects/object_oE7/object_oE7_Blob_001858" +static const ALIGN_ASSET(2) char object_oE7_Blob_001858[] = dobject_oE7_Blob_001858; + +#define dobject_oE7_Tex_002058 "__OTR__objects/object_oE7/object_oE7_Tex_002058" +static const ALIGN_ASSET(2) char object_oE7_Tex_002058[] = dobject_oE7_Tex_002058; + +#define dobject_oE7_Tex_002858 "__OTR__objects/object_oE7/object_oE7_Tex_002858" +static const ALIGN_ASSET(2) char object_oE7_Tex_002858[] = dobject_oE7_Tex_002858; \ No newline at end of file diff --git a/soh/assets/objects/object_oE8/object_oE8.h b/soh/assets/objects/object_oE8/object_oE8.h index 7f3c66c5b..76ac8b750 100644 --- a/soh/assets/objects/object_oE8/object_oE8.h +++ b/soh/assets/objects/object_oE8/object_oE8.h @@ -1,79 +1,36 @@ #pragma once -#define dobject_oE8_DL_000CA0 "__OTR__objects/object_oE8/object_oE8_DL_000CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_DL_000CA0[] = dobject_oE8_DL_000CA0; -#else -static const char object_oE8_DL_000CA0[] __attribute__((aligned (2))) = dobject_oE8_DL_000CA0; -#endif - -#define dobject_oE8_TLUT_001248 "__OTR__objects/object_oE8/object_oE8_TLUT_001248" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_TLUT_001248[] = dobject_oE8_TLUT_001248; -#else -static const char object_oE8_TLUT_001248[] __attribute__((aligned (2))) = dobject_oE8_TLUT_001248; -#endif - -#define dobject_oE8_Tex_001448 "__OTR__objects/object_oE8/object_oE8_Tex_001448" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_Tex_001448[] = dobject_oE8_Tex_001448; -#else -static const char object_oE8_Tex_001448[] __attribute__((aligned (2))) = dobject_oE8_Tex_001448; -#endif - -#define dobject_oE8_Blob_001848 "__OTR__objects/object_oE8/object_oE8_Blob_001848" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_Blob_001848[] = dobject_oE8_Blob_001848; -#else -static const char object_oE8_Blob_001848[] __attribute__((aligned (2))) = dobject_oE8_Blob_001848; -#endif - -#define dobject_oE8_TLUT_002048 "__OTR__objects/object_oE8/object_oE8_TLUT_002048" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_TLUT_002048[] = dobject_oE8_TLUT_002048; -#else -static const char object_oE8_TLUT_002048[] __attribute__((aligned (2))) = dobject_oE8_TLUT_002048; -#endif - -#define dobject_oE8_Tex_002248 "__OTR__objects/object_oE8/object_oE8_Tex_002248" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_Tex_002248[] = dobject_oE8_Tex_002248; -#else -static const char object_oE8_Tex_002248[] __attribute__((aligned (2))) = dobject_oE8_Tex_002248; -#endif - -#define dobject_oE8_Tex_002288 "__OTR__objects/object_oE8/object_oE8_Tex_002288" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_Tex_002288[] = dobject_oE8_Tex_002288; -#else -static const char object_oE8_Tex_002288[] __attribute__((aligned (2))) = dobject_oE8_Tex_002288; -#endif - -#define dobject_oE8_Tex_002388 "__OTR__objects/object_oE8/object_oE8_Tex_002388" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_Tex_002388[] = dobject_oE8_Tex_002388; -#else -static const char object_oE8_Tex_002388[] __attribute__((aligned (2))) = dobject_oE8_Tex_002388; -#endif - -#define dobject_oE8_Tex_002788 "__OTR__objects/object_oE8/object_oE8_Tex_002788" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_Tex_002788[] = dobject_oE8_Tex_002788; -#else -static const char object_oE8_Tex_002788[] __attribute__((aligned (2))) = dobject_oE8_Tex_002788; -#endif - -#define dobject_oE8_Tex_002B88 "__OTR__objects/object_oE8/object_oE8_Tex_002B88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_Tex_002B88[] = dobject_oE8_Tex_002B88; -#else -static const char object_oE8_Tex_002B88[] __attribute__((aligned (2))) = dobject_oE8_Tex_002B88; -#endif - -#define dobject_oE8_Tex_002BC8 "__OTR__objects/object_oE8/object_oE8_Tex_002BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE8_Tex_002BC8[] = dobject_oE8_Tex_002BC8; -#else -static const char object_oE8_Tex_002BC8[] __attribute__((aligned (2))) = dobject_oE8_Tex_002BC8; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE8_DL_000CA0 "__OTR__objects/object_oE8/object_oE8_DL_000CA0" +static const ALIGN_ASSET(2) char object_oE8_DL_000CA0[] = dobject_oE8_DL_000CA0; + +#define dobject_oE8_TLUT_001248 "__OTR__objects/object_oE8/object_oE8_TLUT_001248" +static const ALIGN_ASSET(2) char object_oE8_TLUT_001248[] = dobject_oE8_TLUT_001248; + +#define dobject_oE8_Tex_001448 "__OTR__objects/object_oE8/object_oE8_Tex_001448" +static const ALIGN_ASSET(2) char object_oE8_Tex_001448[] = dobject_oE8_Tex_001448; + +#define dobject_oE8_Blob_001848 "__OTR__objects/object_oE8/object_oE8_Blob_001848" +static const ALIGN_ASSET(2) char object_oE8_Blob_001848[] = dobject_oE8_Blob_001848; + +#define dobject_oE8_TLUT_002048 "__OTR__objects/object_oE8/object_oE8_TLUT_002048" +static const ALIGN_ASSET(2) char object_oE8_TLUT_002048[] = dobject_oE8_TLUT_002048; + +#define dobject_oE8_Tex_002248 "__OTR__objects/object_oE8/object_oE8_Tex_002248" +static const ALIGN_ASSET(2) char object_oE8_Tex_002248[] = dobject_oE8_Tex_002248; + +#define dobject_oE8_Tex_002288 "__OTR__objects/object_oE8/object_oE8_Tex_002288" +static const ALIGN_ASSET(2) char object_oE8_Tex_002288[] = dobject_oE8_Tex_002288; + +#define dobject_oE8_Tex_002388 "__OTR__objects/object_oE8/object_oE8_Tex_002388" +static const ALIGN_ASSET(2) char object_oE8_Tex_002388[] = dobject_oE8_Tex_002388; + +#define dobject_oE8_Tex_002788 "__OTR__objects/object_oE8/object_oE8_Tex_002788" +static const ALIGN_ASSET(2) char object_oE8_Tex_002788[] = dobject_oE8_Tex_002788; + +#define dobject_oE8_Tex_002B88 "__OTR__objects/object_oE8/object_oE8_Tex_002B88" +static const ALIGN_ASSET(2) char object_oE8_Tex_002B88[] = dobject_oE8_Tex_002B88; + +#define dobject_oE8_Tex_002BC8 "__OTR__objects/object_oE8/object_oE8_Tex_002BC8" +static const ALIGN_ASSET(2) char object_oE8_Tex_002BC8[] = dobject_oE8_Tex_002BC8; \ No newline at end of file diff --git a/soh/assets/objects/object_oE9/object_oE9.h b/soh/assets/objects/object_oE9/object_oE9.h index 7569c13c8..ac783e211 100644 --- a/soh/assets/objects/object_oE9/object_oE9.h +++ b/soh/assets/objects/object_oE9/object_oE9.h @@ -1,79 +1,36 @@ #pragma once -#define dobject_oE9_DL_000800 "__OTR__objects/object_oE9/object_oE9_DL_000800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_DL_000800[] = dobject_oE9_DL_000800; -#else -static const char object_oE9_DL_000800[] __attribute__((aligned (2))) = dobject_oE9_DL_000800; -#endif - -#define dobject_oE9_TLUT_000C90 "__OTR__objects/object_oE9/object_oE9_TLUT_000C90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_TLUT_000C90[] = dobject_oE9_TLUT_000C90; -#else -static const char object_oE9_TLUT_000C90[] __attribute__((aligned (2))) = dobject_oE9_TLUT_000C90; -#endif - -#define dobject_oE9_Tex_000E90 "__OTR__objects/object_oE9/object_oE9_Tex_000E90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_Tex_000E90[] = dobject_oE9_Tex_000E90; -#else -static const char object_oE9_Tex_000E90[] __attribute__((aligned (2))) = dobject_oE9_Tex_000E90; -#endif - -#define dobject_oE9_Blob_001290 "__OTR__objects/object_oE9/object_oE9_Blob_001290" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_Blob_001290[] = dobject_oE9_Blob_001290; -#else -static const char object_oE9_Blob_001290[] __attribute__((aligned (2))) = dobject_oE9_Blob_001290; -#endif - -#define dobject_oE9_TLUT_001A90 "__OTR__objects/object_oE9/object_oE9_TLUT_001A90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_TLUT_001A90[] = dobject_oE9_TLUT_001A90; -#else -static const char object_oE9_TLUT_001A90[] __attribute__((aligned (2))) = dobject_oE9_TLUT_001A90; -#endif - -#define dobject_oE9_Tex_001C90 "__OTR__objects/object_oE9/object_oE9_Tex_001C90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_Tex_001C90[] = dobject_oE9_Tex_001C90; -#else -static const char object_oE9_Tex_001C90[] __attribute__((aligned (2))) = dobject_oE9_Tex_001C90; -#endif - -#define dobject_oE9_Tex_001CD0 "__OTR__objects/object_oE9/object_oE9_Tex_001CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_Tex_001CD0[] = dobject_oE9_Tex_001CD0; -#else -static const char object_oE9_Tex_001CD0[] __attribute__((aligned (2))) = dobject_oE9_Tex_001CD0; -#endif - -#define dobject_oE9_Tex_001DD0 "__OTR__objects/object_oE9/object_oE9_Tex_001DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_Tex_001DD0[] = dobject_oE9_Tex_001DD0; -#else -static const char object_oE9_Tex_001DD0[] __attribute__((aligned (2))) = dobject_oE9_Tex_001DD0; -#endif - -#define dobject_oE9_Tex_001ED0 "__OTR__objects/object_oE9/object_oE9_Tex_001ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_Tex_001ED0[] = dobject_oE9_Tex_001ED0; -#else -static const char object_oE9_Tex_001ED0[] __attribute__((aligned (2))) = dobject_oE9_Tex_001ED0; -#endif - -#define dobject_oE9_Tex_0026D0 "__OTR__objects/object_oE9/object_oE9_Tex_0026D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_Tex_0026D0[] = dobject_oE9_Tex_0026D0; -#else -static const char object_oE9_Tex_0026D0[] __attribute__((aligned (2))) = dobject_oE9_Tex_0026D0; -#endif - -#define dobject_oE9_Tex_002ED0 "__OTR__objects/object_oE9/object_oE9_Tex_002ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE9_Tex_002ED0[] = dobject_oE9_Tex_002ED0; -#else -static const char object_oE9_Tex_002ED0[] __attribute__((aligned (2))) = dobject_oE9_Tex_002ED0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE9_DL_000800 "__OTR__objects/object_oE9/object_oE9_DL_000800" +static const ALIGN_ASSET(2) char object_oE9_DL_000800[] = dobject_oE9_DL_000800; + +#define dobject_oE9_TLUT_000C90 "__OTR__objects/object_oE9/object_oE9_TLUT_000C90" +static const ALIGN_ASSET(2) char object_oE9_TLUT_000C90[] = dobject_oE9_TLUT_000C90; + +#define dobject_oE9_Tex_000E90 "__OTR__objects/object_oE9/object_oE9_Tex_000E90" +static const ALIGN_ASSET(2) char object_oE9_Tex_000E90[] = dobject_oE9_Tex_000E90; + +#define dobject_oE9_Blob_001290 "__OTR__objects/object_oE9/object_oE9_Blob_001290" +static const ALIGN_ASSET(2) char object_oE9_Blob_001290[] = dobject_oE9_Blob_001290; + +#define dobject_oE9_TLUT_001A90 "__OTR__objects/object_oE9/object_oE9_TLUT_001A90" +static const ALIGN_ASSET(2) char object_oE9_TLUT_001A90[] = dobject_oE9_TLUT_001A90; + +#define dobject_oE9_Tex_001C90 "__OTR__objects/object_oE9/object_oE9_Tex_001C90" +static const ALIGN_ASSET(2) char object_oE9_Tex_001C90[] = dobject_oE9_Tex_001C90; + +#define dobject_oE9_Tex_001CD0 "__OTR__objects/object_oE9/object_oE9_Tex_001CD0" +static const ALIGN_ASSET(2) char object_oE9_Tex_001CD0[] = dobject_oE9_Tex_001CD0; + +#define dobject_oE9_Tex_001DD0 "__OTR__objects/object_oE9/object_oE9_Tex_001DD0" +static const ALIGN_ASSET(2) char object_oE9_Tex_001DD0[] = dobject_oE9_Tex_001DD0; + +#define dobject_oE9_Tex_001ED0 "__OTR__objects/object_oE9/object_oE9_Tex_001ED0" +static const ALIGN_ASSET(2) char object_oE9_Tex_001ED0[] = dobject_oE9_Tex_001ED0; + +#define dobject_oE9_Tex_0026D0 "__OTR__objects/object_oE9/object_oE9_Tex_0026D0" +static const ALIGN_ASSET(2) char object_oE9_Tex_0026D0[] = dobject_oE9_Tex_0026D0; + +#define dobject_oE9_Tex_002ED0 "__OTR__objects/object_oE9/object_oE9_Tex_002ED0" +static const ALIGN_ASSET(2) char object_oE9_Tex_002ED0[] = dobject_oE9_Tex_002ED0; \ No newline at end of file diff --git a/soh/assets/objects/object_oE_anime/object_oE_anime.h b/soh/assets/objects/object_oE_anime/object_oE_anime.h index 9a2270fcc..85391c1fe 100644 --- a/soh/assets/objects/object_oE_anime/object_oE_anime.h +++ b/soh/assets/objects/object_oE_anime/object_oE_anime.h @@ -1,44 +1,21 @@ #pragma once -#define dobject_oE_anime_Anim_00001034 "__OTR__objects/object_oE_anime/object_oE_anime_Anim_00001034" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE_anime_Anim_00001034[] = dobject_oE_anime_Anim_00001034; -#else -static const char object_oE_anime_Anim_00001034[] __attribute__((aligned (2))) = dobject_oE_anime_Anim_00001034; -#endif - -#define dobject_oE_anime_Anim_000019BC "__OTR__objects/object_oE_anime/object_oE_anime_Anim_000019BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE_anime_Anim_000019BC[] = dobject_oE_anime_Anim_000019BC; -#else -static const char object_oE_anime_Anim_000019BC[] __attribute__((aligned (2))) = dobject_oE_anime_Anim_000019BC; -#endif - -#define dobject_oE_anime_Anim_0000242C "__OTR__objects/object_oE_anime/object_oE_anime_Anim_0000242C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE_anime_Anim_0000242C[] = dobject_oE_anime_Anim_0000242C; -#else -static const char object_oE_anime_Anim_0000242C[] __attribute__((aligned (2))) = dobject_oE_anime_Anim_0000242C; -#endif - -#define dobject_oE_anime_Anim_00002DC8 "__OTR__objects/object_oE_anime/object_oE_anime_Anim_00002DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE_anime_Anim_00002DC8[] = dobject_oE_anime_Anim_00002DC8; -#else -static const char object_oE_anime_Anim_00002DC8[] __attribute__((aligned (2))) = dobject_oE_anime_Anim_00002DC8; -#endif - -#define dobject_oE_anime_Anim_000047D4 "__OTR__objects/object_oE_anime/object_oE_anime_Anim_000047D4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE_anime_Anim_000047D4[] = dobject_oE_anime_Anim_000047D4; -#else -static const char object_oE_anime_Anim_000047D4[] __attribute__((aligned (2))) = dobject_oE_anime_Anim_000047D4; -#endif - -#define dobject_oE_anime_Anim_00005044 "__OTR__objects/object_oE_anime/object_oE_anime_Anim_00005044" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oE_anime_Anim_00005044[] = dobject_oE_anime_Anim_00005044; -#else -static const char object_oE_anime_Anim_00005044[] __attribute__((aligned (2))) = dobject_oE_anime_Anim_00005044; -#endif - +#include "align_asset_macro.h" + +#define dobject_oE_anime_Anim_00001034 "__OTR__objects/object_oE_anime/object_oE_anime_Anim_00001034" +static const ALIGN_ASSET(2) char object_oE_anime_Anim_00001034[] = dobject_oE_anime_Anim_00001034; + +#define dobject_oE_anime_Anim_000019BC "__OTR__objects/object_oE_anime/object_oE_anime_Anim_000019BC" +static const ALIGN_ASSET(2) char object_oE_anime_Anim_000019BC[] = dobject_oE_anime_Anim_000019BC; + +#define dobject_oE_anime_Anim_0000242C "__OTR__objects/object_oE_anime/object_oE_anime_Anim_0000242C" +static const ALIGN_ASSET(2) char object_oE_anime_Anim_0000242C[] = dobject_oE_anime_Anim_0000242C; + +#define dobject_oE_anime_Anim_00002DC8 "__OTR__objects/object_oE_anime/object_oE_anime_Anim_00002DC8" +static const ALIGN_ASSET(2) char object_oE_anime_Anim_00002DC8[] = dobject_oE_anime_Anim_00002DC8; + +#define dobject_oE_anime_Anim_000047D4 "__OTR__objects/object_oE_anime/object_oE_anime_Anim_000047D4" +static const ALIGN_ASSET(2) char object_oE_anime_Anim_000047D4[] = dobject_oE_anime_Anim_000047D4; + +#define dobject_oE_anime_Anim_00005044 "__OTR__objects/object_oE_anime/object_oE_anime_Anim_00005044" +static const ALIGN_ASSET(2) char object_oE_anime_Anim_00005044[] = dobject_oE_anime_Anim_00005044; \ No newline at end of file diff --git a/soh/assets/objects/object_oF1d_map/object_oF1d_map.h b/soh/assets/objects/object_oF1d_map/object_oF1d_map.h index e3f98593e..6fab82e7f 100644 --- a/soh/assets/objects/object_oF1d_map/object_oF1d_map.h +++ b/soh/assets/objects/object_oF1d_map/object_oF1d_map.h @@ -1,387 +1,168 @@ #pragma once -#define dgGoronAnim_000750 "__OTR__objects/object_oF1d_map/gGoronAnim_000750" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_000750[] = dgGoronAnim_000750; -#else -static const char gGoronAnim_000750[] __attribute__((aligned (2))) = dgGoronAnim_000750; -#endif - -#define dgGoronAnim_000D5C "__OTR__objects/object_oF1d_map/gGoronAnim_000D5C" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_000D5C[] = dgGoronAnim_000D5C; -#else -static const char gGoronAnim_000D5C[] __attribute__((aligned (2))) = dgGoronAnim_000D5C; -#endif - -#define dgGoronAnim_00161C "__OTR__objects/object_oF1d_map/gGoronAnim_00161C" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_00161C[] = dgGoronAnim_00161C; -#else -static const char gGoronAnim_00161C[] __attribute__((aligned (2))) = dgGoronAnim_00161C; -#endif - -#define dgGoronAnim_001A00 "__OTR__objects/object_oF1d_map/gGoronAnim_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_001A00[] = dgGoronAnim_001A00; -#else -static const char gGoronAnim_001A00[] __attribute__((aligned (2))) = dgGoronAnim_001A00; -#endif - -#define dgGoronAnim_0021D0 "__OTR__objects/object_oF1d_map/gGoronAnim_0021D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_0021D0[] = dgGoronAnim_0021D0; -#else -static const char gGoronAnim_0021D0[] __attribute__((aligned (2))) = dgGoronAnim_0021D0; -#endif - -#define dgGoronAnim_0029A8 "__OTR__objects/object_oF1d_map/gGoronAnim_0029A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_0029A8[] = dgGoronAnim_0029A8; -#else -static const char gGoronAnim_0029A8[] __attribute__((aligned (2))) = dgGoronAnim_0029A8; -#endif - -#define dgGoronAnim_002D80 "__OTR__objects/object_oF1d_map/gGoronAnim_002D80" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_002D80[] = dgGoronAnim_002D80; -#else -static const char gGoronAnim_002D80[] __attribute__((aligned (2))) = dgGoronAnim_002D80; -#endif - -#define dgGoronAnim_003768 "__OTR__objects/object_oF1d_map/gGoronAnim_003768" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_003768[] = dgGoronAnim_003768; -#else -static const char gGoronAnim_003768[] __attribute__((aligned (2))) = dgGoronAnim_003768; -#endif - -#define dgGoronAnim_0038E4 "__OTR__objects/object_oF1d_map/gGoronAnim_0038E4" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_0038E4[] = dgGoronAnim_0038E4; -#else -static const char gGoronAnim_0038E4[] __attribute__((aligned (2))) = dgGoronAnim_0038E4; -#endif - -#define dgGoronAnim_004930 "__OTR__objects/object_oF1d_map/gGoronAnim_004930" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_004930[] = dgGoronAnim_004930; -#else -static const char gGoronAnim_004930[] __attribute__((aligned (2))) = dgGoronAnim_004930; -#endif - -#define dgGoronAnim_010590 "__OTR__objects/object_oF1d_map/gGoronAnim_010590" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronAnim_010590[] = dgGoronAnim_010590; -#else -static const char gGoronAnim_010590[] __attribute__((aligned (2))) = dgGoronAnim_010590; -#endif - -#define dgGoronDL_00BD80 "__OTR__objects/object_oF1d_map/gGoronDL_00BD80" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronDL_00BD80[] = dgGoronDL_00BD80; -#else -static const char gGoronDL_00BD80[] __attribute__((aligned (2))) = dgGoronDL_00BD80; -#endif - -#define dgGoronDL_00C140 "__OTR__objects/object_oF1d_map/gGoronDL_00C140" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronDL_00C140[] = dgGoronDL_00C140; -#else -static const char gGoronDL_00C140[] __attribute__((aligned (2))) = dgGoronDL_00C140; -#endif - -#define dgGoronDL_00FD40 "__OTR__objects/object_oF1d_map/gGoronDL_00FD40" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronDL_00FD40[] = dgGoronDL_00FD40; -#else -static const char gGoronDL_00FD40[] __attribute__((aligned (2))) = dgGoronDL_00FD40; -#endif - -#define dgGoronDL_00FD50 "__OTR__objects/object_oF1d_map/gGoronDL_00FD50" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronDL_00FD50[] = dgGoronDL_00FD50; -#else -static const char gGoronDL_00FD50[] __attribute__((aligned (2))) = dgGoronDL_00FD50; -#endif - -#define dgGoronSkel "__OTR__objects/object_oF1d_map/gGoronSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkel[] = dgGoronSkel; -#else -static const char gGoronSkel[] __attribute__((aligned (2))) = dgGoronSkel; -#endif - -#define dobject_oF1d_map_TLUT_00C640 "__OTR__objects/object_oF1d_map/object_oF1d_map_TLUT_00C640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_map_TLUT_00C640[] = dobject_oF1d_map_TLUT_00C640; -#else -static const char object_oF1d_map_TLUT_00C640[] __attribute__((aligned (2))) = dobject_oF1d_map_TLUT_00C640; -#endif - -#define dgGoronCsEyeOpenTex "__OTR__objects/object_oF1d_map/gGoronCsEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCsEyeOpenTex[] = dgGoronCsEyeOpenTex; -#else -static const char gGoronCsEyeOpenTex[] __attribute__((aligned (2))) = dgGoronCsEyeOpenTex; -#endif - -#define dgGoronCsEyeHalfTex "__OTR__objects/object_oF1d_map/gGoronCsEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCsEyeHalfTex[] = dgGoronCsEyeHalfTex; -#else -static const char gGoronCsEyeHalfTex[] __attribute__((aligned (2))) = dgGoronCsEyeHalfTex; -#endif - -#define dgGoronCsEyeClosedTex "__OTR__objects/object_oF1d_map/gGoronCsEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCsEyeClosedTex[] = dgGoronCsEyeClosedTex; -#else -static const char gGoronCsEyeClosedTex[] __attribute__((aligned (2))) = dgGoronCsEyeClosedTex; -#endif - -#define dgGoronCsEyeClosed2Tex "__OTR__objects/object_oF1d_map/gGoronCsEyeClosed2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCsEyeClosed2Tex[] = dgGoronCsEyeClosed2Tex; -#else -static const char gGoronCsEyeClosed2Tex[] __attribute__((aligned (2))) = dgGoronCsEyeClosed2Tex; -#endif - -#define dgGoronCsMouthNeutralTex "__OTR__objects/object_oF1d_map/gGoronCsMouthNeutralTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCsMouthNeutralTex[] = dgGoronCsMouthNeutralTex; -#else -static const char gGoronCsMouthNeutralTex[] __attribute__((aligned (2))) = dgGoronCsMouthNeutralTex; -#endif - -#define dgGoronCsMouthSmileTex "__OTR__objects/object_oF1d_map/gGoronCsMouthSmileTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCsMouthSmileTex[] = dgGoronCsMouthSmileTex; -#else -static const char gGoronCsMouthSmileTex[] __attribute__((aligned (2))) = dgGoronCsMouthSmileTex; -#endif - -#define dobject_oF1d_mapTex_009C70 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_009C70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_009C70[] = dobject_oF1d_mapTex_009C70; -#else -static const char object_oF1d_mapTex_009C70[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_009C70; -#endif - -#define dobject_oF1d_mapTex_009270 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_009270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_009270[] = dobject_oF1d_mapTex_009270; -#else -static const char object_oF1d_mapTex_009270[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_009270; -#endif - -#define dobject_oF1d_mapTLUT_009130 "__OTR__objects/object_oF1d_map/object_oF1d_mapTLUT_009130" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTLUT_009130[] = dobject_oF1d_mapTLUT_009130; -#else -static const char object_oF1d_mapTLUT_009130[] __attribute__((aligned (2))) = dobject_oF1d_mapTLUT_009130; -#endif - -#define dobject_oF1d_mapTex_0092B0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_0092B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_0092B0[] = dobject_oF1d_mapTex_0092B0; -#else -static const char object_oF1d_mapTex_0092B0[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_0092B0; -#endif - -#define dobject_oF1d_mapTex_0092F0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_0092F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_0092F0[] = dobject_oF1d_mapTex_0092F0; -#else -static const char object_oF1d_mapTex_0092F0[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_0092F0; -#endif - -#define dobject_oF1d_mapTex_009370 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_009370" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_009370[] = dobject_oF1d_mapTex_009370; -#else -static const char object_oF1d_mapTex_009370[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_009370; -#endif - -#define dobject_oF1d_mapTex_009B70 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_009B70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_009B70[] = dobject_oF1d_mapTex_009B70; -#else -static const char object_oF1d_mapTex_009B70[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_009B70; -#endif - -#define dgGoronSkelLimbsLimb_00FDECDL_008708 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FDECDL_008708" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FDECDL_008708[] = dgGoronSkelLimbsLimb_00FDECDL_008708; -#else -static const char gGoronSkelLimbsLimb_00FDECDL_008708[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FDECDL_008708; -#endif - -#define dgGoronSkelLimbsLimb_00FE04DL_008C80 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE04DL_008C80" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE04DL_008C80[] = dgGoronSkelLimbsLimb_00FE04DL_008C80; -#else -static const char gGoronSkelLimbsLimb_00FE04DL_008C80[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE04DL_008C80; -#endif - -#define dgGoronSkelLimbsLimb_00FE10DL_008D70 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE10DL_008D70" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE10DL_008D70[] = dgGoronSkelLimbsLimb_00FE10DL_008D70; -#else -static const char gGoronSkelLimbsLimb_00FE10DL_008D70[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE10DL_008D70; -#endif - -#define dgGoronSkelLimbsLimb_00FE1CDL_008EC0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE1CDL_008EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE1CDL_008EC0[] = dgGoronSkelLimbsLimb_00FE1CDL_008EC0; -#else -static const char gGoronSkelLimbsLimb_00FE1CDL_008EC0[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE1CDL_008EC0; -#endif - -#define dgGoronSkelLimbsLimb_00FE28DL_0087D0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE28DL_0087D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE28DL_0087D0[] = dgGoronSkelLimbsLimb_00FE28DL_0087D0; -#else -static const char gGoronSkelLimbsLimb_00FE28DL_0087D0[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE28DL_0087D0; -#endif - -#define dgGoronSkelLimbsLimb_00FE34DL_0088C0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE34DL_0088C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE34DL_0088C0[] = dgGoronSkelLimbsLimb_00FE34DL_0088C0; -#else -static const char gGoronSkelLimbsLimb_00FE34DL_0088C0[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE34DL_0088C0; -#endif - -#define dgGoronSkelLimbsLimb_00FE40DL_008A10 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE40DL_008A10" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE40DL_008A10[] = dgGoronSkelLimbsLimb_00FE40DL_008A10; -#else -static const char gGoronSkelLimbsLimb_00FE40DL_008A10[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE40DL_008A10; -#endif - -#define dgGoronSkelLimbsLimb_00FE4CDL_006F90 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE4CDL_006F90" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE4CDL_006F90[] = dgGoronSkelLimbsLimb_00FE4CDL_006F90; -#else -static const char gGoronSkelLimbsLimb_00FE4CDL_006F90[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE4CDL_006F90; -#endif - -#define dgGoronSkelLimbsLimb_00FE58DL_008218 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE58DL_008218" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE58DL_008218[] = dgGoronSkelLimbsLimb_00FE58DL_008218; -#else -static const char gGoronSkelLimbsLimb_00FE58DL_008218[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE58DL_008218; -#endif - -#define dgGoronSkelLimbsLimb_00FE64DL_0083A0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE64DL_0083A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE64DL_0083A0[] = dgGoronSkelLimbsLimb_00FE64DL_0083A0; -#else -static const char gGoronSkelLimbsLimb_00FE64DL_0083A0[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE64DL_0083A0; -#endif - -#define dgGoronSkelLimbsLimb_00FE70DL_0084E0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE70DL_0084E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE70DL_0084E0[] = dgGoronSkelLimbsLimb_00FE70DL_0084E0; -#else -static const char gGoronSkelLimbsLimb_00FE70DL_0084E0[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE70DL_0084E0; -#endif - -#define dgGoronSkelLimbsLimb_00FE7CDL_007D28 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE7CDL_007D28" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE7CDL_007D28[] = dgGoronSkelLimbsLimb_00FE7CDL_007D28; -#else -static const char gGoronSkelLimbsLimb_00FE7CDL_007D28[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE7CDL_007D28; -#endif - -#define dgGoronSkelLimbsLimb_00FE88DL_007EB0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE88DL_007EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE88DL_007EB0[] = dgGoronSkelLimbsLimb_00FE88DL_007EB0; -#else -static const char gGoronSkelLimbsLimb_00FE88DL_007EB0[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE88DL_007EB0; -#endif - -#define dgGoronSkelLimbsLimb_00FE94DL_007FF0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE94DL_007FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FE94DL_007FF0[] = dgGoronSkelLimbsLimb_00FE94DL_007FF0; -#else -static const char gGoronSkelLimbsLimb_00FE94DL_007FF0[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FE94DL_007FF0; -#endif - -#define dgGoronSkelLimbsLimb_00FEA0DL_007458 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FEA0DL_007458" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronSkelLimbsLimb_00FEA0DL_007458[] = dgGoronSkelLimbsLimb_00FEA0DL_007458; -#else -static const char gGoronSkelLimbsLimb_00FEA0DL_007458[] __attribute__((aligned (2))) = dgGoronSkelLimbsLimb_00FEA0DL_007458; -#endif - -#define dobject_oF1d_mapTLUT_00C440 "__OTR__objects/object_oF1d_map/object_oF1d_mapTLUT_00C440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTLUT_00C440[] = dobject_oF1d_mapTLUT_00C440; -#else -static const char object_oF1d_mapTLUT_00C440[] __attribute__((aligned (2))) = dobject_oF1d_mapTLUT_00C440; -#endif - -#define dobject_oF1d_mapTex_00C840 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00C840" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00C840[] = dobject_oF1d_mapTex_00C840; -#else -static const char object_oF1d_mapTex_00C840[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00C840; -#endif - -#define dobject_oF1d_mapTex_00C880 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00C880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00C880[] = dobject_oF1d_mapTex_00C880; -#else -static const char object_oF1d_mapTex_00C880[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00C880; -#endif - -#define dobject_oF1d_mapTex_00CA80 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00CA80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00CA80[] = dobject_oF1d_mapTex_00CA80; -#else -static const char object_oF1d_mapTex_00CA80[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00CA80; -#endif - -#define dobject_oF1d_mapTex_00F680 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00F680" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00F680[] = dobject_oF1d_mapTex_00F680; -#else -static const char object_oF1d_mapTex_00F680[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00F680; -#endif - -#define dobject_oF1d_mapTex_00EE80 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00EE80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00EE80[] = dobject_oF1d_mapTex_00EE80; -#else -static const char object_oF1d_mapTex_00EE80[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00EE80; -#endif - -#define dobject_oF1d_mapTex_00FCC0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00FCC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00FCC0[] = dobject_oF1d_mapTex_00FCC0; -#else -static const char object_oF1d_mapTex_00FCC0[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00FCC0; -#endif - -#define dobject_oF1d_mapTex_00F8C0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00F8C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00F8C0[] = dobject_oF1d_mapTex_00F8C0; -#else -static const char object_oF1d_mapTex_00F8C0[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00F8C0; -#endif - -#define dobject_oF1d_mapTex_00F7C0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00F7C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00F7C0[] = dobject_oF1d_mapTex_00F7C0; -#else -static const char object_oF1d_mapTex_00F7C0[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00F7C0; -#endif - -#define dobject_oF1d_mapTex_00F6C0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00F6C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1d_mapTex_00F6C0[] = dobject_oF1d_mapTex_00F6C0; -#else -static const char object_oF1d_mapTex_00F6C0[] __attribute__((aligned (2))) = dobject_oF1d_mapTex_00F6C0; -#endif - +#include "align_asset_macro.h" + +#define dgGoronAnim_000750 "__OTR__objects/object_oF1d_map/gGoronAnim_000750" +static const ALIGN_ASSET(2) char gGoronAnim_000750[] = dgGoronAnim_000750; + +#define dgGoronAnim_000D5C "__OTR__objects/object_oF1d_map/gGoronAnim_000D5C" +static const ALIGN_ASSET(2) char gGoronAnim_000D5C[] = dgGoronAnim_000D5C; + +#define dgGoronAnim_00161C "__OTR__objects/object_oF1d_map/gGoronAnim_00161C" +static const ALIGN_ASSET(2) char gGoronAnim_00161C[] = dgGoronAnim_00161C; + +#define dgGoronAnim_001A00 "__OTR__objects/object_oF1d_map/gGoronAnim_001A00" +static const ALIGN_ASSET(2) char gGoronAnim_001A00[] = dgGoronAnim_001A00; + +#define dgGoronAnim_0021D0 "__OTR__objects/object_oF1d_map/gGoronAnim_0021D0" +static const ALIGN_ASSET(2) char gGoronAnim_0021D0[] = dgGoronAnim_0021D0; + +#define dgGoronAnim_0029A8 "__OTR__objects/object_oF1d_map/gGoronAnim_0029A8" +static const ALIGN_ASSET(2) char gGoronAnim_0029A8[] = dgGoronAnim_0029A8; + +#define dgGoronAnim_002D80 "__OTR__objects/object_oF1d_map/gGoronAnim_002D80" +static const ALIGN_ASSET(2) char gGoronAnim_002D80[] = dgGoronAnim_002D80; + +#define dgGoronAnim_003768 "__OTR__objects/object_oF1d_map/gGoronAnim_003768" +static const ALIGN_ASSET(2) char gGoronAnim_003768[] = dgGoronAnim_003768; + +#define dgGoronAnim_0038E4 "__OTR__objects/object_oF1d_map/gGoronAnim_0038E4" +static const ALIGN_ASSET(2) char gGoronAnim_0038E4[] = dgGoronAnim_0038E4; + +#define dgGoronAnim_004930 "__OTR__objects/object_oF1d_map/gGoronAnim_004930" +static const ALIGN_ASSET(2) char gGoronAnim_004930[] = dgGoronAnim_004930; + +#define dgGoronAnim_010590 "__OTR__objects/object_oF1d_map/gGoronAnim_010590" +static const ALIGN_ASSET(2) char gGoronAnim_010590[] = dgGoronAnim_010590; + +#define dgGoronDL_00BD80 "__OTR__objects/object_oF1d_map/gGoronDL_00BD80" +static const ALIGN_ASSET(2) char gGoronDL_00BD80[] = dgGoronDL_00BD80; + +#define dgGoronDL_00C140 "__OTR__objects/object_oF1d_map/gGoronDL_00C140" +static const ALIGN_ASSET(2) char gGoronDL_00C140[] = dgGoronDL_00C140; + +#define dgGoronDL_00FD40 "__OTR__objects/object_oF1d_map/gGoronDL_00FD40" +static const ALIGN_ASSET(2) char gGoronDL_00FD40[] = dgGoronDL_00FD40; + +#define dgGoronDL_00FD50 "__OTR__objects/object_oF1d_map/gGoronDL_00FD50" +static const ALIGN_ASSET(2) char gGoronDL_00FD50[] = dgGoronDL_00FD50; + +#define dgGoronSkel "__OTR__objects/object_oF1d_map/gGoronSkel" +static const ALIGN_ASSET(2) char gGoronSkel[] = dgGoronSkel; + +#define dobject_oF1d_map_TLUT_00C640 "__OTR__objects/object_oF1d_map/object_oF1d_map_TLUT_00C640" +static const ALIGN_ASSET(2) char object_oF1d_map_TLUT_00C640[] = dobject_oF1d_map_TLUT_00C640; + +#define dgGoronCsEyeOpenTex "__OTR__objects/object_oF1d_map/gGoronCsEyeOpenTex" +static const ALIGN_ASSET(2) char gGoronCsEyeOpenTex[] = dgGoronCsEyeOpenTex; + +#define dgGoronCsEyeHalfTex "__OTR__objects/object_oF1d_map/gGoronCsEyeHalfTex" +static const ALIGN_ASSET(2) char gGoronCsEyeHalfTex[] = dgGoronCsEyeHalfTex; + +#define dgGoronCsEyeClosedTex "__OTR__objects/object_oF1d_map/gGoronCsEyeClosedTex" +static const ALIGN_ASSET(2) char gGoronCsEyeClosedTex[] = dgGoronCsEyeClosedTex; + +#define dgGoronCsEyeClosed2Tex "__OTR__objects/object_oF1d_map/gGoronCsEyeClosed2Tex" +static const ALIGN_ASSET(2) char gGoronCsEyeClosed2Tex[] = dgGoronCsEyeClosed2Tex; + +#define dgGoronCsMouthNeutralTex "__OTR__objects/object_oF1d_map/gGoronCsMouthNeutralTex" +static const ALIGN_ASSET(2) char gGoronCsMouthNeutralTex[] = dgGoronCsMouthNeutralTex; + +#define dgGoronCsMouthSmileTex "__OTR__objects/object_oF1d_map/gGoronCsMouthSmileTex" +static const ALIGN_ASSET(2) char gGoronCsMouthSmileTex[] = dgGoronCsMouthSmileTex; + +#define dobject_oF1d_mapTex_009C70 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_009C70" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_009C70[] = dobject_oF1d_mapTex_009C70; + +#define dobject_oF1d_mapTex_009270 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_009270" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_009270[] = dobject_oF1d_mapTex_009270; + +#define dobject_oF1d_mapTLUT_009130 "__OTR__objects/object_oF1d_map/object_oF1d_mapTLUT_009130" +static const ALIGN_ASSET(2) char object_oF1d_mapTLUT_009130[] = dobject_oF1d_mapTLUT_009130; + +#define dobject_oF1d_mapTex_0092B0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_0092B0" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_0092B0[] = dobject_oF1d_mapTex_0092B0; + +#define dobject_oF1d_mapTex_0092F0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_0092F0" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_0092F0[] = dobject_oF1d_mapTex_0092F0; + +#define dobject_oF1d_mapTex_009370 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_009370" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_009370[] = dobject_oF1d_mapTex_009370; + +#define dobject_oF1d_mapTex_009B70 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_009B70" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_009B70[] = dobject_oF1d_mapTex_009B70; + +#define dgGoronSkelLimbsLimb_00FDECDL_008708 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FDECDL_008708" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FDECDL_008708[] = dgGoronSkelLimbsLimb_00FDECDL_008708; + +#define dgGoronSkelLimbsLimb_00FE04DL_008C80 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE04DL_008C80" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE04DL_008C80[] = dgGoronSkelLimbsLimb_00FE04DL_008C80; + +#define dgGoronSkelLimbsLimb_00FE10DL_008D70 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE10DL_008D70" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE10DL_008D70[] = dgGoronSkelLimbsLimb_00FE10DL_008D70; + +#define dgGoronSkelLimbsLimb_00FE1CDL_008EC0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE1CDL_008EC0" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE1CDL_008EC0[] = dgGoronSkelLimbsLimb_00FE1CDL_008EC0; + +#define dgGoronSkelLimbsLimb_00FE28DL_0087D0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE28DL_0087D0" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE28DL_0087D0[] = dgGoronSkelLimbsLimb_00FE28DL_0087D0; + +#define dgGoronSkelLimbsLimb_00FE34DL_0088C0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE34DL_0088C0" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE34DL_0088C0[] = dgGoronSkelLimbsLimb_00FE34DL_0088C0; + +#define dgGoronSkelLimbsLimb_00FE40DL_008A10 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE40DL_008A10" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE40DL_008A10[] = dgGoronSkelLimbsLimb_00FE40DL_008A10; + +#define dgGoronSkelLimbsLimb_00FE4CDL_006F90 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE4CDL_006F90" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE4CDL_006F90[] = dgGoronSkelLimbsLimb_00FE4CDL_006F90; + +#define dgGoronSkelLimbsLimb_00FE58DL_008218 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE58DL_008218" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE58DL_008218[] = dgGoronSkelLimbsLimb_00FE58DL_008218; + +#define dgGoronSkelLimbsLimb_00FE64DL_0083A0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE64DL_0083A0" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE64DL_0083A0[] = dgGoronSkelLimbsLimb_00FE64DL_0083A0; + +#define dgGoronSkelLimbsLimb_00FE70DL_0084E0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE70DL_0084E0" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE70DL_0084E0[] = dgGoronSkelLimbsLimb_00FE70DL_0084E0; + +#define dgGoronSkelLimbsLimb_00FE7CDL_007D28 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE7CDL_007D28" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE7CDL_007D28[] = dgGoronSkelLimbsLimb_00FE7CDL_007D28; + +#define dgGoronSkelLimbsLimb_00FE88DL_007EB0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE88DL_007EB0" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE88DL_007EB0[] = dgGoronSkelLimbsLimb_00FE88DL_007EB0; + +#define dgGoronSkelLimbsLimb_00FE94DL_007FF0 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FE94DL_007FF0" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FE94DL_007FF0[] = dgGoronSkelLimbsLimb_00FE94DL_007FF0; + +#define dgGoronSkelLimbsLimb_00FEA0DL_007458 "__OTR__objects/object_oF1d_map/gGoronSkelLimbsLimb_00FEA0DL_007458" +static const ALIGN_ASSET(2) char gGoronSkelLimbsLimb_00FEA0DL_007458[] = dgGoronSkelLimbsLimb_00FEA0DL_007458; + +#define dobject_oF1d_mapTLUT_00C440 "__OTR__objects/object_oF1d_map/object_oF1d_mapTLUT_00C440" +static const ALIGN_ASSET(2) char object_oF1d_mapTLUT_00C440[] = dobject_oF1d_mapTLUT_00C440; + +#define dobject_oF1d_mapTex_00C840 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00C840" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00C840[] = dobject_oF1d_mapTex_00C840; + +#define dobject_oF1d_mapTex_00C880 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00C880" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00C880[] = dobject_oF1d_mapTex_00C880; + +#define dobject_oF1d_mapTex_00CA80 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00CA80" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00CA80[] = dobject_oF1d_mapTex_00CA80; + +#define dobject_oF1d_mapTex_00F680 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00F680" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00F680[] = dobject_oF1d_mapTex_00F680; + +#define dobject_oF1d_mapTex_00EE80 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00EE80" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00EE80[] = dobject_oF1d_mapTex_00EE80; + +#define dobject_oF1d_mapTex_00FCC0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00FCC0" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00FCC0[] = dobject_oF1d_mapTex_00FCC0; + +#define dobject_oF1d_mapTex_00F8C0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00F8C0" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00F8C0[] = dobject_oF1d_mapTex_00F8C0; + +#define dobject_oF1d_mapTex_00F7C0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00F7C0" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00F7C0[] = dobject_oF1d_mapTex_00F7C0; + +#define dobject_oF1d_mapTex_00F6C0 "__OTR__objects/object_oF1d_map/object_oF1d_mapTex_00F6C0" +static const ALIGN_ASSET(2) char object_oF1d_mapTex_00F6C0[] = dobject_oF1d_mapTex_00F6C0; \ No newline at end of file diff --git a/soh/assets/objects/object_oF1s/object_oF1s.h b/soh/assets/objects/object_oF1s/object_oF1s.h index e5f5c660b..9a183eac0 100644 --- a/soh/assets/objects/object_oF1s/object_oF1s.h +++ b/soh/assets/objects/object_oF1s/object_oF1s.h @@ -1,226 +1,99 @@ #pragma once -#define dobject_oF1s_Skel_000110 "__OTR__objects/object_oF1s/object_oF1s_Skel_000110" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Skel_000110[] = dobject_oF1s_Skel_000110; -#else -static const char object_oF1s_Skel_000110[] __attribute__((aligned (2))) = dobject_oF1s_Skel_000110; -#endif - -#define dobject_oF1s_TLUT_00011C "__OTR__objects/object_oF1s/object_oF1s_TLUT_00011C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_TLUT_00011C[] = dobject_oF1s_TLUT_00011C; -#else -static const char object_oF1s_TLUT_00011C[] __attribute__((aligned (2))) = dobject_oF1s_TLUT_00011C; -#endif - -#define dobject_oF1s_TLUT_0002CC "__OTR__objects/object_oF1s/object_oF1s_TLUT_0002CC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_TLUT_0002CC[] = dobject_oF1s_TLUT_0002CC; -#else -static const char object_oF1s_TLUT_0002CC[] __attribute__((aligned (2))) = dobject_oF1s_TLUT_0002CC; -#endif - -#define dobject_oF1s_Tex_0004BC "__OTR__objects/object_oF1s/object_oF1s_Tex_0004BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_0004BC[] = dobject_oF1s_Tex_0004BC; -#else -static const char object_oF1s_Tex_0004BC[] __attribute__((aligned (2))) = dobject_oF1s_Tex_0004BC; -#endif - -#define dobject_oF1s_Tex_0008BC "__OTR__objects/object_oF1s/object_oF1s_Tex_0008BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_0008BC[] = dobject_oF1s_Tex_0008BC; -#else -static const char object_oF1s_Tex_0008BC[] __attribute__((aligned (2))) = dobject_oF1s_Tex_0008BC; -#endif - -#define dobject_oF1s_Tex_0018BC "__OTR__objects/object_oF1s/object_oF1s_Tex_0018BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_0018BC[] = dobject_oF1s_Tex_0018BC; -#else -static const char object_oF1s_Tex_0018BC[] __attribute__((aligned (2))) = dobject_oF1s_Tex_0018BC; -#endif - -#define dobject_oF1s_Tex_0018FC "__OTR__objects/object_oF1s/object_oF1s_Tex_0018FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_0018FC[] = dobject_oF1s_Tex_0018FC; -#else -static const char object_oF1s_Tex_0018FC[] __attribute__((aligned (2))) = dobject_oF1s_Tex_0018FC; -#endif - -#define dobject_oF1s_Tex_0019FC "__OTR__objects/object_oF1s/object_oF1s_Tex_0019FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_0019FC[] = dobject_oF1s_Tex_0019FC; -#else -static const char object_oF1s_Tex_0019FC[] __attribute__((aligned (2))) = dobject_oF1s_Tex_0019FC; -#endif - -#define dobject_oF1s_Tex_001AFC "__OTR__objects/object_oF1s/object_oF1s_Tex_001AFC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_001AFC[] = dobject_oF1s_Tex_001AFC; -#else -static const char object_oF1s_Tex_001AFC[] __attribute__((aligned (2))) = dobject_oF1s_Tex_001AFC; -#endif - -#define dobject_oF1s_Tex_001B7C "__OTR__objects/object_oF1s/object_oF1s_Tex_001B7C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_001B7C[] = dobject_oF1s_Tex_001B7C; -#else -static const char object_oF1s_Tex_001B7C[] __attribute__((aligned (2))) = dobject_oF1s_Tex_001B7C; -#endif - -#define dobject_oF1s_Tex_001F7C "__OTR__objects/object_oF1s/object_oF1s_Tex_001F7C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_001F7C[] = dobject_oF1s_Tex_001F7C; -#else -static const char object_oF1s_Tex_001F7C[] __attribute__((aligned (2))) = dobject_oF1s_Tex_001F7C; -#endif - -#define dobject_oF1s_Blob_00217C "__OTR__objects/object_oF1s/object_oF1s_Blob_00217C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Blob_00217C[] = dobject_oF1s_Blob_00217C; -#else -static const char object_oF1s_Blob_00217C[] __attribute__((aligned (2))) = dobject_oF1s_Blob_00217C; -#endif - -#define dobject_oF1s_Tex_00257C "__OTR__objects/object_oF1s/object_oF1s_Tex_00257C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_00257C[] = dobject_oF1s_Tex_00257C; -#else -static const char object_oF1s_Tex_00257C[] __attribute__((aligned (2))) = dobject_oF1s_Tex_00257C; -#endif - -#define dobject_oF1s_Tex_0025BC "__OTR__objects/object_oF1s/object_oF1s_Tex_0025BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_0025BC[] = dobject_oF1s_Tex_0025BC; -#else -static const char object_oF1s_Tex_0025BC[] __attribute__((aligned (2))) = dobject_oF1s_Tex_0025BC; -#endif - -#define dobject_oF1s_Blob_0029BC "__OTR__objects/object_oF1s/object_oF1s_Blob_0029BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Blob_0029BC[] = dobject_oF1s_Blob_0029BC; -#else -static const char object_oF1s_Blob_0029BC[] __attribute__((aligned (2))) = dobject_oF1s_Blob_0029BC; -#endif - -#define dobject_oF1s_Tex_002DBC "__OTR__objects/object_oF1s/object_oF1s_Tex_002DBC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_Tex_002DBC[] = dobject_oF1s_Tex_002DBC; -#else -static const char object_oF1s_Tex_002DBC[] __attribute__((aligned (2))) = dobject_oF1s_Tex_002DBC; -#endif - -#define dobject_oF1s_DL_006A40 "__OTR__objects/object_oF1s/object_oF1s_DL_006A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_006A40[] = dobject_oF1s_DL_006A40; -#else -static const char object_oF1s_DL_006A40[] __attribute__((aligned (2))) = dobject_oF1s_DL_006A40; -#endif - -#define dobject_oF1s_DL_006DE8 "__OTR__objects/object_oF1s/object_oF1s_DL_006DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_006DE8[] = dobject_oF1s_DL_006DE8; -#else -static const char object_oF1s_DL_006DE8[] __attribute__((aligned (2))) = dobject_oF1s_DL_006DE8; -#endif - -#define dobject_oF1s_DL_006FF8 "__OTR__objects/object_oF1s/object_oF1s_DL_006FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_006FF8[] = dobject_oF1s_DL_006FF8; -#else -static const char object_oF1s_DL_006FF8[] __attribute__((aligned (2))) = dobject_oF1s_DL_006FF8; -#endif - -#define dobject_oF1s_DL_0071C8 "__OTR__objects/object_oF1s/object_oF1s_DL_0071C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_0071C8[] = dobject_oF1s_DL_0071C8; -#else -static const char object_oF1s_DL_0071C8[] __attribute__((aligned (2))) = dobject_oF1s_DL_0071C8; -#endif - -#define dobject_oF1s_DL_007328 "__OTR__objects/object_oF1s/object_oF1s_DL_007328" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_007328[] = dobject_oF1s_DL_007328; -#else -static const char object_oF1s_DL_007328[] __attribute__((aligned (2))) = dobject_oF1s_DL_007328; -#endif - -#define dobject_oF1s_DL_007548 "__OTR__objects/object_oF1s/object_oF1s_DL_007548" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_007548[] = dobject_oF1s_DL_007548; -#else -static const char object_oF1s_DL_007548[] __attribute__((aligned (2))) = dobject_oF1s_DL_007548; -#endif - -#define dobject_oF1s_DL_007748 "__OTR__objects/object_oF1s/object_oF1s_DL_007748" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_007748[] = dobject_oF1s_DL_007748; -#else -static const char object_oF1s_DL_007748[] __attribute__((aligned (2))) = dobject_oF1s_DL_007748; -#endif - -#define dobject_oF1s_DL_007880 "__OTR__objects/object_oF1s/object_oF1s_DL_007880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_007880[] = dobject_oF1s_DL_007880; -#else -static const char object_oF1s_DL_007880[] __attribute__((aligned (2))) = dobject_oF1s_DL_007880; -#endif - -#define dobject_oF1s_DL_007A40 "__OTR__objects/object_oF1s/object_oF1s_DL_007A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_007A40[] = dobject_oF1s_DL_007A40; -#else -static const char object_oF1s_DL_007A40[] __attribute__((aligned (2))) = dobject_oF1s_DL_007A40; -#endif - -#define dobject_oF1s_DL_007C10 "__OTR__objects/object_oF1s/object_oF1s_DL_007C10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_007C10[] = dobject_oF1s_DL_007C10; -#else -static const char object_oF1s_DL_007C10[] __attribute__((aligned (2))) = dobject_oF1s_DL_007C10; -#endif - -#define dobject_oF1s_DL_007D70 "__OTR__objects/object_oF1s/object_oF1s_DL_007D70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_007D70[] = dobject_oF1s_DL_007D70; -#else -static const char object_oF1s_DL_007D70[] __attribute__((aligned (2))) = dobject_oF1s_DL_007D70; -#endif - -#define dobject_oF1s_DL_007F90 "__OTR__objects/object_oF1s/object_oF1s_DL_007F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_007F90[] = dobject_oF1s_DL_007F90; -#else -static const char object_oF1s_DL_007F90[] __attribute__((aligned (2))) = dobject_oF1s_DL_007F90; -#endif - -#define dobject_oF1s_DL_008190 "__OTR__objects/object_oF1s/object_oF1s_DL_008190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_008190[] = dobject_oF1s_DL_008190; -#else -static const char object_oF1s_DL_008190[] __attribute__((aligned (2))) = dobject_oF1s_DL_008190; -#endif - -#define dobject_oF1s_DL_0082C8 "__OTR__objects/object_oF1s/object_oF1s_DL_0082C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_0082C8[] = dobject_oF1s_DL_0082C8; -#else -static const char object_oF1s_DL_0082C8[] __attribute__((aligned (2))) = dobject_oF1s_DL_0082C8; -#endif - -#define dobject_oF1s_DL_008488 "__OTR__objects/object_oF1s/object_oF1s_DL_008488" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_008488[] = dobject_oF1s_DL_008488; -#else -static const char object_oF1s_DL_008488[] __attribute__((aligned (2))) = dobject_oF1s_DL_008488; -#endif - -#define dobject_oF1s_DL_0084E0 "__OTR__objects/object_oF1s/object_oF1s_DL_0084E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_oF1s_DL_0084E0[] = dobject_oF1s_DL_0084E0; -#else -static const char object_oF1s_DL_0084E0[] __attribute__((aligned (2))) = dobject_oF1s_DL_0084E0; -#endif - +#include "align_asset_macro.h" + +#define dobject_oF1s_Skel_000110 "__OTR__objects/object_oF1s/object_oF1s_Skel_000110" +static const ALIGN_ASSET(2) char object_oF1s_Skel_000110[] = dobject_oF1s_Skel_000110; + +#define dobject_oF1s_TLUT_00011C "__OTR__objects/object_oF1s/object_oF1s_TLUT_00011C" +static const ALIGN_ASSET(2) char object_oF1s_TLUT_00011C[] = dobject_oF1s_TLUT_00011C; + +#define dobject_oF1s_TLUT_0002CC "__OTR__objects/object_oF1s/object_oF1s_TLUT_0002CC" +static const ALIGN_ASSET(2) char object_oF1s_TLUT_0002CC[] = dobject_oF1s_TLUT_0002CC; + +#define dobject_oF1s_Tex_0004BC "__OTR__objects/object_oF1s/object_oF1s_Tex_0004BC" +static const ALIGN_ASSET(2) char object_oF1s_Tex_0004BC[] = dobject_oF1s_Tex_0004BC; + +#define dobject_oF1s_Tex_0008BC "__OTR__objects/object_oF1s/object_oF1s_Tex_0008BC" +static const ALIGN_ASSET(2) char object_oF1s_Tex_0008BC[] = dobject_oF1s_Tex_0008BC; + +#define dobject_oF1s_Tex_0018BC "__OTR__objects/object_oF1s/object_oF1s_Tex_0018BC" +static const ALIGN_ASSET(2) char object_oF1s_Tex_0018BC[] = dobject_oF1s_Tex_0018BC; + +#define dobject_oF1s_Tex_0018FC "__OTR__objects/object_oF1s/object_oF1s_Tex_0018FC" +static const ALIGN_ASSET(2) char object_oF1s_Tex_0018FC[] = dobject_oF1s_Tex_0018FC; + +#define dobject_oF1s_Tex_0019FC "__OTR__objects/object_oF1s/object_oF1s_Tex_0019FC" +static const ALIGN_ASSET(2) char object_oF1s_Tex_0019FC[] = dobject_oF1s_Tex_0019FC; + +#define dobject_oF1s_Tex_001AFC "__OTR__objects/object_oF1s/object_oF1s_Tex_001AFC" +static const ALIGN_ASSET(2) char object_oF1s_Tex_001AFC[] = dobject_oF1s_Tex_001AFC; + +#define dobject_oF1s_Tex_001B7C "__OTR__objects/object_oF1s/object_oF1s_Tex_001B7C" +static const ALIGN_ASSET(2) char object_oF1s_Tex_001B7C[] = dobject_oF1s_Tex_001B7C; + +#define dobject_oF1s_Tex_001F7C "__OTR__objects/object_oF1s/object_oF1s_Tex_001F7C" +static const ALIGN_ASSET(2) char object_oF1s_Tex_001F7C[] = dobject_oF1s_Tex_001F7C; + +#define dobject_oF1s_Blob_00217C "__OTR__objects/object_oF1s/object_oF1s_Blob_00217C" +static const ALIGN_ASSET(2) char object_oF1s_Blob_00217C[] = dobject_oF1s_Blob_00217C; + +#define dobject_oF1s_Tex_00257C "__OTR__objects/object_oF1s/object_oF1s_Tex_00257C" +static const ALIGN_ASSET(2) char object_oF1s_Tex_00257C[] = dobject_oF1s_Tex_00257C; + +#define dobject_oF1s_Tex_0025BC "__OTR__objects/object_oF1s/object_oF1s_Tex_0025BC" +static const ALIGN_ASSET(2) char object_oF1s_Tex_0025BC[] = dobject_oF1s_Tex_0025BC; + +#define dobject_oF1s_Blob_0029BC "__OTR__objects/object_oF1s/object_oF1s_Blob_0029BC" +static const ALIGN_ASSET(2) char object_oF1s_Blob_0029BC[] = dobject_oF1s_Blob_0029BC; + +#define dobject_oF1s_Tex_002DBC "__OTR__objects/object_oF1s/object_oF1s_Tex_002DBC" +static const ALIGN_ASSET(2) char object_oF1s_Tex_002DBC[] = dobject_oF1s_Tex_002DBC; + +#define dobject_oF1s_DL_006A40 "__OTR__objects/object_oF1s/object_oF1s_DL_006A40" +static const ALIGN_ASSET(2) char object_oF1s_DL_006A40[] = dobject_oF1s_DL_006A40; + +#define dobject_oF1s_DL_006DE8 "__OTR__objects/object_oF1s/object_oF1s_DL_006DE8" +static const ALIGN_ASSET(2) char object_oF1s_DL_006DE8[] = dobject_oF1s_DL_006DE8; + +#define dobject_oF1s_DL_006FF8 "__OTR__objects/object_oF1s/object_oF1s_DL_006FF8" +static const ALIGN_ASSET(2) char object_oF1s_DL_006FF8[] = dobject_oF1s_DL_006FF8; + +#define dobject_oF1s_DL_0071C8 "__OTR__objects/object_oF1s/object_oF1s_DL_0071C8" +static const ALIGN_ASSET(2) char object_oF1s_DL_0071C8[] = dobject_oF1s_DL_0071C8; + +#define dobject_oF1s_DL_007328 "__OTR__objects/object_oF1s/object_oF1s_DL_007328" +static const ALIGN_ASSET(2) char object_oF1s_DL_007328[] = dobject_oF1s_DL_007328; + +#define dobject_oF1s_DL_007548 "__OTR__objects/object_oF1s/object_oF1s_DL_007548" +static const ALIGN_ASSET(2) char object_oF1s_DL_007548[] = dobject_oF1s_DL_007548; + +#define dobject_oF1s_DL_007748 "__OTR__objects/object_oF1s/object_oF1s_DL_007748" +static const ALIGN_ASSET(2) char object_oF1s_DL_007748[] = dobject_oF1s_DL_007748; + +#define dobject_oF1s_DL_007880 "__OTR__objects/object_oF1s/object_oF1s_DL_007880" +static const ALIGN_ASSET(2) char object_oF1s_DL_007880[] = dobject_oF1s_DL_007880; + +#define dobject_oF1s_DL_007A40 "__OTR__objects/object_oF1s/object_oF1s_DL_007A40" +static const ALIGN_ASSET(2) char object_oF1s_DL_007A40[] = dobject_oF1s_DL_007A40; + +#define dobject_oF1s_DL_007C10 "__OTR__objects/object_oF1s/object_oF1s_DL_007C10" +static const ALIGN_ASSET(2) char object_oF1s_DL_007C10[] = dobject_oF1s_DL_007C10; + +#define dobject_oF1s_DL_007D70 "__OTR__objects/object_oF1s/object_oF1s_DL_007D70" +static const ALIGN_ASSET(2) char object_oF1s_DL_007D70[] = dobject_oF1s_DL_007D70; + +#define dobject_oF1s_DL_007F90 "__OTR__objects/object_oF1s/object_oF1s_DL_007F90" +static const ALIGN_ASSET(2) char object_oF1s_DL_007F90[] = dobject_oF1s_DL_007F90; + +#define dobject_oF1s_DL_008190 "__OTR__objects/object_oF1s/object_oF1s_DL_008190" +static const ALIGN_ASSET(2) char object_oF1s_DL_008190[] = dobject_oF1s_DL_008190; + +#define dobject_oF1s_DL_0082C8 "__OTR__objects/object_oF1s/object_oF1s_DL_0082C8" +static const ALIGN_ASSET(2) char object_oF1s_DL_0082C8[] = dobject_oF1s_DL_0082C8; + +#define dobject_oF1s_DL_008488 "__OTR__objects/object_oF1s/object_oF1s_DL_008488" +static const ALIGN_ASSET(2) char object_oF1s_DL_008488[] = dobject_oF1s_DL_008488; + +#define dobject_oF1s_DL_0084E0 "__OTR__objects/object_oF1s/object_oF1s_DL_0084E0" +static const ALIGN_ASSET(2) char object_oF1s_DL_0084E0[] = dobject_oF1s_DL_0084E0; \ No newline at end of file diff --git a/soh/assets/objects/object_o_anime/object_o_anime.h b/soh/assets/objects/object_o_anime/object_o_anime.h index 5a31f1953..c943753a2 100644 --- a/soh/assets/objects/object_o_anime/object_o_anime.h +++ b/soh/assets/objects/object_o_anime/object_o_anime.h @@ -1,51 +1,24 @@ #pragma once -#define dobject_o_anime_Anim_000A1C "__OTR__objects/object_o_anime/object_o_anime_Anim_000A1C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_o_anime_Anim_000A1C[] = dobject_o_anime_Anim_000A1C; -#else -static const char object_o_anime_Anim_000A1C[] __attribute__((aligned (2))) = dobject_o_anime_Anim_000A1C; -#endif - -#define dobject_o_anime_Anim_000E78 "__OTR__objects/object_o_anime/object_o_anime_Anim_000E78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_o_anime_Anim_000E78[] = dobject_o_anime_Anim_000E78; -#else -static const char object_o_anime_Anim_000E78[] __attribute__((aligned (2))) = dobject_o_anime_Anim_000E78; -#endif - -#define dobject_o_anime_Anim_001300 "__OTR__objects/object_o_anime/object_o_anime_Anim_001300" -#ifdef _WIN32 -static const __declspec(align(2)) char object_o_anime_Anim_001300[] = dobject_o_anime_Anim_001300; -#else -static const char object_o_anime_Anim_001300[] __attribute__((aligned (2))) = dobject_o_anime_Anim_001300; -#endif - -#define dobject_o_anime_Anim_0017B4 "__OTR__objects/object_o_anime/object_o_anime_Anim_0017B4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_o_anime_Anim_0017B4[] = dobject_o_anime_Anim_0017B4; -#else -static const char object_o_anime_Anim_0017B4[] __attribute__((aligned (2))) = dobject_o_anime_Anim_0017B4; -#endif - -#define dobject_o_anime_Anim_0018F0 "__OTR__objects/object_o_anime/object_o_anime_Anim_0018F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_o_anime_Anim_0018F0[] = dobject_o_anime_Anim_0018F0; -#else -static const char object_o_anime_Anim_0018F0[] __attribute__((aligned (2))) = dobject_o_anime_Anim_0018F0; -#endif - -#define dobject_o_anime_Anim_001E80 "__OTR__objects/object_o_anime/object_o_anime_Anim_001E80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_o_anime_Anim_001E80[] = dobject_o_anime_Anim_001E80; -#else -static const char object_o_anime_Anim_001E80[] __attribute__((aligned (2))) = dobject_o_anime_Anim_001E80; -#endif - -#define dobject_o_anime_Anim_00213C "__OTR__objects/object_o_anime/object_o_anime_Anim_00213C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_o_anime_Anim_00213C[] = dobject_o_anime_Anim_00213C; -#else -static const char object_o_anime_Anim_00213C[] __attribute__((aligned (2))) = dobject_o_anime_Anim_00213C; -#endif - +#include "align_asset_macro.h" + +#define dobject_o_anime_Anim_000A1C "__OTR__objects/object_o_anime/object_o_anime_Anim_000A1C" +static const ALIGN_ASSET(2) char object_o_anime_Anim_000A1C[] = dobject_o_anime_Anim_000A1C; + +#define dobject_o_anime_Anim_000E78 "__OTR__objects/object_o_anime/object_o_anime_Anim_000E78" +static const ALIGN_ASSET(2) char object_o_anime_Anim_000E78[] = dobject_o_anime_Anim_000E78; + +#define dobject_o_anime_Anim_001300 "__OTR__objects/object_o_anime/object_o_anime_Anim_001300" +static const ALIGN_ASSET(2) char object_o_anime_Anim_001300[] = dobject_o_anime_Anim_001300; + +#define dobject_o_anime_Anim_0017B4 "__OTR__objects/object_o_anime/object_o_anime_Anim_0017B4" +static const ALIGN_ASSET(2) char object_o_anime_Anim_0017B4[] = dobject_o_anime_Anim_0017B4; + +#define dobject_o_anime_Anim_0018F0 "__OTR__objects/object_o_anime/object_o_anime_Anim_0018F0" +static const ALIGN_ASSET(2) char object_o_anime_Anim_0018F0[] = dobject_o_anime_Anim_0018F0; + +#define dobject_o_anime_Anim_001E80 "__OTR__objects/object_o_anime/object_o_anime_Anim_001E80" +static const ALIGN_ASSET(2) char object_o_anime_Anim_001E80[] = dobject_o_anime_Anim_001E80; + +#define dobject_o_anime_Anim_00213C "__OTR__objects/object_o_anime/object_o_anime_Anim_00213C" +static const ALIGN_ASSET(2) char object_o_anime_Anim_00213C[] = dobject_o_anime_Anim_00213C; \ No newline at end of file diff --git a/soh/assets/objects/object_okuta/object_okuta.h b/soh/assets/objects/object_okuta/object_okuta.h index 42f40ecd7..e8b87c4b4 100644 --- a/soh/assets/objects/object_okuta/object_okuta.h +++ b/soh/assets/objects/object_okuta/object_okuta.h @@ -1,233 +1,102 @@ #pragma once -#define dgOctorokShootAnim "__OTR__objects/object_okuta/gOctorokShootAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokShootAnim[] = dgOctorokShootAnim; -#else -static const char gOctorokShootAnim[] __attribute__((aligned (2))) = dgOctorokShootAnim; -#endif - -#define dgOctorokDieAnim "__OTR__objects/object_okuta/gOctorokDieAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokDieAnim[] = dgOctorokDieAnim; -#else -static const char gOctorokDieAnim[] __attribute__((aligned (2))) = dgOctorokDieAnim; -#endif - -#define dgOctorokHideAnim "__OTR__objects/object_okuta/gOctorokHideAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokHideAnim[] = dgOctorokHideAnim; -#else -static const char gOctorokHideAnim[] __attribute__((aligned (2))) = dgOctorokHideAnim; -#endif - -#define dgOctorokFloatAnim "__OTR__objects/object_okuta/gOctorokFloatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokFloatAnim[] = dgOctorokFloatAnim; -#else -static const char gOctorokFloatAnim[] __attribute__((aligned (2))) = dgOctorokFloatAnim; -#endif - -#define dgOctorokHitAnim "__OTR__objects/object_okuta/gOctorokHitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokHitAnim[] = dgOctorokHitAnim; -#else -static const char gOctorokHitAnim[] __attribute__((aligned (2))) = dgOctorokHitAnim; -#endif - -#define dgOctorokAppearAnim "__OTR__objects/object_okuta/gOctorokAppearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokAppearAnim[] = dgOctorokAppearAnim; -#else -static const char gOctorokAppearAnim[] __attribute__((aligned (2))) = dgOctorokAppearAnim; -#endif - -#define dgOctorokRoughSkinTex "__OTR__objects/object_okuta/gOctorokRoughSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokRoughSkinTex[] = dgOctorokRoughSkinTex; -#else -static const char gOctorokRoughSkinTex[] __attribute__((aligned (2))) = dgOctorokRoughSkinTex; -#endif - -#define dgOctorokStripesTex "__OTR__objects/object_okuta/gOctorokStripesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokStripesTex[] = dgOctorokStripesTex; -#else -static const char gOctorokStripesTex[] __attribute__((aligned (2))) = dgOctorokStripesTex; -#endif - -#define dgOctorokScalesTex "__OTR__objects/object_okuta/gOctorokScalesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokScalesTex[] = dgOctorokScalesTex; -#else -static const char gOctorokScalesTex[] __attribute__((aligned (2))) = dgOctorokScalesTex; -#endif - -#define dgOctorokSnoutConnectionTex "__OTR__objects/object_okuta/gOctorokSnoutConnectionTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSnoutConnectionTex[] = dgOctorokSnoutConnectionTex; -#else -static const char gOctorokSnoutConnectionTex[] __attribute__((aligned (2))) = dgOctorokSnoutConnectionTex; -#endif - -#define dgOctorokMouthTex "__OTR__objects/object_okuta/gOctorokMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokMouthTex[] = dgOctorokMouthTex; -#else -static const char gOctorokMouthTex[] __attribute__((aligned (2))) = dgOctorokMouthTex; -#endif - -#define dgOctorokArmTex "__OTR__objects/object_okuta/gOctorokArmTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokArmTex[] = dgOctorokArmTex; -#else -static const char gOctorokArmTex[] __attribute__((aligned (2))) = dgOctorokArmTex; -#endif - -#define dgOctorokFinTex "__OTR__objects/object_okuta/gOctorokFinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokFinTex[] = dgOctorokFinTex; -#else -static const char gOctorokFinTex[] __attribute__((aligned (2))) = dgOctorokFinTex; -#endif - -#define dgOctorokEyeTex "__OTR__objects/object_okuta/gOctorokEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokEyeTex[] = dgOctorokEyeTex; -#else -static const char gOctorokEyeTex[] __attribute__((aligned (2))) = dgOctorokEyeTex; -#endif - -#define dgOctorokFadeToBlackTex "__OTR__objects/object_okuta/gOctorokFadeToBlackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokFadeToBlackTex[] = dgOctorokFadeToBlackTex; -#else -static const char gOctorokFadeToBlackTex[] __attribute__((aligned (2))) = dgOctorokFadeToBlackTex; -#endif - -#define dgOctorokSkel "__OTR__objects/object_okuta/gOctorokSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkel[] = dgOctorokSkel; -#else -static const char gOctorokSkel[] __attribute__((aligned (2))) = dgOctorokSkel; -#endif - -#define dgOctorokProjectileTex "__OTR__objects/object_okuta/gOctorokProjectileTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokProjectileTex[] = dgOctorokProjectileTex; -#else -static const char gOctorokProjectileTex[] __attribute__((aligned (2))) = dgOctorokProjectileTex; -#endif - -#define dgOctorokProjectileDL "__OTR__objects/object_okuta/gOctorokProjectileDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokProjectileDL[] = dgOctorokProjectileDL; -#else -static const char gOctorokProjectileDL[] __attribute__((aligned (2))) = dgOctorokProjectileDL; -#endif - -#define dgOctorokSkelLimbsLimb_003440DL_0017C0 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003440DL_0017C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_003440DL_0017C0[] = dgOctorokSkelLimbsLimb_003440DL_0017C0; -#else -static const char gOctorokSkelLimbsLimb_003440DL_0017C0[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_003440DL_0017C0; -#endif - -#define dgOctorokSkelLimbsLimb_003464DL_001A70 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003464DL_001A70" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_003464DL_001A70[] = dgOctorokSkelLimbsLimb_003464DL_001A70; -#else -static const char gOctorokSkelLimbsLimb_003464DL_001A70[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_003464DL_001A70; -#endif - -#define dgOctorokSkelLimbsLimb_0034A0DL_001B70 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0034A0DL_001B70" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_0034A0DL_001B70[] = dgOctorokSkelLimbsLimb_0034A0DL_001B70; -#else -static const char gOctorokSkelLimbsLimb_0034A0DL_001B70[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_0034A0DL_001B70; -#endif - -#define dgOctorokSkelLimbsLimb_0034ACDL_001C00 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0034ACDL_001C00" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_0034ACDL_001C00[] = dgOctorokSkelLimbsLimb_0034ACDL_001C00; -#else -static const char gOctorokSkelLimbsLimb_0034ACDL_001C00[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_0034ACDL_001C00; -#endif - -#define dgOctorokSkelLimbsLimb_0034B8DL_001C98 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0034B8DL_001C98" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_0034B8DL_001C98[] = dgOctorokSkelLimbsLimb_0034B8DL_001C98; -#else -static const char gOctorokSkelLimbsLimb_0034B8DL_001C98[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_0034B8DL_001C98; -#endif - -#define dgOctorokSkelLimbsLimb_0034F4DL_001EE0 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0034F4DL_001EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_0034F4DL_001EE0[] = dgOctorokSkelLimbsLimb_0034F4DL_001EE0; -#else -static const char gOctorokSkelLimbsLimb_0034F4DL_001EE0[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_0034F4DL_001EE0; -#endif - -#define dgOctorokSkelLimbsLimb_003500DL_001F70 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003500DL_001F70" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_003500DL_001F70[] = dgOctorokSkelLimbsLimb_003500DL_001F70; -#else -static const char gOctorokSkelLimbsLimb_003500DL_001F70[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_003500DL_001F70; -#endif - -#define dgOctorokSkelLimbsLimb_00350CDL_002008 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_00350CDL_002008" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_00350CDL_002008[] = dgOctorokSkelLimbsLimb_00350CDL_002008; -#else -static const char gOctorokSkelLimbsLimb_00350CDL_002008[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_00350CDL_002008; -#endif - -#define dgOctorokSkelLimbsLimb_003548DL_002098 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003548DL_002098" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_003548DL_002098[] = dgOctorokSkelLimbsLimb_003548DL_002098; -#else -static const char gOctorokSkelLimbsLimb_003548DL_002098[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_003548DL_002098; -#endif - -#define dgOctorokSkelLimbsLimb_003554DL_002128 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003554DL_002128" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_003554DL_002128[] = dgOctorokSkelLimbsLimb_003554DL_002128; -#else -static const char gOctorokSkelLimbsLimb_003554DL_002128[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_003554DL_002128; -#endif - -#define dgOctorokSkelLimbsLimb_003560DL_0021C0 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003560DL_0021C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_003560DL_0021C0[] = dgOctorokSkelLimbsLimb_003560DL_0021C0; -#else -static const char gOctorokSkelLimbsLimb_003560DL_0021C0[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_003560DL_0021C0; -#endif - -#define dgOctorokSkelLimbsLimb_00359CDL_001D28 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_00359CDL_001D28" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_00359CDL_001D28[] = dgOctorokSkelLimbsLimb_00359CDL_001D28; -#else -static const char gOctorokSkelLimbsLimb_00359CDL_001D28[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_00359CDL_001D28; -#endif - -#define dgOctorokSkelLimbsLimb_0035A8DL_001DB8 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0035A8DL_001DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_0035A8DL_001DB8[] = dgOctorokSkelLimbsLimb_0035A8DL_001DB8; -#else -static const char gOctorokSkelLimbsLimb_0035A8DL_001DB8[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_0035A8DL_001DB8; -#endif - -#define dgOctorokSkelLimbsLimb_0035B4DL_001E50 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0035B4DL_001E50" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_0035B4DL_001E50[] = dgOctorokSkelLimbsLimb_0035B4DL_001E50; -#else -static const char gOctorokSkelLimbsLimb_0035B4DL_001E50[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_0035B4DL_001E50; -#endif - -#define dgOctorokSkelLimbsLimb_0035C0DL_0016D0 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0035C0DL_0016D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gOctorokSkelLimbsLimb_0035C0DL_0016D0[] = dgOctorokSkelLimbsLimb_0035C0DL_0016D0; -#else -static const char gOctorokSkelLimbsLimb_0035C0DL_0016D0[] __attribute__((aligned (2))) = dgOctorokSkelLimbsLimb_0035C0DL_0016D0; -#endif - +#include "align_asset_macro.h" + +#define dgOctorokShootAnim "__OTR__objects/object_okuta/gOctorokShootAnim" +static const ALIGN_ASSET(2) char gOctorokShootAnim[] = dgOctorokShootAnim; + +#define dgOctorokDieAnim "__OTR__objects/object_okuta/gOctorokDieAnim" +static const ALIGN_ASSET(2) char gOctorokDieAnim[] = dgOctorokDieAnim; + +#define dgOctorokHideAnim "__OTR__objects/object_okuta/gOctorokHideAnim" +static const ALIGN_ASSET(2) char gOctorokHideAnim[] = dgOctorokHideAnim; + +#define dgOctorokFloatAnim "__OTR__objects/object_okuta/gOctorokFloatAnim" +static const ALIGN_ASSET(2) char gOctorokFloatAnim[] = dgOctorokFloatAnim; + +#define dgOctorokHitAnim "__OTR__objects/object_okuta/gOctorokHitAnim" +static const ALIGN_ASSET(2) char gOctorokHitAnim[] = dgOctorokHitAnim; + +#define dgOctorokAppearAnim "__OTR__objects/object_okuta/gOctorokAppearAnim" +static const ALIGN_ASSET(2) char gOctorokAppearAnim[] = dgOctorokAppearAnim; + +#define dgOctorokRoughSkinTex "__OTR__objects/object_okuta/gOctorokRoughSkinTex" +static const ALIGN_ASSET(2) char gOctorokRoughSkinTex[] = dgOctorokRoughSkinTex; + +#define dgOctorokStripesTex "__OTR__objects/object_okuta/gOctorokStripesTex" +static const ALIGN_ASSET(2) char gOctorokStripesTex[] = dgOctorokStripesTex; + +#define dgOctorokScalesTex "__OTR__objects/object_okuta/gOctorokScalesTex" +static const ALIGN_ASSET(2) char gOctorokScalesTex[] = dgOctorokScalesTex; + +#define dgOctorokSnoutConnectionTex "__OTR__objects/object_okuta/gOctorokSnoutConnectionTex" +static const ALIGN_ASSET(2) char gOctorokSnoutConnectionTex[] = dgOctorokSnoutConnectionTex; + +#define dgOctorokMouthTex "__OTR__objects/object_okuta/gOctorokMouthTex" +static const ALIGN_ASSET(2) char gOctorokMouthTex[] = dgOctorokMouthTex; + +#define dgOctorokArmTex "__OTR__objects/object_okuta/gOctorokArmTex" +static const ALIGN_ASSET(2) char gOctorokArmTex[] = dgOctorokArmTex; + +#define dgOctorokFinTex "__OTR__objects/object_okuta/gOctorokFinTex" +static const ALIGN_ASSET(2) char gOctorokFinTex[] = dgOctorokFinTex; + +#define dgOctorokEyeTex "__OTR__objects/object_okuta/gOctorokEyeTex" +static const ALIGN_ASSET(2) char gOctorokEyeTex[] = dgOctorokEyeTex; + +#define dgOctorokFadeToBlackTex "__OTR__objects/object_okuta/gOctorokFadeToBlackTex" +static const ALIGN_ASSET(2) char gOctorokFadeToBlackTex[] = dgOctorokFadeToBlackTex; + +#define dgOctorokSkel "__OTR__objects/object_okuta/gOctorokSkel" +static const ALIGN_ASSET(2) char gOctorokSkel[] = dgOctorokSkel; + +#define dgOctorokProjectileTex "__OTR__objects/object_okuta/gOctorokProjectileTex" +static const ALIGN_ASSET(2) char gOctorokProjectileTex[] = dgOctorokProjectileTex; + +#define dgOctorokProjectileDL "__OTR__objects/object_okuta/gOctorokProjectileDL" +static const ALIGN_ASSET(2) char gOctorokProjectileDL[] = dgOctorokProjectileDL; + +#define dgOctorokSkelLimbsLimb_003440DL_0017C0 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003440DL_0017C0" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_003440DL_0017C0[] = dgOctorokSkelLimbsLimb_003440DL_0017C0; + +#define dgOctorokSkelLimbsLimb_003464DL_001A70 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003464DL_001A70" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_003464DL_001A70[] = dgOctorokSkelLimbsLimb_003464DL_001A70; + +#define dgOctorokSkelLimbsLimb_0034A0DL_001B70 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0034A0DL_001B70" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_0034A0DL_001B70[] = dgOctorokSkelLimbsLimb_0034A0DL_001B70; + +#define dgOctorokSkelLimbsLimb_0034ACDL_001C00 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0034ACDL_001C00" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_0034ACDL_001C00[] = dgOctorokSkelLimbsLimb_0034ACDL_001C00; + +#define dgOctorokSkelLimbsLimb_0034B8DL_001C98 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0034B8DL_001C98" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_0034B8DL_001C98[] = dgOctorokSkelLimbsLimb_0034B8DL_001C98; + +#define dgOctorokSkelLimbsLimb_0034F4DL_001EE0 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0034F4DL_001EE0" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_0034F4DL_001EE0[] = dgOctorokSkelLimbsLimb_0034F4DL_001EE0; + +#define dgOctorokSkelLimbsLimb_003500DL_001F70 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003500DL_001F70" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_003500DL_001F70[] = dgOctorokSkelLimbsLimb_003500DL_001F70; + +#define dgOctorokSkelLimbsLimb_00350CDL_002008 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_00350CDL_002008" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_00350CDL_002008[] = dgOctorokSkelLimbsLimb_00350CDL_002008; + +#define dgOctorokSkelLimbsLimb_003548DL_002098 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003548DL_002098" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_003548DL_002098[] = dgOctorokSkelLimbsLimb_003548DL_002098; + +#define dgOctorokSkelLimbsLimb_003554DL_002128 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003554DL_002128" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_003554DL_002128[] = dgOctorokSkelLimbsLimb_003554DL_002128; + +#define dgOctorokSkelLimbsLimb_003560DL_0021C0 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_003560DL_0021C0" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_003560DL_0021C0[] = dgOctorokSkelLimbsLimb_003560DL_0021C0; + +#define dgOctorokSkelLimbsLimb_00359CDL_001D28 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_00359CDL_001D28" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_00359CDL_001D28[] = dgOctorokSkelLimbsLimb_00359CDL_001D28; + +#define dgOctorokSkelLimbsLimb_0035A8DL_001DB8 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0035A8DL_001DB8" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_0035A8DL_001DB8[] = dgOctorokSkelLimbsLimb_0035A8DL_001DB8; + +#define dgOctorokSkelLimbsLimb_0035B4DL_001E50 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0035B4DL_001E50" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_0035B4DL_001E50[] = dgOctorokSkelLimbsLimb_0035B4DL_001E50; + +#define dgOctorokSkelLimbsLimb_0035C0DL_0016D0 "__OTR__objects/object_okuta/gOctorokSkelLimbsLimb_0035C0DL_0016D0" +static const ALIGN_ASSET(2) char gOctorokSkelLimbsLimb_0035C0DL_0016D0[] = dgOctorokSkelLimbsLimb_0035C0DL_0016D0; \ No newline at end of file diff --git a/soh/assets/objects/object_opening_demo1/object_opening_demo1.h b/soh/assets/objects/object_opening_demo1/object_opening_demo1.h index 24079aad1..12f9d2066 100644 --- a/soh/assets/objects/object_opening_demo1/object_opening_demo1.h +++ b/soh/assets/objects/object_opening_demo1/object_opening_demo1.h @@ -1,51 +1,24 @@ #pragma once -#define dobject_opening_demo1_Anim_000450 "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_000450" -#ifdef _WIN32 -static const __declspec(align(2)) char object_opening_demo1_Anim_000450[] = dobject_opening_demo1_Anim_000450; -#else -static const char object_opening_demo1_Anim_000450[] __attribute__((aligned (2))) = dobject_opening_demo1_Anim_000450; -#endif - -#define dobject_opening_demo1_Anim_001410 "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_001410" -#ifdef _WIN32 -static const __declspec(align(2)) char object_opening_demo1_Anim_001410[] = dobject_opening_demo1_Anim_001410; -#else -static const char object_opening_demo1_Anim_001410[] __attribute__((aligned (2))) = dobject_opening_demo1_Anim_001410; -#endif - -#define dobject_opening_demo1_Anim_002574 "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_002574" -#ifdef _WIN32 -static const __declspec(align(2)) char object_opening_demo1_Anim_002574[] = dobject_opening_demo1_Anim_002574; -#else -static const char object_opening_demo1_Anim_002574[] __attribute__((aligned (2))) = dobject_opening_demo1_Anim_002574; -#endif - -#define dobject_opening_demo1_Anim_0029CC "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_0029CC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_opening_demo1_Anim_0029CC[] = dobject_opening_demo1_Anim_0029CC; -#else -static const char object_opening_demo1_Anim_0029CC[] __attribute__((aligned (2))) = dobject_opening_demo1_Anim_0029CC; -#endif - -#define dobject_opening_demo1_Anim_00420C "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_00420C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_opening_demo1_Anim_00420C[] = dobject_opening_demo1_Anim_00420C; -#else -static const char object_opening_demo1_Anim_00420C[] __attribute__((aligned (2))) = dobject_opening_demo1_Anim_00420C; -#endif - -#define dobject_opening_demo1_Anim_0048FC "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_0048FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_opening_demo1_Anim_0048FC[] = dobject_opening_demo1_Anim_0048FC; -#else -static const char object_opening_demo1_Anim_0048FC[] __attribute__((aligned (2))) = dobject_opening_demo1_Anim_0048FC; -#endif - -#define dobject_opening_demo1_Anim_00504C "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_00504C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_opening_demo1_Anim_00504C[] = dobject_opening_demo1_Anim_00504C; -#else -static const char object_opening_demo1_Anim_00504C[] __attribute__((aligned (2))) = dobject_opening_demo1_Anim_00504C; -#endif - +#include "align_asset_macro.h" + +#define dobject_opening_demo1_Anim_000450 "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_000450" +static const ALIGN_ASSET(2) char object_opening_demo1_Anim_000450[] = dobject_opening_demo1_Anim_000450; + +#define dobject_opening_demo1_Anim_001410 "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_001410" +static const ALIGN_ASSET(2) char object_opening_demo1_Anim_001410[] = dobject_opening_demo1_Anim_001410; + +#define dobject_opening_demo1_Anim_002574 "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_002574" +static const ALIGN_ASSET(2) char object_opening_demo1_Anim_002574[] = dobject_opening_demo1_Anim_002574; + +#define dobject_opening_demo1_Anim_0029CC "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_0029CC" +static const ALIGN_ASSET(2) char object_opening_demo1_Anim_0029CC[] = dobject_opening_demo1_Anim_0029CC; + +#define dobject_opening_demo1_Anim_00420C "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_00420C" +static const ALIGN_ASSET(2) char object_opening_demo1_Anim_00420C[] = dobject_opening_demo1_Anim_00420C; + +#define dobject_opening_demo1_Anim_0048FC "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_0048FC" +static const ALIGN_ASSET(2) char object_opening_demo1_Anim_0048FC[] = dobject_opening_demo1_Anim_0048FC; + +#define dobject_opening_demo1_Anim_00504C "__OTR__objects/object_opening_demo1/object_opening_demo1_Anim_00504C" +static const ALIGN_ASSET(2) char object_opening_demo1_Anim_00504C[] = dobject_opening_demo1_Anim_00504C; \ No newline at end of file diff --git a/soh/assets/objects/object_os/object_os.h b/soh/assets/objects/object_os/object_os.h index 3c77203e7..e3c561257 100644 --- a/soh/assets/objects/object_os/object_os.h +++ b/soh/assets/objects/object_os/object_os.h @@ -1,170 +1,75 @@ #pragma once -#define dobject_os_Anim_0002E4 "__OTR__objects/object_os/object_os_Anim_0002E4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Anim_0002E4[] = dobject_os_Anim_0002E4; -#else -static const char object_os_Anim_0002E4[] __attribute__((aligned (2))) = dobject_os_Anim_0002E4; -#endif - -#define dobject_os_DL_001D80 "__OTR__objects/object_os/object_os_DL_001D80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_DL_001D80[] = dobject_os_DL_001D80; -#else -static const char object_os_DL_001D80[] __attribute__((aligned (2))) = dobject_os_DL_001D80; -#endif - -#define dobject_os_DL_0020A8 "__OTR__objects/object_os/object_os_DL_0020A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_DL_0020A8[] = dobject_os_DL_0020A8; -#else -static const char object_os_DL_0020A8[] __attribute__((aligned (2))) = dobject_os_DL_0020A8; -#endif - -#define dobject_os_DL_0025E8 "__OTR__objects/object_os/object_os_DL_0025E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_DL_0025E8[] = dobject_os_DL_0025E8; -#else -static const char object_os_DL_0025E8[] __attribute__((aligned (2))) = dobject_os_DL_0025E8; -#endif - -#define dobject_os_DL_002718 "__OTR__objects/object_os/object_os_DL_002718" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_DL_002718[] = dobject_os_DL_002718; -#else -static const char object_os_DL_002718[] __attribute__((aligned (2))) = dobject_os_DL_002718; -#endif - -#define dobject_os_DL_002848 "__OTR__objects/object_os/object_os_DL_002848" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_DL_002848[] = dobject_os_DL_002848; -#else -static const char object_os_DL_002848[] __attribute__((aligned (2))) = dobject_os_DL_002848; -#endif - -#define dobject_os_DL_002A00 "__OTR__objects/object_os/object_os_DL_002A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_DL_002A00[] = dobject_os_DL_002A00; -#else -static const char object_os_DL_002A00[] __attribute__((aligned (2))) = dobject_os_DL_002A00; -#endif - -#define dobject_os_DL_002B30 "__OTR__objects/object_os/object_os_DL_002B30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_DL_002B30[] = dobject_os_DL_002B30; -#else -static const char object_os_DL_002B30[] __attribute__((aligned (2))) = dobject_os_DL_002B30; -#endif - -#define dobject_os_DL_002C60 "__OTR__objects/object_os/object_os_DL_002C60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_DL_002C60[] = dobject_os_DL_002C60; -#else -static const char object_os_DL_002C60[] __attribute__((aligned (2))) = dobject_os_DL_002C60; -#endif - -#define dobject_os_TLUT_002E18 "__OTR__objects/object_os/object_os_TLUT_002E18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_TLUT_002E18[] = dobject_os_TLUT_002E18; -#else -static const char object_os_TLUT_002E18[] __attribute__((aligned (2))) = dobject_os_TLUT_002E18; -#endif - -#define dobject_os_TLUT_003018 "__OTR__objects/object_os/object_os_TLUT_003018" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_TLUT_003018[] = dobject_os_TLUT_003018; -#else -static const char object_os_TLUT_003018[] __attribute__((aligned (2))) = dobject_os_TLUT_003018; -#endif - -#define dobject_os_Tex_003218 "__OTR__objects/object_os/object_os_Tex_003218" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_003218[] = dobject_os_Tex_003218; -#else -static const char object_os_Tex_003218[] __attribute__((aligned (2))) = dobject_os_Tex_003218; -#endif - -#define dobject_os_Tex_003258 "__OTR__objects/object_os/object_os_Tex_003258" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_003258[] = dobject_os_Tex_003258; -#else -static const char object_os_Tex_003258[] __attribute__((aligned (2))) = dobject_os_Tex_003258; -#endif - -#define dobject_os_Tex_003358 "__OTR__objects/object_os/object_os_Tex_003358" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_003358[] = dobject_os_Tex_003358; -#else -static const char object_os_Tex_003358[] __attribute__((aligned (2))) = dobject_os_Tex_003358; -#endif - -#define dobject_os_Tex_003398 "__OTR__objects/object_os/object_os_Tex_003398" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_003398[] = dobject_os_Tex_003398; -#else -static const char object_os_Tex_003398[] __attribute__((aligned (2))) = dobject_os_Tex_003398; -#endif - -#define dobject_os_Tex_0033D8 "__OTR__objects/object_os/object_os_Tex_0033D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_0033D8[] = dobject_os_Tex_0033D8; -#else -static const char object_os_Tex_0033D8[] __attribute__((aligned (2))) = dobject_os_Tex_0033D8; -#endif - -#define dgOsEyeClosedTex "__OTR__objects/object_os/gOsEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOsEyeClosedTex[] = dgOsEyeClosedTex; -#else -static const char gOsEyeClosedTex[] __attribute__((aligned (2))) = dgOsEyeClosedTex; -#endif - -#define dgOsEyeOpenTex "__OTR__objects/object_os/gOsEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOsEyeOpenTex[] = dgOsEyeOpenTex; -#else -static const char gOsEyeOpenTex[] __attribute__((aligned (2))) = dgOsEyeOpenTex; -#endif - -#define dobject_os_Tex_003DD8 "__OTR__objects/object_os/object_os_Tex_003DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_003DD8[] = dobject_os_Tex_003DD8; -#else -static const char object_os_Tex_003DD8[] __attribute__((aligned (2))) = dobject_os_Tex_003DD8; -#endif - -#define dobject_os_Tex_003ED8 "__OTR__objects/object_os/object_os_Tex_003ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_003ED8[] = dobject_os_Tex_003ED8; -#else -static const char object_os_Tex_003ED8[] __attribute__((aligned (2))) = dobject_os_Tex_003ED8; -#endif - -#define dobject_os_Tex_0040D8 "__OTR__objects/object_os/object_os_Tex_0040D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_0040D8[] = dobject_os_Tex_0040D8; -#else -static const char object_os_Tex_0040D8[] __attribute__((aligned (2))) = dobject_os_Tex_0040D8; -#endif - -#define dobject_os_Tex_0044D8 "__OTR__objects/object_os/object_os_Tex_0044D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_0044D8[] = dobject_os_Tex_0044D8; -#else -static const char object_os_Tex_0044D8[] __attribute__((aligned (2))) = dobject_os_Tex_0044D8; -#endif - -#define dobject_os_Tex_004558 "__OTR__objects/object_os/object_os_Tex_004558" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Tex_004558[] = dobject_os_Tex_004558; -#else -static const char object_os_Tex_004558[] __attribute__((aligned (2))) = dobject_os_Tex_004558; -#endif - -#define dobject_os_Skel_004658 "__OTR__objects/object_os/object_os_Skel_004658" -#ifdef _WIN32 -static const __declspec(align(2)) char object_os_Skel_004658[] = dobject_os_Skel_004658; -#else -static const char object_os_Skel_004658[] __attribute__((aligned (2))) = dobject_os_Skel_004658; -#endif - +#include "align_asset_macro.h" + +#define dobject_os_Anim_0002E4 "__OTR__objects/object_os/object_os_Anim_0002E4" +static const ALIGN_ASSET(2) char object_os_Anim_0002E4[] = dobject_os_Anim_0002E4; + +#define dobject_os_DL_001D80 "__OTR__objects/object_os/object_os_DL_001D80" +static const ALIGN_ASSET(2) char object_os_DL_001D80[] = dobject_os_DL_001D80; + +#define dobject_os_DL_0020A8 "__OTR__objects/object_os/object_os_DL_0020A8" +static const ALIGN_ASSET(2) char object_os_DL_0020A8[] = dobject_os_DL_0020A8; + +#define dobject_os_DL_0025E8 "__OTR__objects/object_os/object_os_DL_0025E8" +static const ALIGN_ASSET(2) char object_os_DL_0025E8[] = dobject_os_DL_0025E8; + +#define dobject_os_DL_002718 "__OTR__objects/object_os/object_os_DL_002718" +static const ALIGN_ASSET(2) char object_os_DL_002718[] = dobject_os_DL_002718; + +#define dobject_os_DL_002848 "__OTR__objects/object_os/object_os_DL_002848" +static const ALIGN_ASSET(2) char object_os_DL_002848[] = dobject_os_DL_002848; + +#define dobject_os_DL_002A00 "__OTR__objects/object_os/object_os_DL_002A00" +static const ALIGN_ASSET(2) char object_os_DL_002A00[] = dobject_os_DL_002A00; + +#define dobject_os_DL_002B30 "__OTR__objects/object_os/object_os_DL_002B30" +static const ALIGN_ASSET(2) char object_os_DL_002B30[] = dobject_os_DL_002B30; + +#define dobject_os_DL_002C60 "__OTR__objects/object_os/object_os_DL_002C60" +static const ALIGN_ASSET(2) char object_os_DL_002C60[] = dobject_os_DL_002C60; + +#define dobject_os_TLUT_002E18 "__OTR__objects/object_os/object_os_TLUT_002E18" +static const ALIGN_ASSET(2) char object_os_TLUT_002E18[] = dobject_os_TLUT_002E18; + +#define dobject_os_TLUT_003018 "__OTR__objects/object_os/object_os_TLUT_003018" +static const ALIGN_ASSET(2) char object_os_TLUT_003018[] = dobject_os_TLUT_003018; + +#define dobject_os_Tex_003218 "__OTR__objects/object_os/object_os_Tex_003218" +static const ALIGN_ASSET(2) char object_os_Tex_003218[] = dobject_os_Tex_003218; + +#define dobject_os_Tex_003258 "__OTR__objects/object_os/object_os_Tex_003258" +static const ALIGN_ASSET(2) char object_os_Tex_003258[] = dobject_os_Tex_003258; + +#define dobject_os_Tex_003358 "__OTR__objects/object_os/object_os_Tex_003358" +static const ALIGN_ASSET(2) char object_os_Tex_003358[] = dobject_os_Tex_003358; + +#define dobject_os_Tex_003398 "__OTR__objects/object_os/object_os_Tex_003398" +static const ALIGN_ASSET(2) char object_os_Tex_003398[] = dobject_os_Tex_003398; + +#define dobject_os_Tex_0033D8 "__OTR__objects/object_os/object_os_Tex_0033D8" +static const ALIGN_ASSET(2) char object_os_Tex_0033D8[] = dobject_os_Tex_0033D8; + +#define dgOsEyeClosedTex "__OTR__objects/object_os/gOsEyeClosedTex" +static const ALIGN_ASSET(2) char gOsEyeClosedTex[] = dgOsEyeClosedTex; + +#define dgOsEyeOpenTex "__OTR__objects/object_os/gOsEyeOpenTex" +static const ALIGN_ASSET(2) char gOsEyeOpenTex[] = dgOsEyeOpenTex; + +#define dobject_os_Tex_003DD8 "__OTR__objects/object_os/object_os_Tex_003DD8" +static const ALIGN_ASSET(2) char object_os_Tex_003DD8[] = dobject_os_Tex_003DD8; + +#define dobject_os_Tex_003ED8 "__OTR__objects/object_os/object_os_Tex_003ED8" +static const ALIGN_ASSET(2) char object_os_Tex_003ED8[] = dobject_os_Tex_003ED8; + +#define dobject_os_Tex_0040D8 "__OTR__objects/object_os/object_os_Tex_0040D8" +static const ALIGN_ASSET(2) char object_os_Tex_0040D8[] = dobject_os_Tex_0040D8; + +#define dobject_os_Tex_0044D8 "__OTR__objects/object_os/object_os_Tex_0044D8" +static const ALIGN_ASSET(2) char object_os_Tex_0044D8[] = dobject_os_Tex_0044D8; + +#define dobject_os_Tex_004558 "__OTR__objects/object_os/object_os_Tex_004558" +static const ALIGN_ASSET(2) char object_os_Tex_004558[] = dobject_os_Tex_004558; + +#define dobject_os_Skel_004658 "__OTR__objects/object_os/object_os_Skel_004658" +static const ALIGN_ASSET(2) char object_os_Skel_004658[] = dobject_os_Skel_004658; \ No newline at end of file diff --git a/soh/assets/objects/object_os_anime/object_os_anime.h b/soh/assets/objects/object_os_anime/object_os_anime.h index b5b5de054..6a0b01991 100644 --- a/soh/assets/objects/object_os_anime/object_os_anime.h +++ b/soh/assets/objects/object_os_anime/object_os_anime.h @@ -1,457 +1,198 @@ #pragma once -#define dgObjOsAnim_00B4 "__OTR__objects/object_os_anime/gObjOsAnim_00B4" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_00B4[] = dgObjOsAnim_00B4; -#else -static const char gObjOsAnim_00B4[] __attribute__((aligned (2))) = dgObjOsAnim_00B4; -#endif - -#define dgObjOsAnim_0170 "__OTR__objects/object_os_anime/gObjOsAnim_0170" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_0170[] = dgObjOsAnim_0170; -#else -static const char gObjOsAnim_0170[] __attribute__((aligned (2))) = dgObjOsAnim_0170; -#endif - -#define dgObjOsAnim_0228 "__OTR__objects/object_os_anime/gObjOsAnim_0228" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_0228[] = dgObjOsAnim_0228; -#else -static const char gObjOsAnim_0228[] __attribute__((aligned (2))) = dgObjOsAnim_0228; -#endif - -#define dgObjOsAnim_0718 "__OTR__objects/object_os_anime/gObjOsAnim_0718" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_0718[] = dgObjOsAnim_0718; -#else -static const char gObjOsAnim_0718[] __attribute__((aligned (2))) = dgObjOsAnim_0718; -#endif - -#define dgObjOsAnim_07D0 "__OTR__objects/object_os_anime/gObjOsAnim_07D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_07D0[] = dgObjOsAnim_07D0; -#else -static const char gObjOsAnim_07D0[] __attribute__((aligned (2))) = dgObjOsAnim_07D0; -#endif - -#define dgObjOsAnim_0894 "__OTR__objects/object_os_anime/gObjOsAnim_0894" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_0894[] = dgObjOsAnim_0894; -#else -static const char gObjOsAnim_0894[] __attribute__((aligned (2))) = dgObjOsAnim_0894; -#endif - -#define dgObjOsAnim_092C "__OTR__objects/object_os_anime/gObjOsAnim_092C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_092C[] = dgObjOsAnim_092C; -#else -static const char gObjOsAnim_092C[] __attribute__((aligned (2))) = dgObjOsAnim_092C; -#endif - -#define dgObjOsAnim_0BFC "__OTR__objects/object_os_anime/gObjOsAnim_0BFC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_0BFC[] = dgObjOsAnim_0BFC; -#else -static const char gObjOsAnim_0BFC[] __attribute__((aligned (2))) = dgObjOsAnim_0BFC; -#endif - -#define dgObjOsAnim_0FE4 "__OTR__objects/object_os_anime/gObjOsAnim_0FE4" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_0FE4[] = dgObjOsAnim_0FE4; -#else -static const char gObjOsAnim_0FE4[] __attribute__((aligned (2))) = dgObjOsAnim_0FE4; -#endif - -#define dgObjOsAnim_12E8 "__OTR__objects/object_os_anime/gObjOsAnim_12E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_12E8[] = dgObjOsAnim_12E8; -#else -static const char gObjOsAnim_12E8[] __attribute__((aligned (2))) = dgObjOsAnim_12E8; -#endif - -#define dgObjOsAnim_14A0 "__OTR__objects/object_os_anime/gObjOsAnim_14A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_14A0[] = dgObjOsAnim_14A0; -#else -static const char gObjOsAnim_14A0[] __attribute__((aligned (2))) = dgObjOsAnim_14A0; -#endif - -#define dgObjOsAnim_1650 "__OTR__objects/object_os_anime/gObjOsAnim_1650" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_1650[] = dgObjOsAnim_1650; -#else -static const char gObjOsAnim_1650[] __attribute__((aligned (2))) = dgObjOsAnim_1650; -#endif - -#define dgObjOsAnim_16EC "__OTR__objects/object_os_anime/gObjOsAnim_16EC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_16EC[] = dgObjOsAnim_16EC; -#else -static const char gObjOsAnim_16EC[] __attribute__((aligned (2))) = dgObjOsAnim_16EC; -#endif - -#define dgObjOsAnim_18A0 "__OTR__objects/object_os_anime/gObjOsAnim_18A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_18A0[] = dgObjOsAnim_18A0; -#else -static const char gObjOsAnim_18A0[] __attribute__((aligned (2))) = dgObjOsAnim_18A0; -#endif - -#define dgObjOsAnim_1E7C "__OTR__objects/object_os_anime/gObjOsAnim_1E7C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_1E7C[] = dgObjOsAnim_1E7C; -#else -static const char gObjOsAnim_1E7C[] __attribute__((aligned (2))) = dgObjOsAnim_1E7C; -#endif - -#define dgObjOsAnim_1F18 "__OTR__objects/object_os_anime/gObjOsAnim_1F18" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_1F18[] = dgObjOsAnim_1F18; -#else -static const char gObjOsAnim_1F18[] __attribute__((aligned (2))) = dgObjOsAnim_1F18; -#endif - -#define dgObjOsAnim_2160 "__OTR__objects/object_os_anime/gObjOsAnim_2160" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_2160[] = dgObjOsAnim_2160; -#else -static const char gObjOsAnim_2160[] __attribute__((aligned (2))) = dgObjOsAnim_2160; -#endif - -#define dgObjOsAnim_25D0 "__OTR__objects/object_os_anime/gObjOsAnim_25D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_25D0[] = dgObjOsAnim_25D0; -#else -static const char gObjOsAnim_25D0[] __attribute__((aligned (2))) = dgObjOsAnim_25D0; -#endif - -#define dgObjOsAnim_265C "__OTR__objects/object_os_anime/gObjOsAnim_265C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_265C[] = dgObjOsAnim_265C; -#else -static const char gObjOsAnim_265C[] __attribute__((aligned (2))) = dgObjOsAnim_265C; -#endif - -#define dgObjOsAnim_2850 "__OTR__objects/object_os_anime/gObjOsAnim_2850" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_2850[] = dgObjOsAnim_2850; -#else -static const char gObjOsAnim_2850[] __attribute__((aligned (2))) = dgObjOsAnim_2850; -#endif - -#define dgObjOsAnim_28DC "__OTR__objects/object_os_anime/gObjOsAnim_28DC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_28DC[] = dgObjOsAnim_28DC; -#else -static const char gObjOsAnim_28DC[] __attribute__((aligned (2))) = dgObjOsAnim_28DC; -#endif - -#define dgObjOsAnim_2D0C "__OTR__objects/object_os_anime/gObjOsAnim_2D0C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_2D0C[] = dgObjOsAnim_2D0C; -#else -static const char gObjOsAnim_2D0C[] __attribute__((aligned (2))) = dgObjOsAnim_2D0C; -#endif - -#define dgObjOsAnim_2DC0 "__OTR__objects/object_os_anime/gObjOsAnim_2DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_2DC0[] = dgObjOsAnim_2DC0; -#else -static const char gObjOsAnim_2DC0[] __attribute__((aligned (2))) = dgObjOsAnim_2DC0; -#endif - -#define dgObjOsAnim_300C "__OTR__objects/object_os_anime/gObjOsAnim_300C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_300C[] = dgObjOsAnim_300C; -#else -static const char gObjOsAnim_300C[] __attribute__((aligned (2))) = dgObjOsAnim_300C; -#endif - -#define dgObjOsAnim_31B0 "__OTR__objects/object_os_anime/gObjOsAnim_31B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_31B0[] = dgObjOsAnim_31B0; -#else -static const char gObjOsAnim_31B0[] __attribute__((aligned (2))) = dgObjOsAnim_31B0; -#endif - -#define dgObjOsAnim_33B4 "__OTR__objects/object_os_anime/gObjOsAnim_33B4" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_33B4[] = dgObjOsAnim_33B4; -#else -static const char gObjOsAnim_33B4[] __attribute__((aligned (2))) = dgObjOsAnim_33B4; -#endif - -#define dgObjOsAnim_3D84 "__OTR__objects/object_os_anime/gObjOsAnim_3D84" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_3D84[] = dgObjOsAnim_3D84; -#else -static const char gObjOsAnim_3D84[] __attribute__((aligned (2))) = dgObjOsAnim_3D84; -#endif - -#define dgObjOsAnim_41F8 "__OTR__objects/object_os_anime/gObjOsAnim_41F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_41F8[] = dgObjOsAnim_41F8; -#else -static const char gObjOsAnim_41F8[] __attribute__((aligned (2))) = dgObjOsAnim_41F8; -#endif - -#define dgObjOsAnim_42AC "__OTR__objects/object_os_anime/gObjOsAnim_42AC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_42AC[] = dgObjOsAnim_42AC; -#else -static const char gObjOsAnim_42AC[] __attribute__((aligned (2))) = dgObjOsAnim_42AC; -#endif - -#define dgObjOsAnim_4408 "__OTR__objects/object_os_anime/gObjOsAnim_4408" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_4408[] = dgObjOsAnim_4408; -#else -static const char gObjOsAnim_4408[] __attribute__((aligned (2))) = dgObjOsAnim_4408; -#endif - -#define dgObjOsAnim_4788 "__OTR__objects/object_os_anime/gObjOsAnim_4788" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_4788[] = dgObjOsAnim_4788; -#else -static const char gObjOsAnim_4788[] __attribute__((aligned (2))) = dgObjOsAnim_4788; -#endif - -#define dgObjOsAnim_4C4C "__OTR__objects/object_os_anime/gObjOsAnim_4C4C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_4C4C[] = dgObjOsAnim_4C4C; -#else -static const char gObjOsAnim_4C4C[] __attribute__((aligned (2))) = dgObjOsAnim_4C4C; -#endif - -#define dgObjOsAnim_4CF4 "__OTR__objects/object_os_anime/gObjOsAnim_4CF4" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_4CF4[] = dgObjOsAnim_4CF4; -#else -static const char gObjOsAnim_4CF4[] __attribute__((aligned (2))) = dgObjOsAnim_4CF4; -#endif - -#define dgObjOsAnim_4E90 "__OTR__objects/object_os_anime/gObjOsAnim_4E90" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_4E90[] = dgObjOsAnim_4E90; -#else -static const char gObjOsAnim_4E90[] __attribute__((aligned (2))) = dgObjOsAnim_4E90; -#endif - -#define dgObjOsAnim_4F28 "__OTR__objects/object_os_anime/gObjOsAnim_4F28" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_4F28[] = dgObjOsAnim_4F28; -#else -static const char gObjOsAnim_4F28[] __attribute__((aligned (2))) = dgObjOsAnim_4F28; -#endif - -#define dgObjOsAnim_5808 "__OTR__objects/object_os_anime/gObjOsAnim_5808" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_5808[] = dgObjOsAnim_5808; -#else -static const char gObjOsAnim_5808[] __attribute__((aligned (2))) = dgObjOsAnim_5808; -#endif - -#define dgObjOsAnim_62DC "__OTR__objects/object_os_anime/gObjOsAnim_62DC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_62DC[] = dgObjOsAnim_62DC; -#else -static const char gObjOsAnim_62DC[] __attribute__((aligned (2))) = dgObjOsAnim_62DC; -#endif - -#define dgObjOsAnim_6458 "__OTR__objects/object_os_anime/gObjOsAnim_6458" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_6458[] = dgObjOsAnim_6458; -#else -static const char gObjOsAnim_6458[] __attribute__((aligned (2))) = dgObjOsAnim_6458; -#endif - -#define dgObjOsAnim_6518 "__OTR__objects/object_os_anime/gObjOsAnim_6518" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_6518[] = dgObjOsAnim_6518; -#else -static const char gObjOsAnim_6518[] __attribute__((aligned (2))) = dgObjOsAnim_6518; -#endif - -#define dgObjOsAnim_65E0 "__OTR__objects/object_os_anime/gObjOsAnim_65E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_65E0[] = dgObjOsAnim_65E0; -#else -static const char gObjOsAnim_65E0[] __attribute__((aligned (2))) = dgObjOsAnim_65E0; -#endif - -#define dgObjOsAnim_6A60 "__OTR__objects/object_os_anime/gObjOsAnim_6A60" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_6A60[] = dgObjOsAnim_6A60; -#else -static const char gObjOsAnim_6A60[] __attribute__((aligned (2))) = dgObjOsAnim_6A60; -#endif - -#define dgObjOsAnim_6EE0 "__OTR__objects/object_os_anime/gObjOsAnim_6EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_6EE0[] = dgObjOsAnim_6EE0; -#else -static const char gObjOsAnim_6EE0[] __attribute__((aligned (2))) = dgObjOsAnim_6EE0; -#endif - -#define dgObjOsAnim_6F9C "__OTR__objects/object_os_anime/gObjOsAnim_6F9C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_6F9C[] = dgObjOsAnim_6F9C; -#else -static const char gObjOsAnim_6F9C[] __attribute__((aligned (2))) = dgObjOsAnim_6F9C; -#endif - -#define dgObjOsAnim_7064 "__OTR__objects/object_os_anime/gObjOsAnim_7064" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_7064[] = dgObjOsAnim_7064; -#else -static const char gObjOsAnim_7064[] __attribute__((aligned (2))) = dgObjOsAnim_7064; -#endif - -#define dgObjOsAnim_7120 "__OTR__objects/object_os_anime/gObjOsAnim_7120" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_7120[] = dgObjOsAnim_7120; -#else -static const char gObjOsAnim_7120[] __attribute__((aligned (2))) = dgObjOsAnim_7120; -#endif - -#define dgObjOsAnim_7454 "__OTR__objects/object_os_anime/gObjOsAnim_7454" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_7454[] = dgObjOsAnim_7454; -#else -static const char gObjOsAnim_7454[] __attribute__((aligned (2))) = dgObjOsAnim_7454; -#endif - -#define dgObjOsAnim_7830 "__OTR__objects/object_os_anime/gObjOsAnim_7830" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_7830[] = dgObjOsAnim_7830; -#else -static const char gObjOsAnim_7830[] __attribute__((aligned (2))) = dgObjOsAnim_7830; -#endif - -#define dgObjOsAnim_7D94 "__OTR__objects/object_os_anime/gObjOsAnim_7D94" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_7D94[] = dgObjOsAnim_7D94; -#else -static const char gObjOsAnim_7D94[] __attribute__((aligned (2))) = dgObjOsAnim_7D94; -#endif - -#define dgObjOsAnim_7E64 "__OTR__objects/object_os_anime/gObjOsAnim_7E64" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_7E64[] = dgObjOsAnim_7E64; -#else -static const char gObjOsAnim_7E64[] __attribute__((aligned (2))) = dgObjOsAnim_7E64; -#endif - -#define dgObjOsAnim_7F38 "__OTR__objects/object_os_anime/gObjOsAnim_7F38" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_7F38[] = dgObjOsAnim_7F38; -#else -static const char gObjOsAnim_7F38[] __attribute__((aligned (2))) = dgObjOsAnim_7F38; -#endif - -#define dgObjOsAnim_7FFC "__OTR__objects/object_os_anime/gObjOsAnim_7FFC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_7FFC[] = dgObjOsAnim_7FFC; -#else -static const char gObjOsAnim_7FFC[] __attribute__((aligned (2))) = dgObjOsAnim_7FFC; -#endif - -#define dgObjOsAnim_80B4 "__OTR__objects/object_os_anime/gObjOsAnim_80B4" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_80B4[] = dgObjOsAnim_80B4; -#else -static const char gObjOsAnim_80B4[] __attribute__((aligned (2))) = dgObjOsAnim_80B4; -#endif - -#define dgObjOsAnim_8178 "__OTR__objects/object_os_anime/gObjOsAnim_8178" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_8178[] = dgObjOsAnim_8178; -#else -static const char gObjOsAnim_8178[] __attribute__((aligned (2))) = dgObjOsAnim_8178; -#endif - -#define dgObjOsAnim_879C "__OTR__objects/object_os_anime/gObjOsAnim_879C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_879C[] = dgObjOsAnim_879C; -#else -static const char gObjOsAnim_879C[] __attribute__((aligned (2))) = dgObjOsAnim_879C; -#endif - -#define dgObjOsAnim_8F6C "__OTR__objects/object_os_anime/gObjOsAnim_8F6C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_8F6C[] = dgObjOsAnim_8F6C; -#else -static const char gObjOsAnim_8F6C[] __attribute__((aligned (2))) = dgObjOsAnim_8F6C; -#endif - -#define dgObjOsAnim_9028 "__OTR__objects/object_os_anime/gObjOsAnim_9028" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_9028[] = dgObjOsAnim_9028; -#else -static const char gObjOsAnim_9028[] __attribute__((aligned (2))) = dgObjOsAnim_9028; -#endif - -#define dgObjOsAnim_90EC "__OTR__objects/object_os_anime/gObjOsAnim_90EC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_90EC[] = dgObjOsAnim_90EC; -#else -static const char gObjOsAnim_90EC[] __attribute__((aligned (2))) = dgObjOsAnim_90EC; -#endif - -#define dgObjOsAnim_91AC "__OTR__objects/object_os_anime/gObjOsAnim_91AC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_91AC[] = dgObjOsAnim_91AC; -#else -static const char gObjOsAnim_91AC[] __attribute__((aligned (2))) = dgObjOsAnim_91AC; -#endif - -#define dgObjOsAnim_9274 "__OTR__objects/object_os_anime/gObjOsAnim_9274" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_9274[] = dgObjOsAnim_9274; -#else -static const char gObjOsAnim_9274[] __attribute__((aligned (2))) = dgObjOsAnim_9274; -#endif - -#define dgObjOsAnim_982C "__OTR__objects/object_os_anime/gObjOsAnim_982C" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_982C[] = dgObjOsAnim_982C; -#else -static const char gObjOsAnim_982C[] __attribute__((aligned (2))) = dgObjOsAnim_982C; -#endif - -#define dgObjOsAnim_98EC "__OTR__objects/object_os_anime/gObjOsAnim_98EC" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_98EC[] = dgObjOsAnim_98EC; -#else -static const char gObjOsAnim_98EC[] __attribute__((aligned (2))) = dgObjOsAnim_98EC; -#endif - -#define dgObjOsAnim_99A4 "__OTR__objects/object_os_anime/gObjOsAnim_99A4" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_99A4[] = dgObjOsAnim_99A4; -#else -static const char gObjOsAnim_99A4[] __attribute__((aligned (2))) = dgObjOsAnim_99A4; -#endif - -#define dgObjOsAnim_9B64 "__OTR__objects/object_os_anime/gObjOsAnim_9B64" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_9B64[] = dgObjOsAnim_9B64; -#else -static const char gObjOsAnim_9B64[] __attribute__((aligned (2))) = dgObjOsAnim_9B64; -#endif - -#define dgObjOsAnim_9F94 "__OTR__objects/object_os_anime/gObjOsAnim_9F94" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_9F94[] = dgObjOsAnim_9F94; -#else -static const char gObjOsAnim_9F94[] __attribute__((aligned (2))) = dgObjOsAnim_9F94; -#endif - -#define dgObjOsAnim_A630 "__OTR__objects/object_os_anime/gObjOsAnim_A630" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOsAnim_A630[] = dgObjOsAnim_A630; -#else -static const char gObjOsAnim_A630[] __attribute__((aligned (2))) = dgObjOsAnim_A630; -#endif - +#include "align_asset_macro.h" + +#define dgObjOsAnim_00B4 "__OTR__objects/object_os_anime/gObjOsAnim_00B4" +static const ALIGN_ASSET(2) char gObjOsAnim_00B4[] = dgObjOsAnim_00B4; + +#define dgObjOsAnim_0170 "__OTR__objects/object_os_anime/gObjOsAnim_0170" +static const ALIGN_ASSET(2) char gObjOsAnim_0170[] = dgObjOsAnim_0170; + +#define dgObjOsAnim_0228 "__OTR__objects/object_os_anime/gObjOsAnim_0228" +static const ALIGN_ASSET(2) char gObjOsAnim_0228[] = dgObjOsAnim_0228; + +#define dgObjOsAnim_0718 "__OTR__objects/object_os_anime/gObjOsAnim_0718" +static const ALIGN_ASSET(2) char gObjOsAnim_0718[] = dgObjOsAnim_0718; + +#define dgObjOsAnim_07D0 "__OTR__objects/object_os_anime/gObjOsAnim_07D0" +static const ALIGN_ASSET(2) char gObjOsAnim_07D0[] = dgObjOsAnim_07D0; + +#define dgObjOsAnim_0894 "__OTR__objects/object_os_anime/gObjOsAnim_0894" +static const ALIGN_ASSET(2) char gObjOsAnim_0894[] = dgObjOsAnim_0894; + +#define dgObjOsAnim_092C "__OTR__objects/object_os_anime/gObjOsAnim_092C" +static const ALIGN_ASSET(2) char gObjOsAnim_092C[] = dgObjOsAnim_092C; + +#define dgObjOsAnim_0BFC "__OTR__objects/object_os_anime/gObjOsAnim_0BFC" +static const ALIGN_ASSET(2) char gObjOsAnim_0BFC[] = dgObjOsAnim_0BFC; + +#define dgObjOsAnim_0FE4 "__OTR__objects/object_os_anime/gObjOsAnim_0FE4" +static const ALIGN_ASSET(2) char gObjOsAnim_0FE4[] = dgObjOsAnim_0FE4; + +#define dgObjOsAnim_12E8 "__OTR__objects/object_os_anime/gObjOsAnim_12E8" +static const ALIGN_ASSET(2) char gObjOsAnim_12E8[] = dgObjOsAnim_12E8; + +#define dgObjOsAnim_14A0 "__OTR__objects/object_os_anime/gObjOsAnim_14A0" +static const ALIGN_ASSET(2) char gObjOsAnim_14A0[] = dgObjOsAnim_14A0; + +#define dgObjOsAnim_1650 "__OTR__objects/object_os_anime/gObjOsAnim_1650" +static const ALIGN_ASSET(2) char gObjOsAnim_1650[] = dgObjOsAnim_1650; + +#define dgObjOsAnim_16EC "__OTR__objects/object_os_anime/gObjOsAnim_16EC" +static const ALIGN_ASSET(2) char gObjOsAnim_16EC[] = dgObjOsAnim_16EC; + +#define dgObjOsAnim_18A0 "__OTR__objects/object_os_anime/gObjOsAnim_18A0" +static const ALIGN_ASSET(2) char gObjOsAnim_18A0[] = dgObjOsAnim_18A0; + +#define dgObjOsAnim_1E7C "__OTR__objects/object_os_anime/gObjOsAnim_1E7C" +static const ALIGN_ASSET(2) char gObjOsAnim_1E7C[] = dgObjOsAnim_1E7C; + +#define dgObjOsAnim_1F18 "__OTR__objects/object_os_anime/gObjOsAnim_1F18" +static const ALIGN_ASSET(2) char gObjOsAnim_1F18[] = dgObjOsAnim_1F18; + +#define dgObjOsAnim_2160 "__OTR__objects/object_os_anime/gObjOsAnim_2160" +static const ALIGN_ASSET(2) char gObjOsAnim_2160[] = dgObjOsAnim_2160; + +#define dgObjOsAnim_25D0 "__OTR__objects/object_os_anime/gObjOsAnim_25D0" +static const ALIGN_ASSET(2) char gObjOsAnim_25D0[] = dgObjOsAnim_25D0; + +#define dgObjOsAnim_265C "__OTR__objects/object_os_anime/gObjOsAnim_265C" +static const ALIGN_ASSET(2) char gObjOsAnim_265C[] = dgObjOsAnim_265C; + +#define dgObjOsAnim_2850 "__OTR__objects/object_os_anime/gObjOsAnim_2850" +static const ALIGN_ASSET(2) char gObjOsAnim_2850[] = dgObjOsAnim_2850; + +#define dgObjOsAnim_28DC "__OTR__objects/object_os_anime/gObjOsAnim_28DC" +static const ALIGN_ASSET(2) char gObjOsAnim_28DC[] = dgObjOsAnim_28DC; + +#define dgObjOsAnim_2D0C "__OTR__objects/object_os_anime/gObjOsAnim_2D0C" +static const ALIGN_ASSET(2) char gObjOsAnim_2D0C[] = dgObjOsAnim_2D0C; + +#define dgObjOsAnim_2DC0 "__OTR__objects/object_os_anime/gObjOsAnim_2DC0" +static const ALIGN_ASSET(2) char gObjOsAnim_2DC0[] = dgObjOsAnim_2DC0; + +#define dgObjOsAnim_300C "__OTR__objects/object_os_anime/gObjOsAnim_300C" +static const ALIGN_ASSET(2) char gObjOsAnim_300C[] = dgObjOsAnim_300C; + +#define dgObjOsAnim_31B0 "__OTR__objects/object_os_anime/gObjOsAnim_31B0" +static const ALIGN_ASSET(2) char gObjOsAnim_31B0[] = dgObjOsAnim_31B0; + +#define dgObjOsAnim_33B4 "__OTR__objects/object_os_anime/gObjOsAnim_33B4" +static const ALIGN_ASSET(2) char gObjOsAnim_33B4[] = dgObjOsAnim_33B4; + +#define dgObjOsAnim_3D84 "__OTR__objects/object_os_anime/gObjOsAnim_3D84" +static const ALIGN_ASSET(2) char gObjOsAnim_3D84[] = dgObjOsAnim_3D84; + +#define dgObjOsAnim_41F8 "__OTR__objects/object_os_anime/gObjOsAnim_41F8" +static const ALIGN_ASSET(2) char gObjOsAnim_41F8[] = dgObjOsAnim_41F8; + +#define dgObjOsAnim_42AC "__OTR__objects/object_os_anime/gObjOsAnim_42AC" +static const ALIGN_ASSET(2) char gObjOsAnim_42AC[] = dgObjOsAnim_42AC; + +#define dgObjOsAnim_4408 "__OTR__objects/object_os_anime/gObjOsAnim_4408" +static const ALIGN_ASSET(2) char gObjOsAnim_4408[] = dgObjOsAnim_4408; + +#define dgObjOsAnim_4788 "__OTR__objects/object_os_anime/gObjOsAnim_4788" +static const ALIGN_ASSET(2) char gObjOsAnim_4788[] = dgObjOsAnim_4788; + +#define dgObjOsAnim_4C4C "__OTR__objects/object_os_anime/gObjOsAnim_4C4C" +static const ALIGN_ASSET(2) char gObjOsAnim_4C4C[] = dgObjOsAnim_4C4C; + +#define dgObjOsAnim_4CF4 "__OTR__objects/object_os_anime/gObjOsAnim_4CF4" +static const ALIGN_ASSET(2) char gObjOsAnim_4CF4[] = dgObjOsAnim_4CF4; + +#define dgObjOsAnim_4E90 "__OTR__objects/object_os_anime/gObjOsAnim_4E90" +static const ALIGN_ASSET(2) char gObjOsAnim_4E90[] = dgObjOsAnim_4E90; + +#define dgObjOsAnim_4F28 "__OTR__objects/object_os_anime/gObjOsAnim_4F28" +static const ALIGN_ASSET(2) char gObjOsAnim_4F28[] = dgObjOsAnim_4F28; + +#define dgObjOsAnim_5808 "__OTR__objects/object_os_anime/gObjOsAnim_5808" +static const ALIGN_ASSET(2) char gObjOsAnim_5808[] = dgObjOsAnim_5808; + +#define dgObjOsAnim_62DC "__OTR__objects/object_os_anime/gObjOsAnim_62DC" +static const ALIGN_ASSET(2) char gObjOsAnim_62DC[] = dgObjOsAnim_62DC; + +#define dgObjOsAnim_6458 "__OTR__objects/object_os_anime/gObjOsAnim_6458" +static const ALIGN_ASSET(2) char gObjOsAnim_6458[] = dgObjOsAnim_6458; + +#define dgObjOsAnim_6518 "__OTR__objects/object_os_anime/gObjOsAnim_6518" +static const ALIGN_ASSET(2) char gObjOsAnim_6518[] = dgObjOsAnim_6518; + +#define dgObjOsAnim_65E0 "__OTR__objects/object_os_anime/gObjOsAnim_65E0" +static const ALIGN_ASSET(2) char gObjOsAnim_65E0[] = dgObjOsAnim_65E0; + +#define dgObjOsAnim_6A60 "__OTR__objects/object_os_anime/gObjOsAnim_6A60" +static const ALIGN_ASSET(2) char gObjOsAnim_6A60[] = dgObjOsAnim_6A60; + +#define dgObjOsAnim_6EE0 "__OTR__objects/object_os_anime/gObjOsAnim_6EE0" +static const ALIGN_ASSET(2) char gObjOsAnim_6EE0[] = dgObjOsAnim_6EE0; + +#define dgObjOsAnim_6F9C "__OTR__objects/object_os_anime/gObjOsAnim_6F9C" +static const ALIGN_ASSET(2) char gObjOsAnim_6F9C[] = dgObjOsAnim_6F9C; + +#define dgObjOsAnim_7064 "__OTR__objects/object_os_anime/gObjOsAnim_7064" +static const ALIGN_ASSET(2) char gObjOsAnim_7064[] = dgObjOsAnim_7064; + +#define dgObjOsAnim_7120 "__OTR__objects/object_os_anime/gObjOsAnim_7120" +static const ALIGN_ASSET(2) char gObjOsAnim_7120[] = dgObjOsAnim_7120; + +#define dgObjOsAnim_7454 "__OTR__objects/object_os_anime/gObjOsAnim_7454" +static const ALIGN_ASSET(2) char gObjOsAnim_7454[] = dgObjOsAnim_7454; + +#define dgObjOsAnim_7830 "__OTR__objects/object_os_anime/gObjOsAnim_7830" +static const ALIGN_ASSET(2) char gObjOsAnim_7830[] = dgObjOsAnim_7830; + +#define dgObjOsAnim_7D94 "__OTR__objects/object_os_anime/gObjOsAnim_7D94" +static const ALIGN_ASSET(2) char gObjOsAnim_7D94[] = dgObjOsAnim_7D94; + +#define dgObjOsAnim_7E64 "__OTR__objects/object_os_anime/gObjOsAnim_7E64" +static const ALIGN_ASSET(2) char gObjOsAnim_7E64[] = dgObjOsAnim_7E64; + +#define dgObjOsAnim_7F38 "__OTR__objects/object_os_anime/gObjOsAnim_7F38" +static const ALIGN_ASSET(2) char gObjOsAnim_7F38[] = dgObjOsAnim_7F38; + +#define dgObjOsAnim_7FFC "__OTR__objects/object_os_anime/gObjOsAnim_7FFC" +static const ALIGN_ASSET(2) char gObjOsAnim_7FFC[] = dgObjOsAnim_7FFC; + +#define dgObjOsAnim_80B4 "__OTR__objects/object_os_anime/gObjOsAnim_80B4" +static const ALIGN_ASSET(2) char gObjOsAnim_80B4[] = dgObjOsAnim_80B4; + +#define dgObjOsAnim_8178 "__OTR__objects/object_os_anime/gObjOsAnim_8178" +static const ALIGN_ASSET(2) char gObjOsAnim_8178[] = dgObjOsAnim_8178; + +#define dgObjOsAnim_879C "__OTR__objects/object_os_anime/gObjOsAnim_879C" +static const ALIGN_ASSET(2) char gObjOsAnim_879C[] = dgObjOsAnim_879C; + +#define dgObjOsAnim_8F6C "__OTR__objects/object_os_anime/gObjOsAnim_8F6C" +static const ALIGN_ASSET(2) char gObjOsAnim_8F6C[] = dgObjOsAnim_8F6C; + +#define dgObjOsAnim_9028 "__OTR__objects/object_os_anime/gObjOsAnim_9028" +static const ALIGN_ASSET(2) char gObjOsAnim_9028[] = dgObjOsAnim_9028; + +#define dgObjOsAnim_90EC "__OTR__objects/object_os_anime/gObjOsAnim_90EC" +static const ALIGN_ASSET(2) char gObjOsAnim_90EC[] = dgObjOsAnim_90EC; + +#define dgObjOsAnim_91AC "__OTR__objects/object_os_anime/gObjOsAnim_91AC" +static const ALIGN_ASSET(2) char gObjOsAnim_91AC[] = dgObjOsAnim_91AC; + +#define dgObjOsAnim_9274 "__OTR__objects/object_os_anime/gObjOsAnim_9274" +static const ALIGN_ASSET(2) char gObjOsAnim_9274[] = dgObjOsAnim_9274; + +#define dgObjOsAnim_982C "__OTR__objects/object_os_anime/gObjOsAnim_982C" +static const ALIGN_ASSET(2) char gObjOsAnim_982C[] = dgObjOsAnim_982C; + +#define dgObjOsAnim_98EC "__OTR__objects/object_os_anime/gObjOsAnim_98EC" +static const ALIGN_ASSET(2) char gObjOsAnim_98EC[] = dgObjOsAnim_98EC; + +#define dgObjOsAnim_99A4 "__OTR__objects/object_os_anime/gObjOsAnim_99A4" +static const ALIGN_ASSET(2) char gObjOsAnim_99A4[] = dgObjOsAnim_99A4; + +#define dgObjOsAnim_9B64 "__OTR__objects/object_os_anime/gObjOsAnim_9B64" +static const ALIGN_ASSET(2) char gObjOsAnim_9B64[] = dgObjOsAnim_9B64; + +#define dgObjOsAnim_9F94 "__OTR__objects/object_os_anime/gObjOsAnim_9F94" +static const ALIGN_ASSET(2) char gObjOsAnim_9F94[] = dgObjOsAnim_9F94; + +#define dgObjOsAnim_A630 "__OTR__objects/object_os_anime/gObjOsAnim_A630" +static const ALIGN_ASSET(2) char gObjOsAnim_A630[] = dgObjOsAnim_A630; \ No newline at end of file diff --git a/soh/assets/objects/object_ossan/object_ossan.h b/soh/assets/objects/object_ossan/object_ossan.h index 02292703c..9401e1c96 100644 --- a/soh/assets/objects/object_ossan/object_ossan.h +++ b/soh/assets/objects/object_ossan/object_ossan.h @@ -1,191 +1,84 @@ #pragma once -#define dgObjectOssanAnim_000338 "__OTR__objects/object_ossan/gObjectOssanAnim_000338" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanAnim_000338[] = dgObjectOssanAnim_000338; -#else -static const char gObjectOssanAnim_000338[] __attribute__((aligned (2))) = dgObjectOssanAnim_000338; -#endif - -#define dgOssanEyesTLUT "__OTR__objects/object_ossan/gOssanEyesTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gOssanEyesTLUT[] = dgOssanEyesTLUT; -#else -static const char gOssanEyesTLUT[] __attribute__((aligned (2))) = dgOssanEyesTLUT; -#endif - -#define dgOssanTLUT "__OTR__objects/object_ossan/gOssanTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gOssanTLUT[] = dgOssanTLUT; -#else -static const char gOssanTLUT[] __attribute__((aligned (2))) = dgOssanTLUT; -#endif - -#define dgOssanEyeOpenTex "__OTR__objects/object_ossan/gOssanEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOssanEyeOpenTex[] = dgOssanEyeOpenTex; -#else -static const char gOssanEyeOpenTex[] __attribute__((aligned (2))) = dgOssanEyeOpenTex; -#endif - -#define dgOssanBeardTex "__OTR__objects/object_ossan/gOssanBeardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOssanBeardTex[] = dgOssanBeardTex; -#else -static const char gOssanBeardTex[] __attribute__((aligned (2))) = dgOssanBeardTex; -#endif - -#define dgOssanEyeHalfTex "__OTR__objects/object_ossan/gOssanEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOssanEyeHalfTex[] = dgOssanEyeHalfTex; -#else -static const char gOssanEyeHalfTex[] __attribute__((aligned (2))) = dgOssanEyeHalfTex; -#endif - -#define dgOssanEyeClosedTex "__OTR__objects/object_ossan/gOssanEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOssanEyeClosedTex[] = dgOssanEyeClosedTex; -#else -static const char gOssanEyeClosedTex[] __attribute__((aligned (2))) = dgOssanEyeClosedTex; -#endif - -#define dgObjectOssanEnSyatekiManDL_007E28 "__OTR__objects/object_ossan/gObjectOssanEnSyatekiManDL_007E28" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanEnSyatekiManDL_007E28[] = dgObjectOssanEnSyatekiManDL_007E28; -#else -static const char gObjectOssanEnSyatekiManDL_007E28[] __attribute__((aligned (2))) = dgObjectOssanEnSyatekiManDL_007E28; -#endif - -#define dgObjectOssanSkel "__OTR__objects/object_ossan/gObjectOssanSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkel[] = dgObjectOssanSkel; -#else -static const char gObjectOssanSkel[] __attribute__((aligned (2))) = dgObjectOssanSkel; -#endif - -#define dobject_ossanTex_005078 "__OTR__objects/object_ossan/object_ossanTex_005078" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_005078[] = dobject_ossanTex_005078; -#else -static const char object_ossanTex_005078[] __attribute__((aligned (2))) = dobject_ossanTex_005078; -#endif - -#define dobject_ossanTex_005AB8 "__OTR__objects/object_ossan/object_ossanTex_005AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_005AB8[] = dobject_ossanTex_005AB8; -#else -static const char object_ossanTex_005AB8[] __attribute__((aligned (2))) = dobject_ossanTex_005AB8; -#endif - -#define dobject_ossanTex_005178 "__OTR__objects/object_ossan/object_ossanTex_005178" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_005178[] = dobject_ossanTex_005178; -#else -static const char object_ossanTex_005178[] __attribute__((aligned (2))) = dobject_ossanTex_005178; -#endif - -#define dobject_ossanTex_005278 "__OTR__objects/object_ossan/object_ossanTex_005278" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_005278[] = dobject_ossanTex_005278; -#else -static const char object_ossanTex_005278[] __attribute__((aligned (2))) = dobject_ossanTex_005278; -#endif - -#define dgObjectOssanSkelLimbsLimb_009AB8DL_002E30 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AB8DL_002E30" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkelLimbsLimb_009AB8DL_002E30[] = dgObjectOssanSkelLimbsLimb_009AB8DL_002E30; -#else -static const char gObjectOssanSkelLimbsLimb_009AB8DL_002E30[] __attribute__((aligned (2))) = dgObjectOssanSkelLimbsLimb_009AB8DL_002E30; -#endif - -#define dgObjectOssanSkelLimbsLimb_009AC4DL_003B30 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AC4DL_003B30" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkelLimbsLimb_009AC4DL_003B30[] = dgObjectOssanSkelLimbsLimb_009AC4DL_003B30; -#else -static const char gObjectOssanSkelLimbsLimb_009AC4DL_003B30[] __attribute__((aligned (2))) = dgObjectOssanSkelLimbsLimb_009AC4DL_003B30; -#endif - -#define dgObjectOssanSkelLimbsLimb_009AD0DL_003D18 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AD0DL_003D18" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkelLimbsLimb_009AD0DL_003D18[] = dgObjectOssanSkelLimbsLimb_009AD0DL_003D18; -#else -static const char gObjectOssanSkelLimbsLimb_009AD0DL_003D18[] __attribute__((aligned (2))) = dgObjectOssanSkelLimbsLimb_009AD0DL_003D18; -#endif - -#define dgObjectOssanSkelLimbsLimb_009ADCDL_004108 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009ADCDL_004108" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkelLimbsLimb_009ADCDL_004108[] = dgObjectOssanSkelLimbsLimb_009ADCDL_004108; -#else -static const char gObjectOssanSkelLimbsLimb_009ADCDL_004108[] __attribute__((aligned (2))) = dgObjectOssanSkelLimbsLimb_009ADCDL_004108; -#endif - -#define dgObjectOssanSkelLimbsLimb_009AE8DL_003130 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AE8DL_003130" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkelLimbsLimb_009AE8DL_003130[] = dgObjectOssanSkelLimbsLimb_009AE8DL_003130; -#else -static const char gObjectOssanSkelLimbsLimb_009AE8DL_003130[] __attribute__((aligned (2))) = dgObjectOssanSkelLimbsLimb_009AE8DL_003130; -#endif - -#define dgObjectOssanSkelLimbsLimb_009AF4DL_003318 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AF4DL_003318" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkelLimbsLimb_009AF4DL_003318[] = dgObjectOssanSkelLimbsLimb_009AF4DL_003318; -#else -static const char gObjectOssanSkelLimbsLimb_009AF4DL_003318[] __attribute__((aligned (2))) = dgObjectOssanSkelLimbsLimb_009AF4DL_003318; -#endif - -#define dgObjectOssanSkelLimbsLimb_009B00DL_003708 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009B00DL_003708" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkelLimbsLimb_009B00DL_003708[] = dgObjectOssanSkelLimbsLimb_009B00DL_003708; -#else -static const char gObjectOssanSkelLimbsLimb_009B00DL_003708[] __attribute__((aligned (2))) = dgObjectOssanSkelLimbsLimb_009B00DL_003708; -#endif - -#define dgObjectOssanSkelLimbsLimb_009B0CDL_007428 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009B0CDL_007428" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjectOssanSkelLimbsLimb_009B0CDL_007428[] = dgObjectOssanSkelLimbsLimb_009B0CDL_007428; -#else -static const char gObjectOssanSkelLimbsLimb_009B0CDL_007428[] __attribute__((aligned (2))) = dgObjectOssanSkelLimbsLimb_009B0CDL_007428; -#endif - -#define dobject_ossanTex_008EB8 "__OTR__objects/object_ossan/object_ossanTex_008EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_008EB8[] = dobject_ossanTex_008EB8; -#else -static const char object_ossanTex_008EB8[] __attribute__((aligned (2))) = dobject_ossanTex_008EB8; -#endif - -#define dobject_ossanTex_008A38 "__OTR__objects/object_ossan/object_ossanTex_008A38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_008A38[] = dobject_ossanTex_008A38; -#else -static const char object_ossanTex_008A38[] __attribute__((aligned (2))) = dobject_ossanTex_008A38; -#endif - -#define dobject_ossanTex_0096B8 "__OTR__objects/object_ossan/object_ossanTex_0096B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_0096B8[] = dobject_ossanTex_0096B8; -#else -static const char object_ossanTex_0096B8[] __attribute__((aligned (2))) = dobject_ossanTex_0096B8; -#endif - -#define dobject_ossanTex_0098B8 "__OTR__objects/object_ossan/object_ossanTex_0098B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_0098B8[] = dobject_ossanTex_0098B8; -#else -static const char object_ossanTex_0098B8[] __attribute__((aligned (2))) = dobject_ossanTex_0098B8; -#endif - -#define dobject_ossanTex_008AB8 "__OTR__objects/object_ossan/object_ossanTex_008AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_008AB8[] = dobject_ossanTex_008AB8; -#else -static const char object_ossanTex_008AB8[] __attribute__((aligned (2))) = dobject_ossanTex_008AB8; -#endif - -#define dobject_ossanTex_008CB8 "__OTR__objects/object_ossan/object_ossanTex_008CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ossanTex_008CB8[] = dobject_ossanTex_008CB8; -#else -static const char object_ossanTex_008CB8[] __attribute__((aligned (2))) = dobject_ossanTex_008CB8; -#endif - +#include "align_asset_macro.h" + +#define dgObjectOssanAnim_000338 "__OTR__objects/object_ossan/gObjectOssanAnim_000338" +static const ALIGN_ASSET(2) char gObjectOssanAnim_000338[] = dgObjectOssanAnim_000338; + +#define dgOssanEyesTLUT "__OTR__objects/object_ossan/gOssanEyesTLUT" +static const ALIGN_ASSET(2) char gOssanEyesTLUT[] = dgOssanEyesTLUT; + +#define dgOssanTLUT "__OTR__objects/object_ossan/gOssanTLUT" +static const ALIGN_ASSET(2) char gOssanTLUT[] = dgOssanTLUT; + +#define dgOssanEyeOpenTex "__OTR__objects/object_ossan/gOssanEyeOpenTex" +static const ALIGN_ASSET(2) char gOssanEyeOpenTex[] = dgOssanEyeOpenTex; + +#define dgOssanBeardTex "__OTR__objects/object_ossan/gOssanBeardTex" +static const ALIGN_ASSET(2) char gOssanBeardTex[] = dgOssanBeardTex; + +#define dgOssanEyeHalfTex "__OTR__objects/object_ossan/gOssanEyeHalfTex" +static const ALIGN_ASSET(2) char gOssanEyeHalfTex[] = dgOssanEyeHalfTex; + +#define dgOssanEyeClosedTex "__OTR__objects/object_ossan/gOssanEyeClosedTex" +static const ALIGN_ASSET(2) char gOssanEyeClosedTex[] = dgOssanEyeClosedTex; + +#define dgObjectOssanEnSyatekiManDL_007E28 "__OTR__objects/object_ossan/gObjectOssanEnSyatekiManDL_007E28" +static const ALIGN_ASSET(2) char gObjectOssanEnSyatekiManDL_007E28[] = dgObjectOssanEnSyatekiManDL_007E28; + +#define dgObjectOssanSkel "__OTR__objects/object_ossan/gObjectOssanSkel" +static const ALIGN_ASSET(2) char gObjectOssanSkel[] = dgObjectOssanSkel; + +#define dobject_ossanTex_005078 "__OTR__objects/object_ossan/object_ossanTex_005078" +static const ALIGN_ASSET(2) char object_ossanTex_005078[] = dobject_ossanTex_005078; + +#define dobject_ossanTex_005AB8 "__OTR__objects/object_ossan/object_ossanTex_005AB8" +static const ALIGN_ASSET(2) char object_ossanTex_005AB8[] = dobject_ossanTex_005AB8; + +#define dobject_ossanTex_005178 "__OTR__objects/object_ossan/object_ossanTex_005178" +static const ALIGN_ASSET(2) char object_ossanTex_005178[] = dobject_ossanTex_005178; + +#define dobject_ossanTex_005278 "__OTR__objects/object_ossan/object_ossanTex_005278" +static const ALIGN_ASSET(2) char object_ossanTex_005278[] = dobject_ossanTex_005278; + +#define dgObjectOssanSkelLimbsLimb_009AB8DL_002E30 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AB8DL_002E30" +static const ALIGN_ASSET(2) char gObjectOssanSkelLimbsLimb_009AB8DL_002E30[] = dgObjectOssanSkelLimbsLimb_009AB8DL_002E30; + +#define dgObjectOssanSkelLimbsLimb_009AC4DL_003B30 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AC4DL_003B30" +static const ALIGN_ASSET(2) char gObjectOssanSkelLimbsLimb_009AC4DL_003B30[] = dgObjectOssanSkelLimbsLimb_009AC4DL_003B30; + +#define dgObjectOssanSkelLimbsLimb_009AD0DL_003D18 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AD0DL_003D18" +static const ALIGN_ASSET(2) char gObjectOssanSkelLimbsLimb_009AD0DL_003D18[] = dgObjectOssanSkelLimbsLimb_009AD0DL_003D18; + +#define dgObjectOssanSkelLimbsLimb_009ADCDL_004108 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009ADCDL_004108" +static const ALIGN_ASSET(2) char gObjectOssanSkelLimbsLimb_009ADCDL_004108[] = dgObjectOssanSkelLimbsLimb_009ADCDL_004108; + +#define dgObjectOssanSkelLimbsLimb_009AE8DL_003130 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AE8DL_003130" +static const ALIGN_ASSET(2) char gObjectOssanSkelLimbsLimb_009AE8DL_003130[] = dgObjectOssanSkelLimbsLimb_009AE8DL_003130; + +#define dgObjectOssanSkelLimbsLimb_009AF4DL_003318 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009AF4DL_003318" +static const ALIGN_ASSET(2) char gObjectOssanSkelLimbsLimb_009AF4DL_003318[] = dgObjectOssanSkelLimbsLimb_009AF4DL_003318; + +#define dgObjectOssanSkelLimbsLimb_009B00DL_003708 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009B00DL_003708" +static const ALIGN_ASSET(2) char gObjectOssanSkelLimbsLimb_009B00DL_003708[] = dgObjectOssanSkelLimbsLimb_009B00DL_003708; + +#define dgObjectOssanSkelLimbsLimb_009B0CDL_007428 "__OTR__objects/object_ossan/gObjectOssanSkelLimbsLimb_009B0CDL_007428" +static const ALIGN_ASSET(2) char gObjectOssanSkelLimbsLimb_009B0CDL_007428[] = dgObjectOssanSkelLimbsLimb_009B0CDL_007428; + +#define dobject_ossanTex_008EB8 "__OTR__objects/object_ossan/object_ossanTex_008EB8" +static const ALIGN_ASSET(2) char object_ossanTex_008EB8[] = dobject_ossanTex_008EB8; + +#define dobject_ossanTex_008A38 "__OTR__objects/object_ossan/object_ossanTex_008A38" +static const ALIGN_ASSET(2) char object_ossanTex_008A38[] = dobject_ossanTex_008A38; + +#define dobject_ossanTex_0096B8 "__OTR__objects/object_ossan/object_ossanTex_0096B8" +static const ALIGN_ASSET(2) char object_ossanTex_0096B8[] = dobject_ossanTex_0096B8; + +#define dobject_ossanTex_0098B8 "__OTR__objects/object_ossan/object_ossanTex_0098B8" +static const ALIGN_ASSET(2) char object_ossanTex_0098B8[] = dobject_ossanTex_0098B8; + +#define dobject_ossanTex_008AB8 "__OTR__objects/object_ossan/object_ossanTex_008AB8" +static const ALIGN_ASSET(2) char object_ossanTex_008AB8[] = dobject_ossanTex_008AB8; + +#define dobject_ossanTex_008CB8 "__OTR__objects/object_ossan/object_ossanTex_008CB8" +static const ALIGN_ASSET(2) char object_ossanTex_008CB8[] = dobject_ossanTex_008CB8; \ No newline at end of file diff --git a/soh/assets/objects/object_ouke_haka/object_ouke_haka.h b/soh/assets/objects/object_ouke_haka/object_ouke_haka.h index dbfe4832c..79db96ea6 100644 --- a/soh/assets/objects/object_ouke_haka/object_ouke_haka.h +++ b/soh/assets/objects/object_ouke_haka/object_ouke_haka.h @@ -1,16 +1,9 @@ #pragma once -#define dobject_ouke_haka_DL_0000C0 "__OTR__objects/object_ouke_haka/object_ouke_haka_DL_0000C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ouke_haka_DL_0000C0[] = dobject_ouke_haka_DL_0000C0; -#else -static const char object_ouke_haka_DL_0000C0[] __attribute__((aligned (2))) = dobject_ouke_haka_DL_0000C0; -#endif - -#define dobject_ouke_haka_Tex_000170 "__OTR__objects/object_ouke_haka/object_ouke_haka_Tex_000170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ouke_haka_Tex_000170[] = dobject_ouke_haka_Tex_000170; -#else -static const char object_ouke_haka_Tex_000170[] __attribute__((aligned (2))) = dobject_ouke_haka_Tex_000170; -#endif - +#include "align_asset_macro.h" + +#define dobject_ouke_haka_DL_0000C0 "__OTR__objects/object_ouke_haka/object_ouke_haka_DL_0000C0" +static const ALIGN_ASSET(2) char object_ouke_haka_DL_0000C0[] = dobject_ouke_haka_DL_0000C0; + +#define dobject_ouke_haka_Tex_000170 "__OTR__objects/object_ouke_haka/object_ouke_haka_Tex_000170" +static const ALIGN_ASSET(2) char object_ouke_haka_Tex_000170[] = dobject_ouke_haka_Tex_000170; \ No newline at end of file diff --git a/soh/assets/objects/object_owl/object_owl.h b/soh/assets/objects/object_owl/object_owl.h index 57d5cbb19..e0ec139ea 100644 --- a/soh/assets/objects/object_owl/object_owl.h +++ b/soh/assets/objects/object_owl/object_owl.h @@ -1,380 +1,165 @@ #pragma once -#define dgOwlFlyingSkel "__OTR__objects/object_owl/gOwlFlyingSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlFlyingSkel[] = dgOwlFlyingSkel; -#else -static const char gOwlFlyingSkel[] __attribute__((aligned (2))) = dgOwlFlyingSkel; -#endif - -#define dgOwlTorsoDL "__OTR__objects/object_owl/gOwlTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlTorsoDL[] = dgOwlTorsoDL; -#else -static const char gOwlTorsoDL[] __attribute__((aligned (2))) = dgOwlTorsoDL; -#endif - -#define dgOwlNeckDL "__OTR__objects/object_owl/gOwlNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlNeckDL[] = dgOwlNeckDL; -#else -static const char gOwlNeckDL[] __attribute__((aligned (2))) = dgOwlNeckDL; -#endif - -#define dgOwlHeadDL "__OTR__objects/object_owl/gOwlHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlHeadDL[] = dgOwlHeadDL; -#else -static const char gOwlHeadDL[] __attribute__((aligned (2))) = dgOwlHeadDL; -#endif - -#define dgOwlRightEyebrowDL "__OTR__objects/object_owl/gOwlRightEyebrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlRightEyebrowDL[] = dgOwlRightEyebrowDL; -#else -static const char gOwlRightEyebrowDL[] __attribute__((aligned (2))) = dgOwlRightEyebrowDL; -#endif - -#define dgOwlLeftEyebrowDL "__OTR__objects/object_owl/gOwlLeftEyebrowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlLeftEyebrowDL[] = dgOwlLeftEyebrowDL; -#else -static const char gOwlLeftEyebrowDL[] __attribute__((aligned (2))) = dgOwlLeftEyebrowDL; -#endif - -#define dgOwlLowerLeftWingDL "__OTR__objects/object_owl/gOwlLowerLeftWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlLowerLeftWingDL[] = dgOwlLowerLeftWingDL; -#else -static const char gOwlLowerLeftWingDL[] __attribute__((aligned (2))) = dgOwlLowerLeftWingDL; -#endif - -#define dgOwlMiddleLeftWing1DL "__OTR__objects/object_owl/gOwlMiddleLeftWing1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlMiddleLeftWing1DL[] = dgOwlMiddleLeftWing1DL; -#else -static const char gOwlMiddleLeftWing1DL[] __attribute__((aligned (2))) = dgOwlMiddleLeftWing1DL; -#endif - -#define dgOwlMiddleLeftWing2DL "__OTR__objects/object_owl/gOwlMiddleLeftWing2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlMiddleLeftWing2DL[] = dgOwlMiddleLeftWing2DL; -#else -static const char gOwlMiddleLeftWing2DL[] __attribute__((aligned (2))) = dgOwlMiddleLeftWing2DL; -#endif - -#define dgOwlUpperLeftWingDL "__OTR__objects/object_owl/gOwlUpperLeftWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlUpperLeftWingDL[] = dgOwlUpperLeftWingDL; -#else -static const char gOwlUpperLeftWingDL[] __attribute__((aligned (2))) = dgOwlUpperLeftWingDL; -#endif - -#define dgOwlLowerRightWingDL "__OTR__objects/object_owl/gOwlLowerRightWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlLowerRightWingDL[] = dgOwlLowerRightWingDL; -#else -static const char gOwlLowerRightWingDL[] __attribute__((aligned (2))) = dgOwlLowerRightWingDL; -#endif - -#define dgOwlMiddleRightWing1DL "__OTR__objects/object_owl/gOwlMiddleRightWing1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlMiddleRightWing1DL[] = dgOwlMiddleRightWing1DL; -#else -static const char gOwlMiddleRightWing1DL[] __attribute__((aligned (2))) = dgOwlMiddleRightWing1DL; -#endif - -#define dgOwlMiddleRightWing2DL "__OTR__objects/object_owl/gOwlMiddleRightWing2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlMiddleRightWing2DL[] = dgOwlMiddleRightWing2DL; -#else -static const char gOwlMiddleRightWing2DL[] __attribute__((aligned (2))) = dgOwlMiddleRightWing2DL; -#endif - -#define dgOwlUpperRightWingDL "__OTR__objects/object_owl/gOwlUpperRightWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlUpperRightWingDL[] = dgOwlUpperRightWingDL; -#else -static const char gOwlUpperRightWingDL[] __attribute__((aligned (2))) = dgOwlUpperRightWingDL; -#endif - -#define dgOwlUpperRightLegDL "__OTR__objects/object_owl/gOwlUpperRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlUpperRightLegDL[] = dgOwlUpperRightLegDL; -#else -static const char gOwlUpperRightLegDL[] __attribute__((aligned (2))) = dgOwlUpperRightLegDL; -#endif - -#define dgOwlLowerRightLegDL "__OTR__objects/object_owl/gOwlLowerRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlLowerRightLegDL[] = dgOwlLowerRightLegDL; -#else -static const char gOwlLowerRightLegDL[] __attribute__((aligned (2))) = dgOwlLowerRightLegDL; -#endif - -#define dgOwlRightClawDL "__OTR__objects/object_owl/gOwlRightClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlRightClawDL[] = dgOwlRightClawDL; -#else -static const char gOwlRightClawDL[] __attribute__((aligned (2))) = dgOwlRightClawDL; -#endif - -#define dgOwlUpperLeftLegDL "__OTR__objects/object_owl/gOwlUpperLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlUpperLeftLegDL[] = dgOwlUpperLeftLegDL; -#else -static const char gOwlUpperLeftLegDL[] __attribute__((aligned (2))) = dgOwlUpperLeftLegDL; -#endif - -#define dgOwlLowerLeftLegDL "__OTR__objects/object_owl/gOwlLowerLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlLowerLeftLegDL[] = dgOwlLowerLeftLegDL; -#else -static const char gOwlLowerLeftLegDL[] __attribute__((aligned (2))) = dgOwlLowerLeftLegDL; -#endif - -#define dgOwlLeftClawDL "__OTR__objects/object_owl/gOwlLeftClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlLeftClawDL[] = dgOwlLeftClawDL; -#else -static const char gOwlLeftClawDL[] __attribute__((aligned (2))) = dgOwlLeftClawDL; -#endif - -#define dgOwlTailDL "__OTR__objects/object_owl/gOwlTailDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlTailDL[] = dgOwlTailDL; -#else -static const char gOwlTailDL[] __attribute__((aligned (2))) = dgOwlTailDL; -#endif - -#define dgOwlTakeoffAnim "__OTR__objects/object_owl/gOwlTakeoffAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlTakeoffAnim[] = dgOwlTakeoffAnim; -#else -static const char gOwlTakeoffAnim[] __attribute__((aligned (2))) = dgOwlTakeoffAnim; -#endif - -#define dgOwlFlyAnim "__OTR__objects/object_owl/gOwlFlyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlFlyAnim[] = dgOwlFlyAnim; -#else -static const char gOwlFlyAnim[] __attribute__((aligned (2))) = dgOwlFlyAnim; -#endif - -#define dgOwlGlideAnim "__OTR__objects/object_owl/gOwlGlideAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlGlideAnim[] = dgOwlGlideAnim; -#else -static const char gOwlGlideAnim[] __attribute__((aligned (2))) = dgOwlGlideAnim; -#endif - -#define dgOwlUnfoldWingsAnim "__OTR__objects/object_owl/gOwlUnfoldWingsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlUnfoldWingsAnim[] = dgOwlUnfoldWingsAnim; -#else -static const char gOwlUnfoldWingsAnim[] __attribute__((aligned (2))) = dgOwlUnfoldWingsAnim; -#endif - -#define dgOwlPerchAnim "__OTR__objects/object_owl/gOwlPerchAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchAnim[] = dgOwlPerchAnim; -#else -static const char gOwlPerchAnim[] __attribute__((aligned (2))) = dgOwlPerchAnim; -#endif - -#define dgOwlPerchingSkel "__OTR__objects/object_owl/gOwlPerchingSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkel[] = dgOwlPerchingSkel; -#else -static const char gOwlPerchingSkel[] __attribute__((aligned (2))) = dgOwlPerchingSkel; -#endif - -#define dobject_owl_TLUT_006DA8 "__OTR__objects/object_owl/object_owl_TLUT_006DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owl_TLUT_006DA8[] = dobject_owl_TLUT_006DA8; -#else -static const char object_owl_TLUT_006DA8[] __attribute__((aligned (2))) = dobject_owl_TLUT_006DA8; -#endif - -#define dobject_owl_TLUT_006FA8 "__OTR__objects/object_owl/object_owl_TLUT_006FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owl_TLUT_006FA8[] = dobject_owl_TLUT_006FA8; -#else -static const char object_owl_TLUT_006FA8[] __attribute__((aligned (2))) = dobject_owl_TLUT_006FA8; -#endif - -#define dgObjOwlEyeOpenTex "__OTR__objects/object_owl/gObjOwlEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOwlEyeOpenTex[] = dgObjOwlEyeOpenTex; -#else -static const char gObjOwlEyeOpenTex[] __attribute__((aligned (2))) = dgObjOwlEyeOpenTex; -#endif - -#define dgObjOwlEyeHalfTex "__OTR__objects/object_owl/gObjOwlEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOwlEyeHalfTex[] = dgObjOwlEyeHalfTex; -#else -static const char gObjOwlEyeHalfTex[] __attribute__((aligned (2))) = dgObjOwlEyeHalfTex; -#endif - -#define dgObjOwlEyeClosedTex "__OTR__objects/object_owl/gObjOwlEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gObjOwlEyeClosedTex[] = dgObjOwlEyeClosedTex; -#else -static const char gObjOwlEyeClosedTex[] __attribute__((aligned (2))) = dgObjOwlEyeClosedTex; -#endif - -#define dobject_owlTex_009DA8 "__OTR__objects/object_owl/object_owlTex_009DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owlTex_009DA8[] = dobject_owlTex_009DA8; -#else -static const char object_owlTex_009DA8[] __attribute__((aligned (2))) = dobject_owlTex_009DA8; -#endif - -#define dobject_owlTex_0071A8 "__OTR__objects/object_owl/object_owlTex_0071A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owlTex_0071A8[] = dobject_owlTex_0071A8; -#else -static const char object_owlTex_0071A8[] __attribute__((aligned (2))) = dobject_owlTex_0071A8; -#endif - -#define dobject_owlTex_0079A8 "__OTR__objects/object_owl/object_owlTex_0079A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owlTex_0079A8[] = dobject_owlTex_0079A8; -#else -static const char object_owlTex_0079A8[] __attribute__((aligned (2))) = dobject_owlTex_0079A8; -#endif - -#define dobject_owlTex_0081A8 "__OTR__objects/object_owl/object_owlTex_0081A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owlTex_0081A8[] = dobject_owlTex_0081A8; -#else -static const char object_owlTex_0081A8[] __attribute__((aligned (2))) = dobject_owlTex_0081A8; -#endif - -#define dobject_owlTex_0095A8 "__OTR__objects/object_owl/object_owlTex_0095A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owlTex_0095A8[] = dobject_owlTex_0095A8; -#else -static const char object_owlTex_0095A8[] __attribute__((aligned (2))) = dobject_owlTex_0095A8; -#endif - -#define dobject_owlTex_009FA8 "__OTR__objects/object_owl/object_owlTex_009FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owlTex_009FA8[] = dobject_owlTex_009FA8; -#else -static const char object_owlTex_009FA8[] __attribute__((aligned (2))) = dobject_owlTex_009FA8; -#endif - -#define dobject_owlTex_00AFA8 "__OTR__objects/object_owl/object_owlTex_00AFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owlTex_00AFA8[] = dobject_owlTex_00AFA8; -#else -static const char object_owlTex_00AFA8[] __attribute__((aligned (2))) = dobject_owlTex_00AFA8; -#endif - -#define dobject_owlTex_00B7A8 "__OTR__objects/object_owl/object_owlTex_00B7A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_owlTex_00B7A8[] = dobject_owlTex_00B7A8; -#else -static const char object_owlTex_00B7A8[] __attribute__((aligned (2))) = dobject_owlTex_00B7A8; -#endif - -#define dgOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0[] = dgOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0; -#else -static const char gOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0; -#endif - -#define dgOwlPerchingSkelLimbsLimb_00FFD8DL_00F330 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFD8DL_00F330" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_00FFD8DL_00F330[] = dgOwlPerchingSkelLimbsLimb_00FFD8DL_00F330; -#else -static const char gOwlPerchingSkelLimbsLimb_00FFD8DL_00F330[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_00FFD8DL_00F330; -#endif - -#define dgOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0[] = dgOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0; -#else -static const char gOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0; -#endif - -#define dgOwlPerchingSkelLimbsLimb_00FFF0DL_00F868 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFF0DL_00F868" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_00FFF0DL_00F868[] = dgOwlPerchingSkelLimbsLimb_00FFF0DL_00F868; -#else -static const char gOwlPerchingSkelLimbsLimb_00FFF0DL_00F868[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_00FFF0DL_00F868; -#endif - -#define dgOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8[] = dgOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8; -#else -static const char gOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8; -#endif - -#define dgOwlPerchingSkelLimbsLimb_010008DL_00EEA0 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010008DL_00EEA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_010008DL_00EEA0[] = dgOwlPerchingSkelLimbsLimb_010008DL_00EEA0; -#else -static const char gOwlPerchingSkelLimbsLimb_010008DL_00EEA0[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_010008DL_00EEA0; -#endif - -#define dgOwlPerchingSkelLimbsLimb_010014DL_00ED10 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010014DL_00ED10" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_010014DL_00ED10[] = dgOwlPerchingSkelLimbsLimb_010014DL_00ED10; -#else -static const char gOwlPerchingSkelLimbsLimb_010014DL_00ED10[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_010014DL_00ED10; -#endif - -#define dgOwlPerchingSkelLimbsLimb_010020DL_00F920 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010020DL_00F920" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_010020DL_00F920[] = dgOwlPerchingSkelLimbsLimb_010020DL_00F920; -#else -static const char gOwlPerchingSkelLimbsLimb_010020DL_00F920[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_010020DL_00F920; -#endif - -#define dgOwlPerchingSkelLimbsLimb_01002CDL_00F9E8 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_01002CDL_00F9E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_01002CDL_00F9E8[] = dgOwlPerchingSkelLimbsLimb_01002CDL_00F9E8; -#else -static const char gOwlPerchingSkelLimbsLimb_01002CDL_00F9E8[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_01002CDL_00F9E8; -#endif - -#define dgOwlPerchingSkelLimbsLimb_010038DL_00FAD8 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010038DL_00FAD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_010038DL_00FAD8[] = dgOwlPerchingSkelLimbsLimb_010038DL_00FAD8; -#else -static const char gOwlPerchingSkelLimbsLimb_010038DL_00FAD8[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_010038DL_00FAD8; -#endif - -#define dgOwlPerchingSkelLimbsLimb_010044DL_00FC70 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010044DL_00FC70" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_010044DL_00FC70[] = dgOwlPerchingSkelLimbsLimb_010044DL_00FC70; -#else -static const char gOwlPerchingSkelLimbsLimb_010044DL_00FC70[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_010044DL_00FC70; -#endif - -#define dgOwlPerchingSkelLimbsLimb_010050DL_00FD38 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010050DL_00FD38" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_010050DL_00FD38[] = dgOwlPerchingSkelLimbsLimb_010050DL_00FD38; -#else -static const char gOwlPerchingSkelLimbsLimb_010050DL_00FD38[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_010050DL_00FD38; -#endif - -#define dgOwlPerchingSkelLimbsLimb_01005CDL_00FE28 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_01005CDL_00FE28" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_01005CDL_00FE28[] = dgOwlPerchingSkelLimbsLimb_01005CDL_00FE28; -#else -static const char gOwlPerchingSkelLimbsLimb_01005CDL_00FE28[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_01005CDL_00FE28; -#endif - -#define dgOwlPerchingSkelLimbsLimb_010068DL_00F030 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010068DL_00F030" -#ifdef _WIN32 -static const __declspec(align(2)) char gOwlPerchingSkelLimbsLimb_010068DL_00F030[] = dgOwlPerchingSkelLimbsLimb_010068DL_00F030; -#else -static const char gOwlPerchingSkelLimbsLimb_010068DL_00F030[] __attribute__((aligned (2))) = dgOwlPerchingSkelLimbsLimb_010068DL_00F030; -#endif - +#include "align_asset_macro.h" + +#define dgOwlFlyingSkel "__OTR__objects/object_owl/gOwlFlyingSkel" +static const ALIGN_ASSET(2) char gOwlFlyingSkel[] = dgOwlFlyingSkel; + +#define dgOwlTorsoDL "__OTR__objects/object_owl/gOwlTorsoDL" +static const ALIGN_ASSET(2) char gOwlTorsoDL[] = dgOwlTorsoDL; + +#define dgOwlNeckDL "__OTR__objects/object_owl/gOwlNeckDL" +static const ALIGN_ASSET(2) char gOwlNeckDL[] = dgOwlNeckDL; + +#define dgOwlHeadDL "__OTR__objects/object_owl/gOwlHeadDL" +static const ALIGN_ASSET(2) char gOwlHeadDL[] = dgOwlHeadDL; + +#define dgOwlRightEyebrowDL "__OTR__objects/object_owl/gOwlRightEyebrowDL" +static const ALIGN_ASSET(2) char gOwlRightEyebrowDL[] = dgOwlRightEyebrowDL; + +#define dgOwlLeftEyebrowDL "__OTR__objects/object_owl/gOwlLeftEyebrowDL" +static const ALIGN_ASSET(2) char gOwlLeftEyebrowDL[] = dgOwlLeftEyebrowDL; + +#define dgOwlLowerLeftWingDL "__OTR__objects/object_owl/gOwlLowerLeftWingDL" +static const ALIGN_ASSET(2) char gOwlLowerLeftWingDL[] = dgOwlLowerLeftWingDL; + +#define dgOwlMiddleLeftWing1DL "__OTR__objects/object_owl/gOwlMiddleLeftWing1DL" +static const ALIGN_ASSET(2) char gOwlMiddleLeftWing1DL[] = dgOwlMiddleLeftWing1DL; + +#define dgOwlMiddleLeftWing2DL "__OTR__objects/object_owl/gOwlMiddleLeftWing2DL" +static const ALIGN_ASSET(2) char gOwlMiddleLeftWing2DL[] = dgOwlMiddleLeftWing2DL; + +#define dgOwlUpperLeftWingDL "__OTR__objects/object_owl/gOwlUpperLeftWingDL" +static const ALIGN_ASSET(2) char gOwlUpperLeftWingDL[] = dgOwlUpperLeftWingDL; + +#define dgOwlLowerRightWingDL "__OTR__objects/object_owl/gOwlLowerRightWingDL" +static const ALIGN_ASSET(2) char gOwlLowerRightWingDL[] = dgOwlLowerRightWingDL; + +#define dgOwlMiddleRightWing1DL "__OTR__objects/object_owl/gOwlMiddleRightWing1DL" +static const ALIGN_ASSET(2) char gOwlMiddleRightWing1DL[] = dgOwlMiddleRightWing1DL; + +#define dgOwlMiddleRightWing2DL "__OTR__objects/object_owl/gOwlMiddleRightWing2DL" +static const ALIGN_ASSET(2) char gOwlMiddleRightWing2DL[] = dgOwlMiddleRightWing2DL; + +#define dgOwlUpperRightWingDL "__OTR__objects/object_owl/gOwlUpperRightWingDL" +static const ALIGN_ASSET(2) char gOwlUpperRightWingDL[] = dgOwlUpperRightWingDL; + +#define dgOwlUpperRightLegDL "__OTR__objects/object_owl/gOwlUpperRightLegDL" +static const ALIGN_ASSET(2) char gOwlUpperRightLegDL[] = dgOwlUpperRightLegDL; + +#define dgOwlLowerRightLegDL "__OTR__objects/object_owl/gOwlLowerRightLegDL" +static const ALIGN_ASSET(2) char gOwlLowerRightLegDL[] = dgOwlLowerRightLegDL; + +#define dgOwlRightClawDL "__OTR__objects/object_owl/gOwlRightClawDL" +static const ALIGN_ASSET(2) char gOwlRightClawDL[] = dgOwlRightClawDL; + +#define dgOwlUpperLeftLegDL "__OTR__objects/object_owl/gOwlUpperLeftLegDL" +static const ALIGN_ASSET(2) char gOwlUpperLeftLegDL[] = dgOwlUpperLeftLegDL; + +#define dgOwlLowerLeftLegDL "__OTR__objects/object_owl/gOwlLowerLeftLegDL" +static const ALIGN_ASSET(2) char gOwlLowerLeftLegDL[] = dgOwlLowerLeftLegDL; + +#define dgOwlLeftClawDL "__OTR__objects/object_owl/gOwlLeftClawDL" +static const ALIGN_ASSET(2) char gOwlLeftClawDL[] = dgOwlLeftClawDL; + +#define dgOwlTailDL "__OTR__objects/object_owl/gOwlTailDL" +static const ALIGN_ASSET(2) char gOwlTailDL[] = dgOwlTailDL; + +#define dgOwlTakeoffAnim "__OTR__objects/object_owl/gOwlTakeoffAnim" +static const ALIGN_ASSET(2) char gOwlTakeoffAnim[] = dgOwlTakeoffAnim; + +#define dgOwlFlyAnim "__OTR__objects/object_owl/gOwlFlyAnim" +static const ALIGN_ASSET(2) char gOwlFlyAnim[] = dgOwlFlyAnim; + +#define dgOwlGlideAnim "__OTR__objects/object_owl/gOwlGlideAnim" +static const ALIGN_ASSET(2) char gOwlGlideAnim[] = dgOwlGlideAnim; + +#define dgOwlUnfoldWingsAnim "__OTR__objects/object_owl/gOwlUnfoldWingsAnim" +static const ALIGN_ASSET(2) char gOwlUnfoldWingsAnim[] = dgOwlUnfoldWingsAnim; + +#define dgOwlPerchAnim "__OTR__objects/object_owl/gOwlPerchAnim" +static const ALIGN_ASSET(2) char gOwlPerchAnim[] = dgOwlPerchAnim; + +#define dgOwlPerchingSkel "__OTR__objects/object_owl/gOwlPerchingSkel" +static const ALIGN_ASSET(2) char gOwlPerchingSkel[] = dgOwlPerchingSkel; + +#define dobject_owl_TLUT_006DA8 "__OTR__objects/object_owl/object_owl_TLUT_006DA8" +static const ALIGN_ASSET(2) char object_owl_TLUT_006DA8[] = dobject_owl_TLUT_006DA8; + +#define dobject_owl_TLUT_006FA8 "__OTR__objects/object_owl/object_owl_TLUT_006FA8" +static const ALIGN_ASSET(2) char object_owl_TLUT_006FA8[] = dobject_owl_TLUT_006FA8; + +#define dgObjOwlEyeOpenTex "__OTR__objects/object_owl/gObjOwlEyeOpenTex" +static const ALIGN_ASSET(2) char gObjOwlEyeOpenTex[] = dgObjOwlEyeOpenTex; + +#define dgObjOwlEyeHalfTex "__OTR__objects/object_owl/gObjOwlEyeHalfTex" +static const ALIGN_ASSET(2) char gObjOwlEyeHalfTex[] = dgObjOwlEyeHalfTex; + +#define dgObjOwlEyeClosedTex "__OTR__objects/object_owl/gObjOwlEyeClosedTex" +static const ALIGN_ASSET(2) char gObjOwlEyeClosedTex[] = dgObjOwlEyeClosedTex; + +#define dobject_owlTex_009DA8 "__OTR__objects/object_owl/object_owlTex_009DA8" +static const ALIGN_ASSET(2) char object_owlTex_009DA8[] = dobject_owlTex_009DA8; + +#define dobject_owlTex_0071A8 "__OTR__objects/object_owl/object_owlTex_0071A8" +static const ALIGN_ASSET(2) char object_owlTex_0071A8[] = dobject_owlTex_0071A8; + +#define dobject_owlTex_0079A8 "__OTR__objects/object_owl/object_owlTex_0079A8" +static const ALIGN_ASSET(2) char object_owlTex_0079A8[] = dobject_owlTex_0079A8; + +#define dobject_owlTex_0081A8 "__OTR__objects/object_owl/object_owlTex_0081A8" +static const ALIGN_ASSET(2) char object_owlTex_0081A8[] = dobject_owlTex_0081A8; + +#define dobject_owlTex_0095A8 "__OTR__objects/object_owl/object_owlTex_0095A8" +static const ALIGN_ASSET(2) char object_owlTex_0095A8[] = dobject_owlTex_0095A8; + +#define dobject_owlTex_009FA8 "__OTR__objects/object_owl/object_owlTex_009FA8" +static const ALIGN_ASSET(2) char object_owlTex_009FA8[] = dobject_owlTex_009FA8; + +#define dobject_owlTex_00AFA8 "__OTR__objects/object_owl/object_owlTex_00AFA8" +static const ALIGN_ASSET(2) char object_owlTex_00AFA8[] = dobject_owlTex_00AFA8; + +#define dobject_owlTex_00B7A8 "__OTR__objects/object_owl/object_owlTex_00B7A8" +static const ALIGN_ASSET(2) char object_owlTex_00B7A8[] = dobject_owlTex_00B7A8; + +#define dgOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0[] = dgOwlPerchingSkelLimbsLimb_00FFCCDL_00F1C0; + +#define dgOwlPerchingSkelLimbsLimb_00FFD8DL_00F330 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFD8DL_00F330" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_00FFD8DL_00F330[] = dgOwlPerchingSkelLimbsLimb_00FFD8DL_00F330; + +#define dgOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0[] = dgOwlPerchingSkelLimbsLimb_00FFE4DL_00F7B0; + +#define dgOwlPerchingSkelLimbsLimb_00FFF0DL_00F868 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFF0DL_00F868" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_00FFF0DL_00F868[] = dgOwlPerchingSkelLimbsLimb_00FFF0DL_00F868; + +#define dgOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8[] = dgOwlPerchingSkelLimbsLimb_00FFFCDL_00F0D8; + +#define dgOwlPerchingSkelLimbsLimb_010008DL_00EEA0 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010008DL_00EEA0" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_010008DL_00EEA0[] = dgOwlPerchingSkelLimbsLimb_010008DL_00EEA0; + +#define dgOwlPerchingSkelLimbsLimb_010014DL_00ED10 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010014DL_00ED10" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_010014DL_00ED10[] = dgOwlPerchingSkelLimbsLimb_010014DL_00ED10; + +#define dgOwlPerchingSkelLimbsLimb_010020DL_00F920 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010020DL_00F920" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_010020DL_00F920[] = dgOwlPerchingSkelLimbsLimb_010020DL_00F920; + +#define dgOwlPerchingSkelLimbsLimb_01002CDL_00F9E8 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_01002CDL_00F9E8" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_01002CDL_00F9E8[] = dgOwlPerchingSkelLimbsLimb_01002CDL_00F9E8; + +#define dgOwlPerchingSkelLimbsLimb_010038DL_00FAD8 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010038DL_00FAD8" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_010038DL_00FAD8[] = dgOwlPerchingSkelLimbsLimb_010038DL_00FAD8; + +#define dgOwlPerchingSkelLimbsLimb_010044DL_00FC70 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010044DL_00FC70" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_010044DL_00FC70[] = dgOwlPerchingSkelLimbsLimb_010044DL_00FC70; + +#define dgOwlPerchingSkelLimbsLimb_010050DL_00FD38 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010050DL_00FD38" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_010050DL_00FD38[] = dgOwlPerchingSkelLimbsLimb_010050DL_00FD38; + +#define dgOwlPerchingSkelLimbsLimb_01005CDL_00FE28 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_01005CDL_00FE28" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_01005CDL_00FE28[] = dgOwlPerchingSkelLimbsLimb_01005CDL_00FE28; + +#define dgOwlPerchingSkelLimbsLimb_010068DL_00F030 "__OTR__objects/object_owl/gOwlPerchingSkelLimbsLimb_010068DL_00F030" +static const ALIGN_ASSET(2) char gOwlPerchingSkelLimbsLimb_010068DL_00F030[] = dgOwlPerchingSkelLimbsLimb_010068DL_00F030; \ No newline at end of file diff --git a/soh/assets/objects/object_peehat/object_peehat.h b/soh/assets/objects/object_peehat/object_peehat.h index 2f2e2fd9b..d180dfcab 100644 --- a/soh/assets/objects/object_peehat/object_peehat.h +++ b/soh/assets/objects/object_peehat/object_peehat.h @@ -1,121 +1,54 @@ #pragma once -#define dgPeehatSkel "__OTR__objects/object_peehat/gPeehatSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatSkel[] = dgPeehatSkel; -#else -static const char gPeehatSkel[] __attribute__((aligned (2))) = dgPeehatSkel; -#endif - -#define dgPeehatBodyDL "__OTR__objects/object_peehat/gPeehatBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatBodyDL[] = dgPeehatBodyDL; -#else -static const char gPeehatBodyDL[] __attribute__((aligned (2))) = dgPeehatBodyDL; -#endif - -#define dgPeehatWing1DL "__OTR__objects/object_peehat/gPeehatWing1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatWing1DL[] = dgPeehatWing1DL; -#else -static const char gPeehatWing1DL[] __attribute__((aligned (2))) = dgPeehatWing1DL; -#endif - -#define dgPeehatWing2DL "__OTR__objects/object_peehat/gPeehatWing2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatWing2DL[] = dgPeehatWing2DL; -#else -static const char gPeehatWing2DL[] __attribute__((aligned (2))) = dgPeehatWing2DL; -#endif - -#define dgPeehatWing3DL "__OTR__objects/object_peehat/gPeehatWing3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatWing3DL[] = dgPeehatWing3DL; -#else -static const char gPeehatWing3DL[] __attribute__((aligned (2))) = dgPeehatWing3DL; -#endif - -#define dgPeehatWing4DL "__OTR__objects/object_peehat/gPeehatWing4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatWing4DL[] = dgPeehatWing4DL; -#else -static const char gPeehatWing4DL[] __attribute__((aligned (2))) = dgPeehatWing4DL; -#endif - -#define dgPeehatWing5DL "__OTR__objects/object_peehat/gPeehatWing5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatWing5DL[] = dgPeehatWing5DL; -#else -static const char gPeehatWing5DL[] __attribute__((aligned (2))) = dgPeehatWing5DL; -#endif - -#define dgPeehatWing6DL "__OTR__objects/object_peehat/gPeehatWing6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatWing6DL[] = dgPeehatWing6DL; -#else -static const char gPeehatWing6DL[] __attribute__((aligned (2))) = dgPeehatWing6DL; -#endif - -#define dgPeehatTopDL "__OTR__objects/object_peehat/gPeehatTopDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatTopDL[] = dgPeehatTopDL; -#else -static const char gPeehatTopDL[] __attribute__((aligned (2))) = dgPeehatTopDL; -#endif - -#define dgPeehatLowerBodyTex "__OTR__objects/object_peehat/gPeehatLowerBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatLowerBodyTex[] = dgPeehatLowerBodyTex; -#else -static const char gPeehatLowerBodyTex[] __attribute__((aligned (2))) = dgPeehatLowerBodyTex; -#endif - -#define dgPeehatLeafTopTex "__OTR__objects/object_peehat/gPeehatLeafTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatLeafTopTex[] = dgPeehatLeafTopTex; -#else -static const char gPeehatLeafTopTex[] __attribute__((aligned (2))) = dgPeehatLeafTopTex; -#endif - -#define dgPeehatWingTex "__OTR__objects/object_peehat/gPeehatWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatWingTex[] = dgPeehatWingTex; -#else -static const char gPeehatWingTex[] __attribute__((aligned (2))) = dgPeehatWingTex; -#endif - -#define dgPeehatUpperBodyTex "__OTR__objects/object_peehat/gPeehatUpperBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatUpperBodyTex[] = dgPeehatUpperBodyTex; -#else -static const char gPeehatUpperBodyTex[] __attribute__((aligned (2))) = dgPeehatUpperBodyTex; -#endif - -#define dgPeehatLandingAnim "__OTR__objects/object_peehat/gPeehatLandingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatLandingAnim[] = dgPeehatLandingAnim; -#else -static const char gPeehatLandingAnim[] __attribute__((aligned (2))) = dgPeehatLandingAnim; -#endif - -#define dgPeehatFlyingAnim "__OTR__objects/object_peehat/gPeehatFlyingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatFlyingAnim[] = dgPeehatFlyingAnim; -#else -static const char gPeehatFlyingAnim[] __attribute__((aligned (2))) = dgPeehatFlyingAnim; -#endif - -#define dgPeehatRecoilAnim "__OTR__objects/object_peehat/gPeehatRecoilAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatRecoilAnim[] = dgPeehatRecoilAnim; -#else -static const char gPeehatRecoilAnim[] __attribute__((aligned (2))) = dgPeehatRecoilAnim; -#endif - -#define dgPeehatRisingAnim "__OTR__objects/object_peehat/gPeehatRisingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPeehatRisingAnim[] = dgPeehatRisingAnim; -#else -static const char gPeehatRisingAnim[] __attribute__((aligned (2))) = dgPeehatRisingAnim; -#endif - +#include "align_asset_macro.h" + +#define dgPeehatSkel "__OTR__objects/object_peehat/gPeehatSkel" +static const ALIGN_ASSET(2) char gPeehatSkel[] = dgPeehatSkel; + +#define dgPeehatBodyDL "__OTR__objects/object_peehat/gPeehatBodyDL" +static const ALIGN_ASSET(2) char gPeehatBodyDL[] = dgPeehatBodyDL; + +#define dgPeehatWing1DL "__OTR__objects/object_peehat/gPeehatWing1DL" +static const ALIGN_ASSET(2) char gPeehatWing1DL[] = dgPeehatWing1DL; + +#define dgPeehatWing2DL "__OTR__objects/object_peehat/gPeehatWing2DL" +static const ALIGN_ASSET(2) char gPeehatWing2DL[] = dgPeehatWing2DL; + +#define dgPeehatWing3DL "__OTR__objects/object_peehat/gPeehatWing3DL" +static const ALIGN_ASSET(2) char gPeehatWing3DL[] = dgPeehatWing3DL; + +#define dgPeehatWing4DL "__OTR__objects/object_peehat/gPeehatWing4DL" +static const ALIGN_ASSET(2) char gPeehatWing4DL[] = dgPeehatWing4DL; + +#define dgPeehatWing5DL "__OTR__objects/object_peehat/gPeehatWing5DL" +static const ALIGN_ASSET(2) char gPeehatWing5DL[] = dgPeehatWing5DL; + +#define dgPeehatWing6DL "__OTR__objects/object_peehat/gPeehatWing6DL" +static const ALIGN_ASSET(2) char gPeehatWing6DL[] = dgPeehatWing6DL; + +#define dgPeehatTopDL "__OTR__objects/object_peehat/gPeehatTopDL" +static const ALIGN_ASSET(2) char gPeehatTopDL[] = dgPeehatTopDL; + +#define dgPeehatLowerBodyTex "__OTR__objects/object_peehat/gPeehatLowerBodyTex" +static const ALIGN_ASSET(2) char gPeehatLowerBodyTex[] = dgPeehatLowerBodyTex; + +#define dgPeehatLeafTopTex "__OTR__objects/object_peehat/gPeehatLeafTopTex" +static const ALIGN_ASSET(2) char gPeehatLeafTopTex[] = dgPeehatLeafTopTex; + +#define dgPeehatWingTex "__OTR__objects/object_peehat/gPeehatWingTex" +static const ALIGN_ASSET(2) char gPeehatWingTex[] = dgPeehatWingTex; + +#define dgPeehatUpperBodyTex "__OTR__objects/object_peehat/gPeehatUpperBodyTex" +static const ALIGN_ASSET(2) char gPeehatUpperBodyTex[] = dgPeehatUpperBodyTex; + +#define dgPeehatLandingAnim "__OTR__objects/object_peehat/gPeehatLandingAnim" +static const ALIGN_ASSET(2) char gPeehatLandingAnim[] = dgPeehatLandingAnim; + +#define dgPeehatFlyingAnim "__OTR__objects/object_peehat/gPeehatFlyingAnim" +static const ALIGN_ASSET(2) char gPeehatFlyingAnim[] = dgPeehatFlyingAnim; + +#define dgPeehatRecoilAnim "__OTR__objects/object_peehat/gPeehatRecoilAnim" +static const ALIGN_ASSET(2) char gPeehatRecoilAnim[] = dgPeehatRecoilAnim; + +#define dgPeehatRisingAnim "__OTR__objects/object_peehat/gPeehatRisingAnim" +static const ALIGN_ASSET(2) char gPeehatRisingAnim[] = dgPeehatRisingAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_po_composer/object_po_composer.h b/soh/assets/objects/object_po_composer/object_po_composer.h index 8b8b74c6a..bbe59ef62 100644 --- a/soh/assets/objects/object_po_composer/object_po_composer.h +++ b/soh/assets/objects/object_po_composer/object_po_composer.h @@ -1,254 +1,111 @@ #pragma once -#define dgPoeComposerAttackAnim "__OTR__objects/object_po_composer/gPoeComposerAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerAttackAnim[] = dgPoeComposerAttackAnim; -#else -static const char gPoeComposerAttackAnim[] __attribute__((aligned (2))) = dgPoeComposerAttackAnim; -#endif - -#define dgPoeComposerDamagedAnim "__OTR__objects/object_po_composer/gPoeComposerDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerDamagedAnim[] = dgPoeComposerDamagedAnim; -#else -static const char gPoeComposerDamagedAnim[] __attribute__((aligned (2))) = dgPoeComposerDamagedAnim; -#endif - -#define dgPoeComposerFleeAnim "__OTR__objects/object_po_composer/gPoeComposerFleeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerFleeAnim[] = dgPoeComposerFleeAnim; -#else -static const char gPoeComposerFleeAnim[] __attribute__((aligned (2))) = dgPoeComposerFleeAnim; -#endif - -#define dgPoeComposerFloatAnim "__OTR__objects/object_po_composer/gPoeComposerFloatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerFloatAnim[] = dgPoeComposerFloatAnim; -#else -static const char gPoeComposerFloatAnim[] __attribute__((aligned (2))) = dgPoeComposerFloatAnim; -#endif - -#define dgPoeComposerAppearAnim "__OTR__objects/object_po_composer/gPoeComposerAppearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerAppearAnim[] = dgPoeComposerAppearAnim; -#else -static const char gPoeComposerAppearAnim[] __attribute__((aligned (2))) = dgPoeComposerAppearAnim; -#endif - -#define dgPoeComposerDisappearAnim "__OTR__objects/object_po_composer/gPoeComposerDisappearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerDisappearAnim[] = dgPoeComposerDisappearAnim; -#else -static const char gPoeComposerDisappearAnim[] __attribute__((aligned (2))) = dgPoeComposerDisappearAnim; -#endif - -#define dgPoeComposerSoulDL "__OTR__objects/object_po_composer/gPoeComposerSoulDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSoulDL[] = dgPoeComposerSoulDL; -#else -static const char gPoeComposerSoulDL[] __attribute__((aligned (2))) = dgPoeComposerSoulDL; -#endif - -#define dgPoeComposerLanternBottomDL "__OTR__objects/object_po_composer/gPoeComposerLanternBottomDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerLanternBottomDL[] = dgPoeComposerLanternBottomDL; -#else -static const char gPoeComposerLanternBottomDL[] __attribute__((aligned (2))) = dgPoeComposerLanternBottomDL; -#endif - -#define dgPoeComposerLanternTopDL "__OTR__objects/object_po_composer/gPoeComposerLanternTopDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerLanternTopDL[] = dgPoeComposerLanternTopDL; -#else -static const char gPoeComposerLanternTopDL[] __attribute__((aligned (2))) = dgPoeComposerLanternTopDL; -#endif - -#define dgPoeComposerLanternDL "__OTR__objects/object_po_composer/gPoeComposerLanternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerLanternDL[] = dgPoeComposerLanternDL; -#else -static const char gPoeComposerLanternDL[] __attribute__((aligned (2))) = dgPoeComposerLanternDL; -#endif - -#define dgPoeComposerFlatHeadDL "__OTR__objects/object_po_composer/gPoeComposerFlatHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerFlatHeadDL[] = dgPoeComposerFlatHeadDL; -#else -static const char gPoeComposerFlatHeadDL[] __attribute__((aligned (2))) = dgPoeComposerFlatHeadDL; -#endif - -#define dgPoeComposerBurnDL "__OTR__objects/object_po_composer/gPoeComposerBurnDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerBurnDL[] = dgPoeComposerBurnDL; -#else -static const char gPoeComposerBurnDL[] __attribute__((aligned (2))) = dgPoeComposerBurnDL; -#endif - -#define dgPoeComposerSkel "__OTR__objects/object_po_composer/gPoeComposerSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkel[] = dgPoeComposerSkel; -#else -static const char gPoeComposerSkel[] __attribute__((aligned (2))) = dgPoeComposerSkel; -#endif - -#define dobject_po_composerTex_001450 "__OTR__objects/object_po_composer/object_po_composerTex_001450" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_001450[] = dobject_po_composerTex_001450; -#else -static const char object_po_composerTex_001450[] __attribute__((aligned (2))) = dobject_po_composerTex_001450; -#endif - -#define dobject_po_composerTex_0056E0 "__OTR__objects/object_po_composer/object_po_composerTex_0056E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_0056E0[] = dobject_po_composerTex_0056E0; -#else -static const char object_po_composerTex_0056E0[] __attribute__((aligned (2))) = dobject_po_composerTex_0056E0; -#endif - -#define dobject_po_composerTex_0058E0 "__OTR__objects/object_po_composer/object_po_composerTex_0058E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_0058E0[] = dobject_po_composerTex_0058E0; -#else -static const char object_po_composerTex_0058E0[] __attribute__((aligned (2))) = dobject_po_composerTex_0058E0; -#endif - -#define dobject_po_composerTex_005AE0 "__OTR__objects/object_po_composer/object_po_composerTex_005AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_005AE0[] = dobject_po_composerTex_005AE0; -#else -static const char object_po_composerTex_005AE0[] __attribute__((aligned (2))) = dobject_po_composerTex_005AE0; -#endif - -#define dobject_po_composerTex_0068E0 "__OTR__objects/object_po_composer/object_po_composerTex_0068E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_0068E0[] = dobject_po_composerTex_0068E0; -#else -static const char object_po_composerTex_0068E0[] __attribute__((aligned (2))) = dobject_po_composerTex_0068E0; -#endif - -#define dobject_po_composerTex_0062E0 "__OTR__objects/object_po_composer/object_po_composerTex_0062E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_0062E0[] = dobject_po_composerTex_0062E0; -#else -static const char object_po_composerTex_0062E0[] __attribute__((aligned (2))) = dobject_po_composerTex_0062E0; -#endif - -#define dobject_po_composerTex_0064E0 "__OTR__objects/object_po_composer/object_po_composerTex_0064E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_0064E0[] = dobject_po_composerTex_0064E0; -#else -static const char object_po_composerTex_0064E0[] __attribute__((aligned (2))) = dobject_po_composerTex_0064E0; -#endif - -#define dobject_po_composerTex_0060E0 "__OTR__objects/object_po_composer/object_po_composerTex_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_0060E0[] = dobject_po_composerTex_0060E0; -#else -static const char object_po_composerTex_0060E0[] __attribute__((aligned (2))) = dobject_po_composerTex_0060E0; -#endif - -#define dobject_po_composerTex_005CE0 "__OTR__objects/object_po_composer/object_po_composerTex_005CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_005CE0[] = dobject_po_composerTex_005CE0; -#else -static const char object_po_composerTex_005CE0[] __attribute__((aligned (2))) = dobject_po_composerTex_005CE0; -#endif - -#define dobject_po_composerTex_006CE0 "__OTR__objects/object_po_composer/object_po_composerTex_006CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_006CE0[] = dobject_po_composerTex_006CE0; -#else -static const char object_po_composerTex_006CE0[] __attribute__((aligned (2))) = dobject_po_composerTex_006CE0; -#endif - -#define dobject_po_composerTex_006AE0 "__OTR__objects/object_po_composer/object_po_composerTex_006AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_006AE0[] = dobject_po_composerTex_006AE0; -#else -static const char object_po_composerTex_006AE0[] __attribute__((aligned (2))) = dobject_po_composerTex_006AE0; -#endif - -#define dgPoeComposerSkelLimbsLimb_006EE0DL_002970 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006EE0DL_002970" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006EE0DL_002970[] = dgPoeComposerSkelLimbsLimb_006EE0DL_002970; -#else -static const char gPoeComposerSkelLimbsLimb_006EE0DL_002970[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006EE0DL_002970; -#endif - -#define dgPoeComposerSkelLimbsLimb_006EECDL_003090 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006EECDL_003090" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006EECDL_003090[] = dgPoeComposerSkelLimbsLimb_006EECDL_003090; -#else -static const char gPoeComposerSkelLimbsLimb_006EECDL_003090[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006EECDL_003090; -#endif - -#define dgPoeComposerSkelLimbsLimb_006EF8DL_003348 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006EF8DL_003348" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006EF8DL_003348[] = dgPoeComposerSkelLimbsLimb_006EF8DL_003348; -#else -static const char gPoeComposerSkelLimbsLimb_006EF8DL_003348[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006EF8DL_003348; -#endif - -#define dgPoeComposerSkelLimbsLimb_006F04DL_0033F8 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F04DL_0033F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006F04DL_0033F8[] = dgPoeComposerSkelLimbsLimb_006F04DL_0033F8; -#else -static const char gPoeComposerSkelLimbsLimb_006F04DL_0033F8[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006F04DL_0033F8; -#endif - -#define dgPoeComposerSkelLimbsLimb_006F10DL_004410 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F10DL_004410" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006F10DL_004410[] = dgPoeComposerSkelLimbsLimb_006F10DL_004410; -#else -static const char gPoeComposerSkelLimbsLimb_006F10DL_004410[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006F10DL_004410; -#endif - -#define dgPoeComposerSkelLimbsLimb_006F1CDL_002C60 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F1CDL_002C60" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006F1CDL_002C60[] = dgPoeComposerSkelLimbsLimb_006F1CDL_002C60; -#else -static const char gPoeComposerSkelLimbsLimb_006F1CDL_002C60[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006F1CDL_002C60; -#endif - -#define dgPoeComposerSkelLimbsLimb_006F28DL_002F28 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F28DL_002F28" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006F28DL_002F28[] = dgPoeComposerSkelLimbsLimb_006F28DL_002F28; -#else -static const char gPoeComposerSkelLimbsLimb_006F28DL_002F28[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006F28DL_002F28; -#endif - -#define dgPoeComposerSkelLimbsLimb_006F34DL_002FD8 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F34DL_002FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006F34DL_002FD8[] = dgPoeComposerSkelLimbsLimb_006F34DL_002FD8; -#else -static const char gPoeComposerSkelLimbsLimb_006F34DL_002FD8[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006F34DL_002FD8; -#endif - -#define dgPoeComposerSkelLimbsLimb_006F4CDL_004100 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F4CDL_004100" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006F4CDL_004100[] = dgPoeComposerSkelLimbsLimb_006F4CDL_004100; -#else -static const char gPoeComposerSkelLimbsLimb_006F4CDL_004100[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006F4CDL_004100; -#endif - -#define dgPoeComposerSkelLimbsLimb_006F58DL_002B70 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F58DL_002B70" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeComposerSkelLimbsLimb_006F58DL_002B70[] = dgPoeComposerSkelLimbsLimb_006F58DL_002B70; -#else -static const char gPoeComposerSkelLimbsLimb_006F58DL_002B70[] __attribute__((aligned (2))) = dgPoeComposerSkelLimbsLimb_006F58DL_002B70; -#endif - -#define dobject_po_composerTex_0054E0 "__OTR__objects/object_po_composer/object_po_composerTex_0054E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_0054E0[] = dobject_po_composerTex_0054E0; -#else -static const char object_po_composerTex_0054E0[] __attribute__((aligned (2))) = dobject_po_composerTex_0054E0; -#endif - -#define dobject_po_composerTex_0066E0 "__OTR__objects/object_po_composer/object_po_composerTex_0066E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_composerTex_0066E0[] = dobject_po_composerTex_0066E0; -#else -static const char object_po_composerTex_0066E0[] __attribute__((aligned (2))) = dobject_po_composerTex_0066E0; -#endif - +#include "align_asset_macro.h" + +#define dgPoeComposerAttackAnim "__OTR__objects/object_po_composer/gPoeComposerAttackAnim" +static const ALIGN_ASSET(2) char gPoeComposerAttackAnim[] = dgPoeComposerAttackAnim; + +#define dgPoeComposerDamagedAnim "__OTR__objects/object_po_composer/gPoeComposerDamagedAnim" +static const ALIGN_ASSET(2) char gPoeComposerDamagedAnim[] = dgPoeComposerDamagedAnim; + +#define dgPoeComposerFleeAnim "__OTR__objects/object_po_composer/gPoeComposerFleeAnim" +static const ALIGN_ASSET(2) char gPoeComposerFleeAnim[] = dgPoeComposerFleeAnim; + +#define dgPoeComposerFloatAnim "__OTR__objects/object_po_composer/gPoeComposerFloatAnim" +static const ALIGN_ASSET(2) char gPoeComposerFloatAnim[] = dgPoeComposerFloatAnim; + +#define dgPoeComposerAppearAnim "__OTR__objects/object_po_composer/gPoeComposerAppearAnim" +static const ALIGN_ASSET(2) char gPoeComposerAppearAnim[] = dgPoeComposerAppearAnim; + +#define dgPoeComposerDisappearAnim "__OTR__objects/object_po_composer/gPoeComposerDisappearAnim" +static const ALIGN_ASSET(2) char gPoeComposerDisappearAnim[] = dgPoeComposerDisappearAnim; + +#define dgPoeComposerSoulDL "__OTR__objects/object_po_composer/gPoeComposerSoulDL" +static const ALIGN_ASSET(2) char gPoeComposerSoulDL[] = dgPoeComposerSoulDL; + +#define dgPoeComposerLanternBottomDL "__OTR__objects/object_po_composer/gPoeComposerLanternBottomDL" +static const ALIGN_ASSET(2) char gPoeComposerLanternBottomDL[] = dgPoeComposerLanternBottomDL; + +#define dgPoeComposerLanternTopDL "__OTR__objects/object_po_composer/gPoeComposerLanternTopDL" +static const ALIGN_ASSET(2) char gPoeComposerLanternTopDL[] = dgPoeComposerLanternTopDL; + +#define dgPoeComposerLanternDL "__OTR__objects/object_po_composer/gPoeComposerLanternDL" +static const ALIGN_ASSET(2) char gPoeComposerLanternDL[] = dgPoeComposerLanternDL; + +#define dgPoeComposerFlatHeadDL "__OTR__objects/object_po_composer/gPoeComposerFlatHeadDL" +static const ALIGN_ASSET(2) char gPoeComposerFlatHeadDL[] = dgPoeComposerFlatHeadDL; + +#define dgPoeComposerBurnDL "__OTR__objects/object_po_composer/gPoeComposerBurnDL" +static const ALIGN_ASSET(2) char gPoeComposerBurnDL[] = dgPoeComposerBurnDL; + +#define dgPoeComposerSkel "__OTR__objects/object_po_composer/gPoeComposerSkel" +static const ALIGN_ASSET(2) char gPoeComposerSkel[] = dgPoeComposerSkel; + +#define dobject_po_composerTex_001450 "__OTR__objects/object_po_composer/object_po_composerTex_001450" +static const ALIGN_ASSET(2) char object_po_composerTex_001450[] = dobject_po_composerTex_001450; + +#define dobject_po_composerTex_0056E0 "__OTR__objects/object_po_composer/object_po_composerTex_0056E0" +static const ALIGN_ASSET(2) char object_po_composerTex_0056E0[] = dobject_po_composerTex_0056E0; + +#define dobject_po_composerTex_0058E0 "__OTR__objects/object_po_composer/object_po_composerTex_0058E0" +static const ALIGN_ASSET(2) char object_po_composerTex_0058E0[] = dobject_po_composerTex_0058E0; + +#define dobject_po_composerTex_005AE0 "__OTR__objects/object_po_composer/object_po_composerTex_005AE0" +static const ALIGN_ASSET(2) char object_po_composerTex_005AE0[] = dobject_po_composerTex_005AE0; + +#define dobject_po_composerTex_0068E0 "__OTR__objects/object_po_composer/object_po_composerTex_0068E0" +static const ALIGN_ASSET(2) char object_po_composerTex_0068E0[] = dobject_po_composerTex_0068E0; + +#define dobject_po_composerTex_0062E0 "__OTR__objects/object_po_composer/object_po_composerTex_0062E0" +static const ALIGN_ASSET(2) char object_po_composerTex_0062E0[] = dobject_po_composerTex_0062E0; + +#define dobject_po_composerTex_0064E0 "__OTR__objects/object_po_composer/object_po_composerTex_0064E0" +static const ALIGN_ASSET(2) char object_po_composerTex_0064E0[] = dobject_po_composerTex_0064E0; + +#define dobject_po_composerTex_0060E0 "__OTR__objects/object_po_composer/object_po_composerTex_0060E0" +static const ALIGN_ASSET(2) char object_po_composerTex_0060E0[] = dobject_po_composerTex_0060E0; + +#define dobject_po_composerTex_005CE0 "__OTR__objects/object_po_composer/object_po_composerTex_005CE0" +static const ALIGN_ASSET(2) char object_po_composerTex_005CE0[] = dobject_po_composerTex_005CE0; + +#define dobject_po_composerTex_006CE0 "__OTR__objects/object_po_composer/object_po_composerTex_006CE0" +static const ALIGN_ASSET(2) char object_po_composerTex_006CE0[] = dobject_po_composerTex_006CE0; + +#define dobject_po_composerTex_006AE0 "__OTR__objects/object_po_composer/object_po_composerTex_006AE0" +static const ALIGN_ASSET(2) char object_po_composerTex_006AE0[] = dobject_po_composerTex_006AE0; + +#define dgPoeComposerSkelLimbsLimb_006EE0DL_002970 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006EE0DL_002970" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006EE0DL_002970[] = dgPoeComposerSkelLimbsLimb_006EE0DL_002970; + +#define dgPoeComposerSkelLimbsLimb_006EECDL_003090 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006EECDL_003090" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006EECDL_003090[] = dgPoeComposerSkelLimbsLimb_006EECDL_003090; + +#define dgPoeComposerSkelLimbsLimb_006EF8DL_003348 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006EF8DL_003348" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006EF8DL_003348[] = dgPoeComposerSkelLimbsLimb_006EF8DL_003348; + +#define dgPoeComposerSkelLimbsLimb_006F04DL_0033F8 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F04DL_0033F8" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006F04DL_0033F8[] = dgPoeComposerSkelLimbsLimb_006F04DL_0033F8; + +#define dgPoeComposerSkelLimbsLimb_006F10DL_004410 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F10DL_004410" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006F10DL_004410[] = dgPoeComposerSkelLimbsLimb_006F10DL_004410; + +#define dgPoeComposerSkelLimbsLimb_006F1CDL_002C60 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F1CDL_002C60" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006F1CDL_002C60[] = dgPoeComposerSkelLimbsLimb_006F1CDL_002C60; + +#define dgPoeComposerSkelLimbsLimb_006F28DL_002F28 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F28DL_002F28" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006F28DL_002F28[] = dgPoeComposerSkelLimbsLimb_006F28DL_002F28; + +#define dgPoeComposerSkelLimbsLimb_006F34DL_002FD8 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F34DL_002FD8" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006F34DL_002FD8[] = dgPoeComposerSkelLimbsLimb_006F34DL_002FD8; + +#define dgPoeComposerSkelLimbsLimb_006F4CDL_004100 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F4CDL_004100" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006F4CDL_004100[] = dgPoeComposerSkelLimbsLimb_006F4CDL_004100; + +#define dgPoeComposerSkelLimbsLimb_006F58DL_002B70 "__OTR__objects/object_po_composer/gPoeComposerSkelLimbsLimb_006F58DL_002B70" +static const ALIGN_ASSET(2) char gPoeComposerSkelLimbsLimb_006F58DL_002B70[] = dgPoeComposerSkelLimbsLimb_006F58DL_002B70; + +#define dobject_po_composerTex_0054E0 "__OTR__objects/object_po_composer/object_po_composerTex_0054E0" +static const ALIGN_ASSET(2) char object_po_composerTex_0054E0[] = dobject_po_composerTex_0054E0; + +#define dobject_po_composerTex_0066E0 "__OTR__objects/object_po_composer/object_po_composerTex_0066E0" +static const ALIGN_ASSET(2) char object_po_composerTex_0066E0[] = dobject_po_composerTex_0066E0; \ No newline at end of file diff --git a/soh/assets/objects/object_po_field/object_po_field.h b/soh/assets/objects/object_po_field/object_po_field.h index 4597a714f..018dc311e 100644 --- a/soh/assets/objects/object_po_field/object_po_field.h +++ b/soh/assets/objects/object_po_field/object_po_field.h @@ -1,247 +1,108 @@ #pragma once -#define dgPoeFieldAttackAnim "__OTR__objects/object_po_field/gPoeFieldAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldAttackAnim[] = dgPoeFieldAttackAnim; -#else -static const char gPoeFieldAttackAnim[] __attribute__((aligned (2))) = dgPoeFieldAttackAnim; -#endif - -#define dgPoeFieldDamagedAnim "__OTR__objects/object_po_field/gPoeFieldDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldDamagedAnim[] = dgPoeFieldDamagedAnim; -#else -static const char gPoeFieldDamagedAnim[] __attribute__((aligned (2))) = dgPoeFieldDamagedAnim; -#endif - -#define dgPoeFieldFleeAnim "__OTR__objects/object_po_field/gPoeFieldFleeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldFleeAnim[] = dgPoeFieldFleeAnim; -#else -static const char gPoeFieldFleeAnim[] __attribute__((aligned (2))) = dgPoeFieldFleeAnim; -#endif - -#define dgPoeFieldFloatAnim "__OTR__objects/object_po_field/gPoeFieldFloatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldFloatAnim[] = dgPoeFieldFloatAnim; -#else -static const char gPoeFieldFloatAnim[] __attribute__((aligned (2))) = dgPoeFieldFloatAnim; -#endif - -#define dgPoeFieldAppearAnim "__OTR__objects/object_po_field/gPoeFieldAppearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldAppearAnim[] = dgPoeFieldAppearAnim; -#else -static const char gPoeFieldAppearAnim[] __attribute__((aligned (2))) = dgPoeFieldAppearAnim; -#endif - -#define dgPoeFieldDisappearAnim "__OTR__objects/object_po_field/gPoeFieldDisappearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldDisappearAnim[] = dgPoeFieldDisappearAnim; -#else -static const char gPoeFieldDisappearAnim[] __attribute__((aligned (2))) = dgPoeFieldDisappearAnim; -#endif - -#define dgBigPoeSoulTex "__OTR__objects/object_po_field/gBigPoeSoulTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigPoeSoulTex[] = dgBigPoeSoulTex; -#else -static const char gBigPoeSoulTex[] __attribute__((aligned (2))) = dgBigPoeSoulTex; -#endif - -#define dgPoeFieldSoulTex "__OTR__objects/object_po_field/gPoeFieldSoulTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSoulTex[] = dgPoeFieldSoulTex; -#else -static const char gPoeFieldSoulTex[] __attribute__((aligned (2))) = dgPoeFieldSoulTex; -#endif - -#define dgPoeFieldSoulDL "__OTR__objects/object_po_field/gPoeFieldSoulDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSoulDL[] = dgPoeFieldSoulDL; -#else -static const char gPoeFieldSoulDL[] __attribute__((aligned (2))) = dgPoeFieldSoulDL; -#endif - -#define dgPoeFieldLanternDL "__OTR__objects/object_po_field/gPoeFieldLanternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldLanternDL[] = dgPoeFieldLanternDL; -#else -static const char gPoeFieldLanternDL[] __attribute__((aligned (2))) = dgPoeFieldLanternDL; -#endif - -#define dgPoeFieldLanternTopDL "__OTR__objects/object_po_field/gPoeFieldLanternTopDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldLanternTopDL[] = dgPoeFieldLanternTopDL; -#else -static const char gPoeFieldLanternTopDL[] __attribute__((aligned (2))) = dgPoeFieldLanternTopDL; -#endif - -#define dgBigPoeCloakDL "__OTR__objects/object_po_field/gBigPoeCloakDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigPoeCloakDL[] = dgBigPoeCloakDL; -#else -static const char gBigPoeCloakDL[] __attribute__((aligned (2))) = dgBigPoeCloakDL; -#endif - -#define dgBigPoeFaceDL "__OTR__objects/object_po_field/gBigPoeFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigPoeFaceDL[] = dgBigPoeFaceDL; -#else -static const char gBigPoeFaceDL[] __attribute__((aligned (2))) = dgBigPoeFaceDL; -#endif - -#define dgBigPoeBodyDL "__OTR__objects/object_po_field/gBigPoeBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigPoeBodyDL[] = dgBigPoeBodyDL; -#else -static const char gBigPoeBodyDL[] __attribute__((aligned (2))) = dgBigPoeBodyDL; -#endif - -#define dgPoeFieldBurnDL "__OTR__objects/object_po_field/gPoeFieldBurnDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldBurnDL[] = dgPoeFieldBurnDL; -#else -static const char gPoeFieldBurnDL[] __attribute__((aligned (2))) = dgPoeFieldBurnDL; -#endif - -#define dgPoeFieldSkel "__OTR__objects/object_po_field/gPoeFieldSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkel[] = dgPoeFieldSkel; -#else -static const char gPoeFieldSkel[] __attribute__((aligned (2))) = dgPoeFieldSkel; -#endif - -#define dobject_po_fieldTex_002670 "__OTR__objects/object_po_field/object_po_fieldTex_002670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_002670[] = dobject_po_fieldTex_002670; -#else -static const char object_po_fieldTex_002670[] __attribute__((aligned (2))) = dobject_po_fieldTex_002670; -#endif - -#define dobject_po_fieldTex_002470 "__OTR__objects/object_po_field/object_po_fieldTex_002470" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_002470[] = dobject_po_fieldTex_002470; -#else -static const char object_po_fieldTex_002470[] __attribute__((aligned (2))) = dobject_po_fieldTex_002470; -#endif - -#define dobject_po_fieldTex_0033F0 "__OTR__objects/object_po_field/object_po_fieldTex_0033F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_0033F0[] = dobject_po_fieldTex_0033F0; -#else -static const char object_po_fieldTex_0033F0[] __attribute__((aligned (2))) = dobject_po_fieldTex_0033F0; -#endif - -#define dobject_po_fieldTex_0032F0 "__OTR__objects/object_po_field/object_po_fieldTex_0032F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_0032F0[] = dobject_po_fieldTex_0032F0; -#else -static const char object_po_fieldTex_0032F0[] __attribute__((aligned (2))) = dobject_po_fieldTex_0032F0; -#endif - -#define dobject_po_fieldTex_003270 "__OTR__objects/object_po_field/object_po_fieldTex_003270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_003270[] = dobject_po_fieldTex_003270; -#else -static const char object_po_fieldTex_003270[] __attribute__((aligned (2))) = dobject_po_fieldTex_003270; -#endif - -#define dobject_po_fieldTex_002870 "__OTR__objects/object_po_field/object_po_fieldTex_002870" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_002870[] = dobject_po_fieldTex_002870; -#else -static const char object_po_fieldTex_002870[] __attribute__((aligned (2))) = dobject_po_fieldTex_002870; -#endif - -#define dobject_po_fieldTex_0037F0 "__OTR__objects/object_po_field/object_po_fieldTex_0037F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_0037F0[] = dobject_po_fieldTex_0037F0; -#else -static const char object_po_fieldTex_0037F0[] __attribute__((aligned (2))) = dobject_po_fieldTex_0037F0; -#endif - -#define dobject_po_fieldTex_005AB0 "__OTR__objects/object_po_field/object_po_fieldTex_005AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_005AB0[] = dobject_po_fieldTex_005AB0; -#else -static const char object_po_fieldTex_005AB0[] __attribute__((aligned (2))) = dobject_po_fieldTex_005AB0; -#endif - -#define dobject_po_fieldTex_005CB0 "__OTR__objects/object_po_field/object_po_fieldTex_005CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_005CB0[] = dobject_po_fieldTex_005CB0; -#else -static const char object_po_fieldTex_005CB0[] __attribute__((aligned (2))) = dobject_po_fieldTex_005CB0; -#endif - -#define dgPoeFieldSkelLimbsLimb_0069A0DL_004F60 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069A0DL_004F60" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkelLimbsLimb_0069A0DL_004F60[] = dgPoeFieldSkelLimbsLimb_0069A0DL_004F60; -#else -static const char gPoeFieldSkelLimbsLimb_0069A0DL_004F60[] __attribute__((aligned (2))) = dgPoeFieldSkelLimbsLimb_0069A0DL_004F60; -#endif - -#define dgPoeFieldSkelLimbsLimb_0069ACDL_005288 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069ACDL_005288" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkelLimbsLimb_0069ACDL_005288[] = dgPoeFieldSkelLimbsLimb_0069ACDL_005288; -#else -static const char gPoeFieldSkelLimbsLimb_0069ACDL_005288[] __attribute__((aligned (2))) = dgPoeFieldSkelLimbsLimb_0069ACDL_005288; -#endif - -#define dgPoeFieldSkelLimbsLimb_0069B8DL_0051A0 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069B8DL_0051A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkelLimbsLimb_0069B8DL_0051A0[] = dgPoeFieldSkelLimbsLimb_0069B8DL_0051A0; -#else -static const char gPoeFieldSkelLimbsLimb_0069B8DL_0051A0[] __attribute__((aligned (2))) = dgPoeFieldSkelLimbsLimb_0069B8DL_0051A0; -#endif - -#define dgPoeFieldSkelLimbsLimb_0069C4DL_0050F8 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069C4DL_0050F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkelLimbsLimb_0069C4DL_0050F8[] = dgPoeFieldSkelLimbsLimb_0069C4DL_0050F8; -#else -static const char gPoeFieldSkelLimbsLimb_0069C4DL_0050F8[] __attribute__((aligned (2))) = dgPoeFieldSkelLimbsLimb_0069C4DL_0050F8; -#endif - -#define dgPoeFieldSkelLimbsLimb_0069D0DL_005058 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069D0DL_005058" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkelLimbsLimb_0069D0DL_005058[] = dgPoeFieldSkelLimbsLimb_0069D0DL_005058; -#else -static const char gPoeFieldSkelLimbsLimb_0069D0DL_005058[] __attribute__((aligned (2))) = dgPoeFieldSkelLimbsLimb_0069D0DL_005058; -#endif - -#define dgPoeFieldSkelLimbsLimb_0069DCDL_004D48 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069DCDL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkelLimbsLimb_0069DCDL_004D48[] = dgPoeFieldSkelLimbsLimb_0069DCDL_004D48; -#else -static const char gPoeFieldSkelLimbsLimb_0069DCDL_004D48[] __attribute__((aligned (2))) = dgPoeFieldSkelLimbsLimb_0069DCDL_004D48; -#endif - -#define dgPoeFieldSkelLimbsLimb_0069F4DL_005328 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069F4DL_005328" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkelLimbsLimb_0069F4DL_005328[] = dgPoeFieldSkelLimbsLimb_0069F4DL_005328; -#else -static const char gPoeFieldSkelLimbsLimb_0069F4DL_005328[] __attribute__((aligned (2))) = dgPoeFieldSkelLimbsLimb_0069F4DL_005328; -#endif - -#define dgPoeFieldSkelLimbsLimb_006A00DL_004DF8 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_006A00DL_004DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFieldSkelLimbsLimb_006A00DL_004DF8[] = dgPoeFieldSkelLimbsLimb_006A00DL_004DF8; -#else -static const char gPoeFieldSkelLimbsLimb_006A00DL_004DF8[] __attribute__((aligned (2))) = dgPoeFieldSkelLimbsLimb_006A00DL_004DF8; -#endif - -#define dobject_po_fieldTex_0035F0 "__OTR__objects/object_po_field/object_po_fieldTex_0035F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_0035F0[] = dobject_po_fieldTex_0035F0; -#else -static const char object_po_fieldTex_0035F0[] __attribute__((aligned (2))) = dobject_po_fieldTex_0035F0; -#endif - -#define dobject_po_fieldTex_003070 "__OTR__objects/object_po_field/object_po_fieldTex_003070" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_fieldTex_003070[] = dobject_po_fieldTex_003070; -#else -static const char object_po_fieldTex_003070[] __attribute__((aligned (2))) = dobject_po_fieldTex_003070; -#endif - +#include "align_asset_macro.h" + +#define dgPoeFieldAttackAnim "__OTR__objects/object_po_field/gPoeFieldAttackAnim" +static const ALIGN_ASSET(2) char gPoeFieldAttackAnim[] = dgPoeFieldAttackAnim; + +#define dgPoeFieldDamagedAnim "__OTR__objects/object_po_field/gPoeFieldDamagedAnim" +static const ALIGN_ASSET(2) char gPoeFieldDamagedAnim[] = dgPoeFieldDamagedAnim; + +#define dgPoeFieldFleeAnim "__OTR__objects/object_po_field/gPoeFieldFleeAnim" +static const ALIGN_ASSET(2) char gPoeFieldFleeAnim[] = dgPoeFieldFleeAnim; + +#define dgPoeFieldFloatAnim "__OTR__objects/object_po_field/gPoeFieldFloatAnim" +static const ALIGN_ASSET(2) char gPoeFieldFloatAnim[] = dgPoeFieldFloatAnim; + +#define dgPoeFieldAppearAnim "__OTR__objects/object_po_field/gPoeFieldAppearAnim" +static const ALIGN_ASSET(2) char gPoeFieldAppearAnim[] = dgPoeFieldAppearAnim; + +#define dgPoeFieldDisappearAnim "__OTR__objects/object_po_field/gPoeFieldDisappearAnim" +static const ALIGN_ASSET(2) char gPoeFieldDisappearAnim[] = dgPoeFieldDisappearAnim; + +#define dgBigPoeSoulTex "__OTR__objects/object_po_field/gBigPoeSoulTex" +static const ALIGN_ASSET(2) char gBigPoeSoulTex[] = dgBigPoeSoulTex; + +#define dgPoeFieldSoulTex "__OTR__objects/object_po_field/gPoeFieldSoulTex" +static const ALIGN_ASSET(2) char gPoeFieldSoulTex[] = dgPoeFieldSoulTex; + +#define dgPoeFieldSoulDL "__OTR__objects/object_po_field/gPoeFieldSoulDL" +static const ALIGN_ASSET(2) char gPoeFieldSoulDL[] = dgPoeFieldSoulDL; + +#define dgPoeFieldLanternDL "__OTR__objects/object_po_field/gPoeFieldLanternDL" +static const ALIGN_ASSET(2) char gPoeFieldLanternDL[] = dgPoeFieldLanternDL; + +#define dgPoeFieldLanternTopDL "__OTR__objects/object_po_field/gPoeFieldLanternTopDL" +static const ALIGN_ASSET(2) char gPoeFieldLanternTopDL[] = dgPoeFieldLanternTopDL; + +#define dgBigPoeCloakDL "__OTR__objects/object_po_field/gBigPoeCloakDL" +static const ALIGN_ASSET(2) char gBigPoeCloakDL[] = dgBigPoeCloakDL; + +#define dgBigPoeFaceDL "__OTR__objects/object_po_field/gBigPoeFaceDL" +static const ALIGN_ASSET(2) char gBigPoeFaceDL[] = dgBigPoeFaceDL; + +#define dgBigPoeBodyDL "__OTR__objects/object_po_field/gBigPoeBodyDL" +static const ALIGN_ASSET(2) char gBigPoeBodyDL[] = dgBigPoeBodyDL; + +#define dgPoeFieldBurnDL "__OTR__objects/object_po_field/gPoeFieldBurnDL" +static const ALIGN_ASSET(2) char gPoeFieldBurnDL[] = dgPoeFieldBurnDL; + +#define dgPoeFieldSkel "__OTR__objects/object_po_field/gPoeFieldSkel" +static const ALIGN_ASSET(2) char gPoeFieldSkel[] = dgPoeFieldSkel; + +#define dobject_po_fieldTex_002670 "__OTR__objects/object_po_field/object_po_fieldTex_002670" +static const ALIGN_ASSET(2) char object_po_fieldTex_002670[] = dobject_po_fieldTex_002670; + +#define dobject_po_fieldTex_002470 "__OTR__objects/object_po_field/object_po_fieldTex_002470" +static const ALIGN_ASSET(2) char object_po_fieldTex_002470[] = dobject_po_fieldTex_002470; + +#define dobject_po_fieldTex_0033F0 "__OTR__objects/object_po_field/object_po_fieldTex_0033F0" +static const ALIGN_ASSET(2) char object_po_fieldTex_0033F0[] = dobject_po_fieldTex_0033F0; + +#define dobject_po_fieldTex_0032F0 "__OTR__objects/object_po_field/object_po_fieldTex_0032F0" +static const ALIGN_ASSET(2) char object_po_fieldTex_0032F0[] = dobject_po_fieldTex_0032F0; + +#define dobject_po_fieldTex_003270 "__OTR__objects/object_po_field/object_po_fieldTex_003270" +static const ALIGN_ASSET(2) char object_po_fieldTex_003270[] = dobject_po_fieldTex_003270; + +#define dobject_po_fieldTex_002870 "__OTR__objects/object_po_field/object_po_fieldTex_002870" +static const ALIGN_ASSET(2) char object_po_fieldTex_002870[] = dobject_po_fieldTex_002870; + +#define dobject_po_fieldTex_0037F0 "__OTR__objects/object_po_field/object_po_fieldTex_0037F0" +static const ALIGN_ASSET(2) char object_po_fieldTex_0037F0[] = dobject_po_fieldTex_0037F0; + +#define dobject_po_fieldTex_005AB0 "__OTR__objects/object_po_field/object_po_fieldTex_005AB0" +static const ALIGN_ASSET(2) char object_po_fieldTex_005AB0[] = dobject_po_fieldTex_005AB0; + +#define dobject_po_fieldTex_005CB0 "__OTR__objects/object_po_field/object_po_fieldTex_005CB0" +static const ALIGN_ASSET(2) char object_po_fieldTex_005CB0[] = dobject_po_fieldTex_005CB0; + +#define dgPoeFieldSkelLimbsLimb_0069A0DL_004F60 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069A0DL_004F60" +static const ALIGN_ASSET(2) char gPoeFieldSkelLimbsLimb_0069A0DL_004F60[] = dgPoeFieldSkelLimbsLimb_0069A0DL_004F60; + +#define dgPoeFieldSkelLimbsLimb_0069ACDL_005288 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069ACDL_005288" +static const ALIGN_ASSET(2) char gPoeFieldSkelLimbsLimb_0069ACDL_005288[] = dgPoeFieldSkelLimbsLimb_0069ACDL_005288; + +#define dgPoeFieldSkelLimbsLimb_0069B8DL_0051A0 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069B8DL_0051A0" +static const ALIGN_ASSET(2) char gPoeFieldSkelLimbsLimb_0069B8DL_0051A0[] = dgPoeFieldSkelLimbsLimb_0069B8DL_0051A0; + +#define dgPoeFieldSkelLimbsLimb_0069C4DL_0050F8 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069C4DL_0050F8" +static const ALIGN_ASSET(2) char gPoeFieldSkelLimbsLimb_0069C4DL_0050F8[] = dgPoeFieldSkelLimbsLimb_0069C4DL_0050F8; + +#define dgPoeFieldSkelLimbsLimb_0069D0DL_005058 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069D0DL_005058" +static const ALIGN_ASSET(2) char gPoeFieldSkelLimbsLimb_0069D0DL_005058[] = dgPoeFieldSkelLimbsLimb_0069D0DL_005058; + +#define dgPoeFieldSkelLimbsLimb_0069DCDL_004D48 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069DCDL_004D48" +static const ALIGN_ASSET(2) char gPoeFieldSkelLimbsLimb_0069DCDL_004D48[] = dgPoeFieldSkelLimbsLimb_0069DCDL_004D48; + +#define dgPoeFieldSkelLimbsLimb_0069F4DL_005328 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_0069F4DL_005328" +static const ALIGN_ASSET(2) char gPoeFieldSkelLimbsLimb_0069F4DL_005328[] = dgPoeFieldSkelLimbsLimb_0069F4DL_005328; + +#define dgPoeFieldSkelLimbsLimb_006A00DL_004DF8 "__OTR__objects/object_po_field/gPoeFieldSkelLimbsLimb_006A00DL_004DF8" +static const ALIGN_ASSET(2) char gPoeFieldSkelLimbsLimb_006A00DL_004DF8[] = dgPoeFieldSkelLimbsLimb_006A00DL_004DF8; + +#define dobject_po_fieldTex_0035F0 "__OTR__objects/object_po_field/object_po_fieldTex_0035F0" +static const ALIGN_ASSET(2) char object_po_fieldTex_0035F0[] = dobject_po_fieldTex_0035F0; + +#define dobject_po_fieldTex_003070 "__OTR__objects/object_po_field/object_po_fieldTex_003070" +static const ALIGN_ASSET(2) char object_po_fieldTex_003070[] = dobject_po_fieldTex_003070; \ No newline at end of file diff --git a/soh/assets/objects/object_po_sisters/object_po_sisters.h b/soh/assets/objects/object_po_sisters/object_po_sisters.h index 8fe193857..5fbd87318 100644 --- a/soh/assets/objects/object_po_sisters/object_po_sisters.h +++ b/soh/assets/objects/object_po_sisters/object_po_sisters.h @@ -1,408 +1,177 @@ #pragma once -#define dgPoeSistersAttackAnim "__OTR__objects/object_po_sisters/gPoeSistersAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersAttackAnim[] = dgPoeSistersAttackAnim; -#else -static const char gPoeSistersAttackAnim[] __attribute__((aligned (2))) = dgPoeSistersAttackAnim; -#endif - -#define dgPoeSistersMegCryAnim "__OTR__objects/object_po_sisters/gPoeSistersMegCryAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersMegCryAnim[] = dgPoeSistersMegCryAnim; -#else -static const char gPoeSistersMegCryAnim[] __attribute__((aligned (2))) = dgPoeSistersMegCryAnim; -#endif - -#define dgPoeSistersDamagedAnim "__OTR__objects/object_po_sisters/gPoeSistersDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersDamagedAnim[] = dgPoeSistersDamagedAnim; -#else -static const char gPoeSistersDamagedAnim[] __attribute__((aligned (2))) = dgPoeSistersDamagedAnim; -#endif - -#define dgPoeSistersFleeAnim "__OTR__objects/object_po_sisters/gPoeSistersFleeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersFleeAnim[] = dgPoeSistersFleeAnim; -#else -static const char gPoeSistersFleeAnim[] __attribute__((aligned (2))) = dgPoeSistersFleeAnim; -#endif - -#define dgPoeSistersFloatAnim "__OTR__objects/object_po_sisters/gPoeSistersFloatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersFloatAnim[] = dgPoeSistersFloatAnim; -#else -static const char gPoeSistersFloatAnim[] __attribute__((aligned (2))) = dgPoeSistersFloatAnim; -#endif - -#define dgPoeSistersAppearDisappearAnim "__OTR__objects/object_po_sisters/gPoeSistersAppearDisappearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersAppearDisappearAnim[] = dgPoeSistersAppearDisappearAnim; -#else -static const char gPoeSistersAppearDisappearAnim[] __attribute__((aligned (2))) = dgPoeSistersAppearDisappearAnim; -#endif - -#define dgPoeSistersSwayAnim "__OTR__objects/object_po_sisters/gPoeSistersSwayAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersSwayAnim[] = dgPoeSistersSwayAnim; -#else -static const char gPoeSistersSwayAnim[] __attribute__((aligned (2))) = dgPoeSistersSwayAnim; -#endif - -#define dgPoeSistersMegFaceDL "__OTR__objects/object_po_sisters/gPoeSistersMegFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersMegFaceDL[] = dgPoeSistersMegFaceDL; -#else -static const char gPoeSistersMegFaceDL[] __attribute__((aligned (2))) = dgPoeSistersMegFaceDL; -#endif - -#define dgPoeSistersMegBodyDL "__OTR__objects/object_po_sisters/gPoeSistersMegBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersMegBodyDL[] = dgPoeSistersMegBodyDL; -#else -static const char gPoeSistersMegBodyDL[] __attribute__((aligned (2))) = dgPoeSistersMegBodyDL; -#endif - -#define dgPoSistersTorchDL "__OTR__objects/object_po_sisters/gPoSistersTorchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersTorchDL[] = dgPoSistersTorchDL; -#else -static const char gPoSistersTorchDL[] __attribute__((aligned (2))) = dgPoSistersTorchDL; -#endif - -#define dgPoeSistersJoelleFaceDL "__OTR__objects/object_po_sisters/gPoeSistersJoelleFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersJoelleFaceDL[] = dgPoeSistersJoelleFaceDL; -#else -static const char gPoeSistersJoelleFaceDL[] __attribute__((aligned (2))) = dgPoeSistersJoelleFaceDL; -#endif - -#define dgPoeSistersJoelleBodyDL "__OTR__objects/object_po_sisters/gPoeSistersJoelleBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersJoelleBodyDL[] = dgPoeSistersJoelleBodyDL; -#else -static const char gPoeSistersJoelleBodyDL[] __attribute__((aligned (2))) = dgPoeSistersJoelleBodyDL; -#endif - -#define dgPoeSistersBethBodyDL "__OTR__objects/object_po_sisters/gPoeSistersBethBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersBethBodyDL[] = dgPoeSistersBethBodyDL; -#else -static const char gPoeSistersBethBodyDL[] __attribute__((aligned (2))) = dgPoeSistersBethBodyDL; -#endif - -#define dgPoeSistersBethFaceDL "__OTR__objects/object_po_sisters/gPoeSistersBethFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersBethFaceDL[] = dgPoeSistersBethFaceDL; -#else -static const char gPoeSistersBethFaceDL[] __attribute__((aligned (2))) = dgPoeSistersBethFaceDL; -#endif - -#define dgPoeSistersAmyBodyDL "__OTR__objects/object_po_sisters/gPoeSistersAmyBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersAmyBodyDL[] = dgPoeSistersAmyBodyDL; -#else -static const char gPoeSistersAmyBodyDL[] __attribute__((aligned (2))) = dgPoeSistersAmyBodyDL; -#endif - -#define dgPoSistersAmyFaceDL "__OTR__objects/object_po_sisters/gPoSistersAmyFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersAmyFaceDL[] = dgPoSistersAmyFaceDL; -#else -static const char gPoSistersAmyFaceDL[] __attribute__((aligned (2))) = dgPoSistersAmyFaceDL; -#endif - -#define dgPoSistersBurnDL "__OTR__objects/object_po_sisters/gPoSistersBurnDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersBurnDL[] = dgPoSistersBurnDL; -#else -static const char gPoSistersBurnDL[] __attribute__((aligned (2))) = dgPoSistersBurnDL; -#endif - -#define dgPoeSistersSkel "__OTR__objects/object_po_sisters/gPoeSistersSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersSkel[] = dgPoeSistersSkel; -#else -static const char gPoeSistersSkel[] __attribute__((aligned (2))) = dgPoeSistersSkel; -#endif - -#define dgPoSistersJoellePaintingDL "__OTR__objects/object_po_sisters/gPoSistersJoellePaintingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersJoellePaintingDL[] = dgPoSistersJoellePaintingDL; -#else -static const char gPoSistersJoellePaintingDL[] __attribute__((aligned (2))) = dgPoSistersJoellePaintingDL; -#endif - -#define dgPoSistersBethPaintingDL "__OTR__objects/object_po_sisters/gPoSistersBethPaintingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersBethPaintingDL[] = dgPoSistersBethPaintingDL; -#else -static const char gPoSistersBethPaintingDL[] __attribute__((aligned (2))) = dgPoSistersBethPaintingDL; -#endif - -#define dgPoSistersAmyPaintingDL "__OTR__objects/object_po_sisters/gPoSistersAmyPaintingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersAmyPaintingDL[] = dgPoSistersAmyPaintingDL; -#else -static const char gPoSistersAmyPaintingDL[] __attribute__((aligned (2))) = dgPoSistersAmyPaintingDL; -#endif - -#define dgPoSistersAmyBlockDL "__OTR__objects/object_po_sisters/gPoSistersAmyBlockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersAmyBlockDL[] = dgPoSistersAmyBlockDL; -#else -static const char gPoSistersAmyBlockDL[] __attribute__((aligned (2))) = dgPoSistersAmyBlockDL; -#endif - -#define dgPoSistersAmyBlockCol "__OTR__objects/object_po_sisters/gPoSistersAmyBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersAmyBlockCol[] = dgPoSistersAmyBlockCol; -#else -static const char gPoSistersAmyBlockCol[] __attribute__((aligned (2))) = dgPoSistersAmyBlockCol; -#endif - -#define dgPoSistersAmyBethBlockDL "__OTR__objects/object_po_sisters/gPoSistersAmyBethBlockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoSistersAmyBethBlockDL[] = dgPoSistersAmyBethBlockDL; -#else -static const char gPoSistersAmyBethBlockDL[] __attribute__((aligned (2))) = dgPoSistersAmyBethBlockDL; -#endif - -#define dobject_po_sistersTex_0056D8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0056D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0056D8[] = dobject_po_sistersTex_0056D8; -#else -static const char object_po_sistersTex_0056D8[] __attribute__((aligned (2))) = dobject_po_sistersTex_0056D8; -#endif - -#define dobject_po_sistersTex_005AF8 "__OTR__objects/object_po_sisters/object_po_sistersTex_005AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_005AF8[] = dobject_po_sistersTex_005AF8; -#else -static const char object_po_sistersTex_005AF8[] __attribute__((aligned (2))) = dobject_po_sistersTex_005AF8; -#endif - -#define dobject_po_sistersTex_0058D8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0058D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0058D8[] = dobject_po_sistersTex_0058D8; -#else -static const char object_po_sistersTex_0058D8[] __attribute__((aligned (2))) = dobject_po_sistersTex_0058D8; -#endif - -#define dobject_po_sistersTex_0058F8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0058F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0058F8[] = dobject_po_sistersTex_0058F8; -#else -static const char object_po_sistersTex_0058F8[] __attribute__((aligned (2))) = dobject_po_sistersTex_0058F8; -#endif - -#define dobject_po_sistersTex_004AD8 "__OTR__objects/object_po_sisters/object_po_sistersTex_004AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_004AD8[] = dobject_po_sistersTex_004AD8; -#else -static const char object_po_sistersTex_004AD8[] __attribute__((aligned (2))) = dobject_po_sistersTex_004AD8; -#endif - -#define dobject_po_sistersTex_0048D8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0048D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0048D8[] = dobject_po_sistersTex_0048D8; -#else -static const char object_po_sistersTex_0048D8[] __attribute__((aligned (2))) = dobject_po_sistersTex_0048D8; -#endif - -#define dobject_po_sistersTex_005CF8 "__OTR__objects/object_po_sisters/object_po_sistersTex_005CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_005CF8[] = dobject_po_sistersTex_005CF8; -#else -static const char object_po_sistersTex_005CF8[] __attribute__((aligned (2))) = dobject_po_sistersTex_005CF8; -#endif - -#define dobject_po_sistersTex_005D78 "__OTR__objects/object_po_sisters/object_po_sistersTex_005D78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_005D78[] = dobject_po_sistersTex_005D78; -#else -static const char object_po_sistersTex_005D78[] __attribute__((aligned (2))) = dobject_po_sistersTex_005D78; -#endif - -#define dobject_po_sistersTex_006078 "__OTR__objects/object_po_sisters/object_po_sistersTex_006078" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_006078[] = dobject_po_sistersTex_006078; -#else -static const char object_po_sistersTex_006078[] __attribute__((aligned (2))) = dobject_po_sistersTex_006078; -#endif - -#define dobject_po_sistersTex_006278 "__OTR__objects/object_po_sisters/object_po_sistersTex_006278" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_006278[] = dobject_po_sistersTex_006278; -#else -static const char object_po_sistersTex_006278[] __attribute__((aligned (2))) = dobject_po_sistersTex_006278; -#endif - -#define dobject_po_sistersTex_005F78 "__OTR__objects/object_po_sisters/object_po_sistersTex_005F78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_005F78[] = dobject_po_sistersTex_005F78; -#else -static const char object_po_sistersTex_005F78[] __attribute__((aligned (2))) = dobject_po_sistersTex_005F78; -#endif - -#define dobject_po_sistersTex_0062F8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0062F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0062F8[] = dobject_po_sistersTex_0062F8; -#else -static const char object_po_sistersTex_0062F8[] __attribute__((aligned (2))) = dobject_po_sistersTex_0062F8; -#endif - -#define dobject_po_sistersTex_006318 "__OTR__objects/object_po_sisters/object_po_sistersTex_006318" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_006318[] = dobject_po_sistersTex_006318; -#else -static const char object_po_sistersTex_006318[] __attribute__((aligned (2))) = dobject_po_sistersTex_006318; -#endif - -#define dgPoeSistersSkelLimbsLimb_006524DL_002718 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006524DL_002718" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersSkelLimbsLimb_006524DL_002718[] = dgPoeSistersSkelLimbsLimb_006524DL_002718; -#else -static const char gPoeSistersSkelLimbsLimb_006524DL_002718[] __attribute__((aligned (2))) = dgPoeSistersSkelLimbsLimb_006524DL_002718; -#endif - -#define dgPoeSistersSkelLimbsLimb_006530DL_002870 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006530DL_002870" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersSkelLimbsLimb_006530DL_002870[] = dgPoeSistersSkelLimbsLimb_006530DL_002870; -#else -static const char gPoeSistersSkelLimbsLimb_006530DL_002870[] __attribute__((aligned (2))) = dgPoeSistersSkelLimbsLimb_006530DL_002870; -#endif - -#define dgPoeSistersSkelLimbsLimb_00653CDL_002680 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_00653CDL_002680" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersSkelLimbsLimb_00653CDL_002680[] = dgPoeSistersSkelLimbsLimb_00653CDL_002680; -#else -static const char gPoeSistersSkelLimbsLimb_00653CDL_002680[] __attribute__((aligned (2))) = dgPoeSistersSkelLimbsLimb_00653CDL_002680; -#endif - -#define dgPoeSistersSkelLimbsLimb_006548DL_0025E8 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006548DL_0025E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersSkelLimbsLimb_006548DL_0025E8[] = dgPoeSistersSkelLimbsLimb_006548DL_0025E8; -#else -static const char gPoeSistersSkelLimbsLimb_006548DL_0025E8[] __attribute__((aligned (2))) = dgPoeSistersSkelLimbsLimb_006548DL_0025E8; -#endif - -#define dgPoeSistersSkelLimbsLimb_006560DL_002570 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006560DL_002570" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersSkelLimbsLimb_006560DL_002570[] = dgPoeSistersSkelLimbsLimb_006560DL_002570; -#else -static const char gPoeSistersSkelLimbsLimb_006560DL_002570[] __attribute__((aligned (2))) = dgPoeSistersSkelLimbsLimb_006560DL_002570; -#endif - -#define dgPoeSistersSkelLimbsLimb_006590DL_0024A8 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006590DL_0024A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSistersSkelLimbsLimb_006590DL_0024A8[] = dgPoeSistersSkelLimbsLimb_006590DL_0024A8; -#else -static const char gPoeSistersSkelLimbsLimb_006590DL_0024A8[] __attribute__((aligned (2))) = dgPoeSistersSkelLimbsLimb_006590DL_0024A8; -#endif - -#define dobject_po_sistersTex_0082C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_0082C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0082C0[] = dobject_po_sistersTex_0082C0; -#else -static const char object_po_sistersTex_0082C0[] __attribute__((aligned (2))) = dobject_po_sistersTex_0082C0; -#endif - -#define dobject_po_sistersTex_008BC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_008BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_008BC0[] = dobject_po_sistersTex_008BC0; -#else -static const char object_po_sistersTex_008BC0[] __attribute__((aligned (2))) = dobject_po_sistersTex_008BC0; -#endif - -#define dobject_po_sistersTex_007AC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_007AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_007AC0[] = dobject_po_sistersTex_007AC0; -#else -static const char object_po_sistersTex_007AC0[] __attribute__((aligned (2))) = dobject_po_sistersTex_007AC0; -#endif - -#define dobject_po_sistersTex_009BC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_009BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_009BC0[] = dobject_po_sistersTex_009BC0; -#else -static const char object_po_sistersTex_009BC0[] __attribute__((aligned (2))) = dobject_po_sistersTex_009BC0; -#endif - -#define dobject_po_sistersTex_0083C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_0083C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0083C0[] = dobject_po_sistersTex_0083C0; -#else -static const char object_po_sistersTex_0083C0[] __attribute__((aligned (2))) = dobject_po_sistersTex_0083C0; -#endif - -#define dobject_po_sistersTex_0093C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_0093C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0093C0[] = dobject_po_sistersTex_0093C0; -#else -static const char object_po_sistersTex_0093C0[] __attribute__((aligned (2))) = dobject_po_sistersTex_0093C0; -#endif - -#define dobject_po_sistersTex_00ABC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00ABC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_00ABC0[] = dobject_po_sistersTex_00ABC0; -#else -static const char object_po_sistersTex_00ABC0[] __attribute__((aligned (2))) = dobject_po_sistersTex_00ABC0; -#endif - -#define dobject_po_sistersTex_00BBC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00BBC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_00BBC0[] = dobject_po_sistersTex_00BBC0; -#else -static const char object_po_sistersTex_00BBC0[] __attribute__((aligned (2))) = dobject_po_sistersTex_00BBC0; -#endif - -#define dobject_po_sistersTex_00A3C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00A3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_00A3C0[] = dobject_po_sistersTex_00A3C0; -#else -static const char object_po_sistersTex_00A3C0[] __attribute__((aligned (2))) = dobject_po_sistersTex_00A3C0; -#endif - -#define dobject_po_sistersTex_00B3C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00B3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_00B3C0[] = dobject_po_sistersTex_00B3C0; -#else -static const char object_po_sistersTex_00B3C0[] __attribute__((aligned (2))) = dobject_po_sistersTex_00B3C0; -#endif - -#define dobject_po_sistersTex_00DBC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00DBC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_00DBC0[] = dobject_po_sistersTex_00DBC0; -#else -static const char object_po_sistersTex_00DBC0[] __attribute__((aligned (2))) = dobject_po_sistersTex_00DBC0; -#endif - -#define dobject_po_sistersTex_00D3C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00D3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_00D3C0[] = dobject_po_sistersTex_00D3C0; -#else -static const char object_po_sistersTex_00D3C0[] __attribute__((aligned (2))) = dobject_po_sistersTex_00D3C0; -#endif - -#define dobject_po_sistersTex_00CBC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00CBC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_00CBC0[] = dobject_po_sistersTex_00CBC0; -#else -static const char object_po_sistersTex_00CBC0[] __attribute__((aligned (2))) = dobject_po_sistersTex_00CBC0; -#endif - -#define dobject_po_sistersTex_00C3C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00C3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_00C3C0[] = dobject_po_sistersTex_00C3C0; -#else -static const char object_po_sistersTex_00C3C0[] __attribute__((aligned (2))) = dobject_po_sistersTex_00C3C0; -#endif - -#define dobject_po_sistersTex_0052D8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0052D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_po_sistersTex_0052D8[] = dobject_po_sistersTex_0052D8; -#else -static const char object_po_sistersTex_0052D8[] __attribute__((aligned (2))) = dobject_po_sistersTex_0052D8; -#endif - +#include "align_asset_macro.h" + +#define dgPoeSistersAttackAnim "__OTR__objects/object_po_sisters/gPoeSistersAttackAnim" +static const ALIGN_ASSET(2) char gPoeSistersAttackAnim[] = dgPoeSistersAttackAnim; + +#define dgPoeSistersMegCryAnim "__OTR__objects/object_po_sisters/gPoeSistersMegCryAnim" +static const ALIGN_ASSET(2) char gPoeSistersMegCryAnim[] = dgPoeSistersMegCryAnim; + +#define dgPoeSistersDamagedAnim "__OTR__objects/object_po_sisters/gPoeSistersDamagedAnim" +static const ALIGN_ASSET(2) char gPoeSistersDamagedAnim[] = dgPoeSistersDamagedAnim; + +#define dgPoeSistersFleeAnim "__OTR__objects/object_po_sisters/gPoeSistersFleeAnim" +static const ALIGN_ASSET(2) char gPoeSistersFleeAnim[] = dgPoeSistersFleeAnim; + +#define dgPoeSistersFloatAnim "__OTR__objects/object_po_sisters/gPoeSistersFloatAnim" +static const ALIGN_ASSET(2) char gPoeSistersFloatAnim[] = dgPoeSistersFloatAnim; + +#define dgPoeSistersAppearDisappearAnim "__OTR__objects/object_po_sisters/gPoeSistersAppearDisappearAnim" +static const ALIGN_ASSET(2) char gPoeSistersAppearDisappearAnim[] = dgPoeSistersAppearDisappearAnim; + +#define dgPoeSistersSwayAnim "__OTR__objects/object_po_sisters/gPoeSistersSwayAnim" +static const ALIGN_ASSET(2) char gPoeSistersSwayAnim[] = dgPoeSistersSwayAnim; + +#define dgPoeSistersMegFaceDL "__OTR__objects/object_po_sisters/gPoeSistersMegFaceDL" +static const ALIGN_ASSET(2) char gPoeSistersMegFaceDL[] = dgPoeSistersMegFaceDL; + +#define dgPoeSistersMegBodyDL "__OTR__objects/object_po_sisters/gPoeSistersMegBodyDL" +static const ALIGN_ASSET(2) char gPoeSistersMegBodyDL[] = dgPoeSistersMegBodyDL; + +#define dgPoSistersTorchDL "__OTR__objects/object_po_sisters/gPoSistersTorchDL" +static const ALIGN_ASSET(2) char gPoSistersTorchDL[] = dgPoSistersTorchDL; + +#define dgPoeSistersJoelleFaceDL "__OTR__objects/object_po_sisters/gPoeSistersJoelleFaceDL" +static const ALIGN_ASSET(2) char gPoeSistersJoelleFaceDL[] = dgPoeSistersJoelleFaceDL; + +#define dgPoeSistersJoelleBodyDL "__OTR__objects/object_po_sisters/gPoeSistersJoelleBodyDL" +static const ALIGN_ASSET(2) char gPoeSistersJoelleBodyDL[] = dgPoeSistersJoelleBodyDL; + +#define dgPoeSistersBethBodyDL "__OTR__objects/object_po_sisters/gPoeSistersBethBodyDL" +static const ALIGN_ASSET(2) char gPoeSistersBethBodyDL[] = dgPoeSistersBethBodyDL; + +#define dgPoeSistersBethFaceDL "__OTR__objects/object_po_sisters/gPoeSistersBethFaceDL" +static const ALIGN_ASSET(2) char gPoeSistersBethFaceDL[] = dgPoeSistersBethFaceDL; + +#define dgPoeSistersAmyBodyDL "__OTR__objects/object_po_sisters/gPoeSistersAmyBodyDL" +static const ALIGN_ASSET(2) char gPoeSistersAmyBodyDL[] = dgPoeSistersAmyBodyDL; + +#define dgPoSistersAmyFaceDL "__OTR__objects/object_po_sisters/gPoSistersAmyFaceDL" +static const ALIGN_ASSET(2) char gPoSistersAmyFaceDL[] = dgPoSistersAmyFaceDL; + +#define dgPoSistersBurnDL "__OTR__objects/object_po_sisters/gPoSistersBurnDL" +static const ALIGN_ASSET(2) char gPoSistersBurnDL[] = dgPoSistersBurnDL; + +#define dgPoeSistersSkel "__OTR__objects/object_po_sisters/gPoeSistersSkel" +static const ALIGN_ASSET(2) char gPoeSistersSkel[] = dgPoeSistersSkel; + +#define dgPoSistersJoellePaintingDL "__OTR__objects/object_po_sisters/gPoSistersJoellePaintingDL" +static const ALIGN_ASSET(2) char gPoSistersJoellePaintingDL[] = dgPoSistersJoellePaintingDL; + +#define dgPoSistersBethPaintingDL "__OTR__objects/object_po_sisters/gPoSistersBethPaintingDL" +static const ALIGN_ASSET(2) char gPoSistersBethPaintingDL[] = dgPoSistersBethPaintingDL; + +#define dgPoSistersAmyPaintingDL "__OTR__objects/object_po_sisters/gPoSistersAmyPaintingDL" +static const ALIGN_ASSET(2) char gPoSistersAmyPaintingDL[] = dgPoSistersAmyPaintingDL; + +#define dgPoSistersAmyBlockDL "__OTR__objects/object_po_sisters/gPoSistersAmyBlockDL" +static const ALIGN_ASSET(2) char gPoSistersAmyBlockDL[] = dgPoSistersAmyBlockDL; + +#define dgPoSistersAmyBlockCol "__OTR__objects/object_po_sisters/gPoSistersAmyBlockCol" +static const ALIGN_ASSET(2) char gPoSistersAmyBlockCol[] = dgPoSistersAmyBlockCol; + +#define dgPoSistersAmyBethBlockDL "__OTR__objects/object_po_sisters/gPoSistersAmyBethBlockDL" +static const ALIGN_ASSET(2) char gPoSistersAmyBethBlockDL[] = dgPoSistersAmyBethBlockDL; + +#define dobject_po_sistersTex_0056D8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0056D8" +static const ALIGN_ASSET(2) char object_po_sistersTex_0056D8[] = dobject_po_sistersTex_0056D8; + +#define dobject_po_sistersTex_005AF8 "__OTR__objects/object_po_sisters/object_po_sistersTex_005AF8" +static const ALIGN_ASSET(2) char object_po_sistersTex_005AF8[] = dobject_po_sistersTex_005AF8; + +#define dobject_po_sistersTex_0058D8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0058D8" +static const ALIGN_ASSET(2) char object_po_sistersTex_0058D8[] = dobject_po_sistersTex_0058D8; + +#define dobject_po_sistersTex_0058F8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0058F8" +static const ALIGN_ASSET(2) char object_po_sistersTex_0058F8[] = dobject_po_sistersTex_0058F8; + +#define dobject_po_sistersTex_004AD8 "__OTR__objects/object_po_sisters/object_po_sistersTex_004AD8" +static const ALIGN_ASSET(2) char object_po_sistersTex_004AD8[] = dobject_po_sistersTex_004AD8; + +#define dobject_po_sistersTex_0048D8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0048D8" +static const ALIGN_ASSET(2) char object_po_sistersTex_0048D8[] = dobject_po_sistersTex_0048D8; + +#define dobject_po_sistersTex_005CF8 "__OTR__objects/object_po_sisters/object_po_sistersTex_005CF8" +static const ALIGN_ASSET(2) char object_po_sistersTex_005CF8[] = dobject_po_sistersTex_005CF8; + +#define dobject_po_sistersTex_005D78 "__OTR__objects/object_po_sisters/object_po_sistersTex_005D78" +static const ALIGN_ASSET(2) char object_po_sistersTex_005D78[] = dobject_po_sistersTex_005D78; + +#define dobject_po_sistersTex_006078 "__OTR__objects/object_po_sisters/object_po_sistersTex_006078" +static const ALIGN_ASSET(2) char object_po_sistersTex_006078[] = dobject_po_sistersTex_006078; + +#define dobject_po_sistersTex_006278 "__OTR__objects/object_po_sisters/object_po_sistersTex_006278" +static const ALIGN_ASSET(2) char object_po_sistersTex_006278[] = dobject_po_sistersTex_006278; + +#define dobject_po_sistersTex_005F78 "__OTR__objects/object_po_sisters/object_po_sistersTex_005F78" +static const ALIGN_ASSET(2) char object_po_sistersTex_005F78[] = dobject_po_sistersTex_005F78; + +#define dobject_po_sistersTex_0062F8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0062F8" +static const ALIGN_ASSET(2) char object_po_sistersTex_0062F8[] = dobject_po_sistersTex_0062F8; + +#define dobject_po_sistersTex_006318 "__OTR__objects/object_po_sisters/object_po_sistersTex_006318" +static const ALIGN_ASSET(2) char object_po_sistersTex_006318[] = dobject_po_sistersTex_006318; + +#define dgPoeSistersSkelLimbsLimb_006524DL_002718 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006524DL_002718" +static const ALIGN_ASSET(2) char gPoeSistersSkelLimbsLimb_006524DL_002718[] = dgPoeSistersSkelLimbsLimb_006524DL_002718; + +#define dgPoeSistersSkelLimbsLimb_006530DL_002870 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006530DL_002870" +static const ALIGN_ASSET(2) char gPoeSistersSkelLimbsLimb_006530DL_002870[] = dgPoeSistersSkelLimbsLimb_006530DL_002870; + +#define dgPoeSistersSkelLimbsLimb_00653CDL_002680 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_00653CDL_002680" +static const ALIGN_ASSET(2) char gPoeSistersSkelLimbsLimb_00653CDL_002680[] = dgPoeSistersSkelLimbsLimb_00653CDL_002680; + +#define dgPoeSistersSkelLimbsLimb_006548DL_0025E8 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006548DL_0025E8" +static const ALIGN_ASSET(2) char gPoeSistersSkelLimbsLimb_006548DL_0025E8[] = dgPoeSistersSkelLimbsLimb_006548DL_0025E8; + +#define dgPoeSistersSkelLimbsLimb_006560DL_002570 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006560DL_002570" +static const ALIGN_ASSET(2) char gPoeSistersSkelLimbsLimb_006560DL_002570[] = dgPoeSistersSkelLimbsLimb_006560DL_002570; + +#define dgPoeSistersSkelLimbsLimb_006590DL_0024A8 "__OTR__objects/object_po_sisters/gPoeSistersSkelLimbsLimb_006590DL_0024A8" +static const ALIGN_ASSET(2) char gPoeSistersSkelLimbsLimb_006590DL_0024A8[] = dgPoeSistersSkelLimbsLimb_006590DL_0024A8; + +#define dobject_po_sistersTex_0082C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_0082C0" +static const ALIGN_ASSET(2) char object_po_sistersTex_0082C0[] = dobject_po_sistersTex_0082C0; + +#define dobject_po_sistersTex_008BC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_008BC0" +static const ALIGN_ASSET(2) char object_po_sistersTex_008BC0[] = dobject_po_sistersTex_008BC0; + +#define dobject_po_sistersTex_007AC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_007AC0" +static const ALIGN_ASSET(2) char object_po_sistersTex_007AC0[] = dobject_po_sistersTex_007AC0; + +#define dobject_po_sistersTex_009BC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_009BC0" +static const ALIGN_ASSET(2) char object_po_sistersTex_009BC0[] = dobject_po_sistersTex_009BC0; + +#define dobject_po_sistersTex_0083C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_0083C0" +static const ALIGN_ASSET(2) char object_po_sistersTex_0083C0[] = dobject_po_sistersTex_0083C0; + +#define dobject_po_sistersTex_0093C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_0093C0" +static const ALIGN_ASSET(2) char object_po_sistersTex_0093C0[] = dobject_po_sistersTex_0093C0; + +#define dobject_po_sistersTex_00ABC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00ABC0" +static const ALIGN_ASSET(2) char object_po_sistersTex_00ABC0[] = dobject_po_sistersTex_00ABC0; + +#define dobject_po_sistersTex_00BBC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00BBC0" +static const ALIGN_ASSET(2) char object_po_sistersTex_00BBC0[] = dobject_po_sistersTex_00BBC0; + +#define dobject_po_sistersTex_00A3C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00A3C0" +static const ALIGN_ASSET(2) char object_po_sistersTex_00A3C0[] = dobject_po_sistersTex_00A3C0; + +#define dobject_po_sistersTex_00B3C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00B3C0" +static const ALIGN_ASSET(2) char object_po_sistersTex_00B3C0[] = dobject_po_sistersTex_00B3C0; + +#define dobject_po_sistersTex_00DBC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00DBC0" +static const ALIGN_ASSET(2) char object_po_sistersTex_00DBC0[] = dobject_po_sistersTex_00DBC0; + +#define dobject_po_sistersTex_00D3C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00D3C0" +static const ALIGN_ASSET(2) char object_po_sistersTex_00D3C0[] = dobject_po_sistersTex_00D3C0; + +#define dobject_po_sistersTex_00CBC0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00CBC0" +static const ALIGN_ASSET(2) char object_po_sistersTex_00CBC0[] = dobject_po_sistersTex_00CBC0; + +#define dobject_po_sistersTex_00C3C0 "__OTR__objects/object_po_sisters/object_po_sistersTex_00C3C0" +static const ALIGN_ASSET(2) char object_po_sistersTex_00C3C0[] = dobject_po_sistersTex_00C3C0; + +#define dobject_po_sistersTex_0052D8 "__OTR__objects/object_po_sisters/object_po_sistersTex_0052D8" +static const ALIGN_ASSET(2) char object_po_sistersTex_0052D8[] = dobject_po_sistersTex_0052D8; \ No newline at end of file diff --git a/soh/assets/objects/object_poh/object_poh.h b/soh/assets/objects/object_poh/object_poh.h index 641c1ec9a..1d8c80b07 100644 --- a/soh/assets/objects/object_poh/object_poh.h +++ b/soh/assets/objects/object_poh/object_poh.h @@ -1,205 +1,90 @@ #pragma once -#define dgPoeAttackAnim "__OTR__objects/object_poh/gPoeAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeAttackAnim[] = dgPoeAttackAnim; -#else -static const char gPoeAttackAnim[] __attribute__((aligned (2))) = dgPoeAttackAnim; -#endif - -#define dgPoeDamagedAnim "__OTR__objects/object_poh/gPoeDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeDamagedAnim[] = dgPoeDamagedAnim; -#else -static const char gPoeDamagedAnim[] __attribute__((aligned (2))) = dgPoeDamagedAnim; -#endif - -#define dgPoeFleeAnim "__OTR__objects/object_poh/gPoeFleeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFleeAnim[] = dgPoeFleeAnim; -#else -static const char gPoeFleeAnim[] __attribute__((aligned (2))) = dgPoeFleeAnim; -#endif - -#define dgPoeFloatAnim "__OTR__objects/object_poh/gPoeFloatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeFloatAnim[] = dgPoeFloatAnim; -#else -static const char gPoeFloatAnim[] __attribute__((aligned (2))) = dgPoeFloatAnim; -#endif - -#define dgPoeAppearAnim "__OTR__objects/object_poh/gPoeAppearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeAppearAnim[] = dgPoeAppearAnim; -#else -static const char gPoeAppearAnim[] __attribute__((aligned (2))) = dgPoeAppearAnim; -#endif - -#define dgPoeDisappearAnim "__OTR__objects/object_poh/gPoeDisappearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeDisappearAnim[] = dgPoeDisappearAnim; -#else -static const char gPoeDisappearAnim[] __attribute__((aligned (2))) = dgPoeDisappearAnim; -#endif - -#define dgPoeBurnDL "__OTR__objects/object_poh/gPoeBurnDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeBurnDL[] = dgPoeBurnDL; -#else -static const char gPoeBurnDL[] __attribute__((aligned (2))) = dgPoeBurnDL; -#endif - -#define dgPoeLanternDL "__OTR__objects/object_poh/gPoeLanternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeLanternDL[] = dgPoeLanternDL; -#else -static const char gPoeLanternDL[] __attribute__((aligned (2))) = dgPoeLanternDL; -#endif - -#define dgPoeSoulDL "__OTR__objects/object_poh/gPoeSoulDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSoulDL[] = dgPoeSoulDL; -#else -static const char gPoeSoulDL[] __attribute__((aligned (2))) = dgPoeSoulDL; -#endif - -#define dgPoeSkel "__OTR__objects/object_poh/gPoeSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkel[] = dgPoeSkel; -#else -static const char gPoeSkel[] __attribute__((aligned (2))) = dgPoeSkel; -#endif - -#define dobject_pohTex_004D10 "__OTR__objects/object_poh/object_pohTex_004D10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_004D10[] = dobject_pohTex_004D10; -#else -static const char object_pohTex_004D10[] __attribute__((aligned (2))) = dobject_pohTex_004D10; -#endif - -#define dobject_pohTex_004F10 "__OTR__objects/object_poh/object_pohTex_004F10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_004F10[] = dobject_pohTex_004F10; -#else -static const char object_pohTex_004F10[] __attribute__((aligned (2))) = dobject_pohTex_004F10; -#endif - -#define dobject_pohTex_004A10 "__OTR__objects/object_poh/object_pohTex_004A10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_004A10[] = dobject_pohTex_004A10; -#else -static const char object_pohTex_004A10[] __attribute__((aligned (2))) = dobject_pohTex_004A10; -#endif - -#define dobject_pohTex_004990 "__OTR__objects/object_poh/object_pohTex_004990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_004990[] = dobject_pohTex_004990; -#else -static const char object_pohTex_004990[] __attribute__((aligned (2))) = dobject_pohTex_004990; -#endif - -#define dobject_pohTex_004B10 "__OTR__objects/object_poh/object_pohTex_004B10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_004B10[] = dobject_pohTex_004B10; -#else -static const char object_pohTex_004B10[] __attribute__((aligned (2))) = dobject_pohTex_004B10; -#endif - -#define dobject_pohTex_003010 "__OTR__objects/object_poh/object_pohTex_003010" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_003010[] = dobject_pohTex_003010; -#else -static const char object_pohTex_003010[] __attribute__((aligned (2))) = dobject_pohTex_003010; -#endif - -#define dgPoeSkelLimbsLimb_004FB4DL_002F58 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_004FB4DL_002F58" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkelLimbsLimb_004FB4DL_002F58[] = dgPoeSkelLimbsLimb_004FB4DL_002F58; -#else -static const char gPoeSkelLimbsLimb_004FB4DL_002F58[] __attribute__((aligned (2))) = dgPoeSkelLimbsLimb_004FB4DL_002F58; -#endif - -#define dgPoeSkelLimbsLimb_004FC0DL_001FB0 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_004FC0DL_001FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkelLimbsLimb_004FC0DL_001FB0[] = dgPoeSkelLimbsLimb_004FC0DL_001FB0; -#else -static const char gPoeSkelLimbsLimb_004FC0DL_001FB0[] __attribute__((aligned (2))) = dgPoeSkelLimbsLimb_004FC0DL_001FB0; -#endif - -#define dgPoeSkelLimbsLimb_004FF0DL_001898 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_004FF0DL_001898" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkelLimbsLimb_004FF0DL_001898[] = dgPoeSkelLimbsLimb_004FF0DL_001898; -#else -static const char gPoeSkelLimbsLimb_004FF0DL_001898[] __attribute__((aligned (2))) = dgPoeSkelLimbsLimb_004FF0DL_001898; -#endif - -#define dgPoeSkelLimbsLimb_004FFCDL_001620 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_004FFCDL_001620" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkelLimbsLimb_004FFCDL_001620[] = dgPoeSkelLimbsLimb_004FFCDL_001620; -#else -static const char gPoeSkelLimbsLimb_004FFCDL_001620[] __attribute__((aligned (2))) = dgPoeSkelLimbsLimb_004FFCDL_001620; -#endif - -#define dgPoeSkelLimbsLimb_005008DL_002910 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_005008DL_002910" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkelLimbsLimb_005008DL_002910[] = dgPoeSkelLimbsLimb_005008DL_002910; -#else -static const char gPoeSkelLimbsLimb_005008DL_002910[] __attribute__((aligned (2))) = dgPoeSkelLimbsLimb_005008DL_002910; -#endif - -#define dgPoeSkelLimbsLimb_005044DL_001C68 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_005044DL_001C68" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkelLimbsLimb_005044DL_001C68[] = dgPoeSkelLimbsLimb_005044DL_001C68; -#else -static const char gPoeSkelLimbsLimb_005044DL_001C68[] __attribute__((aligned (2))) = dgPoeSkelLimbsLimb_005044DL_001C68; -#endif - -#define dgPoeSkelLimbsLimb_005068DL_001B70 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_005068DL_001B70" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkelLimbsLimb_005068DL_001B70[] = dgPoeSkelLimbsLimb_005068DL_001B70; -#else -static const char gPoeSkelLimbsLimb_005068DL_001B70[] __attribute__((aligned (2))) = dgPoeSkelLimbsLimb_005068DL_001B70; -#endif - -#define dgPoeSkelLimbsLimb_005074DL_001A78 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_005074DL_001A78" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSkelLimbsLimb_005074DL_001A78[] = dgPoeSkelLimbsLimb_005074DL_001A78; -#else -static const char gPoeSkelLimbsLimb_005074DL_001A78[] __attribute__((aligned (2))) = dgPoeSkelLimbsLimb_005074DL_001A78; -#endif - -#define dobject_pohTex_003D10 "__OTR__objects/object_poh/object_pohTex_003D10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_003D10[] = dobject_pohTex_003D10; -#else -static const char object_pohTex_003D10[] __attribute__((aligned (2))) = dobject_pohTex_003D10; -#endif - -#define dobject_pohTex_004710 "__OTR__objects/object_poh/object_pohTex_004710" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_004710[] = dobject_pohTex_004710; -#else -static const char object_pohTex_004710[] __attribute__((aligned (2))) = dobject_pohTex_004710; -#endif - -#define dobject_pohTex_004510 "__OTR__objects/object_poh/object_pohTex_004510" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_004510[] = dobject_pohTex_004510; -#else -static const char object_pohTex_004510[] __attribute__((aligned (2))) = dobject_pohTex_004510; -#endif - -#define dobject_pohTex_003910 "__OTR__objects/object_poh/object_pohTex_003910" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_003910[] = dobject_pohTex_003910; -#else -static const char object_pohTex_003910[] __attribute__((aligned (2))) = dobject_pohTex_003910; -#endif - -#define dobject_pohTex_004790 "__OTR__objects/object_poh/object_pohTex_004790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_pohTex_004790[] = dobject_pohTex_004790; -#else -static const char object_pohTex_004790[] __attribute__((aligned (2))) = dobject_pohTex_004790; -#endif - +#include "align_asset_macro.h" + +#define dgPoeAttackAnim "__OTR__objects/object_poh/gPoeAttackAnim" +static const ALIGN_ASSET(2) char gPoeAttackAnim[] = dgPoeAttackAnim; + +#define dgPoeDamagedAnim "__OTR__objects/object_poh/gPoeDamagedAnim" +static const ALIGN_ASSET(2) char gPoeDamagedAnim[] = dgPoeDamagedAnim; + +#define dgPoeFleeAnim "__OTR__objects/object_poh/gPoeFleeAnim" +static const ALIGN_ASSET(2) char gPoeFleeAnim[] = dgPoeFleeAnim; + +#define dgPoeFloatAnim "__OTR__objects/object_poh/gPoeFloatAnim" +static const ALIGN_ASSET(2) char gPoeFloatAnim[] = dgPoeFloatAnim; + +#define dgPoeAppearAnim "__OTR__objects/object_poh/gPoeAppearAnim" +static const ALIGN_ASSET(2) char gPoeAppearAnim[] = dgPoeAppearAnim; + +#define dgPoeDisappearAnim "__OTR__objects/object_poh/gPoeDisappearAnim" +static const ALIGN_ASSET(2) char gPoeDisappearAnim[] = dgPoeDisappearAnim; + +#define dgPoeBurnDL "__OTR__objects/object_poh/gPoeBurnDL" +static const ALIGN_ASSET(2) char gPoeBurnDL[] = dgPoeBurnDL; + +#define dgPoeLanternDL "__OTR__objects/object_poh/gPoeLanternDL" +static const ALIGN_ASSET(2) char gPoeLanternDL[] = dgPoeLanternDL; + +#define dgPoeSoulDL "__OTR__objects/object_poh/gPoeSoulDL" +static const ALIGN_ASSET(2) char gPoeSoulDL[] = dgPoeSoulDL; + +#define dgPoeSkel "__OTR__objects/object_poh/gPoeSkel" +static const ALIGN_ASSET(2) char gPoeSkel[] = dgPoeSkel; + +#define dobject_pohTex_004D10 "__OTR__objects/object_poh/object_pohTex_004D10" +static const ALIGN_ASSET(2) char object_pohTex_004D10[] = dobject_pohTex_004D10; + +#define dobject_pohTex_004F10 "__OTR__objects/object_poh/object_pohTex_004F10" +static const ALIGN_ASSET(2) char object_pohTex_004F10[] = dobject_pohTex_004F10; + +#define dobject_pohTex_004A10 "__OTR__objects/object_poh/object_pohTex_004A10" +static const ALIGN_ASSET(2) char object_pohTex_004A10[] = dobject_pohTex_004A10; + +#define dobject_pohTex_004990 "__OTR__objects/object_poh/object_pohTex_004990" +static const ALIGN_ASSET(2) char object_pohTex_004990[] = dobject_pohTex_004990; + +#define dobject_pohTex_004B10 "__OTR__objects/object_poh/object_pohTex_004B10" +static const ALIGN_ASSET(2) char object_pohTex_004B10[] = dobject_pohTex_004B10; + +#define dobject_pohTex_003010 "__OTR__objects/object_poh/object_pohTex_003010" +static const ALIGN_ASSET(2) char object_pohTex_003010[] = dobject_pohTex_003010; + +#define dgPoeSkelLimbsLimb_004FB4DL_002F58 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_004FB4DL_002F58" +static const ALIGN_ASSET(2) char gPoeSkelLimbsLimb_004FB4DL_002F58[] = dgPoeSkelLimbsLimb_004FB4DL_002F58; + +#define dgPoeSkelLimbsLimb_004FC0DL_001FB0 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_004FC0DL_001FB0" +static const ALIGN_ASSET(2) char gPoeSkelLimbsLimb_004FC0DL_001FB0[] = dgPoeSkelLimbsLimb_004FC0DL_001FB0; + +#define dgPoeSkelLimbsLimb_004FF0DL_001898 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_004FF0DL_001898" +static const ALIGN_ASSET(2) char gPoeSkelLimbsLimb_004FF0DL_001898[] = dgPoeSkelLimbsLimb_004FF0DL_001898; + +#define dgPoeSkelLimbsLimb_004FFCDL_001620 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_004FFCDL_001620" +static const ALIGN_ASSET(2) char gPoeSkelLimbsLimb_004FFCDL_001620[] = dgPoeSkelLimbsLimb_004FFCDL_001620; + +#define dgPoeSkelLimbsLimb_005008DL_002910 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_005008DL_002910" +static const ALIGN_ASSET(2) char gPoeSkelLimbsLimb_005008DL_002910[] = dgPoeSkelLimbsLimb_005008DL_002910; + +#define dgPoeSkelLimbsLimb_005044DL_001C68 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_005044DL_001C68" +static const ALIGN_ASSET(2) char gPoeSkelLimbsLimb_005044DL_001C68[] = dgPoeSkelLimbsLimb_005044DL_001C68; + +#define dgPoeSkelLimbsLimb_005068DL_001B70 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_005068DL_001B70" +static const ALIGN_ASSET(2) char gPoeSkelLimbsLimb_005068DL_001B70[] = dgPoeSkelLimbsLimb_005068DL_001B70; + +#define dgPoeSkelLimbsLimb_005074DL_001A78 "__OTR__objects/object_poh/gPoeSkelLimbsLimb_005074DL_001A78" +static const ALIGN_ASSET(2) char gPoeSkelLimbsLimb_005074DL_001A78[] = dgPoeSkelLimbsLimb_005074DL_001A78; + +#define dobject_pohTex_003D10 "__OTR__objects/object_poh/object_pohTex_003D10" +static const ALIGN_ASSET(2) char object_pohTex_003D10[] = dobject_pohTex_003D10; + +#define dobject_pohTex_004710 "__OTR__objects/object_poh/object_pohTex_004710" +static const ALIGN_ASSET(2) char object_pohTex_004710[] = dobject_pohTex_004710; + +#define dobject_pohTex_004510 "__OTR__objects/object_poh/object_pohTex_004510" +static const ALIGN_ASSET(2) char object_pohTex_004510[] = dobject_pohTex_004510; + +#define dobject_pohTex_003910 "__OTR__objects/object_poh/object_pohTex_003910" +static const ALIGN_ASSET(2) char object_pohTex_003910[] = dobject_pohTex_003910; + +#define dobject_pohTex_004790 "__OTR__objects/object_poh/object_pohTex_004790" +static const ALIGN_ASSET(2) char object_pohTex_004790[] = dobject_pohTex_004790; \ No newline at end of file diff --git a/soh/assets/objects/object_ps/object_ps.h b/soh/assets/objects/object_ps/object_ps.h index df8ea512a..df363766c 100644 --- a/soh/assets/objects/object_ps/object_ps.h +++ b/soh/assets/objects/object_ps/object_ps.h @@ -1,338 +1,147 @@ #pragma once -#define dgPoeSellerIdleAnim "__OTR__objects/object_ps/gPoeSellerIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerIdleAnim[] = dgPoeSellerIdleAnim; -#else -static const char gPoeSellerIdleAnim[] __attribute__((aligned (2))) = dgPoeSellerIdleAnim; -#endif - -#define dgPoeSellerMetalFrameTex "__OTR__objects/object_ps/gPoeSellerMetalFrameTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerMetalFrameTex[] = dgPoeSellerMetalFrameTex; -#else -static const char gPoeSellerMetalFrameTex[] __attribute__((aligned (2))) = dgPoeSellerMetalFrameTex; -#endif - -#define dgPoeSellerMattressTex "__OTR__objects/object_ps/gPoeSellerMattressTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerMattressTex[] = dgPoeSellerMattressTex; -#else -static const char gPoeSellerMattressTex[] __attribute__((aligned (2))) = dgPoeSellerMattressTex; -#endif - -#define dgPoeSellerClothTex "__OTR__objects/object_ps/gPoeSellerClothTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerClothTex[] = dgPoeSellerClothTex; -#else -static const char gPoeSellerClothTex[] __attribute__((aligned (2))) = dgPoeSellerClothTex; -#endif - -#define dgPoeSellerCarpetTex "__OTR__objects/object_ps/gPoeSellerCarpetTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerCarpetTex[] = dgPoeSellerCarpetTex; -#else -static const char gPoeSellerCarpetTex[] __attribute__((aligned (2))) = dgPoeSellerCarpetTex; -#endif - -#define dgPoeSellerBottleLabelTex "__OTR__objects/object_ps/gPoeSellerBottleLabelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerBottleLabelTex[] = dgPoeSellerBottleLabelTex; -#else -static const char gPoeSellerBottleLabelTex[] __attribute__((aligned (2))) = dgPoeSellerBottleLabelTex; -#endif - -#define dgPoeSellerWoodenPanelTex "__OTR__objects/object_ps/gPoeSellerWoodenPanelTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerWoodenPanelTex[] = dgPoeSellerWoodenPanelTex; -#else -static const char gPoeSellerWoodenPanelTex[] __attribute__((aligned (2))) = dgPoeSellerWoodenPanelTex; -#endif - -#define dgPoeSellerLanternTex "__OTR__objects/object_ps/gPoeSellerLanternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerLanternTex[] = dgPoeSellerLanternTex; -#else -static const char gPoeSellerLanternTex[] __attribute__((aligned (2))) = dgPoeSellerLanternTex; -#endif - -#define dgPoeSellerAngrySoulTex "__OTR__objects/object_ps/gPoeSellerAngrySoulTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerAngrySoulTex[] = dgPoeSellerAngrySoulTex; -#else -static const char gPoeSellerAngrySoulTex[] __attribute__((aligned (2))) = dgPoeSellerAngrySoulTex; -#endif - -#define dgPoeSellerHappySoulTex "__OTR__objects/object_ps/gPoeSellerHappySoulTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerHappySoulTex[] = dgPoeSellerHappySoulTex; -#else -static const char gPoeSellerHappySoulTex[] __attribute__((aligned (2))) = dgPoeSellerHappySoulTex; -#endif - -#define dgPoeSellerSadSoulTex "__OTR__objects/object_ps/gPoeSellerSadSoulTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSadSoulTex[] = dgPoeSellerSadSoulTex; -#else -static const char gPoeSellerSadSoulTex[] __attribute__((aligned (2))) = dgPoeSellerSadSoulTex; -#endif - -#define dgPoeSellerCagedSoulDL "__OTR__objects/object_ps/gPoeSellerCagedSoulDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerCagedSoulDL[] = dgPoeSellerCagedSoulDL; -#else -static const char gPoeSellerCagedSoulDL[] __attribute__((aligned (2))) = dgPoeSellerCagedSoulDL; -#endif - -#define dgPoeSellerSkel "__OTR__objects/object_ps/gPoeSellerSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkel[] = dgPoeSellerSkel; -#else -static const char gPoeSellerSkel[] __attribute__((aligned (2))) = dgPoeSellerSkel; -#endif - -#define dgPoeSellerCol "__OTR__objects/object_ps/gPoeSellerCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerCol[] = dgPoeSellerCol; -#else -static const char gPoeSellerCol[] __attribute__((aligned (2))) = dgPoeSellerCol; -#endif - -#define dgPoeSellerSwingStickAnim "__OTR__objects/object_ps/gPoeSellerSwingStickAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSwingStickAnim[] = dgPoeSellerSwingStickAnim; -#else -static const char gPoeSellerSwingStickAnim[] __attribute__((aligned (2))) = dgPoeSellerSwingStickAnim; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C170DL_004838 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C170DL_004838" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C170DL_004838[] = dgPoeSellerSkelLimbsLimb_00C170DL_004838; -#else -static const char gPoeSellerSkelLimbsLimb_00C170DL_004838[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C170DL_004838; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C188DL_00A638 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C188DL_00A638" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C188DL_00A638[] = dgPoeSellerSkelLimbsLimb_00C188DL_00A638; -#else -static const char gPoeSellerSkelLimbsLimb_00C188DL_00A638[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C188DL_00A638; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C194DL_00A748 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C194DL_00A748" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C194DL_00A748[] = dgPoeSellerSkelLimbsLimb_00C194DL_00A748; -#else -static const char gPoeSellerSkelLimbsLimb_00C194DL_00A748[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C194DL_00A748; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C1A0DL_00A400 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1A0DL_00A400" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C1A0DL_00A400[] = dgPoeSellerSkelLimbsLimb_00C1A0DL_00A400; -#else -static const char gPoeSellerSkelLimbsLimb_00C1A0DL_00A400[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C1A0DL_00A400; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C1ACDL_00A510 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1ACDL_00A510" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C1ACDL_00A510[] = dgPoeSellerSkelLimbsLimb_00C1ACDL_00A510; -#else -static const char gPoeSellerSkelLimbsLimb_00C1ACDL_00A510[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C1ACDL_00A510; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C1B8DL_009AE8 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1B8DL_009AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C1B8DL_009AE8[] = dgPoeSellerSkelLimbsLimb_00C1B8DL_009AE8; -#else -static const char gPoeSellerSkelLimbsLimb_00C1B8DL_009AE8[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C1B8DL_009AE8; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C1C4DL_009FC8 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1C4DL_009FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C1C4DL_009FC8[] = dgPoeSellerSkelLimbsLimb_00C1C4DL_009FC8; -#else -static const char gPoeSellerSkelLimbsLimb_00C1C4DL_009FC8[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C1C4DL_009FC8; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8[] = dgPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8; -#else -static const char gPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8[] = dgPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8; -#else -static const char gPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8; -#endif - -#define dgPoeSellerSkelLimbsLimb_00C1E8DL_0096C0 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1E8DL_0096C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeSellerSkelLimbsLimb_00C1E8DL_0096C0[] = dgPoeSellerSkelLimbsLimb_00C1E8DL_0096C0; -#else -static const char gPoeSellerSkelLimbsLimb_00C1E8DL_0096C0[] __attribute__((aligned (2))) = dgPoeSellerSkelLimbsLimb_00C1E8DL_0096C0; -#endif - -#define dobject_psTex_0015B8 "__OTR__objects/object_ps/object_psTex_0015B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_0015B8[] = dobject_psTex_0015B8; -#else -static const char object_psTex_0015B8[] __attribute__((aligned (2))) = dobject_psTex_0015B8; -#endif - -#define dobject_psTLUT_0004B0 "__OTR__objects/object_ps/object_psTLUT_0004B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTLUT_0004B0[] = dobject_psTLUT_0004B0; -#else -static const char object_psTLUT_0004B0[] __attribute__((aligned (2))) = dobject_psTLUT_0004B0; -#endif - -#define dobject_psTex_0005B8 "__OTR__objects/object_ps/object_psTex_0005B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_0005B8[] = dobject_psTex_0005B8; -#else -static const char object_psTex_0005B8[] __attribute__((aligned (2))) = dobject_psTex_0005B8; -#endif - -#define dobject_psTex_0015F8 "__OTR__objects/object_ps/object_psTex_0015F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_0015F8[] = dobject_psTex_0015F8; -#else -static const char object_psTex_0015F8[] __attribute__((aligned (2))) = dobject_psTex_0015F8; -#endif - -#define dobject_psTex_0017F8 "__OTR__objects/object_ps/object_psTex_0017F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_0017F8[] = dobject_psTex_0017F8; -#else -static const char object_psTex_0017F8[] __attribute__((aligned (2))) = dobject_psTex_0017F8; -#endif - -#define dobject_psTex_001838 "__OTR__objects/object_ps/object_psTex_001838" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_001838[] = dobject_psTex_001838; -#else -static const char object_psTex_001838[] __attribute__((aligned (2))) = dobject_psTex_001838; -#endif - -#define dobject_psTex_002578 "__OTR__objects/object_ps/object_psTex_002578" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_002578[] = dobject_psTex_002578; -#else -static const char object_psTex_002578[] __attribute__((aligned (2))) = dobject_psTex_002578; -#endif - -#define dobject_psTex_001D78 "__OTR__objects/object_ps/object_psTex_001D78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_001D78[] = dobject_psTex_001D78; -#else -static const char object_psTex_001D78[] __attribute__((aligned (2))) = dobject_psTex_001D78; -#endif - -#define dobject_psTex_001C38 "__OTR__objects/object_ps/object_psTex_001C38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_001C38[] = dobject_psTex_001C38; -#else -static const char object_psTex_001C38[] __attribute__((aligned (2))) = dobject_psTex_001C38; -#endif - -#define dobject_psTex_002978 "__OTR__objects/object_ps/object_psTex_002978" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_002978[] = dobject_psTex_002978; -#else -static const char object_psTex_002978[] __attribute__((aligned (2))) = dobject_psTex_002978; -#endif - -#define dobject_psTex_001F78 "__OTR__objects/object_ps/object_psTex_001F78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_001F78[] = dobject_psTex_001F78; -#else -static const char object_psTex_001F78[] __attribute__((aligned (2))) = dobject_psTex_001F78; -#endif - -#define dobject_psTex_002178 "__OTR__objects/object_ps/object_psTex_002178" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_002178[] = dobject_psTex_002178; -#else -static const char object_psTex_002178[] __attribute__((aligned (2))) = dobject_psTex_002178; -#endif - -#define dobject_psTex_002378 "__OTR__objects/object_ps/object_psTex_002378" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_002378[] = dobject_psTex_002378; -#else -static const char object_psTex_002378[] __attribute__((aligned (2))) = dobject_psTex_002378; -#endif - -#define dobject_psTex_001D38 "__OTR__objects/object_ps/object_psTex_001D38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_001D38[] = dobject_psTex_001D38; -#else -static const char object_psTex_001D38[] __attribute__((aligned (2))) = dobject_psTex_001D38; -#endif - -#define dobject_psTex_001E78 "__OTR__objects/object_ps/object_psTex_001E78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_001E78[] = dobject_psTex_001E78; -#else -static const char object_psTex_001E78[] __attribute__((aligned (2))) = dobject_psTex_001E78; -#endif - -#define dobject_psTLUT_005880 "__OTR__objects/object_ps/object_psTLUT_005880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTLUT_005880[] = dobject_psTLUT_005880; -#else -static const char object_psTLUT_005880[] __attribute__((aligned (2))) = dobject_psTLUT_005880; -#endif - -#define dobject_psTex_0075C0 "__OTR__objects/object_ps/object_psTex_0075C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_0075C0[] = dobject_psTex_0075C0; -#else -static const char object_psTex_0075C0[] __attribute__((aligned (2))) = dobject_psTex_0075C0; -#endif - -#define dobject_psTex_007180 "__OTR__objects/object_ps/object_psTex_007180" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_007180[] = dobject_psTex_007180; -#else -static const char object_psTex_007180[] __attribute__((aligned (2))) = dobject_psTex_007180; -#endif - -#define dobject_psTex_007600 "__OTR__objects/object_ps/object_psTex_007600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_007600[] = dobject_psTex_007600; -#else -static const char object_psTex_007600[] __attribute__((aligned (2))) = dobject_psTex_007600; -#endif - -#define dobject_psTex_007640 "__OTR__objects/object_ps/object_psTex_007640" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_007640[] = dobject_psTex_007640; -#else -static const char object_psTex_007640[] __attribute__((aligned (2))) = dobject_psTex_007640; -#endif - -#define dobject_psTex_007A40 "__OTR__objects/object_ps/object_psTex_007A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_007A40[] = dobject_psTex_007A40; -#else -static const char object_psTex_007A40[] __attribute__((aligned (2))) = dobject_psTex_007A40; -#endif - -#define dobject_psTex_007C40 "__OTR__objects/object_ps/object_psTex_007C40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_007C40[] = dobject_psTex_007C40; -#else -static const char object_psTex_007C40[] __attribute__((aligned (2))) = dobject_psTex_007C40; -#endif - -#define dobject_psTex_0071C0 "__OTR__objects/object_ps/object_psTex_0071C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_psTex_0071C0[] = dobject_psTex_0071C0; -#else -static const char object_psTex_0071C0[] __attribute__((aligned (2))) = dobject_psTex_0071C0; -#endif - +#include "align_asset_macro.h" + +#define dgPoeSellerIdleAnim "__OTR__objects/object_ps/gPoeSellerIdleAnim" +static const ALIGN_ASSET(2) char gPoeSellerIdleAnim[] = dgPoeSellerIdleAnim; + +#define dgPoeSellerMetalFrameTex "__OTR__objects/object_ps/gPoeSellerMetalFrameTex" +static const ALIGN_ASSET(2) char gPoeSellerMetalFrameTex[] = dgPoeSellerMetalFrameTex; + +#define dgPoeSellerMattressTex "__OTR__objects/object_ps/gPoeSellerMattressTex" +static const ALIGN_ASSET(2) char gPoeSellerMattressTex[] = dgPoeSellerMattressTex; + +#define dgPoeSellerClothTex "__OTR__objects/object_ps/gPoeSellerClothTex" +static const ALIGN_ASSET(2) char gPoeSellerClothTex[] = dgPoeSellerClothTex; + +#define dgPoeSellerCarpetTex "__OTR__objects/object_ps/gPoeSellerCarpetTex" +static const ALIGN_ASSET(2) char gPoeSellerCarpetTex[] = dgPoeSellerCarpetTex; + +#define dgPoeSellerBottleLabelTex "__OTR__objects/object_ps/gPoeSellerBottleLabelTex" +static const ALIGN_ASSET(2) char gPoeSellerBottleLabelTex[] = dgPoeSellerBottleLabelTex; + +#define dgPoeSellerWoodenPanelTex "__OTR__objects/object_ps/gPoeSellerWoodenPanelTex" +static const ALIGN_ASSET(2) char gPoeSellerWoodenPanelTex[] = dgPoeSellerWoodenPanelTex; + +#define dgPoeSellerLanternTex "__OTR__objects/object_ps/gPoeSellerLanternTex" +static const ALIGN_ASSET(2) char gPoeSellerLanternTex[] = dgPoeSellerLanternTex; + +#define dgPoeSellerAngrySoulTex "__OTR__objects/object_ps/gPoeSellerAngrySoulTex" +static const ALIGN_ASSET(2) char gPoeSellerAngrySoulTex[] = dgPoeSellerAngrySoulTex; + +#define dgPoeSellerHappySoulTex "__OTR__objects/object_ps/gPoeSellerHappySoulTex" +static const ALIGN_ASSET(2) char gPoeSellerHappySoulTex[] = dgPoeSellerHappySoulTex; + +#define dgPoeSellerSadSoulTex "__OTR__objects/object_ps/gPoeSellerSadSoulTex" +static const ALIGN_ASSET(2) char gPoeSellerSadSoulTex[] = dgPoeSellerSadSoulTex; + +#define dgPoeSellerCagedSoulDL "__OTR__objects/object_ps/gPoeSellerCagedSoulDL" +static const ALIGN_ASSET(2) char gPoeSellerCagedSoulDL[] = dgPoeSellerCagedSoulDL; + +#define dgPoeSellerSkel "__OTR__objects/object_ps/gPoeSellerSkel" +static const ALIGN_ASSET(2) char gPoeSellerSkel[] = dgPoeSellerSkel; + +#define dgPoeSellerCol "__OTR__objects/object_ps/gPoeSellerCol" +static const ALIGN_ASSET(2) char gPoeSellerCol[] = dgPoeSellerCol; + +#define dgPoeSellerSwingStickAnim "__OTR__objects/object_ps/gPoeSellerSwingStickAnim" +static const ALIGN_ASSET(2) char gPoeSellerSwingStickAnim[] = dgPoeSellerSwingStickAnim; + +#define dgPoeSellerSkelLimbsLimb_00C170DL_004838 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C170DL_004838" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C170DL_004838[] = dgPoeSellerSkelLimbsLimb_00C170DL_004838; + +#define dgPoeSellerSkelLimbsLimb_00C188DL_00A638 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C188DL_00A638" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C188DL_00A638[] = dgPoeSellerSkelLimbsLimb_00C188DL_00A638; + +#define dgPoeSellerSkelLimbsLimb_00C194DL_00A748 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C194DL_00A748" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C194DL_00A748[] = dgPoeSellerSkelLimbsLimb_00C194DL_00A748; + +#define dgPoeSellerSkelLimbsLimb_00C1A0DL_00A400 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1A0DL_00A400" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C1A0DL_00A400[] = dgPoeSellerSkelLimbsLimb_00C1A0DL_00A400; + +#define dgPoeSellerSkelLimbsLimb_00C1ACDL_00A510 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1ACDL_00A510" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C1ACDL_00A510[] = dgPoeSellerSkelLimbsLimb_00C1ACDL_00A510; + +#define dgPoeSellerSkelLimbsLimb_00C1B8DL_009AE8 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1B8DL_009AE8" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C1B8DL_009AE8[] = dgPoeSellerSkelLimbsLimb_00C1B8DL_009AE8; + +#define dgPoeSellerSkelLimbsLimb_00C1C4DL_009FC8 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1C4DL_009FC8" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C1C4DL_009FC8[] = dgPoeSellerSkelLimbsLimb_00C1C4DL_009FC8; + +#define dgPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8[] = dgPoeSellerSkelLimbsLimb_00C1D0DL_00A0F8; + +#define dgPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8[] = dgPoeSellerSkelLimbsLimb_00C1DCDL_00A1D8; + +#define dgPoeSellerSkelLimbsLimb_00C1E8DL_0096C0 "__OTR__objects/object_ps/gPoeSellerSkelLimbsLimb_00C1E8DL_0096C0" +static const ALIGN_ASSET(2) char gPoeSellerSkelLimbsLimb_00C1E8DL_0096C0[] = dgPoeSellerSkelLimbsLimb_00C1E8DL_0096C0; + +#define dobject_psTex_0015B8 "__OTR__objects/object_ps/object_psTex_0015B8" +static const ALIGN_ASSET(2) char object_psTex_0015B8[] = dobject_psTex_0015B8; + +#define dobject_psTLUT_0004B0 "__OTR__objects/object_ps/object_psTLUT_0004B0" +static const ALIGN_ASSET(2) char object_psTLUT_0004B0[] = dobject_psTLUT_0004B0; + +#define dobject_psTex_0005B8 "__OTR__objects/object_ps/object_psTex_0005B8" +static const ALIGN_ASSET(2) char object_psTex_0005B8[] = dobject_psTex_0005B8; + +#define dobject_psTex_0015F8 "__OTR__objects/object_ps/object_psTex_0015F8" +static const ALIGN_ASSET(2) char object_psTex_0015F8[] = dobject_psTex_0015F8; + +#define dobject_psTex_0017F8 "__OTR__objects/object_ps/object_psTex_0017F8" +static const ALIGN_ASSET(2) char object_psTex_0017F8[] = dobject_psTex_0017F8; + +#define dobject_psTex_001838 "__OTR__objects/object_ps/object_psTex_001838" +static const ALIGN_ASSET(2) char object_psTex_001838[] = dobject_psTex_001838; + +#define dobject_psTex_002578 "__OTR__objects/object_ps/object_psTex_002578" +static const ALIGN_ASSET(2) char object_psTex_002578[] = dobject_psTex_002578; + +#define dobject_psTex_001D78 "__OTR__objects/object_ps/object_psTex_001D78" +static const ALIGN_ASSET(2) char object_psTex_001D78[] = dobject_psTex_001D78; + +#define dobject_psTex_001C38 "__OTR__objects/object_ps/object_psTex_001C38" +static const ALIGN_ASSET(2) char object_psTex_001C38[] = dobject_psTex_001C38; + +#define dobject_psTex_002978 "__OTR__objects/object_ps/object_psTex_002978" +static const ALIGN_ASSET(2) char object_psTex_002978[] = dobject_psTex_002978; + +#define dobject_psTex_001F78 "__OTR__objects/object_ps/object_psTex_001F78" +static const ALIGN_ASSET(2) char object_psTex_001F78[] = dobject_psTex_001F78; + +#define dobject_psTex_002178 "__OTR__objects/object_ps/object_psTex_002178" +static const ALIGN_ASSET(2) char object_psTex_002178[] = dobject_psTex_002178; + +#define dobject_psTex_002378 "__OTR__objects/object_ps/object_psTex_002378" +static const ALIGN_ASSET(2) char object_psTex_002378[] = dobject_psTex_002378; + +#define dobject_psTex_001D38 "__OTR__objects/object_ps/object_psTex_001D38" +static const ALIGN_ASSET(2) char object_psTex_001D38[] = dobject_psTex_001D38; + +#define dobject_psTex_001E78 "__OTR__objects/object_ps/object_psTex_001E78" +static const ALIGN_ASSET(2) char object_psTex_001E78[] = dobject_psTex_001E78; + +#define dobject_psTLUT_005880 "__OTR__objects/object_ps/object_psTLUT_005880" +static const ALIGN_ASSET(2) char object_psTLUT_005880[] = dobject_psTLUT_005880; + +#define dobject_psTex_0075C0 "__OTR__objects/object_ps/object_psTex_0075C0" +static const ALIGN_ASSET(2) char object_psTex_0075C0[] = dobject_psTex_0075C0; + +#define dobject_psTex_007180 "__OTR__objects/object_ps/object_psTex_007180" +static const ALIGN_ASSET(2) char object_psTex_007180[] = dobject_psTex_007180; + +#define dobject_psTex_007600 "__OTR__objects/object_ps/object_psTex_007600" +static const ALIGN_ASSET(2) char object_psTex_007600[] = dobject_psTex_007600; + +#define dobject_psTex_007640 "__OTR__objects/object_ps/object_psTex_007640" +static const ALIGN_ASSET(2) char object_psTex_007640[] = dobject_psTex_007640; + +#define dobject_psTex_007A40 "__OTR__objects/object_ps/object_psTex_007A40" +static const ALIGN_ASSET(2) char object_psTex_007A40[] = dobject_psTex_007A40; + +#define dobject_psTex_007C40 "__OTR__objects/object_ps/object_psTex_007C40" +static const ALIGN_ASSET(2) char object_psTex_007C40[] = dobject_psTex_007C40; + +#define dobject_psTex_0071C0 "__OTR__objects/object_ps/object_psTex_0071C0" +static const ALIGN_ASSET(2) char object_psTex_0071C0[] = dobject_psTex_0071C0; \ No newline at end of file diff --git a/soh/assets/objects/object_pu_box/object_pu_box.h b/soh/assets/objects/object_pu_box/object_pu_box.h index bf9095e5c..f48ba98a3 100644 --- a/soh/assets/objects/object_pu_box/object_pu_box.h +++ b/soh/assets/objects/object_pu_box/object_pu_box.h @@ -1,65 +1,30 @@ #pragma once -#define dgBlockSmallDL "__OTR__objects/object_pu_box/gBlockSmallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockSmallDL[] = dgBlockSmallDL; -#else -static const char gBlockSmallDL[] __attribute__((aligned (2))) = dgBlockSmallDL; -#endif - -#define dgBlockSmallCol "__OTR__objects/object_pu_box/gBlockSmallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockSmallCol[] = dgBlockSmallCol; -#else -static const char gBlockSmallCol[] __attribute__((aligned (2))) = dgBlockSmallCol; -#endif - -#define dgBlockMediumDL "__OTR__objects/object_pu_box/gBlockMediumDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockMediumDL[] = dgBlockMediumDL; -#else -static const char gBlockMediumDL[] __attribute__((aligned (2))) = dgBlockMediumDL; -#endif - -#define dgBlockMediumCol "__OTR__objects/object_pu_box/gBlockMediumCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockMediumCol[] = dgBlockMediumCol; -#else -static const char gBlockMediumCol[] __attribute__((aligned (2))) = dgBlockMediumCol; -#endif - -#define dgBlockTallDL "__OTR__objects/object_pu_box/gBlockTallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockTallDL[] = dgBlockTallDL; -#else -static const char gBlockTallDL[] __attribute__((aligned (2))) = dgBlockTallDL; -#endif - -#define dgBlockTallCol "__OTR__objects/object_pu_box/gBlockTallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockTallCol[] = dgBlockTallCol; -#else -static const char gBlockTallCol[] __attribute__((aligned (2))) = dgBlockTallCol; -#endif - -#define dgBlockTallestDL "__OTR__objects/object_pu_box/gBlockTallestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockTallestDL[] = dgBlockTallestDL; -#else -static const char gBlockTallestDL[] __attribute__((aligned (2))) = dgBlockTallestDL; -#endif - -#define dgBlockTallestCol "__OTR__objects/object_pu_box/gBlockTallestCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockTallestCol[] = dgBlockTallestCol; -#else -static const char gBlockTallestCol[] __attribute__((aligned (2))) = dgBlockTallestCol; -#endif - -#define dgBlockTex "__OTR__objects/object_pu_box/gBlockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlockTex[] = dgBlockTex; -#else -static const char gBlockTex[] __attribute__((aligned (2))) = dgBlockTex; -#endif - +#include "align_asset_macro.h" + +#define dgBlockSmallDL "__OTR__objects/object_pu_box/gBlockSmallDL" +static const ALIGN_ASSET(2) char gBlockSmallDL[] = dgBlockSmallDL; + +#define dgBlockSmallCol "__OTR__objects/object_pu_box/gBlockSmallCol" +static const ALIGN_ASSET(2) char gBlockSmallCol[] = dgBlockSmallCol; + +#define dgBlockMediumDL "__OTR__objects/object_pu_box/gBlockMediumDL" +static const ALIGN_ASSET(2) char gBlockMediumDL[] = dgBlockMediumDL; + +#define dgBlockMediumCol "__OTR__objects/object_pu_box/gBlockMediumCol" +static const ALIGN_ASSET(2) char gBlockMediumCol[] = dgBlockMediumCol; + +#define dgBlockTallDL "__OTR__objects/object_pu_box/gBlockTallDL" +static const ALIGN_ASSET(2) char gBlockTallDL[] = dgBlockTallDL; + +#define dgBlockTallCol "__OTR__objects/object_pu_box/gBlockTallCol" +static const ALIGN_ASSET(2) char gBlockTallCol[] = dgBlockTallCol; + +#define dgBlockTallestDL "__OTR__objects/object_pu_box/gBlockTallestDL" +static const ALIGN_ASSET(2) char gBlockTallestDL[] = dgBlockTallestDL; + +#define dgBlockTallestCol "__OTR__objects/object_pu_box/gBlockTallestCol" +static const ALIGN_ASSET(2) char gBlockTallestCol[] = dgBlockTallestCol; + +#define dgBlockTex "__OTR__objects/object_pu_box/gBlockTex" +static const ALIGN_ASSET(2) char gBlockTex[] = dgBlockTex; \ No newline at end of file diff --git a/soh/assets/objects/object_rd/object_rd.h b/soh/assets/objects/object_rd/object_rd.h index 94a901f0b..6bcd7787f 100644 --- a/soh/assets/objects/object_rd/object_rd.h +++ b/soh/assets/objects/object_rd/object_rd.h @@ -1,366 +1,159 @@ #pragma once -#define dgGibdoWrappingTex "__OTR__objects/object_rd/gGibdoWrappingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoWrappingTex[] = dgGibdoWrappingTex; -#else -static const char gGibdoWrappingTex[] __attribute__((aligned (2))) = dgGibdoWrappingTex; -#endif - -#define dgGibdoEyeTex "__OTR__objects/object_rd/gGibdoEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoEyeTex[] = dgGibdoEyeTex; -#else -static const char gGibdoEyeTex[] __attribute__((aligned (2))) = dgGibdoEyeTex; -#endif - -#define dgGibdoPelvisDL "__OTR__objects/object_rd/gGibdoPelvisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoPelvisDL[] = dgGibdoPelvisDL; -#else -static const char gGibdoPelvisDL[] __attribute__((aligned (2))) = dgGibdoPelvisDL; -#endif - -#define dgGibdoHeadDL "__OTR__objects/object_rd/gGibdoHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoHeadDL[] = dgGibdoHeadDL; -#else -static const char gGibdoHeadDL[] __attribute__((aligned (2))) = dgGibdoHeadDL; -#endif - -#define dgGibdoTorsoDL "__OTR__objects/object_rd/gGibdoTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoTorsoDL[] = dgGibdoTorsoDL; -#else -static const char gGibdoTorsoDL[] __attribute__((aligned (2))) = dgGibdoTorsoDL; -#endif - -#define dgGibdoRightUpperArmDL "__OTR__objects/object_rd/gGibdoRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRightUpperArmDL[] = dgGibdoRightUpperArmDL; -#else -static const char gGibdoRightUpperArmDL[] __attribute__((aligned (2))) = dgGibdoRightUpperArmDL; -#endif - -#define dgGibdoRightForearmDL "__OTR__objects/object_rd/gGibdoRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRightForearmDL[] = dgGibdoRightForearmDL; -#else -static const char gGibdoRightForearmDL[] __attribute__((aligned (2))) = dgGibdoRightForearmDL; -#endif - -#define dgGibdoRightHandDL "__OTR__objects/object_rd/gGibdoRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRightHandDL[] = dgGibdoRightHandDL; -#else -static const char gGibdoRightHandDL[] __attribute__((aligned (2))) = dgGibdoRightHandDL; -#endif - -#define dgGibdoLeftUpperArmDL "__OTR__objects/object_rd/gGibdoLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoLeftUpperArmDL[] = dgGibdoLeftUpperArmDL; -#else -static const char gGibdoLeftUpperArmDL[] __attribute__((aligned (2))) = dgGibdoLeftUpperArmDL; -#endif - -#define dgGibdoLeftForearmDL "__OTR__objects/object_rd/gGibdoLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoLeftForearmDL[] = dgGibdoLeftForearmDL; -#else -static const char gGibdoLeftForearmDL[] __attribute__((aligned (2))) = dgGibdoLeftForearmDL; -#endif - -#define dgGibdoLeftHandDL "__OTR__objects/object_rd/gGibdoLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoLeftHandDL[] = dgGibdoLeftHandDL; -#else -static const char gGibdoLeftHandDL[] __attribute__((aligned (2))) = dgGibdoLeftHandDL; -#endif - -#define dgGibdoRightThighDL "__OTR__objects/object_rd/gGibdoRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRightThighDL[] = dgGibdoRightThighDL; -#else -static const char gGibdoRightThighDL[] __attribute__((aligned (2))) = dgGibdoRightThighDL; -#endif - -#define dgGibdoRightShinDL "__OTR__objects/object_rd/gGibdoRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRightShinDL[] = dgGibdoRightShinDL; -#else -static const char gGibdoRightShinDL[] __attribute__((aligned (2))) = dgGibdoRightShinDL; -#endif - -#define dgGibdoRightFootDL "__OTR__objects/object_rd/gGibdoRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRightFootDL[] = dgGibdoRightFootDL; -#else -static const char gGibdoRightFootDL[] __attribute__((aligned (2))) = dgGibdoRightFootDL; -#endif - -#define dgGibdoLeftThighDL "__OTR__objects/object_rd/gGibdoLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoLeftThighDL[] = dgGibdoLeftThighDL; -#else -static const char gGibdoLeftThighDL[] __attribute__((aligned (2))) = dgGibdoLeftThighDL; -#endif - -#define dgGibdoLeftShinDL "__OTR__objects/object_rd/gGibdoLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoLeftShinDL[] = dgGibdoLeftShinDL; -#else -static const char gGibdoLeftShinDL[] __attribute__((aligned (2))) = dgGibdoLeftShinDL; -#endif - -#define dgGibdoLeftFootDL "__OTR__objects/object_rd/gGibdoLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoLeftFootDL[] = dgGibdoLeftFootDL; -#else -static const char gGibdoLeftFootDL[] __attribute__((aligned (2))) = dgGibdoLeftFootDL; -#endif - -#define dgGibdoSkel "__OTR__objects/object_rd/gGibdoSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoSkel[] = dgGibdoSkel; -#else -static const char gGibdoSkel[] __attribute__((aligned (2))) = dgGibdoSkel; -#endif - -#define dgGibdoRedeadGrabAttackAnim "__OTR__objects/object_rd/gGibdoRedeadGrabAttackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadGrabAttackAnim[] = dgGibdoRedeadGrabAttackAnim; -#else -static const char gGibdoRedeadGrabAttackAnim[] __attribute__((aligned (2))) = dgGibdoRedeadGrabAttackAnim; -#endif - -#define dgGibdoRedeadGrabEndAnim "__OTR__objects/object_rd/gGibdoRedeadGrabEndAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadGrabEndAnim[] = dgGibdoRedeadGrabEndAnim; -#else -static const char gGibdoRedeadGrabEndAnim[] __attribute__((aligned (2))) = dgGibdoRedeadGrabEndAnim; -#endif - -#define dgGibdoRedeadGrabStartAnim "__OTR__objects/object_rd/gGibdoRedeadGrabStartAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadGrabStartAnim[] = dgGibdoRedeadGrabStartAnim; -#else -static const char gGibdoRedeadGrabStartAnim[] __attribute__((aligned (2))) = dgGibdoRedeadGrabStartAnim; -#endif - -#define dgGibdoRedeadLookBackAnim "__OTR__objects/object_rd/gGibdoRedeadLookBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadLookBackAnim[] = dgGibdoRedeadLookBackAnim; -#else -static const char gGibdoRedeadLookBackAnim[] __attribute__((aligned (2))) = dgGibdoRedeadLookBackAnim; -#endif - -#define dgGibdoRedeadWipingTearsAnim "__OTR__objects/object_rd/gGibdoRedeadWipingTearsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadWipingTearsAnim[] = dgGibdoRedeadWipingTearsAnim; -#else -static const char gGibdoRedeadWipingTearsAnim[] __attribute__((aligned (2))) = dgGibdoRedeadWipingTearsAnim; -#endif - -#define dgGibdoRedeadSobbingAnim "__OTR__objects/object_rd/gGibdoRedeadSobbingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadSobbingAnim[] = dgGibdoRedeadSobbingAnim; -#else -static const char gGibdoRedeadSobbingAnim[] __attribute__((aligned (2))) = dgGibdoRedeadSobbingAnim; -#endif - -#define dgGibdoRedeadDeathAnim "__OTR__objects/object_rd/gGibdoRedeadDeathAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadDeathAnim[] = dgGibdoRedeadDeathAnim; -#else -static const char gGibdoRedeadDeathAnim[] __attribute__((aligned (2))) = dgGibdoRedeadDeathAnim; -#endif - -#define dgGibdoRedeadDamageAnim "__OTR__objects/object_rd/gGibdoRedeadDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadDamageAnim[] = dgGibdoRedeadDamageAnim; -#else -static const char gGibdoRedeadDamageAnim[] __attribute__((aligned (2))) = dgGibdoRedeadDamageAnim; -#endif - -#define dgGibdoRedeadStandUpAnim "__OTR__objects/object_rd/gGibdoRedeadStandUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadStandUpAnim[] = dgGibdoRedeadStandUpAnim; -#else -static const char gGibdoRedeadStandUpAnim[] __attribute__((aligned (2))) = dgGibdoRedeadStandUpAnim; -#endif - -#define dgGibdoRedeadIdleAnim "__OTR__objects/object_rd/gGibdoRedeadIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadIdleAnim[] = dgGibdoRedeadIdleAnim; -#else -static const char gGibdoRedeadIdleAnim[] __attribute__((aligned (2))) = dgGibdoRedeadIdleAnim; -#endif - -#define dgRedeadBackTex "__OTR__objects/object_rd/gRedeadBackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadBackTex[] = dgRedeadBackTex; -#else -static const char gRedeadBackTex[] __attribute__((aligned (2))) = dgRedeadBackTex; -#endif - -#define dgRedeadTorsoTex "__OTR__objects/object_rd/gRedeadTorsoTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadTorsoTex[] = dgRedeadTorsoTex; -#else -static const char gRedeadTorsoTex[] __attribute__((aligned (2))) = dgRedeadTorsoTex; -#endif - -#define dgRedeadFingersAndToesTex "__OTR__objects/object_rd/gRedeadFingersAndToesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadFingersAndToesTex[] = dgRedeadFingersAndToesTex; -#else -static const char gRedeadFingersAndToesTex[] __attribute__((aligned (2))) = dgRedeadFingersAndToesTex; -#endif - -#define dgRedeadMuscleTex "__OTR__objects/object_rd/gRedeadMuscleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadMuscleTex[] = dgRedeadMuscleTex; -#else -static const char gRedeadMuscleTex[] __attribute__((aligned (2))) = dgRedeadMuscleTex; -#endif - -#define dgRedeadMaskTex "__OTR__objects/object_rd/gRedeadMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadMaskTex[] = dgRedeadMaskTex; -#else -static const char gRedeadMaskTex[] __attribute__((aligned (2))) = dgRedeadMaskTex; -#endif - -#define dgRedeadFaceTex "__OTR__objects/object_rd/gRedeadFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadFaceTex[] = dgRedeadFaceTex; -#else -static const char gRedeadFaceTex[] __attribute__((aligned (2))) = dgRedeadFaceTex; -#endif - -#define dgRedeadHipsTex "__OTR__objects/object_rd/gRedeadHipsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadHipsTex[] = dgRedeadHipsTex; -#else -static const char gRedeadHipsTex[] __attribute__((aligned (2))) = dgRedeadHipsTex; -#endif - -#define dgRedeadPelvisDL "__OTR__objects/object_rd/gRedeadPelvisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadPelvisDL[] = dgRedeadPelvisDL; -#else -static const char gRedeadPelvisDL[] __attribute__((aligned (2))) = dgRedeadPelvisDL; -#endif - -#define dgRedeadTorsoDL "__OTR__objects/object_rd/gRedeadTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadTorsoDL[] = dgRedeadTorsoDL; -#else -static const char gRedeadTorsoDL[] __attribute__((aligned (2))) = dgRedeadTorsoDL; -#endif - -#define dgRedeadLeftUpperArmDL "__OTR__objects/object_rd/gRedeadLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadLeftUpperArmDL[] = dgRedeadLeftUpperArmDL; -#else -static const char gRedeadLeftUpperArmDL[] __attribute__((aligned (2))) = dgRedeadLeftUpperArmDL; -#endif - -#define dgRedeadLeftForearmDL "__OTR__objects/object_rd/gRedeadLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadLeftForearmDL[] = dgRedeadLeftForearmDL; -#else -static const char gRedeadLeftForearmDL[] __attribute__((aligned (2))) = dgRedeadLeftForearmDL; -#endif - -#define dgRedeadLeftHandDL "__OTR__objects/object_rd/gRedeadLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadLeftHandDL[] = dgRedeadLeftHandDL; -#else -static const char gRedeadLeftHandDL[] __attribute__((aligned (2))) = dgRedeadLeftHandDL; -#endif - -#define dgRedeadRightUpperArmDL "__OTR__objects/object_rd/gRedeadRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadRightUpperArmDL[] = dgRedeadRightUpperArmDL; -#else -static const char gRedeadRightUpperArmDL[] __attribute__((aligned (2))) = dgRedeadRightUpperArmDL; -#endif - -#define dgRedeadRightForearmDL "__OTR__objects/object_rd/gRedeadRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadRightForearmDL[] = dgRedeadRightForearmDL; -#else -static const char gRedeadRightForearmDL[] __attribute__((aligned (2))) = dgRedeadRightForearmDL; -#endif - -#define dgRedeadRightHandDL "__OTR__objects/object_rd/gRedeadRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadRightHandDL[] = dgRedeadRightHandDL; -#else -static const char gRedeadRightHandDL[] __attribute__((aligned (2))) = dgRedeadRightHandDL; -#endif - -#define dgRedeadHeadDL "__OTR__objects/object_rd/gRedeadHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadHeadDL[] = dgRedeadHeadDL; -#else -static const char gRedeadHeadDL[] __attribute__((aligned (2))) = dgRedeadHeadDL; -#endif - -#define dgRedeadLeftThighDL "__OTR__objects/object_rd/gRedeadLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadLeftThighDL[] = dgRedeadLeftThighDL; -#else -static const char gRedeadLeftThighDL[] __attribute__((aligned (2))) = dgRedeadLeftThighDL; -#endif - -#define dgRedeadLeftShinDL "__OTR__objects/object_rd/gRedeadLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadLeftShinDL[] = dgRedeadLeftShinDL; -#else -static const char gRedeadLeftShinDL[] __attribute__((aligned (2))) = dgRedeadLeftShinDL; -#endif - -#define dgRedeadLeftFootDL "__OTR__objects/object_rd/gRedeadLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadLeftFootDL[] = dgRedeadLeftFootDL; -#else -static const char gRedeadLeftFootDL[] __attribute__((aligned (2))) = dgRedeadLeftFootDL; -#endif - -#define dgRedeadRightThighDL "__OTR__objects/object_rd/gRedeadRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadRightThighDL[] = dgRedeadRightThighDL; -#else -static const char gRedeadRightThighDL[] __attribute__((aligned (2))) = dgRedeadRightThighDL; -#endif - -#define dgRedeadRightShinDL "__OTR__objects/object_rd/gRedeadRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadRightShinDL[] = dgRedeadRightShinDL; -#else -static const char gRedeadRightShinDL[] __attribute__((aligned (2))) = dgRedeadRightShinDL; -#endif - -#define dgRedeadRightFootDL "__OTR__objects/object_rd/gRedeadRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadRightFootDL[] = dgRedeadRightFootDL; -#else -static const char gRedeadRightFootDL[] __attribute__((aligned (2))) = dgRedeadRightFootDL; -#endif - -#define dgRedeadSkel "__OTR__objects/object_rd/gRedeadSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedeadSkel[] = dgRedeadSkel; -#else -static const char gRedeadSkel[] __attribute__((aligned (2))) = dgRedeadSkel; -#endif - -#define dgGibdoRedeadWalkAnim "__OTR__objects/object_rd/gGibdoRedeadWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gGibdoRedeadWalkAnim[] = dgGibdoRedeadWalkAnim; -#else -static const char gGibdoRedeadWalkAnim[] __attribute__((aligned (2))) = dgGibdoRedeadWalkAnim; -#endif - +#include "align_asset_macro.h" + +#define dgGibdoWrappingTex "__OTR__objects/object_rd/gGibdoWrappingTex" +static const ALIGN_ASSET(2) char gGibdoWrappingTex[] = dgGibdoWrappingTex; + +#define dgGibdoEyeTex "__OTR__objects/object_rd/gGibdoEyeTex" +static const ALIGN_ASSET(2) char gGibdoEyeTex[] = dgGibdoEyeTex; + +#define dgGibdoPelvisDL "__OTR__objects/object_rd/gGibdoPelvisDL" +static const ALIGN_ASSET(2) char gGibdoPelvisDL[] = dgGibdoPelvisDL; + +#define dgGibdoHeadDL "__OTR__objects/object_rd/gGibdoHeadDL" +static const ALIGN_ASSET(2) char gGibdoHeadDL[] = dgGibdoHeadDL; + +#define dgGibdoTorsoDL "__OTR__objects/object_rd/gGibdoTorsoDL" +static const ALIGN_ASSET(2) char gGibdoTorsoDL[] = dgGibdoTorsoDL; + +#define dgGibdoRightUpperArmDL "__OTR__objects/object_rd/gGibdoRightUpperArmDL" +static const ALIGN_ASSET(2) char gGibdoRightUpperArmDL[] = dgGibdoRightUpperArmDL; + +#define dgGibdoRightForearmDL "__OTR__objects/object_rd/gGibdoRightForearmDL" +static const ALIGN_ASSET(2) char gGibdoRightForearmDL[] = dgGibdoRightForearmDL; + +#define dgGibdoRightHandDL "__OTR__objects/object_rd/gGibdoRightHandDL" +static const ALIGN_ASSET(2) char gGibdoRightHandDL[] = dgGibdoRightHandDL; + +#define dgGibdoLeftUpperArmDL "__OTR__objects/object_rd/gGibdoLeftUpperArmDL" +static const ALIGN_ASSET(2) char gGibdoLeftUpperArmDL[] = dgGibdoLeftUpperArmDL; + +#define dgGibdoLeftForearmDL "__OTR__objects/object_rd/gGibdoLeftForearmDL" +static const ALIGN_ASSET(2) char gGibdoLeftForearmDL[] = dgGibdoLeftForearmDL; + +#define dgGibdoLeftHandDL "__OTR__objects/object_rd/gGibdoLeftHandDL" +static const ALIGN_ASSET(2) char gGibdoLeftHandDL[] = dgGibdoLeftHandDL; + +#define dgGibdoRightThighDL "__OTR__objects/object_rd/gGibdoRightThighDL" +static const ALIGN_ASSET(2) char gGibdoRightThighDL[] = dgGibdoRightThighDL; + +#define dgGibdoRightShinDL "__OTR__objects/object_rd/gGibdoRightShinDL" +static const ALIGN_ASSET(2) char gGibdoRightShinDL[] = dgGibdoRightShinDL; + +#define dgGibdoRightFootDL "__OTR__objects/object_rd/gGibdoRightFootDL" +static const ALIGN_ASSET(2) char gGibdoRightFootDL[] = dgGibdoRightFootDL; + +#define dgGibdoLeftThighDL "__OTR__objects/object_rd/gGibdoLeftThighDL" +static const ALIGN_ASSET(2) char gGibdoLeftThighDL[] = dgGibdoLeftThighDL; + +#define dgGibdoLeftShinDL "__OTR__objects/object_rd/gGibdoLeftShinDL" +static const ALIGN_ASSET(2) char gGibdoLeftShinDL[] = dgGibdoLeftShinDL; + +#define dgGibdoLeftFootDL "__OTR__objects/object_rd/gGibdoLeftFootDL" +static const ALIGN_ASSET(2) char gGibdoLeftFootDL[] = dgGibdoLeftFootDL; + +#define dgGibdoSkel "__OTR__objects/object_rd/gGibdoSkel" +static const ALIGN_ASSET(2) char gGibdoSkel[] = dgGibdoSkel; + +#define dgGibdoRedeadGrabAttackAnim "__OTR__objects/object_rd/gGibdoRedeadGrabAttackAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadGrabAttackAnim[] = dgGibdoRedeadGrabAttackAnim; + +#define dgGibdoRedeadGrabEndAnim "__OTR__objects/object_rd/gGibdoRedeadGrabEndAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadGrabEndAnim[] = dgGibdoRedeadGrabEndAnim; + +#define dgGibdoRedeadGrabStartAnim "__OTR__objects/object_rd/gGibdoRedeadGrabStartAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadGrabStartAnim[] = dgGibdoRedeadGrabStartAnim; + +#define dgGibdoRedeadLookBackAnim "__OTR__objects/object_rd/gGibdoRedeadLookBackAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadLookBackAnim[] = dgGibdoRedeadLookBackAnim; + +#define dgGibdoRedeadWipingTearsAnim "__OTR__objects/object_rd/gGibdoRedeadWipingTearsAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadWipingTearsAnim[] = dgGibdoRedeadWipingTearsAnim; + +#define dgGibdoRedeadSobbingAnim "__OTR__objects/object_rd/gGibdoRedeadSobbingAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadSobbingAnim[] = dgGibdoRedeadSobbingAnim; + +#define dgGibdoRedeadDeathAnim "__OTR__objects/object_rd/gGibdoRedeadDeathAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadDeathAnim[] = dgGibdoRedeadDeathAnim; + +#define dgGibdoRedeadDamageAnim "__OTR__objects/object_rd/gGibdoRedeadDamageAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadDamageAnim[] = dgGibdoRedeadDamageAnim; + +#define dgGibdoRedeadStandUpAnim "__OTR__objects/object_rd/gGibdoRedeadStandUpAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadStandUpAnim[] = dgGibdoRedeadStandUpAnim; + +#define dgGibdoRedeadIdleAnim "__OTR__objects/object_rd/gGibdoRedeadIdleAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadIdleAnim[] = dgGibdoRedeadIdleAnim; + +#define dgRedeadBackTex "__OTR__objects/object_rd/gRedeadBackTex" +static const ALIGN_ASSET(2) char gRedeadBackTex[] = dgRedeadBackTex; + +#define dgRedeadTorsoTex "__OTR__objects/object_rd/gRedeadTorsoTex" +static const ALIGN_ASSET(2) char gRedeadTorsoTex[] = dgRedeadTorsoTex; + +#define dgRedeadFingersAndToesTex "__OTR__objects/object_rd/gRedeadFingersAndToesTex" +static const ALIGN_ASSET(2) char gRedeadFingersAndToesTex[] = dgRedeadFingersAndToesTex; + +#define dgRedeadMuscleTex "__OTR__objects/object_rd/gRedeadMuscleTex" +static const ALIGN_ASSET(2) char gRedeadMuscleTex[] = dgRedeadMuscleTex; + +#define dgRedeadMaskTex "__OTR__objects/object_rd/gRedeadMaskTex" +static const ALIGN_ASSET(2) char gRedeadMaskTex[] = dgRedeadMaskTex; + +#define dgRedeadFaceTex "__OTR__objects/object_rd/gRedeadFaceTex" +static const ALIGN_ASSET(2) char gRedeadFaceTex[] = dgRedeadFaceTex; + +#define dgRedeadHipsTex "__OTR__objects/object_rd/gRedeadHipsTex" +static const ALIGN_ASSET(2) char gRedeadHipsTex[] = dgRedeadHipsTex; + +#define dgRedeadPelvisDL "__OTR__objects/object_rd/gRedeadPelvisDL" +static const ALIGN_ASSET(2) char gRedeadPelvisDL[] = dgRedeadPelvisDL; + +#define dgRedeadTorsoDL "__OTR__objects/object_rd/gRedeadTorsoDL" +static const ALIGN_ASSET(2) char gRedeadTorsoDL[] = dgRedeadTorsoDL; + +#define dgRedeadLeftUpperArmDL "__OTR__objects/object_rd/gRedeadLeftUpperArmDL" +static const ALIGN_ASSET(2) char gRedeadLeftUpperArmDL[] = dgRedeadLeftUpperArmDL; + +#define dgRedeadLeftForearmDL "__OTR__objects/object_rd/gRedeadLeftForearmDL" +static const ALIGN_ASSET(2) char gRedeadLeftForearmDL[] = dgRedeadLeftForearmDL; + +#define dgRedeadLeftHandDL "__OTR__objects/object_rd/gRedeadLeftHandDL" +static const ALIGN_ASSET(2) char gRedeadLeftHandDL[] = dgRedeadLeftHandDL; + +#define dgRedeadRightUpperArmDL "__OTR__objects/object_rd/gRedeadRightUpperArmDL" +static const ALIGN_ASSET(2) char gRedeadRightUpperArmDL[] = dgRedeadRightUpperArmDL; + +#define dgRedeadRightForearmDL "__OTR__objects/object_rd/gRedeadRightForearmDL" +static const ALIGN_ASSET(2) char gRedeadRightForearmDL[] = dgRedeadRightForearmDL; + +#define dgRedeadRightHandDL "__OTR__objects/object_rd/gRedeadRightHandDL" +static const ALIGN_ASSET(2) char gRedeadRightHandDL[] = dgRedeadRightHandDL; + +#define dgRedeadHeadDL "__OTR__objects/object_rd/gRedeadHeadDL" +static const ALIGN_ASSET(2) char gRedeadHeadDL[] = dgRedeadHeadDL; + +#define dgRedeadLeftThighDL "__OTR__objects/object_rd/gRedeadLeftThighDL" +static const ALIGN_ASSET(2) char gRedeadLeftThighDL[] = dgRedeadLeftThighDL; + +#define dgRedeadLeftShinDL "__OTR__objects/object_rd/gRedeadLeftShinDL" +static const ALIGN_ASSET(2) char gRedeadLeftShinDL[] = dgRedeadLeftShinDL; + +#define dgRedeadLeftFootDL "__OTR__objects/object_rd/gRedeadLeftFootDL" +static const ALIGN_ASSET(2) char gRedeadLeftFootDL[] = dgRedeadLeftFootDL; + +#define dgRedeadRightThighDL "__OTR__objects/object_rd/gRedeadRightThighDL" +static const ALIGN_ASSET(2) char gRedeadRightThighDL[] = dgRedeadRightThighDL; + +#define dgRedeadRightShinDL "__OTR__objects/object_rd/gRedeadRightShinDL" +static const ALIGN_ASSET(2) char gRedeadRightShinDL[] = dgRedeadRightShinDL; + +#define dgRedeadRightFootDL "__OTR__objects/object_rd/gRedeadRightFootDL" +static const ALIGN_ASSET(2) char gRedeadRightFootDL[] = dgRedeadRightFootDL; + +#define dgRedeadSkel "__OTR__objects/object_rd/gRedeadSkel" +static const ALIGN_ASSET(2) char gRedeadSkel[] = dgRedeadSkel; + +#define dgGibdoRedeadWalkAnim "__OTR__objects/object_rd/gGibdoRedeadWalkAnim" +static const ALIGN_ASSET(2) char gGibdoRedeadWalkAnim[] = dgGibdoRedeadWalkAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_reeba/object_reeba.h b/soh/assets/objects/object_reeba/object_reeba.h index 7fb403e9e..b2eb9bada 100644 --- a/soh/assets/objects/object_reeba/object_reeba.h +++ b/soh/assets/objects/object_reeba/object_reeba.h @@ -1,163 +1,72 @@ #pragma once -#define dobject_reeba_Anim_0001E4 "__OTR__objects/object_reeba/object_reeba_Anim_0001E4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_Anim_0001E4[] = dobject_reeba_Anim_0001E4; -#else -static const char object_reeba_Anim_0001E4[] __attribute__((aligned (2))) = dobject_reeba_Anim_0001E4; -#endif - -#define dobject_reeba_DL_000200 "__OTR__objects/object_reeba/object_reeba_DL_000200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000200[] = dobject_reeba_DL_000200; -#else -static const char object_reeba_DL_000200[] __attribute__((aligned (2))) = dobject_reeba_DL_000200; -#endif - -#define dobject_reeba_DL_0002D0 "__OTR__objects/object_reeba/object_reeba_DL_0002D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_0002D0[] = dobject_reeba_DL_0002D0; -#else -static const char object_reeba_DL_0002D0[] __attribute__((aligned (2))) = dobject_reeba_DL_0002D0; -#endif - -#define dobject_reeba_DL_0002E0 "__OTR__objects/object_reeba/object_reeba_DL_0002E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_0002E0[] = dobject_reeba_DL_0002E0; -#else -static const char object_reeba_DL_0002E0[] __attribute__((aligned (2))) = dobject_reeba_DL_0002E0; -#endif - -#define dobject_reeba_DL_000430 "__OTR__objects/object_reeba/object_reeba_DL_000430" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000430[] = dobject_reeba_DL_000430; -#else -static const char object_reeba_DL_000430[] __attribute__((aligned (2))) = dobject_reeba_DL_000430; -#endif - -#define dobject_reeba_DL_000570 "__OTR__objects/object_reeba/object_reeba_DL_000570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000570[] = dobject_reeba_DL_000570; -#else -static const char object_reeba_DL_000570[] __attribute__((aligned (2))) = dobject_reeba_DL_000570; -#endif - -#define dobject_reeba_DL_000580 "__OTR__objects/object_reeba/object_reeba_DL_000580" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000580[] = dobject_reeba_DL_000580; -#else -static const char object_reeba_DL_000580[] __attribute__((aligned (2))) = dobject_reeba_DL_000580; -#endif - -#define dobject_reeba_DL_000760 "__OTR__objects/object_reeba/object_reeba_DL_000760" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000760[] = dobject_reeba_DL_000760; -#else -static const char object_reeba_DL_000760[] __attribute__((aligned (2))) = dobject_reeba_DL_000760; -#endif - -#define dobject_reeba_DL_0007F8 "__OTR__objects/object_reeba/object_reeba_DL_0007F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_0007F8[] = dobject_reeba_DL_0007F8; -#else -static const char object_reeba_DL_0007F8[] __attribute__((aligned (2))) = dobject_reeba_DL_0007F8; -#endif - -#define dobject_reeba_DL_000808 "__OTR__objects/object_reeba/object_reeba_DL_000808" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000808[] = dobject_reeba_DL_000808; -#else -static const char object_reeba_DL_000808[] __attribute__((aligned (2))) = dobject_reeba_DL_000808; -#endif - -#define dobject_reeba_DL_0008B8 "__OTR__objects/object_reeba/object_reeba_DL_0008B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_0008B8[] = dobject_reeba_DL_0008B8; -#else -static const char object_reeba_DL_0008B8[] __attribute__((aligned (2))) = dobject_reeba_DL_0008B8; -#endif - -#define dobject_reeba_DL_000950 "__OTR__objects/object_reeba/object_reeba_DL_000950" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000950[] = dobject_reeba_DL_000950; -#else -static const char object_reeba_DL_000950[] __attribute__((aligned (2))) = dobject_reeba_DL_000950; -#endif - -#define dobject_reeba_DL_000960 "__OTR__objects/object_reeba/object_reeba_DL_000960" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000960[] = dobject_reeba_DL_000960; -#else -static const char object_reeba_DL_000960[] __attribute__((aligned (2))) = dobject_reeba_DL_000960; -#endif - -#define dobject_reeba_DL_000A10 "__OTR__objects/object_reeba/object_reeba_DL_000A10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000A10[] = dobject_reeba_DL_000A10; -#else -static const char object_reeba_DL_000A10[] __attribute__((aligned (2))) = dobject_reeba_DL_000A10; -#endif - -#define dobject_reeba_DL_000AB0 "__OTR__objects/object_reeba/object_reeba_DL_000AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000AB0[] = dobject_reeba_DL_000AB0; -#else -static const char object_reeba_DL_000AB0[] __attribute__((aligned (2))) = dobject_reeba_DL_000AB0; -#endif - -#define dobject_reeba_DL_000AC0 "__OTR__objects/object_reeba/object_reeba_DL_000AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000AC0[] = dobject_reeba_DL_000AC0; -#else -static const char object_reeba_DL_000AC0[] __attribute__((aligned (2))) = dobject_reeba_DL_000AC0; -#endif - -#define dobject_reeba_DL_000B80 "__OTR__objects/object_reeba/object_reeba_DL_000B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000B80[] = dobject_reeba_DL_000B80; -#else -static const char object_reeba_DL_000B80[] __attribute__((aligned (2))) = dobject_reeba_DL_000B80; -#endif - -#define dobject_reeba_DL_000C18 "__OTR__objects/object_reeba/object_reeba_DL_000C18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000C18[] = dobject_reeba_DL_000C18; -#else -static const char object_reeba_DL_000C18[] __attribute__((aligned (2))) = dobject_reeba_DL_000C18; -#endif - -#define dobject_reeba_DL_000C28 "__OTR__objects/object_reeba/object_reeba_DL_000C28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_DL_000C28[] = dobject_reeba_DL_000C28; -#else -static const char object_reeba_DL_000C28[] __attribute__((aligned (2))) = dobject_reeba_DL_000C28; -#endif - -#define dobject_reeba_Tex_000CD8 "__OTR__objects/object_reeba/object_reeba_Tex_000CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_Tex_000CD8[] = dobject_reeba_Tex_000CD8; -#else -static const char object_reeba_Tex_000CD8[] __attribute__((aligned (2))) = dobject_reeba_Tex_000CD8; -#endif - -#define dobject_reeba_Tex_000DD8 "__OTR__objects/object_reeba/object_reeba_Tex_000DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_Tex_000DD8[] = dobject_reeba_Tex_000DD8; -#else -static const char object_reeba_Tex_000DD8[] __attribute__((aligned (2))) = dobject_reeba_Tex_000DD8; -#endif - -#define dobject_reeba_Tex_0015D8 "__OTR__objects/object_reeba/object_reeba_Tex_0015D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_Tex_0015D8[] = dobject_reeba_Tex_0015D8; -#else -static const char object_reeba_Tex_0015D8[] __attribute__((aligned (2))) = dobject_reeba_Tex_0015D8; -#endif - -#define dobject_reeba_Skel_001EE8 "__OTR__objects/object_reeba/object_reeba_Skel_001EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_reeba_Skel_001EE8[] = dobject_reeba_Skel_001EE8; -#else -static const char object_reeba_Skel_001EE8[] __attribute__((aligned (2))) = dobject_reeba_Skel_001EE8; -#endif - +#include "align_asset_macro.h" + +#define dobject_reeba_Anim_0001E4 "__OTR__objects/object_reeba/object_reeba_Anim_0001E4" +static const ALIGN_ASSET(2) char object_reeba_Anim_0001E4[] = dobject_reeba_Anim_0001E4; + +#define dobject_reeba_DL_000200 "__OTR__objects/object_reeba/object_reeba_DL_000200" +static const ALIGN_ASSET(2) char object_reeba_DL_000200[] = dobject_reeba_DL_000200; + +#define dobject_reeba_DL_0002D0 "__OTR__objects/object_reeba/object_reeba_DL_0002D0" +static const ALIGN_ASSET(2) char object_reeba_DL_0002D0[] = dobject_reeba_DL_0002D0; + +#define dobject_reeba_DL_0002E0 "__OTR__objects/object_reeba/object_reeba_DL_0002E0" +static const ALIGN_ASSET(2) char object_reeba_DL_0002E0[] = dobject_reeba_DL_0002E0; + +#define dobject_reeba_DL_000430 "__OTR__objects/object_reeba/object_reeba_DL_000430" +static const ALIGN_ASSET(2) char object_reeba_DL_000430[] = dobject_reeba_DL_000430; + +#define dobject_reeba_DL_000570 "__OTR__objects/object_reeba/object_reeba_DL_000570" +static const ALIGN_ASSET(2) char object_reeba_DL_000570[] = dobject_reeba_DL_000570; + +#define dobject_reeba_DL_000580 "__OTR__objects/object_reeba/object_reeba_DL_000580" +static const ALIGN_ASSET(2) char object_reeba_DL_000580[] = dobject_reeba_DL_000580; + +#define dobject_reeba_DL_000760 "__OTR__objects/object_reeba/object_reeba_DL_000760" +static const ALIGN_ASSET(2) char object_reeba_DL_000760[] = dobject_reeba_DL_000760; + +#define dobject_reeba_DL_0007F8 "__OTR__objects/object_reeba/object_reeba_DL_0007F8" +static const ALIGN_ASSET(2) char object_reeba_DL_0007F8[] = dobject_reeba_DL_0007F8; + +#define dobject_reeba_DL_000808 "__OTR__objects/object_reeba/object_reeba_DL_000808" +static const ALIGN_ASSET(2) char object_reeba_DL_000808[] = dobject_reeba_DL_000808; + +#define dobject_reeba_DL_0008B8 "__OTR__objects/object_reeba/object_reeba_DL_0008B8" +static const ALIGN_ASSET(2) char object_reeba_DL_0008B8[] = dobject_reeba_DL_0008B8; + +#define dobject_reeba_DL_000950 "__OTR__objects/object_reeba/object_reeba_DL_000950" +static const ALIGN_ASSET(2) char object_reeba_DL_000950[] = dobject_reeba_DL_000950; + +#define dobject_reeba_DL_000960 "__OTR__objects/object_reeba/object_reeba_DL_000960" +static const ALIGN_ASSET(2) char object_reeba_DL_000960[] = dobject_reeba_DL_000960; + +#define dobject_reeba_DL_000A10 "__OTR__objects/object_reeba/object_reeba_DL_000A10" +static const ALIGN_ASSET(2) char object_reeba_DL_000A10[] = dobject_reeba_DL_000A10; + +#define dobject_reeba_DL_000AB0 "__OTR__objects/object_reeba/object_reeba_DL_000AB0" +static const ALIGN_ASSET(2) char object_reeba_DL_000AB0[] = dobject_reeba_DL_000AB0; + +#define dobject_reeba_DL_000AC0 "__OTR__objects/object_reeba/object_reeba_DL_000AC0" +static const ALIGN_ASSET(2) char object_reeba_DL_000AC0[] = dobject_reeba_DL_000AC0; + +#define dobject_reeba_DL_000B80 "__OTR__objects/object_reeba/object_reeba_DL_000B80" +static const ALIGN_ASSET(2) char object_reeba_DL_000B80[] = dobject_reeba_DL_000B80; + +#define dobject_reeba_DL_000C18 "__OTR__objects/object_reeba/object_reeba_DL_000C18" +static const ALIGN_ASSET(2) char object_reeba_DL_000C18[] = dobject_reeba_DL_000C18; + +#define dobject_reeba_DL_000C28 "__OTR__objects/object_reeba/object_reeba_DL_000C28" +static const ALIGN_ASSET(2) char object_reeba_DL_000C28[] = dobject_reeba_DL_000C28; + +#define dobject_reeba_Tex_000CD8 "__OTR__objects/object_reeba/object_reeba_Tex_000CD8" +static const ALIGN_ASSET(2) char object_reeba_Tex_000CD8[] = dobject_reeba_Tex_000CD8; + +#define dobject_reeba_Tex_000DD8 "__OTR__objects/object_reeba/object_reeba_Tex_000DD8" +static const ALIGN_ASSET(2) char object_reeba_Tex_000DD8[] = dobject_reeba_Tex_000DD8; + +#define dobject_reeba_Tex_0015D8 "__OTR__objects/object_reeba/object_reeba_Tex_0015D8" +static const ALIGN_ASSET(2) char object_reeba_Tex_0015D8[] = dobject_reeba_Tex_0015D8; + +#define dobject_reeba_Skel_001EE8 "__OTR__objects/object_reeba/object_reeba_Skel_001EE8" +static const ALIGN_ASSET(2) char object_reeba_Skel_001EE8[] = dobject_reeba_Skel_001EE8; \ No newline at end of file diff --git a/soh/assets/objects/object_relay_objects/object_relay_objects.h b/soh/assets/objects/object_relay_objects/object_relay_objects.h index 26f30d0b1..6bb5594d8 100644 --- a/soh/assets/objects/object_relay_objects/object_relay_objects.h +++ b/soh/assets/objects/object_relay_objects/object_relay_objects.h @@ -1,58 +1,27 @@ #pragma once -#define dgDampeRaceDoorDL "__OTR__objects/object_relay_objects/gDampeRaceDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeRaceDoorDL[] = dgDampeRaceDoorDL; -#else -static const char gDampeRaceDoorDL[] __attribute__((aligned (2))) = dgDampeRaceDoorDL; -#endif - -#define dgWindmillRotatingPlatformDL "__OTR__objects/object_relay_objects/gWindmillRotatingPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillRotatingPlatformDL[] = dgWindmillRotatingPlatformDL; -#else -static const char gWindmillRotatingPlatformDL[] __attribute__((aligned (2))) = dgWindmillRotatingPlatformDL; -#endif - -#define dgWindmillRotatingPlatformTLUT "__OTR__objects/object_relay_objects/gWindmillRotatingPlatformTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillRotatingPlatformTLUT[] = dgWindmillRotatingPlatformTLUT; -#else -static const char gWindmillRotatingPlatformTLUT[] __attribute__((aligned (2))) = dgWindmillRotatingPlatformTLUT; -#endif - -#define dgWindmillRotatingPlatform1Tex "__OTR__objects/object_relay_objects/gWindmillRotatingPlatform1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillRotatingPlatform1Tex[] = dgWindmillRotatingPlatform1Tex; -#else -static const char gWindmillRotatingPlatform1Tex[] __attribute__((aligned (2))) = dgWindmillRotatingPlatform1Tex; -#endif - -#define dgWindmillRotatingPlatform2Tex "__OTR__objects/object_relay_objects/gWindmillRotatingPlatform2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillRotatingPlatform2Tex[] = dgWindmillRotatingPlatform2Tex; -#else -static const char gWindmillRotatingPlatform2Tex[] __attribute__((aligned (2))) = dgWindmillRotatingPlatform2Tex; -#endif - -#define dgDampeRaceDoorTex "__OTR__objects/object_relay_objects/gDampeRaceDoorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeRaceDoorTex[] = dgDampeRaceDoorTex; -#else -static const char gDampeRaceDoorTex[] __attribute__((aligned (2))) = dgDampeRaceDoorTex; -#endif - -#define dgDampeRaceDoorCol "__OTR__objects/object_relay_objects/gDampeRaceDoorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeRaceDoorCol[] = dgDampeRaceDoorCol; -#else -static const char gDampeRaceDoorCol[] __attribute__((aligned (2))) = dgDampeRaceDoorCol; -#endif - -#define dgWindmillRotatingPlatformCol "__OTR__objects/object_relay_objects/gWindmillRotatingPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gWindmillRotatingPlatformCol[] = dgWindmillRotatingPlatformCol; -#else -static const char gWindmillRotatingPlatformCol[] __attribute__((aligned (2))) = dgWindmillRotatingPlatformCol; -#endif - +#include "align_asset_macro.h" + +#define dgDampeRaceDoorDL "__OTR__objects/object_relay_objects/gDampeRaceDoorDL" +static const ALIGN_ASSET(2) char gDampeRaceDoorDL[] = dgDampeRaceDoorDL; + +#define dgWindmillRotatingPlatformDL "__OTR__objects/object_relay_objects/gWindmillRotatingPlatformDL" +static const ALIGN_ASSET(2) char gWindmillRotatingPlatformDL[] = dgWindmillRotatingPlatformDL; + +#define dgWindmillRotatingPlatformTLUT "__OTR__objects/object_relay_objects/gWindmillRotatingPlatformTLUT" +static const ALIGN_ASSET(2) char gWindmillRotatingPlatformTLUT[] = dgWindmillRotatingPlatformTLUT; + +#define dgWindmillRotatingPlatform1Tex "__OTR__objects/object_relay_objects/gWindmillRotatingPlatform1Tex" +static const ALIGN_ASSET(2) char gWindmillRotatingPlatform1Tex[] = dgWindmillRotatingPlatform1Tex; + +#define dgWindmillRotatingPlatform2Tex "__OTR__objects/object_relay_objects/gWindmillRotatingPlatform2Tex" +static const ALIGN_ASSET(2) char gWindmillRotatingPlatform2Tex[] = dgWindmillRotatingPlatform2Tex; + +#define dgDampeRaceDoorTex "__OTR__objects/object_relay_objects/gDampeRaceDoorTex" +static const ALIGN_ASSET(2) char gDampeRaceDoorTex[] = dgDampeRaceDoorTex; + +#define dgDampeRaceDoorCol "__OTR__objects/object_relay_objects/gDampeRaceDoorCol" +static const ALIGN_ASSET(2) char gDampeRaceDoorCol[] = dgDampeRaceDoorCol; + +#define dgWindmillRotatingPlatformCol "__OTR__objects/object_relay_objects/gWindmillRotatingPlatformCol" +static const ALIGN_ASSET(2) char gWindmillRotatingPlatformCol[] = dgWindmillRotatingPlatformCol; \ No newline at end of file diff --git a/soh/assets/objects/object_rl/object_rl.h b/soh/assets/objects/object_rl/object_rl.h index a4d19503a..ceaf4a949 100644 --- a/soh/assets/objects/object_rl/object_rl.h +++ b/soh/assets/objects/object_rl/object_rl.h @@ -1,247 +1,108 @@ #pragma once -#define dobject_rl_Anim_00040C "__OTR__objects/object_rl/object_rl_Anim_00040C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Anim_00040C[] = dobject_rl_Anim_00040C; -#else -static const char object_rl_Anim_00040C[] __attribute__((aligned (2))) = dobject_rl_Anim_00040C; -#endif - -#define dobject_rl_Anim_000830 "__OTR__objects/object_rl/object_rl_Anim_000830" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Anim_000830[] = dobject_rl_Anim_000830; -#else -static const char object_rl_Anim_000830[] __attribute__((aligned (2))) = dobject_rl_Anim_000830; -#endif - -#define dobject_rl_Anim_000A3C "__OTR__objects/object_rl/object_rl_Anim_000A3C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Anim_000A3C[] = dobject_rl_Anim_000A3C; -#else -static const char object_rl_Anim_000A3C[] __attribute__((aligned (2))) = dobject_rl_Anim_000A3C; -#endif - -#define dobject_rl_DL_002230 "__OTR__objects/object_rl/object_rl_DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_002230[] = dobject_rl_DL_002230; -#else -static const char object_rl_DL_002230[] __attribute__((aligned (2))) = dobject_rl_DL_002230; -#endif - -#define dobject_rl_DL_0023D8 "__OTR__objects/object_rl/object_rl_DL_0023D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_0023D8[] = dobject_rl_DL_0023D8; -#else -static const char object_rl_DL_0023D8[] __attribute__((aligned (2))) = dobject_rl_DL_0023D8; -#endif - -#define dobject_rl_DL_0029A0 "__OTR__objects/object_rl/object_rl_DL_0029A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_0029A0[] = dobject_rl_DL_0029A0; -#else -static const char object_rl_DL_0029A0[] __attribute__((aligned (2))) = dobject_rl_DL_0029A0; -#endif - -#define dobject_rl_DL_002AA0 "__OTR__objects/object_rl/object_rl_DL_002AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_002AA0[] = dobject_rl_DL_002AA0; -#else -static const char object_rl_DL_002AA0[] __attribute__((aligned (2))) = dobject_rl_DL_002AA0; -#endif - -#define dobject_rl_DL_002BD8 "__OTR__objects/object_rl/object_rl_DL_002BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_002BD8[] = dobject_rl_DL_002BD8; -#else -static const char object_rl_DL_002BD8[] __attribute__((aligned (2))) = dobject_rl_DL_002BD8; -#endif - -#define dobject_rl_DL_002E20 "__OTR__objects/object_rl/object_rl_DL_002E20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_002E20[] = dobject_rl_DL_002E20; -#else -static const char object_rl_DL_002E20[] __attribute__((aligned (2))) = dobject_rl_DL_002E20; -#endif - -#define dobject_rl_DL_002F20 "__OTR__objects/object_rl/object_rl_DL_002F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_002F20[] = dobject_rl_DL_002F20; -#else -static const char object_rl_DL_002F20[] __attribute__((aligned (2))) = dobject_rl_DL_002F20; -#endif - -#define dobject_rl_DL_003058 "__OTR__objects/object_rl/object_rl_DL_003058" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_003058[] = dobject_rl_DL_003058; -#else -static const char object_rl_DL_003058[] __attribute__((aligned (2))) = dobject_rl_DL_003058; -#endif - -#define dobject_rl_TLUT_0032A0 "__OTR__objects/object_rl/object_rl_TLUT_0032A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_TLUT_0032A0[] = dobject_rl_TLUT_0032A0; -#else -static const char object_rl_TLUT_0032A0[] __attribute__((aligned (2))) = dobject_rl_TLUT_0032A0; -#endif - -#define dobject_rl_Tex_003520 "__OTR__objects/object_rl/object_rl_Tex_003520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_003520[] = dobject_rl_Tex_003520; -#else -static const char object_rl_Tex_003520[] __attribute__((aligned (2))) = dobject_rl_Tex_003520; -#endif - -#define dobject_rl_Tex_003620 "__OTR__objects/object_rl/object_rl_Tex_003620" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_003620[] = dobject_rl_Tex_003620; -#else -static const char object_rl_Tex_003620[] __attribute__((aligned (2))) = dobject_rl_Tex_003620; -#endif - -#define dobject_rl_Tex_003820 "__OTR__objects/object_rl/object_rl_Tex_003820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_003820[] = dobject_rl_Tex_003820; -#else -static const char object_rl_Tex_003820[] __attribute__((aligned (2))) = dobject_rl_Tex_003820; -#endif - -#define dobject_rl_Tex_003920 "__OTR__objects/object_rl/object_rl_Tex_003920" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_003920[] = dobject_rl_Tex_003920; -#else -static const char object_rl_Tex_003920[] __attribute__((aligned (2))) = dobject_rl_Tex_003920; -#endif - -#define dobject_rl_Tex_003960 "__OTR__objects/object_rl/object_rl_Tex_003960" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_003960[] = dobject_rl_Tex_003960; -#else -static const char object_rl_Tex_003960[] __attribute__((aligned (2))) = dobject_rl_Tex_003960; -#endif - -#define dobject_rl_Tex_003B60 "__OTR__objects/object_rl/object_rl_Tex_003B60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_003B60[] = dobject_rl_Tex_003B60; -#else -static const char object_rl_Tex_003B60[] __attribute__((aligned (2))) = dobject_rl_Tex_003B60; -#endif - -#define dobject_rl_Tex_003D60 "__OTR__objects/object_rl/object_rl_Tex_003D60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_003D60[] = dobject_rl_Tex_003D60; -#else -static const char object_rl_Tex_003D60[] __attribute__((aligned (2))) = dobject_rl_Tex_003D60; -#endif - -#define dobject_rl_Tex_003DA0 "__OTR__objects/object_rl/object_rl_Tex_003DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_003DA0[] = dobject_rl_Tex_003DA0; -#else -static const char object_rl_Tex_003DA0[] __attribute__((aligned (2))) = dobject_rl_Tex_003DA0; -#endif - -#define dobject_rl_DL_005220 "__OTR__objects/object_rl/object_rl_DL_005220" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_DL_005220[] = dobject_rl_DL_005220; -#else -static const char object_rl_DL_005220[] __attribute__((aligned (2))) = dobject_rl_DL_005220; -#endif - -#define dobject_rl_TLUT_006318 "__OTR__objects/object_rl/object_rl_TLUT_006318" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_TLUT_006318[] = dobject_rl_TLUT_006318; -#else -static const char object_rl_TLUT_006318[] __attribute__((aligned (2))) = dobject_rl_TLUT_006318; -#endif - -#define dobject_rl_Tex_006518 "__OTR__objects/object_rl/object_rl_Tex_006518" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_006518[] = dobject_rl_Tex_006518; -#else -static const char object_rl_Tex_006518[] __attribute__((aligned (2))) = dobject_rl_Tex_006518; -#endif - -#define dobject_rl_Tex_006618 "__OTR__objects/object_rl/object_rl_Tex_006618" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_006618[] = dobject_rl_Tex_006618; -#else -static const char object_rl_Tex_006618[] __attribute__((aligned (2))) = dobject_rl_Tex_006618; -#endif - -#define dobject_rl_Tex_006658 "__OTR__objects/object_rl/object_rl_Tex_006658" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_006658[] = dobject_rl_Tex_006658; -#else -static const char object_rl_Tex_006658[] __attribute__((aligned (2))) = dobject_rl_Tex_006658; -#endif - -#define dobject_rl_Blob_006758 "__OTR__objects/object_rl/object_rl_Blob_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Blob_006758[] = dobject_rl_Blob_006758; -#else -static const char object_rl_Blob_006758[] __attribute__((aligned (2))) = dobject_rl_Blob_006758; -#endif - -#define dobject_rl_Tex_006798 "__OTR__objects/object_rl/object_rl_Tex_006798" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_006798[] = dobject_rl_Tex_006798; -#else -static const char object_rl_Tex_006798[] __attribute__((aligned (2))) = dobject_rl_Tex_006798; -#endif - -#define dobject_rl_Tex_006B98 "__OTR__objects/object_rl/object_rl_Tex_006B98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_006B98[] = dobject_rl_Tex_006B98; -#else -static const char object_rl_Tex_006B98[] __attribute__((aligned (2))) = dobject_rl_Tex_006B98; -#endif - -#define dobject_rl_Tex_006F98 "__OTR__objects/object_rl/object_rl_Tex_006F98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_006F98[] = dobject_rl_Tex_006F98; -#else -static const char object_rl_Tex_006F98[] __attribute__((aligned (2))) = dobject_rl_Tex_006F98; -#endif - -#define dobject_rl_Tex_007198 "__OTR__objects/object_rl/object_rl_Tex_007198" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_007198[] = dobject_rl_Tex_007198; -#else -static const char object_rl_Tex_007198[] __attribute__((aligned (2))) = dobject_rl_Tex_007198; -#endif - -#define dobject_rl_Tex_007598 "__OTR__objects/object_rl/object_rl_Tex_007598" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_007598[] = dobject_rl_Tex_007598; -#else -static const char object_rl_Tex_007598[] __attribute__((aligned (2))) = dobject_rl_Tex_007598; -#endif - -#define dobject_rl_Tex_007998 "__OTR__objects/object_rl/object_rl_Tex_007998" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Tex_007998[] = dobject_rl_Tex_007998; -#else -static const char object_rl_Tex_007998[] __attribute__((aligned (2))) = dobject_rl_Tex_007998; -#endif - -#define dobject_rl_Skel_007B38 "__OTR__objects/object_rl/object_rl_Skel_007B38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rl_Skel_007B38[] = dobject_rl_Skel_007B38; -#else -static const char object_rl_Skel_007B38[] __attribute__((aligned (2))) = dobject_rl_Skel_007B38; -#endif - -#define dobject_rlTex_0033E0 "__OTR__objects/object_rl/object_rlTex_0033E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rlTex_0033E0[] = dobject_rlTex_0033E0; -#else -static const char object_rlTex_0033E0[] __attribute__((aligned (2))) = dobject_rlTex_0033E0; -#endif - -#define dobject_rlTex_003420 "__OTR__objects/object_rl/object_rlTex_003420" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rlTex_003420[] = dobject_rlTex_003420; -#else -static const char object_rlTex_003420[] __attribute__((aligned (2))) = dobject_rlTex_003420; -#endif - +#include "align_asset_macro.h" + +#define dobject_rl_Anim_00040C "__OTR__objects/object_rl/object_rl_Anim_00040C" +static const ALIGN_ASSET(2) char object_rl_Anim_00040C[] = dobject_rl_Anim_00040C; + +#define dobject_rl_Anim_000830 "__OTR__objects/object_rl/object_rl_Anim_000830" +static const ALIGN_ASSET(2) char object_rl_Anim_000830[] = dobject_rl_Anim_000830; + +#define dobject_rl_Anim_000A3C "__OTR__objects/object_rl/object_rl_Anim_000A3C" +static const ALIGN_ASSET(2) char object_rl_Anim_000A3C[] = dobject_rl_Anim_000A3C; + +#define dobject_rl_DL_002230 "__OTR__objects/object_rl/object_rl_DL_002230" +static const ALIGN_ASSET(2) char object_rl_DL_002230[] = dobject_rl_DL_002230; + +#define dobject_rl_DL_0023D8 "__OTR__objects/object_rl/object_rl_DL_0023D8" +static const ALIGN_ASSET(2) char object_rl_DL_0023D8[] = dobject_rl_DL_0023D8; + +#define dobject_rl_DL_0029A0 "__OTR__objects/object_rl/object_rl_DL_0029A0" +static const ALIGN_ASSET(2) char object_rl_DL_0029A0[] = dobject_rl_DL_0029A0; + +#define dobject_rl_DL_002AA0 "__OTR__objects/object_rl/object_rl_DL_002AA0" +static const ALIGN_ASSET(2) char object_rl_DL_002AA0[] = dobject_rl_DL_002AA0; + +#define dobject_rl_DL_002BD8 "__OTR__objects/object_rl/object_rl_DL_002BD8" +static const ALIGN_ASSET(2) char object_rl_DL_002BD8[] = dobject_rl_DL_002BD8; + +#define dobject_rl_DL_002E20 "__OTR__objects/object_rl/object_rl_DL_002E20" +static const ALIGN_ASSET(2) char object_rl_DL_002E20[] = dobject_rl_DL_002E20; + +#define dobject_rl_DL_002F20 "__OTR__objects/object_rl/object_rl_DL_002F20" +static const ALIGN_ASSET(2) char object_rl_DL_002F20[] = dobject_rl_DL_002F20; + +#define dobject_rl_DL_003058 "__OTR__objects/object_rl/object_rl_DL_003058" +static const ALIGN_ASSET(2) char object_rl_DL_003058[] = dobject_rl_DL_003058; + +#define dobject_rl_TLUT_0032A0 "__OTR__objects/object_rl/object_rl_TLUT_0032A0" +static const ALIGN_ASSET(2) char object_rl_TLUT_0032A0[] = dobject_rl_TLUT_0032A0; + +#define dobject_rl_Tex_003520 "__OTR__objects/object_rl/object_rl_Tex_003520" +static const ALIGN_ASSET(2) char object_rl_Tex_003520[] = dobject_rl_Tex_003520; + +#define dobject_rl_Tex_003620 "__OTR__objects/object_rl/object_rl_Tex_003620" +static const ALIGN_ASSET(2) char object_rl_Tex_003620[] = dobject_rl_Tex_003620; + +#define dobject_rl_Tex_003820 "__OTR__objects/object_rl/object_rl_Tex_003820" +static const ALIGN_ASSET(2) char object_rl_Tex_003820[] = dobject_rl_Tex_003820; + +#define dobject_rl_Tex_003920 "__OTR__objects/object_rl/object_rl_Tex_003920" +static const ALIGN_ASSET(2) char object_rl_Tex_003920[] = dobject_rl_Tex_003920; + +#define dobject_rl_Tex_003960 "__OTR__objects/object_rl/object_rl_Tex_003960" +static const ALIGN_ASSET(2) char object_rl_Tex_003960[] = dobject_rl_Tex_003960; + +#define dobject_rl_Tex_003B60 "__OTR__objects/object_rl/object_rl_Tex_003B60" +static const ALIGN_ASSET(2) char object_rl_Tex_003B60[] = dobject_rl_Tex_003B60; + +#define dobject_rl_Tex_003D60 "__OTR__objects/object_rl/object_rl_Tex_003D60" +static const ALIGN_ASSET(2) char object_rl_Tex_003D60[] = dobject_rl_Tex_003D60; + +#define dobject_rl_Tex_003DA0 "__OTR__objects/object_rl/object_rl_Tex_003DA0" +static const ALIGN_ASSET(2) char object_rl_Tex_003DA0[] = dobject_rl_Tex_003DA0; + +#define dobject_rl_DL_005220 "__OTR__objects/object_rl/object_rl_DL_005220" +static const ALIGN_ASSET(2) char object_rl_DL_005220[] = dobject_rl_DL_005220; + +#define dobject_rl_TLUT_006318 "__OTR__objects/object_rl/object_rl_TLUT_006318" +static const ALIGN_ASSET(2) char object_rl_TLUT_006318[] = dobject_rl_TLUT_006318; + +#define dobject_rl_Tex_006518 "__OTR__objects/object_rl/object_rl_Tex_006518" +static const ALIGN_ASSET(2) char object_rl_Tex_006518[] = dobject_rl_Tex_006518; + +#define dobject_rl_Tex_006618 "__OTR__objects/object_rl/object_rl_Tex_006618" +static const ALIGN_ASSET(2) char object_rl_Tex_006618[] = dobject_rl_Tex_006618; + +#define dobject_rl_Tex_006658 "__OTR__objects/object_rl/object_rl_Tex_006658" +static const ALIGN_ASSET(2) char object_rl_Tex_006658[] = dobject_rl_Tex_006658; + +#define dobject_rl_Blob_006758 "__OTR__objects/object_rl/object_rl_Blob_006758" +static const ALIGN_ASSET(2) char object_rl_Blob_006758[] = dobject_rl_Blob_006758; + +#define dobject_rl_Tex_006798 "__OTR__objects/object_rl/object_rl_Tex_006798" +static const ALIGN_ASSET(2) char object_rl_Tex_006798[] = dobject_rl_Tex_006798; + +#define dobject_rl_Tex_006B98 "__OTR__objects/object_rl/object_rl_Tex_006B98" +static const ALIGN_ASSET(2) char object_rl_Tex_006B98[] = dobject_rl_Tex_006B98; + +#define dobject_rl_Tex_006F98 "__OTR__objects/object_rl/object_rl_Tex_006F98" +static const ALIGN_ASSET(2) char object_rl_Tex_006F98[] = dobject_rl_Tex_006F98; + +#define dobject_rl_Tex_007198 "__OTR__objects/object_rl/object_rl_Tex_007198" +static const ALIGN_ASSET(2) char object_rl_Tex_007198[] = dobject_rl_Tex_007198; + +#define dobject_rl_Tex_007598 "__OTR__objects/object_rl/object_rl_Tex_007598" +static const ALIGN_ASSET(2) char object_rl_Tex_007598[] = dobject_rl_Tex_007598; + +#define dobject_rl_Tex_007998 "__OTR__objects/object_rl/object_rl_Tex_007998" +static const ALIGN_ASSET(2) char object_rl_Tex_007998[] = dobject_rl_Tex_007998; + +#define dobject_rl_Skel_007B38 "__OTR__objects/object_rl/object_rl_Skel_007B38" +static const ALIGN_ASSET(2) char object_rl_Skel_007B38[] = dobject_rl_Skel_007B38; + +#define dobject_rlTex_0033E0 "__OTR__objects/object_rl/object_rlTex_0033E0" +static const ALIGN_ASSET(2) char object_rlTex_0033E0[] = dobject_rlTex_0033E0; + +#define dobject_rlTex_003420 "__OTR__objects/object_rl/object_rlTex_003420" +static const ALIGN_ASSET(2) char object_rlTex_003420[] = dobject_rlTex_003420; \ No newline at end of file diff --git a/soh/assets/objects/object_rr/object_rr.h b/soh/assets/objects/object_rr/object_rr.h index e135a0adb..664274bde 100644 --- a/soh/assets/objects/object_rr/object_rr.h +++ b/soh/assets/objects/object_rr/object_rr.h @@ -1,30 +1,15 @@ #pragma once -#define dgLikeLikeDL "__OTR__objects/object_rr/gLikeLikeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLikeLikeDL[] = dgLikeLikeDL; -#else -static const char gLikeLikeDL[] __attribute__((aligned (2))) = dgLikeLikeDL; -#endif - -#define dgLikeLikeBodyPattern1Tex "__OTR__objects/object_rr/gLikeLikeBodyPattern1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLikeLikeBodyPattern1Tex[] = dgLikeLikeBodyPattern1Tex; -#else -static const char gLikeLikeBodyPattern1Tex[] __attribute__((aligned (2))) = dgLikeLikeBodyPattern1Tex; -#endif - -#define dgLikeLikeBodyPattern2Tex "__OTR__objects/object_rr/gLikeLikeBodyPattern2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLikeLikeBodyPattern2Tex[] = dgLikeLikeBodyPattern2Tex; -#else -static const char gLikeLikeBodyPattern2Tex[] __attribute__((aligned (2))) = dgLikeLikeBodyPattern2Tex; -#endif - -#define dgLikeLikeHoleTex "__OTR__objects/object_rr/gLikeLikeHoleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLikeLikeHoleTex[] = dgLikeLikeHoleTex; -#else -static const char gLikeLikeHoleTex[] __attribute__((aligned (2))) = dgLikeLikeHoleTex; -#endif - +#include "align_asset_macro.h" + +#define dgLikeLikeDL "__OTR__objects/object_rr/gLikeLikeDL" +static const ALIGN_ASSET(2) char gLikeLikeDL[] = dgLikeLikeDL; + +#define dgLikeLikeBodyPattern1Tex "__OTR__objects/object_rr/gLikeLikeBodyPattern1Tex" +static const ALIGN_ASSET(2) char gLikeLikeBodyPattern1Tex[] = dgLikeLikeBodyPattern1Tex; + +#define dgLikeLikeBodyPattern2Tex "__OTR__objects/object_rr/gLikeLikeBodyPattern2Tex" +static const ALIGN_ASSET(2) char gLikeLikeBodyPattern2Tex[] = dgLikeLikeBodyPattern2Tex; + +#define dgLikeLikeHoleTex "__OTR__objects/object_rr/gLikeLikeHoleTex" +static const ALIGN_ASSET(2) char gLikeLikeHoleTex[] = dgLikeLikeHoleTex; \ No newline at end of file diff --git a/soh/assets/objects/object_rs/object_rs.h b/soh/assets/objects/object_rs/object_rs.h index 39c4e2e2e..23c7b03cb 100644 --- a/soh/assets/objects/object_rs/object_rs.h +++ b/soh/assets/objects/object_rs/object_rs.h @@ -1,142 +1,63 @@ #pragma once -#define dobject_rs_Anim_00065C "__OTR__objects/object_rs/object_rs_Anim_00065C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_Anim_00065C[] = dobject_rs_Anim_00065C; -#else -static const char object_rs_Anim_00065C[] __attribute__((aligned (2))) = dobject_rs_Anim_00065C; -#endif - -#define dobject_rs_DL_001FA0 "__OTR__objects/object_rs/object_rs_DL_001FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_DL_001FA0[] = dobject_rs_DL_001FA0; -#else -static const char object_rs_DL_001FA0[] __attribute__((aligned (2))) = dobject_rs_DL_001FA0; -#endif - -#define dobject_rs_DL_0021F8 "__OTR__objects/object_rs/object_rs_DL_0021F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_DL_0021F8[] = dobject_rs_DL_0021F8; -#else -static const char object_rs_DL_0021F8[] __attribute__((aligned (2))) = dobject_rs_DL_0021F8; -#endif - -#define dobject_rs_DL_0025F8 "__OTR__objects/object_rs/object_rs_DL_0025F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_DL_0025F8[] = dobject_rs_DL_0025F8; -#else -static const char object_rs_DL_0025F8[] __attribute__((aligned (2))) = dobject_rs_DL_0025F8; -#endif - -#define dobject_rs_DL_002730 "__OTR__objects/object_rs/object_rs_DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_DL_002730[] = dobject_rs_DL_002730; -#else -static const char object_rs_DL_002730[] __attribute__((aligned (2))) = dobject_rs_DL_002730; -#endif - -#define dobject_rs_DL_002860 "__OTR__objects/object_rs/object_rs_DL_002860" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_DL_002860[] = dobject_rs_DL_002860; -#else -static const char object_rs_DL_002860[] __attribute__((aligned (2))) = dobject_rs_DL_002860; -#endif - -#define dobject_rs_DL_002A70 "__OTR__objects/object_rs/object_rs_DL_002A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_DL_002A70[] = dobject_rs_DL_002A70; -#else -static const char object_rs_DL_002A70[] __attribute__((aligned (2))) = dobject_rs_DL_002A70; -#endif - -#define dobject_rs_DL_002BA8 "__OTR__objects/object_rs/object_rs_DL_002BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_DL_002BA8[] = dobject_rs_DL_002BA8; -#else -static const char object_rs_DL_002BA8[] __attribute__((aligned (2))) = dobject_rs_DL_002BA8; -#endif - -#define dobject_rs_DL_002CD8 "__OTR__objects/object_rs/object_rs_DL_002CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_DL_002CD8[] = dobject_rs_DL_002CD8; -#else -static const char object_rs_DL_002CD8[] __attribute__((aligned (2))) = dobject_rs_DL_002CD8; -#endif - -#define dobject_rs_TLUT_002EE8 "__OTR__objects/object_rs/object_rs_TLUT_002EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_TLUT_002EE8[] = dobject_rs_TLUT_002EE8; -#else -static const char object_rs_TLUT_002EE8[] __attribute__((aligned (2))) = dobject_rs_TLUT_002EE8; -#endif - -#define dobject_rs_Tex_0030E8 "__OTR__objects/object_rs/object_rs_Tex_0030E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_Tex_0030E8[] = dobject_rs_Tex_0030E8; -#else -static const char object_rs_Tex_0030E8[] __attribute__((aligned (2))) = dobject_rs_Tex_0030E8; -#endif - -#define dobject_rs_Tex_003128 "__OTR__objects/object_rs/object_rs_Tex_003128" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_Tex_003128[] = dobject_rs_Tex_003128; -#else -static const char object_rs_Tex_003128[] __attribute__((aligned (2))) = dobject_rs_Tex_003128; -#endif - -#define dobject_rs_Tex_003168 "__OTR__objects/object_rs/object_rs_Tex_003168" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_Tex_003168[] = dobject_rs_Tex_003168; -#else -static const char object_rs_Tex_003168[] __attribute__((aligned (2))) = dobject_rs_Tex_003168; -#endif - -#define dgBombchuShopkeeperEyeOpenTex "__OTR__objects/object_rs/gBombchuShopkeeperEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopkeeperEyeOpenTex[] = dgBombchuShopkeeperEyeOpenTex; -#else -static const char gBombchuShopkeeperEyeOpenTex[] __attribute__((aligned (2))) = dgBombchuShopkeeperEyeOpenTex; -#endif - -#define dgBombchuShopkeeperEyeHalfTex "__OTR__objects/object_rs/gBombchuShopkeeperEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopkeeperEyeHalfTex[] = dgBombchuShopkeeperEyeHalfTex; -#else -static const char gBombchuShopkeeperEyeHalfTex[] __attribute__((aligned (2))) = dgBombchuShopkeeperEyeHalfTex; -#endif - -#define dgBombchuShopkeeperEyeClosedTex "__OTR__objects/object_rs/gBombchuShopkeeperEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopkeeperEyeClosedTex[] = dgBombchuShopkeeperEyeClosedTex; -#else -static const char gBombchuShopkeeperEyeClosedTex[] __attribute__((aligned (2))) = dgBombchuShopkeeperEyeClosedTex; -#endif - -#define dobject_rs_Tex_004568 "__OTR__objects/object_rs/object_rs_Tex_004568" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_Tex_004568[] = dobject_rs_Tex_004568; -#else -static const char object_rs_Tex_004568[] __attribute__((aligned (2))) = dobject_rs_Tex_004568; -#endif - -#define dobject_rs_Tex_004668 "__OTR__objects/object_rs/object_rs_Tex_004668" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_Tex_004668[] = dobject_rs_Tex_004668; -#else -static const char object_rs_Tex_004668[] __attribute__((aligned (2))) = dobject_rs_Tex_004668; -#endif - -#define dobject_rs_Tex_0046E8 "__OTR__objects/object_rs/object_rs_Tex_0046E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_Tex_0046E8[] = dobject_rs_Tex_0046E8; -#else -static const char object_rs_Tex_0046E8[] __attribute__((aligned (2))) = dobject_rs_Tex_0046E8; -#endif - -#define dobject_rs_Skel_004868 "__OTR__objects/object_rs/object_rs_Skel_004868" -#ifdef _WIN32 -static const __declspec(align(2)) char object_rs_Skel_004868[] = dobject_rs_Skel_004868; -#else -static const char object_rs_Skel_004868[] __attribute__((aligned (2))) = dobject_rs_Skel_004868; -#endif - +#include "align_asset_macro.h" + +#define dobject_rs_Anim_00065C "__OTR__objects/object_rs/object_rs_Anim_00065C" +static const ALIGN_ASSET(2) char object_rs_Anim_00065C[] = dobject_rs_Anim_00065C; + +#define dobject_rs_DL_001FA0 "__OTR__objects/object_rs/object_rs_DL_001FA0" +static const ALIGN_ASSET(2) char object_rs_DL_001FA0[] = dobject_rs_DL_001FA0; + +#define dobject_rs_DL_0021F8 "__OTR__objects/object_rs/object_rs_DL_0021F8" +static const ALIGN_ASSET(2) char object_rs_DL_0021F8[] = dobject_rs_DL_0021F8; + +#define dobject_rs_DL_0025F8 "__OTR__objects/object_rs/object_rs_DL_0025F8" +static const ALIGN_ASSET(2) char object_rs_DL_0025F8[] = dobject_rs_DL_0025F8; + +#define dobject_rs_DL_002730 "__OTR__objects/object_rs/object_rs_DL_002730" +static const ALIGN_ASSET(2) char object_rs_DL_002730[] = dobject_rs_DL_002730; + +#define dobject_rs_DL_002860 "__OTR__objects/object_rs/object_rs_DL_002860" +static const ALIGN_ASSET(2) char object_rs_DL_002860[] = dobject_rs_DL_002860; + +#define dobject_rs_DL_002A70 "__OTR__objects/object_rs/object_rs_DL_002A70" +static const ALIGN_ASSET(2) char object_rs_DL_002A70[] = dobject_rs_DL_002A70; + +#define dobject_rs_DL_002BA8 "__OTR__objects/object_rs/object_rs_DL_002BA8" +static const ALIGN_ASSET(2) char object_rs_DL_002BA8[] = dobject_rs_DL_002BA8; + +#define dobject_rs_DL_002CD8 "__OTR__objects/object_rs/object_rs_DL_002CD8" +static const ALIGN_ASSET(2) char object_rs_DL_002CD8[] = dobject_rs_DL_002CD8; + +#define dobject_rs_TLUT_002EE8 "__OTR__objects/object_rs/object_rs_TLUT_002EE8" +static const ALIGN_ASSET(2) char object_rs_TLUT_002EE8[] = dobject_rs_TLUT_002EE8; + +#define dobject_rs_Tex_0030E8 "__OTR__objects/object_rs/object_rs_Tex_0030E8" +static const ALIGN_ASSET(2) char object_rs_Tex_0030E8[] = dobject_rs_Tex_0030E8; + +#define dobject_rs_Tex_003128 "__OTR__objects/object_rs/object_rs_Tex_003128" +static const ALIGN_ASSET(2) char object_rs_Tex_003128[] = dobject_rs_Tex_003128; + +#define dobject_rs_Tex_003168 "__OTR__objects/object_rs/object_rs_Tex_003168" +static const ALIGN_ASSET(2) char object_rs_Tex_003168[] = dobject_rs_Tex_003168; + +#define dgBombchuShopkeeperEyeOpenTex "__OTR__objects/object_rs/gBombchuShopkeeperEyeOpenTex" +static const ALIGN_ASSET(2) char gBombchuShopkeeperEyeOpenTex[] = dgBombchuShopkeeperEyeOpenTex; + +#define dgBombchuShopkeeperEyeHalfTex "__OTR__objects/object_rs/gBombchuShopkeeperEyeHalfTex" +static const ALIGN_ASSET(2) char gBombchuShopkeeperEyeHalfTex[] = dgBombchuShopkeeperEyeHalfTex; + +#define dgBombchuShopkeeperEyeClosedTex "__OTR__objects/object_rs/gBombchuShopkeeperEyeClosedTex" +static const ALIGN_ASSET(2) char gBombchuShopkeeperEyeClosedTex[] = dgBombchuShopkeeperEyeClosedTex; + +#define dobject_rs_Tex_004568 "__OTR__objects/object_rs/object_rs_Tex_004568" +static const ALIGN_ASSET(2) char object_rs_Tex_004568[] = dobject_rs_Tex_004568; + +#define dobject_rs_Tex_004668 "__OTR__objects/object_rs/object_rs_Tex_004668" +static const ALIGN_ASSET(2) char object_rs_Tex_004668[] = dobject_rs_Tex_004668; + +#define dobject_rs_Tex_0046E8 "__OTR__objects/object_rs/object_rs_Tex_0046E8" +static const ALIGN_ASSET(2) char object_rs_Tex_0046E8[] = dobject_rs_Tex_0046E8; + +#define dobject_rs_Skel_004868 "__OTR__objects/object_rs/object_rs_Skel_004868" +static const ALIGN_ASSET(2) char object_rs_Skel_004868[] = dobject_rs_Skel_004868; \ No newline at end of file diff --git a/soh/assets/objects/object_ru1/object_ru1.h b/soh/assets/objects/object_ru1/object_ru1.h index f15be9a7a..4cf5d25ba 100644 --- a/soh/assets/objects/object_ru1/object_ru1.h +++ b/soh/assets/objects/object_ru1/object_ru1.h @@ -1,387 +1,168 @@ #pragma once -#define dgRutoChildWaitHandsBehindBackAnim "__OTR__objects/object_ru1/gRutoChildWaitHandsBehindBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildWaitHandsBehindBackAnim[] = dgRutoChildWaitHandsBehindBackAnim; -#else -static const char gRutoChildWaitHandsBehindBackAnim[] __attribute__((aligned (2))) = dgRutoChildWaitHandsBehindBackAnim; -#endif - -#define dgRutoChildWaitHandsOnHipsAnim "__OTR__objects/object_ru1/gRutoChildWaitHandsOnHipsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildWaitHandsOnHipsAnim[] = dgRutoChildWaitHandsOnHipsAnim; -#else -static const char gRutoChildWaitHandsOnHipsAnim[] __attribute__((aligned (2))) = dgRutoChildWaitHandsOnHipsAnim; -#endif - -#define dgRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim "__OTR__objects/object_ru1/gRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim[] = dgRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim; -#else -static const char gRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim[] __attribute__((aligned (2))) = dgRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim; -#endif - -#define dgRutoChildWaitSittingAnim "__OTR__objects/object_ru1/gRutoChildWaitSittingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildWaitSittingAnim[] = dgRutoChildWaitSittingAnim; -#else -static const char gRutoChildWaitSittingAnim[] __attribute__((aligned (2))) = dgRutoChildWaitSittingAnim; -#endif - -#define dgRutoChildWaitInBlueWarpAnim "__OTR__objects/object_ru1/gRutoChildWaitInBlueWarpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildWaitInBlueWarpAnim[] = dgRutoChildWaitInBlueWarpAnim; -#else -static const char gRutoChildWaitInBlueWarpAnim[] __attribute__((aligned (2))) = dgRutoChildWaitInBlueWarpAnim; -#endif - -#define dgRutoChildBringHandsDownAnim "__OTR__objects/object_ru1/gRutoChildBringHandsDownAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildBringHandsDownAnim[] = dgRutoChildBringHandsDownAnim; -#else -static const char gRutoChildBringHandsDownAnim[] __attribute__((aligned (2))) = dgRutoChildBringHandsDownAnim; -#endif - -#define dgRutoChildHoldArmsUpAnim "__OTR__objects/object_ru1/gRutoChildHoldArmsUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildHoldArmsUpAnim[] = dgRutoChildHoldArmsUpAnim; -#else -static const char gRutoChildHoldArmsUpAnim[] __attribute__((aligned (2))) = dgRutoChildHoldArmsUpAnim; -#endif - -#define dgRutoChildBringArmsUpAnim "__OTR__objects/object_ru1/gRutoChildBringArmsUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildBringArmsUpAnim[] = dgRutoChildBringArmsUpAnim; -#else -static const char gRutoChildBringArmsUpAnim[] __attribute__((aligned (2))) = dgRutoChildBringArmsUpAnim; -#endif - -#define dgRutoChildTurnAroundAnim "__OTR__objects/object_ru1/gRutoChildTurnAroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildTurnAroundAnim[] = dgRutoChildTurnAroundAnim; -#else -static const char gRutoChildTurnAroundAnim[] __attribute__((aligned (2))) = dgRutoChildTurnAroundAnim; -#endif - -#define dgRutoChildSquirmAnim "__OTR__objects/object_ru1/gRutoChildSquirmAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildSquirmAnim[] = dgRutoChildSquirmAnim; -#else -static const char gRutoChildSquirmAnim[] __attribute__((aligned (2))) = dgRutoChildSquirmAnim; -#endif - -#define dgRutoChildSeesSapphireAnim "__OTR__objects/object_ru1/gRutoChildSeesSapphireAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildSeesSapphireAnim[] = dgRutoChildSeesSapphireAnim; -#else -static const char gRutoChildSeesSapphireAnim[] __attribute__((aligned (2))) = dgRutoChildSeesSapphireAnim; -#endif - -#define dgRutoChildShutterAnim "__OTR__objects/object_ru1/gRutoChildShutterAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildShutterAnim[] = dgRutoChildShutterAnim; -#else -static const char gRutoChildShutterAnim[] __attribute__((aligned (2))) = dgRutoChildShutterAnim; -#endif - -#define dgRutoChildWalkToAndHoldUpSapphireAnim "__OTR__objects/object_ru1/gRutoChildWalkToAndHoldUpSapphireAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildWalkToAndHoldUpSapphireAnim[] = dgRutoChildWalkToAndHoldUpSapphireAnim; -#else -static const char gRutoChildWalkToAndHoldUpSapphireAnim[] __attribute__((aligned (2))) = dgRutoChildWalkToAndHoldUpSapphireAnim; -#endif - -#define dgRutoChildSittingAnim "__OTR__objects/object_ru1/gRutoChildSittingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildSittingAnim[] = dgRutoChildSittingAnim; -#else -static const char gRutoChildSittingAnim[] __attribute__((aligned (2))) = dgRutoChildSittingAnim; -#endif - -#define dgRutoChildSitAnim "__OTR__objects/object_ru1/gRutoChildSitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildSitAnim[] = dgRutoChildSitAnim; -#else -static const char gRutoChildSitAnim[] __attribute__((aligned (2))) = dgRutoChildSitAnim; -#endif - -#define dgRutoChildWalkAnim "__OTR__objects/object_ru1/gRutoChildWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildWalkAnim[] = dgRutoChildWalkAnim; -#else -static const char gRutoChildWalkAnim[] __attribute__((aligned (2))) = dgRutoChildWalkAnim; -#endif - -#define dgRutoChildTransitionFromSwimOnBackAnim "__OTR__objects/object_ru1/gRutoChildTransitionFromSwimOnBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildTransitionFromSwimOnBackAnim[] = dgRutoChildTransitionFromSwimOnBackAnim; -#else -static const char gRutoChildTransitionFromSwimOnBackAnim[] __attribute__((aligned (2))) = dgRutoChildTransitionFromSwimOnBackAnim; -#endif - -#define dgRutoChildTransitionToSwimOnBackAnim "__OTR__objects/object_ru1/gRutoChildTransitionToSwimOnBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildTransitionToSwimOnBackAnim[] = dgRutoChildTransitionToSwimOnBackAnim; -#else -static const char gRutoChildTransitionToSwimOnBackAnim[] __attribute__((aligned (2))) = dgRutoChildTransitionToSwimOnBackAnim; -#endif - -#define dgRutoChildAnim_009060 "__OTR__objects/object_ru1/gRutoChildAnim_009060" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildAnim_009060[] = dgRutoChildAnim_009060; -#else -static const char gRutoChildAnim_009060[] __attribute__((aligned (2))) = dgRutoChildAnim_009060; -#endif - -#define dgRutoChildWait2Anim "__OTR__objects/object_ru1/gRutoChildWait2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildWait2Anim[] = dgRutoChildWait2Anim; -#else -static const char gRutoChildWait2Anim[] __attribute__((aligned (2))) = dgRutoChildWait2Anim; -#endif - -#define dgRutoChildSwimOnBackAnim "__OTR__objects/object_ru1/gRutoChildSwimOnBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildSwimOnBackAnim[] = dgRutoChildSwimOnBackAnim; -#else -static const char gRutoChildSwimOnBackAnim[] __attribute__((aligned (2))) = dgRutoChildSwimOnBackAnim; -#endif - -#define dgRutoChildTreadWaterAnim "__OTR__objects/object_ru1/gRutoChildTreadWaterAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildTreadWaterAnim[] = dgRutoChildTreadWaterAnim; -#else -static const char gRutoChildTreadWaterAnim[] __attribute__((aligned (2))) = dgRutoChildTreadWaterAnim; -#endif - -#define dgRutoChildTorsoDL "__OTR__objects/object_ru1/gRutoChildTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildTorsoDL[] = dgRutoChildTorsoDL; -#else -static const char gRutoChildTorsoDL[] __attribute__((aligned (2))) = dgRutoChildTorsoDL; -#endif - -#define dgRutoChildLeftThighDL "__OTR__objects/object_ru1/gRutoChildLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildLeftThighDL[] = dgRutoChildLeftThighDL; -#else -static const char gRutoChildLeftThighDL[] __attribute__((aligned (2))) = dgRutoChildLeftThighDL; -#endif - -#define dgRutoChildLeftShinDL "__OTR__objects/object_ru1/gRutoChildLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildLeftShinDL[] = dgRutoChildLeftShinDL; -#else -static const char gRutoChildLeftShinDL[] __attribute__((aligned (2))) = dgRutoChildLeftShinDL; -#endif - -#define dgRutoChildLeftFootDL "__OTR__objects/object_ru1/gRutoChildLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildLeftFootDL[] = dgRutoChildLeftFootDL; -#else -static const char gRutoChildLeftFootDL[] __attribute__((aligned (2))) = dgRutoChildLeftFootDL; -#endif - -#define dgRutoChildRightThighDL "__OTR__objects/object_ru1/gRutoChildRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildRightThighDL[] = dgRutoChildRightThighDL; -#else -static const char gRutoChildRightThighDL[] __attribute__((aligned (2))) = dgRutoChildRightThighDL; -#endif - -#define dgRutoChildRightShinDL "__OTR__objects/object_ru1/gRutoChildRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildRightShinDL[] = dgRutoChildRightShinDL; -#else -static const char gRutoChildRightShinDL[] __attribute__((aligned (2))) = dgRutoChildRightShinDL; -#endif - -#define dgRutoChildRightFootDL "__OTR__objects/object_ru1/gRutoChildRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildRightFootDL[] = dgRutoChildRightFootDL; -#else -static const char gRutoChildRightFootDL[] __attribute__((aligned (2))) = dgRutoChildRightFootDL; -#endif - -#define dgRutoChildChestDL "__OTR__objects/object_ru1/gRutoChildChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildChestDL[] = dgRutoChildChestDL; -#else -static const char gRutoChildChestDL[] __attribute__((aligned (2))) = dgRutoChildChestDL; -#endif - -#define dgRutoChildRightUpperArmDL "__OTR__objects/object_ru1/gRutoChildRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildRightUpperArmDL[] = dgRutoChildRightUpperArmDL; -#else -static const char gRutoChildRightUpperArmDL[] __attribute__((aligned (2))) = dgRutoChildRightUpperArmDL; -#endif - -#define dgRutoChildRightFinDL "__OTR__objects/object_ru1/gRutoChildRightFinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildRightFinDL[] = dgRutoChildRightFinDL; -#else -static const char gRutoChildRightFinDL[] __attribute__((aligned (2))) = dgRutoChildRightFinDL; -#endif - -#define dgRutoChildRightHandDL "__OTR__objects/object_ru1/gRutoChildRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildRightHandDL[] = dgRutoChildRightHandDL; -#else -static const char gRutoChildRightHandDL[] __attribute__((aligned (2))) = dgRutoChildRightHandDL; -#endif - -#define dgRutoChildLeftUpperArmDL "__OTR__objects/object_ru1/gRutoChildLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildLeftUpperArmDL[] = dgRutoChildLeftUpperArmDL; -#else -static const char gRutoChildLeftUpperArmDL[] __attribute__((aligned (2))) = dgRutoChildLeftUpperArmDL; -#endif - -#define dgRutoChildLeftFinDL "__OTR__objects/object_ru1/gRutoChildLeftFinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildLeftFinDL[] = dgRutoChildLeftFinDL; -#else -static const char gRutoChildLeftFinDL[] __attribute__((aligned (2))) = dgRutoChildLeftFinDL; -#endif - -#define dgRutoChildLeftHandDL "__OTR__objects/object_ru1/gRutoChildLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildLeftHandDL[] = dgRutoChildLeftHandDL; -#else -static const char gRutoChildLeftHandDL[] __attribute__((aligned (2))) = dgRutoChildLeftHandDL; -#endif - -#define dgRutoChildHeadDL "__OTR__objects/object_ru1/gRutoChildHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildHeadDL[] = dgRutoChildHeadDL; -#else -static const char gRutoChildHeadDL[] __attribute__((aligned (2))) = dgRutoChildHeadDL; -#endif - -#define dgRutoChildEyeTLUT "__OTR__objects/object_ru1/gRutoChildEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildEyeTLUT[] = dgRutoChildEyeTLUT; -#else -static const char gRutoChildEyeTLUT[] __attribute__((aligned (2))) = dgRutoChildEyeTLUT; -#endif - -#define dgRutoChildMouthTLUT "__OTR__objects/object_ru1/gRutoChildMouthTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildMouthTLUT[] = dgRutoChildMouthTLUT; -#else -static const char gRutoChildMouthTLUT[] __attribute__((aligned (2))) = dgRutoChildMouthTLUT; -#endif - -#define dgRutoChildEyeOpenTex "__OTR__objects/object_ru1/gRutoChildEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildEyeOpenTex[] = dgRutoChildEyeOpenTex; -#else -static const char gRutoChildEyeOpenTex[] __attribute__((aligned (2))) = dgRutoChildEyeOpenTex; -#endif - -#define dgRutoChildEyeHalfTex "__OTR__objects/object_ru1/gRutoChildEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildEyeHalfTex[] = dgRutoChildEyeHalfTex; -#else -static const char gRutoChildEyeHalfTex[] __attribute__((aligned (2))) = dgRutoChildEyeHalfTex; -#endif - -#define dgRutoChildEyeClosedTex "__OTR__objects/object_ru1/gRutoChildEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildEyeClosedTex[] = dgRutoChildEyeClosedTex; -#else -static const char gRutoChildEyeClosedTex[] __attribute__((aligned (2))) = dgRutoChildEyeClosedTex; -#endif - -#define dgRutoChildEyeRollLeftTex "__OTR__objects/object_ru1/gRutoChildEyeRollLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildEyeRollLeftTex[] = dgRutoChildEyeRollLeftTex; -#else -static const char gRutoChildEyeRollLeftTex[] __attribute__((aligned (2))) = dgRutoChildEyeRollLeftTex; -#endif - -#define dgRutoChildEyeHalf2Tex "__OTR__objects/object_ru1/gRutoChildEyeHalf2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildEyeHalf2Tex[] = dgRutoChildEyeHalf2Tex; -#else -static const char gRutoChildEyeHalf2Tex[] __attribute__((aligned (2))) = dgRutoChildEyeHalf2Tex; -#endif - -#define dgRutoChildEyeHalfWithBlushTex "__OTR__objects/object_ru1/gRutoChildEyeHalfWithBlushTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildEyeHalfWithBlushTex[] = dgRutoChildEyeHalfWithBlushTex; -#else -static const char gRutoChildEyeHalfWithBlushTex[] __attribute__((aligned (2))) = dgRutoChildEyeHalfWithBlushTex; -#endif - -#define dgRutoChildBlueSkinGradientTex "__OTR__objects/object_ru1/gRutoChildBlueSkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildBlueSkinGradientTex[] = dgRutoChildBlueSkinGradientTex; -#else -static const char gRutoChildBlueSkinGradientTex[] __attribute__((aligned (2))) = dgRutoChildBlueSkinGradientTex; -#endif - -#define dgRutoChildMouthClosedTex "__OTR__objects/object_ru1/gRutoChildMouthClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildMouthClosedTex[] = dgRutoChildMouthClosedTex; -#else -static const char gRutoChildMouthClosedTex[] __attribute__((aligned (2))) = dgRutoChildMouthClosedTex; -#endif - -#define dgRutoChildMouthFrownTex "__OTR__objects/object_ru1/gRutoChildMouthFrownTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildMouthFrownTex[] = dgRutoChildMouthFrownTex; -#else -static const char gRutoChildMouthFrownTex[] __attribute__((aligned (2))) = dgRutoChildMouthFrownTex; -#endif - -#define dgRutoChildMouthOpenTex "__OTR__objects/object_ru1/gRutoChildMouthOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildMouthOpenTex[] = dgRutoChildMouthOpenTex; -#else -static const char gRutoChildMouthOpenTex[] __attribute__((aligned (2))) = dgRutoChildMouthOpenTex; -#endif - -#define dgRutoChildEarTex "__OTR__objects/object_ru1/gRutoChildEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildEarTex[] = dgRutoChildEarTex; -#else -static const char gRutoChildEarTex[] __attribute__((aligned (2))) = dgRutoChildEarTex; -#endif - -#define dgRutoChildBlueSkinPatchesTex "__OTR__objects/object_ru1/gRutoChildBlueSkinPatchesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildBlueSkinPatchesTex[] = dgRutoChildBlueSkinPatchesTex; -#else -static const char gRutoChildBlueSkinPatchesTex[] __attribute__((aligned (2))) = dgRutoChildBlueSkinPatchesTex; -#endif - -#define dgRutoChildUnkHeadCircleTex "__OTR__objects/object_ru1/gRutoChildUnkHeadCircleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildUnkHeadCircleTex[] = dgRutoChildUnkHeadCircleTex; -#else -static const char gRutoChildUnkHeadCircleTex[] __attribute__((aligned (2))) = dgRutoChildUnkHeadCircleTex; -#endif - -#define dgRutoChildFingersTex "__OTR__objects/object_ru1/gRutoChildFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildFingersTex[] = dgRutoChildFingersTex; -#else -static const char gRutoChildFingersTex[] __attribute__((aligned (2))) = dgRutoChildFingersTex; -#endif - -#define dgRutoChildCircleGradientTex "__OTR__objects/object_ru1/gRutoChildCircleGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildCircleGradientTex[] = dgRutoChildCircleGradientTex; -#else -static const char gRutoChildCircleGradientTex[] __attribute__((aligned (2))) = dgRutoChildCircleGradientTex; -#endif - -#define dgRutoChildSkel "__OTR__objects/object_ru1/gRutoChildSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutoChildSkel[] = dgRutoChildSkel; -#else -static const char gRutoChildSkel[] __attribute__((aligned (2))) = dgRutoChildSkel; -#endif - +#include "align_asset_macro.h" + +#define dgRutoChildWaitHandsBehindBackAnim "__OTR__objects/object_ru1/gRutoChildWaitHandsBehindBackAnim" +static const ALIGN_ASSET(2) char gRutoChildWaitHandsBehindBackAnim[] = dgRutoChildWaitHandsBehindBackAnim; + +#define dgRutoChildWaitHandsOnHipsAnim "__OTR__objects/object_ru1/gRutoChildWaitHandsOnHipsAnim" +static const ALIGN_ASSET(2) char gRutoChildWaitHandsOnHipsAnim[] = dgRutoChildWaitHandsOnHipsAnim; + +#define dgRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim "__OTR__objects/object_ru1/gRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim" +static const ALIGN_ASSET(2) char gRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim[] = dgRutoChildTransitionHandsOnHipToCrossArmsAndLegsAnim; + +#define dgRutoChildWaitSittingAnim "__OTR__objects/object_ru1/gRutoChildWaitSittingAnim" +static const ALIGN_ASSET(2) char gRutoChildWaitSittingAnim[] = dgRutoChildWaitSittingAnim; + +#define dgRutoChildWaitInBlueWarpAnim "__OTR__objects/object_ru1/gRutoChildWaitInBlueWarpAnim" +static const ALIGN_ASSET(2) char gRutoChildWaitInBlueWarpAnim[] = dgRutoChildWaitInBlueWarpAnim; + +#define dgRutoChildBringHandsDownAnim "__OTR__objects/object_ru1/gRutoChildBringHandsDownAnim" +static const ALIGN_ASSET(2) char gRutoChildBringHandsDownAnim[] = dgRutoChildBringHandsDownAnim; + +#define dgRutoChildHoldArmsUpAnim "__OTR__objects/object_ru1/gRutoChildHoldArmsUpAnim" +static const ALIGN_ASSET(2) char gRutoChildHoldArmsUpAnim[] = dgRutoChildHoldArmsUpAnim; + +#define dgRutoChildBringArmsUpAnim "__OTR__objects/object_ru1/gRutoChildBringArmsUpAnim" +static const ALIGN_ASSET(2) char gRutoChildBringArmsUpAnim[] = dgRutoChildBringArmsUpAnim; + +#define dgRutoChildTurnAroundAnim "__OTR__objects/object_ru1/gRutoChildTurnAroundAnim" +static const ALIGN_ASSET(2) char gRutoChildTurnAroundAnim[] = dgRutoChildTurnAroundAnim; + +#define dgRutoChildSquirmAnim "__OTR__objects/object_ru1/gRutoChildSquirmAnim" +static const ALIGN_ASSET(2) char gRutoChildSquirmAnim[] = dgRutoChildSquirmAnim; + +#define dgRutoChildSeesSapphireAnim "__OTR__objects/object_ru1/gRutoChildSeesSapphireAnim" +static const ALIGN_ASSET(2) char gRutoChildSeesSapphireAnim[] = dgRutoChildSeesSapphireAnim; + +#define dgRutoChildShutterAnim "__OTR__objects/object_ru1/gRutoChildShutterAnim" +static const ALIGN_ASSET(2) char gRutoChildShutterAnim[] = dgRutoChildShutterAnim; + +#define dgRutoChildWalkToAndHoldUpSapphireAnim "__OTR__objects/object_ru1/gRutoChildWalkToAndHoldUpSapphireAnim" +static const ALIGN_ASSET(2) char gRutoChildWalkToAndHoldUpSapphireAnim[] = dgRutoChildWalkToAndHoldUpSapphireAnim; + +#define dgRutoChildSittingAnim "__OTR__objects/object_ru1/gRutoChildSittingAnim" +static const ALIGN_ASSET(2) char gRutoChildSittingAnim[] = dgRutoChildSittingAnim; + +#define dgRutoChildSitAnim "__OTR__objects/object_ru1/gRutoChildSitAnim" +static const ALIGN_ASSET(2) char gRutoChildSitAnim[] = dgRutoChildSitAnim; + +#define dgRutoChildWalkAnim "__OTR__objects/object_ru1/gRutoChildWalkAnim" +static const ALIGN_ASSET(2) char gRutoChildWalkAnim[] = dgRutoChildWalkAnim; + +#define dgRutoChildTransitionFromSwimOnBackAnim "__OTR__objects/object_ru1/gRutoChildTransitionFromSwimOnBackAnim" +static const ALIGN_ASSET(2) char gRutoChildTransitionFromSwimOnBackAnim[] = dgRutoChildTransitionFromSwimOnBackAnim; + +#define dgRutoChildTransitionToSwimOnBackAnim "__OTR__objects/object_ru1/gRutoChildTransitionToSwimOnBackAnim" +static const ALIGN_ASSET(2) char gRutoChildTransitionToSwimOnBackAnim[] = dgRutoChildTransitionToSwimOnBackAnim; + +#define dgRutoChildAnim_009060 "__OTR__objects/object_ru1/gRutoChildAnim_009060" +static const ALIGN_ASSET(2) char gRutoChildAnim_009060[] = dgRutoChildAnim_009060; + +#define dgRutoChildWait2Anim "__OTR__objects/object_ru1/gRutoChildWait2Anim" +static const ALIGN_ASSET(2) char gRutoChildWait2Anim[] = dgRutoChildWait2Anim; + +#define dgRutoChildSwimOnBackAnim "__OTR__objects/object_ru1/gRutoChildSwimOnBackAnim" +static const ALIGN_ASSET(2) char gRutoChildSwimOnBackAnim[] = dgRutoChildSwimOnBackAnim; + +#define dgRutoChildTreadWaterAnim "__OTR__objects/object_ru1/gRutoChildTreadWaterAnim" +static const ALIGN_ASSET(2) char gRutoChildTreadWaterAnim[] = dgRutoChildTreadWaterAnim; + +#define dgRutoChildTorsoDL "__OTR__objects/object_ru1/gRutoChildTorsoDL" +static const ALIGN_ASSET(2) char gRutoChildTorsoDL[] = dgRutoChildTorsoDL; + +#define dgRutoChildLeftThighDL "__OTR__objects/object_ru1/gRutoChildLeftThighDL" +static const ALIGN_ASSET(2) char gRutoChildLeftThighDL[] = dgRutoChildLeftThighDL; + +#define dgRutoChildLeftShinDL "__OTR__objects/object_ru1/gRutoChildLeftShinDL" +static const ALIGN_ASSET(2) char gRutoChildLeftShinDL[] = dgRutoChildLeftShinDL; + +#define dgRutoChildLeftFootDL "__OTR__objects/object_ru1/gRutoChildLeftFootDL" +static const ALIGN_ASSET(2) char gRutoChildLeftFootDL[] = dgRutoChildLeftFootDL; + +#define dgRutoChildRightThighDL "__OTR__objects/object_ru1/gRutoChildRightThighDL" +static const ALIGN_ASSET(2) char gRutoChildRightThighDL[] = dgRutoChildRightThighDL; + +#define dgRutoChildRightShinDL "__OTR__objects/object_ru1/gRutoChildRightShinDL" +static const ALIGN_ASSET(2) char gRutoChildRightShinDL[] = dgRutoChildRightShinDL; + +#define dgRutoChildRightFootDL "__OTR__objects/object_ru1/gRutoChildRightFootDL" +static const ALIGN_ASSET(2) char gRutoChildRightFootDL[] = dgRutoChildRightFootDL; + +#define dgRutoChildChestDL "__OTR__objects/object_ru1/gRutoChildChestDL" +static const ALIGN_ASSET(2) char gRutoChildChestDL[] = dgRutoChildChestDL; + +#define dgRutoChildRightUpperArmDL "__OTR__objects/object_ru1/gRutoChildRightUpperArmDL" +static const ALIGN_ASSET(2) char gRutoChildRightUpperArmDL[] = dgRutoChildRightUpperArmDL; + +#define dgRutoChildRightFinDL "__OTR__objects/object_ru1/gRutoChildRightFinDL" +static const ALIGN_ASSET(2) char gRutoChildRightFinDL[] = dgRutoChildRightFinDL; + +#define dgRutoChildRightHandDL "__OTR__objects/object_ru1/gRutoChildRightHandDL" +static const ALIGN_ASSET(2) char gRutoChildRightHandDL[] = dgRutoChildRightHandDL; + +#define dgRutoChildLeftUpperArmDL "__OTR__objects/object_ru1/gRutoChildLeftUpperArmDL" +static const ALIGN_ASSET(2) char gRutoChildLeftUpperArmDL[] = dgRutoChildLeftUpperArmDL; + +#define dgRutoChildLeftFinDL "__OTR__objects/object_ru1/gRutoChildLeftFinDL" +static const ALIGN_ASSET(2) char gRutoChildLeftFinDL[] = dgRutoChildLeftFinDL; + +#define dgRutoChildLeftHandDL "__OTR__objects/object_ru1/gRutoChildLeftHandDL" +static const ALIGN_ASSET(2) char gRutoChildLeftHandDL[] = dgRutoChildLeftHandDL; + +#define dgRutoChildHeadDL "__OTR__objects/object_ru1/gRutoChildHeadDL" +static const ALIGN_ASSET(2) char gRutoChildHeadDL[] = dgRutoChildHeadDL; + +#define dgRutoChildEyeTLUT "__OTR__objects/object_ru1/gRutoChildEyeTLUT" +static const ALIGN_ASSET(2) char gRutoChildEyeTLUT[] = dgRutoChildEyeTLUT; + +#define dgRutoChildMouthTLUT "__OTR__objects/object_ru1/gRutoChildMouthTLUT" +static const ALIGN_ASSET(2) char gRutoChildMouthTLUT[] = dgRutoChildMouthTLUT; + +#define dgRutoChildEyeOpenTex "__OTR__objects/object_ru1/gRutoChildEyeOpenTex" +static const ALIGN_ASSET(2) char gRutoChildEyeOpenTex[] = dgRutoChildEyeOpenTex; + +#define dgRutoChildEyeHalfTex "__OTR__objects/object_ru1/gRutoChildEyeHalfTex" +static const ALIGN_ASSET(2) char gRutoChildEyeHalfTex[] = dgRutoChildEyeHalfTex; + +#define dgRutoChildEyeClosedTex "__OTR__objects/object_ru1/gRutoChildEyeClosedTex" +static const ALIGN_ASSET(2) char gRutoChildEyeClosedTex[] = dgRutoChildEyeClosedTex; + +#define dgRutoChildEyeRollLeftTex "__OTR__objects/object_ru1/gRutoChildEyeRollLeftTex" +static const ALIGN_ASSET(2) char gRutoChildEyeRollLeftTex[] = dgRutoChildEyeRollLeftTex; + +#define dgRutoChildEyeHalf2Tex "__OTR__objects/object_ru1/gRutoChildEyeHalf2Tex" +static const ALIGN_ASSET(2) char gRutoChildEyeHalf2Tex[] = dgRutoChildEyeHalf2Tex; + +#define dgRutoChildEyeHalfWithBlushTex "__OTR__objects/object_ru1/gRutoChildEyeHalfWithBlushTex" +static const ALIGN_ASSET(2) char gRutoChildEyeHalfWithBlushTex[] = dgRutoChildEyeHalfWithBlushTex; + +#define dgRutoChildBlueSkinGradientTex "__OTR__objects/object_ru1/gRutoChildBlueSkinGradientTex" +static const ALIGN_ASSET(2) char gRutoChildBlueSkinGradientTex[] = dgRutoChildBlueSkinGradientTex; + +#define dgRutoChildMouthClosedTex "__OTR__objects/object_ru1/gRutoChildMouthClosedTex" +static const ALIGN_ASSET(2) char gRutoChildMouthClosedTex[] = dgRutoChildMouthClosedTex; + +#define dgRutoChildMouthFrownTex "__OTR__objects/object_ru1/gRutoChildMouthFrownTex" +static const ALIGN_ASSET(2) char gRutoChildMouthFrownTex[] = dgRutoChildMouthFrownTex; + +#define dgRutoChildMouthOpenTex "__OTR__objects/object_ru1/gRutoChildMouthOpenTex" +static const ALIGN_ASSET(2) char gRutoChildMouthOpenTex[] = dgRutoChildMouthOpenTex; + +#define dgRutoChildEarTex "__OTR__objects/object_ru1/gRutoChildEarTex" +static const ALIGN_ASSET(2) char gRutoChildEarTex[] = dgRutoChildEarTex; + +#define dgRutoChildBlueSkinPatchesTex "__OTR__objects/object_ru1/gRutoChildBlueSkinPatchesTex" +static const ALIGN_ASSET(2) char gRutoChildBlueSkinPatchesTex[] = dgRutoChildBlueSkinPatchesTex; + +#define dgRutoChildUnkHeadCircleTex "__OTR__objects/object_ru1/gRutoChildUnkHeadCircleTex" +static const ALIGN_ASSET(2) char gRutoChildUnkHeadCircleTex[] = dgRutoChildUnkHeadCircleTex; + +#define dgRutoChildFingersTex "__OTR__objects/object_ru1/gRutoChildFingersTex" +static const ALIGN_ASSET(2) char gRutoChildFingersTex[] = dgRutoChildFingersTex; + +#define dgRutoChildCircleGradientTex "__OTR__objects/object_ru1/gRutoChildCircleGradientTex" +static const ALIGN_ASSET(2) char gRutoChildCircleGradientTex[] = dgRutoChildCircleGradientTex; + +#define dgRutoChildSkel "__OTR__objects/object_ru1/gRutoChildSkel" +static const ALIGN_ASSET(2) char gRutoChildSkel[] = dgRutoChildSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_ru2/object_ru2.h b/soh/assets/objects/object_ru2/object_ru2.h index 87abf0d7b..969062a9e 100644 --- a/soh/assets/objects/object_ru2/object_ru2.h +++ b/soh/assets/objects/object_ru2/object_ru2.h @@ -1,373 +1,162 @@ #pragma once -#define dgAdultRutoSkel "__OTR__objects/object_ru2/gAdultRutoSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoSkel[] = dgAdultRutoSkel; -#else -static const char gAdultRutoSkel[] __attribute__((aligned (2))) = dgAdultRutoSkel; -#endif - -#define dgAdultRutoLeftThighDL "__OTR__objects/object_ru2/gAdultRutoLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftThighDL[] = dgAdultRutoLeftThighDL; -#else -static const char gAdultRutoLeftThighDL[] __attribute__((aligned (2))) = dgAdultRutoLeftThighDL; -#endif - -#define dgAdultRutoLeftLegDL "__OTR__objects/object_ru2/gAdultRutoLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftLegDL[] = dgAdultRutoLeftLegDL; -#else -static const char gAdultRutoLeftLegDL[] __attribute__((aligned (2))) = dgAdultRutoLeftLegDL; -#endif - -#define dgAdultRutoLeftFootDL "__OTR__objects/object_ru2/gAdultRutoLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftFootDL[] = dgAdultRutoLeftFootDL; -#else -static const char gAdultRutoLeftFootDL[] __attribute__((aligned (2))) = dgAdultRutoLeftFootDL; -#endif - -#define dgAdultRutoLeftTailDL "__OTR__objects/object_ru2/gAdultRutoLeftTailDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftTailDL[] = dgAdultRutoLeftTailDL; -#else -static const char gAdultRutoLeftTailDL[] __attribute__((aligned (2))) = dgAdultRutoLeftTailDL; -#endif - -#define dgAdultRutoRightThighDL "__OTR__objects/object_ru2/gAdultRutoRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightThighDL[] = dgAdultRutoRightThighDL; -#else -static const char gAdultRutoRightThighDL[] __attribute__((aligned (2))) = dgAdultRutoRightThighDL; -#endif - -#define dgAdultRutoRightLegDL "__OTR__objects/object_ru2/gAdultRutoRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightLegDL[] = dgAdultRutoRightLegDL; -#else -static const char gAdultRutoRightLegDL[] __attribute__((aligned (2))) = dgAdultRutoRightLegDL; -#endif - -#define dgAdultRutoRightFootDL "__OTR__objects/object_ru2/gAdultRutoRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightFootDL[] = dgAdultRutoRightFootDL; -#else -static const char gAdultRutoRightFootDL[] __attribute__((aligned (2))) = dgAdultRutoRightFootDL; -#endif - -#define dgAdultRutoRightTailDL "__OTR__objects/object_ru2/gAdultRutoRightTailDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightTailDL[] = dgAdultRutoRightTailDL; -#else -static const char gAdultRutoRightTailDL[] __attribute__((aligned (2))) = dgAdultRutoRightTailDL; -#endif - -#define dgAdultRutoTorsoDL "__OTR__objects/object_ru2/gAdultRutoTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTorsoDL[] = dgAdultRutoTorsoDL; -#else -static const char gAdultRutoTorsoDL[] __attribute__((aligned (2))) = dgAdultRutoTorsoDL; -#endif - -#define dgAdultRutoLeftUpperArmDL "__OTR__objects/object_ru2/gAdultRutoLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftUpperArmDL[] = dgAdultRutoLeftUpperArmDL; -#else -static const char gAdultRutoLeftUpperArmDL[] __attribute__((aligned (2))) = dgAdultRutoLeftUpperArmDL; -#endif - -#define dgAdultRutoLeftUpperWingDL "__OTR__objects/object_ru2/gAdultRutoLeftUpperWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftUpperWingDL[] = dgAdultRutoLeftUpperWingDL; -#else -static const char gAdultRutoLeftUpperWingDL[] __attribute__((aligned (2))) = dgAdultRutoLeftUpperWingDL; -#endif - -#define dgAdultRutoLeftLowerWingDL "__OTR__objects/object_ru2/gAdultRutoLeftLowerWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftLowerWingDL[] = dgAdultRutoLeftLowerWingDL; -#else -static const char gAdultRutoLeftLowerWingDL[] __attribute__((aligned (2))) = dgAdultRutoLeftLowerWingDL; -#endif - -#define dgAdultRutoLeftForearmDL "__OTR__objects/object_ru2/gAdultRutoLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftForearmDL[] = dgAdultRutoLeftForearmDL; -#else -static const char gAdultRutoLeftForearmDL[] __attribute__((aligned (2))) = dgAdultRutoLeftForearmDL; -#endif - -#define dgAdultRutoLeftHandDL "__OTR__objects/object_ru2/gAdultRutoLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLeftHandDL[] = dgAdultRutoLeftHandDL; -#else -static const char gAdultRutoLeftHandDL[] __attribute__((aligned (2))) = dgAdultRutoLeftHandDL; -#endif - -#define dgAdultRutoRightUpperArmDL "__OTR__objects/object_ru2/gAdultRutoRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightUpperArmDL[] = dgAdultRutoRightUpperArmDL; -#else -static const char gAdultRutoRightUpperArmDL[] __attribute__((aligned (2))) = dgAdultRutoRightUpperArmDL; -#endif - -#define dgAdultRutoRightUpperWingDL "__OTR__objects/object_ru2/gAdultRutoRightUpperWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightUpperWingDL[] = dgAdultRutoRightUpperWingDL; -#else -static const char gAdultRutoRightUpperWingDL[] __attribute__((aligned (2))) = dgAdultRutoRightUpperWingDL; -#endif - -#define dgAdultRutoRightLowerWingDL "__OTR__objects/object_ru2/gAdultRutoRightLowerWingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightLowerWingDL[] = dgAdultRutoRightLowerWingDL; -#else -static const char gAdultRutoRightLowerWingDL[] __attribute__((aligned (2))) = dgAdultRutoRightLowerWingDL; -#endif - -#define dgAdultRutoRightForearmDL "__OTR__objects/object_ru2/gAdultRutoRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightForearmDL[] = dgAdultRutoRightForearmDL; -#else -static const char gAdultRutoRightForearmDL[] __attribute__((aligned (2))) = dgAdultRutoRightForearmDL; -#endif - -#define dgAdultRutoRightHandDL "__OTR__objects/object_ru2/gAdultRutoRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRightHandDL[] = dgAdultRutoRightHandDL; -#else -static const char gAdultRutoRightHandDL[] __attribute__((aligned (2))) = dgAdultRutoRightHandDL; -#endif - -#define dgAdultRutoHeadDL "__OTR__objects/object_ru2/gAdultRutoHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoHeadDL[] = dgAdultRutoHeadDL; -#else -static const char gAdultRutoHeadDL[] __attribute__((aligned (2))) = dgAdultRutoHeadDL; -#endif - -#define dgAdultRutoWaistDL "__OTR__objects/object_ru2/gAdultRutoWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoWaistDL[] = dgAdultRutoWaistDL; -#else -static const char gAdultRutoWaistDL[] __attribute__((aligned (2))) = dgAdultRutoWaistDL; -#endif - -#define dgAdultRutoTLUT1 "__OTR__objects/object_ru2/gAdultRutoTLUT1" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTLUT1[] = dgAdultRutoTLUT1; -#else -static const char gAdultRutoTLUT1[] __attribute__((aligned (2))) = dgAdultRutoTLUT1; -#endif - -#define dgAdultRutoTLUT2 "__OTR__objects/object_ru2/gAdultRutoTLUT2" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTLUT2[] = dgAdultRutoTLUT2; -#else -static const char gAdultRutoTLUT2[] __attribute__((aligned (2))) = dgAdultRutoTLUT2; -#endif - -#define dgAdultRutoEyeOpenTex "__OTR__objects/object_ru2/gAdultRutoEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoEyeOpenTex[] = dgAdultRutoEyeOpenTex; -#else -static const char gAdultRutoEyeOpenTex[] __attribute__((aligned (2))) = dgAdultRutoEyeOpenTex; -#endif - -#define dgAdultRutoEyeHalfTex "__OTR__objects/object_ru2/gAdultRutoEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoEyeHalfTex[] = dgAdultRutoEyeHalfTex; -#else -static const char gAdultRutoEyeHalfTex[] __attribute__((aligned (2))) = dgAdultRutoEyeHalfTex; -#endif - -#define dgAdultRutoEyeClosedTex "__OTR__objects/object_ru2/gAdultRutoEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoEyeClosedTex[] = dgAdultRutoEyeClosedTex; -#else -static const char gAdultRutoEyeClosedTex[] __attribute__((aligned (2))) = dgAdultRutoEyeClosedTex; -#endif - -#define dgAdultRutoSkinGradient "__OTR__objects/object_ru2/gAdultRutoSkinGradient" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoSkinGradient[] = dgAdultRutoSkinGradient; -#else -static const char gAdultRutoSkinGradient[] __attribute__((aligned (2))) = dgAdultRutoSkinGradient; -#endif - -#define dgAdultRutoEar1Tex "__OTR__objects/object_ru2/gAdultRutoEar1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoEar1Tex[] = dgAdultRutoEar1Tex; -#else -static const char gAdultRutoEar1Tex[] __attribute__((aligned (2))) = dgAdultRutoEar1Tex; -#endif - -#define dgAdultRutoHeadGradientTex "__OTR__objects/object_ru2/gAdultRutoHeadGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoHeadGradientTex[] = dgAdultRutoHeadGradientTex; -#else -static const char gAdultRutoHeadGradientTex[] __attribute__((aligned (2))) = dgAdultRutoHeadGradientTex; -#endif - -#define dgAdultRutoHeadHoleTex "__OTR__objects/object_ru2/gAdultRutoHeadHoleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoHeadHoleTex[] = dgAdultRutoHeadHoleTex; -#else -static const char gAdultRutoHeadHoleTex[] __attribute__((aligned (2))) = dgAdultRutoHeadHoleTex; -#endif - -#define dgAdultRutoMouthTex "__OTR__objects/object_ru2/gAdultRutoMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoMouthTex[] = dgAdultRutoMouthTex; -#else -static const char gAdultRutoMouthTex[] __attribute__((aligned (2))) = dgAdultRutoMouthTex; -#endif - -#define dgAdultRutoTex_21A0 "__OTR__objects/object_ru2/gAdultRutoTex_21A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTex_21A0[] = dgAdultRutoTex_21A0; -#else -static const char gAdultRutoTex_21A0[] __attribute__((aligned (2))) = dgAdultRutoTex_21A0; -#endif - -#define dgAdultRutoEar2Tex "__OTR__objects/object_ru2/gAdultRutoEar2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoEar2Tex[] = dgAdultRutoEar2Tex; -#else -static const char gAdultRutoEar2Tex[] __attribute__((aligned (2))) = dgAdultRutoEar2Tex; -#endif - -#define dgAdultRutoEarringTex "__OTR__objects/object_ru2/gAdultRutoEarringTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoEarringTex[] = dgAdultRutoEarringTex; -#else -static const char gAdultRutoEarringTex[] __attribute__((aligned (2))) = dgAdultRutoEarringTex; -#endif - -#define dgAdultRutoTailGradientTex "__OTR__objects/object_ru2/gAdultRutoTailGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTailGradientTex[] = dgAdultRutoTailGradientTex; -#else -static const char gAdultRutoTailGradientTex[] __attribute__((aligned (2))) = dgAdultRutoTailGradientTex; -#endif - -#define dgAdultRutoTex_4600 "__OTR__objects/object_ru2/gAdultRutoTex_4600" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTex_4600[] = dgAdultRutoTex_4600; -#else -static const char gAdultRutoTex_4600[] __attribute__((aligned (2))) = dgAdultRutoTex_4600; -#endif - -#define dgAdultRutoBackOfHandTex "__OTR__objects/object_ru2/gAdultRutoBackOfHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoBackOfHandTex[] = dgAdultRutoBackOfHandTex; -#else -static const char gAdultRutoBackOfHandTex[] __attribute__((aligned (2))) = dgAdultRutoBackOfHandTex; -#endif - -#define dgAdultRutoTex_4740 "__OTR__objects/object_ru2/gAdultRutoTex_4740" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTex_4740[] = dgAdultRutoTex_4740; -#else -static const char gAdultRutoTex_4740[] __attribute__((aligned (2))) = dgAdultRutoTex_4740; -#endif - -#define dgAdultRutoSkinPattern1Tex "__OTR__objects/object_ru2/gAdultRutoSkinPattern1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoSkinPattern1Tex[] = dgAdultRutoSkinPattern1Tex; -#else -static const char gAdultRutoSkinPattern1Tex[] __attribute__((aligned (2))) = dgAdultRutoSkinPattern1Tex; -#endif - -#define dgAdultRutoSkinPattern2Tex "__OTR__objects/object_ru2/gAdultRutoSkinPattern2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoSkinPattern2Tex[] = dgAdultRutoSkinPattern2Tex; -#else -static const char gAdultRutoSkinPattern2Tex[] __attribute__((aligned (2))) = dgAdultRutoSkinPattern2Tex; -#endif - -#define dgAdultRutoTex_5440 "__OTR__objects/object_ru2/gAdultRutoTex_5440" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTex_5440[] = dgAdultRutoTex_5440; -#else -static const char gAdultRutoTex_5440[] __attribute__((aligned (2))) = dgAdultRutoTex_5440; -#endif - -#define dgAdultRutoTex_5480 "__OTR__objects/object_ru2/gAdultRutoTex_5480" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTex_5480[] = dgAdultRutoTex_5480; -#else -static const char gAdultRutoTex_5480[] __attribute__((aligned (2))) = dgAdultRutoTex_5480; -#endif - -#define dgAdultRutoTex_5580 "__OTR__objects/object_ru2/gAdultRutoTex_5580" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoTex_5580[] = dgAdultRutoTex_5580; -#else -static const char gAdultRutoTex_5580[] __attribute__((aligned (2))) = dgAdultRutoTex_5580; -#endif - -#define dgAdultRutoCrossingArmsAnim "__OTR__objects/object_ru2/gAdultRutoCrossingArmsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoCrossingArmsAnim[] = dgAdultRutoCrossingArmsAnim; -#else -static const char gAdultRutoCrossingArmsAnim[] __attribute__((aligned (2))) = dgAdultRutoCrossingArmsAnim; -#endif - -#define dgAdultRutoIdleAnim "__OTR__objects/object_ru2/gAdultRutoIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoIdleAnim[] = dgAdultRutoIdleAnim; -#else -static const char gAdultRutoIdleAnim[] __attribute__((aligned (2))) = dgAdultRutoIdleAnim; -#endif - -#define dgAdultRutoRaisingArmsUpAnim "__OTR__objects/object_ru2/gAdultRutoRaisingArmsUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoRaisingArmsUpAnim[] = dgAdultRutoRaisingArmsUpAnim; -#else -static const char gAdultRutoRaisingArmsUpAnim[] __attribute__((aligned (2))) = dgAdultRutoRaisingArmsUpAnim; -#endif - -#define dgAdultRutoHeadTurnDownLeftAnim "__OTR__objects/object_ru2/gAdultRutoHeadTurnDownLeftAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoHeadTurnDownLeftAnim[] = dgAdultRutoHeadTurnDownLeftAnim; -#else -static const char gAdultRutoHeadTurnDownLeftAnim[] __attribute__((aligned (2))) = dgAdultRutoHeadTurnDownLeftAnim; -#endif - -#define dgAdultRutoIdleHandsOnHipsAnim "__OTR__objects/object_ru2/gAdultRutoIdleHandsOnHipsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoIdleHandsOnHipsAnim[] = dgAdultRutoIdleHandsOnHipsAnim; -#else -static const char gAdultRutoIdleHandsOnHipsAnim[] __attribute__((aligned (2))) = dgAdultRutoIdleHandsOnHipsAnim; -#endif - -#define dgAdultRutoLookingDownLeftAnim "__OTR__objects/object_ru2/gAdultRutoLookingDownLeftAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoLookingDownLeftAnim[] = dgAdultRutoLookingDownLeftAnim; -#else -static const char gAdultRutoLookingDownLeftAnim[] __attribute__((aligned (2))) = dgAdultRutoLookingDownLeftAnim; -#endif - -#define dgAdultRutoSwimmingUpAnim "__OTR__objects/object_ru2/gAdultRutoSwimmingUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultRutoSwimmingUpAnim[] = dgAdultRutoSwimmingUpAnim; -#else -static const char gAdultRutoSwimmingUpAnim[] __attribute__((aligned (2))) = dgAdultRutoSwimmingUpAnim; -#endif - -#define dobject_ru2Tex_0055C0 "__OTR__objects/object_ru2/object_ru2Tex_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ru2Tex_0055C0[] = dobject_ru2Tex_0055C0; -#else -static const char object_ru2Tex_0055C0[] __attribute__((aligned (2))) = dobject_ru2Tex_0055C0; -#endif - -#define dobject_ru2Tex_0056C0 "__OTR__objects/object_ru2/object_ru2Tex_0056C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ru2Tex_0056C0[] = dobject_ru2Tex_0056C0; -#else -static const char object_ru2Tex_0056C0[] __attribute__((aligned (2))) = dobject_ru2Tex_0056C0; -#endif - +#include "align_asset_macro.h" + +#define dgAdultRutoSkel "__OTR__objects/object_ru2/gAdultRutoSkel" +static const ALIGN_ASSET(2) char gAdultRutoSkel[] = dgAdultRutoSkel; + +#define dgAdultRutoLeftThighDL "__OTR__objects/object_ru2/gAdultRutoLeftThighDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftThighDL[] = dgAdultRutoLeftThighDL; + +#define dgAdultRutoLeftLegDL "__OTR__objects/object_ru2/gAdultRutoLeftLegDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftLegDL[] = dgAdultRutoLeftLegDL; + +#define dgAdultRutoLeftFootDL "__OTR__objects/object_ru2/gAdultRutoLeftFootDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftFootDL[] = dgAdultRutoLeftFootDL; + +#define dgAdultRutoLeftTailDL "__OTR__objects/object_ru2/gAdultRutoLeftTailDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftTailDL[] = dgAdultRutoLeftTailDL; + +#define dgAdultRutoRightThighDL "__OTR__objects/object_ru2/gAdultRutoRightThighDL" +static const ALIGN_ASSET(2) char gAdultRutoRightThighDL[] = dgAdultRutoRightThighDL; + +#define dgAdultRutoRightLegDL "__OTR__objects/object_ru2/gAdultRutoRightLegDL" +static const ALIGN_ASSET(2) char gAdultRutoRightLegDL[] = dgAdultRutoRightLegDL; + +#define dgAdultRutoRightFootDL "__OTR__objects/object_ru2/gAdultRutoRightFootDL" +static const ALIGN_ASSET(2) char gAdultRutoRightFootDL[] = dgAdultRutoRightFootDL; + +#define dgAdultRutoRightTailDL "__OTR__objects/object_ru2/gAdultRutoRightTailDL" +static const ALIGN_ASSET(2) char gAdultRutoRightTailDL[] = dgAdultRutoRightTailDL; + +#define dgAdultRutoTorsoDL "__OTR__objects/object_ru2/gAdultRutoTorsoDL" +static const ALIGN_ASSET(2) char gAdultRutoTorsoDL[] = dgAdultRutoTorsoDL; + +#define dgAdultRutoLeftUpperArmDL "__OTR__objects/object_ru2/gAdultRutoLeftUpperArmDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftUpperArmDL[] = dgAdultRutoLeftUpperArmDL; + +#define dgAdultRutoLeftUpperWingDL "__OTR__objects/object_ru2/gAdultRutoLeftUpperWingDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftUpperWingDL[] = dgAdultRutoLeftUpperWingDL; + +#define dgAdultRutoLeftLowerWingDL "__OTR__objects/object_ru2/gAdultRutoLeftLowerWingDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftLowerWingDL[] = dgAdultRutoLeftLowerWingDL; + +#define dgAdultRutoLeftForearmDL "__OTR__objects/object_ru2/gAdultRutoLeftForearmDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftForearmDL[] = dgAdultRutoLeftForearmDL; + +#define dgAdultRutoLeftHandDL "__OTR__objects/object_ru2/gAdultRutoLeftHandDL" +static const ALIGN_ASSET(2) char gAdultRutoLeftHandDL[] = dgAdultRutoLeftHandDL; + +#define dgAdultRutoRightUpperArmDL "__OTR__objects/object_ru2/gAdultRutoRightUpperArmDL" +static const ALIGN_ASSET(2) char gAdultRutoRightUpperArmDL[] = dgAdultRutoRightUpperArmDL; + +#define dgAdultRutoRightUpperWingDL "__OTR__objects/object_ru2/gAdultRutoRightUpperWingDL" +static const ALIGN_ASSET(2) char gAdultRutoRightUpperWingDL[] = dgAdultRutoRightUpperWingDL; + +#define dgAdultRutoRightLowerWingDL "__OTR__objects/object_ru2/gAdultRutoRightLowerWingDL" +static const ALIGN_ASSET(2) char gAdultRutoRightLowerWingDL[] = dgAdultRutoRightLowerWingDL; + +#define dgAdultRutoRightForearmDL "__OTR__objects/object_ru2/gAdultRutoRightForearmDL" +static const ALIGN_ASSET(2) char gAdultRutoRightForearmDL[] = dgAdultRutoRightForearmDL; + +#define dgAdultRutoRightHandDL "__OTR__objects/object_ru2/gAdultRutoRightHandDL" +static const ALIGN_ASSET(2) char gAdultRutoRightHandDL[] = dgAdultRutoRightHandDL; + +#define dgAdultRutoHeadDL "__OTR__objects/object_ru2/gAdultRutoHeadDL" +static const ALIGN_ASSET(2) char gAdultRutoHeadDL[] = dgAdultRutoHeadDL; + +#define dgAdultRutoWaistDL "__OTR__objects/object_ru2/gAdultRutoWaistDL" +static const ALIGN_ASSET(2) char gAdultRutoWaistDL[] = dgAdultRutoWaistDL; + +#define dgAdultRutoTLUT1 "__OTR__objects/object_ru2/gAdultRutoTLUT1" +static const ALIGN_ASSET(2) char gAdultRutoTLUT1[] = dgAdultRutoTLUT1; + +#define dgAdultRutoTLUT2 "__OTR__objects/object_ru2/gAdultRutoTLUT2" +static const ALIGN_ASSET(2) char gAdultRutoTLUT2[] = dgAdultRutoTLUT2; + +#define dgAdultRutoEyeOpenTex "__OTR__objects/object_ru2/gAdultRutoEyeOpenTex" +static const ALIGN_ASSET(2) char gAdultRutoEyeOpenTex[] = dgAdultRutoEyeOpenTex; + +#define dgAdultRutoEyeHalfTex "__OTR__objects/object_ru2/gAdultRutoEyeHalfTex" +static const ALIGN_ASSET(2) char gAdultRutoEyeHalfTex[] = dgAdultRutoEyeHalfTex; + +#define dgAdultRutoEyeClosedTex "__OTR__objects/object_ru2/gAdultRutoEyeClosedTex" +static const ALIGN_ASSET(2) char gAdultRutoEyeClosedTex[] = dgAdultRutoEyeClosedTex; + +#define dgAdultRutoSkinGradient "__OTR__objects/object_ru2/gAdultRutoSkinGradient" +static const ALIGN_ASSET(2) char gAdultRutoSkinGradient[] = dgAdultRutoSkinGradient; + +#define dgAdultRutoEar1Tex "__OTR__objects/object_ru2/gAdultRutoEar1Tex" +static const ALIGN_ASSET(2) char gAdultRutoEar1Tex[] = dgAdultRutoEar1Tex; + +#define dgAdultRutoHeadGradientTex "__OTR__objects/object_ru2/gAdultRutoHeadGradientTex" +static const ALIGN_ASSET(2) char gAdultRutoHeadGradientTex[] = dgAdultRutoHeadGradientTex; + +#define dgAdultRutoHeadHoleTex "__OTR__objects/object_ru2/gAdultRutoHeadHoleTex" +static const ALIGN_ASSET(2) char gAdultRutoHeadHoleTex[] = dgAdultRutoHeadHoleTex; + +#define dgAdultRutoMouthTex "__OTR__objects/object_ru2/gAdultRutoMouthTex" +static const ALIGN_ASSET(2) char gAdultRutoMouthTex[] = dgAdultRutoMouthTex; + +#define dgAdultRutoTex_21A0 "__OTR__objects/object_ru2/gAdultRutoTex_21A0" +static const ALIGN_ASSET(2) char gAdultRutoTex_21A0[] = dgAdultRutoTex_21A0; + +#define dgAdultRutoEar2Tex "__OTR__objects/object_ru2/gAdultRutoEar2Tex" +static const ALIGN_ASSET(2) char gAdultRutoEar2Tex[] = dgAdultRutoEar2Tex; + +#define dgAdultRutoEarringTex "__OTR__objects/object_ru2/gAdultRutoEarringTex" +static const ALIGN_ASSET(2) char gAdultRutoEarringTex[] = dgAdultRutoEarringTex; + +#define dgAdultRutoTailGradientTex "__OTR__objects/object_ru2/gAdultRutoTailGradientTex" +static const ALIGN_ASSET(2) char gAdultRutoTailGradientTex[] = dgAdultRutoTailGradientTex; + +#define dgAdultRutoTex_4600 "__OTR__objects/object_ru2/gAdultRutoTex_4600" +static const ALIGN_ASSET(2) char gAdultRutoTex_4600[] = dgAdultRutoTex_4600; + +#define dgAdultRutoBackOfHandTex "__OTR__objects/object_ru2/gAdultRutoBackOfHandTex" +static const ALIGN_ASSET(2) char gAdultRutoBackOfHandTex[] = dgAdultRutoBackOfHandTex; + +#define dgAdultRutoTex_4740 "__OTR__objects/object_ru2/gAdultRutoTex_4740" +static const ALIGN_ASSET(2) char gAdultRutoTex_4740[] = dgAdultRutoTex_4740; + +#define dgAdultRutoSkinPattern1Tex "__OTR__objects/object_ru2/gAdultRutoSkinPattern1Tex" +static const ALIGN_ASSET(2) char gAdultRutoSkinPattern1Tex[] = dgAdultRutoSkinPattern1Tex; + +#define dgAdultRutoSkinPattern2Tex "__OTR__objects/object_ru2/gAdultRutoSkinPattern2Tex" +static const ALIGN_ASSET(2) char gAdultRutoSkinPattern2Tex[] = dgAdultRutoSkinPattern2Tex; + +#define dgAdultRutoTex_5440 "__OTR__objects/object_ru2/gAdultRutoTex_5440" +static const ALIGN_ASSET(2) char gAdultRutoTex_5440[] = dgAdultRutoTex_5440; + +#define dgAdultRutoTex_5480 "__OTR__objects/object_ru2/gAdultRutoTex_5480" +static const ALIGN_ASSET(2) char gAdultRutoTex_5480[] = dgAdultRutoTex_5480; + +#define dgAdultRutoTex_5580 "__OTR__objects/object_ru2/gAdultRutoTex_5580" +static const ALIGN_ASSET(2) char gAdultRutoTex_5580[] = dgAdultRutoTex_5580; + +#define dgAdultRutoCrossingArmsAnim "__OTR__objects/object_ru2/gAdultRutoCrossingArmsAnim" +static const ALIGN_ASSET(2) char gAdultRutoCrossingArmsAnim[] = dgAdultRutoCrossingArmsAnim; + +#define dgAdultRutoIdleAnim "__OTR__objects/object_ru2/gAdultRutoIdleAnim" +static const ALIGN_ASSET(2) char gAdultRutoIdleAnim[] = dgAdultRutoIdleAnim; + +#define dgAdultRutoRaisingArmsUpAnim "__OTR__objects/object_ru2/gAdultRutoRaisingArmsUpAnim" +static const ALIGN_ASSET(2) char gAdultRutoRaisingArmsUpAnim[] = dgAdultRutoRaisingArmsUpAnim; + +#define dgAdultRutoHeadTurnDownLeftAnim "__OTR__objects/object_ru2/gAdultRutoHeadTurnDownLeftAnim" +static const ALIGN_ASSET(2) char gAdultRutoHeadTurnDownLeftAnim[] = dgAdultRutoHeadTurnDownLeftAnim; + +#define dgAdultRutoIdleHandsOnHipsAnim "__OTR__objects/object_ru2/gAdultRutoIdleHandsOnHipsAnim" +static const ALIGN_ASSET(2) char gAdultRutoIdleHandsOnHipsAnim[] = dgAdultRutoIdleHandsOnHipsAnim; + +#define dgAdultRutoLookingDownLeftAnim "__OTR__objects/object_ru2/gAdultRutoLookingDownLeftAnim" +static const ALIGN_ASSET(2) char gAdultRutoLookingDownLeftAnim[] = dgAdultRutoLookingDownLeftAnim; + +#define dgAdultRutoSwimmingUpAnim "__OTR__objects/object_ru2/gAdultRutoSwimmingUpAnim" +static const ALIGN_ASSET(2) char gAdultRutoSwimmingUpAnim[] = dgAdultRutoSwimmingUpAnim; + +#define dobject_ru2Tex_0055C0 "__OTR__objects/object_ru2/object_ru2Tex_0055C0" +static const ALIGN_ASSET(2) char object_ru2Tex_0055C0[] = dobject_ru2Tex_0055C0; + +#define dobject_ru2Tex_0056C0 "__OTR__objects/object_ru2/object_ru2Tex_0056C0" +static const ALIGN_ASSET(2) char object_ru2Tex_0056C0[] = dobject_ru2Tex_0056C0; \ No newline at end of file diff --git a/soh/assets/objects/object_sa/object_sa.h b/soh/assets/objects/object_sa/object_sa.h index 8cc842152..b41605113 100644 --- a/soh/assets/objects/object_sa/object_sa.h +++ b/soh/assets/objects/object_sa/object_sa.h @@ -1,527 +1,228 @@ #pragma once -#define dgSariaSkel "__OTR__objects/object_sa/gSariaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaSkel[] = dgSariaSkel; -#else -static const char gSariaSkel[] __attribute__((aligned (2))) = dgSariaSkel; -#endif - -#define dgSariaSealGanonAnim "__OTR__objects/object_sa/gSariaSealGanonAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaSealGanonAnim[] = dgSariaSealGanonAnim; -#else -static const char gSariaSealGanonAnim[] __attribute__((aligned (2))) = dgSariaSealGanonAnim; -#endif - -#define dgSariaOcarinaToMouthAnim "__OTR__objects/object_sa/gSariaOcarinaToMouthAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaOcarinaToMouthAnim[] = dgSariaOcarinaToMouthAnim; -#else -static const char gSariaOcarinaToMouthAnim[] __attribute__((aligned (2))) = dgSariaOcarinaToMouthAnim; -#endif - -#define dgSariaWaitArmsToSideAnim "__OTR__objects/object_sa/gSariaWaitArmsToSideAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaWaitArmsToSideAnim[] = dgSariaWaitArmsToSideAnim; -#else -static const char gSariaWaitArmsToSideAnim[] __attribute__((aligned (2))) = dgSariaWaitArmsToSideAnim; -#endif - -#define dgSariaPlayingOcarinaAnim "__OTR__objects/object_sa/gSariaPlayingOcarinaAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaPlayingOcarinaAnim[] = dgSariaPlayingOcarinaAnim; -#else -static const char gSariaPlayingOcarinaAnim[] __attribute__((aligned (2))) = dgSariaPlayingOcarinaAnim; -#endif - -#define dgSariaStopPlayingOcarinaAnim "__OTR__objects/object_sa/gSariaStopPlayingOcarinaAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaStopPlayingOcarinaAnim[] = dgSariaStopPlayingOcarinaAnim; -#else -static const char gSariaStopPlayingOcarinaAnim[] __attribute__((aligned (2))) = dgSariaStopPlayingOcarinaAnim; -#endif - -#define dgSariaLinkLearnedSariasSongAnim "__OTR__objects/object_sa/gSariaLinkLearnedSariasSongAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLinkLearnedSariasSongAnim[] = dgSariaLinkLearnedSariasSongAnim; -#else -static const char gSariaLinkLearnedSariasSongAnim[] __attribute__((aligned (2))) = dgSariaLinkLearnedSariasSongAnim; -#endif - -#define dgSariaReturnToOcarinaAnim "__OTR__objects/object_sa/gSariaReturnToOcarinaAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaReturnToOcarinaAnim[] = dgSariaReturnToOcarinaAnim; -#else -static const char gSariaReturnToOcarinaAnim[] __attribute__((aligned (2))) = dgSariaReturnToOcarinaAnim; -#endif - -#define dgSariaGiveForestMedallionAnim "__OTR__objects/object_sa/gSariaGiveForestMedallionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaGiveForestMedallionAnim[] = dgSariaGiveForestMedallionAnim; -#else -static const char gSariaGiveForestMedallionAnim[] __attribute__((aligned (2))) = dgSariaGiveForestMedallionAnim; -#endif - -#define dgSariaGiveForestMedallionStandAnim "__OTR__objects/object_sa/gSariaGiveForestMedallionStandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaGiveForestMedallionStandAnim[] = dgSariaGiveForestMedallionStandAnim; -#else -static const char gSariaGiveForestMedallionStandAnim[] __attribute__((aligned (2))) = dgSariaGiveForestMedallionStandAnim; -#endif - -#define dgSariaLookUpArmExtendedAnim "__OTR__objects/object_sa/gSariaLookUpArmExtendedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLookUpArmExtendedAnim[] = dgSariaLookUpArmExtendedAnim; -#else -static const char gSariaLookUpArmExtendedAnim[] __attribute__((aligned (2))) = dgSariaLookUpArmExtendedAnim; -#endif - -#define dgSariaRunAnim "__OTR__objects/object_sa/gSariaRunAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRunAnim[] = dgSariaRunAnim; -#else -static const char gSariaRunAnim[] __attribute__((aligned (2))) = dgSariaRunAnim; -#endif - -#define dgSariaWaveAnim "__OTR__objects/object_sa/gSariaWaveAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaWaveAnim[] = dgSariaWaveAnim; -#else -static const char gSariaWaveAnim[] __attribute__((aligned (2))) = dgSariaWaveAnim; -#endif - -#define dgSariaSitting1Anim "__OTR__objects/object_sa/gSariaSitting1Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaSitting1Anim[] = dgSariaSitting1Anim; -#else -static const char gSariaSitting1Anim[] __attribute__((aligned (2))) = dgSariaSitting1Anim; -#endif - -#define dgSariaSitting2Anim "__OTR__objects/object_sa/gSariaSitting2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaSitting2Anim[] = dgSariaSitting2Anim; -#else -static const char gSariaSitting2Anim[] __attribute__((aligned (2))) = dgSariaSitting2Anim; -#endif - -#define dgSariaSitting3Anim "__OTR__objects/object_sa/gSariaSitting3Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaSitting3Anim[] = dgSariaSitting3Anim; -#else -static const char gSariaSitting3Anim[] __attribute__((aligned (2))) = dgSariaSitting3Anim; -#endif - -#define dgSariaLookOverShoulderAnim "__OTR__objects/object_sa/gSariaLookOverShoulderAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLookOverShoulderAnim[] = dgSariaLookOverShoulderAnim; -#else -static const char gSariaLookOverShoulderAnim[] __attribute__((aligned (2))) = dgSariaLookOverShoulderAnim; -#endif - -#define dgSariaWaitOnBridgeAnim "__OTR__objects/object_sa/gSariaWaitOnBridgeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaWaitOnBridgeAnim[] = dgSariaWaitOnBridgeAnim; -#else -static const char gSariaWaitOnBridgeAnim[] __attribute__((aligned (2))) = dgSariaWaitOnBridgeAnim; -#endif - -#define dgSariaTransitionHandsSideToBackAnim "__OTR__objects/object_sa/gSariaTransitionHandsSideToBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaTransitionHandsSideToBackAnim[] = dgSariaTransitionHandsSideToBackAnim; -#else -static const char gSariaTransitionHandsSideToBackAnim[] __attribute__((aligned (2))) = dgSariaTransitionHandsSideToBackAnim; -#endif - -#define dgSariaHandsOutAnim "__OTR__objects/object_sa/gSariaHandsOutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaHandsOutAnim[] = dgSariaHandsOutAnim; -#else -static const char gSariaHandsOutAnim[] __attribute__((aligned (2))) = dgSariaHandsOutAnim; -#endif - -#define dgSariaTransitionHandsSideToHipsAnim "__OTR__objects/object_sa/gSariaTransitionHandsSideToHipsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaTransitionHandsSideToHipsAnim[] = dgSariaTransitionHandsSideToHipsAnim; -#else -static const char gSariaTransitionHandsSideToHipsAnim[] __attribute__((aligned (2))) = dgSariaTransitionHandsSideToHipsAnim; -#endif - -#define dgSariaHandsBehindBackWaitAnim "__OTR__objects/object_sa/gSariaHandsBehindBackWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaHandsBehindBackWaitAnim[] = dgSariaHandsBehindBackWaitAnim; -#else -static const char gSariaHandsBehindBackWaitAnim[] __attribute__((aligned (2))) = dgSariaHandsBehindBackWaitAnim; -#endif - -#define dgSariaTransitionHandsSideToChestToSideAnim "__OTR__objects/object_sa/gSariaTransitionHandsSideToChestToSideAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaTransitionHandsSideToChestToSideAnim[] = dgSariaTransitionHandsSideToChestToSideAnim; -#else -static const char gSariaTransitionHandsSideToChestToSideAnim[] __attribute__((aligned (2))) = dgSariaTransitionHandsSideToChestToSideAnim; -#endif - -#define dgSariaRightArmExtendedWaitAnim "__OTR__objects/object_sa/gSariaRightArmExtendedWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRightArmExtendedWaitAnim[] = dgSariaRightArmExtendedWaitAnim; -#else -static const char gSariaRightArmExtendedWaitAnim[] __attribute__((aligned (2))) = dgSariaRightArmExtendedWaitAnim; -#endif - -#define dgSariaGiveLinkOcarinaAnim "__OTR__objects/object_sa/gSariaGiveLinkOcarinaAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaGiveLinkOcarinaAnim[] = dgSariaGiveLinkOcarinaAnim; -#else -static const char gSariaGiveLinkOcarinaAnim[] __attribute__((aligned (2))) = dgSariaGiveLinkOcarinaAnim; -#endif - -#define dgSariaHoldOutOcarinaAnim "__OTR__objects/object_sa/gSariaHoldOutOcarinaAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaHoldOutOcarinaAnim[] = dgSariaHoldOutOcarinaAnim; -#else -static const char gSariaHoldOutOcarinaAnim[] __attribute__((aligned (2))) = dgSariaHoldOutOcarinaAnim; -#endif - -#define dgSariaHoldOcarinaAnim "__OTR__objects/object_sa/gSariaHoldOcarinaAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaHoldOcarinaAnim[] = dgSariaHoldOcarinaAnim; -#else -static const char gSariaHoldOcarinaAnim[] __attribute__((aligned (2))) = dgSariaHoldOcarinaAnim; -#endif - -#define dgSariaStandHandsOnHipsAnim "__OTR__objects/object_sa/gSariaStandHandsOnHipsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaStandHandsOnHipsAnim[] = dgSariaStandHandsOnHipsAnim; -#else -static const char gSariaStandHandsOnHipsAnim[] __attribute__((aligned (2))) = dgSariaStandHandsOnHipsAnim; -#endif - -#define dgSariaExtendRightArmAnim "__OTR__objects/object_sa/gSariaExtendRightArmAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaExtendRightArmAnim[] = dgSariaExtendRightArmAnim; -#else -static const char gSariaExtendRightArmAnim[] __attribute__((aligned (2))) = dgSariaExtendRightArmAnim; -#endif - -#define dgSariaHandsOnFaceAnim "__OTR__objects/object_sa/gSariaHandsOnFaceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaHandsOnFaceAnim[] = dgSariaHandsOnFaceAnim; -#else -static const char gSariaHandsOnFaceAnim[] __attribute__((aligned (2))) = dgSariaHandsOnFaceAnim; -#endif - -#define dgSariaHeadDL "__OTR__objects/object_sa/gSariaHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaHeadDL[] = dgSariaHeadDL; -#else -static const char gSariaHeadDL[] __attribute__((aligned (2))) = dgSariaHeadDL; -#endif - -#define dgSariaLeftHandDL "__OTR__objects/object_sa/gSariaLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLeftHandDL[] = dgSariaLeftHandDL; -#else -static const char gSariaLeftHandDL[] __attribute__((aligned (2))) = dgSariaLeftHandDL; -#endif - -#define dgSariaRightHandDL "__OTR__objects/object_sa/gSariaRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRightHandDL[] = dgSariaRightHandDL; -#else -static const char gSariaRightHandDL[] __attribute__((aligned (2))) = dgSariaRightHandDL; -#endif - -#define dgSariaRightHandAndOcarinaDL "__OTR__objects/object_sa/gSariaRightHandAndOcarinaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRightHandAndOcarinaDL[] = dgSariaRightHandAndOcarinaDL; -#else -static const char gSariaRightHandAndOcarinaDL[] __attribute__((aligned (2))) = dgSariaRightHandAndOcarinaDL; -#endif - -#define dgSariaChestDL "__OTR__objects/object_sa/gSariaChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaChestDL[] = dgSariaChestDL; -#else -static const char gSariaChestDL[] __attribute__((aligned (2))) = dgSariaChestDL; -#endif - -#define dgSariaRightShoulderDL "__OTR__objects/object_sa/gSariaRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRightShoulderDL[] = dgSariaRightShoulderDL; -#else -static const char gSariaRightShoulderDL[] __attribute__((aligned (2))) = dgSariaRightShoulderDL; -#endif - -#define dgSariaRightArmDL "__OTR__objects/object_sa/gSariaRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRightArmDL[] = dgSariaRightArmDL; -#else -static const char gSariaRightArmDL[] __attribute__((aligned (2))) = dgSariaRightArmDL; -#endif - -#define dgSariaLeftShoulderDL "__OTR__objects/object_sa/gSariaLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLeftShoulderDL[] = dgSariaLeftShoulderDL; -#else -static const char gSariaLeftShoulderDL[] __attribute__((aligned (2))) = dgSariaLeftShoulderDL; -#endif - -#define dgSariaLeftArmDL "__OTR__objects/object_sa/gSariaLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLeftArmDL[] = dgSariaLeftArmDL; -#else -static const char gSariaLeftArmDL[] __attribute__((aligned (2))) = dgSariaLeftArmDL; -#endif - -#define dgSariaWaistDL "__OTR__objects/object_sa/gSariaWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaWaistDL[] = dgSariaWaistDL; -#else -static const char gSariaWaistDL[] __attribute__((aligned (2))) = dgSariaWaistDL; -#endif - -#define dgSariaRightThighDL "__OTR__objects/object_sa/gSariaRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRightThighDL[] = dgSariaRightThighDL; -#else -static const char gSariaRightThighDL[] __attribute__((aligned (2))) = dgSariaRightThighDL; -#endif - -#define dgSariaRightShinDL "__OTR__objects/object_sa/gSariaRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRightShinDL[] = dgSariaRightShinDL; -#else -static const char gSariaRightShinDL[] __attribute__((aligned (2))) = dgSariaRightShinDL; -#endif - -#define dgSariaRightFootDL "__OTR__objects/object_sa/gSariaRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaRightFootDL[] = dgSariaRightFootDL; -#else -static const char gSariaRightFootDL[] __attribute__((aligned (2))) = dgSariaRightFootDL; -#endif - -#define dgSariaLeftThighDL "__OTR__objects/object_sa/gSariaLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLeftThighDL[] = dgSariaLeftThighDL; -#else -static const char gSariaLeftThighDL[] __attribute__((aligned (2))) = dgSariaLeftThighDL; -#endif - -#define dgSariaLeftShinDL "__OTR__objects/object_sa/gSariaLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLeftShinDL[] = dgSariaLeftShinDL; -#else -static const char gSariaLeftShinDL[] __attribute__((aligned (2))) = dgSariaLeftShinDL; -#endif - -#define dgSariaLeftFootDL "__OTR__objects/object_sa/gSariaLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaLeftFootDL[] = dgSariaLeftFootDL; -#else -static const char gSariaLeftFootDL[] __attribute__((aligned (2))) = dgSariaLeftFootDL; -#endif - -#define dgSariaClothesTLUT "__OTR__objects/object_sa/gSariaClothesTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaClothesTLUT[] = dgSariaClothesTLUT; -#else -static const char gSariaClothesTLUT[] __attribute__((aligned (2))) = dgSariaClothesTLUT; -#endif - -#define dgSariaMouthTLUT "__OTR__objects/object_sa/gSariaMouthTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaMouthTLUT[] = dgSariaMouthTLUT; -#else -static const char gSariaMouthTLUT[] __attribute__((aligned (2))) = dgSariaMouthTLUT; -#endif - -#define dgSariaEyeTLUT "__OTR__objects/object_sa/gSariaEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaEyeTLUT[] = dgSariaEyeTLUT; -#else -static const char gSariaEyeTLUT[] __attribute__((aligned (2))) = dgSariaEyeTLUT; -#endif - -#define dgSariaSkinTLUT "__OTR__objects/object_sa/gSariaSkinTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaSkinTLUT[] = dgSariaSkinTLUT; -#else -static const char gSariaSkinTLUT[] __attribute__((aligned (2))) = dgSariaSkinTLUT; -#endif - -#define dgSariaBootsTex "__OTR__objects/object_sa/gSariaBootsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaBootsTex[] = dgSariaBootsTex; -#else -static const char gSariaBootsTex[] __attribute__((aligned (2))) = dgSariaBootsTex; -#endif - -#define dgSariaGreenTex "__OTR__objects/object_sa/gSariaGreenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaGreenTex[] = dgSariaGreenTex; -#else -static const char gSariaGreenTex[] __attribute__((aligned (2))) = dgSariaGreenTex; -#endif - -#define dgSariaKneeTex "__OTR__objects/object_sa/gSariaKneeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaKneeTex[] = dgSariaKneeTex; -#else -static const char gSariaKneeTex[] __attribute__((aligned (2))) = dgSariaKneeTex; -#endif - -#define dgSariaTorsoTex "__OTR__objects/object_sa/gSariaTorsoTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaTorsoTex[] = dgSariaTorsoTex; -#else -static const char gSariaTorsoTex[] __attribute__((aligned (2))) = dgSariaTorsoTex; -#endif - -#define dgSariaBeltTex "__OTR__objects/object_sa/gSariaBeltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaBeltTex[] = dgSariaBeltTex; -#else -static const char gSariaBeltTex[] __attribute__((aligned (2))) = dgSariaBeltTex; -#endif - -#define dgSariaUnkGreenTex "__OTR__objects/object_sa/gSariaUnkGreenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaUnkGreenTex[] = dgSariaUnkGreenTex; -#else -static const char gSariaUnkGreenTex[] __attribute__((aligned (2))) = dgSariaUnkGreenTex; -#endif - -#define dgSariaUnusedHandTex "__OTR__objects/object_sa/gSariaUnusedHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaUnusedHandTex[] = dgSariaUnusedHandTex; -#else -static const char gSariaUnusedHandTex[] __attribute__((aligned (2))) = dgSariaUnusedHandTex; -#endif - -#define dgSariaSleeveTex "__OTR__objects/object_sa/gSariaSleeveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaSleeveTex[] = dgSariaSleeveTex; -#else -static const char gSariaSleeveTex[] __attribute__((aligned (2))) = dgSariaSleeveTex; -#endif - -#define dgSariaHairTex "__OTR__objects/object_sa/gSariaHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaHairTex[] = dgSariaHairTex; -#else -static const char gSariaHairTex[] __attribute__((aligned (2))) = dgSariaHairTex; -#endif - -#define dgSariaEyeOpenTex "__OTR__objects/object_sa/gSariaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaEyeOpenTex[] = dgSariaEyeOpenTex; -#else -static const char gSariaEyeOpenTex[] __attribute__((aligned (2))) = dgSariaEyeOpenTex; -#endif - -#define dgSariaMouthClosedTex "__OTR__objects/object_sa/gSariaMouthClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaMouthClosedTex[] = dgSariaMouthClosedTex; -#else -static const char gSariaMouthClosedTex[] __attribute__((aligned (2))) = dgSariaMouthClosedTex; -#endif - -#define dgSariaSkinTex "__OTR__objects/object_sa/gSariaSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaSkinTex[] = dgSariaSkinTex; -#else -static const char gSariaSkinTex[] __attribute__((aligned (2))) = dgSariaSkinTex; -#endif - -#define dgSariaMouthClosed2Tex "__OTR__objects/object_sa/gSariaMouthClosed2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaMouthClosed2Tex[] = dgSariaMouthClosed2Tex; -#else -static const char gSariaMouthClosed2Tex[] __attribute__((aligned (2))) = dgSariaMouthClosed2Tex; -#endif - -#define dgSariaEarTex "__OTR__objects/object_sa/gSariaEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaEarTex[] = dgSariaEarTex; -#else -static const char gSariaEarTex[] __attribute__((aligned (2))) = dgSariaEarTex; -#endif - -#define dgSariaCollarTex "__OTR__objects/object_sa/gSariaCollarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaCollarTex[] = dgSariaCollarTex; -#else -static const char gSariaCollarTex[] __attribute__((aligned (2))) = dgSariaCollarTex; -#endif - -#define dgSariaHandTex "__OTR__objects/object_sa/gSariaHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaHandTex[] = dgSariaHandTex; -#else -static const char gSariaHandTex[] __attribute__((aligned (2))) = dgSariaHandTex; -#endif - -#define dgSariaEyeClosedTex "__OTR__objects/object_sa/gSariaEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaEyeClosedTex[] = dgSariaEyeClosedTex; -#else -static const char gSariaEyeClosedTex[] __attribute__((aligned (2))) = dgSariaEyeClosedTex; -#endif - -#define dgSariaEyeHalfTex "__OTR__objects/object_sa/gSariaEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaEyeHalfTex[] = dgSariaEyeHalfTex; -#else -static const char gSariaEyeHalfTex[] __attribute__((aligned (2))) = dgSariaEyeHalfTex; -#endif - -#define dgSariaFairyOcarinaTex "__OTR__objects/object_sa/gSariaFairyOcarinaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaFairyOcarinaTex[] = dgSariaFairyOcarinaTex; -#else -static const char gSariaFairyOcarinaTex[] __attribute__((aligned (2))) = dgSariaFairyOcarinaTex; -#endif - -#define dgSariaMouthSmilingOpenTex "__OTR__objects/object_sa/gSariaMouthSmilingOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaMouthSmilingOpenTex[] = dgSariaMouthSmilingOpenTex; -#else -static const char gSariaMouthSmilingOpenTex[] __attribute__((aligned (2))) = dgSariaMouthSmilingOpenTex; -#endif - -#define dgSariaMouthFrowningTex "__OTR__objects/object_sa/gSariaMouthFrowningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaMouthFrowningTex[] = dgSariaMouthFrowningTex; -#else -static const char gSariaMouthFrowningTex[] __attribute__((aligned (2))) = dgSariaMouthFrowningTex; -#endif - -#define dgSariaEyeSuprisedTex "__OTR__objects/object_sa/gSariaEyeSuprisedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaEyeSuprisedTex[] = dgSariaEyeSuprisedTex; -#else -static const char gSariaEyeSuprisedTex[] __attribute__((aligned (2))) = dgSariaEyeSuprisedTex; -#endif - -#define dgSariaMouthSuprisedTex "__OTR__objects/object_sa/gSariaMouthSuprisedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaMouthSuprisedTex[] = dgSariaMouthSuprisedTex; -#else -static const char gSariaMouthSuprisedTex[] __attribute__((aligned (2))) = dgSariaMouthSuprisedTex; -#endif - -#define dgSariaEyeSadTex "__OTR__objects/object_sa/gSariaEyeSadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariaEyeSadTex[] = dgSariaEyeSadTex; -#else -static const char gSariaEyeSadTex[] __attribute__((aligned (2))) = dgSariaEyeSadTex; -#endif - -#define dobject_saTex_002530 "__OTR__objects/object_sa/object_saTex_002530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_saTex_002530[] = dobject_saTex_002530; -#else -static const char object_saTex_002530[] __attribute__((aligned (2))) = dobject_saTex_002530; -#endif - +#include "align_asset_macro.h" + +#define dgSariaSkel "__OTR__objects/object_sa/gSariaSkel" +static const ALIGN_ASSET(2) char gSariaSkel[] = dgSariaSkel; + +#define dgSariaSealGanonAnim "__OTR__objects/object_sa/gSariaSealGanonAnim" +static const ALIGN_ASSET(2) char gSariaSealGanonAnim[] = dgSariaSealGanonAnim; + +#define dgSariaOcarinaToMouthAnim "__OTR__objects/object_sa/gSariaOcarinaToMouthAnim" +static const ALIGN_ASSET(2) char gSariaOcarinaToMouthAnim[] = dgSariaOcarinaToMouthAnim; + +#define dgSariaWaitArmsToSideAnim "__OTR__objects/object_sa/gSariaWaitArmsToSideAnim" +static const ALIGN_ASSET(2) char gSariaWaitArmsToSideAnim[] = dgSariaWaitArmsToSideAnim; + +#define dgSariaPlayingOcarinaAnim "__OTR__objects/object_sa/gSariaPlayingOcarinaAnim" +static const ALIGN_ASSET(2) char gSariaPlayingOcarinaAnim[] = dgSariaPlayingOcarinaAnim; + +#define dgSariaStopPlayingOcarinaAnim "__OTR__objects/object_sa/gSariaStopPlayingOcarinaAnim" +static const ALIGN_ASSET(2) char gSariaStopPlayingOcarinaAnim[] = dgSariaStopPlayingOcarinaAnim; + +#define dgSariaLinkLearnedSariasSongAnim "__OTR__objects/object_sa/gSariaLinkLearnedSariasSongAnim" +static const ALIGN_ASSET(2) char gSariaLinkLearnedSariasSongAnim[] = dgSariaLinkLearnedSariasSongAnim; + +#define dgSariaReturnToOcarinaAnim "__OTR__objects/object_sa/gSariaReturnToOcarinaAnim" +static const ALIGN_ASSET(2) char gSariaReturnToOcarinaAnim[] = dgSariaReturnToOcarinaAnim; + +#define dgSariaGiveForestMedallionAnim "__OTR__objects/object_sa/gSariaGiveForestMedallionAnim" +static const ALIGN_ASSET(2) char gSariaGiveForestMedallionAnim[] = dgSariaGiveForestMedallionAnim; + +#define dgSariaGiveForestMedallionStandAnim "__OTR__objects/object_sa/gSariaGiveForestMedallionStandAnim" +static const ALIGN_ASSET(2) char gSariaGiveForestMedallionStandAnim[] = dgSariaGiveForestMedallionStandAnim; + +#define dgSariaLookUpArmExtendedAnim "__OTR__objects/object_sa/gSariaLookUpArmExtendedAnim" +static const ALIGN_ASSET(2) char gSariaLookUpArmExtendedAnim[] = dgSariaLookUpArmExtendedAnim; + +#define dgSariaRunAnim "__OTR__objects/object_sa/gSariaRunAnim" +static const ALIGN_ASSET(2) char gSariaRunAnim[] = dgSariaRunAnim; + +#define dgSariaWaveAnim "__OTR__objects/object_sa/gSariaWaveAnim" +static const ALIGN_ASSET(2) char gSariaWaveAnim[] = dgSariaWaveAnim; + +#define dgSariaSitting1Anim "__OTR__objects/object_sa/gSariaSitting1Anim" +static const ALIGN_ASSET(2) char gSariaSitting1Anim[] = dgSariaSitting1Anim; + +#define dgSariaSitting2Anim "__OTR__objects/object_sa/gSariaSitting2Anim" +static const ALIGN_ASSET(2) char gSariaSitting2Anim[] = dgSariaSitting2Anim; + +#define dgSariaSitting3Anim "__OTR__objects/object_sa/gSariaSitting3Anim" +static const ALIGN_ASSET(2) char gSariaSitting3Anim[] = dgSariaSitting3Anim; + +#define dgSariaLookOverShoulderAnim "__OTR__objects/object_sa/gSariaLookOverShoulderAnim" +static const ALIGN_ASSET(2) char gSariaLookOverShoulderAnim[] = dgSariaLookOverShoulderAnim; + +#define dgSariaWaitOnBridgeAnim "__OTR__objects/object_sa/gSariaWaitOnBridgeAnim" +static const ALIGN_ASSET(2) char gSariaWaitOnBridgeAnim[] = dgSariaWaitOnBridgeAnim; + +#define dgSariaTransitionHandsSideToBackAnim "__OTR__objects/object_sa/gSariaTransitionHandsSideToBackAnim" +static const ALIGN_ASSET(2) char gSariaTransitionHandsSideToBackAnim[] = dgSariaTransitionHandsSideToBackAnim; + +#define dgSariaHandsOutAnim "__OTR__objects/object_sa/gSariaHandsOutAnim" +static const ALIGN_ASSET(2) char gSariaHandsOutAnim[] = dgSariaHandsOutAnim; + +#define dgSariaTransitionHandsSideToHipsAnim "__OTR__objects/object_sa/gSariaTransitionHandsSideToHipsAnim" +static const ALIGN_ASSET(2) char gSariaTransitionHandsSideToHipsAnim[] = dgSariaTransitionHandsSideToHipsAnim; + +#define dgSariaHandsBehindBackWaitAnim "__OTR__objects/object_sa/gSariaHandsBehindBackWaitAnim" +static const ALIGN_ASSET(2) char gSariaHandsBehindBackWaitAnim[] = dgSariaHandsBehindBackWaitAnim; + +#define dgSariaTransitionHandsSideToChestToSideAnim "__OTR__objects/object_sa/gSariaTransitionHandsSideToChestToSideAnim" +static const ALIGN_ASSET(2) char gSariaTransitionHandsSideToChestToSideAnim[] = dgSariaTransitionHandsSideToChestToSideAnim; + +#define dgSariaRightArmExtendedWaitAnim "__OTR__objects/object_sa/gSariaRightArmExtendedWaitAnim" +static const ALIGN_ASSET(2) char gSariaRightArmExtendedWaitAnim[] = dgSariaRightArmExtendedWaitAnim; + +#define dgSariaGiveLinkOcarinaAnim "__OTR__objects/object_sa/gSariaGiveLinkOcarinaAnim" +static const ALIGN_ASSET(2) char gSariaGiveLinkOcarinaAnim[] = dgSariaGiveLinkOcarinaAnim; + +#define dgSariaHoldOutOcarinaAnim "__OTR__objects/object_sa/gSariaHoldOutOcarinaAnim" +static const ALIGN_ASSET(2) char gSariaHoldOutOcarinaAnim[] = dgSariaHoldOutOcarinaAnim; + +#define dgSariaHoldOcarinaAnim "__OTR__objects/object_sa/gSariaHoldOcarinaAnim" +static const ALIGN_ASSET(2) char gSariaHoldOcarinaAnim[] = dgSariaHoldOcarinaAnim; + +#define dgSariaStandHandsOnHipsAnim "__OTR__objects/object_sa/gSariaStandHandsOnHipsAnim" +static const ALIGN_ASSET(2) char gSariaStandHandsOnHipsAnim[] = dgSariaStandHandsOnHipsAnim; + +#define dgSariaExtendRightArmAnim "__OTR__objects/object_sa/gSariaExtendRightArmAnim" +static const ALIGN_ASSET(2) char gSariaExtendRightArmAnim[] = dgSariaExtendRightArmAnim; + +#define dgSariaHandsOnFaceAnim "__OTR__objects/object_sa/gSariaHandsOnFaceAnim" +static const ALIGN_ASSET(2) char gSariaHandsOnFaceAnim[] = dgSariaHandsOnFaceAnim; + +#define dgSariaHeadDL "__OTR__objects/object_sa/gSariaHeadDL" +static const ALIGN_ASSET(2) char gSariaHeadDL[] = dgSariaHeadDL; + +#define dgSariaLeftHandDL "__OTR__objects/object_sa/gSariaLeftHandDL" +static const ALIGN_ASSET(2) char gSariaLeftHandDL[] = dgSariaLeftHandDL; + +#define dgSariaRightHandDL "__OTR__objects/object_sa/gSariaRightHandDL" +static const ALIGN_ASSET(2) char gSariaRightHandDL[] = dgSariaRightHandDL; + +#define dgSariaRightHandAndOcarinaDL "__OTR__objects/object_sa/gSariaRightHandAndOcarinaDL" +static const ALIGN_ASSET(2) char gSariaRightHandAndOcarinaDL[] = dgSariaRightHandAndOcarinaDL; + +#define dgSariaChestDL "__OTR__objects/object_sa/gSariaChestDL" +static const ALIGN_ASSET(2) char gSariaChestDL[] = dgSariaChestDL; + +#define dgSariaRightShoulderDL "__OTR__objects/object_sa/gSariaRightShoulderDL" +static const ALIGN_ASSET(2) char gSariaRightShoulderDL[] = dgSariaRightShoulderDL; + +#define dgSariaRightArmDL "__OTR__objects/object_sa/gSariaRightArmDL" +static const ALIGN_ASSET(2) char gSariaRightArmDL[] = dgSariaRightArmDL; + +#define dgSariaLeftShoulderDL "__OTR__objects/object_sa/gSariaLeftShoulderDL" +static const ALIGN_ASSET(2) char gSariaLeftShoulderDL[] = dgSariaLeftShoulderDL; + +#define dgSariaLeftArmDL "__OTR__objects/object_sa/gSariaLeftArmDL" +static const ALIGN_ASSET(2) char gSariaLeftArmDL[] = dgSariaLeftArmDL; + +#define dgSariaWaistDL "__OTR__objects/object_sa/gSariaWaistDL" +static const ALIGN_ASSET(2) char gSariaWaistDL[] = dgSariaWaistDL; + +#define dgSariaRightThighDL "__OTR__objects/object_sa/gSariaRightThighDL" +static const ALIGN_ASSET(2) char gSariaRightThighDL[] = dgSariaRightThighDL; + +#define dgSariaRightShinDL "__OTR__objects/object_sa/gSariaRightShinDL" +static const ALIGN_ASSET(2) char gSariaRightShinDL[] = dgSariaRightShinDL; + +#define dgSariaRightFootDL "__OTR__objects/object_sa/gSariaRightFootDL" +static const ALIGN_ASSET(2) char gSariaRightFootDL[] = dgSariaRightFootDL; + +#define dgSariaLeftThighDL "__OTR__objects/object_sa/gSariaLeftThighDL" +static const ALIGN_ASSET(2) char gSariaLeftThighDL[] = dgSariaLeftThighDL; + +#define dgSariaLeftShinDL "__OTR__objects/object_sa/gSariaLeftShinDL" +static const ALIGN_ASSET(2) char gSariaLeftShinDL[] = dgSariaLeftShinDL; + +#define dgSariaLeftFootDL "__OTR__objects/object_sa/gSariaLeftFootDL" +static const ALIGN_ASSET(2) char gSariaLeftFootDL[] = dgSariaLeftFootDL; + +#define dgSariaClothesTLUT "__OTR__objects/object_sa/gSariaClothesTLUT" +static const ALIGN_ASSET(2) char gSariaClothesTLUT[] = dgSariaClothesTLUT; + +#define dgSariaMouthTLUT "__OTR__objects/object_sa/gSariaMouthTLUT" +static const ALIGN_ASSET(2) char gSariaMouthTLUT[] = dgSariaMouthTLUT; + +#define dgSariaEyeTLUT "__OTR__objects/object_sa/gSariaEyeTLUT" +static const ALIGN_ASSET(2) char gSariaEyeTLUT[] = dgSariaEyeTLUT; + +#define dgSariaSkinTLUT "__OTR__objects/object_sa/gSariaSkinTLUT" +static const ALIGN_ASSET(2) char gSariaSkinTLUT[] = dgSariaSkinTLUT; + +#define dgSariaBootsTex "__OTR__objects/object_sa/gSariaBootsTex" +static const ALIGN_ASSET(2) char gSariaBootsTex[] = dgSariaBootsTex; + +#define dgSariaGreenTex "__OTR__objects/object_sa/gSariaGreenTex" +static const ALIGN_ASSET(2) char gSariaGreenTex[] = dgSariaGreenTex; + +#define dgSariaKneeTex "__OTR__objects/object_sa/gSariaKneeTex" +static const ALIGN_ASSET(2) char gSariaKneeTex[] = dgSariaKneeTex; + +#define dgSariaTorsoTex "__OTR__objects/object_sa/gSariaTorsoTex" +static const ALIGN_ASSET(2) char gSariaTorsoTex[] = dgSariaTorsoTex; + +#define dgSariaBeltTex "__OTR__objects/object_sa/gSariaBeltTex" +static const ALIGN_ASSET(2) char gSariaBeltTex[] = dgSariaBeltTex; + +#define dgSariaUnkGreenTex "__OTR__objects/object_sa/gSariaUnkGreenTex" +static const ALIGN_ASSET(2) char gSariaUnkGreenTex[] = dgSariaUnkGreenTex; + +#define dgSariaUnusedHandTex "__OTR__objects/object_sa/gSariaUnusedHandTex" +static const ALIGN_ASSET(2) char gSariaUnusedHandTex[] = dgSariaUnusedHandTex; + +#define dgSariaSleeveTex "__OTR__objects/object_sa/gSariaSleeveTex" +static const ALIGN_ASSET(2) char gSariaSleeveTex[] = dgSariaSleeveTex; + +#define dgSariaHairTex "__OTR__objects/object_sa/gSariaHairTex" +static const ALIGN_ASSET(2) char gSariaHairTex[] = dgSariaHairTex; + +#define dgSariaEyeOpenTex "__OTR__objects/object_sa/gSariaEyeOpenTex" +static const ALIGN_ASSET(2) char gSariaEyeOpenTex[] = dgSariaEyeOpenTex; + +#define dgSariaMouthClosedTex "__OTR__objects/object_sa/gSariaMouthClosedTex" +static const ALIGN_ASSET(2) char gSariaMouthClosedTex[] = dgSariaMouthClosedTex; + +#define dgSariaSkinTex "__OTR__objects/object_sa/gSariaSkinTex" +static const ALIGN_ASSET(2) char gSariaSkinTex[] = dgSariaSkinTex; + +#define dgSariaMouthClosed2Tex "__OTR__objects/object_sa/gSariaMouthClosed2Tex" +static const ALIGN_ASSET(2) char gSariaMouthClosed2Tex[] = dgSariaMouthClosed2Tex; + +#define dgSariaEarTex "__OTR__objects/object_sa/gSariaEarTex" +static const ALIGN_ASSET(2) char gSariaEarTex[] = dgSariaEarTex; + +#define dgSariaCollarTex "__OTR__objects/object_sa/gSariaCollarTex" +static const ALIGN_ASSET(2) char gSariaCollarTex[] = dgSariaCollarTex; + +#define dgSariaHandTex "__OTR__objects/object_sa/gSariaHandTex" +static const ALIGN_ASSET(2) char gSariaHandTex[] = dgSariaHandTex; + +#define dgSariaEyeClosedTex "__OTR__objects/object_sa/gSariaEyeClosedTex" +static const ALIGN_ASSET(2) char gSariaEyeClosedTex[] = dgSariaEyeClosedTex; + +#define dgSariaEyeHalfTex "__OTR__objects/object_sa/gSariaEyeHalfTex" +static const ALIGN_ASSET(2) char gSariaEyeHalfTex[] = dgSariaEyeHalfTex; + +#define dgSariaFairyOcarinaTex "__OTR__objects/object_sa/gSariaFairyOcarinaTex" +static const ALIGN_ASSET(2) char gSariaFairyOcarinaTex[] = dgSariaFairyOcarinaTex; + +#define dgSariaMouthSmilingOpenTex "__OTR__objects/object_sa/gSariaMouthSmilingOpenTex" +static const ALIGN_ASSET(2) char gSariaMouthSmilingOpenTex[] = dgSariaMouthSmilingOpenTex; + +#define dgSariaMouthFrowningTex "__OTR__objects/object_sa/gSariaMouthFrowningTex" +static const ALIGN_ASSET(2) char gSariaMouthFrowningTex[] = dgSariaMouthFrowningTex; + +#define dgSariaEyeSuprisedTex "__OTR__objects/object_sa/gSariaEyeSuprisedTex" +static const ALIGN_ASSET(2) char gSariaEyeSuprisedTex[] = dgSariaEyeSuprisedTex; + +#define dgSariaMouthSuprisedTex "__OTR__objects/object_sa/gSariaMouthSuprisedTex" +static const ALIGN_ASSET(2) char gSariaMouthSuprisedTex[] = dgSariaMouthSuprisedTex; + +#define dgSariaEyeSadTex "__OTR__objects/object_sa/gSariaEyeSadTex" +static const ALIGN_ASSET(2) char gSariaEyeSadTex[] = dgSariaEyeSadTex; + +#define dobject_saTex_002530 "__OTR__objects/object_sa/object_saTex_002530" +static const ALIGN_ASSET(2) char object_saTex_002530[] = dobject_saTex_002530; \ No newline at end of file diff --git a/soh/assets/objects/object_sb/object_sb.h b/soh/assets/objects/object_sb/object_sb.h index 442cf14ba..a9f9d0667 100644 --- a/soh/assets/objects/object_sb/object_sb.h +++ b/soh/assets/objects/object_sb/object_sb.h @@ -1,128 +1,57 @@ #pragma once -#define dobject_sb_Anim_00004C "__OTR__objects/object_sb/object_sb_Anim_00004C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Anim_00004C[] = dobject_sb_Anim_00004C; -#else -static const char object_sb_Anim_00004C[] __attribute__((aligned (2))) = dobject_sb_Anim_00004C; -#endif - -#define dobject_sb_Anim_0000B4 "__OTR__objects/object_sb/object_sb_Anim_0000B4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Anim_0000B4[] = dobject_sb_Anim_0000B4; -#else -static const char object_sb_Anim_0000B4[] __attribute__((aligned (2))) = dobject_sb_Anim_0000B4; -#endif - -#define dobject_sb_Anim_000124 "__OTR__objects/object_sb/object_sb_Anim_000124" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Anim_000124[] = dobject_sb_Anim_000124; -#else -static const char object_sb_Anim_000124[] __attribute__((aligned (2))) = dobject_sb_Anim_000124; -#endif - -#define dobject_sb_Anim_000194 "__OTR__objects/object_sb/object_sb_Anim_000194" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Anim_000194[] = dobject_sb_Anim_000194; -#else -static const char object_sb_Anim_000194[] __attribute__((aligned (2))) = dobject_sb_Anim_000194; -#endif - -#define dobject_sb_Blob_0001A4 "__OTR__objects/object_sb/object_sb_Blob_0001A4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Blob_0001A4[] = dobject_sb_Blob_0001A4; -#else -static const char object_sb_Blob_0001A4[] __attribute__((aligned (2))) = dobject_sb_Blob_0001A4; -#endif - -#define dobject_sb_Blob_000840 "__OTR__objects/object_sb/object_sb_Blob_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Blob_000840[] = dobject_sb_Blob_000840; -#else -static const char object_sb_Blob_000840[] __attribute__((aligned (2))) = dobject_sb_Blob_000840; -#endif - -#define dobject_sb_DL_000D80 "__OTR__objects/object_sb/object_sb_DL_000D80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_DL_000D80[] = dobject_sb_DL_000D80; -#else -static const char object_sb_DL_000D80[] __attribute__((aligned (2))) = dobject_sb_DL_000D80; -#endif - -#define dobject_sb_DL_000E70 "__OTR__objects/object_sb/object_sb_DL_000E70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_DL_000E70[] = dobject_sb_DL_000E70; -#else -static const char object_sb_DL_000E70[] __attribute__((aligned (2))) = dobject_sb_DL_000E70; -#endif - -#define dobject_sb_Tex_001020 "__OTR__objects/object_sb/object_sb_Tex_001020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Tex_001020[] = dobject_sb_Tex_001020; -#else -static const char object_sb_Tex_001020[] __attribute__((aligned (2))) = dobject_sb_Tex_001020; -#endif - -#define dobject_sb_Tex_001820 "__OTR__objects/object_sb/object_sb_Tex_001820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Tex_001820[] = dobject_sb_Tex_001820; -#else -static const char object_sb_Tex_001820[] __attribute__((aligned (2))) = dobject_sb_Tex_001820; -#endif - -#define dobject_sb_Tex_001920 "__OTR__objects/object_sb/object_sb_Tex_001920" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Tex_001920[] = dobject_sb_Tex_001920; -#else -static const char object_sb_Tex_001920[] __attribute__((aligned (2))) = dobject_sb_Tex_001920; -#endif - -#define dobject_sb_Tex_0019A0 "__OTR__objects/object_sb/object_sb_Tex_0019A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Tex_0019A0[] = dobject_sb_Tex_0019A0; -#else -static const char object_sb_Tex_0019A0[] __attribute__((aligned (2))) = dobject_sb_Tex_0019A0; -#endif - -#define dobject_sb_Tex_001A20 "__OTR__objects/object_sb/object_sb_Tex_001A20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Tex_001A20[] = dobject_sb_Tex_001A20; -#else -static const char object_sb_Tex_001A20[] __attribute__((aligned (2))) = dobject_sb_Tex_001A20; -#endif - -#define dobject_sb_DL_0025B0 "__OTR__objects/object_sb/object_sb_DL_0025B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_DL_0025B0[] = dobject_sb_DL_0025B0; -#else -static const char object_sb_DL_0025B0[] __attribute__((aligned (2))) = dobject_sb_DL_0025B0; -#endif - -#define dobject_sb_DL_002858 "__OTR__objects/object_sb/object_sb_DL_002858" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_DL_002858[] = dobject_sb_DL_002858; -#else -static const char object_sb_DL_002858[] __attribute__((aligned (2))) = dobject_sb_DL_002858; -#endif - -#define dobject_sb_Tex_002AF0 "__OTR__objects/object_sb/object_sb_Tex_002AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Tex_002AF0[] = dobject_sb_Tex_002AF0; -#else -static const char object_sb_Tex_002AF0[] __attribute__((aligned (2))) = dobject_sb_Tex_002AF0; -#endif - -#define dobject_sb_Skel_002BF0 "__OTR__objects/object_sb/object_sb_Skel_002BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Skel_002BF0[] = dobject_sb_Skel_002BF0; -#else -static const char object_sb_Skel_002BF0[] __attribute__((aligned (2))) = dobject_sb_Skel_002BF0; -#endif - -#define dobject_sb_Anim_002C8C "__OTR__objects/object_sb/object_sb_Anim_002C8C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sb_Anim_002C8C[] = dobject_sb_Anim_002C8C; -#else -static const char object_sb_Anim_002C8C[] __attribute__((aligned (2))) = dobject_sb_Anim_002C8C; -#endif - +#include "align_asset_macro.h" + +#define dobject_sb_Anim_00004C "__OTR__objects/object_sb/object_sb_Anim_00004C" +static const ALIGN_ASSET(2) char object_sb_Anim_00004C[] = dobject_sb_Anim_00004C; + +#define dobject_sb_Anim_0000B4 "__OTR__objects/object_sb/object_sb_Anim_0000B4" +static const ALIGN_ASSET(2) char object_sb_Anim_0000B4[] = dobject_sb_Anim_0000B4; + +#define dobject_sb_Anim_000124 "__OTR__objects/object_sb/object_sb_Anim_000124" +static const ALIGN_ASSET(2) char object_sb_Anim_000124[] = dobject_sb_Anim_000124; + +#define dobject_sb_Anim_000194 "__OTR__objects/object_sb/object_sb_Anim_000194" +static const ALIGN_ASSET(2) char object_sb_Anim_000194[] = dobject_sb_Anim_000194; + +#define dobject_sb_Blob_0001A4 "__OTR__objects/object_sb/object_sb_Blob_0001A4" +static const ALIGN_ASSET(2) char object_sb_Blob_0001A4[] = dobject_sb_Blob_0001A4; + +#define dobject_sb_Blob_000840 "__OTR__objects/object_sb/object_sb_Blob_000840" +static const ALIGN_ASSET(2) char object_sb_Blob_000840[] = dobject_sb_Blob_000840; + +#define dobject_sb_DL_000D80 "__OTR__objects/object_sb/object_sb_DL_000D80" +static const ALIGN_ASSET(2) char object_sb_DL_000D80[] = dobject_sb_DL_000D80; + +#define dobject_sb_DL_000E70 "__OTR__objects/object_sb/object_sb_DL_000E70" +static const ALIGN_ASSET(2) char object_sb_DL_000E70[] = dobject_sb_DL_000E70; + +#define dobject_sb_Tex_001020 "__OTR__objects/object_sb/object_sb_Tex_001020" +static const ALIGN_ASSET(2) char object_sb_Tex_001020[] = dobject_sb_Tex_001020; + +#define dobject_sb_Tex_001820 "__OTR__objects/object_sb/object_sb_Tex_001820" +static const ALIGN_ASSET(2) char object_sb_Tex_001820[] = dobject_sb_Tex_001820; + +#define dobject_sb_Tex_001920 "__OTR__objects/object_sb/object_sb_Tex_001920" +static const ALIGN_ASSET(2) char object_sb_Tex_001920[] = dobject_sb_Tex_001920; + +#define dobject_sb_Tex_0019A0 "__OTR__objects/object_sb/object_sb_Tex_0019A0" +static const ALIGN_ASSET(2) char object_sb_Tex_0019A0[] = dobject_sb_Tex_0019A0; + +#define dobject_sb_Tex_001A20 "__OTR__objects/object_sb/object_sb_Tex_001A20" +static const ALIGN_ASSET(2) char object_sb_Tex_001A20[] = dobject_sb_Tex_001A20; + +#define dobject_sb_DL_0025B0 "__OTR__objects/object_sb/object_sb_DL_0025B0" +static const ALIGN_ASSET(2) char object_sb_DL_0025B0[] = dobject_sb_DL_0025B0; + +#define dobject_sb_DL_002858 "__OTR__objects/object_sb/object_sb_DL_002858" +static const ALIGN_ASSET(2) char object_sb_DL_002858[] = dobject_sb_DL_002858; + +#define dobject_sb_Tex_002AF0 "__OTR__objects/object_sb/object_sb_Tex_002AF0" +static const ALIGN_ASSET(2) char object_sb_Tex_002AF0[] = dobject_sb_Tex_002AF0; + +#define dobject_sb_Skel_002BF0 "__OTR__objects/object_sb/object_sb_Skel_002BF0" +static const ALIGN_ASSET(2) char object_sb_Skel_002BF0[] = dobject_sb_Skel_002BF0; + +#define dobject_sb_Anim_002C8C "__OTR__objects/object_sb/object_sb_Anim_002C8C" +static const ALIGN_ASSET(2) char object_sb_Anim_002C8C[] = dobject_sb_Anim_002C8C; \ No newline at end of file diff --git a/soh/assets/objects/object_sd/object_sd.h b/soh/assets/objects/object_sd/object_sd.h index e25ee5ae9..131be1dd6 100644 --- a/soh/assets/objects/object_sd/object_sd.h +++ b/soh/assets/objects/object_sd/object_sd.h @@ -1,310 +1,135 @@ #pragma once -#define dgEnHeishiSkel "__OTR__objects/object_sd/gEnHeishiSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiSkel[] = dgEnHeishiSkel; -#else -static const char gEnHeishiSkel[] __attribute__((aligned (2))) = dgEnHeishiSkel; -#endif - -#define dgEnHeishiSlamSpearAnim "__OTR__objects/object_sd/gEnHeishiSlamSpearAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiSlamSpearAnim[] = dgEnHeishiSlamSpearAnim; -#else -static const char gEnHeishiSlamSpearAnim[] __attribute__((aligned (2))) = dgEnHeishiSlamSpearAnim; -#endif - -#define dgEnHeishiWalkAnim "__OTR__objects/object_sd/gEnHeishiWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiWalkAnim[] = dgEnHeishiWalkAnim; -#else -static const char gEnHeishiWalkAnim[] __attribute__((aligned (2))) = dgEnHeishiWalkAnim; -#endif - -#define dgEnHeishiIdleAnim "__OTR__objects/object_sd/gEnHeishiIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiIdleAnim[] = dgEnHeishiIdleAnim; -#else -static const char gEnHeishiIdleAnim[] __attribute__((aligned (2))) = dgEnHeishiIdleAnim; -#endif - -#define dgEnHeishiDyingGuardTalkAnim "__OTR__objects/object_sd/gEnHeishiDyingGuardTalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiDyingGuardTalkAnim[] = dgEnHeishiDyingGuardTalkAnim; -#else -static const char gEnHeishiDyingGuardTalkAnim[] __attribute__((aligned (2))) = dgEnHeishiDyingGuardTalkAnim; -#endif - -#define dgEnHeishiDyingGuardDieAnim "__OTR__objects/object_sd/gEnHeishiDyingGuardDieAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiDyingGuardDieAnim[] = dgEnHeishiDyingGuardDieAnim; -#else -static const char gEnHeishiDyingGuardDieAnim[] __attribute__((aligned (2))) = dgEnHeishiDyingGuardDieAnim; -#endif - -#define dgEnHeishiDyingGuardAnim_00C444 "__OTR__objects/object_sd/gEnHeishiDyingGuardAnim_00C444" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiDyingGuardAnim_00C444[] = dgEnHeishiDyingGuardAnim_00C444; -#else -static const char gEnHeishiDyingGuardAnim_00C444[] __attribute__((aligned (2))) = dgEnHeishiDyingGuardAnim_00C444; -#endif - -#define dgHeishiKingGuardDL "__OTR__objects/object_sd/gHeishiKingGuardDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeishiKingGuardDL[] = dgHeishiKingGuardDL; -#else -static const char gHeishiKingGuardDL[] __attribute__((aligned (2))) = dgHeishiKingGuardDL; -#endif - -#define dgEnHeishiHeadDL "__OTR__objects/object_sd/gEnHeishiHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiHeadDL[] = dgEnHeishiHeadDL; -#else -static const char gEnHeishiHeadDL[] __attribute__((aligned (2))) = dgEnHeishiHeadDL; -#endif - -#define dgEnHeishiTorsoArmorDL "__OTR__objects/object_sd/gEnHeishiTorsoArmorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiTorsoArmorDL[] = dgEnHeishiTorsoArmorDL; -#else -static const char gEnHeishiTorsoArmorDL[] __attribute__((aligned (2))) = dgEnHeishiTorsoArmorDL; -#endif - -#define dgEnHeishiTorsoDL "__OTR__objects/object_sd/gEnHeishiTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiTorsoDL[] = dgEnHeishiTorsoDL; -#else -static const char gEnHeishiTorsoDL[] __attribute__((aligned (2))) = dgEnHeishiTorsoDL; -#endif - -#define dgEnHeishiRightFootDL "__OTR__objects/object_sd/gEnHeishiRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiRightFootDL[] = dgEnHeishiRightFootDL; -#else -static const char gEnHeishiRightFootDL[] __attribute__((aligned (2))) = dgEnHeishiRightFootDL; -#endif - -#define dgEnHeishiLeg1DL "__OTR__objects/object_sd/gEnHeishiLeg1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiLeg1DL[] = dgEnHeishiLeg1DL; -#else -static const char gEnHeishiLeg1DL[] __attribute__((aligned (2))) = dgEnHeishiLeg1DL; -#endif - -#define dgEnHeishiUpperLeg1DL "__OTR__objects/object_sd/gEnHeishiUpperLeg1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiUpperLeg1DL[] = dgEnHeishiUpperLeg1DL; -#else -static const char gEnHeishiUpperLeg1DL[] __attribute__((aligned (2))) = dgEnHeishiUpperLeg1DL; -#endif - -#define dgEnHeishiSpearDL "__OTR__objects/object_sd/gEnHeishiSpearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiSpearDL[] = dgEnHeishiSpearDL; -#else -static const char gEnHeishiSpearDL[] __attribute__((aligned (2))) = dgEnHeishiSpearDL; -#endif - -#define dgEnHeishiLowerRightArmDL "__OTR__objects/object_sd/gEnHeishiLowerRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiLowerRightArmDL[] = dgEnHeishiLowerRightArmDL; -#else -static const char gEnHeishiLowerRightArmDL[] __attribute__((aligned (2))) = dgEnHeishiLowerRightArmDL; -#endif - -#define dgEnHeishiUpperArmDL "__OTR__objects/object_sd/gEnHeishiUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiUpperArmDL[] = dgEnHeishiUpperArmDL; -#else -static const char gEnHeishiUpperArmDL[] __attribute__((aligned (2))) = dgEnHeishiUpperArmDL; -#endif - -#define dgEnHeishiLeftFootDL "__OTR__objects/object_sd/gEnHeishiLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiLeftFootDL[] = dgEnHeishiLeftFootDL; -#else -static const char gEnHeishiLeftFootDL[] __attribute__((aligned (2))) = dgEnHeishiLeftFootDL; -#endif - -#define dgEnHeishiLeftShinDL "__OTR__objects/object_sd/gEnHeishiLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiLeftShinDL[] = dgEnHeishiLeftShinDL; -#else -static const char gEnHeishiLeftShinDL[] __attribute__((aligned (2))) = dgEnHeishiLeftShinDL; -#endif - -#define dgEnHeishiLeftThighDL "__OTR__objects/object_sd/gEnHeishiLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiLeftThighDL[] = dgEnHeishiLeftThighDL; -#else -static const char gEnHeishiLeftThighDL[] __attribute__((aligned (2))) = dgEnHeishiLeftThighDL; -#endif - -#define dgEnHeishiHandDL "__OTR__objects/object_sd/gEnHeishiHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiHandDL[] = dgEnHeishiHandDL; -#else -static const char gEnHeishiHandDL[] __attribute__((aligned (2))) = dgEnHeishiHandDL; -#endif - -#define dgEnHeishiLeftArmDL "__OTR__objects/object_sd/gEnHeishiLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiLeftArmDL[] = dgEnHeishiLeftArmDL; -#else -static const char gEnHeishiLeftArmDL[] __attribute__((aligned (2))) = dgEnHeishiLeftArmDL; -#endif - -#define dgEnHeishiUpperLeftArmDL "__OTR__objects/object_sd/gEnHeishiUpperLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiUpperLeftArmDL[] = dgEnHeishiUpperLeftArmDL; -#else -static const char gEnHeishiUpperLeftArmDL[] __attribute__((aligned (2))) = dgEnHeishiUpperLeftArmDL; -#endif - -#define dgEnHeishiKingGuardTLUT "__OTR__objects/object_sd/gEnHeishiKingGuardTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardTLUT[] = dgEnHeishiKingGuardTLUT; -#else -static const char gEnHeishiKingGuardTLUT[] __attribute__((aligned (2))) = dgEnHeishiKingGuardTLUT; -#endif - -#define dgEnHeishiKingGuardTex_200 "__OTR__objects/object_sd/gEnHeishiKingGuardTex_200" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardTex_200[] = dgEnHeishiKingGuardTex_200; -#else -static const char gEnHeishiKingGuardTex_200[] __attribute__((aligned (2))) = dgEnHeishiKingGuardTex_200; -#endif - -#define dgEnHeishiKingGuardTex_240 "__OTR__objects/object_sd/gEnHeishiKingGuardTex_240" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardTex_240[] = dgEnHeishiKingGuardTex_240; -#else -static const char gEnHeishiKingGuardTex_240[] __attribute__((aligned (2))) = dgEnHeishiKingGuardTex_240; -#endif - -#define dgEnHeishiKingGuardArmorTex "__OTR__objects/object_sd/gEnHeishiKingGuardArmorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardArmorTex[] = dgEnHeishiKingGuardArmorTex; -#else -static const char gEnHeishiKingGuardArmorTex[] __attribute__((aligned (2))) = dgEnHeishiKingGuardArmorTex; -#endif - -#define dgEnHeishiKingGuardShoulderGuardTex "__OTR__objects/object_sd/gEnHeishiKingGuardShoulderGuardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardShoulderGuardTex[] = dgEnHeishiKingGuardShoulderGuardTex; -#else -static const char gEnHeishiKingGuardShoulderGuardTex[] __attribute__((aligned (2))) = dgEnHeishiKingGuardShoulderGuardTex; -#endif - -#define dgEnHeishiKingGuardChestArmorTex "__OTR__objects/object_sd/gEnHeishiKingGuardChestArmorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardChestArmorTex[] = dgEnHeishiKingGuardChestArmorTex; -#else -static const char gEnHeishiKingGuardChestArmorTex[] __attribute__((aligned (2))) = dgEnHeishiKingGuardChestArmorTex; -#endif - -#define dgEnHeishiKingGuardTex_B40 "__OTR__objects/object_sd/gEnHeishiKingGuardTex_B40" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardTex_B40[] = dgEnHeishiKingGuardTex_B40; -#else -static const char gEnHeishiKingGuardTex_B40[] __attribute__((aligned (2))) = dgEnHeishiKingGuardTex_B40; -#endif - -#define dgEnHeishiKingGuardHandTex "__OTR__objects/object_sd/gEnHeishiKingGuardHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardHandTex[] = dgEnHeishiKingGuardHandTex; -#else -static const char gEnHeishiKingGuardHandTex[] __attribute__((aligned (2))) = dgEnHeishiKingGuardHandTex; -#endif - -#define dgEnHeishiKingGuardPantsTex "__OTR__objects/object_sd/gEnHeishiKingGuardPantsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiKingGuardPantsTex[] = dgEnHeishiKingGuardPantsTex; -#else -static const char gEnHeishiKingGuardPantsTex[] __attribute__((aligned (2))) = dgEnHeishiKingGuardPantsTex; -#endif - -#define dgHeishiTLUT "__OTR__objects/object_sd/gHeishiTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeishiTLUT[] = dgHeishiTLUT; -#else -static const char gHeishiTLUT[] __attribute__((aligned (2))) = dgHeishiTLUT; -#endif - -#define dgEnHeishiMouthTex "__OTR__objects/object_sd/gEnHeishiMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiMouthTex[] = dgEnHeishiMouthTex; -#else -static const char gEnHeishiMouthTex[] __attribute__((aligned (2))) = dgEnHeishiMouthTex; -#endif - -#define dgEnHeishiGradient1Tex "__OTR__objects/object_sd/gEnHeishiGradient1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiGradient1Tex[] = dgEnHeishiGradient1Tex; -#else -static const char gEnHeishiGradient1Tex[] __attribute__((aligned (2))) = dgEnHeishiGradient1Tex; -#endif - -#define dgEnHeishiGradient2Tex "__OTR__objects/object_sd/gEnHeishiGradient2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiGradient2Tex[] = dgEnHeishiGradient2Tex; -#else -static const char gEnHeishiGradient2Tex[] __attribute__((aligned (2))) = dgEnHeishiGradient2Tex; -#endif - -#define dgEnHeishiArmorTex "__OTR__objects/object_sd/gEnHeishiArmorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiArmorTex[] = dgEnHeishiArmorTex; -#else -static const char gEnHeishiArmorTex[] __attribute__((aligned (2))) = dgEnHeishiArmorTex; -#endif - -#define dgEnHeishiUniform1Tex "__OTR__objects/object_sd/gEnHeishiUniform1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiUniform1Tex[] = dgEnHeishiUniform1Tex; -#else -static const char gEnHeishiUniform1Tex[] __attribute__((aligned (2))) = dgEnHeishiUniform1Tex; -#endif - -#define dgEnHeishiUniform2Tex "__OTR__objects/object_sd/gEnHeishiUniform2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiUniform2Tex[] = dgEnHeishiUniform2Tex; -#else -static const char gEnHeishiUniform2Tex[] __attribute__((aligned (2))) = dgEnHeishiUniform2Tex; -#endif - -#define dgEnHeishiUniformGreyTriforceTex "__OTR__objects/object_sd/gEnHeishiUniformGreyTriforceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiUniformGreyTriforceTex[] = dgEnHeishiUniformGreyTriforceTex; -#else -static const char gEnHeishiUniformGreyTriforceTex[] __attribute__((aligned (2))) = dgEnHeishiUniformGreyTriforceTex; -#endif - -#define dgEnHeishiUniformGoldTriforceTex "__OTR__objects/object_sd/gEnHeishiUniformGoldTriforceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiUniformGoldTriforceTex[] = dgEnHeishiUniformGoldTriforceTex; -#else -static const char gEnHeishiUniformGoldTriforceTex[] __attribute__((aligned (2))) = dgEnHeishiUniformGoldTriforceTex; -#endif - -#define dgEnHeishiLegTex "__OTR__objects/object_sd/gEnHeishiLegTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiLegTex[] = dgEnHeishiLegTex; -#else -static const char gEnHeishiLegTex[] __attribute__((aligned (2))) = dgEnHeishiLegTex; -#endif - -#define dgEnHeishiTex_0067C0 "__OTR__objects/object_sd/gEnHeishiTex_0067C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiTex_0067C0[] = dgEnHeishiTex_0067C0; -#else -static const char gEnHeishiTex_0067C0[] __attribute__((aligned (2))) = dgEnHeishiTex_0067C0; -#endif - -#define dgEnHeishiHandTex "__OTR__objects/object_sd/gEnHeishiHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnHeishiHandTex[] = dgEnHeishiHandTex; -#else -static const char gEnHeishiHandTex[] __attribute__((aligned (2))) = dgEnHeishiHandTex; -#endif - +#include "align_asset_macro.h" + +#define dgEnHeishiSkel "__OTR__objects/object_sd/gEnHeishiSkel" +static const ALIGN_ASSET(2) char gEnHeishiSkel[] = dgEnHeishiSkel; + +#define dgEnHeishiSlamSpearAnim "__OTR__objects/object_sd/gEnHeishiSlamSpearAnim" +static const ALIGN_ASSET(2) char gEnHeishiSlamSpearAnim[] = dgEnHeishiSlamSpearAnim; + +#define dgEnHeishiWalkAnim "__OTR__objects/object_sd/gEnHeishiWalkAnim" +static const ALIGN_ASSET(2) char gEnHeishiWalkAnim[] = dgEnHeishiWalkAnim; + +#define dgEnHeishiIdleAnim "__OTR__objects/object_sd/gEnHeishiIdleAnim" +static const ALIGN_ASSET(2) char gEnHeishiIdleAnim[] = dgEnHeishiIdleAnim; + +#define dgEnHeishiDyingGuardTalkAnim "__OTR__objects/object_sd/gEnHeishiDyingGuardTalkAnim" +static const ALIGN_ASSET(2) char gEnHeishiDyingGuardTalkAnim[] = dgEnHeishiDyingGuardTalkAnim; + +#define dgEnHeishiDyingGuardDieAnim "__OTR__objects/object_sd/gEnHeishiDyingGuardDieAnim" +static const ALIGN_ASSET(2) char gEnHeishiDyingGuardDieAnim[] = dgEnHeishiDyingGuardDieAnim; + +#define dgEnHeishiDyingGuardAnim_00C444 "__OTR__objects/object_sd/gEnHeishiDyingGuardAnim_00C444" +static const ALIGN_ASSET(2) char gEnHeishiDyingGuardAnim_00C444[] = dgEnHeishiDyingGuardAnim_00C444; + +#define dgHeishiKingGuardDL "__OTR__objects/object_sd/gHeishiKingGuardDL" +static const ALIGN_ASSET(2) char gHeishiKingGuardDL[] = dgHeishiKingGuardDL; + +#define dgEnHeishiHeadDL "__OTR__objects/object_sd/gEnHeishiHeadDL" +static const ALIGN_ASSET(2) char gEnHeishiHeadDL[] = dgEnHeishiHeadDL; + +#define dgEnHeishiTorsoArmorDL "__OTR__objects/object_sd/gEnHeishiTorsoArmorDL" +static const ALIGN_ASSET(2) char gEnHeishiTorsoArmorDL[] = dgEnHeishiTorsoArmorDL; + +#define dgEnHeishiTorsoDL "__OTR__objects/object_sd/gEnHeishiTorsoDL" +static const ALIGN_ASSET(2) char gEnHeishiTorsoDL[] = dgEnHeishiTorsoDL; + +#define dgEnHeishiRightFootDL "__OTR__objects/object_sd/gEnHeishiRightFootDL" +static const ALIGN_ASSET(2) char gEnHeishiRightFootDL[] = dgEnHeishiRightFootDL; + +#define dgEnHeishiLeg1DL "__OTR__objects/object_sd/gEnHeishiLeg1DL" +static const ALIGN_ASSET(2) char gEnHeishiLeg1DL[] = dgEnHeishiLeg1DL; + +#define dgEnHeishiUpperLeg1DL "__OTR__objects/object_sd/gEnHeishiUpperLeg1DL" +static const ALIGN_ASSET(2) char gEnHeishiUpperLeg1DL[] = dgEnHeishiUpperLeg1DL; + +#define dgEnHeishiSpearDL "__OTR__objects/object_sd/gEnHeishiSpearDL" +static const ALIGN_ASSET(2) char gEnHeishiSpearDL[] = dgEnHeishiSpearDL; + +#define dgEnHeishiLowerRightArmDL "__OTR__objects/object_sd/gEnHeishiLowerRightArmDL" +static const ALIGN_ASSET(2) char gEnHeishiLowerRightArmDL[] = dgEnHeishiLowerRightArmDL; + +#define dgEnHeishiUpperArmDL "__OTR__objects/object_sd/gEnHeishiUpperArmDL" +static const ALIGN_ASSET(2) char gEnHeishiUpperArmDL[] = dgEnHeishiUpperArmDL; + +#define dgEnHeishiLeftFootDL "__OTR__objects/object_sd/gEnHeishiLeftFootDL" +static const ALIGN_ASSET(2) char gEnHeishiLeftFootDL[] = dgEnHeishiLeftFootDL; + +#define dgEnHeishiLeftShinDL "__OTR__objects/object_sd/gEnHeishiLeftShinDL" +static const ALIGN_ASSET(2) char gEnHeishiLeftShinDL[] = dgEnHeishiLeftShinDL; + +#define dgEnHeishiLeftThighDL "__OTR__objects/object_sd/gEnHeishiLeftThighDL" +static const ALIGN_ASSET(2) char gEnHeishiLeftThighDL[] = dgEnHeishiLeftThighDL; + +#define dgEnHeishiHandDL "__OTR__objects/object_sd/gEnHeishiHandDL" +static const ALIGN_ASSET(2) char gEnHeishiHandDL[] = dgEnHeishiHandDL; + +#define dgEnHeishiLeftArmDL "__OTR__objects/object_sd/gEnHeishiLeftArmDL" +static const ALIGN_ASSET(2) char gEnHeishiLeftArmDL[] = dgEnHeishiLeftArmDL; + +#define dgEnHeishiUpperLeftArmDL "__OTR__objects/object_sd/gEnHeishiUpperLeftArmDL" +static const ALIGN_ASSET(2) char gEnHeishiUpperLeftArmDL[] = dgEnHeishiUpperLeftArmDL; + +#define dgEnHeishiKingGuardTLUT "__OTR__objects/object_sd/gEnHeishiKingGuardTLUT" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardTLUT[] = dgEnHeishiKingGuardTLUT; + +#define dgEnHeishiKingGuardTex_200 "__OTR__objects/object_sd/gEnHeishiKingGuardTex_200" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardTex_200[] = dgEnHeishiKingGuardTex_200; + +#define dgEnHeishiKingGuardTex_240 "__OTR__objects/object_sd/gEnHeishiKingGuardTex_240" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardTex_240[] = dgEnHeishiKingGuardTex_240; + +#define dgEnHeishiKingGuardArmorTex "__OTR__objects/object_sd/gEnHeishiKingGuardArmorTex" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardArmorTex[] = dgEnHeishiKingGuardArmorTex; + +#define dgEnHeishiKingGuardShoulderGuardTex "__OTR__objects/object_sd/gEnHeishiKingGuardShoulderGuardTex" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardShoulderGuardTex[] = dgEnHeishiKingGuardShoulderGuardTex; + +#define dgEnHeishiKingGuardChestArmorTex "__OTR__objects/object_sd/gEnHeishiKingGuardChestArmorTex" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardChestArmorTex[] = dgEnHeishiKingGuardChestArmorTex; + +#define dgEnHeishiKingGuardTex_B40 "__OTR__objects/object_sd/gEnHeishiKingGuardTex_B40" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardTex_B40[] = dgEnHeishiKingGuardTex_B40; + +#define dgEnHeishiKingGuardHandTex "__OTR__objects/object_sd/gEnHeishiKingGuardHandTex" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardHandTex[] = dgEnHeishiKingGuardHandTex; + +#define dgEnHeishiKingGuardPantsTex "__OTR__objects/object_sd/gEnHeishiKingGuardPantsTex" +static const ALIGN_ASSET(2) char gEnHeishiKingGuardPantsTex[] = dgEnHeishiKingGuardPantsTex; + +#define dgHeishiTLUT "__OTR__objects/object_sd/gHeishiTLUT" +static const ALIGN_ASSET(2) char gHeishiTLUT[] = dgHeishiTLUT; + +#define dgEnHeishiMouthTex "__OTR__objects/object_sd/gEnHeishiMouthTex" +static const ALIGN_ASSET(2) char gEnHeishiMouthTex[] = dgEnHeishiMouthTex; + +#define dgEnHeishiGradient1Tex "__OTR__objects/object_sd/gEnHeishiGradient1Tex" +static const ALIGN_ASSET(2) char gEnHeishiGradient1Tex[] = dgEnHeishiGradient1Tex; + +#define dgEnHeishiGradient2Tex "__OTR__objects/object_sd/gEnHeishiGradient2Tex" +static const ALIGN_ASSET(2) char gEnHeishiGradient2Tex[] = dgEnHeishiGradient2Tex; + +#define dgEnHeishiArmorTex "__OTR__objects/object_sd/gEnHeishiArmorTex" +static const ALIGN_ASSET(2) char gEnHeishiArmorTex[] = dgEnHeishiArmorTex; + +#define dgEnHeishiUniform1Tex "__OTR__objects/object_sd/gEnHeishiUniform1Tex" +static const ALIGN_ASSET(2) char gEnHeishiUniform1Tex[] = dgEnHeishiUniform1Tex; + +#define dgEnHeishiUniform2Tex "__OTR__objects/object_sd/gEnHeishiUniform2Tex" +static const ALIGN_ASSET(2) char gEnHeishiUniform2Tex[] = dgEnHeishiUniform2Tex; + +#define dgEnHeishiUniformGreyTriforceTex "__OTR__objects/object_sd/gEnHeishiUniformGreyTriforceTex" +static const ALIGN_ASSET(2) char gEnHeishiUniformGreyTriforceTex[] = dgEnHeishiUniformGreyTriforceTex; + +#define dgEnHeishiUniformGoldTriforceTex "__OTR__objects/object_sd/gEnHeishiUniformGoldTriforceTex" +static const ALIGN_ASSET(2) char gEnHeishiUniformGoldTriforceTex[] = dgEnHeishiUniformGoldTriforceTex; + +#define dgEnHeishiLegTex "__OTR__objects/object_sd/gEnHeishiLegTex" +static const ALIGN_ASSET(2) char gEnHeishiLegTex[] = dgEnHeishiLegTex; + +#define dgEnHeishiTex_0067C0 "__OTR__objects/object_sd/gEnHeishiTex_0067C0" +static const ALIGN_ASSET(2) char gEnHeishiTex_0067C0[] = dgEnHeishiTex_0067C0; + +#define dgEnHeishiHandTex "__OTR__objects/object_sd/gEnHeishiHandTex" +static const ALIGN_ASSET(2) char gEnHeishiHandTex[] = dgEnHeishiHandTex; \ No newline at end of file diff --git a/soh/assets/objects/object_shop_dungen/object_shop_dungen.h b/soh/assets/objects/object_shop_dungen/object_shop_dungen.h index c7726d03f..2a7054064 100644 --- a/soh/assets/objects/object_shop_dungen/object_shop_dungen.h +++ b/soh/assets/objects/object_shop_dungen/object_shop_dungen.h @@ -1,44 +1,21 @@ #pragma once -#define dgShopDungenWoodenShelvesDL "__OTR__objects/object_shop_dungen/gShopDungenWoodenShelvesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gShopDungenWoodenShelvesDL[] = dgShopDungenWoodenShelvesDL; -#else -static const char gShopDungenWoodenShelvesDL[] __attribute__((aligned (2))) = dgShopDungenWoodenShelvesDL; -#endif - -#define dgShopDungenStoneTLUT "__OTR__objects/object_shop_dungen/gShopDungenStoneTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gShopDungenStoneTLUT[] = dgShopDungenStoneTLUT; -#else -static const char gShopDungenStoneTLUT[] __attribute__((aligned (2))) = dgShopDungenStoneTLUT; -#endif - -#define dgShopDungenStone1Tex "__OTR__objects/object_shop_dungen/gShopDungenStone1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShopDungenStone1Tex[] = dgShopDungenStone1Tex; -#else -static const char gShopDungenStone1Tex[] __attribute__((aligned (2))) = dgShopDungenStone1Tex; -#endif - -#define dgShopDungenStone2Tex "__OTR__objects/object_shop_dungen/gShopDungenStone2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShopDungenStone2Tex[] = dgShopDungenStone2Tex; -#else -static const char gShopDungenStone2Tex[] __attribute__((aligned (2))) = dgShopDungenStone2Tex; -#endif - -#define dgShopDungenStoneShelvesDL "__OTR__objects/object_shop_dungen/gShopDungenStoneShelvesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gShopDungenStoneShelvesDL[] = dgShopDungenStoneShelvesDL; -#else -static const char gShopDungenStoneShelvesDL[] __attribute__((aligned (2))) = dgShopDungenStoneShelvesDL; -#endif - -#define dgShopDungenWoodPlankTex "__OTR__objects/object_shop_dungen/gShopDungenWoodPlankTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShopDungenWoodPlankTex[] = dgShopDungenWoodPlankTex; -#else -static const char gShopDungenWoodPlankTex[] __attribute__((aligned (2))) = dgShopDungenWoodPlankTex; -#endif - +#include "align_asset_macro.h" + +#define dgShopDungenWoodenShelvesDL "__OTR__objects/object_shop_dungen/gShopDungenWoodenShelvesDL" +static const ALIGN_ASSET(2) char gShopDungenWoodenShelvesDL[] = dgShopDungenWoodenShelvesDL; + +#define dgShopDungenStoneTLUT "__OTR__objects/object_shop_dungen/gShopDungenStoneTLUT" +static const ALIGN_ASSET(2) char gShopDungenStoneTLUT[] = dgShopDungenStoneTLUT; + +#define dgShopDungenStone1Tex "__OTR__objects/object_shop_dungen/gShopDungenStone1Tex" +static const ALIGN_ASSET(2) char gShopDungenStone1Tex[] = dgShopDungenStone1Tex; + +#define dgShopDungenStone2Tex "__OTR__objects/object_shop_dungen/gShopDungenStone2Tex" +static const ALIGN_ASSET(2) char gShopDungenStone2Tex[] = dgShopDungenStone2Tex; + +#define dgShopDungenStoneShelvesDL "__OTR__objects/object_shop_dungen/gShopDungenStoneShelvesDL" +static const ALIGN_ASSET(2) char gShopDungenStoneShelvesDL[] = dgShopDungenStoneShelvesDL; + +#define dgShopDungenWoodPlankTex "__OTR__objects/object_shop_dungen/gShopDungenWoodPlankTex" +static const ALIGN_ASSET(2) char gShopDungenWoodPlankTex[] = dgShopDungenWoodPlankTex; \ No newline at end of file diff --git a/soh/assets/objects/object_shopnuts/object_shopnuts.h b/soh/assets/objects/object_shopnuts/object_shopnuts.h index c5200c69f..241a80f62 100644 --- a/soh/assets/objects/object_shopnuts/object_shopnuts.h +++ b/soh/assets/objects/object_shopnuts/object_shopnuts.h @@ -1,247 +1,108 @@ #pragma once -#define dgBusinessScrubSkel "__OTR__objects/object_shopnuts/gBusinessScrubSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubSkel[] = dgBusinessScrubSkel; -#else -static const char gBusinessScrubSkel[] __attribute__((aligned (2))) = dgBusinessScrubSkel; -#endif - -#define dgBusinessScrubRootLeafDL "__OTR__objects/object_shopnuts/gBusinessScrubRootLeafDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubRootLeafDL[] = dgBusinessScrubRootLeafDL; -#else -static const char gBusinessScrubRootLeafDL[] __attribute__((aligned (2))) = dgBusinessScrubRootLeafDL; -#endif - -#define dgBusinessScrubLeftThighDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLeftThighDL[] = dgBusinessScrubLeftThighDL; -#else -static const char gBusinessScrubLeftThighDL[] __attribute__((aligned (2))) = dgBusinessScrubLeftThighDL; -#endif - -#define dgBusinessScrubLeftShinDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLeftShinDL[] = dgBusinessScrubLeftShinDL; -#else -static const char gBusinessScrubLeftShinDL[] __attribute__((aligned (2))) = dgBusinessScrubLeftShinDL; -#endif - -#define dgBusinessScrubLeftFootDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLeftFootDL[] = dgBusinessScrubLeftFootDL; -#else -static const char gBusinessScrubLeftFootDL[] __attribute__((aligned (2))) = dgBusinessScrubLeftFootDL; -#endif - -#define dgBusinessScrubRightThighDL "__OTR__objects/object_shopnuts/gBusinessScrubRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubRightThighDL[] = dgBusinessScrubRightThighDL; -#else -static const char gBusinessScrubRightThighDL[] __attribute__((aligned (2))) = dgBusinessScrubRightThighDL; -#endif - -#define dgBusinessScrubRightShinDL "__OTR__objects/object_shopnuts/gBusinessScrubRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubRightShinDL[] = dgBusinessScrubRightShinDL; -#else -static const char gBusinessScrubRightShinDL[] __attribute__((aligned (2))) = dgBusinessScrubRightShinDL; -#endif - -#define dgBusinessScrubRightFootDL "__OTR__objects/object_shopnuts/gBusinessScrubRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubRightFootDL[] = dgBusinessScrubRightFootDL; -#else -static const char gBusinessScrubRightFootDL[] __attribute__((aligned (2))) = dgBusinessScrubRightFootDL; -#endif - -#define dgBusinessScrubTopLeafDL "__OTR__objects/object_shopnuts/gBusinessScrubTopLeafDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubTopLeafDL[] = dgBusinessScrubTopLeafDL; -#else -static const char gBusinessScrubTopLeafDL[] __attribute__((aligned (2))) = dgBusinessScrubTopLeafDL; -#endif - -#define dgBusinessScrubNoseDL "__OTR__objects/object_shopnuts/gBusinessScrubNoseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubNoseDL[] = dgBusinessScrubNoseDL; -#else -static const char gBusinessScrubNoseDL[] __attribute__((aligned (2))) = dgBusinessScrubNoseDL; -#endif - -#define dgBusinessScrubLeftUpperArmDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLeftUpperArmDL[] = dgBusinessScrubLeftUpperArmDL; -#else -static const char gBusinessScrubLeftUpperArmDL[] __attribute__((aligned (2))) = dgBusinessScrubLeftUpperArmDL; -#endif - -#define dgBusinessScrubLeftForearmDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLeftForearmDL[] = dgBusinessScrubLeftForearmDL; -#else -static const char gBusinessScrubLeftForearmDL[] __attribute__((aligned (2))) = dgBusinessScrubLeftForearmDL; -#endif - -#define dgBusinessScrubLeftHandDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLeftHandDL[] = dgBusinessScrubLeftHandDL; -#else -static const char gBusinessScrubLeftHandDL[] __attribute__((aligned (2))) = dgBusinessScrubLeftHandDL; -#endif - -#define dgBusinessScrubRightUpperArmDL "__OTR__objects/object_shopnuts/gBusinessScrubRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubRightUpperArmDL[] = dgBusinessScrubRightUpperArmDL; -#else -static const char gBusinessScrubRightUpperArmDL[] __attribute__((aligned (2))) = dgBusinessScrubRightUpperArmDL; -#endif - -#define dgBusinessScrubRightForearmDL "__OTR__objects/object_shopnuts/gBusinessScrubRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubRightForearmDL[] = dgBusinessScrubRightForearmDL; -#else -static const char gBusinessScrubRightForearmDL[] __attribute__((aligned (2))) = dgBusinessScrubRightForearmDL; -#endif - -#define dgBusinessScrubRightHandDL "__OTR__objects/object_shopnuts/gBusinessScrubRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubRightHandDL[] = dgBusinessScrubRightHandDL; -#else -static const char gBusinessScrubRightHandDL[] __attribute__((aligned (2))) = dgBusinessScrubRightHandDL; -#endif - -#define dgBusinessScrubEyesDL "__OTR__objects/object_shopnuts/gBusinessScrubEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubEyesDL[] = dgBusinessScrubEyesDL; -#else -static const char gBusinessScrubEyesDL[] __attribute__((aligned (2))) = dgBusinessScrubEyesDL; -#endif - -#define dgBusinessScrubBodyDL "__OTR__objects/object_shopnuts/gBusinessScrubBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubBodyDL[] = dgBusinessScrubBodyDL; -#else -static const char gBusinessScrubBodyDL[] __attribute__((aligned (2))) = dgBusinessScrubBodyDL; -#endif - -#define dgBusinessScrubBodyTex "__OTR__objects/object_shopnuts/gBusinessScrubBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubBodyTex[] = dgBusinessScrubBodyTex; -#else -static const char gBusinessScrubBodyTex[] __attribute__((aligned (2))) = dgBusinessScrubBodyTex; -#endif - -#define dgBusinessScrubNoseTex "__OTR__objects/object_shopnuts/gBusinessScrubNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubNoseTex[] = dgBusinessScrubNoseTex; -#else -static const char gBusinessScrubNoseTex[] __attribute__((aligned (2))) = dgBusinessScrubNoseTex; -#endif - -#define dgBusinessScrubNostrilTex "__OTR__objects/object_shopnuts/gBusinessScrubNostrilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubNostrilTex[] = dgBusinessScrubNostrilTex; -#else -static const char gBusinessScrubNostrilTex[] __attribute__((aligned (2))) = dgBusinessScrubNostrilTex; -#endif - -#define dgBusinessScrubEyeTex "__OTR__objects/object_shopnuts/gBusinessScrubEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubEyeTex[] = dgBusinessScrubEyeTex; -#else -static const char gBusinessScrubEyeTex[] __attribute__((aligned (2))) = dgBusinessScrubEyeTex; -#endif - -#define dgBusinessScrubLeafStemTex "__OTR__objects/object_shopnuts/gBusinessScrubLeafStemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLeafStemTex[] = dgBusinessScrubLeafStemTex; -#else -static const char gBusinessScrubLeafStemTex[] __attribute__((aligned (2))) = dgBusinessScrubLeafStemTex; -#endif - -#define dgBusinessScrubLeafTex "__OTR__objects/object_shopnuts/gBusinessScrubLeafTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLeafTex[] = dgBusinessScrubLeafTex; -#else -static const char gBusinessScrubLeafTex[] __attribute__((aligned (2))) = dgBusinessScrubLeafTex; -#endif - -#define dgBusinessScrubDekuNutTex "__OTR__objects/object_shopnuts/gBusinessScrubDekuNutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubDekuNutTex[] = dgBusinessScrubDekuNutTex; -#else -static const char gBusinessScrubDekuNutTex[] __attribute__((aligned (2))) = dgBusinessScrubDekuNutTex; -#endif - -#define dgBusinessScrubDekuNutDL "__OTR__objects/object_shopnuts/gBusinessScrubDekuNutDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubDekuNutDL[] = dgBusinessScrubDekuNutDL; -#else -static const char gBusinessScrubDekuNutDL[] __attribute__((aligned (2))) = dgBusinessScrubDekuNutDL; -#endif - -#define dgBusinessScrubAnim_1EC "__OTR__objects/object_shopnuts/gBusinessScrubAnim_1EC" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubAnim_1EC[] = dgBusinessScrubAnim_1EC; -#else -static const char gBusinessScrubAnim_1EC[] __attribute__((aligned (2))) = dgBusinessScrubAnim_1EC; -#endif - -#define dgBusinessScrubAnim_39C "__OTR__objects/object_shopnuts/gBusinessScrubAnim_39C" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubAnim_39C[] = dgBusinessScrubAnim_39C; -#else -static const char gBusinessScrubAnim_39C[] __attribute__((aligned (2))) = dgBusinessScrubAnim_39C; -#endif - -#define dgBusinessScrubRotateAnim "__OTR__objects/object_shopnuts/gBusinessScrubRotateAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubRotateAnim[] = dgBusinessScrubRotateAnim; -#else -static const char gBusinessScrubRotateAnim[] __attribute__((aligned (2))) = dgBusinessScrubRotateAnim; -#endif - -#define dgBusinessScrubNervousTransitionAnim "__OTR__objects/object_shopnuts/gBusinessScrubNervousTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubNervousTransitionAnim[] = dgBusinessScrubNervousTransitionAnim; -#else -static const char gBusinessScrubNervousTransitionAnim[] __attribute__((aligned (2))) = dgBusinessScrubNervousTransitionAnim; -#endif - -#define dgBusinessScrubLookAroundAnim "__OTR__objects/object_shopnuts/gBusinessScrubLookAroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubLookAroundAnim[] = dgBusinessScrubLookAroundAnim; -#else -static const char gBusinessScrubLookAroundAnim[] __attribute__((aligned (2))) = dgBusinessScrubLookAroundAnim; -#endif - -#define dgBusinessScrubNervousIdleAnim "__OTR__objects/object_shopnuts/gBusinessScrubNervousIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubNervousIdleAnim[] = dgBusinessScrubNervousIdleAnim; -#else -static const char gBusinessScrubNervousIdleAnim[] __attribute__((aligned (2))) = dgBusinessScrubNervousIdleAnim; -#endif - -#define dgBusinessScrubAnim_139C "__OTR__objects/object_shopnuts/gBusinessScrubAnim_139C" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubAnim_139C[] = dgBusinessScrubAnim_139C; -#else -static const char gBusinessScrubAnim_139C[] __attribute__((aligned (2))) = dgBusinessScrubAnim_139C; -#endif - -#define dgBusinessScrubAnim_4404 "__OTR__objects/object_shopnuts/gBusinessScrubAnim_4404" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubAnim_4404[] = dgBusinessScrubAnim_4404; -#else -static const char gBusinessScrubAnim_4404[] __attribute__((aligned (2))) = dgBusinessScrubAnim_4404; -#endif - -#define dgBusinessScrubAnim_4574 "__OTR__objects/object_shopnuts/gBusinessScrubAnim_4574" -#ifdef _WIN32 -static const __declspec(align(2)) char gBusinessScrubAnim_4574[] = dgBusinessScrubAnim_4574; -#else -static const char gBusinessScrubAnim_4574[] __attribute__((aligned (2))) = dgBusinessScrubAnim_4574; -#endif - +#include "align_asset_macro.h" + +#define dgBusinessScrubSkel "__OTR__objects/object_shopnuts/gBusinessScrubSkel" +static const ALIGN_ASSET(2) char gBusinessScrubSkel[] = dgBusinessScrubSkel; + +#define dgBusinessScrubRootLeafDL "__OTR__objects/object_shopnuts/gBusinessScrubRootLeafDL" +static const ALIGN_ASSET(2) char gBusinessScrubRootLeafDL[] = dgBusinessScrubRootLeafDL; + +#define dgBusinessScrubLeftThighDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftThighDL" +static const ALIGN_ASSET(2) char gBusinessScrubLeftThighDL[] = dgBusinessScrubLeftThighDL; + +#define dgBusinessScrubLeftShinDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftShinDL" +static const ALIGN_ASSET(2) char gBusinessScrubLeftShinDL[] = dgBusinessScrubLeftShinDL; + +#define dgBusinessScrubLeftFootDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftFootDL" +static const ALIGN_ASSET(2) char gBusinessScrubLeftFootDL[] = dgBusinessScrubLeftFootDL; + +#define dgBusinessScrubRightThighDL "__OTR__objects/object_shopnuts/gBusinessScrubRightThighDL" +static const ALIGN_ASSET(2) char gBusinessScrubRightThighDL[] = dgBusinessScrubRightThighDL; + +#define dgBusinessScrubRightShinDL "__OTR__objects/object_shopnuts/gBusinessScrubRightShinDL" +static const ALIGN_ASSET(2) char gBusinessScrubRightShinDL[] = dgBusinessScrubRightShinDL; + +#define dgBusinessScrubRightFootDL "__OTR__objects/object_shopnuts/gBusinessScrubRightFootDL" +static const ALIGN_ASSET(2) char gBusinessScrubRightFootDL[] = dgBusinessScrubRightFootDL; + +#define dgBusinessScrubTopLeafDL "__OTR__objects/object_shopnuts/gBusinessScrubTopLeafDL" +static const ALIGN_ASSET(2) char gBusinessScrubTopLeafDL[] = dgBusinessScrubTopLeafDL; + +#define dgBusinessScrubNoseDL "__OTR__objects/object_shopnuts/gBusinessScrubNoseDL" +static const ALIGN_ASSET(2) char gBusinessScrubNoseDL[] = dgBusinessScrubNoseDL; + +#define dgBusinessScrubLeftUpperArmDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftUpperArmDL" +static const ALIGN_ASSET(2) char gBusinessScrubLeftUpperArmDL[] = dgBusinessScrubLeftUpperArmDL; + +#define dgBusinessScrubLeftForearmDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftForearmDL" +static const ALIGN_ASSET(2) char gBusinessScrubLeftForearmDL[] = dgBusinessScrubLeftForearmDL; + +#define dgBusinessScrubLeftHandDL "__OTR__objects/object_shopnuts/gBusinessScrubLeftHandDL" +static const ALIGN_ASSET(2) char gBusinessScrubLeftHandDL[] = dgBusinessScrubLeftHandDL; + +#define dgBusinessScrubRightUpperArmDL "__OTR__objects/object_shopnuts/gBusinessScrubRightUpperArmDL" +static const ALIGN_ASSET(2) char gBusinessScrubRightUpperArmDL[] = dgBusinessScrubRightUpperArmDL; + +#define dgBusinessScrubRightForearmDL "__OTR__objects/object_shopnuts/gBusinessScrubRightForearmDL" +static const ALIGN_ASSET(2) char gBusinessScrubRightForearmDL[] = dgBusinessScrubRightForearmDL; + +#define dgBusinessScrubRightHandDL "__OTR__objects/object_shopnuts/gBusinessScrubRightHandDL" +static const ALIGN_ASSET(2) char gBusinessScrubRightHandDL[] = dgBusinessScrubRightHandDL; + +#define dgBusinessScrubEyesDL "__OTR__objects/object_shopnuts/gBusinessScrubEyesDL" +static const ALIGN_ASSET(2) char gBusinessScrubEyesDL[] = dgBusinessScrubEyesDL; + +#define dgBusinessScrubBodyDL "__OTR__objects/object_shopnuts/gBusinessScrubBodyDL" +static const ALIGN_ASSET(2) char gBusinessScrubBodyDL[] = dgBusinessScrubBodyDL; + +#define dgBusinessScrubBodyTex "__OTR__objects/object_shopnuts/gBusinessScrubBodyTex" +static const ALIGN_ASSET(2) char gBusinessScrubBodyTex[] = dgBusinessScrubBodyTex; + +#define dgBusinessScrubNoseTex "__OTR__objects/object_shopnuts/gBusinessScrubNoseTex" +static const ALIGN_ASSET(2) char gBusinessScrubNoseTex[] = dgBusinessScrubNoseTex; + +#define dgBusinessScrubNostrilTex "__OTR__objects/object_shopnuts/gBusinessScrubNostrilTex" +static const ALIGN_ASSET(2) char gBusinessScrubNostrilTex[] = dgBusinessScrubNostrilTex; + +#define dgBusinessScrubEyeTex "__OTR__objects/object_shopnuts/gBusinessScrubEyeTex" +static const ALIGN_ASSET(2) char gBusinessScrubEyeTex[] = dgBusinessScrubEyeTex; + +#define dgBusinessScrubLeafStemTex "__OTR__objects/object_shopnuts/gBusinessScrubLeafStemTex" +static const ALIGN_ASSET(2) char gBusinessScrubLeafStemTex[] = dgBusinessScrubLeafStemTex; + +#define dgBusinessScrubLeafTex "__OTR__objects/object_shopnuts/gBusinessScrubLeafTex" +static const ALIGN_ASSET(2) char gBusinessScrubLeafTex[] = dgBusinessScrubLeafTex; + +#define dgBusinessScrubDekuNutTex "__OTR__objects/object_shopnuts/gBusinessScrubDekuNutTex" +static const ALIGN_ASSET(2) char gBusinessScrubDekuNutTex[] = dgBusinessScrubDekuNutTex; + +#define dgBusinessScrubDekuNutDL "__OTR__objects/object_shopnuts/gBusinessScrubDekuNutDL" +static const ALIGN_ASSET(2) char gBusinessScrubDekuNutDL[] = dgBusinessScrubDekuNutDL; + +#define dgBusinessScrubAnim_1EC "__OTR__objects/object_shopnuts/gBusinessScrubAnim_1EC" +static const ALIGN_ASSET(2) char gBusinessScrubAnim_1EC[] = dgBusinessScrubAnim_1EC; + +#define dgBusinessScrubAnim_39C "__OTR__objects/object_shopnuts/gBusinessScrubAnim_39C" +static const ALIGN_ASSET(2) char gBusinessScrubAnim_39C[] = dgBusinessScrubAnim_39C; + +#define dgBusinessScrubRotateAnim "__OTR__objects/object_shopnuts/gBusinessScrubRotateAnim" +static const ALIGN_ASSET(2) char gBusinessScrubRotateAnim[] = dgBusinessScrubRotateAnim; + +#define dgBusinessScrubNervousTransitionAnim "__OTR__objects/object_shopnuts/gBusinessScrubNervousTransitionAnim" +static const ALIGN_ASSET(2) char gBusinessScrubNervousTransitionAnim[] = dgBusinessScrubNervousTransitionAnim; + +#define dgBusinessScrubLookAroundAnim "__OTR__objects/object_shopnuts/gBusinessScrubLookAroundAnim" +static const ALIGN_ASSET(2) char gBusinessScrubLookAroundAnim[] = dgBusinessScrubLookAroundAnim; + +#define dgBusinessScrubNervousIdleAnim "__OTR__objects/object_shopnuts/gBusinessScrubNervousIdleAnim" +static const ALIGN_ASSET(2) char gBusinessScrubNervousIdleAnim[] = dgBusinessScrubNervousIdleAnim; + +#define dgBusinessScrubAnim_139C "__OTR__objects/object_shopnuts/gBusinessScrubAnim_139C" +static const ALIGN_ASSET(2) char gBusinessScrubAnim_139C[] = dgBusinessScrubAnim_139C; + +#define dgBusinessScrubAnim_4404 "__OTR__objects/object_shopnuts/gBusinessScrubAnim_4404" +static const ALIGN_ASSET(2) char gBusinessScrubAnim_4404[] = dgBusinessScrubAnim_4404; + +#define dgBusinessScrubAnim_4574 "__OTR__objects/object_shopnuts/gBusinessScrubAnim_4574" +static const ALIGN_ASSET(2) char gBusinessScrubAnim_4574[] = dgBusinessScrubAnim_4574; \ No newline at end of file diff --git a/soh/assets/objects/object_siofuki/object_siofuki.h b/soh/assets/objects/object_siofuki/object_siofuki.h index 3481dbe08..15b97aceb 100644 --- a/soh/assets/objects/object_siofuki/object_siofuki.h +++ b/soh/assets/objects/object_siofuki/object_siofuki.h @@ -1,23 +1,12 @@ #pragma once -#define dobject_siofuki_Tex_000000 "__OTR__objects/object_siofuki/object_siofuki_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_siofuki_Tex_000000[] = dobject_siofuki_Tex_000000; -#else -static const char object_siofuki_Tex_000000[] __attribute__((aligned (2))) = dobject_siofuki_Tex_000000; -#endif - -#define dobject_siofuki_DL_000B70 "__OTR__objects/object_siofuki/object_siofuki_DL_000B70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_siofuki_DL_000B70[] = dobject_siofuki_DL_000B70; -#else -static const char object_siofuki_DL_000B70[] __attribute__((aligned (2))) = dobject_siofuki_DL_000B70; -#endif - -#define dobject_siofuki_Col_000D78 "__OTR__objects/object_siofuki/object_siofuki_Col_000D78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_siofuki_Col_000D78[] = dobject_siofuki_Col_000D78; -#else -static const char object_siofuki_Col_000D78[] __attribute__((aligned (2))) = dobject_siofuki_Col_000D78; -#endif - +#include "align_asset_macro.h" + +#define dobject_siofuki_Tex_000000 "__OTR__objects/object_siofuki/object_siofuki_Tex_000000" +static const ALIGN_ASSET(2) char object_siofuki_Tex_000000[] = dobject_siofuki_Tex_000000; + +#define dobject_siofuki_DL_000B70 "__OTR__objects/object_siofuki/object_siofuki_DL_000B70" +static const ALIGN_ASSET(2) char object_siofuki_DL_000B70[] = dobject_siofuki_DL_000B70; + +#define dobject_siofuki_Col_000D78 "__OTR__objects/object_siofuki/object_siofuki_Col_000D78" +static const ALIGN_ASSET(2) char object_siofuki_Col_000D78[] = dobject_siofuki_Col_000D78; \ No newline at end of file diff --git a/soh/assets/objects/object_sk2/object_sk2.h b/soh/assets/objects/object_sk2/object_sk2.h index 7a88d00e9..7e7e66834 100644 --- a/soh/assets/objects/object_sk2/object_sk2.h +++ b/soh/assets/objects/object_sk2/object_sk2.h @@ -1,408 +1,177 @@ #pragma once -#define dgStalfosSkullDL "__OTR__objects/object_sk2/gStalfosSkullDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosSkullDL[] = dgStalfosSkullDL; -#else -static const char gStalfosSkullDL[] __attribute__((aligned (2))) = dgStalfosSkullDL; -#endif - -#define dgStalfosUpperCoreDL "__OTR__objects/object_sk2/gStalfosUpperCoreDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosUpperCoreDL[] = dgStalfosUpperCoreDL; -#else -static const char gStalfosUpperCoreDL[] __attribute__((aligned (2))) = dgStalfosUpperCoreDL; -#endif - -#define dgStalfosRightUpperArmDL "__OTR__objects/object_sk2/gStalfosRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRightUpperArmDL[] = dgStalfosRightUpperArmDL; -#else -static const char gStalfosRightUpperArmDL[] __attribute__((aligned (2))) = dgStalfosRightUpperArmDL; -#endif - -#define dgStalfosLowerCoreDL "__OTR__objects/object_sk2/gStalfosLowerCoreDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLowerCoreDL[] = dgStalfosLowerCoreDL; -#else -static const char gStalfosLowerCoreDL[] __attribute__((aligned (2))) = dgStalfosLowerCoreDL; -#endif - -#define dgStalfosRightThighDL "__OTR__objects/object_sk2/gStalfosRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRightThighDL[] = dgStalfosRightThighDL; -#else -static const char gStalfosRightThighDL[] __attribute__((aligned (2))) = dgStalfosRightThighDL; -#endif - -#define dgStalfosRightHandDL "__OTR__objects/object_sk2/gStalfosRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRightHandDL[] = dgStalfosRightHandDL; -#else -static const char gStalfosRightHandDL[] __attribute__((aligned (2))) = dgStalfosRightHandDL; -#endif - -#define dgStalfosChestDL "__OTR__objects/object_sk2/gStalfosChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosChestDL[] = dgStalfosChestDL; -#else -static const char gStalfosChestDL[] __attribute__((aligned (2))) = dgStalfosChestDL; -#endif - -#define dgStalfosJawDL "__OTR__objects/object_sk2/gStalfosJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosJawDL[] = dgStalfosJawDL; -#else -static const char gStalfosJawDL[] __attribute__((aligned (2))) = dgStalfosJawDL; -#endif - -#define dgStalfosUpperNeckDL "__OTR__objects/object_sk2/gStalfosUpperNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosUpperNeckDL[] = dgStalfosUpperNeckDL; -#else -static const char gStalfosUpperNeckDL[] __attribute__((aligned (2))) = dgStalfosUpperNeckDL; -#endif - -#define dgStalfosLowerNeckDL "__OTR__objects/object_sk2/gStalfosLowerNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLowerNeckDL[] = dgStalfosLowerNeckDL; -#else -static const char gStalfosLowerNeckDL[] __attribute__((aligned (2))) = dgStalfosLowerNeckDL; -#endif - -#define dgStalfosShieldDL "__OTR__objects/object_sk2/gStalfosShieldDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosShieldDL[] = dgStalfosShieldDL; -#else -static const char gStalfosShieldDL[] __attribute__((aligned (2))) = dgStalfosShieldDL; -#endif - -#define dgStalfosWaistDL "__OTR__objects/object_sk2/gStalfosWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosWaistDL[] = dgStalfosWaistDL; -#else -static const char gStalfosWaistDL[] __attribute__((aligned (2))) = dgStalfosWaistDL; -#endif - -#define dgStalfosRightLowerLegDL "__OTR__objects/object_sk2/gStalfosRightLowerLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRightLowerLegDL[] = dgStalfosRightLowerLegDL; -#else -static const char gStalfosRightLowerLegDL[] __attribute__((aligned (2))) = dgStalfosRightLowerLegDL; -#endif - -#define dgStalfosRightForearmDL "__OTR__objects/object_sk2/gStalfosRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRightForearmDL[] = dgStalfosRightForearmDL; -#else -static const char gStalfosRightForearmDL[] __attribute__((aligned (2))) = dgStalfosRightForearmDL; -#endif - -#define dgStalfosRightFootDL "__OTR__objects/object_sk2/gStalfosRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRightFootDL[] = dgStalfosRightFootDL; -#else -static const char gStalfosRightFootDL[] __attribute__((aligned (2))) = dgStalfosRightFootDL; -#endif - -#define dgStalfosRightShoulderArmorDL "__OTR__objects/object_sk2/gStalfosRightShoulderArmorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRightShoulderArmorDL[] = dgStalfosRightShoulderArmorDL; -#else -static const char gStalfosRightShoulderArmorDL[] __attribute__((aligned (2))) = dgStalfosRightShoulderArmorDL; -#endif - -#define dgStalfosLeftUpperArmDL "__OTR__objects/object_sk2/gStalfosLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLeftUpperArmDL[] = dgStalfosLeftUpperArmDL; -#else -static const char gStalfosLeftUpperArmDL[] __attribute__((aligned (2))) = dgStalfosLeftUpperArmDL; -#endif - -#define dgStalfosLeftShoulderArmorDL "__OTR__objects/object_sk2/gStalfosLeftShoulderArmorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLeftShoulderArmorDL[] = dgStalfosLeftShoulderArmorDL; -#else -static const char gStalfosLeftShoulderArmorDL[] __attribute__((aligned (2))) = dgStalfosLeftShoulderArmorDL; -#endif - -#define dgStalfosLeftFootDL "__OTR__objects/object_sk2/gStalfosLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLeftFootDL[] = dgStalfosLeftFootDL; -#else -static const char gStalfosLeftFootDL[] __attribute__((aligned (2))) = dgStalfosLeftFootDL; -#endif - -#define dgStalfosLeftForearmDL "__OTR__objects/object_sk2/gStalfosLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLeftForearmDL[] = dgStalfosLeftForearmDL; -#else -static const char gStalfosLeftForearmDL[] __attribute__((aligned (2))) = dgStalfosLeftForearmDL; -#endif - -#define dgStalfosLeftLowerLegDL "__OTR__objects/object_sk2/gStalfosLeftLowerLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLeftLowerLegDL[] = dgStalfosLeftLowerLegDL; -#else -static const char gStalfosLeftLowerLegDL[] __attribute__((aligned (2))) = dgStalfosLeftLowerLegDL; -#endif - -#define dgStalfosLeftThighDL "__OTR__objects/object_sk2/gStalfosLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLeftThighDL[] = dgStalfosLeftThighDL; -#else -static const char gStalfosLeftThighDL[] __attribute__((aligned (2))) = dgStalfosLeftThighDL; -#endif - -#define dgStalfosLeftHandDL "__OTR__objects/object_sk2/gStalfosLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLeftHandDL[] = dgStalfosLeftHandDL; -#else -static const char gStalfosLeftHandDL[] __attribute__((aligned (2))) = dgStalfosLeftHandDL; -#endif - -#define dgStalfosSwordDL "__OTR__objects/object_sk2/gStalfosSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosSwordDL[] = dgStalfosSwordDL; -#else -static const char gStalfosSwordDL[] __attribute__((aligned (2))) = dgStalfosSwordDL; -#endif - -#define dgStalfosEyeSocketTex "__OTR__objects/object_sk2/gStalfosEyeSocketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosEyeSocketTex[] = dgStalfosEyeSocketTex; -#else -static const char gStalfosEyeSocketTex[] __attribute__((aligned (2))) = dgStalfosEyeSocketTex; -#endif - -#define dgStalfosEyeTex "__OTR__objects/object_sk2/gStalfosEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosEyeTex[] = dgStalfosEyeTex; -#else -static const char gStalfosEyeTex[] __attribute__((aligned (2))) = dgStalfosEyeTex; -#endif - -#define dgStalfosBoneGradientTex "__OTR__objects/object_sk2/gStalfosBoneGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosBoneGradientTex[] = dgStalfosBoneGradientTex; -#else -static const char gStalfosBoneGradientTex[] __attribute__((aligned (2))) = dgStalfosBoneGradientTex; -#endif - -#define dgStalfosNostrilTex "__OTR__objects/object_sk2/gStalfosNostrilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosNostrilTex[] = dgStalfosNostrilTex; -#else -static const char gStalfosNostrilTex[] __attribute__((aligned (2))) = dgStalfosNostrilTex; -#endif - -#define dgStalfosBoneDetailTex "__OTR__objects/object_sk2/gStalfosBoneDetailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosBoneDetailTex[] = dgStalfosBoneDetailTex; -#else -static const char gStalfosBoneDetailTex[] __attribute__((aligned (2))) = dgStalfosBoneDetailTex; -#endif - -#define dgStalfosRibTex "__OTR__objects/object_sk2/gStalfosRibTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRibTex[] = dgStalfosRibTex; -#else -static const char gStalfosRibTex[] __attribute__((aligned (2))) = dgStalfosRibTex; -#endif - -#define dgStalfosTrousersSideTex "__OTR__objects/object_sk2/gStalfosTrousersSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosTrousersSideTex[] = dgStalfosTrousersSideTex; -#else -static const char gStalfosTrousersSideTex[] __attribute__((aligned (2))) = dgStalfosTrousersSideTex; -#endif - -#define dgStalfosShieldTex "__OTR__objects/object_sk2/gStalfosShieldTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosShieldTex[] = dgStalfosShieldTex; -#else -static const char gStalfosShieldTex[] __attribute__((aligned (2))) = dgStalfosShieldTex; -#endif - -#define dgStalfosLimbArmorTex "__OTR__objects/object_sk2/gStalfosLimbArmorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLimbArmorTex[] = dgStalfosLimbArmorTex; -#else -static const char gStalfosLimbArmorTex[] __attribute__((aligned (2))) = dgStalfosLimbArmorTex; -#endif - -#define dgStalfosArmorBackTex "__OTR__objects/object_sk2/gStalfosArmorBackTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosArmorBackTex[] = dgStalfosArmorBackTex; -#else -static const char gStalfosArmorBackTex[] __attribute__((aligned (2))) = dgStalfosArmorBackTex; -#endif - -#define dgStalfosSwordBladeTex "__OTR__objects/object_sk2/gStalfosSwordBladeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosSwordBladeTex[] = dgStalfosSwordBladeTex; -#else -static const char gStalfosSwordBladeTex[] __attribute__((aligned (2))) = dgStalfosSwordBladeTex; -#endif - -#define dgStalfosTrousersTopTex "__OTR__objects/object_sk2/gStalfosTrousersTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosTrousersTopTex[] = dgStalfosTrousersTopTex; -#else -static const char gStalfosTrousersTopTex[] __attribute__((aligned (2))) = dgStalfosTrousersTopTex; -#endif - -#define dgStalfosSkel "__OTR__objects/object_sk2/gStalfosSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosSkel[] = dgStalfosSkel; -#else -static const char gStalfosSkel[] __attribute__((aligned (2))) = dgStalfosSkel; -#endif - -#define dgStalfosFlinchFromHitBehindAnim "__OTR__objects/object_sk2/gStalfosFlinchFromHitBehindAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosFlinchFromHitBehindAnim[] = dgStalfosFlinchFromHitBehindAnim; -#else -static const char gStalfosFlinchFromHitBehindAnim[] __attribute__((aligned (2))) = dgStalfosFlinchFromHitBehindAnim; -#endif - -#define dgStalfosFallOverBackwardsAnim "__OTR__objects/object_sk2/gStalfosFallOverBackwardsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosFallOverBackwardsAnim[] = dgStalfosFallOverBackwardsAnim; -#else -static const char gStalfosFallOverBackwardsAnim[] __attribute__((aligned (2))) = dgStalfosFallOverBackwardsAnim; -#endif - -#define dgStalfosJumpBackwardsAnim "__OTR__objects/object_sk2/gStalfosJumpBackwardsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosJumpBackwardsAnim[] = dgStalfosJumpBackwardsAnim; -#else -static const char gStalfosJumpBackwardsAnim[] __attribute__((aligned (2))) = dgStalfosJumpBackwardsAnim; -#endif - -#define dgStalfosBlockWithShieldAnim "__OTR__objects/object_sk2/gStalfosBlockWithShieldAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosBlockWithShieldAnim[] = dgStalfosBlockWithShieldAnim; -#else -static const char gStalfosBlockWithShieldAnim[] __attribute__((aligned (2))) = dgStalfosBlockWithShieldAnim; -#endif - -#define dgStalfosStandAttentionAnim "__OTR__objects/object_sk2/gStalfosStandAttentionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosStandAttentionAnim[] = dgStalfosStandAttentionAnim; -#else -static const char gStalfosStandAttentionAnim[] __attribute__((aligned (2))) = dgStalfosStandAttentionAnim; -#endif - -#define dgStalfosFastAdvanceAnim "__OTR__objects/object_sk2/gStalfosFastAdvanceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosFastAdvanceAnim[] = dgStalfosFastAdvanceAnim; -#else -static const char gStalfosFastAdvanceAnim[] __attribute__((aligned (2))) = dgStalfosFastAdvanceAnim; -#endif - -#define dgStalfosMiddleGuardAnim "__OTR__objects/object_sk2/gStalfosMiddleGuardAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosMiddleGuardAnim[] = dgStalfosMiddleGuardAnim; -#else -static const char gStalfosMiddleGuardAnim[] __attribute__((aligned (2))) = dgStalfosMiddleGuardAnim; -#endif - -#define dgStalfosSlowAdvanceAnim "__OTR__objects/object_sk2/gStalfosSlowAdvanceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosSlowAdvanceAnim[] = dgStalfosSlowAdvanceAnim; -#else -static const char gStalfosSlowAdvanceAnim[] __attribute__((aligned (2))) = dgStalfosSlowAdvanceAnim; -#endif - -#define dgStalfosFlinchFromHitFrontAnim "__OTR__objects/object_sk2/gStalfosFlinchFromHitFrontAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosFlinchFromHitFrontAnim[] = dgStalfosFlinchFromHitFrontAnim; -#else -static const char gStalfosFlinchFromHitFrontAnim[] __attribute__((aligned (2))) = dgStalfosFlinchFromHitFrontAnim; -#endif - -#define dgStalfosFallOverForwardsAnim "__OTR__objects/object_sk2/gStalfosFallOverForwardsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosFallOverForwardsAnim[] = dgStalfosFallOverForwardsAnim; -#else -static const char gStalfosFallOverForwardsAnim[] __attribute__((aligned (2))) = dgStalfosFallOverForwardsAnim; -#endif - -#define dgStalfosLeapAnim "__OTR__objects/object_sk2/gStalfosLeapAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLeapAnim[] = dgStalfosLeapAnim; -#else -static const char gStalfosLeapAnim[] __attribute__((aligned (2))) = dgStalfosLeapAnim; -#endif - -#define dgStalfosJumpAnim "__OTR__objects/object_sk2/gStalfosJumpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosJumpAnim[] = dgStalfosJumpAnim; -#else -static const char gStalfosJumpAnim[] __attribute__((aligned (2))) = dgStalfosJumpAnim; -#endif - -#define dgStalfosJumpslashAnim "__OTR__objects/object_sk2/gStalfosJumpslashAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosJumpslashAnim[] = dgStalfosJumpslashAnim; -#else -static const char gStalfosJumpslashAnim[] __attribute__((aligned (2))) = dgStalfosJumpslashAnim; -#endif - -#define dgStalfosDownSlashAnim "__OTR__objects/object_sk2/gStalfosDownSlashAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosDownSlashAnim[] = dgStalfosDownSlashAnim; -#else -static const char gStalfosDownSlashAnim[] __attribute__((aligned (2))) = dgStalfosDownSlashAnim; -#endif - -#define dgStalfosRecoverFromDownSlashAnim "__OTR__objects/object_sk2/gStalfosRecoverFromDownSlashAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosRecoverFromDownSlashAnim[] = dgStalfosRecoverFromDownSlashAnim; -#else -static const char gStalfosRecoverFromDownSlashAnim[] __attribute__((aligned (2))) = dgStalfosRecoverFromDownSlashAnim; -#endif - -#define dgStalfosUpSlashAnim "__OTR__objects/object_sk2/gStalfosUpSlashAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosUpSlashAnim[] = dgStalfosUpSlashAnim; -#else -static const char gStalfosUpSlashAnim[] __attribute__((aligned (2))) = dgStalfosUpSlashAnim; -#endif - -#define dgStalfosLandFromLeapAnim "__OTR__objects/object_sk2/gStalfosLandFromLeapAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLandFromLeapAnim[] = dgStalfosLandFromLeapAnim; -#else -static const char gStalfosLandFromLeapAnim[] __attribute__((aligned (2))) = dgStalfosLandFromLeapAnim; -#endif - -#define dgStalfosLaughAnim "__OTR__objects/object_sk2/gStalfosLaughAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLaughAnim[] = dgStalfosLaughAnim; -#else -static const char gStalfosLaughAnim[] __attribute__((aligned (2))) = dgStalfosLaughAnim; -#endif - -#define dgStalfosLookAroundAnim "__OTR__objects/object_sk2/gStalfosLookAroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosLookAroundAnim[] = dgStalfosLookAroundAnim; -#else -static const char gStalfosLookAroundAnim[] __attribute__((aligned (2))) = dgStalfosLookAroundAnim; -#endif - -#define dgStalfosSidestepAnim "__OTR__objects/object_sk2/gStalfosSidestepAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosSidestepAnim[] = dgStalfosSidestepAnim; -#else -static const char gStalfosSidestepAnim[] __attribute__((aligned (2))) = dgStalfosSidestepAnim; -#endif - -#define dgStalfosReleaseAttentionAnim "__OTR__objects/object_sk2/gStalfosReleaseAttentionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalfosReleaseAttentionAnim[] = dgStalfosReleaseAttentionAnim; -#else -static const char gStalfosReleaseAttentionAnim[] __attribute__((aligned (2))) = dgStalfosReleaseAttentionAnim; -#endif - +#include "align_asset_macro.h" + +#define dgStalfosSkullDL "__OTR__objects/object_sk2/gStalfosSkullDL" +static const ALIGN_ASSET(2) char gStalfosSkullDL[] = dgStalfosSkullDL; + +#define dgStalfosUpperCoreDL "__OTR__objects/object_sk2/gStalfosUpperCoreDL" +static const ALIGN_ASSET(2) char gStalfosUpperCoreDL[] = dgStalfosUpperCoreDL; + +#define dgStalfosRightUpperArmDL "__OTR__objects/object_sk2/gStalfosRightUpperArmDL" +static const ALIGN_ASSET(2) char gStalfosRightUpperArmDL[] = dgStalfosRightUpperArmDL; + +#define dgStalfosLowerCoreDL "__OTR__objects/object_sk2/gStalfosLowerCoreDL" +static const ALIGN_ASSET(2) char gStalfosLowerCoreDL[] = dgStalfosLowerCoreDL; + +#define dgStalfosRightThighDL "__OTR__objects/object_sk2/gStalfosRightThighDL" +static const ALIGN_ASSET(2) char gStalfosRightThighDL[] = dgStalfosRightThighDL; + +#define dgStalfosRightHandDL "__OTR__objects/object_sk2/gStalfosRightHandDL" +static const ALIGN_ASSET(2) char gStalfosRightHandDL[] = dgStalfosRightHandDL; + +#define dgStalfosChestDL "__OTR__objects/object_sk2/gStalfosChestDL" +static const ALIGN_ASSET(2) char gStalfosChestDL[] = dgStalfosChestDL; + +#define dgStalfosJawDL "__OTR__objects/object_sk2/gStalfosJawDL" +static const ALIGN_ASSET(2) char gStalfosJawDL[] = dgStalfosJawDL; + +#define dgStalfosUpperNeckDL "__OTR__objects/object_sk2/gStalfosUpperNeckDL" +static const ALIGN_ASSET(2) char gStalfosUpperNeckDL[] = dgStalfosUpperNeckDL; + +#define dgStalfosLowerNeckDL "__OTR__objects/object_sk2/gStalfosLowerNeckDL" +static const ALIGN_ASSET(2) char gStalfosLowerNeckDL[] = dgStalfosLowerNeckDL; + +#define dgStalfosShieldDL "__OTR__objects/object_sk2/gStalfosShieldDL" +static const ALIGN_ASSET(2) char gStalfosShieldDL[] = dgStalfosShieldDL; + +#define dgStalfosWaistDL "__OTR__objects/object_sk2/gStalfosWaistDL" +static const ALIGN_ASSET(2) char gStalfosWaistDL[] = dgStalfosWaistDL; + +#define dgStalfosRightLowerLegDL "__OTR__objects/object_sk2/gStalfosRightLowerLegDL" +static const ALIGN_ASSET(2) char gStalfosRightLowerLegDL[] = dgStalfosRightLowerLegDL; + +#define dgStalfosRightForearmDL "__OTR__objects/object_sk2/gStalfosRightForearmDL" +static const ALIGN_ASSET(2) char gStalfosRightForearmDL[] = dgStalfosRightForearmDL; + +#define dgStalfosRightFootDL "__OTR__objects/object_sk2/gStalfosRightFootDL" +static const ALIGN_ASSET(2) char gStalfosRightFootDL[] = dgStalfosRightFootDL; + +#define dgStalfosRightShoulderArmorDL "__OTR__objects/object_sk2/gStalfosRightShoulderArmorDL" +static const ALIGN_ASSET(2) char gStalfosRightShoulderArmorDL[] = dgStalfosRightShoulderArmorDL; + +#define dgStalfosLeftUpperArmDL "__OTR__objects/object_sk2/gStalfosLeftUpperArmDL" +static const ALIGN_ASSET(2) char gStalfosLeftUpperArmDL[] = dgStalfosLeftUpperArmDL; + +#define dgStalfosLeftShoulderArmorDL "__OTR__objects/object_sk2/gStalfosLeftShoulderArmorDL" +static const ALIGN_ASSET(2) char gStalfosLeftShoulderArmorDL[] = dgStalfosLeftShoulderArmorDL; + +#define dgStalfosLeftFootDL "__OTR__objects/object_sk2/gStalfosLeftFootDL" +static const ALIGN_ASSET(2) char gStalfosLeftFootDL[] = dgStalfosLeftFootDL; + +#define dgStalfosLeftForearmDL "__OTR__objects/object_sk2/gStalfosLeftForearmDL" +static const ALIGN_ASSET(2) char gStalfosLeftForearmDL[] = dgStalfosLeftForearmDL; + +#define dgStalfosLeftLowerLegDL "__OTR__objects/object_sk2/gStalfosLeftLowerLegDL" +static const ALIGN_ASSET(2) char gStalfosLeftLowerLegDL[] = dgStalfosLeftLowerLegDL; + +#define dgStalfosLeftThighDL "__OTR__objects/object_sk2/gStalfosLeftThighDL" +static const ALIGN_ASSET(2) char gStalfosLeftThighDL[] = dgStalfosLeftThighDL; + +#define dgStalfosLeftHandDL "__OTR__objects/object_sk2/gStalfosLeftHandDL" +static const ALIGN_ASSET(2) char gStalfosLeftHandDL[] = dgStalfosLeftHandDL; + +#define dgStalfosSwordDL "__OTR__objects/object_sk2/gStalfosSwordDL" +static const ALIGN_ASSET(2) char gStalfosSwordDL[] = dgStalfosSwordDL; + +#define dgStalfosEyeSocketTex "__OTR__objects/object_sk2/gStalfosEyeSocketTex" +static const ALIGN_ASSET(2) char gStalfosEyeSocketTex[] = dgStalfosEyeSocketTex; + +#define dgStalfosEyeTex "__OTR__objects/object_sk2/gStalfosEyeTex" +static const ALIGN_ASSET(2) char gStalfosEyeTex[] = dgStalfosEyeTex; + +#define dgStalfosBoneGradientTex "__OTR__objects/object_sk2/gStalfosBoneGradientTex" +static const ALIGN_ASSET(2) char gStalfosBoneGradientTex[] = dgStalfosBoneGradientTex; + +#define dgStalfosNostrilTex "__OTR__objects/object_sk2/gStalfosNostrilTex" +static const ALIGN_ASSET(2) char gStalfosNostrilTex[] = dgStalfosNostrilTex; + +#define dgStalfosBoneDetailTex "__OTR__objects/object_sk2/gStalfosBoneDetailTex" +static const ALIGN_ASSET(2) char gStalfosBoneDetailTex[] = dgStalfosBoneDetailTex; + +#define dgStalfosRibTex "__OTR__objects/object_sk2/gStalfosRibTex" +static const ALIGN_ASSET(2) char gStalfosRibTex[] = dgStalfosRibTex; + +#define dgStalfosTrousersSideTex "__OTR__objects/object_sk2/gStalfosTrousersSideTex" +static const ALIGN_ASSET(2) char gStalfosTrousersSideTex[] = dgStalfosTrousersSideTex; + +#define dgStalfosShieldTex "__OTR__objects/object_sk2/gStalfosShieldTex" +static const ALIGN_ASSET(2) char gStalfosShieldTex[] = dgStalfosShieldTex; + +#define dgStalfosLimbArmorTex "__OTR__objects/object_sk2/gStalfosLimbArmorTex" +static const ALIGN_ASSET(2) char gStalfosLimbArmorTex[] = dgStalfosLimbArmorTex; + +#define dgStalfosArmorBackTex "__OTR__objects/object_sk2/gStalfosArmorBackTex" +static const ALIGN_ASSET(2) char gStalfosArmorBackTex[] = dgStalfosArmorBackTex; + +#define dgStalfosSwordBladeTex "__OTR__objects/object_sk2/gStalfosSwordBladeTex" +static const ALIGN_ASSET(2) char gStalfosSwordBladeTex[] = dgStalfosSwordBladeTex; + +#define dgStalfosTrousersTopTex "__OTR__objects/object_sk2/gStalfosTrousersTopTex" +static const ALIGN_ASSET(2) char gStalfosTrousersTopTex[] = dgStalfosTrousersTopTex; + +#define dgStalfosSkel "__OTR__objects/object_sk2/gStalfosSkel" +static const ALIGN_ASSET(2) char gStalfosSkel[] = dgStalfosSkel; + +#define dgStalfosFlinchFromHitBehindAnim "__OTR__objects/object_sk2/gStalfosFlinchFromHitBehindAnim" +static const ALIGN_ASSET(2) char gStalfosFlinchFromHitBehindAnim[] = dgStalfosFlinchFromHitBehindAnim; + +#define dgStalfosFallOverBackwardsAnim "__OTR__objects/object_sk2/gStalfosFallOverBackwardsAnim" +static const ALIGN_ASSET(2) char gStalfosFallOverBackwardsAnim[] = dgStalfosFallOverBackwardsAnim; + +#define dgStalfosJumpBackwardsAnim "__OTR__objects/object_sk2/gStalfosJumpBackwardsAnim" +static const ALIGN_ASSET(2) char gStalfosJumpBackwardsAnim[] = dgStalfosJumpBackwardsAnim; + +#define dgStalfosBlockWithShieldAnim "__OTR__objects/object_sk2/gStalfosBlockWithShieldAnim" +static const ALIGN_ASSET(2) char gStalfosBlockWithShieldAnim[] = dgStalfosBlockWithShieldAnim; + +#define dgStalfosStandAttentionAnim "__OTR__objects/object_sk2/gStalfosStandAttentionAnim" +static const ALIGN_ASSET(2) char gStalfosStandAttentionAnim[] = dgStalfosStandAttentionAnim; + +#define dgStalfosFastAdvanceAnim "__OTR__objects/object_sk2/gStalfosFastAdvanceAnim" +static const ALIGN_ASSET(2) char gStalfosFastAdvanceAnim[] = dgStalfosFastAdvanceAnim; + +#define dgStalfosMiddleGuardAnim "__OTR__objects/object_sk2/gStalfosMiddleGuardAnim" +static const ALIGN_ASSET(2) char gStalfosMiddleGuardAnim[] = dgStalfosMiddleGuardAnim; + +#define dgStalfosSlowAdvanceAnim "__OTR__objects/object_sk2/gStalfosSlowAdvanceAnim" +static const ALIGN_ASSET(2) char gStalfosSlowAdvanceAnim[] = dgStalfosSlowAdvanceAnim; + +#define dgStalfosFlinchFromHitFrontAnim "__OTR__objects/object_sk2/gStalfosFlinchFromHitFrontAnim" +static const ALIGN_ASSET(2) char gStalfosFlinchFromHitFrontAnim[] = dgStalfosFlinchFromHitFrontAnim; + +#define dgStalfosFallOverForwardsAnim "__OTR__objects/object_sk2/gStalfosFallOverForwardsAnim" +static const ALIGN_ASSET(2) char gStalfosFallOverForwardsAnim[] = dgStalfosFallOverForwardsAnim; + +#define dgStalfosLeapAnim "__OTR__objects/object_sk2/gStalfosLeapAnim" +static const ALIGN_ASSET(2) char gStalfosLeapAnim[] = dgStalfosLeapAnim; + +#define dgStalfosJumpAnim "__OTR__objects/object_sk2/gStalfosJumpAnim" +static const ALIGN_ASSET(2) char gStalfosJumpAnim[] = dgStalfosJumpAnim; + +#define dgStalfosJumpslashAnim "__OTR__objects/object_sk2/gStalfosJumpslashAnim" +static const ALIGN_ASSET(2) char gStalfosJumpslashAnim[] = dgStalfosJumpslashAnim; + +#define dgStalfosDownSlashAnim "__OTR__objects/object_sk2/gStalfosDownSlashAnim" +static const ALIGN_ASSET(2) char gStalfosDownSlashAnim[] = dgStalfosDownSlashAnim; + +#define dgStalfosRecoverFromDownSlashAnim "__OTR__objects/object_sk2/gStalfosRecoverFromDownSlashAnim" +static const ALIGN_ASSET(2) char gStalfosRecoverFromDownSlashAnim[] = dgStalfosRecoverFromDownSlashAnim; + +#define dgStalfosUpSlashAnim "__OTR__objects/object_sk2/gStalfosUpSlashAnim" +static const ALIGN_ASSET(2) char gStalfosUpSlashAnim[] = dgStalfosUpSlashAnim; + +#define dgStalfosLandFromLeapAnim "__OTR__objects/object_sk2/gStalfosLandFromLeapAnim" +static const ALIGN_ASSET(2) char gStalfosLandFromLeapAnim[] = dgStalfosLandFromLeapAnim; + +#define dgStalfosLaughAnim "__OTR__objects/object_sk2/gStalfosLaughAnim" +static const ALIGN_ASSET(2) char gStalfosLaughAnim[] = dgStalfosLaughAnim; + +#define dgStalfosLookAroundAnim "__OTR__objects/object_sk2/gStalfosLookAroundAnim" +static const ALIGN_ASSET(2) char gStalfosLookAroundAnim[] = dgStalfosLookAroundAnim; + +#define dgStalfosSidestepAnim "__OTR__objects/object_sk2/gStalfosSidestepAnim" +static const ALIGN_ASSET(2) char gStalfosSidestepAnim[] = dgStalfosSidestepAnim; + +#define dgStalfosReleaseAttentionAnim "__OTR__objects/object_sk2/gStalfosReleaseAttentionAnim" +static const ALIGN_ASSET(2) char gStalfosReleaseAttentionAnim[] = dgStalfosReleaseAttentionAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_skb/object_skb.h b/soh/assets/objects/object_skb/object_skb.h index f3da20b4a..a453190b1 100644 --- a/soh/assets/objects/object_skb/object_skb.h +++ b/soh/assets/objects/object_skb/object_skb.h @@ -1,226 +1,99 @@ #pragma once -#define dgStalchildSkel "__OTR__objects/object_skb/gStalchildSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildSkel[] = dgStalchildSkel; -#else -static const char gStalchildSkel[] __attribute__((aligned (2))) = dgStalchildSkel; -#endif - -#define dgStalchildHeadDL "__OTR__objects/object_skb/gStalchildHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildHeadDL[] = dgStalchildHeadDL; -#else -static const char gStalchildHeadDL[] __attribute__((aligned (2))) = dgStalchildHeadDL; -#endif - -#define dgStalchildJawDL "__OTR__objects/object_skb/gStalchildJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildJawDL[] = dgStalchildJawDL; -#else -static const char gStalchildJawDL[] __attribute__((aligned (2))) = dgStalchildJawDL; -#endif - -#define dgStalchildRibCageDL "__OTR__objects/object_skb/gStalchildRibCageDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildRibCageDL[] = dgStalchildRibCageDL; -#else -static const char gStalchildRibCageDL[] __attribute__((aligned (2))) = dgStalchildRibCageDL; -#endif - -#define dgStalchildSpineDL "__OTR__objects/object_skb/gStalchildSpineDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildSpineDL[] = dgStalchildSpineDL; -#else -static const char gStalchildSpineDL[] __attribute__((aligned (2))) = dgStalchildSpineDL; -#endif - -#define dgStalchildWaistDL "__OTR__objects/object_skb/gStalchildWaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildWaistDL[] = dgStalchildWaistDL; -#else -static const char gStalchildWaistDL[] __attribute__((aligned (2))) = dgStalchildWaistDL; -#endif - -#define dgStalchildLeftHumerusDL "__OTR__objects/object_skb/gStalchildLeftHumerusDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildLeftHumerusDL[] = dgStalchildLeftHumerusDL; -#else -static const char gStalchildLeftHumerusDL[] __attribute__((aligned (2))) = dgStalchildLeftHumerusDL; -#endif - -#define dgStalchildLeftForearmDL "__OTR__objects/object_skb/gStalchildLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildLeftForearmDL[] = dgStalchildLeftForearmDL; -#else -static const char gStalchildLeftForearmDL[] __attribute__((aligned (2))) = dgStalchildLeftForearmDL; -#endif - -#define dgStalchildLeftHandDL "__OTR__objects/object_skb/gStalchildLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildLeftHandDL[] = dgStalchildLeftHandDL; -#else -static const char gStalchildLeftHandDL[] __attribute__((aligned (2))) = dgStalchildLeftHandDL; -#endif - -#define dgStalchildRightHumerusDL "__OTR__objects/object_skb/gStalchildRightHumerusDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildRightHumerusDL[] = dgStalchildRightHumerusDL; -#else -static const char gStalchildRightHumerusDL[] __attribute__((aligned (2))) = dgStalchildRightHumerusDL; -#endif - -#define dgStalchildRightForearmDL "__OTR__objects/object_skb/gStalchildRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildRightForearmDL[] = dgStalchildRightForearmDL; -#else -static const char gStalchildRightForearmDL[] __attribute__((aligned (2))) = dgStalchildRightForearmDL; -#endif - -#define dgStalchildRightHandDL "__OTR__objects/object_skb/gStalchildRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildRightHandDL[] = dgStalchildRightHandDL; -#else -static const char gStalchildRightHandDL[] __attribute__((aligned (2))) = dgStalchildRightHandDL; -#endif - -#define dgStalchildLeftFemurDL "__OTR__objects/object_skb/gStalchildLeftFemurDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildLeftFemurDL[] = dgStalchildLeftFemurDL; -#else -static const char gStalchildLeftFemurDL[] __attribute__((aligned (2))) = dgStalchildLeftFemurDL; -#endif - -#define dgStalchildLeftShinDL "__OTR__objects/object_skb/gStalchildLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildLeftShinDL[] = dgStalchildLeftShinDL; -#else -static const char gStalchildLeftShinDL[] __attribute__((aligned (2))) = dgStalchildLeftShinDL; -#endif - -#define dgStalchildLeftFootDL "__OTR__objects/object_skb/gStalchildLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildLeftFootDL[] = dgStalchildLeftFootDL; -#else -static const char gStalchildLeftFootDL[] __attribute__((aligned (2))) = dgStalchildLeftFootDL; -#endif - -#define dgStalchildRightFemurDL "__OTR__objects/object_skb/gStalchildRightFemurDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildRightFemurDL[] = dgStalchildRightFemurDL; -#else -static const char gStalchildRightFemurDL[] __attribute__((aligned (2))) = dgStalchildRightFemurDL; -#endif - -#define dgStalchildRightShinDL "__OTR__objects/object_skb/gStalchildRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildRightShinDL[] = dgStalchildRightShinDL; -#else -static const char gStalchildRightShinDL[] __attribute__((aligned (2))) = dgStalchildRightShinDL; -#endif - -#define dgStalchildRightFootDL "__OTR__objects/object_skb/gStalchildRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildRightFootDL[] = dgStalchildRightFootDL; -#else -static const char gStalchildRightFootDL[] __attribute__((aligned (2))) = dgStalchildRightFootDL; -#endif - -#define dgStalchildWaistTex "__OTR__objects/object_skb/gStalchildWaistTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildWaistTex[] = dgStalchildWaistTex; -#else -static const char gStalchildWaistTex[] __attribute__((aligned (2))) = dgStalchildWaistTex; -#endif - -#define dgStalchildRibCageTex "__OTR__objects/object_skb/gStalchildRibCageTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildRibCageTex[] = dgStalchildRibCageTex; -#else -static const char gStalchildRibCageTex[] __attribute__((aligned (2))) = dgStalchildRibCageTex; -#endif - -#define dgStalchildHeadTex "__OTR__objects/object_skb/gStalchildHeadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildHeadTex[] = dgStalchildHeadTex; -#else -static const char gStalchildHeadTex[] __attribute__((aligned (2))) = dgStalchildHeadTex; -#endif - -#define dgStalchildBoneTex "__OTR__objects/object_skb/gStalchildBoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildBoneTex[] = dgStalchildBoneTex; -#else -static const char gStalchildBoneTex[] __attribute__((aligned (2))) = dgStalchildBoneTex; -#endif - -#define dgStalchildNostrilTex "__OTR__objects/object_skb/gStalchildNostrilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildNostrilTex[] = dgStalchildNostrilTex; -#else -static const char gStalchildNostrilTex[] __attribute__((aligned (2))) = dgStalchildNostrilTex; -#endif - -#define dgStalchildHandAndFeetTex "__OTR__objects/object_skb/gStalchildHandAndFeetTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildHandAndFeetTex[] = dgStalchildHandAndFeetTex; -#else -static const char gStalchildHandAndFeetTex[] __attribute__((aligned (2))) = dgStalchildHandAndFeetTex; -#endif - -#define dgStalchildTeethTex "__OTR__objects/object_skb/gStalchildTeethTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildTeethTex[] = dgStalchildTeethTex; -#else -static const char gStalchildTeethTex[] __attribute__((aligned (2))) = dgStalchildTeethTex; -#endif - -#define dgStalchildEyeSocketTex "__OTR__objects/object_skb/gStalchildEyeSocketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildEyeSocketTex[] = dgStalchildEyeSocketTex; -#else -static const char gStalchildEyeSocketTex[] __attribute__((aligned (2))) = dgStalchildEyeSocketTex; -#endif - -#define dgStalchildEyeTex "__OTR__objects/object_skb/gStalchildEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildEyeTex[] = dgStalchildEyeTex; -#else -static const char gStalchildEyeTex[] __attribute__((aligned (2))) = dgStalchildEyeTex; -#endif - -#define dgStalchildUncurlingAnim "__OTR__objects/object_skb/gStalchildUncurlingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildUncurlingAnim[] = dgStalchildUncurlingAnim; -#else -static const char gStalchildUncurlingAnim[] __attribute__((aligned (2))) = dgStalchildUncurlingAnim; -#endif - -#define dgStalchildDyingAnim "__OTR__objects/object_skb/gStalchildDyingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildDyingAnim[] = dgStalchildDyingAnim; -#else -static const char gStalchildDyingAnim[] __attribute__((aligned (2))) = dgStalchildDyingAnim; -#endif - -#define dgStalchildDamagedAnim "__OTR__objects/object_skb/gStalchildDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildDamagedAnim[] = dgStalchildDamagedAnim; -#else -static const char gStalchildDamagedAnim[] __attribute__((aligned (2))) = dgStalchildDamagedAnim; -#endif - -#define dgStalchildWalkingAnim "__OTR__objects/object_skb/gStalchildWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildWalkingAnim[] = dgStalchildWalkingAnim; -#else -static const char gStalchildWalkingAnim[] __attribute__((aligned (2))) = dgStalchildWalkingAnim; -#endif - -#define dgStalchildAttackingAnim "__OTR__objects/object_skb/gStalchildAttackingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gStalchildAttackingAnim[] = dgStalchildAttackingAnim; -#else -static const char gStalchildAttackingAnim[] __attribute__((aligned (2))) = dgStalchildAttackingAnim; -#endif - +#include "align_asset_macro.h" + +#define dgStalchildSkel "__OTR__objects/object_skb/gStalchildSkel" +static const ALIGN_ASSET(2) char gStalchildSkel[] = dgStalchildSkel; + +#define dgStalchildHeadDL "__OTR__objects/object_skb/gStalchildHeadDL" +static const ALIGN_ASSET(2) char gStalchildHeadDL[] = dgStalchildHeadDL; + +#define dgStalchildJawDL "__OTR__objects/object_skb/gStalchildJawDL" +static const ALIGN_ASSET(2) char gStalchildJawDL[] = dgStalchildJawDL; + +#define dgStalchildRibCageDL "__OTR__objects/object_skb/gStalchildRibCageDL" +static const ALIGN_ASSET(2) char gStalchildRibCageDL[] = dgStalchildRibCageDL; + +#define dgStalchildSpineDL "__OTR__objects/object_skb/gStalchildSpineDL" +static const ALIGN_ASSET(2) char gStalchildSpineDL[] = dgStalchildSpineDL; + +#define dgStalchildWaistDL "__OTR__objects/object_skb/gStalchildWaistDL" +static const ALIGN_ASSET(2) char gStalchildWaistDL[] = dgStalchildWaistDL; + +#define dgStalchildLeftHumerusDL "__OTR__objects/object_skb/gStalchildLeftHumerusDL" +static const ALIGN_ASSET(2) char gStalchildLeftHumerusDL[] = dgStalchildLeftHumerusDL; + +#define dgStalchildLeftForearmDL "__OTR__objects/object_skb/gStalchildLeftForearmDL" +static const ALIGN_ASSET(2) char gStalchildLeftForearmDL[] = dgStalchildLeftForearmDL; + +#define dgStalchildLeftHandDL "__OTR__objects/object_skb/gStalchildLeftHandDL" +static const ALIGN_ASSET(2) char gStalchildLeftHandDL[] = dgStalchildLeftHandDL; + +#define dgStalchildRightHumerusDL "__OTR__objects/object_skb/gStalchildRightHumerusDL" +static const ALIGN_ASSET(2) char gStalchildRightHumerusDL[] = dgStalchildRightHumerusDL; + +#define dgStalchildRightForearmDL "__OTR__objects/object_skb/gStalchildRightForearmDL" +static const ALIGN_ASSET(2) char gStalchildRightForearmDL[] = dgStalchildRightForearmDL; + +#define dgStalchildRightHandDL "__OTR__objects/object_skb/gStalchildRightHandDL" +static const ALIGN_ASSET(2) char gStalchildRightHandDL[] = dgStalchildRightHandDL; + +#define dgStalchildLeftFemurDL "__OTR__objects/object_skb/gStalchildLeftFemurDL" +static const ALIGN_ASSET(2) char gStalchildLeftFemurDL[] = dgStalchildLeftFemurDL; + +#define dgStalchildLeftShinDL "__OTR__objects/object_skb/gStalchildLeftShinDL" +static const ALIGN_ASSET(2) char gStalchildLeftShinDL[] = dgStalchildLeftShinDL; + +#define dgStalchildLeftFootDL "__OTR__objects/object_skb/gStalchildLeftFootDL" +static const ALIGN_ASSET(2) char gStalchildLeftFootDL[] = dgStalchildLeftFootDL; + +#define dgStalchildRightFemurDL "__OTR__objects/object_skb/gStalchildRightFemurDL" +static const ALIGN_ASSET(2) char gStalchildRightFemurDL[] = dgStalchildRightFemurDL; + +#define dgStalchildRightShinDL "__OTR__objects/object_skb/gStalchildRightShinDL" +static const ALIGN_ASSET(2) char gStalchildRightShinDL[] = dgStalchildRightShinDL; + +#define dgStalchildRightFootDL "__OTR__objects/object_skb/gStalchildRightFootDL" +static const ALIGN_ASSET(2) char gStalchildRightFootDL[] = dgStalchildRightFootDL; + +#define dgStalchildWaistTex "__OTR__objects/object_skb/gStalchildWaistTex" +static const ALIGN_ASSET(2) char gStalchildWaistTex[] = dgStalchildWaistTex; + +#define dgStalchildRibCageTex "__OTR__objects/object_skb/gStalchildRibCageTex" +static const ALIGN_ASSET(2) char gStalchildRibCageTex[] = dgStalchildRibCageTex; + +#define dgStalchildHeadTex "__OTR__objects/object_skb/gStalchildHeadTex" +static const ALIGN_ASSET(2) char gStalchildHeadTex[] = dgStalchildHeadTex; + +#define dgStalchildBoneTex "__OTR__objects/object_skb/gStalchildBoneTex" +static const ALIGN_ASSET(2) char gStalchildBoneTex[] = dgStalchildBoneTex; + +#define dgStalchildNostrilTex "__OTR__objects/object_skb/gStalchildNostrilTex" +static const ALIGN_ASSET(2) char gStalchildNostrilTex[] = dgStalchildNostrilTex; + +#define dgStalchildHandAndFeetTex "__OTR__objects/object_skb/gStalchildHandAndFeetTex" +static const ALIGN_ASSET(2) char gStalchildHandAndFeetTex[] = dgStalchildHandAndFeetTex; + +#define dgStalchildTeethTex "__OTR__objects/object_skb/gStalchildTeethTex" +static const ALIGN_ASSET(2) char gStalchildTeethTex[] = dgStalchildTeethTex; + +#define dgStalchildEyeSocketTex "__OTR__objects/object_skb/gStalchildEyeSocketTex" +static const ALIGN_ASSET(2) char gStalchildEyeSocketTex[] = dgStalchildEyeSocketTex; + +#define dgStalchildEyeTex "__OTR__objects/object_skb/gStalchildEyeTex" +static const ALIGN_ASSET(2) char gStalchildEyeTex[] = dgStalchildEyeTex; + +#define dgStalchildUncurlingAnim "__OTR__objects/object_skb/gStalchildUncurlingAnim" +static const ALIGN_ASSET(2) char gStalchildUncurlingAnim[] = dgStalchildUncurlingAnim; + +#define dgStalchildDyingAnim "__OTR__objects/object_skb/gStalchildDyingAnim" +static const ALIGN_ASSET(2) char gStalchildDyingAnim[] = dgStalchildDyingAnim; + +#define dgStalchildDamagedAnim "__OTR__objects/object_skb/gStalchildDamagedAnim" +static const ALIGN_ASSET(2) char gStalchildDamagedAnim[] = dgStalchildDamagedAnim; + +#define dgStalchildWalkingAnim "__OTR__objects/object_skb/gStalchildWalkingAnim" +static const ALIGN_ASSET(2) char gStalchildWalkingAnim[] = dgStalchildWalkingAnim; + +#define dgStalchildAttackingAnim "__OTR__objects/object_skb/gStalchildAttackingAnim" +static const ALIGN_ASSET(2) char gStalchildAttackingAnim[] = dgStalchildAttackingAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_skj/object_skj.h b/soh/assets/objects/object_skj/object_skj.h index 0c26d8d1b..921f58057 100644 --- a/soh/assets/objects/object_skj/object_skj.h +++ b/soh/assets/objects/object_skj/object_skj.h @@ -1,338 +1,147 @@ #pragma once -#define dgSkullKidNeedleDL "__OTR__objects/object_skj/gSkullKidNeedleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidNeedleDL[] = dgSkullKidNeedleDL; -#else -static const char gSkullKidNeedleDL[] __attribute__((aligned (2))) = dgSkullKidNeedleDL; -#endif - -#define dgSkullKidSkullMaskDL "__OTR__objects/object_skj/gSkullKidSkullMaskDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidSkullMaskDL[] = dgSkullKidSkullMaskDL; -#else -static const char gSkullKidSkullMaskDL[] __attribute__((aligned (2))) = dgSkullKidSkullMaskDL; -#endif - -#define dgSkullKidSkel "__OTR__objects/object_skj/gSkullKidSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidSkel[] = dgSkullKidSkel; -#else -static const char gSkullKidSkel[] __attribute__((aligned (2))) = dgSkullKidSkel; -#endif - -#define dgSkullKidLeftUpperLegDL "__OTR__objects/object_skj/gSkullKidLeftUpperLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidLeftUpperLegDL[] = dgSkullKidLeftUpperLegDL; -#else -static const char gSkullKidLeftUpperLegDL[] __attribute__((aligned (2))) = dgSkullKidLeftUpperLegDL; -#endif - -#define dgSkullKidLeftLowerLegDL "__OTR__objects/object_skj/gSkullKidLeftLowerLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidLeftLowerLegDL[] = dgSkullKidLeftLowerLegDL; -#else -static const char gSkullKidLeftLowerLegDL[] __attribute__((aligned (2))) = dgSkullKidLeftLowerLegDL; -#endif - -#define dgSkullKidLeftFootDL "__OTR__objects/object_skj/gSkullKidLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidLeftFootDL[] = dgSkullKidLeftFootDL; -#else -static const char gSkullKidLeftFootDL[] __attribute__((aligned (2))) = dgSkullKidLeftFootDL; -#endif - -#define dgSkullKidRightUpperLegDL "__OTR__objects/object_skj/gSkullKidRightUpperLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidRightUpperLegDL[] = dgSkullKidRightUpperLegDL; -#else -static const char gSkullKidRightUpperLegDL[] __attribute__((aligned (2))) = dgSkullKidRightUpperLegDL; -#endif - -#define dgSkullKidRightLowerLegDL "__OTR__objects/object_skj/gSkullKidRightLowerLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidRightLowerLegDL[] = dgSkullKidRightLowerLegDL; -#else -static const char gSkullKidRightLowerLegDL[] __attribute__((aligned (2))) = dgSkullKidRightLowerLegDL; -#endif - -#define dgSkullKidRightFootDL "__OTR__objects/object_skj/gSkullKidRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidRightFootDL[] = dgSkullKidRightFootDL; -#else -static const char gSkullKidRightFootDL[] __attribute__((aligned (2))) = dgSkullKidRightFootDL; -#endif - -#define dgSkullKidChestAndClothesDL "__OTR__objects/object_skj/gSkullKidChestAndClothesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidChestAndClothesDL[] = dgSkullKidChestAndClothesDL; -#else -static const char gSkullKidChestAndClothesDL[] __attribute__((aligned (2))) = dgSkullKidChestAndClothesDL; -#endif - -#define dgSkullKidNeckDL "__OTR__objects/object_skj/gSkullKidNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidNeckDL[] = dgSkullKidNeckDL; -#else -static const char gSkullKidNeckDL[] __attribute__((aligned (2))) = dgSkullKidNeckDL; -#endif - -#define dgSKullKidHeadAndFaceDL "__OTR__objects/object_skj/gSKullKidHeadAndFaceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSKullKidHeadAndFaceDL[] = dgSKullKidHeadAndFaceDL; -#else -static const char gSKullKidHeadAndFaceDL[] __attribute__((aligned (2))) = dgSKullKidHeadAndFaceDL; -#endif - -#define dgSkullKidUpperHatDL "__OTR__objects/object_skj/gSkullKidUpperHatDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidUpperHatDL[] = dgSkullKidUpperHatDL; -#else -static const char gSkullKidUpperHatDL[] __attribute__((aligned (2))) = dgSkullKidUpperHatDL; -#endif - -#define dgSkullKidLeftShoulderDL "__OTR__objects/object_skj/gSkullKidLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidLeftShoulderDL[] = dgSkullKidLeftShoulderDL; -#else -static const char gSkullKidLeftShoulderDL[] __attribute__((aligned (2))) = dgSkullKidLeftShoulderDL; -#endif - -#define dgSkullKidLeftArmDL "__OTR__objects/object_skj/gSkullKidLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidLeftArmDL[] = dgSkullKidLeftArmDL; -#else -static const char gSkullKidLeftArmDL[] __attribute__((aligned (2))) = dgSkullKidLeftArmDL; -#endif - -#define dgSkullKidLeftHandAndFluteDL "__OTR__objects/object_skj/gSkullKidLeftHandAndFluteDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidLeftHandAndFluteDL[] = dgSkullKidLeftHandAndFluteDL; -#else -static const char gSkullKidLeftHandAndFluteDL[] __attribute__((aligned (2))) = dgSkullKidLeftHandAndFluteDL; -#endif - -#define dgSkullKidRightShoulderDL "__OTR__objects/object_skj/gSkullKidRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidRightShoulderDL[] = dgSkullKidRightShoulderDL; -#else -static const char gSkullKidRightShoulderDL[] __attribute__((aligned (2))) = dgSkullKidRightShoulderDL; -#endif - -#define dgSkullKidRightArmDL "__OTR__objects/object_skj/gSkullKidRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidRightArmDL[] = dgSkullKidRightArmDL; -#else -static const char gSkullKidRightArmDL[] __attribute__((aligned (2))) = dgSkullKidRightArmDL; -#endif - -#define dgSkullKidBackflipAnim "__OTR__objects/object_skj/gSkullKidBackflipAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidBackflipAnim[] = dgSkullKidBackflipAnim; -#else -static const char gSkullKidBackflipAnim[] __attribute__((aligned (2))) = dgSkullKidBackflipAnim; -#endif - -#define dgSkullKidShootNeedleAnim "__OTR__objects/object_skj/gSkullKidShootNeedleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidShootNeedleAnim[] = dgSkullKidShootNeedleAnim; -#else -static const char gSkullKidShootNeedleAnim[] __attribute__((aligned (2))) = dgSkullKidShootNeedleAnim; -#endif - -#define dgSkullKidPlayFluteAnim "__OTR__objects/object_skj/gSkullKidPlayFluteAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidPlayFluteAnim[] = dgSkullKidPlayFluteAnim; -#else -static const char gSkullKidPlayFluteAnim[] __attribute__((aligned (2))) = dgSkullKidPlayFluteAnim; -#endif - -#define dgSkullKidDieAnim "__OTR__objects/object_skj/gSkullKidDieAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidDieAnim[] = dgSkullKidDieAnim; -#else -static const char gSkullKidDieAnim[] __attribute__((aligned (2))) = dgSkullKidDieAnim; -#endif - -#define dgSkullKidHitAnim "__OTR__objects/object_skj/gSkullKidHitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidHitAnim[] = dgSkullKidHitAnim; -#else -static const char gSkullKidHitAnim[] __attribute__((aligned (2))) = dgSkullKidHitAnim; -#endif - -#define dgSkullKidLandAnim "__OTR__objects/object_skj/gSkullKidLandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidLandAnim[] = dgSkullKidLandAnim; -#else -static const char gSkullKidLandAnim[] __attribute__((aligned (2))) = dgSkullKidLandAnim; -#endif - -#define dgSkullKidLookLeftAndRightAnim "__OTR__objects/object_skj/gSkullKidLookLeftAndRightAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidLookLeftAndRightAnim[] = dgSkullKidLookLeftAndRightAnim; -#else -static const char gSkullKidLookLeftAndRightAnim[] __attribute__((aligned (2))) = dgSkullKidLookLeftAndRightAnim; -#endif - -#define dgSkullKidFightingStanceAnim "__OTR__objects/object_skj/gSkullKidFightingStanceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidFightingStanceAnim[] = dgSkullKidFightingStanceAnim; -#else -static const char gSkullKidFightingStanceAnim[] __attribute__((aligned (2))) = dgSkullKidFightingStanceAnim; -#endif - -#define dgSkullKidWaitAnim "__OTR__objects/object_skj/gSkullKidWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidWaitAnim[] = dgSkullKidWaitAnim; -#else -static const char gSkullKidWaitAnim[] __attribute__((aligned (2))) = dgSkullKidWaitAnim; -#endif - -#define dgSkullKidWalkToPlayerAnim "__OTR__objects/object_skj/gSkullKidWalkToPlayerAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidWalkToPlayerAnim[] = dgSkullKidWalkToPlayerAnim; -#else -static const char gSkullKidWalkToPlayerAnim[] __attribute__((aligned (2))) = dgSkullKidWalkToPlayerAnim; -#endif - -#define dgSkullKidSkullMaskTex "__OTR__objects/object_skj/gSkullKidSkullMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidSkullMaskTex[] = dgSkullKidSkullMaskTex; -#else -static const char gSkullKidSkullMaskTex[] __attribute__((aligned (2))) = dgSkullKidSkullMaskTex; -#endif - -#define dgSkullKidSkullMaskTeethTex "__OTR__objects/object_skj/gSkullKidSkullMaskTeethTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidSkullMaskTeethTex[] = dgSkullKidSkullMaskTeethTex; -#else -static const char gSkullKidSkullMaskTeethTex[] __attribute__((aligned (2))) = dgSkullKidSkullMaskTeethTex; -#endif - -#define dgSkullKidSkullMaskNoseTex "__OTR__objects/object_skj/gSkullKidSkullMaskNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidSkullMaskNoseTex[] = dgSkullKidSkullMaskNoseTex; -#else -static const char gSkullKidSkullMaskNoseTex[] __attribute__((aligned (2))) = dgSkullKidSkullMaskNoseTex; -#endif - -#define dgSKJunaccounted_52C "__OTR__objects/object_skj/gSKJunaccounted_52C" -#ifdef _WIN32 -static const __declspec(align(2)) char gSKJunaccounted_52C[] = dgSKJunaccounted_52C; -#else -static const char gSKJunaccounted_52C[] __attribute__((aligned (2))) = dgSKJunaccounted_52C; -#endif - -#define dgSKJunaccounted_E20 "__OTR__objects/object_skj/gSKJunaccounted_E20" -#ifdef _WIN32 -static const __declspec(align(2)) char gSKJunaccounted_E20[] = dgSKJunaccounted_E20; -#else -static const char gSKJunaccounted_E20[] __attribute__((aligned (2))) = dgSKJunaccounted_E20; -#endif - -#define dgSKJunaccounted_EAA8 "__OTR__objects/object_skj/gSKJunaccounted_EAA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gSKJunaccounted_EAA8[] = dgSKJunaccounted_EAA8; -#else -static const char gSKJunaccounted_EAA8[] __attribute__((aligned (2))) = dgSKJunaccounted_EAA8; -#endif - -#define dgSKJunaccounted_ED94 "__OTR__objects/object_skj/gSKJunaccounted_ED94" -#ifdef _WIN32 -static const __declspec(align(2)) char gSKJunaccounted_ED94[] = dgSKJunaccounted_ED94; -#else -static const char gSKJunaccounted_ED94[] __attribute__((aligned (2))) = dgSKJunaccounted_ED94; -#endif - -#define dgSKJunaccounted_7138 "__OTR__objects/object_skj/gSKJunaccounted_7138" -#ifdef _WIN32 -static const __declspec(align(2)) char gSKJunaccounted_7138[] = dgSKJunaccounted_7138; -#else -static const char gSKJunaccounted_7138[] __attribute__((aligned (2))) = dgSKJunaccounted_7138; -#endif - -#define dgSKJunaccounted_8184 "__OTR__objects/object_skj/gSKJunaccounted_8184" -#ifdef _WIN32 -static const __declspec(align(2)) char gSKJunaccounted_8184[] = dgSKJunaccounted_8184; -#else -static const char gSKJunaccounted_8184[] __attribute__((aligned (2))) = dgSKJunaccounted_8184; -#endif - -#define dgSKJunaccounted_8BAC "__OTR__objects/object_skj/gSKJunaccounted_8BAC" -#ifdef _WIN32 -static const __declspec(align(2)) char gSKJunaccounted_8BAC[] = dgSKJunaccounted_8BAC; -#else -static const char gSKJunaccounted_8BAC[] __attribute__((aligned (2))) = dgSKJunaccounted_8BAC; -#endif - -#define dgSkullKidUnkLimb_5E2CDL_0036A0 "__OTR__objects/object_skj/gSkullKidUnkLimb_5E2CDL_0036A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidUnkLimb_5E2CDL_0036A0[] = dgSkullKidUnkLimb_5E2CDL_0036A0; -#else -static const char gSkullKidUnkLimb_5E2CDL_0036A0[] __attribute__((aligned (2))) = dgSkullKidUnkLimb_5E2CDL_0036A0; -#endif - -#define dgSkullKidUnkLimb_5E38DL_003E48 "__OTR__objects/object_skj/gSkullKidUnkLimb_5E38DL_003E48" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullKidUnkLimb_5E38DL_003E48[] = dgSkullKidUnkLimb_5E38DL_003E48; -#else -static const char gSkullKidUnkLimb_5E38DL_003E48[] __attribute__((aligned (2))) = dgSkullKidUnkLimb_5E38DL_003E48; -#endif - -#define dobject_skjTex_005700 "__OTR__objects/object_skj/object_skjTex_005700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_skjTex_005700[] = dobject_skjTex_005700; -#else -static const char object_skjTex_005700[] __attribute__((aligned (2))) = dobject_skjTex_005700; -#endif - -#define dobject_skjTex_005300 "__OTR__objects/object_skj/object_skjTex_005300" -#ifdef _WIN32 -static const __declspec(align(2)) char object_skjTex_005300[] = dobject_skjTex_005300; -#else -static const char object_skjTex_005300[] __attribute__((aligned (2))) = dobject_skjTex_005300; -#endif - -#define dobject_skjTex_005500 "__OTR__objects/object_skj/object_skjTex_005500" -#ifdef _WIN32 -static const __declspec(align(2)) char object_skjTex_005500[] = dobject_skjTex_005500; -#else -static const char object_skjTex_005500[] __attribute__((aligned (2))) = dobject_skjTex_005500; -#endif - -#define dobject_skjTex_005900 "__OTR__objects/object_skj/object_skjTex_005900" -#ifdef _WIN32 -static const __declspec(align(2)) char object_skjTex_005900[] = dobject_skjTex_005900; -#else -static const char object_skjTex_005900[] __attribute__((aligned (2))) = dobject_skjTex_005900; -#endif - -#define dobject_skjTex_005B00 "__OTR__objects/object_skj/object_skjTex_005B00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_skjTex_005B00[] = dobject_skjTex_005B00; -#else -static const char object_skjTex_005B00[] __attribute__((aligned (2))) = dobject_skjTex_005B00; -#endif - -#define dobject_skjTex_005B80 "__OTR__objects/object_skj/object_skjTex_005B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_skjTex_005B80[] = dobject_skjTex_005B80; -#else -static const char object_skjTex_005B80[] __attribute__((aligned (2))) = dobject_skjTex_005B80; -#endif - -#define dobject_skjTex_005D80 "__OTR__objects/object_skj/object_skjTex_005D80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_skjTex_005D80[] = dobject_skjTex_005D80; -#else -static const char object_skjTex_005D80[] __attribute__((aligned (2))) = dobject_skjTex_005D80; -#endif - -#define dobject_skjTex_005DA0 "__OTR__objects/object_skj/object_skjTex_005DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_skjTex_005DA0[] = dobject_skjTex_005DA0; -#else -static const char object_skjTex_005DA0[] __attribute__((aligned (2))) = dobject_skjTex_005DA0; -#endif - +#include "align_asset_macro.h" + +#define dgSkullKidNeedleDL "__OTR__objects/object_skj/gSkullKidNeedleDL" +static const ALIGN_ASSET(2) char gSkullKidNeedleDL[] = dgSkullKidNeedleDL; + +#define dgSkullKidSkullMaskDL "__OTR__objects/object_skj/gSkullKidSkullMaskDL" +static const ALIGN_ASSET(2) char gSkullKidSkullMaskDL[] = dgSkullKidSkullMaskDL; + +#define dgSkullKidSkel "__OTR__objects/object_skj/gSkullKidSkel" +static const ALIGN_ASSET(2) char gSkullKidSkel[] = dgSkullKidSkel; + +#define dgSkullKidLeftUpperLegDL "__OTR__objects/object_skj/gSkullKidLeftUpperLegDL" +static const ALIGN_ASSET(2) char gSkullKidLeftUpperLegDL[] = dgSkullKidLeftUpperLegDL; + +#define dgSkullKidLeftLowerLegDL "__OTR__objects/object_skj/gSkullKidLeftLowerLegDL" +static const ALIGN_ASSET(2) char gSkullKidLeftLowerLegDL[] = dgSkullKidLeftLowerLegDL; + +#define dgSkullKidLeftFootDL "__OTR__objects/object_skj/gSkullKidLeftFootDL" +static const ALIGN_ASSET(2) char gSkullKidLeftFootDL[] = dgSkullKidLeftFootDL; + +#define dgSkullKidRightUpperLegDL "__OTR__objects/object_skj/gSkullKidRightUpperLegDL" +static const ALIGN_ASSET(2) char gSkullKidRightUpperLegDL[] = dgSkullKidRightUpperLegDL; + +#define dgSkullKidRightLowerLegDL "__OTR__objects/object_skj/gSkullKidRightLowerLegDL" +static const ALIGN_ASSET(2) char gSkullKidRightLowerLegDL[] = dgSkullKidRightLowerLegDL; + +#define dgSkullKidRightFootDL "__OTR__objects/object_skj/gSkullKidRightFootDL" +static const ALIGN_ASSET(2) char gSkullKidRightFootDL[] = dgSkullKidRightFootDL; + +#define dgSkullKidChestAndClothesDL "__OTR__objects/object_skj/gSkullKidChestAndClothesDL" +static const ALIGN_ASSET(2) char gSkullKidChestAndClothesDL[] = dgSkullKidChestAndClothesDL; + +#define dgSkullKidNeckDL "__OTR__objects/object_skj/gSkullKidNeckDL" +static const ALIGN_ASSET(2) char gSkullKidNeckDL[] = dgSkullKidNeckDL; + +#define dgSKullKidHeadAndFaceDL "__OTR__objects/object_skj/gSKullKidHeadAndFaceDL" +static const ALIGN_ASSET(2) char gSKullKidHeadAndFaceDL[] = dgSKullKidHeadAndFaceDL; + +#define dgSkullKidUpperHatDL "__OTR__objects/object_skj/gSkullKidUpperHatDL" +static const ALIGN_ASSET(2) char gSkullKidUpperHatDL[] = dgSkullKidUpperHatDL; + +#define dgSkullKidLeftShoulderDL "__OTR__objects/object_skj/gSkullKidLeftShoulderDL" +static const ALIGN_ASSET(2) char gSkullKidLeftShoulderDL[] = dgSkullKidLeftShoulderDL; + +#define dgSkullKidLeftArmDL "__OTR__objects/object_skj/gSkullKidLeftArmDL" +static const ALIGN_ASSET(2) char gSkullKidLeftArmDL[] = dgSkullKidLeftArmDL; + +#define dgSkullKidLeftHandAndFluteDL "__OTR__objects/object_skj/gSkullKidLeftHandAndFluteDL" +static const ALIGN_ASSET(2) char gSkullKidLeftHandAndFluteDL[] = dgSkullKidLeftHandAndFluteDL; + +#define dgSkullKidRightShoulderDL "__OTR__objects/object_skj/gSkullKidRightShoulderDL" +static const ALIGN_ASSET(2) char gSkullKidRightShoulderDL[] = dgSkullKidRightShoulderDL; + +#define dgSkullKidRightArmDL "__OTR__objects/object_skj/gSkullKidRightArmDL" +static const ALIGN_ASSET(2) char gSkullKidRightArmDL[] = dgSkullKidRightArmDL; + +#define dgSkullKidBackflipAnim "__OTR__objects/object_skj/gSkullKidBackflipAnim" +static const ALIGN_ASSET(2) char gSkullKidBackflipAnim[] = dgSkullKidBackflipAnim; + +#define dgSkullKidShootNeedleAnim "__OTR__objects/object_skj/gSkullKidShootNeedleAnim" +static const ALIGN_ASSET(2) char gSkullKidShootNeedleAnim[] = dgSkullKidShootNeedleAnim; + +#define dgSkullKidPlayFluteAnim "__OTR__objects/object_skj/gSkullKidPlayFluteAnim" +static const ALIGN_ASSET(2) char gSkullKidPlayFluteAnim[] = dgSkullKidPlayFluteAnim; + +#define dgSkullKidDieAnim "__OTR__objects/object_skj/gSkullKidDieAnim" +static const ALIGN_ASSET(2) char gSkullKidDieAnim[] = dgSkullKidDieAnim; + +#define dgSkullKidHitAnim "__OTR__objects/object_skj/gSkullKidHitAnim" +static const ALIGN_ASSET(2) char gSkullKidHitAnim[] = dgSkullKidHitAnim; + +#define dgSkullKidLandAnim "__OTR__objects/object_skj/gSkullKidLandAnim" +static const ALIGN_ASSET(2) char gSkullKidLandAnim[] = dgSkullKidLandAnim; + +#define dgSkullKidLookLeftAndRightAnim "__OTR__objects/object_skj/gSkullKidLookLeftAndRightAnim" +static const ALIGN_ASSET(2) char gSkullKidLookLeftAndRightAnim[] = dgSkullKidLookLeftAndRightAnim; + +#define dgSkullKidFightingStanceAnim "__OTR__objects/object_skj/gSkullKidFightingStanceAnim" +static const ALIGN_ASSET(2) char gSkullKidFightingStanceAnim[] = dgSkullKidFightingStanceAnim; + +#define dgSkullKidWaitAnim "__OTR__objects/object_skj/gSkullKidWaitAnim" +static const ALIGN_ASSET(2) char gSkullKidWaitAnim[] = dgSkullKidWaitAnim; + +#define dgSkullKidWalkToPlayerAnim "__OTR__objects/object_skj/gSkullKidWalkToPlayerAnim" +static const ALIGN_ASSET(2) char gSkullKidWalkToPlayerAnim[] = dgSkullKidWalkToPlayerAnim; + +#define dgSkullKidSkullMaskTex "__OTR__objects/object_skj/gSkullKidSkullMaskTex" +static const ALIGN_ASSET(2) char gSkullKidSkullMaskTex[] = dgSkullKidSkullMaskTex; + +#define dgSkullKidSkullMaskTeethTex "__OTR__objects/object_skj/gSkullKidSkullMaskTeethTex" +static const ALIGN_ASSET(2) char gSkullKidSkullMaskTeethTex[] = dgSkullKidSkullMaskTeethTex; + +#define dgSkullKidSkullMaskNoseTex "__OTR__objects/object_skj/gSkullKidSkullMaskNoseTex" +static const ALIGN_ASSET(2) char gSkullKidSkullMaskNoseTex[] = dgSkullKidSkullMaskNoseTex; + +#define dgSKJunaccounted_52C "__OTR__objects/object_skj/gSKJunaccounted_52C" +static const ALIGN_ASSET(2) char gSKJunaccounted_52C[] = dgSKJunaccounted_52C; + +#define dgSKJunaccounted_E20 "__OTR__objects/object_skj/gSKJunaccounted_E20" +static const ALIGN_ASSET(2) char gSKJunaccounted_E20[] = dgSKJunaccounted_E20; + +#define dgSKJunaccounted_EAA8 "__OTR__objects/object_skj/gSKJunaccounted_EAA8" +static const ALIGN_ASSET(2) char gSKJunaccounted_EAA8[] = dgSKJunaccounted_EAA8; + +#define dgSKJunaccounted_ED94 "__OTR__objects/object_skj/gSKJunaccounted_ED94" +static const ALIGN_ASSET(2) char gSKJunaccounted_ED94[] = dgSKJunaccounted_ED94; + +#define dgSKJunaccounted_7138 "__OTR__objects/object_skj/gSKJunaccounted_7138" +static const ALIGN_ASSET(2) char gSKJunaccounted_7138[] = dgSKJunaccounted_7138; + +#define dgSKJunaccounted_8184 "__OTR__objects/object_skj/gSKJunaccounted_8184" +static const ALIGN_ASSET(2) char gSKJunaccounted_8184[] = dgSKJunaccounted_8184; + +#define dgSKJunaccounted_8BAC "__OTR__objects/object_skj/gSKJunaccounted_8BAC" +static const ALIGN_ASSET(2) char gSKJunaccounted_8BAC[] = dgSKJunaccounted_8BAC; + +#define dgSkullKidUnkLimb_5E2CDL_0036A0 "__OTR__objects/object_skj/gSkullKidUnkLimb_5E2CDL_0036A0" +static const ALIGN_ASSET(2) char gSkullKidUnkLimb_5E2CDL_0036A0[] = dgSkullKidUnkLimb_5E2CDL_0036A0; + +#define dgSkullKidUnkLimb_5E38DL_003E48 "__OTR__objects/object_skj/gSkullKidUnkLimb_5E38DL_003E48" +static const ALIGN_ASSET(2) char gSkullKidUnkLimb_5E38DL_003E48[] = dgSkullKidUnkLimb_5E38DL_003E48; + +#define dobject_skjTex_005700 "__OTR__objects/object_skj/object_skjTex_005700" +static const ALIGN_ASSET(2) char object_skjTex_005700[] = dobject_skjTex_005700; + +#define dobject_skjTex_005300 "__OTR__objects/object_skj/object_skjTex_005300" +static const ALIGN_ASSET(2) char object_skjTex_005300[] = dobject_skjTex_005300; + +#define dobject_skjTex_005500 "__OTR__objects/object_skj/object_skjTex_005500" +static const ALIGN_ASSET(2) char object_skjTex_005500[] = dobject_skjTex_005500; + +#define dobject_skjTex_005900 "__OTR__objects/object_skj/object_skjTex_005900" +static const ALIGN_ASSET(2) char object_skjTex_005900[] = dobject_skjTex_005900; + +#define dobject_skjTex_005B00 "__OTR__objects/object_skj/object_skjTex_005B00" +static const ALIGN_ASSET(2) char object_skjTex_005B00[] = dobject_skjTex_005B00; + +#define dobject_skjTex_005B80 "__OTR__objects/object_skj/object_skjTex_005B80" +static const ALIGN_ASSET(2) char object_skjTex_005B80[] = dobject_skjTex_005B80; + +#define dobject_skjTex_005D80 "__OTR__objects/object_skj/object_skjTex_005D80" +static const ALIGN_ASSET(2) char object_skjTex_005D80[] = dobject_skjTex_005D80; + +#define dobject_skjTex_005DA0 "__OTR__objects/object_skj/object_skjTex_005DA0" +static const ALIGN_ASSET(2) char object_skjTex_005DA0[] = dobject_skjTex_005DA0; \ No newline at end of file diff --git a/soh/assets/objects/object_spot00_break/object_spot00_break.h b/soh/assets/objects/object_spot00_break/object_spot00_break.h index cf62f283f..4d3263c56 100644 --- a/soh/assets/objects/object_spot00_break/object_spot00_break.h +++ b/soh/assets/objects/object_spot00_break/object_spot00_break.h @@ -1,58 +1,27 @@ #pragma once -#define dgBrokenDrawbridgeDL "__OTR__objects/object_spot00_break/gBrokenDrawbridgeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenDrawbridgeDL[] = dgBrokenDrawbridgeDL; -#else -static const char gBrokenDrawbridgeDL[] __attribute__((aligned (2))) = dgBrokenDrawbridgeDL; -#endif - -#define dgBrokenDrawbridgeBoltTex "__OTR__objects/object_spot00_break/gBrokenDrawbridgeBoltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenDrawbridgeBoltTex[] = dgBrokenDrawbridgeBoltTex; -#else -static const char gBrokenDrawbridgeBoltTex[] __attribute__((aligned (2))) = dgBrokenDrawbridgeBoltTex; -#endif - -#define dgBrokenDrawbridgeDirtTex "__OTR__objects/object_spot00_break/gBrokenDrawbridgeDirtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenDrawbridgeDirtTex[] = dgBrokenDrawbridgeDirtTex; -#else -static const char gBrokenDrawbridgeDirtTex[] __attribute__((aligned (2))) = dgBrokenDrawbridgeDirtTex; -#endif - -#define dgBrokenDrawbridgeChainTex "__OTR__objects/object_spot00_break/gBrokenDrawbridgeChainTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenDrawbridgeChainTex[] = dgBrokenDrawbridgeChainTex; -#else -static const char gBrokenDrawbridgeChainTex[] __attribute__((aligned (2))) = dgBrokenDrawbridgeChainTex; -#endif - -#define dgBrokenDrawbridgeCol "__OTR__objects/object_spot00_break/gBrokenDrawbridgeCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenDrawbridgeCol[] = dgBrokenDrawbridgeCol; -#else -static const char gBrokenDrawbridgeCol[] __attribute__((aligned (2))) = dgBrokenDrawbridgeCol; -#endif - -#define dgBarbedWireFenceDL "__OTR__objects/object_spot00_break/gBarbedWireFenceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarbedWireFenceDL[] = dgBarbedWireFenceDL; -#else -static const char gBarbedWireFenceDL[] __attribute__((aligned (2))) = dgBarbedWireFenceDL; -#endif - -#define dgBarbedWireFenceTex "__OTR__objects/object_spot00_break/gBarbedWireFenceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarbedWireFenceTex[] = dgBarbedWireFenceTex; -#else -static const char gBarbedWireFenceTex[] __attribute__((aligned (2))) = dgBarbedWireFenceTex; -#endif - -#define dgBarbedWireFenceCol "__OTR__objects/object_spot00_break/gBarbedWireFenceCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBarbedWireFenceCol[] = dgBarbedWireFenceCol; -#else -static const char gBarbedWireFenceCol[] __attribute__((aligned (2))) = dgBarbedWireFenceCol; -#endif - +#include "align_asset_macro.h" + +#define dgBrokenDrawbridgeDL "__OTR__objects/object_spot00_break/gBrokenDrawbridgeDL" +static const ALIGN_ASSET(2) char gBrokenDrawbridgeDL[] = dgBrokenDrawbridgeDL; + +#define dgBrokenDrawbridgeBoltTex "__OTR__objects/object_spot00_break/gBrokenDrawbridgeBoltTex" +static const ALIGN_ASSET(2) char gBrokenDrawbridgeBoltTex[] = dgBrokenDrawbridgeBoltTex; + +#define dgBrokenDrawbridgeDirtTex "__OTR__objects/object_spot00_break/gBrokenDrawbridgeDirtTex" +static const ALIGN_ASSET(2) char gBrokenDrawbridgeDirtTex[] = dgBrokenDrawbridgeDirtTex; + +#define dgBrokenDrawbridgeChainTex "__OTR__objects/object_spot00_break/gBrokenDrawbridgeChainTex" +static const ALIGN_ASSET(2) char gBrokenDrawbridgeChainTex[] = dgBrokenDrawbridgeChainTex; + +#define dgBrokenDrawbridgeCol "__OTR__objects/object_spot00_break/gBrokenDrawbridgeCol" +static const ALIGN_ASSET(2) char gBrokenDrawbridgeCol[] = dgBrokenDrawbridgeCol; + +#define dgBarbedWireFenceDL "__OTR__objects/object_spot00_break/gBarbedWireFenceDL" +static const ALIGN_ASSET(2) char gBarbedWireFenceDL[] = dgBarbedWireFenceDL; + +#define dgBarbedWireFenceTex "__OTR__objects/object_spot00_break/gBarbedWireFenceTex" +static const ALIGN_ASSET(2) char gBarbedWireFenceTex[] = dgBarbedWireFenceTex; + +#define dgBarbedWireFenceCol "__OTR__objects/object_spot00_break/gBarbedWireFenceCol" +static const ALIGN_ASSET(2) char gBarbedWireFenceCol[] = dgBarbedWireFenceCol; \ No newline at end of file diff --git a/soh/assets/objects/object_spot00_objects/object_spot00_objects.h b/soh/assets/objects/object_spot00_objects/object_spot00_objects.h index 72d49db20..73080b94b 100644 --- a/soh/assets/objects/object_spot00_objects/object_spot00_objects.h +++ b/soh/assets/objects/object_spot00_objects/object_spot00_objects.h @@ -1,51 +1,24 @@ #pragma once -#define dgHyruleFieldCastleDrawbridgeDL "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldCastleDrawbridgeDL[] = dgHyruleFieldCastleDrawbridgeDL; -#else -static const char gHyruleFieldCastleDrawbridgeDL[] __attribute__((aligned (2))) = dgHyruleFieldCastleDrawbridgeDL; -#endif - -#define dgHyruleFieldCastleDrawbridgeWoodTex "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeWoodTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldCastleDrawbridgeWoodTex[] = dgHyruleFieldCastleDrawbridgeWoodTex; -#else -static const char gHyruleFieldCastleDrawbridgeWoodTex[] __attribute__((aligned (2))) = dgHyruleFieldCastleDrawbridgeWoodTex; -#endif - -#define dgHyruleFieldCastleDrawbridgeBoltDL "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeBoltDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldCastleDrawbridgeBoltDL[] = dgHyruleFieldCastleDrawbridgeBoltDL; -#else -static const char gHyruleFieldCastleDrawbridgeBoltDL[] __attribute__((aligned (2))) = dgHyruleFieldCastleDrawbridgeBoltDL; -#endif - -#define dgHyruleFieldCastleDrawbridgeCol "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldCastleDrawbridgeCol[] = dgHyruleFieldCastleDrawbridgeCol; -#else -static const char gHyruleFieldCastleDrawbridgeCol[] __attribute__((aligned (2))) = dgHyruleFieldCastleDrawbridgeCol; -#endif - -#define dgHyruleFieldCastleDrawbridgeChainsDL "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeChainsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldCastleDrawbridgeChainsDL[] = dgHyruleFieldCastleDrawbridgeChainsDL; -#else -static const char gHyruleFieldCastleDrawbridgeChainsDL[] __attribute__((aligned (2))) = dgHyruleFieldCastleDrawbridgeChainsDL; -#endif - -#define dgHyruleFieldCastleDrawbridgeChainsTex "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeChainsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldCastleDrawbridgeChainsTex[] = dgHyruleFieldCastleDrawbridgeChainsTex; -#else -static const char gHyruleFieldCastleDrawbridgeChainsTex[] __attribute__((aligned (2))) = dgHyruleFieldCastleDrawbridgeChainsTex; -#endif - -#define dgHyruleFieldCastleDrawbridgeChainsCol "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeChainsCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldCastleDrawbridgeChainsCol[] = dgHyruleFieldCastleDrawbridgeChainsCol; -#else -static const char gHyruleFieldCastleDrawbridgeChainsCol[] __attribute__((aligned (2))) = dgHyruleFieldCastleDrawbridgeChainsCol; -#endif - +#include "align_asset_macro.h" + +#define dgHyruleFieldCastleDrawbridgeDL "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeDL" +static const ALIGN_ASSET(2) char gHyruleFieldCastleDrawbridgeDL[] = dgHyruleFieldCastleDrawbridgeDL; + +#define dgHyruleFieldCastleDrawbridgeWoodTex "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeWoodTex" +static const ALIGN_ASSET(2) char gHyruleFieldCastleDrawbridgeWoodTex[] = dgHyruleFieldCastleDrawbridgeWoodTex; + +#define dgHyruleFieldCastleDrawbridgeBoltDL "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeBoltDL" +static const ALIGN_ASSET(2) char gHyruleFieldCastleDrawbridgeBoltDL[] = dgHyruleFieldCastleDrawbridgeBoltDL; + +#define dgHyruleFieldCastleDrawbridgeCol "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeCol" +static const ALIGN_ASSET(2) char gHyruleFieldCastleDrawbridgeCol[] = dgHyruleFieldCastleDrawbridgeCol; + +#define dgHyruleFieldCastleDrawbridgeChainsDL "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeChainsDL" +static const ALIGN_ASSET(2) char gHyruleFieldCastleDrawbridgeChainsDL[] = dgHyruleFieldCastleDrawbridgeChainsDL; + +#define dgHyruleFieldCastleDrawbridgeChainsTex "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeChainsTex" +static const ALIGN_ASSET(2) char gHyruleFieldCastleDrawbridgeChainsTex[] = dgHyruleFieldCastleDrawbridgeChainsTex; + +#define dgHyruleFieldCastleDrawbridgeChainsCol "__OTR__objects/object_spot00_objects/gHyruleFieldCastleDrawbridgeChainsCol" +static const ALIGN_ASSET(2) char gHyruleFieldCastleDrawbridgeChainsCol[] = dgHyruleFieldCastleDrawbridgeChainsCol; \ No newline at end of file diff --git a/soh/assets/objects/object_spot01_matoya/object_spot01_matoya.h b/soh/assets/objects/object_spot01_matoya/object_spot01_matoya.h index 2d25f884b..7f86962b4 100644 --- a/soh/assets/objects/object_spot01_matoya/object_spot01_matoya.h +++ b/soh/assets/objects/object_spot01_matoya/object_spot01_matoya.h @@ -1,121 +1,54 @@ #pragma once -#define dgKakarikoShootingGalleryDL "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGalleryDL[] = dgKakarikoShootingGalleryDL; -#else -static const char gKakarikoShootingGalleryDL[] __attribute__((aligned (2))) = dgKakarikoShootingGalleryDL; -#endif - -#define dgKakarikoShootingGallerySignDL "__OTR__objects/object_spot01_matoya/gKakarikoShootingGallerySignDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGallerySignDL[] = dgKakarikoShootingGallerySignDL; -#else -static const char gKakarikoShootingGallerySignDL[] __attribute__((aligned (2))) = dgKakarikoShootingGallerySignDL; -#endif - -#define dgKakarikoShootingGalleryRoofEdgeTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryRoofEdgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGalleryRoofEdgeTex[] = dgKakarikoShootingGalleryRoofEdgeTex; -#else -static const char gKakarikoShootingGalleryRoofEdgeTex[] __attribute__((aligned (2))) = dgKakarikoShootingGalleryRoofEdgeTex; -#endif - -#define dgKakarikoShootingGalleryRoofTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryRoofTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGalleryRoofTex[] = dgKakarikoShootingGalleryRoofTex; -#else -static const char gKakarikoShootingGalleryRoofTex[] __attribute__((aligned (2))) = dgKakarikoShootingGalleryRoofTex; -#endif - -#define dgKakarikoShootingGalleryDoorShadowTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryDoorShadowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGalleryDoorShadowTex[] = dgKakarikoShootingGalleryDoorShadowTex; -#else -static const char gKakarikoShootingGalleryDoorShadowTex[] __attribute__((aligned (2))) = dgKakarikoShootingGalleryDoorShadowTex; -#endif - -#define dgKakarikoShootingGalleryWallTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryWallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGalleryWallTex[] = dgKakarikoShootingGalleryWallTex; -#else -static const char gKakarikoShootingGalleryWallTex[] __attribute__((aligned (2))) = dgKakarikoShootingGalleryWallTex; -#endif - -#define dgKakarikoShootingGallerySignTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGallerySignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGallerySignTex[] = dgKakarikoShootingGallerySignTex; -#else -static const char gKakarikoShootingGallerySignTex[] __attribute__((aligned (2))) = dgKakarikoShootingGallerySignTex; -#endif - -#define dgKakarikoShootingGalleryCol "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGalleryCol[] = dgKakarikoShootingGalleryCol; -#else -static const char gKakarikoShootingGalleryCol[] __attribute__((aligned (2))) = dgKakarikoShootingGalleryCol; -#endif - -#define dgKakarikoPotionShopSignDL "__OTR__objects/object_spot01_matoya/gKakarikoPotionShopSignDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoPotionShopSignDL[] = dgKakarikoPotionShopSignDL; -#else -static const char gKakarikoPotionShopSignDL[] __attribute__((aligned (2))) = dgKakarikoPotionShopSignDL; -#endif - -#define dgKakarikoPotionShopSignTex "__OTR__objects/object_spot01_matoya/gKakarikoPotionShopSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoPotionShopSignTex[] = dgKakarikoPotionShopSignTex; -#else -static const char gKakarikoPotionShopSignTex[] __attribute__((aligned (2))) = dgKakarikoPotionShopSignTex; -#endif - -#define dgKakarikoBazaarSignDL "__OTR__objects/object_spot01_matoya/gKakarikoBazaarSignDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoBazaarSignDL[] = dgKakarikoBazaarSignDL; -#else -static const char gKakarikoBazaarSignDL[] __attribute__((aligned (2))) = dgKakarikoBazaarSignDL; -#endif - -#define dgKakarikoBazaarSignTex "__OTR__objects/object_spot01_matoya/gKakarikoBazaarSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoBazaarSignTex[] = dgKakarikoBazaarSignTex; -#else -static const char gKakarikoBazaarSignTex[] __attribute__((aligned (2))) = dgKakarikoBazaarSignTex; -#endif - -#define dgKakarikoBOTWStoneDL "__OTR__objects/object_spot01_matoya/gKakarikoBOTWStoneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoBOTWStoneDL[] = dgKakarikoBOTWStoneDL; -#else -static const char gKakarikoBOTWStoneDL[] __attribute__((aligned (2))) = dgKakarikoBOTWStoneDL; -#endif - -#define dgKakarikoBOTWStoneTex "__OTR__objects/object_spot01_matoya/gKakarikoBOTWStoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoBOTWStoneTex[] = dgKakarikoBOTWStoneTex; -#else -static const char gKakarikoBOTWStoneTex[] __attribute__((aligned (2))) = dgKakarikoBOTWStoneTex; -#endif - -#define dgKakarikoBOTWStoneCol "__OTR__objects/object_spot01_matoya/gKakarikoBOTWStoneCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoBOTWStoneCol[] = dgKakarikoBOTWStoneCol; -#else -static const char gKakarikoBOTWStoneCol[] __attribute__((aligned (2))) = dgKakarikoBOTWStoneCol; -#endif - -#define dgKakarikoShootingGalleryTLUT "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoShootingGalleryTLUT[] = dgKakarikoShootingGalleryTLUT; -#else -static const char gKakarikoShootingGalleryTLUT[] __attribute__((aligned (2))) = dgKakarikoShootingGalleryTLUT; -#endif - -#define dgKakarikoBazaarSignTLUT "__OTR__objects/object_spot01_matoya/gKakarikoBazaarSignTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoBazaarSignTLUT[] = dgKakarikoBazaarSignTLUT; -#else -static const char gKakarikoBazaarSignTLUT[] __attribute__((aligned (2))) = dgKakarikoBazaarSignTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgKakarikoShootingGalleryDL "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryDL" +static const ALIGN_ASSET(2) char gKakarikoShootingGalleryDL[] = dgKakarikoShootingGalleryDL; + +#define dgKakarikoShootingGallerySignDL "__OTR__objects/object_spot01_matoya/gKakarikoShootingGallerySignDL" +static const ALIGN_ASSET(2) char gKakarikoShootingGallerySignDL[] = dgKakarikoShootingGallerySignDL; + +#define dgKakarikoShootingGalleryRoofEdgeTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryRoofEdgeTex" +static const ALIGN_ASSET(2) char gKakarikoShootingGalleryRoofEdgeTex[] = dgKakarikoShootingGalleryRoofEdgeTex; + +#define dgKakarikoShootingGalleryRoofTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryRoofTex" +static const ALIGN_ASSET(2) char gKakarikoShootingGalleryRoofTex[] = dgKakarikoShootingGalleryRoofTex; + +#define dgKakarikoShootingGalleryDoorShadowTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryDoorShadowTex" +static const ALIGN_ASSET(2) char gKakarikoShootingGalleryDoorShadowTex[] = dgKakarikoShootingGalleryDoorShadowTex; + +#define dgKakarikoShootingGalleryWallTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryWallTex" +static const ALIGN_ASSET(2) char gKakarikoShootingGalleryWallTex[] = dgKakarikoShootingGalleryWallTex; + +#define dgKakarikoShootingGallerySignTex "__OTR__objects/object_spot01_matoya/gKakarikoShootingGallerySignTex" +static const ALIGN_ASSET(2) char gKakarikoShootingGallerySignTex[] = dgKakarikoShootingGallerySignTex; + +#define dgKakarikoShootingGalleryCol "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryCol" +static const ALIGN_ASSET(2) char gKakarikoShootingGalleryCol[] = dgKakarikoShootingGalleryCol; + +#define dgKakarikoPotionShopSignDL "__OTR__objects/object_spot01_matoya/gKakarikoPotionShopSignDL" +static const ALIGN_ASSET(2) char gKakarikoPotionShopSignDL[] = dgKakarikoPotionShopSignDL; + +#define dgKakarikoPotionShopSignTex "__OTR__objects/object_spot01_matoya/gKakarikoPotionShopSignTex" +static const ALIGN_ASSET(2) char gKakarikoPotionShopSignTex[] = dgKakarikoPotionShopSignTex; + +#define dgKakarikoBazaarSignDL "__OTR__objects/object_spot01_matoya/gKakarikoBazaarSignDL" +static const ALIGN_ASSET(2) char gKakarikoBazaarSignDL[] = dgKakarikoBazaarSignDL; + +#define dgKakarikoBazaarSignTex "__OTR__objects/object_spot01_matoya/gKakarikoBazaarSignTex" +static const ALIGN_ASSET(2) char gKakarikoBazaarSignTex[] = dgKakarikoBazaarSignTex; + +#define dgKakarikoBOTWStoneDL "__OTR__objects/object_spot01_matoya/gKakarikoBOTWStoneDL" +static const ALIGN_ASSET(2) char gKakarikoBOTWStoneDL[] = dgKakarikoBOTWStoneDL; + +#define dgKakarikoBOTWStoneTex "__OTR__objects/object_spot01_matoya/gKakarikoBOTWStoneTex" +static const ALIGN_ASSET(2) char gKakarikoBOTWStoneTex[] = dgKakarikoBOTWStoneTex; + +#define dgKakarikoBOTWStoneCol "__OTR__objects/object_spot01_matoya/gKakarikoBOTWStoneCol" +static const ALIGN_ASSET(2) char gKakarikoBOTWStoneCol[] = dgKakarikoBOTWStoneCol; + +#define dgKakarikoShootingGalleryTLUT "__OTR__objects/object_spot01_matoya/gKakarikoShootingGalleryTLUT" +static const ALIGN_ASSET(2) char gKakarikoShootingGalleryTLUT[] = dgKakarikoShootingGalleryTLUT; + +#define dgKakarikoBazaarSignTLUT "__OTR__objects/object_spot01_matoya/gKakarikoBazaarSignTLUT" +static const ALIGN_ASSET(2) char gKakarikoBazaarSignTLUT[] = dgKakarikoBazaarSignTLUT; \ No newline at end of file diff --git a/soh/assets/objects/object_spot01_matoyab/object_spot01_matoyab.h b/soh/assets/objects/object_spot01_matoyab/object_spot01_matoyab.h index dc89316dc..949690dc3 100644 --- a/soh/assets/objects/object_spot01_matoyab/object_spot01_matoyab.h +++ b/soh/assets/objects/object_spot01_matoyab/object_spot01_matoyab.h @@ -1,72 +1,33 @@ #pragma once -#define dobject_spot01_matoyab_col "__OTR__objects/object_spot01_matoyab/object_spot01_matoyab_col" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot01_matoyab_col[] = dobject_spot01_matoyab_col; -#else -static const char object_spot01_matoyab_col[] __attribute__((aligned (2))) = dobject_spot01_matoyab_col; -#endif - -#define dgKakarikoGuardGateDL "__OTR__objects/object_spot01_matoyab/gKakarikoGuardGateDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoGuardGateDL[] = dgKakarikoGuardGateDL; -#else -static const char gKakarikoGuardGateDL[] __attribute__((aligned (2))) = dgKakarikoGuardGateDL; -#endif - -#define dgKakarikoGuardGateMetalSidebarDL "__OTR__objects/object_spot01_matoyab/gKakarikoGuardGateMetalSidebarDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoGuardGateMetalSidebarDL[] = dgKakarikoGuardGateMetalSidebarDL; -#else -static const char gKakarikoGuardGateMetalSidebarDL[] __attribute__((aligned (2))) = dgKakarikoGuardGateMetalSidebarDL; -#endif - -#define dgKakarikoGuardGateCol "__OTR__objects/object_spot01_matoyab/gKakarikoGuardGateCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoGuardGateCol[] = dgKakarikoGuardGateCol; -#else -static const char gKakarikoGuardGateCol[] __attribute__((aligned (2))) = dgKakarikoGuardGateCol; -#endif - -#define dgKakarikoConstructionSiteDL "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoConstructionSiteDL[] = dgKakarikoConstructionSiteDL; -#else -static const char gKakarikoConstructionSiteDL[] __attribute__((aligned (2))) = dgKakarikoConstructionSiteDL; -#endif - -#define dgKakarikoConstructionSiteTLUT "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoConstructionSiteTLUT[] = dgKakarikoConstructionSiteTLUT; -#else -static const char gKakarikoConstructionSiteTLUT[] __attribute__((aligned (2))) = dgKakarikoConstructionSiteTLUT; -#endif - -#define dgKakarikoConstructionSiteBrickWithGrassTex "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteBrickWithGrassTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoConstructionSiteBrickWithGrassTex[] = dgKakarikoConstructionSiteBrickWithGrassTex; -#else -static const char gKakarikoConstructionSiteBrickWithGrassTex[] __attribute__((aligned (2))) = dgKakarikoConstructionSiteBrickWithGrassTex; -#endif - -#define dgKakarikoConstructionSiteBrickTex "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteBrickTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoConstructionSiteBrickTex[] = dgKakarikoConstructionSiteBrickTex; -#else -static const char gKakarikoConstructionSiteBrickTex[] __attribute__((aligned (2))) = dgKakarikoConstructionSiteBrickTex; -#endif - -#define dgKakarikoConstructionSitRailingTex "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSitRailingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoConstructionSitRailingTex[] = dgKakarikoConstructionSitRailingTex; -#else -static const char gKakarikoConstructionSitRailingTex[] __attribute__((aligned (2))) = dgKakarikoConstructionSitRailingTex; -#endif - -#define dgKakarikoConstructionSiteWoodTex "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteWoodTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoConstructionSiteWoodTex[] = dgKakarikoConstructionSiteWoodTex; -#else -static const char gKakarikoConstructionSiteWoodTex[] __attribute__((aligned (2))) = dgKakarikoConstructionSiteWoodTex; -#endif - +#include "align_asset_macro.h" + +#define dobject_spot01_matoyab_col "__OTR__objects/object_spot01_matoyab/object_spot01_matoyab_col" +static const ALIGN_ASSET(2) char object_spot01_matoyab_col[] = dobject_spot01_matoyab_col; + +#define dgKakarikoGuardGateDL "__OTR__objects/object_spot01_matoyab/gKakarikoGuardGateDL" +static const ALIGN_ASSET(2) char gKakarikoGuardGateDL[] = dgKakarikoGuardGateDL; + +#define dgKakarikoGuardGateMetalSidebarDL "__OTR__objects/object_spot01_matoyab/gKakarikoGuardGateMetalSidebarDL" +static const ALIGN_ASSET(2) char gKakarikoGuardGateMetalSidebarDL[] = dgKakarikoGuardGateMetalSidebarDL; + +#define dgKakarikoGuardGateCol "__OTR__objects/object_spot01_matoyab/gKakarikoGuardGateCol" +static const ALIGN_ASSET(2) char gKakarikoGuardGateCol[] = dgKakarikoGuardGateCol; + +#define dgKakarikoConstructionSiteDL "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteDL" +static const ALIGN_ASSET(2) char gKakarikoConstructionSiteDL[] = dgKakarikoConstructionSiteDL; + +#define dgKakarikoConstructionSiteTLUT "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteTLUT" +static const ALIGN_ASSET(2) char gKakarikoConstructionSiteTLUT[] = dgKakarikoConstructionSiteTLUT; + +#define dgKakarikoConstructionSiteBrickWithGrassTex "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteBrickWithGrassTex" +static const ALIGN_ASSET(2) char gKakarikoConstructionSiteBrickWithGrassTex[] = dgKakarikoConstructionSiteBrickWithGrassTex; + +#define dgKakarikoConstructionSiteBrickTex "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteBrickTex" +static const ALIGN_ASSET(2) char gKakarikoConstructionSiteBrickTex[] = dgKakarikoConstructionSiteBrickTex; + +#define dgKakarikoConstructionSitRailingTex "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSitRailingTex" +static const ALIGN_ASSET(2) char gKakarikoConstructionSitRailingTex[] = dgKakarikoConstructionSitRailingTex; + +#define dgKakarikoConstructionSiteWoodTex "__OTR__objects/object_spot01_matoyab/gKakarikoConstructionSiteWoodTex" +static const ALIGN_ASSET(2) char gKakarikoConstructionSiteWoodTex[] = dgKakarikoConstructionSiteWoodTex; \ No newline at end of file diff --git a/soh/assets/objects/object_spot01_objects/object_spot01_objects.h b/soh/assets/objects/object_spot01_objects/object_spot01_objects.h index d4b175d16..707451657 100644 --- a/soh/assets/objects/object_spot01_objects/object_spot01_objects.h +++ b/soh/assets/objects/object_spot01_objects/object_spot01_objects.h @@ -1,51 +1,24 @@ #pragma once -#define dgKakarikoWindmillSailsDL "__OTR__objects/object_spot01_objects/gKakarikoWindmillSailsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoWindmillSailsDL[] = dgKakarikoWindmillSailsDL; -#else -static const char gKakarikoWindmillSailsDL[] __attribute__((aligned (2))) = dgKakarikoWindmillSailsDL; -#endif - -#define dgKakarikoWindmillSailsTex "__OTR__objects/object_spot01_objects/gKakarikoWindmillSailsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoWindmillSailsTex[] = dgKakarikoWindmillSailsTex; -#else -static const char gKakarikoWindmillSailsTex[] __attribute__((aligned (2))) = dgKakarikoWindmillSailsTex; -#endif - -#define dgKakarikoWellArchDL "__OTR__objects/object_spot01_objects/gKakarikoWellArchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoWellArchDL[] = dgKakarikoWellArchDL; -#else -static const char gKakarikoWellArchDL[] __attribute__((aligned (2))) = dgKakarikoWellArchDL; -#endif - -#define dgKakarikoWellArchTex "__OTR__objects/object_spot01_objects/gKakarikoWellArchTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoWellArchTex[] = dgKakarikoWellArchTex; -#else -static const char gKakarikoWellArchTex[] __attribute__((aligned (2))) = dgKakarikoWellArchTex; -#endif - -#define dgKakarikoWellWaterDL "__OTR__objects/object_spot01_objects/gKakarikoWellWaterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoWellWaterDL[] = dgKakarikoWellWaterDL; -#else -static const char gKakarikoWellWaterDL[] __attribute__((aligned (2))) = dgKakarikoWellWaterDL; -#endif - -#define dgKakarikoWellWaterTex "__OTR__objects/object_spot01_objects/gKakarikoWellWaterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoWellWaterTex[] = dgKakarikoWellWaterTex; -#else -static const char gKakarikoWellWaterTex[] __attribute__((aligned (2))) = dgKakarikoWellWaterTex; -#endif - -#define dgKakarikoWellArchCol "__OTR__objects/object_spot01_objects/gKakarikoWellArchCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoWellArchCol[] = dgKakarikoWellArchCol; -#else -static const char gKakarikoWellArchCol[] __attribute__((aligned (2))) = dgKakarikoWellArchCol; -#endif - +#include "align_asset_macro.h" + +#define dgKakarikoWindmillSailsDL "__OTR__objects/object_spot01_objects/gKakarikoWindmillSailsDL" +static const ALIGN_ASSET(2) char gKakarikoWindmillSailsDL[] = dgKakarikoWindmillSailsDL; + +#define dgKakarikoWindmillSailsTex "__OTR__objects/object_spot01_objects/gKakarikoWindmillSailsTex" +static const ALIGN_ASSET(2) char gKakarikoWindmillSailsTex[] = dgKakarikoWindmillSailsTex; + +#define dgKakarikoWellArchDL "__OTR__objects/object_spot01_objects/gKakarikoWellArchDL" +static const ALIGN_ASSET(2) char gKakarikoWellArchDL[] = dgKakarikoWellArchDL; + +#define dgKakarikoWellArchTex "__OTR__objects/object_spot01_objects/gKakarikoWellArchTex" +static const ALIGN_ASSET(2) char gKakarikoWellArchTex[] = dgKakarikoWellArchTex; + +#define dgKakarikoWellWaterDL "__OTR__objects/object_spot01_objects/gKakarikoWellWaterDL" +static const ALIGN_ASSET(2) char gKakarikoWellWaterDL[] = dgKakarikoWellWaterDL; + +#define dgKakarikoWellWaterTex "__OTR__objects/object_spot01_objects/gKakarikoWellWaterTex" +static const ALIGN_ASSET(2) char gKakarikoWellWaterTex[] = dgKakarikoWellWaterTex; + +#define dgKakarikoWellArchCol "__OTR__objects/object_spot01_objects/gKakarikoWellArchCol" +static const ALIGN_ASSET(2) char gKakarikoWellArchCol[] = dgKakarikoWellArchCol; \ No newline at end of file diff --git a/soh/assets/objects/object_spot01_objects2/object_spot01_objects2.h b/soh/assets/objects/object_spot01_objects2/object_spot01_objects2.h index 20b6bfcff..80233bcb1 100644 --- a/soh/assets/objects/object_spot01_objects2/object_spot01_objects2.h +++ b/soh/assets/objects/object_spot01_objects2/object_spot01_objects2.h @@ -1,9 +1,6 @@ #pragma once -#define dobject_spot01_objects2_Blob_000000 "__OTR__objects/object_spot01_objects2/object_spot01_objects2_Blob_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot01_objects2_Blob_000000[] = dobject_spot01_objects2_Blob_000000; -#else -static const char object_spot01_objects2_Blob_000000[] __attribute__((aligned (2))) = dobject_spot01_objects2_Blob_000000; -#endif - +#include "align_asset_macro.h" + +#define dobject_spot01_objects2_Blob_000000 "__OTR__objects/object_spot01_objects2/object_spot01_objects2_Blob_000000" +static const ALIGN_ASSET(2) char object_spot01_objects2_Blob_000000[] = dobject_spot01_objects2_Blob_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_spot02_objects/object_spot02_objects.h b/soh/assets/objects/object_spot02_objects/object_spot02_objects.h index 0ecb4415d..91170d804 100644 --- a/soh/assets/objects/object_spot02_objects/object_spot02_objects.h +++ b/soh/assets/objects/object_spot02_objects/object_spot02_objects.h @@ -1,282 +1,123 @@ #pragma once -#define dobject_spot02_objects_Tex_000000 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_000000[] = dobject_spot02_objects_Tex_000000; -#else -static const char object_spot02_objects_Tex_000000[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_000000; -#endif - -#define dobject_spot02_objects_Tex_000800 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_000800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_000800[] = dobject_spot02_objects_Tex_000800; -#else -static const char object_spot02_objects_Tex_000800[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_000800; -#endif - -#define dobject_spot02_objects_DL_0013F0 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_0013F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_DL_0013F0[] = dobject_spot02_objects_DL_0013F0; -#else -static const char object_spot02_objects_DL_0013F0[] __attribute__((aligned (2))) = dobject_spot02_objects_DL_0013F0; -#endif - -#define dobject_spot02_objects_Blob_0015D8 "__OTR__objects/object_spot02_objects/object_spot02_objects_Blob_0015D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Blob_0015D8[] = dobject_spot02_objects_Blob_0015D8; -#else -static const char object_spot02_objects_Blob_0015D8[] __attribute__((aligned (2))) = dobject_spot02_objects_Blob_0015D8; -#endif - -#define dobject_spot02_objects_DL_009620 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_009620" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_DL_009620[] = dobject_spot02_objects_DL_009620; -#else -static const char object_spot02_objects_DL_009620[] __attribute__((aligned (2))) = dobject_spot02_objects_DL_009620; -#endif - -#define dobject_spot02_objects_DL_0126F0 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_0126F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_DL_0126F0[] = dobject_spot02_objects_DL_0126F0; -#else -static const char object_spot02_objects_DL_0126F0[] __attribute__((aligned (2))) = dobject_spot02_objects_DL_0126F0; -#endif - -#define dobject_spot02_objects_DL_0127C0 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_0127C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_DL_0127C0[] = dobject_spot02_objects_DL_0127C0; -#else -static const char object_spot02_objects_DL_0127C0[] __attribute__((aligned (2))) = dobject_spot02_objects_DL_0127C0; -#endif - -#define dobject_spot02_objects_Col_0128D8 "__OTR__objects/object_spot02_objects/object_spot02_objects_Col_0128D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Col_0128D8[] = dobject_spot02_objects_Col_0128D8; -#else -static const char object_spot02_objects_Col_0128D8[] __attribute__((aligned (2))) = dobject_spot02_objects_Col_0128D8; -#endif - -#define dobject_spot02_objects_DL_012A50 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_012A50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_DL_012A50[] = dobject_spot02_objects_DL_012A50; -#else -static const char object_spot02_objects_DL_012A50[] __attribute__((aligned (2))) = dobject_spot02_objects_DL_012A50; -#endif - -#define dobject_spot02_objects_Col_012BA4 "__OTR__objects/object_spot02_objects/object_spot02_objects_Col_012BA4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Col_012BA4[] = dobject_spot02_objects_Col_012BA4; -#else -static const char object_spot02_objects_Col_012BA4[] __attribute__((aligned (2))) = dobject_spot02_objects_Col_012BA4; -#endif - -#define dobject_spot02_objects_DL_012D30 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_012D30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_DL_012D30[] = dobject_spot02_objects_DL_012D30; -#else -static const char object_spot02_objects_DL_012D30[] __attribute__((aligned (2))) = dobject_spot02_objects_DL_012D30; -#endif - -#define dobject_spot02_objects_DL_0130B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_0130B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_DL_0130B0[] = dobject_spot02_objects_DL_0130B0; -#else -static const char object_spot02_objects_DL_0130B0[] __attribute__((aligned (2))) = dobject_spot02_objects_DL_0130B0; -#endif - -#define dobject_spot02_objects_Col_0133EC "__OTR__objects/object_spot02_objects/object_spot02_objects_Col_0133EC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Col_0133EC[] = dobject_spot02_objects_Col_0133EC; -#else -static const char object_spot02_objects_Col_0133EC[] __attribute__((aligned (2))) = dobject_spot02_objects_Col_0133EC; -#endif - -#define dobject_spot02_objects_Tex_013420 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_013420" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_013420[] = dobject_spot02_objects_Tex_013420; -#else -static const char object_spot02_objects_Tex_013420[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_013420; -#endif - -#define dobject_spot02_objects_Tex_013820 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_013820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_013820[] = dobject_spot02_objects_Tex_013820; -#else -static const char object_spot02_objects_Tex_013820[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_013820; -#endif - -#define dobject_spot02_objects_Tex_014020 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_014020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_014020[] = dobject_spot02_objects_Tex_014020; -#else -static const char object_spot02_objects_Tex_014020[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_014020; -#endif - -#define dobject_spot02_objects_Tex_014820 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_014820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_014820[] = dobject_spot02_objects_Tex_014820; -#else -static const char object_spot02_objects_Tex_014820[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_014820; -#endif - -#define dobject_spot02_objects_Tex_014C20 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_014C20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_014C20[] = dobject_spot02_objects_Tex_014C20; -#else -static const char object_spot02_objects_Tex_014C20[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_014C20; -#endif - -#define dobject_spot02_objects_Tex_015C20 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_015C20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_015C20[] = dobject_spot02_objects_Tex_015C20; -#else -static const char object_spot02_objects_Tex_015C20[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_015C20; -#endif - -#define dobject_spot02_objects_Tex_016420 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_016420" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_016420[] = dobject_spot02_objects_Tex_016420; -#else -static const char object_spot02_objects_Tex_016420[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_016420; -#endif - -#define dgEffSunGraveSpark1Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSunGraveSpark1Tex[] = dgEffSunGraveSpark1Tex; -#else -static const char gEffSunGraveSpark1Tex[] __attribute__((aligned (2))) = dgEffSunGraveSpark1Tex; -#endif - -#define dgEffSunGraveSpark2Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSunGraveSpark2Tex[] = dgEffSunGraveSpark2Tex; -#else -static const char gEffSunGraveSpark2Tex[] __attribute__((aligned (2))) = dgEffSunGraveSpark2Tex; -#endif - -#define dgEffSunGraveSpark3Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSunGraveSpark3Tex[] = dgEffSunGraveSpark3Tex; -#else -static const char gEffSunGraveSpark3Tex[] __attribute__((aligned (2))) = dgEffSunGraveSpark3Tex; -#endif - -#define dgEffSunGraveSpark4Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSunGraveSpark4Tex[] = dgEffSunGraveSpark4Tex; -#else -static const char gEffSunGraveSpark4Tex[] __attribute__((aligned (2))) = dgEffSunGraveSpark4Tex; -#endif - -#define dgEffSunGraveSpark5Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSunGraveSpark5Tex[] = dgEffSunGraveSpark5Tex; -#else -static const char gEffSunGraveSpark5Tex[] __attribute__((aligned (2))) = dgEffSunGraveSpark5Tex; -#endif - -#define dgEffSunGraveSpark6Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSunGraveSpark6Tex[] = dgEffSunGraveSpark6Tex; -#else -static const char gEffSunGraveSpark6Tex[] __attribute__((aligned (2))) = dgEffSunGraveSpark6Tex; -#endif - -#define dgEffSunGraveSpark7Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSunGraveSpark7Tex[] = dgEffSunGraveSpark7Tex; -#else -static const char gEffSunGraveSpark7Tex[] __attribute__((aligned (2))) = dgEffSunGraveSpark7Tex; -#endif - -#define dgEffSunGraveSpark8Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEffSunGraveSpark8Tex[] = dgEffSunGraveSpark8Tex; -#else -static const char gEffSunGraveSpark8Tex[] __attribute__((aligned (2))) = dgEffSunGraveSpark8Tex; -#endif - -#define dobject_spot02_objects_Tex_0096B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_0096B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_0096B0[] = dobject_spot02_objects_Tex_0096B0; -#else -static const char object_spot02_objects_Tex_0096B0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_0096B0; -#endif - -#define dobject_spot02_objects_Tex_00A2B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00A2B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_00A2B0[] = dobject_spot02_objects_Tex_00A2B0; -#else -static const char object_spot02_objects_Tex_00A2B0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_00A2B0; -#endif - -#define dobject_spot02_objects_Tex_00AEB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00AEB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_00AEB0[] = dobject_spot02_objects_Tex_00AEB0; -#else -static const char object_spot02_objects_Tex_00AEB0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_00AEB0; -#endif - -#define dobject_spot02_objects_Tex_00BAB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00BAB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_00BAB0[] = dobject_spot02_objects_Tex_00BAB0; -#else -static const char object_spot02_objects_Tex_00BAB0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_00BAB0; -#endif - -#define dobject_spot02_objects_Tex_00C6B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00C6B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_00C6B0[] = dobject_spot02_objects_Tex_00C6B0; -#else -static const char object_spot02_objects_Tex_00C6B0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_00C6B0; -#endif - -#define dobject_spot02_objects_Tex_00D2B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00D2B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_00D2B0[] = dobject_spot02_objects_Tex_00D2B0; -#else -static const char object_spot02_objects_Tex_00D2B0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_00D2B0; -#endif - -#define dobject_spot02_objects_Tex_00DEB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00DEB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_00DEB0[] = dobject_spot02_objects_Tex_00DEB0; -#else -static const char object_spot02_objects_Tex_00DEB0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_00DEB0; -#endif - -#define dobject_spot02_objects_Tex_00EAB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00EAB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_00EAB0[] = dobject_spot02_objects_Tex_00EAB0; -#else -static const char object_spot02_objects_Tex_00EAB0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_00EAB0; -#endif - -#define dobject_spot02_objects_Tex_00F6B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00F6B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_00F6B0[] = dobject_spot02_objects_Tex_00F6B0; -#else -static const char object_spot02_objects_Tex_00F6B0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_00F6B0; -#endif - -#define dobject_spot02_objects_Tex_0102B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_0102B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_0102B0[] = dobject_spot02_objects_Tex_0102B0; -#else -static const char object_spot02_objects_Tex_0102B0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_0102B0; -#endif - -#define dobject_spot02_objects_Tex_010EB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_010EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_010EB0[] = dobject_spot02_objects_Tex_010EB0; -#else -static const char object_spot02_objects_Tex_010EB0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_010EB0; -#endif - -#define dobject_spot02_objects_Tex_011AB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_011AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot02_objects_Tex_011AB0[] = dobject_spot02_objects_Tex_011AB0; -#else -static const char object_spot02_objects_Tex_011AB0[] __attribute__((aligned (2))) = dobject_spot02_objects_Tex_011AB0; -#endif - +#include "align_asset_macro.h" + +#define dobject_spot02_objects_Tex_000000 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_000000" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_000000[] = dobject_spot02_objects_Tex_000000; + +#define dobject_spot02_objects_Tex_000800 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_000800" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_000800[] = dobject_spot02_objects_Tex_000800; + +#define dobject_spot02_objects_DL_0013F0 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_0013F0" +static const ALIGN_ASSET(2) char object_spot02_objects_DL_0013F0[] = dobject_spot02_objects_DL_0013F0; + +#define dobject_spot02_objects_Blob_0015D8 "__OTR__objects/object_spot02_objects/object_spot02_objects_Blob_0015D8" +static const ALIGN_ASSET(2) char object_spot02_objects_Blob_0015D8[] = dobject_spot02_objects_Blob_0015D8; + +#define dobject_spot02_objects_DL_009620 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_009620" +static const ALIGN_ASSET(2) char object_spot02_objects_DL_009620[] = dobject_spot02_objects_DL_009620; + +#define dobject_spot02_objects_DL_0126F0 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_0126F0" +static const ALIGN_ASSET(2) char object_spot02_objects_DL_0126F0[] = dobject_spot02_objects_DL_0126F0; + +#define dobject_spot02_objects_DL_0127C0 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_0127C0" +static const ALIGN_ASSET(2) char object_spot02_objects_DL_0127C0[] = dobject_spot02_objects_DL_0127C0; + +#define dobject_spot02_objects_Col_0128D8 "__OTR__objects/object_spot02_objects/object_spot02_objects_Col_0128D8" +static const ALIGN_ASSET(2) char object_spot02_objects_Col_0128D8[] = dobject_spot02_objects_Col_0128D8; + +#define dobject_spot02_objects_DL_012A50 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_012A50" +static const ALIGN_ASSET(2) char object_spot02_objects_DL_012A50[] = dobject_spot02_objects_DL_012A50; + +#define dobject_spot02_objects_Col_012BA4 "__OTR__objects/object_spot02_objects/object_spot02_objects_Col_012BA4" +static const ALIGN_ASSET(2) char object_spot02_objects_Col_012BA4[] = dobject_spot02_objects_Col_012BA4; + +#define dobject_spot02_objects_DL_012D30 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_012D30" +static const ALIGN_ASSET(2) char object_spot02_objects_DL_012D30[] = dobject_spot02_objects_DL_012D30; + +#define dobject_spot02_objects_DL_0130B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_DL_0130B0" +static const ALIGN_ASSET(2) char object_spot02_objects_DL_0130B0[] = dobject_spot02_objects_DL_0130B0; + +#define dobject_spot02_objects_Col_0133EC "__OTR__objects/object_spot02_objects/object_spot02_objects_Col_0133EC" +static const ALIGN_ASSET(2) char object_spot02_objects_Col_0133EC[] = dobject_spot02_objects_Col_0133EC; + +#define dobject_spot02_objects_Tex_013420 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_013420" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_013420[] = dobject_spot02_objects_Tex_013420; + +#define dobject_spot02_objects_Tex_013820 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_013820" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_013820[] = dobject_spot02_objects_Tex_013820; + +#define dobject_spot02_objects_Tex_014020 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_014020" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_014020[] = dobject_spot02_objects_Tex_014020; + +#define dobject_spot02_objects_Tex_014820 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_014820" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_014820[] = dobject_spot02_objects_Tex_014820; + +#define dobject_spot02_objects_Tex_014C20 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_014C20" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_014C20[] = dobject_spot02_objects_Tex_014C20; + +#define dobject_spot02_objects_Tex_015C20 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_015C20" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_015C20[] = dobject_spot02_objects_Tex_015C20; + +#define dobject_spot02_objects_Tex_016420 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_016420" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_016420[] = dobject_spot02_objects_Tex_016420; + +#define dgEffSunGraveSpark1Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark1Tex" +static const ALIGN_ASSET(2) char gEffSunGraveSpark1Tex[] = dgEffSunGraveSpark1Tex; + +#define dgEffSunGraveSpark2Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark2Tex" +static const ALIGN_ASSET(2) char gEffSunGraveSpark2Tex[] = dgEffSunGraveSpark2Tex; + +#define dgEffSunGraveSpark3Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark3Tex" +static const ALIGN_ASSET(2) char gEffSunGraveSpark3Tex[] = dgEffSunGraveSpark3Tex; + +#define dgEffSunGraveSpark4Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark4Tex" +static const ALIGN_ASSET(2) char gEffSunGraveSpark4Tex[] = dgEffSunGraveSpark4Tex; + +#define dgEffSunGraveSpark5Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark5Tex" +static const ALIGN_ASSET(2) char gEffSunGraveSpark5Tex[] = dgEffSunGraveSpark5Tex; + +#define dgEffSunGraveSpark6Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark6Tex" +static const ALIGN_ASSET(2) char gEffSunGraveSpark6Tex[] = dgEffSunGraveSpark6Tex; + +#define dgEffSunGraveSpark7Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark7Tex" +static const ALIGN_ASSET(2) char gEffSunGraveSpark7Tex[] = dgEffSunGraveSpark7Tex; + +#define dgEffSunGraveSpark8Tex "__OTR__objects/object_spot02_objects/gEffSunGraveSpark8Tex" +static const ALIGN_ASSET(2) char gEffSunGraveSpark8Tex[] = dgEffSunGraveSpark8Tex; + +#define dobject_spot02_objects_Tex_0096B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_0096B0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_0096B0[] = dobject_spot02_objects_Tex_0096B0; + +#define dobject_spot02_objects_Tex_00A2B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00A2B0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_00A2B0[] = dobject_spot02_objects_Tex_00A2B0; + +#define dobject_spot02_objects_Tex_00AEB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00AEB0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_00AEB0[] = dobject_spot02_objects_Tex_00AEB0; + +#define dobject_spot02_objects_Tex_00BAB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00BAB0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_00BAB0[] = dobject_spot02_objects_Tex_00BAB0; + +#define dobject_spot02_objects_Tex_00C6B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00C6B0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_00C6B0[] = dobject_spot02_objects_Tex_00C6B0; + +#define dobject_spot02_objects_Tex_00D2B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00D2B0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_00D2B0[] = dobject_spot02_objects_Tex_00D2B0; + +#define dobject_spot02_objects_Tex_00DEB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00DEB0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_00DEB0[] = dobject_spot02_objects_Tex_00DEB0; + +#define dobject_spot02_objects_Tex_00EAB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00EAB0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_00EAB0[] = dobject_spot02_objects_Tex_00EAB0; + +#define dobject_spot02_objects_Tex_00F6B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_00F6B0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_00F6B0[] = dobject_spot02_objects_Tex_00F6B0; + +#define dobject_spot02_objects_Tex_0102B0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_0102B0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_0102B0[] = dobject_spot02_objects_Tex_0102B0; + +#define dobject_spot02_objects_Tex_010EB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_010EB0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_010EB0[] = dobject_spot02_objects_Tex_010EB0; + +#define dobject_spot02_objects_Tex_011AB0 "__OTR__objects/object_spot02_objects/object_spot02_objects_Tex_011AB0" +static const ALIGN_ASSET(2) char object_spot02_objects_Tex_011AB0[] = dobject_spot02_objects_Tex_011AB0; \ No newline at end of file diff --git a/soh/assets/objects/object_spot03_object/object_spot03_object.h b/soh/assets/objects/object_spot03_object/object_spot03_object.h index 62b078169..92b5db1fb 100644 --- a/soh/assets/objects/object_spot03_object/object_spot03_object.h +++ b/soh/assets/objects/object_spot03_object/object_spot03_object.h @@ -1,58 +1,27 @@ #pragma once -#define dobject_spot03_object_Tex_000000 "__OTR__objects/object_spot03_object/object_spot03_object_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot03_object_Tex_000000[] = dobject_spot03_object_Tex_000000; -#else -static const char object_spot03_object_Tex_000000[] __attribute__((aligned (2))) = dobject_spot03_object_Tex_000000; -#endif - -#define dobject_spot03_object_Vtx_000800 "__OTR__objects/object_spot03_object/object_spot03_object_Vtx_000800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot03_object_Vtx_000800[] = dobject_spot03_object_Vtx_000800; -#else -static const char object_spot03_object_Vtx_000800[] __attribute__((aligned (2))) = dobject_spot03_object_Vtx_000800; -#endif - -#define dobject_spot03_object_Vtx_000990 "__OTR__objects/object_spot03_object/object_spot03_object_Vtx_000990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot03_object_Vtx_000990[] = dobject_spot03_object_Vtx_000990; -#else -static const char object_spot03_object_Vtx_000990[] __attribute__((aligned (2))) = dobject_spot03_object_Vtx_000990; -#endif - -#define dobject_spot03_object_DL_000B20 "__OTR__objects/object_spot03_object/object_spot03_object_DL_000B20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot03_object_DL_000B20[] = dobject_spot03_object_DL_000B20; -#else -static const char object_spot03_object_DL_000B20[] __attribute__((aligned (2))) = dobject_spot03_object_DL_000B20; -#endif - -#define dobject_spot03_object_DL_000BC0 "__OTR__objects/object_spot03_object/object_spot03_object_DL_000BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot03_object_DL_000BC0[] = dobject_spot03_object_DL_000BC0; -#else -static const char object_spot03_object_DL_000BC0[] __attribute__((aligned (2))) = dobject_spot03_object_DL_000BC0; -#endif - -#define dobject_spot03_object_Col_000C98 "__OTR__objects/object_spot03_object/object_spot03_object_Col_000C98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot03_object_Col_000C98[] = dobject_spot03_object_Col_000C98; -#else -static const char object_spot03_object_Col_000C98[] __attribute__((aligned (2))) = dobject_spot03_object_Col_000C98; -#endif - -#define dobject_spot03_object_Tex_000CD0 "__OTR__objects/object_spot03_object/object_spot03_object_Tex_000CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot03_object_Tex_000CD0[] = dobject_spot03_object_Tex_000CD0; -#else -static const char object_spot03_object_Tex_000CD0[] __attribute__((aligned (2))) = dobject_spot03_object_Tex_000CD0; -#endif - -#define dobject_spot03_object_DL_001580 "__OTR__objects/object_spot03_object/object_spot03_object_DL_001580" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot03_object_DL_001580[] = dobject_spot03_object_DL_001580; -#else -static const char object_spot03_object_DL_001580[] __attribute__((aligned (2))) = dobject_spot03_object_DL_001580; -#endif - +#include "align_asset_macro.h" + +#define dobject_spot03_object_Tex_000000 "__OTR__objects/object_spot03_object/object_spot03_object_Tex_000000" +static const ALIGN_ASSET(2) char object_spot03_object_Tex_000000[] = dobject_spot03_object_Tex_000000; + +#define dobject_spot03_object_Vtx_000800 "__OTR__objects/object_spot03_object/object_spot03_object_Vtx_000800" +static const ALIGN_ASSET(2) char object_spot03_object_Vtx_000800[] = dobject_spot03_object_Vtx_000800; + +#define dobject_spot03_object_Vtx_000990 "__OTR__objects/object_spot03_object/object_spot03_object_Vtx_000990" +static const ALIGN_ASSET(2) char object_spot03_object_Vtx_000990[] = dobject_spot03_object_Vtx_000990; + +#define dobject_spot03_object_DL_000B20 "__OTR__objects/object_spot03_object/object_spot03_object_DL_000B20" +static const ALIGN_ASSET(2) char object_spot03_object_DL_000B20[] = dobject_spot03_object_DL_000B20; + +#define dobject_spot03_object_DL_000BC0 "__OTR__objects/object_spot03_object/object_spot03_object_DL_000BC0" +static const ALIGN_ASSET(2) char object_spot03_object_DL_000BC0[] = dobject_spot03_object_DL_000BC0; + +#define dobject_spot03_object_Col_000C98 "__OTR__objects/object_spot03_object/object_spot03_object_Col_000C98" +static const ALIGN_ASSET(2) char object_spot03_object_Col_000C98[] = dobject_spot03_object_Col_000C98; + +#define dobject_spot03_object_Tex_000CD0 "__OTR__objects/object_spot03_object/object_spot03_object_Tex_000CD0" +static const ALIGN_ASSET(2) char object_spot03_object_Tex_000CD0[] = dobject_spot03_object_Tex_000CD0; + +#define dobject_spot03_object_DL_001580 "__OTR__objects/object_spot03_object/object_spot03_object_DL_001580" +static const ALIGN_ASSET(2) char object_spot03_object_DL_001580[] = dobject_spot03_object_DL_001580; \ No newline at end of file diff --git a/soh/assets/objects/object_spot04_objects/object_spot04_objects.h b/soh/assets/objects/object_spot04_objects/object_spot04_objects.h index fcf630fc4..87bcc094d 100644 --- a/soh/assets/objects/object_spot04_objects/object_spot04_objects.h +++ b/soh/assets/objects/object_spot04_objects/object_spot04_objects.h @@ -1,44 +1,21 @@ #pragma once -#define dgDekuTreeMouthTex_0000 "__OTR__objects/object_spot04_objects/gDekuTreeMouthTex_0000" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeMouthTex_0000[] = dgDekuTreeMouthTex_0000; -#else -static const char gDekuTreeMouthTex_0000[] __attribute__((aligned (2))) = dgDekuTreeMouthTex_0000; -#endif - -#define dgDekuTreeMouthTex_0400 "__OTR__objects/object_spot04_objects/gDekuTreeMouthTex_0400" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeMouthTex_0400[] = dgDekuTreeMouthTex_0400; -#else -static const char gDekuTreeMouthTex_0400[] __attribute__((aligned (2))) = dgDekuTreeMouthTex_0400; -#endif - -#define dgDekuTreeUnusedMouthTex_0EC0 "__OTR__objects/object_spot04_objects/gDekuTreeUnusedMouthTex_0EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeUnusedMouthTex_0EC0[] = dgDekuTreeUnusedMouthTex_0EC0; -#else -static const char gDekuTreeUnusedMouthTex_0EC0[] __attribute__((aligned (2))) = dgDekuTreeUnusedMouthTex_0EC0; -#endif - -#define dgDekuTreeUnusedMouthTex_12C0 "__OTR__objects/object_spot04_objects/gDekuTreeUnusedMouthTex_12C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeUnusedMouthTex_12C0[] = dgDekuTreeUnusedMouthTex_12C0; -#else -static const char gDekuTreeUnusedMouthTex_12C0[] __attribute__((aligned (2))) = dgDekuTreeUnusedMouthTex_12C0; -#endif - -#define dgDekuTreeMouthDL "__OTR__objects/object_spot04_objects/gDekuTreeMouthDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeMouthDL[] = dgDekuTreeMouthDL; -#else -static const char gDekuTreeMouthDL[] __attribute__((aligned (2))) = dgDekuTreeMouthDL; -#endif - -#define dgDekuTreeMouthCol "__OTR__objects/object_spot04_objects/gDekuTreeMouthCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeMouthCol[] = dgDekuTreeMouthCol; -#else -static const char gDekuTreeMouthCol[] __attribute__((aligned (2))) = dgDekuTreeMouthCol; -#endif - +#include "align_asset_macro.h" + +#define dgDekuTreeMouthTex_0000 "__OTR__objects/object_spot04_objects/gDekuTreeMouthTex_0000" +static const ALIGN_ASSET(2) char gDekuTreeMouthTex_0000[] = dgDekuTreeMouthTex_0000; + +#define dgDekuTreeMouthTex_0400 "__OTR__objects/object_spot04_objects/gDekuTreeMouthTex_0400" +static const ALIGN_ASSET(2) char gDekuTreeMouthTex_0400[] = dgDekuTreeMouthTex_0400; + +#define dgDekuTreeUnusedMouthTex_0EC0 "__OTR__objects/object_spot04_objects/gDekuTreeUnusedMouthTex_0EC0" +static const ALIGN_ASSET(2) char gDekuTreeUnusedMouthTex_0EC0[] = dgDekuTreeUnusedMouthTex_0EC0; + +#define dgDekuTreeUnusedMouthTex_12C0 "__OTR__objects/object_spot04_objects/gDekuTreeUnusedMouthTex_12C0" +static const ALIGN_ASSET(2) char gDekuTreeUnusedMouthTex_12C0[] = dgDekuTreeUnusedMouthTex_12C0; + +#define dgDekuTreeMouthDL "__OTR__objects/object_spot04_objects/gDekuTreeMouthDL" +static const ALIGN_ASSET(2) char gDekuTreeMouthDL[] = dgDekuTreeMouthDL; + +#define dgDekuTreeMouthCol "__OTR__objects/object_spot04_objects/gDekuTreeMouthCol" +static const ALIGN_ASSET(2) char gDekuTreeMouthCol[] = dgDekuTreeMouthCol; \ No newline at end of file diff --git a/soh/assets/objects/object_spot05_objects/object_spot05_objects.h b/soh/assets/objects/object_spot05_objects/object_spot05_objects.h index 8fe1e3231..7371737a4 100644 --- a/soh/assets/objects/object_spot05_objects/object_spot05_objects.h +++ b/soh/assets/objects/object_spot05_objects/object_spot05_objects.h @@ -1,44 +1,21 @@ #pragma once -#define dobject_spot05_objects_Tex_000000 "__OTR__objects/object_spot05_objects/object_spot05_objects_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot05_objects_Tex_000000[] = dobject_spot05_objects_Tex_000000; -#else -static const char object_spot05_objects_Tex_000000[] __attribute__((aligned (2))) = dobject_spot05_objects_Tex_000000; -#endif - -#define dobject_spot05_objects_DL_000840 "__OTR__objects/object_spot05_objects/object_spot05_objects_DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot05_objects_DL_000840[] = dobject_spot05_objects_DL_000840; -#else -static const char object_spot05_objects_DL_000840[] __attribute__((aligned (2))) = dobject_spot05_objects_DL_000840; -#endif - -#define dobject_spot05_objects_Col_000918 "__OTR__objects/object_spot05_objects/object_spot05_objects_Col_000918" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot05_objects_Col_000918[] = dobject_spot05_objects_Col_000918; -#else -static const char object_spot05_objects_Col_000918[] __attribute__((aligned (2))) = dobject_spot05_objects_Col_000918; -#endif - -#define dobject_spot05_objects_Tex_000950 "__OTR__objects/object_spot05_objects/object_spot05_objects_Tex_000950" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot05_objects_Tex_000950[] = dobject_spot05_objects_Tex_000950; -#else -static const char object_spot05_objects_Tex_000950[] __attribute__((aligned (2))) = dobject_spot05_objects_Tex_000950; -#endif - -#define dobject_spot05_objects_DL_001190 "__OTR__objects/object_spot05_objects/object_spot05_objects_DL_001190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot05_objects_DL_001190[] = dobject_spot05_objects_DL_001190; -#else -static const char object_spot05_objects_DL_001190[] __attribute__((aligned (2))) = dobject_spot05_objects_DL_001190; -#endif - -#define dobject_spot05_objects_Col_0012C0 "__OTR__objects/object_spot05_objects/object_spot05_objects_Col_0012C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot05_objects_Col_0012C0[] = dobject_spot05_objects_Col_0012C0; -#else -static const char object_spot05_objects_Col_0012C0[] __attribute__((aligned (2))) = dobject_spot05_objects_Col_0012C0; -#endif - +#include "align_asset_macro.h" + +#define dobject_spot05_objects_Tex_000000 "__OTR__objects/object_spot05_objects/object_spot05_objects_Tex_000000" +static const ALIGN_ASSET(2) char object_spot05_objects_Tex_000000[] = dobject_spot05_objects_Tex_000000; + +#define dobject_spot05_objects_DL_000840 "__OTR__objects/object_spot05_objects/object_spot05_objects_DL_000840" +static const ALIGN_ASSET(2) char object_spot05_objects_DL_000840[] = dobject_spot05_objects_DL_000840; + +#define dobject_spot05_objects_Col_000918 "__OTR__objects/object_spot05_objects/object_spot05_objects_Col_000918" +static const ALIGN_ASSET(2) char object_spot05_objects_Col_000918[] = dobject_spot05_objects_Col_000918; + +#define dobject_spot05_objects_Tex_000950 "__OTR__objects/object_spot05_objects/object_spot05_objects_Tex_000950" +static const ALIGN_ASSET(2) char object_spot05_objects_Tex_000950[] = dobject_spot05_objects_Tex_000950; + +#define dobject_spot05_objects_DL_001190 "__OTR__objects/object_spot05_objects/object_spot05_objects_DL_001190" +static const ALIGN_ASSET(2) char object_spot05_objects_DL_001190[] = dobject_spot05_objects_DL_001190; + +#define dobject_spot05_objects_Col_0012C0 "__OTR__objects/object_spot05_objects/object_spot05_objects_Col_0012C0" +static const ALIGN_ASSET(2) char object_spot05_objects_Col_0012C0[] = dobject_spot05_objects_Col_0012C0; \ No newline at end of file diff --git a/soh/assets/objects/object_spot06_objects/object_spot06_objects.h b/soh/assets/objects/object_spot06_objects/object_spot06_objects.h index 574838617..c11ed031c 100644 --- a/soh/assets/objects/object_spot06_objects/object_spot06_objects.h +++ b/soh/assets/objects/object_spot06_objects/object_spot06_objects.h @@ -1,79 +1,36 @@ #pragma once -#define dgLakeHyliaLowWaterDL "__OTR__objects/object_spot06_objects/gLakeHyliaLowWaterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaLowWaterDL[] = dgLakeHyliaLowWaterDL; -#else -static const char gLakeHyliaLowWaterDL[] __attribute__((aligned (2))) = dgLakeHyliaLowWaterDL; -#endif - -#define dgLakeHyliaHighWaterDL "__OTR__objects/object_spot06_objects/gLakeHyliaHighWaterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaHighWaterDL[] = dgLakeHyliaHighWaterDL; -#else -static const char gLakeHyliaHighWaterDL[] __attribute__((aligned (2))) = dgLakeHyliaHighWaterDL; -#endif - -#define dgLakeHyliaWaterTex "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaWaterTex[] = dgLakeHyliaWaterTex; -#else -static const char gLakeHyliaWaterTex[] __attribute__((aligned (2))) = dgLakeHyliaWaterTex; -#endif - -#define dgLakeHyliaWaterTempleGateDL "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleGateDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaWaterTempleGateDL[] = dgLakeHyliaWaterTempleGateDL; -#else -static const char gLakeHyliaWaterTempleGateDL[] __attribute__((aligned (2))) = dgLakeHyliaWaterTempleGateDL; -#endif - -#define dgLakeHyliaWaterTempleGateTex "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleGateTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaWaterTempleGateTex[] = dgLakeHyliaWaterTempleGateTex; -#else -static const char gLakeHyliaWaterTempleGateTex[] __attribute__((aligned (2))) = dgLakeHyliaWaterTempleGateTex; -#endif - -#define dgLakeHyliaWaterTempleGateCol "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleGateCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaWaterTempleGateCol[] = dgLakeHyliaWaterTempleGateCol; -#else -static const char gLakeHyliaWaterTempleGateCol[] __attribute__((aligned (2))) = dgLakeHyliaWaterTempleGateCol; -#endif - -#define dgLakeHyliaZoraShortcutIceblockDL "__OTR__objects/object_spot06_objects/gLakeHyliaZoraShortcutIceblockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaZoraShortcutIceblockDL[] = dgLakeHyliaZoraShortcutIceblockDL; -#else -static const char gLakeHyliaZoraShortcutIceblockDL[] __attribute__((aligned (2))) = dgLakeHyliaZoraShortcutIceblockDL; -#endif - -#define dgLakeHyliaZoraShortcutIceblockTex "__OTR__objects/object_spot06_objects/gLakeHyliaZoraShortcutIceblockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaZoraShortcutIceblockTex[] = dgLakeHyliaZoraShortcutIceblockTex; -#else -static const char gLakeHyliaZoraShortcutIceblockTex[] __attribute__((aligned (2))) = dgLakeHyliaZoraShortcutIceblockTex; -#endif - -#define dgLakeHyliaZoraShortcutIceblockCol "__OTR__objects/object_spot06_objects/gLakeHyliaZoraShortcutIceblockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaZoraShortcutIceblockCol[] = dgLakeHyliaZoraShortcutIceblockCol; -#else -static const char gLakeHyliaZoraShortcutIceblockCol[] __attribute__((aligned (2))) = dgLakeHyliaZoraShortcutIceblockCol; -#endif - -#define dgLakeHyliaWaterTempleKeyDL "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleKeyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaWaterTempleKeyDL[] = dgLakeHyliaWaterTempleKeyDL; -#else -static const char gLakeHyliaWaterTempleKeyDL[] __attribute__((aligned (2))) = dgLakeHyliaWaterTempleKeyDL; -#endif - -#define dgLakeHyliaWaterTempleKeyTex "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleKeyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaWaterTempleKeyTex[] = dgLakeHyliaWaterTempleKeyTex; -#else -static const char gLakeHyliaWaterTempleKeyTex[] __attribute__((aligned (2))) = dgLakeHyliaWaterTempleKeyTex; -#endif - +#include "align_asset_macro.h" + +#define dgLakeHyliaLowWaterDL "__OTR__objects/object_spot06_objects/gLakeHyliaLowWaterDL" +static const ALIGN_ASSET(2) char gLakeHyliaLowWaterDL[] = dgLakeHyliaLowWaterDL; + +#define dgLakeHyliaHighWaterDL "__OTR__objects/object_spot06_objects/gLakeHyliaHighWaterDL" +static const ALIGN_ASSET(2) char gLakeHyliaHighWaterDL[] = dgLakeHyliaHighWaterDL; + +#define dgLakeHyliaWaterTex "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTex" +static const ALIGN_ASSET(2) char gLakeHyliaWaterTex[] = dgLakeHyliaWaterTex; + +#define dgLakeHyliaWaterTempleGateDL "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleGateDL" +static const ALIGN_ASSET(2) char gLakeHyliaWaterTempleGateDL[] = dgLakeHyliaWaterTempleGateDL; + +#define dgLakeHyliaWaterTempleGateTex "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleGateTex" +static const ALIGN_ASSET(2) char gLakeHyliaWaterTempleGateTex[] = dgLakeHyliaWaterTempleGateTex; + +#define dgLakeHyliaWaterTempleGateCol "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleGateCol" +static const ALIGN_ASSET(2) char gLakeHyliaWaterTempleGateCol[] = dgLakeHyliaWaterTempleGateCol; + +#define dgLakeHyliaZoraShortcutIceblockDL "__OTR__objects/object_spot06_objects/gLakeHyliaZoraShortcutIceblockDL" +static const ALIGN_ASSET(2) char gLakeHyliaZoraShortcutIceblockDL[] = dgLakeHyliaZoraShortcutIceblockDL; + +#define dgLakeHyliaZoraShortcutIceblockTex "__OTR__objects/object_spot06_objects/gLakeHyliaZoraShortcutIceblockTex" +static const ALIGN_ASSET(2) char gLakeHyliaZoraShortcutIceblockTex[] = dgLakeHyliaZoraShortcutIceblockTex; + +#define dgLakeHyliaZoraShortcutIceblockCol "__OTR__objects/object_spot06_objects/gLakeHyliaZoraShortcutIceblockCol" +static const ALIGN_ASSET(2) char gLakeHyliaZoraShortcutIceblockCol[] = dgLakeHyliaZoraShortcutIceblockCol; + +#define dgLakeHyliaWaterTempleKeyDL "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleKeyDL" +static const ALIGN_ASSET(2) char gLakeHyliaWaterTempleKeyDL[] = dgLakeHyliaWaterTempleKeyDL; + +#define dgLakeHyliaWaterTempleKeyTex "__OTR__objects/object_spot06_objects/gLakeHyliaWaterTempleKeyTex" +static const ALIGN_ASSET(2) char gLakeHyliaWaterTempleKeyTex[] = dgLakeHyliaWaterTempleKeyTex; \ No newline at end of file diff --git a/soh/assets/objects/object_spot07_object/object_spot07_object.h b/soh/assets/objects/object_spot07_object/object_spot07_object.h index 814f2c242..24a2c8e91 100644 --- a/soh/assets/objects/object_spot07_object/object_spot07_object.h +++ b/soh/assets/objects/object_spot07_object/object_spot07_object.h @@ -1,135 +1,60 @@ #pragma once -#define dobject_spot07_object_DL_000460 "__OTR__objects/object_spot07_object/object_spot07_object_DL_000460" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_DL_000460[] = dobject_spot07_object_DL_000460; -#else -static const char object_spot07_object_DL_000460[] __attribute__((aligned (2))) = dobject_spot07_object_DL_000460; -#endif - -#define dobject_spot07_object_DL_000BE0 "__OTR__objects/object_spot07_object/object_spot07_object_DL_000BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_DL_000BE0[] = dobject_spot07_object_DL_000BE0; -#else -static const char object_spot07_object_DL_000BE0[] __attribute__((aligned (2))) = dobject_spot07_object_DL_000BE0; -#endif - -#define dobject_spot07_object_TLUT_000EC0 "__OTR__objects/object_spot07_object/object_spot07_object_TLUT_000EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_TLUT_000EC0[] = dobject_spot07_object_TLUT_000EC0; -#else -static const char object_spot07_object_TLUT_000EC0[] __attribute__((aligned (2))) = dobject_spot07_object_TLUT_000EC0; -#endif - -#define dobject_spot07_object_Tex_000EE0 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_000EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_000EE0[] = dobject_spot07_object_Tex_000EE0; -#else -static const char object_spot07_object_Tex_000EE0[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_000EE0; -#endif - -#define dobject_spot07_object_DL_001CF0 "__OTR__objects/object_spot07_object/object_spot07_object_DL_001CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_DL_001CF0[] = dobject_spot07_object_DL_001CF0; -#else -static const char object_spot07_object_DL_001CF0[] __attribute__((aligned (2))) = dobject_spot07_object_DL_001CF0; -#endif - -#define dobject_spot07_object_DL_001F68 "__OTR__objects/object_spot07_object/object_spot07_object_DL_001F68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_DL_001F68[] = dobject_spot07_object_DL_001F68; -#else -static const char object_spot07_object_DL_001F68[] __attribute__((aligned (2))) = dobject_spot07_object_DL_001F68; -#endif - -#define dobject_spot07_object_Col_002590 "__OTR__objects/object_spot07_object/object_spot07_object_Col_002590" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Col_002590[] = dobject_spot07_object_Col_002590; -#else -static const char object_spot07_object_Col_002590[] __attribute__((aligned (2))) = dobject_spot07_object_Col_002590; -#endif - -#define dobject_spot07_object_TLUT_0025C0 "__OTR__objects/object_spot07_object/object_spot07_object_TLUT_0025C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_TLUT_0025C0[] = dobject_spot07_object_TLUT_0025C0; -#else -static const char object_spot07_object_TLUT_0025C0[] __attribute__((aligned (2))) = dobject_spot07_object_TLUT_0025C0; -#endif - -#define dobject_spot07_object_Tex_0025E0 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_0025E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_0025E0[] = dobject_spot07_object_Tex_0025E0; -#else -static const char object_spot07_object_Tex_0025E0[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_0025E0; -#endif - -#define dobject_spot07_object_DL_003210 "__OTR__objects/object_spot07_object/object_spot07_object_DL_003210" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_DL_003210[] = dobject_spot07_object_DL_003210; -#else -static const char object_spot07_object_DL_003210[] __attribute__((aligned (2))) = dobject_spot07_object_DL_003210; -#endif - -#define dobject_spot07_object_DL_0032D8 "__OTR__objects/object_spot07_object/object_spot07_object_DL_0032D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_DL_0032D8[] = dobject_spot07_object_DL_0032D8; -#else -static const char object_spot07_object_DL_0032D8[] __attribute__((aligned (2))) = dobject_spot07_object_DL_0032D8; -#endif - -#define dobject_spot07_object_Col_0038FC "__OTR__objects/object_spot07_object/object_spot07_object_Col_0038FC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Col_0038FC[] = dobject_spot07_object_Col_0038FC; -#else -static const char object_spot07_object_Col_0038FC[] __attribute__((aligned (2))) = dobject_spot07_object_Col_0038FC; -#endif - -#define dobject_spot07_object_Tex_003930 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_003930" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_003930[] = dobject_spot07_object_Tex_003930; -#else -static const char object_spot07_object_Tex_003930[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_003930; -#endif - -#define dobject_spot07_object_Tex_004130 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_004130" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_004130[] = dobject_spot07_object_Tex_004130; -#else -static const char object_spot07_object_Tex_004130[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_004130; -#endif - -#define dobject_spot07_object_Tex_004930 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_004930" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_004930[] = dobject_spot07_object_Tex_004930; -#else -static const char object_spot07_object_Tex_004930[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_004930; -#endif - -#define dobject_spot07_object_Tex_005130 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_005130" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_005130[] = dobject_spot07_object_Tex_005130; -#else -static const char object_spot07_object_Tex_005130[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_005130; -#endif - -#define dobject_spot07_object_Tex_005530 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_005530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_005530[] = dobject_spot07_object_Tex_005530; -#else -static const char object_spot07_object_Tex_005530[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_005530; -#endif - -#define dobject_spot07_object_Tex_005D30 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_005D30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_005D30[] = dobject_spot07_object_Tex_005D30; -#else -static const char object_spot07_object_Tex_005D30[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_005D30; -#endif - -#define dobject_spot07_object_Tex_006530 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_006530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot07_object_Tex_006530[] = dobject_spot07_object_Tex_006530; -#else -static const char object_spot07_object_Tex_006530[] __attribute__((aligned (2))) = dobject_spot07_object_Tex_006530; -#endif - +#include "align_asset_macro.h" + +#define dobject_spot07_object_DL_000460 "__OTR__objects/object_spot07_object/object_spot07_object_DL_000460" +static const ALIGN_ASSET(2) char object_spot07_object_DL_000460[] = dobject_spot07_object_DL_000460; + +#define dobject_spot07_object_DL_000BE0 "__OTR__objects/object_spot07_object/object_spot07_object_DL_000BE0" +static const ALIGN_ASSET(2) char object_spot07_object_DL_000BE0[] = dobject_spot07_object_DL_000BE0; + +#define dobject_spot07_object_TLUT_000EC0 "__OTR__objects/object_spot07_object/object_spot07_object_TLUT_000EC0" +static const ALIGN_ASSET(2) char object_spot07_object_TLUT_000EC0[] = dobject_spot07_object_TLUT_000EC0; + +#define dobject_spot07_object_Tex_000EE0 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_000EE0" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_000EE0[] = dobject_spot07_object_Tex_000EE0; + +#define dobject_spot07_object_DL_001CF0 "__OTR__objects/object_spot07_object/object_spot07_object_DL_001CF0" +static const ALIGN_ASSET(2) char object_spot07_object_DL_001CF0[] = dobject_spot07_object_DL_001CF0; + +#define dobject_spot07_object_DL_001F68 "__OTR__objects/object_spot07_object/object_spot07_object_DL_001F68" +static const ALIGN_ASSET(2) char object_spot07_object_DL_001F68[] = dobject_spot07_object_DL_001F68; + +#define dobject_spot07_object_Col_002590 "__OTR__objects/object_spot07_object/object_spot07_object_Col_002590" +static const ALIGN_ASSET(2) char object_spot07_object_Col_002590[] = dobject_spot07_object_Col_002590; + +#define dobject_spot07_object_TLUT_0025C0 "__OTR__objects/object_spot07_object/object_spot07_object_TLUT_0025C0" +static const ALIGN_ASSET(2) char object_spot07_object_TLUT_0025C0[] = dobject_spot07_object_TLUT_0025C0; + +#define dobject_spot07_object_Tex_0025E0 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_0025E0" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_0025E0[] = dobject_spot07_object_Tex_0025E0; + +#define dobject_spot07_object_DL_003210 "__OTR__objects/object_spot07_object/object_spot07_object_DL_003210" +static const ALIGN_ASSET(2) char object_spot07_object_DL_003210[] = dobject_spot07_object_DL_003210; + +#define dobject_spot07_object_DL_0032D8 "__OTR__objects/object_spot07_object/object_spot07_object_DL_0032D8" +static const ALIGN_ASSET(2) char object_spot07_object_DL_0032D8[] = dobject_spot07_object_DL_0032D8; + +#define dobject_spot07_object_Col_0038FC "__OTR__objects/object_spot07_object/object_spot07_object_Col_0038FC" +static const ALIGN_ASSET(2) char object_spot07_object_Col_0038FC[] = dobject_spot07_object_Col_0038FC; + +#define dobject_spot07_object_Tex_003930 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_003930" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_003930[] = dobject_spot07_object_Tex_003930; + +#define dobject_spot07_object_Tex_004130 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_004130" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_004130[] = dobject_spot07_object_Tex_004130; + +#define dobject_spot07_object_Tex_004930 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_004930" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_004930[] = dobject_spot07_object_Tex_004930; + +#define dobject_spot07_object_Tex_005130 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_005130" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_005130[] = dobject_spot07_object_Tex_005130; + +#define dobject_spot07_object_Tex_005530 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_005530" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_005530[] = dobject_spot07_object_Tex_005530; + +#define dobject_spot07_object_Tex_005D30 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_005D30" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_005D30[] = dobject_spot07_object_Tex_005D30; + +#define dobject_spot07_object_Tex_006530 "__OTR__objects/object_spot07_object/object_spot07_object_Tex_006530" +static const ALIGN_ASSET(2) char object_spot07_object_Tex_006530[] = dobject_spot07_object_Tex_006530; \ No newline at end of file diff --git a/soh/assets/objects/object_spot08_obj/object_spot08_obj.h b/soh/assets/objects/object_spot08_obj/object_spot08_obj.h index b6211b0f8..f527428a8 100644 --- a/soh/assets/objects/object_spot08_obj/object_spot08_obj.h +++ b/soh/assets/objects/object_spot08_obj/object_spot08_obj.h @@ -1,128 +1,57 @@ #pragma once -#define dgZorasFountainIceRampDL "__OTR__objects/object_spot08_obj/gZorasFountainIceRampDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceRampDL[] = dgZorasFountainIceRampDL; -#else -static const char gZorasFountainIceRampDL[] __attribute__((aligned (2))) = dgZorasFountainIceRampDL; -#endif - -#define dgZorasFountainIceRampTLUT "__OTR__objects/object_spot08_obj/gZorasFountainIceRampTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceRampTLUT[] = dgZorasFountainIceRampTLUT; -#else -static const char gZorasFountainIceRampTLUT[] __attribute__((aligned (2))) = dgZorasFountainIceRampTLUT; -#endif - -#define dgZorasFountainIceRampLowerSideTex "__OTR__objects/object_spot08_obj/gZorasFountainIceRampLowerSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceRampLowerSideTex[] = dgZorasFountainIceRampLowerSideTex; -#else -static const char gZorasFountainIceRampLowerSideTex[] __attribute__((aligned (2))) = dgZorasFountainIceRampLowerSideTex; -#endif - -#define dgZorasFountainIceRampSurfaceTex "__OTR__objects/object_spot08_obj/gZorasFountainIceRampSurfaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceRampSurfaceTex[] = dgZorasFountainIceRampSurfaceTex; -#else -static const char gZorasFountainIceRampSurfaceTex[] __attribute__((aligned (2))) = dgZorasFountainIceRampSurfaceTex; -#endif - -#define dgZorasFountainIceRampUpperSideTex "__OTR__objects/object_spot08_obj/gZorasFountainIceRampUpperSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceRampUpperSideTex[] = dgZorasFountainIceRampUpperSideTex; -#else -static const char gZorasFountainIceRampUpperSideTex[] __attribute__((aligned (2))) = dgZorasFountainIceRampUpperSideTex; -#endif - -#define dgZorasFountainIceRampMiddleSlopeTex "__OTR__objects/object_spot08_obj/gZorasFountainIceRampMiddleSlopeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceRampMiddleSlopeTex[] = dgZorasFountainIceRampMiddleSlopeTex; -#else -static const char gZorasFountainIceRampMiddleSlopeTex[] __attribute__((aligned (2))) = dgZorasFountainIceRampMiddleSlopeTex; -#endif - -#define dgZorasFountainIceRampCol "__OTR__objects/object_spot08_obj/gZorasFountainIceRampCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceRampCol[] = dgZorasFountainIceRampCol; -#else -static const char gZorasFountainIceRampCol[] __attribute__((aligned (2))) = dgZorasFountainIceRampCol; -#endif - -#define dgZorasFountainIcebergDL "__OTR__objects/object_spot08_obj/gZorasFountainIcebergDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIcebergDL[] = dgZorasFountainIcebergDL; -#else -static const char gZorasFountainIcebergDL[] __attribute__((aligned (2))) = dgZorasFountainIcebergDL; -#endif - -#define dgZorasFountainIceberg1TLUT "__OTR__objects/object_spot08_obj/gZorasFountainIceberg1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceberg1TLUT[] = dgZorasFountainIceberg1TLUT; -#else -static const char gZorasFountainIceberg1TLUT[] __attribute__((aligned (2))) = dgZorasFountainIceberg1TLUT; -#endif - -#define dgZorasFountainIceberg2TLUT "__OTR__objects/object_spot08_obj/gZorasFountainIceberg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIceberg2TLUT[] = dgZorasFountainIceberg2TLUT; -#else -static const char gZorasFountainIceberg2TLUT[] __attribute__((aligned (2))) = dgZorasFountainIceberg2TLUT; -#endif - -#define dgZorasFountainIcebergSideTex "__OTR__objects/object_spot08_obj/gZorasFountainIcebergSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIcebergSideTex[] = dgZorasFountainIcebergSideTex; -#else -static const char gZorasFountainIcebergSideTex[] __attribute__((aligned (2))) = dgZorasFountainIcebergSideTex; -#endif - -#define dgZorasFountainIcebergTopTex "__OTR__objects/object_spot08_obj/gZorasFountainIcebergTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIcebergTopTex[] = dgZorasFountainIcebergTopTex; -#else -static const char gZorasFountainIcebergTopTex[] __attribute__((aligned (2))) = dgZorasFountainIcebergTopTex; -#endif - -#define dgZorasFountainIcebergUndersideTex "__OTR__objects/object_spot08_obj/gZorasFountainIcebergUndersideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIcebergUndersideTex[] = dgZorasFountainIcebergUndersideTex; -#else -static const char gZorasFountainIcebergUndersideTex[] __attribute__((aligned (2))) = dgZorasFountainIcebergUndersideTex; -#endif - -#define dgZorasFountainIcebergCol "__OTR__objects/object_spot08_obj/gZorasFountainIcebergCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIcebergCol[] = dgZorasFountainIcebergCol; -#else -static const char gZorasFountainIcebergCol[] __attribute__((aligned (2))) = dgZorasFountainIcebergCol; -#endif - -#define dgZorasFountainBombableWallDL "__OTR__objects/object_spot08_obj/gZorasFountainBombableWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainBombableWallDL[] = dgZorasFountainBombableWallDL; -#else -static const char gZorasFountainBombableWallDL[] __attribute__((aligned (2))) = dgZorasFountainBombableWallDL; -#endif - -#define dgZorasFountainBombableWallTLUT "__OTR__objects/object_spot08_obj/gZorasFountainBombableWallTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainBombableWallTLUT[] = dgZorasFountainBombableWallTLUT; -#else -static const char gZorasFountainBombableWallTLUT[] __attribute__((aligned (2))) = dgZorasFountainBombableWallTLUT; -#endif - -#define dgZorasFountainBombableWallTex "__OTR__objects/object_spot08_obj/gZorasFountainBombableWallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainBombableWallTex[] = dgZorasFountainBombableWallTex; -#else -static const char gZorasFountainBombableWallTex[] __attribute__((aligned (2))) = dgZorasFountainBombableWallTex; -#endif - -#define dgZorasFountainBombableWallCol "__OTR__objects/object_spot08_obj/gZorasFountainBombableWallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainBombableWallCol[] = dgZorasFountainBombableWallCol; -#else -static const char gZorasFountainBombableWallCol[] __attribute__((aligned (2))) = dgZorasFountainBombableWallCol; -#endif - +#include "align_asset_macro.h" + +#define dgZorasFountainIceRampDL "__OTR__objects/object_spot08_obj/gZorasFountainIceRampDL" +static const ALIGN_ASSET(2) char gZorasFountainIceRampDL[] = dgZorasFountainIceRampDL; + +#define dgZorasFountainIceRampTLUT "__OTR__objects/object_spot08_obj/gZorasFountainIceRampTLUT" +static const ALIGN_ASSET(2) char gZorasFountainIceRampTLUT[] = dgZorasFountainIceRampTLUT; + +#define dgZorasFountainIceRampLowerSideTex "__OTR__objects/object_spot08_obj/gZorasFountainIceRampLowerSideTex" +static const ALIGN_ASSET(2) char gZorasFountainIceRampLowerSideTex[] = dgZorasFountainIceRampLowerSideTex; + +#define dgZorasFountainIceRampSurfaceTex "__OTR__objects/object_spot08_obj/gZorasFountainIceRampSurfaceTex" +static const ALIGN_ASSET(2) char gZorasFountainIceRampSurfaceTex[] = dgZorasFountainIceRampSurfaceTex; + +#define dgZorasFountainIceRampUpperSideTex "__OTR__objects/object_spot08_obj/gZorasFountainIceRampUpperSideTex" +static const ALIGN_ASSET(2) char gZorasFountainIceRampUpperSideTex[] = dgZorasFountainIceRampUpperSideTex; + +#define dgZorasFountainIceRampMiddleSlopeTex "__OTR__objects/object_spot08_obj/gZorasFountainIceRampMiddleSlopeTex" +static const ALIGN_ASSET(2) char gZorasFountainIceRampMiddleSlopeTex[] = dgZorasFountainIceRampMiddleSlopeTex; + +#define dgZorasFountainIceRampCol "__OTR__objects/object_spot08_obj/gZorasFountainIceRampCol" +static const ALIGN_ASSET(2) char gZorasFountainIceRampCol[] = dgZorasFountainIceRampCol; + +#define dgZorasFountainIcebergDL "__OTR__objects/object_spot08_obj/gZorasFountainIcebergDL" +static const ALIGN_ASSET(2) char gZorasFountainIcebergDL[] = dgZorasFountainIcebergDL; + +#define dgZorasFountainIceberg1TLUT "__OTR__objects/object_spot08_obj/gZorasFountainIceberg1TLUT" +static const ALIGN_ASSET(2) char gZorasFountainIceberg1TLUT[] = dgZorasFountainIceberg1TLUT; + +#define dgZorasFountainIceberg2TLUT "__OTR__objects/object_spot08_obj/gZorasFountainIceberg2TLUT" +static const ALIGN_ASSET(2) char gZorasFountainIceberg2TLUT[] = dgZorasFountainIceberg2TLUT; + +#define dgZorasFountainIcebergSideTex "__OTR__objects/object_spot08_obj/gZorasFountainIcebergSideTex" +static const ALIGN_ASSET(2) char gZorasFountainIcebergSideTex[] = dgZorasFountainIcebergSideTex; + +#define dgZorasFountainIcebergTopTex "__OTR__objects/object_spot08_obj/gZorasFountainIcebergTopTex" +static const ALIGN_ASSET(2) char gZorasFountainIcebergTopTex[] = dgZorasFountainIcebergTopTex; + +#define dgZorasFountainIcebergUndersideTex "__OTR__objects/object_spot08_obj/gZorasFountainIcebergUndersideTex" +static const ALIGN_ASSET(2) char gZorasFountainIcebergUndersideTex[] = dgZorasFountainIcebergUndersideTex; + +#define dgZorasFountainIcebergCol "__OTR__objects/object_spot08_obj/gZorasFountainIcebergCol" +static const ALIGN_ASSET(2) char gZorasFountainIcebergCol[] = dgZorasFountainIcebergCol; + +#define dgZorasFountainBombableWallDL "__OTR__objects/object_spot08_obj/gZorasFountainBombableWallDL" +static const ALIGN_ASSET(2) char gZorasFountainBombableWallDL[] = dgZorasFountainBombableWallDL; + +#define dgZorasFountainBombableWallTLUT "__OTR__objects/object_spot08_obj/gZorasFountainBombableWallTLUT" +static const ALIGN_ASSET(2) char gZorasFountainBombableWallTLUT[] = dgZorasFountainBombableWallTLUT; + +#define dgZorasFountainBombableWallTex "__OTR__objects/object_spot08_obj/gZorasFountainBombableWallTex" +static const ALIGN_ASSET(2) char gZorasFountainBombableWallTex[] = dgZorasFountainBombableWallTex; + +#define dgZorasFountainBombableWallCol "__OTR__objects/object_spot08_obj/gZorasFountainBombableWallCol" +static const ALIGN_ASSET(2) char gZorasFountainBombableWallCol[] = dgZorasFountainBombableWallCol; \ No newline at end of file diff --git a/soh/assets/objects/object_spot09_obj/object_spot09_obj.h b/soh/assets/objects/object_spot09_obj/object_spot09_obj.h index 48b7f02a0..78668baf8 100644 --- a/soh/assets/objects/object_spot09_obj/object_spot09_obj.h +++ b/soh/assets/objects/object_spot09_obj/object_spot09_obj.h @@ -1,219 +1,96 @@ #pragma once -#define dgValleyBridgeSidesDL "__OTR__objects/object_spot09_obj/gValleyBridgeSidesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gValleyBridgeSidesDL[] = dgValleyBridgeSidesDL; -#else -static const char gValleyBridgeSidesDL[] __attribute__((aligned (2))) = dgValleyBridgeSidesDL; -#endif - -#define dgValleyBrokenBridgeDL "__OTR__objects/object_spot09_obj/gValleyBrokenBridgeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gValleyBrokenBridgeDL[] = dgValleyBrokenBridgeDL; -#else -static const char gValleyBrokenBridgeDL[] __attribute__((aligned (2))) = dgValleyBrokenBridgeDL; -#endif - -#define dgValleyBridgeChildDL "__OTR__objects/object_spot09_obj/gValleyBridgeChildDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gValleyBridgeChildDL[] = dgValleyBridgeChildDL; -#else -static const char gValleyBridgeChildDL[] __attribute__((aligned (2))) = dgValleyBridgeChildDL; -#endif - -#define dgCarpentersTentDL "__OTR__objects/object_spot09_obj/gCarpentersTentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersTentDL[] = dgCarpentersTentDL; -#else -static const char gCarpentersTentDL[] __attribute__((aligned (2))) = dgCarpentersTentDL; -#endif - -#define dgValleyRepairedBridgeDL "__OTR__objects/object_spot09_obj/gValleyRepairedBridgeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gValleyRepairedBridgeDL[] = dgValleyRepairedBridgeDL; -#else -static const char gValleyRepairedBridgeDL[] __attribute__((aligned (2))) = dgValleyRepairedBridgeDL; -#endif - -#define dgCarpentersTentEntranceDL "__OTR__objects/object_spot09_obj/gCarpentersTentEntranceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersTentEntranceDL[] = dgCarpentersTentEntranceDL; -#else -static const char gCarpentersTentEntranceDL[] __attribute__((aligned (2))) = dgCarpentersTentEntranceDL; -#endif - -#define dgValleyObjects1Col "__OTR__objects/object_spot09_obj/gValleyObjects1Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gValleyObjects1Col[] = dgValleyObjects1Col; -#else -static const char gValleyObjects1Col[] __attribute__((aligned (2))) = dgValleyObjects1Col; -#endif - -#define dgValleyObjects2Col "__OTR__objects/object_spot09_obj/gValleyObjects2Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gValleyObjects2Col[] = dgValleyObjects2Col; -#else -static const char gValleyObjects2Col[] __attribute__((aligned (2))) = dgValleyObjects2Col; -#endif - -#define dgValleyObjects3Col "__OTR__objects/object_spot09_obj/gValleyObjects3Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gValleyObjects3Col[] = dgValleyObjects3Col; -#else -static const char gValleyObjects3Col[] __attribute__((aligned (2))) = dgValleyObjects3Col; -#endif - -#define dgValleyObjects4Col "__OTR__objects/object_spot09_obj/gValleyObjects4Col" -#ifdef _WIN32 -static const __declspec(align(2)) char gValleyObjects4Col[] = dgValleyObjects4Col; -#else -static const char gValleyObjects4Col[] __attribute__((aligned (2))) = dgValleyObjects4Col; -#endif - -#define dobject_spot09_objTex_013090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_013090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_013090[] = dobject_spot09_objTex_013090; -#else -static const char object_spot09_objTex_013090[] __attribute__((aligned (2))) = dobject_spot09_objTex_013090; -#endif - -#define dobject_spot09_objTex_014090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_014090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_014090[] = dobject_spot09_objTex_014090; -#else -static const char object_spot09_objTex_014090[] __attribute__((aligned (2))) = dobject_spot09_objTex_014090; -#endif - -#define dobject_spot09_objTex_00AC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00AC90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_00AC90[] = dobject_spot09_objTex_00AC90; -#else -static const char object_spot09_objTex_00AC90[] __attribute__((aligned (2))) = dobject_spot09_objTex_00AC90; -#endif - -#define dobject_spot09_objTex_00BC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00BC90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_00BC90[] = dobject_spot09_objTex_00BC90; -#else -static const char object_spot09_objTex_00BC90[] __attribute__((aligned (2))) = dobject_spot09_objTex_00BC90; -#endif - -#define dobject_spot09_objTex_00B490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00B490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_00B490[] = dobject_spot09_objTex_00B490; -#else -static const char object_spot09_objTex_00B490[] __attribute__((aligned (2))) = dobject_spot09_objTex_00B490; -#endif - -#define dobject_spot09_objTex_00A490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00A490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_00A490[] = dobject_spot09_objTex_00A490; -#else -static const char object_spot09_objTex_00A490[] __attribute__((aligned (2))) = dobject_spot09_objTex_00A490; -#endif - -#define dobject_spot09_objTex_00CC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00CC90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_00CC90[] = dobject_spot09_objTex_00CC90; -#else -static const char object_spot09_objTex_00CC90[] __attribute__((aligned (2))) = dobject_spot09_objTex_00CC90; -#endif - -#define dobject_spot09_objTex_00DC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00DC90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_00DC90[] = dobject_spot09_objTex_00DC90; -#else -static const char object_spot09_objTex_00DC90[] __attribute__((aligned (2))) = dobject_spot09_objTex_00DC90; -#endif - -#define dobject_spot09_objTex_00EC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00EC90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_00EC90[] = dobject_spot09_objTex_00EC90; -#else -static const char object_spot09_objTex_00EC90[] __attribute__((aligned (2))) = dobject_spot09_objTex_00EC90; -#endif - -#define dobject_spot09_objTex_008C90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_008C90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_008C90[] = dobject_spot09_objTex_008C90; -#else -static const char object_spot09_objTex_008C90[] __attribute__((aligned (2))) = dobject_spot09_objTex_008C90; -#endif - -#define dobject_spot09_objTex_00FC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00FC90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_00FC90[] = dobject_spot09_objTex_00FC90; -#else -static const char object_spot09_objTex_00FC90[] __attribute__((aligned (2))) = dobject_spot09_objTex_00FC90; -#endif - -#define dobject_spot09_objTex_012090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_012090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_012090[] = dobject_spot09_objTex_012090; -#else -static const char object_spot09_objTex_012090[] __attribute__((aligned (2))) = dobject_spot09_objTex_012090; -#endif - -#define dobject_spot09_objTex_011090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_011090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_011090[] = dobject_spot09_objTex_011090; -#else -static const char object_spot09_objTex_011090[] __attribute__((aligned (2))) = dobject_spot09_objTex_011090; -#endif - -#define dobject_spot09_objTex_010090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_010090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_010090[] = dobject_spot09_objTex_010090; -#else -static const char object_spot09_objTex_010090[] __attribute__((aligned (2))) = dobject_spot09_objTex_010090; -#endif - -#define dobject_spot09_objTex_017890 "__OTR__objects/object_spot09_obj/object_spot09_objTex_017890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_017890[] = dobject_spot09_objTex_017890; -#else -static const char object_spot09_objTex_017890[] __attribute__((aligned (2))) = dobject_spot09_objTex_017890; -#endif - -#define dobject_spot09_objTex_015090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_015090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_015090[] = dobject_spot09_objTex_015090; -#else -static const char object_spot09_objTex_015090[] __attribute__((aligned (2))) = dobject_spot09_objTex_015090; -#endif - -#define dobject_spot09_objTex_008490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_008490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_008490[] = dobject_spot09_objTex_008490; -#else -static const char object_spot09_objTex_008490[] __attribute__((aligned (2))) = dobject_spot09_objTex_008490; -#endif - -#define dobject_spot09_objTex_016090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_016090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_016090[] = dobject_spot09_objTex_016090; -#else -static const char object_spot09_objTex_016090[] __attribute__((aligned (2))) = dobject_spot09_objTex_016090; -#endif - -#define dobject_spot09_objTex_009490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_009490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_009490[] = dobject_spot09_objTex_009490; -#else -static const char object_spot09_objTex_009490[] __attribute__((aligned (2))) = dobject_spot09_objTex_009490; -#endif - -#define dobject_spot09_objTex_017490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_017490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_017490[] = dobject_spot09_objTex_017490; -#else -static const char object_spot09_objTex_017490[] __attribute__((aligned (2))) = dobject_spot09_objTex_017490; -#endif - -#define dobject_spot09_objTex_017090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_017090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_spot09_objTex_017090[] = dobject_spot09_objTex_017090; -#else -static const char object_spot09_objTex_017090[] __attribute__((aligned (2))) = dobject_spot09_objTex_017090; -#endif - +#include "align_asset_macro.h" + +#define dgValleyBridgeSidesDL "__OTR__objects/object_spot09_obj/gValleyBridgeSidesDL" +static const ALIGN_ASSET(2) char gValleyBridgeSidesDL[] = dgValleyBridgeSidesDL; + +#define dgValleyBrokenBridgeDL "__OTR__objects/object_spot09_obj/gValleyBrokenBridgeDL" +static const ALIGN_ASSET(2) char gValleyBrokenBridgeDL[] = dgValleyBrokenBridgeDL; + +#define dgValleyBridgeChildDL "__OTR__objects/object_spot09_obj/gValleyBridgeChildDL" +static const ALIGN_ASSET(2) char gValleyBridgeChildDL[] = dgValleyBridgeChildDL; + +#define dgCarpentersTentDL "__OTR__objects/object_spot09_obj/gCarpentersTentDL" +static const ALIGN_ASSET(2) char gCarpentersTentDL[] = dgCarpentersTentDL; + +#define dgValleyRepairedBridgeDL "__OTR__objects/object_spot09_obj/gValleyRepairedBridgeDL" +static const ALIGN_ASSET(2) char gValleyRepairedBridgeDL[] = dgValleyRepairedBridgeDL; + +#define dgCarpentersTentEntranceDL "__OTR__objects/object_spot09_obj/gCarpentersTentEntranceDL" +static const ALIGN_ASSET(2) char gCarpentersTentEntranceDL[] = dgCarpentersTentEntranceDL; + +#define dgValleyObjects1Col "__OTR__objects/object_spot09_obj/gValleyObjects1Col" +static const ALIGN_ASSET(2) char gValleyObjects1Col[] = dgValleyObjects1Col; + +#define dgValleyObjects2Col "__OTR__objects/object_spot09_obj/gValleyObjects2Col" +static const ALIGN_ASSET(2) char gValleyObjects2Col[] = dgValleyObjects2Col; + +#define dgValleyObjects3Col "__OTR__objects/object_spot09_obj/gValleyObjects3Col" +static const ALIGN_ASSET(2) char gValleyObjects3Col[] = dgValleyObjects3Col; + +#define dgValleyObjects4Col "__OTR__objects/object_spot09_obj/gValleyObjects4Col" +static const ALIGN_ASSET(2) char gValleyObjects4Col[] = dgValleyObjects4Col; + +#define dobject_spot09_objTex_013090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_013090" +static const ALIGN_ASSET(2) char object_spot09_objTex_013090[] = dobject_spot09_objTex_013090; + +#define dobject_spot09_objTex_014090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_014090" +static const ALIGN_ASSET(2) char object_spot09_objTex_014090[] = dobject_spot09_objTex_014090; + +#define dobject_spot09_objTex_00AC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00AC90" +static const ALIGN_ASSET(2) char object_spot09_objTex_00AC90[] = dobject_spot09_objTex_00AC90; + +#define dobject_spot09_objTex_00BC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00BC90" +static const ALIGN_ASSET(2) char object_spot09_objTex_00BC90[] = dobject_spot09_objTex_00BC90; + +#define dobject_spot09_objTex_00B490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00B490" +static const ALIGN_ASSET(2) char object_spot09_objTex_00B490[] = dobject_spot09_objTex_00B490; + +#define dobject_spot09_objTex_00A490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00A490" +static const ALIGN_ASSET(2) char object_spot09_objTex_00A490[] = dobject_spot09_objTex_00A490; + +#define dobject_spot09_objTex_00CC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00CC90" +static const ALIGN_ASSET(2) char object_spot09_objTex_00CC90[] = dobject_spot09_objTex_00CC90; + +#define dobject_spot09_objTex_00DC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00DC90" +static const ALIGN_ASSET(2) char object_spot09_objTex_00DC90[] = dobject_spot09_objTex_00DC90; + +#define dobject_spot09_objTex_00EC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00EC90" +static const ALIGN_ASSET(2) char object_spot09_objTex_00EC90[] = dobject_spot09_objTex_00EC90; + +#define dobject_spot09_objTex_008C90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_008C90" +static const ALIGN_ASSET(2) char object_spot09_objTex_008C90[] = dobject_spot09_objTex_008C90; + +#define dobject_spot09_objTex_00FC90 "__OTR__objects/object_spot09_obj/object_spot09_objTex_00FC90" +static const ALIGN_ASSET(2) char object_spot09_objTex_00FC90[] = dobject_spot09_objTex_00FC90; + +#define dobject_spot09_objTex_012090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_012090" +static const ALIGN_ASSET(2) char object_spot09_objTex_012090[] = dobject_spot09_objTex_012090; + +#define dobject_spot09_objTex_011090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_011090" +static const ALIGN_ASSET(2) char object_spot09_objTex_011090[] = dobject_spot09_objTex_011090; + +#define dobject_spot09_objTex_010090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_010090" +static const ALIGN_ASSET(2) char object_spot09_objTex_010090[] = dobject_spot09_objTex_010090; + +#define dobject_spot09_objTex_017890 "__OTR__objects/object_spot09_obj/object_spot09_objTex_017890" +static const ALIGN_ASSET(2) char object_spot09_objTex_017890[] = dobject_spot09_objTex_017890; + +#define dobject_spot09_objTex_015090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_015090" +static const ALIGN_ASSET(2) char object_spot09_objTex_015090[] = dobject_spot09_objTex_015090; + +#define dobject_spot09_objTex_008490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_008490" +static const ALIGN_ASSET(2) char object_spot09_objTex_008490[] = dobject_spot09_objTex_008490; + +#define dobject_spot09_objTex_016090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_016090" +static const ALIGN_ASSET(2) char object_spot09_objTex_016090[] = dobject_spot09_objTex_016090; + +#define dobject_spot09_objTex_009490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_009490" +static const ALIGN_ASSET(2) char object_spot09_objTex_009490[] = dobject_spot09_objTex_009490; + +#define dobject_spot09_objTex_017490 "__OTR__objects/object_spot09_obj/object_spot09_objTex_017490" +static const ALIGN_ASSET(2) char object_spot09_objTex_017490[] = dobject_spot09_objTex_017490; + +#define dobject_spot09_objTex_017090 "__OTR__objects/object_spot09_obj/object_spot09_objTex_017090" +static const ALIGN_ASSET(2) char object_spot09_objTex_017090[] = dobject_spot09_objTex_017090; \ No newline at end of file diff --git a/soh/assets/objects/object_spot11_obj/object_spot11_obj.h b/soh/assets/objects/object_spot11_obj/object_spot11_obj.h index 20484937d..e2a28bbfa 100644 --- a/soh/assets/objects/object_spot11_obj/object_spot11_obj.h +++ b/soh/assets/objects/object_spot11_obj/object_spot11_obj.h @@ -1,37 +1,18 @@ #pragma once -#define dgDesertColossusOasisWaterTex "__OTR__objects/object_spot11_obj/gDesertColossusOasisWaterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusOasisWaterTex[] = dgDesertColossusOasisWaterTex; -#else -static const char gDesertColossusOasisWaterTex[] __attribute__((aligned (2))) = dgDesertColossusOasisWaterTex; -#endif - -#define dgDesertColossusOasisDL "__OTR__objects/object_spot11_obj/gDesertColossusOasisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusOasisDL[] = dgDesertColossusOasisDL; -#else -static const char gDesertColossusOasisDL[] __attribute__((aligned (2))) = dgDesertColossusOasisDL; -#endif - -#define dgDesertColossusBombableWallTex "__OTR__objects/object_spot11_obj/gDesertColossusBombableWallTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusBombableWallTex[] = dgDesertColossusBombableWallTex; -#else -static const char gDesertColossusBombableWallTex[] __attribute__((aligned (2))) = dgDesertColossusBombableWallTex; -#endif - -#define dgDesertColossusBombableWallDL "__OTR__objects/object_spot11_obj/gDesertColossusBombableWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusBombableWallDL[] = dgDesertColossusBombableWallDL; -#else -static const char gDesertColossusBombableWallDL[] __attribute__((aligned (2))) = dgDesertColossusBombableWallDL; -#endif - -#define dgDesertColossusBombableWallCol "__OTR__objects/object_spot11_obj/gDesertColossusBombableWallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusBombableWallCol[] = dgDesertColossusBombableWallCol; -#else -static const char gDesertColossusBombableWallCol[] __attribute__((aligned (2))) = dgDesertColossusBombableWallCol; -#endif - +#include "align_asset_macro.h" + +#define dgDesertColossusOasisWaterTex "__OTR__objects/object_spot11_obj/gDesertColossusOasisWaterTex" +static const ALIGN_ASSET(2) char gDesertColossusOasisWaterTex[] = dgDesertColossusOasisWaterTex; + +#define dgDesertColossusOasisDL "__OTR__objects/object_spot11_obj/gDesertColossusOasisDL" +static const ALIGN_ASSET(2) char gDesertColossusOasisDL[] = dgDesertColossusOasisDL; + +#define dgDesertColossusBombableWallTex "__OTR__objects/object_spot11_obj/gDesertColossusBombableWallTex" +static const ALIGN_ASSET(2) char gDesertColossusBombableWallTex[] = dgDesertColossusBombableWallTex; + +#define dgDesertColossusBombableWallDL "__OTR__objects/object_spot11_obj/gDesertColossusBombableWallDL" +static const ALIGN_ASSET(2) char gDesertColossusBombableWallDL[] = dgDesertColossusBombableWallDL; + +#define dgDesertColossusBombableWallCol "__OTR__objects/object_spot11_obj/gDesertColossusBombableWallCol" +static const ALIGN_ASSET(2) char gDesertColossusBombableWallCol[] = dgDesertColossusBombableWallCol; \ No newline at end of file diff --git a/soh/assets/objects/object_spot12_obj/object_spot12_obj.h b/soh/assets/objects/object_spot12_obj/object_spot12_obj.h index acf6790b5..ad8181a8f 100644 --- a/soh/assets/objects/object_spot12_obj/object_spot12_obj.h +++ b/soh/assets/objects/object_spot12_obj/object_spot12_obj.h @@ -1,44 +1,21 @@ #pragma once -#define dgGerudoFortressWastelandGateDL "__OTR__objects/object_spot12_obj/gGerudoFortressWastelandGateDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoFortressWastelandGateDL[] = dgGerudoFortressWastelandGateDL; -#else -static const char gGerudoFortressWastelandGateDL[] __attribute__((aligned (2))) = dgGerudoFortressWastelandGateDL; -#endif - -#define dgGerudoFortressWastelandGateTex "__OTR__objects/object_spot12_obj/gGerudoFortressWastelandGateTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoFortressWastelandGateTex[] = dgGerudoFortressWastelandGateTex; -#else -static const char gGerudoFortressWastelandGateTex[] __attribute__((aligned (2))) = dgGerudoFortressWastelandGateTex; -#endif - -#define dgGerudoFortressWastelandGateCol "__OTR__objects/object_spot12_obj/gGerudoFortressWastelandGateCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoFortressWastelandGateCol[] = dgGerudoFortressWastelandGateCol; -#else -static const char gGerudoFortressWastelandGateCol[] __attribute__((aligned (2))) = dgGerudoFortressWastelandGateCol; -#endif - -#define dgGerudoFortressGTGShutterDL "__OTR__objects/object_spot12_obj/gGerudoFortressGTGShutterDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoFortressGTGShutterDL[] = dgGerudoFortressGTGShutterDL; -#else -static const char gGerudoFortressGTGShutterDL[] __attribute__((aligned (2))) = dgGerudoFortressGTGShutterDL; -#endif - -#define dgGerudoFortressGTGShutterTex "__OTR__objects/object_spot12_obj/gGerudoFortressGTGShutterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoFortressGTGShutterTex[] = dgGerudoFortressGTGShutterTex; -#else -static const char gGerudoFortressGTGShutterTex[] __attribute__((aligned (2))) = dgGerudoFortressGTGShutterTex; -#endif - -#define dgGerudoFortressGTGShutterCol "__OTR__objects/object_spot12_obj/gGerudoFortressGTGShutterCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoFortressGTGShutterCol[] = dgGerudoFortressGTGShutterCol; -#else -static const char gGerudoFortressGTGShutterCol[] __attribute__((aligned (2))) = dgGerudoFortressGTGShutterCol; -#endif - +#include "align_asset_macro.h" + +#define dgGerudoFortressWastelandGateDL "__OTR__objects/object_spot12_obj/gGerudoFortressWastelandGateDL" +static const ALIGN_ASSET(2) char gGerudoFortressWastelandGateDL[] = dgGerudoFortressWastelandGateDL; + +#define dgGerudoFortressWastelandGateTex "__OTR__objects/object_spot12_obj/gGerudoFortressWastelandGateTex" +static const ALIGN_ASSET(2) char gGerudoFortressWastelandGateTex[] = dgGerudoFortressWastelandGateTex; + +#define dgGerudoFortressWastelandGateCol "__OTR__objects/object_spot12_obj/gGerudoFortressWastelandGateCol" +static const ALIGN_ASSET(2) char gGerudoFortressWastelandGateCol[] = dgGerudoFortressWastelandGateCol; + +#define dgGerudoFortressGTGShutterDL "__OTR__objects/object_spot12_obj/gGerudoFortressGTGShutterDL" +static const ALIGN_ASSET(2) char gGerudoFortressGTGShutterDL[] = dgGerudoFortressGTGShutterDL; + +#define dgGerudoFortressGTGShutterTex "__OTR__objects/object_spot12_obj/gGerudoFortressGTGShutterTex" +static const ALIGN_ASSET(2) char gGerudoFortressGTGShutterTex[] = dgGerudoFortressGTGShutterTex; + +#define dgGerudoFortressGTGShutterCol "__OTR__objects/object_spot12_obj/gGerudoFortressGTGShutterCol" +static const ALIGN_ASSET(2) char gGerudoFortressGTGShutterCol[] = dgGerudoFortressGTGShutterCol; \ No newline at end of file diff --git a/soh/assets/objects/object_spot15_obj/object_spot15_obj.h b/soh/assets/objects/object_spot15_obj/object_spot15_obj.h index 6dcc78a90..fa83e1b51 100644 --- a/soh/assets/objects/object_spot15_obj/object_spot15_obj.h +++ b/soh/assets/objects/object_spot15_obj/object_spot15_obj.h @@ -1,44 +1,21 @@ #pragma once -#define dgLonLonMilkCrateDL "__OTR__objects/object_spot15_obj/gLonLonMilkCrateDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonMilkCrateDL[] = dgLonLonMilkCrateDL; -#else -static const char gLonLonMilkCrateDL[] __attribute__((aligned (2))) = dgLonLonMilkCrateDL; -#endif - -#define dgLonLonMilkCrateTex "__OTR__objects/object_spot15_obj/gLonLonMilkCrateTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonMilkCrateTex[] = dgLonLonMilkCrateTex; -#else -static const char gLonLonMilkCrateTex[] __attribute__((aligned (2))) = dgLonLonMilkCrateTex; -#endif - -#define dgLonLonMilkCrateCol "__OTR__objects/object_spot15_obj/gLonLonMilkCrateCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonMilkCrateCol[] = dgLonLonMilkCrateCol; -#else -static const char gLonLonMilkCrateCol[] __attribute__((aligned (2))) = dgLonLonMilkCrateCol; -#endif - -#define dgLonLonCorralFenceDL "__OTR__objects/object_spot15_obj/gLonLonCorralFenceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonCorralFenceDL[] = dgLonLonCorralFenceDL; -#else -static const char gLonLonCorralFenceDL[] __attribute__((aligned (2))) = dgLonLonCorralFenceDL; -#endif - -#define dgLonLonCorralFenceTex "__OTR__objects/object_spot15_obj/gLonLonCorralFenceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonCorralFenceTex[] = dgLonLonCorralFenceTex; -#else -static const char gLonLonCorralFenceTex[] __attribute__((aligned (2))) = dgLonLonCorralFenceTex; -#endif - -#define dgLonLonCorralFenceCol "__OTR__objects/object_spot15_obj/gLonLonCorralFenceCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonCorralFenceCol[] = dgLonLonCorralFenceCol; -#else -static const char gLonLonCorralFenceCol[] __attribute__((aligned (2))) = dgLonLonCorralFenceCol; -#endif - +#include "align_asset_macro.h" + +#define dgLonLonMilkCrateDL "__OTR__objects/object_spot15_obj/gLonLonMilkCrateDL" +static const ALIGN_ASSET(2) char gLonLonMilkCrateDL[] = dgLonLonMilkCrateDL; + +#define dgLonLonMilkCrateTex "__OTR__objects/object_spot15_obj/gLonLonMilkCrateTex" +static const ALIGN_ASSET(2) char gLonLonMilkCrateTex[] = dgLonLonMilkCrateTex; + +#define dgLonLonMilkCrateCol "__OTR__objects/object_spot15_obj/gLonLonMilkCrateCol" +static const ALIGN_ASSET(2) char gLonLonMilkCrateCol[] = dgLonLonMilkCrateCol; + +#define dgLonLonCorralFenceDL "__OTR__objects/object_spot15_obj/gLonLonCorralFenceDL" +static const ALIGN_ASSET(2) char gLonLonCorralFenceDL[] = dgLonLonCorralFenceDL; + +#define dgLonLonCorralFenceTex "__OTR__objects/object_spot15_obj/gLonLonCorralFenceTex" +static const ALIGN_ASSET(2) char gLonLonCorralFenceTex[] = dgLonLonCorralFenceTex; + +#define dgLonLonCorralFenceCol "__OTR__objects/object_spot15_obj/gLonLonCorralFenceCol" +static const ALIGN_ASSET(2) char gLonLonCorralFenceCol[] = dgLonLonCorralFenceCol; \ No newline at end of file diff --git a/soh/assets/objects/object_spot16_obj/object_spot16_obj.h b/soh/assets/objects/object_spot16_obj/object_spot16_obj.h index 203935fbc..729557870 100644 --- a/soh/assets/objects/object_spot16_obj/object_spot16_obj.h +++ b/soh/assets/objects/object_spot16_obj/object_spot16_obj.h @@ -1,44 +1,21 @@ #pragma once -#define dgDodongosCavernRockDL "__OTR__objects/object_spot16_obj/gDodongosCavernRockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRockDL[] = dgDodongosCavernRockDL; -#else -static const char gDodongosCavernRockDL[] __attribute__((aligned (2))) = dgDodongosCavernRockDL; -#endif - -#define dgDodongosCavernRock2DL "__OTR__objects/object_spot16_obj/gDodongosCavernRock2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRock2DL[] = dgDodongosCavernRock2DL; -#else -static const char gDodongosCavernRock2DL[] __attribute__((aligned (2))) = dgDodongosCavernRock2DL; -#endif - -#define dgDodongosCavernRock3DL "__OTR__objects/object_spot16_obj/gDodongosCavernRock3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRock3DL[] = dgDodongosCavernRock3DL; -#else -static const char gDodongosCavernRock3DL[] __attribute__((aligned (2))) = dgDodongosCavernRock3DL; -#endif - -#define dgDeathMountainRingDL "__OTR__objects/object_spot16_obj/gDeathMountainRingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainRingDL[] = dgDeathMountainRingDL; -#else -static const char gDeathMountainRingDL[] __attribute__((aligned (2))) = dgDeathMountainRingDL; -#endif - -#define dgDodongosCavernRockTex "__OTR__objects/object_spot16_obj/gDodongosCavernRockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRockTex[] = dgDodongosCavernRockTex; -#else -static const char gDodongosCavernRockTex[] __attribute__((aligned (2))) = dgDodongosCavernRockTex; -#endif - -#define dgDeathMountainRingTex "__OTR__objects/object_spot16_obj/gDeathMountainRingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainRingTex[] = dgDeathMountainRingTex; -#else -static const char gDeathMountainRingTex[] __attribute__((aligned (2))) = dgDeathMountainRingTex; -#endif - +#include "align_asset_macro.h" + +#define dgDodongosCavernRockDL "__OTR__objects/object_spot16_obj/gDodongosCavernRockDL" +static const ALIGN_ASSET(2) char gDodongosCavernRockDL[] = dgDodongosCavernRockDL; + +#define dgDodongosCavernRock2DL "__OTR__objects/object_spot16_obj/gDodongosCavernRock2DL" +static const ALIGN_ASSET(2) char gDodongosCavernRock2DL[] = dgDodongosCavernRock2DL; + +#define dgDodongosCavernRock3DL "__OTR__objects/object_spot16_obj/gDodongosCavernRock3DL" +static const ALIGN_ASSET(2) char gDodongosCavernRock3DL[] = dgDodongosCavernRock3DL; + +#define dgDeathMountainRingDL "__OTR__objects/object_spot16_obj/gDeathMountainRingDL" +static const ALIGN_ASSET(2) char gDeathMountainRingDL[] = dgDeathMountainRingDL; + +#define dgDodongosCavernRockTex "__OTR__objects/object_spot16_obj/gDodongosCavernRockTex" +static const ALIGN_ASSET(2) char gDodongosCavernRockTex[] = dgDodongosCavernRockTex; + +#define dgDeathMountainRingTex "__OTR__objects/object_spot16_obj/gDeathMountainRingTex" +static const ALIGN_ASSET(2) char gDeathMountainRingTex[] = dgDeathMountainRingTex; \ No newline at end of file diff --git a/soh/assets/objects/object_spot17_obj/object_spot17_obj.h b/soh/assets/objects/object_spot17_obj/object_spot17_obj.h index 7be1a06a5..ee37dd713 100644 --- a/soh/assets/objects/object_spot17_obj/object_spot17_obj.h +++ b/soh/assets/objects/object_spot17_obj/object_spot17_obj.h @@ -1,58 +1,27 @@ #pragma once -#define dgCraterRockTLUT "__OTR__objects/object_spot17_obj/gCraterRockTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCraterRockTLUT[] = dgCraterRockTLUT; -#else -static const char gCraterRockTLUT[] __attribute__((aligned (2))) = dgCraterRockTLUT; -#endif - -#define dgCraterRockTex "__OTR__objects/object_spot17_obj/gCraterRockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCraterRockTex[] = dgCraterRockTex; -#else -static const char gCraterRockTex[] __attribute__((aligned (2))) = dgCraterRockTex; -#endif - -#define dgCraterBombableWallDL "__OTR__objects/object_spot17_obj/gCraterBombableWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCraterBombableWallDL[] = dgCraterBombableWallDL; -#else -static const char gCraterBombableWallDL[] __attribute__((aligned (2))) = dgCraterBombableWallDL; -#endif - -#define dgCraterBombableWallCracksDL "__OTR__objects/object_spot17_obj/gCraterBombableWallCracksDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCraterBombableWallCracksDL[] = dgCraterBombableWallCracksDL; -#else -static const char gCraterBombableWallCracksDL[] __attribute__((aligned (2))) = dgCraterBombableWallCracksDL; -#endif - -#define dgCraterBombableWallCol "__OTR__objects/object_spot17_obj/gCraterBombableWallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gCraterBombableWallCol[] = dgCraterBombableWallCol; -#else -static const char gCraterBombableWallCol[] __attribute__((aligned (2))) = dgCraterBombableWallCol; -#endif - -#define dgCraterSmokeConeDL "__OTR__objects/object_spot17_obj/gCraterSmokeConeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCraterSmokeConeDL[] = dgCraterSmokeConeDL; -#else -static const char gCraterSmokeConeDL[] __attribute__((aligned (2))) = dgCraterSmokeConeDL; -#endif - -#define dgCraterSmokeConeTex "__OTR__objects/object_spot17_obj/gCraterSmokeConeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCraterSmokeConeTex[] = dgCraterSmokeConeTex; -#else -static const char gCraterSmokeConeTex[] __attribute__((aligned (2))) = dgCraterSmokeConeTex; -#endif - -#define dgCraterBombableWallCracksTex "__OTR__objects/object_spot17_obj/gCraterBombableWallCracksTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCraterBombableWallCracksTex[] = dgCraterBombableWallCracksTex; -#else -static const char gCraterBombableWallCracksTex[] __attribute__((aligned (2))) = dgCraterBombableWallCracksTex; -#endif - +#include "align_asset_macro.h" + +#define dgCraterRockTLUT "__OTR__objects/object_spot17_obj/gCraterRockTLUT" +static const ALIGN_ASSET(2) char gCraterRockTLUT[] = dgCraterRockTLUT; + +#define dgCraterRockTex "__OTR__objects/object_spot17_obj/gCraterRockTex" +static const ALIGN_ASSET(2) char gCraterRockTex[] = dgCraterRockTex; + +#define dgCraterBombableWallDL "__OTR__objects/object_spot17_obj/gCraterBombableWallDL" +static const ALIGN_ASSET(2) char gCraterBombableWallDL[] = dgCraterBombableWallDL; + +#define dgCraterBombableWallCracksDL "__OTR__objects/object_spot17_obj/gCraterBombableWallCracksDL" +static const ALIGN_ASSET(2) char gCraterBombableWallCracksDL[] = dgCraterBombableWallCracksDL; + +#define dgCraterBombableWallCol "__OTR__objects/object_spot17_obj/gCraterBombableWallCol" +static const ALIGN_ASSET(2) char gCraterBombableWallCol[] = dgCraterBombableWallCol; + +#define dgCraterSmokeConeDL "__OTR__objects/object_spot17_obj/gCraterSmokeConeDL" +static const ALIGN_ASSET(2) char gCraterSmokeConeDL[] = dgCraterSmokeConeDL; + +#define dgCraterSmokeConeTex "__OTR__objects/object_spot17_obj/gCraterSmokeConeTex" +static const ALIGN_ASSET(2) char gCraterSmokeConeTex[] = dgCraterSmokeConeTex; + +#define dgCraterBombableWallCracksTex "__OTR__objects/object_spot17_obj/gCraterBombableWallCracksTex" +static const ALIGN_ASSET(2) char gCraterBombableWallCracksTex[] = dgCraterBombableWallCracksTex; \ No newline at end of file diff --git a/soh/assets/objects/object_spot18_obj/object_spot18_obj.h b/soh/assets/objects/object_spot18_obj/object_spot18_obj.h index 30af14991..62d0a97f9 100644 --- a/soh/assets/objects/object_spot18_obj/object_spot18_obj.h +++ b/soh/assets/objects/object_spot18_obj/object_spot18_obj.h @@ -1,177 +1,78 @@ #pragma once -#define dgGoronCityVaseLidDL "__OTR__objects/object_spot18_obj/gGoronCityVaseLidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseLidDL[] = dgGoronCityVaseLidDL; -#else -static const char gGoronCityVaseLidDL[] __attribute__((aligned (2))) = dgGoronCityVaseLidDL; -#endif - -#define dgGoronCityDoorDL "__OTR__objects/object_spot18_obj/gGoronCityDoorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityDoorDL[] = dgGoronCityDoorDL; -#else -static const char gGoronCityDoorDL[] __attribute__((aligned (2))) = dgGoronCityDoorDL; -#endif - -#define dgGoronCityVaseDL "__OTR__objects/object_spot18_obj/gGoronCityVaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseDL[] = dgGoronCityVaseDL; -#else -static const char gGoronCityVaseDL[] __attribute__((aligned (2))) = dgGoronCityVaseDL; -#endif - -#define dgGoronCityStatueSpearDL "__OTR__objects/object_spot18_obj/gGoronCityStatueSpearDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatueSpearDL[] = dgGoronCityStatueSpearDL; -#else -static const char gGoronCityStatueSpearDL[] __attribute__((aligned (2))) = dgGoronCityStatueSpearDL; -#endif - -#define dgGoronCityStatueDL "__OTR__objects/object_spot18_obj/gGoronCityStatueDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatueDL[] = dgGoronCityStatueDL; -#else -static const char gGoronCityStatueDL[] __attribute__((aligned (2))) = dgGoronCityStatueDL; -#endif - -#define dgGoronCityVaseTLUT "__OTR__objects/object_spot18_obj/gGoronCityVaseTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseTLUT[] = dgGoronCityVaseTLUT; -#else -static const char gGoronCityVaseTLUT[] __attribute__((aligned (2))) = dgGoronCityVaseTLUT; -#endif - -#define dgGoronCityVaseTex_580 "__OTR__objects/object_spot18_obj/gGoronCityVaseTex_580" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseTex_580[] = dgGoronCityVaseTex_580; -#else -static const char gGoronCityVaseTex_580[] __attribute__((aligned (2))) = dgGoronCityVaseTex_580; -#endif - -#define dgGoronCityVaseTex_D80 "__OTR__objects/object_spot18_obj/gGoronCityVaseTex_D80" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseTex_D80[] = dgGoronCityVaseTex_D80; -#else -static const char gGoronCityVaseTex_D80[] __attribute__((aligned (2))) = dgGoronCityVaseTex_D80; -#endif - -#define dgGoronCitySpearLeafTex "__OTR__objects/object_spot18_obj/gGoronCitySpearLeafTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCitySpearLeafTex[] = dgGoronCitySpearLeafTex; -#else -static const char gGoronCitySpearLeafTex[] __attribute__((aligned (2))) = dgGoronCitySpearLeafTex; -#endif - -#define dgGoronCitySpearTipTex "__OTR__objects/object_spot18_obj/gGoronCitySpearTipTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCitySpearTipTex[] = dgGoronCitySpearTipTex; -#else -static const char gGoronCitySpearTipTex[] __attribute__((aligned (2))) = dgGoronCitySpearTipTex; -#endif - -#define dgGoronCitySpearHandleTex "__OTR__objects/object_spot18_obj/gGoronCitySpearHandleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCitySpearHandleTex[] = dgGoronCitySpearHandleTex; -#else -static const char gGoronCitySpearHandleTex[] __attribute__((aligned (2))) = dgGoronCitySpearHandleTex; -#endif - -#define dgGoronCityStatuePattern1Tex "__OTR__objects/object_spot18_obj/gGoronCityStatuePattern1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatuePattern1Tex[] = dgGoronCityStatuePattern1Tex; -#else -static const char gGoronCityStatuePattern1Tex[] __attribute__((aligned (2))) = dgGoronCityStatuePattern1Tex; -#endif - -#define dgGoronCityStatuePattern2Tex "__OTR__objects/object_spot18_obj/gGoronCityStatuePattern2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatuePattern2Tex[] = dgGoronCityStatuePattern2Tex; -#else -static const char gGoronCityStatuePattern2Tex[] __attribute__((aligned (2))) = dgGoronCityStatuePattern2Tex; -#endif - -#define dgGoronCityStatueTex_7010 "__OTR__objects/object_spot18_obj/gGoronCityStatueTex_7010" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatueTex_7010[] = dgGoronCityStatueTex_7010; -#else -static const char gGoronCityStatueTex_7010[] __attribute__((aligned (2))) = dgGoronCityStatueTex_7010; -#endif - -#define dgGoronCityStatueAngryFaceTex "__OTR__objects/object_spot18_obj/gGoronCityStatueAngryFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatueAngryFaceTex[] = dgGoronCityStatueAngryFaceTex; -#else -static const char gGoronCityStatueAngryFaceTex[] __attribute__((aligned (2))) = dgGoronCityStatueAngryFaceTex; -#endif - -#define dgGoronCityStatueNeutralFaceTex "__OTR__objects/object_spot18_obj/gGoronCityStatueNeutralFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatueNeutralFaceTex[] = dgGoronCityStatueNeutralFaceTex; -#else -static const char gGoronCityStatueNeutralFaceTex[] __attribute__((aligned (2))) = dgGoronCityStatueNeutralFaceTex; -#endif - -#define dgGoronCityStatueHappyFaceTex "__OTR__objects/object_spot18_obj/gGoronCityStatueHappyFaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatueHappyFaceTex[] = dgGoronCityStatueHappyFaceTex; -#else -static const char gGoronCityStatueHappyFaceTex[] __attribute__((aligned (2))) = dgGoronCityStatueHappyFaceTex; -#endif - -#define dgGoronCityVaseLidTex "__OTR__objects/object_spot18_obj/gGoronCityVaseLidTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseLidTex[] = dgGoronCityVaseLidTex; -#else -static const char gGoronCityVaseLidTex[] __attribute__((aligned (2))) = dgGoronCityVaseLidTex; -#endif - -#define dgGoronCityVaseLidHandleTex "__OTR__objects/object_spot18_obj/gGoronCityVaseLidHandleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseLidHandleTex[] = dgGoronCityVaseLidHandleTex; -#else -static const char gGoronCityVaseLidHandleTex[] __attribute__((aligned (2))) = dgGoronCityVaseLidHandleTex; -#endif - -#define dgGoronCityDoorTex "__OTR__objects/object_spot18_obj/gGoronCityDoorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityDoorTex[] = dgGoronCityDoorTex; -#else -static const char gGoronCityDoorTex[] __attribute__((aligned (2))) = dgGoronCityDoorTex; -#endif - -#define dgGoronCityVaseLidCol "__OTR__objects/object_spot18_obj/gGoronCityVaseLidCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseLidCol[] = dgGoronCityVaseLidCol; -#else -static const char gGoronCityVaseLidCol[] __attribute__((aligned (2))) = dgGoronCityVaseLidCol; -#endif - -#define dgGoronCityDoorCol "__OTR__objects/object_spot18_obj/gGoronCityDoorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityDoorCol[] = dgGoronCityDoorCol; -#else -static const char gGoronCityDoorCol[] __attribute__((aligned (2))) = dgGoronCityDoorCol; -#endif - -#define dgGoronCityVaseCol "__OTR__objects/object_spot18_obj/gGoronCityVaseCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityVaseCol[] = dgGoronCityVaseCol; -#else -static const char gGoronCityVaseCol[] __attribute__((aligned (2))) = dgGoronCityVaseCol; -#endif - -#define dgGoronCityStatueSpearCol "__OTR__objects/object_spot18_obj/gGoronCityStatueSpearCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatueSpearCol[] = dgGoronCityStatueSpearCol; -#else -static const char gGoronCityStatueSpearCol[] __attribute__((aligned (2))) = dgGoronCityStatueSpearCol; -#endif - -#define dgGoronCityStatueCol "__OTR__objects/object_spot18_obj/gGoronCityStatueCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityStatueCol[] = dgGoronCityStatueCol; -#else -static const char gGoronCityStatueCol[] __attribute__((aligned (2))) = dgGoronCityStatueCol; -#endif - +#include "align_asset_macro.h" + +#define dgGoronCityVaseLidDL "__OTR__objects/object_spot18_obj/gGoronCityVaseLidDL" +static const ALIGN_ASSET(2) char gGoronCityVaseLidDL[] = dgGoronCityVaseLidDL; + +#define dgGoronCityDoorDL "__OTR__objects/object_spot18_obj/gGoronCityDoorDL" +static const ALIGN_ASSET(2) char gGoronCityDoorDL[] = dgGoronCityDoorDL; + +#define dgGoronCityVaseDL "__OTR__objects/object_spot18_obj/gGoronCityVaseDL" +static const ALIGN_ASSET(2) char gGoronCityVaseDL[] = dgGoronCityVaseDL; + +#define dgGoronCityStatueSpearDL "__OTR__objects/object_spot18_obj/gGoronCityStatueSpearDL" +static const ALIGN_ASSET(2) char gGoronCityStatueSpearDL[] = dgGoronCityStatueSpearDL; + +#define dgGoronCityStatueDL "__OTR__objects/object_spot18_obj/gGoronCityStatueDL" +static const ALIGN_ASSET(2) char gGoronCityStatueDL[] = dgGoronCityStatueDL; + +#define dgGoronCityVaseTLUT "__OTR__objects/object_spot18_obj/gGoronCityVaseTLUT" +static const ALIGN_ASSET(2) char gGoronCityVaseTLUT[] = dgGoronCityVaseTLUT; + +#define dgGoronCityVaseTex_580 "__OTR__objects/object_spot18_obj/gGoronCityVaseTex_580" +static const ALIGN_ASSET(2) char gGoronCityVaseTex_580[] = dgGoronCityVaseTex_580; + +#define dgGoronCityVaseTex_D80 "__OTR__objects/object_spot18_obj/gGoronCityVaseTex_D80" +static const ALIGN_ASSET(2) char gGoronCityVaseTex_D80[] = dgGoronCityVaseTex_D80; + +#define dgGoronCitySpearLeafTex "__OTR__objects/object_spot18_obj/gGoronCitySpearLeafTex" +static const ALIGN_ASSET(2) char gGoronCitySpearLeafTex[] = dgGoronCitySpearLeafTex; + +#define dgGoronCitySpearTipTex "__OTR__objects/object_spot18_obj/gGoronCitySpearTipTex" +static const ALIGN_ASSET(2) char gGoronCitySpearTipTex[] = dgGoronCitySpearTipTex; + +#define dgGoronCitySpearHandleTex "__OTR__objects/object_spot18_obj/gGoronCitySpearHandleTex" +static const ALIGN_ASSET(2) char gGoronCitySpearHandleTex[] = dgGoronCitySpearHandleTex; + +#define dgGoronCityStatuePattern1Tex "__OTR__objects/object_spot18_obj/gGoronCityStatuePattern1Tex" +static const ALIGN_ASSET(2) char gGoronCityStatuePattern1Tex[] = dgGoronCityStatuePattern1Tex; + +#define dgGoronCityStatuePattern2Tex "__OTR__objects/object_spot18_obj/gGoronCityStatuePattern2Tex" +static const ALIGN_ASSET(2) char gGoronCityStatuePattern2Tex[] = dgGoronCityStatuePattern2Tex; + +#define dgGoronCityStatueTex_7010 "__OTR__objects/object_spot18_obj/gGoronCityStatueTex_7010" +static const ALIGN_ASSET(2) char gGoronCityStatueTex_7010[] = dgGoronCityStatueTex_7010; + +#define dgGoronCityStatueAngryFaceTex "__OTR__objects/object_spot18_obj/gGoronCityStatueAngryFaceTex" +static const ALIGN_ASSET(2) char gGoronCityStatueAngryFaceTex[] = dgGoronCityStatueAngryFaceTex; + +#define dgGoronCityStatueNeutralFaceTex "__OTR__objects/object_spot18_obj/gGoronCityStatueNeutralFaceTex" +static const ALIGN_ASSET(2) char gGoronCityStatueNeutralFaceTex[] = dgGoronCityStatueNeutralFaceTex; + +#define dgGoronCityStatueHappyFaceTex "__OTR__objects/object_spot18_obj/gGoronCityStatueHappyFaceTex" +static const ALIGN_ASSET(2) char gGoronCityStatueHappyFaceTex[] = dgGoronCityStatueHappyFaceTex; + +#define dgGoronCityVaseLidTex "__OTR__objects/object_spot18_obj/gGoronCityVaseLidTex" +static const ALIGN_ASSET(2) char gGoronCityVaseLidTex[] = dgGoronCityVaseLidTex; + +#define dgGoronCityVaseLidHandleTex "__OTR__objects/object_spot18_obj/gGoronCityVaseLidHandleTex" +static const ALIGN_ASSET(2) char gGoronCityVaseLidHandleTex[] = dgGoronCityVaseLidHandleTex; + +#define dgGoronCityDoorTex "__OTR__objects/object_spot18_obj/gGoronCityDoorTex" +static const ALIGN_ASSET(2) char gGoronCityDoorTex[] = dgGoronCityDoorTex; + +#define dgGoronCityVaseLidCol "__OTR__objects/object_spot18_obj/gGoronCityVaseLidCol" +static const ALIGN_ASSET(2) char gGoronCityVaseLidCol[] = dgGoronCityVaseLidCol; + +#define dgGoronCityDoorCol "__OTR__objects/object_spot18_obj/gGoronCityDoorCol" +static const ALIGN_ASSET(2) char gGoronCityDoorCol[] = dgGoronCityDoorCol; + +#define dgGoronCityVaseCol "__OTR__objects/object_spot18_obj/gGoronCityVaseCol" +static const ALIGN_ASSET(2) char gGoronCityVaseCol[] = dgGoronCityVaseCol; + +#define dgGoronCityStatueSpearCol "__OTR__objects/object_spot18_obj/gGoronCityStatueSpearCol" +static const ALIGN_ASSET(2) char gGoronCityStatueSpearCol[] = dgGoronCityStatueSpearCol; + +#define dgGoronCityStatueCol "__OTR__objects/object_spot18_obj/gGoronCityStatueCol" +static const ALIGN_ASSET(2) char gGoronCityStatueCol[] = dgGoronCityStatueCol; \ No newline at end of file diff --git a/soh/assets/objects/object_ssh/object_ssh.h b/soh/assets/objects/object_ssh/object_ssh.h index 93ea7651b..457301745 100644 --- a/soh/assets/objects/object_ssh/object_ssh.h +++ b/soh/assets/objects/object_ssh/object_ssh.h @@ -1,198 +1,87 @@ #pragma once -#define dobject_ssh_Anim_000304 "__OTR__objects/object_ssh/object_ssh_Anim_000304" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Anim_000304[] = dobject_ssh_Anim_000304; -#else -static const char object_ssh_Anim_000304[] __attribute__((aligned (2))) = dobject_ssh_Anim_000304; -#endif - -#define dobject_ssh_TLUT_000320 "__OTR__objects/object_ssh/object_ssh_TLUT_000320" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_TLUT_000320[] = dobject_ssh_TLUT_000320; -#else -static const char object_ssh_TLUT_000320[] __attribute__((aligned (2))) = dobject_ssh_TLUT_000320; -#endif - -#define dobject_ssh_Tex_000520 "__OTR__objects/object_ssh/object_ssh_Tex_000520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_000520[] = dobject_ssh_Tex_000520; -#else -static const char object_ssh_Tex_000520[] __attribute__((aligned (2))) = dobject_ssh_Tex_000520; -#endif - -#define dobject_ssh_Tex_000560 "__OTR__objects/object_ssh/object_ssh_Tex_000560" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_000560[] = dobject_ssh_Tex_000560; -#else -static const char object_ssh_Tex_000560[] __attribute__((aligned (2))) = dobject_ssh_Tex_000560; -#endif - -#define dobject_ssh_Tex_0005E0 "__OTR__objects/object_ssh/object_ssh_Tex_0005E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_0005E0[] = dobject_ssh_Tex_0005E0; -#else -static const char object_ssh_Tex_0005E0[] __attribute__((aligned (2))) = dobject_ssh_Tex_0005E0; -#endif - -#define dobject_ssh_Tex_000620 "__OTR__objects/object_ssh/object_ssh_Tex_000620" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_000620[] = dobject_ssh_Tex_000620; -#else -static const char object_ssh_Tex_000620[] __attribute__((aligned (2))) = dobject_ssh_Tex_000620; -#endif - -#define dobject_ssh_Tex_000720 "__OTR__objects/object_ssh/object_ssh_Tex_000720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_000720[] = dobject_ssh_Tex_000720; -#else -static const char object_ssh_Tex_000720[] __attribute__((aligned (2))) = dobject_ssh_Tex_000720; -#endif - -#define dobject_ssh_Tex_0007A0 "__OTR__objects/object_ssh/object_ssh_Tex_0007A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_0007A0[] = dobject_ssh_Tex_0007A0; -#else -static const char object_ssh_Tex_0007A0[] __attribute__((aligned (2))) = dobject_ssh_Tex_0007A0; -#endif - -#define dobject_ssh_Tex_0007E0 "__OTR__objects/object_ssh/object_ssh_Tex_0007E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_0007E0[] = dobject_ssh_Tex_0007E0; -#else -static const char object_ssh_Tex_0007E0[] __attribute__((aligned (2))) = dobject_ssh_Tex_0007E0; -#endif - -#define dobject_ssh_Tex_000BE0 "__OTR__objects/object_ssh/object_ssh_Tex_000BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_000BE0[] = dobject_ssh_Tex_000BE0; -#else -static const char object_ssh_Tex_000BE0[] __attribute__((aligned (2))) = dobject_ssh_Tex_000BE0; -#endif - -#define dobject_ssh_Tex_000C60 "__OTR__objects/object_ssh/object_ssh_Tex_000C60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_000C60[] = dobject_ssh_Tex_000C60; -#else -static const char object_ssh_Tex_000C60[] __attribute__((aligned (2))) = dobject_ssh_Tex_000C60; -#endif - -#define dobject_ssh_Tex_001060 "__OTR__objects/object_ssh/object_ssh_Tex_001060" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Tex_001060[] = dobject_ssh_Tex_001060; -#else -static const char object_ssh_Tex_001060[] __attribute__((aligned (2))) = dobject_ssh_Tex_001060; -#endif - -#define dobject_ssh_DL_003CD0 "__OTR__objects/object_ssh/object_ssh_DL_003CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_003CD0[] = dobject_ssh_DL_003CD0; -#else -static const char object_ssh_DL_003CD0[] __attribute__((aligned (2))) = dobject_ssh_DL_003CD0; -#endif - -#define dobject_ssh_DL_004080 "__OTR__objects/object_ssh/object_ssh_DL_004080" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004080[] = dobject_ssh_DL_004080; -#else -static const char object_ssh_DL_004080[] __attribute__((aligned (2))) = dobject_ssh_DL_004080; -#endif - -#define dobject_ssh_DL_004510 "__OTR__objects/object_ssh/object_ssh_DL_004510" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004510[] = dobject_ssh_DL_004510; -#else -static const char object_ssh_DL_004510[] __attribute__((aligned (2))) = dobject_ssh_DL_004510; -#endif - -#define dobject_ssh_DL_0046C0 "__OTR__objects/object_ssh/object_ssh_DL_0046C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_0046C0[] = dobject_ssh_DL_0046C0; -#else -static const char object_ssh_DL_0046C0[] __attribute__((aligned (2))) = dobject_ssh_DL_0046C0; -#endif - -#define dobject_ssh_DL_004878 "__OTR__objects/object_ssh/object_ssh_DL_004878" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004878[] = dobject_ssh_DL_004878; -#else -static const char object_ssh_DL_004878[] __attribute__((aligned (2))) = dobject_ssh_DL_004878; -#endif - -#define dobject_ssh_DL_004940 "__OTR__objects/object_ssh/object_ssh_DL_004940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004940[] = dobject_ssh_DL_004940; -#else -static const char object_ssh_DL_004940[] __attribute__((aligned (2))) = dobject_ssh_DL_004940; -#endif - -#define dobject_ssh_DL_004A08 "__OTR__objects/object_ssh/object_ssh_DL_004A08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004A08[] = dobject_ssh_DL_004A08; -#else -static const char object_ssh_DL_004A08[] __attribute__((aligned (2))) = dobject_ssh_DL_004A08; -#endif - -#define dobject_ssh_DL_004AD0 "__OTR__objects/object_ssh/object_ssh_DL_004AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004AD0[] = dobject_ssh_DL_004AD0; -#else -static const char object_ssh_DL_004AD0[] __attribute__((aligned (2))) = dobject_ssh_DL_004AD0; -#endif - -#define dobject_ssh_DL_004B98 "__OTR__objects/object_ssh/object_ssh_DL_004B98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004B98[] = dobject_ssh_DL_004B98; -#else -static const char object_ssh_DL_004B98[] __attribute__((aligned (2))) = dobject_ssh_DL_004B98; -#endif - -#define dobject_ssh_DL_004C60 "__OTR__objects/object_ssh/object_ssh_DL_004C60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004C60[] = dobject_ssh_DL_004C60; -#else -static const char object_ssh_DL_004C60[] __attribute__((aligned (2))) = dobject_ssh_DL_004C60; -#endif - -#define dobject_ssh_DL_004D28 "__OTR__objects/object_ssh/object_ssh_DL_004D28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004D28[] = dobject_ssh_DL_004D28; -#else -static const char object_ssh_DL_004D28[] __attribute__((aligned (2))) = dobject_ssh_DL_004D28; -#endif - -#define dobject_ssh_DL_004DE8 "__OTR__objects/object_ssh/object_ssh_DL_004DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_004DE8[] = dobject_ssh_DL_004DE8; -#else -static const char object_ssh_DL_004DE8[] __attribute__((aligned (2))) = dobject_ssh_DL_004DE8; -#endif - -#define dobject_ssh_DL_005048 "__OTR__objects/object_ssh/object_ssh_DL_005048" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_DL_005048[] = dobject_ssh_DL_005048; -#else -static const char object_ssh_DL_005048[] __attribute__((aligned (2))) = dobject_ssh_DL_005048; -#endif - -#define dobject_ssh_Skel_0052E0 "__OTR__objects/object_ssh/object_ssh_Skel_0052E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Skel_0052E0[] = dobject_ssh_Skel_0052E0; -#else -static const char object_ssh_Skel_0052E0[] __attribute__((aligned (2))) = dobject_ssh_Skel_0052E0; -#endif - -#define dobject_ssh_Anim_0055F8 "__OTR__objects/object_ssh/object_ssh_Anim_0055F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Anim_0055F8[] = dobject_ssh_Anim_0055F8; -#else -static const char object_ssh_Anim_0055F8[] __attribute__((aligned (2))) = dobject_ssh_Anim_0055F8; -#endif - -#define dobject_ssh_Anim_005BE8 "__OTR__objects/object_ssh/object_ssh_Anim_005BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ssh_Anim_005BE8[] = dobject_ssh_Anim_005BE8; -#else -static const char object_ssh_Anim_005BE8[] __attribute__((aligned (2))) = dobject_ssh_Anim_005BE8; -#endif - +#include "align_asset_macro.h" + +#define dobject_ssh_Anim_000304 "__OTR__objects/object_ssh/object_ssh_Anim_000304" +static const ALIGN_ASSET(2) char object_ssh_Anim_000304[] = dobject_ssh_Anim_000304; + +#define dobject_ssh_TLUT_000320 "__OTR__objects/object_ssh/object_ssh_TLUT_000320" +static const ALIGN_ASSET(2) char object_ssh_TLUT_000320[] = dobject_ssh_TLUT_000320; + +#define dobject_ssh_Tex_000520 "__OTR__objects/object_ssh/object_ssh_Tex_000520" +static const ALIGN_ASSET(2) char object_ssh_Tex_000520[] = dobject_ssh_Tex_000520; + +#define dobject_ssh_Tex_000560 "__OTR__objects/object_ssh/object_ssh_Tex_000560" +static const ALIGN_ASSET(2) char object_ssh_Tex_000560[] = dobject_ssh_Tex_000560; + +#define dobject_ssh_Tex_0005E0 "__OTR__objects/object_ssh/object_ssh_Tex_0005E0" +static const ALIGN_ASSET(2) char object_ssh_Tex_0005E0[] = dobject_ssh_Tex_0005E0; + +#define dobject_ssh_Tex_000620 "__OTR__objects/object_ssh/object_ssh_Tex_000620" +static const ALIGN_ASSET(2) char object_ssh_Tex_000620[] = dobject_ssh_Tex_000620; + +#define dobject_ssh_Tex_000720 "__OTR__objects/object_ssh/object_ssh_Tex_000720" +static const ALIGN_ASSET(2) char object_ssh_Tex_000720[] = dobject_ssh_Tex_000720; + +#define dobject_ssh_Tex_0007A0 "__OTR__objects/object_ssh/object_ssh_Tex_0007A0" +static const ALIGN_ASSET(2) char object_ssh_Tex_0007A0[] = dobject_ssh_Tex_0007A0; + +#define dobject_ssh_Tex_0007E0 "__OTR__objects/object_ssh/object_ssh_Tex_0007E0" +static const ALIGN_ASSET(2) char object_ssh_Tex_0007E0[] = dobject_ssh_Tex_0007E0; + +#define dobject_ssh_Tex_000BE0 "__OTR__objects/object_ssh/object_ssh_Tex_000BE0" +static const ALIGN_ASSET(2) char object_ssh_Tex_000BE0[] = dobject_ssh_Tex_000BE0; + +#define dobject_ssh_Tex_000C60 "__OTR__objects/object_ssh/object_ssh_Tex_000C60" +static const ALIGN_ASSET(2) char object_ssh_Tex_000C60[] = dobject_ssh_Tex_000C60; + +#define dobject_ssh_Tex_001060 "__OTR__objects/object_ssh/object_ssh_Tex_001060" +static const ALIGN_ASSET(2) char object_ssh_Tex_001060[] = dobject_ssh_Tex_001060; + +#define dobject_ssh_DL_003CD0 "__OTR__objects/object_ssh/object_ssh_DL_003CD0" +static const ALIGN_ASSET(2) char object_ssh_DL_003CD0[] = dobject_ssh_DL_003CD0; + +#define dobject_ssh_DL_004080 "__OTR__objects/object_ssh/object_ssh_DL_004080" +static const ALIGN_ASSET(2) char object_ssh_DL_004080[] = dobject_ssh_DL_004080; + +#define dobject_ssh_DL_004510 "__OTR__objects/object_ssh/object_ssh_DL_004510" +static const ALIGN_ASSET(2) char object_ssh_DL_004510[] = dobject_ssh_DL_004510; + +#define dobject_ssh_DL_0046C0 "__OTR__objects/object_ssh/object_ssh_DL_0046C0" +static const ALIGN_ASSET(2) char object_ssh_DL_0046C0[] = dobject_ssh_DL_0046C0; + +#define dobject_ssh_DL_004878 "__OTR__objects/object_ssh/object_ssh_DL_004878" +static const ALIGN_ASSET(2) char object_ssh_DL_004878[] = dobject_ssh_DL_004878; + +#define dobject_ssh_DL_004940 "__OTR__objects/object_ssh/object_ssh_DL_004940" +static const ALIGN_ASSET(2) char object_ssh_DL_004940[] = dobject_ssh_DL_004940; + +#define dobject_ssh_DL_004A08 "__OTR__objects/object_ssh/object_ssh_DL_004A08" +static const ALIGN_ASSET(2) char object_ssh_DL_004A08[] = dobject_ssh_DL_004A08; + +#define dobject_ssh_DL_004AD0 "__OTR__objects/object_ssh/object_ssh_DL_004AD0" +static const ALIGN_ASSET(2) char object_ssh_DL_004AD0[] = dobject_ssh_DL_004AD0; + +#define dobject_ssh_DL_004B98 "__OTR__objects/object_ssh/object_ssh_DL_004B98" +static const ALIGN_ASSET(2) char object_ssh_DL_004B98[] = dobject_ssh_DL_004B98; + +#define dobject_ssh_DL_004C60 "__OTR__objects/object_ssh/object_ssh_DL_004C60" +static const ALIGN_ASSET(2) char object_ssh_DL_004C60[] = dobject_ssh_DL_004C60; + +#define dobject_ssh_DL_004D28 "__OTR__objects/object_ssh/object_ssh_DL_004D28" +static const ALIGN_ASSET(2) char object_ssh_DL_004D28[] = dobject_ssh_DL_004D28; + +#define dobject_ssh_DL_004DE8 "__OTR__objects/object_ssh/object_ssh_DL_004DE8" +static const ALIGN_ASSET(2) char object_ssh_DL_004DE8[] = dobject_ssh_DL_004DE8; + +#define dobject_ssh_DL_005048 "__OTR__objects/object_ssh/object_ssh_DL_005048" +static const ALIGN_ASSET(2) char object_ssh_DL_005048[] = dobject_ssh_DL_005048; + +#define dobject_ssh_Skel_0052E0 "__OTR__objects/object_ssh/object_ssh_Skel_0052E0" +static const ALIGN_ASSET(2) char object_ssh_Skel_0052E0[] = dobject_ssh_Skel_0052E0; + +#define dobject_ssh_Anim_0055F8 "__OTR__objects/object_ssh/object_ssh_Anim_0055F8" +static const ALIGN_ASSET(2) char object_ssh_Anim_0055F8[] = dobject_ssh_Anim_0055F8; + +#define dobject_ssh_Anim_005BE8 "__OTR__objects/object_ssh/object_ssh_Anim_005BE8" +static const ALIGN_ASSET(2) char object_ssh_Anim_005BE8[] = dobject_ssh_Anim_005BE8; \ No newline at end of file diff --git a/soh/assets/objects/object_sst/object_sst.h b/soh/assets/objects/object_sst/object_sst.h index e8f5d3dfe..7a9880798 100644 --- a/soh/assets/objects/object_sst/object_sst.h +++ b/soh/assets/objects/object_sst/object_sst.h @@ -1,786 +1,339 @@ #pragma once -#define dgBongoTitleCardTex "__OTR__objects/object_sst/gBongoTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoTitleCardTex[] = dgBongoTitleCardTex; -#else -static const char gBongoTitleCardTex[] __attribute__((aligned (2))) = dgBongoTitleCardTex; -#endif - -#define dgBongoLeftHandSkel "__OTR__objects/object_sst/gBongoLeftHandSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkel[] = dgBongoLeftHandSkel; -#else -static const char gBongoLeftHandSkel[] __attribute__((aligned (2))) = dgBongoLeftHandSkel; -#endif - -#define dgBongoRightHandSkel "__OTR__objects/object_sst/gBongoRightHandSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkel[] = dgBongoRightHandSkel; -#else -static const char gBongoRightHandSkel[] __attribute__((aligned (2))) = dgBongoRightHandSkel; -#endif - -#define dgBongoHeadSkel "__OTR__objects/object_sst/gBongoHeadSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkel[] = dgBongoHeadSkel; -#else -static const char gBongoHeadSkel[] __attribute__((aligned (2))) = dgBongoHeadSkel; -#endif - -#define dgBongoLeftHandIdleAnim "__OTR__objects/object_sst/gBongoLeftHandIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandIdleAnim[] = dgBongoLeftHandIdleAnim; -#else -static const char gBongoLeftHandIdleAnim[] __attribute__((aligned (2))) = dgBongoLeftHandIdleAnim; -#endif - -#define dgBongoLeftHandFlatPoseAnim "__OTR__objects/object_sst/gBongoLeftHandFlatPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandFlatPoseAnim[] = dgBongoLeftHandFlatPoseAnim; -#else -static const char gBongoLeftHandFlatPoseAnim[] __attribute__((aligned (2))) = dgBongoLeftHandFlatPoseAnim; -#endif - -#define dgBongoLeftHandOpenPoseAnim "__OTR__objects/object_sst/gBongoLeftHandOpenPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandOpenPoseAnim[] = dgBongoLeftHandOpenPoseAnim; -#else -static const char gBongoLeftHandOpenPoseAnim[] __attribute__((aligned (2))) = dgBongoLeftHandOpenPoseAnim; -#endif - -#define dgBongoLeftHandFistPoseAnim "__OTR__objects/object_sst/gBongoLeftHandFistPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandFistPoseAnim[] = dgBongoLeftHandFistPoseAnim; -#else -static const char gBongoLeftHandFistPoseAnim[] __attribute__((aligned (2))) = dgBongoLeftHandFistPoseAnim; -#endif - -#define dgBongoLeftHandClenchAnim "__OTR__objects/object_sst/gBongoLeftHandClenchAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandClenchAnim[] = dgBongoLeftHandClenchAnim; -#else -static const char gBongoLeftHandClenchAnim[] __attribute__((aligned (2))) = dgBongoLeftHandClenchAnim; -#endif - -#define dgBongoLeftHandDamagePoseAnim "__OTR__objects/object_sst/gBongoLeftHandDamagePoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandDamagePoseAnim[] = dgBongoLeftHandDamagePoseAnim; -#else -static const char gBongoLeftHandDamagePoseAnim[] __attribute__((aligned (2))) = dgBongoLeftHandDamagePoseAnim; -#endif - -#define dgBongoLeftHandPushoffPoseAnim "__OTR__objects/object_sst/gBongoLeftHandPushoffPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandPushoffPoseAnim[] = dgBongoLeftHandPushoffPoseAnim; -#else -static const char gBongoLeftHandPushoffPoseAnim[] __attribute__((aligned (2))) = dgBongoLeftHandPushoffPoseAnim; -#endif - -#define dgBongoLeftHandHangPoseAnim "__OTR__objects/object_sst/gBongoLeftHandHangPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandHangPoseAnim[] = dgBongoLeftHandHangPoseAnim; -#else -static const char gBongoLeftHandHangPoseAnim[] __attribute__((aligned (2))) = dgBongoLeftHandHangPoseAnim; -#endif - -#define dgBongoRightHandIdleAnim "__OTR__objects/object_sst/gBongoRightHandIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandIdleAnim[] = dgBongoRightHandIdleAnim; -#else -static const char gBongoRightHandIdleAnim[] __attribute__((aligned (2))) = dgBongoRightHandIdleAnim; -#endif - -#define dgBongoRightHandFlatPoseAnim "__OTR__objects/object_sst/gBongoRightHandFlatPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandFlatPoseAnim[] = dgBongoRightHandFlatPoseAnim; -#else -static const char gBongoRightHandFlatPoseAnim[] __attribute__((aligned (2))) = dgBongoRightHandFlatPoseAnim; -#endif - -#define dgBongoRightHandOpenPoseAnim "__OTR__objects/object_sst/gBongoRightHandOpenPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandOpenPoseAnim[] = dgBongoRightHandOpenPoseAnim; -#else -static const char gBongoRightHandOpenPoseAnim[] __attribute__((aligned (2))) = dgBongoRightHandOpenPoseAnim; -#endif - -#define dgBongoRightHandFistPoseAnim "__OTR__objects/object_sst/gBongoRightHandFistPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandFistPoseAnim[] = dgBongoRightHandFistPoseAnim; -#else -static const char gBongoRightHandFistPoseAnim[] __attribute__((aligned (2))) = dgBongoRightHandFistPoseAnim; -#endif - -#define dgBongoRightHandClenchAnim "__OTR__objects/object_sst/gBongoRightHandClenchAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandClenchAnim[] = dgBongoRightHandClenchAnim; -#else -static const char gBongoRightHandClenchAnim[] __attribute__((aligned (2))) = dgBongoRightHandClenchAnim; -#endif - -#define dgBongoRightHandDamagePoseAnim "__OTR__objects/object_sst/gBongoRightHandDamagePoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandDamagePoseAnim[] = dgBongoRightHandDamagePoseAnim; -#else -static const char gBongoRightHandDamagePoseAnim[] __attribute__((aligned (2))) = dgBongoRightHandDamagePoseAnim; -#endif - -#define dgBongoRightHandPushoffPoseAnim "__OTR__objects/object_sst/gBongoRightHandPushoffPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandPushoffPoseAnim[] = dgBongoRightHandPushoffPoseAnim; -#else -static const char gBongoRightHandPushoffPoseAnim[] __attribute__((aligned (2))) = dgBongoRightHandPushoffPoseAnim; -#endif - -#define dgBongoRightHandHangPoseAnim "__OTR__objects/object_sst/gBongoRightHandHangPoseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandHangPoseAnim[] = dgBongoRightHandHangPoseAnim; -#else -static const char gBongoRightHandHangPoseAnim[] __attribute__((aligned (2))) = dgBongoRightHandHangPoseAnim; -#endif - -#define dgBongoHeadStunnedAnim "__OTR__objects/object_sst/gBongoHeadStunnedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadStunnedAnim[] = dgBongoHeadStunnedAnim; -#else -static const char gBongoHeadStunnedAnim[] __attribute__((aligned (2))) = dgBongoHeadStunnedAnim; -#endif - -#define dgBongoHeadChargeAnim "__OTR__objects/object_sst/gBongoHeadChargeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadChargeAnim[] = dgBongoHeadChargeAnim; -#else -static const char gBongoHeadChargeAnim[] __attribute__((aligned (2))) = dgBongoHeadChargeAnim; -#endif - -#define dgBongoHeadKnockoutAnim "__OTR__objects/object_sst/gBongoHeadKnockoutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadKnockoutAnim[] = dgBongoHeadKnockoutAnim; -#else -static const char gBongoHeadKnockoutAnim[] __attribute__((aligned (2))) = dgBongoHeadKnockoutAnim; -#endif - -#define dgBongoHeadEyeCloseAnim "__OTR__objects/object_sst/gBongoHeadEyeCloseAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadEyeCloseAnim[] = dgBongoHeadEyeCloseAnim; -#else -static const char gBongoHeadEyeCloseAnim[] __attribute__((aligned (2))) = dgBongoHeadEyeCloseAnim; -#endif - -#define dgBongoHeadDamagedHandAnim "__OTR__objects/object_sst/gBongoHeadDamagedHandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadDamagedHandAnim[] = dgBongoHeadDamagedHandAnim; -#else -static const char gBongoHeadDamagedHandAnim[] __attribute__((aligned (2))) = dgBongoHeadDamagedHandAnim; -#endif - -#define dgBongoHeadEyeOpenAnim "__OTR__objects/object_sst/gBongoHeadEyeOpenAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadEyeOpenAnim[] = dgBongoHeadEyeOpenAnim; -#else -static const char gBongoHeadEyeOpenAnim[] __attribute__((aligned (2))) = dgBongoHeadEyeOpenAnim; -#endif - -#define dgBongoHeadDamageAnim "__OTR__objects/object_sst/gBongoHeadDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadDamageAnim[] = dgBongoHeadDamageAnim; -#else -static const char gBongoHeadDamageAnim[] __attribute__((aligned (2))) = dgBongoHeadDamageAnim; -#endif - -#define dgBongoHeadRecoverAnim "__OTR__objects/object_sst/gBongoHeadRecoverAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadRecoverAnim[] = dgBongoHeadRecoverAnim; -#else -static const char gBongoHeadRecoverAnim[] __attribute__((aligned (2))) = dgBongoHeadRecoverAnim; -#endif - -#define dgBongoHeadEyeCloseIdleAnim "__OTR__objects/object_sst/gBongoHeadEyeCloseIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadEyeCloseIdleAnim[] = dgBongoHeadEyeCloseIdleAnim; -#else -static const char gBongoHeadEyeCloseIdleAnim[] __attribute__((aligned (2))) = dgBongoHeadEyeCloseIdleAnim; -#endif - -#define dgBongoHeadEyeOpenIdleAnim "__OTR__objects/object_sst/gBongoHeadEyeOpenIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadEyeOpenIdleAnim[] = dgBongoHeadEyeOpenIdleAnim; -#else -static const char gBongoHeadEyeOpenIdleAnim[] __attribute__((aligned (2))) = dgBongoHeadEyeOpenIdleAnim; -#endif - -#define dgBongoIceCrystalDL "__OTR__objects/object_sst/gBongoIceCrystalDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoIceCrystalDL[] = dgBongoIceCrystalDL; -#else -static const char gBongoIceCrystalDL[] __attribute__((aligned (2))) = dgBongoIceCrystalDL; -#endif - -#define dgBongoIceShardDL "__OTR__objects/object_sst/gBongoIceShardDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoIceShardDL[] = dgBongoIceShardDL; -#else -static const char gBongoIceShardDL[] __attribute__((aligned (2))) = dgBongoIceShardDL; -#endif - -#define dgBongoDrumDL "__OTR__objects/object_sst/gBongoDrumDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoDrumDL[] = dgBongoDrumDL; -#else -static const char gBongoDrumDL[] __attribute__((aligned (2))) = dgBongoDrumDL; -#endif - -#define dgBongoDrumCol "__OTR__objects/object_sst/gBongoDrumCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoDrumCol[] = dgBongoDrumCol; -#else -static const char gBongoDrumCol[] __attribute__((aligned (2))) = dgBongoDrumCol; -#endif - -#define dgBongoUnused1Tex "__OTR__objects/object_sst/gBongoUnused1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoUnused1Tex[] = dgBongoUnused1Tex; -#else -static const char gBongoUnused1Tex[] __attribute__((aligned (2))) = dgBongoUnused1Tex; -#endif - -#define dgBongoUnused2Tex "__OTR__objects/object_sst/gBongoUnused2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoUnused2Tex[] = dgBongoUnused2Tex; -#else -static const char gBongoUnused2Tex[] __attribute__((aligned (2))) = dgBongoUnused2Tex; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8[] = dgBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8; -#else -static const char gBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004C70DL_0049F8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004C70DL_0049F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004C70DL_0049F8[] = dgBongoLeftHandSkelLimbsLimb_004C70DL_0049F8; -#else -static const char gBongoLeftHandSkelLimbsLimb_004C70DL_0049F8[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004C70DL_0049F8; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004C7CDL_004798 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004C7CDL_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004C7CDL_004798[] = dgBongoLeftHandSkelLimbsLimb_004C7CDL_004798; -#else -static const char gBongoLeftHandSkelLimbsLimb_004C7CDL_004798[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004C7CDL_004798; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004C94DL_004280 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004C94DL_004280" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004C94DL_004280[] = dgBongoLeftHandSkelLimbsLimb_004C94DL_004280; -#else -static const char gBongoLeftHandSkelLimbsLimb_004C94DL_004280[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004C94DL_004280; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004CACDL_004038 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CACDL_004038" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004CACDL_004038[] = dgBongoLeftHandSkelLimbsLimb_004CACDL_004038; -#else -static const char gBongoLeftHandSkelLimbsLimb_004CACDL_004038[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004CACDL_004038; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8[] = dgBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8; -#else -static const char gBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004CD0DL_003B90 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CD0DL_003B90" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004CD0DL_003B90[] = dgBongoLeftHandSkelLimbsLimb_004CD0DL_003B90; -#else -static const char gBongoLeftHandSkelLimbsLimb_004CD0DL_003B90[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004CD0DL_003B90; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004CE8DL_003948 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CE8DL_003948" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004CE8DL_003948[] = dgBongoLeftHandSkelLimbsLimb_004CE8DL_003948; -#else -static const char gBongoLeftHandSkelLimbsLimb_004CE8DL_003948[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004CE8DL_003948; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8[] = dgBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8; -#else -static const char gBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0[] = dgBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0; -#else -static const char gBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004D24DL_003258 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D24DL_003258" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004D24DL_003258[] = dgBongoLeftHandSkelLimbsLimb_004D24DL_003258; -#else -static const char gBongoLeftHandSkelLimbsLimb_004D24DL_003258[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004D24DL_003258; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004D30DL_002FF8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D30DL_002FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004D30DL_002FF8[] = dgBongoLeftHandSkelLimbsLimb_004D30DL_002FF8; -#else -static const char gBongoLeftHandSkelLimbsLimb_004D30DL_002FF8[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004D30DL_002FF8; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004D48DL_002D08 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D48DL_002D08" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004D48DL_002D08[] = dgBongoLeftHandSkelLimbsLimb_004D48DL_002D08; -#else -static const char gBongoLeftHandSkelLimbsLimb_004D48DL_002D08[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004D48DL_002D08; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004D60DL_002AB0 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D60DL_002AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004D60DL_002AB0[] = dgBongoLeftHandSkelLimbsLimb_004D60DL_002AB0; -#else -static const char gBongoLeftHandSkelLimbsLimb_004D60DL_002AB0[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004D60DL_002AB0; -#endif - -#define dgBongoLeftHandSkelLimbsLimb_004D6CDL_002850 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D6CDL_002850" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoLeftHandSkelLimbsLimb_004D6CDL_002850[] = dgBongoLeftHandSkelLimbsLimb_004D6CDL_002850; -#else -static const char gBongoLeftHandSkelLimbsLimb_004D6CDL_002850[] __attribute__((aligned (2))) = dgBongoLeftHandSkelLimbsLimb_004D6CDL_002850; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A1BCDL_009A38 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A1BCDL_009A38" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A1BCDL_009A38[] = dgBongoRightHandSkelLimbsLimb_00A1BCDL_009A38; -#else -static const char gBongoRightHandSkelLimbsLimb_00A1BCDL_009A38[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A1BCDL_009A38; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A1E0DL_009F68 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A1E0DL_009F68" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A1E0DL_009F68[] = dgBongoRightHandSkelLimbsLimb_00A1E0DL_009F68; -#else -static const char gBongoRightHandSkelLimbsLimb_00A1E0DL_009F68[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A1E0DL_009F68; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A1ECDL_009D08 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A1ECDL_009D08" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A1ECDL_009D08[] = dgBongoRightHandSkelLimbsLimb_00A1ECDL_009D08; -#else -static const char gBongoRightHandSkelLimbsLimb_00A1ECDL_009D08[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A1ECDL_009D08; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A204DL_0097F0 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A204DL_0097F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A204DL_0097F0[] = dgBongoRightHandSkelLimbsLimb_00A204DL_0097F0; -#else -static const char gBongoRightHandSkelLimbsLimb_00A204DL_0097F0[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A204DL_0097F0; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A21CDL_0095A8 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A21CDL_0095A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A21CDL_0095A8[] = dgBongoRightHandSkelLimbsLimb_00A21CDL_0095A8; -#else -static const char gBongoRightHandSkelLimbsLimb_00A21CDL_0095A8[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A21CDL_0095A8; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A228DL_009348 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A228DL_009348" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A228DL_009348[] = dgBongoRightHandSkelLimbsLimb_00A228DL_009348; -#else -static const char gBongoRightHandSkelLimbsLimb_00A228DL_009348[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A228DL_009348; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A240DL_009100 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A240DL_009100" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A240DL_009100[] = dgBongoRightHandSkelLimbsLimb_00A240DL_009100; -#else -static const char gBongoRightHandSkelLimbsLimb_00A240DL_009100[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A240DL_009100; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A258DL_008EB8 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A258DL_008EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A258DL_008EB8[] = dgBongoRightHandSkelLimbsLimb_00A258DL_008EB8; -#else -static const char gBongoRightHandSkelLimbsLimb_00A258DL_008EB8[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A258DL_008EB8; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A264DL_008C58 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A264DL_008C58" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A264DL_008C58[] = dgBongoRightHandSkelLimbsLimb_00A264DL_008C58; -#else -static const char gBongoRightHandSkelLimbsLimb_00A264DL_008C58[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A264DL_008C58; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A27CDL_008A10 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A27CDL_008A10" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A27CDL_008A10[] = dgBongoRightHandSkelLimbsLimb_00A27CDL_008A10; -#else -static const char gBongoRightHandSkelLimbsLimb_00A27CDL_008A10[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A27CDL_008A10; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A294DL_0087C8 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A294DL_0087C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A294DL_0087C8[] = dgBongoRightHandSkelLimbsLimb_00A294DL_0087C8; -#else -static const char gBongoRightHandSkelLimbsLimb_00A294DL_0087C8[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A294DL_0087C8; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A2A0DL_008568 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A2A0DL_008568" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A2A0DL_008568[] = dgBongoRightHandSkelLimbsLimb_00A2A0DL_008568; -#else -static const char gBongoRightHandSkelLimbsLimb_00A2A0DL_008568[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A2A0DL_008568; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A2B8DL_008278 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A2B8DL_008278" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A2B8DL_008278[] = dgBongoRightHandSkelLimbsLimb_00A2B8DL_008278; -#else -static const char gBongoRightHandSkelLimbsLimb_00A2B8DL_008278[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A2B8DL_008278; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A2D0DL_008020 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A2D0DL_008020" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A2D0DL_008020[] = dgBongoRightHandSkelLimbsLimb_00A2D0DL_008020; -#else -static const char gBongoRightHandSkelLimbsLimb_00A2D0DL_008020[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A2D0DL_008020; -#endif - -#define dgBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0[] = dgBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0; -#else -static const char gBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0[] __attribute__((aligned (2))) = dgBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0; -#endif - -#define dgBongoHeadSkelLimbsLimb_01798CDL_011370 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_01798CDL_011370" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_01798CDL_011370[] = dgBongoHeadSkelLimbsLimb_01798CDL_011370; -#else -static const char gBongoHeadSkelLimbsLimb_01798CDL_011370[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_01798CDL_011370; -#endif - -#define dgBongoHeadSkelLimbsLimb_017998DL_011430 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017998DL_011430" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017998DL_011430[] = dgBongoHeadSkelLimbsLimb_017998DL_011430; -#else -static const char gBongoHeadSkelLimbsLimb_017998DL_011430[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017998DL_011430; -#endif - -#define dgBongoHeadSkelLimbsLimb_0179A4DL_011518 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179A4DL_011518" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_0179A4DL_011518[] = dgBongoHeadSkelLimbsLimb_0179A4DL_011518; -#else -static const char gBongoHeadSkelLimbsLimb_0179A4DL_011518[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_0179A4DL_011518; -#endif - -#define dgBongoHeadSkelLimbsLimb_0179B0DL_011F98 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179B0DL_011F98" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_0179B0DL_011F98[] = dgBongoHeadSkelLimbsLimb_0179B0DL_011F98; -#else -static const char gBongoHeadSkelLimbsLimb_0179B0DL_011F98[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_0179B0DL_011F98; -#endif - -#define dgBongoHeadSkelLimbsLimb_0179BCDL_012080 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179BCDL_012080" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_0179BCDL_012080[] = dgBongoHeadSkelLimbsLimb_0179BCDL_012080; -#else -static const char gBongoHeadSkelLimbsLimb_0179BCDL_012080[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_0179BCDL_012080; -#endif - -#define dgBongoHeadSkelLimbsLimb_0179C8DL_012168 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179C8DL_012168" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_0179C8DL_012168[] = dgBongoHeadSkelLimbsLimb_0179C8DL_012168; -#else -static const char gBongoHeadSkelLimbsLimb_0179C8DL_012168[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_0179C8DL_012168; -#endif - -#define dgBongoHeadSkelLimbsLimb_0179ECDL_013A20 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179ECDL_013A20" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_0179ECDL_013A20[] = dgBongoHeadSkelLimbsLimb_0179ECDL_013A20; -#else -static const char gBongoHeadSkelLimbsLimb_0179ECDL_013A20[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_0179ECDL_013A20; -#endif - -#define dgBongoHeadSkelLimbsLimb_0179F8DL_013C08 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179F8DL_013C08" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_0179F8DL_013C08[] = dgBongoHeadSkelLimbsLimb_0179F8DL_013C08; -#else -static const char gBongoHeadSkelLimbsLimb_0179F8DL_013C08[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_0179F8DL_013C08; -#endif - -#define dgBongoHeadSkelLimbsLimb_017A10DL_0136C0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A10DL_0136C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017A10DL_0136C0[] = dgBongoHeadSkelLimbsLimb_017A10DL_0136C0; -#else -static const char gBongoHeadSkelLimbsLimb_017A10DL_0136C0[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017A10DL_0136C0; -#endif - -#define dgBongoHeadSkelLimbsLimb_017A1CDL_0138A8 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A1CDL_0138A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017A1CDL_0138A8[] = dgBongoHeadSkelLimbsLimb_017A1CDL_0138A8; -#else -static const char gBongoHeadSkelLimbsLimb_017A1CDL_0138A8[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017A1CDL_0138A8; -#endif - -#define dgBongoHeadSkelLimbsLimb_017A34DL_013360 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A34DL_013360" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017A34DL_013360[] = dgBongoHeadSkelLimbsLimb_017A34DL_013360; -#else -static const char gBongoHeadSkelLimbsLimb_017A34DL_013360[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017A34DL_013360; -#endif - -#define dgBongoHeadSkelLimbsLimb_017A40DL_013548 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A40DL_013548" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017A40DL_013548[] = dgBongoHeadSkelLimbsLimb_017A40DL_013548; -#else -static const char gBongoHeadSkelLimbsLimb_017A40DL_013548[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017A40DL_013548; -#endif - -#define dgBongoHeadSkelLimbsLimb_017A58DL_013000 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A58DL_013000" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017A58DL_013000[] = dgBongoHeadSkelLimbsLimb_017A58DL_013000; -#else -static const char gBongoHeadSkelLimbsLimb_017A58DL_013000[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017A58DL_013000; -#endif - -#define dgBongoHeadSkelLimbsLimb_017A64DL_0131E8 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A64DL_0131E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017A64DL_0131E8[] = dgBongoHeadSkelLimbsLimb_017A64DL_0131E8; -#else -static const char gBongoHeadSkelLimbsLimb_017A64DL_0131E8[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017A64DL_0131E8; -#endif - -#define dgBongoHeadSkelLimbsLimb_017A7CDL_012CA0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A7CDL_012CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017A7CDL_012CA0[] = dgBongoHeadSkelLimbsLimb_017A7CDL_012CA0; -#else -static const char gBongoHeadSkelLimbsLimb_017A7CDL_012CA0[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017A7CDL_012CA0; -#endif - -#define dgBongoHeadSkelLimbsLimb_017A88DL_012E88 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A88DL_012E88" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017A88DL_012E88[] = dgBongoHeadSkelLimbsLimb_017A88DL_012E88; -#else -static const char gBongoHeadSkelLimbsLimb_017A88DL_012E88[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017A88DL_012E88; -#endif - -#define dgBongoHeadSkelLimbsLimb_017AA0DL_012940 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AA0DL_012940" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017AA0DL_012940[] = dgBongoHeadSkelLimbsLimb_017AA0DL_012940; -#else -static const char gBongoHeadSkelLimbsLimb_017AA0DL_012940[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017AA0DL_012940; -#endif - -#define dgBongoHeadSkelLimbsLimb_017AACDL_012B28 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AACDL_012B28" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017AACDL_012B28[] = dgBongoHeadSkelLimbsLimb_017AACDL_012B28; -#else -static const char gBongoHeadSkelLimbsLimb_017AACDL_012B28[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017AACDL_012B28; -#endif - -#define dgBongoHeadSkelLimbsLimb_017AC4DL_0127D0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AC4DL_0127D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017AC4DL_0127D0[] = dgBongoHeadSkelLimbsLimb_017AC4DL_0127D0; -#else -static const char gBongoHeadSkelLimbsLimb_017AC4DL_0127D0[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017AC4DL_0127D0; -#endif - -#define dgBongoHeadSkelLimbsLimb_017AD0DL_012888 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AD0DL_012888" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017AD0DL_012888[] = dgBongoHeadSkelLimbsLimb_017AD0DL_012888; -#else -static const char gBongoHeadSkelLimbsLimb_017AD0DL_012888[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017AD0DL_012888; -#endif - -#define dgBongoHeadSkelLimbsLimb_017AE8DL_012660 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AE8DL_012660" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017AE8DL_012660[] = dgBongoHeadSkelLimbsLimb_017AE8DL_012660; -#else -static const char gBongoHeadSkelLimbsLimb_017AE8DL_012660[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017AE8DL_012660; -#endif - -#define dgBongoHeadSkelLimbsLimb_017AF4DL_012718 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AF4DL_012718" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017AF4DL_012718[] = dgBongoHeadSkelLimbsLimb_017AF4DL_012718; -#else -static const char gBongoHeadSkelLimbsLimb_017AF4DL_012718[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017AF4DL_012718; -#endif - -#define dgBongoHeadSkelLimbsLimb_017B0CDL_0124F0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B0CDL_0124F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017B0CDL_0124F0[] = dgBongoHeadSkelLimbsLimb_017B0CDL_0124F0; -#else -static const char gBongoHeadSkelLimbsLimb_017B0CDL_0124F0[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017B0CDL_0124F0; -#endif - -#define dgBongoHeadSkelLimbsLimb_017B18DL_0125A8 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B18DL_0125A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017B18DL_0125A8[] = dgBongoHeadSkelLimbsLimb_017B18DL_0125A8; -#else -static const char gBongoHeadSkelLimbsLimb_017B18DL_0125A8[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017B18DL_0125A8; -#endif - -#define dgBongoHeadSkelLimbsLimb_017B30DL_012380 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B30DL_012380" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017B30DL_012380[] = dgBongoHeadSkelLimbsLimb_017B30DL_012380; -#else -static const char gBongoHeadSkelLimbsLimb_017B30DL_012380[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017B30DL_012380; -#endif - -#define dgBongoHeadSkelLimbsLimb_017B3CDL_012438 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B3CDL_012438" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017B3CDL_012438[] = dgBongoHeadSkelLimbsLimb_017B3CDL_012438; -#else -static const char gBongoHeadSkelLimbsLimb_017B3CDL_012438[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017B3CDL_012438; -#endif - -#define dgBongoHeadSkelLimbsLimb_017B54DL_011AF8 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B54DL_011AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017B54DL_011AF8[] = dgBongoHeadSkelLimbsLimb_017B54DL_011AF8; -#else -static const char gBongoHeadSkelLimbsLimb_017B54DL_011AF8[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017B54DL_011AF8; -#endif - -#define dgBongoHeadSkelLimbsLimb_017B60DL_011E50 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B60DL_011E50" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017B60DL_011E50[] = dgBongoHeadSkelLimbsLimb_017B60DL_011E50; -#else -static const char gBongoHeadSkelLimbsLimb_017B60DL_011E50[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017B60DL_011E50; -#endif - -#define dgBongoHeadSkelLimbsLimb_017B78DL_011658 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B78DL_011658" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017B78DL_011658[] = dgBongoHeadSkelLimbsLimb_017B78DL_011658; -#else -static const char gBongoHeadSkelLimbsLimb_017B78DL_011658[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017B78DL_011658; -#endif - -#define dgBongoHeadSkelLimbsLimb_017B84DL_0119B0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B84DL_0119B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gBongoHeadSkelLimbsLimb_017B84DL_0119B0[] = dgBongoHeadSkelLimbsLimb_017B84DL_0119B0; -#else -static const char gBongoHeadSkelLimbsLimb_017B84DL_0119B0[] __attribute__((aligned (2))) = dgBongoHeadSkelLimbsLimb_017B84DL_0119B0; -#endif - -#define dobject_sstTex_017FE0 "__OTR__objects/object_sst/object_sstTex_017FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_017FE0[] = dobject_sstTex_017FE0; -#else -static const char object_sstTex_017FE0[] __attribute__((aligned (2))) = dobject_sstTex_017FE0; -#endif - -#define dobject_sstTex_01A730 "__OTR__objects/object_sst/object_sstTex_01A730" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_01A730[] = dobject_sstTex_01A730; -#else -static const char object_sstTex_01A730[] __attribute__((aligned (2))) = dobject_sstTex_01A730; -#endif - -#define dobject_sstTex_0199B0 "__OTR__objects/object_sst/object_sstTex_0199B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_0199B0[] = dobject_sstTex_0199B0; -#else -static const char object_sstTex_0199B0[] __attribute__((aligned (2))) = dobject_sstTex_0199B0; -#endif - -#define dobject_sstTex_019BB0 "__OTR__objects/object_sst/object_sstTex_019BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_019BB0[] = dobject_sstTex_019BB0; -#else -static const char object_sstTex_019BB0[] __attribute__((aligned (2))) = dobject_sstTex_019BB0; -#endif - -#define dobject_sstTex_01A3B0 "__OTR__objects/object_sst/object_sstTex_01A3B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_01A3B0[] = dobject_sstTex_01A3B0; -#else -static const char object_sstTex_01A3B0[] __attribute__((aligned (2))) = dobject_sstTex_01A3B0; -#endif - -#define dobject_sstTex_01A7B0 "__OTR__objects/object_sst/object_sstTex_01A7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_01A7B0[] = dobject_sstTex_01A7B0; -#else -static const char object_sstTex_01A7B0[] __attribute__((aligned (2))) = dobject_sstTex_01A7B0; -#endif - -#define dobject_sstTex_019AB0 "__OTR__objects/object_sst/object_sstTex_019AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_019AB0[] = dobject_sstTex_019AB0; -#else -static const char object_sstTex_019AB0[] __attribute__((aligned (2))) = dobject_sstTex_019AB0; -#endif - -#define dobject_sstTex_019FB0 "__OTR__objects/object_sst/object_sstTex_019FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_019FB0[] = dobject_sstTex_019FB0; -#else -static const char object_sstTex_019FB0[] __attribute__((aligned (2))) = dobject_sstTex_019FB0; -#endif - -#define dobject_sstTex_01A5B0 "__OTR__objects/object_sst/object_sstTex_01A5B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_01A5B0[] = dobject_sstTex_01A5B0; -#else -static const char object_sstTex_01A5B0[] __attribute__((aligned (2))) = dobject_sstTex_01A5B0; -#endif - -#define dobject_sstTex_01A1B0 "__OTR__objects/object_sst/object_sstTex_01A1B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_01A1B0[] = dobject_sstTex_01A1B0; -#else -static const char object_sstTex_01A1B0[] __attribute__((aligned (2))) = dobject_sstTex_01A1B0; -#endif - -#define dobject_sstTex_0197B0 "__OTR__objects/object_sst/object_sstTex_0197B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_0197B0[] = dobject_sstTex_0197B0; -#else -static const char object_sstTex_0197B0[] __attribute__((aligned (2))) = dobject_sstTex_0197B0; -#endif - -#define dobject_sstTex_019570 "__OTR__objects/object_sst/object_sstTex_019570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_019570[] = dobject_sstTex_019570; -#else -static const char object_sstTex_019570[] __attribute__((aligned (2))) = dobject_sstTex_019570; -#endif - -#define dobject_sstTex_019530 "__OTR__objects/object_sst/object_sstTex_019530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_019530[] = dobject_sstTex_019530; -#else -static const char object_sstTex_019530[] __attribute__((aligned (2))) = dobject_sstTex_019530; -#endif - -#define dobject_sstTex_019670 "__OTR__objects/object_sst/object_sstTex_019670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_019670[] = dobject_sstTex_019670; -#else -static const char object_sstTex_019670[] __attribute__((aligned (2))) = dobject_sstTex_019670; -#endif - -#define dobject_sstTex_019770 "__OTR__objects/object_sst/object_sstTex_019770" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_019770[] = dobject_sstTex_019770; -#else -static const char object_sstTex_019770[] __attribute__((aligned (2))) = dobject_sstTex_019770; -#endif - -#define dobject_sstTex_01A0B0 "__OTR__objects/object_sst/object_sstTex_01A0B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_sstTex_01A0B0[] = dobject_sstTex_01A0B0; -#else -static const char object_sstTex_01A0B0[] __attribute__((aligned (2))) = dobject_sstTex_01A0B0; -#endif - +#include "align_asset_macro.h" + +#define dgBongoTitleCardTex "__OTR__objects/object_sst/gBongoTitleCardTex" +static const ALIGN_ASSET(2) char gBongoTitleCardTex[] = dgBongoTitleCardTex; + +#define dgBongoLeftHandSkel "__OTR__objects/object_sst/gBongoLeftHandSkel" +static const ALIGN_ASSET(2) char gBongoLeftHandSkel[] = dgBongoLeftHandSkel; + +#define dgBongoRightHandSkel "__OTR__objects/object_sst/gBongoRightHandSkel" +static const ALIGN_ASSET(2) char gBongoRightHandSkel[] = dgBongoRightHandSkel; + +#define dgBongoHeadSkel "__OTR__objects/object_sst/gBongoHeadSkel" +static const ALIGN_ASSET(2) char gBongoHeadSkel[] = dgBongoHeadSkel; + +#define dgBongoLeftHandIdleAnim "__OTR__objects/object_sst/gBongoLeftHandIdleAnim" +static const ALIGN_ASSET(2) char gBongoLeftHandIdleAnim[] = dgBongoLeftHandIdleAnim; + +#define dgBongoLeftHandFlatPoseAnim "__OTR__objects/object_sst/gBongoLeftHandFlatPoseAnim" +static const ALIGN_ASSET(2) char gBongoLeftHandFlatPoseAnim[] = dgBongoLeftHandFlatPoseAnim; + +#define dgBongoLeftHandOpenPoseAnim "__OTR__objects/object_sst/gBongoLeftHandOpenPoseAnim" +static const ALIGN_ASSET(2) char gBongoLeftHandOpenPoseAnim[] = dgBongoLeftHandOpenPoseAnim; + +#define dgBongoLeftHandFistPoseAnim "__OTR__objects/object_sst/gBongoLeftHandFistPoseAnim" +static const ALIGN_ASSET(2) char gBongoLeftHandFistPoseAnim[] = dgBongoLeftHandFistPoseAnim; + +#define dgBongoLeftHandClenchAnim "__OTR__objects/object_sst/gBongoLeftHandClenchAnim" +static const ALIGN_ASSET(2) char gBongoLeftHandClenchAnim[] = dgBongoLeftHandClenchAnim; + +#define dgBongoLeftHandDamagePoseAnim "__OTR__objects/object_sst/gBongoLeftHandDamagePoseAnim" +static const ALIGN_ASSET(2) char gBongoLeftHandDamagePoseAnim[] = dgBongoLeftHandDamagePoseAnim; + +#define dgBongoLeftHandPushoffPoseAnim "__OTR__objects/object_sst/gBongoLeftHandPushoffPoseAnim" +static const ALIGN_ASSET(2) char gBongoLeftHandPushoffPoseAnim[] = dgBongoLeftHandPushoffPoseAnim; + +#define dgBongoLeftHandHangPoseAnim "__OTR__objects/object_sst/gBongoLeftHandHangPoseAnim" +static const ALIGN_ASSET(2) char gBongoLeftHandHangPoseAnim[] = dgBongoLeftHandHangPoseAnim; + +#define dgBongoRightHandIdleAnim "__OTR__objects/object_sst/gBongoRightHandIdleAnim" +static const ALIGN_ASSET(2) char gBongoRightHandIdleAnim[] = dgBongoRightHandIdleAnim; + +#define dgBongoRightHandFlatPoseAnim "__OTR__objects/object_sst/gBongoRightHandFlatPoseAnim" +static const ALIGN_ASSET(2) char gBongoRightHandFlatPoseAnim[] = dgBongoRightHandFlatPoseAnim; + +#define dgBongoRightHandOpenPoseAnim "__OTR__objects/object_sst/gBongoRightHandOpenPoseAnim" +static const ALIGN_ASSET(2) char gBongoRightHandOpenPoseAnim[] = dgBongoRightHandOpenPoseAnim; + +#define dgBongoRightHandFistPoseAnim "__OTR__objects/object_sst/gBongoRightHandFistPoseAnim" +static const ALIGN_ASSET(2) char gBongoRightHandFistPoseAnim[] = dgBongoRightHandFistPoseAnim; + +#define dgBongoRightHandClenchAnim "__OTR__objects/object_sst/gBongoRightHandClenchAnim" +static const ALIGN_ASSET(2) char gBongoRightHandClenchAnim[] = dgBongoRightHandClenchAnim; + +#define dgBongoRightHandDamagePoseAnim "__OTR__objects/object_sst/gBongoRightHandDamagePoseAnim" +static const ALIGN_ASSET(2) char gBongoRightHandDamagePoseAnim[] = dgBongoRightHandDamagePoseAnim; + +#define dgBongoRightHandPushoffPoseAnim "__OTR__objects/object_sst/gBongoRightHandPushoffPoseAnim" +static const ALIGN_ASSET(2) char gBongoRightHandPushoffPoseAnim[] = dgBongoRightHandPushoffPoseAnim; + +#define dgBongoRightHandHangPoseAnim "__OTR__objects/object_sst/gBongoRightHandHangPoseAnim" +static const ALIGN_ASSET(2) char gBongoRightHandHangPoseAnim[] = dgBongoRightHandHangPoseAnim; + +#define dgBongoHeadStunnedAnim "__OTR__objects/object_sst/gBongoHeadStunnedAnim" +static const ALIGN_ASSET(2) char gBongoHeadStunnedAnim[] = dgBongoHeadStunnedAnim; + +#define dgBongoHeadChargeAnim "__OTR__objects/object_sst/gBongoHeadChargeAnim" +static const ALIGN_ASSET(2) char gBongoHeadChargeAnim[] = dgBongoHeadChargeAnim; + +#define dgBongoHeadKnockoutAnim "__OTR__objects/object_sst/gBongoHeadKnockoutAnim" +static const ALIGN_ASSET(2) char gBongoHeadKnockoutAnim[] = dgBongoHeadKnockoutAnim; + +#define dgBongoHeadEyeCloseAnim "__OTR__objects/object_sst/gBongoHeadEyeCloseAnim" +static const ALIGN_ASSET(2) char gBongoHeadEyeCloseAnim[] = dgBongoHeadEyeCloseAnim; + +#define dgBongoHeadDamagedHandAnim "__OTR__objects/object_sst/gBongoHeadDamagedHandAnim" +static const ALIGN_ASSET(2) char gBongoHeadDamagedHandAnim[] = dgBongoHeadDamagedHandAnim; + +#define dgBongoHeadEyeOpenAnim "__OTR__objects/object_sst/gBongoHeadEyeOpenAnim" +static const ALIGN_ASSET(2) char gBongoHeadEyeOpenAnim[] = dgBongoHeadEyeOpenAnim; + +#define dgBongoHeadDamageAnim "__OTR__objects/object_sst/gBongoHeadDamageAnim" +static const ALIGN_ASSET(2) char gBongoHeadDamageAnim[] = dgBongoHeadDamageAnim; + +#define dgBongoHeadRecoverAnim "__OTR__objects/object_sst/gBongoHeadRecoverAnim" +static const ALIGN_ASSET(2) char gBongoHeadRecoverAnim[] = dgBongoHeadRecoverAnim; + +#define dgBongoHeadEyeCloseIdleAnim "__OTR__objects/object_sst/gBongoHeadEyeCloseIdleAnim" +static const ALIGN_ASSET(2) char gBongoHeadEyeCloseIdleAnim[] = dgBongoHeadEyeCloseIdleAnim; + +#define dgBongoHeadEyeOpenIdleAnim "__OTR__objects/object_sst/gBongoHeadEyeOpenIdleAnim" +static const ALIGN_ASSET(2) char gBongoHeadEyeOpenIdleAnim[] = dgBongoHeadEyeOpenIdleAnim; + +#define dgBongoIceCrystalDL "__OTR__objects/object_sst/gBongoIceCrystalDL" +static const ALIGN_ASSET(2) char gBongoIceCrystalDL[] = dgBongoIceCrystalDL; + +#define dgBongoIceShardDL "__OTR__objects/object_sst/gBongoIceShardDL" +static const ALIGN_ASSET(2) char gBongoIceShardDL[] = dgBongoIceShardDL; + +#define dgBongoDrumDL "__OTR__objects/object_sst/gBongoDrumDL" +static const ALIGN_ASSET(2) char gBongoDrumDL[] = dgBongoDrumDL; + +#define dgBongoDrumCol "__OTR__objects/object_sst/gBongoDrumCol" +static const ALIGN_ASSET(2) char gBongoDrumCol[] = dgBongoDrumCol; + +#define dgBongoUnused1Tex "__OTR__objects/object_sst/gBongoUnused1Tex" +static const ALIGN_ASSET(2) char gBongoUnused1Tex[] = dgBongoUnused1Tex; + +#define dgBongoUnused2Tex "__OTR__objects/object_sst/gBongoUnused2Tex" +static const ALIGN_ASSET(2) char gBongoUnused2Tex[] = dgBongoUnused2Tex; + +#define dgBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8[] = dgBongoLeftHandSkelLimbsLimb_004C4CDL_0044C8; + +#define dgBongoLeftHandSkelLimbsLimb_004C70DL_0049F8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004C70DL_0049F8" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004C70DL_0049F8[] = dgBongoLeftHandSkelLimbsLimb_004C70DL_0049F8; + +#define dgBongoLeftHandSkelLimbsLimb_004C7CDL_004798 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004C7CDL_004798" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004C7CDL_004798[] = dgBongoLeftHandSkelLimbsLimb_004C7CDL_004798; + +#define dgBongoLeftHandSkelLimbsLimb_004C94DL_004280 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004C94DL_004280" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004C94DL_004280[] = dgBongoLeftHandSkelLimbsLimb_004C94DL_004280; + +#define dgBongoLeftHandSkelLimbsLimb_004CACDL_004038 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CACDL_004038" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004CACDL_004038[] = dgBongoLeftHandSkelLimbsLimb_004CACDL_004038; + +#define dgBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8[] = dgBongoLeftHandSkelLimbsLimb_004CB8DL_003DD8; + +#define dgBongoLeftHandSkelLimbsLimb_004CD0DL_003B90 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CD0DL_003B90" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004CD0DL_003B90[] = dgBongoLeftHandSkelLimbsLimb_004CD0DL_003B90; + +#define dgBongoLeftHandSkelLimbsLimb_004CE8DL_003948 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CE8DL_003948" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004CE8DL_003948[] = dgBongoLeftHandSkelLimbsLimb_004CE8DL_003948; + +#define dgBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8[] = dgBongoLeftHandSkelLimbsLimb_004CF4DL_0036E8; + +#define dgBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0[] = dgBongoLeftHandSkelLimbsLimb_004D0CDL_0034A0; + +#define dgBongoLeftHandSkelLimbsLimb_004D24DL_003258 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D24DL_003258" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004D24DL_003258[] = dgBongoLeftHandSkelLimbsLimb_004D24DL_003258; + +#define dgBongoLeftHandSkelLimbsLimb_004D30DL_002FF8 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D30DL_002FF8" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004D30DL_002FF8[] = dgBongoLeftHandSkelLimbsLimb_004D30DL_002FF8; + +#define dgBongoLeftHandSkelLimbsLimb_004D48DL_002D08 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D48DL_002D08" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004D48DL_002D08[] = dgBongoLeftHandSkelLimbsLimb_004D48DL_002D08; + +#define dgBongoLeftHandSkelLimbsLimb_004D60DL_002AB0 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D60DL_002AB0" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004D60DL_002AB0[] = dgBongoLeftHandSkelLimbsLimb_004D60DL_002AB0; + +#define dgBongoLeftHandSkelLimbsLimb_004D6CDL_002850 "__OTR__objects/object_sst/gBongoLeftHandSkelLimbsLimb_004D6CDL_002850" +static const ALIGN_ASSET(2) char gBongoLeftHandSkelLimbsLimb_004D6CDL_002850[] = dgBongoLeftHandSkelLimbsLimb_004D6CDL_002850; + +#define dgBongoRightHandSkelLimbsLimb_00A1BCDL_009A38 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A1BCDL_009A38" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A1BCDL_009A38[] = dgBongoRightHandSkelLimbsLimb_00A1BCDL_009A38; + +#define dgBongoRightHandSkelLimbsLimb_00A1E0DL_009F68 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A1E0DL_009F68" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A1E0DL_009F68[] = dgBongoRightHandSkelLimbsLimb_00A1E0DL_009F68; + +#define dgBongoRightHandSkelLimbsLimb_00A1ECDL_009D08 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A1ECDL_009D08" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A1ECDL_009D08[] = dgBongoRightHandSkelLimbsLimb_00A1ECDL_009D08; + +#define dgBongoRightHandSkelLimbsLimb_00A204DL_0097F0 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A204DL_0097F0" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A204DL_0097F0[] = dgBongoRightHandSkelLimbsLimb_00A204DL_0097F0; + +#define dgBongoRightHandSkelLimbsLimb_00A21CDL_0095A8 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A21CDL_0095A8" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A21CDL_0095A8[] = dgBongoRightHandSkelLimbsLimb_00A21CDL_0095A8; + +#define dgBongoRightHandSkelLimbsLimb_00A228DL_009348 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A228DL_009348" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A228DL_009348[] = dgBongoRightHandSkelLimbsLimb_00A228DL_009348; + +#define dgBongoRightHandSkelLimbsLimb_00A240DL_009100 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A240DL_009100" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A240DL_009100[] = dgBongoRightHandSkelLimbsLimb_00A240DL_009100; + +#define dgBongoRightHandSkelLimbsLimb_00A258DL_008EB8 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A258DL_008EB8" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A258DL_008EB8[] = dgBongoRightHandSkelLimbsLimb_00A258DL_008EB8; + +#define dgBongoRightHandSkelLimbsLimb_00A264DL_008C58 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A264DL_008C58" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A264DL_008C58[] = dgBongoRightHandSkelLimbsLimb_00A264DL_008C58; + +#define dgBongoRightHandSkelLimbsLimb_00A27CDL_008A10 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A27CDL_008A10" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A27CDL_008A10[] = dgBongoRightHandSkelLimbsLimb_00A27CDL_008A10; + +#define dgBongoRightHandSkelLimbsLimb_00A294DL_0087C8 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A294DL_0087C8" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A294DL_0087C8[] = dgBongoRightHandSkelLimbsLimb_00A294DL_0087C8; + +#define dgBongoRightHandSkelLimbsLimb_00A2A0DL_008568 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A2A0DL_008568" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A2A0DL_008568[] = dgBongoRightHandSkelLimbsLimb_00A2A0DL_008568; + +#define dgBongoRightHandSkelLimbsLimb_00A2B8DL_008278 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A2B8DL_008278" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A2B8DL_008278[] = dgBongoRightHandSkelLimbsLimb_00A2B8DL_008278; + +#define dgBongoRightHandSkelLimbsLimb_00A2D0DL_008020 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A2D0DL_008020" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A2D0DL_008020[] = dgBongoRightHandSkelLimbsLimb_00A2D0DL_008020; + +#define dgBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0 "__OTR__objects/object_sst/gBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0" +static const ALIGN_ASSET(2) char gBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0[] = dgBongoRightHandSkelLimbsLimb_00A2DCDL_007DC0; + +#define dgBongoHeadSkelLimbsLimb_01798CDL_011370 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_01798CDL_011370" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_01798CDL_011370[] = dgBongoHeadSkelLimbsLimb_01798CDL_011370; + +#define dgBongoHeadSkelLimbsLimb_017998DL_011430 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017998DL_011430" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017998DL_011430[] = dgBongoHeadSkelLimbsLimb_017998DL_011430; + +#define dgBongoHeadSkelLimbsLimb_0179A4DL_011518 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179A4DL_011518" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_0179A4DL_011518[] = dgBongoHeadSkelLimbsLimb_0179A4DL_011518; + +#define dgBongoHeadSkelLimbsLimb_0179B0DL_011F98 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179B0DL_011F98" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_0179B0DL_011F98[] = dgBongoHeadSkelLimbsLimb_0179B0DL_011F98; + +#define dgBongoHeadSkelLimbsLimb_0179BCDL_012080 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179BCDL_012080" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_0179BCDL_012080[] = dgBongoHeadSkelLimbsLimb_0179BCDL_012080; + +#define dgBongoHeadSkelLimbsLimb_0179C8DL_012168 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179C8DL_012168" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_0179C8DL_012168[] = dgBongoHeadSkelLimbsLimb_0179C8DL_012168; + +#define dgBongoHeadSkelLimbsLimb_0179ECDL_013A20 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179ECDL_013A20" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_0179ECDL_013A20[] = dgBongoHeadSkelLimbsLimb_0179ECDL_013A20; + +#define dgBongoHeadSkelLimbsLimb_0179F8DL_013C08 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_0179F8DL_013C08" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_0179F8DL_013C08[] = dgBongoHeadSkelLimbsLimb_0179F8DL_013C08; + +#define dgBongoHeadSkelLimbsLimb_017A10DL_0136C0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A10DL_0136C0" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017A10DL_0136C0[] = dgBongoHeadSkelLimbsLimb_017A10DL_0136C0; + +#define dgBongoHeadSkelLimbsLimb_017A1CDL_0138A8 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A1CDL_0138A8" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017A1CDL_0138A8[] = dgBongoHeadSkelLimbsLimb_017A1CDL_0138A8; + +#define dgBongoHeadSkelLimbsLimb_017A34DL_013360 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A34DL_013360" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017A34DL_013360[] = dgBongoHeadSkelLimbsLimb_017A34DL_013360; + +#define dgBongoHeadSkelLimbsLimb_017A40DL_013548 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A40DL_013548" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017A40DL_013548[] = dgBongoHeadSkelLimbsLimb_017A40DL_013548; + +#define dgBongoHeadSkelLimbsLimb_017A58DL_013000 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A58DL_013000" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017A58DL_013000[] = dgBongoHeadSkelLimbsLimb_017A58DL_013000; + +#define dgBongoHeadSkelLimbsLimb_017A64DL_0131E8 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A64DL_0131E8" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017A64DL_0131E8[] = dgBongoHeadSkelLimbsLimb_017A64DL_0131E8; + +#define dgBongoHeadSkelLimbsLimb_017A7CDL_012CA0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A7CDL_012CA0" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017A7CDL_012CA0[] = dgBongoHeadSkelLimbsLimb_017A7CDL_012CA0; + +#define dgBongoHeadSkelLimbsLimb_017A88DL_012E88 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017A88DL_012E88" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017A88DL_012E88[] = dgBongoHeadSkelLimbsLimb_017A88DL_012E88; + +#define dgBongoHeadSkelLimbsLimb_017AA0DL_012940 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AA0DL_012940" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017AA0DL_012940[] = dgBongoHeadSkelLimbsLimb_017AA0DL_012940; + +#define dgBongoHeadSkelLimbsLimb_017AACDL_012B28 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AACDL_012B28" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017AACDL_012B28[] = dgBongoHeadSkelLimbsLimb_017AACDL_012B28; + +#define dgBongoHeadSkelLimbsLimb_017AC4DL_0127D0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AC4DL_0127D0" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017AC4DL_0127D0[] = dgBongoHeadSkelLimbsLimb_017AC4DL_0127D0; + +#define dgBongoHeadSkelLimbsLimb_017AD0DL_012888 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AD0DL_012888" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017AD0DL_012888[] = dgBongoHeadSkelLimbsLimb_017AD0DL_012888; + +#define dgBongoHeadSkelLimbsLimb_017AE8DL_012660 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AE8DL_012660" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017AE8DL_012660[] = dgBongoHeadSkelLimbsLimb_017AE8DL_012660; + +#define dgBongoHeadSkelLimbsLimb_017AF4DL_012718 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017AF4DL_012718" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017AF4DL_012718[] = dgBongoHeadSkelLimbsLimb_017AF4DL_012718; + +#define dgBongoHeadSkelLimbsLimb_017B0CDL_0124F0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B0CDL_0124F0" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017B0CDL_0124F0[] = dgBongoHeadSkelLimbsLimb_017B0CDL_0124F0; + +#define dgBongoHeadSkelLimbsLimb_017B18DL_0125A8 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B18DL_0125A8" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017B18DL_0125A8[] = dgBongoHeadSkelLimbsLimb_017B18DL_0125A8; + +#define dgBongoHeadSkelLimbsLimb_017B30DL_012380 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B30DL_012380" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017B30DL_012380[] = dgBongoHeadSkelLimbsLimb_017B30DL_012380; + +#define dgBongoHeadSkelLimbsLimb_017B3CDL_012438 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B3CDL_012438" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017B3CDL_012438[] = dgBongoHeadSkelLimbsLimb_017B3CDL_012438; + +#define dgBongoHeadSkelLimbsLimb_017B54DL_011AF8 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B54DL_011AF8" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017B54DL_011AF8[] = dgBongoHeadSkelLimbsLimb_017B54DL_011AF8; + +#define dgBongoHeadSkelLimbsLimb_017B60DL_011E50 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B60DL_011E50" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017B60DL_011E50[] = dgBongoHeadSkelLimbsLimb_017B60DL_011E50; + +#define dgBongoHeadSkelLimbsLimb_017B78DL_011658 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B78DL_011658" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017B78DL_011658[] = dgBongoHeadSkelLimbsLimb_017B78DL_011658; + +#define dgBongoHeadSkelLimbsLimb_017B84DL_0119B0 "__OTR__objects/object_sst/gBongoHeadSkelLimbsLimb_017B84DL_0119B0" +static const ALIGN_ASSET(2) char gBongoHeadSkelLimbsLimb_017B84DL_0119B0[] = dgBongoHeadSkelLimbsLimb_017B84DL_0119B0; + +#define dobject_sstTex_017FE0 "__OTR__objects/object_sst/object_sstTex_017FE0" +static const ALIGN_ASSET(2) char object_sstTex_017FE0[] = dobject_sstTex_017FE0; + +#define dobject_sstTex_01A730 "__OTR__objects/object_sst/object_sstTex_01A730" +static const ALIGN_ASSET(2) char object_sstTex_01A730[] = dobject_sstTex_01A730; + +#define dobject_sstTex_0199B0 "__OTR__objects/object_sst/object_sstTex_0199B0" +static const ALIGN_ASSET(2) char object_sstTex_0199B0[] = dobject_sstTex_0199B0; + +#define dobject_sstTex_019BB0 "__OTR__objects/object_sst/object_sstTex_019BB0" +static const ALIGN_ASSET(2) char object_sstTex_019BB0[] = dobject_sstTex_019BB0; + +#define dobject_sstTex_01A3B0 "__OTR__objects/object_sst/object_sstTex_01A3B0" +static const ALIGN_ASSET(2) char object_sstTex_01A3B0[] = dobject_sstTex_01A3B0; + +#define dobject_sstTex_01A7B0 "__OTR__objects/object_sst/object_sstTex_01A7B0" +static const ALIGN_ASSET(2) char object_sstTex_01A7B0[] = dobject_sstTex_01A7B0; + +#define dobject_sstTex_019AB0 "__OTR__objects/object_sst/object_sstTex_019AB0" +static const ALIGN_ASSET(2) char object_sstTex_019AB0[] = dobject_sstTex_019AB0; + +#define dobject_sstTex_019FB0 "__OTR__objects/object_sst/object_sstTex_019FB0" +static const ALIGN_ASSET(2) char object_sstTex_019FB0[] = dobject_sstTex_019FB0; + +#define dobject_sstTex_01A5B0 "__OTR__objects/object_sst/object_sstTex_01A5B0" +static const ALIGN_ASSET(2) char object_sstTex_01A5B0[] = dobject_sstTex_01A5B0; + +#define dobject_sstTex_01A1B0 "__OTR__objects/object_sst/object_sstTex_01A1B0" +static const ALIGN_ASSET(2) char object_sstTex_01A1B0[] = dobject_sstTex_01A1B0; + +#define dobject_sstTex_0197B0 "__OTR__objects/object_sst/object_sstTex_0197B0" +static const ALIGN_ASSET(2) char object_sstTex_0197B0[] = dobject_sstTex_0197B0; + +#define dobject_sstTex_019570 "__OTR__objects/object_sst/object_sstTex_019570" +static const ALIGN_ASSET(2) char object_sstTex_019570[] = dobject_sstTex_019570; + +#define dobject_sstTex_019530 "__OTR__objects/object_sst/object_sstTex_019530" +static const ALIGN_ASSET(2) char object_sstTex_019530[] = dobject_sstTex_019530; + +#define dobject_sstTex_019670 "__OTR__objects/object_sst/object_sstTex_019670" +static const ALIGN_ASSET(2) char object_sstTex_019670[] = dobject_sstTex_019670; + +#define dobject_sstTex_019770 "__OTR__objects/object_sst/object_sstTex_019770" +static const ALIGN_ASSET(2) char object_sstTex_019770[] = dobject_sstTex_019770; + +#define dobject_sstTex_01A0B0 "__OTR__objects/object_sst/object_sstTex_01A0B0" +static const ALIGN_ASSET(2) char object_sstTex_01A0B0[] = dobject_sstTex_01A0B0; \ No newline at end of file diff --git a/soh/assets/objects/object_st/object_st.h b/soh/assets/objects/object_st/object_st.h index 240709a59..742250578 100644 --- a/soh/assets/objects/object_st/object_st.h +++ b/soh/assets/objects/object_st/object_st.h @@ -1,268 +1,117 @@ #pragma once -#define dobject_st_Anim_000304 "__OTR__objects/object_st/object_st_Anim_000304" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Anim_000304[] = dobject_st_Anim_000304; -#else -static const char object_st_Anim_000304[] __attribute__((aligned (2))) = dobject_st_Anim_000304; -#endif - -#define dobject_st_Tex_000320 "__OTR__objects/object_st/object_st_Tex_000320" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_000320[] = dobject_st_Tex_000320; -#else -static const char object_st_Tex_000320[] __attribute__((aligned (2))) = dobject_st_Tex_000320; -#endif - -#define dobject_st_Tex_000360 "__OTR__objects/object_st/object_st_Tex_000360" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_000360[] = dobject_st_Tex_000360; -#else -static const char object_st_Tex_000360[] __attribute__((aligned (2))) = dobject_st_Tex_000360; -#endif - -#define dobject_st_Tex_000460 "__OTR__objects/object_st/object_st_Tex_000460" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_000460[] = dobject_st_Tex_000460; -#else -static const char object_st_Tex_000460[] __attribute__((aligned (2))) = dobject_st_Tex_000460; -#endif - -#define dobject_st_Tex_0004E0 "__OTR__objects/object_st/object_st_Tex_0004E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_0004E0[] = dobject_st_Tex_0004E0; -#else -static const char object_st_Tex_0004E0[] __attribute__((aligned (2))) = dobject_st_Tex_0004E0; -#endif - -#define dobject_st_Tex_000560 "__OTR__objects/object_st/object_st_Tex_000560" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_000560[] = dobject_st_Tex_000560; -#else -static const char object_st_Tex_000560[] __attribute__((aligned (2))) = dobject_st_Tex_000560; -#endif - -#define dobject_st_Tex_000760 "__OTR__objects/object_st/object_st_Tex_000760" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_000760[] = dobject_st_Tex_000760; -#else -static const char object_st_Tex_000760[] __attribute__((aligned (2))) = dobject_st_Tex_000760; -#endif - -#define dobject_st_Tex_0007E0 "__OTR__objects/object_st/object_st_Tex_0007E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_0007E0[] = dobject_st_Tex_0007E0; -#else -static const char object_st_Tex_0007E0[] __attribute__((aligned (2))) = dobject_st_Tex_0007E0; -#endif - -#define dobject_st_DL_001A40 "__OTR__objects/object_st/object_st_DL_001A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_001A40[] = dobject_st_DL_001A40; -#else -static const char object_st_DL_001A40[] __attribute__((aligned (2))) = dobject_st_DL_001A40; -#endif - -#define dobject_st_DL_001C30 "__OTR__objects/object_st/object_st_DL_001C30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_001C30[] = dobject_st_DL_001C30; -#else -static const char object_st_DL_001C30[] __attribute__((aligned (2))) = dobject_st_DL_001C30; -#endif - -#define dobject_st_DL_001FD0 "__OTR__objects/object_st/object_st_DL_001FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_001FD0[] = dobject_st_DL_001FD0; -#else -static const char object_st_DL_001FD0[] __attribute__((aligned (2))) = dobject_st_DL_001FD0; -#endif - -#define dobject_st_DL_002068 "__OTR__objects/object_st/object_st_DL_002068" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_002068[] = dobject_st_DL_002068; -#else -static const char object_st_DL_002068[] __attribute__((aligned (2))) = dobject_st_DL_002068; -#endif - -#define dobject_st_DL_002100 "__OTR__objects/object_st/object_st_DL_002100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_002100[] = dobject_st_DL_002100; -#else -static const char object_st_DL_002100[] __attribute__((aligned (2))) = dobject_st_DL_002100; -#endif - -#define dobject_st_DL_002198 "__OTR__objects/object_st/object_st_DL_002198" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_002198[] = dobject_st_DL_002198; -#else -static const char object_st_DL_002198[] __attribute__((aligned (2))) = dobject_st_DL_002198; -#endif - -#define dobject_st_DL_002230 "__OTR__objects/object_st/object_st_DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_002230[] = dobject_st_DL_002230; -#else -static const char object_st_DL_002230[] __attribute__((aligned (2))) = dobject_st_DL_002230; -#endif - -#define dobject_st_DL_0022C8 "__OTR__objects/object_st/object_st_DL_0022C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_0022C8[] = dobject_st_DL_0022C8; -#else -static const char object_st_DL_0022C8[] __attribute__((aligned (2))) = dobject_st_DL_0022C8; -#endif - -#define dobject_st_DL_002360 "__OTR__objects/object_st/object_st_DL_002360" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_002360[] = dobject_st_DL_002360; -#else -static const char object_st_DL_002360[] __attribute__((aligned (2))) = dobject_st_DL_002360; -#endif - -#define dobject_st_DL_0023F8 "__OTR__objects/object_st/object_st_DL_0023F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_0023F8[] = dobject_st_DL_0023F8; -#else -static const char object_st_DL_0023F8[] __attribute__((aligned (2))) = dobject_st_DL_0023F8; -#endif - -#define dobject_st_Tex_002490 "__OTR__objects/object_st/object_st_Tex_002490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_002490[] = dobject_st_Tex_002490; -#else -static const char object_st_Tex_002490[] __attribute__((aligned (2))) = dobject_st_Tex_002490; -#endif - -#define dobject_st_Tex_0024D0 "__OTR__objects/object_st/object_st_Tex_0024D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_0024D0[] = dobject_st_Tex_0024D0; -#else -static const char object_st_Tex_0024D0[] __attribute__((aligned (2))) = dobject_st_Tex_0024D0; -#endif - -#define dobject_st_Tex_0025D0 "__OTR__objects/object_st/object_st_Tex_0025D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_0025D0[] = dobject_st_Tex_0025D0; -#else -static const char object_st_Tex_0025D0[] __attribute__((aligned (2))) = dobject_st_Tex_0025D0; -#endif - -#define dobject_st_Tex_002650 "__OTR__objects/object_st/object_st_Tex_002650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Tex_002650[] = dobject_st_Tex_002650; -#else -static const char object_st_Tex_002650[] __attribute__((aligned (2))) = dobject_st_Tex_002650; -#endif - -#define dobject_st_Blob_003C50 "__OTR__objects/object_st/object_st_Blob_003C50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Blob_003C50[] = dobject_st_Blob_003C50; -#else -static const char object_st_Blob_003C50[] __attribute__((aligned (2))) = dobject_st_Blob_003C50; -#endif - -#define dobject_st_DL_003FB0 "__OTR__objects/object_st/object_st_DL_003FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_003FB0[] = dobject_st_DL_003FB0; -#else -static const char object_st_DL_003FB0[] __attribute__((aligned (2))) = dobject_st_DL_003FB0; -#endif - -#define dobject_st_DL_0043D8 "__OTR__objects/object_st/object_st_DL_0043D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_0043D8[] = dobject_st_DL_0043D8; -#else -static const char object_st_DL_0043D8[] __attribute__((aligned (2))) = dobject_st_DL_0043D8; -#endif - -#define dobject_st_DL_0045C0 "__OTR__objects/object_st/object_st_DL_0045C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_0045C0[] = dobject_st_DL_0045C0; -#else -static const char object_st_DL_0045C0[] __attribute__((aligned (2))) = dobject_st_DL_0045C0; -#endif - -#define dobject_st_DL_004658 "__OTR__objects/object_st/object_st_DL_004658" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_004658[] = dobject_st_DL_004658; -#else -static const char object_st_DL_004658[] __attribute__((aligned (2))) = dobject_st_DL_004658; -#endif - -#define dobject_st_DL_0046F0 "__OTR__objects/object_st/object_st_DL_0046F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_0046F0[] = dobject_st_DL_0046F0; -#else -static const char object_st_DL_0046F0[] __attribute__((aligned (2))) = dobject_st_DL_0046F0; -#endif - -#define dobject_st_DL_004788 "__OTR__objects/object_st/object_st_DL_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_004788[] = dobject_st_DL_004788; -#else -static const char object_st_DL_004788[] __attribute__((aligned (2))) = dobject_st_DL_004788; -#endif - -#define dobject_st_DL_004820 "__OTR__objects/object_st/object_st_DL_004820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_004820[] = dobject_st_DL_004820; -#else -static const char object_st_DL_004820[] __attribute__((aligned (2))) = dobject_st_DL_004820; -#endif - -#define dobject_st_DL_0048B8 "__OTR__objects/object_st/object_st_DL_0048B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_0048B8[] = dobject_st_DL_0048B8; -#else -static const char object_st_DL_0048B8[] __attribute__((aligned (2))) = dobject_st_DL_0048B8; -#endif - -#define dobject_st_DL_004950 "__OTR__objects/object_st/object_st_DL_004950" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_004950[] = dobject_st_DL_004950; -#else -static const char object_st_DL_004950[] __attribute__((aligned (2))) = dobject_st_DL_004950; -#endif - -#define dobject_st_DL_0049E8 "__OTR__objects/object_st/object_st_DL_0049E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_DL_0049E8[] = dobject_st_DL_0049E8; -#else -static const char object_st_DL_0049E8[] __attribute__((aligned (2))) = dobject_st_DL_0049E8; -#endif - -#define dgSkulltulaTokenDL "__OTR__objects/object_st/gSkulltulaTokenDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkulltulaTokenDL[] = dgSkulltulaTokenDL; -#else -static const char gSkulltulaTokenDL[] __attribute__((aligned (2))) = dgSkulltulaTokenDL; -#endif - -#define dgSkulltulaTokenFlameDL "__OTR__objects/object_st/gSkulltulaTokenFlameDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkulltulaTokenFlameDL[] = dgSkulltulaTokenFlameDL; -#else -static const char gSkulltulaTokenFlameDL[] __attribute__((aligned (2))) = dgSkulltulaTokenFlameDL; -#endif - -#define dobject_st_Skel_005298 "__OTR__objects/object_st/object_st_Skel_005298" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Skel_005298[] = dobject_st_Skel_005298; -#else -static const char object_st_Skel_005298[] __attribute__((aligned (2))) = dobject_st_Skel_005298; -#endif - -#define dobject_st_Anim_0055A8 "__OTR__objects/object_st/object_st_Anim_0055A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Anim_0055A8[] = dobject_st_Anim_0055A8; -#else -static const char object_st_Anim_0055A8[] __attribute__((aligned (2))) = dobject_st_Anim_0055A8; -#endif - -#define dobject_st_Anim_005B98 "__OTR__objects/object_st/object_st_Anim_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_st_Anim_005B98[] = dobject_st_Anim_005B98; -#else -static const char object_st_Anim_005B98[] __attribute__((aligned (2))) = dobject_st_Anim_005B98; -#endif - +#include "align_asset_macro.h" + +#define dobject_st_Anim_000304 "__OTR__objects/object_st/object_st_Anim_000304" +static const ALIGN_ASSET(2) char object_st_Anim_000304[] = dobject_st_Anim_000304; + +#define dobject_st_Tex_000320 "__OTR__objects/object_st/object_st_Tex_000320" +static const ALIGN_ASSET(2) char object_st_Tex_000320[] = dobject_st_Tex_000320; + +#define dobject_st_Tex_000360 "__OTR__objects/object_st/object_st_Tex_000360" +static const ALIGN_ASSET(2) char object_st_Tex_000360[] = dobject_st_Tex_000360; + +#define dobject_st_Tex_000460 "__OTR__objects/object_st/object_st_Tex_000460" +static const ALIGN_ASSET(2) char object_st_Tex_000460[] = dobject_st_Tex_000460; + +#define dobject_st_Tex_0004E0 "__OTR__objects/object_st/object_st_Tex_0004E0" +static const ALIGN_ASSET(2) char object_st_Tex_0004E0[] = dobject_st_Tex_0004E0; + +#define dobject_st_Tex_000560 "__OTR__objects/object_st/object_st_Tex_000560" +static const ALIGN_ASSET(2) char object_st_Tex_000560[] = dobject_st_Tex_000560; + +#define dobject_st_Tex_000760 "__OTR__objects/object_st/object_st_Tex_000760" +static const ALIGN_ASSET(2) char object_st_Tex_000760[] = dobject_st_Tex_000760; + +#define dobject_st_Tex_0007E0 "__OTR__objects/object_st/object_st_Tex_0007E0" +static const ALIGN_ASSET(2) char object_st_Tex_0007E0[] = dobject_st_Tex_0007E0; + +#define dobject_st_DL_001A40 "__OTR__objects/object_st/object_st_DL_001A40" +static const ALIGN_ASSET(2) char object_st_DL_001A40[] = dobject_st_DL_001A40; + +#define dobject_st_DL_001C30 "__OTR__objects/object_st/object_st_DL_001C30" +static const ALIGN_ASSET(2) char object_st_DL_001C30[] = dobject_st_DL_001C30; + +#define dobject_st_DL_001FD0 "__OTR__objects/object_st/object_st_DL_001FD0" +static const ALIGN_ASSET(2) char object_st_DL_001FD0[] = dobject_st_DL_001FD0; + +#define dobject_st_DL_002068 "__OTR__objects/object_st/object_st_DL_002068" +static const ALIGN_ASSET(2) char object_st_DL_002068[] = dobject_st_DL_002068; + +#define dobject_st_DL_002100 "__OTR__objects/object_st/object_st_DL_002100" +static const ALIGN_ASSET(2) char object_st_DL_002100[] = dobject_st_DL_002100; + +#define dobject_st_DL_002198 "__OTR__objects/object_st/object_st_DL_002198" +static const ALIGN_ASSET(2) char object_st_DL_002198[] = dobject_st_DL_002198; + +#define dobject_st_DL_002230 "__OTR__objects/object_st/object_st_DL_002230" +static const ALIGN_ASSET(2) char object_st_DL_002230[] = dobject_st_DL_002230; + +#define dobject_st_DL_0022C8 "__OTR__objects/object_st/object_st_DL_0022C8" +static const ALIGN_ASSET(2) char object_st_DL_0022C8[] = dobject_st_DL_0022C8; + +#define dobject_st_DL_002360 "__OTR__objects/object_st/object_st_DL_002360" +static const ALIGN_ASSET(2) char object_st_DL_002360[] = dobject_st_DL_002360; + +#define dobject_st_DL_0023F8 "__OTR__objects/object_st/object_st_DL_0023F8" +static const ALIGN_ASSET(2) char object_st_DL_0023F8[] = dobject_st_DL_0023F8; + +#define dobject_st_Tex_002490 "__OTR__objects/object_st/object_st_Tex_002490" +static const ALIGN_ASSET(2) char object_st_Tex_002490[] = dobject_st_Tex_002490; + +#define dobject_st_Tex_0024D0 "__OTR__objects/object_st/object_st_Tex_0024D0" +static const ALIGN_ASSET(2) char object_st_Tex_0024D0[] = dobject_st_Tex_0024D0; + +#define dobject_st_Tex_0025D0 "__OTR__objects/object_st/object_st_Tex_0025D0" +static const ALIGN_ASSET(2) char object_st_Tex_0025D0[] = dobject_st_Tex_0025D0; + +#define dobject_st_Tex_002650 "__OTR__objects/object_st/object_st_Tex_002650" +static const ALIGN_ASSET(2) char object_st_Tex_002650[] = dobject_st_Tex_002650; + +#define dobject_st_Blob_003C50 "__OTR__objects/object_st/object_st_Blob_003C50" +static const ALIGN_ASSET(2) char object_st_Blob_003C50[] = dobject_st_Blob_003C50; + +#define dobject_st_DL_003FB0 "__OTR__objects/object_st/object_st_DL_003FB0" +static const ALIGN_ASSET(2) char object_st_DL_003FB0[] = dobject_st_DL_003FB0; + +#define dobject_st_DL_0043D8 "__OTR__objects/object_st/object_st_DL_0043D8" +static const ALIGN_ASSET(2) char object_st_DL_0043D8[] = dobject_st_DL_0043D8; + +#define dobject_st_DL_0045C0 "__OTR__objects/object_st/object_st_DL_0045C0" +static const ALIGN_ASSET(2) char object_st_DL_0045C0[] = dobject_st_DL_0045C0; + +#define dobject_st_DL_004658 "__OTR__objects/object_st/object_st_DL_004658" +static const ALIGN_ASSET(2) char object_st_DL_004658[] = dobject_st_DL_004658; + +#define dobject_st_DL_0046F0 "__OTR__objects/object_st/object_st_DL_0046F0" +static const ALIGN_ASSET(2) char object_st_DL_0046F0[] = dobject_st_DL_0046F0; + +#define dobject_st_DL_004788 "__OTR__objects/object_st/object_st_DL_004788" +static const ALIGN_ASSET(2) char object_st_DL_004788[] = dobject_st_DL_004788; + +#define dobject_st_DL_004820 "__OTR__objects/object_st/object_st_DL_004820" +static const ALIGN_ASSET(2) char object_st_DL_004820[] = dobject_st_DL_004820; + +#define dobject_st_DL_0048B8 "__OTR__objects/object_st/object_st_DL_0048B8" +static const ALIGN_ASSET(2) char object_st_DL_0048B8[] = dobject_st_DL_0048B8; + +#define dobject_st_DL_004950 "__OTR__objects/object_st/object_st_DL_004950" +static const ALIGN_ASSET(2) char object_st_DL_004950[] = dobject_st_DL_004950; + +#define dobject_st_DL_0049E8 "__OTR__objects/object_st/object_st_DL_0049E8" +static const ALIGN_ASSET(2) char object_st_DL_0049E8[] = dobject_st_DL_0049E8; + +#define dgSkulltulaTokenDL "__OTR__objects/object_st/gSkulltulaTokenDL" +static const ALIGN_ASSET(2) char gSkulltulaTokenDL[] = dgSkulltulaTokenDL; + +#define dgSkulltulaTokenFlameDL "__OTR__objects/object_st/gSkulltulaTokenFlameDL" +static const ALIGN_ASSET(2) char gSkulltulaTokenFlameDL[] = dgSkulltulaTokenFlameDL; + +#define dobject_st_Skel_005298 "__OTR__objects/object_st/object_st_Skel_005298" +static const ALIGN_ASSET(2) char object_st_Skel_005298[] = dobject_st_Skel_005298; + +#define dobject_st_Anim_0055A8 "__OTR__objects/object_st/object_st_Anim_0055A8" +static const ALIGN_ASSET(2) char object_st_Anim_0055A8[] = dobject_st_Anim_0055A8; + +#define dobject_st_Anim_005B98 "__OTR__objects/object_st/object_st_Anim_005B98" +static const ALIGN_ASSET(2) char object_st_Anim_005B98[] = dobject_st_Anim_005B98; \ No newline at end of file diff --git a/soh/assets/objects/object_stream/object_stream.h b/soh/assets/objects/object_stream/object_stream.h index 598ef871a..c9072b8ce 100644 --- a/soh/assets/objects/object_stream/object_stream.h +++ b/soh/assets/objects/object_stream/object_stream.h @@ -1,16 +1,9 @@ #pragma once -#define dobject_stream_Tex_000000 "__OTR__objects/object_stream/object_stream_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_stream_Tex_000000[] = dobject_stream_Tex_000000; -#else -static const char object_stream_Tex_000000[] __attribute__((aligned (2))) = dobject_stream_Tex_000000; -#endif - -#define dobject_stream_DL_000950 "__OTR__objects/object_stream/object_stream_DL_000950" -#ifdef _WIN32 -static const __declspec(align(2)) char object_stream_DL_000950[] = dobject_stream_DL_000950; -#else -static const char object_stream_DL_000950[] __attribute__((aligned (2))) = dobject_stream_DL_000950; -#endif - +#include "align_asset_macro.h" + +#define dobject_stream_Tex_000000 "__OTR__objects/object_stream/object_stream_Tex_000000" +static const ALIGN_ASSET(2) char object_stream_Tex_000000[] = dobject_stream_Tex_000000; + +#define dobject_stream_DL_000950 "__OTR__objects/object_stream/object_stream_DL_000950" +static const ALIGN_ASSET(2) char object_stream_DL_000950[] = dobject_stream_DL_000950; \ No newline at end of file diff --git a/soh/assets/objects/object_syokudai/object_syokudai.h b/soh/assets/objects/object_syokudai/object_syokudai.h index d33aa4625..5cd6f92c1 100644 --- a/soh/assets/objects/object_syokudai/object_syokudai.h +++ b/soh/assets/objects/object_syokudai/object_syokudai.h @@ -1,58 +1,27 @@ #pragma once -#define dgGoldenTorchDL "__OTR__objects/object_syokudai/gGoldenTorchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenTorchDL[] = dgGoldenTorchDL; -#else -static const char gGoldenTorchDL[] __attribute__((aligned (2))) = dgGoldenTorchDL; -#endif - -#define dgWoodenTorchDL "__OTR__objects/object_syokudai/gWoodenTorchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWoodenTorchDL[] = dgWoodenTorchDL; -#else -static const char gWoodenTorchDL[] __attribute__((aligned (2))) = dgWoodenTorchDL; -#endif - -#define dgTimedTorchDL "__OTR__objects/object_syokudai/gTimedTorchDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTimedTorchDL[] = dgTimedTorchDL; -#else -static const char gTimedTorchDL[] __attribute__((aligned (2))) = dgTimedTorchDL; -#endif - -#define dgGoldenTorch1Tex "__OTR__objects/object_syokudai/gGoldenTorch1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenTorch1Tex[] = dgGoldenTorch1Tex; -#else -static const char gGoldenTorch1Tex[] __attribute__((aligned (2))) = dgGoldenTorch1Tex; -#endif - -#define dgGoldenTorch2Tex "__OTR__objects/object_syokudai/gGoldenTorch2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenTorch2Tex[] = dgGoldenTorch2Tex; -#else -static const char gGoldenTorch2Tex[] __attribute__((aligned (2))) = dgGoldenTorch2Tex; -#endif - -#define dgTorchFlameGuardTex "__OTR__objects/object_syokudai/gTorchFlameGuardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTorchFlameGuardTex[] = dgTorchFlameGuardTex; -#else -static const char gTorchFlameGuardTex[] __attribute__((aligned (2))) = dgTorchFlameGuardTex; -#endif - -#define dgTimedTorchTex "__OTR__objects/object_syokudai/gTimedTorchTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTimedTorchTex[] = dgTimedTorchTex; -#else -static const char gTimedTorchTex[] __attribute__((aligned (2))) = dgTimedTorchTex; -#endif - -#define dgWoodenTorchTex "__OTR__objects/object_syokudai/gWoodenTorchTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWoodenTorchTex[] = dgWoodenTorchTex; -#else -static const char gWoodenTorchTex[] __attribute__((aligned (2))) = dgWoodenTorchTex; -#endif - +#include "align_asset_macro.h" + +#define dgGoldenTorchDL "__OTR__objects/object_syokudai/gGoldenTorchDL" +static const ALIGN_ASSET(2) char gGoldenTorchDL[] = dgGoldenTorchDL; + +#define dgWoodenTorchDL "__OTR__objects/object_syokudai/gWoodenTorchDL" +static const ALIGN_ASSET(2) char gWoodenTorchDL[] = dgWoodenTorchDL; + +#define dgTimedTorchDL "__OTR__objects/object_syokudai/gTimedTorchDL" +static const ALIGN_ASSET(2) char gTimedTorchDL[] = dgTimedTorchDL; + +#define dgGoldenTorch1Tex "__OTR__objects/object_syokudai/gGoldenTorch1Tex" +static const ALIGN_ASSET(2) char gGoldenTorch1Tex[] = dgGoldenTorch1Tex; + +#define dgGoldenTorch2Tex "__OTR__objects/object_syokudai/gGoldenTorch2Tex" +static const ALIGN_ASSET(2) char gGoldenTorch2Tex[] = dgGoldenTorch2Tex; + +#define dgTorchFlameGuardTex "__OTR__objects/object_syokudai/gTorchFlameGuardTex" +static const ALIGN_ASSET(2) char gTorchFlameGuardTex[] = dgTorchFlameGuardTex; + +#define dgTimedTorchTex "__OTR__objects/object_syokudai/gTimedTorchTex" +static const ALIGN_ASSET(2) char gTimedTorchTex[] = dgTimedTorchTex; + +#define dgWoodenTorchTex "__OTR__objects/object_syokudai/gWoodenTorchTex" +static const ALIGN_ASSET(2) char gWoodenTorchTex[] = dgWoodenTorchTex; \ No newline at end of file diff --git a/soh/assets/objects/object_ta/object_ta.h b/soh/assets/objects/object_ta/object_ta.h index d4d5d724f..a446181ec 100644 --- a/soh/assets/objects/object_ta/object_ta.h +++ b/soh/assets/objects/object_ta/object_ta.h @@ -1,359 +1,156 @@ #pragma once -#define dgTalonSkel "__OTR__objects/object_ta/gTalonSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonSkel[] = dgTalonSkel; -#else -static const char gTalonSkel[] __attribute__((aligned (2))) = dgTalonSkel; -#endif - -#define dgTalonSitSleepingAnim "__OTR__objects/object_ta/gTalonSitSleepingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonSitSleepingAnim[] = dgTalonSitSleepingAnim; -#else -static const char gTalonSitSleepingAnim[] __attribute__((aligned (2))) = dgTalonSitSleepingAnim; -#endif - -#define dgTalonStandAnim "__OTR__objects/object_ta/gTalonStandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonStandAnim[] = dgTalonStandAnim; -#else -static const char gTalonStandAnim[] __attribute__((aligned (2))) = dgTalonStandAnim; -#endif - -#define dgTalonSitHandsUpAnim "__OTR__objects/object_ta/gTalonSitHandsUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonSitHandsUpAnim[] = dgTalonSitHandsUpAnim; -#else -static const char gTalonSitHandsUpAnim[] __attribute__((aligned (2))) = dgTalonSitHandsUpAnim; -#endif - -#define dgTalonSitWakeUpAnim "__OTR__objects/object_ta/gTalonSitWakeUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonSitWakeUpAnim[] = dgTalonSitWakeUpAnim; -#else -static const char gTalonSitWakeUpAnim[] __attribute__((aligned (2))) = dgTalonSitWakeUpAnim; -#endif - -#define dgTalonRunAnim "__OTR__objects/object_ta/gTalonRunAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRunAnim[] = dgTalonRunAnim; -#else -static const char gTalonRunAnim[] __attribute__((aligned (2))) = dgTalonRunAnim; -#endif - -#define dgTalonSleepAnim "__OTR__objects/object_ta/gTalonSleepAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonSleepAnim[] = dgTalonSleepAnim; -#else -static const char gTalonSleepAnim[] __attribute__((aligned (2))) = dgTalonSleepAnim; -#endif - -#define dgTalonRunTransitionAnim "__OTR__objects/object_ta/gTalonRunTransitionAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRunTransitionAnim[] = dgTalonRunTransitionAnim; -#else -static const char gTalonRunTransitionAnim[] __attribute__((aligned (2))) = dgTalonRunTransitionAnim; -#endif - -#define dgTalonWakeUpAnim "__OTR__objects/object_ta/gTalonWakeUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonWakeUpAnim[] = dgTalonWakeUpAnim; -#else -static const char gTalonWakeUpAnim[] __attribute__((aligned (2))) = dgTalonWakeUpAnim; -#endif - -#define dgTalonTorsoDL "__OTR__objects/object_ta/gTalonTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonTorsoDL[] = dgTalonTorsoDL; -#else -static const char gTalonTorsoDL[] __attribute__((aligned (2))) = dgTalonTorsoDL; -#endif - -#define dgTalonChestDL "__OTR__objects/object_ta/gTalonChestDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonChestDL[] = dgTalonChestDL; -#else -static const char gTalonChestDL[] __attribute__((aligned (2))) = dgTalonChestDL; -#endif - -#define dgTalonRightShoulderDL "__OTR__objects/object_ta/gTalonRightShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRightShoulderDL[] = dgTalonRightShoulderDL; -#else -static const char gTalonRightShoulderDL[] __attribute__((aligned (2))) = dgTalonRightShoulderDL; -#endif - -#define dgTalonRightArmDL "__OTR__objects/object_ta/gTalonRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRightArmDL[] = dgTalonRightArmDL; -#else -static const char gTalonRightArmDL[] __attribute__((aligned (2))) = dgTalonRightArmDL; -#endif - -#define dgTalonRightHandDL "__OTR__objects/object_ta/gTalonRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRightHandDL[] = dgTalonRightHandDL; -#else -static const char gTalonRightHandDL[] __attribute__((aligned (2))) = dgTalonRightHandDL; -#endif - -#define dgTalonLeftShoulderDL "__OTR__objects/object_ta/gTalonLeftShoulderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonLeftShoulderDL[] = dgTalonLeftShoulderDL; -#else -static const char gTalonLeftShoulderDL[] __attribute__((aligned (2))) = dgTalonLeftShoulderDL; -#endif - -#define dgTalonLeftArmDL "__OTR__objects/object_ta/gTalonLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonLeftArmDL[] = dgTalonLeftArmDL; -#else -static const char gTalonLeftArmDL[] __attribute__((aligned (2))) = dgTalonLeftArmDL; -#endif - -#define dgTalonLeftHandDL "__OTR__objects/object_ta/gTalonLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonLeftHandDL[] = dgTalonLeftHandDL; -#else -static const char gTalonLeftHandDL[] __attribute__((aligned (2))) = dgTalonLeftHandDL; -#endif - -#define dgTalonRightThighDL "__OTR__objects/object_ta/gTalonRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRightThighDL[] = dgTalonRightThighDL; -#else -static const char gTalonRightThighDL[] __attribute__((aligned (2))) = dgTalonRightThighDL; -#endif - -#define dgTalonRightLegDL "__OTR__objects/object_ta/gTalonRightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRightLegDL[] = dgTalonRightLegDL; -#else -static const char gTalonRightLegDL[] __attribute__((aligned (2))) = dgTalonRightLegDL; -#endif - -#define dgTalonLeftThighDL "__OTR__objects/object_ta/gTalonLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonLeftThighDL[] = dgTalonLeftThighDL; -#else -static const char gTalonLeftThighDL[] __attribute__((aligned (2))) = dgTalonLeftThighDL; -#endif - -#define dgTalonLeftLegDL "__OTR__objects/object_ta/gTalonLeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonLeftLegDL[] = dgTalonLeftLegDL; -#else -static const char gTalonLeftLegDL[] __attribute__((aligned (2))) = dgTalonLeftLegDL; -#endif - -#define dgTalonHeadDL "__OTR__objects/object_ta/gTalonHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonHeadDL[] = dgTalonHeadDL; -#else -static const char gTalonHeadDL[] __attribute__((aligned (2))) = dgTalonHeadDL; -#endif - -#define dgTalonRightFootDL "__OTR__objects/object_ta/gTalonRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRightFootDL[] = dgTalonRightFootDL; -#else -static const char gTalonRightFootDL[] __attribute__((aligned (2))) = dgTalonRightFootDL; -#endif - -#define dgTalonLeftFootDL "__OTR__objects/object_ta/gTalonLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonLeftFootDL[] = dgTalonLeftFootDL; -#else -static const char gTalonLeftFootDL[] __attribute__((aligned (2))) = dgTalonLeftFootDL; -#endif - -#define dgTalon2TLUT "__OTR__objects/object_ta/gTalon2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalon2TLUT[] = dgTalon2TLUT; -#else -static const char gTalon2TLUT[] __attribute__((aligned (2))) = dgTalon2TLUT; -#endif - -#define dgTalonEyeTLUT "__OTR__objects/object_ta/gTalonEyeTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonEyeTLUT[] = dgTalonEyeTLUT; -#else -static const char gTalonEyeTLUT[] __attribute__((aligned (2))) = dgTalonEyeTLUT; -#endif - -#define dgTalonHeadSkinTex "__OTR__objects/object_ta/gTalonHeadSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonHeadSkinTex[] = dgTalonHeadSkinTex; -#else -static const char gTalonHeadSkinTex[] __attribute__((aligned (2))) = dgTalonHeadSkinTex; -#endif - -#define dgTalonEarTex "__OTR__objects/object_ta/gTalonEarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonEarTex[] = dgTalonEarTex; -#else -static const char gTalonEarTex[] __attribute__((aligned (2))) = dgTalonEarTex; -#endif - -#define dgTalonFaceHairTex "__OTR__objects/object_ta/gTalonFaceHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonFaceHairTex[] = dgTalonFaceHairTex; -#else -static const char gTalonFaceHairTex[] __attribute__((aligned (2))) = dgTalonFaceHairTex; -#endif - -#define dgTalonRedTex "__OTR__objects/object_ta/gTalonRedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonRedTex[] = dgTalonRedTex; -#else -static const char gTalonRedTex[] __attribute__((aligned (2))) = dgTalonRedTex; -#endif - -#define dgTalonHeadHairTex "__OTR__objects/object_ta/gTalonHeadHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonHeadHairTex[] = dgTalonHeadHairTex; -#else -static const char gTalonHeadHairTex[] __attribute__((aligned (2))) = dgTalonHeadHairTex; -#endif - -#define dgTalonBootSideTex "__OTR__objects/object_ta/gTalonBootSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonBootSideTex[] = dgTalonBootSideTex; -#else -static const char gTalonBootSideTex[] __attribute__((aligned (2))) = dgTalonBootSideTex; -#endif - -#define dgTalonBootTopTex "__OTR__objects/object_ta/gTalonBootTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonBootTopTex[] = dgTalonBootTopTex; -#else -static const char gTalonBootTopTex[] __attribute__((aligned (2))) = dgTalonBootTopTex; -#endif - -#define dgTalonHeadHairTopTex "__OTR__objects/object_ta/gTalonHeadHairTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonHeadHairTopTex[] = dgTalonHeadHairTopTex; -#else -static const char gTalonHeadHairTopTex[] __attribute__((aligned (2))) = dgTalonHeadHairTopTex; -#endif - -#define dgTalonEyeOpenTex "__OTR__objects/object_ta/gTalonEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonEyeOpenTex[] = dgTalonEyeOpenTex; -#else -static const char gTalonEyeOpenTex[] __attribute__((aligned (2))) = dgTalonEyeOpenTex; -#endif - -#define dgTalonEyeHalfTex "__OTR__objects/object_ta/gTalonEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonEyeHalfTex[] = dgTalonEyeHalfTex; -#else -static const char gTalonEyeHalfTex[] __attribute__((aligned (2))) = dgTalonEyeHalfTex; -#endif - -#define dgTalonEyeClosedTex "__OTR__objects/object_ta/gTalonEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonEyeClosedTex[] = dgTalonEyeClosedTex; -#else -static const char gTalonEyeClosedTex[] __attribute__((aligned (2))) = dgTalonEyeClosedTex; -#endif - -#define dgTalonEyeClosed2Tex "__OTR__objects/object_ta/gTalonEyeClosed2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonEyeClosed2Tex[] = dgTalonEyeClosed2Tex; -#else -static const char gTalonEyeClosed2Tex[] __attribute__((aligned (2))) = dgTalonEyeClosed2Tex; -#endif - -#define dgTalonSkinAndClothesTLUT "__OTR__objects/object_ta/gTalonSkinAndClothesTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonSkinAndClothesTLUT[] = dgTalonSkinAndClothesTLUT; -#else -static const char gTalonSkinAndClothesTLUT[] __attribute__((aligned (2))) = dgTalonSkinAndClothesTLUT; -#endif - -#define dgTalonGradient2Tex "__OTR__objects/object_ta/gTalonGradient2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonGradient2Tex[] = dgTalonGradient2Tex; -#else -static const char gTalonGradient2Tex[] __attribute__((aligned (2))) = dgTalonGradient2Tex; -#endif - -#define dgTalonSkinTex "__OTR__objects/object_ta/gTalonSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonSkinTex[] = dgTalonSkinTex; -#else -static const char gTalonSkinTex[] __attribute__((aligned (2))) = dgTalonSkinTex; -#endif - -#define dgTalonFingersTex "__OTR__objects/object_ta/gTalonFingersTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonFingersTex[] = dgTalonFingersTex; -#else -static const char gTalonFingersTex[] __attribute__((aligned (2))) = dgTalonFingersTex; -#endif - -#define dgTalonArmHairTex "__OTR__objects/object_ta/gTalonArmHairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonArmHairTex[] = dgTalonArmHairTex; -#else -static const char gTalonArmHairTex[] __attribute__((aligned (2))) = dgTalonArmHairTex; -#endif - -#define dgTalonSleeveTex "__OTR__objects/object_ta/gTalonSleeveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonSleeveTex[] = dgTalonSleeveTex; -#else -static const char gTalonSleeveTex[] __attribute__((aligned (2))) = dgTalonSleeveTex; -#endif - -#define dgTalonBlueTex "__OTR__objects/object_ta/gTalonBlueTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonBlueTex[] = dgTalonBlueTex; -#else -static const char gTalonBlueTex[] __attribute__((aligned (2))) = dgTalonBlueTex; -#endif - -#define dgTalonBluePatternTex "__OTR__objects/object_ta/gTalonBluePatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonBluePatternTex[] = dgTalonBluePatternTex; -#else -static const char gTalonBluePatternTex[] __attribute__((aligned (2))) = dgTalonBluePatternTex; -#endif - -#define dgTalonBrownBlueOutlineTex "__OTR__objects/object_ta/gTalonBrownBlueOutlineTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonBrownBlueOutlineTex[] = dgTalonBrownBlueOutlineTex; -#else -static const char gTalonBrownBlueOutlineTex[] __attribute__((aligned (2))) = dgTalonBrownBlueOutlineTex; -#endif - -#define dgTalonNecklaceStringUpperTex "__OTR__objects/object_ta/gTalonNecklaceStringUpperTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonNecklaceStringUpperTex[] = dgTalonNecklaceStringUpperTex; -#else -static const char gTalonNecklaceStringUpperTex[] __attribute__((aligned (2))) = dgTalonNecklaceStringUpperTex; -#endif - -#define dgTalonBowserTex "__OTR__objects/object_ta/gTalonBowserTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonBowserTex[] = dgTalonBowserTex; -#else -static const char gTalonBowserTex[] __attribute__((aligned (2))) = dgTalonBowserTex; -#endif - -#define dgTalonNecklaceLowerStringsTex "__OTR__objects/object_ta/gTalonNecklaceLowerStringsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTalonNecklaceLowerStringsTex[] = dgTalonNecklaceLowerStringsTex; -#else -static const char gTalonNecklaceLowerStringsTex[] __attribute__((aligned (2))) = dgTalonNecklaceLowerStringsTex; -#endif - -#define dobject_ta_Blob_00B4B8 "__OTR__objects/object_ta/object_ta_Blob_00B4B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ta_Blob_00B4B8[] = dobject_ta_Blob_00B4B8; -#else -static const char object_ta_Blob_00B4B8[] __attribute__((aligned (2))) = dobject_ta_Blob_00B4B8; -#endif - +#include "align_asset_macro.h" + +#define dgTalonSkel "__OTR__objects/object_ta/gTalonSkel" +static const ALIGN_ASSET(2) char gTalonSkel[] = dgTalonSkel; + +#define dgTalonSitSleepingAnim "__OTR__objects/object_ta/gTalonSitSleepingAnim" +static const ALIGN_ASSET(2) char gTalonSitSleepingAnim[] = dgTalonSitSleepingAnim; + +#define dgTalonStandAnim "__OTR__objects/object_ta/gTalonStandAnim" +static const ALIGN_ASSET(2) char gTalonStandAnim[] = dgTalonStandAnim; + +#define dgTalonSitHandsUpAnim "__OTR__objects/object_ta/gTalonSitHandsUpAnim" +static const ALIGN_ASSET(2) char gTalonSitHandsUpAnim[] = dgTalonSitHandsUpAnim; + +#define dgTalonSitWakeUpAnim "__OTR__objects/object_ta/gTalonSitWakeUpAnim" +static const ALIGN_ASSET(2) char gTalonSitWakeUpAnim[] = dgTalonSitWakeUpAnim; + +#define dgTalonRunAnim "__OTR__objects/object_ta/gTalonRunAnim" +static const ALIGN_ASSET(2) char gTalonRunAnim[] = dgTalonRunAnim; + +#define dgTalonSleepAnim "__OTR__objects/object_ta/gTalonSleepAnim" +static const ALIGN_ASSET(2) char gTalonSleepAnim[] = dgTalonSleepAnim; + +#define dgTalonRunTransitionAnim "__OTR__objects/object_ta/gTalonRunTransitionAnim" +static const ALIGN_ASSET(2) char gTalonRunTransitionAnim[] = dgTalonRunTransitionAnim; + +#define dgTalonWakeUpAnim "__OTR__objects/object_ta/gTalonWakeUpAnim" +static const ALIGN_ASSET(2) char gTalonWakeUpAnim[] = dgTalonWakeUpAnim; + +#define dgTalonTorsoDL "__OTR__objects/object_ta/gTalonTorsoDL" +static const ALIGN_ASSET(2) char gTalonTorsoDL[] = dgTalonTorsoDL; + +#define dgTalonChestDL "__OTR__objects/object_ta/gTalonChestDL" +static const ALIGN_ASSET(2) char gTalonChestDL[] = dgTalonChestDL; + +#define dgTalonRightShoulderDL "__OTR__objects/object_ta/gTalonRightShoulderDL" +static const ALIGN_ASSET(2) char gTalonRightShoulderDL[] = dgTalonRightShoulderDL; + +#define dgTalonRightArmDL "__OTR__objects/object_ta/gTalonRightArmDL" +static const ALIGN_ASSET(2) char gTalonRightArmDL[] = dgTalonRightArmDL; + +#define dgTalonRightHandDL "__OTR__objects/object_ta/gTalonRightHandDL" +static const ALIGN_ASSET(2) char gTalonRightHandDL[] = dgTalonRightHandDL; + +#define dgTalonLeftShoulderDL "__OTR__objects/object_ta/gTalonLeftShoulderDL" +static const ALIGN_ASSET(2) char gTalonLeftShoulderDL[] = dgTalonLeftShoulderDL; + +#define dgTalonLeftArmDL "__OTR__objects/object_ta/gTalonLeftArmDL" +static const ALIGN_ASSET(2) char gTalonLeftArmDL[] = dgTalonLeftArmDL; + +#define dgTalonLeftHandDL "__OTR__objects/object_ta/gTalonLeftHandDL" +static const ALIGN_ASSET(2) char gTalonLeftHandDL[] = dgTalonLeftHandDL; + +#define dgTalonRightThighDL "__OTR__objects/object_ta/gTalonRightThighDL" +static const ALIGN_ASSET(2) char gTalonRightThighDL[] = dgTalonRightThighDL; + +#define dgTalonRightLegDL "__OTR__objects/object_ta/gTalonRightLegDL" +static const ALIGN_ASSET(2) char gTalonRightLegDL[] = dgTalonRightLegDL; + +#define dgTalonLeftThighDL "__OTR__objects/object_ta/gTalonLeftThighDL" +static const ALIGN_ASSET(2) char gTalonLeftThighDL[] = dgTalonLeftThighDL; + +#define dgTalonLeftLegDL "__OTR__objects/object_ta/gTalonLeftLegDL" +static const ALIGN_ASSET(2) char gTalonLeftLegDL[] = dgTalonLeftLegDL; + +#define dgTalonHeadDL "__OTR__objects/object_ta/gTalonHeadDL" +static const ALIGN_ASSET(2) char gTalonHeadDL[] = dgTalonHeadDL; + +#define dgTalonRightFootDL "__OTR__objects/object_ta/gTalonRightFootDL" +static const ALIGN_ASSET(2) char gTalonRightFootDL[] = dgTalonRightFootDL; + +#define dgTalonLeftFootDL "__OTR__objects/object_ta/gTalonLeftFootDL" +static const ALIGN_ASSET(2) char gTalonLeftFootDL[] = dgTalonLeftFootDL; + +#define dgTalon2TLUT "__OTR__objects/object_ta/gTalon2TLUT" +static const ALIGN_ASSET(2) char gTalon2TLUT[] = dgTalon2TLUT; + +#define dgTalonEyeTLUT "__OTR__objects/object_ta/gTalonEyeTLUT" +static const ALIGN_ASSET(2) char gTalonEyeTLUT[] = dgTalonEyeTLUT; + +#define dgTalonHeadSkinTex "__OTR__objects/object_ta/gTalonHeadSkinTex" +static const ALIGN_ASSET(2) char gTalonHeadSkinTex[] = dgTalonHeadSkinTex; + +#define dgTalonEarTex "__OTR__objects/object_ta/gTalonEarTex" +static const ALIGN_ASSET(2) char gTalonEarTex[] = dgTalonEarTex; + +#define dgTalonFaceHairTex "__OTR__objects/object_ta/gTalonFaceHairTex" +static const ALIGN_ASSET(2) char gTalonFaceHairTex[] = dgTalonFaceHairTex; + +#define dgTalonRedTex "__OTR__objects/object_ta/gTalonRedTex" +static const ALIGN_ASSET(2) char gTalonRedTex[] = dgTalonRedTex; + +#define dgTalonHeadHairTex "__OTR__objects/object_ta/gTalonHeadHairTex" +static const ALIGN_ASSET(2) char gTalonHeadHairTex[] = dgTalonHeadHairTex; + +#define dgTalonBootSideTex "__OTR__objects/object_ta/gTalonBootSideTex" +static const ALIGN_ASSET(2) char gTalonBootSideTex[] = dgTalonBootSideTex; + +#define dgTalonBootTopTex "__OTR__objects/object_ta/gTalonBootTopTex" +static const ALIGN_ASSET(2) char gTalonBootTopTex[] = dgTalonBootTopTex; + +#define dgTalonHeadHairTopTex "__OTR__objects/object_ta/gTalonHeadHairTopTex" +static const ALIGN_ASSET(2) char gTalonHeadHairTopTex[] = dgTalonHeadHairTopTex; + +#define dgTalonEyeOpenTex "__OTR__objects/object_ta/gTalonEyeOpenTex" +static const ALIGN_ASSET(2) char gTalonEyeOpenTex[] = dgTalonEyeOpenTex; + +#define dgTalonEyeHalfTex "__OTR__objects/object_ta/gTalonEyeHalfTex" +static const ALIGN_ASSET(2) char gTalonEyeHalfTex[] = dgTalonEyeHalfTex; + +#define dgTalonEyeClosedTex "__OTR__objects/object_ta/gTalonEyeClosedTex" +static const ALIGN_ASSET(2) char gTalonEyeClosedTex[] = dgTalonEyeClosedTex; + +#define dgTalonEyeClosed2Tex "__OTR__objects/object_ta/gTalonEyeClosed2Tex" +static const ALIGN_ASSET(2) char gTalonEyeClosed2Tex[] = dgTalonEyeClosed2Tex; + +#define dgTalonSkinAndClothesTLUT "__OTR__objects/object_ta/gTalonSkinAndClothesTLUT" +static const ALIGN_ASSET(2) char gTalonSkinAndClothesTLUT[] = dgTalonSkinAndClothesTLUT; + +#define dgTalonGradient2Tex "__OTR__objects/object_ta/gTalonGradient2Tex" +static const ALIGN_ASSET(2) char gTalonGradient2Tex[] = dgTalonGradient2Tex; + +#define dgTalonSkinTex "__OTR__objects/object_ta/gTalonSkinTex" +static const ALIGN_ASSET(2) char gTalonSkinTex[] = dgTalonSkinTex; + +#define dgTalonFingersTex "__OTR__objects/object_ta/gTalonFingersTex" +static const ALIGN_ASSET(2) char gTalonFingersTex[] = dgTalonFingersTex; + +#define dgTalonArmHairTex "__OTR__objects/object_ta/gTalonArmHairTex" +static const ALIGN_ASSET(2) char gTalonArmHairTex[] = dgTalonArmHairTex; + +#define dgTalonSleeveTex "__OTR__objects/object_ta/gTalonSleeveTex" +static const ALIGN_ASSET(2) char gTalonSleeveTex[] = dgTalonSleeveTex; + +#define dgTalonBlueTex "__OTR__objects/object_ta/gTalonBlueTex" +static const ALIGN_ASSET(2) char gTalonBlueTex[] = dgTalonBlueTex; + +#define dgTalonBluePatternTex "__OTR__objects/object_ta/gTalonBluePatternTex" +static const ALIGN_ASSET(2) char gTalonBluePatternTex[] = dgTalonBluePatternTex; + +#define dgTalonBrownBlueOutlineTex "__OTR__objects/object_ta/gTalonBrownBlueOutlineTex" +static const ALIGN_ASSET(2) char gTalonBrownBlueOutlineTex[] = dgTalonBrownBlueOutlineTex; + +#define dgTalonNecklaceStringUpperTex "__OTR__objects/object_ta/gTalonNecklaceStringUpperTex" +static const ALIGN_ASSET(2) char gTalonNecklaceStringUpperTex[] = dgTalonNecklaceStringUpperTex; + +#define dgTalonBowserTex "__OTR__objects/object_ta/gTalonBowserTex" +static const ALIGN_ASSET(2) char gTalonBowserTex[] = dgTalonBowserTex; + +#define dgTalonNecklaceLowerStringsTex "__OTR__objects/object_ta/gTalonNecklaceLowerStringsTex" +static const ALIGN_ASSET(2) char gTalonNecklaceLowerStringsTex[] = dgTalonNecklaceLowerStringsTex; + +#define dobject_ta_Blob_00B4B8 "__OTR__objects/object_ta/object_ta_Blob_00B4B8" +static const ALIGN_ASSET(2) char object_ta_Blob_00B4B8[] = dobject_ta_Blob_00B4B8; \ No newline at end of file diff --git a/soh/assets/objects/object_timeblock/object_timeblock.h b/soh/assets/objects/object_timeblock/object_timeblock.h index ec3fbcf90..c9d776f8a 100644 --- a/soh/assets/objects/object_timeblock/object_timeblock.h +++ b/soh/assets/objects/object_timeblock/object_timeblock.h @@ -1,23 +1,12 @@ #pragma once -#define dgSongOfTimeBlockDL "__OTR__objects/object_timeblock/gSongOfTimeBlockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfTimeBlockDL[] = dgSongOfTimeBlockDL; -#else -static const char gSongOfTimeBlockDL[] __attribute__((aligned (2))) = dgSongOfTimeBlockDL; -#endif - -#define dgSongOfTimeBlockTex "__OTR__objects/object_timeblock/gSongOfTimeBlockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfTimeBlockTex[] = dgSongOfTimeBlockTex; -#else -static const char gSongOfTimeBlockTex[] __attribute__((aligned (2))) = dgSongOfTimeBlockTex; -#endif - -#define dgSongOfTimeBlockCol "__OTR__objects/object_timeblock/gSongOfTimeBlockCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfTimeBlockCol[] = dgSongOfTimeBlockCol; -#else -static const char gSongOfTimeBlockCol[] __attribute__((aligned (2))) = dgSongOfTimeBlockCol; -#endif - +#include "align_asset_macro.h" + +#define dgSongOfTimeBlockDL "__OTR__objects/object_timeblock/gSongOfTimeBlockDL" +static const ALIGN_ASSET(2) char gSongOfTimeBlockDL[] = dgSongOfTimeBlockDL; + +#define dgSongOfTimeBlockTex "__OTR__objects/object_timeblock/gSongOfTimeBlockTex" +static const ALIGN_ASSET(2) char gSongOfTimeBlockTex[] = dgSongOfTimeBlockTex; + +#define dgSongOfTimeBlockCol "__OTR__objects/object_timeblock/gSongOfTimeBlockCol" +static const ALIGN_ASSET(2) char gSongOfTimeBlockCol[] = dgSongOfTimeBlockCol; \ No newline at end of file diff --git a/soh/assets/objects/object_tite/object_tite.h b/soh/assets/objects/object_tite/object_tite.h index a29aaf416..8c7ad6451 100644 --- a/soh/assets/objects/object_tite/object_tite.h +++ b/soh/assets/objects/object_tite/object_tite.h @@ -1,191 +1,84 @@ #pragma once -#define dobject_tite_Anim_0001D4 "__OTR__objects/object_tite/object_tite_Anim_0001D4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Anim_0001D4[] = dobject_tite_Anim_0001D4; -#else -static const char object_tite_Anim_0001D4[] __attribute__((aligned (2))) = dobject_tite_Anim_0001D4; -#endif - -#define dobject_tite_Anim_0004F8 "__OTR__objects/object_tite/object_tite_Anim_0004F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Anim_0004F8[] = dobject_tite_Anim_0004F8; -#else -static const char object_tite_Anim_0004F8[] __attribute__((aligned (2))) = dobject_tite_Anim_0004F8; -#endif - -#define dobject_tite_Anim_00069C "__OTR__objects/object_tite/object_tite_Anim_00069C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Anim_00069C[] = dobject_tite_Anim_00069C; -#else -static const char object_tite_Anim_00069C[] __attribute__((aligned (2))) = dobject_tite_Anim_00069C; -#endif - -#define dobject_tite_Anim_00083C "__OTR__objects/object_tite/object_tite_Anim_00083C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Anim_00083C[] = dobject_tite_Anim_00083C; -#else -static const char object_tite_Anim_00083C[] __attribute__((aligned (2))) = dobject_tite_Anim_00083C; -#endif - -#define dobject_tite_Anim_000A14 "__OTR__objects/object_tite/object_tite_Anim_000A14" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Anim_000A14[] = dobject_tite_Anim_000A14; -#else -static const char object_tite_Anim_000A14[] __attribute__((aligned (2))) = dobject_tite_Anim_000A14; -#endif - -#define dobject_tite_Anim_000C70 "__OTR__objects/object_tite/object_tite_Anim_000C70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Anim_000C70[] = dobject_tite_Anim_000C70; -#else -static const char object_tite_Anim_000C70[] __attribute__((aligned (2))) = dobject_tite_Anim_000C70; -#endif - -#define dobject_tite_Anim_000F50 "__OTR__objects/object_tite/object_tite_Anim_000F50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Anim_000F50[] = dobject_tite_Anim_000F50; -#else -static const char object_tite_Anim_000F50[] __attribute__((aligned (2))) = dobject_tite_Anim_000F50; -#endif - -#define dobject_tite_Anim_0012E4 "__OTR__objects/object_tite/object_tite_Anim_0012E4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Anim_0012E4[] = dobject_tite_Anim_0012E4; -#else -static const char object_tite_Anim_0012E4[] __attribute__((aligned (2))) = dobject_tite_Anim_0012E4; -#endif - -#define dobject_tite_Blob_0012F4 "__OTR__objects/object_tite/object_tite_Blob_0012F4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Blob_0012F4[] = dobject_tite_Blob_0012F4; -#else -static const char object_tite_Blob_0012F4[] __attribute__((aligned (2))) = dobject_tite_Blob_0012F4; -#endif - -#define dobject_tite_Tex_001300 "__OTR__objects/object_tite/object_tite_Tex_001300" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Tex_001300[] = dobject_tite_Tex_001300; -#else -static const char object_tite_Tex_001300[] __attribute__((aligned (2))) = dobject_tite_Tex_001300; -#endif - -#define dobject_tite_Tex_001700 "__OTR__objects/object_tite/object_tite_Tex_001700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Tex_001700[] = dobject_tite_Tex_001700; -#else -static const char object_tite_Tex_001700[] __attribute__((aligned (2))) = dobject_tite_Tex_001700; -#endif - -#define dobject_tite_Tex_001900 "__OTR__objects/object_tite/object_tite_Tex_001900" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Tex_001900[] = dobject_tite_Tex_001900; -#else -static const char object_tite_Tex_001900[] __attribute__((aligned (2))) = dobject_tite_Tex_001900; -#endif - -#define dobject_tite_Tex_001A00 "__OTR__objects/object_tite/object_tite_Tex_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Tex_001A00[] = dobject_tite_Tex_001A00; -#else -static const char object_tite_Tex_001A00[] __attribute__((aligned (2))) = dobject_tite_Tex_001A00; -#endif - -#define dobject_tite_Tex_001A80 "__OTR__objects/object_tite/object_tite_Tex_001A80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Tex_001A80[] = dobject_tite_Tex_001A80; -#else -static const char object_tite_Tex_001A80[] __attribute__((aligned (2))) = dobject_tite_Tex_001A80; -#endif - -#define dobject_tite_Tex_001B00 "__OTR__objects/object_tite/object_tite_Tex_001B00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Tex_001B00[] = dobject_tite_Tex_001B00; -#else -static const char object_tite_Tex_001B00[] __attribute__((aligned (2))) = dobject_tite_Tex_001B00; -#endif - -#define dobject_tite_Tex_001F00 "__OTR__objects/object_tite/object_tite_Tex_001F00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Tex_001F00[] = dobject_tite_Tex_001F00; -#else -static const char object_tite_Tex_001F00[] __attribute__((aligned (2))) = dobject_tite_Tex_001F00; -#endif - -#define dobject_tite_Tex_002100 "__OTR__objects/object_tite/object_tite_Tex_002100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Tex_002100[] = dobject_tite_Tex_002100; -#else -static const char object_tite_Tex_002100[] __attribute__((aligned (2))) = dobject_tite_Tex_002100; -#endif - -#define dobject_tite_DL_002FF0 "__OTR__objects/object_tite/object_tite_DL_002FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_002FF0[] = dobject_tite_DL_002FF0; -#else -static const char object_tite_DL_002FF0[] __attribute__((aligned (2))) = dobject_tite_DL_002FF0; -#endif - -#define dobject_tite_DL_003160 "__OTR__objects/object_tite/object_tite_DL_003160" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_003160[] = dobject_tite_DL_003160; -#else -static const char object_tite_DL_003160[] __attribute__((aligned (2))) = dobject_tite_DL_003160; -#endif - -#define dobject_tite_DL_003290 "__OTR__objects/object_tite/object_tite_DL_003290" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_003290[] = dobject_tite_DL_003290; -#else -static const char object_tite_DL_003290[] __attribute__((aligned (2))) = dobject_tite_DL_003290; -#endif - -#define dobject_tite_DL_003330 "__OTR__objects/object_tite/object_tite_DL_003330" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_003330[] = dobject_tite_DL_003330; -#else -static const char object_tite_DL_003330[] __attribute__((aligned (2))) = dobject_tite_DL_003330; -#endif - -#define dobject_tite_DL_003460 "__OTR__objects/object_tite/object_tite_DL_003460" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_003460[] = dobject_tite_DL_003460; -#else -static const char object_tite_DL_003460[] __attribute__((aligned (2))) = dobject_tite_DL_003460; -#endif - -#define dobject_tite_DL_003500 "__OTR__objects/object_tite/object_tite_DL_003500" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_003500[] = dobject_tite_DL_003500; -#else -static const char object_tite_DL_003500[] __attribute__((aligned (2))) = dobject_tite_DL_003500; -#endif - -#define dobject_tite_DL_003630 "__OTR__objects/object_tite/object_tite_DL_003630" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_003630[] = dobject_tite_DL_003630; -#else -static const char object_tite_DL_003630[] __attribute__((aligned (2))) = dobject_tite_DL_003630; -#endif - -#define dobject_tite_DL_0036D0 "__OTR__objects/object_tite/object_tite_DL_0036D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_0036D0[] = dobject_tite_DL_0036D0; -#else -static const char object_tite_DL_0036D0[] __attribute__((aligned (2))) = dobject_tite_DL_0036D0; -#endif - -#define dobject_tite_DL_003800 "__OTR__objects/object_tite/object_tite_DL_003800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_DL_003800[] = dobject_tite_DL_003800; -#else -static const char object_tite_DL_003800[] __attribute__((aligned (2))) = dobject_tite_DL_003800; -#endif - -#define dobject_tite_Skel_003A20 "__OTR__objects/object_tite/object_tite_Skel_003A20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tite_Skel_003A20[] = dobject_tite_Skel_003A20; -#else -static const char object_tite_Skel_003A20[] __attribute__((aligned (2))) = dobject_tite_Skel_003A20; -#endif - +#include "align_asset_macro.h" + +#define dobject_tite_Anim_0001D4 "__OTR__objects/object_tite/object_tite_Anim_0001D4" +static const ALIGN_ASSET(2) char object_tite_Anim_0001D4[] = dobject_tite_Anim_0001D4; + +#define dobject_tite_Anim_0004F8 "__OTR__objects/object_tite/object_tite_Anim_0004F8" +static const ALIGN_ASSET(2) char object_tite_Anim_0004F8[] = dobject_tite_Anim_0004F8; + +#define dobject_tite_Anim_00069C "__OTR__objects/object_tite/object_tite_Anim_00069C" +static const ALIGN_ASSET(2) char object_tite_Anim_00069C[] = dobject_tite_Anim_00069C; + +#define dobject_tite_Anim_00083C "__OTR__objects/object_tite/object_tite_Anim_00083C" +static const ALIGN_ASSET(2) char object_tite_Anim_00083C[] = dobject_tite_Anim_00083C; + +#define dobject_tite_Anim_000A14 "__OTR__objects/object_tite/object_tite_Anim_000A14" +static const ALIGN_ASSET(2) char object_tite_Anim_000A14[] = dobject_tite_Anim_000A14; + +#define dobject_tite_Anim_000C70 "__OTR__objects/object_tite/object_tite_Anim_000C70" +static const ALIGN_ASSET(2) char object_tite_Anim_000C70[] = dobject_tite_Anim_000C70; + +#define dobject_tite_Anim_000F50 "__OTR__objects/object_tite/object_tite_Anim_000F50" +static const ALIGN_ASSET(2) char object_tite_Anim_000F50[] = dobject_tite_Anim_000F50; + +#define dobject_tite_Anim_0012E4 "__OTR__objects/object_tite/object_tite_Anim_0012E4" +static const ALIGN_ASSET(2) char object_tite_Anim_0012E4[] = dobject_tite_Anim_0012E4; + +#define dobject_tite_Blob_0012F4 "__OTR__objects/object_tite/object_tite_Blob_0012F4" +static const ALIGN_ASSET(2) char object_tite_Blob_0012F4[] = dobject_tite_Blob_0012F4; + +#define dobject_tite_Tex_001300 "__OTR__objects/object_tite/object_tite_Tex_001300" +static const ALIGN_ASSET(2) char object_tite_Tex_001300[] = dobject_tite_Tex_001300; + +#define dobject_tite_Tex_001700 "__OTR__objects/object_tite/object_tite_Tex_001700" +static const ALIGN_ASSET(2) char object_tite_Tex_001700[] = dobject_tite_Tex_001700; + +#define dobject_tite_Tex_001900 "__OTR__objects/object_tite/object_tite_Tex_001900" +static const ALIGN_ASSET(2) char object_tite_Tex_001900[] = dobject_tite_Tex_001900; + +#define dobject_tite_Tex_001A00 "__OTR__objects/object_tite/object_tite_Tex_001A00" +static const ALIGN_ASSET(2) char object_tite_Tex_001A00[] = dobject_tite_Tex_001A00; + +#define dobject_tite_Tex_001A80 "__OTR__objects/object_tite/object_tite_Tex_001A80" +static const ALIGN_ASSET(2) char object_tite_Tex_001A80[] = dobject_tite_Tex_001A80; + +#define dobject_tite_Tex_001B00 "__OTR__objects/object_tite/object_tite_Tex_001B00" +static const ALIGN_ASSET(2) char object_tite_Tex_001B00[] = dobject_tite_Tex_001B00; + +#define dobject_tite_Tex_001F00 "__OTR__objects/object_tite/object_tite_Tex_001F00" +static const ALIGN_ASSET(2) char object_tite_Tex_001F00[] = dobject_tite_Tex_001F00; + +#define dobject_tite_Tex_002100 "__OTR__objects/object_tite/object_tite_Tex_002100" +static const ALIGN_ASSET(2) char object_tite_Tex_002100[] = dobject_tite_Tex_002100; + +#define dobject_tite_DL_002FF0 "__OTR__objects/object_tite/object_tite_DL_002FF0" +static const ALIGN_ASSET(2) char object_tite_DL_002FF0[] = dobject_tite_DL_002FF0; + +#define dobject_tite_DL_003160 "__OTR__objects/object_tite/object_tite_DL_003160" +static const ALIGN_ASSET(2) char object_tite_DL_003160[] = dobject_tite_DL_003160; + +#define dobject_tite_DL_003290 "__OTR__objects/object_tite/object_tite_DL_003290" +static const ALIGN_ASSET(2) char object_tite_DL_003290[] = dobject_tite_DL_003290; + +#define dobject_tite_DL_003330 "__OTR__objects/object_tite/object_tite_DL_003330" +static const ALIGN_ASSET(2) char object_tite_DL_003330[] = dobject_tite_DL_003330; + +#define dobject_tite_DL_003460 "__OTR__objects/object_tite/object_tite_DL_003460" +static const ALIGN_ASSET(2) char object_tite_DL_003460[] = dobject_tite_DL_003460; + +#define dobject_tite_DL_003500 "__OTR__objects/object_tite/object_tite_DL_003500" +static const ALIGN_ASSET(2) char object_tite_DL_003500[] = dobject_tite_DL_003500; + +#define dobject_tite_DL_003630 "__OTR__objects/object_tite/object_tite_DL_003630" +static const ALIGN_ASSET(2) char object_tite_DL_003630[] = dobject_tite_DL_003630; + +#define dobject_tite_DL_0036D0 "__OTR__objects/object_tite/object_tite_DL_0036D0" +static const ALIGN_ASSET(2) char object_tite_DL_0036D0[] = dobject_tite_DL_0036D0; + +#define dobject_tite_DL_003800 "__OTR__objects/object_tite/object_tite_DL_003800" +static const ALIGN_ASSET(2) char object_tite_DL_003800[] = dobject_tite_DL_003800; + +#define dobject_tite_Skel_003A20 "__OTR__objects/object_tite/object_tite_Skel_003A20" +static const ALIGN_ASSET(2) char object_tite_Skel_003A20[] = dobject_tite_Skel_003A20; \ No newline at end of file diff --git a/soh/assets/objects/object_tk/object_tk.h b/soh/assets/objects/object_tk/object_tk.h index effa5f87a..1d7756333 100644 --- a/soh/assets/objects/object_tk/object_tk.h +++ b/soh/assets/objects/object_tk/object_tk.h @@ -1,338 +1,147 @@ #pragma once -#define dgDampeDigAnim "__OTR__objects/object_tk/gDampeDigAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeDigAnim[] = dgDampeDigAnim; -#else -static const char gDampeDigAnim[] __attribute__((aligned (2))) = dgDampeDigAnim; -#endif - -#define dgDampeWalkAnim "__OTR__objects/object_tk/gDampeWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeWalkAnim[] = dgDampeWalkAnim; -#else -static const char gDampeWalkAnim[] __attribute__((aligned (2))) = dgDampeWalkAnim; -#endif - -#define dgDampeRestAnim "__OTR__objects/object_tk/gDampeRestAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeRestAnim[] = dgDampeRestAnim; -#else -static const char gDampeRestAnim[] __attribute__((aligned (2))) = dgDampeRestAnim; -#endif - -#define dgDampeFloatAnim "__OTR__objects/object_tk/gDampeFloatAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeFloatAnim[] = dgDampeFloatAnim; -#else -static const char gDampeFloatAnim[] __attribute__((aligned (2))) = dgDampeFloatAnim; -#endif - -#define dgDampeEyeOpenTex "__OTR__objects/object_tk/gDampeEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeEyeOpenTex[] = dgDampeEyeOpenTex; -#else -static const char gDampeEyeOpenTex[] __attribute__((aligned (2))) = dgDampeEyeOpenTex; -#endif - -#define dgDampeEyeHalfTex "__OTR__objects/object_tk/gDampeEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeEyeHalfTex[] = dgDampeEyeHalfTex; -#else -static const char gDampeEyeHalfTex[] __attribute__((aligned (2))) = dgDampeEyeHalfTex; -#endif - -#define dgDampeEyeClosedTex "__OTR__objects/object_tk/gDampeEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeEyeClosedTex[] = dgDampeEyeClosedTex; -#else -static const char gDampeEyeClosedTex[] __attribute__((aligned (2))) = dgDampeEyeClosedTex; -#endif - -#define dgDampeUnkTex "__OTR__objects/object_tk/gDampeUnkTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeUnkTex[] = dgDampeUnkTex; -#else -static const char gDampeUnkTex[] __attribute__((aligned (2))) = dgDampeUnkTex; -#endif - -#define dgDampeShovelDL "__OTR__objects/object_tk/gDampeShovelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeShovelDL[] = dgDampeShovelDL; -#else -static const char gDampeShovelDL[] __attribute__((aligned (2))) = dgDampeShovelDL; -#endif - -#define dgDampeLanternDL "__OTR__objects/object_tk/gDampeLanternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeLanternDL[] = dgDampeLanternDL; -#else -static const char gDampeLanternDL[] __attribute__((aligned (2))) = dgDampeLanternDL; -#endif - -#define dgDampeHaloDL "__OTR__objects/object_tk/gDampeHaloDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeHaloDL[] = dgDampeHaloDL; -#else -static const char gDampeHaloDL[] __attribute__((aligned (2))) = dgDampeHaloDL; -#endif - -#define dgDampeEff1DL "__OTR__objects/object_tk/gDampeEff1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeEff1DL[] = dgDampeEff1DL; -#else -static const char gDampeEff1DL[] __attribute__((aligned (2))) = dgDampeEff1DL; -#endif - -#define dgDampeEff2DL "__OTR__objects/object_tk/gDampeEff2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeEff2DL[] = dgDampeEff2DL; -#else -static const char gDampeEff2DL[] __attribute__((aligned (2))) = dgDampeEff2DL; -#endif - -#define dgDampeSkel "__OTR__objects/object_tk/gDampeSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkel[] = dgDampeSkel; -#else -static const char gDampeSkel[] __attribute__((aligned (2))) = dgDampeSkel; -#endif - -#define dobject_tkTLUT_003780 "__OTR__objects/object_tk/object_tkTLUT_003780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTLUT_003780[] = dobject_tkTLUT_003780; -#else -static const char object_tkTLUT_003780[] __attribute__((aligned (2))) = dobject_tkTLUT_003780; -#endif - -#define dobject_tkTex_009CC0 "__OTR__objects/object_tk/object_tkTex_009CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_009CC0[] = dobject_tkTex_009CC0; -#else -static const char object_tkTex_009CC0[] __attribute__((aligned (2))) = dobject_tkTex_009CC0; -#endif - -#define dobject_tkTex_009D40 "__OTR__objects/object_tk/object_tkTex_009D40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_009D40[] = dobject_tkTex_009D40; -#else -static const char object_tkTex_009D40[] __attribute__((aligned (2))) = dobject_tkTex_009D40; -#endif - -#define dobject_tkTex_009C80 "__OTR__objects/object_tk/object_tkTex_009C80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_009C80[] = dobject_tkTex_009C80; -#else -static const char object_tkTex_009C80[] __attribute__((aligned (2))) = dobject_tkTex_009C80; -#endif - -#define dobject_tkTex_00B288 "__OTR__objects/object_tk/object_tkTex_00B288" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_00B288[] = dobject_tkTex_00B288; -#else -static const char object_tkTex_00B288[] __attribute__((aligned (2))) = dobject_tkTex_00B288; -#endif - -#define dobject_tkTex_00B088 "__OTR__objects/object_tk/object_tkTex_00B088" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_00B088[] = dobject_tkTex_00B088; -#else -static const char object_tkTex_00B088[] __attribute__((aligned (2))) = dobject_tkTex_00B088; -#endif - -#define dobject_tkTex_00B488 "__OTR__objects/object_tk/object_tkTex_00B488" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_00B488[] = dobject_tkTex_00B488; -#else -static const char object_tkTex_00B488[] __attribute__((aligned (2))) = dobject_tkTex_00B488; -#endif - -#define dgDampeSkelLimbsLimb_00BD30DL_008020 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD30DL_008020" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD30DL_008020[] = dgDampeSkelLimbsLimb_00BD30DL_008020; -#else -static const char gDampeSkelLimbsLimb_00BD30DL_008020[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD30DL_008020; -#endif - -#define dgDampeSkelLimbsLimb_00BD3CDL_009818 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD3CDL_009818" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD3CDL_009818[] = dgDampeSkelLimbsLimb_00BD3CDL_009818; -#else -static const char gDampeSkelLimbsLimb_00BD3CDL_009818[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD3CDL_009818; -#endif - -#define dgDampeSkelLimbsLimb_00BD48DL_0099D0 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD48DL_0099D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD48DL_0099D0[] = dgDampeSkelLimbsLimb_00BD48DL_0099D0; -#else -static const char gDampeSkelLimbsLimb_00BD48DL_0099D0[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD48DL_0099D0; -#endif - -#define dgDampeSkelLimbsLimb_00BD54DL_00AA10 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD54DL_00AA10" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD54DL_00AA10[] = dgDampeSkelLimbsLimb_00BD54DL_00AA10; -#else -static const char gDampeSkelLimbsLimb_00BD54DL_00AA10[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD54DL_00AA10; -#endif - -#define dgDampeSkelLimbsLimb_00BD60DL_009580 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD60DL_009580" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD60DL_009580[] = dgDampeSkelLimbsLimb_00BD60DL_009580; -#else -static const char gDampeSkelLimbsLimb_00BD60DL_009580[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD60DL_009580; -#endif - -#define dgDampeSkelLimbsLimb_00BD6CDL_009738 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD6CDL_009738" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD6CDL_009738[] = dgDampeSkelLimbsLimb_00BD6CDL_009738; -#else -static const char gDampeSkelLimbsLimb_00BD6CDL_009738[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD6CDL_009738; -#endif - -#define dgDampeSkelLimbsLimb_00BD78DL_00AB78 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD78DL_00AB78" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD78DL_00AB78[] = dgDampeSkelLimbsLimb_00BD78DL_00AB78; -#else -static const char gDampeSkelLimbsLimb_00BD78DL_00AB78[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD78DL_00AB78; -#endif - -#define dgDampeSkelLimbsLimb_00BD84DL_008160 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD84DL_008160" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD84DL_008160[] = dgDampeSkelLimbsLimb_00BD84DL_008160; -#else -static const char gDampeSkelLimbsLimb_00BD84DL_008160[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD84DL_008160; -#endif - -#define dgDampeSkelLimbsLimb_00BD90DL_009110 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD90DL_009110" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD90DL_009110[] = dgDampeSkelLimbsLimb_00BD90DL_009110; -#else -static const char gDampeSkelLimbsLimb_00BD90DL_009110[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD90DL_009110; -#endif - -#define dgDampeSkelLimbsLimb_00BD9CDL_009240 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD9CDL_009240" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BD9CDL_009240[] = dgDampeSkelLimbsLimb_00BD9CDL_009240; -#else -static const char gDampeSkelLimbsLimb_00BD9CDL_009240[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BD9CDL_009240; -#endif - -#define dgDampeSkelLimbsLimb_00BDA8DL_009370 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDA8DL_009370" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BDA8DL_009370[] = dgDampeSkelLimbsLimb_00BDA8DL_009370; -#else -static const char gDampeSkelLimbsLimb_00BDA8DL_009370[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BDA8DL_009370; -#endif - -#define dgDampeSkelLimbsLimb_00BDB4DL_008CA0 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDB4DL_008CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BDB4DL_008CA0[] = dgDampeSkelLimbsLimb_00BDB4DL_008CA0; -#else -static const char gDampeSkelLimbsLimb_00BDB4DL_008CA0[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BDB4DL_008CA0; -#endif - -#define dgDampeSkelLimbsLimb_00BDC0DL_008DD0 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDC0DL_008DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BDC0DL_008DD0[] = dgDampeSkelLimbsLimb_00BDC0DL_008DD0; -#else -static const char gDampeSkelLimbsLimb_00BDC0DL_008DD0[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BDC0DL_008DD0; -#endif - -#define dgDampeSkelLimbsLimb_00BDCCDL_008F00 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDCCDL_008F00" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BDCCDL_008F00[] = dgDampeSkelLimbsLimb_00BDCCDL_008F00; -#else -static const char gDampeSkelLimbsLimb_00BDCCDL_008F00[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BDCCDL_008F00; -#endif - -#define dgDampeSkelLimbsLimb_00BDD8DL_0082F0 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDD8DL_0082F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BDD8DL_0082F0[] = dgDampeSkelLimbsLimb_00BDD8DL_0082F0; -#else -static const char gDampeSkelLimbsLimb_00BDD8DL_0082F0[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BDD8DL_0082F0; -#endif - -#define dgDampeSkelLimbsLimb_00BDE4DL_008410 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDE4DL_008410" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BDE4DL_008410[] = dgDampeSkelLimbsLimb_00BDE4DL_008410; -#else -static const char gDampeSkelLimbsLimb_00BDE4DL_008410[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BDE4DL_008410; -#endif - -#define dgDampeSkelLimbsLimb_00BDF0DL_008958 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDF0DL_008958" -#ifdef _WIN32 -static const __declspec(align(2)) char gDampeSkelLimbsLimb_00BDF0DL_008958[] = dgDampeSkelLimbsLimb_00BDF0DL_008958; -#else -static const char gDampeSkelLimbsLimb_00BDF0DL_008958[] __attribute__((aligned (2))) = dgDampeSkelLimbsLimb_00BDF0DL_008958; -#endif - -#define dobject_tkTex_005440 "__OTR__objects/object_tk/object_tkTex_005440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_005440[] = dobject_tkTex_005440; -#else -static const char object_tkTex_005440[] __attribute__((aligned (2))) = dobject_tkTex_005440; -#endif - -#define dobject_tkTex_0056C0 "__OTR__objects/object_tk/object_tkTex_0056C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_0056C0[] = dobject_tkTex_0056C0; -#else -static const char object_tkTex_0056C0[] __attribute__((aligned (2))) = dobject_tkTex_0056C0; -#endif - -#define dobject_tkTex_003980 "__OTR__objects/object_tk/object_tkTex_003980" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_003980[] = dobject_tkTex_003980; -#else -static const char object_tkTex_003980[] __attribute__((aligned (2))) = dobject_tkTex_003980; -#endif - -#define dobject_tkTex_009B00 "__OTR__objects/object_tk/object_tkTex_009B00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_009B00[] = dobject_tkTex_009B00; -#else -static const char object_tkTex_009B00[] __attribute__((aligned (2))) = dobject_tkTex_009B00; -#endif - -#define dobject_tkTLUT_009AB0 "__OTR__objects/object_tk/object_tkTLUT_009AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTLUT_009AB0[] = dobject_tkTLUT_009AB0; -#else -static const char object_tkTLUT_009AB0[] __attribute__((aligned (2))) = dobject_tkTLUT_009AB0; -#endif - -#define dobject_tkTex_009C00 "__OTR__objects/object_tk/object_tkTex_009C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_009C00[] = dobject_tkTex_009C00; -#else -static const char object_tkTex_009C00[] __attribute__((aligned (2))) = dobject_tkTex_009C00; -#endif - -#define dobject_tkTex_005340 "__OTR__objects/object_tk/object_tkTex_005340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_005340[] = dobject_tkTex_005340; -#else -static const char object_tkTex_005340[] __attribute__((aligned (2))) = dobject_tkTex_005340; -#endif - -#define dobject_tkTex_003A40 "__OTR__objects/object_tk/object_tkTex_003A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_003A40[] = dobject_tkTex_003A40; -#else -static const char object_tkTex_003A40[] __attribute__((aligned (2))) = dobject_tkTex_003A40; -#endif - -#define dobject_tkTex_0039C0 "__OTR__objects/object_tk/object_tkTex_0039C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_0039C0[] = dobject_tkTex_0039C0; -#else -static const char object_tkTex_0039C0[] __attribute__((aligned (2))) = dobject_tkTex_0039C0; -#endif - -#define dobject_tkTex_003A00 "__OTR__objects/object_tk/object_tkTex_003A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tkTex_003A00[] = dobject_tkTex_003A00; -#else -static const char object_tkTex_003A00[] __attribute__((aligned (2))) = dobject_tkTex_003A00; -#endif - +#include "align_asset_macro.h" + +#define dgDampeDigAnim "__OTR__objects/object_tk/gDampeDigAnim" +static const ALIGN_ASSET(2) char gDampeDigAnim[] = dgDampeDigAnim; + +#define dgDampeWalkAnim "__OTR__objects/object_tk/gDampeWalkAnim" +static const ALIGN_ASSET(2) char gDampeWalkAnim[] = dgDampeWalkAnim; + +#define dgDampeRestAnim "__OTR__objects/object_tk/gDampeRestAnim" +static const ALIGN_ASSET(2) char gDampeRestAnim[] = dgDampeRestAnim; + +#define dgDampeFloatAnim "__OTR__objects/object_tk/gDampeFloatAnim" +static const ALIGN_ASSET(2) char gDampeFloatAnim[] = dgDampeFloatAnim; + +#define dgDampeEyeOpenTex "__OTR__objects/object_tk/gDampeEyeOpenTex" +static const ALIGN_ASSET(2) char gDampeEyeOpenTex[] = dgDampeEyeOpenTex; + +#define dgDampeEyeHalfTex "__OTR__objects/object_tk/gDampeEyeHalfTex" +static const ALIGN_ASSET(2) char gDampeEyeHalfTex[] = dgDampeEyeHalfTex; + +#define dgDampeEyeClosedTex "__OTR__objects/object_tk/gDampeEyeClosedTex" +static const ALIGN_ASSET(2) char gDampeEyeClosedTex[] = dgDampeEyeClosedTex; + +#define dgDampeUnkTex "__OTR__objects/object_tk/gDampeUnkTex" +static const ALIGN_ASSET(2) char gDampeUnkTex[] = dgDampeUnkTex; + +#define dgDampeShovelDL "__OTR__objects/object_tk/gDampeShovelDL" +static const ALIGN_ASSET(2) char gDampeShovelDL[] = dgDampeShovelDL; + +#define dgDampeLanternDL "__OTR__objects/object_tk/gDampeLanternDL" +static const ALIGN_ASSET(2) char gDampeLanternDL[] = dgDampeLanternDL; + +#define dgDampeHaloDL "__OTR__objects/object_tk/gDampeHaloDL" +static const ALIGN_ASSET(2) char gDampeHaloDL[] = dgDampeHaloDL; + +#define dgDampeEff1DL "__OTR__objects/object_tk/gDampeEff1DL" +static const ALIGN_ASSET(2) char gDampeEff1DL[] = dgDampeEff1DL; + +#define dgDampeEff2DL "__OTR__objects/object_tk/gDampeEff2DL" +static const ALIGN_ASSET(2) char gDampeEff2DL[] = dgDampeEff2DL; + +#define dgDampeSkel "__OTR__objects/object_tk/gDampeSkel" +static const ALIGN_ASSET(2) char gDampeSkel[] = dgDampeSkel; + +#define dobject_tkTLUT_003780 "__OTR__objects/object_tk/object_tkTLUT_003780" +static const ALIGN_ASSET(2) char object_tkTLUT_003780[] = dobject_tkTLUT_003780; + +#define dobject_tkTex_009CC0 "__OTR__objects/object_tk/object_tkTex_009CC0" +static const ALIGN_ASSET(2) char object_tkTex_009CC0[] = dobject_tkTex_009CC0; + +#define dobject_tkTex_009D40 "__OTR__objects/object_tk/object_tkTex_009D40" +static const ALIGN_ASSET(2) char object_tkTex_009D40[] = dobject_tkTex_009D40; + +#define dobject_tkTex_009C80 "__OTR__objects/object_tk/object_tkTex_009C80" +static const ALIGN_ASSET(2) char object_tkTex_009C80[] = dobject_tkTex_009C80; + +#define dobject_tkTex_00B288 "__OTR__objects/object_tk/object_tkTex_00B288" +static const ALIGN_ASSET(2) char object_tkTex_00B288[] = dobject_tkTex_00B288; + +#define dobject_tkTex_00B088 "__OTR__objects/object_tk/object_tkTex_00B088" +static const ALIGN_ASSET(2) char object_tkTex_00B088[] = dobject_tkTex_00B088; + +#define dobject_tkTex_00B488 "__OTR__objects/object_tk/object_tkTex_00B488" +static const ALIGN_ASSET(2) char object_tkTex_00B488[] = dobject_tkTex_00B488; + +#define dgDampeSkelLimbsLimb_00BD30DL_008020 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD30DL_008020" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD30DL_008020[] = dgDampeSkelLimbsLimb_00BD30DL_008020; + +#define dgDampeSkelLimbsLimb_00BD3CDL_009818 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD3CDL_009818" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD3CDL_009818[] = dgDampeSkelLimbsLimb_00BD3CDL_009818; + +#define dgDampeSkelLimbsLimb_00BD48DL_0099D0 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD48DL_0099D0" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD48DL_0099D0[] = dgDampeSkelLimbsLimb_00BD48DL_0099D0; + +#define dgDampeSkelLimbsLimb_00BD54DL_00AA10 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD54DL_00AA10" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD54DL_00AA10[] = dgDampeSkelLimbsLimb_00BD54DL_00AA10; + +#define dgDampeSkelLimbsLimb_00BD60DL_009580 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD60DL_009580" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD60DL_009580[] = dgDampeSkelLimbsLimb_00BD60DL_009580; + +#define dgDampeSkelLimbsLimb_00BD6CDL_009738 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD6CDL_009738" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD6CDL_009738[] = dgDampeSkelLimbsLimb_00BD6CDL_009738; + +#define dgDampeSkelLimbsLimb_00BD78DL_00AB78 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD78DL_00AB78" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD78DL_00AB78[] = dgDampeSkelLimbsLimb_00BD78DL_00AB78; + +#define dgDampeSkelLimbsLimb_00BD84DL_008160 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD84DL_008160" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD84DL_008160[] = dgDampeSkelLimbsLimb_00BD84DL_008160; + +#define dgDampeSkelLimbsLimb_00BD90DL_009110 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD90DL_009110" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD90DL_009110[] = dgDampeSkelLimbsLimb_00BD90DL_009110; + +#define dgDampeSkelLimbsLimb_00BD9CDL_009240 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BD9CDL_009240" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BD9CDL_009240[] = dgDampeSkelLimbsLimb_00BD9CDL_009240; + +#define dgDampeSkelLimbsLimb_00BDA8DL_009370 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDA8DL_009370" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BDA8DL_009370[] = dgDampeSkelLimbsLimb_00BDA8DL_009370; + +#define dgDampeSkelLimbsLimb_00BDB4DL_008CA0 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDB4DL_008CA0" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BDB4DL_008CA0[] = dgDampeSkelLimbsLimb_00BDB4DL_008CA0; + +#define dgDampeSkelLimbsLimb_00BDC0DL_008DD0 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDC0DL_008DD0" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BDC0DL_008DD0[] = dgDampeSkelLimbsLimb_00BDC0DL_008DD0; + +#define dgDampeSkelLimbsLimb_00BDCCDL_008F00 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDCCDL_008F00" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BDCCDL_008F00[] = dgDampeSkelLimbsLimb_00BDCCDL_008F00; + +#define dgDampeSkelLimbsLimb_00BDD8DL_0082F0 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDD8DL_0082F0" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BDD8DL_0082F0[] = dgDampeSkelLimbsLimb_00BDD8DL_0082F0; + +#define dgDampeSkelLimbsLimb_00BDE4DL_008410 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDE4DL_008410" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BDE4DL_008410[] = dgDampeSkelLimbsLimb_00BDE4DL_008410; + +#define dgDampeSkelLimbsLimb_00BDF0DL_008958 "__OTR__objects/object_tk/gDampeSkelLimbsLimb_00BDF0DL_008958" +static const ALIGN_ASSET(2) char gDampeSkelLimbsLimb_00BDF0DL_008958[] = dgDampeSkelLimbsLimb_00BDF0DL_008958; + +#define dobject_tkTex_005440 "__OTR__objects/object_tk/object_tkTex_005440" +static const ALIGN_ASSET(2) char object_tkTex_005440[] = dobject_tkTex_005440; + +#define dobject_tkTex_0056C0 "__OTR__objects/object_tk/object_tkTex_0056C0" +static const ALIGN_ASSET(2) char object_tkTex_0056C0[] = dobject_tkTex_0056C0; + +#define dobject_tkTex_003980 "__OTR__objects/object_tk/object_tkTex_003980" +static const ALIGN_ASSET(2) char object_tkTex_003980[] = dobject_tkTex_003980; + +#define dobject_tkTex_009B00 "__OTR__objects/object_tk/object_tkTex_009B00" +static const ALIGN_ASSET(2) char object_tkTex_009B00[] = dobject_tkTex_009B00; + +#define dobject_tkTLUT_009AB0 "__OTR__objects/object_tk/object_tkTLUT_009AB0" +static const ALIGN_ASSET(2) char object_tkTLUT_009AB0[] = dobject_tkTLUT_009AB0; + +#define dobject_tkTex_009C00 "__OTR__objects/object_tk/object_tkTex_009C00" +static const ALIGN_ASSET(2) char object_tkTex_009C00[] = dobject_tkTex_009C00; + +#define dobject_tkTex_005340 "__OTR__objects/object_tk/object_tkTex_005340" +static const ALIGN_ASSET(2) char object_tkTex_005340[] = dobject_tkTex_005340; + +#define dobject_tkTex_003A40 "__OTR__objects/object_tk/object_tkTex_003A40" +static const ALIGN_ASSET(2) char object_tkTex_003A40[] = dobject_tkTex_003A40; + +#define dobject_tkTex_0039C0 "__OTR__objects/object_tk/object_tkTex_0039C0" +static const ALIGN_ASSET(2) char object_tkTex_0039C0[] = dobject_tkTex_0039C0; + +#define dobject_tkTex_003A00 "__OTR__objects/object_tk/object_tkTex_003A00" +static const ALIGN_ASSET(2) char object_tkTex_003A00[] = dobject_tkTex_003A00; \ No newline at end of file diff --git a/soh/assets/objects/object_toki_objects/object_toki_objects.h b/soh/assets/objects/object_toki_objects/object_toki_objects.h index e86c2299d..e7f38813f 100644 --- a/soh/assets/objects/object_toki_objects/object_toki_objects.h +++ b/soh/assets/objects/object_toki_objects/object_toki_objects.h @@ -1,149 +1,66 @@ #pragma once -#define dobject_toki_objects_Tex_000000 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_000000[] = dobject_toki_objects_Tex_000000; -#else -static const char object_toki_objects_Tex_000000[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_000000; -#endif - -#define dobject_toki_objects_DL_000880 "__OTR__objects/object_toki_objects/object_toki_objects_DL_000880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_000880[] = dobject_toki_objects_DL_000880; -#else -static const char object_toki_objects_DL_000880[] __attribute__((aligned (2))) = dobject_toki_objects_DL_000880; -#endif - -#define dobject_toki_objects_DL_0009C0 "__OTR__objects/object_toki_objects/object_toki_objects_DL_0009C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_0009C0[] = dobject_toki_objects_DL_0009C0; -#else -static const char object_toki_objects_DL_0009C0[] __attribute__((aligned (2))) = dobject_toki_objects_DL_0009C0; -#endif - -#define dobject_toki_objects_Tex_000A30 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_000A30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_000A30[] = dobject_toki_objects_Tex_000A30; -#else -static const char object_toki_objects_Tex_000A30[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_000A30; -#endif - -#define dobject_toki_objects_Tex_000C30 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_000C30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_000C30[] = dobject_toki_objects_Tex_000C30; -#else -static const char object_toki_objects_Tex_000C30[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_000C30; -#endif - -#define dobject_toki_objects_DL_001BD0 "__OTR__objects/object_toki_objects/object_toki_objects_DL_001BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_001BD0[] = dobject_toki_objects_DL_001BD0; -#else -static const char object_toki_objects_DL_001BD0[] __attribute__((aligned (2))) = dobject_toki_objects_DL_001BD0; -#endif - -#define dobject_toki_objects_DL_0028E0 "__OTR__objects/object_toki_objects/object_toki_objects_DL_0028E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_0028E0[] = dobject_toki_objects_DL_0028E0; -#else -static const char object_toki_objects_DL_0028E0[] __attribute__((aligned (2))) = dobject_toki_objects_DL_0028E0; -#endif - -#define dobject_toki_objects_Tex_002DC0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_002DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_002DC0[] = dobject_toki_objects_Tex_002DC0; -#else -static const char object_toki_objects_Tex_002DC0[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_002DC0; -#endif - -#define dobject_toki_objects_Tex_0035C0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_0035C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_0035C0[] = dobject_toki_objects_Tex_0035C0; -#else -static const char object_toki_objects_Tex_0035C0[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_0035C0; -#endif - -#define dobject_toki_objects_Tex_003DC0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_003DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_003DC0[] = dobject_toki_objects_Tex_003DC0; -#else -static const char object_toki_objects_Tex_003DC0[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_003DC0; -#endif - -#define dobject_toki_objects_Tex_0045C0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_0045C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_0045C0[] = dobject_toki_objects_Tex_0045C0; -#else -static const char object_toki_objects_Tex_0045C0[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_0045C0; -#endif - -#define dobject_toki_objects_Tex_0055C0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_0055C0[] = dobject_toki_objects_Tex_0055C0; -#else -static const char object_toki_objects_Tex_0055C0[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_0055C0; -#endif - -#define dobject_toki_objects_Blob_0065C0 "__OTR__objects/object_toki_objects/object_toki_objects_Blob_0065C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Blob_0065C0[] = dobject_toki_objects_Blob_0065C0; -#else -static const char object_toki_objects_Blob_0065C0[] __attribute__((aligned (2))) = dobject_toki_objects_Blob_0065C0; -#endif - -#define dobject_toki_objects_Tex_006FC0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_006FC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_Tex_006FC0[] = dobject_toki_objects_Tex_006FC0; -#else -static const char object_toki_objects_Tex_006FC0[] __attribute__((aligned (2))) = dobject_toki_objects_Tex_006FC0; -#endif - -#define dobject_toki_objects_DL_007440 "__OTR__objects/object_toki_objects/object_toki_objects_DL_007440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_007440[] = dobject_toki_objects_DL_007440; -#else -static const char object_toki_objects_DL_007440[] __attribute__((aligned (2))) = dobject_toki_objects_DL_007440; -#endif - -#define dobject_toki_objects_DL_007578 "__OTR__objects/object_toki_objects/object_toki_objects_DL_007578" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_007578[] = dobject_toki_objects_DL_007578; -#else -static const char object_toki_objects_DL_007578[] __attribute__((aligned (2))) = dobject_toki_objects_DL_007578; -#endif - -#define dgDoorTokiCol "__OTR__objects/object_toki_objects/gDoorTokiCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDoorTokiCol[] = dgDoorTokiCol; -#else -static const char gDoorTokiCol[] __attribute__((aligned (2))) = dgDoorTokiCol; -#endif - -#define dobject_toki_objects_DL_007E20 "__OTR__objects/object_toki_objects/object_toki_objects_DL_007E20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_007E20[] = dobject_toki_objects_DL_007E20; -#else -static const char object_toki_objects_DL_007E20[] __attribute__((aligned (2))) = dobject_toki_objects_DL_007E20; -#endif - -#define dobject_toki_objects_DL_007EE0 "__OTR__objects/object_toki_objects/object_toki_objects_DL_007EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_007EE0[] = dobject_toki_objects_DL_007EE0; -#else -static const char object_toki_objects_DL_007EE0[] __attribute__((aligned (2))) = dobject_toki_objects_DL_007EE0; -#endif - -#define dobject_toki_objects_DL_008190 "__OTR__objects/object_toki_objects/object_toki_objects_DL_008190" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_008190[] = dobject_toki_objects_DL_008190; -#else -static const char object_toki_objects_DL_008190[] __attribute__((aligned (2))) = dobject_toki_objects_DL_008190; -#endif - -#define dobject_toki_objects_DL_008390 "__OTR__objects/object_toki_objects/object_toki_objects_DL_008390" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toki_objects_DL_008390[] = dobject_toki_objects_DL_008390; -#else -static const char object_toki_objects_DL_008390[] __attribute__((aligned (2))) = dobject_toki_objects_DL_008390; -#endif - +#include "align_asset_macro.h" + +#define dobject_toki_objects_Tex_000000 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_000000" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_000000[] = dobject_toki_objects_Tex_000000; + +#define dobject_toki_objects_DL_000880 "__OTR__objects/object_toki_objects/object_toki_objects_DL_000880" +static const ALIGN_ASSET(2) char object_toki_objects_DL_000880[] = dobject_toki_objects_DL_000880; + +#define dobject_toki_objects_DL_0009C0 "__OTR__objects/object_toki_objects/object_toki_objects_DL_0009C0" +static const ALIGN_ASSET(2) char object_toki_objects_DL_0009C0[] = dobject_toki_objects_DL_0009C0; + +#define dobject_toki_objects_Tex_000A30 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_000A30" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_000A30[] = dobject_toki_objects_Tex_000A30; + +#define dobject_toki_objects_Tex_000C30 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_000C30" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_000C30[] = dobject_toki_objects_Tex_000C30; + +#define dobject_toki_objects_DL_001BD0 "__OTR__objects/object_toki_objects/object_toki_objects_DL_001BD0" +static const ALIGN_ASSET(2) char object_toki_objects_DL_001BD0[] = dobject_toki_objects_DL_001BD0; + +#define dobject_toki_objects_DL_0028E0 "__OTR__objects/object_toki_objects/object_toki_objects_DL_0028E0" +static const ALIGN_ASSET(2) char object_toki_objects_DL_0028E0[] = dobject_toki_objects_DL_0028E0; + +#define dobject_toki_objects_Tex_002DC0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_002DC0" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_002DC0[] = dobject_toki_objects_Tex_002DC0; + +#define dobject_toki_objects_Tex_0035C0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_0035C0" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_0035C0[] = dobject_toki_objects_Tex_0035C0; + +#define dobject_toki_objects_Tex_003DC0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_003DC0" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_003DC0[] = dobject_toki_objects_Tex_003DC0; + +#define dobject_toki_objects_Tex_0045C0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_0045C0" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_0045C0[] = dobject_toki_objects_Tex_0045C0; + +#define dobject_toki_objects_Tex_0055C0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_0055C0" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_0055C0[] = dobject_toki_objects_Tex_0055C0; + +#define dobject_toki_objects_Blob_0065C0 "__OTR__objects/object_toki_objects/object_toki_objects_Blob_0065C0" +static const ALIGN_ASSET(2) char object_toki_objects_Blob_0065C0[] = dobject_toki_objects_Blob_0065C0; + +#define dobject_toki_objects_Tex_006FC0 "__OTR__objects/object_toki_objects/object_toki_objects_Tex_006FC0" +static const ALIGN_ASSET(2) char object_toki_objects_Tex_006FC0[] = dobject_toki_objects_Tex_006FC0; + +#define dobject_toki_objects_DL_007440 "__OTR__objects/object_toki_objects/object_toki_objects_DL_007440" +static const ALIGN_ASSET(2) char object_toki_objects_DL_007440[] = dobject_toki_objects_DL_007440; + +#define dobject_toki_objects_DL_007578 "__OTR__objects/object_toki_objects/object_toki_objects_DL_007578" +static const ALIGN_ASSET(2) char object_toki_objects_DL_007578[] = dobject_toki_objects_DL_007578; + +#define dgDoorTokiCol "__OTR__objects/object_toki_objects/gDoorTokiCol" +static const ALIGN_ASSET(2) char gDoorTokiCol[] = dgDoorTokiCol; + +#define dobject_toki_objects_DL_007E20 "__OTR__objects/object_toki_objects/object_toki_objects_DL_007E20" +static const ALIGN_ASSET(2) char object_toki_objects_DL_007E20[] = dobject_toki_objects_DL_007E20; + +#define dobject_toki_objects_DL_007EE0 "__OTR__objects/object_toki_objects/object_toki_objects_DL_007EE0" +static const ALIGN_ASSET(2) char object_toki_objects_DL_007EE0[] = dobject_toki_objects_DL_007EE0; + +#define dobject_toki_objects_DL_008190 "__OTR__objects/object_toki_objects/object_toki_objects_DL_008190" +static const ALIGN_ASSET(2) char object_toki_objects_DL_008190[] = dobject_toki_objects_DL_008190; + +#define dobject_toki_objects_DL_008390 "__OTR__objects/object_toki_objects/object_toki_objects_DL_008390" +static const ALIGN_ASSET(2) char object_toki_objects_DL_008390[] = dobject_toki_objects_DL_008390; \ No newline at end of file diff --git a/soh/assets/objects/object_torch2/object_torch2.h b/soh/assets/objects/object_torch2/object_torch2.h index 03b00ec26..b58baaa8a 100644 --- a/soh/assets/objects/object_torch2/object_torch2.h +++ b/soh/assets/objects/object_torch2/object_torch2.h @@ -1,149 +1,66 @@ #pragma once -#define dgDarkLinkSkel "__OTR__objects/object_torch2/gDarkLinkSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkel[] = dgDarkLinkSkel; -#else -static const char gDarkLinkSkel[] __attribute__((aligned (2))) = dgDarkLinkSkel; -#endif - -#define dsDarkLinkSheathDL "__OTR__objects/object_torch2/sDarkLinkSheathDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sDarkLinkSheathDL[] = dsDarkLinkSheathDL; -#else -static const char sDarkLinkSheathDL[] __attribute__((aligned (2))) = dsDarkLinkSheathDL; -#endif - -#define dgDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0[] = dgDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0; -#else -static const char gDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0; -#endif - -#define dgDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0[] = dgDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0; -#else -static const char gDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0; -#endif - -#define dgDarkLinkSkelLimbsLimb_004600FarDL_002E10 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004600FarDL_002E10" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004600FarDL_002E10[] = dgDarkLinkSkelLimbsLimb_004600FarDL_002E10; -#else -static const char gDarkLinkSkelLimbsLimb_004600FarDL_002E10[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004600FarDL_002E10; -#endif - -#define dgDarkLinkSkelLimbsLimb_004610FarDL_002F38 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004610FarDL_002F38" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004610FarDL_002F38[] = dgDarkLinkSkelLimbsLimb_004610FarDL_002F38; -#else -static const char gDarkLinkSkelLimbsLimb_004610FarDL_002F38[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004610FarDL_002F38; -#endif - -#define dgDarkLinkSkelLimbsLimb_004620FarDL_003030 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004620FarDL_003030" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004620FarDL_003030[] = dgDarkLinkSkelLimbsLimb_004620FarDL_003030; -#else -static const char gDarkLinkSkelLimbsLimb_004620FarDL_003030[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004620FarDL_003030; -#endif - -#define dgDarkLinkSkelLimbsLimb_004630FarDL_003178 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004630FarDL_003178" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004630FarDL_003178[] = dgDarkLinkSkelLimbsLimb_004630FarDL_003178; -#else -static const char gDarkLinkSkelLimbsLimb_004630FarDL_003178[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004630FarDL_003178; -#endif - -#define dgDarkLinkSkelLimbsLimb_004640FarDL_0032A0 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004640FarDL_0032A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004640FarDL_0032A0[] = dgDarkLinkSkelLimbsLimb_004640FarDL_0032A0; -#else -static const char gDarkLinkSkelLimbsLimb_004640FarDL_0032A0[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004640FarDL_0032A0; -#endif - -#define dgDarkLinkSkelLimbsLimb_004660FarDL_003490 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004660FarDL_003490" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004660FarDL_003490[] = dgDarkLinkSkelLimbsLimb_004660FarDL_003490; -#else -static const char gDarkLinkSkelLimbsLimb_004660FarDL_003490[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004660FarDL_003490; -#endif - -#define dgDarkLinkSkelLimbsLimb_004670FarDL_003398 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004670FarDL_003398" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004670FarDL_003398[] = dgDarkLinkSkelLimbsLimb_004670FarDL_003398; -#else -static const char gDarkLinkSkelLimbsLimb_004670FarDL_003398[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004670FarDL_003398; -#endif - -#define dgDarkLinkSkelLimbsLimb_004680FarDL_003820 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004680FarDL_003820" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004680FarDL_003820[] = dgDarkLinkSkelLimbsLimb_004680FarDL_003820; -#else -static const char gDarkLinkSkelLimbsLimb_004680FarDL_003820[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004680FarDL_003820; -#endif - -#define dgDarkLinkSkelLimbsLimb_004690FarDL_003D70 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004690FarDL_003D70" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004690FarDL_003D70[] = dgDarkLinkSkelLimbsLimb_004690FarDL_003D70; -#else -static const char gDarkLinkSkelLimbsLimb_004690FarDL_003D70[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004690FarDL_003D70; -#endif - -#define dgDarkLinkSkelLimbsLimb_0046A0FarDL_003E90 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046A0FarDL_003E90" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_0046A0FarDL_003E90[] = dgDarkLinkSkelLimbsLimb_0046A0FarDL_003E90; -#else -static const char gDarkLinkSkelLimbsLimb_0046A0FarDL_003E90[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_0046A0FarDL_003E90; -#endif - -#define dgDarkLinkSkelLimbsLimb_0046B0FarDL_003F98 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046B0FarDL_003F98" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_0046B0FarDL_003F98[] = dgDarkLinkSkelLimbsLimb_0046B0FarDL_003F98; -#else -static const char gDarkLinkSkelLimbsLimb_0046B0FarDL_003F98[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_0046B0FarDL_003F98; -#endif - -#define dgDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8[] = dgDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8; -#else -static const char gDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8; -#endif - -#define dgDarkLinkSkelLimbsLimb_0046D0FarDL_003B08 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046D0FarDL_003B08" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_0046D0FarDL_003B08[] = dgDarkLinkSkelLimbsLimb_0046D0FarDL_003B08; -#else -static const char gDarkLinkSkelLimbsLimb_0046D0FarDL_003B08[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_0046D0FarDL_003B08; -#endif - -#define dgDarkLinkSkelLimbsLimb_0046E0FarDL_003C10 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046E0FarDL_003C10" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_0046E0FarDL_003C10[] = dgDarkLinkSkelLimbsLimb_0046E0FarDL_003C10; -#else -static const char gDarkLinkSkelLimbsLimb_0046E0FarDL_003C10[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_0046E0FarDL_003C10; -#endif - -#define dgDarkLinkSkelLimbsLimb_004700FarDL_0038D0 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004700FarDL_0038D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gDarkLinkSkelLimbsLimb_004700FarDL_0038D0[] = dgDarkLinkSkelLimbsLimb_004700FarDL_0038D0; -#else -static const char gDarkLinkSkelLimbsLimb_004700FarDL_0038D0[] __attribute__((aligned (2))) = dgDarkLinkSkelLimbsLimb_004700FarDL_0038D0; -#endif - -#define dobject_torch2Tex_0041C0 "__OTR__objects/object_torch2/object_torch2Tex_0041C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_torch2Tex_0041C0[] = dobject_torch2Tex_0041C0; -#else -static const char object_torch2Tex_0041C0[] __attribute__((aligned (2))) = dobject_torch2Tex_0041C0; -#endif - -#define dobject_torch2Tex_0043C0 "__OTR__objects/object_torch2/object_torch2Tex_0043C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_torch2Tex_0043C0[] = dobject_torch2Tex_0043C0; -#else -static const char object_torch2Tex_0043C0[] __attribute__((aligned (2))) = dobject_torch2Tex_0043C0; -#endif - +#include "align_asset_macro.h" + +#define dgDarkLinkSkel "__OTR__objects/object_torch2/gDarkLinkSkel" +static const ALIGN_ASSET(2) char gDarkLinkSkel[] = dgDarkLinkSkel; + +#define dsDarkLinkSheathDL "__OTR__objects/object_torch2/sDarkLinkSheathDL" +static const ALIGN_ASSET(2) char sDarkLinkSheathDL[] = dsDarkLinkSheathDL; + +#define dgDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0[] = dgDarkLinkSkelLimbsLimb_0045D0FarDL_002BD0; + +#define dgDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0[] = dgDarkLinkSkelLimbsLimb_0045F0FarDL_002CD0; + +#define dgDarkLinkSkelLimbsLimb_004600FarDL_002E10 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004600FarDL_002E10" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004600FarDL_002E10[] = dgDarkLinkSkelLimbsLimb_004600FarDL_002E10; + +#define dgDarkLinkSkelLimbsLimb_004610FarDL_002F38 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004610FarDL_002F38" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004610FarDL_002F38[] = dgDarkLinkSkelLimbsLimb_004610FarDL_002F38; + +#define dgDarkLinkSkelLimbsLimb_004620FarDL_003030 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004620FarDL_003030" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004620FarDL_003030[] = dgDarkLinkSkelLimbsLimb_004620FarDL_003030; + +#define dgDarkLinkSkelLimbsLimb_004630FarDL_003178 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004630FarDL_003178" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004630FarDL_003178[] = dgDarkLinkSkelLimbsLimb_004630FarDL_003178; + +#define dgDarkLinkSkelLimbsLimb_004640FarDL_0032A0 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004640FarDL_0032A0" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004640FarDL_0032A0[] = dgDarkLinkSkelLimbsLimb_004640FarDL_0032A0; + +#define dgDarkLinkSkelLimbsLimb_004660FarDL_003490 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004660FarDL_003490" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004660FarDL_003490[] = dgDarkLinkSkelLimbsLimb_004660FarDL_003490; + +#define dgDarkLinkSkelLimbsLimb_004670FarDL_003398 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004670FarDL_003398" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004670FarDL_003398[] = dgDarkLinkSkelLimbsLimb_004670FarDL_003398; + +#define dgDarkLinkSkelLimbsLimb_004680FarDL_003820 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004680FarDL_003820" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004680FarDL_003820[] = dgDarkLinkSkelLimbsLimb_004680FarDL_003820; + +#define dgDarkLinkSkelLimbsLimb_004690FarDL_003D70 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004690FarDL_003D70" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004690FarDL_003D70[] = dgDarkLinkSkelLimbsLimb_004690FarDL_003D70; + +#define dgDarkLinkSkelLimbsLimb_0046A0FarDL_003E90 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046A0FarDL_003E90" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_0046A0FarDL_003E90[] = dgDarkLinkSkelLimbsLimb_0046A0FarDL_003E90; + +#define dgDarkLinkSkelLimbsLimb_0046B0FarDL_003F98 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046B0FarDL_003F98" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_0046B0FarDL_003F98[] = dgDarkLinkSkelLimbsLimb_0046B0FarDL_003F98; + +#define dgDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8[] = dgDarkLinkSkelLimbsLimb_0046C0FarDL_0039E8; + +#define dgDarkLinkSkelLimbsLimb_0046D0FarDL_003B08 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046D0FarDL_003B08" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_0046D0FarDL_003B08[] = dgDarkLinkSkelLimbsLimb_0046D0FarDL_003B08; + +#define dgDarkLinkSkelLimbsLimb_0046E0FarDL_003C10 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_0046E0FarDL_003C10" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_0046E0FarDL_003C10[] = dgDarkLinkSkelLimbsLimb_0046E0FarDL_003C10; + +#define dgDarkLinkSkelLimbsLimb_004700FarDL_0038D0 "__OTR__objects/object_torch2/gDarkLinkSkelLimbsLimb_004700FarDL_0038D0" +static const ALIGN_ASSET(2) char gDarkLinkSkelLimbsLimb_004700FarDL_0038D0[] = dgDarkLinkSkelLimbsLimb_004700FarDL_0038D0; + +#define dobject_torch2Tex_0041C0 "__OTR__objects/object_torch2/object_torch2Tex_0041C0" +static const ALIGN_ASSET(2) char object_torch2Tex_0041C0[] = dobject_torch2Tex_0041C0; + +#define dobject_torch2Tex_0043C0 "__OTR__objects/object_torch2/object_torch2Tex_0043C0" +static const ALIGN_ASSET(2) char object_torch2Tex_0043C0[] = dobject_torch2Tex_0043C0; \ No newline at end of file diff --git a/soh/assets/objects/object_toryo/object_toryo.h b/soh/assets/objects/object_toryo/object_toryo.h index 2d9317c32..08a216e7a 100644 --- a/soh/assets/objects/object_toryo/object_toryo.h +++ b/soh/assets/objects/object_toryo/object_toryo.h @@ -1,233 +1,102 @@ #pragma once -#define dobject_toryo_Anim_000E50 "__OTR__objects/object_toryo/object_toryo_Anim_000E50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Anim_000E50[] = dobject_toryo_Anim_000E50; -#else -static const char object_toryo_Anim_000E50[] __attribute__((aligned (2))) = dobject_toryo_Anim_000E50; -#endif - -#define dobject_toryo_TLUT_000E60 "__OTR__objects/object_toryo/object_toryo_TLUT_000E60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_TLUT_000E60[] = dobject_toryo_TLUT_000E60; -#else -static const char object_toryo_TLUT_000E60[] __attribute__((aligned (2))) = dobject_toryo_TLUT_000E60; -#endif - -#define dobject_toryo_Tex_001060 "__OTR__objects/object_toryo/object_toryo_Tex_001060" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_001060[] = dobject_toryo_Tex_001060; -#else -static const char object_toryo_Tex_001060[] __attribute__((aligned (2))) = dobject_toryo_Tex_001060; -#endif - -#define dobject_toryo_Tex_001160 "__OTR__objects/object_toryo/object_toryo_Tex_001160" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_001160[] = dobject_toryo_Tex_001160; -#else -static const char object_toryo_Tex_001160[] __attribute__((aligned (2))) = dobject_toryo_Tex_001160; -#endif - -#define dobject_toryo_Tex_001180 "__OTR__objects/object_toryo/object_toryo_Tex_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_001180[] = dobject_toryo_Tex_001180; -#else -static const char object_toryo_Tex_001180[] __attribute__((aligned (2))) = dobject_toryo_Tex_001180; -#endif - -#define dobject_toryo_Tex_0011C0 "__OTR__objects/object_toryo/object_toryo_Tex_0011C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_0011C0[] = dobject_toryo_Tex_0011C0; -#else -static const char object_toryo_Tex_0011C0[] __attribute__((aligned (2))) = dobject_toryo_Tex_0011C0; -#endif - -#define dobject_toryo_Tex_001200 "__OTR__objects/object_toryo/object_toryo_Tex_001200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_001200[] = dobject_toryo_Tex_001200; -#else -static const char object_toryo_Tex_001200[] __attribute__((aligned (2))) = dobject_toryo_Tex_001200; -#endif - -#define dobject_toryo_Tex_001240 "__OTR__objects/object_toryo/object_toryo_Tex_001240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_001240[] = dobject_toryo_Tex_001240; -#else -static const char object_toryo_Tex_001240[] __attribute__((aligned (2))) = dobject_toryo_Tex_001240; -#endif - -#define dobject_toryo_Tex_0012C0 "__OTR__objects/object_toryo/object_toryo_Tex_0012C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_0012C0[] = dobject_toryo_Tex_0012C0; -#else -static const char object_toryo_Tex_0012C0[] __attribute__((aligned (2))) = dobject_toryo_Tex_0012C0; -#endif - -#define dobject_toryo_Tex_0016C0 "__OTR__objects/object_toryo/object_toryo_Tex_0016C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_0016C0[] = dobject_toryo_Tex_0016C0; -#else -static const char object_toryo_Tex_0016C0[] __attribute__((aligned (2))) = dobject_toryo_Tex_0016C0; -#endif - -#define dobject_toryo_Tex_0017C0 "__OTR__objects/object_toryo/object_toryo_Tex_0017C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_0017C0[] = dobject_toryo_Tex_0017C0; -#else -static const char object_toryo_Tex_0017C0[] __attribute__((aligned (2))) = dobject_toryo_Tex_0017C0; -#endif - -#define dobject_toryo_Tex_0018C0 "__OTR__objects/object_toryo/object_toryo_Tex_0018C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_0018C0[] = dobject_toryo_Tex_0018C0; -#else -static const char object_toryo_Tex_0018C0[] __attribute__((aligned (2))) = dobject_toryo_Tex_0018C0; -#endif - -#define dobject_toryo_Tex_0019C0 "__OTR__objects/object_toryo/object_toryo_Tex_0019C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_0019C0[] = dobject_toryo_Tex_0019C0; -#else -static const char object_toryo_Tex_0019C0[] __attribute__((aligned (2))) = dobject_toryo_Tex_0019C0; -#endif - -#define dobject_toryo_Tex_001A00 "__OTR__objects/object_toryo/object_toryo_Tex_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_001A00[] = dobject_toryo_Tex_001A00; -#else -static const char object_toryo_Tex_001A00[] __attribute__((aligned (2))) = dobject_toryo_Tex_001A00; -#endif - -#define dobject_toryo_Tex_001A80 "__OTR__objects/object_toryo/object_toryo_Tex_001A80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_001A80[] = dobject_toryo_Tex_001A80; -#else -static const char object_toryo_Tex_001A80[] __attribute__((aligned (2))) = dobject_toryo_Tex_001A80; -#endif - -#define dobject_toryo_Tex_001B80 "__OTR__objects/object_toryo/object_toryo_Tex_001B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Tex_001B80[] = dobject_toryo_Tex_001B80; -#else -static const char object_toryo_Tex_001B80[] __attribute__((aligned (2))) = dobject_toryo_Tex_001B80; -#endif - -#define dobject_toryo_DL_004B20 "__OTR__objects/object_toryo/object_toryo_DL_004B20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_004B20[] = dobject_toryo_DL_004B20; -#else -static const char object_toryo_DL_004B20[] __attribute__((aligned (2))) = dobject_toryo_DL_004B20; -#endif - -#define dobject_toryo_DL_004F20 "__OTR__objects/object_toryo/object_toryo_DL_004F20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_004F20[] = dobject_toryo_DL_004F20; -#else -static const char object_toryo_DL_004F20[] __attribute__((aligned (2))) = dobject_toryo_DL_004F20; -#endif - -#define dobject_toryo_DL_005438 "__OTR__objects/object_toryo/object_toryo_DL_005438" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_005438[] = dobject_toryo_DL_005438; -#else -static const char object_toryo_DL_005438[] __attribute__((aligned (2))) = dobject_toryo_DL_005438; -#endif - -#define dobject_toryo_DL_005720 "__OTR__objects/object_toryo/object_toryo_DL_005720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_005720[] = dobject_toryo_DL_005720; -#else -static const char object_toryo_DL_005720[] __attribute__((aligned (2))) = dobject_toryo_DL_005720; -#endif - -#define dobject_toryo_DL_005958 "__OTR__objects/object_toryo/object_toryo_DL_005958" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_005958[] = dobject_toryo_DL_005958; -#else -static const char object_toryo_DL_005958[] __attribute__((aligned (2))) = dobject_toryo_DL_005958; -#endif - -#define dobject_toryo_DL_005BA0 "__OTR__objects/object_toryo/object_toryo_DL_005BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_005BA0[] = dobject_toryo_DL_005BA0; -#else -static const char object_toryo_DL_005BA0[] __attribute__((aligned (2))) = dobject_toryo_DL_005BA0; -#endif - -#define dobject_toryo_DL_005D10 "__OTR__objects/object_toryo/object_toryo_DL_005D10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_005D10[] = dobject_toryo_DL_005D10; -#else -static const char object_toryo_DL_005D10[] __attribute__((aligned (2))) = dobject_toryo_DL_005D10; -#endif - -#define dobject_toryo_DL_005EC8 "__OTR__objects/object_toryo/object_toryo_DL_005EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_005EC8[] = dobject_toryo_DL_005EC8; -#else -static const char object_toryo_DL_005EC8[] __attribute__((aligned (2))) = dobject_toryo_DL_005EC8; -#endif - -#define dobject_toryo_DL_006110 "__OTR__objects/object_toryo/object_toryo_DL_006110" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_006110[] = dobject_toryo_DL_006110; -#else -static const char object_toryo_DL_006110[] __attribute__((aligned (2))) = dobject_toryo_DL_006110; -#endif - -#define dobject_toryo_DL_006280 "__OTR__objects/object_toryo/object_toryo_DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_006280[] = dobject_toryo_DL_006280; -#else -static const char object_toryo_DL_006280[] __attribute__((aligned (2))) = dobject_toryo_DL_006280; -#endif - -#define dobject_toryo_DL_0064B8 "__OTR__objects/object_toryo/object_toryo_DL_0064B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_0064B8[] = dobject_toryo_DL_0064B8; -#else -static const char object_toryo_DL_0064B8[] __attribute__((aligned (2))) = dobject_toryo_DL_0064B8; -#endif - -#define dobject_toryo_DL_0067E0 "__OTR__objects/object_toryo/object_toryo_DL_0067E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_0067E0[] = dobject_toryo_DL_0067E0; -#else -static const char object_toryo_DL_0067E0[] __attribute__((aligned (2))) = dobject_toryo_DL_0067E0; -#endif - -#define dobject_toryo_DL_0068E8 "__OTR__objects/object_toryo/object_toryo_DL_0068E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_0068E8[] = dobject_toryo_DL_0068E8; -#else -static const char object_toryo_DL_0068E8[] __attribute__((aligned (2))) = dobject_toryo_DL_0068E8; -#endif - -#define dobject_toryo_DL_006A88 "__OTR__objects/object_toryo/object_toryo_DL_006A88" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_006A88[] = dobject_toryo_DL_006A88; -#else -static const char object_toryo_DL_006A88[] __attribute__((aligned (2))) = dobject_toryo_DL_006A88; -#endif - -#define dobject_toryo_DL_006DA8 "__OTR__objects/object_toryo/object_toryo_DL_006DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_006DA8[] = dobject_toryo_DL_006DA8; -#else -static const char object_toryo_DL_006DA8[] __attribute__((aligned (2))) = dobject_toryo_DL_006DA8; -#endif - -#define dobject_toryo_DL_006EB0 "__OTR__objects/object_toryo/object_toryo_DL_006EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_DL_006EB0[] = dobject_toryo_DL_006EB0; -#else -static const char object_toryo_DL_006EB0[] __attribute__((aligned (2))) = dobject_toryo_DL_006EB0; -#endif - -#define dobject_toryo_Skel_007150 "__OTR__objects/object_toryo/object_toryo_Skel_007150" -#ifdef _WIN32 -static const __declspec(align(2)) char object_toryo_Skel_007150[] = dobject_toryo_Skel_007150; -#else -static const char object_toryo_Skel_007150[] __attribute__((aligned (2))) = dobject_toryo_Skel_007150; -#endif - +#include "align_asset_macro.h" + +#define dobject_toryo_Anim_000E50 "__OTR__objects/object_toryo/object_toryo_Anim_000E50" +static const ALIGN_ASSET(2) char object_toryo_Anim_000E50[] = dobject_toryo_Anim_000E50; + +#define dobject_toryo_TLUT_000E60 "__OTR__objects/object_toryo/object_toryo_TLUT_000E60" +static const ALIGN_ASSET(2) char object_toryo_TLUT_000E60[] = dobject_toryo_TLUT_000E60; + +#define dobject_toryo_Tex_001060 "__OTR__objects/object_toryo/object_toryo_Tex_001060" +static const ALIGN_ASSET(2) char object_toryo_Tex_001060[] = dobject_toryo_Tex_001060; + +#define dobject_toryo_Tex_001160 "__OTR__objects/object_toryo/object_toryo_Tex_001160" +static const ALIGN_ASSET(2) char object_toryo_Tex_001160[] = dobject_toryo_Tex_001160; + +#define dobject_toryo_Tex_001180 "__OTR__objects/object_toryo/object_toryo_Tex_001180" +static const ALIGN_ASSET(2) char object_toryo_Tex_001180[] = dobject_toryo_Tex_001180; + +#define dobject_toryo_Tex_0011C0 "__OTR__objects/object_toryo/object_toryo_Tex_0011C0" +static const ALIGN_ASSET(2) char object_toryo_Tex_0011C0[] = dobject_toryo_Tex_0011C0; + +#define dobject_toryo_Tex_001200 "__OTR__objects/object_toryo/object_toryo_Tex_001200" +static const ALIGN_ASSET(2) char object_toryo_Tex_001200[] = dobject_toryo_Tex_001200; + +#define dobject_toryo_Tex_001240 "__OTR__objects/object_toryo/object_toryo_Tex_001240" +static const ALIGN_ASSET(2) char object_toryo_Tex_001240[] = dobject_toryo_Tex_001240; + +#define dobject_toryo_Tex_0012C0 "__OTR__objects/object_toryo/object_toryo_Tex_0012C0" +static const ALIGN_ASSET(2) char object_toryo_Tex_0012C0[] = dobject_toryo_Tex_0012C0; + +#define dobject_toryo_Tex_0016C0 "__OTR__objects/object_toryo/object_toryo_Tex_0016C0" +static const ALIGN_ASSET(2) char object_toryo_Tex_0016C0[] = dobject_toryo_Tex_0016C0; + +#define dobject_toryo_Tex_0017C0 "__OTR__objects/object_toryo/object_toryo_Tex_0017C0" +static const ALIGN_ASSET(2) char object_toryo_Tex_0017C0[] = dobject_toryo_Tex_0017C0; + +#define dobject_toryo_Tex_0018C0 "__OTR__objects/object_toryo/object_toryo_Tex_0018C0" +static const ALIGN_ASSET(2) char object_toryo_Tex_0018C0[] = dobject_toryo_Tex_0018C0; + +#define dobject_toryo_Tex_0019C0 "__OTR__objects/object_toryo/object_toryo_Tex_0019C0" +static const ALIGN_ASSET(2) char object_toryo_Tex_0019C0[] = dobject_toryo_Tex_0019C0; + +#define dobject_toryo_Tex_001A00 "__OTR__objects/object_toryo/object_toryo_Tex_001A00" +static const ALIGN_ASSET(2) char object_toryo_Tex_001A00[] = dobject_toryo_Tex_001A00; + +#define dobject_toryo_Tex_001A80 "__OTR__objects/object_toryo/object_toryo_Tex_001A80" +static const ALIGN_ASSET(2) char object_toryo_Tex_001A80[] = dobject_toryo_Tex_001A80; + +#define dobject_toryo_Tex_001B80 "__OTR__objects/object_toryo/object_toryo_Tex_001B80" +static const ALIGN_ASSET(2) char object_toryo_Tex_001B80[] = dobject_toryo_Tex_001B80; + +#define dobject_toryo_DL_004B20 "__OTR__objects/object_toryo/object_toryo_DL_004B20" +static const ALIGN_ASSET(2) char object_toryo_DL_004B20[] = dobject_toryo_DL_004B20; + +#define dobject_toryo_DL_004F20 "__OTR__objects/object_toryo/object_toryo_DL_004F20" +static const ALIGN_ASSET(2) char object_toryo_DL_004F20[] = dobject_toryo_DL_004F20; + +#define dobject_toryo_DL_005438 "__OTR__objects/object_toryo/object_toryo_DL_005438" +static const ALIGN_ASSET(2) char object_toryo_DL_005438[] = dobject_toryo_DL_005438; + +#define dobject_toryo_DL_005720 "__OTR__objects/object_toryo/object_toryo_DL_005720" +static const ALIGN_ASSET(2) char object_toryo_DL_005720[] = dobject_toryo_DL_005720; + +#define dobject_toryo_DL_005958 "__OTR__objects/object_toryo/object_toryo_DL_005958" +static const ALIGN_ASSET(2) char object_toryo_DL_005958[] = dobject_toryo_DL_005958; + +#define dobject_toryo_DL_005BA0 "__OTR__objects/object_toryo/object_toryo_DL_005BA0" +static const ALIGN_ASSET(2) char object_toryo_DL_005BA0[] = dobject_toryo_DL_005BA0; + +#define dobject_toryo_DL_005D10 "__OTR__objects/object_toryo/object_toryo_DL_005D10" +static const ALIGN_ASSET(2) char object_toryo_DL_005D10[] = dobject_toryo_DL_005D10; + +#define dobject_toryo_DL_005EC8 "__OTR__objects/object_toryo/object_toryo_DL_005EC8" +static const ALIGN_ASSET(2) char object_toryo_DL_005EC8[] = dobject_toryo_DL_005EC8; + +#define dobject_toryo_DL_006110 "__OTR__objects/object_toryo/object_toryo_DL_006110" +static const ALIGN_ASSET(2) char object_toryo_DL_006110[] = dobject_toryo_DL_006110; + +#define dobject_toryo_DL_006280 "__OTR__objects/object_toryo/object_toryo_DL_006280" +static const ALIGN_ASSET(2) char object_toryo_DL_006280[] = dobject_toryo_DL_006280; + +#define dobject_toryo_DL_0064B8 "__OTR__objects/object_toryo/object_toryo_DL_0064B8" +static const ALIGN_ASSET(2) char object_toryo_DL_0064B8[] = dobject_toryo_DL_0064B8; + +#define dobject_toryo_DL_0067E0 "__OTR__objects/object_toryo/object_toryo_DL_0067E0" +static const ALIGN_ASSET(2) char object_toryo_DL_0067E0[] = dobject_toryo_DL_0067E0; + +#define dobject_toryo_DL_0068E8 "__OTR__objects/object_toryo/object_toryo_DL_0068E8" +static const ALIGN_ASSET(2) char object_toryo_DL_0068E8[] = dobject_toryo_DL_0068E8; + +#define dobject_toryo_DL_006A88 "__OTR__objects/object_toryo/object_toryo_DL_006A88" +static const ALIGN_ASSET(2) char object_toryo_DL_006A88[] = dobject_toryo_DL_006A88; + +#define dobject_toryo_DL_006DA8 "__OTR__objects/object_toryo/object_toryo_DL_006DA8" +static const ALIGN_ASSET(2) char object_toryo_DL_006DA8[] = dobject_toryo_DL_006DA8; + +#define dobject_toryo_DL_006EB0 "__OTR__objects/object_toryo/object_toryo_DL_006EB0" +static const ALIGN_ASSET(2) char object_toryo_DL_006EB0[] = dobject_toryo_DL_006EB0; + +#define dobject_toryo_Skel_007150 "__OTR__objects/object_toryo/object_toryo_Skel_007150" +static const ALIGN_ASSET(2) char object_toryo_Skel_007150[] = dobject_toryo_Skel_007150; \ No newline at end of file diff --git a/soh/assets/objects/object_tp/object_tp.h b/soh/assets/objects/object_tp/object_tp.h index 15e37c20a..f02997ca5 100644 --- a/soh/assets/objects/object_tp/object_tp.h +++ b/soh/assets/objects/object_tp/object_tp.h @@ -1,65 +1,30 @@ #pragma once -#define dgTailpasaranTailSegmentDL "__OTR__objects/object_tp/gTailpasaranTailSegmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranTailSegmentDL[] = dgTailpasaranTailSegmentDL; -#else -static const char gTailpasaranTailSegmentDL[] __attribute__((aligned (2))) = dgTailpasaranTailSegmentDL; -#endif - -#define dgTailpasaranHeadClawDL "__OTR__objects/object_tp/gTailpasaranHeadClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranHeadClawDL[] = dgTailpasaranHeadClawDL; -#else -static const char gTailpasaranHeadClawDL[] __attribute__((aligned (2))) = dgTailpasaranHeadClawDL; -#endif - -#define dgTailpasaranHeadMouthpartsDL "__OTR__objects/object_tp/gTailpasaranHeadMouthpartsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranHeadMouthpartsDL[] = dgTailpasaranHeadMouthpartsDL; -#else -static const char gTailpasaranHeadMouthpartsDL[] __attribute__((aligned (2))) = dgTailpasaranHeadMouthpartsDL; -#endif - -#define dgTailpasaranHeadDL "__OTR__objects/object_tp/gTailpasaranHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranHeadDL[] = dgTailpasaranHeadDL; -#else -static const char gTailpasaranHeadDL[] __attribute__((aligned (2))) = dgTailpasaranHeadDL; -#endif - -#define dgTailpasaranHeadRearTex "__OTR__objects/object_tp/gTailpasaranHeadRearTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranHeadRearTex[] = dgTailpasaranHeadRearTex; -#else -static const char gTailpasaranHeadRearTex[] __attribute__((aligned (2))) = dgTailpasaranHeadRearTex; -#endif - -#define dgTailpasaranHeadClawBaseTex "__OTR__objects/object_tp/gTailpasaranHeadClawBaseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranHeadClawBaseTex[] = dgTailpasaranHeadClawBaseTex; -#else -static const char gTailpasaranHeadClawBaseTex[] __attribute__((aligned (2))) = dgTailpasaranHeadClawBaseTex; -#endif - -#define dgTailpasaranHeadClawTex "__OTR__objects/object_tp/gTailpasaranHeadClawTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranHeadClawTex[] = dgTailpasaranHeadClawTex; -#else -static const char gTailpasaranHeadClawTex[] __attribute__((aligned (2))) = dgTailpasaranHeadClawTex; -#endif - -#define dgTailpasaranTailSegmentTex "__OTR__objects/object_tp/gTailpasaranTailSegmentTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranTailSegmentTex[] = dgTailpasaranTailSegmentTex; -#else -static const char gTailpasaranTailSegmentTex[] __attribute__((aligned (2))) = dgTailpasaranTailSegmentTex; -#endif - -#define dgTailpasaranHeadMouthpartsTex "__OTR__objects/object_tp/gTailpasaranHeadMouthpartsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTailpasaranHeadMouthpartsTex[] = dgTailpasaranHeadMouthpartsTex; -#else -static const char gTailpasaranHeadMouthpartsTex[] __attribute__((aligned (2))) = dgTailpasaranHeadMouthpartsTex; -#endif - +#include "align_asset_macro.h" + +#define dgTailpasaranTailSegmentDL "__OTR__objects/object_tp/gTailpasaranTailSegmentDL" +static const ALIGN_ASSET(2) char gTailpasaranTailSegmentDL[] = dgTailpasaranTailSegmentDL; + +#define dgTailpasaranHeadClawDL "__OTR__objects/object_tp/gTailpasaranHeadClawDL" +static const ALIGN_ASSET(2) char gTailpasaranHeadClawDL[] = dgTailpasaranHeadClawDL; + +#define dgTailpasaranHeadMouthpartsDL "__OTR__objects/object_tp/gTailpasaranHeadMouthpartsDL" +static const ALIGN_ASSET(2) char gTailpasaranHeadMouthpartsDL[] = dgTailpasaranHeadMouthpartsDL; + +#define dgTailpasaranHeadDL "__OTR__objects/object_tp/gTailpasaranHeadDL" +static const ALIGN_ASSET(2) char gTailpasaranHeadDL[] = dgTailpasaranHeadDL; + +#define dgTailpasaranHeadRearTex "__OTR__objects/object_tp/gTailpasaranHeadRearTex" +static const ALIGN_ASSET(2) char gTailpasaranHeadRearTex[] = dgTailpasaranHeadRearTex; + +#define dgTailpasaranHeadClawBaseTex "__OTR__objects/object_tp/gTailpasaranHeadClawBaseTex" +static const ALIGN_ASSET(2) char gTailpasaranHeadClawBaseTex[] = dgTailpasaranHeadClawBaseTex; + +#define dgTailpasaranHeadClawTex "__OTR__objects/object_tp/gTailpasaranHeadClawTex" +static const ALIGN_ASSET(2) char gTailpasaranHeadClawTex[] = dgTailpasaranHeadClawTex; + +#define dgTailpasaranTailSegmentTex "__OTR__objects/object_tp/gTailpasaranTailSegmentTex" +static const ALIGN_ASSET(2) char gTailpasaranTailSegmentTex[] = dgTailpasaranTailSegmentTex; + +#define dgTailpasaranHeadMouthpartsTex "__OTR__objects/object_tp/gTailpasaranHeadMouthpartsTex" +static const ALIGN_ASSET(2) char gTailpasaranHeadMouthpartsTex[] = dgTailpasaranHeadMouthpartsTex; \ No newline at end of file diff --git a/soh/assets/objects/object_tr/object_tr.h b/soh/assets/objects/object_tr/object_tr.h index 40f58932b..1c3ce3c71 100644 --- a/soh/assets/objects/object_tr/object_tr.h +++ b/soh/assets/objects/object_tr/object_tr.h @@ -1,653 +1,282 @@ #pragma once -#define dobject_tr_Anim_000BFC "__OTR__objects/object_tr/object_tr_Anim_000BFC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_000BFC[] = dobject_tr_Anim_000BFC; -#else -static const char object_tr_Anim_000BFC[] __attribute__((aligned (2))) = dobject_tr_Anim_000BFC; -#endif - -#define dobject_tr_Anim_0013CC "__OTR__objects/object_tr/object_tr_Anim_0013CC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_0013CC[] = dobject_tr_Anim_0013CC; -#else -static const char object_tr_Anim_0013CC[] __attribute__((aligned (2))) = dobject_tr_Anim_0013CC; -#endif - -#define dobject_tr_Anim_001CDC "__OTR__objects/object_tr/object_tr_Anim_001CDC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_001CDC[] = dobject_tr_Anim_001CDC; -#else -static const char object_tr_Anim_001CDC[] __attribute__((aligned (2))) = dobject_tr_Anim_001CDC; -#endif - -#define dobject_tr_Anim_002BC4 "__OTR__objects/object_tr/object_tr_Anim_002BC4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_002BC4[] = dobject_tr_Anim_002BC4; -#else -static const char object_tr_Anim_002BC4[] __attribute__((aligned (2))) = dobject_tr_Anim_002BC4; -#endif - -#define dobject_tr_Anim_0035CC "__OTR__objects/object_tr/object_tr_Anim_0035CC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_0035CC[] = dobject_tr_Anim_0035CC; -#else -static const char object_tr_Anim_0035CC[] __attribute__((aligned (2))) = dobject_tr_Anim_0035CC; -#endif - -#define dobject_tr_Anim_003FC8 "__OTR__objects/object_tr/object_tr_Anim_003FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_003FC8[] = dobject_tr_Anim_003FC8; -#else -static const char object_tr_Anim_003FC8[] __attribute__((aligned (2))) = dobject_tr_Anim_003FC8; -#endif - -#define dobject_tr_Anim_0049C8 "__OTR__objects/object_tr/object_tr_Anim_0049C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_0049C8[] = dobject_tr_Anim_0049C8; -#else -static const char object_tr_Anim_0049C8[] __attribute__((aligned (2))) = dobject_tr_Anim_0049C8; -#endif - -#define dobject_tr_Anim_005308 "__OTR__objects/object_tr/object_tr_Anim_005308" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_005308[] = dobject_tr_Anim_005308; -#else -static const char object_tr_Anim_005308[] __attribute__((aligned (2))) = dobject_tr_Anim_005308; -#endif - -#define dobject_tr_Blob_0062E0 "__OTR__objects/object_tr/object_tr_Blob_0062E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Blob_0062E0[] = dobject_tr_Blob_0062E0; -#else -static const char object_tr_Blob_0062E0[] __attribute__((aligned (2))) = dobject_tr_Blob_0062E0; -#endif - -#define dobject_tr_DL_006520 "__OTR__objects/object_tr/object_tr_DL_006520" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006520[] = dobject_tr_DL_006520; -#else -static const char object_tr_DL_006520[] __attribute__((aligned (2))) = dobject_tr_DL_006520; -#endif - -#define dobject_tr_DL_0066A0 "__OTR__objects/object_tr/object_tr_DL_0066A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_0066A0[] = dobject_tr_DL_0066A0; -#else -static const char object_tr_DL_0066A0[] __attribute__((aligned (2))) = dobject_tr_DL_0066A0; -#endif - -#define dobject_tr_DL_006800 "__OTR__objects/object_tr/object_tr_DL_006800" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006800[] = dobject_tr_DL_006800; -#else -static const char object_tr_DL_006800[] __attribute__((aligned (2))) = dobject_tr_DL_006800; -#endif - -#define dobject_tr_DL_006940 "__OTR__objects/object_tr/object_tr_DL_006940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006940[] = dobject_tr_DL_006940; -#else -static const char object_tr_DL_006940[] __attribute__((aligned (2))) = dobject_tr_DL_006940; -#endif - -#define dobject_tr_DL_006A50 "__OTR__objects/object_tr/object_tr_DL_006A50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006A50[] = dobject_tr_DL_006A50; -#else -static const char object_tr_DL_006A50[] __attribute__((aligned (2))) = dobject_tr_DL_006A50; -#endif - -#define dobject_tr_DL_006B48 "__OTR__objects/object_tr/object_tr_DL_006B48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006B48[] = dobject_tr_DL_006B48; -#else -static const char object_tr_DL_006B48[] __attribute__((aligned (2))) = dobject_tr_DL_006B48; -#endif - -#define dobject_tr_DL_006C58 "__OTR__objects/object_tr/object_tr_DL_006C58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006C58[] = dobject_tr_DL_006C58; -#else -static const char object_tr_DL_006C58[] __attribute__((aligned (2))) = dobject_tr_DL_006C58; -#endif - -#define dobject_tr_DL_006D50 "__OTR__objects/object_tr/object_tr_DL_006D50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006D50[] = dobject_tr_DL_006D50; -#else -static const char object_tr_DL_006D50[] __attribute__((aligned (2))) = dobject_tr_DL_006D50; -#endif - -#define dobject_tr_DL_006E70 "__OTR__objects/object_tr/object_tr_DL_006E70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006E70[] = dobject_tr_DL_006E70; -#else -static const char object_tr_DL_006E70[] __attribute__((aligned (2))) = dobject_tr_DL_006E70; -#endif - -#define dobject_tr_DL_006FF0 "__OTR__objects/object_tr/object_tr_DL_006FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_006FF0[] = dobject_tr_DL_006FF0; -#else -static const char object_tr_DL_006FF0[] __attribute__((aligned (2))) = dobject_tr_DL_006FF0; -#endif - -#define dobject_tr_DL_007118 "__OTR__objects/object_tr/object_tr_DL_007118" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_007118[] = dobject_tr_DL_007118; -#else -static const char object_tr_DL_007118[] __attribute__((aligned (2))) = dobject_tr_DL_007118; -#endif - -#define dobject_tr_DL_007238 "__OTR__objects/object_tr/object_tr_DL_007238" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_007238[] = dobject_tr_DL_007238; -#else -static const char object_tr_DL_007238[] __attribute__((aligned (2))) = dobject_tr_DL_007238; -#endif - -#define dobject_tr_DL_007358 "__OTR__objects/object_tr/object_tr_DL_007358" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_007358[] = dobject_tr_DL_007358; -#else -static const char object_tr_DL_007358[] __attribute__((aligned (2))) = dobject_tr_DL_007358; -#endif - -#define dobject_tr_DL_0074D8 "__OTR__objects/object_tr/object_tr_DL_0074D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_0074D8[] = dobject_tr_DL_0074D8; -#else -static const char object_tr_DL_0074D8[] __attribute__((aligned (2))) = dobject_tr_DL_0074D8; -#endif - -#define dobject_tr_DL_007600 "__OTR__objects/object_tr/object_tr_DL_007600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_007600[] = dobject_tr_DL_007600; -#else -static const char object_tr_DL_007600[] __attribute__((aligned (2))) = dobject_tr_DL_007600; -#endif - -#define dobject_tr_DL_007720 "__OTR__objects/object_tr/object_tr_DL_007720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_007720[] = dobject_tr_DL_007720; -#else -static const char object_tr_DL_007720[] __attribute__((aligned (2))) = dobject_tr_DL_007720; -#endif - -#define dobject_tr_DL_007728 "__OTR__objects/object_tr/object_tr_DL_007728" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_007728[] = dobject_tr_DL_007728; -#else -static const char object_tr_DL_007728[] __attribute__((aligned (2))) = dobject_tr_DL_007728; -#endif - -#define dobject_tr_TLUT_007730 "__OTR__objects/object_tr/object_tr_TLUT_007730" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_TLUT_007730[] = dobject_tr_TLUT_007730; -#else -static const char object_tr_TLUT_007730[] __attribute__((aligned (2))) = dobject_tr_TLUT_007730; -#endif - -#define dobject_tr_Tex_0078D8 "__OTR__objects/object_tr/object_tr_Tex_0078D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0078D8[] = dobject_tr_Tex_0078D8; -#else -static const char object_tr_Tex_0078D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0078D8; -#endif - -#define dobject_tr_Tex_0080D8 "__OTR__objects/object_tr/object_tr_Tex_0080D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0080D8[] = dobject_tr_Tex_0080D8; -#else -static const char object_tr_Tex_0080D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0080D8; -#endif - -#define dobject_tr_Tex_0082D8 "__OTR__objects/object_tr/object_tr_Tex_0082D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0082D8[] = dobject_tr_Tex_0082D8; -#else -static const char object_tr_Tex_0082D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0082D8; -#endif - -#define dobject_tr_Tex_0084D8 "__OTR__objects/object_tr/object_tr_Tex_0084D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0084D8[] = dobject_tr_Tex_0084D8; -#else -static const char object_tr_Tex_0084D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0084D8; -#endif - -#define dobject_tr_Tex_0086D8 "__OTR__objects/object_tr/object_tr_Tex_0086D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0086D8[] = dobject_tr_Tex_0086D8; -#else -static const char object_tr_Tex_0086D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0086D8; -#endif - -#define dobject_tr_Tex_008AD8 "__OTR__objects/object_tr/object_tr_Tex_008AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_008AD8[] = dobject_tr_Tex_008AD8; -#else -static const char object_tr_Tex_008AD8[] __attribute__((aligned (2))) = dobject_tr_Tex_008AD8; -#endif - -#define dobject_tr_Tex_008B58 "__OTR__objects/object_tr/object_tr_Tex_008B58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_008B58[] = dobject_tr_Tex_008B58; -#else -static const char object_tr_Tex_008B58[] __attribute__((aligned (2))) = dobject_tr_Tex_008B58; -#endif - -#define dobject_tr_Tex_008B98 "__OTR__objects/object_tr/object_tr_Tex_008B98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_008B98[] = dobject_tr_Tex_008B98; -#else -static const char object_tr_Tex_008B98[] __attribute__((aligned (2))) = dobject_tr_Tex_008B98; -#endif - -#define dobject_tr_Tex_008D98 "__OTR__objects/object_tr/object_tr_Tex_008D98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_008D98[] = dobject_tr_Tex_008D98; -#else -static const char object_tr_Tex_008D98[] __attribute__((aligned (2))) = dobject_tr_Tex_008D98; -#endif - -#define dobject_tr_Tex_008DD8 "__OTR__objects/object_tr/object_tr_Tex_008DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_008DD8[] = dobject_tr_Tex_008DD8; -#else -static const char object_tr_Tex_008DD8[] __attribute__((aligned (2))) = dobject_tr_Tex_008DD8; -#endif - -#define dobject_tr_Tex_008E58 "__OTR__objects/object_tr/object_tr_Tex_008E58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_008E58[] = dobject_tr_Tex_008E58; -#else -static const char object_tr_Tex_008E58[] __attribute__((aligned (2))) = dobject_tr_Tex_008E58; -#endif - -#define dobject_tr_Tex_008ED8 "__OTR__objects/object_tr/object_tr_Tex_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_008ED8[] = dobject_tr_Tex_008ED8; -#else -static const char object_tr_Tex_008ED8[] __attribute__((aligned (2))) = dobject_tr_Tex_008ED8; -#endif - -#define dobject_tr_Tex_0092D8 "__OTR__objects/object_tr/object_tr_Tex_0092D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0092D8[] = dobject_tr_Tex_0092D8; -#else -static const char object_tr_Tex_0092D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0092D8; -#endif - -#define dobject_tr_Tex_0093D8 "__OTR__objects/object_tr/object_tr_Tex_0093D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0093D8[] = dobject_tr_Tex_0093D8; -#else -static const char object_tr_Tex_0093D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0093D8; -#endif - -#define dobject_tr_Tex_009458 "__OTR__objects/object_tr/object_tr_Tex_009458" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_009458[] = dobject_tr_Tex_009458; -#else -static const char object_tr_Tex_009458[] __attribute__((aligned (2))) = dobject_tr_Tex_009458; -#endif - -#define dobject_tr_Tex_009498 "__OTR__objects/object_tr/object_tr_Tex_009498" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_009498[] = dobject_tr_Tex_009498; -#else -static const char object_tr_Tex_009498[] __attribute__((aligned (2))) = dobject_tr_Tex_009498; -#endif - -#define dobject_tr_Tex_0094D8 "__OTR__objects/object_tr/object_tr_Tex_0094D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0094D8[] = dobject_tr_Tex_0094D8; -#else -static const char object_tr_Tex_0094D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0094D8; -#endif - -#define dobject_tr_Tex_0098D8 "__OTR__objects/object_tr/object_tr_Tex_0098D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0098D8[] = dobject_tr_Tex_0098D8; -#else -static const char object_tr_Tex_0098D8[] __attribute__((aligned (2))) = dobject_tr_Tex_0098D8; -#endif - -#define dobject_tr_DL_00AF38 "__OTR__objects/object_tr/object_tr_DL_00AF38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00AF38[] = dobject_tr_DL_00AF38; -#else -static const char object_tr_DL_00AF38[] __attribute__((aligned (2))) = dobject_tr_DL_00AF38; -#endif - -#define dobject_tr_DL_00B568 "__OTR__objects/object_tr/object_tr_DL_00B568" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00B568[] = dobject_tr_DL_00B568; -#else -static const char object_tr_DL_00B568[] __attribute__((aligned (2))) = dobject_tr_DL_00B568; -#endif - -#define dobject_tr_DL_00B5C8 "__OTR__objects/object_tr/object_tr_DL_00B5C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00B5C8[] = dobject_tr_DL_00B5C8; -#else -static const char object_tr_DL_00B5C8[] __attribute__((aligned (2))) = dobject_tr_DL_00B5C8; -#endif - -#define dobject_tr_DL_00B678 "__OTR__objects/object_tr/object_tr_DL_00B678" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00B678[] = dobject_tr_DL_00B678; -#else -static const char object_tr_DL_00B678[] __attribute__((aligned (2))) = dobject_tr_DL_00B678; -#endif - -#define dobject_tr_DL_00B728 "__OTR__objects/object_tr/object_tr_DL_00B728" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00B728[] = dobject_tr_DL_00B728; -#else -static const char object_tr_DL_00B728[] __attribute__((aligned (2))) = dobject_tr_DL_00B728; -#endif - -#define dobject_tr_DL_00B8D0 "__OTR__objects/object_tr/object_tr_DL_00B8D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00B8D0[] = dobject_tr_DL_00B8D0; -#else -static const char object_tr_DL_00B8D0[] __attribute__((aligned (2))) = dobject_tr_DL_00B8D0; -#endif - -#define dobject_tr_DL_00B968 "__OTR__objects/object_tr/object_tr_DL_00B968" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00B968[] = dobject_tr_DL_00B968; -#else -static const char object_tr_DL_00B968[] __attribute__((aligned (2))) = dobject_tr_DL_00B968; -#endif - -#define dobject_tr_DL_00BA00 "__OTR__objects/object_tr/object_tr_DL_00BA00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00BA00[] = dobject_tr_DL_00BA00; -#else -static const char object_tr_DL_00BA00[] __attribute__((aligned (2))) = dobject_tr_DL_00BA00; -#endif - -#define dobject_tr_DL_00BB68 "__OTR__objects/object_tr/object_tr_DL_00BB68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00BB68[] = dobject_tr_DL_00BB68; -#else -static const char object_tr_DL_00BB68[] __attribute__((aligned (2))) = dobject_tr_DL_00BB68; -#endif - -#define dobject_tr_Tex_00BCD0 "__OTR__objects/object_tr/object_tr_Tex_00BCD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_00BCD0[] = dobject_tr_Tex_00BCD0; -#else -static const char object_tr_Tex_00BCD0[] __attribute__((aligned (2))) = dobject_tr_Tex_00BCD0; -#endif - -#define dobject_tr_Blob_00BD50 "__OTR__objects/object_tr/object_tr_Blob_00BD50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Blob_00BD50[] = dobject_tr_Blob_00BD50; -#else -static const char object_tr_Blob_00BD50[] __attribute__((aligned (2))) = dobject_tr_Blob_00BD50; -#endif - -#define dobject_tr_Tex_00C2D0 "__OTR__objects/object_tr/object_tr_Tex_00C2D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_00C2D0[] = dobject_tr_Tex_00C2D0; -#else -static const char object_tr_Tex_00C2D0[] __attribute__((aligned (2))) = dobject_tr_Tex_00C2D0; -#endif - -#define dobject_tr_Blob_00C310 "__OTR__objects/object_tr/object_tr_Blob_00C310" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Blob_00C310[] = dobject_tr_Blob_00C310; -#else -static const char object_tr_Blob_00C310[] __attribute__((aligned (2))) = dobject_tr_Blob_00C310; -#endif - -#define dobject_tr_Skel_00C530 "__OTR__objects/object_tr/object_tr_Skel_00C530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Skel_00C530[] = dobject_tr_Skel_00C530; -#else -static const char object_tr_Skel_00C530[] __attribute__((aligned (2))) = dobject_tr_Skel_00C530; -#endif - -#define dobject_tr_Anim_00C60C "__OTR__objects/object_tr/object_tr_Anim_00C60C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_00C60C[] = dobject_tr_Anim_00C60C; -#else -static const char object_tr_Anim_00C60C[] __attribute__((aligned (2))) = dobject_tr_Anim_00C60C; -#endif - -#define dobject_tr_Blob_00D5E0 "__OTR__objects/object_tr/object_tr_Blob_00D5E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Blob_00D5E0[] = dobject_tr_Blob_00D5E0; -#else -static const char object_tr_Blob_00D5E0[] __attribute__((aligned (2))) = dobject_tr_Blob_00D5E0; -#endif - -#define dobject_tr_DL_00D820 "__OTR__objects/object_tr/object_tr_DL_00D820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00D820[] = dobject_tr_DL_00D820; -#else -static const char object_tr_DL_00D820[] __attribute__((aligned (2))) = dobject_tr_DL_00D820; -#endif - -#define dobject_tr_DL_00D9A0 "__OTR__objects/object_tr/object_tr_DL_00D9A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00D9A0[] = dobject_tr_DL_00D9A0; -#else -static const char object_tr_DL_00D9A0[] __attribute__((aligned (2))) = dobject_tr_DL_00D9A0; -#endif - -#define dobject_tr_DL_00DB00 "__OTR__objects/object_tr/object_tr_DL_00DB00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00DB00[] = dobject_tr_DL_00DB00; -#else -static const char object_tr_DL_00DB00[] __attribute__((aligned (2))) = dobject_tr_DL_00DB00; -#endif - -#define dobject_tr_DL_00DC40 "__OTR__objects/object_tr/object_tr_DL_00DC40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00DC40[] = dobject_tr_DL_00DC40; -#else -static const char object_tr_DL_00DC40[] __attribute__((aligned (2))) = dobject_tr_DL_00DC40; -#endif - -#define dobject_tr_DL_00DD50 "__OTR__objects/object_tr/object_tr_DL_00DD50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00DD50[] = dobject_tr_DL_00DD50; -#else -static const char object_tr_DL_00DD50[] __attribute__((aligned (2))) = dobject_tr_DL_00DD50; -#endif - -#define dobject_tr_DL_00DE48 "__OTR__objects/object_tr/object_tr_DL_00DE48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00DE48[] = dobject_tr_DL_00DE48; -#else -static const char object_tr_DL_00DE48[] __attribute__((aligned (2))) = dobject_tr_DL_00DE48; -#endif - -#define dobject_tr_DL_00DF58 "__OTR__objects/object_tr/object_tr_DL_00DF58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00DF58[] = dobject_tr_DL_00DF58; -#else -static const char object_tr_DL_00DF58[] __attribute__((aligned (2))) = dobject_tr_DL_00DF58; -#endif - -#define dobject_tr_DL_00E050 "__OTR__objects/object_tr/object_tr_DL_00E050" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00E050[] = dobject_tr_DL_00E050; -#else -static const char object_tr_DL_00E050[] __attribute__((aligned (2))) = dobject_tr_DL_00E050; -#endif - -#define dobject_tr_DL_00E170 "__OTR__objects/object_tr/object_tr_DL_00E170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00E170[] = dobject_tr_DL_00E170; -#else -static const char object_tr_DL_00E170[] __attribute__((aligned (2))) = dobject_tr_DL_00E170; -#endif - -#define dobject_tr_DL_00E2F0 "__OTR__objects/object_tr/object_tr_DL_00E2F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00E2F0[] = dobject_tr_DL_00E2F0; -#else -static const char object_tr_DL_00E2F0[] __attribute__((aligned (2))) = dobject_tr_DL_00E2F0; -#endif - -#define dobject_tr_DL_00E418 "__OTR__objects/object_tr/object_tr_DL_00E418" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00E418[] = dobject_tr_DL_00E418; -#else -static const char object_tr_DL_00E418[] __attribute__((aligned (2))) = dobject_tr_DL_00E418; -#endif - -#define dobject_tr_DL_00E538 "__OTR__objects/object_tr/object_tr_DL_00E538" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00E538[] = dobject_tr_DL_00E538; -#else -static const char object_tr_DL_00E538[] __attribute__((aligned (2))) = dobject_tr_DL_00E538; -#endif - -#define dobject_tr_DL_00E658 "__OTR__objects/object_tr/object_tr_DL_00E658" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00E658[] = dobject_tr_DL_00E658; -#else -static const char object_tr_DL_00E658[] __attribute__((aligned (2))) = dobject_tr_DL_00E658; -#endif - -#define dobject_tr_DL_00E7D8 "__OTR__objects/object_tr/object_tr_DL_00E7D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00E7D8[] = dobject_tr_DL_00E7D8; -#else -static const char object_tr_DL_00E7D8[] __attribute__((aligned (2))) = dobject_tr_DL_00E7D8; -#endif - -#define dobject_tr_DL_00E900 "__OTR__objects/object_tr/object_tr_DL_00E900" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00E900[] = dobject_tr_DL_00E900; -#else -static const char object_tr_DL_00E900[] __attribute__((aligned (2))) = dobject_tr_DL_00E900; -#endif - -#define dobject_tr_DL_00EA20 "__OTR__objects/object_tr/object_tr_DL_00EA20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00EA20[] = dobject_tr_DL_00EA20; -#else -static const char object_tr_DL_00EA20[] __attribute__((aligned (2))) = dobject_tr_DL_00EA20; -#endif - -#define dobject_tr_DL_00EA28 "__OTR__objects/object_tr/object_tr_DL_00EA28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_00EA28[] = dobject_tr_DL_00EA28; -#else -static const char object_tr_DL_00EA28[] __attribute__((aligned (2))) = dobject_tr_DL_00EA28; -#endif - -#define dobject_tr_Tex_00EA30 "__OTR__objects/object_tr/object_tr_Tex_00EA30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_00EA30[] = dobject_tr_Tex_00EA30; -#else -static const char object_tr_Tex_00EA30[] __attribute__((aligned (2))) = dobject_tr_Tex_00EA30; -#endif - -#define dobject_tr_Tex_00F230 "__OTR__objects/object_tr/object_tr_Tex_00F230" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_00F230[] = dobject_tr_Tex_00F230; -#else -static const char object_tr_Tex_00F230[] __attribute__((aligned (2))) = dobject_tr_Tex_00F230; -#endif - -#define dobject_tr_Tex_00F430 "__OTR__objects/object_tr/object_tr_Tex_00F430" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_00F430[] = dobject_tr_Tex_00F430; -#else -static const char object_tr_Tex_00F430[] __attribute__((aligned (2))) = dobject_tr_Tex_00F430; -#endif - -#define dobject_tr_DL_010710 "__OTR__objects/object_tr/object_tr_DL_010710" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_010710[] = dobject_tr_DL_010710; -#else -static const char object_tr_DL_010710[] __attribute__((aligned (2))) = dobject_tr_DL_010710; -#endif - -#define dobject_tr_DL_010D40 "__OTR__objects/object_tr/object_tr_DL_010D40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_010D40[] = dobject_tr_DL_010D40; -#else -static const char object_tr_DL_010D40[] __attribute__((aligned (2))) = dobject_tr_DL_010D40; -#endif - -#define dobject_tr_DL_010DA0 "__OTR__objects/object_tr/object_tr_DL_010DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_010DA0[] = dobject_tr_DL_010DA0; -#else -static const char object_tr_DL_010DA0[] __attribute__((aligned (2))) = dobject_tr_DL_010DA0; -#endif - -#define dobject_tr_DL_010E50 "__OTR__objects/object_tr/object_tr_DL_010E50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_010E50[] = dobject_tr_DL_010E50; -#else -static const char object_tr_DL_010E50[] __attribute__((aligned (2))) = dobject_tr_DL_010E50; -#endif - -#define dobject_tr_DL_010F00 "__OTR__objects/object_tr/object_tr_DL_010F00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_010F00[] = dobject_tr_DL_010F00; -#else -static const char object_tr_DL_010F00[] __attribute__((aligned (2))) = dobject_tr_DL_010F00; -#endif - -#define dobject_tr_DL_0110A8 "__OTR__objects/object_tr/object_tr_DL_0110A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_0110A8[] = dobject_tr_DL_0110A8; -#else -static const char object_tr_DL_0110A8[] __attribute__((aligned (2))) = dobject_tr_DL_0110A8; -#endif - -#define dobject_tr_DL_011140 "__OTR__objects/object_tr/object_tr_DL_011140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_011140[] = dobject_tr_DL_011140; -#else -static const char object_tr_DL_011140[] __attribute__((aligned (2))) = dobject_tr_DL_011140; -#endif - -#define dobject_tr_DL_0111D8 "__OTR__objects/object_tr/object_tr_DL_0111D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_0111D8[] = dobject_tr_DL_0111D8; -#else -static const char object_tr_DL_0111D8[] __attribute__((aligned (2))) = dobject_tr_DL_0111D8; -#endif - -#define dobject_tr_DL_011340 "__OTR__objects/object_tr/object_tr_DL_011340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_DL_011340[] = dobject_tr_DL_011340; -#else -static const char object_tr_DL_011340[] __attribute__((aligned (2))) = dobject_tr_DL_011340; -#endif - -#define dobject_tr_Tex_0114A8 "__OTR__objects/object_tr/object_tr_Tex_0114A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Tex_0114A8[] = dobject_tr_Tex_0114A8; -#else -static const char object_tr_Tex_0114A8[] __attribute__((aligned (2))) = dobject_tr_Tex_0114A8; -#endif - -#define dobject_tr_Skel_011688 "__OTR__objects/object_tr/object_tr_Skel_011688" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Skel_011688[] = dobject_tr_Skel_011688; -#else -static const char object_tr_Skel_011688[] __attribute__((aligned (2))) = dobject_tr_Skel_011688; -#endif - -#define dobject_tr_Anim_012E1C "__OTR__objects/object_tr/object_tr_Anim_012E1C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tr_Anim_012E1C[] = dobject_tr_Anim_012E1C; -#else -static const char object_tr_Anim_012E1C[] __attribute__((aligned (2))) = dobject_tr_Anim_012E1C; -#endif - +#include "align_asset_macro.h" + +#define dobject_tr_Anim_000BFC "__OTR__objects/object_tr/object_tr_Anim_000BFC" +static const ALIGN_ASSET(2) char object_tr_Anim_000BFC[] = dobject_tr_Anim_000BFC; + +#define dobject_tr_Anim_0013CC "__OTR__objects/object_tr/object_tr_Anim_0013CC" +static const ALIGN_ASSET(2) char object_tr_Anim_0013CC[] = dobject_tr_Anim_0013CC; + +#define dobject_tr_Anim_001CDC "__OTR__objects/object_tr/object_tr_Anim_001CDC" +static const ALIGN_ASSET(2) char object_tr_Anim_001CDC[] = dobject_tr_Anim_001CDC; + +#define dobject_tr_Anim_002BC4 "__OTR__objects/object_tr/object_tr_Anim_002BC4" +static const ALIGN_ASSET(2) char object_tr_Anim_002BC4[] = dobject_tr_Anim_002BC4; + +#define dobject_tr_Anim_0035CC "__OTR__objects/object_tr/object_tr_Anim_0035CC" +static const ALIGN_ASSET(2) char object_tr_Anim_0035CC[] = dobject_tr_Anim_0035CC; + +#define dobject_tr_Anim_003FC8 "__OTR__objects/object_tr/object_tr_Anim_003FC8" +static const ALIGN_ASSET(2) char object_tr_Anim_003FC8[] = dobject_tr_Anim_003FC8; + +#define dobject_tr_Anim_0049C8 "__OTR__objects/object_tr/object_tr_Anim_0049C8" +static const ALIGN_ASSET(2) char object_tr_Anim_0049C8[] = dobject_tr_Anim_0049C8; + +#define dobject_tr_Anim_005308 "__OTR__objects/object_tr/object_tr_Anim_005308" +static const ALIGN_ASSET(2) char object_tr_Anim_005308[] = dobject_tr_Anim_005308; + +#define dobject_tr_Blob_0062E0 "__OTR__objects/object_tr/object_tr_Blob_0062E0" +static const ALIGN_ASSET(2) char object_tr_Blob_0062E0[] = dobject_tr_Blob_0062E0; + +#define dobject_tr_DL_006520 "__OTR__objects/object_tr/object_tr_DL_006520" +static const ALIGN_ASSET(2) char object_tr_DL_006520[] = dobject_tr_DL_006520; + +#define dobject_tr_DL_0066A0 "__OTR__objects/object_tr/object_tr_DL_0066A0" +static const ALIGN_ASSET(2) char object_tr_DL_0066A0[] = dobject_tr_DL_0066A0; + +#define dobject_tr_DL_006800 "__OTR__objects/object_tr/object_tr_DL_006800" +static const ALIGN_ASSET(2) char object_tr_DL_006800[] = dobject_tr_DL_006800; + +#define dobject_tr_DL_006940 "__OTR__objects/object_tr/object_tr_DL_006940" +static const ALIGN_ASSET(2) char object_tr_DL_006940[] = dobject_tr_DL_006940; + +#define dobject_tr_DL_006A50 "__OTR__objects/object_tr/object_tr_DL_006A50" +static const ALIGN_ASSET(2) char object_tr_DL_006A50[] = dobject_tr_DL_006A50; + +#define dobject_tr_DL_006B48 "__OTR__objects/object_tr/object_tr_DL_006B48" +static const ALIGN_ASSET(2) char object_tr_DL_006B48[] = dobject_tr_DL_006B48; + +#define dobject_tr_DL_006C58 "__OTR__objects/object_tr/object_tr_DL_006C58" +static const ALIGN_ASSET(2) char object_tr_DL_006C58[] = dobject_tr_DL_006C58; + +#define dobject_tr_DL_006D50 "__OTR__objects/object_tr/object_tr_DL_006D50" +static const ALIGN_ASSET(2) char object_tr_DL_006D50[] = dobject_tr_DL_006D50; + +#define dobject_tr_DL_006E70 "__OTR__objects/object_tr/object_tr_DL_006E70" +static const ALIGN_ASSET(2) char object_tr_DL_006E70[] = dobject_tr_DL_006E70; + +#define dobject_tr_DL_006FF0 "__OTR__objects/object_tr/object_tr_DL_006FF0" +static const ALIGN_ASSET(2) char object_tr_DL_006FF0[] = dobject_tr_DL_006FF0; + +#define dobject_tr_DL_007118 "__OTR__objects/object_tr/object_tr_DL_007118" +static const ALIGN_ASSET(2) char object_tr_DL_007118[] = dobject_tr_DL_007118; + +#define dobject_tr_DL_007238 "__OTR__objects/object_tr/object_tr_DL_007238" +static const ALIGN_ASSET(2) char object_tr_DL_007238[] = dobject_tr_DL_007238; + +#define dobject_tr_DL_007358 "__OTR__objects/object_tr/object_tr_DL_007358" +static const ALIGN_ASSET(2) char object_tr_DL_007358[] = dobject_tr_DL_007358; + +#define dobject_tr_DL_0074D8 "__OTR__objects/object_tr/object_tr_DL_0074D8" +static const ALIGN_ASSET(2) char object_tr_DL_0074D8[] = dobject_tr_DL_0074D8; + +#define dobject_tr_DL_007600 "__OTR__objects/object_tr/object_tr_DL_007600" +static const ALIGN_ASSET(2) char object_tr_DL_007600[] = dobject_tr_DL_007600; + +#define dobject_tr_DL_007720 "__OTR__objects/object_tr/object_tr_DL_007720" +static const ALIGN_ASSET(2) char object_tr_DL_007720[] = dobject_tr_DL_007720; + +#define dobject_tr_DL_007728 "__OTR__objects/object_tr/object_tr_DL_007728" +static const ALIGN_ASSET(2) char object_tr_DL_007728[] = dobject_tr_DL_007728; + +#define dobject_tr_TLUT_007730 "__OTR__objects/object_tr/object_tr_TLUT_007730" +static const ALIGN_ASSET(2) char object_tr_TLUT_007730[] = dobject_tr_TLUT_007730; + +#define dobject_tr_Tex_0078D8 "__OTR__objects/object_tr/object_tr_Tex_0078D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0078D8[] = dobject_tr_Tex_0078D8; + +#define dobject_tr_Tex_0080D8 "__OTR__objects/object_tr/object_tr_Tex_0080D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0080D8[] = dobject_tr_Tex_0080D8; + +#define dobject_tr_Tex_0082D8 "__OTR__objects/object_tr/object_tr_Tex_0082D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0082D8[] = dobject_tr_Tex_0082D8; + +#define dobject_tr_Tex_0084D8 "__OTR__objects/object_tr/object_tr_Tex_0084D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0084D8[] = dobject_tr_Tex_0084D8; + +#define dobject_tr_Tex_0086D8 "__OTR__objects/object_tr/object_tr_Tex_0086D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0086D8[] = dobject_tr_Tex_0086D8; + +#define dobject_tr_Tex_008AD8 "__OTR__objects/object_tr/object_tr_Tex_008AD8" +static const ALIGN_ASSET(2) char object_tr_Tex_008AD8[] = dobject_tr_Tex_008AD8; + +#define dobject_tr_Tex_008B58 "__OTR__objects/object_tr/object_tr_Tex_008B58" +static const ALIGN_ASSET(2) char object_tr_Tex_008B58[] = dobject_tr_Tex_008B58; + +#define dobject_tr_Tex_008B98 "__OTR__objects/object_tr/object_tr_Tex_008B98" +static const ALIGN_ASSET(2) char object_tr_Tex_008B98[] = dobject_tr_Tex_008B98; + +#define dobject_tr_Tex_008D98 "__OTR__objects/object_tr/object_tr_Tex_008D98" +static const ALIGN_ASSET(2) char object_tr_Tex_008D98[] = dobject_tr_Tex_008D98; + +#define dobject_tr_Tex_008DD8 "__OTR__objects/object_tr/object_tr_Tex_008DD8" +static const ALIGN_ASSET(2) char object_tr_Tex_008DD8[] = dobject_tr_Tex_008DD8; + +#define dobject_tr_Tex_008E58 "__OTR__objects/object_tr/object_tr_Tex_008E58" +static const ALIGN_ASSET(2) char object_tr_Tex_008E58[] = dobject_tr_Tex_008E58; + +#define dobject_tr_Tex_008ED8 "__OTR__objects/object_tr/object_tr_Tex_008ED8" +static const ALIGN_ASSET(2) char object_tr_Tex_008ED8[] = dobject_tr_Tex_008ED8; + +#define dobject_tr_Tex_0092D8 "__OTR__objects/object_tr/object_tr_Tex_0092D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0092D8[] = dobject_tr_Tex_0092D8; + +#define dobject_tr_Tex_0093D8 "__OTR__objects/object_tr/object_tr_Tex_0093D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0093D8[] = dobject_tr_Tex_0093D8; + +#define dobject_tr_Tex_009458 "__OTR__objects/object_tr/object_tr_Tex_009458" +static const ALIGN_ASSET(2) char object_tr_Tex_009458[] = dobject_tr_Tex_009458; + +#define dobject_tr_Tex_009498 "__OTR__objects/object_tr/object_tr_Tex_009498" +static const ALIGN_ASSET(2) char object_tr_Tex_009498[] = dobject_tr_Tex_009498; + +#define dobject_tr_Tex_0094D8 "__OTR__objects/object_tr/object_tr_Tex_0094D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0094D8[] = dobject_tr_Tex_0094D8; + +#define dobject_tr_Tex_0098D8 "__OTR__objects/object_tr/object_tr_Tex_0098D8" +static const ALIGN_ASSET(2) char object_tr_Tex_0098D8[] = dobject_tr_Tex_0098D8; + +#define dobject_tr_DL_00AF38 "__OTR__objects/object_tr/object_tr_DL_00AF38" +static const ALIGN_ASSET(2) char object_tr_DL_00AF38[] = dobject_tr_DL_00AF38; + +#define dobject_tr_DL_00B568 "__OTR__objects/object_tr/object_tr_DL_00B568" +static const ALIGN_ASSET(2) char object_tr_DL_00B568[] = dobject_tr_DL_00B568; + +#define dobject_tr_DL_00B5C8 "__OTR__objects/object_tr/object_tr_DL_00B5C8" +static const ALIGN_ASSET(2) char object_tr_DL_00B5C8[] = dobject_tr_DL_00B5C8; + +#define dobject_tr_DL_00B678 "__OTR__objects/object_tr/object_tr_DL_00B678" +static const ALIGN_ASSET(2) char object_tr_DL_00B678[] = dobject_tr_DL_00B678; + +#define dobject_tr_DL_00B728 "__OTR__objects/object_tr/object_tr_DL_00B728" +static const ALIGN_ASSET(2) char object_tr_DL_00B728[] = dobject_tr_DL_00B728; + +#define dobject_tr_DL_00B8D0 "__OTR__objects/object_tr/object_tr_DL_00B8D0" +static const ALIGN_ASSET(2) char object_tr_DL_00B8D0[] = dobject_tr_DL_00B8D0; + +#define dobject_tr_DL_00B968 "__OTR__objects/object_tr/object_tr_DL_00B968" +static const ALIGN_ASSET(2) char object_tr_DL_00B968[] = dobject_tr_DL_00B968; + +#define dobject_tr_DL_00BA00 "__OTR__objects/object_tr/object_tr_DL_00BA00" +static const ALIGN_ASSET(2) char object_tr_DL_00BA00[] = dobject_tr_DL_00BA00; + +#define dobject_tr_DL_00BB68 "__OTR__objects/object_tr/object_tr_DL_00BB68" +static const ALIGN_ASSET(2) char object_tr_DL_00BB68[] = dobject_tr_DL_00BB68; + +#define dobject_tr_Tex_00BCD0 "__OTR__objects/object_tr/object_tr_Tex_00BCD0" +static const ALIGN_ASSET(2) char object_tr_Tex_00BCD0[] = dobject_tr_Tex_00BCD0; + +#define dobject_tr_Blob_00BD50 "__OTR__objects/object_tr/object_tr_Blob_00BD50" +static const ALIGN_ASSET(2) char object_tr_Blob_00BD50[] = dobject_tr_Blob_00BD50; + +#define dobject_tr_Tex_00C2D0 "__OTR__objects/object_tr/object_tr_Tex_00C2D0" +static const ALIGN_ASSET(2) char object_tr_Tex_00C2D0[] = dobject_tr_Tex_00C2D0; + +#define dobject_tr_Blob_00C310 "__OTR__objects/object_tr/object_tr_Blob_00C310" +static const ALIGN_ASSET(2) char object_tr_Blob_00C310[] = dobject_tr_Blob_00C310; + +#define dobject_tr_Skel_00C530 "__OTR__objects/object_tr/object_tr_Skel_00C530" +static const ALIGN_ASSET(2) char object_tr_Skel_00C530[] = dobject_tr_Skel_00C530; + +#define dobject_tr_Anim_00C60C "__OTR__objects/object_tr/object_tr_Anim_00C60C" +static const ALIGN_ASSET(2) char object_tr_Anim_00C60C[] = dobject_tr_Anim_00C60C; + +#define dobject_tr_Blob_00D5E0 "__OTR__objects/object_tr/object_tr_Blob_00D5E0" +static const ALIGN_ASSET(2) char object_tr_Blob_00D5E0[] = dobject_tr_Blob_00D5E0; + +#define dobject_tr_DL_00D820 "__OTR__objects/object_tr/object_tr_DL_00D820" +static const ALIGN_ASSET(2) char object_tr_DL_00D820[] = dobject_tr_DL_00D820; + +#define dobject_tr_DL_00D9A0 "__OTR__objects/object_tr/object_tr_DL_00D9A0" +static const ALIGN_ASSET(2) char object_tr_DL_00D9A0[] = dobject_tr_DL_00D9A0; + +#define dobject_tr_DL_00DB00 "__OTR__objects/object_tr/object_tr_DL_00DB00" +static const ALIGN_ASSET(2) char object_tr_DL_00DB00[] = dobject_tr_DL_00DB00; + +#define dobject_tr_DL_00DC40 "__OTR__objects/object_tr/object_tr_DL_00DC40" +static const ALIGN_ASSET(2) char object_tr_DL_00DC40[] = dobject_tr_DL_00DC40; + +#define dobject_tr_DL_00DD50 "__OTR__objects/object_tr/object_tr_DL_00DD50" +static const ALIGN_ASSET(2) char object_tr_DL_00DD50[] = dobject_tr_DL_00DD50; + +#define dobject_tr_DL_00DE48 "__OTR__objects/object_tr/object_tr_DL_00DE48" +static const ALIGN_ASSET(2) char object_tr_DL_00DE48[] = dobject_tr_DL_00DE48; + +#define dobject_tr_DL_00DF58 "__OTR__objects/object_tr/object_tr_DL_00DF58" +static const ALIGN_ASSET(2) char object_tr_DL_00DF58[] = dobject_tr_DL_00DF58; + +#define dobject_tr_DL_00E050 "__OTR__objects/object_tr/object_tr_DL_00E050" +static const ALIGN_ASSET(2) char object_tr_DL_00E050[] = dobject_tr_DL_00E050; + +#define dobject_tr_DL_00E170 "__OTR__objects/object_tr/object_tr_DL_00E170" +static const ALIGN_ASSET(2) char object_tr_DL_00E170[] = dobject_tr_DL_00E170; + +#define dobject_tr_DL_00E2F0 "__OTR__objects/object_tr/object_tr_DL_00E2F0" +static const ALIGN_ASSET(2) char object_tr_DL_00E2F0[] = dobject_tr_DL_00E2F0; + +#define dobject_tr_DL_00E418 "__OTR__objects/object_tr/object_tr_DL_00E418" +static const ALIGN_ASSET(2) char object_tr_DL_00E418[] = dobject_tr_DL_00E418; + +#define dobject_tr_DL_00E538 "__OTR__objects/object_tr/object_tr_DL_00E538" +static const ALIGN_ASSET(2) char object_tr_DL_00E538[] = dobject_tr_DL_00E538; + +#define dobject_tr_DL_00E658 "__OTR__objects/object_tr/object_tr_DL_00E658" +static const ALIGN_ASSET(2) char object_tr_DL_00E658[] = dobject_tr_DL_00E658; + +#define dobject_tr_DL_00E7D8 "__OTR__objects/object_tr/object_tr_DL_00E7D8" +static const ALIGN_ASSET(2) char object_tr_DL_00E7D8[] = dobject_tr_DL_00E7D8; + +#define dobject_tr_DL_00E900 "__OTR__objects/object_tr/object_tr_DL_00E900" +static const ALIGN_ASSET(2) char object_tr_DL_00E900[] = dobject_tr_DL_00E900; + +#define dobject_tr_DL_00EA20 "__OTR__objects/object_tr/object_tr_DL_00EA20" +static const ALIGN_ASSET(2) char object_tr_DL_00EA20[] = dobject_tr_DL_00EA20; + +#define dobject_tr_DL_00EA28 "__OTR__objects/object_tr/object_tr_DL_00EA28" +static const ALIGN_ASSET(2) char object_tr_DL_00EA28[] = dobject_tr_DL_00EA28; + +#define dobject_tr_Tex_00EA30 "__OTR__objects/object_tr/object_tr_Tex_00EA30" +static const ALIGN_ASSET(2) char object_tr_Tex_00EA30[] = dobject_tr_Tex_00EA30; + +#define dobject_tr_Tex_00F230 "__OTR__objects/object_tr/object_tr_Tex_00F230" +static const ALIGN_ASSET(2) char object_tr_Tex_00F230[] = dobject_tr_Tex_00F230; + +#define dobject_tr_Tex_00F430 "__OTR__objects/object_tr/object_tr_Tex_00F430" +static const ALIGN_ASSET(2) char object_tr_Tex_00F430[] = dobject_tr_Tex_00F430; + +#define dobject_tr_DL_010710 "__OTR__objects/object_tr/object_tr_DL_010710" +static const ALIGN_ASSET(2) char object_tr_DL_010710[] = dobject_tr_DL_010710; + +#define dobject_tr_DL_010D40 "__OTR__objects/object_tr/object_tr_DL_010D40" +static const ALIGN_ASSET(2) char object_tr_DL_010D40[] = dobject_tr_DL_010D40; + +#define dobject_tr_DL_010DA0 "__OTR__objects/object_tr/object_tr_DL_010DA0" +static const ALIGN_ASSET(2) char object_tr_DL_010DA0[] = dobject_tr_DL_010DA0; + +#define dobject_tr_DL_010E50 "__OTR__objects/object_tr/object_tr_DL_010E50" +static const ALIGN_ASSET(2) char object_tr_DL_010E50[] = dobject_tr_DL_010E50; + +#define dobject_tr_DL_010F00 "__OTR__objects/object_tr/object_tr_DL_010F00" +static const ALIGN_ASSET(2) char object_tr_DL_010F00[] = dobject_tr_DL_010F00; + +#define dobject_tr_DL_0110A8 "__OTR__objects/object_tr/object_tr_DL_0110A8" +static const ALIGN_ASSET(2) char object_tr_DL_0110A8[] = dobject_tr_DL_0110A8; + +#define dobject_tr_DL_011140 "__OTR__objects/object_tr/object_tr_DL_011140" +static const ALIGN_ASSET(2) char object_tr_DL_011140[] = dobject_tr_DL_011140; + +#define dobject_tr_DL_0111D8 "__OTR__objects/object_tr/object_tr_DL_0111D8" +static const ALIGN_ASSET(2) char object_tr_DL_0111D8[] = dobject_tr_DL_0111D8; + +#define dobject_tr_DL_011340 "__OTR__objects/object_tr/object_tr_DL_011340" +static const ALIGN_ASSET(2) char object_tr_DL_011340[] = dobject_tr_DL_011340; + +#define dobject_tr_Tex_0114A8 "__OTR__objects/object_tr/object_tr_Tex_0114A8" +static const ALIGN_ASSET(2) char object_tr_Tex_0114A8[] = dobject_tr_Tex_0114A8; + +#define dobject_tr_Skel_011688 "__OTR__objects/object_tr/object_tr_Skel_011688" +static const ALIGN_ASSET(2) char object_tr_Skel_011688[] = dobject_tr_Skel_011688; + +#define dobject_tr_Anim_012E1C "__OTR__objects/object_tr/object_tr_Anim_012E1C" +static const ALIGN_ASSET(2) char object_tr_Anim_012E1C[] = dobject_tr_Anim_012E1C; \ No newline at end of file diff --git a/soh/assets/objects/object_trap/object_trap.h b/soh/assets/objects/object_trap/object_trap.h index 6b972b559..ef9b2304a 100644 --- a/soh/assets/objects/object_trap/object_trap.h +++ b/soh/assets/objects/object_trap/object_trap.h @@ -1,51 +1,24 @@ #pragma once -#define dgSlidingBladeTrapTex_0000 "__OTR__objects/object_trap/gSlidingBladeTrapTex_0000" -#ifdef _WIN32 -static const __declspec(align(2)) char gSlidingBladeTrapTex_0000[] = dgSlidingBladeTrapTex_0000; -#else -static const char gSlidingBladeTrapTex_0000[] __attribute__((aligned (2))) = dgSlidingBladeTrapTex_0000; -#endif - -#define dgSlidingBladeTrapBoltsTex "__OTR__objects/object_trap/gSlidingBladeTrapBoltsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSlidingBladeTrapBoltsTex[] = dgSlidingBladeTrapBoltsTex; -#else -static const char gSlidingBladeTrapBoltsTex[] __attribute__((aligned (2))) = dgSlidingBladeTrapBoltsTex; -#endif - -#define dgSlidingBladeTrapGradientTex "__OTR__objects/object_trap/gSlidingBladeTrapGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSlidingBladeTrapGradientTex[] = dgSlidingBladeTrapGradientTex; -#else -static const char gSlidingBladeTrapGradientTex[] __attribute__((aligned (2))) = dgSlidingBladeTrapGradientTex; -#endif - -#define dgLandmineBillboardTex "__OTR__objects/object_trap/gLandmineBillboardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLandmineBillboardTex[] = dgLandmineBillboardTex; -#else -static const char gLandmineBillboardTex[] __attribute__((aligned (2))) = dgLandmineBillboardTex; -#endif - -#define dgSlidingBladeTrapDL "__OTR__objects/object_trap/gSlidingBladeTrapDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSlidingBladeTrapDL[] = dgSlidingBladeTrapDL; -#else -static const char gSlidingBladeTrapDL[] __attribute__((aligned (2))) = dgSlidingBladeTrapDL; -#endif - -#define dgLandmineBillboardDL "__OTR__objects/object_trap/gLandmineBillboardDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLandmineBillboardDL[] = dgLandmineBillboardDL; -#else -static const char gLandmineBillboardDL[] __attribute__((aligned (2))) = dgLandmineBillboardDL; -#endif - -#define dgUnusedSpikeDL "__OTR__objects/object_trap/gUnusedSpikeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedSpikeDL[] = dgUnusedSpikeDL; -#else -static const char gUnusedSpikeDL[] __attribute__((aligned (2))) = dgUnusedSpikeDL; -#endif - +#include "align_asset_macro.h" + +#define dgSlidingBladeTrapTex_0000 "__OTR__objects/object_trap/gSlidingBladeTrapTex_0000" +static const ALIGN_ASSET(2) char gSlidingBladeTrapTex_0000[] = dgSlidingBladeTrapTex_0000; + +#define dgSlidingBladeTrapBoltsTex "__OTR__objects/object_trap/gSlidingBladeTrapBoltsTex" +static const ALIGN_ASSET(2) char gSlidingBladeTrapBoltsTex[] = dgSlidingBladeTrapBoltsTex; + +#define dgSlidingBladeTrapGradientTex "__OTR__objects/object_trap/gSlidingBladeTrapGradientTex" +static const ALIGN_ASSET(2) char gSlidingBladeTrapGradientTex[] = dgSlidingBladeTrapGradientTex; + +#define dgLandmineBillboardTex "__OTR__objects/object_trap/gLandmineBillboardTex" +static const ALIGN_ASSET(2) char gLandmineBillboardTex[] = dgLandmineBillboardTex; + +#define dgSlidingBladeTrapDL "__OTR__objects/object_trap/gSlidingBladeTrapDL" +static const ALIGN_ASSET(2) char gSlidingBladeTrapDL[] = dgSlidingBladeTrapDL; + +#define dgLandmineBillboardDL "__OTR__objects/object_trap/gLandmineBillboardDL" +static const ALIGN_ASSET(2) char gLandmineBillboardDL[] = dgLandmineBillboardDL; + +#define dgUnusedSpikeDL "__OTR__objects/object_trap/gUnusedSpikeDL" +static const ALIGN_ASSET(2) char gUnusedSpikeDL[] = dgUnusedSpikeDL; \ No newline at end of file diff --git a/soh/assets/objects/object_triforce_spot/object_triforce_spot.h b/soh/assets/objects/object_triforce_spot/object_triforce_spot.h index 1185bdb08..e7da30803 100644 --- a/soh/assets/objects/object_triforce_spot/object_triforce_spot.h +++ b/soh/assets/objects/object_triforce_spot/object_triforce_spot.h @@ -1,44 +1,21 @@ #pragma once -#define dgTriforceVtx "__OTR__objects/object_triforce_spot/gTriforceVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gTriforceVtx[] = dgTriforceVtx; -#else -static const char gTriforceVtx[] __attribute__((aligned (2))) = dgTriforceVtx; -#endif - -#define dgTriforceDL "__OTR__objects/object_triforce_spot/gTriforceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTriforceDL[] = dgTriforceDL; -#else -static const char gTriforceDL[] __attribute__((aligned (2))) = dgTriforceDL; -#endif - -#define dgTriforceLightColumnDL "__OTR__objects/object_triforce_spot/gTriforceLightColumnDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTriforceLightColumnDL[] = dgTriforceLightColumnDL; -#else -static const char gTriforceLightColumnDL[] __attribute__((aligned (2))) = dgTriforceLightColumnDL; -#endif - -#define dgTriforceTex "__OTR__objects/object_triforce_spot/gTriforceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTriforceTex[] = dgTriforceTex; -#else -static const char gTriforceTex[] __attribute__((aligned (2))) = dgTriforceTex; -#endif - -#define dgTriforceColumnSide1Tex "__OTR__objects/object_triforce_spot/gTriforceColumnSide1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTriforceColumnSide1Tex[] = dgTriforceColumnSide1Tex; -#else -static const char gTriforceColumnSide1Tex[] __attribute__((aligned (2))) = dgTriforceColumnSide1Tex; -#endif - -#define dgTriforceColumnSide2Tex "__OTR__objects/object_triforce_spot/gTriforceColumnSide2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTriforceColumnSide2Tex[] = dgTriforceColumnSide2Tex; -#else -static const char gTriforceColumnSide2Tex[] __attribute__((aligned (2))) = dgTriforceColumnSide2Tex; -#endif - +#include "align_asset_macro.h" + +#define dgTriforceVtx "__OTR__objects/object_triforce_spot/gTriforceVtx" +static const ALIGN_ASSET(2) char gTriforceVtx[] = dgTriforceVtx; + +#define dgTriforceDL "__OTR__objects/object_triforce_spot/gTriforceDL" +static const ALIGN_ASSET(2) char gTriforceDL[] = dgTriforceDL; + +#define dgTriforceLightColumnDL "__OTR__objects/object_triforce_spot/gTriforceLightColumnDL" +static const ALIGN_ASSET(2) char gTriforceLightColumnDL[] = dgTriforceLightColumnDL; + +#define dgTriforceTex "__OTR__objects/object_triforce_spot/gTriforceTex" +static const ALIGN_ASSET(2) char gTriforceTex[] = dgTriforceTex; + +#define dgTriforceColumnSide1Tex "__OTR__objects/object_triforce_spot/gTriforceColumnSide1Tex" +static const ALIGN_ASSET(2) char gTriforceColumnSide1Tex[] = dgTriforceColumnSide1Tex; + +#define dgTriforceColumnSide2Tex "__OTR__objects/object_triforce_spot/gTriforceColumnSide2Tex" +static const ALIGN_ASSET(2) char gTriforceColumnSide2Tex[] = dgTriforceColumnSide2Tex; \ No newline at end of file diff --git a/soh/assets/objects/object_ts/object_ts.h b/soh/assets/objects/object_ts/object_ts.h index ff46284ff..c7ec37233 100644 --- a/soh/assets/objects/object_ts/object_ts.h +++ b/soh/assets/objects/object_ts/object_ts.h @@ -1,149 +1,66 @@ #pragma once -#define dobject_ts_Anim_000498 "__OTR__objects/object_ts/object_ts_Anim_000498" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Anim_000498[] = dobject_ts_Anim_000498; -#else -static const char object_ts_Anim_000498[] __attribute__((aligned (2))) = dobject_ts_Anim_000498; -#endif - -#define dobject_ts_TLUT_0004B0 "__OTR__objects/object_ts/object_ts_TLUT_0004B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_TLUT_0004B0[] = dobject_ts_TLUT_0004B0; -#else -static const char object_ts_TLUT_0004B0[] __attribute__((aligned (2))) = dobject_ts_TLUT_0004B0; -#endif - -#define dobject_ts_Tex_0006B0 "__OTR__objects/object_ts/object_ts_Tex_0006B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_0006B0[] = dobject_ts_Tex_0006B0; -#else -static const char object_ts_Tex_0006B0[] __attribute__((aligned (2))) = dobject_ts_Tex_0006B0; -#endif - -#define dobject_ts_Tex_0006F0 "__OTR__objects/object_ts/object_ts_Tex_0006F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_0006F0[] = dobject_ts_Tex_0006F0; -#else -static const char object_ts_Tex_0006F0[] __attribute__((aligned (2))) = dobject_ts_Tex_0006F0; -#endif - -#define dobject_ts_Tex_0007F0 "__OTR__objects/object_ts/object_ts_Tex_0007F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_0007F0[] = dobject_ts_Tex_0007F0; -#else -static const char object_ts_Tex_0007F0[] __attribute__((aligned (2))) = dobject_ts_Tex_0007F0; -#endif - -#define dobject_ts_Tex_000830 "__OTR__objects/object_ts/object_ts_Tex_000830" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_000830[] = dobject_ts_Tex_000830; -#else -static const char object_ts_Tex_000830[] __attribute__((aligned (2))) = dobject_ts_Tex_000830; -#endif - -#define dobject_ts_Tex_000930 "__OTR__objects/object_ts/object_ts_Tex_000930" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_000930[] = dobject_ts_Tex_000930; -#else -static const char object_ts_Tex_000930[] __attribute__((aligned (2))) = dobject_ts_Tex_000930; -#endif - -#define dobject_ts_Tex_000970 "__OTR__objects/object_ts/object_ts_Tex_000970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_000970[] = dobject_ts_Tex_000970; -#else -static const char object_ts_Tex_000970[] __attribute__((aligned (2))) = dobject_ts_Tex_000970; -#endif - -#define dobject_ts_Tex_000D70 "__OTR__objects/object_ts/object_ts_Tex_000D70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_000D70[] = dobject_ts_Tex_000D70; -#else -static const char object_ts_Tex_000D70[] __attribute__((aligned (2))) = dobject_ts_Tex_000D70; -#endif - -#define dobject_ts_Tex_001170 "__OTR__objects/object_ts/object_ts_Tex_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_001170[] = dobject_ts_Tex_001170; -#else -static const char object_ts_Tex_001170[] __attribute__((aligned (2))) = dobject_ts_Tex_001170; -#endif - -#define dobject_ts_Tex_001270 "__OTR__objects/object_ts/object_ts_Tex_001270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Tex_001270[] = dobject_ts_Tex_001270; -#else -static const char object_ts_Tex_001270[] __attribute__((aligned (2))) = dobject_ts_Tex_001270; -#endif - -#define dobject_ts_DL_003CD0 "__OTR__objects/object_ts/object_ts_DL_003CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_003CD0[] = dobject_ts_DL_003CD0; -#else -static const char object_ts_DL_003CD0[] __attribute__((aligned (2))) = dobject_ts_DL_003CD0; -#endif - -#define dobject_ts_DL_003ED8 "__OTR__objects/object_ts/object_ts_DL_003ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_003ED8[] = dobject_ts_DL_003ED8; -#else -static const char object_ts_DL_003ED8[] __attribute__((aligned (2))) = dobject_ts_DL_003ED8; -#endif - -#define dobject_ts_DL_004378 "__OTR__objects/object_ts/object_ts_DL_004378" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_004378[] = dobject_ts_DL_004378; -#else -static const char object_ts_DL_004378[] __attribute__((aligned (2))) = dobject_ts_DL_004378; -#endif - -#define dobject_ts_DL_0046A0 "__OTR__objects/object_ts/object_ts_DL_0046A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_0046A0[] = dobject_ts_DL_0046A0; -#else -static const char object_ts_DL_0046A0[] __attribute__((aligned (2))) = dobject_ts_DL_0046A0; -#endif - -#define dobject_ts_DL_004818 "__OTR__objects/object_ts/object_ts_DL_004818" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_004818[] = dobject_ts_DL_004818; -#else -static const char object_ts_DL_004818[] __attribute__((aligned (2))) = dobject_ts_DL_004818; -#endif - -#define dobject_ts_DL_004978 "__OTR__objects/object_ts/object_ts_DL_004978" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_004978[] = dobject_ts_DL_004978; -#else -static const char object_ts_DL_004978[] __attribute__((aligned (2))) = dobject_ts_DL_004978; -#endif - -#define dobject_ts_DL_004AF8 "__OTR__objects/object_ts/object_ts_DL_004AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_004AF8[] = dobject_ts_DL_004AF8; -#else -static const char object_ts_DL_004AF8[] __attribute__((aligned (2))) = dobject_ts_DL_004AF8; -#endif - -#define dobject_ts_DL_004C70 "__OTR__objects/object_ts/object_ts_DL_004C70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_004C70[] = dobject_ts_DL_004C70; -#else -static const char object_ts_DL_004C70[] __attribute__((aligned (2))) = dobject_ts_DL_004C70; -#endif - -#define dobject_ts_DL_004DD0 "__OTR__objects/object_ts/object_ts_DL_004DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_DL_004DD0[] = dobject_ts_DL_004DD0; -#else -static const char object_ts_DL_004DD0[] __attribute__((aligned (2))) = dobject_ts_DL_004DD0; -#endif - -#define dobject_ts_Skel_004FE0 "__OTR__objects/object_ts/object_ts_Skel_004FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_ts_Skel_004FE0[] = dobject_ts_Skel_004FE0; -#else -static const char object_ts_Skel_004FE0[] __attribute__((aligned (2))) = dobject_ts_Skel_004FE0; -#endif - +#include "align_asset_macro.h" + +#define dobject_ts_Anim_000498 "__OTR__objects/object_ts/object_ts_Anim_000498" +static const ALIGN_ASSET(2) char object_ts_Anim_000498[] = dobject_ts_Anim_000498; + +#define dobject_ts_TLUT_0004B0 "__OTR__objects/object_ts/object_ts_TLUT_0004B0" +static const ALIGN_ASSET(2) char object_ts_TLUT_0004B0[] = dobject_ts_TLUT_0004B0; + +#define dobject_ts_Tex_0006B0 "__OTR__objects/object_ts/object_ts_Tex_0006B0" +static const ALIGN_ASSET(2) char object_ts_Tex_0006B0[] = dobject_ts_Tex_0006B0; + +#define dobject_ts_Tex_0006F0 "__OTR__objects/object_ts/object_ts_Tex_0006F0" +static const ALIGN_ASSET(2) char object_ts_Tex_0006F0[] = dobject_ts_Tex_0006F0; + +#define dobject_ts_Tex_0007F0 "__OTR__objects/object_ts/object_ts_Tex_0007F0" +static const ALIGN_ASSET(2) char object_ts_Tex_0007F0[] = dobject_ts_Tex_0007F0; + +#define dobject_ts_Tex_000830 "__OTR__objects/object_ts/object_ts_Tex_000830" +static const ALIGN_ASSET(2) char object_ts_Tex_000830[] = dobject_ts_Tex_000830; + +#define dobject_ts_Tex_000930 "__OTR__objects/object_ts/object_ts_Tex_000930" +static const ALIGN_ASSET(2) char object_ts_Tex_000930[] = dobject_ts_Tex_000930; + +#define dobject_ts_Tex_000970 "__OTR__objects/object_ts/object_ts_Tex_000970" +static const ALIGN_ASSET(2) char object_ts_Tex_000970[] = dobject_ts_Tex_000970; + +#define dobject_ts_Tex_000D70 "__OTR__objects/object_ts/object_ts_Tex_000D70" +static const ALIGN_ASSET(2) char object_ts_Tex_000D70[] = dobject_ts_Tex_000D70; + +#define dobject_ts_Tex_001170 "__OTR__objects/object_ts/object_ts_Tex_001170" +static const ALIGN_ASSET(2) char object_ts_Tex_001170[] = dobject_ts_Tex_001170; + +#define dobject_ts_Tex_001270 "__OTR__objects/object_ts/object_ts_Tex_001270" +static const ALIGN_ASSET(2) char object_ts_Tex_001270[] = dobject_ts_Tex_001270; + +#define dobject_ts_DL_003CD0 "__OTR__objects/object_ts/object_ts_DL_003CD0" +static const ALIGN_ASSET(2) char object_ts_DL_003CD0[] = dobject_ts_DL_003CD0; + +#define dobject_ts_DL_003ED8 "__OTR__objects/object_ts/object_ts_DL_003ED8" +static const ALIGN_ASSET(2) char object_ts_DL_003ED8[] = dobject_ts_DL_003ED8; + +#define dobject_ts_DL_004378 "__OTR__objects/object_ts/object_ts_DL_004378" +static const ALIGN_ASSET(2) char object_ts_DL_004378[] = dobject_ts_DL_004378; + +#define dobject_ts_DL_0046A0 "__OTR__objects/object_ts/object_ts_DL_0046A0" +static const ALIGN_ASSET(2) char object_ts_DL_0046A0[] = dobject_ts_DL_0046A0; + +#define dobject_ts_DL_004818 "__OTR__objects/object_ts/object_ts_DL_004818" +static const ALIGN_ASSET(2) char object_ts_DL_004818[] = dobject_ts_DL_004818; + +#define dobject_ts_DL_004978 "__OTR__objects/object_ts/object_ts_DL_004978" +static const ALIGN_ASSET(2) char object_ts_DL_004978[] = dobject_ts_DL_004978; + +#define dobject_ts_DL_004AF8 "__OTR__objects/object_ts/object_ts_DL_004AF8" +static const ALIGN_ASSET(2) char object_ts_DL_004AF8[] = dobject_ts_DL_004AF8; + +#define dobject_ts_DL_004C70 "__OTR__objects/object_ts/object_ts_DL_004C70" +static const ALIGN_ASSET(2) char object_ts_DL_004C70[] = dobject_ts_DL_004C70; + +#define dobject_ts_DL_004DD0 "__OTR__objects/object_ts/object_ts_DL_004DD0" +static const ALIGN_ASSET(2) char object_ts_DL_004DD0[] = dobject_ts_DL_004DD0; + +#define dobject_ts_Skel_004FE0 "__OTR__objects/object_ts/object_ts_Skel_004FE0" +static const ALIGN_ASSET(2) char object_ts_Skel_004FE0[] = dobject_ts_Skel_004FE0; \ No newline at end of file diff --git a/soh/assets/objects/object_tsubo/object_tsubo.h b/soh/assets/objects/object_tsubo/object_tsubo.h index 67248df2f..7de320af7 100644 --- a/soh/assets/objects/object_tsubo/object_tsubo.h +++ b/soh/assets/objects/object_tsubo/object_tsubo.h @@ -1,37 +1,18 @@ #pragma once -#define dobject_tsubo_Tex_000000 "__OTR__objects/object_tsubo/object_tsubo_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tsubo_Tex_000000[] = dobject_tsubo_Tex_000000; -#else -static const char object_tsubo_Tex_000000[] __attribute__((aligned (2))) = dobject_tsubo_Tex_000000; -#endif - -#define dobject_tsubo_Tex_001000 "__OTR__objects/object_tsubo/object_tsubo_Tex_001000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tsubo_Tex_001000[] = dobject_tsubo_Tex_001000; -#else -static const char object_tsubo_Tex_001000[] __attribute__((aligned (2))) = dobject_tsubo_Tex_001000; -#endif - -#define dobject_tsubo_Tex_001200 "__OTR__objects/object_tsubo/object_tsubo_Tex_001200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tsubo_Tex_001200[] = dobject_tsubo_Tex_001200; -#else -static const char object_tsubo_Tex_001200[] __attribute__((aligned (2))) = dobject_tsubo_Tex_001200; -#endif - -#define dobject_tsubo_DL_0017C0 "__OTR__objects/object_tsubo/object_tsubo_DL_0017C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tsubo_DL_0017C0[] = dobject_tsubo_DL_0017C0; -#else -static const char object_tsubo_DL_0017C0[] __attribute__((aligned (2))) = dobject_tsubo_DL_0017C0; -#endif - -#define dobject_tsubo_DL_001960 "__OTR__objects/object_tsubo/object_tsubo_DL_001960" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tsubo_DL_001960[] = dobject_tsubo_DL_001960; -#else -static const char object_tsubo_DL_001960[] __attribute__((aligned (2))) = dobject_tsubo_DL_001960; -#endif - +#include "align_asset_macro.h" + +#define dobject_tsubo_Tex_000000 "__OTR__objects/object_tsubo/object_tsubo_Tex_000000" +static const ALIGN_ASSET(2) char object_tsubo_Tex_000000[] = dobject_tsubo_Tex_000000; + +#define dobject_tsubo_Tex_001000 "__OTR__objects/object_tsubo/object_tsubo_Tex_001000" +static const ALIGN_ASSET(2) char object_tsubo_Tex_001000[] = dobject_tsubo_Tex_001000; + +#define dobject_tsubo_Tex_001200 "__OTR__objects/object_tsubo/object_tsubo_Tex_001200" +static const ALIGN_ASSET(2) char object_tsubo_Tex_001200[] = dobject_tsubo_Tex_001200; + +#define dobject_tsubo_DL_0017C0 "__OTR__objects/object_tsubo/object_tsubo_DL_0017C0" +static const ALIGN_ASSET(2) char object_tsubo_DL_0017C0[] = dobject_tsubo_DL_0017C0; + +#define dobject_tsubo_DL_001960 "__OTR__objects/object_tsubo/object_tsubo_DL_001960" +static const ALIGN_ASSET(2) char object_tsubo_DL_001960[] = dobject_tsubo_DL_001960; \ No newline at end of file diff --git a/soh/assets/objects/object_tw/object_tw.h b/soh/assets/objects/object_tw/object_tw.h index 9b693e433..ad658c05b 100644 --- a/soh/assets/objects/object_tw/object_tw.h +++ b/soh/assets/objects/object_tw/object_tw.h @@ -1,1605 +1,690 @@ #pragma once -#define dobject_tw_Anim_0004A4 "__OTR__objects/object_tw/object_tw_Anim_0004A4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_0004A4[] = dobject_tw_Anim_0004A4; -#else -static const char object_tw_Anim_0004A4[] __attribute__((aligned (2))) = dobject_tw_Anim_0004A4; -#endif - -#define dobject_tw_Anim_000AAC "__OTR__objects/object_tw/object_tw_Anim_000AAC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_000AAC[] = dobject_tw_Anim_000AAC; -#else -static const char object_tw_Anim_000AAC[] __attribute__((aligned (2))) = dobject_tw_Anim_000AAC; -#endif - -#define dobject_tw_Anim_0012A4 "__OTR__objects/object_tw/object_tw_Anim_0012A4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_0012A4[] = dobject_tw_Anim_0012A4; -#else -static const char object_tw_Anim_0012A4[] __attribute__((aligned (2))) = dobject_tw_Anim_0012A4; -#endif - -#define dobject_tw_Anim_0017E0 "__OTR__objects/object_tw/object_tw_Anim_0017E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_0017E0[] = dobject_tw_Anim_0017E0; -#else -static const char object_tw_Anim_0017E0[] __attribute__((aligned (2))) = dobject_tw_Anim_0017E0; -#endif - -#define dobject_tw_Anim_001D10 "__OTR__objects/object_tw/object_tw_Anim_001D10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_001D10[] = dobject_tw_Anim_001D10; -#else -static const char object_tw_Anim_001D10[] __attribute__((aligned (2))) = dobject_tw_Anim_001D10; -#endif - -#define dobject_tw_Anim_00230C "__OTR__objects/object_tw/object_tw_Anim_00230C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_00230C[] = dobject_tw_Anim_00230C; -#else -static const char object_tw_Anim_00230C[] __attribute__((aligned (2))) = dobject_tw_Anim_00230C; -#endif - -#define dobject_tw_Anim_003614 "__OTR__objects/object_tw/object_tw_Anim_003614" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_003614[] = dobject_tw_Anim_003614; -#else -static const char object_tw_Anim_003614[] __attribute__((aligned (2))) = dobject_tw_Anim_003614; -#endif - -#define dobject_tw_Anim_003E34 "__OTR__objects/object_tw/object_tw_Anim_003E34" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_003E34[] = dobject_tw_Anim_003E34; -#else -static const char object_tw_Anim_003E34[] __attribute__((aligned (2))) = dobject_tw_Anim_003E34; -#endif - -#define dobject_tw_Anim_004548 "__OTR__objects/object_tw/object_tw_Anim_004548" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_004548[] = dobject_tw_Anim_004548; -#else -static const char object_tw_Anim_004548[] __attribute__((aligned (2))) = dobject_tw_Anim_004548; -#endif - -#define dobject_tw_Anim_00578C "__OTR__objects/object_tw/object_tw_Anim_00578C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_00578C[] = dobject_tw_Anim_00578C; -#else -static const char object_tw_Anim_00578C[] __attribute__((aligned (2))) = dobject_tw_Anim_00578C; -#endif - -#define dobject_tw_Anim_006530 "__OTR__objects/object_tw/object_tw_Anim_006530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_006530[] = dobject_tw_Anim_006530; -#else -static const char object_tw_Anim_006530[] __attribute__((aligned (2))) = dobject_tw_Anim_006530; -#endif - -#define dobject_tw_Anim_006F28 "__OTR__objects/object_tw/object_tw_Anim_006F28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_006F28[] = dobject_tw_Anim_006F28; -#else -static const char object_tw_Anim_006F28[] __attribute__((aligned (2))) = dobject_tw_Anim_006F28; -#endif - -#define dobject_tw_Skel_0070E0 "__OTR__objects/object_tw/object_tw_Skel_0070E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Skel_0070E0[] = dobject_tw_Skel_0070E0; -#else -static const char object_tw_Skel_0070E0[] __attribute__((aligned (2))) = dobject_tw_Skel_0070E0; -#endif - -#define dobject_tw_Anim_007688 "__OTR__objects/object_tw/object_tw_Anim_007688" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_007688[] = dobject_tw_Anim_007688; -#else -static const char object_tw_Anim_007688[] __attribute__((aligned (2))) = dobject_tw_Anim_007688; -#endif - -#define dobject_tw_Anim_007CA8 "__OTR__objects/object_tw/object_tw_Anim_007CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_007CA8[] = dobject_tw_Anim_007CA8; -#else -static const char object_tw_Anim_007CA8[] __attribute__((aligned (2))) = dobject_tw_Anim_007CA8; -#endif - -#define dobject_tw_Anim_0088C8 "__OTR__objects/object_tw/object_tw_Anim_0088C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_0088C8[] = dobject_tw_Anim_0088C8; -#else -static const char object_tw_Anim_0088C8[] __attribute__((aligned (2))) = dobject_tw_Anim_0088C8; -#endif - -#define dobject_tw_Anim_009398 "__OTR__objects/object_tw/object_tw_Anim_009398" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_009398[] = dobject_tw_Anim_009398; -#else -static const char object_tw_Anim_009398[] __attribute__((aligned (2))) = dobject_tw_Anim_009398; -#endif - -#define dobject_tw_Anim_00947C "__OTR__objects/object_tw/object_tw_Anim_00947C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_00947C[] = dobject_tw_Anim_00947C; -#else -static const char object_tw_Anim_00947C[] __attribute__((aligned (2))) = dobject_tw_Anim_00947C; -#endif - -#define dobject_tw_TLUT_009490 "__OTR__objects/object_tw/object_tw_TLUT_009490" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_TLUT_009490[] = dobject_tw_TLUT_009490; -#else -static const char object_tw_TLUT_009490[] __attribute__((aligned (2))) = dobject_tw_TLUT_009490; -#endif - -#define dobject_tw_Tex_009638 "__OTR__objects/object_tw/object_tw_Tex_009638" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_009638[] = dobject_tw_Tex_009638; -#else -static const char object_tw_Tex_009638[] __attribute__((aligned (2))) = dobject_tw_Tex_009638; -#endif - -#define dobject_tw_Tex_009E38 "__OTR__objects/object_tw/object_tw_Tex_009E38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_009E38[] = dobject_tw_Tex_009E38; -#else -static const char object_tw_Tex_009E38[] __attribute__((aligned (2))) = dobject_tw_Tex_009E38; -#endif - -#define dobject_tw_Tex_00A038 "__OTR__objects/object_tw/object_tw_Tex_00A038" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00A038[] = dobject_tw_Tex_00A038; -#else -static const char object_tw_Tex_00A038[] __attribute__((aligned (2))) = dobject_tw_Tex_00A038; -#endif - -#define dobject_tw_Tex_00A238 "__OTR__objects/object_tw/object_tw_Tex_00A238" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00A238[] = dobject_tw_Tex_00A238; -#else -static const char object_tw_Tex_00A238[] __attribute__((aligned (2))) = dobject_tw_Tex_00A238; -#endif - -#define dobject_tw_Tex_00A438 "__OTR__objects/object_tw/object_tw_Tex_00A438" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00A438[] = dobject_tw_Tex_00A438; -#else -static const char object_tw_Tex_00A438[] __attribute__((aligned (2))) = dobject_tw_Tex_00A438; -#endif - -#define dobject_tw_Tex_00A838 "__OTR__objects/object_tw/object_tw_Tex_00A838" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00A838[] = dobject_tw_Tex_00A838; -#else -static const char object_tw_Tex_00A838[] __attribute__((aligned (2))) = dobject_tw_Tex_00A838; -#endif - -#define dobject_tw_Tex_00A8B8 "__OTR__objects/object_tw/object_tw_Tex_00A8B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00A8B8[] = dobject_tw_Tex_00A8B8; -#else -static const char object_tw_Tex_00A8B8[] __attribute__((aligned (2))) = dobject_tw_Tex_00A8B8; -#endif - -#define dobject_tw_Tex_00A8F8 "__OTR__objects/object_tw/object_tw_Tex_00A8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00A8F8[] = dobject_tw_Tex_00A8F8; -#else -static const char object_tw_Tex_00A8F8[] __attribute__((aligned (2))) = dobject_tw_Tex_00A8F8; -#endif - -#define dobject_tw_Tex_00AAF8 "__OTR__objects/object_tw/object_tw_Tex_00AAF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00AAF8[] = dobject_tw_Tex_00AAF8; -#else -static const char object_tw_Tex_00AAF8[] __attribute__((aligned (2))) = dobject_tw_Tex_00AAF8; -#endif - -#define dobject_tw_Tex_00AB38 "__OTR__objects/object_tw/object_tw_Tex_00AB38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00AB38[] = dobject_tw_Tex_00AB38; -#else -static const char object_tw_Tex_00AB38[] __attribute__((aligned (2))) = dobject_tw_Tex_00AB38; -#endif - -#define dobject_tw_Tex_00ABB8 "__OTR__objects/object_tw/object_tw_Tex_00ABB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00ABB8[] = dobject_tw_Tex_00ABB8; -#else -static const char object_tw_Tex_00ABB8[] __attribute__((aligned (2))) = dobject_tw_Tex_00ABB8; -#endif - -#define dobject_tw_Tex_00AC38 "__OTR__objects/object_tw/object_tw_Tex_00AC38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00AC38[] = dobject_tw_Tex_00AC38; -#else -static const char object_tw_Tex_00AC38[] __attribute__((aligned (2))) = dobject_tw_Tex_00AC38; -#endif - -#define dobject_tw_Tex_00B038 "__OTR__objects/object_tw/object_tw_Tex_00B038" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00B038[] = dobject_tw_Tex_00B038; -#else -static const char object_tw_Tex_00B038[] __attribute__((aligned (2))) = dobject_tw_Tex_00B038; -#endif - -#define dobject_tw_Tex_00B138 "__OTR__objects/object_tw/object_tw_Tex_00B138" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00B138[] = dobject_tw_Tex_00B138; -#else -static const char object_tw_Tex_00B138[] __attribute__((aligned (2))) = dobject_tw_Tex_00B138; -#endif - -#define dobject_tw_Tex_00B1B8 "__OTR__objects/object_tw/object_tw_Tex_00B1B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00B1B8[] = dobject_tw_Tex_00B1B8; -#else -static const char object_tw_Tex_00B1B8[] __attribute__((aligned (2))) = dobject_tw_Tex_00B1B8; -#endif - -#define dobject_tw_Tex_00B1F8 "__OTR__objects/object_tw/object_tw_Tex_00B1F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00B1F8[] = dobject_tw_Tex_00B1F8; -#else -static const char object_tw_Tex_00B1F8[] __attribute__((aligned (2))) = dobject_tw_Tex_00B1F8; -#endif - -#define dobject_tw_Tex_00B238 "__OTR__objects/object_tw/object_tw_Tex_00B238" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00B238[] = dobject_tw_Tex_00B238; -#else -static const char object_tw_Tex_00B238[] __attribute__((aligned (2))) = dobject_tw_Tex_00B238; -#endif - -#define dobject_tw_Tex_00B638 "__OTR__objects/object_tw/object_tw_Tex_00B638" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00B638[] = dobject_tw_Tex_00B638; -#else -static const char object_tw_Tex_00B638[] __attribute__((aligned (2))) = dobject_tw_Tex_00B638; -#endif - -#define dobject_tw_Tex_00BA38 "__OTR__objects/object_tw/object_tw_Tex_00BA38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00BA38[] = dobject_tw_Tex_00BA38; -#else -static const char object_tw_Tex_00BA38[] __attribute__((aligned (2))) = dobject_tw_Tex_00BA38; -#endif - -#define dobject_tw_Tex_00BE38 "__OTR__objects/object_tw/object_tw_Tex_00BE38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00BE38[] = dobject_tw_Tex_00BE38; -#else -static const char object_tw_Tex_00BE38[] __attribute__((aligned (2))) = dobject_tw_Tex_00BE38; -#endif - -#define dobject_tw_Tex_00C238 "__OTR__objects/object_tw/object_tw_Tex_00C238" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00C238[] = dobject_tw_Tex_00C238; -#else -static const char object_tw_Tex_00C238[] __attribute__((aligned (2))) = dobject_tw_Tex_00C238; -#endif - -#define dobject_tw_Tex_00CA38 "__OTR__objects/object_tw/object_tw_Tex_00CA38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00CA38[] = dobject_tw_Tex_00CA38; -#else -static const char object_tw_Tex_00CA38[] __attribute__((aligned (2))) = dobject_tw_Tex_00CA38; -#endif - -#define dobject_tw_Tex_00CAB8 "__OTR__objects/object_tw/object_tw_Tex_00CAB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_00CAB8[] = dobject_tw_Tex_00CAB8; -#else -static const char object_tw_Tex_00CAB8[] __attribute__((aligned (2))) = dobject_tw_Tex_00CAB8; -#endif - -#define dobject_tw_DL_0110A8 "__OTR__objects/object_tw/object_tw_DL_0110A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0110A8[] = dobject_tw_DL_0110A8; -#else -static const char object_tw_DL_0110A8[] __attribute__((aligned (2))) = dobject_tw_DL_0110A8; -#endif - -#define dobject_tw_DL_0116A0 "__OTR__objects/object_tw/object_tw_DL_0116A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0116A0[] = dobject_tw_DL_0116A0; -#else -static const char object_tw_DL_0116A0[] __attribute__((aligned (2))) = dobject_tw_DL_0116A0; -#endif - -#define dobject_tw_DL_011C98 "__OTR__objects/object_tw/object_tw_DL_011C98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_011C98[] = dobject_tw_DL_011C98; -#else -static const char object_tw_DL_011C98[] __attribute__((aligned (2))) = dobject_tw_DL_011C98; -#endif - -#define dobject_tw_DL_011E28 "__OTR__objects/object_tw/object_tw_DL_011E28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_011E28[] = dobject_tw_DL_011E28; -#else -static const char object_tw_DL_011E28[] __attribute__((aligned (2))) = dobject_tw_DL_011E28; -#endif - -#define dobject_tw_DL_011FB8 "__OTR__objects/object_tw/object_tw_DL_011FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_011FB8[] = dobject_tw_DL_011FB8; -#else -static const char object_tw_DL_011FB8[] __attribute__((aligned (2))) = dobject_tw_DL_011FB8; -#endif - -#define dobject_tw_DL_012018 "__OTR__objects/object_tw/object_tw_DL_012018" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012018[] = dobject_tw_DL_012018; -#else -static const char object_tw_DL_012018[] __attribute__((aligned (2))) = dobject_tw_DL_012018; -#endif - -#define dobject_tw_DL_0120C8 "__OTR__objects/object_tw/object_tw_DL_0120C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0120C8[] = dobject_tw_DL_0120C8; -#else -static const char object_tw_DL_0120C8[] __attribute__((aligned (2))) = dobject_tw_DL_0120C8; -#endif - -#define dobject_tw_DL_012178 "__OTR__objects/object_tw/object_tw_DL_012178" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012178[] = dobject_tw_DL_012178; -#else -static const char object_tw_DL_012178[] __attribute__((aligned (2))) = dobject_tw_DL_012178; -#endif - -#define dobject_tw_DL_012210 "__OTR__objects/object_tw/object_tw_DL_012210" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012210[] = dobject_tw_DL_012210; -#else -static const char object_tw_DL_012210[] __attribute__((aligned (2))) = dobject_tw_DL_012210; -#endif - -#define dobject_tw_DL_0122A8 "__OTR__objects/object_tw/object_tw_DL_0122A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0122A8[] = dobject_tw_DL_0122A8; -#else -static const char object_tw_DL_0122A8[] __attribute__((aligned (2))) = dobject_tw_DL_0122A8; -#endif - -#define dobject_tw_DL_012410 "__OTR__objects/object_tw/object_tw_DL_012410" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012410[] = dobject_tw_DL_012410; -#else -static const char object_tw_DL_012410[] __attribute__((aligned (2))) = dobject_tw_DL_012410; -#endif - -#define dobject_tw_DL_012578 "__OTR__objects/object_tw/object_tw_DL_012578" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012578[] = dobject_tw_DL_012578; -#else -static const char object_tw_DL_012578[] __attribute__((aligned (2))) = dobject_tw_DL_012578; -#endif - -#define dobject_tw_DL_0126E0 "__OTR__objects/object_tw/object_tw_DL_0126E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0126E0[] = dobject_tw_DL_0126E0; -#else -static const char object_tw_DL_0126E0[] __attribute__((aligned (2))) = dobject_tw_DL_0126E0; -#endif - -#define dobject_tw_DL_012848 "__OTR__objects/object_tw/object_tw_DL_012848" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012848[] = dobject_tw_DL_012848; -#else -static const char object_tw_DL_012848[] __attribute__((aligned (2))) = dobject_tw_DL_012848; -#endif - -#define dobject_tw_DL_0128E0 "__OTR__objects/object_tw/object_tw_DL_0128E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0128E0[] = dobject_tw_DL_0128E0; -#else -static const char object_tw_DL_0128E0[] __attribute__((aligned (2))) = dobject_tw_DL_0128E0; -#endif - -#define dobject_tw_DL_012978 "__OTR__objects/object_tw/object_tw_DL_012978" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012978[] = dobject_tw_DL_012978; -#else -static const char object_tw_DL_012978[] __attribute__((aligned (2))) = dobject_tw_DL_012978; -#endif - -#define dobject_tw_DL_012A28 "__OTR__objects/object_tw/object_tw_DL_012A28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012A28[] = dobject_tw_DL_012A28; -#else -static const char object_tw_DL_012A28[] __attribute__((aligned (2))) = dobject_tw_DL_012A28; -#endif - -#define dobject_tw_DL_012AD8 "__OTR__objects/object_tw/object_tw_DL_012AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012AD8[] = dobject_tw_DL_012AD8; -#else -static const char object_tw_DL_012AD8[] __attribute__((aligned (2))) = dobject_tw_DL_012AD8; -#endif - -#define dobject_tw_DL_012B38 "__OTR__objects/object_tw/object_tw_DL_012B38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012B38[] = dobject_tw_DL_012B38; -#else -static const char object_tw_DL_012B38[] __attribute__((aligned (2))) = dobject_tw_DL_012B38; -#endif - -#define dobject_tw_DL_012CE0 "__OTR__objects/object_tw/object_tw_DL_012CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_012CE0[] = dobject_tw_DL_012CE0; -#else -static const char object_tw_DL_012CE0[] __attribute__((aligned (2))) = dobject_tw_DL_012CE0; -#endif - -#define dobject_tw_DL_013310 "__OTR__objects/object_tw/object_tw_DL_013310" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_013310[] = dobject_tw_DL_013310; -#else -static const char object_tw_DL_013310[] __attribute__((aligned (2))) = dobject_tw_DL_013310; -#endif - -#define dobject_tw_DL_0134B8 "__OTR__objects/object_tw/object_tw_DL_0134B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0134B8[] = dobject_tw_DL_0134B8; -#else -static const char object_tw_DL_0134B8[] __attribute__((aligned (2))) = dobject_tw_DL_0134B8; -#endif - -#define dobject_tw_DL_013AE8 "__OTR__objects/object_tw/object_tw_DL_013AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_013AE8[] = dobject_tw_DL_013AE8; -#else -static const char object_tw_DL_013AE8[] __attribute__((aligned (2))) = dobject_tw_DL_013AE8; -#endif - -#define dobject_tw_DL_013D68 "__OTR__objects/object_tw/object_tw_DL_013D68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_013D68[] = dobject_tw_DL_013D68; -#else -static const char object_tw_DL_013D68[] __attribute__((aligned (2))) = dobject_tw_DL_013D68; -#endif - -#define dobject_tw_DL_013E98 "__OTR__objects/object_tw/object_tw_DL_013E98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_013E98[] = dobject_tw_DL_013E98; -#else -static const char object_tw_DL_013E98[] __attribute__((aligned (2))) = dobject_tw_DL_013E98; -#endif - -#define dobject_tw_DL_013F98 "__OTR__objects/object_tw/object_tw_DL_013F98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_013F98[] = dobject_tw_DL_013F98; -#else -static const char object_tw_DL_013F98[] __attribute__((aligned (2))) = dobject_tw_DL_013F98; -#endif - -#define dobject_tw_DL_014070 "__OTR__objects/object_tw/object_tw_DL_014070" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_014070[] = dobject_tw_DL_014070; -#else -static const char object_tw_DL_014070[] __attribute__((aligned (2))) = dobject_tw_DL_014070; -#endif - -#define dobject_tw_DL_014158 "__OTR__objects/object_tw/object_tw_DL_014158" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_014158[] = dobject_tw_DL_014158; -#else -static const char object_tw_DL_014158[] __attribute__((aligned (2))) = dobject_tw_DL_014158; -#endif - -#define dobject_tw_DL_015440 "__OTR__objects/object_tw/object_tw_DL_015440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015440[] = dobject_tw_DL_015440; -#else -static const char object_tw_DL_015440[] __attribute__((aligned (2))) = dobject_tw_DL_015440; -#endif - -#define dobject_tw_DL_015538 "__OTR__objects/object_tw/object_tw_DL_015538" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015538[] = dobject_tw_DL_015538; -#else -static const char object_tw_DL_015538[] __attribute__((aligned (2))) = dobject_tw_DL_015538; -#endif - -#define dobject_tw_DL_015648 "__OTR__objects/object_tw/object_tw_DL_015648" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015648[] = dobject_tw_DL_015648; -#else -static const char object_tw_DL_015648[] __attribute__((aligned (2))) = dobject_tw_DL_015648; -#endif - -#define dobject_tw_DL_015740 "__OTR__objects/object_tw/object_tw_DL_015740" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015740[] = dobject_tw_DL_015740; -#else -static const char object_tw_DL_015740[] __attribute__((aligned (2))) = dobject_tw_DL_015740; -#endif - -#define dobject_tw_DL_015850 "__OTR__objects/object_tw/object_tw_DL_015850" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015850[] = dobject_tw_DL_015850; -#else -static const char object_tw_DL_015850[] __attribute__((aligned (2))) = dobject_tw_DL_015850; -#endif - -#define dobject_tw_DL_015990 "__OTR__objects/object_tw/object_tw_DL_015990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015990[] = dobject_tw_DL_015990; -#else -static const char object_tw_DL_015990[] __attribute__((aligned (2))) = dobject_tw_DL_015990; -#endif - -#define dobject_tw_DL_015B10 "__OTR__objects/object_tw/object_tw_DL_015B10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015B10[] = dobject_tw_DL_015B10; -#else -static const char object_tw_DL_015B10[] __attribute__((aligned (2))) = dobject_tw_DL_015B10; -#endif - -#define dobject_tw_DL_015C30 "__OTR__objects/object_tw/object_tw_DL_015C30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015C30[] = dobject_tw_DL_015C30; -#else -static const char object_tw_DL_015C30[] __attribute__((aligned (2))) = dobject_tw_DL_015C30; -#endif - -#define dobject_tw_DL_015D58 "__OTR__objects/object_tw/object_tw_DL_015D58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015D58[] = dobject_tw_DL_015D58; -#else -static const char object_tw_DL_015D58[] __attribute__((aligned (2))) = dobject_tw_DL_015D58; -#endif - -#define dobject_tw_DL_015E78 "__OTR__objects/object_tw/object_tw_DL_015E78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015E78[] = dobject_tw_DL_015E78; -#else -static const char object_tw_DL_015E78[] __attribute__((aligned (2))) = dobject_tw_DL_015E78; -#endif - -#define dobject_tw_DL_015FF8 "__OTR__objects/object_tw/object_tw_DL_015FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_015FF8[] = dobject_tw_DL_015FF8; -#else -static const char object_tw_DL_015FF8[] __attribute__((aligned (2))) = dobject_tw_DL_015FF8; -#endif - -#define dobject_tw_DL_016118 "__OTR__objects/object_tw/object_tw_DL_016118" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_016118[] = dobject_tw_DL_016118; -#else -static const char object_tw_DL_016118[] __attribute__((aligned (2))) = dobject_tw_DL_016118; -#endif - -#define dobject_tw_DL_016240 "__OTR__objects/object_tw/object_tw_DL_016240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_016240[] = dobject_tw_DL_016240; -#else -static const char object_tw_DL_016240[] __attribute__((aligned (2))) = dobject_tw_DL_016240; -#endif - -#define dobject_tw_DL_016360 "__OTR__objects/object_tw/object_tw_DL_016360" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_016360[] = dobject_tw_DL_016360; -#else -static const char object_tw_DL_016360[] __attribute__((aligned (2))) = dobject_tw_DL_016360; -#endif - -#define dobject_tw_DL_0164C0 "__OTR__objects/object_tw/object_tw_DL_0164C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0164C0[] = dobject_tw_DL_0164C0; -#else -static const char object_tw_DL_0164C0[] __attribute__((aligned (2))) = dobject_tw_DL_0164C0; -#endif - -#define dobject_tw_DL_0164C8 "__OTR__objects/object_tw/object_tw_DL_0164C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0164C8[] = dobject_tw_DL_0164C8; -#else -static const char object_tw_DL_0164C8[] __attribute__((aligned (2))) = dobject_tw_DL_0164C8; -#endif - -#define dobject_tw_DL_0164D0 "__OTR__objects/object_tw/object_tw_DL_0164D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0164D0[] = dobject_tw_DL_0164D0; -#else -static const char object_tw_DL_0164D0[] __attribute__((aligned (2))) = dobject_tw_DL_0164D0; -#endif - -#define dobject_tw_Tex_016650 "__OTR__objects/object_tw/object_tw_Tex_016650" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_016650[] = dobject_tw_Tex_016650; -#else -static const char object_tw_Tex_016650[] __attribute__((aligned (2))) = dobject_tw_Tex_016650; -#endif - -#define dobject_tw_Tex_0166D0 "__OTR__objects/object_tw/object_tw_Tex_0166D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_0166D0[] = dobject_tw_Tex_0166D0; -#else -static const char object_tw_Tex_0166D0[] __attribute__((aligned (2))) = dobject_tw_Tex_0166D0; -#endif - -#define dobject_tw_DL_017910 "__OTR__objects/object_tw/object_tw_DL_017910" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_017910[] = dobject_tw_DL_017910; -#else -static const char object_tw_DL_017910[] __attribute__((aligned (2))) = dobject_tw_DL_017910; -#endif - -#define dobject_tw_DL_017A08 "__OTR__objects/object_tw/object_tw_DL_017A08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_017A08[] = dobject_tw_DL_017A08; -#else -static const char object_tw_DL_017A08[] __attribute__((aligned (2))) = dobject_tw_DL_017A08; -#endif - -#define dobject_tw_DL_017B18 "__OTR__objects/object_tw/object_tw_DL_017B18" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_017B18[] = dobject_tw_DL_017B18; -#else -static const char object_tw_DL_017B18[] __attribute__((aligned (2))) = dobject_tw_DL_017B18; -#endif - -#define dobject_tw_DL_017C10 "__OTR__objects/object_tw/object_tw_DL_017C10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_017C10[] = dobject_tw_DL_017C10; -#else -static const char object_tw_DL_017C10[] __attribute__((aligned (2))) = dobject_tw_DL_017C10; -#endif - -#define dobject_tw_DL_017D20 "__OTR__objects/object_tw/object_tw_DL_017D20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_017D20[] = dobject_tw_DL_017D20; -#else -static const char object_tw_DL_017D20[] __attribute__((aligned (2))) = dobject_tw_DL_017D20; -#endif - -#define dobject_tw_DL_017E60 "__OTR__objects/object_tw/object_tw_DL_017E60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_017E60[] = dobject_tw_DL_017E60; -#else -static const char object_tw_DL_017E60[] __attribute__((aligned (2))) = dobject_tw_DL_017E60; -#endif - -#define dobject_tw_DL_017FE0 "__OTR__objects/object_tw/object_tw_DL_017FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_017FE0[] = dobject_tw_DL_017FE0; -#else -static const char object_tw_DL_017FE0[] __attribute__((aligned (2))) = dobject_tw_DL_017FE0; -#endif - -#define dobject_tw_DL_018100 "__OTR__objects/object_tw/object_tw_DL_018100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_018100[] = dobject_tw_DL_018100; -#else -static const char object_tw_DL_018100[] __attribute__((aligned (2))) = dobject_tw_DL_018100; -#endif - -#define dobject_tw_DL_018228 "__OTR__objects/object_tw/object_tw_DL_018228" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_018228[] = dobject_tw_DL_018228; -#else -static const char object_tw_DL_018228[] __attribute__((aligned (2))) = dobject_tw_DL_018228; -#endif - -#define dobject_tw_DL_018348 "__OTR__objects/object_tw/object_tw_DL_018348" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_018348[] = dobject_tw_DL_018348; -#else -static const char object_tw_DL_018348[] __attribute__((aligned (2))) = dobject_tw_DL_018348; -#endif - -#define dobject_tw_DL_0184C8 "__OTR__objects/object_tw/object_tw_DL_0184C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0184C8[] = dobject_tw_DL_0184C8; -#else -static const char object_tw_DL_0184C8[] __attribute__((aligned (2))) = dobject_tw_DL_0184C8; -#endif - -#define dobject_tw_DL_0185E8 "__OTR__objects/object_tw/object_tw_DL_0185E8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0185E8[] = dobject_tw_DL_0185E8; -#else -static const char object_tw_DL_0185E8[] __attribute__((aligned (2))) = dobject_tw_DL_0185E8; -#endif - -#define dobject_tw_DL_018710 "__OTR__objects/object_tw/object_tw_DL_018710" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_018710[] = dobject_tw_DL_018710; -#else -static const char object_tw_DL_018710[] __attribute__((aligned (2))) = dobject_tw_DL_018710; -#endif - -#define dobject_tw_DL_018830 "__OTR__objects/object_tw/object_tw_DL_018830" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_018830[] = dobject_tw_DL_018830; -#else -static const char object_tw_DL_018830[] __attribute__((aligned (2))) = dobject_tw_DL_018830; -#endif - -#define dobject_tw_DL_018990 "__OTR__objects/object_tw/object_tw_DL_018990" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_018990[] = dobject_tw_DL_018990; -#else -static const char object_tw_DL_018990[] __attribute__((aligned (2))) = dobject_tw_DL_018990; -#endif - -#define dobject_tw_DL_018998 "__OTR__objects/object_tw/object_tw_DL_018998" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_018998[] = dobject_tw_DL_018998; -#else -static const char object_tw_DL_018998[] __attribute__((aligned (2))) = dobject_tw_DL_018998; -#endif - -#define dobject_tw_DL_0189A0 "__OTR__objects/object_tw/object_tw_DL_0189A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0189A0[] = dobject_tw_DL_0189A0; -#else -static const char object_tw_DL_0189A0[] __attribute__((aligned (2))) = dobject_tw_DL_0189A0; -#endif - -#define dobject_tw_Tex_018B20 "__OTR__objects/object_tw/object_tw_Tex_018B20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_018B20[] = dobject_tw_Tex_018B20; -#else -static const char object_tw_Tex_018B20[] __attribute__((aligned (2))) = dobject_tw_Tex_018B20; -#endif - -#define dobject_tw_Tex_018B60 "__OTR__objects/object_tw/object_tw_Tex_018B60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_018B60[] = dobject_tw_Tex_018B60; -#else -static const char object_tw_Tex_018B60[] __attribute__((aligned (2))) = dobject_tw_Tex_018B60; -#endif - -#define dobject_tw_DL_018FC0 "__OTR__objects/object_tw/object_tw_DL_018FC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_018FC0[] = dobject_tw_DL_018FC0; -#else -static const char object_tw_DL_018FC0[] __attribute__((aligned (2))) = dobject_tw_DL_018FC0; -#endif - -#define dobject_tw_Tex_019078 "__OTR__objects/object_tw/object_tw_Tex_019078" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_019078[] = dobject_tw_Tex_019078; -#else -static const char object_tw_Tex_019078[] __attribute__((aligned (2))) = dobject_tw_Tex_019078; -#endif - -#define dobject_tw_Tex_019478 "__OTR__objects/object_tw/object_tw_Tex_019478" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_019478[] = dobject_tw_Tex_019478; -#else -static const char object_tw_Tex_019478[] __attribute__((aligned (2))) = dobject_tw_Tex_019478; -#endif - -#define dobject_tw_DL_019938 "__OTR__objects/object_tw/object_tw_DL_019938" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_019938[] = dobject_tw_DL_019938; -#else -static const char object_tw_DL_019938[] __attribute__((aligned (2))) = dobject_tw_DL_019938; -#endif - -#define dobject_tw_Tex_019A20 "__OTR__objects/object_tw/object_tw_Tex_019A20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_019A20[] = dobject_tw_Tex_019A20; -#else -static const char object_tw_Tex_019A20[] __attribute__((aligned (2))) = dobject_tw_Tex_019A20; -#endif - -#define dobject_tw_DL_019D40 "__OTR__objects/object_tw/object_tw_DL_019D40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_019D40[] = dobject_tw_DL_019D40; -#else -static const char object_tw_DL_019D40[] __attribute__((aligned (2))) = dobject_tw_DL_019D40; -#endif - -#define dobject_tw_Tex_019E00 "__OTR__objects/object_tw/object_tw_Tex_019E00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_019E00[] = dobject_tw_Tex_019E00; -#else -static const char object_tw_Tex_019E00[] __attribute__((aligned (2))) = dobject_tw_Tex_019E00; -#endif - -#define dobject_tw_Tex_01A200 "__OTR__objects/object_tw/object_tw_Tex_01A200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01A200[] = dobject_tw_Tex_01A200; -#else -static const char object_tw_Tex_01A200[] __attribute__((aligned (2))) = dobject_tw_Tex_01A200; -#endif - -#define dobject_tw_DL_01A430 "__OTR__objects/object_tw/object_tw_DL_01A430" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01A430[] = dobject_tw_DL_01A430; -#else -static const char object_tw_DL_01A430[] __attribute__((aligned (2))) = dobject_tw_DL_01A430; -#endif - -#define dobject_tw_DL_01A528 "__OTR__objects/object_tw/object_tw_DL_01A528" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01A528[] = dobject_tw_DL_01A528; -#else -static const char object_tw_DL_01A528[] __attribute__((aligned (2))) = dobject_tw_DL_01A528; -#endif - -#define dobject_tw_DL_01A5A8 "__OTR__objects/object_tw/object_tw_DL_01A5A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01A5A8[] = dobject_tw_DL_01A5A8; -#else -static const char object_tw_DL_01A5A8[] __attribute__((aligned (2))) = dobject_tw_DL_01A5A8; -#endif - -#define dobject_tw_Tex_01A5C0 "__OTR__objects/object_tw/object_tw_Tex_01A5C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01A5C0[] = dobject_tw_Tex_01A5C0; -#else -static const char object_tw_Tex_01A5C0[] __attribute__((aligned (2))) = dobject_tw_Tex_01A5C0; -#endif - -#define dobject_tw_DL_01A790 "__OTR__objects/object_tw/object_tw_DL_01A790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01A790[] = dobject_tw_DL_01A790; -#else -static const char object_tw_DL_01A790[] __attribute__((aligned (2))) = dobject_tw_DL_01A790; -#endif - -#define dobject_tw_DL_01A8A0 "__OTR__objects/object_tw/object_tw_DL_01A8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01A8A0[] = dobject_tw_DL_01A8A0; -#else -static const char object_tw_DL_01A8A0[] __attribute__((aligned (2))) = dobject_tw_DL_01A8A0; -#endif - -#define dobject_tw_DL_01A998 "__OTR__objects/object_tw/object_tw_DL_01A998" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01A998[] = dobject_tw_DL_01A998; -#else -static const char object_tw_DL_01A998[] __attribute__((aligned (2))) = dobject_tw_DL_01A998; -#endif - -#define dobject_tw_DL_01AA50 "__OTR__objects/object_tw/object_tw_DL_01AA50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01AA50[] = dobject_tw_DL_01AA50; -#else -static const char object_tw_DL_01AA50[] __attribute__((aligned (2))) = dobject_tw_DL_01AA50; -#endif - -#define dobject_tw_DL_01AB00 "__OTR__objects/object_tw/object_tw_DL_01AB00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01AB00[] = dobject_tw_DL_01AB00; -#else -static const char object_tw_DL_01AB00[] __attribute__((aligned (2))) = dobject_tw_DL_01AB00; -#endif - -#define dobject_tw_Tex_01AB20 "__OTR__objects/object_tw/object_tw_Tex_01AB20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01AB20[] = dobject_tw_Tex_01AB20; -#else -static const char object_tw_Tex_01AB20[] __attribute__((aligned (2))) = dobject_tw_Tex_01AB20; -#endif - -#define dobject_tw_DL_01BC00 "__OTR__objects/object_tw/object_tw_DL_01BC00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01BC00[] = dobject_tw_DL_01BC00; -#else -static const char object_tw_DL_01BC00[] __attribute__((aligned (2))) = dobject_tw_DL_01BC00; -#endif - -#define dobject_tw_Tex_01BCA0 "__OTR__objects/object_tw/object_tw_Tex_01BCA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01BCA0[] = dobject_tw_Tex_01BCA0; -#else -static const char object_tw_Tex_01BCA0[] __attribute__((aligned (2))) = dobject_tw_Tex_01BCA0; -#endif - -#define dobject_tw_Tex_01C0A0 "__OTR__objects/object_tw/object_tw_Tex_01C0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01C0A0[] = dobject_tw_Tex_01C0A0; -#else -static const char object_tw_Tex_01C0A0[] __attribute__((aligned (2))) = dobject_tw_Tex_01C0A0; -#endif - -#define dobject_tw_DL_01C1C0 "__OTR__objects/object_tw/object_tw_DL_01C1C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01C1C0[] = dobject_tw_DL_01C1C0; -#else -static const char object_tw_DL_01C1C0[] __attribute__((aligned (2))) = dobject_tw_DL_01C1C0; -#endif - -#define dobject_tw_Tex_01C2A0 "__OTR__objects/object_tw/object_tw_Tex_01C2A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01C2A0[] = dobject_tw_Tex_01C2A0; -#else -static const char object_tw_Tex_01C2A0[] __attribute__((aligned (2))) = dobject_tw_Tex_01C2A0; -#endif - -#define dobject_tw_Tex_01C6A0 "__OTR__objects/object_tw/object_tw_Tex_01C6A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01C6A0[] = dobject_tw_Tex_01C6A0; -#else -static const char object_tw_Tex_01C6A0[] __attribute__((aligned (2))) = dobject_tw_Tex_01C6A0; -#endif - -#define dobject_tw_DL_01CEE0 "__OTR__objects/object_tw/object_tw_DL_01CEE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01CEE0[] = dobject_tw_DL_01CEE0; -#else -static const char object_tw_DL_01CEE0[] __attribute__((aligned (2))) = dobject_tw_DL_01CEE0; -#endif - -#define dobject_tw_Tex_01CFA8 "__OTR__objects/object_tw/object_tw_Tex_01CFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01CFA8[] = dobject_tw_Tex_01CFA8; -#else -static const char object_tw_Tex_01CFA8[] __attribute__((aligned (2))) = dobject_tw_Tex_01CFA8; -#endif - -#define dobject_tw_Tex_01D3A8 "__OTR__objects/object_tw/object_tw_Tex_01D3A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01D3A8[] = dobject_tw_Tex_01D3A8; -#else -static const char object_tw_Tex_01D3A8[] __attribute__((aligned (2))) = dobject_tw_Tex_01D3A8; -#endif - -#define dobject_tw_DL_01DBE8 "__OTR__objects/object_tw/object_tw_DL_01DBE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01DBE8[] = dobject_tw_DL_01DBE8; -#else -static const char object_tw_DL_01DBE8[] __attribute__((aligned (2))) = dobject_tw_DL_01DBE8; -#endif - -#define dobject_tw_DL_01DDF0 "__OTR__objects/object_tw/object_tw_DL_01DDF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01DDF0[] = dobject_tw_DL_01DDF0; -#else -static const char object_tw_DL_01DDF0[] __attribute__((aligned (2))) = dobject_tw_DL_01DDF0; -#endif - -#define dobject_tw_DL_01E020 "__OTR__objects/object_tw/object_tw_DL_01E020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01E020[] = dobject_tw_DL_01E020; -#else -static const char object_tw_DL_01E020[] __attribute__((aligned (2))) = dobject_tw_DL_01E020; -#endif - -#define dobject_tw_DL_01E0E0 "__OTR__objects/object_tw/object_tw_DL_01E0E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01E0E0[] = dobject_tw_DL_01E0E0; -#else -static const char object_tw_DL_01E0E0[] __attribute__((aligned (2))) = dobject_tw_DL_01E0E0; -#endif - -#define dobject_tw_DL_01E2C0 "__OTR__objects/object_tw/object_tw_DL_01E2C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01E2C0[] = dobject_tw_DL_01E2C0; -#else -static const char object_tw_DL_01E2C0[] __attribute__((aligned (2))) = dobject_tw_DL_01E2C0; -#endif - -#define dobject_tw_DL_01E3A0 "__OTR__objects/object_tw/object_tw_DL_01E3A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01E3A0[] = dobject_tw_DL_01E3A0; -#else -static const char object_tw_DL_01E3A0[] __attribute__((aligned (2))) = dobject_tw_DL_01E3A0; -#endif - -#define dobject_tw_Tex_01E430 "__OTR__objects/object_tw/object_tw_Tex_01E430" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01E430[] = dobject_tw_Tex_01E430; -#else -static const char object_tw_Tex_01E430[] __attribute__((aligned (2))) = dobject_tw_Tex_01E430; -#endif - -#define dobject_tw_DL_01E9F0 "__OTR__objects/object_tw/object_tw_DL_01E9F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01E9F0[] = dobject_tw_DL_01E9F0; -#else -static const char object_tw_DL_01E9F0[] __attribute__((aligned (2))) = dobject_tw_DL_01E9F0; -#endif - -#define dobject_tw_Tex_01EB28 "__OTR__objects/object_tw/object_tw_Tex_01EB28" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01EB28[] = dobject_tw_Tex_01EB28; -#else -static const char object_tw_Tex_01EB28[] __attribute__((aligned (2))) = dobject_tw_Tex_01EB28; -#endif - -#define dobject_tw_DL_01EC68 "__OTR__objects/object_tw/object_tw_DL_01EC68" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01EC68[] = dobject_tw_DL_01EC68; -#else -static const char object_tw_DL_01EC68[] __attribute__((aligned (2))) = dobject_tw_DL_01EC68; -#endif - -#define dobject_tw_Tex_01ECF0 "__OTR__objects/object_tw/object_tw_Tex_01ECF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_01ECF0[] = dobject_tw_Tex_01ECF0; -#else -static const char object_tw_Tex_01ECF0[] __attribute__((aligned (2))) = dobject_tw_Tex_01ECF0; -#endif - -#define dobject_tw_DL_01EEB0 "__OTR__objects/object_tw/object_tw_DL_01EEB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01EEB0[] = dobject_tw_DL_01EEB0; -#else -static const char object_tw_DL_01EEB0[] __attribute__((aligned (2))) = dobject_tw_DL_01EEB0; -#endif - -#define dobject_tw_DL_01F238 "__OTR__objects/object_tw/object_tw_DL_01F238" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01F238[] = dobject_tw_DL_01F238; -#else -static const char object_tw_DL_01F238[] __attribute__((aligned (2))) = dobject_tw_DL_01F238; -#endif - -#define dobject_tw_DL_01F390 "__OTR__objects/object_tw/object_tw_DL_01F390" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01F390[] = dobject_tw_DL_01F390; -#else -static const char object_tw_DL_01F390[] __attribute__((aligned (2))) = dobject_tw_DL_01F390; -#endif - -#define dobject_tw_DL_01F608 "__OTR__objects/object_tw/object_tw_DL_01F608" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_01F608[] = dobject_tw_DL_01F608; -#else -static const char object_tw_DL_01F608[] __attribute__((aligned (2))) = dobject_tw_DL_01F608; -#endif - -#define dobject_tw_Skel_01F888 "__OTR__objects/object_tw/object_tw_Skel_01F888" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Skel_01F888[] = dobject_tw_Skel_01F888; -#else -static const char object_tw_Skel_01F888[] __attribute__((aligned (2))) = dobject_tw_Skel_01F888; -#endif - -#define dobject_tw_Tex_02A070 "__OTR__objects/object_tw/object_tw_Tex_02A070" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02A070[] = dobject_tw_Tex_02A070; -#else -static const char object_tw_Tex_02A070[] __attribute__((aligned (2))) = dobject_tw_Tex_02A070; -#endif - -#define dobject_tw_Anim_0216DC "__OTR__objects/object_tw/object_tw_Anim_0216DC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_0216DC[] = dobject_tw_Anim_0216DC; -#else -static const char object_tw_Anim_0216DC[] __attribute__((aligned (2))) = dobject_tw_Anim_0216DC; -#endif - -#define dobject_tw_Anim_022700 "__OTR__objects/object_tw/object_tw_Anim_022700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_022700[] = dobject_tw_Anim_022700; -#else -static const char object_tw_Anim_022700[] __attribute__((aligned (2))) = dobject_tw_Anim_022700; -#endif - -#define dobject_tw_Anim_023750 "__OTR__objects/object_tw/object_tw_Anim_023750" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_023750[] = dobject_tw_Anim_023750; -#else -static const char object_tw_Anim_023750[] __attribute__((aligned (2))) = dobject_tw_Anim_023750; -#endif - -#define dobject_tw_Anim_024374 "__OTR__objects/object_tw/object_tw_Anim_024374" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_024374[] = dobject_tw_Anim_024374; -#else -static const char object_tw_Anim_024374[] __attribute__((aligned (2))) = dobject_tw_Anim_024374; -#endif - -#define dobject_tw_Anim_0244B4 "__OTR__objects/object_tw/object_tw_Anim_0244B4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_0244B4[] = dobject_tw_Anim_0244B4; -#else -static const char object_tw_Anim_0244B4[] __attribute__((aligned (2))) = dobject_tw_Anim_0244B4; -#endif - -#define dobject_tw_Tex_0244D0 "__OTR__objects/object_tw/object_tw_Tex_0244D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_0244D0[] = dobject_tw_Tex_0244D0; -#else -static const char object_tw_Tex_0244D0[] __attribute__((aligned (2))) = dobject_tw_Tex_0244D0; -#endif - -#define dobject_tw_Tex_024510 "__OTR__objects/object_tw/object_tw_Tex_024510" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_024510[] = dobject_tw_Tex_024510; -#else -static const char object_tw_Tex_024510[] __attribute__((aligned (2))) = dobject_tw_Tex_024510; -#endif - -#define dobject_tw_Tex_024710 "__OTR__objects/object_tw/object_tw_Tex_024710" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_024710[] = dobject_tw_Tex_024710; -#else -static const char object_tw_Tex_024710[] __attribute__((aligned (2))) = dobject_tw_Tex_024710; -#endif - -#define dobject_tw_Tex_024910 "__OTR__objects/object_tw/object_tw_Tex_024910" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_024910[] = dobject_tw_Tex_024910; -#else -static const char object_tw_Tex_024910[] __attribute__((aligned (2))) = dobject_tw_Tex_024910; -#endif - -#define dobject_tw_Tex_024B10 "__OTR__objects/object_tw/object_tw_Tex_024B10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_024B10[] = dobject_tw_Tex_024B10; -#else -static const char object_tw_Tex_024B10[] __attribute__((aligned (2))) = dobject_tw_Tex_024B10; -#endif - -#define dobject_tw_DL_027720 "__OTR__objects/object_tw/object_tw_DL_027720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027720[] = dobject_tw_DL_027720; -#else -static const char object_tw_DL_027720[] __attribute__((aligned (2))) = dobject_tw_DL_027720; -#endif - -#define dobject_tw_DL_027820 "__OTR__objects/object_tw/object_tw_DL_027820" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027820[] = dobject_tw_DL_027820; -#else -static const char object_tw_DL_027820[] __attribute__((aligned (2))) = dobject_tw_DL_027820; -#endif - -#define dobject_tw_DL_027970 "__OTR__objects/object_tw/object_tw_DL_027970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027970[] = dobject_tw_DL_027970; -#else -static const char object_tw_DL_027970[] __attribute__((aligned (2))) = dobject_tw_DL_027970; -#endif - -#define dobject_tw_DL_027A60 "__OTR__objects/object_tw/object_tw_DL_027A60" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027A60[] = dobject_tw_DL_027A60; -#else -static const char object_tw_DL_027A60[] __attribute__((aligned (2))) = dobject_tw_DL_027A60; -#endif - -#define dobject_tw_DL_027B78 "__OTR__objects/object_tw/object_tw_DL_027B78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027B78[] = dobject_tw_DL_027B78; -#else -static const char object_tw_DL_027B78[] __attribute__((aligned (2))) = dobject_tw_DL_027B78; -#endif - -#define dobject_tw_DL_027C98 "__OTR__objects/object_tw/object_tw_DL_027C98" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027C98[] = dobject_tw_DL_027C98; -#else -static const char object_tw_DL_027C98[] __attribute__((aligned (2))) = dobject_tw_DL_027C98; -#endif - -#define dobject_tw_DL_027DE8 "__OTR__objects/object_tw/object_tw_DL_027DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027DE8[] = dobject_tw_DL_027DE8; -#else -static const char object_tw_DL_027DE8[] __attribute__((aligned (2))) = dobject_tw_DL_027DE8; -#endif - -#define dobject_tw_DL_027EE0 "__OTR__objects/object_tw/object_tw_DL_027EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027EE0[] = dobject_tw_DL_027EE0; -#else -static const char object_tw_DL_027EE0[] __attribute__((aligned (2))) = dobject_tw_DL_027EE0; -#endif - -#define dobject_tw_DL_027FE8 "__OTR__objects/object_tw/object_tw_DL_027FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_027FE8[] = dobject_tw_DL_027FE8; -#else -static const char object_tw_DL_027FE8[] __attribute__((aligned (2))) = dobject_tw_DL_027FE8; -#endif - -#define dobject_tw_DL_028100 "__OTR__objects/object_tw/object_tw_DL_028100" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028100[] = dobject_tw_DL_028100; -#else -static const char object_tw_DL_028100[] __attribute__((aligned (2))) = dobject_tw_DL_028100; -#endif - -#define dobject_tw_DL_028220 "__OTR__objects/object_tw/object_tw_DL_028220" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028220[] = dobject_tw_DL_028220; -#else -static const char object_tw_DL_028220[] __attribute__((aligned (2))) = dobject_tw_DL_028220; -#endif - -#define dobject_tw_DL_028370 "__OTR__objects/object_tw/object_tw_DL_028370" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028370[] = dobject_tw_DL_028370; -#else -static const char object_tw_DL_028370[] __attribute__((aligned (2))) = dobject_tw_DL_028370; -#endif - -#define dobject_tw_DL_028468 "__OTR__objects/object_tw/object_tw_DL_028468" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028468[] = dobject_tw_DL_028468; -#else -static const char object_tw_DL_028468[] __attribute__((aligned (2))) = dobject_tw_DL_028468; -#endif - -#define dobject_tw_DL_028570 "__OTR__objects/object_tw/object_tw_DL_028570" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028570[] = dobject_tw_DL_028570; -#else -static const char object_tw_DL_028570[] __attribute__((aligned (2))) = dobject_tw_DL_028570; -#endif - -#define dobject_tw_DL_028668 "__OTR__objects/object_tw/object_tw_DL_028668" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028668[] = dobject_tw_DL_028668; -#else -static const char object_tw_DL_028668[] __attribute__((aligned (2))) = dobject_tw_DL_028668; -#endif - -#define dobject_tw_DL_028778 "__OTR__objects/object_tw/object_tw_DL_028778" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028778[] = dobject_tw_DL_028778; -#else -static const char object_tw_DL_028778[] __attribute__((aligned (2))) = dobject_tw_DL_028778; -#endif - -#define dobject_tw_DL_028870 "__OTR__objects/object_tw/object_tw_DL_028870" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028870[] = dobject_tw_DL_028870; -#else -static const char object_tw_DL_028870[] __attribute__((aligned (2))) = dobject_tw_DL_028870; -#endif - -#define dobject_tw_DL_028980 "__OTR__objects/object_tw/object_tw_DL_028980" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028980[] = dobject_tw_DL_028980; -#else -static const char object_tw_DL_028980[] __attribute__((aligned (2))) = dobject_tw_DL_028980; -#endif - -#define dobject_tw_DL_028B78 "__OTR__objects/object_tw/object_tw_DL_028B78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028B78[] = dobject_tw_DL_028B78; -#else -static const char object_tw_DL_028B78[] __attribute__((aligned (2))) = dobject_tw_DL_028B78; -#endif - -#define dobject_tw_DL_028D70 "__OTR__objects/object_tw/object_tw_DL_028D70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_028D70[] = dobject_tw_DL_028D70; -#else -static const char object_tw_DL_028D70[] __attribute__((aligned (2))) = dobject_tw_DL_028D70; -#endif - -#define dobject_tw_DL_029268 "__OTR__objects/object_tw/object_tw_DL_029268" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_029268[] = dobject_tw_DL_029268; -#else -static const char object_tw_DL_029268[] __attribute__((aligned (2))) = dobject_tw_DL_029268; -#endif - -#define dobject_tw_DL_0293E0 "__OTR__objects/object_tw/object_tw_DL_0293E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0293E0[] = dobject_tw_DL_0293E0; -#else -static const char object_tw_DL_0293E0[] __attribute__((aligned (2))) = dobject_tw_DL_0293E0; -#endif - -#define dobject_tw_DL_029530 "__OTR__objects/object_tw/object_tw_DL_029530" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_029530[] = dobject_tw_DL_029530; -#else -static const char object_tw_DL_029530[] __attribute__((aligned (2))) = dobject_tw_DL_029530; -#endif - -#define dobject_tw_DL_029620 "__OTR__objects/object_tw/object_tw_DL_029620" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_029620[] = dobject_tw_DL_029620; -#else -static const char object_tw_DL_029620[] __attribute__((aligned (2))) = dobject_tw_DL_029620; -#endif - -#define dobject_tw_DL_029738 "__OTR__objects/object_tw/object_tw_DL_029738" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_029738[] = dobject_tw_DL_029738; -#else -static const char object_tw_DL_029738[] __attribute__((aligned (2))) = dobject_tw_DL_029738; -#endif - -#define dobject_tw_DL_029900 "__OTR__objects/object_tw/object_tw_DL_029900" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_029900[] = dobject_tw_DL_029900; -#else -static const char object_tw_DL_029900[] __attribute__((aligned (2))) = dobject_tw_DL_029900; -#endif - -#define dobject_tw_DL_0299F8 "__OTR__objects/object_tw/object_tw_DL_0299F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_0299F8[] = dobject_tw_DL_0299F8; -#else -static const char object_tw_DL_0299F8[] __attribute__((aligned (2))) = dobject_tw_DL_0299F8; -#endif - -#define dobject_tw_DL_029B10 "__OTR__objects/object_tw/object_tw_DL_029B10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_029B10[] = dobject_tw_DL_029B10; -#else -static const char object_tw_DL_029B10[] __attribute__((aligned (2))) = dobject_tw_DL_029B10; -#endif - -#define dobject_tw_TLUT_029E50 "__OTR__objects/object_tw/object_tw_TLUT_029E50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_TLUT_029E50[] = dobject_tw_TLUT_029E50; -#else -static const char object_tw_TLUT_029E50[] __attribute__((aligned (2))) = dobject_tw_TLUT_029E50; -#endif - -#define dobject_tw_TLUT_02A020 "__OTR__objects/object_tw/object_tw_TLUT_02A020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_TLUT_02A020[] = dobject_tw_TLUT_02A020; -#else -static const char object_tw_TLUT_02A020[] __attribute__((aligned (2))) = dobject_tw_TLUT_02A020; -#endif - -#define dobject_tw_Tex_02A470 "__OTR__objects/object_tw/object_tw_Tex_02A470" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02A470[] = dobject_tw_Tex_02A470; -#else -static const char object_tw_Tex_02A470[] __attribute__((aligned (2))) = dobject_tw_Tex_02A470; -#endif - -#define dobject_tw_Tex_02A870 "__OTR__objects/object_tw/object_tw_Tex_02A870" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02A870[] = dobject_tw_Tex_02A870; -#else -static const char object_tw_Tex_02A870[] __attribute__((aligned (2))) = dobject_tw_Tex_02A870; -#endif - -#define dobject_tw_Tex_02A970 "__OTR__objects/object_tw/object_tw_Tex_02A970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02A970[] = dobject_tw_Tex_02A970; -#else -static const char object_tw_Tex_02A970[] __attribute__((aligned (2))) = dobject_tw_Tex_02A970; -#endif - -#define dobject_tw_Tex_02A9B0 "__OTR__objects/object_tw/object_tw_Tex_02A9B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02A9B0[] = dobject_tw_Tex_02A9B0; -#else -static const char object_tw_Tex_02A9B0[] __attribute__((aligned (2))) = dobject_tw_Tex_02A9B0; -#endif - -#define dobject_tw_Tex_02ADB0 "__OTR__objects/object_tw/object_tw_Tex_02ADB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02ADB0[] = dobject_tw_Tex_02ADB0; -#else -static const char object_tw_Tex_02ADB0[] __attribute__((aligned (2))) = dobject_tw_Tex_02ADB0; -#endif - -#define dobject_tw_Tex_02ADF0 "__OTR__objects/object_tw/object_tw_Tex_02ADF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02ADF0[] = dobject_tw_Tex_02ADF0; -#else -static const char object_tw_Tex_02ADF0[] __attribute__((aligned (2))) = dobject_tw_Tex_02ADF0; -#endif - -#define dobject_tw_Tex_02AE30 "__OTR__objects/object_tw/object_tw_Tex_02AE30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02AE30[] = dobject_tw_Tex_02AE30; -#else -static const char object_tw_Tex_02AE30[] __attribute__((aligned (2))) = dobject_tw_Tex_02AE30; -#endif - -#define dobject_tw_Tex_02AF30 "__OTR__objects/object_tw/object_tw_Tex_02AF30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_02AF30[] = dobject_tw_Tex_02AF30; -#else -static const char object_tw_Tex_02AF30[] __attribute__((aligned (2))) = dobject_tw_Tex_02AF30; -#endif - -#define dobject_tw_DL_02CAF0 "__OTR__objects/object_tw/object_tw_DL_02CAF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02CAF0[] = dobject_tw_DL_02CAF0; -#else -static const char object_tw_DL_02CAF0[] __attribute__((aligned (2))) = dobject_tw_DL_02CAF0; -#endif - -#define dobject_tw_DL_02CB50 "__OTR__objects/object_tw/object_tw_DL_02CB50" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02CB50[] = dobject_tw_DL_02CB50; -#else -static const char object_tw_DL_02CB50[] __attribute__((aligned (2))) = dobject_tw_DL_02CB50; -#endif - -#define dobject_tw_DL_02CBB0 "__OTR__objects/object_tw/object_tw_DL_02CBB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02CBB0[] = dobject_tw_DL_02CBB0; -#else -static const char object_tw_DL_02CBB0[] __attribute__((aligned (2))) = dobject_tw_DL_02CBB0; -#endif - -#define dobject_tw_DL_02D320 "__OTR__objects/object_tw/object_tw_DL_02D320" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02D320[] = dobject_tw_DL_02D320; -#else -static const char object_tw_DL_02D320[] __attribute__((aligned (2))) = dobject_tw_DL_02D320; -#endif - -#define dobject_tw_DL_02D4A0 "__OTR__objects/object_tw/object_tw_DL_02D4A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02D4A0[] = dobject_tw_DL_02D4A0; -#else -static const char object_tw_DL_02D4A0[] __attribute__((aligned (2))) = dobject_tw_DL_02D4A0; -#endif - -#define dobject_tw_DL_02D5D8 "__OTR__objects/object_tw/object_tw_DL_02D5D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02D5D8[] = dobject_tw_DL_02D5D8; -#else -static const char object_tw_DL_02D5D8[] __attribute__((aligned (2))) = dobject_tw_DL_02D5D8; -#endif - -#define dobject_tw_DL_02D710 "__OTR__objects/object_tw/object_tw_DL_02D710" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02D710[] = dobject_tw_DL_02D710; -#else -static const char object_tw_DL_02D710[] __attribute__((aligned (2))) = dobject_tw_DL_02D710; -#endif - -#define dobject_tw_DL_02D890 "__OTR__objects/object_tw/object_tw_DL_02D890" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02D890[] = dobject_tw_DL_02D890; -#else -static const char object_tw_DL_02D890[] __attribute__((aligned (2))) = dobject_tw_DL_02D890; -#endif - -#define dobject_tw_DL_02D940 "__OTR__objects/object_tw/object_tw_DL_02D940" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02D940[] = dobject_tw_DL_02D940; -#else -static const char object_tw_DL_02D940[] __attribute__((aligned (2))) = dobject_tw_DL_02D940; -#endif - -#define dobject_tw_DL_02D9F0 "__OTR__objects/object_tw/object_tw_DL_02D9F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02D9F0[] = dobject_tw_DL_02D9F0; -#else -static const char object_tw_DL_02D9F0[] __attribute__((aligned (2))) = dobject_tw_DL_02D9F0; -#endif - -#define dobject_tw_DL_02DAE0 "__OTR__objects/object_tw/object_tw_DL_02DAE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02DAE0[] = dobject_tw_DL_02DAE0; -#else -static const char object_tw_DL_02DAE0[] __attribute__((aligned (2))) = dobject_tw_DL_02DAE0; -#endif - -#define dobject_tw_DL_02DBC8 "__OTR__objects/object_tw/object_tw_DL_02DBC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02DBC8[] = dobject_tw_DL_02DBC8; -#else -static const char object_tw_DL_02DBC8[] __attribute__((aligned (2))) = dobject_tw_DL_02DBC8; -#endif - -#define dobject_tw_DL_02DCB8 "__OTR__objects/object_tw/object_tw_DL_02DCB8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02DCB8[] = dobject_tw_DL_02DCB8; -#else -static const char object_tw_DL_02DCB8[] __attribute__((aligned (2))) = dobject_tw_DL_02DCB8; -#endif - -#define dobject_tw_DL_02DDD8 "__OTR__objects/object_tw/object_tw_DL_02DDD8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02DDD8[] = dobject_tw_DL_02DDD8; -#else -static const char object_tw_DL_02DDD8[] __attribute__((aligned (2))) = dobject_tw_DL_02DDD8; -#endif - -#define dobject_tw_DL_02DEB0 "__OTR__objects/object_tw/object_tw_DL_02DEB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02DEB0[] = dobject_tw_DL_02DEB0; -#else -static const char object_tw_DL_02DEB0[] __attribute__((aligned (2))) = dobject_tw_DL_02DEB0; -#endif - -#define dobject_tw_DL_02DFB0 "__OTR__objects/object_tw/object_tw_DL_02DFB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02DFB0[] = dobject_tw_DL_02DFB0; -#else -static const char object_tw_DL_02DFB0[] __attribute__((aligned (2))) = dobject_tw_DL_02DFB0; -#endif - -#define dobject_tw_DL_02E098 "__OTR__objects/object_tw/object_tw_DL_02E098" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_02E098[] = dobject_tw_DL_02E098; -#else -static const char object_tw_DL_02E098[] __attribute__((aligned (2))) = dobject_tw_DL_02E098; -#endif - -#define dgTwinrovaTitleCardTex "__OTR__objects/object_tw/gTwinrovaTitleCardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTwinrovaTitleCardTex[] = dgTwinrovaTitleCardTex; -#else -static const char gTwinrovaTitleCardTex[] __attribute__((aligned (2))) = dgTwinrovaTitleCardTex; -#endif - -#define dobject_tw_Skel_032020 "__OTR__objects/object_tw/object_tw_Skel_032020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Skel_032020[] = dobject_tw_Skel_032020; -#else -static const char object_tw_Skel_032020[] __attribute__((aligned (2))) = dobject_tw_Skel_032020; -#endif - -#define dobject_tw_Anim_032BF8 "__OTR__objects/object_tw/object_tw_Anim_032BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_032BF8[] = dobject_tw_Anim_032BF8; -#else -static const char object_tw_Anim_032BF8[] __attribute__((aligned (2))) = dobject_tw_Anim_032BF8; -#endif - -#define dobject_tw_Anim_0338F0 "__OTR__objects/object_tw/object_tw_Anim_0338F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_0338F0[] = dobject_tw_Anim_0338F0; -#else -static const char object_tw_Anim_0338F0[] __attribute__((aligned (2))) = dobject_tw_Anim_0338F0; -#endif - -#define dobject_tw_Anim_0343B4 "__OTR__objects/object_tw/object_tw_Anim_0343B4" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_0343B4[] = dobject_tw_Anim_0343B4; -#else -static const char object_tw_Anim_0343B4[] __attribute__((aligned (2))) = dobject_tw_Anim_0343B4; -#endif - -#define dobject_tw_Anim_035030 "__OTR__objects/object_tw/object_tw_Anim_035030" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_035030[] = dobject_tw_Anim_035030; -#else -static const char object_tw_Anim_035030[] __attribute__((aligned (2))) = dobject_tw_Anim_035030; -#endif - -#define dobject_tw_Anim_035988 "__OTR__objects/object_tw/object_tw_Anim_035988" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_035988[] = dobject_tw_Anim_035988; -#else -static const char object_tw_Anim_035988[] __attribute__((aligned (2))) = dobject_tw_Anim_035988; -#endif - -#define dobject_tw_Anim_036FBC "__OTR__objects/object_tw/object_tw_Anim_036FBC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_036FBC[] = dobject_tw_Anim_036FBC; -#else -static const char object_tw_Anim_036FBC[] __attribute__((aligned (2))) = dobject_tw_Anim_036FBC; -#endif - -#define dobject_tw_Anim_038E2C "__OTR__objects/object_tw/object_tw_Anim_038E2C" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_038E2C[] = dobject_tw_Anim_038E2C; -#else -static const char object_tw_Anim_038E2C[] __attribute__((aligned (2))) = dobject_tw_Anim_038E2C; -#endif - -#define dobject_tw_Anim_03A2D0 "__OTR__objects/object_tw/object_tw_Anim_03A2D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Anim_03A2D0[] = dobject_tw_Anim_03A2D0; -#else -static const char object_tw_Anim_03A2D0[] __attribute__((aligned (2))) = dobject_tw_Anim_03A2D0; -#endif - -#define dobject_tw_DL_03A680 "__OTR__objects/object_tw/object_tw_DL_03A680" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_DL_03A680[] = dobject_tw_DL_03A680; -#else -static const char object_tw_DL_03A680[] __attribute__((aligned (2))) = dobject_tw_DL_03A680; -#endif - -#define dobject_tw_Tex_03A7B0 "__OTR__objects/object_tw/object_tw_Tex_03A7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_tw_Tex_03A7B0[] = dobject_tw_Tex_03A7B0; -#else -static const char object_tw_Tex_03A7B0[] __attribute__((aligned (2))) = dobject_tw_Tex_03A7B0; -#endif - +#include "align_asset_macro.h" + +#define dobject_tw_Anim_0004A4 "__OTR__objects/object_tw/object_tw_Anim_0004A4" +static const ALIGN_ASSET(2) char object_tw_Anim_0004A4[] = dobject_tw_Anim_0004A4; + +#define dobject_tw_Anim_000AAC "__OTR__objects/object_tw/object_tw_Anim_000AAC" +static const ALIGN_ASSET(2) char object_tw_Anim_000AAC[] = dobject_tw_Anim_000AAC; + +#define dobject_tw_Anim_0012A4 "__OTR__objects/object_tw/object_tw_Anim_0012A4" +static const ALIGN_ASSET(2) char object_tw_Anim_0012A4[] = dobject_tw_Anim_0012A4; + +#define dobject_tw_Anim_0017E0 "__OTR__objects/object_tw/object_tw_Anim_0017E0" +static const ALIGN_ASSET(2) char object_tw_Anim_0017E0[] = dobject_tw_Anim_0017E0; + +#define dobject_tw_Anim_001D10 "__OTR__objects/object_tw/object_tw_Anim_001D10" +static const ALIGN_ASSET(2) char object_tw_Anim_001D10[] = dobject_tw_Anim_001D10; + +#define dobject_tw_Anim_00230C "__OTR__objects/object_tw/object_tw_Anim_00230C" +static const ALIGN_ASSET(2) char object_tw_Anim_00230C[] = dobject_tw_Anim_00230C; + +#define dobject_tw_Anim_003614 "__OTR__objects/object_tw/object_tw_Anim_003614" +static const ALIGN_ASSET(2) char object_tw_Anim_003614[] = dobject_tw_Anim_003614; + +#define dobject_tw_Anim_003E34 "__OTR__objects/object_tw/object_tw_Anim_003E34" +static const ALIGN_ASSET(2) char object_tw_Anim_003E34[] = dobject_tw_Anim_003E34; + +#define dobject_tw_Anim_004548 "__OTR__objects/object_tw/object_tw_Anim_004548" +static const ALIGN_ASSET(2) char object_tw_Anim_004548[] = dobject_tw_Anim_004548; + +#define dobject_tw_Anim_00578C "__OTR__objects/object_tw/object_tw_Anim_00578C" +static const ALIGN_ASSET(2) char object_tw_Anim_00578C[] = dobject_tw_Anim_00578C; + +#define dobject_tw_Anim_006530 "__OTR__objects/object_tw/object_tw_Anim_006530" +static const ALIGN_ASSET(2) char object_tw_Anim_006530[] = dobject_tw_Anim_006530; + +#define dobject_tw_Anim_006F28 "__OTR__objects/object_tw/object_tw_Anim_006F28" +static const ALIGN_ASSET(2) char object_tw_Anim_006F28[] = dobject_tw_Anim_006F28; + +#define dobject_tw_Skel_0070E0 "__OTR__objects/object_tw/object_tw_Skel_0070E0" +static const ALIGN_ASSET(2) char object_tw_Skel_0070E0[] = dobject_tw_Skel_0070E0; + +#define dobject_tw_Anim_007688 "__OTR__objects/object_tw/object_tw_Anim_007688" +static const ALIGN_ASSET(2) char object_tw_Anim_007688[] = dobject_tw_Anim_007688; + +#define dobject_tw_Anim_007CA8 "__OTR__objects/object_tw/object_tw_Anim_007CA8" +static const ALIGN_ASSET(2) char object_tw_Anim_007CA8[] = dobject_tw_Anim_007CA8; + +#define dobject_tw_Anim_0088C8 "__OTR__objects/object_tw/object_tw_Anim_0088C8" +static const ALIGN_ASSET(2) char object_tw_Anim_0088C8[] = dobject_tw_Anim_0088C8; + +#define dobject_tw_Anim_009398 "__OTR__objects/object_tw/object_tw_Anim_009398" +static const ALIGN_ASSET(2) char object_tw_Anim_009398[] = dobject_tw_Anim_009398; + +#define dobject_tw_Anim_00947C "__OTR__objects/object_tw/object_tw_Anim_00947C" +static const ALIGN_ASSET(2) char object_tw_Anim_00947C[] = dobject_tw_Anim_00947C; + +#define dobject_tw_TLUT_009490 "__OTR__objects/object_tw/object_tw_TLUT_009490" +static const ALIGN_ASSET(2) char object_tw_TLUT_009490[] = dobject_tw_TLUT_009490; + +#define dobject_tw_Tex_009638 "__OTR__objects/object_tw/object_tw_Tex_009638" +static const ALIGN_ASSET(2) char object_tw_Tex_009638[] = dobject_tw_Tex_009638; + +#define dobject_tw_Tex_009E38 "__OTR__objects/object_tw/object_tw_Tex_009E38" +static const ALIGN_ASSET(2) char object_tw_Tex_009E38[] = dobject_tw_Tex_009E38; + +#define dobject_tw_Tex_00A038 "__OTR__objects/object_tw/object_tw_Tex_00A038" +static const ALIGN_ASSET(2) char object_tw_Tex_00A038[] = dobject_tw_Tex_00A038; + +#define dobject_tw_Tex_00A238 "__OTR__objects/object_tw/object_tw_Tex_00A238" +static const ALIGN_ASSET(2) char object_tw_Tex_00A238[] = dobject_tw_Tex_00A238; + +#define dobject_tw_Tex_00A438 "__OTR__objects/object_tw/object_tw_Tex_00A438" +static const ALIGN_ASSET(2) char object_tw_Tex_00A438[] = dobject_tw_Tex_00A438; + +#define dobject_tw_Tex_00A838 "__OTR__objects/object_tw/object_tw_Tex_00A838" +static const ALIGN_ASSET(2) char object_tw_Tex_00A838[] = dobject_tw_Tex_00A838; + +#define dobject_tw_Tex_00A8B8 "__OTR__objects/object_tw/object_tw_Tex_00A8B8" +static const ALIGN_ASSET(2) char object_tw_Tex_00A8B8[] = dobject_tw_Tex_00A8B8; + +#define dobject_tw_Tex_00A8F8 "__OTR__objects/object_tw/object_tw_Tex_00A8F8" +static const ALIGN_ASSET(2) char object_tw_Tex_00A8F8[] = dobject_tw_Tex_00A8F8; + +#define dobject_tw_Tex_00AAF8 "__OTR__objects/object_tw/object_tw_Tex_00AAF8" +static const ALIGN_ASSET(2) char object_tw_Tex_00AAF8[] = dobject_tw_Tex_00AAF8; + +#define dobject_tw_Tex_00AB38 "__OTR__objects/object_tw/object_tw_Tex_00AB38" +static const ALIGN_ASSET(2) char object_tw_Tex_00AB38[] = dobject_tw_Tex_00AB38; + +#define dobject_tw_Tex_00ABB8 "__OTR__objects/object_tw/object_tw_Tex_00ABB8" +static const ALIGN_ASSET(2) char object_tw_Tex_00ABB8[] = dobject_tw_Tex_00ABB8; + +#define dobject_tw_Tex_00AC38 "__OTR__objects/object_tw/object_tw_Tex_00AC38" +static const ALIGN_ASSET(2) char object_tw_Tex_00AC38[] = dobject_tw_Tex_00AC38; + +#define dobject_tw_Tex_00B038 "__OTR__objects/object_tw/object_tw_Tex_00B038" +static const ALIGN_ASSET(2) char object_tw_Tex_00B038[] = dobject_tw_Tex_00B038; + +#define dobject_tw_Tex_00B138 "__OTR__objects/object_tw/object_tw_Tex_00B138" +static const ALIGN_ASSET(2) char object_tw_Tex_00B138[] = dobject_tw_Tex_00B138; + +#define dobject_tw_Tex_00B1B8 "__OTR__objects/object_tw/object_tw_Tex_00B1B8" +static const ALIGN_ASSET(2) char object_tw_Tex_00B1B8[] = dobject_tw_Tex_00B1B8; + +#define dobject_tw_Tex_00B1F8 "__OTR__objects/object_tw/object_tw_Tex_00B1F8" +static const ALIGN_ASSET(2) char object_tw_Tex_00B1F8[] = dobject_tw_Tex_00B1F8; + +#define dobject_tw_Tex_00B238 "__OTR__objects/object_tw/object_tw_Tex_00B238" +static const ALIGN_ASSET(2) char object_tw_Tex_00B238[] = dobject_tw_Tex_00B238; + +#define dobject_tw_Tex_00B638 "__OTR__objects/object_tw/object_tw_Tex_00B638" +static const ALIGN_ASSET(2) char object_tw_Tex_00B638[] = dobject_tw_Tex_00B638; + +#define dobject_tw_Tex_00BA38 "__OTR__objects/object_tw/object_tw_Tex_00BA38" +static const ALIGN_ASSET(2) char object_tw_Tex_00BA38[] = dobject_tw_Tex_00BA38; + +#define dobject_tw_Tex_00BE38 "__OTR__objects/object_tw/object_tw_Tex_00BE38" +static const ALIGN_ASSET(2) char object_tw_Tex_00BE38[] = dobject_tw_Tex_00BE38; + +#define dobject_tw_Tex_00C238 "__OTR__objects/object_tw/object_tw_Tex_00C238" +static const ALIGN_ASSET(2) char object_tw_Tex_00C238[] = dobject_tw_Tex_00C238; + +#define dobject_tw_Tex_00CA38 "__OTR__objects/object_tw/object_tw_Tex_00CA38" +static const ALIGN_ASSET(2) char object_tw_Tex_00CA38[] = dobject_tw_Tex_00CA38; + +#define dobject_tw_Tex_00CAB8 "__OTR__objects/object_tw/object_tw_Tex_00CAB8" +static const ALIGN_ASSET(2) char object_tw_Tex_00CAB8[] = dobject_tw_Tex_00CAB8; + +#define dobject_tw_DL_0110A8 "__OTR__objects/object_tw/object_tw_DL_0110A8" +static const ALIGN_ASSET(2) char object_tw_DL_0110A8[] = dobject_tw_DL_0110A8; + +#define dobject_tw_DL_0116A0 "__OTR__objects/object_tw/object_tw_DL_0116A0" +static const ALIGN_ASSET(2) char object_tw_DL_0116A0[] = dobject_tw_DL_0116A0; + +#define dobject_tw_DL_011C98 "__OTR__objects/object_tw/object_tw_DL_011C98" +static const ALIGN_ASSET(2) char object_tw_DL_011C98[] = dobject_tw_DL_011C98; + +#define dobject_tw_DL_011E28 "__OTR__objects/object_tw/object_tw_DL_011E28" +static const ALIGN_ASSET(2) char object_tw_DL_011E28[] = dobject_tw_DL_011E28; + +#define dobject_tw_DL_011FB8 "__OTR__objects/object_tw/object_tw_DL_011FB8" +static const ALIGN_ASSET(2) char object_tw_DL_011FB8[] = dobject_tw_DL_011FB8; + +#define dobject_tw_DL_012018 "__OTR__objects/object_tw/object_tw_DL_012018" +static const ALIGN_ASSET(2) char object_tw_DL_012018[] = dobject_tw_DL_012018; + +#define dobject_tw_DL_0120C8 "__OTR__objects/object_tw/object_tw_DL_0120C8" +static const ALIGN_ASSET(2) char object_tw_DL_0120C8[] = dobject_tw_DL_0120C8; + +#define dobject_tw_DL_012178 "__OTR__objects/object_tw/object_tw_DL_012178" +static const ALIGN_ASSET(2) char object_tw_DL_012178[] = dobject_tw_DL_012178; + +#define dobject_tw_DL_012210 "__OTR__objects/object_tw/object_tw_DL_012210" +static const ALIGN_ASSET(2) char object_tw_DL_012210[] = dobject_tw_DL_012210; + +#define dobject_tw_DL_0122A8 "__OTR__objects/object_tw/object_tw_DL_0122A8" +static const ALIGN_ASSET(2) char object_tw_DL_0122A8[] = dobject_tw_DL_0122A8; + +#define dobject_tw_DL_012410 "__OTR__objects/object_tw/object_tw_DL_012410" +static const ALIGN_ASSET(2) char object_tw_DL_012410[] = dobject_tw_DL_012410; + +#define dobject_tw_DL_012578 "__OTR__objects/object_tw/object_tw_DL_012578" +static const ALIGN_ASSET(2) char object_tw_DL_012578[] = dobject_tw_DL_012578; + +#define dobject_tw_DL_0126E0 "__OTR__objects/object_tw/object_tw_DL_0126E0" +static const ALIGN_ASSET(2) char object_tw_DL_0126E0[] = dobject_tw_DL_0126E0; + +#define dobject_tw_DL_012848 "__OTR__objects/object_tw/object_tw_DL_012848" +static const ALIGN_ASSET(2) char object_tw_DL_012848[] = dobject_tw_DL_012848; + +#define dobject_tw_DL_0128E0 "__OTR__objects/object_tw/object_tw_DL_0128E0" +static const ALIGN_ASSET(2) char object_tw_DL_0128E0[] = dobject_tw_DL_0128E0; + +#define dobject_tw_DL_012978 "__OTR__objects/object_tw/object_tw_DL_012978" +static const ALIGN_ASSET(2) char object_tw_DL_012978[] = dobject_tw_DL_012978; + +#define dobject_tw_DL_012A28 "__OTR__objects/object_tw/object_tw_DL_012A28" +static const ALIGN_ASSET(2) char object_tw_DL_012A28[] = dobject_tw_DL_012A28; + +#define dobject_tw_DL_012AD8 "__OTR__objects/object_tw/object_tw_DL_012AD8" +static const ALIGN_ASSET(2) char object_tw_DL_012AD8[] = dobject_tw_DL_012AD8; + +#define dobject_tw_DL_012B38 "__OTR__objects/object_tw/object_tw_DL_012B38" +static const ALIGN_ASSET(2) char object_tw_DL_012B38[] = dobject_tw_DL_012B38; + +#define dobject_tw_DL_012CE0 "__OTR__objects/object_tw/object_tw_DL_012CE0" +static const ALIGN_ASSET(2) char object_tw_DL_012CE0[] = dobject_tw_DL_012CE0; + +#define dobject_tw_DL_013310 "__OTR__objects/object_tw/object_tw_DL_013310" +static const ALIGN_ASSET(2) char object_tw_DL_013310[] = dobject_tw_DL_013310; + +#define dobject_tw_DL_0134B8 "__OTR__objects/object_tw/object_tw_DL_0134B8" +static const ALIGN_ASSET(2) char object_tw_DL_0134B8[] = dobject_tw_DL_0134B8; + +#define dobject_tw_DL_013AE8 "__OTR__objects/object_tw/object_tw_DL_013AE8" +static const ALIGN_ASSET(2) char object_tw_DL_013AE8[] = dobject_tw_DL_013AE8; + +#define dobject_tw_DL_013D68 "__OTR__objects/object_tw/object_tw_DL_013D68" +static const ALIGN_ASSET(2) char object_tw_DL_013D68[] = dobject_tw_DL_013D68; + +#define dobject_tw_DL_013E98 "__OTR__objects/object_tw/object_tw_DL_013E98" +static const ALIGN_ASSET(2) char object_tw_DL_013E98[] = dobject_tw_DL_013E98; + +#define dobject_tw_DL_013F98 "__OTR__objects/object_tw/object_tw_DL_013F98" +static const ALIGN_ASSET(2) char object_tw_DL_013F98[] = dobject_tw_DL_013F98; + +#define dobject_tw_DL_014070 "__OTR__objects/object_tw/object_tw_DL_014070" +static const ALIGN_ASSET(2) char object_tw_DL_014070[] = dobject_tw_DL_014070; + +#define dobject_tw_DL_014158 "__OTR__objects/object_tw/object_tw_DL_014158" +static const ALIGN_ASSET(2) char object_tw_DL_014158[] = dobject_tw_DL_014158; + +#define dobject_tw_DL_015440 "__OTR__objects/object_tw/object_tw_DL_015440" +static const ALIGN_ASSET(2) char object_tw_DL_015440[] = dobject_tw_DL_015440; + +#define dobject_tw_DL_015538 "__OTR__objects/object_tw/object_tw_DL_015538" +static const ALIGN_ASSET(2) char object_tw_DL_015538[] = dobject_tw_DL_015538; + +#define dobject_tw_DL_015648 "__OTR__objects/object_tw/object_tw_DL_015648" +static const ALIGN_ASSET(2) char object_tw_DL_015648[] = dobject_tw_DL_015648; + +#define dobject_tw_DL_015740 "__OTR__objects/object_tw/object_tw_DL_015740" +static const ALIGN_ASSET(2) char object_tw_DL_015740[] = dobject_tw_DL_015740; + +#define dobject_tw_DL_015850 "__OTR__objects/object_tw/object_tw_DL_015850" +static const ALIGN_ASSET(2) char object_tw_DL_015850[] = dobject_tw_DL_015850; + +#define dobject_tw_DL_015990 "__OTR__objects/object_tw/object_tw_DL_015990" +static const ALIGN_ASSET(2) char object_tw_DL_015990[] = dobject_tw_DL_015990; + +#define dobject_tw_DL_015B10 "__OTR__objects/object_tw/object_tw_DL_015B10" +static const ALIGN_ASSET(2) char object_tw_DL_015B10[] = dobject_tw_DL_015B10; + +#define dobject_tw_DL_015C30 "__OTR__objects/object_tw/object_tw_DL_015C30" +static const ALIGN_ASSET(2) char object_tw_DL_015C30[] = dobject_tw_DL_015C30; + +#define dobject_tw_DL_015D58 "__OTR__objects/object_tw/object_tw_DL_015D58" +static const ALIGN_ASSET(2) char object_tw_DL_015D58[] = dobject_tw_DL_015D58; + +#define dobject_tw_DL_015E78 "__OTR__objects/object_tw/object_tw_DL_015E78" +static const ALIGN_ASSET(2) char object_tw_DL_015E78[] = dobject_tw_DL_015E78; + +#define dobject_tw_DL_015FF8 "__OTR__objects/object_tw/object_tw_DL_015FF8" +static const ALIGN_ASSET(2) char object_tw_DL_015FF8[] = dobject_tw_DL_015FF8; + +#define dobject_tw_DL_016118 "__OTR__objects/object_tw/object_tw_DL_016118" +static const ALIGN_ASSET(2) char object_tw_DL_016118[] = dobject_tw_DL_016118; + +#define dobject_tw_DL_016240 "__OTR__objects/object_tw/object_tw_DL_016240" +static const ALIGN_ASSET(2) char object_tw_DL_016240[] = dobject_tw_DL_016240; + +#define dobject_tw_DL_016360 "__OTR__objects/object_tw/object_tw_DL_016360" +static const ALIGN_ASSET(2) char object_tw_DL_016360[] = dobject_tw_DL_016360; + +#define dobject_tw_DL_0164C0 "__OTR__objects/object_tw/object_tw_DL_0164C0" +static const ALIGN_ASSET(2) char object_tw_DL_0164C0[] = dobject_tw_DL_0164C0; + +#define dobject_tw_DL_0164C8 "__OTR__objects/object_tw/object_tw_DL_0164C8" +static const ALIGN_ASSET(2) char object_tw_DL_0164C8[] = dobject_tw_DL_0164C8; + +#define dobject_tw_DL_0164D0 "__OTR__objects/object_tw/object_tw_DL_0164D0" +static const ALIGN_ASSET(2) char object_tw_DL_0164D0[] = dobject_tw_DL_0164D0; + +#define dobject_tw_Tex_016650 "__OTR__objects/object_tw/object_tw_Tex_016650" +static const ALIGN_ASSET(2) char object_tw_Tex_016650[] = dobject_tw_Tex_016650; + +#define dobject_tw_Tex_0166D0 "__OTR__objects/object_tw/object_tw_Tex_0166D0" +static const ALIGN_ASSET(2) char object_tw_Tex_0166D0[] = dobject_tw_Tex_0166D0; + +#define dobject_tw_DL_017910 "__OTR__objects/object_tw/object_tw_DL_017910" +static const ALIGN_ASSET(2) char object_tw_DL_017910[] = dobject_tw_DL_017910; + +#define dobject_tw_DL_017A08 "__OTR__objects/object_tw/object_tw_DL_017A08" +static const ALIGN_ASSET(2) char object_tw_DL_017A08[] = dobject_tw_DL_017A08; + +#define dobject_tw_DL_017B18 "__OTR__objects/object_tw/object_tw_DL_017B18" +static const ALIGN_ASSET(2) char object_tw_DL_017B18[] = dobject_tw_DL_017B18; + +#define dobject_tw_DL_017C10 "__OTR__objects/object_tw/object_tw_DL_017C10" +static const ALIGN_ASSET(2) char object_tw_DL_017C10[] = dobject_tw_DL_017C10; + +#define dobject_tw_DL_017D20 "__OTR__objects/object_tw/object_tw_DL_017D20" +static const ALIGN_ASSET(2) char object_tw_DL_017D20[] = dobject_tw_DL_017D20; + +#define dobject_tw_DL_017E60 "__OTR__objects/object_tw/object_tw_DL_017E60" +static const ALIGN_ASSET(2) char object_tw_DL_017E60[] = dobject_tw_DL_017E60; + +#define dobject_tw_DL_017FE0 "__OTR__objects/object_tw/object_tw_DL_017FE0" +static const ALIGN_ASSET(2) char object_tw_DL_017FE0[] = dobject_tw_DL_017FE0; + +#define dobject_tw_DL_018100 "__OTR__objects/object_tw/object_tw_DL_018100" +static const ALIGN_ASSET(2) char object_tw_DL_018100[] = dobject_tw_DL_018100; + +#define dobject_tw_DL_018228 "__OTR__objects/object_tw/object_tw_DL_018228" +static const ALIGN_ASSET(2) char object_tw_DL_018228[] = dobject_tw_DL_018228; + +#define dobject_tw_DL_018348 "__OTR__objects/object_tw/object_tw_DL_018348" +static const ALIGN_ASSET(2) char object_tw_DL_018348[] = dobject_tw_DL_018348; + +#define dobject_tw_DL_0184C8 "__OTR__objects/object_tw/object_tw_DL_0184C8" +static const ALIGN_ASSET(2) char object_tw_DL_0184C8[] = dobject_tw_DL_0184C8; + +#define dobject_tw_DL_0185E8 "__OTR__objects/object_tw/object_tw_DL_0185E8" +static const ALIGN_ASSET(2) char object_tw_DL_0185E8[] = dobject_tw_DL_0185E8; + +#define dobject_tw_DL_018710 "__OTR__objects/object_tw/object_tw_DL_018710" +static const ALIGN_ASSET(2) char object_tw_DL_018710[] = dobject_tw_DL_018710; + +#define dobject_tw_DL_018830 "__OTR__objects/object_tw/object_tw_DL_018830" +static const ALIGN_ASSET(2) char object_tw_DL_018830[] = dobject_tw_DL_018830; + +#define dobject_tw_DL_018990 "__OTR__objects/object_tw/object_tw_DL_018990" +static const ALIGN_ASSET(2) char object_tw_DL_018990[] = dobject_tw_DL_018990; + +#define dobject_tw_DL_018998 "__OTR__objects/object_tw/object_tw_DL_018998" +static const ALIGN_ASSET(2) char object_tw_DL_018998[] = dobject_tw_DL_018998; + +#define dobject_tw_DL_0189A0 "__OTR__objects/object_tw/object_tw_DL_0189A0" +static const ALIGN_ASSET(2) char object_tw_DL_0189A0[] = dobject_tw_DL_0189A0; + +#define dobject_tw_Tex_018B20 "__OTR__objects/object_tw/object_tw_Tex_018B20" +static const ALIGN_ASSET(2) char object_tw_Tex_018B20[] = dobject_tw_Tex_018B20; + +#define dobject_tw_Tex_018B60 "__OTR__objects/object_tw/object_tw_Tex_018B60" +static const ALIGN_ASSET(2) char object_tw_Tex_018B60[] = dobject_tw_Tex_018B60; + +#define dobject_tw_DL_018FC0 "__OTR__objects/object_tw/object_tw_DL_018FC0" +static const ALIGN_ASSET(2) char object_tw_DL_018FC0[] = dobject_tw_DL_018FC0; + +#define dobject_tw_Tex_019078 "__OTR__objects/object_tw/object_tw_Tex_019078" +static const ALIGN_ASSET(2) char object_tw_Tex_019078[] = dobject_tw_Tex_019078; + +#define dobject_tw_Tex_019478 "__OTR__objects/object_tw/object_tw_Tex_019478" +static const ALIGN_ASSET(2) char object_tw_Tex_019478[] = dobject_tw_Tex_019478; + +#define dobject_tw_DL_019938 "__OTR__objects/object_tw/object_tw_DL_019938" +static const ALIGN_ASSET(2) char object_tw_DL_019938[] = dobject_tw_DL_019938; + +#define dobject_tw_Tex_019A20 "__OTR__objects/object_tw/object_tw_Tex_019A20" +static const ALIGN_ASSET(2) char object_tw_Tex_019A20[] = dobject_tw_Tex_019A20; + +#define dobject_tw_DL_019D40 "__OTR__objects/object_tw/object_tw_DL_019D40" +static const ALIGN_ASSET(2) char object_tw_DL_019D40[] = dobject_tw_DL_019D40; + +#define dobject_tw_Tex_019E00 "__OTR__objects/object_tw/object_tw_Tex_019E00" +static const ALIGN_ASSET(2) char object_tw_Tex_019E00[] = dobject_tw_Tex_019E00; + +#define dobject_tw_Tex_01A200 "__OTR__objects/object_tw/object_tw_Tex_01A200" +static const ALIGN_ASSET(2) char object_tw_Tex_01A200[] = dobject_tw_Tex_01A200; + +#define dobject_tw_DL_01A430 "__OTR__objects/object_tw/object_tw_DL_01A430" +static const ALIGN_ASSET(2) char object_tw_DL_01A430[] = dobject_tw_DL_01A430; + +#define dobject_tw_DL_01A528 "__OTR__objects/object_tw/object_tw_DL_01A528" +static const ALIGN_ASSET(2) char object_tw_DL_01A528[] = dobject_tw_DL_01A528; + +#define dobject_tw_DL_01A5A8 "__OTR__objects/object_tw/object_tw_DL_01A5A8" +static const ALIGN_ASSET(2) char object_tw_DL_01A5A8[] = dobject_tw_DL_01A5A8; + +#define dobject_tw_Tex_01A5C0 "__OTR__objects/object_tw/object_tw_Tex_01A5C0" +static const ALIGN_ASSET(2) char object_tw_Tex_01A5C0[] = dobject_tw_Tex_01A5C0; + +#define dobject_tw_DL_01A790 "__OTR__objects/object_tw/object_tw_DL_01A790" +static const ALIGN_ASSET(2) char object_tw_DL_01A790[] = dobject_tw_DL_01A790; + +#define dobject_tw_DL_01A8A0 "__OTR__objects/object_tw/object_tw_DL_01A8A0" +static const ALIGN_ASSET(2) char object_tw_DL_01A8A0[] = dobject_tw_DL_01A8A0; + +#define dobject_tw_DL_01A998 "__OTR__objects/object_tw/object_tw_DL_01A998" +static const ALIGN_ASSET(2) char object_tw_DL_01A998[] = dobject_tw_DL_01A998; + +#define dobject_tw_DL_01AA50 "__OTR__objects/object_tw/object_tw_DL_01AA50" +static const ALIGN_ASSET(2) char object_tw_DL_01AA50[] = dobject_tw_DL_01AA50; + +#define dobject_tw_DL_01AB00 "__OTR__objects/object_tw/object_tw_DL_01AB00" +static const ALIGN_ASSET(2) char object_tw_DL_01AB00[] = dobject_tw_DL_01AB00; + +#define dobject_tw_Tex_01AB20 "__OTR__objects/object_tw/object_tw_Tex_01AB20" +static const ALIGN_ASSET(2) char object_tw_Tex_01AB20[] = dobject_tw_Tex_01AB20; + +#define dobject_tw_DL_01BC00 "__OTR__objects/object_tw/object_tw_DL_01BC00" +static const ALIGN_ASSET(2) char object_tw_DL_01BC00[] = dobject_tw_DL_01BC00; + +#define dobject_tw_Tex_01BCA0 "__OTR__objects/object_tw/object_tw_Tex_01BCA0" +static const ALIGN_ASSET(2) char object_tw_Tex_01BCA0[] = dobject_tw_Tex_01BCA0; + +#define dobject_tw_Tex_01C0A0 "__OTR__objects/object_tw/object_tw_Tex_01C0A0" +static const ALIGN_ASSET(2) char object_tw_Tex_01C0A0[] = dobject_tw_Tex_01C0A0; + +#define dobject_tw_DL_01C1C0 "__OTR__objects/object_tw/object_tw_DL_01C1C0" +static const ALIGN_ASSET(2) char object_tw_DL_01C1C0[] = dobject_tw_DL_01C1C0; + +#define dobject_tw_Tex_01C2A0 "__OTR__objects/object_tw/object_tw_Tex_01C2A0" +static const ALIGN_ASSET(2) char object_tw_Tex_01C2A0[] = dobject_tw_Tex_01C2A0; + +#define dobject_tw_Tex_01C6A0 "__OTR__objects/object_tw/object_tw_Tex_01C6A0" +static const ALIGN_ASSET(2) char object_tw_Tex_01C6A0[] = dobject_tw_Tex_01C6A0; + +#define dobject_tw_DL_01CEE0 "__OTR__objects/object_tw/object_tw_DL_01CEE0" +static const ALIGN_ASSET(2) char object_tw_DL_01CEE0[] = dobject_tw_DL_01CEE0; + +#define dobject_tw_Tex_01CFA8 "__OTR__objects/object_tw/object_tw_Tex_01CFA8" +static const ALIGN_ASSET(2) char object_tw_Tex_01CFA8[] = dobject_tw_Tex_01CFA8; + +#define dobject_tw_Tex_01D3A8 "__OTR__objects/object_tw/object_tw_Tex_01D3A8" +static const ALIGN_ASSET(2) char object_tw_Tex_01D3A8[] = dobject_tw_Tex_01D3A8; + +#define dobject_tw_DL_01DBE8 "__OTR__objects/object_tw/object_tw_DL_01DBE8" +static const ALIGN_ASSET(2) char object_tw_DL_01DBE8[] = dobject_tw_DL_01DBE8; + +#define dobject_tw_DL_01DDF0 "__OTR__objects/object_tw/object_tw_DL_01DDF0" +static const ALIGN_ASSET(2) char object_tw_DL_01DDF0[] = dobject_tw_DL_01DDF0; + +#define dobject_tw_DL_01E020 "__OTR__objects/object_tw/object_tw_DL_01E020" +static const ALIGN_ASSET(2) char object_tw_DL_01E020[] = dobject_tw_DL_01E020; + +#define dobject_tw_DL_01E0E0 "__OTR__objects/object_tw/object_tw_DL_01E0E0" +static const ALIGN_ASSET(2) char object_tw_DL_01E0E0[] = dobject_tw_DL_01E0E0; + +#define dobject_tw_DL_01E2C0 "__OTR__objects/object_tw/object_tw_DL_01E2C0" +static const ALIGN_ASSET(2) char object_tw_DL_01E2C0[] = dobject_tw_DL_01E2C0; + +#define dobject_tw_DL_01E3A0 "__OTR__objects/object_tw/object_tw_DL_01E3A0" +static const ALIGN_ASSET(2) char object_tw_DL_01E3A0[] = dobject_tw_DL_01E3A0; + +#define dobject_tw_Tex_01E430 "__OTR__objects/object_tw/object_tw_Tex_01E430" +static const ALIGN_ASSET(2) char object_tw_Tex_01E430[] = dobject_tw_Tex_01E430; + +#define dobject_tw_DL_01E9F0 "__OTR__objects/object_tw/object_tw_DL_01E9F0" +static const ALIGN_ASSET(2) char object_tw_DL_01E9F0[] = dobject_tw_DL_01E9F0; + +#define dobject_tw_Tex_01EB28 "__OTR__objects/object_tw/object_tw_Tex_01EB28" +static const ALIGN_ASSET(2) char object_tw_Tex_01EB28[] = dobject_tw_Tex_01EB28; + +#define dobject_tw_DL_01EC68 "__OTR__objects/object_tw/object_tw_DL_01EC68" +static const ALIGN_ASSET(2) char object_tw_DL_01EC68[] = dobject_tw_DL_01EC68; + +#define dobject_tw_Tex_01ECF0 "__OTR__objects/object_tw/object_tw_Tex_01ECF0" +static const ALIGN_ASSET(2) char object_tw_Tex_01ECF0[] = dobject_tw_Tex_01ECF0; + +#define dobject_tw_DL_01EEB0 "__OTR__objects/object_tw/object_tw_DL_01EEB0" +static const ALIGN_ASSET(2) char object_tw_DL_01EEB0[] = dobject_tw_DL_01EEB0; + +#define dobject_tw_DL_01F238 "__OTR__objects/object_tw/object_tw_DL_01F238" +static const ALIGN_ASSET(2) char object_tw_DL_01F238[] = dobject_tw_DL_01F238; + +#define dobject_tw_DL_01F390 "__OTR__objects/object_tw/object_tw_DL_01F390" +static const ALIGN_ASSET(2) char object_tw_DL_01F390[] = dobject_tw_DL_01F390; + +#define dobject_tw_DL_01F608 "__OTR__objects/object_tw/object_tw_DL_01F608" +static const ALIGN_ASSET(2) char object_tw_DL_01F608[] = dobject_tw_DL_01F608; + +#define dobject_tw_Skel_01F888 "__OTR__objects/object_tw/object_tw_Skel_01F888" +static const ALIGN_ASSET(2) char object_tw_Skel_01F888[] = dobject_tw_Skel_01F888; + +#define dobject_tw_Tex_02A070 "__OTR__objects/object_tw/object_tw_Tex_02A070" +static const ALIGN_ASSET(2) char object_tw_Tex_02A070[] = dobject_tw_Tex_02A070; + +#define dobject_tw_Anim_0216DC "__OTR__objects/object_tw/object_tw_Anim_0216DC" +static const ALIGN_ASSET(2) char object_tw_Anim_0216DC[] = dobject_tw_Anim_0216DC; + +#define dobject_tw_Anim_022700 "__OTR__objects/object_tw/object_tw_Anim_022700" +static const ALIGN_ASSET(2) char object_tw_Anim_022700[] = dobject_tw_Anim_022700; + +#define dobject_tw_Anim_023750 "__OTR__objects/object_tw/object_tw_Anim_023750" +static const ALIGN_ASSET(2) char object_tw_Anim_023750[] = dobject_tw_Anim_023750; + +#define dobject_tw_Anim_024374 "__OTR__objects/object_tw/object_tw_Anim_024374" +static const ALIGN_ASSET(2) char object_tw_Anim_024374[] = dobject_tw_Anim_024374; + +#define dobject_tw_Anim_0244B4 "__OTR__objects/object_tw/object_tw_Anim_0244B4" +static const ALIGN_ASSET(2) char object_tw_Anim_0244B4[] = dobject_tw_Anim_0244B4; + +#define dobject_tw_Tex_0244D0 "__OTR__objects/object_tw/object_tw_Tex_0244D0" +static const ALIGN_ASSET(2) char object_tw_Tex_0244D0[] = dobject_tw_Tex_0244D0; + +#define dobject_tw_Tex_024510 "__OTR__objects/object_tw/object_tw_Tex_024510" +static const ALIGN_ASSET(2) char object_tw_Tex_024510[] = dobject_tw_Tex_024510; + +#define dobject_tw_Tex_024710 "__OTR__objects/object_tw/object_tw_Tex_024710" +static const ALIGN_ASSET(2) char object_tw_Tex_024710[] = dobject_tw_Tex_024710; + +#define dobject_tw_Tex_024910 "__OTR__objects/object_tw/object_tw_Tex_024910" +static const ALIGN_ASSET(2) char object_tw_Tex_024910[] = dobject_tw_Tex_024910; + +#define dobject_tw_Tex_024B10 "__OTR__objects/object_tw/object_tw_Tex_024B10" +static const ALIGN_ASSET(2) char object_tw_Tex_024B10[] = dobject_tw_Tex_024B10; + +#define dobject_tw_DL_027720 "__OTR__objects/object_tw/object_tw_DL_027720" +static const ALIGN_ASSET(2) char object_tw_DL_027720[] = dobject_tw_DL_027720; + +#define dobject_tw_DL_027820 "__OTR__objects/object_tw/object_tw_DL_027820" +static const ALIGN_ASSET(2) char object_tw_DL_027820[] = dobject_tw_DL_027820; + +#define dobject_tw_DL_027970 "__OTR__objects/object_tw/object_tw_DL_027970" +static const ALIGN_ASSET(2) char object_tw_DL_027970[] = dobject_tw_DL_027970; + +#define dobject_tw_DL_027A60 "__OTR__objects/object_tw/object_tw_DL_027A60" +static const ALIGN_ASSET(2) char object_tw_DL_027A60[] = dobject_tw_DL_027A60; + +#define dobject_tw_DL_027B78 "__OTR__objects/object_tw/object_tw_DL_027B78" +static const ALIGN_ASSET(2) char object_tw_DL_027B78[] = dobject_tw_DL_027B78; + +#define dobject_tw_DL_027C98 "__OTR__objects/object_tw/object_tw_DL_027C98" +static const ALIGN_ASSET(2) char object_tw_DL_027C98[] = dobject_tw_DL_027C98; + +#define dobject_tw_DL_027DE8 "__OTR__objects/object_tw/object_tw_DL_027DE8" +static const ALIGN_ASSET(2) char object_tw_DL_027DE8[] = dobject_tw_DL_027DE8; + +#define dobject_tw_DL_027EE0 "__OTR__objects/object_tw/object_tw_DL_027EE0" +static const ALIGN_ASSET(2) char object_tw_DL_027EE0[] = dobject_tw_DL_027EE0; + +#define dobject_tw_DL_027FE8 "__OTR__objects/object_tw/object_tw_DL_027FE8" +static const ALIGN_ASSET(2) char object_tw_DL_027FE8[] = dobject_tw_DL_027FE8; + +#define dobject_tw_DL_028100 "__OTR__objects/object_tw/object_tw_DL_028100" +static const ALIGN_ASSET(2) char object_tw_DL_028100[] = dobject_tw_DL_028100; + +#define dobject_tw_DL_028220 "__OTR__objects/object_tw/object_tw_DL_028220" +static const ALIGN_ASSET(2) char object_tw_DL_028220[] = dobject_tw_DL_028220; + +#define dobject_tw_DL_028370 "__OTR__objects/object_tw/object_tw_DL_028370" +static const ALIGN_ASSET(2) char object_tw_DL_028370[] = dobject_tw_DL_028370; + +#define dobject_tw_DL_028468 "__OTR__objects/object_tw/object_tw_DL_028468" +static const ALIGN_ASSET(2) char object_tw_DL_028468[] = dobject_tw_DL_028468; + +#define dobject_tw_DL_028570 "__OTR__objects/object_tw/object_tw_DL_028570" +static const ALIGN_ASSET(2) char object_tw_DL_028570[] = dobject_tw_DL_028570; + +#define dobject_tw_DL_028668 "__OTR__objects/object_tw/object_tw_DL_028668" +static const ALIGN_ASSET(2) char object_tw_DL_028668[] = dobject_tw_DL_028668; + +#define dobject_tw_DL_028778 "__OTR__objects/object_tw/object_tw_DL_028778" +static const ALIGN_ASSET(2) char object_tw_DL_028778[] = dobject_tw_DL_028778; + +#define dobject_tw_DL_028870 "__OTR__objects/object_tw/object_tw_DL_028870" +static const ALIGN_ASSET(2) char object_tw_DL_028870[] = dobject_tw_DL_028870; + +#define dobject_tw_DL_028980 "__OTR__objects/object_tw/object_tw_DL_028980" +static const ALIGN_ASSET(2) char object_tw_DL_028980[] = dobject_tw_DL_028980; + +#define dobject_tw_DL_028B78 "__OTR__objects/object_tw/object_tw_DL_028B78" +static const ALIGN_ASSET(2) char object_tw_DL_028B78[] = dobject_tw_DL_028B78; + +#define dobject_tw_DL_028D70 "__OTR__objects/object_tw/object_tw_DL_028D70" +static const ALIGN_ASSET(2) char object_tw_DL_028D70[] = dobject_tw_DL_028D70; + +#define dobject_tw_DL_029268 "__OTR__objects/object_tw/object_tw_DL_029268" +static const ALIGN_ASSET(2) char object_tw_DL_029268[] = dobject_tw_DL_029268; + +#define dobject_tw_DL_0293E0 "__OTR__objects/object_tw/object_tw_DL_0293E0" +static const ALIGN_ASSET(2) char object_tw_DL_0293E0[] = dobject_tw_DL_0293E0; + +#define dobject_tw_DL_029530 "__OTR__objects/object_tw/object_tw_DL_029530" +static const ALIGN_ASSET(2) char object_tw_DL_029530[] = dobject_tw_DL_029530; + +#define dobject_tw_DL_029620 "__OTR__objects/object_tw/object_tw_DL_029620" +static const ALIGN_ASSET(2) char object_tw_DL_029620[] = dobject_tw_DL_029620; + +#define dobject_tw_DL_029738 "__OTR__objects/object_tw/object_tw_DL_029738" +static const ALIGN_ASSET(2) char object_tw_DL_029738[] = dobject_tw_DL_029738; + +#define dobject_tw_DL_029900 "__OTR__objects/object_tw/object_tw_DL_029900" +static const ALIGN_ASSET(2) char object_tw_DL_029900[] = dobject_tw_DL_029900; + +#define dobject_tw_DL_0299F8 "__OTR__objects/object_tw/object_tw_DL_0299F8" +static const ALIGN_ASSET(2) char object_tw_DL_0299F8[] = dobject_tw_DL_0299F8; + +#define dobject_tw_DL_029B10 "__OTR__objects/object_tw/object_tw_DL_029B10" +static const ALIGN_ASSET(2) char object_tw_DL_029B10[] = dobject_tw_DL_029B10; + +#define dobject_tw_TLUT_029E50 "__OTR__objects/object_tw/object_tw_TLUT_029E50" +static const ALIGN_ASSET(2) char object_tw_TLUT_029E50[] = dobject_tw_TLUT_029E50; + +#define dobject_tw_TLUT_02A020 "__OTR__objects/object_tw/object_tw_TLUT_02A020" +static const ALIGN_ASSET(2) char object_tw_TLUT_02A020[] = dobject_tw_TLUT_02A020; + +#define dobject_tw_Tex_02A470 "__OTR__objects/object_tw/object_tw_Tex_02A470" +static const ALIGN_ASSET(2) char object_tw_Tex_02A470[] = dobject_tw_Tex_02A470; + +#define dobject_tw_Tex_02A870 "__OTR__objects/object_tw/object_tw_Tex_02A870" +static const ALIGN_ASSET(2) char object_tw_Tex_02A870[] = dobject_tw_Tex_02A870; + +#define dobject_tw_Tex_02A970 "__OTR__objects/object_tw/object_tw_Tex_02A970" +static const ALIGN_ASSET(2) char object_tw_Tex_02A970[] = dobject_tw_Tex_02A970; + +#define dobject_tw_Tex_02A9B0 "__OTR__objects/object_tw/object_tw_Tex_02A9B0" +static const ALIGN_ASSET(2) char object_tw_Tex_02A9B0[] = dobject_tw_Tex_02A9B0; + +#define dobject_tw_Tex_02ADB0 "__OTR__objects/object_tw/object_tw_Tex_02ADB0" +static const ALIGN_ASSET(2) char object_tw_Tex_02ADB0[] = dobject_tw_Tex_02ADB0; + +#define dobject_tw_Tex_02ADF0 "__OTR__objects/object_tw/object_tw_Tex_02ADF0" +static const ALIGN_ASSET(2) char object_tw_Tex_02ADF0[] = dobject_tw_Tex_02ADF0; + +#define dobject_tw_Tex_02AE30 "__OTR__objects/object_tw/object_tw_Tex_02AE30" +static const ALIGN_ASSET(2) char object_tw_Tex_02AE30[] = dobject_tw_Tex_02AE30; + +#define dobject_tw_Tex_02AF30 "__OTR__objects/object_tw/object_tw_Tex_02AF30" +static const ALIGN_ASSET(2) char object_tw_Tex_02AF30[] = dobject_tw_Tex_02AF30; + +#define dobject_tw_DL_02CAF0 "__OTR__objects/object_tw/object_tw_DL_02CAF0" +static const ALIGN_ASSET(2) char object_tw_DL_02CAF0[] = dobject_tw_DL_02CAF0; + +#define dobject_tw_DL_02CB50 "__OTR__objects/object_tw/object_tw_DL_02CB50" +static const ALIGN_ASSET(2) char object_tw_DL_02CB50[] = dobject_tw_DL_02CB50; + +#define dobject_tw_DL_02CBB0 "__OTR__objects/object_tw/object_tw_DL_02CBB0" +static const ALIGN_ASSET(2) char object_tw_DL_02CBB0[] = dobject_tw_DL_02CBB0; + +#define dobject_tw_DL_02D320 "__OTR__objects/object_tw/object_tw_DL_02D320" +static const ALIGN_ASSET(2) char object_tw_DL_02D320[] = dobject_tw_DL_02D320; + +#define dobject_tw_DL_02D4A0 "__OTR__objects/object_tw/object_tw_DL_02D4A0" +static const ALIGN_ASSET(2) char object_tw_DL_02D4A0[] = dobject_tw_DL_02D4A0; + +#define dobject_tw_DL_02D5D8 "__OTR__objects/object_tw/object_tw_DL_02D5D8" +static const ALIGN_ASSET(2) char object_tw_DL_02D5D8[] = dobject_tw_DL_02D5D8; + +#define dobject_tw_DL_02D710 "__OTR__objects/object_tw/object_tw_DL_02D710" +static const ALIGN_ASSET(2) char object_tw_DL_02D710[] = dobject_tw_DL_02D710; + +#define dobject_tw_DL_02D890 "__OTR__objects/object_tw/object_tw_DL_02D890" +static const ALIGN_ASSET(2) char object_tw_DL_02D890[] = dobject_tw_DL_02D890; + +#define dobject_tw_DL_02D940 "__OTR__objects/object_tw/object_tw_DL_02D940" +static const ALIGN_ASSET(2) char object_tw_DL_02D940[] = dobject_tw_DL_02D940; + +#define dobject_tw_DL_02D9F0 "__OTR__objects/object_tw/object_tw_DL_02D9F0" +static const ALIGN_ASSET(2) char object_tw_DL_02D9F0[] = dobject_tw_DL_02D9F0; + +#define dobject_tw_DL_02DAE0 "__OTR__objects/object_tw/object_tw_DL_02DAE0" +static const ALIGN_ASSET(2) char object_tw_DL_02DAE0[] = dobject_tw_DL_02DAE0; + +#define dobject_tw_DL_02DBC8 "__OTR__objects/object_tw/object_tw_DL_02DBC8" +static const ALIGN_ASSET(2) char object_tw_DL_02DBC8[] = dobject_tw_DL_02DBC8; + +#define dobject_tw_DL_02DCB8 "__OTR__objects/object_tw/object_tw_DL_02DCB8" +static const ALIGN_ASSET(2) char object_tw_DL_02DCB8[] = dobject_tw_DL_02DCB8; + +#define dobject_tw_DL_02DDD8 "__OTR__objects/object_tw/object_tw_DL_02DDD8" +static const ALIGN_ASSET(2) char object_tw_DL_02DDD8[] = dobject_tw_DL_02DDD8; + +#define dobject_tw_DL_02DEB0 "__OTR__objects/object_tw/object_tw_DL_02DEB0" +static const ALIGN_ASSET(2) char object_tw_DL_02DEB0[] = dobject_tw_DL_02DEB0; + +#define dobject_tw_DL_02DFB0 "__OTR__objects/object_tw/object_tw_DL_02DFB0" +static const ALIGN_ASSET(2) char object_tw_DL_02DFB0[] = dobject_tw_DL_02DFB0; + +#define dobject_tw_DL_02E098 "__OTR__objects/object_tw/object_tw_DL_02E098" +static const ALIGN_ASSET(2) char object_tw_DL_02E098[] = dobject_tw_DL_02E098; + +#define dgTwinrovaTitleCardTex "__OTR__objects/object_tw/gTwinrovaTitleCardTex" +static const ALIGN_ASSET(2) char gTwinrovaTitleCardTex[] = dgTwinrovaTitleCardTex; + +#define dobject_tw_Skel_032020 "__OTR__objects/object_tw/object_tw_Skel_032020" +static const ALIGN_ASSET(2) char object_tw_Skel_032020[] = dobject_tw_Skel_032020; + +#define dobject_tw_Anim_032BF8 "__OTR__objects/object_tw/object_tw_Anim_032BF8" +static const ALIGN_ASSET(2) char object_tw_Anim_032BF8[] = dobject_tw_Anim_032BF8; + +#define dobject_tw_Anim_0338F0 "__OTR__objects/object_tw/object_tw_Anim_0338F0" +static const ALIGN_ASSET(2) char object_tw_Anim_0338F0[] = dobject_tw_Anim_0338F0; + +#define dobject_tw_Anim_0343B4 "__OTR__objects/object_tw/object_tw_Anim_0343B4" +static const ALIGN_ASSET(2) char object_tw_Anim_0343B4[] = dobject_tw_Anim_0343B4; + +#define dobject_tw_Anim_035030 "__OTR__objects/object_tw/object_tw_Anim_035030" +static const ALIGN_ASSET(2) char object_tw_Anim_035030[] = dobject_tw_Anim_035030; + +#define dobject_tw_Anim_035988 "__OTR__objects/object_tw/object_tw_Anim_035988" +static const ALIGN_ASSET(2) char object_tw_Anim_035988[] = dobject_tw_Anim_035988; + +#define dobject_tw_Anim_036FBC "__OTR__objects/object_tw/object_tw_Anim_036FBC" +static const ALIGN_ASSET(2) char object_tw_Anim_036FBC[] = dobject_tw_Anim_036FBC; + +#define dobject_tw_Anim_038E2C "__OTR__objects/object_tw/object_tw_Anim_038E2C" +static const ALIGN_ASSET(2) char object_tw_Anim_038E2C[] = dobject_tw_Anim_038E2C; + +#define dobject_tw_Anim_03A2D0 "__OTR__objects/object_tw/object_tw_Anim_03A2D0" +static const ALIGN_ASSET(2) char object_tw_Anim_03A2D0[] = dobject_tw_Anim_03A2D0; + +#define dobject_tw_DL_03A680 "__OTR__objects/object_tw/object_tw_DL_03A680" +static const ALIGN_ASSET(2) char object_tw_DL_03A680[] = dobject_tw_DL_03A680; + +#define dobject_tw_Tex_03A7B0 "__OTR__objects/object_tw/object_tw_Tex_03A7B0" +static const ALIGN_ASSET(2) char object_tw_Tex_03A7B0[] = dobject_tw_Tex_03A7B0; \ No newline at end of file diff --git a/soh/assets/objects/object_umajump/object_umajump.h b/soh/assets/objects/object_umajump/object_umajump.h index 64c4c0d1c..4d69d77ba 100644 --- a/soh/assets/objects/object_umajump/object_umajump.h +++ b/soh/assets/objects/object_umajump/object_umajump.h @@ -1,30 +1,15 @@ #pragma once -#define dgJumpableHorseFenceBrickTex "__OTR__objects/object_umajump/gJumpableHorseFenceBrickTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJumpableHorseFenceBrickTex[] = dgJumpableHorseFenceBrickTex; -#else -static const char gJumpableHorseFenceBrickTex[] __attribute__((aligned (2))) = dgJumpableHorseFenceBrickTex; -#endif - -#define dgJumpableHorseFenceMetalBarTex "__OTR__objects/object_umajump/gJumpableHorseFenceMetalBarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJumpableHorseFenceMetalBarTex[] = dgJumpableHorseFenceMetalBarTex; -#else -static const char gJumpableHorseFenceMetalBarTex[] __attribute__((aligned (2))) = dgJumpableHorseFenceMetalBarTex; -#endif - -#define dgJumpableHorseFenceDL "__OTR__objects/object_umajump/gJumpableHorseFenceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gJumpableHorseFenceDL[] = dgJumpableHorseFenceDL; -#else -static const char gJumpableHorseFenceDL[] __attribute__((aligned (2))) = dgJumpableHorseFenceDL; -#endif - -#define dgJumpableHorseFenceCol "__OTR__objects/object_umajump/gJumpableHorseFenceCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gJumpableHorseFenceCol[] = dgJumpableHorseFenceCol; -#else -static const char gJumpableHorseFenceCol[] __attribute__((aligned (2))) = dgJumpableHorseFenceCol; -#endif - +#include "align_asset_macro.h" + +#define dgJumpableHorseFenceBrickTex "__OTR__objects/object_umajump/gJumpableHorseFenceBrickTex" +static const ALIGN_ASSET(2) char gJumpableHorseFenceBrickTex[] = dgJumpableHorseFenceBrickTex; + +#define dgJumpableHorseFenceMetalBarTex "__OTR__objects/object_umajump/gJumpableHorseFenceMetalBarTex" +static const ALIGN_ASSET(2) char gJumpableHorseFenceMetalBarTex[] = dgJumpableHorseFenceMetalBarTex; + +#define dgJumpableHorseFenceDL "__OTR__objects/object_umajump/gJumpableHorseFenceDL" +static const ALIGN_ASSET(2) char gJumpableHorseFenceDL[] = dgJumpableHorseFenceDL; + +#define dgJumpableHorseFenceCol "__OTR__objects/object_umajump/gJumpableHorseFenceCol" +static const ALIGN_ASSET(2) char gJumpableHorseFenceCol[] = dgJumpableHorseFenceCol; \ No newline at end of file diff --git a/soh/assets/objects/object_vali/object_vali.h b/soh/assets/objects/object_vali/object_vali.h index 43cc7b507..005e13f66 100644 --- a/soh/assets/objects/object_vali/object_vali.h +++ b/soh/assets/objects/object_vali/object_vali.h @@ -1,170 +1,75 @@ #pragma once -#define dgBariWaitingAnim "__OTR__objects/object_vali/gBariWaitingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariWaitingAnim[] = dgBariWaitingAnim; -#else -static const char gBariWaitingAnim[] __attribute__((aligned (2))) = dgBariWaitingAnim; -#endif - -#define dgBariRetaliatingAnim "__OTR__objects/object_vali/gBariRetaliatingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariRetaliatingAnim[] = dgBariRetaliatingAnim; -#else -static const char gBariRetaliatingAnim[] __attribute__((aligned (2))) = dgBariRetaliatingAnim; -#endif - -#define dgBariMovingArmsDownAnim "__OTR__objects/object_vali/gBariMovingArmsDownAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariMovingArmsDownAnim[] = dgBariMovingArmsDownAnim; -#else -static const char gBariMovingArmsDownAnim[] __attribute__((aligned (2))) = dgBariMovingArmsDownAnim; -#endif - -#define dgBariUnusedAnim_000D9C "__OTR__objects/object_vali/gBariUnusedAnim_000D9C" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariUnusedAnim_000D9C[] = dgBariUnusedAnim_000D9C; -#else -static const char gBariUnusedAnim_000D9C[] __attribute__((aligned (2))) = dgBariUnusedAnim_000D9C; -#endif - -#define dgBariLurkingAnim "__OTR__objects/object_vali/gBariLurkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariLurkingAnim[] = dgBariLurkingAnim; -#else -static const char gBariLurkingAnim[] __attribute__((aligned (2))) = dgBariLurkingAnim; -#endif - -#define dgBariInnerHoodDL "__OTR__objects/object_vali/gBariInnerHoodDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariInnerHoodDL[] = dgBariInnerHoodDL; -#else -static const char gBariInnerHoodDL[] __attribute__((aligned (2))) = dgBariInnerHoodDL; -#endif - -#define dgBariNucleusDL "__OTR__objects/object_vali/gBariNucleusDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariNucleusDL[] = dgBariNucleusDL; -#else -static const char gBariNucleusDL[] __attribute__((aligned (2))) = dgBariNucleusDL; -#endif - -#define dgBariOuterHoodDL "__OTR__objects/object_vali/gBariOuterHoodDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariOuterHoodDL[] = dgBariOuterHoodDL; -#else -static const char gBariOuterHoodDL[] __attribute__((aligned (2))) = dgBariOuterHoodDL; -#endif - -#define dgBariRightMandibleDL "__OTR__objects/object_vali/gBariRightMandibleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariRightMandibleDL[] = dgBariRightMandibleDL; -#else -static const char gBariRightMandibleDL[] __attribute__((aligned (2))) = dgBariRightMandibleDL; -#endif - -#define dgBariLeftMandibleDL "__OTR__objects/object_vali/gBariLeftMandibleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariLeftMandibleDL[] = dgBariLeftMandibleDL; -#else -static const char gBariLeftMandibleDL[] __attribute__((aligned (2))) = dgBariLeftMandibleDL; -#endif - -#define dgBariRightClawTipDL "__OTR__objects/object_vali/gBariRightClawTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariRightClawTipDL[] = dgBariRightClawTipDL; -#else -static const char gBariRightClawTipDL[] __attribute__((aligned (2))) = dgBariRightClawTipDL; -#endif - -#define dgBariRightClawBodyDL "__OTR__objects/object_vali/gBariRightClawBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariRightClawBodyDL[] = dgBariRightClawBodyDL; -#else -static const char gBariRightClawBodyDL[] __attribute__((aligned (2))) = dgBariRightClawBodyDL; -#endif - -#define dgBariRightForearmDL "__OTR__objects/object_vali/gBariRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariRightForearmDL[] = dgBariRightForearmDL; -#else -static const char gBariRightForearmDL[] __attribute__((aligned (2))) = dgBariRightForearmDL; -#endif - -#define dgBariRightUpperArmDL "__OTR__objects/object_vali/gBariRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariRightUpperArmDL[] = dgBariRightUpperArmDL; -#else -static const char gBariRightUpperArmDL[] __attribute__((aligned (2))) = dgBariRightUpperArmDL; -#endif - -#define dgBariLeftClawTipDL "__OTR__objects/object_vali/gBariLeftClawTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariLeftClawTipDL[] = dgBariLeftClawTipDL; -#else -static const char gBariLeftClawTipDL[] __attribute__((aligned (2))) = dgBariLeftClawTipDL; -#endif - -#define dgBariLeftClawBodyDL "__OTR__objects/object_vali/gBariLeftClawBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariLeftClawBodyDL[] = dgBariLeftClawBodyDL; -#else -static const char gBariLeftClawBodyDL[] __attribute__((aligned (2))) = dgBariLeftClawBodyDL; -#endif - -#define dgBariLeftForearmDL "__OTR__objects/object_vali/gBariLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariLeftForearmDL[] = dgBariLeftForearmDL; -#else -static const char gBariLeftForearmDL[] __attribute__((aligned (2))) = dgBariLeftForearmDL; -#endif - -#define dgBariLeftUpperArmDL "__OTR__objects/object_vali/gBariLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariLeftUpperArmDL[] = dgBariLeftUpperArmDL; -#else -static const char gBariLeftUpperArmDL[] __attribute__((aligned (2))) = dgBariLeftUpperArmDL; -#endif - -#define dgBariNucleusTex "__OTR__objects/object_vali/gBariNucleusTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariNucleusTex[] = dgBariNucleusTex; -#else -static const char gBariNucleusTex[] __attribute__((aligned (2))) = dgBariNucleusTex; -#endif - -#define dgBariMandibleClawTex "__OTR__objects/object_vali/gBariMandibleClawTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariMandibleClawTex[] = dgBariMandibleClawTex; -#else -static const char gBariMandibleClawTex[] __attribute__((aligned (2))) = dgBariMandibleClawTex; -#endif - -#define dgBariOuterHoodForearmTex "__OTR__objects/object_vali/gBariOuterHoodForearmTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariOuterHoodForearmTex[] = dgBariOuterHoodForearmTex; -#else -static const char gBariOuterHoodForearmTex[] __attribute__((aligned (2))) = dgBariOuterHoodForearmTex; -#endif - -#define dgBariOuterHoodBottomTex "__OTR__objects/object_vali/gBariOuterHoodBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariOuterHoodBottomTex[] = dgBariOuterHoodBottomTex; -#else -static const char gBariOuterHoodBottomTex[] __attribute__((aligned (2))) = dgBariOuterHoodBottomTex; -#endif - -#define dgBariInnerHoodTex "__OTR__objects/object_vali/gBariInnerHoodTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariInnerHoodTex[] = dgBariInnerHoodTex; -#else -static const char gBariInnerHoodTex[] __attribute__((aligned (2))) = dgBariInnerHoodTex; -#endif - -#define dgBariSkel "__OTR__objects/object_vali/gBariSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBariSkel[] = dgBariSkel; -#else -static const char gBariSkel[] __attribute__((aligned (2))) = dgBariSkel; -#endif - +#include "align_asset_macro.h" + +#define dgBariWaitingAnim "__OTR__objects/object_vali/gBariWaitingAnim" +static const ALIGN_ASSET(2) char gBariWaitingAnim[] = dgBariWaitingAnim; + +#define dgBariRetaliatingAnim "__OTR__objects/object_vali/gBariRetaliatingAnim" +static const ALIGN_ASSET(2) char gBariRetaliatingAnim[] = dgBariRetaliatingAnim; + +#define dgBariMovingArmsDownAnim "__OTR__objects/object_vali/gBariMovingArmsDownAnim" +static const ALIGN_ASSET(2) char gBariMovingArmsDownAnim[] = dgBariMovingArmsDownAnim; + +#define dgBariUnusedAnim_000D9C "__OTR__objects/object_vali/gBariUnusedAnim_000D9C" +static const ALIGN_ASSET(2) char gBariUnusedAnim_000D9C[] = dgBariUnusedAnim_000D9C; + +#define dgBariLurkingAnim "__OTR__objects/object_vali/gBariLurkingAnim" +static const ALIGN_ASSET(2) char gBariLurkingAnim[] = dgBariLurkingAnim; + +#define dgBariInnerHoodDL "__OTR__objects/object_vali/gBariInnerHoodDL" +static const ALIGN_ASSET(2) char gBariInnerHoodDL[] = dgBariInnerHoodDL; + +#define dgBariNucleusDL "__OTR__objects/object_vali/gBariNucleusDL" +static const ALIGN_ASSET(2) char gBariNucleusDL[] = dgBariNucleusDL; + +#define dgBariOuterHoodDL "__OTR__objects/object_vali/gBariOuterHoodDL" +static const ALIGN_ASSET(2) char gBariOuterHoodDL[] = dgBariOuterHoodDL; + +#define dgBariRightMandibleDL "__OTR__objects/object_vali/gBariRightMandibleDL" +static const ALIGN_ASSET(2) char gBariRightMandibleDL[] = dgBariRightMandibleDL; + +#define dgBariLeftMandibleDL "__OTR__objects/object_vali/gBariLeftMandibleDL" +static const ALIGN_ASSET(2) char gBariLeftMandibleDL[] = dgBariLeftMandibleDL; + +#define dgBariRightClawTipDL "__OTR__objects/object_vali/gBariRightClawTipDL" +static const ALIGN_ASSET(2) char gBariRightClawTipDL[] = dgBariRightClawTipDL; + +#define dgBariRightClawBodyDL "__OTR__objects/object_vali/gBariRightClawBodyDL" +static const ALIGN_ASSET(2) char gBariRightClawBodyDL[] = dgBariRightClawBodyDL; + +#define dgBariRightForearmDL "__OTR__objects/object_vali/gBariRightForearmDL" +static const ALIGN_ASSET(2) char gBariRightForearmDL[] = dgBariRightForearmDL; + +#define dgBariRightUpperArmDL "__OTR__objects/object_vali/gBariRightUpperArmDL" +static const ALIGN_ASSET(2) char gBariRightUpperArmDL[] = dgBariRightUpperArmDL; + +#define dgBariLeftClawTipDL "__OTR__objects/object_vali/gBariLeftClawTipDL" +static const ALIGN_ASSET(2) char gBariLeftClawTipDL[] = dgBariLeftClawTipDL; + +#define dgBariLeftClawBodyDL "__OTR__objects/object_vali/gBariLeftClawBodyDL" +static const ALIGN_ASSET(2) char gBariLeftClawBodyDL[] = dgBariLeftClawBodyDL; + +#define dgBariLeftForearmDL "__OTR__objects/object_vali/gBariLeftForearmDL" +static const ALIGN_ASSET(2) char gBariLeftForearmDL[] = dgBariLeftForearmDL; + +#define dgBariLeftUpperArmDL "__OTR__objects/object_vali/gBariLeftUpperArmDL" +static const ALIGN_ASSET(2) char gBariLeftUpperArmDL[] = dgBariLeftUpperArmDL; + +#define dgBariNucleusTex "__OTR__objects/object_vali/gBariNucleusTex" +static const ALIGN_ASSET(2) char gBariNucleusTex[] = dgBariNucleusTex; + +#define dgBariMandibleClawTex "__OTR__objects/object_vali/gBariMandibleClawTex" +static const ALIGN_ASSET(2) char gBariMandibleClawTex[] = dgBariMandibleClawTex; + +#define dgBariOuterHoodForearmTex "__OTR__objects/object_vali/gBariOuterHoodForearmTex" +static const ALIGN_ASSET(2) char gBariOuterHoodForearmTex[] = dgBariOuterHoodForearmTex; + +#define dgBariOuterHoodBottomTex "__OTR__objects/object_vali/gBariOuterHoodBottomTex" +static const ALIGN_ASSET(2) char gBariOuterHoodBottomTex[] = dgBariOuterHoodBottomTex; + +#define dgBariInnerHoodTex "__OTR__objects/object_vali/gBariInnerHoodTex" +static const ALIGN_ASSET(2) char gBariInnerHoodTex[] = dgBariInnerHoodTex; + +#define dgBariSkel "__OTR__objects/object_vali/gBariSkel" +static const ALIGN_ASSET(2) char gBariSkel[] = dgBariSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_vase/object_vase.h b/soh/assets/objects/object_vase/object_vase.h index ab53a2f76..a5afec6a3 100644 --- a/soh/assets/objects/object_vase/object_vase.h +++ b/soh/assets/objects/object_vase/object_vase.h @@ -1,23 +1,12 @@ #pragma once -#define dgUnusedVaseDL "__OTR__objects/object_vase/gUnusedVaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedVaseDL[] = dgUnusedVaseDL; -#else -static const char gUnusedVaseDL[] __attribute__((aligned (2))) = dgUnusedVaseDL; -#endif - -#define dgUnusedVaseTopTex "__OTR__objects/object_vase/gUnusedVaseTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedVaseTopTex[] = dgUnusedVaseTopTex; -#else -static const char gUnusedVaseTopTex[] __attribute__((aligned (2))) = dgUnusedVaseTopTex; -#endif - -#define dgUnusedVaseBodyTex "__OTR__objects/object_vase/gUnusedVaseBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedVaseBodyTex[] = dgUnusedVaseBodyTex; -#else -static const char gUnusedVaseBodyTex[] __attribute__((aligned (2))) = dgUnusedVaseBodyTex; -#endif - +#include "align_asset_macro.h" + +#define dgUnusedVaseDL "__OTR__objects/object_vase/gUnusedVaseDL" +static const ALIGN_ASSET(2) char gUnusedVaseDL[] = dgUnusedVaseDL; + +#define dgUnusedVaseTopTex "__OTR__objects/object_vase/gUnusedVaseTopTex" +static const ALIGN_ASSET(2) char gUnusedVaseTopTex[] = dgUnusedVaseTopTex; + +#define dgUnusedVaseBodyTex "__OTR__objects/object_vase/gUnusedVaseBodyTex" +static const ALIGN_ASSET(2) char gUnusedVaseBodyTex[] = dgUnusedVaseBodyTex; \ No newline at end of file diff --git a/soh/assets/objects/object_vm/object_vm.h b/soh/assets/objects/object_vm/object_vm.h index d455a4289..b14c9888d 100644 --- a/soh/assets/objects/object_vm/object_vm.h +++ b/soh/assets/objects/object_vm/object_vm.h @@ -1,114 +1,51 @@ #pragma once -#define dgBeamosSkel "__OTR__objects/object_vm/gBeamosSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosSkel[] = dgBeamosSkel; -#else -static const char gBeamosSkel[] __attribute__((aligned (2))) = dgBeamosSkel; -#endif - -#define dgBeamosTopEyelidDL "__OTR__objects/object_vm/gBeamosTopEyelidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosTopEyelidDL[] = dgBeamosTopEyelidDL; -#else -static const char gBeamosTopEyelidDL[] __attribute__((aligned (2))) = dgBeamosTopEyelidDL; -#endif - -#define dgBeamosBottomEyelidDL "__OTR__objects/object_vm/gBeamosBottomEyelidDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosBottomEyelidDL[] = dgBeamosBottomEyelidDL; -#else -static const char gBeamosBottomEyelidDL[] __attribute__((aligned (2))) = dgBeamosBottomEyelidDL; -#endif - -#define dgBeamosEyeDL "__OTR__objects/object_vm/gBeamosEyeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosEyeDL[] = dgBeamosEyeDL; -#else -static const char gBeamosEyeDL[] __attribute__((aligned (2))) = dgBeamosEyeDL; -#endif - -#define dgBeamosBodyDL "__OTR__objects/object_vm/gBeamosBodyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosBodyDL[] = dgBeamosBodyDL; -#else -static const char gBeamosBodyDL[] __attribute__((aligned (2))) = dgBeamosBodyDL; -#endif - -#define dgBeamosBodyGradientTex "__OTR__objects/object_vm/gBeamosBodyGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosBodyGradientTex[] = dgBeamosBodyGradientTex; -#else -static const char gBeamosBodyGradientTex[] __attribute__((aligned (2))) = dgBeamosBodyGradientTex; -#endif - -#define dgBeamosGrayMetalTex "__OTR__objects/object_vm/gBeamosGrayMetalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosGrayMetalTex[] = dgBeamosGrayMetalTex; -#else -static const char gBeamosGrayMetalTex[] __attribute__((aligned (2))) = dgBeamosGrayMetalTex; -#endif - -#define dgBeamosBoltAndMetalTex "__OTR__objects/object_vm/gBeamosBoltAndMetalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosBoltAndMetalTex[] = dgBeamosBoltAndMetalTex; -#else -static const char gBeamosBoltAndMetalTex[] __attribute__((aligned (2))) = dgBeamosBoltAndMetalTex; -#endif - -#define dgBeamosTex_2D40 "__OTR__objects/object_vm/gBeamosTex_2D40" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosTex_2D40[] = dgBeamosTex_2D40; -#else -static const char gBeamosTex_2D40[] __attribute__((aligned (2))) = dgBeamosTex_2D40; -#endif - -#define dgBeamosEyeOutlineTex "__OTR__objects/object_vm/gBeamosEyeOutlineTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosEyeOutlineTex[] = dgBeamosEyeOutlineTex; -#else -static const char gBeamosEyeOutlineTex[] __attribute__((aligned (2))) = dgBeamosEyeOutlineTex; -#endif - -#define dgBeamosEyeTex "__OTR__objects/object_vm/gBeamosEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosEyeTex[] = dgBeamosEyeTex; -#else -static const char gBeamosEyeTex[] __attribute__((aligned (2))) = dgBeamosEyeTex; -#endif - -#define dgBeamosBodyTex "__OTR__objects/object_vm/gBeamosBodyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosBodyTex[] = dgBeamosBodyTex; -#else -static const char gBeamosBodyTex[] __attribute__((aligned (2))) = dgBeamosBodyTex; -#endif - -#define dgBeamosLaserTex "__OTR__objects/object_vm/gBeamosLaserTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosLaserTex[] = dgBeamosLaserTex; -#else -static const char gBeamosLaserTex[] __attribute__((aligned (2))) = dgBeamosLaserTex; -#endif - -#define dgBeamosTeethTex "__OTR__objects/object_vm/gBeamosTeethTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosTeethTex[] = dgBeamosTeethTex; -#else -static const char gBeamosTeethTex[] __attribute__((aligned (2))) = dgBeamosTeethTex; -#endif - -#define dgBeamosAnim "__OTR__objects/object_vm/gBeamosAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosAnim[] = dgBeamosAnim; -#else -static const char gBeamosAnim[] __attribute__((aligned (2))) = dgBeamosAnim; -#endif - -#define dgBeamosLaserDL "__OTR__objects/object_vm/gBeamosLaserDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBeamosLaserDL[] = dgBeamosLaserDL; -#else -static const char gBeamosLaserDL[] __attribute__((aligned (2))) = dgBeamosLaserDL; -#endif - +#include "align_asset_macro.h" + +#define dgBeamosSkel "__OTR__objects/object_vm/gBeamosSkel" +static const ALIGN_ASSET(2) char gBeamosSkel[] = dgBeamosSkel; + +#define dgBeamosTopEyelidDL "__OTR__objects/object_vm/gBeamosTopEyelidDL" +static const ALIGN_ASSET(2) char gBeamosTopEyelidDL[] = dgBeamosTopEyelidDL; + +#define dgBeamosBottomEyelidDL "__OTR__objects/object_vm/gBeamosBottomEyelidDL" +static const ALIGN_ASSET(2) char gBeamosBottomEyelidDL[] = dgBeamosBottomEyelidDL; + +#define dgBeamosEyeDL "__OTR__objects/object_vm/gBeamosEyeDL" +static const ALIGN_ASSET(2) char gBeamosEyeDL[] = dgBeamosEyeDL; + +#define dgBeamosBodyDL "__OTR__objects/object_vm/gBeamosBodyDL" +static const ALIGN_ASSET(2) char gBeamosBodyDL[] = dgBeamosBodyDL; + +#define dgBeamosBodyGradientTex "__OTR__objects/object_vm/gBeamosBodyGradientTex" +static const ALIGN_ASSET(2) char gBeamosBodyGradientTex[] = dgBeamosBodyGradientTex; + +#define dgBeamosGrayMetalTex "__OTR__objects/object_vm/gBeamosGrayMetalTex" +static const ALIGN_ASSET(2) char gBeamosGrayMetalTex[] = dgBeamosGrayMetalTex; + +#define dgBeamosBoltAndMetalTex "__OTR__objects/object_vm/gBeamosBoltAndMetalTex" +static const ALIGN_ASSET(2) char gBeamosBoltAndMetalTex[] = dgBeamosBoltAndMetalTex; + +#define dgBeamosTex_2D40 "__OTR__objects/object_vm/gBeamosTex_2D40" +static const ALIGN_ASSET(2) char gBeamosTex_2D40[] = dgBeamosTex_2D40; + +#define dgBeamosEyeOutlineTex "__OTR__objects/object_vm/gBeamosEyeOutlineTex" +static const ALIGN_ASSET(2) char gBeamosEyeOutlineTex[] = dgBeamosEyeOutlineTex; + +#define dgBeamosEyeTex "__OTR__objects/object_vm/gBeamosEyeTex" +static const ALIGN_ASSET(2) char gBeamosEyeTex[] = dgBeamosEyeTex; + +#define dgBeamosBodyTex "__OTR__objects/object_vm/gBeamosBodyTex" +static const ALIGN_ASSET(2) char gBeamosBodyTex[] = dgBeamosBodyTex; + +#define dgBeamosLaserTex "__OTR__objects/object_vm/gBeamosLaserTex" +static const ALIGN_ASSET(2) char gBeamosLaserTex[] = dgBeamosLaserTex; + +#define dgBeamosTeethTex "__OTR__objects/object_vm/gBeamosTeethTex" +static const ALIGN_ASSET(2) char gBeamosTeethTex[] = dgBeamosTeethTex; + +#define dgBeamosAnim "__OTR__objects/object_vm/gBeamosAnim" +static const ALIGN_ASSET(2) char gBeamosAnim[] = dgBeamosAnim; + +#define dgBeamosLaserDL "__OTR__objects/object_vm/gBeamosLaserDL" +static const ALIGN_ASSET(2) char gBeamosLaserDL[] = dgBeamosLaserDL; \ No newline at end of file diff --git a/soh/assets/objects/object_wallmaster/object_wallmaster.h b/soh/assets/objects/object_wallmaster/object_wallmaster.h index 9dd3ae2cc..759669802 100644 --- a/soh/assets/objects/object_wallmaster/object_wallmaster.h +++ b/soh/assets/objects/object_wallmaster/object_wallmaster.h @@ -1,247 +1,108 @@ #pragma once -#define dgWallmasterDamageAnim "__OTR__objects/object_wallmaster/gWallmasterDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterDamageAnim[] = dgWallmasterDamageAnim; -#else -static const char gWallmasterDamageAnim[] __attribute__((aligned (2))) = dgWallmasterDamageAnim; -#endif - -#define dgWallmasterRecoverFromDamageAnim "__OTR__objects/object_wallmaster/gWallmasterRecoverFromDamageAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterRecoverFromDamageAnim[] = dgWallmasterRecoverFromDamageAnim; -#else -static const char gWallmasterRecoverFromDamageAnim[] __attribute__((aligned (2))) = dgWallmasterRecoverFromDamageAnim; -#endif - -#define dgWallmasterJumpAnim "__OTR__objects/object_wallmaster/gWallmasterJumpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterJumpAnim[] = dgWallmasterJumpAnim; -#else -static const char gWallmasterJumpAnim[] __attribute__((aligned (2))) = dgWallmasterJumpAnim; -#endif - -#define dgWallmasterWalkAnim "__OTR__objects/object_wallmaster/gWallmasterWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterWalkAnim[] = dgWallmasterWalkAnim; -#else -static const char gWallmasterWalkAnim[] __attribute__((aligned (2))) = dgWallmasterWalkAnim; -#endif - -#define dgWallmasterStopWalkAnim "__OTR__objects/object_wallmaster/gWallmasterStopWalkAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterStopWalkAnim[] = dgWallmasterStopWalkAnim; -#else -static const char gWallmasterStopWalkAnim[] __attribute__((aligned (2))) = dgWallmasterStopWalkAnim; -#endif - -#define dgWallmasterHoverAnim "__OTR__objects/object_wallmaster/gWallmasterHoverAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterHoverAnim[] = dgWallmasterHoverAnim; -#else -static const char gWallmasterHoverAnim[] __attribute__((aligned (2))) = dgWallmasterHoverAnim; -#endif - -#define dgWallmasterWaitAnim "__OTR__objects/object_wallmaster/gWallmasterWaitAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterWaitAnim[] = dgWallmasterWaitAnim; -#else -static const char gWallmasterWaitAnim[] __attribute__((aligned (2))) = dgWallmasterWaitAnim; -#endif - -#define dgWallmasterStandUpAnim "__OTR__objects/object_wallmaster/gWallmasterStandUpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterStandUpAnim[] = dgWallmasterStandUpAnim; -#else -static const char gWallmasterStandUpAnim[] __attribute__((aligned (2))) = dgWallmasterStandUpAnim; -#endif - -#define dgWallmasterFingerDL "__OTR__objects/object_wallmaster/gWallmasterFingerDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterFingerDL[] = dgWallmasterFingerDL; -#else -static const char gWallmasterFingerDL[] __attribute__((aligned (2))) = dgWallmasterFingerDL; -#endif - -#define dgWallmasterExposedBoneTex "__OTR__objects/object_wallmaster/gWallmasterExposedBoneTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterExposedBoneTex[] = dgWallmasterExposedBoneTex; -#else -static const char gWallmasterExposedBoneTex[] __attribute__((aligned (2))) = dgWallmasterExposedBoneTex; -#endif - -#define dgWallmasterBloodyEdgeTex "__OTR__objects/object_wallmaster/gWallmasterBloodyEdgeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterBloodyEdgeTex[] = dgWallmasterBloodyEdgeTex; -#else -static const char gWallmasterBloodyEdgeTex[] __attribute__((aligned (2))) = dgWallmasterBloodyEdgeTex; -#endif - -#define dgWallmasterUpperSkinTex "__OTR__objects/object_wallmaster/gWallmasterUpperSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterUpperSkinTex[] = dgWallmasterUpperSkinTex; -#else -static const char gWallmasterUpperSkinTex[] __attribute__((aligned (2))) = dgWallmasterUpperSkinTex; -#endif - -#define dgWallmasterFingerTipTex "__OTR__objects/object_wallmaster/gWallmasterFingerTipTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterFingerTipTex[] = dgWallmasterFingerTipTex; -#else -static const char gWallmasterFingerTipTex[] __attribute__((aligned (2))) = dgWallmasterFingerTipTex; -#endif - -#define dgWallmasterUpperToUnderBorderTex "__OTR__objects/object_wallmaster/gWallmasterUpperToUnderBorderTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterUpperToUnderBorderTex[] = dgWallmasterUpperToUnderBorderTex; -#else -static const char gWallmasterUpperToUnderBorderTex[] __attribute__((aligned (2))) = dgWallmasterUpperToUnderBorderTex; -#endif - -#define dgWallmasterUnderSkinTex "__OTR__objects/object_wallmaster/gWallmasterUnderSkinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterUnderSkinTex[] = dgWallmasterUnderSkinTex; -#else -static const char gWallmasterUnderSkinTex[] __attribute__((aligned (2))) = dgWallmasterUnderSkinTex; -#endif - -#define dgWallmasterKnuckleTex "__OTR__objects/object_wallmaster/gWallmasterKnuckleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterKnuckleTex[] = dgWallmasterKnuckleTex; -#else -static const char gWallmasterKnuckleTex[] __attribute__((aligned (2))) = dgWallmasterKnuckleTex; -#endif - -#define dgWallmasterSkel "__OTR__objects/object_wallmaster/gWallmasterSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkel[] = dgWallmasterSkel; -#else -static const char gWallmasterSkel[] __attribute__((aligned (2))) = dgWallmasterSkel; -#endif - -#define dgWallmasterLungeAnim "__OTR__objects/object_wallmaster/gWallmasterLungeAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterLungeAnim[] = dgWallmasterLungeAnim; -#else -static const char gWallmasterLungeAnim[] __attribute__((aligned (2))) = dgWallmasterLungeAnim; -#endif - -#define dgFloormasterTurnAnim "__OTR__objects/object_wallmaster/gFloormasterTurnAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloormasterTurnAnim[] = dgFloormasterTurnAnim; -#else -static const char gFloormasterTurnAnim[] __attribute__((aligned (2))) = dgFloormasterTurnAnim; -#endif - -#define dgFloormasterTapFingerAnim "__OTR__objects/object_wallmaster/gFloormasterTapFingerAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloormasterTapFingerAnim[] = dgFloormasterTapFingerAnim; -#else -static const char gFloormasterTapFingerAnim[] __attribute__((aligned (2))) = dgFloormasterTapFingerAnim; -#endif - -#define dgWallmasterMissAnim "__OTR__objects/object_wallmaster/gWallmasterMissAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterMissAnim[] = dgWallmasterMissAnim; -#else -static const char gWallmasterMissAnim[] __attribute__((aligned (2))) = dgWallmasterMissAnim; -#endif - -#define dgWallmasterSkelLimbsLimb_008E3CDL_007E98 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E3CDL_007E98" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008E3CDL_007E98[] = dgWallmasterSkelLimbsLimb_008E3CDL_007E98; -#else -static const char gWallmasterSkelLimbsLimb_008E3CDL_007E98[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008E3CDL_007E98; -#endif - -#define dgWallmasterSkelLimbsLimb_008E54DL_007CE8 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E54DL_007CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008E54DL_007CE8[] = dgWallmasterSkelLimbsLimb_008E54DL_007CE8; -#else -static const char gWallmasterSkelLimbsLimb_008E54DL_007CE8[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008E54DL_007CE8; -#endif - -#define dgWallmasterSkelLimbsLimb_008E6CDL_007B18 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E6CDL_007B18" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008E6CDL_007B18[] = dgWallmasterSkelLimbsLimb_008E6CDL_007B18; -#else -static const char gWallmasterSkelLimbsLimb_008E6CDL_007B18[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008E6CDL_007B18; -#endif - -#define dgWallmasterSkelLimbsLimb_008E78DL_007978 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E78DL_007978" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008E78DL_007978[] = dgWallmasterSkelLimbsLimb_008E78DL_007978; -#else -static const char gWallmasterSkelLimbsLimb_008E78DL_007978[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008E78DL_007978; -#endif - -#define dgWallmasterSkelLimbsLimb_008E90DL_0077C8 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E90DL_0077C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008E90DL_0077C8[] = dgWallmasterSkelLimbsLimb_008E90DL_0077C8; -#else -static const char gWallmasterSkelLimbsLimb_008E90DL_0077C8[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008E90DL_0077C8; -#endif - -#define dgWallmasterSkelLimbsLimb_008EA8DL_0075A8 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008EA8DL_0075A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008EA8DL_0075A8[] = dgWallmasterSkelLimbsLimb_008EA8DL_0075A8; -#else -static const char gWallmasterSkelLimbsLimb_008EA8DL_0075A8[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008EA8DL_0075A8; -#endif - -#define dgWallmasterSkelLimbsLimb_008EB4DL_007408 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008EB4DL_007408" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008EB4DL_007408[] = dgWallmasterSkelLimbsLimb_008EB4DL_007408; -#else -static const char gWallmasterSkelLimbsLimb_008EB4DL_007408[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008EB4DL_007408; -#endif - -#define dgWallmasterSkelLimbsLimb_008ECCDL_007258 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008ECCDL_007258" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008ECCDL_007258[] = dgWallmasterSkelLimbsLimb_008ECCDL_007258; -#else -static const char gWallmasterSkelLimbsLimb_008ECCDL_007258[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008ECCDL_007258; -#endif - -#define dgWallmasterSkelLimbsLimb_008EE4DL_007038 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008EE4DL_007038" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008EE4DL_007038[] = dgWallmasterSkelLimbsLimb_008EE4DL_007038; -#else -static const char gWallmasterSkelLimbsLimb_008EE4DL_007038[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008EE4DL_007038; -#endif - -#define dgWallmasterSkelLimbsLimb_008EF0DL_006E98 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008EF0DL_006E98" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008EF0DL_006E98[] = dgWallmasterSkelLimbsLimb_008EF0DL_006E98; -#else -static const char gWallmasterSkelLimbsLimb_008EF0DL_006E98[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008EF0DL_006E98; -#endif - -#define dgWallmasterSkelLimbsLimb_008F08DL_006C58 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008F08DL_006C58" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008F08DL_006C58[] = dgWallmasterSkelLimbsLimb_008F08DL_006C58; -#else -static const char gWallmasterSkelLimbsLimb_008F08DL_006C58[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008F08DL_006C58; -#endif - -#define dgWallmasterSkelLimbsLimb_008F20DL_006A20 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008F20DL_006A20" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008F20DL_006A20[] = dgWallmasterSkelLimbsLimb_008F20DL_006A20; -#else -static const char gWallmasterSkelLimbsLimb_008F20DL_006A20[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008F20DL_006A20; -#endif - -#define dgWallmasterSkelLimbsLimb_008F38DL_006800 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008F38DL_006800" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008F38DL_006800[] = dgWallmasterSkelLimbsLimb_008F38DL_006800; -#else -static const char gWallmasterSkelLimbsLimb_008F38DL_006800[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008F38DL_006800; -#endif - -#define dgWallmasterSkelLimbsLimb_008F44DL_006660 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008F44DL_006660" -#ifdef _WIN32 -static const __declspec(align(2)) char gWallmasterSkelLimbsLimb_008F44DL_006660[] = dgWallmasterSkelLimbsLimb_008F44DL_006660; -#else -static const char gWallmasterSkelLimbsLimb_008F44DL_006660[] __attribute__((aligned (2))) = dgWallmasterSkelLimbsLimb_008F44DL_006660; -#endif - +#include "align_asset_macro.h" + +#define dgWallmasterDamageAnim "__OTR__objects/object_wallmaster/gWallmasterDamageAnim" +static const ALIGN_ASSET(2) char gWallmasterDamageAnim[] = dgWallmasterDamageAnim; + +#define dgWallmasterRecoverFromDamageAnim "__OTR__objects/object_wallmaster/gWallmasterRecoverFromDamageAnim" +static const ALIGN_ASSET(2) char gWallmasterRecoverFromDamageAnim[] = dgWallmasterRecoverFromDamageAnim; + +#define dgWallmasterJumpAnim "__OTR__objects/object_wallmaster/gWallmasterJumpAnim" +static const ALIGN_ASSET(2) char gWallmasterJumpAnim[] = dgWallmasterJumpAnim; + +#define dgWallmasterWalkAnim "__OTR__objects/object_wallmaster/gWallmasterWalkAnim" +static const ALIGN_ASSET(2) char gWallmasterWalkAnim[] = dgWallmasterWalkAnim; + +#define dgWallmasterStopWalkAnim "__OTR__objects/object_wallmaster/gWallmasterStopWalkAnim" +static const ALIGN_ASSET(2) char gWallmasterStopWalkAnim[] = dgWallmasterStopWalkAnim; + +#define dgWallmasterHoverAnim "__OTR__objects/object_wallmaster/gWallmasterHoverAnim" +static const ALIGN_ASSET(2) char gWallmasterHoverAnim[] = dgWallmasterHoverAnim; + +#define dgWallmasterWaitAnim "__OTR__objects/object_wallmaster/gWallmasterWaitAnim" +static const ALIGN_ASSET(2) char gWallmasterWaitAnim[] = dgWallmasterWaitAnim; + +#define dgWallmasterStandUpAnim "__OTR__objects/object_wallmaster/gWallmasterStandUpAnim" +static const ALIGN_ASSET(2) char gWallmasterStandUpAnim[] = dgWallmasterStandUpAnim; + +#define dgWallmasterFingerDL "__OTR__objects/object_wallmaster/gWallmasterFingerDL" +static const ALIGN_ASSET(2) char gWallmasterFingerDL[] = dgWallmasterFingerDL; + +#define dgWallmasterExposedBoneTex "__OTR__objects/object_wallmaster/gWallmasterExposedBoneTex" +static const ALIGN_ASSET(2) char gWallmasterExposedBoneTex[] = dgWallmasterExposedBoneTex; + +#define dgWallmasterBloodyEdgeTex "__OTR__objects/object_wallmaster/gWallmasterBloodyEdgeTex" +static const ALIGN_ASSET(2) char gWallmasterBloodyEdgeTex[] = dgWallmasterBloodyEdgeTex; + +#define dgWallmasterUpperSkinTex "__OTR__objects/object_wallmaster/gWallmasterUpperSkinTex" +static const ALIGN_ASSET(2) char gWallmasterUpperSkinTex[] = dgWallmasterUpperSkinTex; + +#define dgWallmasterFingerTipTex "__OTR__objects/object_wallmaster/gWallmasterFingerTipTex" +static const ALIGN_ASSET(2) char gWallmasterFingerTipTex[] = dgWallmasterFingerTipTex; + +#define dgWallmasterUpperToUnderBorderTex "__OTR__objects/object_wallmaster/gWallmasterUpperToUnderBorderTex" +static const ALIGN_ASSET(2) char gWallmasterUpperToUnderBorderTex[] = dgWallmasterUpperToUnderBorderTex; + +#define dgWallmasterUnderSkinTex "__OTR__objects/object_wallmaster/gWallmasterUnderSkinTex" +static const ALIGN_ASSET(2) char gWallmasterUnderSkinTex[] = dgWallmasterUnderSkinTex; + +#define dgWallmasterKnuckleTex "__OTR__objects/object_wallmaster/gWallmasterKnuckleTex" +static const ALIGN_ASSET(2) char gWallmasterKnuckleTex[] = dgWallmasterKnuckleTex; + +#define dgWallmasterSkel "__OTR__objects/object_wallmaster/gWallmasterSkel" +static const ALIGN_ASSET(2) char gWallmasterSkel[] = dgWallmasterSkel; + +#define dgWallmasterLungeAnim "__OTR__objects/object_wallmaster/gWallmasterLungeAnim" +static const ALIGN_ASSET(2) char gWallmasterLungeAnim[] = dgWallmasterLungeAnim; + +#define dgFloormasterTurnAnim "__OTR__objects/object_wallmaster/gFloormasterTurnAnim" +static const ALIGN_ASSET(2) char gFloormasterTurnAnim[] = dgFloormasterTurnAnim; + +#define dgFloormasterTapFingerAnim "__OTR__objects/object_wallmaster/gFloormasterTapFingerAnim" +static const ALIGN_ASSET(2) char gFloormasterTapFingerAnim[] = dgFloormasterTapFingerAnim; + +#define dgWallmasterMissAnim "__OTR__objects/object_wallmaster/gWallmasterMissAnim" +static const ALIGN_ASSET(2) char gWallmasterMissAnim[] = dgWallmasterMissAnim; + +#define dgWallmasterSkelLimbsLimb_008E3CDL_007E98 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E3CDL_007E98" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008E3CDL_007E98[] = dgWallmasterSkelLimbsLimb_008E3CDL_007E98; + +#define dgWallmasterSkelLimbsLimb_008E54DL_007CE8 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E54DL_007CE8" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008E54DL_007CE8[] = dgWallmasterSkelLimbsLimb_008E54DL_007CE8; + +#define dgWallmasterSkelLimbsLimb_008E6CDL_007B18 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E6CDL_007B18" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008E6CDL_007B18[] = dgWallmasterSkelLimbsLimb_008E6CDL_007B18; + +#define dgWallmasterSkelLimbsLimb_008E78DL_007978 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E78DL_007978" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008E78DL_007978[] = dgWallmasterSkelLimbsLimb_008E78DL_007978; + +#define dgWallmasterSkelLimbsLimb_008E90DL_0077C8 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008E90DL_0077C8" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008E90DL_0077C8[] = dgWallmasterSkelLimbsLimb_008E90DL_0077C8; + +#define dgWallmasterSkelLimbsLimb_008EA8DL_0075A8 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008EA8DL_0075A8" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008EA8DL_0075A8[] = dgWallmasterSkelLimbsLimb_008EA8DL_0075A8; + +#define dgWallmasterSkelLimbsLimb_008EB4DL_007408 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008EB4DL_007408" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008EB4DL_007408[] = dgWallmasterSkelLimbsLimb_008EB4DL_007408; + +#define dgWallmasterSkelLimbsLimb_008ECCDL_007258 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008ECCDL_007258" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008ECCDL_007258[] = dgWallmasterSkelLimbsLimb_008ECCDL_007258; + +#define dgWallmasterSkelLimbsLimb_008EE4DL_007038 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008EE4DL_007038" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008EE4DL_007038[] = dgWallmasterSkelLimbsLimb_008EE4DL_007038; + +#define dgWallmasterSkelLimbsLimb_008EF0DL_006E98 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008EF0DL_006E98" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008EF0DL_006E98[] = dgWallmasterSkelLimbsLimb_008EF0DL_006E98; + +#define dgWallmasterSkelLimbsLimb_008F08DL_006C58 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008F08DL_006C58" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008F08DL_006C58[] = dgWallmasterSkelLimbsLimb_008F08DL_006C58; + +#define dgWallmasterSkelLimbsLimb_008F20DL_006A20 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008F20DL_006A20" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008F20DL_006A20[] = dgWallmasterSkelLimbsLimb_008F20DL_006A20; + +#define dgWallmasterSkelLimbsLimb_008F38DL_006800 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008F38DL_006800" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008F38DL_006800[] = dgWallmasterSkelLimbsLimb_008F38DL_006800; + +#define dgWallmasterSkelLimbsLimb_008F44DL_006660 "__OTR__objects/object_wallmaster/gWallmasterSkelLimbsLimb_008F44DL_006660" +static const ALIGN_ASSET(2) char gWallmasterSkelLimbsLimb_008F44DL_006660[] = dgWallmasterSkelLimbsLimb_008F44DL_006660; \ No newline at end of file diff --git a/soh/assets/objects/object_warp1/object_warp1.h b/soh/assets/objects/object_warp1/object_warp1.h index 929772967..6d4e239c2 100644 --- a/soh/assets/objects/object_warp1/object_warp1.h +++ b/soh/assets/objects/object_warp1/object_warp1.h @@ -1,86 +1,39 @@ #pragma once -#define dgWarpPortalDL "__OTR__objects/object_warp1/gWarpPortalDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpPortalDL[] = dgWarpPortalDL; -#else -static const char gWarpPortalDL[] __attribute__((aligned (2))) = dgWarpPortalDL; -#endif - -#define dgWarpPortalTex "__OTR__objects/object_warp1/gWarpPortalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpPortalTex[] = dgWarpPortalTex; -#else -static const char gWarpPortalTex[] __attribute__((aligned (2))) = dgWarpPortalTex; -#endif - -#define dgWarpCrystalAnim "__OTR__objects/object_warp1/gWarpCrystalAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpCrystalAnim[] = dgWarpCrystalAnim; -#else -static const char gWarpCrystalAnim[] __attribute__((aligned (2))) = dgWarpCrystalAnim; -#endif - -#define dgWarp1DL_001750 "__OTR__objects/object_warp1/gWarp1DL_001750" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarp1DL_001750[] = dgWarp1DL_001750; -#else -static const char gWarp1DL_001750[] __attribute__((aligned (2))) = dgWarp1DL_001750; -#endif - -#define dgWarp1DL_001828 "__OTR__objects/object_warp1/gWarp1DL_001828" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarp1DL_001828[] = dgWarp1DL_001828; -#else -static const char gWarp1DL_001828[] __attribute__((aligned (2))) = dgWarp1DL_001828; -#endif - -#define dgWarp1DL_0018B0 "__OTR__objects/object_warp1/gWarp1DL_0018B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarp1DL_0018B0[] = dgWarp1DL_0018B0; -#else -static const char gWarp1DL_0018B0[] __attribute__((aligned (2))) = dgWarp1DL_0018B0; -#endif - -#define dgWarp1DL_001938 "__OTR__objects/object_warp1/gWarp1DL_001938" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarp1DL_001938[] = dgWarp1DL_001938; -#else -static const char gWarp1DL_001938[] __attribute__((aligned (2))) = dgWarp1DL_001938; -#endif - -#define dgWarp1DL_0019C0 "__OTR__objects/object_warp1/gWarp1DL_0019C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarp1DL_0019C0[] = dgWarp1DL_0019C0; -#else -static const char gWarp1DL_0019C0[] __attribute__((aligned (2))) = dgWarp1DL_0019C0; -#endif - -#define dgWarp1DL_001A48 "__OTR__objects/object_warp1/gWarp1DL_001A48" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarp1DL_001A48[] = dgWarp1DL_001A48; -#else -static const char gWarp1DL_001A48[] __attribute__((aligned (2))) = dgWarp1DL_001A48; -#endif - -#define dgWarp1DL_001AD0 "__OTR__objects/object_warp1/gWarp1DL_001AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarp1DL_001AD0[] = dgWarp1DL_001AD0; -#else -static const char gWarp1DL_001AD0[] __attribute__((aligned (2))) = dgWarp1DL_001AD0; -#endif - -#define dgWarpCrystalTex "__OTR__objects/object_warp1/gWarpCrystalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpCrystalTex[] = dgWarpCrystalTex; -#else -static const char gWarpCrystalTex[] __attribute__((aligned (2))) = dgWarpCrystalTex; -#endif - -#define dgWarpCrystalSkel "__OTR__objects/object_warp1/gWarpCrystalSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarpCrystalSkel[] = dgWarpCrystalSkel; -#else -static const char gWarpCrystalSkel[] __attribute__((aligned (2))) = dgWarpCrystalSkel; -#endif - +#include "align_asset_macro.h" + +#define dgWarpPortalDL "__OTR__objects/object_warp1/gWarpPortalDL" +static const ALIGN_ASSET(2) char gWarpPortalDL[] = dgWarpPortalDL; + +#define dgWarpPortalTex "__OTR__objects/object_warp1/gWarpPortalTex" +static const ALIGN_ASSET(2) char gWarpPortalTex[] = dgWarpPortalTex; + +#define dgWarpCrystalAnim "__OTR__objects/object_warp1/gWarpCrystalAnim" +static const ALIGN_ASSET(2) char gWarpCrystalAnim[] = dgWarpCrystalAnim; + +#define dgWarp1DL_001750 "__OTR__objects/object_warp1/gWarp1DL_001750" +static const ALIGN_ASSET(2) char gWarp1DL_001750[] = dgWarp1DL_001750; + +#define dgWarp1DL_001828 "__OTR__objects/object_warp1/gWarp1DL_001828" +static const ALIGN_ASSET(2) char gWarp1DL_001828[] = dgWarp1DL_001828; + +#define dgWarp1DL_0018B0 "__OTR__objects/object_warp1/gWarp1DL_0018B0" +static const ALIGN_ASSET(2) char gWarp1DL_0018B0[] = dgWarp1DL_0018B0; + +#define dgWarp1DL_001938 "__OTR__objects/object_warp1/gWarp1DL_001938" +static const ALIGN_ASSET(2) char gWarp1DL_001938[] = dgWarp1DL_001938; + +#define dgWarp1DL_0019C0 "__OTR__objects/object_warp1/gWarp1DL_0019C0" +static const ALIGN_ASSET(2) char gWarp1DL_0019C0[] = dgWarp1DL_0019C0; + +#define dgWarp1DL_001A48 "__OTR__objects/object_warp1/gWarp1DL_001A48" +static const ALIGN_ASSET(2) char gWarp1DL_001A48[] = dgWarp1DL_001A48; + +#define dgWarp1DL_001AD0 "__OTR__objects/object_warp1/gWarp1DL_001AD0" +static const ALIGN_ASSET(2) char gWarp1DL_001AD0[] = dgWarp1DL_001AD0; + +#define dgWarpCrystalTex "__OTR__objects/object_warp1/gWarpCrystalTex" +static const ALIGN_ASSET(2) char gWarpCrystalTex[] = dgWarpCrystalTex; + +#define dgWarpCrystalSkel "__OTR__objects/object_warp1/gWarpCrystalSkel" +static const ALIGN_ASSET(2) char gWarpCrystalSkel[] = dgWarpCrystalSkel; \ No newline at end of file diff --git a/soh/assets/objects/object_warp2/object_warp2.h b/soh/assets/objects/object_warp2/object_warp2.h index c707ea7f4..858a8dab5 100644 --- a/soh/assets/objects/object_warp2/object_warp2.h +++ b/soh/assets/objects/object_warp2/object_warp2.h @@ -1,9 +1,6 @@ #pragma once -#define dgWarp2Blob_000000 "__OTR__objects/object_warp2/gWarp2Blob_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char gWarp2Blob_000000[] = dgWarp2Blob_000000; -#else -static const char gWarp2Blob_000000[] __attribute__((aligned (2))) = dgWarp2Blob_000000; -#endif - +#include "align_asset_macro.h" + +#define dgWarp2Blob_000000 "__OTR__objects/object_warp2/gWarp2Blob_000000" +static const ALIGN_ASSET(2) char gWarp2Blob_000000[] = dgWarp2Blob_000000; \ No newline at end of file diff --git a/soh/assets/objects/object_wf/object_wf.h b/soh/assets/objects/object_wf/object_wf.h index 9a42d4461..37c0f679c 100644 --- a/soh/assets/objects/object_wf/object_wf.h +++ b/soh/assets/objects/object_wf/object_wf.h @@ -1,492 +1,213 @@ #pragma once -#define dgWolfosWhiteFurTex "__OTR__objects/object_wf/gWolfosWhiteFurTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteFurTex[] = dgWolfosWhiteFurTex; -#else -static const char gWolfosWhiteFurTex[] __attribute__((aligned (2))) = dgWolfosWhiteFurTex; -#endif - -#define dgWolfosWhiteToothClawTex "__OTR__objects/object_wf/gWolfosWhiteToothClawTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteToothClawTex[] = dgWolfosWhiteToothClawTex; -#else -static const char gWolfosWhiteToothClawTex[] __attribute__((aligned (2))) = dgWolfosWhiteToothClawTex; -#endif - -#define dgWolfosWhiteMouthTex "__OTR__objects/object_wf/gWolfosWhiteMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteMouthTex[] = dgWolfosWhiteMouthTex; -#else -static const char gWolfosWhiteMouthTex[] __attribute__((aligned (2))) = dgWolfosWhiteMouthTex; -#endif - -#define dgWolfosWhiteTongueTex "__OTR__objects/object_wf/gWolfosWhiteTongueTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteTongueTex[] = dgWolfosWhiteTongueTex; -#else -static const char gWolfosWhiteTongueTex[] __attribute__((aligned (2))) = dgWolfosWhiteTongueTex; -#endif - -#define dgWolfosWhiteNostrilTex "__OTR__objects/object_wf/gWolfosWhiteNostrilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteNostrilTex[] = dgWolfosWhiteNostrilTex; -#else -static const char gWolfosWhiteNostrilTex[] __attribute__((aligned (2))) = dgWolfosWhiteNostrilTex; -#endif - -#define dgWolfosWhiteEyeOpenTex "__OTR__objects/object_wf/gWolfosWhiteEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteEyeOpenTex[] = dgWolfosWhiteEyeOpenTex; -#else -static const char gWolfosWhiteEyeOpenTex[] __attribute__((aligned (2))) = dgWolfosWhiteEyeOpenTex; -#endif - -#define dgWolfosWhiteAbdomenDL "__OTR__objects/object_wf/gWolfosWhiteAbdomenDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteAbdomenDL[] = dgWolfosWhiteAbdomenDL; -#else -static const char gWolfosWhiteAbdomenDL[] __attribute__((aligned (2))) = dgWolfosWhiteAbdomenDL; -#endif - -#define dgWolfosWhiteBackRightThighDL "__OTR__objects/object_wf/gWolfosWhiteBackRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteBackRightThighDL[] = dgWolfosWhiteBackRightThighDL; -#else -static const char gWolfosWhiteBackRightThighDL[] __attribute__((aligned (2))) = dgWolfosWhiteBackRightThighDL; -#endif - -#define dgWolfosWhiteBackRightShinDL "__OTR__objects/object_wf/gWolfosWhiteBackRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteBackRightShinDL[] = dgWolfosWhiteBackRightShinDL; -#else -static const char gWolfosWhiteBackRightShinDL[] __attribute__((aligned (2))) = dgWolfosWhiteBackRightShinDL; -#endif - -#define dgWolfosWhiteBackRightPasternDL "__OTR__objects/object_wf/gWolfosWhiteBackRightPasternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteBackRightPasternDL[] = dgWolfosWhiteBackRightPasternDL; -#else -static const char gWolfosWhiteBackRightPasternDL[] __attribute__((aligned (2))) = dgWolfosWhiteBackRightPasternDL; -#endif - -#define dgWolfosWhiteBackRightPawDL "__OTR__objects/object_wf/gWolfosWhiteBackRightPawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteBackRightPawDL[] = dgWolfosWhiteBackRightPawDL; -#else -static const char gWolfosWhiteBackRightPawDL[] __attribute__((aligned (2))) = dgWolfosWhiteBackRightPawDL; -#endif - -#define dgWolfosWhiteBackLeftThighDL "__OTR__objects/object_wf/gWolfosWhiteBackLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteBackLeftThighDL[] = dgWolfosWhiteBackLeftThighDL; -#else -static const char gWolfosWhiteBackLeftThighDL[] __attribute__((aligned (2))) = dgWolfosWhiteBackLeftThighDL; -#endif - -#define dgWolfosWhiteBackLeftShinDL "__OTR__objects/object_wf/gWolfosWhiteBackLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteBackLeftShinDL[] = dgWolfosWhiteBackLeftShinDL; -#else -static const char gWolfosWhiteBackLeftShinDL[] __attribute__((aligned (2))) = dgWolfosWhiteBackLeftShinDL; -#endif - -#define dgWolfosWhiteBackLeftPasternDL "__OTR__objects/object_wf/gWolfosWhiteBackLeftPasternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteBackLeftPasternDL[] = dgWolfosWhiteBackLeftPasternDL; -#else -static const char gWolfosWhiteBackLeftPasternDL[] __attribute__((aligned (2))) = dgWolfosWhiteBackLeftPasternDL; -#endif - -#define dgWolfosWhiteBackLeftPawDL "__OTR__objects/object_wf/gWolfosWhiteBackLeftPawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteBackLeftPawDL[] = dgWolfosWhiteBackLeftPawDL; -#else -static const char gWolfosWhiteBackLeftPawDL[] __attribute__((aligned (2))) = dgWolfosWhiteBackLeftPawDL; -#endif - -#define dgWolfosWhiteThoraxDL "__OTR__objects/object_wf/gWolfosWhiteThoraxDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteThoraxDL[] = dgWolfosWhiteThoraxDL; -#else -static const char gWolfosWhiteThoraxDL[] __attribute__((aligned (2))) = dgWolfosWhiteThoraxDL; -#endif - -#define dgWolfosWhiteFrontLeftUpperLegDL "__OTR__objects/object_wf/gWolfosWhiteFrontLeftUpperLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteFrontLeftUpperLegDL[] = dgWolfosWhiteFrontLeftUpperLegDL; -#else -static const char gWolfosWhiteFrontLeftUpperLegDL[] __attribute__((aligned (2))) = dgWolfosWhiteFrontLeftUpperLegDL; -#endif - -#define dgWolfosWhiteFrontLeftLowerLegDL "__OTR__objects/object_wf/gWolfosWhiteFrontLeftLowerLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteFrontLeftLowerLegDL[] = dgWolfosWhiteFrontLeftLowerLegDL; -#else -static const char gWolfosWhiteFrontLeftLowerLegDL[] __attribute__((aligned (2))) = dgWolfosWhiteFrontLeftLowerLegDL; -#endif - -#define dgWolfosWhiteFrontRightUpperLegDL "__OTR__objects/object_wf/gWolfosWhiteFrontRightUpperLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteFrontRightUpperLegDL[] = dgWolfosWhiteFrontRightUpperLegDL; -#else -static const char gWolfosWhiteFrontRightUpperLegDL[] __attribute__((aligned (2))) = dgWolfosWhiteFrontRightUpperLegDL; -#endif - -#define dgWolfosWhiteFrontRightLowerLegDL "__OTR__objects/object_wf/gWolfosWhiteFrontRightLowerLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteFrontRightLowerLegDL[] = dgWolfosWhiteFrontRightLowerLegDL; -#else -static const char gWolfosWhiteFrontRightLowerLegDL[] __attribute__((aligned (2))) = dgWolfosWhiteFrontRightLowerLegDL; -#endif - -#define dgWolfosWhiteEyeHalfTex "__OTR__objects/object_wf/gWolfosWhiteEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteEyeHalfTex[] = dgWolfosWhiteEyeHalfTex; -#else -static const char gWolfosWhiteEyeHalfTex[] __attribute__((aligned (2))) = dgWolfosWhiteEyeHalfTex; -#endif - -#define dgWolfosWhiteEyeNarrowTex "__OTR__objects/object_wf/gWolfosWhiteEyeNarrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteEyeNarrowTex[] = dgWolfosWhiteEyeNarrowTex; -#else -static const char gWolfosWhiteEyeNarrowTex[] __attribute__((aligned (2))) = dgWolfosWhiteEyeNarrowTex; -#endif - -#define dgWolfosWhiteTailDL "__OTR__objects/object_wf/gWolfosWhiteTailDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteTailDL[] = dgWolfosWhiteTailDL; -#else -static const char gWolfosWhiteTailDL[] __attribute__((aligned (2))) = dgWolfosWhiteTailDL; -#endif - -#define dgWolfosWhiteFrontLeftClawDL "__OTR__objects/object_wf/gWolfosWhiteFrontLeftClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteFrontLeftClawDL[] = dgWolfosWhiteFrontLeftClawDL; -#else -static const char gWolfosWhiteFrontLeftClawDL[] __attribute__((aligned (2))) = dgWolfosWhiteFrontLeftClawDL; -#endif - -#define dgWolfosWhiteFrontRightClawDL "__OTR__objects/object_wf/gWolfosWhiteFrontRightClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteFrontRightClawDL[] = dgWolfosWhiteFrontRightClawDL; -#else -static const char gWolfosWhiteFrontRightClawDL[] __attribute__((aligned (2))) = dgWolfosWhiteFrontRightClawDL; -#endif - -#define dgWolfosWhiteHeadDL "__OTR__objects/object_wf/gWolfosWhiteHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteHeadDL[] = dgWolfosWhiteHeadDL; -#else -static const char gWolfosWhiteHeadDL[] __attribute__((aligned (2))) = dgWolfosWhiteHeadDL; -#endif - -#define dgWolfosWhiteEyesDL "__OTR__objects/object_wf/gWolfosWhiteEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteEyesDL[] = dgWolfosWhiteEyesDL; -#else -static const char gWolfosWhiteEyesDL[] __attribute__((aligned (2))) = dgWolfosWhiteEyesDL; -#endif - -#define dgWolfosWhiteSkel "__OTR__objects/object_wf/gWolfosWhiteSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWhiteSkel[] = dgWolfosWhiteSkel; -#else -static const char gWolfosWhiteSkel[] __attribute__((aligned (2))) = dgWolfosWhiteSkel; -#endif - -#define dgWolfosSlashingAnim "__OTR__objects/object_wf/gWolfosSlashingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosSlashingAnim[] = dgWolfosSlashingAnim; -#else -static const char gWolfosSlashingAnim[] __attribute__((aligned (2))) = dgWolfosSlashingAnim; -#endif - -#define dobject_wf_zeroes_Blob_004648 "__OTR__objects/object_wf/object_wf_zeroes_Blob_004648" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wf_zeroes_Blob_004648[] = dobject_wf_zeroes_Blob_004648; -#else -static const char object_wf_zeroes_Blob_004648[] __attribute__((aligned (2))) = dobject_wf_zeroes_Blob_004648; -#endif - -#define dgWolfosBackflippingAnim "__OTR__objects/object_wf/gWolfosBackflippingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosBackflippingAnim[] = dgWolfosBackflippingAnim; -#else -static const char gWolfosBackflippingAnim[] __attribute__((aligned (2))) = dgWolfosBackflippingAnim; -#endif - -#define dobject_wf_zeroes_Blob_004AE0 "__OTR__objects/object_wf/object_wf_zeroes_Blob_004AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wf_zeroes_Blob_004AE0[] = dobject_wf_zeroes_Blob_004AE0; -#else -static const char object_wf_zeroes_Blob_004AE0[] __attribute__((aligned (2))) = dobject_wf_zeroes_Blob_004AE0; -#endif - -#define dgWolfosBlockingAnim "__OTR__objects/object_wf/gWolfosBlockingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosBlockingAnim[] = dgWolfosBlockingAnim; -#else -static const char gWolfosBlockingAnim[] __attribute__((aligned (2))) = dgWolfosBlockingAnim; -#endif - -#define dgWolfosRearingUpFallingOverAnim "__OTR__objects/object_wf/gWolfosRearingUpFallingOverAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosRearingUpFallingOverAnim[] = dgWolfosRearingUpFallingOverAnim; -#else -static const char gWolfosRearingUpFallingOverAnim[] __attribute__((aligned (2))) = dgWolfosRearingUpFallingOverAnim; -#endif - -#define dobject_wf_zeroes_Blob_005440 "__OTR__objects/object_wf/object_wf_zeroes_Blob_005440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wf_zeroes_Blob_005440[] = dobject_wf_zeroes_Blob_005440; -#else -static const char object_wf_zeroes_Blob_005440[] __attribute__((aligned (2))) = dobject_wf_zeroes_Blob_005440; -#endif - -#define dgWolfosRunningAnim "__OTR__objects/object_wf/gWolfosRunningAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosRunningAnim[] = dgWolfosRunningAnim; -#else -static const char gWolfosRunningAnim[] __attribute__((aligned (2))) = dgWolfosRunningAnim; -#endif - -#define dobject_wf_zeroes_Blob_0057B0 "__OTR__objects/object_wf/object_wf_zeroes_Blob_0057B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wf_zeroes_Blob_0057B0[] = dobject_wf_zeroes_Blob_0057B0; -#else -static const char object_wf_zeroes_Blob_0057B0[] __attribute__((aligned (2))) = dobject_wf_zeroes_Blob_0057B0; -#endif - -#define dgWolfosNormalAbdomenDL "__OTR__objects/object_wf/gWolfosNormalAbdomenDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalAbdomenDL[] = dgWolfosNormalAbdomenDL; -#else -static const char gWolfosNormalAbdomenDL[] __attribute__((aligned (2))) = dgWolfosNormalAbdomenDL; -#endif - -#define dgWolfosNormalBackRightThighDL "__OTR__objects/object_wf/gWolfosNormalBackRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalBackRightThighDL[] = dgWolfosNormalBackRightThighDL; -#else -static const char gWolfosNormalBackRightThighDL[] __attribute__((aligned (2))) = dgWolfosNormalBackRightThighDL; -#endif - -#define dgWolfosNormalBackRightShinDL "__OTR__objects/object_wf/gWolfosNormalBackRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalBackRightShinDL[] = dgWolfosNormalBackRightShinDL; -#else -static const char gWolfosNormalBackRightShinDL[] __attribute__((aligned (2))) = dgWolfosNormalBackRightShinDL; -#endif - -#define dgWolfosNormalBackRightPasternDL "__OTR__objects/object_wf/gWolfosNormalBackRightPasternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalBackRightPasternDL[] = dgWolfosNormalBackRightPasternDL; -#else -static const char gWolfosNormalBackRightPasternDL[] __attribute__((aligned (2))) = dgWolfosNormalBackRightPasternDL; -#endif - -#define dgWolfosNormalBackRightPawDL "__OTR__objects/object_wf/gWolfosNormalBackRightPawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalBackRightPawDL[] = dgWolfosNormalBackRightPawDL; -#else -static const char gWolfosNormalBackRightPawDL[] __attribute__((aligned (2))) = dgWolfosNormalBackRightPawDL; -#endif - -#define dgWolfosNormalBackLeftThighDL "__OTR__objects/object_wf/gWolfosNormalBackLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalBackLeftThighDL[] = dgWolfosNormalBackLeftThighDL; -#else -static const char gWolfosNormalBackLeftThighDL[] __attribute__((aligned (2))) = dgWolfosNormalBackLeftThighDL; -#endif - -#define dgWolfosNormalBackLeftShinDL "__OTR__objects/object_wf/gWolfosNormalBackLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalBackLeftShinDL[] = dgWolfosNormalBackLeftShinDL; -#else -static const char gWolfosNormalBackLeftShinDL[] __attribute__((aligned (2))) = dgWolfosNormalBackLeftShinDL; -#endif - -#define dgWolfosNormalBackLeftPasternDL "__OTR__objects/object_wf/gWolfosNormalBackLeftPasternDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalBackLeftPasternDL[] = dgWolfosNormalBackLeftPasternDL; -#else -static const char gWolfosNormalBackLeftPasternDL[] __attribute__((aligned (2))) = dgWolfosNormalBackLeftPasternDL; -#endif - -#define dgWolfosNormalBackLeftPawDL "__OTR__objects/object_wf/gWolfosNormalBackLeftPawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalBackLeftPawDL[] = dgWolfosNormalBackLeftPawDL; -#else -static const char gWolfosNormalBackLeftPawDL[] __attribute__((aligned (2))) = dgWolfosNormalBackLeftPawDL; -#endif - -#define dgWolfosNormalThoraxDL "__OTR__objects/object_wf/gWolfosNormalThoraxDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalThoraxDL[] = dgWolfosNormalThoraxDL; -#else -static const char gWolfosNormalThoraxDL[] __attribute__((aligned (2))) = dgWolfosNormalThoraxDL; -#endif - -#define dgWolfosNormalFrontLeftUpperLegDL "__OTR__objects/object_wf/gWolfosNormalFrontLeftUpperLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalFrontLeftUpperLegDL[] = dgWolfosNormalFrontLeftUpperLegDL; -#else -static const char gWolfosNormalFrontLeftUpperLegDL[] __attribute__((aligned (2))) = dgWolfosNormalFrontLeftUpperLegDL; -#endif - -#define dgWolfosNormalFrontLeftLowerLegDL "__OTR__objects/object_wf/gWolfosNormalFrontLeftLowerLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalFrontLeftLowerLegDL[] = dgWolfosNormalFrontLeftLowerLegDL; -#else -static const char gWolfosNormalFrontLeftLowerLegDL[] __attribute__((aligned (2))) = dgWolfosNormalFrontLeftLowerLegDL; -#endif - -#define dgWolfosNormalFrontRightUpperLegDL "__OTR__objects/object_wf/gWolfosNormalFrontRightUpperLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalFrontRightUpperLegDL[] = dgWolfosNormalFrontRightUpperLegDL; -#else -static const char gWolfosNormalFrontRightUpperLegDL[] __attribute__((aligned (2))) = dgWolfosNormalFrontRightUpperLegDL; -#endif - -#define dgWolfosNormalFrontRightLowerLegDL "__OTR__objects/object_wf/gWolfosNormalFrontRightLowerLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalFrontRightLowerLegDL[] = dgWolfosNormalFrontRightLowerLegDL; -#else -static const char gWolfosNormalFrontRightLowerLegDL[] __attribute__((aligned (2))) = dgWolfosNormalFrontRightLowerLegDL; -#endif - -#define dgWolfosNormalEyeOpenTex "__OTR__objects/object_wf/gWolfosNormalEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalEyeOpenTex[] = dgWolfosNormalEyeOpenTex; -#else -static const char gWolfosNormalEyeOpenTex[] __attribute__((aligned (2))) = dgWolfosNormalEyeOpenTex; -#endif - -#define dgWolfosNormalFurTex "__OTR__objects/object_wf/gWolfosNormalFurTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalFurTex[] = dgWolfosNormalFurTex; -#else -static const char gWolfosNormalFurTex[] __attribute__((aligned (2))) = dgWolfosNormalFurTex; -#endif - -#define dgWolfosNormalMouthTex "__OTR__objects/object_wf/gWolfosNormalMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalMouthTex[] = dgWolfosNormalMouthTex; -#else -static const char gWolfosNormalMouthTex[] __attribute__((aligned (2))) = dgWolfosNormalMouthTex; -#endif - -#define dgWolfosNormalTongueTex "__OTR__objects/object_wf/gWolfosNormalTongueTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalTongueTex[] = dgWolfosNormalTongueTex; -#else -static const char gWolfosNormalTongueTex[] __attribute__((aligned (2))) = dgWolfosNormalTongueTex; -#endif - -#define dgWolfosNormalToothClawTex "__OTR__objects/object_wf/gWolfosNormalToothClawTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalToothClawTex[] = dgWolfosNormalToothClawTex; -#else -static const char gWolfosNormalToothClawTex[] __attribute__((aligned (2))) = dgWolfosNormalToothClawTex; -#endif - -#define dgWolfosNormalNostrilTex "__OTR__objects/object_wf/gWolfosNormalNostrilTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalNostrilTex[] = dgWolfosNormalNostrilTex; -#else -static const char gWolfosNormalNostrilTex[] __attribute__((aligned (2))) = dgWolfosNormalNostrilTex; -#endif - -#define dgWolfosNormalEyeHalfTex "__OTR__objects/object_wf/gWolfosNormalEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalEyeHalfTex[] = dgWolfosNormalEyeHalfTex; -#else -static const char gWolfosNormalEyeHalfTex[] __attribute__((aligned (2))) = dgWolfosNormalEyeHalfTex; -#endif - -#define dgWolfosNormalEyeNarrowTex "__OTR__objects/object_wf/gWolfosNormalEyeNarrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalEyeNarrowTex[] = dgWolfosNormalEyeNarrowTex; -#else -static const char gWolfosNormalEyeNarrowTex[] __attribute__((aligned (2))) = dgWolfosNormalEyeNarrowTex; -#endif - -#define dgWolfosNormalTailDL "__OTR__objects/object_wf/gWolfosNormalTailDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalTailDL[] = dgWolfosNormalTailDL; -#else -static const char gWolfosNormalTailDL[] __attribute__((aligned (2))) = dgWolfosNormalTailDL; -#endif - -#define dgWolfosNormalFrontLeftClawDL "__OTR__objects/object_wf/gWolfosNormalFrontLeftClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalFrontLeftClawDL[] = dgWolfosNormalFrontLeftClawDL; -#else -static const char gWolfosNormalFrontLeftClawDL[] __attribute__((aligned (2))) = dgWolfosNormalFrontLeftClawDL; -#endif - -#define dgWolfosNormalFrontRightClawDL "__OTR__objects/object_wf/gWolfosNormalFrontRightClawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalFrontRightClawDL[] = dgWolfosNormalFrontRightClawDL; -#else -static const char gWolfosNormalFrontRightClawDL[] __attribute__((aligned (2))) = dgWolfosNormalFrontRightClawDL; -#endif - -#define dgWolfosNormalHeadDL "__OTR__objects/object_wf/gWolfosNormalHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalHeadDL[] = dgWolfosNormalHeadDL; -#else -static const char gWolfosNormalHeadDL[] __attribute__((aligned (2))) = dgWolfosNormalHeadDL; -#endif - -#define dgWolfosNormalEyesDL "__OTR__objects/object_wf/gWolfosNormalEyesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalEyesDL[] = dgWolfosNormalEyesDL; -#else -static const char gWolfosNormalEyesDL[] __attribute__((aligned (2))) = dgWolfosNormalEyesDL; -#endif - -#define dgWolfosNormalSkel "__OTR__objects/object_wf/gWolfosNormalSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosNormalSkel[] = dgWolfosNormalSkel; -#else -static const char gWolfosNormalSkel[] __attribute__((aligned (2))) = dgWolfosNormalSkel; -#endif - -#define dgWolfosSidesteppingAnim "__OTR__objects/object_wf/gWolfosSidesteppingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosSidesteppingAnim[] = dgWolfosSidesteppingAnim; -#else -static const char gWolfosSidesteppingAnim[] __attribute__((aligned (2))) = dgWolfosSidesteppingAnim; -#endif - -#define dobject_wf_zeroes_Blob_0098D8 "__OTR__objects/object_wf/object_wf_zeroes_Blob_0098D8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wf_zeroes_Blob_0098D8[] = dobject_wf_zeroes_Blob_0098D8; -#else -static const char object_wf_zeroes_Blob_0098D8[] __attribute__((aligned (2))) = dobject_wf_zeroes_Blob_0098D8; -#endif - -#define dgWolfosDamagedAnim "__OTR__objects/object_wf/gWolfosDamagedAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosDamagedAnim[] = dgWolfosDamagedAnim; -#else -static const char gWolfosDamagedAnim[] __attribute__((aligned (2))) = dgWolfosDamagedAnim; -#endif - -#define dgWolfosWaitingAnim "__OTR__objects/object_wf/gWolfosWaitingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gWolfosWaitingAnim[] = dgWolfosWaitingAnim; -#else -static const char gWolfosWaitingAnim[] __attribute__((aligned (2))) = dgWolfosWaitingAnim; -#endif - -#define dobject_wf_zeroes_Blob_00A4BC "__OTR__objects/object_wf/object_wf_zeroes_Blob_00A4BC" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wf_zeroes_Blob_00A4BC[] = dobject_wf_zeroes_Blob_00A4BC; -#else -static const char object_wf_zeroes_Blob_00A4BC[] __attribute__((aligned (2))) = dobject_wf_zeroes_Blob_00A4BC; -#endif - +#include "align_asset_macro.h" + +#define dgWolfosWhiteFurTex "__OTR__objects/object_wf/gWolfosWhiteFurTex" +static const ALIGN_ASSET(2) char gWolfosWhiteFurTex[] = dgWolfosWhiteFurTex; + +#define dgWolfosWhiteToothClawTex "__OTR__objects/object_wf/gWolfosWhiteToothClawTex" +static const ALIGN_ASSET(2) char gWolfosWhiteToothClawTex[] = dgWolfosWhiteToothClawTex; + +#define dgWolfosWhiteMouthTex "__OTR__objects/object_wf/gWolfosWhiteMouthTex" +static const ALIGN_ASSET(2) char gWolfosWhiteMouthTex[] = dgWolfosWhiteMouthTex; + +#define dgWolfosWhiteTongueTex "__OTR__objects/object_wf/gWolfosWhiteTongueTex" +static const ALIGN_ASSET(2) char gWolfosWhiteTongueTex[] = dgWolfosWhiteTongueTex; + +#define dgWolfosWhiteNostrilTex "__OTR__objects/object_wf/gWolfosWhiteNostrilTex" +static const ALIGN_ASSET(2) char gWolfosWhiteNostrilTex[] = dgWolfosWhiteNostrilTex; + +#define dgWolfosWhiteEyeOpenTex "__OTR__objects/object_wf/gWolfosWhiteEyeOpenTex" +static const ALIGN_ASSET(2) char gWolfosWhiteEyeOpenTex[] = dgWolfosWhiteEyeOpenTex; + +#define dgWolfosWhiteAbdomenDL "__OTR__objects/object_wf/gWolfosWhiteAbdomenDL" +static const ALIGN_ASSET(2) char gWolfosWhiteAbdomenDL[] = dgWolfosWhiteAbdomenDL; + +#define dgWolfosWhiteBackRightThighDL "__OTR__objects/object_wf/gWolfosWhiteBackRightThighDL" +static const ALIGN_ASSET(2) char gWolfosWhiteBackRightThighDL[] = dgWolfosWhiteBackRightThighDL; + +#define dgWolfosWhiteBackRightShinDL "__OTR__objects/object_wf/gWolfosWhiteBackRightShinDL" +static const ALIGN_ASSET(2) char gWolfosWhiteBackRightShinDL[] = dgWolfosWhiteBackRightShinDL; + +#define dgWolfosWhiteBackRightPasternDL "__OTR__objects/object_wf/gWolfosWhiteBackRightPasternDL" +static const ALIGN_ASSET(2) char gWolfosWhiteBackRightPasternDL[] = dgWolfosWhiteBackRightPasternDL; + +#define dgWolfosWhiteBackRightPawDL "__OTR__objects/object_wf/gWolfosWhiteBackRightPawDL" +static const ALIGN_ASSET(2) char gWolfosWhiteBackRightPawDL[] = dgWolfosWhiteBackRightPawDL; + +#define dgWolfosWhiteBackLeftThighDL "__OTR__objects/object_wf/gWolfosWhiteBackLeftThighDL" +static const ALIGN_ASSET(2) char gWolfosWhiteBackLeftThighDL[] = dgWolfosWhiteBackLeftThighDL; + +#define dgWolfosWhiteBackLeftShinDL "__OTR__objects/object_wf/gWolfosWhiteBackLeftShinDL" +static const ALIGN_ASSET(2) char gWolfosWhiteBackLeftShinDL[] = dgWolfosWhiteBackLeftShinDL; + +#define dgWolfosWhiteBackLeftPasternDL "__OTR__objects/object_wf/gWolfosWhiteBackLeftPasternDL" +static const ALIGN_ASSET(2) char gWolfosWhiteBackLeftPasternDL[] = dgWolfosWhiteBackLeftPasternDL; + +#define dgWolfosWhiteBackLeftPawDL "__OTR__objects/object_wf/gWolfosWhiteBackLeftPawDL" +static const ALIGN_ASSET(2) char gWolfosWhiteBackLeftPawDL[] = dgWolfosWhiteBackLeftPawDL; + +#define dgWolfosWhiteThoraxDL "__OTR__objects/object_wf/gWolfosWhiteThoraxDL" +static const ALIGN_ASSET(2) char gWolfosWhiteThoraxDL[] = dgWolfosWhiteThoraxDL; + +#define dgWolfosWhiteFrontLeftUpperLegDL "__OTR__objects/object_wf/gWolfosWhiteFrontLeftUpperLegDL" +static const ALIGN_ASSET(2) char gWolfosWhiteFrontLeftUpperLegDL[] = dgWolfosWhiteFrontLeftUpperLegDL; + +#define dgWolfosWhiteFrontLeftLowerLegDL "__OTR__objects/object_wf/gWolfosWhiteFrontLeftLowerLegDL" +static const ALIGN_ASSET(2) char gWolfosWhiteFrontLeftLowerLegDL[] = dgWolfosWhiteFrontLeftLowerLegDL; + +#define dgWolfosWhiteFrontRightUpperLegDL "__OTR__objects/object_wf/gWolfosWhiteFrontRightUpperLegDL" +static const ALIGN_ASSET(2) char gWolfosWhiteFrontRightUpperLegDL[] = dgWolfosWhiteFrontRightUpperLegDL; + +#define dgWolfosWhiteFrontRightLowerLegDL "__OTR__objects/object_wf/gWolfosWhiteFrontRightLowerLegDL" +static const ALIGN_ASSET(2) char gWolfosWhiteFrontRightLowerLegDL[] = dgWolfosWhiteFrontRightLowerLegDL; + +#define dgWolfosWhiteEyeHalfTex "__OTR__objects/object_wf/gWolfosWhiteEyeHalfTex" +static const ALIGN_ASSET(2) char gWolfosWhiteEyeHalfTex[] = dgWolfosWhiteEyeHalfTex; + +#define dgWolfosWhiteEyeNarrowTex "__OTR__objects/object_wf/gWolfosWhiteEyeNarrowTex" +static const ALIGN_ASSET(2) char gWolfosWhiteEyeNarrowTex[] = dgWolfosWhiteEyeNarrowTex; + +#define dgWolfosWhiteTailDL "__OTR__objects/object_wf/gWolfosWhiteTailDL" +static const ALIGN_ASSET(2) char gWolfosWhiteTailDL[] = dgWolfosWhiteTailDL; + +#define dgWolfosWhiteFrontLeftClawDL "__OTR__objects/object_wf/gWolfosWhiteFrontLeftClawDL" +static const ALIGN_ASSET(2) char gWolfosWhiteFrontLeftClawDL[] = dgWolfosWhiteFrontLeftClawDL; + +#define dgWolfosWhiteFrontRightClawDL "__OTR__objects/object_wf/gWolfosWhiteFrontRightClawDL" +static const ALIGN_ASSET(2) char gWolfosWhiteFrontRightClawDL[] = dgWolfosWhiteFrontRightClawDL; + +#define dgWolfosWhiteHeadDL "__OTR__objects/object_wf/gWolfosWhiteHeadDL" +static const ALIGN_ASSET(2) char gWolfosWhiteHeadDL[] = dgWolfosWhiteHeadDL; + +#define dgWolfosWhiteEyesDL "__OTR__objects/object_wf/gWolfosWhiteEyesDL" +static const ALIGN_ASSET(2) char gWolfosWhiteEyesDL[] = dgWolfosWhiteEyesDL; + +#define dgWolfosWhiteSkel "__OTR__objects/object_wf/gWolfosWhiteSkel" +static const ALIGN_ASSET(2) char gWolfosWhiteSkel[] = dgWolfosWhiteSkel; + +#define dgWolfosSlashingAnim "__OTR__objects/object_wf/gWolfosSlashingAnim" +static const ALIGN_ASSET(2) char gWolfosSlashingAnim[] = dgWolfosSlashingAnim; + +#define dobject_wf_zeroes_Blob_004648 "__OTR__objects/object_wf/object_wf_zeroes_Blob_004648" +static const ALIGN_ASSET(2) char object_wf_zeroes_Blob_004648[] = dobject_wf_zeroes_Blob_004648; + +#define dgWolfosBackflippingAnim "__OTR__objects/object_wf/gWolfosBackflippingAnim" +static const ALIGN_ASSET(2) char gWolfosBackflippingAnim[] = dgWolfosBackflippingAnim; + +#define dobject_wf_zeroes_Blob_004AE0 "__OTR__objects/object_wf/object_wf_zeroes_Blob_004AE0" +static const ALIGN_ASSET(2) char object_wf_zeroes_Blob_004AE0[] = dobject_wf_zeroes_Blob_004AE0; + +#define dgWolfosBlockingAnim "__OTR__objects/object_wf/gWolfosBlockingAnim" +static const ALIGN_ASSET(2) char gWolfosBlockingAnim[] = dgWolfosBlockingAnim; + +#define dgWolfosRearingUpFallingOverAnim "__OTR__objects/object_wf/gWolfosRearingUpFallingOverAnim" +static const ALIGN_ASSET(2) char gWolfosRearingUpFallingOverAnim[] = dgWolfosRearingUpFallingOverAnim; + +#define dobject_wf_zeroes_Blob_005440 "__OTR__objects/object_wf/object_wf_zeroes_Blob_005440" +static const ALIGN_ASSET(2) char object_wf_zeroes_Blob_005440[] = dobject_wf_zeroes_Blob_005440; + +#define dgWolfosRunningAnim "__OTR__objects/object_wf/gWolfosRunningAnim" +static const ALIGN_ASSET(2) char gWolfosRunningAnim[] = dgWolfosRunningAnim; + +#define dobject_wf_zeroes_Blob_0057B0 "__OTR__objects/object_wf/object_wf_zeroes_Blob_0057B0" +static const ALIGN_ASSET(2) char object_wf_zeroes_Blob_0057B0[] = dobject_wf_zeroes_Blob_0057B0; + +#define dgWolfosNormalAbdomenDL "__OTR__objects/object_wf/gWolfosNormalAbdomenDL" +static const ALIGN_ASSET(2) char gWolfosNormalAbdomenDL[] = dgWolfosNormalAbdomenDL; + +#define dgWolfosNormalBackRightThighDL "__OTR__objects/object_wf/gWolfosNormalBackRightThighDL" +static const ALIGN_ASSET(2) char gWolfosNormalBackRightThighDL[] = dgWolfosNormalBackRightThighDL; + +#define dgWolfosNormalBackRightShinDL "__OTR__objects/object_wf/gWolfosNormalBackRightShinDL" +static const ALIGN_ASSET(2) char gWolfosNormalBackRightShinDL[] = dgWolfosNormalBackRightShinDL; + +#define dgWolfosNormalBackRightPasternDL "__OTR__objects/object_wf/gWolfosNormalBackRightPasternDL" +static const ALIGN_ASSET(2) char gWolfosNormalBackRightPasternDL[] = dgWolfosNormalBackRightPasternDL; + +#define dgWolfosNormalBackRightPawDL "__OTR__objects/object_wf/gWolfosNormalBackRightPawDL" +static const ALIGN_ASSET(2) char gWolfosNormalBackRightPawDL[] = dgWolfosNormalBackRightPawDL; + +#define dgWolfosNormalBackLeftThighDL "__OTR__objects/object_wf/gWolfosNormalBackLeftThighDL" +static const ALIGN_ASSET(2) char gWolfosNormalBackLeftThighDL[] = dgWolfosNormalBackLeftThighDL; + +#define dgWolfosNormalBackLeftShinDL "__OTR__objects/object_wf/gWolfosNormalBackLeftShinDL" +static const ALIGN_ASSET(2) char gWolfosNormalBackLeftShinDL[] = dgWolfosNormalBackLeftShinDL; + +#define dgWolfosNormalBackLeftPasternDL "__OTR__objects/object_wf/gWolfosNormalBackLeftPasternDL" +static const ALIGN_ASSET(2) char gWolfosNormalBackLeftPasternDL[] = dgWolfosNormalBackLeftPasternDL; + +#define dgWolfosNormalBackLeftPawDL "__OTR__objects/object_wf/gWolfosNormalBackLeftPawDL" +static const ALIGN_ASSET(2) char gWolfosNormalBackLeftPawDL[] = dgWolfosNormalBackLeftPawDL; + +#define dgWolfosNormalThoraxDL "__OTR__objects/object_wf/gWolfosNormalThoraxDL" +static const ALIGN_ASSET(2) char gWolfosNormalThoraxDL[] = dgWolfosNormalThoraxDL; + +#define dgWolfosNormalFrontLeftUpperLegDL "__OTR__objects/object_wf/gWolfosNormalFrontLeftUpperLegDL" +static const ALIGN_ASSET(2) char gWolfosNormalFrontLeftUpperLegDL[] = dgWolfosNormalFrontLeftUpperLegDL; + +#define dgWolfosNormalFrontLeftLowerLegDL "__OTR__objects/object_wf/gWolfosNormalFrontLeftLowerLegDL" +static const ALIGN_ASSET(2) char gWolfosNormalFrontLeftLowerLegDL[] = dgWolfosNormalFrontLeftLowerLegDL; + +#define dgWolfosNormalFrontRightUpperLegDL "__OTR__objects/object_wf/gWolfosNormalFrontRightUpperLegDL" +static const ALIGN_ASSET(2) char gWolfosNormalFrontRightUpperLegDL[] = dgWolfosNormalFrontRightUpperLegDL; + +#define dgWolfosNormalFrontRightLowerLegDL "__OTR__objects/object_wf/gWolfosNormalFrontRightLowerLegDL" +static const ALIGN_ASSET(2) char gWolfosNormalFrontRightLowerLegDL[] = dgWolfosNormalFrontRightLowerLegDL; + +#define dgWolfosNormalEyeOpenTex "__OTR__objects/object_wf/gWolfosNormalEyeOpenTex" +static const ALIGN_ASSET(2) char gWolfosNormalEyeOpenTex[] = dgWolfosNormalEyeOpenTex; + +#define dgWolfosNormalFurTex "__OTR__objects/object_wf/gWolfosNormalFurTex" +static const ALIGN_ASSET(2) char gWolfosNormalFurTex[] = dgWolfosNormalFurTex; + +#define dgWolfosNormalMouthTex "__OTR__objects/object_wf/gWolfosNormalMouthTex" +static const ALIGN_ASSET(2) char gWolfosNormalMouthTex[] = dgWolfosNormalMouthTex; + +#define dgWolfosNormalTongueTex "__OTR__objects/object_wf/gWolfosNormalTongueTex" +static const ALIGN_ASSET(2) char gWolfosNormalTongueTex[] = dgWolfosNormalTongueTex; + +#define dgWolfosNormalToothClawTex "__OTR__objects/object_wf/gWolfosNormalToothClawTex" +static const ALIGN_ASSET(2) char gWolfosNormalToothClawTex[] = dgWolfosNormalToothClawTex; + +#define dgWolfosNormalNostrilTex "__OTR__objects/object_wf/gWolfosNormalNostrilTex" +static const ALIGN_ASSET(2) char gWolfosNormalNostrilTex[] = dgWolfosNormalNostrilTex; + +#define dgWolfosNormalEyeHalfTex "__OTR__objects/object_wf/gWolfosNormalEyeHalfTex" +static const ALIGN_ASSET(2) char gWolfosNormalEyeHalfTex[] = dgWolfosNormalEyeHalfTex; + +#define dgWolfosNormalEyeNarrowTex "__OTR__objects/object_wf/gWolfosNormalEyeNarrowTex" +static const ALIGN_ASSET(2) char gWolfosNormalEyeNarrowTex[] = dgWolfosNormalEyeNarrowTex; + +#define dgWolfosNormalTailDL "__OTR__objects/object_wf/gWolfosNormalTailDL" +static const ALIGN_ASSET(2) char gWolfosNormalTailDL[] = dgWolfosNormalTailDL; + +#define dgWolfosNormalFrontLeftClawDL "__OTR__objects/object_wf/gWolfosNormalFrontLeftClawDL" +static const ALIGN_ASSET(2) char gWolfosNormalFrontLeftClawDL[] = dgWolfosNormalFrontLeftClawDL; + +#define dgWolfosNormalFrontRightClawDL "__OTR__objects/object_wf/gWolfosNormalFrontRightClawDL" +static const ALIGN_ASSET(2) char gWolfosNormalFrontRightClawDL[] = dgWolfosNormalFrontRightClawDL; + +#define dgWolfosNormalHeadDL "__OTR__objects/object_wf/gWolfosNormalHeadDL" +static const ALIGN_ASSET(2) char gWolfosNormalHeadDL[] = dgWolfosNormalHeadDL; + +#define dgWolfosNormalEyesDL "__OTR__objects/object_wf/gWolfosNormalEyesDL" +static const ALIGN_ASSET(2) char gWolfosNormalEyesDL[] = dgWolfosNormalEyesDL; + +#define dgWolfosNormalSkel "__OTR__objects/object_wf/gWolfosNormalSkel" +static const ALIGN_ASSET(2) char gWolfosNormalSkel[] = dgWolfosNormalSkel; + +#define dgWolfosSidesteppingAnim "__OTR__objects/object_wf/gWolfosSidesteppingAnim" +static const ALIGN_ASSET(2) char gWolfosSidesteppingAnim[] = dgWolfosSidesteppingAnim; + +#define dobject_wf_zeroes_Blob_0098D8 "__OTR__objects/object_wf/object_wf_zeroes_Blob_0098D8" +static const ALIGN_ASSET(2) char object_wf_zeroes_Blob_0098D8[] = dobject_wf_zeroes_Blob_0098D8; + +#define dgWolfosDamagedAnim "__OTR__objects/object_wf/gWolfosDamagedAnim" +static const ALIGN_ASSET(2) char gWolfosDamagedAnim[] = dgWolfosDamagedAnim; + +#define dgWolfosWaitingAnim "__OTR__objects/object_wf/gWolfosWaitingAnim" +static const ALIGN_ASSET(2) char gWolfosWaitingAnim[] = dgWolfosWaitingAnim; + +#define dobject_wf_zeroes_Blob_00A4BC "__OTR__objects/object_wf/object_wf_zeroes_Blob_00A4BC" +static const ALIGN_ASSET(2) char object_wf_zeroes_Blob_00A4BC[] = dobject_wf_zeroes_Blob_00A4BC; \ No newline at end of file diff --git a/soh/assets/objects/object_wood02/object_wood02.h b/soh/assets/objects/object_wood02/object_wood02.h index 458171291..471c47130 100644 --- a/soh/assets/objects/object_wood02/object_wood02.h +++ b/soh/assets/objects/object_wood02/object_wood02.h @@ -1,212 +1,93 @@ #pragma once -#define dobject_wood02_DL_000090 "__OTR__objects/object_wood02/object_wood02_DL_000090" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_000090[] = dobject_wood02_DL_000090; -#else -static const char object_wood02_DL_000090[] __attribute__((aligned (2))) = dobject_wood02_DL_000090; -#endif - -#define dobject_wood02_DL_000160 "__OTR__objects/object_wood02/object_wood02_DL_000160" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_000160[] = dobject_wood02_DL_000160; -#else -static const char object_wood02_DL_000160[] __attribute__((aligned (2))) = dobject_wood02_DL_000160; -#endif - -#define dobject_wood02_DL_000340 "__OTR__objects/object_wood02/object_wood02_DL_000340" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_000340[] = dobject_wood02_DL_000340; -#else -static const char object_wood02_DL_000340[] __attribute__((aligned (2))) = dobject_wood02_DL_000340; -#endif - -#define dobject_wood02_DL_000440 "__OTR__objects/object_wood02/object_wood02_DL_000440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_000440[] = dobject_wood02_DL_000440; -#else -static const char object_wood02_DL_000440[] __attribute__((aligned (2))) = dobject_wood02_DL_000440; -#endif - -#define dobject_wood02_Tex_0004D0 "__OTR__objects/object_wood02/object_wood02_Tex_0004D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_0004D0[] = dobject_wood02_Tex_0004D0; -#else -static const char object_wood02_Tex_0004D0[] __attribute__((aligned (2))) = dobject_wood02_Tex_0004D0; -#endif - -#define dobject_wood02_DL_000700 "__OTR__objects/object_wood02/object_wood02_DL_000700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_000700[] = dobject_wood02_DL_000700; -#else -static const char object_wood02_DL_000700[] __attribute__((aligned (2))) = dobject_wood02_DL_000700; -#endif - -#define dobject_wood02_Tex_000790 "__OTR__objects/object_wood02/object_wood02_Tex_000790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_000790[] = dobject_wood02_Tex_000790; -#else -static const char object_wood02_Tex_000790[] __attribute__((aligned (2))) = dobject_wood02_Tex_000790; -#endif - -#define dobject_wood02_Tex_000F90 "__OTR__objects/object_wood02/object_wood02_Tex_000F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_000F90[] = dobject_wood02_Tex_000F90; -#else -static const char object_wood02_Tex_000F90[] __attribute__((aligned (2))) = dobject_wood02_Tex_000F90; -#endif - -#define dobject_wood02_Tex_001790 "__OTR__objects/object_wood02/object_wood02_Tex_001790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_001790[] = dobject_wood02_Tex_001790; -#else -static const char object_wood02_Tex_001790[] __attribute__((aligned (2))) = dobject_wood02_Tex_001790; -#endif - -#define dobject_wood02_Tex_002790 "__OTR__objects/object_wood02/object_wood02_Tex_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_002790[] = dobject_wood02_Tex_002790; -#else -static const char object_wood02_Tex_002790[] __attribute__((aligned (2))) = dobject_wood02_Tex_002790; -#endif - -#define dobject_wood02_Tex_002F90 "__OTR__objects/object_wood02/object_wood02_Tex_002F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_002F90[] = dobject_wood02_Tex_002F90; -#else -static const char object_wood02_Tex_002F90[] __attribute__((aligned (2))) = dobject_wood02_Tex_002F90; -#endif - -#define dobject_wood02_Tex_003790 "__OTR__objects/object_wood02/object_wood02_Tex_003790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_003790[] = dobject_wood02_Tex_003790; -#else -static const char object_wood02_Tex_003790[] __attribute__((aligned (2))) = dobject_wood02_Tex_003790; -#endif - -#define dobject_wood02_Tex_004790 "__OTR__objects/object_wood02/object_wood02_Tex_004790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_004790[] = dobject_wood02_Tex_004790; -#else -static const char object_wood02_Tex_004790[] __attribute__((aligned (2))) = dobject_wood02_Tex_004790; -#endif - -#define dobject_wood02_Tex_004F90 "__OTR__objects/object_wood02/object_wood02_Tex_004F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_004F90[] = dobject_wood02_Tex_004F90; -#else -static const char object_wood02_Tex_004F90[] __attribute__((aligned (2))) = dobject_wood02_Tex_004F90; -#endif - -#define dobject_wood02_Tex_005F90 "__OTR__objects/object_wood02/object_wood02_Tex_005F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_005F90[] = dobject_wood02_Tex_005F90; -#else -static const char object_wood02_Tex_005F90[] __attribute__((aligned (2))) = dobject_wood02_Tex_005F90; -#endif - -#define dobject_wood02_Tex_006790 "__OTR__objects/object_wood02/object_wood02_Tex_006790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_006790[] = dobject_wood02_Tex_006790; -#else -static const char object_wood02_Tex_006790[] __attribute__((aligned (2))) = dobject_wood02_Tex_006790; -#endif - -#define dobject_wood02_Tex_006F90 "__OTR__objects/object_wood02/object_wood02_Tex_006F90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Tex_006F90[] = dobject_wood02_Tex_006F90; -#else -static const char object_wood02_Tex_006F90[] __attribute__((aligned (2))) = dobject_wood02_Tex_006F90; -#endif - -#define dobject_wood02_DL_0078D0 "__OTR__objects/object_wood02/object_wood02_DL_0078D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_0078D0[] = dobject_wood02_DL_0078D0; -#else -static const char object_wood02_DL_0078D0[] __attribute__((aligned (2))) = dobject_wood02_DL_0078D0; -#endif - -#define dobject_wood02_DL_007968 "__OTR__objects/object_wood02/object_wood02_DL_007968" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_007968[] = dobject_wood02_DL_007968; -#else -static const char object_wood02_DL_007968[] __attribute__((aligned (2))) = dobject_wood02_DL_007968; -#endif - -#define dobject_wood02_Blob_007A00 "__OTR__objects/object_wood02/object_wood02_Blob_007A00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_Blob_007A00[] = dobject_wood02_Blob_007A00; -#else -static const char object_wood02_Blob_007A00[] __attribute__((aligned (2))) = dobject_wood02_Blob_007A00; -#endif - -#define dobject_wood02_DL_007AD0 "__OTR__objects/object_wood02/object_wood02_DL_007AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_007AD0[] = dobject_wood02_DL_007AD0; -#else -static const char object_wood02_DL_007AD0[] __attribute__((aligned (2))) = dobject_wood02_DL_007AD0; -#endif - -#define dobject_wood02_DL_007CA0 "__OTR__objects/object_wood02/object_wood02_DL_007CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_007CA0[] = dobject_wood02_DL_007CA0; -#else -static const char object_wood02_DL_007CA0[] __attribute__((aligned (2))) = dobject_wood02_DL_007CA0; -#endif - -#define dobject_wood02_DL_007D38 "__OTR__objects/object_wood02/object_wood02_DL_007D38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_007D38[] = dobject_wood02_DL_007D38; -#else -static const char object_wood02_DL_007D38[] __attribute__((aligned (2))) = dobject_wood02_DL_007D38; -#endif - -#define dobject_wood02_DL_007E20 "__OTR__objects/object_wood02/object_wood02_DL_007E20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_007E20[] = dobject_wood02_DL_007E20; -#else -static const char object_wood02_DL_007E20[] __attribute__((aligned (2))) = dobject_wood02_DL_007E20; -#endif - -#define dobject_wood02_DL_0080D0 "__OTR__objects/object_wood02/object_wood02_DL_0080D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_0080D0[] = dobject_wood02_DL_0080D0; -#else -static const char object_wood02_DL_0080D0[] __attribute__((aligned (2))) = dobject_wood02_DL_0080D0; -#endif - -#define dobject_wood02_DL_0081A8 "__OTR__objects/object_wood02/object_wood02_DL_0081A8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_0081A8[] = dobject_wood02_DL_0081A8; -#else -static const char object_wood02_DL_0081A8[] __attribute__((aligned (2))) = dobject_wood02_DL_0081A8; -#endif - -#define dobject_wood02_DL_0082B0 "__OTR__objects/object_wood02/object_wood02_DL_0082B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_0082B0[] = dobject_wood02_DL_0082B0; -#else -static const char object_wood02_DL_0082B0[] __attribute__((aligned (2))) = dobject_wood02_DL_0082B0; -#endif - -#define dobject_wood02_DL_008350 "__OTR__objects/object_wood02/object_wood02_DL_008350" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_008350[] = dobject_wood02_DL_008350; -#else -static const char object_wood02_DL_008350[] __attribute__((aligned (2))) = dobject_wood02_DL_008350; -#endif - -#define dobject_wood02_DL_0083E0 "__OTR__objects/object_wood02/object_wood02_DL_0083E0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_0083E0[] = dobject_wood02_DL_0083E0; -#else -static const char object_wood02_DL_0083E0[] __attribute__((aligned (2))) = dobject_wood02_DL_0083E0; -#endif - -#define dobject_wood02_DL_0085C0 "__OTR__objects/object_wood02/object_wood02_DL_0085C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_wood02_DL_0085C0[] = dobject_wood02_DL_0085C0; -#else -static const char object_wood02_DL_0085C0[] __attribute__((aligned (2))) = dobject_wood02_DL_0085C0; -#endif - +#include "align_asset_macro.h" + +#define dobject_wood02_DL_000090 "__OTR__objects/object_wood02/object_wood02_DL_000090" +static const ALIGN_ASSET(2) char object_wood02_DL_000090[] = dobject_wood02_DL_000090; + +#define dobject_wood02_DL_000160 "__OTR__objects/object_wood02/object_wood02_DL_000160" +static const ALIGN_ASSET(2) char object_wood02_DL_000160[] = dobject_wood02_DL_000160; + +#define dobject_wood02_DL_000340 "__OTR__objects/object_wood02/object_wood02_DL_000340" +static const ALIGN_ASSET(2) char object_wood02_DL_000340[] = dobject_wood02_DL_000340; + +#define dobject_wood02_DL_000440 "__OTR__objects/object_wood02/object_wood02_DL_000440" +static const ALIGN_ASSET(2) char object_wood02_DL_000440[] = dobject_wood02_DL_000440; + +#define dobject_wood02_Tex_0004D0 "__OTR__objects/object_wood02/object_wood02_Tex_0004D0" +static const ALIGN_ASSET(2) char object_wood02_Tex_0004D0[] = dobject_wood02_Tex_0004D0; + +#define dobject_wood02_DL_000700 "__OTR__objects/object_wood02/object_wood02_DL_000700" +static const ALIGN_ASSET(2) char object_wood02_DL_000700[] = dobject_wood02_DL_000700; + +#define dobject_wood02_Tex_000790 "__OTR__objects/object_wood02/object_wood02_Tex_000790" +static const ALIGN_ASSET(2) char object_wood02_Tex_000790[] = dobject_wood02_Tex_000790; + +#define dobject_wood02_Tex_000F90 "__OTR__objects/object_wood02/object_wood02_Tex_000F90" +static const ALIGN_ASSET(2) char object_wood02_Tex_000F90[] = dobject_wood02_Tex_000F90; + +#define dobject_wood02_Tex_001790 "__OTR__objects/object_wood02/object_wood02_Tex_001790" +static const ALIGN_ASSET(2) char object_wood02_Tex_001790[] = dobject_wood02_Tex_001790; + +#define dobject_wood02_Tex_002790 "__OTR__objects/object_wood02/object_wood02_Tex_002790" +static const ALIGN_ASSET(2) char object_wood02_Tex_002790[] = dobject_wood02_Tex_002790; + +#define dobject_wood02_Tex_002F90 "__OTR__objects/object_wood02/object_wood02_Tex_002F90" +static const ALIGN_ASSET(2) char object_wood02_Tex_002F90[] = dobject_wood02_Tex_002F90; + +#define dobject_wood02_Tex_003790 "__OTR__objects/object_wood02/object_wood02_Tex_003790" +static const ALIGN_ASSET(2) char object_wood02_Tex_003790[] = dobject_wood02_Tex_003790; + +#define dobject_wood02_Tex_004790 "__OTR__objects/object_wood02/object_wood02_Tex_004790" +static const ALIGN_ASSET(2) char object_wood02_Tex_004790[] = dobject_wood02_Tex_004790; + +#define dobject_wood02_Tex_004F90 "__OTR__objects/object_wood02/object_wood02_Tex_004F90" +static const ALIGN_ASSET(2) char object_wood02_Tex_004F90[] = dobject_wood02_Tex_004F90; + +#define dobject_wood02_Tex_005F90 "__OTR__objects/object_wood02/object_wood02_Tex_005F90" +static const ALIGN_ASSET(2) char object_wood02_Tex_005F90[] = dobject_wood02_Tex_005F90; + +#define dobject_wood02_Tex_006790 "__OTR__objects/object_wood02/object_wood02_Tex_006790" +static const ALIGN_ASSET(2) char object_wood02_Tex_006790[] = dobject_wood02_Tex_006790; + +#define dobject_wood02_Tex_006F90 "__OTR__objects/object_wood02/object_wood02_Tex_006F90" +static const ALIGN_ASSET(2) char object_wood02_Tex_006F90[] = dobject_wood02_Tex_006F90; + +#define dobject_wood02_DL_0078D0 "__OTR__objects/object_wood02/object_wood02_DL_0078D0" +static const ALIGN_ASSET(2) char object_wood02_DL_0078D0[] = dobject_wood02_DL_0078D0; + +#define dobject_wood02_DL_007968 "__OTR__objects/object_wood02/object_wood02_DL_007968" +static const ALIGN_ASSET(2) char object_wood02_DL_007968[] = dobject_wood02_DL_007968; + +#define dobject_wood02_Blob_007A00 "__OTR__objects/object_wood02/object_wood02_Blob_007A00" +static const ALIGN_ASSET(2) char object_wood02_Blob_007A00[] = dobject_wood02_Blob_007A00; + +#define dobject_wood02_DL_007AD0 "__OTR__objects/object_wood02/object_wood02_DL_007AD0" +static const ALIGN_ASSET(2) char object_wood02_DL_007AD0[] = dobject_wood02_DL_007AD0; + +#define dobject_wood02_DL_007CA0 "__OTR__objects/object_wood02/object_wood02_DL_007CA0" +static const ALIGN_ASSET(2) char object_wood02_DL_007CA0[] = dobject_wood02_DL_007CA0; + +#define dobject_wood02_DL_007D38 "__OTR__objects/object_wood02/object_wood02_DL_007D38" +static const ALIGN_ASSET(2) char object_wood02_DL_007D38[] = dobject_wood02_DL_007D38; + +#define dobject_wood02_DL_007E20 "__OTR__objects/object_wood02/object_wood02_DL_007E20" +static const ALIGN_ASSET(2) char object_wood02_DL_007E20[] = dobject_wood02_DL_007E20; + +#define dobject_wood02_DL_0080D0 "__OTR__objects/object_wood02/object_wood02_DL_0080D0" +static const ALIGN_ASSET(2) char object_wood02_DL_0080D0[] = dobject_wood02_DL_0080D0; + +#define dobject_wood02_DL_0081A8 "__OTR__objects/object_wood02/object_wood02_DL_0081A8" +static const ALIGN_ASSET(2) char object_wood02_DL_0081A8[] = dobject_wood02_DL_0081A8; + +#define dobject_wood02_DL_0082B0 "__OTR__objects/object_wood02/object_wood02_DL_0082B0" +static const ALIGN_ASSET(2) char object_wood02_DL_0082B0[] = dobject_wood02_DL_0082B0; + +#define dobject_wood02_DL_008350 "__OTR__objects/object_wood02/object_wood02_DL_008350" +static const ALIGN_ASSET(2) char object_wood02_DL_008350[] = dobject_wood02_DL_008350; + +#define dobject_wood02_DL_0083E0 "__OTR__objects/object_wood02/object_wood02_DL_0083E0" +static const ALIGN_ASSET(2) char object_wood02_DL_0083E0[] = dobject_wood02_DL_0083E0; + +#define dobject_wood02_DL_0085C0 "__OTR__objects/object_wood02/object_wood02_DL_0085C0" +static const ALIGN_ASSET(2) char object_wood02_DL_0085C0[] = dobject_wood02_DL_0085C0; \ No newline at end of file diff --git a/soh/assets/objects/object_xc/object_xc.h b/soh/assets/objects/object_xc/object_xc.h index eff4db47e..a9c02413c 100644 --- a/soh/assets/objects/object_xc/object_xc.h +++ b/soh/assets/objects/object_xc/object_xc.h @@ -1,499 +1,216 @@ #pragma once -#define dgSheikSkel "__OTR__objects/object_xc/gSheikSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkel[] = dgSheikSkel; -#else -static const char gSheikSkel[] __attribute__((aligned (2))) = dgSheikSkel; -#endif - -#define dgSheikPlayingHarpAnim "__OTR__objects/object_xc/gSheikPlayingHarpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikPlayingHarpAnim[] = dgSheikPlayingHarpAnim; -#else -static const char gSheikPlayingHarpAnim[] __attribute__((aligned (2))) = dgSheikPlayingHarpAnim; -#endif - -#define dgSheikShowingTriforceOnHandAnim "__OTR__objects/object_xc/gSheikShowingTriforceOnHandAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikShowingTriforceOnHandAnim[] = dgSheikShowingTriforceOnHandAnim; -#else -static const char gSheikShowingTriforceOnHandAnim[] __attribute__((aligned (2))) = dgSheikShowingTriforceOnHandAnim; -#endif - -#define dgSheikShowingTriforceOnHandIdleAnim "__OTR__objects/object_xc/gSheikShowingTriforceOnHandIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikShowingTriforceOnHandIdleAnim[] = dgSheikShowingTriforceOnHandIdleAnim; -#else -static const char gSheikShowingTriforceOnHandIdleAnim[] __attribute__((aligned (2))) = dgSheikShowingTriforceOnHandIdleAnim; -#endif - -#define dgSheikPlayingHarp2Anim "__OTR__objects/object_xc/gSheikPlayingHarp2Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikPlayingHarp2Anim[] = dgSheikPlayingHarp2Anim; -#else -static const char gSheikPlayingHarp2Anim[] __attribute__((aligned (2))) = dgSheikPlayingHarp2Anim; -#endif - -#define dgSheikPlayingHarp3Anim "__OTR__objects/object_xc/gSheikPlayingHarp3Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikPlayingHarp3Anim[] = dgSheikPlayingHarp3Anim; -#else -static const char gSheikPlayingHarp3Anim[] __attribute__((aligned (2))) = dgSheikPlayingHarp3Anim; -#endif - -#define dgSheikPlayingHarp4Anim "__OTR__objects/object_xc/gSheikPlayingHarp4Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikPlayingHarp4Anim[] = dgSheikPlayingHarp4Anim; -#else -static const char gSheikPlayingHarp4Anim[] __attribute__((aligned (2))) = dgSheikPlayingHarp4Anim; -#endif - -#define dgSheikIdleAnim "__OTR__objects/object_xc/gSheikIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikIdleAnim[] = dgSheikIdleAnim; -#else -static const char gSheikIdleAnim[] __attribute__((aligned (2))) = dgSheikIdleAnim; -#endif - -#define dobject_xc_TLUT_004A40 "__OTR__objects/object_xc/object_xc_TLUT_004A40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xc_TLUT_004A40[] = dobject_xc_TLUT_004A40; -#else -static const char object_xc_TLUT_004A40[] __attribute__((aligned (2))) = dobject_xc_TLUT_004A40; -#endif - -#define dgSheikWalkingAnim "__OTR__objects/object_xc/gSheikWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikWalkingAnim[] = dgSheikWalkingAnim; -#else -static const char gSheikWalkingAnim[] __attribute__((aligned (2))) = dgSheikWalkingAnim; -#endif - -#define dgSheikArmsCrossedIdleAnim "__OTR__objects/object_xc/gSheikArmsCrossedIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikArmsCrossedIdleAnim[] = dgSheikArmsCrossedIdleAnim; -#else -static const char gSheikArmsCrossedIdleAnim[] __attribute__((aligned (2))) = dgSheikArmsCrossedIdleAnim; -#endif - -#define dgSheikFallingFromContortionsAnim "__OTR__objects/object_xc/gSheikFallingFromContortionsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikFallingFromContortionsAnim[] = dgSheikFallingFromContortionsAnim; -#else -static const char gSheikFallingFromContortionsAnim[] __attribute__((aligned (2))) = dgSheikFallingFromContortionsAnim; -#endif - -#define dgSheikContortionsAnim "__OTR__objects/object_xc/gSheikContortionsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikContortionsAnim[] = dgSheikContortionsAnim; -#else -static const char gSheikContortionsAnim[] __attribute__((aligned (2))) = dgSheikContortionsAnim; -#endif - -#define dgSheikPlayingHarp5Anim "__OTR__objects/object_xc/gSheikPlayingHarp5Anim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikPlayingHarp5Anim[] = dgSheikPlayingHarp5Anim; -#else -static const char gSheikPlayingHarp5Anim[] __attribute__((aligned (2))) = dgSheikPlayingHarp5Anim; -#endif - -#define dgSheikInitialHarpAnim "__OTR__objects/object_xc/gSheikInitialHarpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikInitialHarpAnim[] = dgSheikInitialHarpAnim; -#else -static const char gSheikInitialHarpAnim[] __attribute__((aligned (2))) = dgSheikInitialHarpAnim; -#endif - -#define dgSheikDefenseStanceAnim "__OTR__objects/object_xc/gSheikDefenseStanceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikDefenseStanceAnim[] = dgSheikDefenseStanceAnim; -#else -static const char gSheikDefenseStanceAnim[] __attribute__((aligned (2))) = dgSheikDefenseStanceAnim; -#endif - -#define dgSheikThrowingNutAnim "__OTR__objects/object_xc/gSheikThrowingNutAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikThrowingNutAnim[] = dgSheikThrowingNutAnim; -#else -static const char gSheikThrowingNutAnim[] __attribute__((aligned (2))) = dgSheikThrowingNutAnim; -#endif - -#define dgSheikKneelingAnim "__OTR__objects/object_xc/gSheikKneelingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikKneelingAnim[] = dgSheikKneelingAnim; -#else -static const char gSheikKneelingAnim[] __attribute__((aligned (2))) = dgSheikKneelingAnim; -#endif - -#define dgSheikHittingGroundAnim "__OTR__objects/object_xc/gSheikHittingGroundAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikHittingGroundAnim[] = dgSheikHittingGroundAnim; -#else -static const char gSheikHittingGroundAnim[] __attribute__((aligned (2))) = dgSheikHittingGroundAnim; -#endif - -#define dgSheikAnim_01A048 "__OTR__objects/object_xc/gSheikAnim_01A048" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikAnim_01A048[] = dgSheikAnim_01A048; -#else -static const char gSheikAnim_01A048[] __attribute__((aligned (2))) = dgSheikAnim_01A048; -#endif - -#define dgSheikPullingOutHarpAnim "__OTR__objects/object_xc/gSheikPullingOutHarpAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikPullingOutHarpAnim[] = dgSheikPullingOutHarpAnim; -#else -static const char gSheikPullingOutHarpAnim[] __attribute__((aligned (2))) = dgSheikPullingOutHarpAnim; -#endif - -#define dgSheikFallingFromSkyAnim "__OTR__objects/object_xc/gSheikFallingFromSkyAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikFallingFromSkyAnim[] = dgSheikFallingFromSkyAnim; -#else -static const char gSheikFallingFromSkyAnim[] __attribute__((aligned (2))) = dgSheikFallingFromSkyAnim; -#endif - -#define dgSheikEyeOpenTex "__OTR__objects/object_xc/gSheikEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikEyeOpenTex[] = dgSheikEyeOpenTex; -#else -static const char gSheikEyeOpenTex[] __attribute__((aligned (2))) = dgSheikEyeOpenTex; -#endif - -#define dgSheikEyeHalfClosedTex "__OTR__objects/object_xc/gSheikEyeHalfClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikEyeHalfClosedTex[] = dgSheikEyeHalfClosedTex; -#else -static const char gSheikEyeHalfClosedTex[] __attribute__((aligned (2))) = dgSheikEyeHalfClosedTex; -#endif - -#define dgSheikEyeShutTex "__OTR__objects/object_xc/gSheikEyeShutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikEyeShutTex[] = dgSheikEyeShutTex; -#else -static const char gSheikEyeShutTex[] __attribute__((aligned (2))) = dgSheikEyeShutTex; -#endif - -#define dgSheikEyeSquintingTex "__OTR__objects/object_xc/gSheikEyeSquintingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikEyeSquintingTex[] = dgSheikEyeSquintingTex; -#else -static const char gSheikEyeSquintingTex[] __attribute__((aligned (2))) = dgSheikEyeSquintingTex; -#endif - -#define dgSheikHarpDL "__OTR__objects/object_xc/gSheikHarpDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikHarpDL[] = dgSheikHarpDL; -#else -static const char gSheikHarpDL[] __attribute__((aligned (2))) = dgSheikHarpDL; -#endif - -#define dgSheikDL_011620 "__OTR__objects/object_xc/gSheikDL_011620" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikDL_011620[] = dgSheikDL_011620; -#else -static const char gSheikDL_011620[] __attribute__((aligned (2))) = dgSheikDL_011620; -#endif - -#define dgSheikDL_012970 "__OTR__objects/object_xc/gSheikDL_012970" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikDL_012970[] = dgSheikDL_012970; -#else -static const char gSheikDL_012970[] __attribute__((aligned (2))) = dgSheikDL_012970; -#endif - -#define dgSheikSkelLimbsLimb_0129FCDL_00EA98 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_0129FCDL_00EA98" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_0129FCDL_00EA98[] = dgSheikSkelLimbsLimb_0129FCDL_00EA98; -#else -static const char gSheikSkelLimbsLimb_0129FCDL_00EA98[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_0129FCDL_00EA98; -#endif - -#define dgSheikSkelLimbsLimb_012A08DL_00F150 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A08DL_00F150" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A08DL_00F150[] = dgSheikSkelLimbsLimb_012A08DL_00F150; -#else -static const char gSheikSkelLimbsLimb_012A08DL_00F150[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A08DL_00F150; -#endif - -#define dgSheikSkelLimbsLimb_012A14DL_00F320 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A14DL_00F320" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A14DL_00F320[] = dgSheikSkelLimbsLimb_012A14DL_00F320; -#else -static const char gSheikSkelLimbsLimb_012A14DL_00F320[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A14DL_00F320; -#endif - -#define dgSheikSkelLimbsLimb_012A20DL_00F510 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A20DL_00F510" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A20DL_00F510[] = dgSheikSkelLimbsLimb_012A20DL_00F510; -#else -static const char gSheikSkelLimbsLimb_012A20DL_00F510[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A20DL_00F510; -#endif - -#define dgSheikSkelLimbsLimb_012A2CDL_00EBE0 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A2CDL_00EBE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A2CDL_00EBE0[] = dgSheikSkelLimbsLimb_012A2CDL_00EBE0; -#else -static const char gSheikSkelLimbsLimb_012A2CDL_00EBE0[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A2CDL_00EBE0; -#endif - -#define dgSheikSkelLimbsLimb_012A38DL_00EDB0 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A38DL_00EDB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A38DL_00EDB0[] = dgSheikSkelLimbsLimb_012A38DL_00EDB0; -#else -static const char gSheikSkelLimbsLimb_012A38DL_00EDB0[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A38DL_00EDB0; -#endif - -#define dgSheikSkelLimbsLimb_012A44DL_00EFA0 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A44DL_00EFA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A44DL_00EFA0[] = dgSheikSkelLimbsLimb_012A44DL_00EFA0; -#else -static const char gSheikSkelLimbsLimb_012A44DL_00EFA0[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A44DL_00EFA0; -#endif - -#define dgSheikSkelLimbsLimb_012A50DL_00D120 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A50DL_00D120" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A50DL_00D120[] = dgSheikSkelLimbsLimb_012A50DL_00D120; -#else -static const char gSheikSkelLimbsLimb_012A50DL_00D120[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A50DL_00D120; -#endif - -#define dgSheikSkelLimbsLimb_012A5CDL_00E460 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A5CDL_00E460" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A5CDL_00E460[] = dgSheikSkelLimbsLimb_012A5CDL_00E460; -#else -static const char gSheikSkelLimbsLimb_012A5CDL_00E460[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A5CDL_00E460; -#endif - -#define dgSheikSkelLimbsLimb_012A68DL_00E630 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A68DL_00E630" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A68DL_00E630[] = dgSheikSkelLimbsLimb_012A68DL_00E630; -#else -static const char gSheikSkelLimbsLimb_012A68DL_00E630[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A68DL_00E630; -#endif - -#define dgSheikSkelLimbsLimb_012A74DL_00E858 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A74DL_00E858" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A74DL_00E858[] = dgSheikSkelLimbsLimb_012A74DL_00E858; -#else -static const char gSheikSkelLimbsLimb_012A74DL_00E858[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A74DL_00E858; -#endif - -#define dgSheikSkelLimbsLimb_012A80DL_00DE28 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A80DL_00DE28" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A80DL_00DE28[] = dgSheikSkelLimbsLimb_012A80DL_00DE28; -#else -static const char gSheikSkelLimbsLimb_012A80DL_00DE28[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A80DL_00DE28; -#endif - -#define dgSheikSkelLimbsLimb_012A8CDL_00DFF8 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A8CDL_00DFF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A8CDL_00DFF8[] = dgSheikSkelLimbsLimb_012A8CDL_00DFF8; -#else -static const char gSheikSkelLimbsLimb_012A8CDL_00DFF8[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A8CDL_00DFF8; -#endif - -#define dgSheikSkelLimbsLimb_012A98DL_00E220 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A98DL_00E220" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012A98DL_00E220[] = dgSheikSkelLimbsLimb_012A98DL_00E220; -#else -static const char gSheikSkelLimbsLimb_012A98DL_00E220[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012A98DL_00E220; -#endif - -#define dgSheikSkelLimbsLimb_012AA4DL_00D710 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012AA4DL_00D710" -#ifdef _WIN32 -static const __declspec(align(2)) char gSheikSkelLimbsLimb_012AA4DL_00D710[] = dgSheikSkelLimbsLimb_012AA4DL_00D710; -#else -static const char gSheikSkelLimbsLimb_012AA4DL_00D710[] __attribute__((aligned (2))) = dgSheikSkelLimbsLimb_012AA4DL_00D710; -#endif - -#define dobject_xcTex_00F790 "__OTR__objects/object_xc/object_xcTex_00F790" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_00F790[] = dobject_xcTex_00F790; -#else -static const char object_xcTex_00F790[] __attribute__((aligned (2))) = dobject_xcTex_00F790; -#endif - -#define dobject_xcTLUT_00F6C0 "__OTR__objects/object_xc/object_xcTLUT_00F6C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTLUT_00F6C0[] = dobject_xcTLUT_00F6C0; -#else -static const char object_xcTLUT_00F6C0[] __attribute__((aligned (2))) = dobject_xcTLUT_00F6C0; -#endif - -#define dobject_xcTex_00F7D0 "__OTR__objects/object_xc/object_xcTex_00F7D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_00F7D0[] = dobject_xcTex_00F7D0; -#else -static const char object_xcTex_00F7D0[] __attribute__((aligned (2))) = dobject_xcTex_00F7D0; -#endif - -#define dobject_xcTLUT_00F720 "__OTR__objects/object_xc/object_xcTLUT_00F720" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTLUT_00F720[] = dobject_xcTLUT_00F720; -#else -static const char object_xcTLUT_00F720[] __attribute__((aligned (2))) = dobject_xcTLUT_00F720; -#endif - -#define dobject_xcTex_00FBD0 "__OTR__objects/object_xc/object_xcTex_00FBD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_00FBD0[] = dobject_xcTex_00FBD0; -#else -static const char object_xcTex_00FBD0[] __attribute__((aligned (2))) = dobject_xcTex_00FBD0; -#endif - -#define dobject_xcTex_00FD10 "__OTR__objects/object_xc/object_xcTex_00FD10" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_00FD10[] = dobject_xcTex_00FD10; -#else -static const char object_xcTex_00FD10[] __attribute__((aligned (2))) = dobject_xcTex_00FD10; -#endif - -#define dobject_xcTex_00FD90 "__OTR__objects/object_xc/object_xcTex_00FD90" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_00FD90[] = dobject_xcTex_00FD90; -#else -static const char object_xcTex_00FD90[] __attribute__((aligned (2))) = dobject_xcTex_00FD90; -#endif - -#define dobject_xcTex_00FDD0 "__OTR__objects/object_xc/object_xcTex_00FDD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_00FDD0[] = dobject_xcTex_00FDD0; -#else -static const char object_xcTex_00FDD0[] __attribute__((aligned (2))) = dobject_xcTex_00FDD0; -#endif - -#define dobject_xcTex_0101D0 "__OTR__objects/object_xc/object_xcTex_0101D0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_0101D0[] = dobject_xcTex_0101D0; -#else -static const char object_xcTex_0101D0[] __attribute__((aligned (2))) = dobject_xcTex_0101D0; -#endif - -#define dobject_xcTex_00FCD0 "__OTR__objects/object_xc/object_xcTex_00FCD0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_00FCD0[] = dobject_xcTex_00FCD0; -#else -static const char object_xcTex_00FCD0[] __attribute__((aligned (2))) = dobject_xcTex_00FCD0; -#endif - -#define dobject_xcTex_011930 "__OTR__objects/object_xc/object_xcTex_011930" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_011930[] = dobject_xcTex_011930; -#else -static const char object_xcTex_011930[] __attribute__((aligned (2))) = dobject_xcTex_011930; -#endif - -#define dobject_xcTLUT_004840 "__OTR__objects/object_xc/object_xcTLUT_004840" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTLUT_004840[] = dobject_xcTLUT_004840; -#else -static const char object_xcTLUT_004840[] __attribute__((aligned (2))) = dobject_xcTLUT_004840; -#endif - -#define dobject_xcTex_006D80 "__OTR__objects/object_xc/object_xcTex_006D80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_006D80[] = dobject_xcTex_006D80; -#else -static const char object_xcTex_006D80[] __attribute__((aligned (2))) = dobject_xcTex_006D80; -#endif - -#define dobject_xcTex_007280 "__OTR__objects/object_xc/object_xcTex_007280" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_007280[] = dobject_xcTex_007280; -#else -static const char object_xcTex_007280[] __attribute__((aligned (2))) = dobject_xcTex_007280; -#endif - -#define dobject_xcTex_007380 "__OTR__objects/object_xc/object_xcTex_007380" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_007380[] = dobject_xcTex_007380; -#else -static const char object_xcTex_007380[] __attribute__((aligned (2))) = dobject_xcTex_007380; -#endif - -#define dobject_xcTex_007B80 "__OTR__objects/object_xc/object_xcTex_007B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_007B80[] = dobject_xcTex_007B80; -#else -static const char object_xcTex_007B80[] __attribute__((aligned (2))) = dobject_xcTex_007B80; -#endif - -#define dobject_xcTex_008380 "__OTR__objects/object_xc/object_xcTex_008380" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_008380[] = dobject_xcTex_008380; -#else -static const char object_xcTex_008380[] __attribute__((aligned (2))) = dobject_xcTex_008380; -#endif - -#define dobject_xcTex_008B80 "__OTR__objects/object_xc/object_xcTex_008B80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_008B80[] = dobject_xcTex_008B80; -#else -static const char object_xcTex_008B80[] __attribute__((aligned (2))) = dobject_xcTex_008B80; -#endif - -#define dobject_xcTex_008C00 "__OTR__objects/object_xc/object_xcTex_008C00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_008C00[] = dobject_xcTex_008C00; -#else -static const char object_xcTex_008C00[] __attribute__((aligned (2))) = dobject_xcTex_008C00; -#endif - -#define dobject_xcTex_004C40 "__OTR__objects/object_xc/object_xcTex_004C40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_004C40[] = dobject_xcTex_004C40; -#else -static const char object_xcTex_004C40[] __attribute__((aligned (2))) = dobject_xcTex_004C40; -#endif - -#define dobject_xcTex_0060C0 "__OTR__objects/object_xc/object_xcTex_0060C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_0060C0[] = dobject_xcTex_0060C0; -#else -static const char object_xcTex_0060C0[] __attribute__((aligned (2))) = dobject_xcTex_0060C0; -#endif - -#define dobject_xcTex_0064C0 "__OTR__objects/object_xc/object_xcTex_0064C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_0064C0[] = dobject_xcTex_0064C0; -#else -static const char object_xcTex_0064C0[] __attribute__((aligned (2))) = dobject_xcTex_0064C0; -#endif - -#define dobject_xcTex_006E80 "__OTR__objects/object_xc/object_xcTex_006E80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_006E80[] = dobject_xcTex_006E80; -#else -static const char object_xcTex_006E80[] __attribute__((aligned (2))) = dobject_xcTex_006E80; -#endif - -#define dobject_xcTex_004C80 "__OTR__objects/object_xc/object_xcTex_004C80" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_004C80[] = dobject_xcTex_004C80; -#else -static const char object_xcTex_004C80[] __attribute__((aligned (2))) = dobject_xcTex_004C80; -#endif - -#define dobject_xcTex_005CC0 "__OTR__objects/object_xc/object_xcTex_005CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_005CC0[] = dobject_xcTex_005CC0; -#else -static const char object_xcTex_005CC0[] __attribute__((aligned (2))) = dobject_xcTex_005CC0; -#endif - -#define dobject_xcTex_006CC0 "__OTR__objects/object_xc/object_xcTex_006CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_006CC0[] = dobject_xcTex_006CC0; -#else -static const char object_xcTex_006CC0[] __attribute__((aligned (2))) = dobject_xcTex_006CC0; -#endif - -#define dobject_xcTex_006D40 "__OTR__objects/object_xc/object_xcTex_006D40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_xcTex_006D40[] = dobject_xcTex_006D40; -#else -static const char object_xcTex_006D40[] __attribute__((aligned (2))) = dobject_xcTex_006D40; -#endif - +#include "align_asset_macro.h" + +#define dgSheikSkel "__OTR__objects/object_xc/gSheikSkel" +static const ALIGN_ASSET(2) char gSheikSkel[] = dgSheikSkel; + +#define dgSheikPlayingHarpAnim "__OTR__objects/object_xc/gSheikPlayingHarpAnim" +static const ALIGN_ASSET(2) char gSheikPlayingHarpAnim[] = dgSheikPlayingHarpAnim; + +#define dgSheikShowingTriforceOnHandAnim "__OTR__objects/object_xc/gSheikShowingTriforceOnHandAnim" +static const ALIGN_ASSET(2) char gSheikShowingTriforceOnHandAnim[] = dgSheikShowingTriforceOnHandAnim; + +#define dgSheikShowingTriforceOnHandIdleAnim "__OTR__objects/object_xc/gSheikShowingTriforceOnHandIdleAnim" +static const ALIGN_ASSET(2) char gSheikShowingTriforceOnHandIdleAnim[] = dgSheikShowingTriforceOnHandIdleAnim; + +#define dgSheikPlayingHarp2Anim "__OTR__objects/object_xc/gSheikPlayingHarp2Anim" +static const ALIGN_ASSET(2) char gSheikPlayingHarp2Anim[] = dgSheikPlayingHarp2Anim; + +#define dgSheikPlayingHarp3Anim "__OTR__objects/object_xc/gSheikPlayingHarp3Anim" +static const ALIGN_ASSET(2) char gSheikPlayingHarp3Anim[] = dgSheikPlayingHarp3Anim; + +#define dgSheikPlayingHarp4Anim "__OTR__objects/object_xc/gSheikPlayingHarp4Anim" +static const ALIGN_ASSET(2) char gSheikPlayingHarp4Anim[] = dgSheikPlayingHarp4Anim; + +#define dgSheikIdleAnim "__OTR__objects/object_xc/gSheikIdleAnim" +static const ALIGN_ASSET(2) char gSheikIdleAnim[] = dgSheikIdleAnim; + +#define dobject_xc_TLUT_004A40 "__OTR__objects/object_xc/object_xc_TLUT_004A40" +static const ALIGN_ASSET(2) char object_xc_TLUT_004A40[] = dobject_xc_TLUT_004A40; + +#define dgSheikWalkingAnim "__OTR__objects/object_xc/gSheikWalkingAnim" +static const ALIGN_ASSET(2) char gSheikWalkingAnim[] = dgSheikWalkingAnim; + +#define dgSheikArmsCrossedIdleAnim "__OTR__objects/object_xc/gSheikArmsCrossedIdleAnim" +static const ALIGN_ASSET(2) char gSheikArmsCrossedIdleAnim[] = dgSheikArmsCrossedIdleAnim; + +#define dgSheikFallingFromContortionsAnim "__OTR__objects/object_xc/gSheikFallingFromContortionsAnim" +static const ALIGN_ASSET(2) char gSheikFallingFromContortionsAnim[] = dgSheikFallingFromContortionsAnim; + +#define dgSheikContortionsAnim "__OTR__objects/object_xc/gSheikContortionsAnim" +static const ALIGN_ASSET(2) char gSheikContortionsAnim[] = dgSheikContortionsAnim; + +#define dgSheikPlayingHarp5Anim "__OTR__objects/object_xc/gSheikPlayingHarp5Anim" +static const ALIGN_ASSET(2) char gSheikPlayingHarp5Anim[] = dgSheikPlayingHarp5Anim; + +#define dgSheikInitialHarpAnim "__OTR__objects/object_xc/gSheikInitialHarpAnim" +static const ALIGN_ASSET(2) char gSheikInitialHarpAnim[] = dgSheikInitialHarpAnim; + +#define dgSheikDefenseStanceAnim "__OTR__objects/object_xc/gSheikDefenseStanceAnim" +static const ALIGN_ASSET(2) char gSheikDefenseStanceAnim[] = dgSheikDefenseStanceAnim; + +#define dgSheikThrowingNutAnim "__OTR__objects/object_xc/gSheikThrowingNutAnim" +static const ALIGN_ASSET(2) char gSheikThrowingNutAnim[] = dgSheikThrowingNutAnim; + +#define dgSheikKneelingAnim "__OTR__objects/object_xc/gSheikKneelingAnim" +static const ALIGN_ASSET(2) char gSheikKneelingAnim[] = dgSheikKneelingAnim; + +#define dgSheikHittingGroundAnim "__OTR__objects/object_xc/gSheikHittingGroundAnim" +static const ALIGN_ASSET(2) char gSheikHittingGroundAnim[] = dgSheikHittingGroundAnim; + +#define dgSheikAnim_01A048 "__OTR__objects/object_xc/gSheikAnim_01A048" +static const ALIGN_ASSET(2) char gSheikAnim_01A048[] = dgSheikAnim_01A048; + +#define dgSheikPullingOutHarpAnim "__OTR__objects/object_xc/gSheikPullingOutHarpAnim" +static const ALIGN_ASSET(2) char gSheikPullingOutHarpAnim[] = dgSheikPullingOutHarpAnim; + +#define dgSheikFallingFromSkyAnim "__OTR__objects/object_xc/gSheikFallingFromSkyAnim" +static const ALIGN_ASSET(2) char gSheikFallingFromSkyAnim[] = dgSheikFallingFromSkyAnim; + +#define dgSheikEyeOpenTex "__OTR__objects/object_xc/gSheikEyeOpenTex" +static const ALIGN_ASSET(2) char gSheikEyeOpenTex[] = dgSheikEyeOpenTex; + +#define dgSheikEyeHalfClosedTex "__OTR__objects/object_xc/gSheikEyeHalfClosedTex" +static const ALIGN_ASSET(2) char gSheikEyeHalfClosedTex[] = dgSheikEyeHalfClosedTex; + +#define dgSheikEyeShutTex "__OTR__objects/object_xc/gSheikEyeShutTex" +static const ALIGN_ASSET(2) char gSheikEyeShutTex[] = dgSheikEyeShutTex; + +#define dgSheikEyeSquintingTex "__OTR__objects/object_xc/gSheikEyeSquintingTex" +static const ALIGN_ASSET(2) char gSheikEyeSquintingTex[] = dgSheikEyeSquintingTex; + +#define dgSheikHarpDL "__OTR__objects/object_xc/gSheikHarpDL" +static const ALIGN_ASSET(2) char gSheikHarpDL[] = dgSheikHarpDL; + +#define dgSheikDL_011620 "__OTR__objects/object_xc/gSheikDL_011620" +static const ALIGN_ASSET(2) char gSheikDL_011620[] = dgSheikDL_011620; + +#define dgSheikDL_012970 "__OTR__objects/object_xc/gSheikDL_012970" +static const ALIGN_ASSET(2) char gSheikDL_012970[] = dgSheikDL_012970; + +#define dgSheikSkelLimbsLimb_0129FCDL_00EA98 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_0129FCDL_00EA98" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_0129FCDL_00EA98[] = dgSheikSkelLimbsLimb_0129FCDL_00EA98; + +#define dgSheikSkelLimbsLimb_012A08DL_00F150 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A08DL_00F150" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A08DL_00F150[] = dgSheikSkelLimbsLimb_012A08DL_00F150; + +#define dgSheikSkelLimbsLimb_012A14DL_00F320 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A14DL_00F320" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A14DL_00F320[] = dgSheikSkelLimbsLimb_012A14DL_00F320; + +#define dgSheikSkelLimbsLimb_012A20DL_00F510 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A20DL_00F510" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A20DL_00F510[] = dgSheikSkelLimbsLimb_012A20DL_00F510; + +#define dgSheikSkelLimbsLimb_012A2CDL_00EBE0 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A2CDL_00EBE0" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A2CDL_00EBE0[] = dgSheikSkelLimbsLimb_012A2CDL_00EBE0; + +#define dgSheikSkelLimbsLimb_012A38DL_00EDB0 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A38DL_00EDB0" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A38DL_00EDB0[] = dgSheikSkelLimbsLimb_012A38DL_00EDB0; + +#define dgSheikSkelLimbsLimb_012A44DL_00EFA0 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A44DL_00EFA0" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A44DL_00EFA0[] = dgSheikSkelLimbsLimb_012A44DL_00EFA0; + +#define dgSheikSkelLimbsLimb_012A50DL_00D120 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A50DL_00D120" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A50DL_00D120[] = dgSheikSkelLimbsLimb_012A50DL_00D120; + +#define dgSheikSkelLimbsLimb_012A5CDL_00E460 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A5CDL_00E460" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A5CDL_00E460[] = dgSheikSkelLimbsLimb_012A5CDL_00E460; + +#define dgSheikSkelLimbsLimb_012A68DL_00E630 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A68DL_00E630" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A68DL_00E630[] = dgSheikSkelLimbsLimb_012A68DL_00E630; + +#define dgSheikSkelLimbsLimb_012A74DL_00E858 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A74DL_00E858" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A74DL_00E858[] = dgSheikSkelLimbsLimb_012A74DL_00E858; + +#define dgSheikSkelLimbsLimb_012A80DL_00DE28 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A80DL_00DE28" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A80DL_00DE28[] = dgSheikSkelLimbsLimb_012A80DL_00DE28; + +#define dgSheikSkelLimbsLimb_012A8CDL_00DFF8 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A8CDL_00DFF8" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A8CDL_00DFF8[] = dgSheikSkelLimbsLimb_012A8CDL_00DFF8; + +#define dgSheikSkelLimbsLimb_012A98DL_00E220 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012A98DL_00E220" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012A98DL_00E220[] = dgSheikSkelLimbsLimb_012A98DL_00E220; + +#define dgSheikSkelLimbsLimb_012AA4DL_00D710 "__OTR__objects/object_xc/gSheikSkelLimbsLimb_012AA4DL_00D710" +static const ALIGN_ASSET(2) char gSheikSkelLimbsLimb_012AA4DL_00D710[] = dgSheikSkelLimbsLimb_012AA4DL_00D710; + +#define dobject_xcTex_00F790 "__OTR__objects/object_xc/object_xcTex_00F790" +static const ALIGN_ASSET(2) char object_xcTex_00F790[] = dobject_xcTex_00F790; + +#define dobject_xcTLUT_00F6C0 "__OTR__objects/object_xc/object_xcTLUT_00F6C0" +static const ALIGN_ASSET(2) char object_xcTLUT_00F6C0[] = dobject_xcTLUT_00F6C0; + +#define dobject_xcTex_00F7D0 "__OTR__objects/object_xc/object_xcTex_00F7D0" +static const ALIGN_ASSET(2) char object_xcTex_00F7D0[] = dobject_xcTex_00F7D0; + +#define dobject_xcTLUT_00F720 "__OTR__objects/object_xc/object_xcTLUT_00F720" +static const ALIGN_ASSET(2) char object_xcTLUT_00F720[] = dobject_xcTLUT_00F720; + +#define dobject_xcTex_00FBD0 "__OTR__objects/object_xc/object_xcTex_00FBD0" +static const ALIGN_ASSET(2) char object_xcTex_00FBD0[] = dobject_xcTex_00FBD0; + +#define dobject_xcTex_00FD10 "__OTR__objects/object_xc/object_xcTex_00FD10" +static const ALIGN_ASSET(2) char object_xcTex_00FD10[] = dobject_xcTex_00FD10; + +#define dobject_xcTex_00FD90 "__OTR__objects/object_xc/object_xcTex_00FD90" +static const ALIGN_ASSET(2) char object_xcTex_00FD90[] = dobject_xcTex_00FD90; + +#define dobject_xcTex_00FDD0 "__OTR__objects/object_xc/object_xcTex_00FDD0" +static const ALIGN_ASSET(2) char object_xcTex_00FDD0[] = dobject_xcTex_00FDD0; + +#define dobject_xcTex_0101D0 "__OTR__objects/object_xc/object_xcTex_0101D0" +static const ALIGN_ASSET(2) char object_xcTex_0101D0[] = dobject_xcTex_0101D0; + +#define dobject_xcTex_00FCD0 "__OTR__objects/object_xc/object_xcTex_00FCD0" +static const ALIGN_ASSET(2) char object_xcTex_00FCD0[] = dobject_xcTex_00FCD0; + +#define dobject_xcTex_011930 "__OTR__objects/object_xc/object_xcTex_011930" +static const ALIGN_ASSET(2) char object_xcTex_011930[] = dobject_xcTex_011930; + +#define dobject_xcTLUT_004840 "__OTR__objects/object_xc/object_xcTLUT_004840" +static const ALIGN_ASSET(2) char object_xcTLUT_004840[] = dobject_xcTLUT_004840; + +#define dobject_xcTex_006D80 "__OTR__objects/object_xc/object_xcTex_006D80" +static const ALIGN_ASSET(2) char object_xcTex_006D80[] = dobject_xcTex_006D80; + +#define dobject_xcTex_007280 "__OTR__objects/object_xc/object_xcTex_007280" +static const ALIGN_ASSET(2) char object_xcTex_007280[] = dobject_xcTex_007280; + +#define dobject_xcTex_007380 "__OTR__objects/object_xc/object_xcTex_007380" +static const ALIGN_ASSET(2) char object_xcTex_007380[] = dobject_xcTex_007380; + +#define dobject_xcTex_007B80 "__OTR__objects/object_xc/object_xcTex_007B80" +static const ALIGN_ASSET(2) char object_xcTex_007B80[] = dobject_xcTex_007B80; + +#define dobject_xcTex_008380 "__OTR__objects/object_xc/object_xcTex_008380" +static const ALIGN_ASSET(2) char object_xcTex_008380[] = dobject_xcTex_008380; + +#define dobject_xcTex_008B80 "__OTR__objects/object_xc/object_xcTex_008B80" +static const ALIGN_ASSET(2) char object_xcTex_008B80[] = dobject_xcTex_008B80; + +#define dobject_xcTex_008C00 "__OTR__objects/object_xc/object_xcTex_008C00" +static const ALIGN_ASSET(2) char object_xcTex_008C00[] = dobject_xcTex_008C00; + +#define dobject_xcTex_004C40 "__OTR__objects/object_xc/object_xcTex_004C40" +static const ALIGN_ASSET(2) char object_xcTex_004C40[] = dobject_xcTex_004C40; + +#define dobject_xcTex_0060C0 "__OTR__objects/object_xc/object_xcTex_0060C0" +static const ALIGN_ASSET(2) char object_xcTex_0060C0[] = dobject_xcTex_0060C0; + +#define dobject_xcTex_0064C0 "__OTR__objects/object_xc/object_xcTex_0064C0" +static const ALIGN_ASSET(2) char object_xcTex_0064C0[] = dobject_xcTex_0064C0; + +#define dobject_xcTex_006E80 "__OTR__objects/object_xc/object_xcTex_006E80" +static const ALIGN_ASSET(2) char object_xcTex_006E80[] = dobject_xcTex_006E80; + +#define dobject_xcTex_004C80 "__OTR__objects/object_xc/object_xcTex_004C80" +static const ALIGN_ASSET(2) char object_xcTex_004C80[] = dobject_xcTex_004C80; + +#define dobject_xcTex_005CC0 "__OTR__objects/object_xc/object_xcTex_005CC0" +static const ALIGN_ASSET(2) char object_xcTex_005CC0[] = dobject_xcTex_005CC0; + +#define dobject_xcTex_006CC0 "__OTR__objects/object_xc/object_xcTex_006CC0" +static const ALIGN_ASSET(2) char object_xcTex_006CC0[] = dobject_xcTex_006CC0; + +#define dobject_xcTex_006D40 "__OTR__objects/object_xc/object_xcTex_006D40" +static const ALIGN_ASSET(2) char object_xcTex_006D40[] = dobject_xcTex_006D40; \ No newline at end of file diff --git a/soh/assets/objects/object_yabusame_point/object_yabusame_point.h b/soh/assets/objects/object_yabusame_point/object_yabusame_point.h index 18a31f9c6..a92b4ec7f 100644 --- a/soh/assets/objects/object_yabusame_point/object_yabusame_point.h +++ b/soh/assets/objects/object_yabusame_point/object_yabusame_point.h @@ -1,30 +1,15 @@ #pragma once -#define dobject_yabusame_point_Tex_000000 "__OTR__objects/object_yabusame_point/object_yabusame_point_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char object_yabusame_point_Tex_000000[] = dobject_yabusame_point_Tex_000000; -#else -static const char object_yabusame_point_Tex_000000[] __attribute__((aligned (2))) = dobject_yabusame_point_Tex_000000; -#endif - -#define dobject_yabusame_point_Tex_000480 "__OTR__objects/object_yabusame_point/object_yabusame_point_Tex_000480" -#ifdef _WIN32 -static const __declspec(align(2)) char object_yabusame_point_Tex_000480[] = dobject_yabusame_point_Tex_000480; -#else -static const char object_yabusame_point_Tex_000480[] __attribute__((aligned (2))) = dobject_yabusame_point_Tex_000480; -#endif - -#define dobject_yabusame_point_Tex_000900 "__OTR__objects/object_yabusame_point/object_yabusame_point_Tex_000900" -#ifdef _WIN32 -static const __declspec(align(2)) char object_yabusame_point_Tex_000900[] = dobject_yabusame_point_Tex_000900; -#else -static const char object_yabusame_point_Tex_000900[] __attribute__((aligned (2))) = dobject_yabusame_point_Tex_000900; -#endif - -#define dobject_yabusame_point_DL_000DC0 "__OTR__objects/object_yabusame_point/object_yabusame_point_DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_yabusame_point_DL_000DC0[] = dobject_yabusame_point_DL_000DC0; -#else -static const char object_yabusame_point_DL_000DC0[] __attribute__((aligned (2))) = dobject_yabusame_point_DL_000DC0; -#endif - +#include "align_asset_macro.h" + +#define dobject_yabusame_point_Tex_000000 "__OTR__objects/object_yabusame_point/object_yabusame_point_Tex_000000" +static const ALIGN_ASSET(2) char object_yabusame_point_Tex_000000[] = dobject_yabusame_point_Tex_000000; + +#define dobject_yabusame_point_Tex_000480 "__OTR__objects/object_yabusame_point/object_yabusame_point_Tex_000480" +static const ALIGN_ASSET(2) char object_yabusame_point_Tex_000480[] = dobject_yabusame_point_Tex_000480; + +#define dobject_yabusame_point_Tex_000900 "__OTR__objects/object_yabusame_point/object_yabusame_point_Tex_000900" +static const ALIGN_ASSET(2) char object_yabusame_point_Tex_000900[] = dobject_yabusame_point_Tex_000900; + +#define dobject_yabusame_point_DL_000DC0 "__OTR__objects/object_yabusame_point/object_yabusame_point_DL_000DC0" +static const ALIGN_ASSET(2) char object_yabusame_point_DL_000DC0[] = dobject_yabusame_point_DL_000DC0; \ No newline at end of file diff --git a/soh/assets/objects/object_ydan_objects/object_ydan_objects.h b/soh/assets/objects/object_ydan_objects/object_ydan_objects.h index 965546ab0..4b29849d3 100644 --- a/soh/assets/objects/object_ydan_objects/object_ydan_objects.h +++ b/soh/assets/objects/object_ydan_objects/object_ydan_objects.h @@ -1,205 +1,90 @@ #pragma once -#define dgYdanDoor1Tex "__OTR__objects/object_ydan_objects/gYdanDoor1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanDoor1Tex[] = dgYdanDoor1Tex; -#else -static const char gYdanDoor1Tex[] __attribute__((aligned (2))) = dgYdanDoor1Tex; -#endif - -#define dgYdanWebTex "__OTR__objects/object_ydan_objects/gYdanWebTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanWebTex[] = dgYdanWebTex; -#else -static const char gYdanWebTex[] __attribute__((aligned (2))) = dgYdanWebTex; -#endif - -#define dgYdanHasiFloatingBlockSideTex "__OTR__objects/object_ydan_objects/gYdanHasiFloatingBlockSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanHasiFloatingBlockSideTex[] = dgYdanHasiFloatingBlockSideTex; -#else -static const char gYdanHasiFloatingBlockSideTex[] __attribute__((aligned (2))) = dgYdanHasiFloatingBlockSideTex; -#endif - -#define dgYdanHasiFloatingBlockBottomTex "__OTR__objects/object_ydan_objects/gYdanHasiFloatingBlockBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanHasiFloatingBlockBottomTex[] = dgYdanHasiFloatingBlockBottomTex; -#else -static const char gYdanHasiFloatingBlockBottomTex[] __attribute__((aligned (2))) = dgYdanHasiFloatingBlockBottomTex; -#endif - -#define dgYdanUnused1Tex "__OTR__objects/object_ydan_objects/gYdanUnused1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanUnused1Tex[] = dgYdanUnused1Tex; -#else -static const char gYdanUnused1Tex[] __attribute__((aligned (2))) = dgYdanUnused1Tex; -#endif - -#define dgYdanHasi2TLUT "__OTR__objects/object_ydan_objects/gYdanHasi2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanHasi2TLUT[] = dgYdanHasi2TLUT; -#else -static const char gYdanHasi2TLUT[] __attribute__((aligned (2))) = dgYdanHasi2TLUT; -#endif - -#define dgYdanHasi3BlocksTopTex "__OTR__objects/object_ydan_objects/gYdanHasi3BlocksTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanHasi3BlocksTopTex[] = dgYdanHasi3BlocksTopTex; -#else -static const char gYdanHasi3BlocksTopTex[] __attribute__((aligned (2))) = dgYdanHasi3BlocksTopTex; -#endif - -#define dgYdanTLUT_38F0 "__OTR__objects/object_ydan_objects/gYdanTLUT_38F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanTLUT_38F0[] = dgYdanTLUT_38F0; -#else -static const char gYdanTLUT_38F0[] __attribute__((aligned (2))) = dgYdanTLUT_38F0; -#endif - -#define dgYdanHasi3BlocksSideTex "__OTR__objects/object_ydan_objects/gYdanHasi3BlocksSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanHasi3BlocksSideTex[] = dgYdanHasi3BlocksSideTex; -#else -static const char gYdanHasi3BlocksSideTex[] __attribute__((aligned (2))) = dgYdanHasi3BlocksSideTex; -#endif - -#define dgYdanHasiWaterTex "__OTR__objects/object_ydan_objects/gYdanHasiWaterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanHasiWaterTex[] = dgYdanHasiWaterTex; -#else -static const char gYdanHasiWaterTex[] __attribute__((aligned (2))) = dgYdanHasiWaterTex; -#endif - -#define dgYdanHasiWaterTLUT "__OTR__objects/object_ydan_objects/gYdanHasiWaterTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanHasiWaterTLUT[] = dgYdanHasiWaterTLUT; -#else -static const char gYdanHasiWaterTLUT[] __attribute__((aligned (2))) = dgYdanHasiWaterTLUT; -#endif - -#define dgYdanMarutaUnused1Tex "__OTR__objects/object_ydan_objects/gYdanMarutaUnused1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanMarutaUnused1Tex[] = dgYdanMarutaUnused1Tex; -#else -static const char gYdanMarutaUnused1Tex[] __attribute__((aligned (2))) = dgYdanMarutaUnused1Tex; -#endif - -#define dgYdanMarutaUnused2Tex "__OTR__objects/object_ydan_objects/gYdanMarutaUnused2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanMarutaUnused2Tex[] = dgYdanMarutaUnused2Tex; -#else -static const char gYdanMarutaUnused2Tex[] __attribute__((aligned (2))) = dgYdanMarutaUnused2Tex; -#endif - -#define dgYdanMaruta1TLUT "__OTR__objects/object_ydan_objects/gYdanMaruta1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanMaruta1TLUT[] = dgYdanMaruta1TLUT; -#else -static const char gYdanMaruta1TLUT[] __attribute__((aligned (2))) = dgYdanMaruta1TLUT; -#endif - -#define dgDTUnknownWebDL "__OTR__objects/object_ydan_objects/gDTUnknownWebDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTUnknownWebDL[] = dgDTUnknownWebDL; -#else -static const char gDTUnknownWebDL[] __attribute__((aligned (2))) = dgDTUnknownWebDL; -#endif - -#define dgDTRisingPlatformsDL "__OTR__objects/object_ydan_objects/gDTRisingPlatformsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTRisingPlatformsDL[] = dgDTRisingPlatformsDL; -#else -static const char gDTRisingPlatformsDL[] __attribute__((aligned (2))) = dgDTRisingPlatformsDL; -#endif - -#define dgDTWaterPlaneDL "__OTR__objects/object_ydan_objects/gDTWaterPlaneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTWaterPlaneDL[] = dgDTWaterPlaneDL; -#else -static const char gDTWaterPlaneDL[] __attribute__((aligned (2))) = dgDTWaterPlaneDL; -#endif - -#define dgDTWebWallDL "__OTR__objects/object_ydan_objects/gDTWebWallDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTWebWallDL[] = dgDTWebWallDL; -#else -static const char gDTWebWallDL[] __attribute__((aligned (2))) = dgDTWebWallDL; -#endif - -#define dgDTWebFloorDL "__OTR__objects/object_ydan_objects/gDTWebFloorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTWebFloorDL[] = dgDTWebFloorDL; -#else -static const char gDTWebFloorDL[] __attribute__((aligned (2))) = dgDTWebFloorDL; -#endif - -#define dgDTFallingLadderDL "__OTR__objects/object_ydan_objects/gDTFallingLadderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTFallingLadderDL[] = dgDTFallingLadderDL; -#else -static const char gDTFallingLadderDL[] __attribute__((aligned (2))) = dgDTFallingLadderDL; -#endif - -#define dgDTDungeonDoor1DL "__OTR__objects/object_ydan_objects/gDTDungeonDoor1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTDungeonDoor1DL[] = dgDTDungeonDoor1DL; -#else -static const char gDTDungeonDoor1DL[] __attribute__((aligned (2))) = dgDTDungeonDoor1DL; -#endif - -#define dgDTDungeonDoor2DL "__OTR__objects/object_ydan_objects/gDTDungeonDoor2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTDungeonDoor2DL[] = dgDTDungeonDoor2DL; -#else -static const char gDTDungeonDoor2DL[] __attribute__((aligned (2))) = dgDTDungeonDoor2DL; -#endif - -#define dgDTSlidingPlatformDL "__OTR__objects/object_ydan_objects/gDTSlidingPlatformDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTSlidingPlatformDL[] = dgDTSlidingPlatformDL; -#else -static const char gDTSlidingPlatformDL[] __attribute__((aligned (2))) = dgDTSlidingPlatformDL; -#endif - -#define dgDTRollingSpikeTrapDL "__OTR__objects/object_ydan_objects/gDTRollingSpikeTrapDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTRollingSpikeTrapDL[] = dgDTRollingSpikeTrapDL; -#else -static const char gDTRollingSpikeTrapDL[] __attribute__((aligned (2))) = dgDTRollingSpikeTrapDL; -#endif - -#define dgDTRisingPlatformsCol "__OTR__objects/object_ydan_objects/gDTRisingPlatformsCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTRisingPlatformsCol[] = dgDTRisingPlatformsCol; -#else -static const char gDTRisingPlatformsCol[] __attribute__((aligned (2))) = dgDTRisingPlatformsCol; -#endif - -#define dgDTWebWallCol "__OTR__objects/object_ydan_objects/gDTWebWallCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTWebWallCol[] = dgDTWebWallCol; -#else -static const char gDTWebWallCol[] __attribute__((aligned (2))) = dgDTWebWallCol; -#endif - -#define dgDTWebFloorCol "__OTR__objects/object_ydan_objects/gDTWebFloorCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTWebFloorCol[] = dgDTWebFloorCol; -#else -static const char gDTWebFloorCol[] __attribute__((aligned (2))) = dgDTWebFloorCol; -#endif - -#define dgDTFallingLadderCol "__OTR__objects/object_ydan_objects/gDTFallingLadderCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTFallingLadderCol[] = dgDTFallingLadderCol; -#else -static const char gDTFallingLadderCol[] __attribute__((aligned (2))) = dgDTFallingLadderCol; -#endif - -#define dgDTSlidingPlatformCol "__OTR__objects/object_ydan_objects/gDTSlidingPlatformCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gDTSlidingPlatformCol[] = dgDTSlidingPlatformCol; -#else -static const char gDTSlidingPlatformCol[] __attribute__((aligned (2))) = dgDTSlidingPlatformCol; -#endif - +#include "align_asset_macro.h" + +#define dgYdanDoor1Tex "__OTR__objects/object_ydan_objects/gYdanDoor1Tex" +static const ALIGN_ASSET(2) char gYdanDoor1Tex[] = dgYdanDoor1Tex; + +#define dgYdanWebTex "__OTR__objects/object_ydan_objects/gYdanWebTex" +static const ALIGN_ASSET(2) char gYdanWebTex[] = dgYdanWebTex; + +#define dgYdanHasiFloatingBlockSideTex "__OTR__objects/object_ydan_objects/gYdanHasiFloatingBlockSideTex" +static const ALIGN_ASSET(2) char gYdanHasiFloatingBlockSideTex[] = dgYdanHasiFloatingBlockSideTex; + +#define dgYdanHasiFloatingBlockBottomTex "__OTR__objects/object_ydan_objects/gYdanHasiFloatingBlockBottomTex" +static const ALIGN_ASSET(2) char gYdanHasiFloatingBlockBottomTex[] = dgYdanHasiFloatingBlockBottomTex; + +#define dgYdanUnused1Tex "__OTR__objects/object_ydan_objects/gYdanUnused1Tex" +static const ALIGN_ASSET(2) char gYdanUnused1Tex[] = dgYdanUnused1Tex; + +#define dgYdanHasi2TLUT "__OTR__objects/object_ydan_objects/gYdanHasi2TLUT" +static const ALIGN_ASSET(2) char gYdanHasi2TLUT[] = dgYdanHasi2TLUT; + +#define dgYdanHasi3BlocksTopTex "__OTR__objects/object_ydan_objects/gYdanHasi3BlocksTopTex" +static const ALIGN_ASSET(2) char gYdanHasi3BlocksTopTex[] = dgYdanHasi3BlocksTopTex; + +#define dgYdanTLUT_38F0 "__OTR__objects/object_ydan_objects/gYdanTLUT_38F0" +static const ALIGN_ASSET(2) char gYdanTLUT_38F0[] = dgYdanTLUT_38F0; + +#define dgYdanHasi3BlocksSideTex "__OTR__objects/object_ydan_objects/gYdanHasi3BlocksSideTex" +static const ALIGN_ASSET(2) char gYdanHasi3BlocksSideTex[] = dgYdanHasi3BlocksSideTex; + +#define dgYdanHasiWaterTex "__OTR__objects/object_ydan_objects/gYdanHasiWaterTex" +static const ALIGN_ASSET(2) char gYdanHasiWaterTex[] = dgYdanHasiWaterTex; + +#define dgYdanHasiWaterTLUT "__OTR__objects/object_ydan_objects/gYdanHasiWaterTLUT" +static const ALIGN_ASSET(2) char gYdanHasiWaterTLUT[] = dgYdanHasiWaterTLUT; + +#define dgYdanMarutaUnused1Tex "__OTR__objects/object_ydan_objects/gYdanMarutaUnused1Tex" +static const ALIGN_ASSET(2) char gYdanMarutaUnused1Tex[] = dgYdanMarutaUnused1Tex; + +#define dgYdanMarutaUnused2Tex "__OTR__objects/object_ydan_objects/gYdanMarutaUnused2Tex" +static const ALIGN_ASSET(2) char gYdanMarutaUnused2Tex[] = dgYdanMarutaUnused2Tex; + +#define dgYdanMaruta1TLUT "__OTR__objects/object_ydan_objects/gYdanMaruta1TLUT" +static const ALIGN_ASSET(2) char gYdanMaruta1TLUT[] = dgYdanMaruta1TLUT; + +#define dgDTUnknownWebDL "__OTR__objects/object_ydan_objects/gDTUnknownWebDL" +static const ALIGN_ASSET(2) char gDTUnknownWebDL[] = dgDTUnknownWebDL; + +#define dgDTRisingPlatformsDL "__OTR__objects/object_ydan_objects/gDTRisingPlatformsDL" +static const ALIGN_ASSET(2) char gDTRisingPlatformsDL[] = dgDTRisingPlatformsDL; + +#define dgDTWaterPlaneDL "__OTR__objects/object_ydan_objects/gDTWaterPlaneDL" +static const ALIGN_ASSET(2) char gDTWaterPlaneDL[] = dgDTWaterPlaneDL; + +#define dgDTWebWallDL "__OTR__objects/object_ydan_objects/gDTWebWallDL" +static const ALIGN_ASSET(2) char gDTWebWallDL[] = dgDTWebWallDL; + +#define dgDTWebFloorDL "__OTR__objects/object_ydan_objects/gDTWebFloorDL" +static const ALIGN_ASSET(2) char gDTWebFloorDL[] = dgDTWebFloorDL; + +#define dgDTFallingLadderDL "__OTR__objects/object_ydan_objects/gDTFallingLadderDL" +static const ALIGN_ASSET(2) char gDTFallingLadderDL[] = dgDTFallingLadderDL; + +#define dgDTDungeonDoor1DL "__OTR__objects/object_ydan_objects/gDTDungeonDoor1DL" +static const ALIGN_ASSET(2) char gDTDungeonDoor1DL[] = dgDTDungeonDoor1DL; + +#define dgDTDungeonDoor2DL "__OTR__objects/object_ydan_objects/gDTDungeonDoor2DL" +static const ALIGN_ASSET(2) char gDTDungeonDoor2DL[] = dgDTDungeonDoor2DL; + +#define dgDTSlidingPlatformDL "__OTR__objects/object_ydan_objects/gDTSlidingPlatformDL" +static const ALIGN_ASSET(2) char gDTSlidingPlatformDL[] = dgDTSlidingPlatformDL; + +#define dgDTRollingSpikeTrapDL "__OTR__objects/object_ydan_objects/gDTRollingSpikeTrapDL" +static const ALIGN_ASSET(2) char gDTRollingSpikeTrapDL[] = dgDTRollingSpikeTrapDL; + +#define dgDTRisingPlatformsCol "__OTR__objects/object_ydan_objects/gDTRisingPlatformsCol" +static const ALIGN_ASSET(2) char gDTRisingPlatformsCol[] = dgDTRisingPlatformsCol; + +#define dgDTWebWallCol "__OTR__objects/object_ydan_objects/gDTWebWallCol" +static const ALIGN_ASSET(2) char gDTWebWallCol[] = dgDTWebWallCol; + +#define dgDTWebFloorCol "__OTR__objects/object_ydan_objects/gDTWebFloorCol" +static const ALIGN_ASSET(2) char gDTWebFloorCol[] = dgDTWebFloorCol; + +#define dgDTFallingLadderCol "__OTR__objects/object_ydan_objects/gDTFallingLadderCol" +static const ALIGN_ASSET(2) char gDTFallingLadderCol[] = dgDTFallingLadderCol; + +#define dgDTSlidingPlatformCol "__OTR__objects/object_ydan_objects/gDTSlidingPlatformCol" +static const ALIGN_ASSET(2) char gDTSlidingPlatformCol[] = dgDTSlidingPlatformCol; \ No newline at end of file diff --git a/soh/assets/objects/object_yukabyun/object_yukabyun.h b/soh/assets/objects/object_yukabyun/object_yukabyun.h index dc16fc840..320adfaab 100644 --- a/soh/assets/objects/object_yukabyun/object_yukabyun.h +++ b/soh/assets/objects/object_yukabyun/object_yukabyun.h @@ -1,37 +1,18 @@ #pragma once -#define dgFloorTileEnemyBottomTex "__OTR__objects/object_yukabyun/gFloorTileEnemyBottomTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorTileEnemyBottomTex[] = dgFloorTileEnemyBottomTex; -#else -static const char gFloorTileEnemyBottomTex[] __attribute__((aligned (2))) = dgFloorTileEnemyBottomTex; -#endif - -#define dgFloorTileEnemyTopTex "__OTR__objects/object_yukabyun/gFloorTileEnemyTopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorTileEnemyTopTex[] = dgFloorTileEnemyTopTex; -#else -static const char gFloorTileEnemyTopTex[] __attribute__((aligned (2))) = dgFloorTileEnemyTopTex; -#endif - -#define dgFloorTileEnemyFragmentTex "__OTR__objects/object_yukabyun/gFloorTileEnemyFragmentTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorTileEnemyFragmentTex[] = dgFloorTileEnemyFragmentTex; -#else -static const char gFloorTileEnemyFragmentTex[] __attribute__((aligned (2))) = dgFloorTileEnemyFragmentTex; -#endif - -#define dgFloorTileEnemyDL "__OTR__objects/object_yukabyun/gFloorTileEnemyDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorTileEnemyDL[] = dgFloorTileEnemyDL; -#else -static const char gFloorTileEnemyDL[] __attribute__((aligned (2))) = dgFloorTileEnemyDL; -#endif - -#define dgFloorTileEnemyFragmentDL "__OTR__objects/object_yukabyun/gFloorTileEnemyFragmentDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFloorTileEnemyFragmentDL[] = dgFloorTileEnemyFragmentDL; -#else -static const char gFloorTileEnemyFragmentDL[] __attribute__((aligned (2))) = dgFloorTileEnemyFragmentDL; -#endif - +#include "align_asset_macro.h" + +#define dgFloorTileEnemyBottomTex "__OTR__objects/object_yukabyun/gFloorTileEnemyBottomTex" +static const ALIGN_ASSET(2) char gFloorTileEnemyBottomTex[] = dgFloorTileEnemyBottomTex; + +#define dgFloorTileEnemyTopTex "__OTR__objects/object_yukabyun/gFloorTileEnemyTopTex" +static const ALIGN_ASSET(2) char gFloorTileEnemyTopTex[] = dgFloorTileEnemyTopTex; + +#define dgFloorTileEnemyFragmentTex "__OTR__objects/object_yukabyun/gFloorTileEnemyFragmentTex" +static const ALIGN_ASSET(2) char gFloorTileEnemyFragmentTex[] = dgFloorTileEnemyFragmentTex; + +#define dgFloorTileEnemyDL "__OTR__objects/object_yukabyun/gFloorTileEnemyDL" +static const ALIGN_ASSET(2) char gFloorTileEnemyDL[] = dgFloorTileEnemyDL; + +#define dgFloorTileEnemyFragmentDL "__OTR__objects/object_yukabyun/gFloorTileEnemyFragmentDL" +static const ALIGN_ASSET(2) char gFloorTileEnemyFragmentDL[] = dgFloorTileEnemyFragmentDL; \ No newline at end of file diff --git a/soh/assets/objects/object_zf/object_zf.h b/soh/assets/objects/object_zf/object_zf.h index 0648629ee..05eae0ac0 100644 --- a/soh/assets/objects/object_zf/object_zf.h +++ b/soh/assets/objects/object_zf/object_zf.h @@ -1,555 +1,240 @@ #pragma once -#define dgZfDinolfosTLUT "__OTR__objects/object_zf/gZfDinolfosTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosTLUT[] = dgZfDinolfosTLUT; -#else -static const char gZfDinolfosTLUT[] __attribute__((aligned (2))) = dgZfDinolfosTLUT; -#endif - -#define dobject_zf_Tex_000200 "__OTR__objects/object_zf/object_zf_Tex_000200" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_000200[] = dobject_zf_Tex_000200; -#else -static const char object_zf_Tex_000200[] __attribute__((aligned (2))) = dobject_zf_Tex_000200; -#endif - -#define dobject_zf_Tex_000240 "__OTR__objects/object_zf/object_zf_Tex_000240" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_000240[] = dobject_zf_Tex_000240; -#else -static const char object_zf_Tex_000240[] __attribute__((aligned (2))) = dobject_zf_Tex_000240; -#endif - -#define dgZfDinolfosSpineTex "__OTR__objects/object_zf/gZfDinolfosSpineTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosSpineTex[] = dgZfDinolfosSpineTex; -#else -static const char gZfDinolfosSpineTex[] __attribute__((aligned (2))) = dgZfDinolfosSpineTex; -#endif - -#define dobject_zf_Tex_0003C0 "__OTR__objects/object_zf/object_zf_Tex_0003C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_0003C0[] = dobject_zf_Tex_0003C0; -#else -static const char object_zf_Tex_0003C0[] __attribute__((aligned (2))) = dobject_zf_Tex_0003C0; -#endif - -#define dobject_zf_Tex_000440 "__OTR__objects/object_zf/object_zf_Tex_000440" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_000440[] = dobject_zf_Tex_000440; -#else -static const char object_zf_Tex_000440[] __attribute__((aligned (2))) = dobject_zf_Tex_000440; -#endif - -#define dobject_zf_Tex_000540 "__OTR__objects/object_zf/object_zf_Tex_000540" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_000540[] = dobject_zf_Tex_000540; -#else -static const char object_zf_Tex_000540[] __attribute__((aligned (2))) = dobject_zf_Tex_000540; -#endif - -#define dobject_zf_Tex_000580 "__OTR__objects/object_zf/object_zf_Tex_000580" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_000580[] = dobject_zf_Tex_000580; -#else -static const char object_zf_Tex_000580[] __attribute__((aligned (2))) = dobject_zf_Tex_000580; -#endif - -#define dobject_zf_Tex_000600 "__OTR__objects/object_zf/object_zf_Tex_000600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_000600[] = dobject_zf_Tex_000600; -#else -static const char object_zf_Tex_000600[] __attribute__((aligned (2))) = dobject_zf_Tex_000600; -#endif - -#define dgZfDinolfosNormalEyeTex "__OTR__objects/object_zf/gZfDinolfosNormalEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosNormalEyeTex[] = dgZfDinolfosNormalEyeTex; -#else -static const char gZfDinolfosNormalEyeTex[] __attribute__((aligned (2))) = dgZfDinolfosNormalEyeTex; -#endif - -#define dgZfDinolfosRightThighDL "__OTR__objects/object_zf/gZfDinolfosRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosRightThighDL[] = dgZfDinolfosRightThighDL; -#else -static const char gZfDinolfosRightThighDL[] __attribute__((aligned (2))) = dgZfDinolfosRightThighDL; -#endif - -#define dgZfDinolfosRightShinDL "__OTR__objects/object_zf/gZfDinolfosRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosRightShinDL[] = dgZfDinolfosRightShinDL; -#else -static const char gZfDinolfosRightShinDL[] __attribute__((aligned (2))) = dgZfDinolfosRightShinDL; -#endif - -#define dgZfDinolfosRightFootDL "__OTR__objects/object_zf/gZfDinolfosRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosRightFootDL[] = dgZfDinolfosRightFootDL; -#else -static const char gZfDinolfosRightFootDL[] __attribute__((aligned (2))) = dgZfDinolfosRightFootDL; -#endif - -#define dgZfDinolfosLeftThighDL "__OTR__objects/object_zf/gZfDinolfosLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosLeftThighDL[] = dgZfDinolfosLeftThighDL; -#else -static const char gZfDinolfosLeftThighDL[] __attribute__((aligned (2))) = dgZfDinolfosLeftThighDL; -#endif - -#define dgZfDinolfosLeftShinDL "__OTR__objects/object_zf/gZfDinolfosLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosLeftShinDL[] = dgZfDinolfosLeftShinDL; -#else -static const char gZfDinolfosLeftShinDL[] __attribute__((aligned (2))) = dgZfDinolfosLeftShinDL; -#endif - -#define dgZfDinolfosLeftFootDL "__OTR__objects/object_zf/gZfDinolfosLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosLeftFootDL[] = dgZfDinolfosLeftFootDL; -#else -static const char gZfDinolfosLeftFootDL[] __attribute__((aligned (2))) = dgZfDinolfosLeftFootDL; -#endif - -#define dgZfDinolfosRightUpperArmDL "__OTR__objects/object_zf/gZfDinolfosRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosRightUpperArmDL[] = dgZfDinolfosRightUpperArmDL; -#else -static const char gZfDinolfosRightUpperArmDL[] __attribute__((aligned (2))) = dgZfDinolfosRightUpperArmDL; -#endif - -#define dgZfDinolfosRightForearmDL "__OTR__objects/object_zf/gZfDinolfosRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosRightForearmDL[] = dgZfDinolfosRightForearmDL; -#else -static const char gZfDinolfosRightForearmDL[] __attribute__((aligned (2))) = dgZfDinolfosRightForearmDL; -#endif - -#define dgZfDinolfosSwordDL "__OTR__objects/object_zf/gZfDinolfosSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosSwordDL[] = dgZfDinolfosSwordDL; -#else -static const char gZfDinolfosSwordDL[] __attribute__((aligned (2))) = dgZfDinolfosSwordDL; -#endif - -#define dgZfDinolfosLeftUpperArmDL "__OTR__objects/object_zf/gZfDinolfosLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosLeftUpperArmDL[] = dgZfDinolfosLeftUpperArmDL; -#else -static const char gZfDinolfosLeftUpperArmDL[] __attribute__((aligned (2))) = dgZfDinolfosLeftUpperArmDL; -#endif - -#define dgZfDinolfosLeftForearmDL "__OTR__objects/object_zf/gZfDinolfosLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosLeftForearmDL[] = dgZfDinolfosLeftForearmDL; -#else -static const char gZfDinolfosLeftForearmDL[] __attribute__((aligned (2))) = dgZfDinolfosLeftForearmDL; -#endif - -#define dgZfDinolfosLeftHandDL "__OTR__objects/object_zf/gZfDinolfosLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosLeftHandDL[] = dgZfDinolfosLeftHandDL; -#else -static const char gZfDinolfosLeftHandDL[] __attribute__((aligned (2))) = dgZfDinolfosLeftHandDL; -#endif - -#define dgZfDinolfosTailBaseDL "__OTR__objects/object_zf/gZfDinolfosTailBaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosTailBaseDL[] = dgZfDinolfosTailBaseDL; -#else -static const char gZfDinolfosTailBaseDL[] __attribute__((aligned (2))) = dgZfDinolfosTailBaseDL; -#endif - -#define dgZfDinolfosTailTipDL "__OTR__objects/object_zf/gZfDinolfosTailTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosTailTipDL[] = dgZfDinolfosTailTipDL; -#else -static const char gZfDinolfosTailTipDL[] __attribute__((aligned (2))) = dgZfDinolfosTailTipDL; -#endif - -#define dgZfDinolfosScabbardDL "__OTR__objects/object_zf/gZfDinolfosScabbardDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosScabbardDL[] = dgZfDinolfosScabbardDL; -#else -static const char gZfDinolfosScabbardDL[] __attribute__((aligned (2))) = dgZfDinolfosScabbardDL; -#endif - -#define dgZfDinolfosTrunkDL "__OTR__objects/object_zf/gZfDinolfosTrunkDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosTrunkDL[] = dgZfDinolfosTrunkDL; -#else -static const char gZfDinolfosTrunkDL[] __attribute__((aligned (2))) = dgZfDinolfosTrunkDL; -#endif - -#define dgZfDinolfosChestArmorDL "__OTR__objects/object_zf/gZfDinolfosChestArmorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosChestArmorDL[] = dgZfDinolfosChestArmorDL; -#else -static const char gZfDinolfosChestArmorDL[] __attribute__((aligned (2))) = dgZfDinolfosChestArmorDL; -#endif - -#define dgZfDinolfosNeckDL "__OTR__objects/object_zf/gZfDinolfosNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosNeckDL[] = dgZfDinolfosNeckDL; -#else -static const char gZfDinolfosNeckDL[] __attribute__((aligned (2))) = dgZfDinolfosNeckDL; -#endif - -#define dgZfDinolfosJawDL "__OTR__objects/object_zf/gZfDinolfosJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosJawDL[] = dgZfDinolfosJawDL; -#else -static const char gZfDinolfosJawDL[] __attribute__((aligned (2))) = dgZfDinolfosJawDL; -#endif - -#define dgZfDinolfosHeadDL "__OTR__objects/object_zf/gZfDinolfosHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosHeadDL[] = dgZfDinolfosHeadDL; -#else -static const char gZfDinolfosHeadDL[] __attribute__((aligned (2))) = dgZfDinolfosHeadDL; -#endif - -#define dgZfDinolfosSkel "__OTR__objects/object_zf/gZfDinolfosSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDinolfosSkel[] = dgZfDinolfosSkel; -#else -static const char gZfDinolfosSkel[] __attribute__((aligned (2))) = dgZfDinolfosSkel; -#endif - -#define dgZfWalkingAnim "__OTR__objects/object_zf/gZfWalkingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfWalkingAnim[] = dgZfWalkingAnim; -#else -static const char gZfWalkingAnim[] __attribute__((aligned (2))) = dgZfWalkingAnim; -#endif - -#define dgZfLandingAnim "__OTR__objects/object_zf/gZfLandingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLandingAnim[] = dgZfLandingAnim; -#else -static const char gZfLandingAnim[] __attribute__((aligned (2))) = dgZfLandingAnim; -#endif - -#define dgZfJumpingAnim "__OTR__objects/object_zf/gZfJumpingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfJumpingAnim[] = dgZfJumpingAnim; -#else -static const char gZfJumpingAnim[] __attribute__((aligned (2))) = dgZfJumpingAnim; -#endif - -#define dgZfSlashAnim "__OTR__objects/object_zf/gZfSlashAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfSlashAnim[] = dgZfSlashAnim; -#else -static const char gZfSlashAnim[] __attribute__((aligned (2))) = dgZfSlashAnim; -#endif - -#define dgZfCryingAnim "__OTR__objects/object_zf/gZfCryingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfCryingAnim[] = dgZfCryingAnim; -#else -static const char gZfCryingAnim[] __attribute__((aligned (2))) = dgZfCryingAnim; -#endif - -#define dobject_zf_Tex_00B120 "__OTR__objects/object_zf/object_zf_Tex_00B120" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00B120[] = dobject_zf_Tex_00B120; -#else -static const char object_zf_Tex_00B120[] __attribute__((aligned (2))) = dobject_zf_Tex_00B120; -#endif - -#define dobject_zf_Tex_00B920 "__OTR__objects/object_zf/object_zf_Tex_00B920" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00B920[] = dobject_zf_Tex_00B920; -#else -static const char object_zf_Tex_00B920[] __attribute__((aligned (2))) = dobject_zf_Tex_00B920; -#endif - -#define dobject_zf_Tex_00B9A0 "__OTR__objects/object_zf/object_zf_Tex_00B9A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00B9A0[] = dobject_zf_Tex_00B9A0; -#else -static const char object_zf_Tex_00B9A0[] __attribute__((aligned (2))) = dobject_zf_Tex_00B9A0; -#endif - -#define dobject_zf_Tex_00BA20 "__OTR__objects/object_zf/object_zf_Tex_00BA20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00BA20[] = dobject_zf_Tex_00BA20; -#else -static const char object_zf_Tex_00BA20[] __attribute__((aligned (2))) = dobject_zf_Tex_00BA20; -#endif - -#define dobject_zf_Tex_00BAA0 "__OTR__objects/object_zf/object_zf_Tex_00BAA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00BAA0[] = dobject_zf_Tex_00BAA0; -#else -static const char object_zf_Tex_00BAA0[] __attribute__((aligned (2))) = dobject_zf_Tex_00BAA0; -#endif - -#define dobject_zf_Tex_00BB20 "__OTR__objects/object_zf/object_zf_Tex_00BB20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00BB20[] = dobject_zf_Tex_00BB20; -#else -static const char object_zf_Tex_00BB20[] __attribute__((aligned (2))) = dobject_zf_Tex_00BB20; -#endif - -#define dobject_zf_Tex_00BBA0 "__OTR__objects/object_zf/object_zf_Tex_00BBA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00BBA0[] = dobject_zf_Tex_00BBA0; -#else -static const char object_zf_Tex_00BBA0[] __attribute__((aligned (2))) = dobject_zf_Tex_00BBA0; -#endif - -#define dobject_zf_Tex_00BDA0 "__OTR__objects/object_zf/object_zf_Tex_00BDA0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00BDA0[] = dobject_zf_Tex_00BDA0; -#else -static const char object_zf_Tex_00BDA0[] __attribute__((aligned (2))) = dobject_zf_Tex_00BDA0; -#endif - -#define dobject_zf_Tex_00BE20 "__OTR__objects/object_zf/object_zf_Tex_00BE20" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00BE20[] = dobject_zf_Tex_00BE20; -#else -static const char object_zf_Tex_00BE20[] __attribute__((aligned (2))) = dobject_zf_Tex_00BE20; -#endif - -#define dobject_zf_Tex_00C020 "__OTR__objects/object_zf/object_zf_Tex_00C020" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00C020[] = dobject_zf_Tex_00C020; -#else -static const char object_zf_Tex_00C020[] __attribute__((aligned (2))) = dobject_zf_Tex_00C020; -#endif - -#define dobject_zf_Tex_00C220 "__OTR__objects/object_zf/object_zf_Tex_00C220" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00C220[] = dobject_zf_Tex_00C220; -#else -static const char object_zf_Tex_00C220[] __attribute__((aligned (2))) = dobject_zf_Tex_00C220; -#endif - -#define dobject_zf_Tex_00C2A0 "__OTR__objects/object_zf/object_zf_Tex_00C2A0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zf_Tex_00C2A0[] = dobject_zf_Tex_00C2A0; -#else -static const char object_zf_Tex_00C2A0[] __attribute__((aligned (2))) = dobject_zf_Tex_00C2A0; -#endif - -#define dgZfLizalfosLeftThighDL "__OTR__objects/object_zf/gZfLizalfosLeftThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosLeftThighDL[] = dgZfLizalfosLeftThighDL; -#else -static const char gZfLizalfosLeftThighDL[] __attribute__((aligned (2))) = dgZfLizalfosLeftThighDL; -#endif - -#define dgZfLizalfosLeftShinDL "__OTR__objects/object_zf/gZfLizalfosLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosLeftShinDL[] = dgZfLizalfosLeftShinDL; -#else -static const char gZfLizalfosLeftShinDL[] __attribute__((aligned (2))) = dgZfLizalfosLeftShinDL; -#endif - -#define dgZfLizalfosLeftFootDL "__OTR__objects/object_zf/gZfLizalfosLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosLeftFootDL[] = dgZfLizalfosLeftFootDL; -#else -static const char gZfLizalfosLeftFootDL[] __attribute__((aligned (2))) = dgZfLizalfosLeftFootDL; -#endif - -#define dgZfLizalfosLeftUpperArmDL "__OTR__objects/object_zf/gZfLizalfosLeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosLeftUpperArmDL[] = dgZfLizalfosLeftUpperArmDL; -#else -static const char gZfLizalfosLeftUpperArmDL[] __attribute__((aligned (2))) = dgZfLizalfosLeftUpperArmDL; -#endif - -#define dgZfLizalfosLeftForearmDL "__OTR__objects/object_zf/gZfLizalfosLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosLeftForearmDL[] = dgZfLizalfosLeftForearmDL; -#else -static const char gZfLizalfosLeftForearmDL[] __attribute__((aligned (2))) = dgZfLizalfosLeftForearmDL; -#endif - -#define dgZfLizalfosLeftHandDL "__OTR__objects/object_zf/gZfLizalfosLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosLeftHandDL[] = dgZfLizalfosLeftHandDL; -#else -static const char gZfLizalfosLeftHandDL[] __attribute__((aligned (2))) = dgZfLizalfosLeftHandDL; -#endif - -#define dgZfLizalfosRightThighDL "__OTR__objects/object_zf/gZfLizalfosRightThighDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosRightThighDL[] = dgZfLizalfosRightThighDL; -#else -static const char gZfLizalfosRightThighDL[] __attribute__((aligned (2))) = dgZfLizalfosRightThighDL; -#endif - -#define dgZfLizalfosRightShinDL "__OTR__objects/object_zf/gZfLizalfosRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosRightShinDL[] = dgZfLizalfosRightShinDL; -#else -static const char gZfLizalfosRightShinDL[] __attribute__((aligned (2))) = dgZfLizalfosRightShinDL; -#endif - -#define dgZfLizalfosRightFootDL "__OTR__objects/object_zf/gZfLizalfosRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosRightFootDL[] = dgZfLizalfosRightFootDL; -#else -static const char gZfLizalfosRightFootDL[] __attribute__((aligned (2))) = dgZfLizalfosRightFootDL; -#endif - -#define dgZfLizalfosRightUpperArmDL "__OTR__objects/object_zf/gZfLizalfosRightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosRightUpperArmDL[] = dgZfLizalfosRightUpperArmDL; -#else -static const char gZfLizalfosRightUpperArmDL[] __attribute__((aligned (2))) = dgZfLizalfosRightUpperArmDL; -#endif - -#define dgZfLizalfosRightForearmDL "__OTR__objects/object_zf/gZfLizalfosRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosRightForearmDL[] = dgZfLizalfosRightForearmDL; -#else -static const char gZfLizalfosRightForearmDL[] __attribute__((aligned (2))) = dgZfLizalfosRightForearmDL; -#endif - -#define dgZfLizalfosSwordDL "__OTR__objects/object_zf/gZfLizalfosSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosSwordDL[] = dgZfLizalfosSwordDL; -#else -static const char gZfLizalfosSwordDL[] __attribute__((aligned (2))) = dgZfLizalfosSwordDL; -#endif - -#define dgZfEmptyHandDL "__OTR__objects/object_zf/gZfEmptyHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfEmptyHandDL[] = dgZfEmptyHandDL; -#else -static const char gZfEmptyHandDL[] __attribute__((aligned (2))) = dgZfEmptyHandDL; -#endif - -#define dgZfLizalfosJawDL "__OTR__objects/object_zf/gZfLizalfosJawDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosJawDL[] = dgZfLizalfosJawDL; -#else -static const char gZfLizalfosJawDL[] __attribute__((aligned (2))) = dgZfLizalfosJawDL; -#endif - -#define dgZfLizalfosHeadDL "__OTR__objects/object_zf/gZfLizalfosHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosHeadDL[] = dgZfLizalfosHeadDL; -#else -static const char gZfLizalfosHeadDL[] __attribute__((aligned (2))) = dgZfLizalfosHeadDL; -#endif - -#define dgZfLizalfosTrunkDL "__OTR__objects/object_zf/gZfLizalfosTrunkDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosTrunkDL[] = dgZfLizalfosTrunkDL; -#else -static const char gZfLizalfosTrunkDL[] __attribute__((aligned (2))) = dgZfLizalfosTrunkDL; -#endif - -#define dgZfLizalfosNeckDL "__OTR__objects/object_zf/gZfLizalfosNeckDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosNeckDL[] = dgZfLizalfosNeckDL; -#else -static const char gZfLizalfosNeckDL[] __attribute__((aligned (2))) = dgZfLizalfosNeckDL; -#endif - -#define dgZfLizalfosChestArmorDL "__OTR__objects/object_zf/gZfLizalfosChestArmorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosChestArmorDL[] = dgZfLizalfosChestArmorDL; -#else -static const char gZfLizalfosChestArmorDL[] __attribute__((aligned (2))) = dgZfLizalfosChestArmorDL; -#endif - -#define dgZfLizalfosTailBaseDL "__OTR__objects/object_zf/gZfLizalfosTailBaseDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosTailBaseDL[] = dgZfLizalfosTailBaseDL; -#else -static const char gZfLizalfosTailBaseDL[] __attribute__((aligned (2))) = dgZfLizalfosTailBaseDL; -#endif - -#define dgZfLizalfosTailTipDL "__OTR__objects/object_zf/gZfLizalfosTailTipDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosTailTipDL[] = dgZfLizalfosTailTipDL; -#else -static const char gZfLizalfosTailTipDL[] __attribute__((aligned (2))) = dgZfLizalfosTailTipDL; -#endif - -#define dgZfLizalfosScabbardDL "__OTR__objects/object_zf/gZfLizalfosScabbardDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosScabbardDL[] = dgZfLizalfosScabbardDL; -#else -static const char gZfLizalfosScabbardDL[] __attribute__((aligned (2))) = dgZfLizalfosScabbardDL; -#endif - -#define dgZfSheathedSwordDL "__OTR__objects/object_zf/gZfSheathedSwordDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfSheathedSwordDL[] = dgZfSheathedSwordDL; -#else -static const char gZfSheathedSwordDL[] __attribute__((aligned (2))) = dgZfSheathedSwordDL; -#endif - -#define dgZfLizalfosSkel "__OTR__objects/object_zf/gZfLizalfosSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfLizalfosSkel[] = dgZfLizalfosSkel; -#else -static const char gZfLizalfosSkel[] __attribute__((aligned (2))) = dgZfLizalfosSkel; -#endif - -#define dgZfHopCrouchingAnim "__OTR__objects/object_zf/gZfHopCrouchingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfHopCrouchingAnim[] = dgZfHopCrouchingAnim; -#else -static const char gZfHopCrouchingAnim[] __attribute__((aligned (2))) = dgZfHopCrouchingAnim; -#endif - -#define dgZfHopLeapingAnim "__OTR__objects/object_zf/gZfHopLeapingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfHopLeapingAnim[] = dgZfHopLeapingAnim; -#else -static const char gZfHopLeapingAnim[] __attribute__((aligned (2))) = dgZfHopLeapingAnim; -#endif - -#define dgZfHopLandingAnim "__OTR__objects/object_zf/gZfHopLandingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfHopLandingAnim[] = dgZfHopLandingAnim; -#else -static const char gZfHopLandingAnim[] __attribute__((aligned (2))) = dgZfHopLandingAnim; -#endif - -#define dgZfSheathingSwordAnim "__OTR__objects/object_zf/gZfSheathingSwordAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfSheathingSwordAnim[] = dgZfSheathingSwordAnim; -#else -static const char gZfSheathingSwordAnim[] __attribute__((aligned (2))) = dgZfSheathingSwordAnim; -#endif - -#define dgZfDrawingSwordAnim "__OTR__objects/object_zf/gZfDrawingSwordAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDrawingSwordAnim[] = dgZfDrawingSwordAnim; -#else -static const char gZfDrawingSwordAnim[] __attribute__((aligned (2))) = dgZfDrawingSwordAnim; -#endif - -#define dgZfDyingAnim "__OTR__objects/object_zf/gZfDyingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfDyingAnim[] = dgZfDyingAnim; -#else -static const char gZfDyingAnim[] __attribute__((aligned (2))) = dgZfDyingAnim; -#endif - -#define dgZfKnockedBackAnim "__OTR__objects/object_zf/gZfKnockedBackAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfKnockedBackAnim[] = dgZfKnockedBackAnim; -#else -static const char gZfKnockedBackAnim[] __attribute__((aligned (2))) = dgZfKnockedBackAnim; -#endif - -#define dgZfSidesteppingAnim "__OTR__objects/object_zf/gZfSidesteppingAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZfSidesteppingAnim[] = dgZfSidesteppingAnim; -#else -static const char gZfSidesteppingAnim[] __attribute__((aligned (2))) = dgZfSidesteppingAnim; -#endif - +#include "align_asset_macro.h" + +#define dgZfDinolfosTLUT "__OTR__objects/object_zf/gZfDinolfosTLUT" +static const ALIGN_ASSET(2) char gZfDinolfosTLUT[] = dgZfDinolfosTLUT; + +#define dobject_zf_Tex_000200 "__OTR__objects/object_zf/object_zf_Tex_000200" +static const ALIGN_ASSET(2) char object_zf_Tex_000200[] = dobject_zf_Tex_000200; + +#define dobject_zf_Tex_000240 "__OTR__objects/object_zf/object_zf_Tex_000240" +static const ALIGN_ASSET(2) char object_zf_Tex_000240[] = dobject_zf_Tex_000240; + +#define dgZfDinolfosSpineTex "__OTR__objects/object_zf/gZfDinolfosSpineTex" +static const ALIGN_ASSET(2) char gZfDinolfosSpineTex[] = dgZfDinolfosSpineTex; + +#define dobject_zf_Tex_0003C0 "__OTR__objects/object_zf/object_zf_Tex_0003C0" +static const ALIGN_ASSET(2) char object_zf_Tex_0003C0[] = dobject_zf_Tex_0003C0; + +#define dobject_zf_Tex_000440 "__OTR__objects/object_zf/object_zf_Tex_000440" +static const ALIGN_ASSET(2) char object_zf_Tex_000440[] = dobject_zf_Tex_000440; + +#define dobject_zf_Tex_000540 "__OTR__objects/object_zf/object_zf_Tex_000540" +static const ALIGN_ASSET(2) char object_zf_Tex_000540[] = dobject_zf_Tex_000540; + +#define dobject_zf_Tex_000580 "__OTR__objects/object_zf/object_zf_Tex_000580" +static const ALIGN_ASSET(2) char object_zf_Tex_000580[] = dobject_zf_Tex_000580; + +#define dobject_zf_Tex_000600 "__OTR__objects/object_zf/object_zf_Tex_000600" +static const ALIGN_ASSET(2) char object_zf_Tex_000600[] = dobject_zf_Tex_000600; + +#define dgZfDinolfosNormalEyeTex "__OTR__objects/object_zf/gZfDinolfosNormalEyeTex" +static const ALIGN_ASSET(2) char gZfDinolfosNormalEyeTex[] = dgZfDinolfosNormalEyeTex; + +#define dgZfDinolfosRightThighDL "__OTR__objects/object_zf/gZfDinolfosRightThighDL" +static const ALIGN_ASSET(2) char gZfDinolfosRightThighDL[] = dgZfDinolfosRightThighDL; + +#define dgZfDinolfosRightShinDL "__OTR__objects/object_zf/gZfDinolfosRightShinDL" +static const ALIGN_ASSET(2) char gZfDinolfosRightShinDL[] = dgZfDinolfosRightShinDL; + +#define dgZfDinolfosRightFootDL "__OTR__objects/object_zf/gZfDinolfosRightFootDL" +static const ALIGN_ASSET(2) char gZfDinolfosRightFootDL[] = dgZfDinolfosRightFootDL; + +#define dgZfDinolfosLeftThighDL "__OTR__objects/object_zf/gZfDinolfosLeftThighDL" +static const ALIGN_ASSET(2) char gZfDinolfosLeftThighDL[] = dgZfDinolfosLeftThighDL; + +#define dgZfDinolfosLeftShinDL "__OTR__objects/object_zf/gZfDinolfosLeftShinDL" +static const ALIGN_ASSET(2) char gZfDinolfosLeftShinDL[] = dgZfDinolfosLeftShinDL; + +#define dgZfDinolfosLeftFootDL "__OTR__objects/object_zf/gZfDinolfosLeftFootDL" +static const ALIGN_ASSET(2) char gZfDinolfosLeftFootDL[] = dgZfDinolfosLeftFootDL; + +#define dgZfDinolfosRightUpperArmDL "__OTR__objects/object_zf/gZfDinolfosRightUpperArmDL" +static const ALIGN_ASSET(2) char gZfDinolfosRightUpperArmDL[] = dgZfDinolfosRightUpperArmDL; + +#define dgZfDinolfosRightForearmDL "__OTR__objects/object_zf/gZfDinolfosRightForearmDL" +static const ALIGN_ASSET(2) char gZfDinolfosRightForearmDL[] = dgZfDinolfosRightForearmDL; + +#define dgZfDinolfosSwordDL "__OTR__objects/object_zf/gZfDinolfosSwordDL" +static const ALIGN_ASSET(2) char gZfDinolfosSwordDL[] = dgZfDinolfosSwordDL; + +#define dgZfDinolfosLeftUpperArmDL "__OTR__objects/object_zf/gZfDinolfosLeftUpperArmDL" +static const ALIGN_ASSET(2) char gZfDinolfosLeftUpperArmDL[] = dgZfDinolfosLeftUpperArmDL; + +#define dgZfDinolfosLeftForearmDL "__OTR__objects/object_zf/gZfDinolfosLeftForearmDL" +static const ALIGN_ASSET(2) char gZfDinolfosLeftForearmDL[] = dgZfDinolfosLeftForearmDL; + +#define dgZfDinolfosLeftHandDL "__OTR__objects/object_zf/gZfDinolfosLeftHandDL" +static const ALIGN_ASSET(2) char gZfDinolfosLeftHandDL[] = dgZfDinolfosLeftHandDL; + +#define dgZfDinolfosTailBaseDL "__OTR__objects/object_zf/gZfDinolfosTailBaseDL" +static const ALIGN_ASSET(2) char gZfDinolfosTailBaseDL[] = dgZfDinolfosTailBaseDL; + +#define dgZfDinolfosTailTipDL "__OTR__objects/object_zf/gZfDinolfosTailTipDL" +static const ALIGN_ASSET(2) char gZfDinolfosTailTipDL[] = dgZfDinolfosTailTipDL; + +#define dgZfDinolfosScabbardDL "__OTR__objects/object_zf/gZfDinolfosScabbardDL" +static const ALIGN_ASSET(2) char gZfDinolfosScabbardDL[] = dgZfDinolfosScabbardDL; + +#define dgZfDinolfosTrunkDL "__OTR__objects/object_zf/gZfDinolfosTrunkDL" +static const ALIGN_ASSET(2) char gZfDinolfosTrunkDL[] = dgZfDinolfosTrunkDL; + +#define dgZfDinolfosChestArmorDL "__OTR__objects/object_zf/gZfDinolfosChestArmorDL" +static const ALIGN_ASSET(2) char gZfDinolfosChestArmorDL[] = dgZfDinolfosChestArmorDL; + +#define dgZfDinolfosNeckDL "__OTR__objects/object_zf/gZfDinolfosNeckDL" +static const ALIGN_ASSET(2) char gZfDinolfosNeckDL[] = dgZfDinolfosNeckDL; + +#define dgZfDinolfosJawDL "__OTR__objects/object_zf/gZfDinolfosJawDL" +static const ALIGN_ASSET(2) char gZfDinolfosJawDL[] = dgZfDinolfosJawDL; + +#define dgZfDinolfosHeadDL "__OTR__objects/object_zf/gZfDinolfosHeadDL" +static const ALIGN_ASSET(2) char gZfDinolfosHeadDL[] = dgZfDinolfosHeadDL; + +#define dgZfDinolfosSkel "__OTR__objects/object_zf/gZfDinolfosSkel" +static const ALIGN_ASSET(2) char gZfDinolfosSkel[] = dgZfDinolfosSkel; + +#define dgZfWalkingAnim "__OTR__objects/object_zf/gZfWalkingAnim" +static const ALIGN_ASSET(2) char gZfWalkingAnim[] = dgZfWalkingAnim; + +#define dgZfLandingAnim "__OTR__objects/object_zf/gZfLandingAnim" +static const ALIGN_ASSET(2) char gZfLandingAnim[] = dgZfLandingAnim; + +#define dgZfJumpingAnim "__OTR__objects/object_zf/gZfJumpingAnim" +static const ALIGN_ASSET(2) char gZfJumpingAnim[] = dgZfJumpingAnim; + +#define dgZfSlashAnim "__OTR__objects/object_zf/gZfSlashAnim" +static const ALIGN_ASSET(2) char gZfSlashAnim[] = dgZfSlashAnim; + +#define dgZfCryingAnim "__OTR__objects/object_zf/gZfCryingAnim" +static const ALIGN_ASSET(2) char gZfCryingAnim[] = dgZfCryingAnim; + +#define dobject_zf_Tex_00B120 "__OTR__objects/object_zf/object_zf_Tex_00B120" +static const ALIGN_ASSET(2) char object_zf_Tex_00B120[] = dobject_zf_Tex_00B120; + +#define dobject_zf_Tex_00B920 "__OTR__objects/object_zf/object_zf_Tex_00B920" +static const ALIGN_ASSET(2) char object_zf_Tex_00B920[] = dobject_zf_Tex_00B920; + +#define dobject_zf_Tex_00B9A0 "__OTR__objects/object_zf/object_zf_Tex_00B9A0" +static const ALIGN_ASSET(2) char object_zf_Tex_00B9A0[] = dobject_zf_Tex_00B9A0; + +#define dobject_zf_Tex_00BA20 "__OTR__objects/object_zf/object_zf_Tex_00BA20" +static const ALIGN_ASSET(2) char object_zf_Tex_00BA20[] = dobject_zf_Tex_00BA20; + +#define dobject_zf_Tex_00BAA0 "__OTR__objects/object_zf/object_zf_Tex_00BAA0" +static const ALIGN_ASSET(2) char object_zf_Tex_00BAA0[] = dobject_zf_Tex_00BAA0; + +#define dobject_zf_Tex_00BB20 "__OTR__objects/object_zf/object_zf_Tex_00BB20" +static const ALIGN_ASSET(2) char object_zf_Tex_00BB20[] = dobject_zf_Tex_00BB20; + +#define dobject_zf_Tex_00BBA0 "__OTR__objects/object_zf/object_zf_Tex_00BBA0" +static const ALIGN_ASSET(2) char object_zf_Tex_00BBA0[] = dobject_zf_Tex_00BBA0; + +#define dobject_zf_Tex_00BDA0 "__OTR__objects/object_zf/object_zf_Tex_00BDA0" +static const ALIGN_ASSET(2) char object_zf_Tex_00BDA0[] = dobject_zf_Tex_00BDA0; + +#define dobject_zf_Tex_00BE20 "__OTR__objects/object_zf/object_zf_Tex_00BE20" +static const ALIGN_ASSET(2) char object_zf_Tex_00BE20[] = dobject_zf_Tex_00BE20; + +#define dobject_zf_Tex_00C020 "__OTR__objects/object_zf/object_zf_Tex_00C020" +static const ALIGN_ASSET(2) char object_zf_Tex_00C020[] = dobject_zf_Tex_00C020; + +#define dobject_zf_Tex_00C220 "__OTR__objects/object_zf/object_zf_Tex_00C220" +static const ALIGN_ASSET(2) char object_zf_Tex_00C220[] = dobject_zf_Tex_00C220; + +#define dobject_zf_Tex_00C2A0 "__OTR__objects/object_zf/object_zf_Tex_00C2A0" +static const ALIGN_ASSET(2) char object_zf_Tex_00C2A0[] = dobject_zf_Tex_00C2A0; + +#define dgZfLizalfosLeftThighDL "__OTR__objects/object_zf/gZfLizalfosLeftThighDL" +static const ALIGN_ASSET(2) char gZfLizalfosLeftThighDL[] = dgZfLizalfosLeftThighDL; + +#define dgZfLizalfosLeftShinDL "__OTR__objects/object_zf/gZfLizalfosLeftShinDL" +static const ALIGN_ASSET(2) char gZfLizalfosLeftShinDL[] = dgZfLizalfosLeftShinDL; + +#define dgZfLizalfosLeftFootDL "__OTR__objects/object_zf/gZfLizalfosLeftFootDL" +static const ALIGN_ASSET(2) char gZfLizalfosLeftFootDL[] = dgZfLizalfosLeftFootDL; + +#define dgZfLizalfosLeftUpperArmDL "__OTR__objects/object_zf/gZfLizalfosLeftUpperArmDL" +static const ALIGN_ASSET(2) char gZfLizalfosLeftUpperArmDL[] = dgZfLizalfosLeftUpperArmDL; + +#define dgZfLizalfosLeftForearmDL "__OTR__objects/object_zf/gZfLizalfosLeftForearmDL" +static const ALIGN_ASSET(2) char gZfLizalfosLeftForearmDL[] = dgZfLizalfosLeftForearmDL; + +#define dgZfLizalfosLeftHandDL "__OTR__objects/object_zf/gZfLizalfosLeftHandDL" +static const ALIGN_ASSET(2) char gZfLizalfosLeftHandDL[] = dgZfLizalfosLeftHandDL; + +#define dgZfLizalfosRightThighDL "__OTR__objects/object_zf/gZfLizalfosRightThighDL" +static const ALIGN_ASSET(2) char gZfLizalfosRightThighDL[] = dgZfLizalfosRightThighDL; + +#define dgZfLizalfosRightShinDL "__OTR__objects/object_zf/gZfLizalfosRightShinDL" +static const ALIGN_ASSET(2) char gZfLizalfosRightShinDL[] = dgZfLizalfosRightShinDL; + +#define dgZfLizalfosRightFootDL "__OTR__objects/object_zf/gZfLizalfosRightFootDL" +static const ALIGN_ASSET(2) char gZfLizalfosRightFootDL[] = dgZfLizalfosRightFootDL; + +#define dgZfLizalfosRightUpperArmDL "__OTR__objects/object_zf/gZfLizalfosRightUpperArmDL" +static const ALIGN_ASSET(2) char gZfLizalfosRightUpperArmDL[] = dgZfLizalfosRightUpperArmDL; + +#define dgZfLizalfosRightForearmDL "__OTR__objects/object_zf/gZfLizalfosRightForearmDL" +static const ALIGN_ASSET(2) char gZfLizalfosRightForearmDL[] = dgZfLizalfosRightForearmDL; + +#define dgZfLizalfosSwordDL "__OTR__objects/object_zf/gZfLizalfosSwordDL" +static const ALIGN_ASSET(2) char gZfLizalfosSwordDL[] = dgZfLizalfosSwordDL; + +#define dgZfEmptyHandDL "__OTR__objects/object_zf/gZfEmptyHandDL" +static const ALIGN_ASSET(2) char gZfEmptyHandDL[] = dgZfEmptyHandDL; + +#define dgZfLizalfosJawDL "__OTR__objects/object_zf/gZfLizalfosJawDL" +static const ALIGN_ASSET(2) char gZfLizalfosJawDL[] = dgZfLizalfosJawDL; + +#define dgZfLizalfosHeadDL "__OTR__objects/object_zf/gZfLizalfosHeadDL" +static const ALIGN_ASSET(2) char gZfLizalfosHeadDL[] = dgZfLizalfosHeadDL; + +#define dgZfLizalfosTrunkDL "__OTR__objects/object_zf/gZfLizalfosTrunkDL" +static const ALIGN_ASSET(2) char gZfLizalfosTrunkDL[] = dgZfLizalfosTrunkDL; + +#define dgZfLizalfosNeckDL "__OTR__objects/object_zf/gZfLizalfosNeckDL" +static const ALIGN_ASSET(2) char gZfLizalfosNeckDL[] = dgZfLizalfosNeckDL; + +#define dgZfLizalfosChestArmorDL "__OTR__objects/object_zf/gZfLizalfosChestArmorDL" +static const ALIGN_ASSET(2) char gZfLizalfosChestArmorDL[] = dgZfLizalfosChestArmorDL; + +#define dgZfLizalfosTailBaseDL "__OTR__objects/object_zf/gZfLizalfosTailBaseDL" +static const ALIGN_ASSET(2) char gZfLizalfosTailBaseDL[] = dgZfLizalfosTailBaseDL; + +#define dgZfLizalfosTailTipDL "__OTR__objects/object_zf/gZfLizalfosTailTipDL" +static const ALIGN_ASSET(2) char gZfLizalfosTailTipDL[] = dgZfLizalfosTailTipDL; + +#define dgZfLizalfosScabbardDL "__OTR__objects/object_zf/gZfLizalfosScabbardDL" +static const ALIGN_ASSET(2) char gZfLizalfosScabbardDL[] = dgZfLizalfosScabbardDL; + +#define dgZfSheathedSwordDL "__OTR__objects/object_zf/gZfSheathedSwordDL" +static const ALIGN_ASSET(2) char gZfSheathedSwordDL[] = dgZfSheathedSwordDL; + +#define dgZfLizalfosSkel "__OTR__objects/object_zf/gZfLizalfosSkel" +static const ALIGN_ASSET(2) char gZfLizalfosSkel[] = dgZfLizalfosSkel; + +#define dgZfHopCrouchingAnim "__OTR__objects/object_zf/gZfHopCrouchingAnim" +static const ALIGN_ASSET(2) char gZfHopCrouchingAnim[] = dgZfHopCrouchingAnim; + +#define dgZfHopLeapingAnim "__OTR__objects/object_zf/gZfHopLeapingAnim" +static const ALIGN_ASSET(2) char gZfHopLeapingAnim[] = dgZfHopLeapingAnim; + +#define dgZfHopLandingAnim "__OTR__objects/object_zf/gZfHopLandingAnim" +static const ALIGN_ASSET(2) char gZfHopLandingAnim[] = dgZfHopLandingAnim; + +#define dgZfSheathingSwordAnim "__OTR__objects/object_zf/gZfSheathingSwordAnim" +static const ALIGN_ASSET(2) char gZfSheathingSwordAnim[] = dgZfSheathingSwordAnim; + +#define dgZfDrawingSwordAnim "__OTR__objects/object_zf/gZfDrawingSwordAnim" +static const ALIGN_ASSET(2) char gZfDrawingSwordAnim[] = dgZfDrawingSwordAnim; + +#define dgZfDyingAnim "__OTR__objects/object_zf/gZfDyingAnim" +static const ALIGN_ASSET(2) char gZfDyingAnim[] = dgZfDyingAnim; + +#define dgZfKnockedBackAnim "__OTR__objects/object_zf/gZfKnockedBackAnim" +static const ALIGN_ASSET(2) char gZfKnockedBackAnim[] = dgZfKnockedBackAnim; + +#define dgZfSidesteppingAnim "__OTR__objects/object_zf/gZfSidesteppingAnim" +static const ALIGN_ASSET(2) char gZfSidesteppingAnim[] = dgZfSidesteppingAnim; \ No newline at end of file diff --git a/soh/assets/objects/object_zg/object_zg.h b/soh/assets/objects/object_zg/object_zg.h index 5624a6c66..12c52f651 100644 --- a/soh/assets/objects/object_zg/object_zg.h +++ b/soh/assets/objects/object_zg/object_zg.h @@ -1,30 +1,15 @@ #pragma once -#define dgTowerCollapseBarMetalTex "__OTR__objects/object_zg/gTowerCollapseBarMetalTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseBarMetalTex[] = dgTowerCollapseBarMetalTex; -#else -static const char gTowerCollapseBarMetalTex[] __attribute__((aligned (2))) = dgTowerCollapseBarMetalTex; -#endif - -#define dgTowerCollapseBarFlameTex "__OTR__objects/object_zg/gTowerCollapseBarFlameTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseBarFlameTex[] = dgTowerCollapseBarFlameTex; -#else -static const char gTowerCollapseBarFlameTex[] __attribute__((aligned (2))) = dgTowerCollapseBarFlameTex; -#endif - -#define dgTowerCollapseBarsDL "__OTR__objects/object_zg/gTowerCollapseBarsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseBarsDL[] = dgTowerCollapseBarsDL; -#else -static const char gTowerCollapseBarsDL[] __attribute__((aligned (2))) = dgTowerCollapseBarsDL; -#endif - -#define dgTowerCollapseBarsCol "__OTR__objects/object_zg/gTowerCollapseBarsCol" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerCollapseBarsCol[] = dgTowerCollapseBarsCol; -#else -static const char gTowerCollapseBarsCol[] __attribute__((aligned (2))) = dgTowerCollapseBarsCol; -#endif - +#include "align_asset_macro.h" + +#define dgTowerCollapseBarMetalTex "__OTR__objects/object_zg/gTowerCollapseBarMetalTex" +static const ALIGN_ASSET(2) char gTowerCollapseBarMetalTex[] = dgTowerCollapseBarMetalTex; + +#define dgTowerCollapseBarFlameTex "__OTR__objects/object_zg/gTowerCollapseBarFlameTex" +static const ALIGN_ASSET(2) char gTowerCollapseBarFlameTex[] = dgTowerCollapseBarFlameTex; + +#define dgTowerCollapseBarsDL "__OTR__objects/object_zg/gTowerCollapseBarsDL" +static const ALIGN_ASSET(2) char gTowerCollapseBarsDL[] = dgTowerCollapseBarsDL; + +#define dgTowerCollapseBarsCol "__OTR__objects/object_zg/gTowerCollapseBarsCol" +static const ALIGN_ASSET(2) char gTowerCollapseBarsCol[] = dgTowerCollapseBarsCol; \ No newline at end of file diff --git a/soh/assets/objects/object_zl1/object_zl1.h b/soh/assets/objects/object_zl1/object_zl1.h index 2cad72850..28cc86d11 100644 --- a/soh/assets/objects/object_zl1/object_zl1.h +++ b/soh/assets/objects/object_zl1/object_zl1.h @@ -1,541 +1,234 @@ #pragma once -#define dgChildZelda1Skel "__OTR__objects/object_zl1/gChildZelda1Skel" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Skel[] = dgChildZelda1Skel; -#else -static const char gChildZelda1Skel[] __attribute__((aligned (2))) = dgChildZelda1Skel; -#endif - -#define dgChildZelda1WaistDL "__OTR__objects/object_zl1/gChildZelda1WaistDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1WaistDL[] = dgChildZelda1WaistDL; -#else -static const char gChildZelda1WaistDL[] __attribute__((aligned (2))) = dgChildZelda1WaistDL; -#endif - -#define dgChildZelda1LeftLegDL "__OTR__objects/object_zl1/gChildZelda1LeftLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1LeftLegDL[] = dgChildZelda1LeftLegDL; -#else -static const char gChildZelda1LeftLegDL[] __attribute__((aligned (2))) = dgChildZelda1LeftLegDL; -#endif - -#define dgChildZelda1LeftFootDL "__OTR__objects/object_zl1/gChildZelda1LeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1LeftFootDL[] = dgChildZelda1LeftFootDL; -#else -static const char gChildZelda1LeftFootDL[] __attribute__((aligned (2))) = dgChildZelda1LeftFootDL; -#endif - -#define dgChildZelda1RightLegDL "__OTR__objects/object_zl1/gChildZelda1RightLegDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1RightLegDL[] = dgChildZelda1RightLegDL; -#else -static const char gChildZelda1RightLegDL[] __attribute__((aligned (2))) = dgChildZelda1RightLegDL; -#endif - -#define dgChildZelda1RightFootDL "__OTR__objects/object_zl1/gChildZelda1RightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1RightFootDL[] = dgChildZelda1RightFootDL; -#else -static const char gChildZelda1RightFootDL[] __attribute__((aligned (2))) = dgChildZelda1RightFootDL; -#endif - -#define dgChildZelda1Dress1DL "__OTR__objects/object_zl1/gChildZelda1Dress1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Dress1DL[] = dgChildZelda1Dress1DL; -#else -static const char gChildZelda1Dress1DL[] __attribute__((aligned (2))) = dgChildZelda1Dress1DL; -#endif - -#define dgChildZelda1Dress2DL "__OTR__objects/object_zl1/gChildZelda1Dress2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Dress2DL[] = dgChildZelda1Dress2DL; -#else -static const char gChildZelda1Dress2DL[] __attribute__((aligned (2))) = dgChildZelda1Dress2DL; -#endif - -#define dgChildZelda1Dress3DL "__OTR__objects/object_zl1/gChildZelda1Dress3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Dress3DL[] = dgChildZelda1Dress3DL; -#else -static const char gChildZelda1Dress3DL[] __attribute__((aligned (2))) = dgChildZelda1Dress3DL; -#endif - -#define dgChildZelda1TorsoDL "__OTR__objects/object_zl1/gChildZelda1TorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1TorsoDL[] = dgChildZelda1TorsoDL; -#else -static const char gChildZelda1TorsoDL[] __attribute__((aligned (2))) = dgChildZelda1TorsoDL; -#endif - -#define dgChildZelda1LeftUpperArmDL "__OTR__objects/object_zl1/gChildZelda1LeftUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1LeftUpperArmDL[] = dgChildZelda1LeftUpperArmDL; -#else -static const char gChildZelda1LeftUpperArmDL[] __attribute__((aligned (2))) = dgChildZelda1LeftUpperArmDL; -#endif - -#define dgChildZelda1LeftForearmDL "__OTR__objects/object_zl1/gChildZelda1LeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1LeftForearmDL[] = dgChildZelda1LeftForearmDL; -#else -static const char gChildZelda1LeftForearmDL[] __attribute__((aligned (2))) = dgChildZelda1LeftForearmDL; -#endif - -#define dgChildZelda1LeftHandDL "__OTR__objects/object_zl1/gChildZelda1LeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1LeftHandDL[] = dgChildZelda1LeftHandDL; -#else -static const char gChildZelda1LeftHandDL[] __attribute__((aligned (2))) = dgChildZelda1LeftHandDL; -#endif - -#define dgChildZelda1RightUpperArmDL "__OTR__objects/object_zl1/gChildZelda1RightUpperArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1RightUpperArmDL[] = dgChildZelda1RightUpperArmDL; -#else -static const char gChildZelda1RightUpperArmDL[] __attribute__((aligned (2))) = dgChildZelda1RightUpperArmDL; -#endif - -#define dgChildZelda1RightForearmDL "__OTR__objects/object_zl1/gChildZelda1RightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1RightForearmDL[] = dgChildZelda1RightForearmDL; -#else -static const char gChildZelda1RightForearmDL[] __attribute__((aligned (2))) = dgChildZelda1RightForearmDL; -#endif - -#define dgChildZelda1RightHandDL "__OTR__objects/object_zl1/gChildZelda1RightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1RightHandDL[] = dgChildZelda1RightHandDL; -#else -static const char gChildZelda1RightHandDL[] __attribute__((aligned (2))) = dgChildZelda1RightHandDL; -#endif - -#define dgChildZelda1HeadDL "__OTR__objects/object_zl1/gChildZelda1HeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1HeadDL[] = dgChildZelda1HeadDL; -#else -static const char gChildZelda1HeadDL[] __attribute__((aligned (2))) = dgChildZelda1HeadDL; -#endif - -#define dgChildZelda1DressGradientTex "__OTR__objects/object_zl1/gChildZelda1DressGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1DressGradientTex[] = dgChildZelda1DressGradientTex; -#else -static const char gChildZelda1DressGradientTex[] __attribute__((aligned (2))) = dgChildZelda1DressGradientTex; -#endif - -#define dgChildZelda1PurpleDressPatternTex "__OTR__objects/object_zl1/gChildZelda1PurpleDressPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1PurpleDressPatternTex[] = dgChildZelda1PurpleDressPatternTex; -#else -static const char gChildZelda1PurpleDressPatternTex[] __attribute__((aligned (2))) = dgChildZelda1PurpleDressPatternTex; -#endif - -#define dgChildZelda1TriforceSashTex "__OTR__objects/object_zl1/gChildZelda1TriforceSashTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1TriforceSashTex[] = dgChildZelda1TriforceSashTex; -#else -static const char gChildZelda1TriforceSashTex[] __attribute__((aligned (2))) = dgChildZelda1TriforceSashTex; -#endif - -#define dgChildZelda1BeltTex "__OTR__objects/object_zl1/gChildZelda1BeltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1BeltTex[] = dgChildZelda1BeltTex; -#else -static const char gChildZelda1BeltTex[] __attribute__((aligned (2))) = dgChildZelda1BeltTex; -#endif - -#define dgChildZelda1BeltLoopsTex "__OTR__objects/object_zl1/gChildZelda1BeltLoopsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1BeltLoopsTex[] = dgChildZelda1BeltLoopsTex; -#else -static const char gChildZelda1BeltLoopsTex[] __attribute__((aligned (2))) = dgChildZelda1BeltLoopsTex; -#endif - -#define dgChildZelda1DressWrinklesTex "__OTR__objects/object_zl1/gChildZelda1DressWrinklesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1DressWrinklesTex[] = dgChildZelda1DressWrinklesTex; -#else -static const char gChildZelda1DressWrinklesTex[] __attribute__((aligned (2))) = dgChildZelda1DressWrinklesTex; -#endif - -#define dgChildZelda1BackOfHandTex "__OTR__objects/object_zl1/gChildZelda1BackOfHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1BackOfHandTex[] = dgChildZelda1BackOfHandTex; -#else -static const char gChildZelda1BackOfHandTex[] __attribute__((aligned (2))) = dgChildZelda1BackOfHandTex; -#endif - -#define dgChildZelda1BraceletTex "__OTR__objects/object_zl1/gChildZelda1BraceletTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1BraceletTex[] = dgChildZelda1BraceletTex; -#else -static const char gChildZelda1BraceletTex[] __attribute__((aligned (2))) = dgChildZelda1BraceletTex; -#endif - -#define dgChildZelda1BlueUndershirtGradient1Tex "__OTR__objects/object_zl1/gChildZelda1BlueUndershirtGradient1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1BlueUndershirtGradient1Tex[] = dgChildZelda1BlueUndershirtGradient1Tex; -#else -static const char gChildZelda1BlueUndershirtGradient1Tex[] __attribute__((aligned (2))) = dgChildZelda1BlueUndershirtGradient1Tex; -#endif - -#define dgChildZelda1BlueUndershirtGradient2Tex "__OTR__objects/object_zl1/gChildZelda1BlueUndershirtGradient2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1BlueUndershirtGradient2Tex[] = dgChildZelda1BlueUndershirtGradient2Tex; -#else -static const char gChildZelda1BlueUndershirtGradient2Tex[] __attribute__((aligned (2))) = dgChildZelda1BlueUndershirtGradient2Tex; -#endif - -#define dgChildZelda1Tex_1A50 "__OTR__objects/object_zl1/gChildZelda1Tex_1A50" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Tex_1A50[] = dgChildZelda1Tex_1A50; -#else -static const char gChildZelda1Tex_1A50[] __attribute__((aligned (2))) = dgChildZelda1Tex_1A50; -#endif - -#define dgChildZelda1StripedShoulderPatternTex "__OTR__objects/object_zl1/gChildZelda1StripedShoulderPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1StripedShoulderPatternTex[] = dgChildZelda1StripedShoulderPatternTex; -#else -static const char gChildZelda1StripedShoulderPatternTex[] __attribute__((aligned (2))) = dgChildZelda1StripedShoulderPatternTex; -#endif - -#define dgChildZelda1UndershirtWrinklesTex "__OTR__objects/object_zl1/gChildZelda1UndershirtWrinklesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1UndershirtWrinklesTex[] = dgChildZelda1UndershirtWrinklesTex; -#else -static const char gChildZelda1UndershirtWrinklesTex[] __attribute__((aligned (2))) = dgChildZelda1UndershirtWrinklesTex; -#endif - -#define dgChildZelda1PendantTex "__OTR__objects/object_zl1/gChildZelda1PendantTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1PendantTex[] = dgChildZelda1PendantTex; -#else -static const char gChildZelda1PendantTex[] __attribute__((aligned (2))) = dgChildZelda1PendantTex; -#endif - -#define dgChildZelda1HeaddressGradientTex "__OTR__objects/object_zl1/gChildZelda1HeaddressGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1HeaddressGradientTex[] = dgChildZelda1HeaddressGradientTex; -#else -static const char gChildZelda1HeaddressGradientTex[] __attribute__((aligned (2))) = dgChildZelda1HeaddressGradientTex; -#endif - -#define dgChildZelda1SkinGradientTex "__OTR__objects/object_zl1/gChildZelda1SkinGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1SkinGradientTex[] = dgChildZelda1SkinGradientTex; -#else -static const char gChildZelda1SkinGradientTex[] __attribute__((aligned (2))) = dgChildZelda1SkinGradientTex; -#endif - -#define dgChildZelda1HeaddressTriforceEmblemTex "__OTR__objects/object_zl1/gChildZelda1HeaddressTriforceEmblemTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1HeaddressTriforceEmblemTex[] = dgChildZelda1HeaddressTriforceEmblemTex; -#else -static const char gChildZelda1HeaddressTriforceEmblemTex[] __attribute__((aligned (2))) = dgChildZelda1HeaddressTriforceEmblemTex; -#endif - -#define dgChildZelda1PointedHairOnSideTex "__OTR__objects/object_zl1/gChildZelda1PointedHairOnSideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1PointedHairOnSideTex[] = dgChildZelda1PointedHairOnSideTex; -#else -static const char gChildZelda1PointedHairOnSideTex[] __attribute__((aligned (2))) = dgChildZelda1PointedHairOnSideTex; -#endif - -#define dgChildZelda1HairTex "__OTR__objects/object_zl1/gChildZelda1HairTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1HairTex[] = dgChildZelda1HairTex; -#else -static const char gChildZelda1HairTex[] __attribute__((aligned (2))) = dgChildZelda1HairTex; -#endif - -#define dgChildZelda1Tex_81C8 "__OTR__objects/object_zl1/gChildZelda1Tex_81C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Tex_81C8[] = dgChildZelda1Tex_81C8; -#else -static const char gChildZelda1Tex_81C8[] __attribute__((aligned (2))) = dgChildZelda1Tex_81C8; -#endif - -#define dgChildZelda1EarTex "__OTR__objects/object_zl1/gChildZelda1EarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1EarTex[] = dgChildZelda1EarTex; -#else -static const char gChildZelda1EarTex[] __attribute__((aligned (2))) = dgChildZelda1EarTex; -#endif - -#define dgChildZelda1AlternateDressPatternTex "__OTR__objects/object_zl1/gChildZelda1AlternateDressPatternTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1AlternateDressPatternTex[] = dgChildZelda1AlternateDressPatternTex; -#else -static const char gChildZelda1AlternateDressPatternTex[] __attribute__((aligned (2))) = dgChildZelda1AlternateDressPatternTex; -#endif - -#define dgChildZelda1ALternateDressBeltTex "__OTR__objects/object_zl1/gChildZelda1ALternateDressBeltTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1ALternateDressBeltTex[] = dgChildZelda1ALternateDressBeltTex; -#else -static const char gChildZelda1ALternateDressBeltTex[] __attribute__((aligned (2))) = dgChildZelda1ALternateDressBeltTex; -#endif - -#define dgChildZelda1AlternateDressGradientTex "__OTR__objects/object_zl1/gChildZelda1AlternateDressGradientTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1AlternateDressGradientTex[] = dgChildZelda1AlternateDressGradientTex; -#else -static const char gChildZelda1AlternateDressGradientTex[] __attribute__((aligned (2))) = dgChildZelda1AlternateDressGradientTex; -#endif - -#define dgChildZelda1AlternateDressLiningTex "__OTR__objects/object_zl1/gChildZelda1AlternateDressLiningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1AlternateDressLiningTex[] = dgChildZelda1AlternateDressLiningTex; -#else -static const char gChildZelda1AlternateDressLiningTex[] __attribute__((aligned (2))) = dgChildZelda1AlternateDressLiningTex; -#endif - -#define dgChildZelda1BootTex "__OTR__objects/object_zl1/gChildZelda1BootTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1BootTex[] = dgChildZelda1BootTex; -#else -static const char gChildZelda1BootTex[] __attribute__((aligned (2))) = dgChildZelda1BootTex; -#endif - -#define dgChildZelda1BootShaftTex "__OTR__objects/object_zl1/gChildZelda1BootShaftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1BootShaftTex[] = dgChildZelda1BootShaftTex; -#else -static const char gChildZelda1BootShaftTex[] __attribute__((aligned (2))) = dgChildZelda1BootShaftTex; -#endif - -#define dgChildZelda1Tex_A848 "__OTR__objects/object_zl1/gChildZelda1Tex_A848" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Tex_A848[] = dgChildZelda1Tex_A848; -#else -static const char gChildZelda1Tex_A848[] __attribute__((aligned (2))) = dgChildZelda1Tex_A848; -#endif - -#define dgChildZelda1HeaddressTex_A8C8 "__OTR__objects/object_zl1/gChildZelda1HeaddressTex_A8C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1HeaddressTex_A8C8[] = dgChildZelda1HeaddressTex_A8C8; -#else -static const char gChildZelda1HeaddressTex_A8C8[] __attribute__((aligned (2))) = dgChildZelda1HeaddressTex_A8C8; -#endif - -#define dgChildZelda1HeaddressStripeTex "__OTR__objects/object_zl1/gChildZelda1HeaddressStripeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1HeaddressStripeTex[] = dgChildZelda1HeaddressStripeTex; -#else -static const char gChildZelda1HeaddressStripeTex[] __attribute__((aligned (2))) = dgChildZelda1HeaddressStripeTex; -#endif - -#define dgChildZelda1AlternateDressDL "__OTR__objects/object_zl1/gChildZelda1AlternateDressDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1AlternateDressDL[] = dgChildZelda1AlternateDressDL; -#else -static const char gChildZelda1AlternateDressDL[] __attribute__((aligned (2))) = dgChildZelda1AlternateDressDL; -#endif - -#define dgChildZelda1OcarinaDL "__OTR__objects/object_zl1/gChildZelda1OcarinaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1OcarinaDL[] = dgChildZelda1OcarinaDL; -#else -static const char gChildZelda1OcarinaDL[] __attribute__((aligned (2))) = dgChildZelda1OcarinaDL; -#endif - -#define dgChildZelda1TLUT_0450 "__OTR__objects/object_zl1/gChildZelda1TLUT_0450" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1TLUT_0450[] = dgChildZelda1TLUT_0450; -#else -static const char gChildZelda1TLUT_0450[] __attribute__((aligned (2))) = dgChildZelda1TLUT_0450; -#endif - -#define dgChildZelda1TLUT_6CD8 "__OTR__objects/object_zl1/gChildZelda1TLUT_6CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1TLUT_6CD8[] = dgChildZelda1TLUT_6CD8; -#else -static const char gChildZelda1TLUT_6CD8[] __attribute__((aligned (2))) = dgChildZelda1TLUT_6CD8; -#endif - -#define dgChildZelda1TLUT_6ED0 "__OTR__objects/object_zl1/gChildZelda1TLUT_6ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1TLUT_6ED0[] = dgChildZelda1TLUT_6ED0; -#else -static const char gChildZelda1TLUT_6ED0[] __attribute__((aligned (2))) = dgChildZelda1TLUT_6ED0; -#endif - -#define dgChildZelda1TLUT_70C8 "__OTR__objects/object_zl1/gChildZelda1TLUT_70C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1TLUT_70C8[] = dgChildZelda1TLUT_70C8; -#else -static const char gChildZelda1TLUT_70C8[] __attribute__((aligned (2))) = dgChildZelda1TLUT_70C8; -#endif - -#define dgChildZelda1EyeOpenLookingUpRightTex "__OTR__objects/object_zl1/gChildZelda1EyeOpenLookingUpRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1EyeOpenLookingUpRightTex[] = dgChildZelda1EyeOpenLookingUpRightTex; -#else -static const char gChildZelda1EyeOpenLookingUpRightTex[] __attribute__((aligned (2))) = dgChildZelda1EyeOpenLookingUpRightTex; -#endif - -#define dgChildZelda1EyeOpenLookingLeftTex "__OTR__objects/object_zl1/gChildZelda1EyeOpenLookingLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1EyeOpenLookingLeftTex[] = dgChildZelda1EyeOpenLookingLeftTex; -#else -static const char gChildZelda1EyeOpenLookingLeftTex[] __attribute__((aligned (2))) = dgChildZelda1EyeOpenLookingLeftTex; -#endif - -#define dgChildZelda1EyeOpenLookingRightTex "__OTR__objects/object_zl1/gChildZelda1EyeOpenLookingRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1EyeOpenLookingRightTex[] = dgChildZelda1EyeOpenLookingRightTex; -#else -static const char gChildZelda1EyeOpenLookingRightTex[] __attribute__((aligned (2))) = dgChildZelda1EyeOpenLookingRightTex; -#endif - -#define dgChildZelda1EyeHalf1Tex "__OTR__objects/object_zl1/gChildZelda1EyeHalf1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1EyeHalf1Tex[] = dgChildZelda1EyeHalf1Tex; -#else -static const char gChildZelda1EyeHalf1Tex[] __attribute__((aligned (2))) = dgChildZelda1EyeHalf1Tex; -#endif - -#define dgChildZelda1EyeHalf2Tex "__OTR__objects/object_zl1/gChildZelda1EyeHalf2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1EyeHalf2Tex[] = dgChildZelda1EyeHalf2Tex; -#else -static const char gChildZelda1EyeHalf2Tex[] __attribute__((aligned (2))) = dgChildZelda1EyeHalf2Tex; -#endif - -#define dgChildZelda1EyeClosedTex "__OTR__objects/object_zl1/gChildZelda1EyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1EyeClosedTex[] = dgChildZelda1EyeClosedTex; -#else -static const char gChildZelda1EyeClosedTex[] __attribute__((aligned (2))) = dgChildZelda1EyeClosedTex; -#endif - -#define dgChildZelda1EyeWideTex "__OTR__objects/object_zl1/gChildZelda1EyeWideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1EyeWideTex[] = dgChildZelda1EyeWideTex; -#else -static const char gChildZelda1EyeWideTex[] __attribute__((aligned (2))) = dgChildZelda1EyeWideTex; -#endif - -#define dgChildZelda1MouthNeutralTex "__OTR__objects/object_zl1/gChildZelda1MouthNeutralTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1MouthNeutralTex[] = dgChildZelda1MouthNeutralTex; -#else -static const char gChildZelda1MouthNeutralTex[] __attribute__((aligned (2))) = dgChildZelda1MouthNeutralTex; -#endif - -#define dgChildZelda1MouthFrowningTex "__OTR__objects/object_zl1/gChildZelda1MouthFrowningTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1MouthFrowningTex[] = dgChildZelda1MouthFrowningTex; -#else -static const char gChildZelda1MouthFrowningTex[] __attribute__((aligned (2))) = dgChildZelda1MouthFrowningTex; -#endif - -#define dgChildZelda1MouthOpenTex "__OTR__objects/object_zl1/gChildZelda1MouthOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1MouthOpenTex[] = dgChildZelda1MouthOpenTex; -#else -static const char gChildZelda1MouthOpenTex[] __attribute__((aligned (2))) = dgChildZelda1MouthOpenTex; -#endif - -#define dgChildZelda1MouthOpenSmilingTex "__OTR__objects/object_zl1/gChildZelda1MouthOpenSmilingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1MouthOpenSmilingTex[] = dgChildZelda1MouthOpenSmilingTex; -#else -static const char gChildZelda1MouthOpenSmilingTex[] __attribute__((aligned (2))) = dgChildZelda1MouthOpenSmilingTex; -#endif - -#define dgChildZelda1Anim_00438 "__OTR__objects/object_zl1/gChildZelda1Anim_00438" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_00438[] = dgChildZelda1Anim_00438; -#else -static const char gChildZelda1Anim_00438[] __attribute__((aligned (2))) = dgChildZelda1Anim_00438; -#endif - -#define dgChildZelda1Anim_10B38 "__OTR__objects/object_zl1/gChildZelda1Anim_10B38" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_10B38[] = dgChildZelda1Anim_10B38; -#else -static const char gChildZelda1Anim_10B38[] __attribute__((aligned (2))) = dgChildZelda1Anim_10B38; -#endif - -#define dgChildZelda1Anim_11348 "__OTR__objects/object_zl1/gChildZelda1Anim_11348" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_11348[] = dgChildZelda1Anim_11348; -#else -static const char gChildZelda1Anim_11348[] __attribute__((aligned (2))) = dgChildZelda1Anim_11348; -#endif - -#define dgChildZelda1Anim_116E4 "__OTR__objects/object_zl1/gChildZelda1Anim_116E4" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_116E4[] = dgChildZelda1Anim_116E4; -#else -static const char gChildZelda1Anim_116E4[] __attribute__((aligned (2))) = dgChildZelda1Anim_116E4; -#endif - -#define dgChildZelda1Anim_12B88 "__OTR__objects/object_zl1/gChildZelda1Anim_12B88" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_12B88[] = dgChildZelda1Anim_12B88; -#else -static const char gChildZelda1Anim_12B88[] __attribute__((aligned (2))) = dgChildZelda1Anim_12B88; -#endif - -#define dgChildZelda1Anim_12118 "__OTR__objects/object_zl1/gChildZelda1Anim_12118" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_12118[] = dgChildZelda1Anim_12118; -#else -static const char gChildZelda1Anim_12118[] __attribute__((aligned (2))) = dgChildZelda1Anim_12118; -#endif - -#define dgChildZelda1Anim_12B04 "__OTR__objects/object_zl1/gChildZelda1Anim_12B04" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_12B04[] = dgChildZelda1Anim_12B04; -#else -static const char gChildZelda1Anim_12B04[] __attribute__((aligned (2))) = dgChildZelda1Anim_12B04; -#endif - -#define dgChildZelda1Anim_12F80 "__OTR__objects/object_zl1/gChildZelda1Anim_12F80" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_12F80[] = dgChildZelda1Anim_12F80; -#else -static const char gChildZelda1Anim_12F80[] __attribute__((aligned (2))) = dgChildZelda1Anim_12F80; -#endif - -#define dgChildZelda1Anim_132D8 "__OTR__objects/object_zl1/gChildZelda1Anim_132D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_132D8[] = dgChildZelda1Anim_132D8; -#else -static const char gChildZelda1Anim_132D8[] __attribute__((aligned (2))) = dgChildZelda1Anim_132D8; -#endif - -#define dgChildZelda1Anim_138E0 "__OTR__objects/object_zl1/gChildZelda1Anim_138E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_138E0[] = dgChildZelda1Anim_138E0; -#else -static const char gChildZelda1Anim_138E0[] __attribute__((aligned (2))) = dgChildZelda1Anim_138E0; -#endif - -#define dgChildZelda1Anim_13F10 "__OTR__objects/object_zl1/gChildZelda1Anim_13F10" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_13F10[] = dgChildZelda1Anim_13F10; -#else -static const char gChildZelda1Anim_13F10[] __attribute__((aligned (2))) = dgChildZelda1Anim_13F10; -#endif - -#define dgChildZelda1Anim_143A8 "__OTR__objects/object_zl1/gChildZelda1Anim_143A8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZelda1Anim_143A8[] = dgChildZelda1Anim_143A8; -#else -static const char gChildZelda1Anim_143A8[] __attribute__((aligned (2))) = dgChildZelda1Anim_143A8; -#endif - -#define dobject_zl1Tex_00EE58 "__OTR__objects/object_zl1/object_zl1Tex_00EE58" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl1Tex_00EE58[] = dobject_zl1Tex_00EE58; -#else -static const char object_zl1Tex_00EE58[] __attribute__((aligned (2))) = dobject_zl1Tex_00EE58; -#endif - +#include "align_asset_macro.h" + +#define dgChildZelda1Skel "__OTR__objects/object_zl1/gChildZelda1Skel" +static const ALIGN_ASSET(2) char gChildZelda1Skel[] = dgChildZelda1Skel; + +#define dgChildZelda1WaistDL "__OTR__objects/object_zl1/gChildZelda1WaistDL" +static const ALIGN_ASSET(2) char gChildZelda1WaistDL[] = dgChildZelda1WaistDL; + +#define dgChildZelda1LeftLegDL "__OTR__objects/object_zl1/gChildZelda1LeftLegDL" +static const ALIGN_ASSET(2) char gChildZelda1LeftLegDL[] = dgChildZelda1LeftLegDL; + +#define dgChildZelda1LeftFootDL "__OTR__objects/object_zl1/gChildZelda1LeftFootDL" +static const ALIGN_ASSET(2) char gChildZelda1LeftFootDL[] = dgChildZelda1LeftFootDL; + +#define dgChildZelda1RightLegDL "__OTR__objects/object_zl1/gChildZelda1RightLegDL" +static const ALIGN_ASSET(2) char gChildZelda1RightLegDL[] = dgChildZelda1RightLegDL; + +#define dgChildZelda1RightFootDL "__OTR__objects/object_zl1/gChildZelda1RightFootDL" +static const ALIGN_ASSET(2) char gChildZelda1RightFootDL[] = dgChildZelda1RightFootDL; + +#define dgChildZelda1Dress1DL "__OTR__objects/object_zl1/gChildZelda1Dress1DL" +static const ALIGN_ASSET(2) char gChildZelda1Dress1DL[] = dgChildZelda1Dress1DL; + +#define dgChildZelda1Dress2DL "__OTR__objects/object_zl1/gChildZelda1Dress2DL" +static const ALIGN_ASSET(2) char gChildZelda1Dress2DL[] = dgChildZelda1Dress2DL; + +#define dgChildZelda1Dress3DL "__OTR__objects/object_zl1/gChildZelda1Dress3DL" +static const ALIGN_ASSET(2) char gChildZelda1Dress3DL[] = dgChildZelda1Dress3DL; + +#define dgChildZelda1TorsoDL "__OTR__objects/object_zl1/gChildZelda1TorsoDL" +static const ALIGN_ASSET(2) char gChildZelda1TorsoDL[] = dgChildZelda1TorsoDL; + +#define dgChildZelda1LeftUpperArmDL "__OTR__objects/object_zl1/gChildZelda1LeftUpperArmDL" +static const ALIGN_ASSET(2) char gChildZelda1LeftUpperArmDL[] = dgChildZelda1LeftUpperArmDL; + +#define dgChildZelda1LeftForearmDL "__OTR__objects/object_zl1/gChildZelda1LeftForearmDL" +static const ALIGN_ASSET(2) char gChildZelda1LeftForearmDL[] = dgChildZelda1LeftForearmDL; + +#define dgChildZelda1LeftHandDL "__OTR__objects/object_zl1/gChildZelda1LeftHandDL" +static const ALIGN_ASSET(2) char gChildZelda1LeftHandDL[] = dgChildZelda1LeftHandDL; + +#define dgChildZelda1RightUpperArmDL "__OTR__objects/object_zl1/gChildZelda1RightUpperArmDL" +static const ALIGN_ASSET(2) char gChildZelda1RightUpperArmDL[] = dgChildZelda1RightUpperArmDL; + +#define dgChildZelda1RightForearmDL "__OTR__objects/object_zl1/gChildZelda1RightForearmDL" +static const ALIGN_ASSET(2) char gChildZelda1RightForearmDL[] = dgChildZelda1RightForearmDL; + +#define dgChildZelda1RightHandDL "__OTR__objects/object_zl1/gChildZelda1RightHandDL" +static const ALIGN_ASSET(2) char gChildZelda1RightHandDL[] = dgChildZelda1RightHandDL; + +#define dgChildZelda1HeadDL "__OTR__objects/object_zl1/gChildZelda1HeadDL" +static const ALIGN_ASSET(2) char gChildZelda1HeadDL[] = dgChildZelda1HeadDL; + +#define dgChildZelda1DressGradientTex "__OTR__objects/object_zl1/gChildZelda1DressGradientTex" +static const ALIGN_ASSET(2) char gChildZelda1DressGradientTex[] = dgChildZelda1DressGradientTex; + +#define dgChildZelda1PurpleDressPatternTex "__OTR__objects/object_zl1/gChildZelda1PurpleDressPatternTex" +static const ALIGN_ASSET(2) char gChildZelda1PurpleDressPatternTex[] = dgChildZelda1PurpleDressPatternTex; + +#define dgChildZelda1TriforceSashTex "__OTR__objects/object_zl1/gChildZelda1TriforceSashTex" +static const ALIGN_ASSET(2) char gChildZelda1TriforceSashTex[] = dgChildZelda1TriforceSashTex; + +#define dgChildZelda1BeltTex "__OTR__objects/object_zl1/gChildZelda1BeltTex" +static const ALIGN_ASSET(2) char gChildZelda1BeltTex[] = dgChildZelda1BeltTex; + +#define dgChildZelda1BeltLoopsTex "__OTR__objects/object_zl1/gChildZelda1BeltLoopsTex" +static const ALIGN_ASSET(2) char gChildZelda1BeltLoopsTex[] = dgChildZelda1BeltLoopsTex; + +#define dgChildZelda1DressWrinklesTex "__OTR__objects/object_zl1/gChildZelda1DressWrinklesTex" +static const ALIGN_ASSET(2) char gChildZelda1DressWrinklesTex[] = dgChildZelda1DressWrinklesTex; + +#define dgChildZelda1BackOfHandTex "__OTR__objects/object_zl1/gChildZelda1BackOfHandTex" +static const ALIGN_ASSET(2) char gChildZelda1BackOfHandTex[] = dgChildZelda1BackOfHandTex; + +#define dgChildZelda1BraceletTex "__OTR__objects/object_zl1/gChildZelda1BraceletTex" +static const ALIGN_ASSET(2) char gChildZelda1BraceletTex[] = dgChildZelda1BraceletTex; + +#define dgChildZelda1BlueUndershirtGradient1Tex "__OTR__objects/object_zl1/gChildZelda1BlueUndershirtGradient1Tex" +static const ALIGN_ASSET(2) char gChildZelda1BlueUndershirtGradient1Tex[] = dgChildZelda1BlueUndershirtGradient1Tex; + +#define dgChildZelda1BlueUndershirtGradient2Tex "__OTR__objects/object_zl1/gChildZelda1BlueUndershirtGradient2Tex" +static const ALIGN_ASSET(2) char gChildZelda1BlueUndershirtGradient2Tex[] = dgChildZelda1BlueUndershirtGradient2Tex; + +#define dgChildZelda1Tex_1A50 "__OTR__objects/object_zl1/gChildZelda1Tex_1A50" +static const ALIGN_ASSET(2) char gChildZelda1Tex_1A50[] = dgChildZelda1Tex_1A50; + +#define dgChildZelda1StripedShoulderPatternTex "__OTR__objects/object_zl1/gChildZelda1StripedShoulderPatternTex" +static const ALIGN_ASSET(2) char gChildZelda1StripedShoulderPatternTex[] = dgChildZelda1StripedShoulderPatternTex; + +#define dgChildZelda1UndershirtWrinklesTex "__OTR__objects/object_zl1/gChildZelda1UndershirtWrinklesTex" +static const ALIGN_ASSET(2) char gChildZelda1UndershirtWrinklesTex[] = dgChildZelda1UndershirtWrinklesTex; + +#define dgChildZelda1PendantTex "__OTR__objects/object_zl1/gChildZelda1PendantTex" +static const ALIGN_ASSET(2) char gChildZelda1PendantTex[] = dgChildZelda1PendantTex; + +#define dgChildZelda1HeaddressGradientTex "__OTR__objects/object_zl1/gChildZelda1HeaddressGradientTex" +static const ALIGN_ASSET(2) char gChildZelda1HeaddressGradientTex[] = dgChildZelda1HeaddressGradientTex; + +#define dgChildZelda1SkinGradientTex "__OTR__objects/object_zl1/gChildZelda1SkinGradientTex" +static const ALIGN_ASSET(2) char gChildZelda1SkinGradientTex[] = dgChildZelda1SkinGradientTex; + +#define dgChildZelda1HeaddressTriforceEmblemTex "__OTR__objects/object_zl1/gChildZelda1HeaddressTriforceEmblemTex" +static const ALIGN_ASSET(2) char gChildZelda1HeaddressTriforceEmblemTex[] = dgChildZelda1HeaddressTriforceEmblemTex; + +#define dgChildZelda1PointedHairOnSideTex "__OTR__objects/object_zl1/gChildZelda1PointedHairOnSideTex" +static const ALIGN_ASSET(2) char gChildZelda1PointedHairOnSideTex[] = dgChildZelda1PointedHairOnSideTex; + +#define dgChildZelda1HairTex "__OTR__objects/object_zl1/gChildZelda1HairTex" +static const ALIGN_ASSET(2) char gChildZelda1HairTex[] = dgChildZelda1HairTex; + +#define dgChildZelda1Tex_81C8 "__OTR__objects/object_zl1/gChildZelda1Tex_81C8" +static const ALIGN_ASSET(2) char gChildZelda1Tex_81C8[] = dgChildZelda1Tex_81C8; + +#define dgChildZelda1EarTex "__OTR__objects/object_zl1/gChildZelda1EarTex" +static const ALIGN_ASSET(2) char gChildZelda1EarTex[] = dgChildZelda1EarTex; + +#define dgChildZelda1AlternateDressPatternTex "__OTR__objects/object_zl1/gChildZelda1AlternateDressPatternTex" +static const ALIGN_ASSET(2) char gChildZelda1AlternateDressPatternTex[] = dgChildZelda1AlternateDressPatternTex; + +#define dgChildZelda1ALternateDressBeltTex "__OTR__objects/object_zl1/gChildZelda1ALternateDressBeltTex" +static const ALIGN_ASSET(2) char gChildZelda1ALternateDressBeltTex[] = dgChildZelda1ALternateDressBeltTex; + +#define dgChildZelda1AlternateDressGradientTex "__OTR__objects/object_zl1/gChildZelda1AlternateDressGradientTex" +static const ALIGN_ASSET(2) char gChildZelda1AlternateDressGradientTex[] = dgChildZelda1AlternateDressGradientTex; + +#define dgChildZelda1AlternateDressLiningTex "__OTR__objects/object_zl1/gChildZelda1AlternateDressLiningTex" +static const ALIGN_ASSET(2) char gChildZelda1AlternateDressLiningTex[] = dgChildZelda1AlternateDressLiningTex; + +#define dgChildZelda1BootTex "__OTR__objects/object_zl1/gChildZelda1BootTex" +static const ALIGN_ASSET(2) char gChildZelda1BootTex[] = dgChildZelda1BootTex; + +#define dgChildZelda1BootShaftTex "__OTR__objects/object_zl1/gChildZelda1BootShaftTex" +static const ALIGN_ASSET(2) char gChildZelda1BootShaftTex[] = dgChildZelda1BootShaftTex; + +#define dgChildZelda1Tex_A848 "__OTR__objects/object_zl1/gChildZelda1Tex_A848" +static const ALIGN_ASSET(2) char gChildZelda1Tex_A848[] = dgChildZelda1Tex_A848; + +#define dgChildZelda1HeaddressTex_A8C8 "__OTR__objects/object_zl1/gChildZelda1HeaddressTex_A8C8" +static const ALIGN_ASSET(2) char gChildZelda1HeaddressTex_A8C8[] = dgChildZelda1HeaddressTex_A8C8; + +#define dgChildZelda1HeaddressStripeTex "__OTR__objects/object_zl1/gChildZelda1HeaddressStripeTex" +static const ALIGN_ASSET(2) char gChildZelda1HeaddressStripeTex[] = dgChildZelda1HeaddressStripeTex; + +#define dgChildZelda1AlternateDressDL "__OTR__objects/object_zl1/gChildZelda1AlternateDressDL" +static const ALIGN_ASSET(2) char gChildZelda1AlternateDressDL[] = dgChildZelda1AlternateDressDL; + +#define dgChildZelda1OcarinaDL "__OTR__objects/object_zl1/gChildZelda1OcarinaDL" +static const ALIGN_ASSET(2) char gChildZelda1OcarinaDL[] = dgChildZelda1OcarinaDL; + +#define dgChildZelda1TLUT_0450 "__OTR__objects/object_zl1/gChildZelda1TLUT_0450" +static const ALIGN_ASSET(2) char gChildZelda1TLUT_0450[] = dgChildZelda1TLUT_0450; + +#define dgChildZelda1TLUT_6CD8 "__OTR__objects/object_zl1/gChildZelda1TLUT_6CD8" +static const ALIGN_ASSET(2) char gChildZelda1TLUT_6CD8[] = dgChildZelda1TLUT_6CD8; + +#define dgChildZelda1TLUT_6ED0 "__OTR__objects/object_zl1/gChildZelda1TLUT_6ED0" +static const ALIGN_ASSET(2) char gChildZelda1TLUT_6ED0[] = dgChildZelda1TLUT_6ED0; + +#define dgChildZelda1TLUT_70C8 "__OTR__objects/object_zl1/gChildZelda1TLUT_70C8" +static const ALIGN_ASSET(2) char gChildZelda1TLUT_70C8[] = dgChildZelda1TLUT_70C8; + +#define dgChildZelda1EyeOpenLookingUpRightTex "__OTR__objects/object_zl1/gChildZelda1EyeOpenLookingUpRightTex" +static const ALIGN_ASSET(2) char gChildZelda1EyeOpenLookingUpRightTex[] = dgChildZelda1EyeOpenLookingUpRightTex; + +#define dgChildZelda1EyeOpenLookingLeftTex "__OTR__objects/object_zl1/gChildZelda1EyeOpenLookingLeftTex" +static const ALIGN_ASSET(2) char gChildZelda1EyeOpenLookingLeftTex[] = dgChildZelda1EyeOpenLookingLeftTex; + +#define dgChildZelda1EyeOpenLookingRightTex "__OTR__objects/object_zl1/gChildZelda1EyeOpenLookingRightTex" +static const ALIGN_ASSET(2) char gChildZelda1EyeOpenLookingRightTex[] = dgChildZelda1EyeOpenLookingRightTex; + +#define dgChildZelda1EyeHalf1Tex "__OTR__objects/object_zl1/gChildZelda1EyeHalf1Tex" +static const ALIGN_ASSET(2) char gChildZelda1EyeHalf1Tex[] = dgChildZelda1EyeHalf1Tex; + +#define dgChildZelda1EyeHalf2Tex "__OTR__objects/object_zl1/gChildZelda1EyeHalf2Tex" +static const ALIGN_ASSET(2) char gChildZelda1EyeHalf2Tex[] = dgChildZelda1EyeHalf2Tex; + +#define dgChildZelda1EyeClosedTex "__OTR__objects/object_zl1/gChildZelda1EyeClosedTex" +static const ALIGN_ASSET(2) char gChildZelda1EyeClosedTex[] = dgChildZelda1EyeClosedTex; + +#define dgChildZelda1EyeWideTex "__OTR__objects/object_zl1/gChildZelda1EyeWideTex" +static const ALIGN_ASSET(2) char gChildZelda1EyeWideTex[] = dgChildZelda1EyeWideTex; + +#define dgChildZelda1MouthNeutralTex "__OTR__objects/object_zl1/gChildZelda1MouthNeutralTex" +static const ALIGN_ASSET(2) char gChildZelda1MouthNeutralTex[] = dgChildZelda1MouthNeutralTex; + +#define dgChildZelda1MouthFrowningTex "__OTR__objects/object_zl1/gChildZelda1MouthFrowningTex" +static const ALIGN_ASSET(2) char gChildZelda1MouthFrowningTex[] = dgChildZelda1MouthFrowningTex; + +#define dgChildZelda1MouthOpenTex "__OTR__objects/object_zl1/gChildZelda1MouthOpenTex" +static const ALIGN_ASSET(2) char gChildZelda1MouthOpenTex[] = dgChildZelda1MouthOpenTex; + +#define dgChildZelda1MouthOpenSmilingTex "__OTR__objects/object_zl1/gChildZelda1MouthOpenSmilingTex" +static const ALIGN_ASSET(2) char gChildZelda1MouthOpenSmilingTex[] = dgChildZelda1MouthOpenSmilingTex; + +#define dgChildZelda1Anim_00438 "__OTR__objects/object_zl1/gChildZelda1Anim_00438" +static const ALIGN_ASSET(2) char gChildZelda1Anim_00438[] = dgChildZelda1Anim_00438; + +#define dgChildZelda1Anim_10B38 "__OTR__objects/object_zl1/gChildZelda1Anim_10B38" +static const ALIGN_ASSET(2) char gChildZelda1Anim_10B38[] = dgChildZelda1Anim_10B38; + +#define dgChildZelda1Anim_11348 "__OTR__objects/object_zl1/gChildZelda1Anim_11348" +static const ALIGN_ASSET(2) char gChildZelda1Anim_11348[] = dgChildZelda1Anim_11348; + +#define dgChildZelda1Anim_116E4 "__OTR__objects/object_zl1/gChildZelda1Anim_116E4" +static const ALIGN_ASSET(2) char gChildZelda1Anim_116E4[] = dgChildZelda1Anim_116E4; + +#define dgChildZelda1Anim_12B88 "__OTR__objects/object_zl1/gChildZelda1Anim_12B88" +static const ALIGN_ASSET(2) char gChildZelda1Anim_12B88[] = dgChildZelda1Anim_12B88; + +#define dgChildZelda1Anim_12118 "__OTR__objects/object_zl1/gChildZelda1Anim_12118" +static const ALIGN_ASSET(2) char gChildZelda1Anim_12118[] = dgChildZelda1Anim_12118; + +#define dgChildZelda1Anim_12B04 "__OTR__objects/object_zl1/gChildZelda1Anim_12B04" +static const ALIGN_ASSET(2) char gChildZelda1Anim_12B04[] = dgChildZelda1Anim_12B04; + +#define dgChildZelda1Anim_12F80 "__OTR__objects/object_zl1/gChildZelda1Anim_12F80" +static const ALIGN_ASSET(2) char gChildZelda1Anim_12F80[] = dgChildZelda1Anim_12F80; + +#define dgChildZelda1Anim_132D8 "__OTR__objects/object_zl1/gChildZelda1Anim_132D8" +static const ALIGN_ASSET(2) char gChildZelda1Anim_132D8[] = dgChildZelda1Anim_132D8; + +#define dgChildZelda1Anim_138E0 "__OTR__objects/object_zl1/gChildZelda1Anim_138E0" +static const ALIGN_ASSET(2) char gChildZelda1Anim_138E0[] = dgChildZelda1Anim_138E0; + +#define dgChildZelda1Anim_13F10 "__OTR__objects/object_zl1/gChildZelda1Anim_13F10" +static const ALIGN_ASSET(2) char gChildZelda1Anim_13F10[] = dgChildZelda1Anim_13F10; + +#define dgChildZelda1Anim_143A8 "__OTR__objects/object_zl1/gChildZelda1Anim_143A8" +static const ALIGN_ASSET(2) char gChildZelda1Anim_143A8[] = dgChildZelda1Anim_143A8; + +#define dobject_zl1Tex_00EE58 "__OTR__objects/object_zl1/object_zl1Tex_00EE58" +static const ALIGN_ASSET(2) char object_zl1Tex_00EE58[] = dobject_zl1Tex_00EE58; \ No newline at end of file diff --git a/soh/assets/objects/object_zl2/object_zl2.h b/soh/assets/objects/object_zl2/object_zl2.h index 5be393305..afcfcbdfa 100644 --- a/soh/assets/objects/object_zl2/object_zl2.h +++ b/soh/assets/objects/object_zl2/object_zl2.h @@ -1,513 +1,222 @@ #pragma once -#define dgZelda2Skel "__OTR__objects/object_zl2/gZelda2Skel" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Skel[] = dgZelda2Skel; -#else -static const char gZelda2Skel[] __attribute__((aligned (2))) = dgZelda2Skel; -#endif - -#define dgZelda2EyesTLUT "__OTR__objects/object_zl2/gZelda2EyesTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2EyesTLUT[] = dgZelda2EyesTLUT; -#else -static const char gZelda2EyesTLUT[] __attribute__((aligned (2))) = dgZelda2EyesTLUT; -#endif - -#define dgZelda2EyeOpenTex "__OTR__objects/object_zl2/gZelda2EyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2EyeOpenTex[] = dgZelda2EyeOpenTex; -#else -static const char gZelda2EyeOpenTex[] __attribute__((aligned (2))) = dgZelda2EyeOpenTex; -#endif - -#define dgZelda2EyeHalfTex "__OTR__objects/object_zl2/gZelda2EyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2EyeHalfTex[] = dgZelda2EyeHalfTex; -#else -static const char gZelda2EyeHalfTex[] __attribute__((aligned (2))) = dgZelda2EyeHalfTex; -#endif - -#define dgZelda2EyeShutTex "__OTR__objects/object_zl2/gZelda2EyeShutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2EyeShutTex[] = dgZelda2EyeShutTex; -#else -static const char gZelda2EyeShutTex[] __attribute__((aligned (2))) = dgZelda2EyeShutTex; -#endif - -#define dgZelda2Eye03Tex "__OTR__objects/object_zl2/gZelda2Eye03Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Eye03Tex[] = dgZelda2Eye03Tex; -#else -static const char gZelda2Eye03Tex[] __attribute__((aligned (2))) = dgZelda2Eye03Tex; -#endif - -#define dgZelda2Eye04Tex "__OTR__objects/object_zl2/gZelda2Eye04Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Eye04Tex[] = dgZelda2Eye04Tex; -#else -static const char gZelda2Eye04Tex[] __attribute__((aligned (2))) = dgZelda2Eye04Tex; -#endif - -#define dgZelda2Eye05Tex "__OTR__objects/object_zl2/gZelda2Eye05Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Eye05Tex[] = dgZelda2Eye05Tex; -#else -static const char gZelda2Eye05Tex[] __attribute__((aligned (2))) = dgZelda2Eye05Tex; -#endif - -#define dgZelda2Eye06Tex "__OTR__objects/object_zl2/gZelda2Eye06Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Eye06Tex[] = dgZelda2Eye06Tex; -#else -static const char gZelda2Eye06Tex[] __attribute__((aligned (2))) = dgZelda2Eye06Tex; -#endif - -#define dgZelda2Eye07Tex "__OTR__objects/object_zl2/gZelda2Eye07Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Eye07Tex[] = dgZelda2Eye07Tex; -#else -static const char gZelda2Eye07Tex[] __attribute__((aligned (2))) = dgZelda2Eye07Tex; -#endif - -#define dgZelda2Eye08Tex "__OTR__objects/object_zl2/gZelda2Eye08Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Eye08Tex[] = dgZelda2Eye08Tex; -#else -static const char gZelda2Eye08Tex[] __attribute__((aligned (2))) = dgZelda2Eye08Tex; -#endif - -#define dgZelda2EyeUnusedTex "__OTR__objects/object_zl2/gZelda2EyeUnusedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2EyeUnusedTex[] = dgZelda2EyeUnusedTex; -#else -static const char gZelda2EyeUnusedTex[] __attribute__((aligned (2))) = dgZelda2EyeUnusedTex; -#endif - -#define dgZelda2MouthTLUT "__OTR__objects/object_zl2/gZelda2MouthTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2MouthTLUT[] = dgZelda2MouthTLUT; -#else -static const char gZelda2MouthTLUT[] __attribute__((aligned (2))) = dgZelda2MouthTLUT; -#endif - -#define dgZelda2MouthSeriousTex "__OTR__objects/object_zl2/gZelda2MouthSeriousTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2MouthSeriousTex[] = dgZelda2MouthSeriousTex; -#else -static const char gZelda2MouthSeriousTex[] __attribute__((aligned (2))) = dgZelda2MouthSeriousTex; -#endif - -#define dgZelda2MouthHappyTex "__OTR__objects/object_zl2/gZelda2MouthHappyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2MouthHappyTex[] = dgZelda2MouthHappyTex; -#else -static const char gZelda2MouthHappyTex[] __attribute__((aligned (2))) = dgZelda2MouthHappyTex; -#endif - -#define dgZelda2MouthOpenTex "__OTR__objects/object_zl2/gZelda2MouthOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2MouthOpenTex[] = dgZelda2MouthOpenTex; -#else -static const char gZelda2MouthOpenTex[] __attribute__((aligned (2))) = dgZelda2MouthOpenTex; -#endif - -#define dgZelda2OcarinaDL "__OTR__objects/object_zl2/gZelda2OcarinaDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2OcarinaDL[] = dgZelda2OcarinaDL; -#else -static const char gZelda2OcarinaDL[] __attribute__((aligned (2))) = dgZelda2OcarinaDL; -#endif - -#define dgZelda2OcarinaTex "__OTR__objects/object_zl2/gZelda2OcarinaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2OcarinaTex[] = dgZelda2OcarinaTex; -#else -static const char gZelda2OcarinaTex[] __attribute__((aligned (2))) = dgZelda2OcarinaTex; -#endif - -#define dgZelda2_0TLUT "__OTR__objects/object_zl2/gZelda2_0TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2_0TLUT[] = dgZelda2_0TLUT; -#else -static const char gZelda2_0TLUT[] __attribute__((aligned (2))) = dgZelda2_0TLUT; -#endif - -#define dgZelda2_1TLUT "__OTR__objects/object_zl2/gZelda2_1TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2_1TLUT[] = dgZelda2_1TLUT; -#else -static const char gZelda2_1TLUT[] __attribute__((aligned (2))) = dgZelda2_1TLUT; -#endif - -#define dgZelda2_2TLUT "__OTR__objects/object_zl2/gZelda2_2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2_2TLUT[] = dgZelda2_2TLUT; -#else -static const char gZelda2_2TLUT[] __attribute__((aligned (2))) = dgZelda2_2TLUT; -#endif - -#define dgZelda2_3TLUT "__OTR__objects/object_zl2/gZelda2_3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2_3TLUT[] = dgZelda2_3TLUT; -#else -static const char gZelda2_3TLUT[] __attribute__((aligned (2))) = dgZelda2_3TLUT; -#endif - -#define dgZelda2_4TLUT "__OTR__objects/object_zl2/gZelda2_4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2_4TLUT[] = dgZelda2_4TLUT; -#else -static const char gZelda2_4TLUT[] __attribute__((aligned (2))) = dgZelda2_4TLUT; -#endif - -#define dgZelda2_5TLUT "__OTR__objects/object_zl2/gZelda2_5TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2_5TLUT[] = dgZelda2_5TLUT; -#else -static const char gZelda2_5TLUT[] __attribute__((aligned (2))) = dgZelda2_5TLUT; -#endif - -#define dgZelda2_6TLUT "__OTR__objects/object_zl2/gZelda2_6TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2_6TLUT[] = dgZelda2_6TLUT; -#else -static const char gZelda2_6TLUT[] __attribute__((aligned (2))) = dgZelda2_6TLUT; -#endif - -#define dgZelda2_7TLUT "__OTR__objects/object_zl2/gZelda2_7TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2_7TLUT[] = dgZelda2_7TLUT; -#else -static const char gZelda2_7TLUT[] __attribute__((aligned (2))) = dgZelda2_7TLUT; -#endif - -#define dgZelda2TriforceTex "__OTR__objects/object_zl2/gZelda2TriforceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2TriforceTex[] = dgZelda2TriforceTex; -#else -static const char gZelda2TriforceTex[] __attribute__((aligned (2))) = dgZelda2TriforceTex; -#endif - -#define dgZelda2SkelLimbsLimb_010C9CDL_00F530 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010C9CDL_00F530" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010C9CDL_00F530[] = dgZelda2SkelLimbsLimb_010C9CDL_00F530; -#else -static const char gZelda2SkelLimbsLimb_010C9CDL_00F530[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010C9CDL_00F530; -#endif - -#define dgZelda2SkelLimbsLimb_010CA8DL_0102D8 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CA8DL_0102D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010CA8DL_0102D8[] = dgZelda2SkelLimbsLimb_010CA8DL_0102D8; -#else -static const char gZelda2SkelLimbsLimb_010CA8DL_0102D8[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010CA8DL_0102D8; -#endif - -#define dgZelda2SkelLimbsLimb_010CB4DL_0108E8 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CB4DL_0108E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010CB4DL_0108E8[] = dgZelda2SkelLimbsLimb_010CB4DL_0108E8; -#else -static const char gZelda2SkelLimbsLimb_010CB4DL_0108E8[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010CB4DL_0108E8; -#endif - -#define dgZelda2SkelLimbsLimb_010CC0DL_010A20 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CC0DL_010A20" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010CC0DL_010A20[] = dgZelda2SkelLimbsLimb_010CC0DL_010A20; -#else -static const char gZelda2SkelLimbsLimb_010CC0DL_010A20[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010CC0DL_010A20; -#endif - -#define dgZelda2SkelLimbsLimb_010CCCDL_010B58 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CCCDL_010B58" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010CCCDL_010B58[] = dgZelda2SkelLimbsLimb_010CCCDL_010B58; -#else -static const char gZelda2SkelLimbsLimb_010CCCDL_010B58[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010CCCDL_010B58; -#endif - -#define dgZelda2SkelLimbsLimb_010CD8DL_00B068 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CD8DL_00B068" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010CD8DL_00B068[] = dgZelda2SkelLimbsLimb_010CD8DL_00B068; -#else -static const char gZelda2SkelLimbsLimb_010CD8DL_00B068[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010CD8DL_00B068; -#endif - -#define dgZelda2SkelLimbsLimb_010CE4DL_00ED60 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CE4DL_00ED60" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010CE4DL_00ED60[] = dgZelda2SkelLimbsLimb_010CE4DL_00ED60; -#else -static const char gZelda2SkelLimbsLimb_010CE4DL_00ED60[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010CE4DL_00ED60; -#endif - -#define dgZelda2SkelLimbsLimb_010CF0DL_00F0E0 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CF0DL_00F0E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010CF0DL_00F0E0[] = dgZelda2SkelLimbsLimb_010CF0DL_00F0E0; -#else -static const char gZelda2SkelLimbsLimb_010CF0DL_00F0E0[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010CF0DL_00F0E0; -#endif - -#define dgZelda2SkelLimbsLimb_010CFCDL_00F228 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CFCDL_00F228" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010CFCDL_00F228[] = dgZelda2SkelLimbsLimb_010CFCDL_00F228; -#else -static const char gZelda2SkelLimbsLimb_010CFCDL_00F228[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010CFCDL_00F228; -#endif - -#define dgZelda2SkelLimbsLimb_010D08DL_00E590 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010D08DL_00E590" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010D08DL_00E590[] = dgZelda2SkelLimbsLimb_010D08DL_00E590; -#else -static const char gZelda2SkelLimbsLimb_010D08DL_00E590[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010D08DL_00E590; -#endif - -#define dgZelda2SkelLimbsLimb_010D14DL_00E910 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010D14DL_00E910" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010D14DL_00E910[] = dgZelda2SkelLimbsLimb_010D14DL_00E910; -#else -static const char gZelda2SkelLimbsLimb_010D14DL_00E910[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010D14DL_00E910; -#endif - -#define dgZelda2SkelLimbsLimb_010D20DL_00EA58 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010D20DL_00EA58" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010D20DL_00EA58[] = dgZelda2SkelLimbsLimb_010D20DL_00EA58; -#else -static const char gZelda2SkelLimbsLimb_010D20DL_00EA58[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010D20DL_00EA58; -#endif - -#define dgZelda2SkelLimbsLimb_010D2CDL_007DC8 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010D2CDL_007DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2SkelLimbsLimb_010D2CDL_007DC8[] = dgZelda2SkelLimbsLimb_010D2CDL_007DC8; -#else -static const char gZelda2SkelLimbsLimb_010D2CDL_007DC8[] __attribute__((aligned (2))) = dgZelda2SkelLimbsLimb_010D2CDL_007DC8; -#endif - -#define dobject_zl2Tex_0024C0 "__OTR__objects/object_zl2/object_zl2Tex_0024C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_0024C0[] = dobject_zl2Tex_0024C0; -#else -static const char object_zl2Tex_0024C0[] __attribute__((aligned (2))) = dobject_zl2Tex_0024C0; -#endif - -#define dobject_zl2Tex_000E00 "__OTR__objects/object_zl2/object_zl2Tex_000E00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_000E00[] = dobject_zl2Tex_000E00; -#else -static const char object_zl2Tex_000E00[] __attribute__((aligned (2))) = dobject_zl2Tex_000E00; -#endif - -#define dobject_zl2Tex_002500 "__OTR__objects/object_zl2/object_zl2Tex_002500" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_002500[] = dobject_zl2Tex_002500; -#else -static const char object_zl2Tex_002500[] __attribute__((aligned (2))) = dobject_zl2Tex_002500; -#endif - -#define dobject_zl2Tex_002600 "__OTR__objects/object_zl2/object_zl2Tex_002600" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_002600[] = dobject_zl2Tex_002600; -#else -static const char object_zl2Tex_002600[] __attribute__((aligned (2))) = dobject_zl2Tex_002600; -#endif - -#define dobject_zl2Tex_002700 "__OTR__objects/object_zl2/object_zl2Tex_002700" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_002700[] = dobject_zl2Tex_002700; -#else -static const char object_zl2Tex_002700[] __attribute__((aligned (2))) = dobject_zl2Tex_002700; -#endif - -#define dobject_zl2Tex_002740 "__OTR__objects/object_zl2/object_zl2Tex_002740" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_002740[] = dobject_zl2Tex_002740; -#else -static const char object_zl2Tex_002740[] __attribute__((aligned (2))) = dobject_zl2Tex_002740; -#endif - -#define dobject_zl2Tex_002780 "__OTR__objects/object_zl2/object_zl2Tex_002780" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_002780[] = dobject_zl2Tex_002780; -#else -static const char object_zl2Tex_002780[] __attribute__((aligned (2))) = dobject_zl2Tex_002780; -#endif - -#define dobject_zl2Tex_002880 "__OTR__objects/object_zl2/object_zl2Tex_002880" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_002880[] = dobject_zl2Tex_002880; -#else -static const char object_zl2Tex_002880[] __attribute__((aligned (2))) = dobject_zl2Tex_002880; -#endif - -#define dobject_zl2Tex_0012C0 "__OTR__objects/object_zl2/object_zl2Tex_0012C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_0012C0[] = dobject_zl2Tex_0012C0; -#else -static const char object_zl2Tex_0012C0[] __attribute__((aligned (2))) = dobject_zl2Tex_0012C0; -#endif - -#define dobject_zl2Tex_001CC0 "__OTR__objects/object_zl2/object_zl2Tex_001CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_001CC0[] = dobject_zl2Tex_001CC0; -#else -static const char object_zl2Tex_001CC0[] __attribute__((aligned (2))) = dobject_zl2Tex_001CC0; -#endif - -#define dobject_zl2Tex_0016C0 "__OTR__objects/object_zl2/object_zl2Tex_0016C0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_0016C0[] = dobject_zl2Tex_0016C0; -#else -static const char object_zl2Tex_0016C0[] __attribute__((aligned (2))) = dobject_zl2Tex_0016C0; -#endif - -#define dobject_zl2Tex_001AC0 "__OTR__objects/object_zl2/object_zl2Tex_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_001AC0[] = dobject_zl2Tex_001AC0; -#else -static const char object_zl2Tex_001AC0[] __attribute__((aligned (2))) = dobject_zl2Tex_001AC0; -#endif - -#define dobject_zl2Tex_009A38 "__OTR__objects/object_zl2/object_zl2Tex_009A38" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_009A38[] = dobject_zl2Tex_009A38; -#else -static const char object_zl2Tex_009A38[] __attribute__((aligned (2))) = dobject_zl2Tex_009A38; -#endif - -#define dobject_zl2Tex_003A08 "__OTR__objects/object_zl2/object_zl2Tex_003A08" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_003A08[] = dobject_zl2Tex_003A08; -#else -static const char object_zl2Tex_003A08[] __attribute__((aligned (2))) = dobject_zl2Tex_003A08; -#endif - -#define dobject_zl2Tex_009738 "__OTR__objects/object_zl2/object_zl2Tex_009738" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_009738[] = dobject_zl2Tex_009738; -#else -static const char object_zl2Tex_009738[] __attribute__((aligned (2))) = dobject_zl2Tex_009738; -#endif - -#define dobject_zl2Tex_009938 "__OTR__objects/object_zl2/object_zl2Tex_009938" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_009938[] = dobject_zl2Tex_009938; -#else -static const char object_zl2Tex_009938[] __attribute__((aligned (2))) = dobject_zl2Tex_009938; -#endif - -#define dobject_zl2Tex_009A78 "__OTR__objects/object_zl2/object_zl2Tex_009A78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_009A78[] = dobject_zl2Tex_009A78; -#else -static const char object_zl2Tex_009A78[] __attribute__((aligned (2))) = dobject_zl2Tex_009A78; -#endif - -#define dobject_zl2Tex_009E78 "__OTR__objects/object_zl2/object_zl2Tex_009E78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_009E78[] = dobject_zl2Tex_009E78; -#else -static const char object_zl2Tex_009E78[] __attribute__((aligned (2))) = dobject_zl2Tex_009E78; -#endif - -#define dobject_zl2Tex_009F78 "__OTR__objects/object_zl2/object_zl2Tex_009F78" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_009F78[] = dobject_zl2Tex_009F78; -#else -static const char object_zl2Tex_009F78[] __attribute__((aligned (2))) = dobject_zl2Tex_009F78; -#endif - -#define dobject_zl2Tex_009FF8 "__OTR__objects/object_zl2/object_zl2Tex_009FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_009FF8[] = dobject_zl2Tex_009FF8; -#else -static const char object_zl2Tex_009FF8[] __attribute__((aligned (2))) = dobject_zl2Tex_009FF8; -#endif - -#define dobject_zl2Tex_00A0F8 "__OTR__objects/object_zl2/object_zl2Tex_00A0F8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_00A0F8[] = dobject_zl2Tex_00A0F8; -#else -static const char object_zl2Tex_00A0F8[] __attribute__((aligned (2))) = dobject_zl2Tex_00A0F8; -#endif - -#define dobject_zl2Tex_001140 "__OTR__objects/object_zl2/object_zl2Tex_001140" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_001140[] = dobject_zl2Tex_001140; -#else -static const char object_zl2Tex_001140[] __attribute__((aligned (2))) = dobject_zl2Tex_001140; -#endif - -#define dobject_zl2Tex_001180 "__OTR__objects/object_zl2/object_zl2Tex_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_001180[] = dobject_zl2Tex_001180; -#else -static const char object_zl2Tex_001180[] __attribute__((aligned (2))) = dobject_zl2Tex_001180; -#endif - -#define dobject_zl2Tex_001280 "__OTR__objects/object_zl2/object_zl2Tex_001280" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_001280[] = dobject_zl2Tex_001280; -#else -static const char object_zl2Tex_001280[] __attribute__((aligned (2))) = dobject_zl2Tex_001280; -#endif - -#define dobject_zl2Tex_000F40 "__OTR__objects/object_zl2/object_zl2Tex_000F40" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_000F40[] = dobject_zl2Tex_000F40; -#else -static const char object_zl2Tex_000F40[] __attribute__((aligned (2))) = dobject_zl2Tex_000F40; -#endif - -#define dobject_zl2Tex_000F00 "__OTR__objects/object_zl2/object_zl2Tex_000F00" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_000F00[] = dobject_zl2Tex_000F00; -#else -static const char object_zl2Tex_000F00[] __attribute__((aligned (2))) = dobject_zl2Tex_000F00; -#endif - -#define dobject_zl2Tex_003AC8 "__OTR__objects/object_zl2/object_zl2Tex_003AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_003AC8[] = dobject_zl2Tex_003AC8; -#else -static const char object_zl2Tex_003AC8[] __attribute__((aligned (2))) = dobject_zl2Tex_003AC8; -#endif - -#define dobject_zl2Tex_0034C8 "__OTR__objects/object_zl2/object_zl2Tex_0034C8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_0034C8[] = dobject_zl2Tex_0034C8; -#else -static const char object_zl2Tex_0034C8[] __attribute__((aligned (2))) = dobject_zl2Tex_0034C8; -#endif - -#define dobject_zl2Tex_004448 "__OTR__objects/object_zl2/object_zl2Tex_004448" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_004448[] = dobject_zl2Tex_004448; -#else -static const char object_zl2Tex_004448[] __attribute__((aligned (2))) = dobject_zl2Tex_004448; -#endif - -#define dobject_zl2Tex_003A48 "__OTR__objects/object_zl2/object_zl2Tex_003A48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_003A48[] = dobject_zl2Tex_003A48; -#else -static const char object_zl2Tex_003A48[] __attribute__((aligned (2))) = dobject_zl2Tex_003A48; -#endif - -#define dobject_zl2Tex_006548 "__OTR__objects/object_zl2/object_zl2Tex_006548" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_006548[] = dobject_zl2Tex_006548; -#else -static const char object_zl2Tex_006548[] __attribute__((aligned (2))) = dobject_zl2Tex_006548; -#endif - -#define dobject_zl2Tex_003B48 "__OTR__objects/object_zl2/object_zl2Tex_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_003B48[] = dobject_zl2Tex_003B48; -#else -static const char object_zl2Tex_003B48[] __attribute__((aligned (2))) = dobject_zl2Tex_003B48; -#endif - -#define dobject_zl2Tex_003908 "__OTR__objects/object_zl2/object_zl2Tex_003908" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl2Tex_003908[] = dobject_zl2Tex_003908; -#else -static const char object_zl2Tex_003908[] __attribute__((aligned (2))) = dobject_zl2Tex_003908; -#endif - +#include "align_asset_macro.h" + +#define dgZelda2Skel "__OTR__objects/object_zl2/gZelda2Skel" +static const ALIGN_ASSET(2) char gZelda2Skel[] = dgZelda2Skel; + +#define dgZelda2EyesTLUT "__OTR__objects/object_zl2/gZelda2EyesTLUT" +static const ALIGN_ASSET(2) char gZelda2EyesTLUT[] = dgZelda2EyesTLUT; + +#define dgZelda2EyeOpenTex "__OTR__objects/object_zl2/gZelda2EyeOpenTex" +static const ALIGN_ASSET(2) char gZelda2EyeOpenTex[] = dgZelda2EyeOpenTex; + +#define dgZelda2EyeHalfTex "__OTR__objects/object_zl2/gZelda2EyeHalfTex" +static const ALIGN_ASSET(2) char gZelda2EyeHalfTex[] = dgZelda2EyeHalfTex; + +#define dgZelda2EyeShutTex "__OTR__objects/object_zl2/gZelda2EyeShutTex" +static const ALIGN_ASSET(2) char gZelda2EyeShutTex[] = dgZelda2EyeShutTex; + +#define dgZelda2Eye03Tex "__OTR__objects/object_zl2/gZelda2Eye03Tex" +static const ALIGN_ASSET(2) char gZelda2Eye03Tex[] = dgZelda2Eye03Tex; + +#define dgZelda2Eye04Tex "__OTR__objects/object_zl2/gZelda2Eye04Tex" +static const ALIGN_ASSET(2) char gZelda2Eye04Tex[] = dgZelda2Eye04Tex; + +#define dgZelda2Eye05Tex "__OTR__objects/object_zl2/gZelda2Eye05Tex" +static const ALIGN_ASSET(2) char gZelda2Eye05Tex[] = dgZelda2Eye05Tex; + +#define dgZelda2Eye06Tex "__OTR__objects/object_zl2/gZelda2Eye06Tex" +static const ALIGN_ASSET(2) char gZelda2Eye06Tex[] = dgZelda2Eye06Tex; + +#define dgZelda2Eye07Tex "__OTR__objects/object_zl2/gZelda2Eye07Tex" +static const ALIGN_ASSET(2) char gZelda2Eye07Tex[] = dgZelda2Eye07Tex; + +#define dgZelda2Eye08Tex "__OTR__objects/object_zl2/gZelda2Eye08Tex" +static const ALIGN_ASSET(2) char gZelda2Eye08Tex[] = dgZelda2Eye08Tex; + +#define dgZelda2EyeUnusedTex "__OTR__objects/object_zl2/gZelda2EyeUnusedTex" +static const ALIGN_ASSET(2) char gZelda2EyeUnusedTex[] = dgZelda2EyeUnusedTex; + +#define dgZelda2MouthTLUT "__OTR__objects/object_zl2/gZelda2MouthTLUT" +static const ALIGN_ASSET(2) char gZelda2MouthTLUT[] = dgZelda2MouthTLUT; + +#define dgZelda2MouthSeriousTex "__OTR__objects/object_zl2/gZelda2MouthSeriousTex" +static const ALIGN_ASSET(2) char gZelda2MouthSeriousTex[] = dgZelda2MouthSeriousTex; + +#define dgZelda2MouthHappyTex "__OTR__objects/object_zl2/gZelda2MouthHappyTex" +static const ALIGN_ASSET(2) char gZelda2MouthHappyTex[] = dgZelda2MouthHappyTex; + +#define dgZelda2MouthOpenTex "__OTR__objects/object_zl2/gZelda2MouthOpenTex" +static const ALIGN_ASSET(2) char gZelda2MouthOpenTex[] = dgZelda2MouthOpenTex; + +#define dgZelda2OcarinaDL "__OTR__objects/object_zl2/gZelda2OcarinaDL" +static const ALIGN_ASSET(2) char gZelda2OcarinaDL[] = dgZelda2OcarinaDL; + +#define dgZelda2OcarinaTex "__OTR__objects/object_zl2/gZelda2OcarinaTex" +static const ALIGN_ASSET(2) char gZelda2OcarinaTex[] = dgZelda2OcarinaTex; + +#define dgZelda2_0TLUT "__OTR__objects/object_zl2/gZelda2_0TLUT" +static const ALIGN_ASSET(2) char gZelda2_0TLUT[] = dgZelda2_0TLUT; + +#define dgZelda2_1TLUT "__OTR__objects/object_zl2/gZelda2_1TLUT" +static const ALIGN_ASSET(2) char gZelda2_1TLUT[] = dgZelda2_1TLUT; + +#define dgZelda2_2TLUT "__OTR__objects/object_zl2/gZelda2_2TLUT" +static const ALIGN_ASSET(2) char gZelda2_2TLUT[] = dgZelda2_2TLUT; + +#define dgZelda2_3TLUT "__OTR__objects/object_zl2/gZelda2_3TLUT" +static const ALIGN_ASSET(2) char gZelda2_3TLUT[] = dgZelda2_3TLUT; + +#define dgZelda2_4TLUT "__OTR__objects/object_zl2/gZelda2_4TLUT" +static const ALIGN_ASSET(2) char gZelda2_4TLUT[] = dgZelda2_4TLUT; + +#define dgZelda2_5TLUT "__OTR__objects/object_zl2/gZelda2_5TLUT" +static const ALIGN_ASSET(2) char gZelda2_5TLUT[] = dgZelda2_5TLUT; + +#define dgZelda2_6TLUT "__OTR__objects/object_zl2/gZelda2_6TLUT" +static const ALIGN_ASSET(2) char gZelda2_6TLUT[] = dgZelda2_6TLUT; + +#define dgZelda2_7TLUT "__OTR__objects/object_zl2/gZelda2_7TLUT" +static const ALIGN_ASSET(2) char gZelda2_7TLUT[] = dgZelda2_7TLUT; + +#define dgZelda2TriforceTex "__OTR__objects/object_zl2/gZelda2TriforceTex" +static const ALIGN_ASSET(2) char gZelda2TriforceTex[] = dgZelda2TriforceTex; + +#define dgZelda2SkelLimbsLimb_010C9CDL_00F530 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010C9CDL_00F530" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010C9CDL_00F530[] = dgZelda2SkelLimbsLimb_010C9CDL_00F530; + +#define dgZelda2SkelLimbsLimb_010CA8DL_0102D8 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CA8DL_0102D8" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010CA8DL_0102D8[] = dgZelda2SkelLimbsLimb_010CA8DL_0102D8; + +#define dgZelda2SkelLimbsLimb_010CB4DL_0108E8 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CB4DL_0108E8" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010CB4DL_0108E8[] = dgZelda2SkelLimbsLimb_010CB4DL_0108E8; + +#define dgZelda2SkelLimbsLimb_010CC0DL_010A20 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CC0DL_010A20" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010CC0DL_010A20[] = dgZelda2SkelLimbsLimb_010CC0DL_010A20; + +#define dgZelda2SkelLimbsLimb_010CCCDL_010B58 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CCCDL_010B58" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010CCCDL_010B58[] = dgZelda2SkelLimbsLimb_010CCCDL_010B58; + +#define dgZelda2SkelLimbsLimb_010CD8DL_00B068 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CD8DL_00B068" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010CD8DL_00B068[] = dgZelda2SkelLimbsLimb_010CD8DL_00B068; + +#define dgZelda2SkelLimbsLimb_010CE4DL_00ED60 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CE4DL_00ED60" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010CE4DL_00ED60[] = dgZelda2SkelLimbsLimb_010CE4DL_00ED60; + +#define dgZelda2SkelLimbsLimb_010CF0DL_00F0E0 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CF0DL_00F0E0" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010CF0DL_00F0E0[] = dgZelda2SkelLimbsLimb_010CF0DL_00F0E0; + +#define dgZelda2SkelLimbsLimb_010CFCDL_00F228 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010CFCDL_00F228" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010CFCDL_00F228[] = dgZelda2SkelLimbsLimb_010CFCDL_00F228; + +#define dgZelda2SkelLimbsLimb_010D08DL_00E590 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010D08DL_00E590" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010D08DL_00E590[] = dgZelda2SkelLimbsLimb_010D08DL_00E590; + +#define dgZelda2SkelLimbsLimb_010D14DL_00E910 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010D14DL_00E910" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010D14DL_00E910[] = dgZelda2SkelLimbsLimb_010D14DL_00E910; + +#define dgZelda2SkelLimbsLimb_010D20DL_00EA58 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010D20DL_00EA58" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010D20DL_00EA58[] = dgZelda2SkelLimbsLimb_010D20DL_00EA58; + +#define dgZelda2SkelLimbsLimb_010D2CDL_007DC8 "__OTR__objects/object_zl2/gZelda2SkelLimbsLimb_010D2CDL_007DC8" +static const ALIGN_ASSET(2) char gZelda2SkelLimbsLimb_010D2CDL_007DC8[] = dgZelda2SkelLimbsLimb_010D2CDL_007DC8; + +#define dobject_zl2Tex_0024C0 "__OTR__objects/object_zl2/object_zl2Tex_0024C0" +static const ALIGN_ASSET(2) char object_zl2Tex_0024C0[] = dobject_zl2Tex_0024C0; + +#define dobject_zl2Tex_000E00 "__OTR__objects/object_zl2/object_zl2Tex_000E00" +static const ALIGN_ASSET(2) char object_zl2Tex_000E00[] = dobject_zl2Tex_000E00; + +#define dobject_zl2Tex_002500 "__OTR__objects/object_zl2/object_zl2Tex_002500" +static const ALIGN_ASSET(2) char object_zl2Tex_002500[] = dobject_zl2Tex_002500; + +#define dobject_zl2Tex_002600 "__OTR__objects/object_zl2/object_zl2Tex_002600" +static const ALIGN_ASSET(2) char object_zl2Tex_002600[] = dobject_zl2Tex_002600; + +#define dobject_zl2Tex_002700 "__OTR__objects/object_zl2/object_zl2Tex_002700" +static const ALIGN_ASSET(2) char object_zl2Tex_002700[] = dobject_zl2Tex_002700; + +#define dobject_zl2Tex_002740 "__OTR__objects/object_zl2/object_zl2Tex_002740" +static const ALIGN_ASSET(2) char object_zl2Tex_002740[] = dobject_zl2Tex_002740; + +#define dobject_zl2Tex_002780 "__OTR__objects/object_zl2/object_zl2Tex_002780" +static const ALIGN_ASSET(2) char object_zl2Tex_002780[] = dobject_zl2Tex_002780; + +#define dobject_zl2Tex_002880 "__OTR__objects/object_zl2/object_zl2Tex_002880" +static const ALIGN_ASSET(2) char object_zl2Tex_002880[] = dobject_zl2Tex_002880; + +#define dobject_zl2Tex_0012C0 "__OTR__objects/object_zl2/object_zl2Tex_0012C0" +static const ALIGN_ASSET(2) char object_zl2Tex_0012C0[] = dobject_zl2Tex_0012C0; + +#define dobject_zl2Tex_001CC0 "__OTR__objects/object_zl2/object_zl2Tex_001CC0" +static const ALIGN_ASSET(2) char object_zl2Tex_001CC0[] = dobject_zl2Tex_001CC0; + +#define dobject_zl2Tex_0016C0 "__OTR__objects/object_zl2/object_zl2Tex_0016C0" +static const ALIGN_ASSET(2) char object_zl2Tex_0016C0[] = dobject_zl2Tex_0016C0; + +#define dobject_zl2Tex_001AC0 "__OTR__objects/object_zl2/object_zl2Tex_001AC0" +static const ALIGN_ASSET(2) char object_zl2Tex_001AC0[] = dobject_zl2Tex_001AC0; + +#define dobject_zl2Tex_009A38 "__OTR__objects/object_zl2/object_zl2Tex_009A38" +static const ALIGN_ASSET(2) char object_zl2Tex_009A38[] = dobject_zl2Tex_009A38; + +#define dobject_zl2Tex_003A08 "__OTR__objects/object_zl2/object_zl2Tex_003A08" +static const ALIGN_ASSET(2) char object_zl2Tex_003A08[] = dobject_zl2Tex_003A08; + +#define dobject_zl2Tex_009738 "__OTR__objects/object_zl2/object_zl2Tex_009738" +static const ALIGN_ASSET(2) char object_zl2Tex_009738[] = dobject_zl2Tex_009738; + +#define dobject_zl2Tex_009938 "__OTR__objects/object_zl2/object_zl2Tex_009938" +static const ALIGN_ASSET(2) char object_zl2Tex_009938[] = dobject_zl2Tex_009938; + +#define dobject_zl2Tex_009A78 "__OTR__objects/object_zl2/object_zl2Tex_009A78" +static const ALIGN_ASSET(2) char object_zl2Tex_009A78[] = dobject_zl2Tex_009A78; + +#define dobject_zl2Tex_009E78 "__OTR__objects/object_zl2/object_zl2Tex_009E78" +static const ALIGN_ASSET(2) char object_zl2Tex_009E78[] = dobject_zl2Tex_009E78; + +#define dobject_zl2Tex_009F78 "__OTR__objects/object_zl2/object_zl2Tex_009F78" +static const ALIGN_ASSET(2) char object_zl2Tex_009F78[] = dobject_zl2Tex_009F78; + +#define dobject_zl2Tex_009FF8 "__OTR__objects/object_zl2/object_zl2Tex_009FF8" +static const ALIGN_ASSET(2) char object_zl2Tex_009FF8[] = dobject_zl2Tex_009FF8; + +#define dobject_zl2Tex_00A0F8 "__OTR__objects/object_zl2/object_zl2Tex_00A0F8" +static const ALIGN_ASSET(2) char object_zl2Tex_00A0F8[] = dobject_zl2Tex_00A0F8; + +#define dobject_zl2Tex_001140 "__OTR__objects/object_zl2/object_zl2Tex_001140" +static const ALIGN_ASSET(2) char object_zl2Tex_001140[] = dobject_zl2Tex_001140; + +#define dobject_zl2Tex_001180 "__OTR__objects/object_zl2/object_zl2Tex_001180" +static const ALIGN_ASSET(2) char object_zl2Tex_001180[] = dobject_zl2Tex_001180; + +#define dobject_zl2Tex_001280 "__OTR__objects/object_zl2/object_zl2Tex_001280" +static const ALIGN_ASSET(2) char object_zl2Tex_001280[] = dobject_zl2Tex_001280; + +#define dobject_zl2Tex_000F40 "__OTR__objects/object_zl2/object_zl2Tex_000F40" +static const ALIGN_ASSET(2) char object_zl2Tex_000F40[] = dobject_zl2Tex_000F40; + +#define dobject_zl2Tex_000F00 "__OTR__objects/object_zl2/object_zl2Tex_000F00" +static const ALIGN_ASSET(2) char object_zl2Tex_000F00[] = dobject_zl2Tex_000F00; + +#define dobject_zl2Tex_003AC8 "__OTR__objects/object_zl2/object_zl2Tex_003AC8" +static const ALIGN_ASSET(2) char object_zl2Tex_003AC8[] = dobject_zl2Tex_003AC8; + +#define dobject_zl2Tex_0034C8 "__OTR__objects/object_zl2/object_zl2Tex_0034C8" +static const ALIGN_ASSET(2) char object_zl2Tex_0034C8[] = dobject_zl2Tex_0034C8; + +#define dobject_zl2Tex_004448 "__OTR__objects/object_zl2/object_zl2Tex_004448" +static const ALIGN_ASSET(2) char object_zl2Tex_004448[] = dobject_zl2Tex_004448; + +#define dobject_zl2Tex_003A48 "__OTR__objects/object_zl2/object_zl2Tex_003A48" +static const ALIGN_ASSET(2) char object_zl2Tex_003A48[] = dobject_zl2Tex_003A48; + +#define dobject_zl2Tex_006548 "__OTR__objects/object_zl2/object_zl2Tex_006548" +static const ALIGN_ASSET(2) char object_zl2Tex_006548[] = dobject_zl2Tex_006548; + +#define dobject_zl2Tex_003B48 "__OTR__objects/object_zl2/object_zl2Tex_003B48" +static const ALIGN_ASSET(2) char object_zl2Tex_003B48[] = dobject_zl2Tex_003B48; + +#define dobject_zl2Tex_003908 "__OTR__objects/object_zl2/object_zl2Tex_003908" +static const ALIGN_ASSET(2) char object_zl2Tex_003908[] = dobject_zl2Tex_003908; \ No newline at end of file diff --git a/soh/assets/objects/object_zl2_anime1/object_zl2_anime1.h b/soh/assets/objects/object_zl2_anime1/object_zl2_anime1.h index b4b609abe..329f1f713 100644 --- a/soh/assets/objects/object_zl2_anime1/object_zl2_anime1.h +++ b/soh/assets/objects/object_zl2_anime1/object_zl2_anime1.h @@ -1,184 +1,81 @@ #pragma once -#define dgZelda2Anime1Anim_0003BC "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0003BC" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_0003BC[] = dgZelda2Anime1Anim_0003BC; -#else -static const char gZelda2Anime1Anim_0003BC[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_0003BC; -#endif - -#define dgZelda2Anime1Anim_000A50 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_000A50" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_000A50[] = dgZelda2Anime1Anim_000A50; -#else -static const char gZelda2Anime1Anim_000A50[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_000A50; -#endif - -#define dgZelda2Anime1Anim_000EB0 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_000EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_000EB0[] = dgZelda2Anime1Anim_000EB0; -#else -static const char gZelda2Anime1Anim_000EB0[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_000EB0; -#endif - -#define dgZelda2Anime1Anim_001010 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_001010" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_001010[] = dgZelda2Anime1Anim_001010; -#else -static const char gZelda2Anime1Anim_001010[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_001010; -#endif - -#define dgZelda2Anime1Anim_0013A0 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0013A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_0013A0[] = dgZelda2Anime1Anim_0013A0; -#else -static const char gZelda2Anime1Anim_0013A0[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_0013A0; -#endif - -#define dgZelda2Anime1Anim_001670 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_001670" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_001670[] = dgZelda2Anime1Anim_001670; -#else -static const char gZelda2Anime1Anim_001670[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_001670; -#endif - -#define dgZelda2Anime1Anim_001B48 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_001B48" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_001B48[] = dgZelda2Anime1Anim_001B48; -#else -static const char gZelda2Anime1Anim_001B48[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_001B48; -#endif - -#define dgZelda2Anime1Anim_0022D0 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0022D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_0022D0[] = dgZelda2Anime1Anim_0022D0; -#else -static const char gZelda2Anime1Anim_0022D0[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_0022D0; -#endif - -#define dgZelda2Anime1Anim_002750 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_002750" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_002750[] = dgZelda2Anime1Anim_002750; -#else -static const char gZelda2Anime1Anim_002750[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_002750; -#endif - -#define dgZelda2Anime1Anim_002B14 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_002B14" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_002B14[] = dgZelda2Anime1Anim_002B14; -#else -static const char gZelda2Anime1Anim_002B14[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_002B14; -#endif - -#define dgZelda2Anime1Anim_002F30 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_002F30" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_002F30[] = dgZelda2Anime1Anim_002F30; -#else -static const char gZelda2Anime1Anim_002F30[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_002F30; -#endif - -#define dgZelda2Anime1Anim_00325C "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00325C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_00325C[] = dgZelda2Anime1Anim_00325C; -#else -static const char gZelda2Anime1Anim_00325C[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_00325C; -#endif - -#define dgZelda2Anime1Anim_003538 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_003538" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_003538[] = dgZelda2Anime1Anim_003538; -#else -static const char gZelda2Anime1Anim_003538[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_003538; -#endif - -#define dgZelda2Anime1Anim_004900 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_004900" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_004900[] = dgZelda2Anime1Anim_004900; -#else -static const char gZelda2Anime1Anim_004900[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_004900; -#endif - -#define dgZelda2Anime1Anim_005F40 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_005F40" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_005F40[] = dgZelda2Anime1Anim_005F40; -#else -static const char gZelda2Anime1Anim_005F40[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_005F40; -#endif - -#define dgZelda2Anime1Anim_006778 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_006778" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_006778[] = dgZelda2Anime1Anim_006778; -#else -static const char gZelda2Anime1Anim_006778[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_006778; -#endif - -#define dgZelda2Anime1Anim_007D0C "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_007D0C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_007D0C[] = dgZelda2Anime1Anim_007D0C; -#else -static const char gZelda2Anime1Anim_007D0C[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_007D0C; -#endif - -#define dgZelda2Anime1Anim_0087B8 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0087B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_0087B8[] = dgZelda2Anime1Anim_0087B8; -#else -static const char gZelda2Anime1Anim_0087B8[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_0087B8; -#endif - -#define dgZelda2Anime1Anim_0090D8 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0090D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_0090D8[] = dgZelda2Anime1Anim_0090D8; -#else -static const char gZelda2Anime1Anim_0090D8[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_0090D8; -#endif - -#define dgZelda2Anime1Anim_009AD4 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_009AD4" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_009AD4[] = dgZelda2Anime1Anim_009AD4; -#else -static const char gZelda2Anime1Anim_009AD4[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_009AD4; -#endif - -#define dgZelda2Anime1Anim_00A15C "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00A15C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_00A15C[] = dgZelda2Anime1Anim_00A15C; -#else -static const char gZelda2Anime1Anim_00A15C[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_00A15C; -#endif - -#define dgZelda2Anime1Anim_00A79C "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00A79C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_00A79C[] = dgZelda2Anime1Anim_00A79C; -#else -static const char gZelda2Anime1Anim_00A79C[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_00A79C; -#endif - -#define dgZelda2Anime1Anim_00AAD4 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00AAD4" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_00AAD4[] = dgZelda2Anime1Anim_00AAD4; -#else -static const char gZelda2Anime1Anim_00AAD4[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_00AAD4; -#endif - -#define dgZelda2Anime1Anim_00AFE0 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00AFE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_00AFE0[] = dgZelda2Anime1Anim_00AFE0; -#else -static const char gZelda2Anime1Anim_00AFE0[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_00AFE0; -#endif - -#define dgZelda2Anime1Anim_00B224 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00B224" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_00B224[] = dgZelda2Anime1Anim_00B224; -#else -static const char gZelda2Anime1Anim_00B224[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_00B224; -#endif - -#define dgZelda2Anime1Anim_00B5FC "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00B5FC" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime1Anim_00B5FC[] = dgZelda2Anime1Anim_00B5FC; -#else -static const char gZelda2Anime1Anim_00B5FC[] __attribute__((aligned (2))) = dgZelda2Anime1Anim_00B5FC; -#endif - +#include "align_asset_macro.h" + +#define dgZelda2Anime1Anim_0003BC "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0003BC" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_0003BC[] = dgZelda2Anime1Anim_0003BC; + +#define dgZelda2Anime1Anim_000A50 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_000A50" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_000A50[] = dgZelda2Anime1Anim_000A50; + +#define dgZelda2Anime1Anim_000EB0 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_000EB0" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_000EB0[] = dgZelda2Anime1Anim_000EB0; + +#define dgZelda2Anime1Anim_001010 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_001010" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_001010[] = dgZelda2Anime1Anim_001010; + +#define dgZelda2Anime1Anim_0013A0 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0013A0" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_0013A0[] = dgZelda2Anime1Anim_0013A0; + +#define dgZelda2Anime1Anim_001670 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_001670" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_001670[] = dgZelda2Anime1Anim_001670; + +#define dgZelda2Anime1Anim_001B48 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_001B48" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_001B48[] = dgZelda2Anime1Anim_001B48; + +#define dgZelda2Anime1Anim_0022D0 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0022D0" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_0022D0[] = dgZelda2Anime1Anim_0022D0; + +#define dgZelda2Anime1Anim_002750 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_002750" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_002750[] = dgZelda2Anime1Anim_002750; + +#define dgZelda2Anime1Anim_002B14 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_002B14" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_002B14[] = dgZelda2Anime1Anim_002B14; + +#define dgZelda2Anime1Anim_002F30 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_002F30" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_002F30[] = dgZelda2Anime1Anim_002F30; + +#define dgZelda2Anime1Anim_00325C "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00325C" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_00325C[] = dgZelda2Anime1Anim_00325C; + +#define dgZelda2Anime1Anim_003538 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_003538" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_003538[] = dgZelda2Anime1Anim_003538; + +#define dgZelda2Anime1Anim_004900 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_004900" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_004900[] = dgZelda2Anime1Anim_004900; + +#define dgZelda2Anime1Anim_005F40 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_005F40" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_005F40[] = dgZelda2Anime1Anim_005F40; + +#define dgZelda2Anime1Anim_006778 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_006778" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_006778[] = dgZelda2Anime1Anim_006778; + +#define dgZelda2Anime1Anim_007D0C "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_007D0C" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_007D0C[] = dgZelda2Anime1Anim_007D0C; + +#define dgZelda2Anime1Anim_0087B8 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0087B8" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_0087B8[] = dgZelda2Anime1Anim_0087B8; + +#define dgZelda2Anime1Anim_0090D8 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_0090D8" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_0090D8[] = dgZelda2Anime1Anim_0090D8; + +#define dgZelda2Anime1Anim_009AD4 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_009AD4" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_009AD4[] = dgZelda2Anime1Anim_009AD4; + +#define dgZelda2Anime1Anim_00A15C "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00A15C" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_00A15C[] = dgZelda2Anime1Anim_00A15C; + +#define dgZelda2Anime1Anim_00A79C "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00A79C" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_00A79C[] = dgZelda2Anime1Anim_00A79C; + +#define dgZelda2Anime1Anim_00AAD4 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00AAD4" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_00AAD4[] = dgZelda2Anime1Anim_00AAD4; + +#define dgZelda2Anime1Anim_00AFE0 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00AFE0" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_00AFE0[] = dgZelda2Anime1Anim_00AFE0; + +#define dgZelda2Anime1Anim_00B224 "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00B224" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_00B224[] = dgZelda2Anime1Anim_00B224; + +#define dgZelda2Anime1Anim_00B5FC "__OTR__objects/object_zl2_anime1/gZelda2Anime1Anim_00B5FC" +static const ALIGN_ASSET(2) char gZelda2Anime1Anim_00B5FC[] = dgZelda2Anime1Anim_00B5FC; \ No newline at end of file diff --git a/soh/assets/objects/object_zl2_anime2/object_zl2_anime2.h b/soh/assets/objects/object_zl2_anime2/object_zl2_anime2.h index 75740abc1..75edfb843 100644 --- a/soh/assets/objects/object_zl2_anime2/object_zl2_anime2.h +++ b/soh/assets/objects/object_zl2_anime2/object_zl2_anime2.h @@ -1,254 +1,111 @@ #pragma once -#define dgZelda2Anime2Anim_0001D8 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0001D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0001D8[] = dgZelda2Anime2Anim_0001D8; -#else -static const char gZelda2Anime2Anim_0001D8[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0001D8; -#endif - -#define dgZelda2Anime2Anim_0004F4 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0004F4" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0004F4[] = dgZelda2Anime2Anim_0004F4; -#else -static const char gZelda2Anime2Anim_0004F4[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0004F4; -#endif - -#define dgZelda2Anime2Anim_001110 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_001110" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_001110[] = dgZelda2Anime2Anim_001110; -#else -static const char gZelda2Anime2Anim_001110[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_001110; -#endif - -#define dgZelda2Anime2Anim_0014DC "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0014DC" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0014DC[] = dgZelda2Anime2Anim_0014DC; -#else -static const char gZelda2Anime2Anim_0014DC[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0014DC; -#endif - -#define dgZelda2Anime2Anim_001D8C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_001D8C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_001D8C[] = dgZelda2Anime2Anim_001D8C; -#else -static const char gZelda2Anime2Anim_001D8C[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_001D8C; -#endif - -#define dgZelda2Anime2Anim_00210C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00210C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_00210C[] = dgZelda2Anime2Anim_00210C; -#else -static const char gZelda2Anime2Anim_00210C[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_00210C; -#endif - -#define dgZelda2Anime2Anim_002348 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_002348" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_002348[] = dgZelda2Anime2Anim_002348; -#else -static const char gZelda2Anime2Anim_002348[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_002348; -#endif - -#define dgZelda2Anime2Anim_002710 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_002710" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_002710[] = dgZelda2Anime2Anim_002710; -#else -static const char gZelda2Anime2Anim_002710[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_002710; -#endif - -#define dgZelda2Anime2Anim_002E54 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_002E54" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_002E54[] = dgZelda2Anime2Anim_002E54; -#else -static const char gZelda2Anime2Anim_002E54[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_002E54; -#endif - -#define dgZelda2Anime2Anim_00322C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00322C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_00322C[] = dgZelda2Anime2Anim_00322C; -#else -static const char gZelda2Anime2Anim_00322C[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_00322C; -#endif - -#define dgZelda2Anime2Anim_0038C0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0038C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0038C0[] = dgZelda2Anime2Anim_0038C0; -#else -static const char gZelda2Anime2Anim_0038C0[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0038C0; -#endif - -#define dgZelda2Anime2Anim_003D20 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_003D20" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_003D20[] = dgZelda2Anime2Anim_003D20; -#else -static const char gZelda2Anime2Anim_003D20[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_003D20; -#endif - -#define dgZelda2Anime2Anim_003FF8 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_003FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_003FF8[] = dgZelda2Anime2Anim_003FF8; -#else -static const char gZelda2Anime2Anim_003FF8[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_003FF8; -#endif - -#define dgZelda2Anime2Anim_004408 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_004408" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_004408[] = dgZelda2Anime2Anim_004408; -#else -static const char gZelda2Anime2Anim_004408[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_004408; -#endif - -#define dgZelda2Anime2Anim_00499C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00499C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_00499C[] = dgZelda2Anime2Anim_00499C; -#else -static const char gZelda2Anime2Anim_00499C[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_00499C; -#endif - -#define dgZelda2Anime2Anim_005248 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_005248" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_005248[] = dgZelda2Anime2Anim_005248; -#else -static const char gZelda2Anime2Anim_005248[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_005248; -#endif - -#define dgZelda2Anime2Anim_0054E0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0054E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0054E0[] = dgZelda2Anime2Anim_0054E0; -#else -static const char gZelda2Anime2Anim_0054E0[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0054E0; -#endif - -#define dgZelda2Anime2Anim_005A0C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_005A0C" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_005A0C[] = dgZelda2Anime2Anim_005A0C; -#else -static const char gZelda2Anime2Anim_005A0C[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_005A0C; -#endif - -#define dgZelda2Anime2Anim_0061C4 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0061C4" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0061C4[] = dgZelda2Anime2Anim_0061C4; -#else -static const char gZelda2Anime2Anim_0061C4[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0061C4; -#endif - -#define dgZelda2Anime2Anim_006508 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_006508" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_006508[] = dgZelda2Anime2Anim_006508; -#else -static const char gZelda2Anime2Anim_006508[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_006508; -#endif - -#define dgZelda2Anime2Anim_006AB0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_006AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_006AB0[] = dgZelda2Anime2Anim_006AB0; -#else -static const char gZelda2Anime2Anim_006AB0[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_006AB0; -#endif - -#define dgZelda2Anime2Anim_006F04 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_006F04" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_006F04[] = dgZelda2Anime2Anim_006F04; -#else -static const char gZelda2Anime2Anim_006F04[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_006F04; -#endif - -#define dgZelda2Anime2Anim_007664 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_007664" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_007664[] = dgZelda2Anime2Anim_007664; -#else -static const char gZelda2Anime2Anim_007664[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_007664; -#endif - -#define dgZelda2Anime2Anim_007A78 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_007A78" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_007A78[] = dgZelda2Anime2Anim_007A78; -#else -static const char gZelda2Anime2Anim_007A78[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_007A78; -#endif - -#define dgZelda2Anime2Anim_007C84 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_007C84" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_007C84[] = dgZelda2Anime2Anim_007C84; -#else -static const char gZelda2Anime2Anim_007C84[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_007C84; -#endif - -#define dgZelda2Anime2Anim_008050 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_008050" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_008050[] = dgZelda2Anime2Anim_008050; -#else -static const char gZelda2Anime2Anim_008050[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_008050; -#endif - -#define dgZelda2Anime2Anim_0082F8 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0082F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0082F8[] = dgZelda2Anime2Anim_0082F8; -#else -static const char gZelda2Anime2Anim_0082F8[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0082F8; -#endif - -#define dgZelda2Anime2Anim_008684 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_008684" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_008684[] = dgZelda2Anime2Anim_008684; -#else -static const char gZelda2Anime2Anim_008684[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_008684; -#endif - -#define dgZelda2Anime2Anim_008AD0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_008AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_008AD0[] = dgZelda2Anime2Anim_008AD0; -#else -static const char gZelda2Anime2Anim_008AD0[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_008AD0; -#endif - -#define dgZelda2Anime2Anim_0091D8 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0091D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0091D8[] = dgZelda2Anime2Anim_0091D8; -#else -static const char gZelda2Anime2Anim_0091D8[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0091D8; -#endif - -#define dgZelda2Anime2Anim_0099A0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0099A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_0099A0[] = dgZelda2Anime2Anim_0099A0; -#else -static const char gZelda2Anime2Anim_0099A0[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_0099A0; -#endif - -#define dgZelda2Anime2Anim_009BE4 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_009BE4" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_009BE4[] = dgZelda2Anime2Anim_009BE4; -#else -static const char gZelda2Anime2Anim_009BE4[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_009BE4; -#endif - -#define dgZelda2Anime2Anim_009FBC "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_009FBC" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_009FBC[] = dgZelda2Anime2Anim_009FBC; -#else -static const char gZelda2Anime2Anim_009FBC[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_009FBC; -#endif - -#define dgZelda2Anime2Anim_00A334 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00A334" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_00A334[] = dgZelda2Anime2Anim_00A334; -#else -static const char gZelda2Anime2Anim_00A334[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_00A334; -#endif - -#define dgZelda2Anime2Anim_00A598 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00A598" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_00A598[] = dgZelda2Anime2Anim_00A598; -#else -static const char gZelda2Anime2Anim_00A598[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_00A598; -#endif - -#define dgZelda2Anime2Anim_00AACC "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00AACC" -#ifdef _WIN32 -static const __declspec(align(2)) char gZelda2Anime2Anim_00AACC[] = dgZelda2Anime2Anim_00AACC; -#else -static const char gZelda2Anime2Anim_00AACC[] __attribute__((aligned (2))) = dgZelda2Anime2Anim_00AACC; -#endif - +#include "align_asset_macro.h" + +#define dgZelda2Anime2Anim_0001D8 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0001D8" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0001D8[] = dgZelda2Anime2Anim_0001D8; + +#define dgZelda2Anime2Anim_0004F4 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0004F4" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0004F4[] = dgZelda2Anime2Anim_0004F4; + +#define dgZelda2Anime2Anim_001110 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_001110" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_001110[] = dgZelda2Anime2Anim_001110; + +#define dgZelda2Anime2Anim_0014DC "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0014DC" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0014DC[] = dgZelda2Anime2Anim_0014DC; + +#define dgZelda2Anime2Anim_001D8C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_001D8C" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_001D8C[] = dgZelda2Anime2Anim_001D8C; + +#define dgZelda2Anime2Anim_00210C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00210C" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_00210C[] = dgZelda2Anime2Anim_00210C; + +#define dgZelda2Anime2Anim_002348 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_002348" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_002348[] = dgZelda2Anime2Anim_002348; + +#define dgZelda2Anime2Anim_002710 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_002710" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_002710[] = dgZelda2Anime2Anim_002710; + +#define dgZelda2Anime2Anim_002E54 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_002E54" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_002E54[] = dgZelda2Anime2Anim_002E54; + +#define dgZelda2Anime2Anim_00322C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00322C" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_00322C[] = dgZelda2Anime2Anim_00322C; + +#define dgZelda2Anime2Anim_0038C0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0038C0" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0038C0[] = dgZelda2Anime2Anim_0038C0; + +#define dgZelda2Anime2Anim_003D20 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_003D20" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_003D20[] = dgZelda2Anime2Anim_003D20; + +#define dgZelda2Anime2Anim_003FF8 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_003FF8" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_003FF8[] = dgZelda2Anime2Anim_003FF8; + +#define dgZelda2Anime2Anim_004408 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_004408" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_004408[] = dgZelda2Anime2Anim_004408; + +#define dgZelda2Anime2Anim_00499C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00499C" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_00499C[] = dgZelda2Anime2Anim_00499C; + +#define dgZelda2Anime2Anim_005248 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_005248" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_005248[] = dgZelda2Anime2Anim_005248; + +#define dgZelda2Anime2Anim_0054E0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0054E0" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0054E0[] = dgZelda2Anime2Anim_0054E0; + +#define dgZelda2Anime2Anim_005A0C "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_005A0C" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_005A0C[] = dgZelda2Anime2Anim_005A0C; + +#define dgZelda2Anime2Anim_0061C4 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0061C4" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0061C4[] = dgZelda2Anime2Anim_0061C4; + +#define dgZelda2Anime2Anim_006508 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_006508" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_006508[] = dgZelda2Anime2Anim_006508; + +#define dgZelda2Anime2Anim_006AB0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_006AB0" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_006AB0[] = dgZelda2Anime2Anim_006AB0; + +#define dgZelda2Anime2Anim_006F04 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_006F04" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_006F04[] = dgZelda2Anime2Anim_006F04; + +#define dgZelda2Anime2Anim_007664 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_007664" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_007664[] = dgZelda2Anime2Anim_007664; + +#define dgZelda2Anime2Anim_007A78 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_007A78" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_007A78[] = dgZelda2Anime2Anim_007A78; + +#define dgZelda2Anime2Anim_007C84 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_007C84" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_007C84[] = dgZelda2Anime2Anim_007C84; + +#define dgZelda2Anime2Anim_008050 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_008050" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_008050[] = dgZelda2Anime2Anim_008050; + +#define dgZelda2Anime2Anim_0082F8 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0082F8" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0082F8[] = dgZelda2Anime2Anim_0082F8; + +#define dgZelda2Anime2Anim_008684 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_008684" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_008684[] = dgZelda2Anime2Anim_008684; + +#define dgZelda2Anime2Anim_008AD0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_008AD0" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_008AD0[] = dgZelda2Anime2Anim_008AD0; + +#define dgZelda2Anime2Anim_0091D8 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0091D8" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0091D8[] = dgZelda2Anime2Anim_0091D8; + +#define dgZelda2Anime2Anim_0099A0 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_0099A0" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_0099A0[] = dgZelda2Anime2Anim_0099A0; + +#define dgZelda2Anime2Anim_009BE4 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_009BE4" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_009BE4[] = dgZelda2Anime2Anim_009BE4; + +#define dgZelda2Anime2Anim_009FBC "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_009FBC" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_009FBC[] = dgZelda2Anime2Anim_009FBC; + +#define dgZelda2Anime2Anim_00A334 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00A334" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_00A334[] = dgZelda2Anime2Anim_00A334; + +#define dgZelda2Anime2Anim_00A598 "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00A598" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_00A598[] = dgZelda2Anime2Anim_00A598; + +#define dgZelda2Anime2Anim_00AACC "__OTR__objects/object_zl2_anime2/gZelda2Anime2Anim_00AACC" +static const ALIGN_ASSET(2) char gZelda2Anime2Anim_00AACC[] = dgZelda2Anime2Anim_00AACC; \ No newline at end of file diff --git a/soh/assets/objects/object_zl4/object_zl4.h b/soh/assets/objects/object_zl4/object_zl4.h index a02627e78..c1f56c177 100644 --- a/soh/assets/objects/object_zl4/object_zl4.h +++ b/soh/assets/objects/object_zl4/object_zl4.h @@ -1,660 +1,285 @@ #pragma once -#define dgChildZeldaSkel "__OTR__objects/object_zl4/gChildZeldaSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkel[] = dgChildZeldaSkel; -#else -static const char gChildZeldaSkel[] __attribute__((aligned (2))) = dgChildZeldaSkel; -#endif - -#define dgChildZeldaAnim_000654 "__OTR__objects/object_zl4/gChildZeldaAnim_000654" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_000654[] = dgChildZeldaAnim_000654; -#else -static const char gChildZeldaAnim_000654[] __attribute__((aligned (2))) = dgChildZeldaAnim_000654; -#endif - -#define dgChildZeldaAnim_00E5C8 "__OTR__objects/object_zl4/gChildZeldaAnim_00E5C8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_00E5C8[] = dgChildZeldaAnim_00E5C8; -#else -static const char gChildZeldaAnim_00E5C8[] __attribute__((aligned (2))) = dgChildZeldaAnim_00E5C8; -#endif - -#define dgChildZeldaAnim_00EBC4 "__OTR__objects/object_zl4/gChildZeldaAnim_00EBC4" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_00EBC4[] = dgChildZeldaAnim_00EBC4; -#else -static const char gChildZeldaAnim_00EBC4[] __attribute__((aligned (2))) = dgChildZeldaAnim_00EBC4; -#endif - -#define dgChildZeldaAnim_010DF8 "__OTR__objects/object_zl4/gChildZeldaAnim_010DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_010DF8[] = dgChildZeldaAnim_010DF8; -#else -static const char gChildZeldaAnim_010DF8[] __attribute__((aligned (2))) = dgChildZeldaAnim_010DF8; -#endif - -#define dgChildZeldaAnim_011248 "__OTR__objects/object_zl4/gChildZeldaAnim_011248" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_011248[] = dgChildZeldaAnim_011248; -#else -static const char gChildZeldaAnim_011248[] __attribute__((aligned (2))) = dgChildZeldaAnim_011248; -#endif - -#define dgChildZeldaAnim_011698 "__OTR__objects/object_zl4/gChildZeldaAnim_011698" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_011698[] = dgChildZeldaAnim_011698; -#else -static const char gChildZeldaAnim_011698[] __attribute__((aligned (2))) = dgChildZeldaAnim_011698; -#endif - -#define dgChildZeldaAnim_011B34 "__OTR__objects/object_zl4/gChildZeldaAnim_011B34" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_011B34[] = dgChildZeldaAnim_011B34; -#else -static const char gChildZeldaAnim_011B34[] __attribute__((aligned (2))) = dgChildZeldaAnim_011B34; -#endif - -#define dgChildZeldaAnim_0125E4 "__OTR__objects/object_zl4/gChildZeldaAnim_0125E4" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_0125E4[] = dgChildZeldaAnim_0125E4; -#else -static const char gChildZeldaAnim_0125E4[] __attribute__((aligned (2))) = dgChildZeldaAnim_0125E4; -#endif - -#define dgChildZeldaAnim_012E58 "__OTR__objects/object_zl4/gChildZeldaAnim_012E58" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_012E58[] = dgChildZeldaAnim_012E58; -#else -static const char gChildZeldaAnim_012E58[] __attribute__((aligned (2))) = dgChildZeldaAnim_012E58; -#endif - -#define dgChildZeldaAnim_013280 "__OTR__objects/object_zl4/gChildZeldaAnim_013280" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_013280[] = dgChildZeldaAnim_013280; -#else -static const char gChildZeldaAnim_013280[] __attribute__((aligned (2))) = dgChildZeldaAnim_013280; -#endif - -#define dgChildZeldaAnim_013628 "__OTR__objects/object_zl4/gChildZeldaAnim_013628" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_013628[] = dgChildZeldaAnim_013628; -#else -static const char gChildZeldaAnim_013628[] __attribute__((aligned (2))) = dgChildZeldaAnim_013628; -#endif - -#define dgChildZeldaAnim_013A50 "__OTR__objects/object_zl4/gChildZeldaAnim_013A50" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_013A50[] = dgChildZeldaAnim_013A50; -#else -static const char gChildZeldaAnim_013A50[] __attribute__((aligned (2))) = dgChildZeldaAnim_013A50; -#endif - -#define dgChildZeldaAnim_013EA0 "__OTR__objects/object_zl4/gChildZeldaAnim_013EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_013EA0[] = dgChildZeldaAnim_013EA0; -#else -static const char gChildZeldaAnim_013EA0[] __attribute__((aligned (2))) = dgChildZeldaAnim_013EA0; -#endif - -#define dgChildZeldaAnim_015F14 "__OTR__objects/object_zl4/gChildZeldaAnim_015F14" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_015F14[] = dgChildZeldaAnim_015F14; -#else -static const char gChildZeldaAnim_015F14[] __attribute__((aligned (2))) = dgChildZeldaAnim_015F14; -#endif - -#define dgChildZeldaAnim_01726C "__OTR__objects/object_zl4/gChildZeldaAnim_01726C" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01726C[] = dgChildZeldaAnim_01726C; -#else -static const char gChildZeldaAnim_01726C[] __attribute__((aligned (2))) = dgChildZeldaAnim_01726C; -#endif - -#define dgChildZeldaAnim_017818 "__OTR__objects/object_zl4/gChildZeldaAnim_017818" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_017818[] = dgChildZeldaAnim_017818; -#else -static const char gChildZeldaAnim_017818[] __attribute__((aligned (2))) = dgChildZeldaAnim_017818; -#endif - -#define dgChildZeldaAnim_0169B4 "__OTR__objects/object_zl4/gChildZeldaAnim_0169B4" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_0169B4[] = dgChildZeldaAnim_0169B4; -#else -static const char gChildZeldaAnim_0169B4[] __attribute__((aligned (2))) = dgChildZeldaAnim_0169B4; -#endif - -#define dgChildZeldaAnim_016D08 "__OTR__objects/object_zl4/gChildZeldaAnim_016D08" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_016D08[] = dgChildZeldaAnim_016D08; -#else -static const char gChildZeldaAnim_016D08[] __attribute__((aligned (2))) = dgChildZeldaAnim_016D08; -#endif - -#define dgChildZeldaAnim_01805C "__OTR__objects/object_zl4/gChildZeldaAnim_01805C" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01805C[] = dgChildZeldaAnim_01805C; -#else -static const char gChildZeldaAnim_01805C[] __attribute__((aligned (2))) = dgChildZeldaAnim_01805C; -#endif - -#define dgChildZeldaAnim_018898 "__OTR__objects/object_zl4/gChildZeldaAnim_018898" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_018898[] = dgChildZeldaAnim_018898; -#else -static const char gChildZeldaAnim_018898[] __attribute__((aligned (2))) = dgChildZeldaAnim_018898; -#endif - -#define dgChildZeldaAnim_01910C "__OTR__objects/object_zl4/gChildZeldaAnim_01910C" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01910C[] = dgChildZeldaAnim_01910C; -#else -static const char gChildZeldaAnim_01910C[] __attribute__((aligned (2))) = dgChildZeldaAnim_01910C; -#endif - -#define dgChildZeldaAnim_019600 "__OTR__objects/object_zl4/gChildZeldaAnim_019600" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_019600[] = dgChildZeldaAnim_019600; -#else -static const char gChildZeldaAnim_019600[] __attribute__((aligned (2))) = dgChildZeldaAnim_019600; -#endif - -#define dgChildZeldaAnim_01991C "__OTR__objects/object_zl4/gChildZeldaAnim_01991C" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01991C[] = dgChildZeldaAnim_01991C; -#else -static const char gChildZeldaAnim_01991C[] __attribute__((aligned (2))) = dgChildZeldaAnim_01991C; -#endif - -#define dgChildZeldaAnim_01A2FC "__OTR__objects/object_zl4/gChildZeldaAnim_01A2FC" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01A2FC[] = dgChildZeldaAnim_01A2FC; -#else -static const char gChildZeldaAnim_01A2FC[] __attribute__((aligned (2))) = dgChildZeldaAnim_01A2FC; -#endif - -#define dgChildZeldaAnim_01AAE0 "__OTR__objects/object_zl4/gChildZeldaAnim_01AAE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01AAE0[] = dgChildZeldaAnim_01AAE0; -#else -static const char gChildZeldaAnim_01AAE0[] __attribute__((aligned (2))) = dgChildZeldaAnim_01AAE0; -#endif - -#define dgChildZeldaAnim_01AE88 "__OTR__objects/object_zl4/gChildZeldaAnim_01AE88" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01AE88[] = dgChildZeldaAnim_01AE88; -#else -static const char gChildZeldaAnim_01AE88[] __attribute__((aligned (2))) = dgChildZeldaAnim_01AE88; -#endif - -#define dgChildZeldaAnim_01B874 "__OTR__objects/object_zl4/gChildZeldaAnim_01B874" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01B874[] = dgChildZeldaAnim_01B874; -#else -static const char gChildZeldaAnim_01B874[] __attribute__((aligned (2))) = dgChildZeldaAnim_01B874; -#endif - -#define dgChildZeldaAnim_01BCF0 "__OTR__objects/object_zl4/gChildZeldaAnim_01BCF0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01BCF0[] = dgChildZeldaAnim_01BCF0; -#else -static const char gChildZeldaAnim_01BCF0[] __attribute__((aligned (2))) = dgChildZeldaAnim_01BCF0; -#endif - -#define dgChildZeldaAnim_01CE08 "__OTR__objects/object_zl4/gChildZeldaAnim_01CE08" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01CE08[] = dgChildZeldaAnim_01CE08; -#else -static const char gChildZeldaAnim_01CE08[] __attribute__((aligned (2))) = dgChildZeldaAnim_01CE08; -#endif - -#define dgChildZeldaAnim_01C494 "__OTR__objects/object_zl4/gChildZeldaAnim_01C494" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01C494[] = dgChildZeldaAnim_01C494; -#else -static const char gChildZeldaAnim_01C494[] __attribute__((aligned (2))) = dgChildZeldaAnim_01C494; -#endif - -#define dgChildZeldaAnim_01C7B0 "__OTR__objects/object_zl4/gChildZeldaAnim_01C7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_01C7B0[] = dgChildZeldaAnim_01C7B0; -#else -static const char gChildZeldaAnim_01C7B0[] __attribute__((aligned (2))) = dgChildZeldaAnim_01C7B0; -#endif - -#define dgChildZeldaAnim_00F0A4 "__OTR__objects/object_zl4/gChildZeldaAnim_00F0A4" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_00F0A4[] = dgChildZeldaAnim_00F0A4; -#else -static const char gChildZeldaAnim_00F0A4[] __attribute__((aligned (2))) = dgChildZeldaAnim_00F0A4; -#endif - -#define dgChildZeldaAnim_00F894 "__OTR__objects/object_zl4/gChildZeldaAnim_00F894" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaAnim_00F894[] = dgChildZeldaAnim_00F894; -#else -static const char gChildZeldaAnim_00F894[] __attribute__((aligned (2))) = dgChildZeldaAnim_00F894; -#endif - -#define dgChildZeldaMouthNeutralTex "__OTR__objects/object_zl4/gChildZeldaMouthNeutralTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaMouthNeutralTex[] = dgChildZeldaMouthNeutralTex; -#else -static const char gChildZeldaMouthNeutralTex[] __attribute__((aligned (2))) = dgChildZeldaMouthNeutralTex; -#endif - -#define dgChildZeldaMouthHappyTex "__OTR__objects/object_zl4/gChildZeldaMouthHappyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaMouthHappyTex[] = dgChildZeldaMouthHappyTex; -#else -static const char gChildZeldaMouthHappyTex[] __attribute__((aligned (2))) = dgChildZeldaMouthHappyTex; -#endif - -#define dgChildZeldaMouthWorriedTex "__OTR__objects/object_zl4/gChildZeldaMouthWorriedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaMouthWorriedTex[] = dgChildZeldaMouthWorriedTex; -#else -static const char gChildZeldaMouthWorriedTex[] __attribute__((aligned (2))) = dgChildZeldaMouthWorriedTex; -#endif - -#define dgChildZeldaMouthSurprisedTex "__OTR__objects/object_zl4/gChildZeldaMouthSurprisedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaMouthSurprisedTex[] = dgChildZeldaMouthSurprisedTex; -#else -static const char gChildZeldaMouthSurprisedTex[] __attribute__((aligned (2))) = dgChildZeldaMouthSurprisedTex; -#endif - -#define dgChildZeldaEyeOpenTex "__OTR__objects/object_zl4/gChildZeldaEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaEyeOpenTex[] = dgChildZeldaEyeOpenTex; -#else -static const char gChildZeldaEyeOpenTex[] __attribute__((aligned (2))) = dgChildZeldaEyeOpenTex; -#endif - -#define dgChildZeldaEyeBlinkTex "__OTR__objects/object_zl4/gChildZeldaEyeBlinkTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaEyeBlinkTex[] = dgChildZeldaEyeBlinkTex; -#else -static const char gChildZeldaEyeBlinkTex[] __attribute__((aligned (2))) = dgChildZeldaEyeBlinkTex; -#endif - -#define dgChildZeldaEyeShutTex "__OTR__objects/object_zl4/gChildZeldaEyeShutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaEyeShutTex[] = dgChildZeldaEyeShutTex; -#else -static const char gChildZeldaEyeShutTex[] __attribute__((aligned (2))) = dgChildZeldaEyeShutTex; -#endif - -#define dgChildZeldaEyeWideTex "__OTR__objects/object_zl4/gChildZeldaEyeWideTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaEyeWideTex[] = dgChildZeldaEyeWideTex; -#else -static const char gChildZeldaEyeWideTex[] __attribute__((aligned (2))) = dgChildZeldaEyeWideTex; -#endif - -#define dgChildZeldaEyeSquintTex "__OTR__objects/object_zl4/gChildZeldaEyeSquintTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaEyeSquintTex[] = dgChildZeldaEyeSquintTex; -#else -static const char gChildZeldaEyeSquintTex[] __attribute__((aligned (2))) = dgChildZeldaEyeSquintTex; -#endif - -#define dgChildZeldaEyeOutTex "__OTR__objects/object_zl4/gChildZeldaEyeOutTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaEyeOutTex[] = dgChildZeldaEyeOutTex; -#else -static const char gChildZeldaEyeOutTex[] __attribute__((aligned (2))) = dgChildZeldaEyeOutTex; -#endif - -#define dgChildZeldaEyeInTex "__OTR__objects/object_zl4/gChildZeldaEyeInTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaEyeInTex[] = dgChildZeldaEyeInTex; -#else -static const char gChildZeldaEyeInTex[] __attribute__((aligned (2))) = dgChildZeldaEyeInTex; -#endif - -#define dgChildZeldaCutsceneDressDL "__OTR__objects/object_zl4/gChildZeldaCutsceneDressDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaCutsceneDressDL[] = dgChildZeldaCutsceneDressDL; -#else -static const char gChildZeldaCutsceneDressDL[] __attribute__((aligned (2))) = dgChildZeldaCutsceneDressDL; -#endif - -#define dgChildZeldaOcarinaOfTimeDL "__OTR__objects/object_zl4/gChildZeldaOcarinaOfTimeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaOcarinaOfTimeDL[] = dgChildZeldaOcarinaOfTimeDL; -#else -static const char gChildZeldaOcarinaOfTimeDL[] __attribute__((aligned (2))) = dgChildZeldaOcarinaOfTimeDL; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF34DL_00C8D0 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF34DL_00C8D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF34DL_00C8D0[] = dgChildZeldaSkelLimbsLimb_00DF34DL_00C8D0; -#else -static const char gChildZeldaSkelLimbsLimb_00DF34DL_00C8D0[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF34DL_00C8D0; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF40DL_00D728 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF40DL_00D728" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF40DL_00D728[] = dgChildZeldaSkelLimbsLimb_00DF40DL_00D728; -#else -static const char gChildZeldaSkelLimbsLimb_00DF40DL_00D728[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF40DL_00D728; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF4CDL_00D778 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF4CDL_00D778" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF4CDL_00D778[] = dgChildZeldaSkelLimbsLimb_00DF4CDL_00D778; -#else -static const char gChildZeldaSkelLimbsLimb_00DF4CDL_00D778[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF4CDL_00D778; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF58DL_00D598 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF58DL_00D598" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF58DL_00D598[] = dgChildZeldaSkelLimbsLimb_00DF58DL_00D598; -#else -static const char gChildZeldaSkelLimbsLimb_00DF58DL_00D598[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF58DL_00D598; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF64DL_00D5E8 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF64DL_00D5E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF64DL_00D5E8[] = dgChildZeldaSkelLimbsLimb_00DF64DL_00D5E8; -#else -static const char gChildZeldaSkelLimbsLimb_00DF64DL_00D5E8[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF64DL_00D5E8; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF70DL_00D0E8 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF70DL_00D0E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF70DL_00D0E8[] = dgChildZeldaSkelLimbsLimb_00DF70DL_00D0E8; -#else -static const char gChildZeldaSkelLimbsLimb_00DF70DL_00D0E8[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF70DL_00D0E8; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0[] = dgChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0; -#else -static const char gChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF88DL_00D460 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF88DL_00D460" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF88DL_00D460[] = dgChildZeldaSkelLimbsLimb_00DF88DL_00D460; -#else -static const char gChildZeldaSkelLimbsLimb_00DF88DL_00D460[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF88DL_00D460; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DF94DL_00A630 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF94DL_00A630" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DF94DL_00A630[] = dgChildZeldaSkelLimbsLimb_00DF94DL_00A630; -#else -static const char gChildZeldaSkelLimbsLimb_00DF94DL_00A630[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DF94DL_00A630; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DFA0DL_00BE70 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFA0DL_00BE70" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DFA0DL_00BE70[] = dgChildZeldaSkelLimbsLimb_00DFA0DL_00BE70; -#else -static const char gChildZeldaSkelLimbsLimb_00DFA0DL_00BE70[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DFA0DL_00BE70; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DFACDL_00C0E0 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFACDL_00C0E0" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DFACDL_00C0E0[] = dgChildZeldaSkelLimbsLimb_00DFACDL_00C0E0; -#else -static const char gChildZeldaSkelLimbsLimb_00DFACDL_00C0E0[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DFACDL_00C0E0; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DFB8DL_00C230 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFB8DL_00C230" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DFB8DL_00C230[] = dgChildZeldaSkelLimbsLimb_00DFB8DL_00C230; -#else -static const char gChildZeldaSkelLimbsLimb_00DFB8DL_00C230[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DFB8DL_00C230; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8[] = dgChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8; -#else -static const char gChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DFD0DL_00BB40 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFD0DL_00BB40" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DFD0DL_00BB40[] = dgChildZeldaSkelLimbsLimb_00DFD0DL_00BB40; -#else -static const char gChildZeldaSkelLimbsLimb_00DFD0DL_00BB40[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DFD0DL_00BB40; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DFDCDL_00BC90 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFDCDL_00BC90" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DFDCDL_00BC90[] = dgChildZeldaSkelLimbsLimb_00DFDCDL_00BC90; -#else -static const char gChildZeldaSkelLimbsLimb_00DFDCDL_00BC90[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DFDCDL_00BC90; -#endif - -#define dgChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8[] = dgChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8; -#else -static const char gChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8[] __attribute__((aligned (2))) = dgChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8; -#endif - -#define dobject_zl4TLUT_000670 "__OTR__objects/object_zl4/object_zl4TLUT_000670" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4TLUT_000670[] = dobject_zl4TLUT_000670; -#else -static const char object_zl4TLUT_000670[] __attribute__((aligned (2))) = dobject_zl4TLUT_000670; -#endif - -#define dobject_zl4Tex_0017B0 "__OTR__objects/object_zl4/object_zl4Tex_0017B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0017B0[] = dobject_zl4Tex_0017B0; -#else -static const char object_zl4Tex_0017B0[] __attribute__((aligned (2))) = dobject_zl4Tex_0017B0; -#endif - -#define dobject_zl4Tex_0016B0 "__OTR__objects/object_zl4/object_zl4Tex_0016B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0016B0[] = dobject_zl4Tex_0016B0; -#else -static const char object_zl4Tex_0016B0[] __attribute__((aligned (2))) = dobject_zl4Tex_0016B0; -#endif - -#define dobject_zl4Tex_001BF0 "__OTR__objects/object_zl4/object_zl4Tex_001BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_001BF0[] = dobject_zl4Tex_001BF0; -#else -static const char object_zl4Tex_001BF0[] __attribute__((aligned (2))) = dobject_zl4Tex_001BF0; -#endif - -#define dobject_zl4Tex_001CF0 "__OTR__objects/object_zl4/object_zl4Tex_001CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_001CF0[] = dobject_zl4Tex_001CF0; -#else -static const char object_zl4Tex_001CF0[] __attribute__((aligned (2))) = dobject_zl4Tex_001CF0; -#endif - -#define dobject_zl4Tex_001DF0 "__OTR__objects/object_zl4/object_zl4Tex_001DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_001DF0[] = dobject_zl4Tex_001DF0; -#else -static const char object_zl4Tex_001DF0[] __attribute__((aligned (2))) = dobject_zl4Tex_001DF0; -#endif - -#define dobject_zl4Tex_00D8B8 "__OTR__objects/object_zl4/object_zl4Tex_00D8B8" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_00D8B8[] = dobject_zl4Tex_00D8B8; -#else -static const char object_zl4Tex_00D8B8[] __attribute__((aligned (2))) = dobject_zl4Tex_00D8B8; -#endif - -#define dobject_zl4Tex_000C70 "__OTR__objects/object_zl4/object_zl4Tex_000C70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_000C70[] = dobject_zl4Tex_000C70; -#else -static const char object_zl4Tex_000C70[] __attribute__((aligned (2))) = dobject_zl4Tex_000C70; -#endif - -#define dobject_zl4Tex_000CB0 "__OTR__objects/object_zl4/object_zl4Tex_000CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_000CB0[] = dobject_zl4Tex_000CB0; -#else -static const char object_zl4Tex_000CB0[] __attribute__((aligned (2))) = dobject_zl4Tex_000CB0; -#endif - -#define dobject_zl4Tex_000DB0 "__OTR__objects/object_zl4/object_zl4Tex_000DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_000DB0[] = dobject_zl4Tex_000DB0; -#else -static const char object_zl4Tex_000DB0[] __attribute__((aligned (2))) = dobject_zl4Tex_000DB0; -#endif - -#define dobject_zl4Tex_0017F0 "__OTR__objects/object_zl4/object_zl4Tex_0017F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0017F0[] = dobject_zl4Tex_0017F0; -#else -static const char object_zl4Tex_0017F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0017F0; -#endif - -#define dobject_zl4Tex_0015B0 "__OTR__objects/object_zl4/object_zl4Tex_0015B0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0015B0[] = dobject_zl4Tex_0015B0; -#else -static const char object_zl4Tex_0015B0[] __attribute__((aligned (2))) = dobject_zl4Tex_0015B0; -#endif - -#define dobject_zl4Tex_001630 "__OTR__objects/object_zl4/object_zl4Tex_001630" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_001630[] = dobject_zl4Tex_001630; -#else -static const char object_zl4Tex_001630[] __attribute__((aligned (2))) = dobject_zl4Tex_001630; -#endif - -#define dobject_zl4Tex_0028F0 "__OTR__objects/object_zl4/object_zl4Tex_0028F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0028F0[] = dobject_zl4Tex_0028F0; -#else -static const char object_zl4Tex_0028F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0028F0; -#endif - -#define dobject_zl4Tex_0059F0 "__OTR__objects/object_zl4/object_zl4Tex_0059F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0059F0[] = dobject_zl4Tex_0059F0; -#else -static const char object_zl4Tex_0059F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0059F0; -#endif - -#define dobject_zl4Tex_005CB0 "__OTR__objects/object_zl4/object_zl4Tex_005CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_005CB0[] = dobject_zl4Tex_005CB0; -#else -static const char object_zl4Tex_005CB0[] __attribute__((aligned (2))) = dobject_zl4Tex_005CB0; -#endif - -#define dobject_zl4Tex_005DB0 "__OTR__objects/object_zl4/object_zl4Tex_005DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_005DB0[] = dobject_zl4Tex_005DB0; -#else -static const char object_zl4Tex_005DB0[] __attribute__((aligned (2))) = dobject_zl4Tex_005DB0; -#endif - -#define dobject_zl4Tex_005A70 "__OTR__objects/object_zl4/object_zl4Tex_005A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_005A70[] = dobject_zl4Tex_005A70; -#else -static const char object_zl4Tex_005A70[] __attribute__((aligned (2))) = dobject_zl4Tex_005A70; -#endif - -#define dobject_zl4Tex_005C70 "__OTR__objects/object_zl4/object_zl4Tex_005C70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_005C70[] = dobject_zl4Tex_005C70; -#else -static const char object_zl4Tex_005C70[] __attribute__((aligned (2))) = dobject_zl4Tex_005C70; -#endif - -#define dobject_zl4Tex_0058F0 "__OTR__objects/object_zl4/object_zl4Tex_0058F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0058F0[] = dobject_zl4Tex_0058F0; -#else -static const char object_zl4Tex_0058F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0058F0; -#endif - -#define dobject_zl4Tex_0056F0 "__OTR__objects/object_zl4/object_zl4Tex_0056F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0056F0[] = dobject_zl4Tex_0056F0; -#else -static const char object_zl4Tex_0056F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0056F0; -#endif - -#define dobject_zl4Tex_001E30 "__OTR__objects/object_zl4/object_zl4Tex_001E30" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_001E30[] = dobject_zl4Tex_001E30; -#else -static const char object_zl4Tex_001E30[] __attribute__((aligned (2))) = dobject_zl4Tex_001E30; -#endif - -#define dobject_zl4Tex_002230 "__OTR__objects/object_zl4/object_zl4Tex_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_002230[] = dobject_zl4Tex_002230; -#else -static const char object_zl4Tex_002230[] __attribute__((aligned (2))) = dobject_zl4Tex_002230; -#endif - -#define dobject_zl4Tex_002270 "__OTR__objects/object_zl4/object_zl4Tex_002270" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_002270[] = dobject_zl4Tex_002270; -#else -static const char object_zl4Tex_002270[] __attribute__((aligned (2))) = dobject_zl4Tex_002270; -#endif - -#define dobject_zl4Tex_0022F0 "__OTR__objects/object_zl4/object_zl4Tex_0022F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0022F0[] = dobject_zl4Tex_0022F0; -#else -static const char object_zl4Tex_0022F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0022F0; -#endif - -#define dobject_zl4Tex_0024F0 "__OTR__objects/object_zl4/object_zl4Tex_0024F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0024F0[] = dobject_zl4Tex_0024F0; -#else -static const char object_zl4Tex_0024F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0024F0; -#endif - -#define dobject_zl4Tex_0026F0 "__OTR__objects/object_zl4/object_zl4Tex_0026F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0026F0[] = dobject_zl4Tex_0026F0; -#else -static const char object_zl4Tex_0026F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0026F0; -#endif - -#define dobject_zl4Tex_002970 "__OTR__objects/object_zl4/object_zl4Tex_002970" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_002970[] = dobject_zl4Tex_002970; -#else -static const char object_zl4Tex_002970[] __attribute__((aligned (2))) = dobject_zl4Tex_002970; -#endif - -#define dobject_zl4Tex_0029F0 "__OTR__objects/object_zl4/object_zl4Tex_0029F0" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4Tex_0029F0[] = dobject_zl4Tex_0029F0; -#else -static const char object_zl4Tex_0029F0[] __attribute__((aligned (2))) = dobject_zl4Tex_0029F0; -#endif - -#define dobject_zl4TLUT_000870 "__OTR__objects/object_zl4/object_zl4TLUT_000870" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4TLUT_000870[] = dobject_zl4TLUT_000870; -#else -static const char object_zl4TLUT_000870[] __attribute__((aligned (2))) = dobject_zl4TLUT_000870; -#endif - -#define dobject_zl4TLUT_000A70 "__OTR__objects/object_zl4/object_zl4TLUT_000A70" -#ifdef _WIN32 -static const __declspec(align(2)) char object_zl4TLUT_000A70[] = dobject_zl4TLUT_000A70; -#else -static const char object_zl4TLUT_000A70[] __attribute__((aligned (2))) = dobject_zl4TLUT_000A70; -#endif - +#include "align_asset_macro.h" + +#define dgChildZeldaSkel "__OTR__objects/object_zl4/gChildZeldaSkel" +static const ALIGN_ASSET(2) char gChildZeldaSkel[] = dgChildZeldaSkel; + +#define dgChildZeldaAnim_000654 "__OTR__objects/object_zl4/gChildZeldaAnim_000654" +static const ALIGN_ASSET(2) char gChildZeldaAnim_000654[] = dgChildZeldaAnim_000654; + +#define dgChildZeldaAnim_00E5C8 "__OTR__objects/object_zl4/gChildZeldaAnim_00E5C8" +static const ALIGN_ASSET(2) char gChildZeldaAnim_00E5C8[] = dgChildZeldaAnim_00E5C8; + +#define dgChildZeldaAnim_00EBC4 "__OTR__objects/object_zl4/gChildZeldaAnim_00EBC4" +static const ALIGN_ASSET(2) char gChildZeldaAnim_00EBC4[] = dgChildZeldaAnim_00EBC4; + +#define dgChildZeldaAnim_010DF8 "__OTR__objects/object_zl4/gChildZeldaAnim_010DF8" +static const ALIGN_ASSET(2) char gChildZeldaAnim_010DF8[] = dgChildZeldaAnim_010DF8; + +#define dgChildZeldaAnim_011248 "__OTR__objects/object_zl4/gChildZeldaAnim_011248" +static const ALIGN_ASSET(2) char gChildZeldaAnim_011248[] = dgChildZeldaAnim_011248; + +#define dgChildZeldaAnim_011698 "__OTR__objects/object_zl4/gChildZeldaAnim_011698" +static const ALIGN_ASSET(2) char gChildZeldaAnim_011698[] = dgChildZeldaAnim_011698; + +#define dgChildZeldaAnim_011B34 "__OTR__objects/object_zl4/gChildZeldaAnim_011B34" +static const ALIGN_ASSET(2) char gChildZeldaAnim_011B34[] = dgChildZeldaAnim_011B34; + +#define dgChildZeldaAnim_0125E4 "__OTR__objects/object_zl4/gChildZeldaAnim_0125E4" +static const ALIGN_ASSET(2) char gChildZeldaAnim_0125E4[] = dgChildZeldaAnim_0125E4; + +#define dgChildZeldaAnim_012E58 "__OTR__objects/object_zl4/gChildZeldaAnim_012E58" +static const ALIGN_ASSET(2) char gChildZeldaAnim_012E58[] = dgChildZeldaAnim_012E58; + +#define dgChildZeldaAnim_013280 "__OTR__objects/object_zl4/gChildZeldaAnim_013280" +static const ALIGN_ASSET(2) char gChildZeldaAnim_013280[] = dgChildZeldaAnim_013280; + +#define dgChildZeldaAnim_013628 "__OTR__objects/object_zl4/gChildZeldaAnim_013628" +static const ALIGN_ASSET(2) char gChildZeldaAnim_013628[] = dgChildZeldaAnim_013628; + +#define dgChildZeldaAnim_013A50 "__OTR__objects/object_zl4/gChildZeldaAnim_013A50" +static const ALIGN_ASSET(2) char gChildZeldaAnim_013A50[] = dgChildZeldaAnim_013A50; + +#define dgChildZeldaAnim_013EA0 "__OTR__objects/object_zl4/gChildZeldaAnim_013EA0" +static const ALIGN_ASSET(2) char gChildZeldaAnim_013EA0[] = dgChildZeldaAnim_013EA0; + +#define dgChildZeldaAnim_015F14 "__OTR__objects/object_zl4/gChildZeldaAnim_015F14" +static const ALIGN_ASSET(2) char gChildZeldaAnim_015F14[] = dgChildZeldaAnim_015F14; + +#define dgChildZeldaAnim_01726C "__OTR__objects/object_zl4/gChildZeldaAnim_01726C" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01726C[] = dgChildZeldaAnim_01726C; + +#define dgChildZeldaAnim_017818 "__OTR__objects/object_zl4/gChildZeldaAnim_017818" +static const ALIGN_ASSET(2) char gChildZeldaAnim_017818[] = dgChildZeldaAnim_017818; + +#define dgChildZeldaAnim_0169B4 "__OTR__objects/object_zl4/gChildZeldaAnim_0169B4" +static const ALIGN_ASSET(2) char gChildZeldaAnim_0169B4[] = dgChildZeldaAnim_0169B4; + +#define dgChildZeldaAnim_016D08 "__OTR__objects/object_zl4/gChildZeldaAnim_016D08" +static const ALIGN_ASSET(2) char gChildZeldaAnim_016D08[] = dgChildZeldaAnim_016D08; + +#define dgChildZeldaAnim_01805C "__OTR__objects/object_zl4/gChildZeldaAnim_01805C" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01805C[] = dgChildZeldaAnim_01805C; + +#define dgChildZeldaAnim_018898 "__OTR__objects/object_zl4/gChildZeldaAnim_018898" +static const ALIGN_ASSET(2) char gChildZeldaAnim_018898[] = dgChildZeldaAnim_018898; + +#define dgChildZeldaAnim_01910C "__OTR__objects/object_zl4/gChildZeldaAnim_01910C" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01910C[] = dgChildZeldaAnim_01910C; + +#define dgChildZeldaAnim_019600 "__OTR__objects/object_zl4/gChildZeldaAnim_019600" +static const ALIGN_ASSET(2) char gChildZeldaAnim_019600[] = dgChildZeldaAnim_019600; + +#define dgChildZeldaAnim_01991C "__OTR__objects/object_zl4/gChildZeldaAnim_01991C" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01991C[] = dgChildZeldaAnim_01991C; + +#define dgChildZeldaAnim_01A2FC "__OTR__objects/object_zl4/gChildZeldaAnim_01A2FC" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01A2FC[] = dgChildZeldaAnim_01A2FC; + +#define dgChildZeldaAnim_01AAE0 "__OTR__objects/object_zl4/gChildZeldaAnim_01AAE0" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01AAE0[] = dgChildZeldaAnim_01AAE0; + +#define dgChildZeldaAnim_01AE88 "__OTR__objects/object_zl4/gChildZeldaAnim_01AE88" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01AE88[] = dgChildZeldaAnim_01AE88; + +#define dgChildZeldaAnim_01B874 "__OTR__objects/object_zl4/gChildZeldaAnim_01B874" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01B874[] = dgChildZeldaAnim_01B874; + +#define dgChildZeldaAnim_01BCF0 "__OTR__objects/object_zl4/gChildZeldaAnim_01BCF0" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01BCF0[] = dgChildZeldaAnim_01BCF0; + +#define dgChildZeldaAnim_01CE08 "__OTR__objects/object_zl4/gChildZeldaAnim_01CE08" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01CE08[] = dgChildZeldaAnim_01CE08; + +#define dgChildZeldaAnim_01C494 "__OTR__objects/object_zl4/gChildZeldaAnim_01C494" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01C494[] = dgChildZeldaAnim_01C494; + +#define dgChildZeldaAnim_01C7B0 "__OTR__objects/object_zl4/gChildZeldaAnim_01C7B0" +static const ALIGN_ASSET(2) char gChildZeldaAnim_01C7B0[] = dgChildZeldaAnim_01C7B0; + +#define dgChildZeldaAnim_00F0A4 "__OTR__objects/object_zl4/gChildZeldaAnim_00F0A4" +static const ALIGN_ASSET(2) char gChildZeldaAnim_00F0A4[] = dgChildZeldaAnim_00F0A4; + +#define dgChildZeldaAnim_00F894 "__OTR__objects/object_zl4/gChildZeldaAnim_00F894" +static const ALIGN_ASSET(2) char gChildZeldaAnim_00F894[] = dgChildZeldaAnim_00F894; + +#define dgChildZeldaMouthNeutralTex "__OTR__objects/object_zl4/gChildZeldaMouthNeutralTex" +static const ALIGN_ASSET(2) char gChildZeldaMouthNeutralTex[] = dgChildZeldaMouthNeutralTex; + +#define dgChildZeldaMouthHappyTex "__OTR__objects/object_zl4/gChildZeldaMouthHappyTex" +static const ALIGN_ASSET(2) char gChildZeldaMouthHappyTex[] = dgChildZeldaMouthHappyTex; + +#define dgChildZeldaMouthWorriedTex "__OTR__objects/object_zl4/gChildZeldaMouthWorriedTex" +static const ALIGN_ASSET(2) char gChildZeldaMouthWorriedTex[] = dgChildZeldaMouthWorriedTex; + +#define dgChildZeldaMouthSurprisedTex "__OTR__objects/object_zl4/gChildZeldaMouthSurprisedTex" +static const ALIGN_ASSET(2) char gChildZeldaMouthSurprisedTex[] = dgChildZeldaMouthSurprisedTex; + +#define dgChildZeldaEyeOpenTex "__OTR__objects/object_zl4/gChildZeldaEyeOpenTex" +static const ALIGN_ASSET(2) char gChildZeldaEyeOpenTex[] = dgChildZeldaEyeOpenTex; + +#define dgChildZeldaEyeBlinkTex "__OTR__objects/object_zl4/gChildZeldaEyeBlinkTex" +static const ALIGN_ASSET(2) char gChildZeldaEyeBlinkTex[] = dgChildZeldaEyeBlinkTex; + +#define dgChildZeldaEyeShutTex "__OTR__objects/object_zl4/gChildZeldaEyeShutTex" +static const ALIGN_ASSET(2) char gChildZeldaEyeShutTex[] = dgChildZeldaEyeShutTex; + +#define dgChildZeldaEyeWideTex "__OTR__objects/object_zl4/gChildZeldaEyeWideTex" +static const ALIGN_ASSET(2) char gChildZeldaEyeWideTex[] = dgChildZeldaEyeWideTex; + +#define dgChildZeldaEyeSquintTex "__OTR__objects/object_zl4/gChildZeldaEyeSquintTex" +static const ALIGN_ASSET(2) char gChildZeldaEyeSquintTex[] = dgChildZeldaEyeSquintTex; + +#define dgChildZeldaEyeOutTex "__OTR__objects/object_zl4/gChildZeldaEyeOutTex" +static const ALIGN_ASSET(2) char gChildZeldaEyeOutTex[] = dgChildZeldaEyeOutTex; + +#define dgChildZeldaEyeInTex "__OTR__objects/object_zl4/gChildZeldaEyeInTex" +static const ALIGN_ASSET(2) char gChildZeldaEyeInTex[] = dgChildZeldaEyeInTex; + +#define dgChildZeldaCutsceneDressDL "__OTR__objects/object_zl4/gChildZeldaCutsceneDressDL" +static const ALIGN_ASSET(2) char gChildZeldaCutsceneDressDL[] = dgChildZeldaCutsceneDressDL; + +#define dgChildZeldaOcarinaOfTimeDL "__OTR__objects/object_zl4/gChildZeldaOcarinaOfTimeDL" +static const ALIGN_ASSET(2) char gChildZeldaOcarinaOfTimeDL[] = dgChildZeldaOcarinaOfTimeDL; + +#define dgChildZeldaSkelLimbsLimb_00DF34DL_00C8D0 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF34DL_00C8D0" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF34DL_00C8D0[] = dgChildZeldaSkelLimbsLimb_00DF34DL_00C8D0; + +#define dgChildZeldaSkelLimbsLimb_00DF40DL_00D728 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF40DL_00D728" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF40DL_00D728[] = dgChildZeldaSkelLimbsLimb_00DF40DL_00D728; + +#define dgChildZeldaSkelLimbsLimb_00DF4CDL_00D778 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF4CDL_00D778" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF4CDL_00D778[] = dgChildZeldaSkelLimbsLimb_00DF4CDL_00D778; + +#define dgChildZeldaSkelLimbsLimb_00DF58DL_00D598 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF58DL_00D598" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF58DL_00D598[] = dgChildZeldaSkelLimbsLimb_00DF58DL_00D598; + +#define dgChildZeldaSkelLimbsLimb_00DF64DL_00D5E8 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF64DL_00D5E8" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF64DL_00D5E8[] = dgChildZeldaSkelLimbsLimb_00DF64DL_00D5E8; + +#define dgChildZeldaSkelLimbsLimb_00DF70DL_00D0E8 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF70DL_00D0E8" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF70DL_00D0E8[] = dgChildZeldaSkelLimbsLimb_00DF70DL_00D0E8; + +#define dgChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0[] = dgChildZeldaSkelLimbsLimb_00DF7CDL_00D2A0; + +#define dgChildZeldaSkelLimbsLimb_00DF88DL_00D460 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF88DL_00D460" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF88DL_00D460[] = dgChildZeldaSkelLimbsLimb_00DF88DL_00D460; + +#define dgChildZeldaSkelLimbsLimb_00DF94DL_00A630 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DF94DL_00A630" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DF94DL_00A630[] = dgChildZeldaSkelLimbsLimb_00DF94DL_00A630; + +#define dgChildZeldaSkelLimbsLimb_00DFA0DL_00BE70 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFA0DL_00BE70" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DFA0DL_00BE70[] = dgChildZeldaSkelLimbsLimb_00DFA0DL_00BE70; + +#define dgChildZeldaSkelLimbsLimb_00DFACDL_00C0E0 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFACDL_00C0E0" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DFACDL_00C0E0[] = dgChildZeldaSkelLimbsLimb_00DFACDL_00C0E0; + +#define dgChildZeldaSkelLimbsLimb_00DFB8DL_00C230 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFB8DL_00C230" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DFB8DL_00C230[] = dgChildZeldaSkelLimbsLimb_00DFB8DL_00C230; + +#define dgChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8[] = dgChildZeldaSkelLimbsLimb_00DFC4DL_00B8D8; + +#define dgChildZeldaSkelLimbsLimb_00DFD0DL_00BB40 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFD0DL_00BB40" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DFD0DL_00BB40[] = dgChildZeldaSkelLimbsLimb_00DFD0DL_00BB40; + +#define dgChildZeldaSkelLimbsLimb_00DFDCDL_00BC90 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFDCDL_00BC90" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DFDCDL_00BC90[] = dgChildZeldaSkelLimbsLimb_00DFDCDL_00BC90; + +#define dgChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8 "__OTR__objects/object_zl4/gChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8" +static const ALIGN_ASSET(2) char gChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8[] = dgChildZeldaSkelLimbsLimb_00DFE8DL_00AFC8; + +#define dobject_zl4TLUT_000670 "__OTR__objects/object_zl4/object_zl4TLUT_000670" +static const ALIGN_ASSET(2) char object_zl4TLUT_000670[] = dobject_zl4TLUT_000670; + +#define dobject_zl4Tex_0017B0 "__OTR__objects/object_zl4/object_zl4Tex_0017B0" +static const ALIGN_ASSET(2) char object_zl4Tex_0017B0[] = dobject_zl4Tex_0017B0; + +#define dobject_zl4Tex_0016B0 "__OTR__objects/object_zl4/object_zl4Tex_0016B0" +static const ALIGN_ASSET(2) char object_zl4Tex_0016B0[] = dobject_zl4Tex_0016B0; + +#define dobject_zl4Tex_001BF0 "__OTR__objects/object_zl4/object_zl4Tex_001BF0" +static const ALIGN_ASSET(2) char object_zl4Tex_001BF0[] = dobject_zl4Tex_001BF0; + +#define dobject_zl4Tex_001CF0 "__OTR__objects/object_zl4/object_zl4Tex_001CF0" +static const ALIGN_ASSET(2) char object_zl4Tex_001CF0[] = dobject_zl4Tex_001CF0; + +#define dobject_zl4Tex_001DF0 "__OTR__objects/object_zl4/object_zl4Tex_001DF0" +static const ALIGN_ASSET(2) char object_zl4Tex_001DF0[] = dobject_zl4Tex_001DF0; + +#define dobject_zl4Tex_00D8B8 "__OTR__objects/object_zl4/object_zl4Tex_00D8B8" +static const ALIGN_ASSET(2) char object_zl4Tex_00D8B8[] = dobject_zl4Tex_00D8B8; + +#define dobject_zl4Tex_000C70 "__OTR__objects/object_zl4/object_zl4Tex_000C70" +static const ALIGN_ASSET(2) char object_zl4Tex_000C70[] = dobject_zl4Tex_000C70; + +#define dobject_zl4Tex_000CB0 "__OTR__objects/object_zl4/object_zl4Tex_000CB0" +static const ALIGN_ASSET(2) char object_zl4Tex_000CB0[] = dobject_zl4Tex_000CB0; + +#define dobject_zl4Tex_000DB0 "__OTR__objects/object_zl4/object_zl4Tex_000DB0" +static const ALIGN_ASSET(2) char object_zl4Tex_000DB0[] = dobject_zl4Tex_000DB0; + +#define dobject_zl4Tex_0017F0 "__OTR__objects/object_zl4/object_zl4Tex_0017F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0017F0[] = dobject_zl4Tex_0017F0; + +#define dobject_zl4Tex_0015B0 "__OTR__objects/object_zl4/object_zl4Tex_0015B0" +static const ALIGN_ASSET(2) char object_zl4Tex_0015B0[] = dobject_zl4Tex_0015B0; + +#define dobject_zl4Tex_001630 "__OTR__objects/object_zl4/object_zl4Tex_001630" +static const ALIGN_ASSET(2) char object_zl4Tex_001630[] = dobject_zl4Tex_001630; + +#define dobject_zl4Tex_0028F0 "__OTR__objects/object_zl4/object_zl4Tex_0028F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0028F0[] = dobject_zl4Tex_0028F0; + +#define dobject_zl4Tex_0059F0 "__OTR__objects/object_zl4/object_zl4Tex_0059F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0059F0[] = dobject_zl4Tex_0059F0; + +#define dobject_zl4Tex_005CB0 "__OTR__objects/object_zl4/object_zl4Tex_005CB0" +static const ALIGN_ASSET(2) char object_zl4Tex_005CB0[] = dobject_zl4Tex_005CB0; + +#define dobject_zl4Tex_005DB0 "__OTR__objects/object_zl4/object_zl4Tex_005DB0" +static const ALIGN_ASSET(2) char object_zl4Tex_005DB0[] = dobject_zl4Tex_005DB0; + +#define dobject_zl4Tex_005A70 "__OTR__objects/object_zl4/object_zl4Tex_005A70" +static const ALIGN_ASSET(2) char object_zl4Tex_005A70[] = dobject_zl4Tex_005A70; + +#define dobject_zl4Tex_005C70 "__OTR__objects/object_zl4/object_zl4Tex_005C70" +static const ALIGN_ASSET(2) char object_zl4Tex_005C70[] = dobject_zl4Tex_005C70; + +#define dobject_zl4Tex_0058F0 "__OTR__objects/object_zl4/object_zl4Tex_0058F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0058F0[] = dobject_zl4Tex_0058F0; + +#define dobject_zl4Tex_0056F0 "__OTR__objects/object_zl4/object_zl4Tex_0056F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0056F0[] = dobject_zl4Tex_0056F0; + +#define dobject_zl4Tex_001E30 "__OTR__objects/object_zl4/object_zl4Tex_001E30" +static const ALIGN_ASSET(2) char object_zl4Tex_001E30[] = dobject_zl4Tex_001E30; + +#define dobject_zl4Tex_002230 "__OTR__objects/object_zl4/object_zl4Tex_002230" +static const ALIGN_ASSET(2) char object_zl4Tex_002230[] = dobject_zl4Tex_002230; + +#define dobject_zl4Tex_002270 "__OTR__objects/object_zl4/object_zl4Tex_002270" +static const ALIGN_ASSET(2) char object_zl4Tex_002270[] = dobject_zl4Tex_002270; + +#define dobject_zl4Tex_0022F0 "__OTR__objects/object_zl4/object_zl4Tex_0022F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0022F0[] = dobject_zl4Tex_0022F0; + +#define dobject_zl4Tex_0024F0 "__OTR__objects/object_zl4/object_zl4Tex_0024F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0024F0[] = dobject_zl4Tex_0024F0; + +#define dobject_zl4Tex_0026F0 "__OTR__objects/object_zl4/object_zl4Tex_0026F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0026F0[] = dobject_zl4Tex_0026F0; + +#define dobject_zl4Tex_002970 "__OTR__objects/object_zl4/object_zl4Tex_002970" +static const ALIGN_ASSET(2) char object_zl4Tex_002970[] = dobject_zl4Tex_002970; + +#define dobject_zl4Tex_0029F0 "__OTR__objects/object_zl4/object_zl4Tex_0029F0" +static const ALIGN_ASSET(2) char object_zl4Tex_0029F0[] = dobject_zl4Tex_0029F0; + +#define dobject_zl4TLUT_000870 "__OTR__objects/object_zl4/object_zl4TLUT_000870" +static const ALIGN_ASSET(2) char object_zl4TLUT_000870[] = dobject_zl4TLUT_000870; + +#define dobject_zl4TLUT_000A70 "__OTR__objects/object_zl4/object_zl4TLUT_000A70" +static const ALIGN_ASSET(2) char object_zl4TLUT_000A70[] = dobject_zl4TLUT_000A70; \ No newline at end of file diff --git a/soh/assets/objects/object_zo/object_zo.h b/soh/assets/objects/object_zo/object_zo.h index 332576728..84c19ba79 100644 --- a/soh/assets/objects/object_zo/object_zo.h +++ b/soh/assets/objects/object_zo/object_zo.h @@ -1,303 +1,132 @@ #pragma once -#define dgZoraSkel "__OTR__objects/object_zo/gZoraSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraSkel[] = dgZoraSkel; -#else -static const char gZoraSkel[] __attribute__((aligned (2))) = dgZoraSkel; -#endif - -#define dgZoraPelvisDL "__OTR__objects/object_zo/gZoraPelvisDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraPelvisDL[] = dgZoraPelvisDL; -#else -static const char gZoraPelvisDL[] __attribute__((aligned (2))) = dgZoraPelvisDL; -#endif - -#define dgZoraLeftThighsDL "__OTR__objects/object_zo/gZoraLeftThighsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraLeftThighsDL[] = dgZoraLeftThighsDL; -#else -static const char gZoraLeftThighsDL[] __attribute__((aligned (2))) = dgZoraLeftThighsDL; -#endif - -#define dgZoraLeftShinDL "__OTR__objects/object_zo/gZoraLeftShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraLeftShinDL[] = dgZoraLeftShinDL; -#else -static const char gZoraLeftShinDL[] __attribute__((aligned (2))) = dgZoraLeftShinDL; -#endif - -#define dgZoraLeftFootDL "__OTR__objects/object_zo/gZoraLeftFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraLeftFootDL[] = dgZoraLeftFootDL; -#else -static const char gZoraLeftFootDL[] __attribute__((aligned (2))) = dgZoraLeftFootDL; -#endif - -#define dgZoraRightThighsDL "__OTR__objects/object_zo/gZoraRightThighsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraRightThighsDL[] = dgZoraRightThighsDL; -#else -static const char gZoraRightThighsDL[] __attribute__((aligned (2))) = dgZoraRightThighsDL; -#endif - -#define dgZoraRightShinDL "__OTR__objects/object_zo/gZoraRightShinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraRightShinDL[] = dgZoraRightShinDL; -#else -static const char gZoraRightShinDL[] __attribute__((aligned (2))) = dgZoraRightShinDL; -#endif - -#define dgZoraRightFootDL "__OTR__objects/object_zo/gZoraRightFootDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraRightFootDL[] = dgZoraRightFootDL; -#else -static const char gZoraRightFootDL[] __attribute__((aligned (2))) = dgZoraRightFootDL; -#endif - -#define dgZoraTorsoDL "__OTR__objects/object_zo/gZoraTorsoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraTorsoDL[] = dgZoraTorsoDL; -#else -static const char gZoraTorsoDL[] __attribute__((aligned (2))) = dgZoraTorsoDL; -#endif - -#define dgZoraLeftArmDL "__OTR__objects/object_zo/gZoraLeftArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraLeftArmDL[] = dgZoraLeftArmDL; -#else -static const char gZoraLeftArmDL[] __attribute__((aligned (2))) = dgZoraLeftArmDL; -#endif - -#define dgZoraLeftForearmDL "__OTR__objects/object_zo/gZoraLeftForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraLeftForearmDL[] = dgZoraLeftForearmDL; -#else -static const char gZoraLeftForearmDL[] __attribute__((aligned (2))) = dgZoraLeftForearmDL; -#endif - -#define dgZoraLeftHandDL "__OTR__objects/object_zo/gZoraLeftHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraLeftHandDL[] = dgZoraLeftHandDL; -#else -static const char gZoraLeftHandDL[] __attribute__((aligned (2))) = dgZoraLeftHandDL; -#endif - -#define dgZoraRightArmDL "__OTR__objects/object_zo/gZoraRightArmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraRightArmDL[] = dgZoraRightArmDL; -#else -static const char gZoraRightArmDL[] __attribute__((aligned (2))) = dgZoraRightArmDL; -#endif - -#define dgZoraRightForearmDL "__OTR__objects/object_zo/gZoraRightForearmDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraRightForearmDL[] = dgZoraRightForearmDL; -#else -static const char gZoraRightForearmDL[] __attribute__((aligned (2))) = dgZoraRightForearmDL; -#endif - -#define dgZoraRightHandDL "__OTR__objects/object_zo/gZoraRightHandDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraRightHandDL[] = dgZoraRightHandDL; -#else -static const char gZoraRightHandDL[] __attribute__((aligned (2))) = dgZoraRightHandDL; -#endif - -#define dgZoraHeadDL "__OTR__objects/object_zo/gZoraHeadDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHeadDL[] = dgZoraHeadDL; -#else -static const char gZoraHeadDL[] __attribute__((aligned (2))) = dgZoraHeadDL; -#endif - -#define dgZoraHeadTail1DL "__OTR__objects/object_zo/gZoraHeadTail1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHeadTail1DL[] = dgZoraHeadTail1DL; -#else -static const char gZoraHeadTail1DL[] __attribute__((aligned (2))) = dgZoraHeadTail1DL; -#endif - -#define dgZoraHeadTail2DL "__OTR__objects/object_zo/gZoraHeadTail2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHeadTail2DL[] = dgZoraHeadTail2DL; -#else -static const char gZoraHeadTail2DL[] __attribute__((aligned (2))) = dgZoraHeadTail2DL; -#endif - -#define dgZoraHeadTail3DL "__OTR__objects/object_zo/gZoraHeadTail3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHeadTail3DL[] = dgZoraHeadTail3DL; -#else -static const char gZoraHeadTail3DL[] __attribute__((aligned (2))) = dgZoraHeadTail3DL; -#endif - -#define dgZoraHeadTailFinDL "__OTR__objects/object_zo/gZoraHeadTailFinDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHeadTailFinDL[] = dgZoraHeadTailFinDL; -#else -static const char gZoraHeadTailFinDL[] __attribute__((aligned (2))) = dgZoraHeadTailFinDL; -#endif - -#define dgZoraIdleAnim "__OTR__objects/object_zo/gZoraIdleAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraIdleAnim[] = dgZoraIdleAnim; -#else -static const char gZoraIdleAnim[] __attribute__((aligned (2))) = dgZoraIdleAnim; -#endif - -#define dgZoraSurfaceAnim "__OTR__objects/object_zo/gZoraSurfaceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraSurfaceAnim[] = dgZoraSurfaceAnim; -#else -static const char gZoraSurfaceAnim[] __attribute__((aligned (2))) = dgZoraSurfaceAnim; -#endif - -#define dgZoraThrowRupeesAnim "__OTR__objects/object_zo/gZoraThrowRupeesAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraThrowRupeesAnim[] = dgZoraThrowRupeesAnim; -#else -static const char gZoraThrowRupeesAnim[] __attribute__((aligned (2))) = dgZoraThrowRupeesAnim; -#endif - -#define dgZoraHandsOnHipsTappingFootAnim "__OTR__objects/object_zo/gZoraHandsOnHipsTappingFootAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHandsOnHipsTappingFootAnim[] = dgZoraHandsOnHipsTappingFootAnim; -#else -static const char gZoraHandsOnHipsTappingFootAnim[] __attribute__((aligned (2))) = dgZoraHandsOnHipsTappingFootAnim; -#endif - -#define dgZoraOpenArmsAnim "__OTR__objects/object_zo/gZoraOpenArmsAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraOpenArmsAnim[] = dgZoraOpenArmsAnim; -#else -static const char gZoraOpenArmsAnim[] __attribute__((aligned (2))) = dgZoraOpenArmsAnim; -#endif - -#define dgZoraEyeOpenTex "__OTR__objects/object_zo/gZoraEyeOpenTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraEyeOpenTex[] = dgZoraEyeOpenTex; -#else -static const char gZoraEyeOpenTex[] __attribute__((aligned (2))) = dgZoraEyeOpenTex; -#endif - -#define dgZoraEyeHalfTex "__OTR__objects/object_zo/gZoraEyeHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraEyeHalfTex[] = dgZoraEyeHalfTex; -#else -static const char gZoraEyeHalfTex[] __attribute__((aligned (2))) = dgZoraEyeHalfTex; -#endif - -#define dgZoraEyeClosedTex "__OTR__objects/object_zo/gZoraEyeClosedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraEyeClosedTex[] = dgZoraEyeClosedTex; -#else -static const char gZoraEyeClosedTex[] __attribute__((aligned (2))) = dgZoraEyeClosedTex; -#endif - -#define dgZoraMouthTex "__OTR__objects/object_zo/gZoraMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraMouthTex[] = dgZoraMouthTex; -#else -static const char gZoraMouthTex[] __attribute__((aligned (2))) = dgZoraMouthTex; -#endif - -#define dgZoraHeadTailTex "__OTR__objects/object_zo/gZoraHeadTailTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHeadTailTex[] = dgZoraHeadTailTex; -#else -static const char gZoraHeadTailTex[] __attribute__((aligned (2))) = dgZoraHeadTailTex; -#endif - -#define dgZoraHandTex "__OTR__objects/object_zo/gZoraHandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHandTex[] = dgZoraHandTex; -#else -static const char gZoraHandTex[] __attribute__((aligned (2))) = dgZoraHandTex; -#endif - -#define dgZoraKneeTex "__OTR__objects/object_zo/gZoraKneeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraKneeTex[] = dgZoraKneeTex; -#else -static const char gZoraKneeTex[] __attribute__((aligned (2))) = dgZoraKneeTex; -#endif - -#define dgZoraHeadTex "__OTR__objects/object_zo/gZoraHeadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraHeadTex[] = dgZoraHeadTex; -#else -static const char gZoraHeadTex[] __attribute__((aligned (2))) = dgZoraHeadTex; -#endif - -#define dgZoraFinTex "__OTR__objects/object_zo/gZoraFinTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraFinTex[] = dgZoraFinTex; -#else -static const char gZoraFinTex[] __attribute__((aligned (2))) = dgZoraFinTex; -#endif - -#define dgZoraTLUT "__OTR__objects/object_zo/gZoraTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraTLUT[] = dgZoraTLUT; -#else -static const char gZoraTLUT[] __attribute__((aligned (2))) = dgZoraTLUT; -#endif - -#define dgZoraBubblesTex "__OTR__objects/object_zo/gZoraBubblesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraBubblesTex[] = dgZoraBubblesTex; -#else -static const char gZoraBubblesTex[] __attribute__((aligned (2))) = dgZoraBubblesTex; -#endif - -#define dgZoraBubblesMaterialDL "__OTR__objects/object_zo/gZoraBubblesMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraBubblesMaterialDL[] = dgZoraBubblesMaterialDL; -#else -static const char gZoraBubblesMaterialDL[] __attribute__((aligned (2))) = dgZoraBubblesMaterialDL; -#endif - -#define dgZoraBubblesModelDL "__OTR__objects/object_zo/gZoraBubblesModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraBubblesModelDL[] = dgZoraBubblesModelDL; -#else -static const char gZoraBubblesModelDL[] __attribute__((aligned (2))) = dgZoraBubblesModelDL; -#endif - -#define dgZoraSplashesTex "__OTR__objects/object_zo/gZoraSplashesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraSplashesTex[] = dgZoraSplashesTex; -#else -static const char gZoraSplashesTex[] __attribute__((aligned (2))) = dgZoraSplashesTex; -#endif - -#define dgZoraSplashesMaterialDL "__OTR__objects/object_zo/gZoraSplashesMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraSplashesMaterialDL[] = dgZoraSplashesMaterialDL; -#else -static const char gZoraSplashesMaterialDL[] __attribute__((aligned (2))) = dgZoraSplashesMaterialDL; -#endif - -#define dgZoraSplashesModelDL "__OTR__objects/object_zo/gZoraSplashesModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraSplashesModelDL[] = dgZoraSplashesModelDL; -#else -static const char gZoraSplashesModelDL[] __attribute__((aligned (2))) = dgZoraSplashesModelDL; -#endif - -#define dgZoraRipplesMaterialDL "__OTR__objects/object_zo/gZoraRipplesMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraRipplesMaterialDL[] = dgZoraRipplesMaterialDL; -#else -static const char gZoraRipplesMaterialDL[] __attribute__((aligned (2))) = dgZoraRipplesMaterialDL; -#endif - -#define dgZoraRipplesModelDL "__OTR__objects/object_zo/gZoraRipplesModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraRipplesModelDL[] = dgZoraRipplesModelDL; -#else -static const char gZoraRipplesModelDL[] __attribute__((aligned (2))) = dgZoraRipplesModelDL; -#endif - +#include "align_asset_macro.h" + +#define dgZoraSkel "__OTR__objects/object_zo/gZoraSkel" +static const ALIGN_ASSET(2) char gZoraSkel[] = dgZoraSkel; + +#define dgZoraPelvisDL "__OTR__objects/object_zo/gZoraPelvisDL" +static const ALIGN_ASSET(2) char gZoraPelvisDL[] = dgZoraPelvisDL; + +#define dgZoraLeftThighsDL "__OTR__objects/object_zo/gZoraLeftThighsDL" +static const ALIGN_ASSET(2) char gZoraLeftThighsDL[] = dgZoraLeftThighsDL; + +#define dgZoraLeftShinDL "__OTR__objects/object_zo/gZoraLeftShinDL" +static const ALIGN_ASSET(2) char gZoraLeftShinDL[] = dgZoraLeftShinDL; + +#define dgZoraLeftFootDL "__OTR__objects/object_zo/gZoraLeftFootDL" +static const ALIGN_ASSET(2) char gZoraLeftFootDL[] = dgZoraLeftFootDL; + +#define dgZoraRightThighsDL "__OTR__objects/object_zo/gZoraRightThighsDL" +static const ALIGN_ASSET(2) char gZoraRightThighsDL[] = dgZoraRightThighsDL; + +#define dgZoraRightShinDL "__OTR__objects/object_zo/gZoraRightShinDL" +static const ALIGN_ASSET(2) char gZoraRightShinDL[] = dgZoraRightShinDL; + +#define dgZoraRightFootDL "__OTR__objects/object_zo/gZoraRightFootDL" +static const ALIGN_ASSET(2) char gZoraRightFootDL[] = dgZoraRightFootDL; + +#define dgZoraTorsoDL "__OTR__objects/object_zo/gZoraTorsoDL" +static const ALIGN_ASSET(2) char gZoraTorsoDL[] = dgZoraTorsoDL; + +#define dgZoraLeftArmDL "__OTR__objects/object_zo/gZoraLeftArmDL" +static const ALIGN_ASSET(2) char gZoraLeftArmDL[] = dgZoraLeftArmDL; + +#define dgZoraLeftForearmDL "__OTR__objects/object_zo/gZoraLeftForearmDL" +static const ALIGN_ASSET(2) char gZoraLeftForearmDL[] = dgZoraLeftForearmDL; + +#define dgZoraLeftHandDL "__OTR__objects/object_zo/gZoraLeftHandDL" +static const ALIGN_ASSET(2) char gZoraLeftHandDL[] = dgZoraLeftHandDL; + +#define dgZoraRightArmDL "__OTR__objects/object_zo/gZoraRightArmDL" +static const ALIGN_ASSET(2) char gZoraRightArmDL[] = dgZoraRightArmDL; + +#define dgZoraRightForearmDL "__OTR__objects/object_zo/gZoraRightForearmDL" +static const ALIGN_ASSET(2) char gZoraRightForearmDL[] = dgZoraRightForearmDL; + +#define dgZoraRightHandDL "__OTR__objects/object_zo/gZoraRightHandDL" +static const ALIGN_ASSET(2) char gZoraRightHandDL[] = dgZoraRightHandDL; + +#define dgZoraHeadDL "__OTR__objects/object_zo/gZoraHeadDL" +static const ALIGN_ASSET(2) char gZoraHeadDL[] = dgZoraHeadDL; + +#define dgZoraHeadTail1DL "__OTR__objects/object_zo/gZoraHeadTail1DL" +static const ALIGN_ASSET(2) char gZoraHeadTail1DL[] = dgZoraHeadTail1DL; + +#define dgZoraHeadTail2DL "__OTR__objects/object_zo/gZoraHeadTail2DL" +static const ALIGN_ASSET(2) char gZoraHeadTail2DL[] = dgZoraHeadTail2DL; + +#define dgZoraHeadTail3DL "__OTR__objects/object_zo/gZoraHeadTail3DL" +static const ALIGN_ASSET(2) char gZoraHeadTail3DL[] = dgZoraHeadTail3DL; + +#define dgZoraHeadTailFinDL "__OTR__objects/object_zo/gZoraHeadTailFinDL" +static const ALIGN_ASSET(2) char gZoraHeadTailFinDL[] = dgZoraHeadTailFinDL; + +#define dgZoraIdleAnim "__OTR__objects/object_zo/gZoraIdleAnim" +static const ALIGN_ASSET(2) char gZoraIdleAnim[] = dgZoraIdleAnim; + +#define dgZoraSurfaceAnim "__OTR__objects/object_zo/gZoraSurfaceAnim" +static const ALIGN_ASSET(2) char gZoraSurfaceAnim[] = dgZoraSurfaceAnim; + +#define dgZoraThrowRupeesAnim "__OTR__objects/object_zo/gZoraThrowRupeesAnim" +static const ALIGN_ASSET(2) char gZoraThrowRupeesAnim[] = dgZoraThrowRupeesAnim; + +#define dgZoraHandsOnHipsTappingFootAnim "__OTR__objects/object_zo/gZoraHandsOnHipsTappingFootAnim" +static const ALIGN_ASSET(2) char gZoraHandsOnHipsTappingFootAnim[] = dgZoraHandsOnHipsTappingFootAnim; + +#define dgZoraOpenArmsAnim "__OTR__objects/object_zo/gZoraOpenArmsAnim" +static const ALIGN_ASSET(2) char gZoraOpenArmsAnim[] = dgZoraOpenArmsAnim; + +#define dgZoraEyeOpenTex "__OTR__objects/object_zo/gZoraEyeOpenTex" +static const ALIGN_ASSET(2) char gZoraEyeOpenTex[] = dgZoraEyeOpenTex; + +#define dgZoraEyeHalfTex "__OTR__objects/object_zo/gZoraEyeHalfTex" +static const ALIGN_ASSET(2) char gZoraEyeHalfTex[] = dgZoraEyeHalfTex; + +#define dgZoraEyeClosedTex "__OTR__objects/object_zo/gZoraEyeClosedTex" +static const ALIGN_ASSET(2) char gZoraEyeClosedTex[] = dgZoraEyeClosedTex; + +#define dgZoraMouthTex "__OTR__objects/object_zo/gZoraMouthTex" +static const ALIGN_ASSET(2) char gZoraMouthTex[] = dgZoraMouthTex; + +#define dgZoraHeadTailTex "__OTR__objects/object_zo/gZoraHeadTailTex" +static const ALIGN_ASSET(2) char gZoraHeadTailTex[] = dgZoraHeadTailTex; + +#define dgZoraHandTex "__OTR__objects/object_zo/gZoraHandTex" +static const ALIGN_ASSET(2) char gZoraHandTex[] = dgZoraHandTex; + +#define dgZoraKneeTex "__OTR__objects/object_zo/gZoraKneeTex" +static const ALIGN_ASSET(2) char gZoraKneeTex[] = dgZoraKneeTex; + +#define dgZoraHeadTex "__OTR__objects/object_zo/gZoraHeadTex" +static const ALIGN_ASSET(2) char gZoraHeadTex[] = dgZoraHeadTex; + +#define dgZoraFinTex "__OTR__objects/object_zo/gZoraFinTex" +static const ALIGN_ASSET(2) char gZoraFinTex[] = dgZoraFinTex; + +#define dgZoraTLUT "__OTR__objects/object_zo/gZoraTLUT" +static const ALIGN_ASSET(2) char gZoraTLUT[] = dgZoraTLUT; + +#define dgZoraBubblesTex "__OTR__objects/object_zo/gZoraBubblesTex" +static const ALIGN_ASSET(2) char gZoraBubblesTex[] = dgZoraBubblesTex; + +#define dgZoraBubblesMaterialDL "__OTR__objects/object_zo/gZoraBubblesMaterialDL" +static const ALIGN_ASSET(2) char gZoraBubblesMaterialDL[] = dgZoraBubblesMaterialDL; + +#define dgZoraBubblesModelDL "__OTR__objects/object_zo/gZoraBubblesModelDL" +static const ALIGN_ASSET(2) char gZoraBubblesModelDL[] = dgZoraBubblesModelDL; + +#define dgZoraSplashesTex "__OTR__objects/object_zo/gZoraSplashesTex" +static const ALIGN_ASSET(2) char gZoraSplashesTex[] = dgZoraSplashesTex; + +#define dgZoraSplashesMaterialDL "__OTR__objects/object_zo/gZoraSplashesMaterialDL" +static const ALIGN_ASSET(2) char gZoraSplashesMaterialDL[] = dgZoraSplashesMaterialDL; + +#define dgZoraSplashesModelDL "__OTR__objects/object_zo/gZoraSplashesModelDL" +static const ALIGN_ASSET(2) char gZoraSplashesModelDL[] = dgZoraSplashesModelDL; + +#define dgZoraRipplesMaterialDL "__OTR__objects/object_zo/gZoraRipplesMaterialDL" +static const ALIGN_ASSET(2) char gZoraRipplesMaterialDL[] = dgZoraRipplesMaterialDL; + +#define dgZoraRipplesModelDL "__OTR__objects/object_zo/gZoraRipplesModelDL" +static const ALIGN_ASSET(2) char gZoraRipplesModelDL[] = dgZoraRipplesModelDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Arrow_Fire/ovl_Arrow_Fire.h b/soh/assets/overlays/ovl_Arrow_Fire/ovl_Arrow_Fire.h index ff647e803..28052c3ab 100644 --- a/soh/assets/overlays/ovl_Arrow_Fire/ovl_Arrow_Fire.h +++ b/soh/assets/overlays/ovl_Arrow_Fire/ovl_Arrow_Fire.h @@ -1,37 +1,18 @@ #pragma once -#define ds1Tex "__OTR__overlays/ovl_Arrow_Fire/s1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char s1Tex[] = ds1Tex; -#else -static const char s1Tex[] __attribute__((aligned (2))) = ds1Tex; -#endif - -#define ds2Tex "__OTR__overlays/ovl_Arrow_Fire/s2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char s2Tex[] = ds2Tex; -#else -static const char s2Tex[] __attribute__((aligned (2))) = ds2Tex; -#endif - -#define dsVtx "__OTR__overlays/ovl_Arrow_Fire/sVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sVtx[] = dsVtx; -#else -static const char sVtx[] __attribute__((aligned (2))) = dsVtx; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Fire/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsModelDL "__OTR__overlays/ovl_Arrow_Fire/sModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sModelDL[] = dsModelDL; -#else -static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL; -#endif - +#include "align_asset_macro.h" + +#define ds1Tex "__OTR__overlays/ovl_Arrow_Fire/s1Tex" +static const ALIGN_ASSET(2) char s1Tex[] = ds1Tex; + +#define ds2Tex "__OTR__overlays/ovl_Arrow_Fire/s2Tex" +static const ALIGN_ASSET(2) char s2Tex[] = ds2Tex; + +#define dsVtx "__OTR__overlays/ovl_Arrow_Fire/sVtx" +static const ALIGN_ASSET(2) char sVtx[] = dsVtx; + +#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Fire/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsModelDL "__OTR__overlays/ovl_Arrow_Fire/sModelDL" +static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Arrow_Ice/ovl_Arrow_Ice.h b/soh/assets/overlays/ovl_Arrow_Ice/ovl_Arrow_Ice.h index f158be364..a77b745d2 100644 --- a/soh/assets/overlays/ovl_Arrow_Ice/ovl_Arrow_Ice.h +++ b/soh/assets/overlays/ovl_Arrow_Ice/ovl_Arrow_Ice.h @@ -1,37 +1,18 @@ #pragma once -#define ds1Tex "__OTR__overlays/ovl_Arrow_Ice/s1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char s1Tex[] = ds1Tex; -#else -static const char s1Tex[] __attribute__((aligned (2))) = ds1Tex; -#endif - -#define ds2Tex "__OTR__overlays/ovl_Arrow_Ice/s2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char s2Tex[] = ds2Tex; -#else -static const char s2Tex[] __attribute__((aligned (2))) = ds2Tex; -#endif - -#define dsVtx "__OTR__overlays/ovl_Arrow_Ice/sVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sVtx[] = dsVtx; -#else -static const char sVtx[] __attribute__((aligned (2))) = dsVtx; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Ice/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsModelDL "__OTR__overlays/ovl_Arrow_Ice/sModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sModelDL[] = dsModelDL; -#else -static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL; -#endif - +#include "align_asset_macro.h" + +#define ds1Tex "__OTR__overlays/ovl_Arrow_Ice/s1Tex" +static const ALIGN_ASSET(2) char s1Tex[] = ds1Tex; + +#define ds2Tex "__OTR__overlays/ovl_Arrow_Ice/s2Tex" +static const ALIGN_ASSET(2) char s2Tex[] = ds2Tex; + +#define dsVtx "__OTR__overlays/ovl_Arrow_Ice/sVtx" +static const ALIGN_ASSET(2) char sVtx[] = dsVtx; + +#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Ice/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsModelDL "__OTR__overlays/ovl_Arrow_Ice/sModelDL" +static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Arrow_Light/ovl_Arrow_Light.h b/soh/assets/overlays/ovl_Arrow_Light/ovl_Arrow_Light.h index 74e0959c3..e77f5dc6d 100644 --- a/soh/assets/overlays/ovl_Arrow_Light/ovl_Arrow_Light.h +++ b/soh/assets/overlays/ovl_Arrow_Light/ovl_Arrow_Light.h @@ -1,37 +1,18 @@ #pragma once -#define ds1Tex "__OTR__overlays/ovl_Arrow_Light/s1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char s1Tex[] = ds1Tex; -#else -static const char s1Tex[] __attribute__((aligned (2))) = ds1Tex; -#endif - -#define ds2Tex "__OTR__overlays/ovl_Arrow_Light/s2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char s2Tex[] = ds2Tex; -#else -static const char s2Tex[] __attribute__((aligned (2))) = ds2Tex; -#endif - -#define dsVtx "__OTR__overlays/ovl_Arrow_Light/sVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sVtx[] = dsVtx; -#else -static const char sVtx[] __attribute__((aligned (2))) = dsVtx; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Light/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsModelDL "__OTR__overlays/ovl_Arrow_Light/sModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sModelDL[] = dsModelDL; -#else -static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL; -#endif - +#include "align_asset_macro.h" + +#define ds1Tex "__OTR__overlays/ovl_Arrow_Light/s1Tex" +static const ALIGN_ASSET(2) char s1Tex[] = ds1Tex; + +#define ds2Tex "__OTR__overlays/ovl_Arrow_Light/s2Tex" +static const ALIGN_ASSET(2) char s2Tex[] = ds2Tex; + +#define dsVtx "__OTR__overlays/ovl_Arrow_Light/sVtx" +static const ALIGN_ASSET(2) char sVtx[] = dsVtx; + +#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Light/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsModelDL "__OTR__overlays/ovl_Arrow_Light/sModelDL" +static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Bg_Ganon_Otyuka/ovl_Bg_Ganon_Otyuka.h b/soh/assets/overlays/ovl_Bg_Ganon_Otyuka/ovl_Bg_Ganon_Otyuka.h index f43b4d357..7e9568ad3 100644 --- a/soh/assets/overlays/ovl_Bg_Ganon_Otyuka/ovl_Bg_Ganon_Otyuka.h +++ b/soh/assets/overlays/ovl_Bg_Ganon_Otyuka/ovl_Bg_Ganon_Otyuka.h @@ -1,86 +1,39 @@ #pragma once -#define dsPlatformTex "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlatformTex[] = dsPlatformTex; -#else -static const char sPlatformTex[] __attribute__((aligned (2))) = dsPlatformTex; -#endif - -#define dsPlatformTopVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTopVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlatformTopVtx[] = dsPlatformTopVtx; -#else -static const char sPlatformTopVtx[] __attribute__((aligned (2))) = dsPlatformTopVtx; -#endif - -#define dsPlatformMaterialDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlatformMaterialDL[] = dsPlatformMaterialDL; -#else -static const char sPlatformMaterialDL[] __attribute__((aligned (2))) = dsPlatformMaterialDL; -#endif - -#define dsPlatformTopDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTopDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlatformTopDL[] = dsPlatformTopDL; -#else -static const char sPlatformTopDL[] __attribute__((aligned (2))) = dsPlatformTopDL; -#endif - -#define dsPlatformBottomVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformBottomVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlatformBottomVtx[] = dsPlatformBottomVtx; -#else -static const char sPlatformBottomVtx[] __attribute__((aligned (2))) = dsPlatformBottomVtx; -#endif - -#define dsPlatformBottomDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformBottomDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlatformBottomDL[] = dsPlatformBottomDL; -#else -static const char sPlatformBottomDL[] __attribute__((aligned (2))) = dsPlatformBottomDL; -#endif - -#define dsPlatformSideVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformSideVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlatformSideVtx[] = dsPlatformSideVtx; -#else -static const char sPlatformSideVtx[] __attribute__((aligned (2))) = dsPlatformSideVtx; -#endif - -#define dsPlatformSideDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformSideDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlatformSideDL[] = dsPlatformSideDL; -#else -static const char sPlatformSideDL[] __attribute__((aligned (2))) = dsPlatformSideDL; -#endif - -#define dsFlashTex "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sFlashTex[] = dsFlashTex; -#else -static const char sFlashTex[] __attribute__((aligned (2))) = dsFlashTex; -#endif - -#define dsFlashVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sFlashVtx[] = dsFlashVtx; -#else -static const char sFlashVtx[] __attribute__((aligned (2))) = dsFlashVtx; -#endif - -#define dsFlashDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sFlashDL[] = dsFlashDL; -#else -static const char sFlashDL[] __attribute__((aligned (2))) = dsFlashDL; -#endif - -#define dsCol "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sCol" -#ifdef _WIN32 -static const __declspec(align(2)) char sCol[] = dsCol; -#else -static const char sCol[] __attribute__((aligned (2))) = dsCol; -#endif - +#include "align_asset_macro.h" + +#define dsPlatformTex "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTex" +static const ALIGN_ASSET(2) char sPlatformTex[] = dsPlatformTex; + +#define dsPlatformTopVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTopVtx" +static const ALIGN_ASSET(2) char sPlatformTopVtx[] = dsPlatformTopVtx; + +#define dsPlatformMaterialDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformMaterialDL" +static const ALIGN_ASSET(2) char sPlatformMaterialDL[] = dsPlatformMaterialDL; + +#define dsPlatformTopDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTopDL" +static const ALIGN_ASSET(2) char sPlatformTopDL[] = dsPlatformTopDL; + +#define dsPlatformBottomVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformBottomVtx" +static const ALIGN_ASSET(2) char sPlatformBottomVtx[] = dsPlatformBottomVtx; + +#define dsPlatformBottomDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformBottomDL" +static const ALIGN_ASSET(2) char sPlatformBottomDL[] = dsPlatformBottomDL; + +#define dsPlatformSideVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformSideVtx" +static const ALIGN_ASSET(2) char sPlatformSideVtx[] = dsPlatformSideVtx; + +#define dsPlatformSideDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformSideDL" +static const ALIGN_ASSET(2) char sPlatformSideDL[] = dsPlatformSideDL; + +#define dsFlashTex "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashTex" +static const ALIGN_ASSET(2) char sFlashTex[] = dsFlashTex; + +#define dsFlashVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashVtx" +static const ALIGN_ASSET(2) char sFlashVtx[] = dsFlashVtx; + +#define dsFlashDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashDL" +static const ALIGN_ASSET(2) char sFlashDL[] = dsFlashDL; + +#define dsCol "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sCol" +static const ALIGN_ASSET(2) char sCol[] = dsCol; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Bg_Jya_Cobra/ovl_Bg_Jya_Cobra.h b/soh/assets/overlays/ovl_Bg_Jya_Cobra/ovl_Bg_Jya_Cobra.h index be7564294..3786470c5 100644 --- a/soh/assets/overlays/ovl_Bg_Jya_Cobra/ovl_Bg_Jya_Cobra.h +++ b/soh/assets/overlays/ovl_Bg_Jya_Cobra/ovl_Bg_Jya_Cobra.h @@ -1,16 +1,9 @@ #pragma once -#define dsShadowVtx "__OTR__overlays/ovl_Bg_Jya_Cobra/sShadowVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sShadowVtx[] = dsShadowVtx; -#else -static const char sShadowVtx[] __attribute__((aligned (2))) = dsShadowVtx; -#endif - -#define dsShadowDL "__OTR__overlays/ovl_Bg_Jya_Cobra/sShadowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sShadowDL[] = dsShadowDL; -#else -static const char sShadowDL[] __attribute__((aligned (2))) = dsShadowDL; -#endif - +#include "align_asset_macro.h" + +#define dsShadowVtx "__OTR__overlays/ovl_Bg_Jya_Cobra/sShadowVtx" +static const ALIGN_ASSET(2) char sShadowVtx[] = dsShadowVtx; + +#define dsShadowDL "__OTR__overlays/ovl_Bg_Jya_Cobra/sShadowDL" +static const ALIGN_ASSET(2) char sShadowDL[] = dsShadowDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Boss_Dodongo/ovl_Boss_Dodongo.h b/soh/assets/overlays/ovl_Boss_Dodongo/ovl_Boss_Dodongo.h index 856be0e89..c6a2e2c1a 100644 --- a/soh/assets/overlays/ovl_Boss_Dodongo/ovl_Boss_Dodongo.h +++ b/soh/assets/overlays/ovl_Boss_Dodongo/ovl_Boss_Dodongo.h @@ -1,16 +1,9 @@ #pragma once -#define dsLavaFloorLavaTex "__OTR__overlays/ovl_Boss_Dodongo/sLavaFloorLavaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sLavaFloorLavaTex[] = dsLavaFloorLavaTex; -#else -static const char sLavaFloorLavaTex[] __attribute__((aligned (2))) = dsLavaFloorLavaTex; -#endif - -#define dsLavaFloorRockTex "__OTR__overlays/ovl_Boss_Dodongo/sLavaFloorRockTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sLavaFloorRockTex[] = dsLavaFloorRockTex; -#else -static const char sLavaFloorRockTex[] __attribute__((aligned (2))) = dsLavaFloorRockTex; -#endif - +#include "align_asset_macro.h" + +#define dsLavaFloorLavaTex "__OTR__overlays/ovl_Boss_Dodongo/sLavaFloorLavaTex" +static const ALIGN_ASSET(2) char sLavaFloorLavaTex[] = dsLavaFloorLavaTex; + +#define dsLavaFloorRockTex "__OTR__overlays/ovl_Boss_Dodongo/sLavaFloorRockTex" +static const ALIGN_ASSET(2) char sLavaFloorRockTex[] = dsLavaFloorRockTex; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Boss_Ganon/ovl_Boss_Ganon.h b/soh/assets/overlays/ovl_Boss_Ganon/ovl_Boss_Ganon.h index 0f7785c9c..15eae2546 100644 --- a/soh/assets/overlays/ovl_Boss_Ganon/ovl_Boss_Ganon.h +++ b/soh/assets/overlays/ovl_Boss_Ganon/ovl_Boss_Ganon.h @@ -1,429 +1,186 @@ #pragma once -#define dgGanondorfLightning1Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning1Tex[] = dgGanondorfLightning1Tex; -#else -static const char gGanondorfLightning1Tex[] __attribute__((aligned (2))) = dgGanondorfLightning1Tex; -#endif - -#define dgGanondorfLightning2Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning2Tex[] = dgGanondorfLightning2Tex; -#else -static const char gGanondorfLightning2Tex[] __attribute__((aligned (2))) = dgGanondorfLightning2Tex; -#endif - -#define dgGanondorfLightning3Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning3Tex[] = dgGanondorfLightning3Tex; -#else -static const char gGanondorfLightning3Tex[] __attribute__((aligned (2))) = dgGanondorfLightning3Tex; -#endif - -#define dgGanondorfLightning4Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning4Tex[] = dgGanondorfLightning4Tex; -#else -static const char gGanondorfLightning4Tex[] __attribute__((aligned (2))) = dgGanondorfLightning4Tex; -#endif - -#define dgGanondorfLightning5Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning5Tex[] = dgGanondorfLightning5Tex; -#else -static const char gGanondorfLightning5Tex[] __attribute__((aligned (2))) = dgGanondorfLightning5Tex; -#endif - -#define dgGanondorfLightning6Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning6Tex[] = dgGanondorfLightning6Tex; -#else -static const char gGanondorfLightning6Tex[] __attribute__((aligned (2))) = dgGanondorfLightning6Tex; -#endif - -#define dgGanondorfLightning7Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning7Tex[] = dgGanondorfLightning7Tex; -#else -static const char gGanondorfLightning7Tex[] __attribute__((aligned (2))) = dgGanondorfLightning7Tex; -#endif - -#define dgGanondorfLightning8Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning8Tex[] = dgGanondorfLightning8Tex; -#else -static const char gGanondorfLightning8Tex[] __attribute__((aligned (2))) = dgGanondorfLightning8Tex; -#endif - -#define dgGanondorfLightning9Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning9Tex[] = dgGanondorfLightning9Tex; -#else -static const char gGanondorfLightning9Tex[] __attribute__((aligned (2))) = dgGanondorfLightning9Tex; -#endif - -#define dgGanondorfLightning10Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning10Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning10Tex[] = dgGanondorfLightning10Tex; -#else -static const char gGanondorfLightning10Tex[] __attribute__((aligned (2))) = dgGanondorfLightning10Tex; -#endif - -#define dgGanondorfLightning11Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning11Tex[] = dgGanondorfLightning11Tex; -#else -static const char gGanondorfLightning11Tex[] __attribute__((aligned (2))) = dgGanondorfLightning11Tex; -#endif - -#define dgGanondorfLightning12Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightning12Tex[] = dgGanondorfLightning12Tex; -#else -static const char gGanondorfLightning12Tex[] __attribute__((aligned (2))) = dgGanondorfLightning12Tex; -#endif - -#define dgGanondorfWindowShatterTemplateTex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShatterTemplateTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfWindowShatterTemplateTex[] = dgGanondorfWindowShatterTemplateTex; -#else -static const char gGanondorfWindowShatterTemplateTex[] __attribute__((aligned (2))) = dgGanondorfWindowShatterTemplateTex; -#endif - -#define dgGanondorfLightStreak1DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak1DL[] = dgGanondorfLightStreak1DL; -#else -static const char gGanondorfLightStreak1DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak1DL; -#endif - -#define dgGanondorfLightStreak2DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak2DL[] = dgGanondorfLightStreak2DL; -#else -static const char gGanondorfLightStreak2DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak2DL; -#endif - -#define dgGanondorfLightStreak3DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak3DL[] = dgGanondorfLightStreak3DL; -#else -static const char gGanondorfLightStreak3DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak3DL; -#endif - -#define dgGanondorfLightStreak4DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak4DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak4DL[] = dgGanondorfLightStreak4DL; -#else -static const char gGanondorfLightStreak4DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak4DL; -#endif - -#define dgGanondorfLightStreak5DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak5DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak5DL[] = dgGanondorfLightStreak5DL; -#else -static const char gGanondorfLightStreak5DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak5DL; -#endif - -#define dgGanondorfLightStreak6DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak6DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak6DL[] = dgGanondorfLightStreak6DL; -#else -static const char gGanondorfLightStreak6DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak6DL; -#endif - -#define dgGanondorfLightStreak7DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak7DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak7DL[] = dgGanondorfLightStreak7DL; -#else -static const char gGanondorfLightStreak7DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak7DL; -#endif - -#define dgGanondorfLightStreak8DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak8DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak8DL[] = dgGanondorfLightStreak8DL; -#else -static const char gGanondorfLightStreak8DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak8DL; -#endif - -#define dgGanondorfLightStreak9DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak9DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak9DL[] = dgGanondorfLightStreak9DL; -#else -static const char gGanondorfLightStreak9DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak9DL; -#endif - -#define dgGanondorfLightStreak10DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak10DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak10DL[] = dgGanondorfLightStreak10DL; -#else -static const char gGanondorfLightStreak10DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak10DL; -#endif - -#define dgGanondorfLightStreak11DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak11DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak11DL[] = dgGanondorfLightStreak11DL; -#else -static const char gGanondorfLightStreak11DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak11DL; -#endif - -#define dgGanondorfLightStreak12DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak12DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightStreak12DL[] = dgGanondorfLightStreak12DL; -#else -static const char gGanondorfLightStreak12DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak12DL; -#endif - -#define dgGanondorfShadowSetupDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShadowSetupDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfShadowSetupDL[] = dgGanondorfShadowSetupDL; -#else -static const char gGanondorfShadowSetupDL[] __attribute__((aligned (2))) = dgGanondorfShadowSetupDL; -#endif - -#define dgGanondorfShadowModelDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShadowModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfShadowModelDL[] = dgGanondorfShadowModelDL; -#else -static const char gGanondorfShadowModelDL[] __attribute__((aligned (2))) = dgGanondorfShadowModelDL; -#endif - -#define dgGanondorfTriforceDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfTriforceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfTriforceDL[] = dgGanondorfTriforceDL; -#else -static const char gGanondorfTriforceDL[] __attribute__((aligned (2))) = dgGanondorfTriforceDL; -#endif - -#define dgGanondorfWindowShardMaterialDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShardMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfWindowShardMaterialDL[] = dgGanondorfWindowShardMaterialDL; -#else -static const char gGanondorfWindowShardMaterialDL[] __attribute__((aligned (2))) = dgGanondorfWindowShardMaterialDL; -#endif - -#define dgGanondorfWindowShardModelDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShardModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfWindowShardModelDL[] = dgGanondorfWindowShardModelDL; -#else -static const char gGanondorfWindowShardModelDL[] __attribute__((aligned (2))) = dgGanondorfWindowShardModelDL; -#endif - -#define dgGanondorfLightBallMaterialDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightBallMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightBallMaterialDL[] = dgGanondorfLightBallMaterialDL; -#else -static const char gGanondorfLightBallMaterialDL[] __attribute__((aligned (2))) = dgGanondorfLightBallMaterialDL; -#endif - -#define dgGanondorfSquareDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfSquareDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfSquareDL[] = dgGanondorfSquareDL; -#else -static const char gGanondorfSquareDL[] __attribute__((aligned (2))) = dgGanondorfSquareDL; -#endif - -#define dgGanondorfLightningDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightningDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightningDL[] = dgGanondorfLightningDL; -#else -static const char gGanondorfLightningDL[] __attribute__((aligned (2))) = dgGanondorfLightningDL; -#endif - -#define dgGanondorfUnusedDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfUnusedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfUnusedDL[] = dgGanondorfUnusedDL; -#else -static const char gGanondorfUnusedDL[] __attribute__((aligned (2))) = dgGanondorfUnusedDL; -#endif - -#define dgGanondorfLightRayTriDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightRayTriDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightRayTriDL[] = dgGanondorfLightRayTriDL; -#else -static const char gGanondorfLightRayTriDL[] __attribute__((aligned (2))) = dgGanondorfLightRayTriDL; -#endif - -#define dgGanondorfLightFlecksDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightFlecksDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightFlecksDL[] = dgGanondorfLightFlecksDL; -#else -static const char gGanondorfLightFlecksDL[] __attribute__((aligned (2))) = dgGanondorfLightFlecksDL; -#endif - -#define dgGanondorfBigMagicBGCircleDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfBigMagicBGCircleDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfBigMagicBGCircleDL[] = dgGanondorfBigMagicBGCircleDL; -#else -static const char gGanondorfBigMagicBGCircleDL[] __attribute__((aligned (2))) = dgGanondorfBigMagicBGCircleDL; -#endif - -#define dgGanondorfDotDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfDotDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfDotDL[] = dgGanondorfDotDL; -#else -static const char gGanondorfDotDL[] __attribute__((aligned (2))) = dgGanondorfDotDL; -#endif - -#define dgGanondorfShockwaveDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockwaveDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfShockwaveDL[] = dgGanondorfShockwaveDL; -#else -static const char gGanondorfShockwaveDL[] __attribute__((aligned (2))) = dgGanondorfShockwaveDL; -#endif - -#define dgGanondorfImpactDarkDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfImpactDarkDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfImpactDarkDL[] = dgGanondorfImpactDarkDL; -#else -static const char gGanondorfImpactDarkDL[] __attribute__((aligned (2))) = dgGanondorfImpactDarkDL; -#endif - -#define dgGanondorfImpactLightDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfImpactLightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfImpactLightDL[] = dgGanondorfImpactLightDL; -#else -static const char gGanondorfImpactLightDL[] __attribute__((aligned (2))) = dgGanondorfImpactLightDL; -#endif - -#define dgGanondorfShockGlowDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockGlowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfShockGlowDL[] = dgGanondorfShockGlowDL; -#else -static const char gGanondorfShockGlowDL[] __attribute__((aligned (2))) = dgGanondorfShockGlowDL; -#endif - -#define dgGanondorfLightCoreDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightCoreDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfLightCoreDL[] = dgGanondorfLightCoreDL; -#else -static const char gGanondorfLightCoreDL[] __attribute__((aligned (2))) = dgGanondorfLightCoreDL; -#endif - -#define dgGanondorfShockDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfShockDL[] = dgGanondorfShockDL; -#else -static const char gGanondorfShockDL[] __attribute__((aligned (2))) = dgGanondorfShockDL; -#endif - -#define dgGanondorfVortexDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfVortexDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanondorfVortexDL[] = dgGanondorfVortexDL; -#else -static const char gGanondorfVortexDL[] __attribute__((aligned (2))) = dgGanondorfVortexDL; -#endif - -#define dovl_Boss_GanonTex_01EF90 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01EF90" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01EF90[] = dovl_Boss_GanonTex_01EF90; -#else -static const char ovl_Boss_GanonTex_01EF90[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01EF90; -#endif - -#define dovl_Boss_GanonTex_00E748 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_00E748" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_00E748[] = dovl_Boss_GanonTex_00E748; -#else -static const char ovl_Boss_GanonTex_00E748[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_00E748; -#endif - -#define dovl_Boss_GanonTex_00F848 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_00F848" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_00F848[] = dovl_Boss_GanonTex_00F848; -#else -static const char ovl_Boss_GanonTex_00F848[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_00F848; -#endif - -#define dovl_Boss_GanonTLUT_00F808 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTLUT_00F808" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTLUT_00F808[] = dovl_Boss_GanonTLUT_00F808; -#else -static const char ovl_Boss_GanonTLUT_00F808[] __attribute__((aligned (2))) = dovl_Boss_GanonTLUT_00F808; -#endif - -#define dovl_Boss_GanonTex_010538 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_010538" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_010538[] = dovl_Boss_GanonTex_010538; -#else -static const char ovl_Boss_GanonTex_010538[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_010538; -#endif - -#define dovl_Boss_GanonTex_01B7B0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01B7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01B7B0[] = dovl_Boss_GanonTex_01B7B0; -#else -static const char ovl_Boss_GanonTex_01B7B0[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01B7B0; -#endif - -#define dovl_Boss_GanonTex_01A7B0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01A7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01A7B0[] = dovl_Boss_GanonTex_01A7B0; -#else -static const char ovl_Boss_GanonTex_01A7B0[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01A7B0; -#endif - -#define dovl_Boss_GanonTex_01AFB0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01AFB0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01AFB0[] = dovl_Boss_GanonTex_01AFB0; -#else -static const char ovl_Boss_GanonTex_01AFB0[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01AFB0; -#endif - -#define dovl_Boss_GanonTex_01C420 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01C420" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01C420[] = dovl_Boss_GanonTex_01C420; -#else -static const char ovl_Boss_GanonTex_01C420[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01C420; -#endif - -#define dovl_Boss_GanonTex_01CEB8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01CEB8[] = dovl_Boss_GanonTex_01CEB8; -#else -static const char ovl_Boss_GanonTex_01CEB8[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01CEB8; -#endif - -#define dovl_Boss_GanonTex_01D6B8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01D6B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01D6B8[] = dovl_Boss_GanonTex_01D6B8; -#else -static const char ovl_Boss_GanonTex_01D6B8[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01D6B8; -#endif - -#define dovl_Boss_GanonTex_01DE88 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01DE88" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01DE88[] = dovl_Boss_GanonTex_01DE88; -#else -static const char ovl_Boss_GanonTex_01DE88[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01DE88; -#endif - -#define dovl_Boss_GanonTex_01E688 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01E688" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01E688[] = dovl_Boss_GanonTex_01E688; -#else -static const char ovl_Boss_GanonTex_01E688[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01E688; -#endif - -#define dovl_Boss_GanonTex_01FFF8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01FFF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_01FFF8[] = dovl_Boss_GanonTex_01FFF8; -#else -static const char ovl_Boss_GanonTex_01FFF8[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01FFF8; -#endif - -#define dovl_Boss_GanonTex_020370 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_020370" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_020370[] = dovl_Boss_GanonTex_020370; -#else -static const char ovl_Boss_GanonTex_020370[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_020370; -#endif - -#define dovl_Boss_GanonTex_020770 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_020770" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_GanonTex_020770[] = dovl_Boss_GanonTex_020770; -#else -static const char ovl_Boss_GanonTex_020770[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_020770; -#endif - +#include "align_asset_macro.h" + +#define dgGanondorfLightning1Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning1Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning1Tex[] = dgGanondorfLightning1Tex; + +#define dgGanondorfLightning2Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning2Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning2Tex[] = dgGanondorfLightning2Tex; + +#define dgGanondorfLightning3Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning3Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning3Tex[] = dgGanondorfLightning3Tex; + +#define dgGanondorfLightning4Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning4Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning4Tex[] = dgGanondorfLightning4Tex; + +#define dgGanondorfLightning5Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning5Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning5Tex[] = dgGanondorfLightning5Tex; + +#define dgGanondorfLightning6Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning6Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning6Tex[] = dgGanondorfLightning6Tex; + +#define dgGanondorfLightning7Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning7Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning7Tex[] = dgGanondorfLightning7Tex; + +#define dgGanondorfLightning8Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning8Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning8Tex[] = dgGanondorfLightning8Tex; + +#define dgGanondorfLightning9Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning9Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning9Tex[] = dgGanondorfLightning9Tex; + +#define dgGanondorfLightning10Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning10Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning10Tex[] = dgGanondorfLightning10Tex; + +#define dgGanondorfLightning11Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning11Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning11Tex[] = dgGanondorfLightning11Tex; + +#define dgGanondorfLightning12Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning12Tex" +static const ALIGN_ASSET(2) char gGanondorfLightning12Tex[] = dgGanondorfLightning12Tex; + +#define dgGanondorfWindowShatterTemplateTex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShatterTemplateTex" +static const ALIGN_ASSET(2) char gGanondorfWindowShatterTemplateTex[] = dgGanondorfWindowShatterTemplateTex; + +#define dgGanondorfLightStreak1DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak1DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak1DL[] = dgGanondorfLightStreak1DL; + +#define dgGanondorfLightStreak2DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak2DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak2DL[] = dgGanondorfLightStreak2DL; + +#define dgGanondorfLightStreak3DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak3DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak3DL[] = dgGanondorfLightStreak3DL; + +#define dgGanondorfLightStreak4DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak4DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak4DL[] = dgGanondorfLightStreak4DL; + +#define dgGanondorfLightStreak5DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak5DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak5DL[] = dgGanondorfLightStreak5DL; + +#define dgGanondorfLightStreak6DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak6DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak6DL[] = dgGanondorfLightStreak6DL; + +#define dgGanondorfLightStreak7DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak7DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak7DL[] = dgGanondorfLightStreak7DL; + +#define dgGanondorfLightStreak8DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak8DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak8DL[] = dgGanondorfLightStreak8DL; + +#define dgGanondorfLightStreak9DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak9DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak9DL[] = dgGanondorfLightStreak9DL; + +#define dgGanondorfLightStreak10DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak10DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak10DL[] = dgGanondorfLightStreak10DL; + +#define dgGanondorfLightStreak11DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak11DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak11DL[] = dgGanondorfLightStreak11DL; + +#define dgGanondorfLightStreak12DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak12DL" +static const ALIGN_ASSET(2) char gGanondorfLightStreak12DL[] = dgGanondorfLightStreak12DL; + +#define dgGanondorfShadowSetupDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShadowSetupDL" +static const ALIGN_ASSET(2) char gGanondorfShadowSetupDL[] = dgGanondorfShadowSetupDL; + +#define dgGanondorfShadowModelDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShadowModelDL" +static const ALIGN_ASSET(2) char gGanondorfShadowModelDL[] = dgGanondorfShadowModelDL; + +#define dgGanondorfTriforceDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfTriforceDL" +static const ALIGN_ASSET(2) char gGanondorfTriforceDL[] = dgGanondorfTriforceDL; + +#define dgGanondorfWindowShardMaterialDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShardMaterialDL" +static const ALIGN_ASSET(2) char gGanondorfWindowShardMaterialDL[] = dgGanondorfWindowShardMaterialDL; + +#define dgGanondorfWindowShardModelDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShardModelDL" +static const ALIGN_ASSET(2) char gGanondorfWindowShardModelDL[] = dgGanondorfWindowShardModelDL; + +#define dgGanondorfLightBallMaterialDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightBallMaterialDL" +static const ALIGN_ASSET(2) char gGanondorfLightBallMaterialDL[] = dgGanondorfLightBallMaterialDL; + +#define dgGanondorfSquareDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfSquareDL" +static const ALIGN_ASSET(2) char gGanondorfSquareDL[] = dgGanondorfSquareDL; + +#define dgGanondorfLightningDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightningDL" +static const ALIGN_ASSET(2) char gGanondorfLightningDL[] = dgGanondorfLightningDL; + +#define dgGanondorfUnusedDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfUnusedDL" +static const ALIGN_ASSET(2) char gGanondorfUnusedDL[] = dgGanondorfUnusedDL; + +#define dgGanondorfLightRayTriDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightRayTriDL" +static const ALIGN_ASSET(2) char gGanondorfLightRayTriDL[] = dgGanondorfLightRayTriDL; + +#define dgGanondorfLightFlecksDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightFlecksDL" +static const ALIGN_ASSET(2) char gGanondorfLightFlecksDL[] = dgGanondorfLightFlecksDL; + +#define dgGanondorfBigMagicBGCircleDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfBigMagicBGCircleDL" +static const ALIGN_ASSET(2) char gGanondorfBigMagicBGCircleDL[] = dgGanondorfBigMagicBGCircleDL; + +#define dgGanondorfDotDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfDotDL" +static const ALIGN_ASSET(2) char gGanondorfDotDL[] = dgGanondorfDotDL; + +#define dgGanondorfShockwaveDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockwaveDL" +static const ALIGN_ASSET(2) char gGanondorfShockwaveDL[] = dgGanondorfShockwaveDL; + +#define dgGanondorfImpactDarkDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfImpactDarkDL" +static const ALIGN_ASSET(2) char gGanondorfImpactDarkDL[] = dgGanondorfImpactDarkDL; + +#define dgGanondorfImpactLightDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfImpactLightDL" +static const ALIGN_ASSET(2) char gGanondorfImpactLightDL[] = dgGanondorfImpactLightDL; + +#define dgGanondorfShockGlowDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockGlowDL" +static const ALIGN_ASSET(2) char gGanondorfShockGlowDL[] = dgGanondorfShockGlowDL; + +#define dgGanondorfLightCoreDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightCoreDL" +static const ALIGN_ASSET(2) char gGanondorfLightCoreDL[] = dgGanondorfLightCoreDL; + +#define dgGanondorfShockDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockDL" +static const ALIGN_ASSET(2) char gGanondorfShockDL[] = dgGanondorfShockDL; + +#define dgGanondorfVortexDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfVortexDL" +static const ALIGN_ASSET(2) char gGanondorfVortexDL[] = dgGanondorfVortexDL; + +#define dovl_Boss_GanonTex_01EF90 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01EF90" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01EF90[] = dovl_Boss_GanonTex_01EF90; + +#define dovl_Boss_GanonTex_00E748 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_00E748" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_00E748[] = dovl_Boss_GanonTex_00E748; + +#define dovl_Boss_GanonTex_00F848 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_00F848" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_00F848[] = dovl_Boss_GanonTex_00F848; + +#define dovl_Boss_GanonTLUT_00F808 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTLUT_00F808" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTLUT_00F808[] = dovl_Boss_GanonTLUT_00F808; + +#define dovl_Boss_GanonTex_010538 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_010538" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_010538[] = dovl_Boss_GanonTex_010538; + +#define dovl_Boss_GanonTex_01B7B0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01B7B0" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01B7B0[] = dovl_Boss_GanonTex_01B7B0; + +#define dovl_Boss_GanonTex_01A7B0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01A7B0" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01A7B0[] = dovl_Boss_GanonTex_01A7B0; + +#define dovl_Boss_GanonTex_01AFB0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01AFB0" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01AFB0[] = dovl_Boss_GanonTex_01AFB0; + +#define dovl_Boss_GanonTex_01C420 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01C420" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01C420[] = dovl_Boss_GanonTex_01C420; + +#define dovl_Boss_GanonTex_01CEB8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01CEB8" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01CEB8[] = dovl_Boss_GanonTex_01CEB8; + +#define dovl_Boss_GanonTex_01D6B8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01D6B8" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01D6B8[] = dovl_Boss_GanonTex_01D6B8; + +#define dovl_Boss_GanonTex_01DE88 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01DE88" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01DE88[] = dovl_Boss_GanonTex_01DE88; + +#define dovl_Boss_GanonTex_01E688 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01E688" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01E688[] = dovl_Boss_GanonTex_01E688; + +#define dovl_Boss_GanonTex_01FFF8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01FFF8" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01FFF8[] = dovl_Boss_GanonTex_01FFF8; + +#define dovl_Boss_GanonTex_020370 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_020370" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_020370[] = dovl_Boss_GanonTex_020370; + +#define dovl_Boss_GanonTex_020770 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_020770" +static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_020770[] = dovl_Boss_GanonTex_020770; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2.h b/soh/assets/overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2.h index 8e54c94b7..6d6e88602 100644 --- a/soh/assets/overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2.h +++ b/soh/assets/overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2.h @@ -1,268 +1,117 @@ #pragma once -#define dovl_Boss_Ganon2_Tex_00A2C8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00A2C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00A2C8[] = dovl_Boss_Ganon2_Tex_00A2C8; -#else -static const char ovl_Boss_Ganon2_Tex_00A2C8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00A2C8; -#endif - -#define dovl_Boss_Ganon2_Vtx_00B2C8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00B2C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00B2C8[] = dovl_Boss_Ganon2_Vtx_00B2C8; -#else -static const char ovl_Boss_Ganon2_Vtx_00B2C8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00B2C8; -#endif - -#define dovl_Boss_Ganon2_DL_00B308 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B308" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00B308[] = dovl_Boss_Ganon2_DL_00B308; -#else -static const char ovl_Boss_Ganon2_DL_00B308[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00B308; -#endif - -#define dovl_Boss_Ganon2_DL_00B378 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B378" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00B378[] = dovl_Boss_Ganon2_DL_00B378; -#else -static const char ovl_Boss_Ganon2_DL_00B378[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00B378; -#endif - -#define dovl_Boss_Ganon2_Vtx_00B390 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00B390" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00B390[] = dovl_Boss_Ganon2_Vtx_00B390; -#else -static const char ovl_Boss_Ganon2_Vtx_00B390[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00B390; -#endif - -#define dovl_Boss_Ganon2_DL_00B3D0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B3D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00B3D0[] = dovl_Boss_Ganon2_DL_00B3D0; -#else -static const char ovl_Boss_Ganon2_DL_00B3D0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00B3D0; -#endif - -#define dovl_Boss_Ganon2_DL_00B3F0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B3F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00B3F0[] = dovl_Boss_Ganon2_DL_00B3F0; -#else -static const char ovl_Boss_Ganon2_DL_00B3F0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00B3F0; -#endif - -#define dovl_Boss_Ganon2_Tex_00B420 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00B420" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00B420[] = dovl_Boss_Ganon2_Tex_00B420; -#else -static const char ovl_Boss_Ganon2_Tex_00B420[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00B420; -#endif - -#define dovl_Boss_Ganon2_Tex_00B820 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00B820" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00B820[] = dovl_Boss_Ganon2_Tex_00B820; -#else -static const char ovl_Boss_Ganon2_Tex_00B820[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00B820; -#endif - -#define dovl_Boss_Ganon2_Vtx_00BA20 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00BA20" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00BA20[] = dovl_Boss_Ganon2_Vtx_00BA20; -#else -static const char ovl_Boss_Ganon2_Vtx_00BA20[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00BA20; -#endif - -#define dovl_Boss_Ganon2_DL_00BB80 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00BB80" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00BB80[] = dovl_Boss_Ganon2_DL_00BB80; -#else -static const char ovl_Boss_Ganon2_DL_00BB80[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00BB80; -#endif - -#define dovl_Boss_Ganon2_Tex_00BC98 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00BC98" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00BC98[] = dovl_Boss_Ganon2_Tex_00BC98; -#else -static const char ovl_Boss_Ganon2_Tex_00BC98[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00BC98; -#endif - -#define dovl_Boss_Ganon2_Vtx_00CC98 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00CC98" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00CC98[] = dovl_Boss_Ganon2_Vtx_00CC98; -#else -static const char ovl_Boss_Ganon2_Vtx_00CC98[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00CC98; -#endif - -#define dovl_Boss_Ganon2_DL_00CCD8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00CCD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00CCD8[] = dovl_Boss_Ganon2_DL_00CCD8; -#else -static const char ovl_Boss_Ganon2_DL_00CCD8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00CCD8; -#endif - -#define dovl_Boss_Ganon2_Tex_00CD58 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00CD58" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00CD58[] = dovl_Boss_Ganon2_Tex_00CD58; -#else -static const char ovl_Boss_Ganon2_Tex_00CD58[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00CD58; -#endif - -#define dovl_Boss_Ganon2_Vtx_00D758 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00D758" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00D758[] = dovl_Boss_Ganon2_Vtx_00D758; -#else -static const char ovl_Boss_Ganon2_Vtx_00D758[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00D758; -#endif - -#define dovl_Boss_Ganon2_DL_00D798 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00D798" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00D798[] = dovl_Boss_Ganon2_DL_00D798; -#else -static const char ovl_Boss_Ganon2_DL_00D798[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00D798; -#endif - -#define dovl_Boss_Ganon2_Tex_00D820 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00D820" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00D820[] = dovl_Boss_Ganon2_Tex_00D820; -#else -static const char ovl_Boss_Ganon2_Tex_00D820[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00D820; -#endif - -#define dovl_Boss_Ganon2_Vtx_00E020 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00E020" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00E020[] = dovl_Boss_Ganon2_Vtx_00E020; -#else -static const char ovl_Boss_Ganon2_Vtx_00E020[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00E020; -#endif - -#define dovl_Boss_Ganon2_DL_00E1C0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00E1C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00E1C0[] = dovl_Boss_Ganon2_DL_00E1C0; -#else -static const char ovl_Boss_Ganon2_DL_00E1C0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00E1C0; -#endif - -#define dovl_Boss_Ganon2_Tex_00E2E0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00E2E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00E2E0[] = dovl_Boss_Ganon2_Tex_00E2E0; -#else -static const char ovl_Boss_Ganon2_Tex_00E2E0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00E2E0; -#endif - -#define dovl_Boss_Ganon2_Vtx_00EAE0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00EAE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00EAE0[] = dovl_Boss_Ganon2_Vtx_00EAE0; -#else -static const char ovl_Boss_Ganon2_Vtx_00EAE0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00EAE0; -#endif - -#define dovl_Boss_Ganon2_DL_00EC40 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00EC40" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00EC40[] = dovl_Boss_Ganon2_DL_00EC40; -#else -static const char ovl_Boss_Ganon2_DL_00EC40[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00EC40; -#endif - -#define dovl_Boss_Ganon2_Tex_00ED48 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00ED48" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00ED48[] = dovl_Boss_Ganon2_Tex_00ED48; -#else -static const char ovl_Boss_Ganon2_Tex_00ED48[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00ED48; -#endif - -#define dovl_Boss_Ganon2_Vtx_00F148 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00F148" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00F148[] = dovl_Boss_Ganon2_Vtx_00F148; -#else -static const char ovl_Boss_Ganon2_Vtx_00F148[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00F148; -#endif - -#define dovl_Boss_Ganon2_DL_00F188 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00F188" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00F188[] = dovl_Boss_Ganon2_DL_00F188; -#else -static const char ovl_Boss_Ganon2_DL_00F188[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00F188; -#endif - -#define dovl_Boss_Ganon2_Tex_00F208 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00F208" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00F208[] = dovl_Boss_Ganon2_Tex_00F208; -#else -static const char ovl_Boss_Ganon2_Tex_00F208[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00F208; -#endif - -#define dovl_Boss_Ganon2_Tex_00F408 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00F408" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00F408[] = dovl_Boss_Ganon2_Tex_00F408; -#else -static const char ovl_Boss_Ganon2_Tex_00F408[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00F408; -#endif - -#define dovl_Boss_Ganon2_Vtx_00FC08 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FC08" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FC08[] = dovl_Boss_Ganon2_Vtx_00FC08; -#else -static const char ovl_Boss_Ganon2_Vtx_00FC08[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FC08; -#endif - -#define dovl_Boss_Ganon2_Vtx_00FC38 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FC38" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FC38[] = dovl_Boss_Ganon2_Vtx_00FC38; -#else -static const char ovl_Boss_Ganon2_Vtx_00FC38[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FC38; -#endif - -#define dovl_Boss_Ganon2_Vtx_00FE38 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FE38" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FE38[] = dovl_Boss_Ganon2_Vtx_00FE38; -#else -static const char ovl_Boss_Ganon2_Vtx_00FE38[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FE38; -#endif - -#define dovl_Boss_Ganon2_Vtx_00FF28 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FF28" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FF28[] = dovl_Boss_Ganon2_Vtx_00FF28; -#else -static const char ovl_Boss_Ganon2_Vtx_00FF28[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FF28; -#endif - -#define dovl_Boss_Ganon2_Vtx_00FFD8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FFD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FFD8[] = dovl_Boss_Ganon2_Vtx_00FFD8; -#else -static const char ovl_Boss_Ganon2_Vtx_00FFD8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FFD8; -#endif - -#define dovl_Boss_Ganon2_Vtx_010038 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010038" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_010038[] = dovl_Boss_Ganon2_Vtx_010038; -#else -static const char ovl_Boss_Ganon2_Vtx_010038[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_010038; -#endif - -#define dovl_Boss_Ganon2_Vtx_0100F8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_0100F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_0100F8[] = dovl_Boss_Ganon2_Vtx_0100F8; -#else -static const char ovl_Boss_Ganon2_Vtx_0100F8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_0100F8; -#endif - -#define dovl_Boss_Ganon2_Vtx_010198 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010198" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_010198[] = dovl_Boss_Ganon2_Vtx_010198; -#else -static const char ovl_Boss_Ganon2_Vtx_010198[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_010198; -#endif - -#define dovl_Boss_Ganon2_Vtx_010298 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010298" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_010298[] = dovl_Boss_Ganon2_Vtx_010298; -#else -static const char ovl_Boss_Ganon2_Vtx_010298[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_010298; -#endif - -#define dovl_Boss_Ganon2_DL_0103A8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_0103A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_0103A8[] = dovl_Boss_Ganon2_DL_0103A8; -#else -static const char ovl_Boss_Ganon2_DL_0103A8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_0103A8; -#endif - +#include "align_asset_macro.h" + +#define dovl_Boss_Ganon2_Tex_00A2C8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00A2C8" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00A2C8[] = dovl_Boss_Ganon2_Tex_00A2C8; + +#define dovl_Boss_Ganon2_Vtx_00B2C8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00B2C8" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00B2C8[] = dovl_Boss_Ganon2_Vtx_00B2C8; + +#define dovl_Boss_Ganon2_DL_00B308 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B308" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00B308[] = dovl_Boss_Ganon2_DL_00B308; + +#define dovl_Boss_Ganon2_DL_00B378 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B378" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00B378[] = dovl_Boss_Ganon2_DL_00B378; + +#define dovl_Boss_Ganon2_Vtx_00B390 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00B390" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00B390[] = dovl_Boss_Ganon2_Vtx_00B390; + +#define dovl_Boss_Ganon2_DL_00B3D0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B3D0" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00B3D0[] = dovl_Boss_Ganon2_DL_00B3D0; + +#define dovl_Boss_Ganon2_DL_00B3F0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B3F0" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00B3F0[] = dovl_Boss_Ganon2_DL_00B3F0; + +#define dovl_Boss_Ganon2_Tex_00B420 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00B420" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00B420[] = dovl_Boss_Ganon2_Tex_00B420; + +#define dovl_Boss_Ganon2_Tex_00B820 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00B820" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00B820[] = dovl_Boss_Ganon2_Tex_00B820; + +#define dovl_Boss_Ganon2_Vtx_00BA20 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00BA20" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00BA20[] = dovl_Boss_Ganon2_Vtx_00BA20; + +#define dovl_Boss_Ganon2_DL_00BB80 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00BB80" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00BB80[] = dovl_Boss_Ganon2_DL_00BB80; + +#define dovl_Boss_Ganon2_Tex_00BC98 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00BC98" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00BC98[] = dovl_Boss_Ganon2_Tex_00BC98; + +#define dovl_Boss_Ganon2_Vtx_00CC98 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00CC98" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00CC98[] = dovl_Boss_Ganon2_Vtx_00CC98; + +#define dovl_Boss_Ganon2_DL_00CCD8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00CCD8" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00CCD8[] = dovl_Boss_Ganon2_DL_00CCD8; + +#define dovl_Boss_Ganon2_Tex_00CD58 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00CD58" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00CD58[] = dovl_Boss_Ganon2_Tex_00CD58; + +#define dovl_Boss_Ganon2_Vtx_00D758 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00D758" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00D758[] = dovl_Boss_Ganon2_Vtx_00D758; + +#define dovl_Boss_Ganon2_DL_00D798 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00D798" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00D798[] = dovl_Boss_Ganon2_DL_00D798; + +#define dovl_Boss_Ganon2_Tex_00D820 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00D820" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00D820[] = dovl_Boss_Ganon2_Tex_00D820; + +#define dovl_Boss_Ganon2_Vtx_00E020 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00E020" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00E020[] = dovl_Boss_Ganon2_Vtx_00E020; + +#define dovl_Boss_Ganon2_DL_00E1C0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00E1C0" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00E1C0[] = dovl_Boss_Ganon2_DL_00E1C0; + +#define dovl_Boss_Ganon2_Tex_00E2E0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00E2E0" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00E2E0[] = dovl_Boss_Ganon2_Tex_00E2E0; + +#define dovl_Boss_Ganon2_Vtx_00EAE0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00EAE0" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00EAE0[] = dovl_Boss_Ganon2_Vtx_00EAE0; + +#define dovl_Boss_Ganon2_DL_00EC40 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00EC40" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00EC40[] = dovl_Boss_Ganon2_DL_00EC40; + +#define dovl_Boss_Ganon2_Tex_00ED48 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00ED48" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00ED48[] = dovl_Boss_Ganon2_Tex_00ED48; + +#define dovl_Boss_Ganon2_Vtx_00F148 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00F148" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00F148[] = dovl_Boss_Ganon2_Vtx_00F148; + +#define dovl_Boss_Ganon2_DL_00F188 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00F188" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00F188[] = dovl_Boss_Ganon2_DL_00F188; + +#define dovl_Boss_Ganon2_Tex_00F208 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00F208" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00F208[] = dovl_Boss_Ganon2_Tex_00F208; + +#define dovl_Boss_Ganon2_Tex_00F408 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00F408" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00F408[] = dovl_Boss_Ganon2_Tex_00F408; + +#define dovl_Boss_Ganon2_Vtx_00FC08 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FC08" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FC08[] = dovl_Boss_Ganon2_Vtx_00FC08; + +#define dovl_Boss_Ganon2_Vtx_00FC38 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FC38" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FC38[] = dovl_Boss_Ganon2_Vtx_00FC38; + +#define dovl_Boss_Ganon2_Vtx_00FE38 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FE38" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FE38[] = dovl_Boss_Ganon2_Vtx_00FE38; + +#define dovl_Boss_Ganon2_Vtx_00FF28 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FF28" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FF28[] = dovl_Boss_Ganon2_Vtx_00FF28; + +#define dovl_Boss_Ganon2_Vtx_00FFD8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FFD8" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FFD8[] = dovl_Boss_Ganon2_Vtx_00FFD8; + +#define dovl_Boss_Ganon2_Vtx_010038 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010038" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_010038[] = dovl_Boss_Ganon2_Vtx_010038; + +#define dovl_Boss_Ganon2_Vtx_0100F8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_0100F8" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_0100F8[] = dovl_Boss_Ganon2_Vtx_0100F8; + +#define dovl_Boss_Ganon2_Vtx_010198 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010198" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_010198[] = dovl_Boss_Ganon2_Vtx_010198; + +#define dovl_Boss_Ganon2_Vtx_010298 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010298" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_010298[] = dovl_Boss_Ganon2_Vtx_010298; + +#define dovl_Boss_Ganon2_DL_0103A8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_0103A8" +static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_0103A8[] = dovl_Boss_Ganon2_DL_0103A8; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Boss_Sst/ovl_Boss_Sst.h b/soh/assets/overlays/ovl_Boss_Sst/ovl_Boss_Sst.h index d015e9d22..3bad7428a 100644 --- a/soh/assets/overlays/ovl_Boss_Sst/ovl_Boss_Sst.h +++ b/soh/assets/overlays/ovl_Boss_Sst/ovl_Boss_Sst.h @@ -1,44 +1,21 @@ #pragma once -#define dsBodyStaticDList "__OTR__overlays/ovl_Boss_Sst/sBodyStaticDList" -#ifdef _WIN32 -static const __declspec(align(2)) char sBodyStaticDList[] = dsBodyStaticDList; -#else -static const char sBodyStaticDList[] __attribute__((aligned (2))) = dsBodyStaticDList; -#endif - -#define dsHandTrailDList "__OTR__overlays/ovl_Boss_Sst/sHandTrailDList" -#ifdef _WIN32 -static const __declspec(align(2)) char sHandTrailDList[] = dsHandTrailDList; -#else -static const char sHandTrailDList[] __attribute__((aligned (2))) = dsHandTrailDList; -#endif - -#define dsIntroVanishDList "__OTR__overlays/ovl_Boss_Sst/sIntroVanishDList" -#ifdef _WIN32 -static const __declspec(align(2)) char sIntroVanishDList[] = dsIntroVanishDList; -#else -static const char sIntroVanishDList[] __attribute__((aligned (2))) = dsIntroVanishDList; -#endif - -#define dsShadowDList "__OTR__overlays/ovl_Boss_Sst/sShadowDList" -#ifdef _WIN32 -static const __declspec(align(2)) char sShadowDList[] = dsShadowDList; -#else -static const char sShadowDList[] __attribute__((aligned (2))) = dsShadowDList; -#endif - -#define dovl_Boss_SstTex_00A438 "__OTR__overlays/ovl_Boss_Sst/ovl_Boss_SstTex_00A438" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_SstTex_00A438[] = dovl_Boss_SstTex_00A438; -#else -static const char ovl_Boss_SstTex_00A438[] __attribute__((aligned (2))) = dovl_Boss_SstTex_00A438; -#endif - -#define dovl_Boss_SstTex_00A8F0 "__OTR__overlays/ovl_Boss_Sst/ovl_Boss_SstTex_00A8F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Boss_SstTex_00A8F0[] = dovl_Boss_SstTex_00A8F0; -#else -static const char ovl_Boss_SstTex_00A8F0[] __attribute__((aligned (2))) = dovl_Boss_SstTex_00A8F0; -#endif - +#include "align_asset_macro.h" + +#define dsBodyStaticDList "__OTR__overlays/ovl_Boss_Sst/sBodyStaticDList" +static const ALIGN_ASSET(2) char sBodyStaticDList[] = dsBodyStaticDList; + +#define dsHandTrailDList "__OTR__overlays/ovl_Boss_Sst/sHandTrailDList" +static const ALIGN_ASSET(2) char sHandTrailDList[] = dsHandTrailDList; + +#define dsIntroVanishDList "__OTR__overlays/ovl_Boss_Sst/sIntroVanishDList" +static const ALIGN_ASSET(2) char sIntroVanishDList[] = dsIntroVanishDList; + +#define dsShadowDList "__OTR__overlays/ovl_Boss_Sst/sShadowDList" +static const ALIGN_ASSET(2) char sShadowDList[] = dsShadowDList; + +#define dovl_Boss_SstTex_00A438 "__OTR__overlays/ovl_Boss_Sst/ovl_Boss_SstTex_00A438" +static const ALIGN_ASSET(2) char ovl_Boss_SstTex_00A438[] = dovl_Boss_SstTex_00A438; + +#define dovl_Boss_SstTex_00A8F0 "__OTR__overlays/ovl_Boss_Sst/ovl_Boss_SstTex_00A8F0" +static const ALIGN_ASSET(2) char ovl_Boss_SstTex_00A8F0[] = dovl_Boss_SstTex_00A8F0; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Demo_Shd/ovl_Demo_Shd.h b/soh/assets/overlays/ovl_Demo_Shd/ovl_Demo_Shd.h index d09189000..e7a35a108 100644 --- a/soh/assets/overlays/ovl_Demo_Shd/ovl_Demo_Shd.h +++ b/soh/assets/overlays/ovl_Demo_Shd/ovl_Demo_Shd.h @@ -1,37 +1,18 @@ #pragma once -#define dD_809932D0 "__OTR__overlays/ovl_Demo_Shd/D_809932D0" -#ifdef _WIN32 -static const __declspec(align(2)) char D_809932D0[] = dD_809932D0; -#else -static const char D_809932D0[] __attribute__((aligned (2))) = dD_809932D0; -#endif - -#define dD_80993390 "__OTR__overlays/ovl_Demo_Shd/D_80993390" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80993390[] = dD_80993390; -#else -static const char D_80993390[] __attribute__((aligned (2))) = dD_80993390; -#endif - -#define dD_809934B8 "__OTR__overlays/ovl_Demo_Shd/D_809934B8" -#ifdef _WIN32 -static const __declspec(align(2)) char D_809934B8[] = dD_809934B8; -#else -static const char D_809934B8[] __attribute__((aligned (2))) = dD_809934B8; -#endif - -#define dovl_Demo_ShdTex_000450 "__OTR__overlays/ovl_Demo_Shd/ovl_Demo_ShdTex_000450" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Demo_ShdTex_000450[] = dovl_Demo_ShdTex_000450; -#else -static const char ovl_Demo_ShdTex_000450[] __attribute__((aligned (2))) = dovl_Demo_ShdTex_000450; -#endif - -#define dovl_Demo_ShdTex_000C50 "__OTR__overlays/ovl_Demo_Shd/ovl_Demo_ShdTex_000C50" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_Demo_ShdTex_000C50[] = dovl_Demo_ShdTex_000C50; -#else -static const char ovl_Demo_ShdTex_000C50[] __attribute__((aligned (2))) = dovl_Demo_ShdTex_000C50; -#endif - +#include "align_asset_macro.h" + +#define dD_809932D0 "__OTR__overlays/ovl_Demo_Shd/D_809932D0" +static const ALIGN_ASSET(2) char D_809932D0[] = dD_809932D0; + +#define dD_80993390 "__OTR__overlays/ovl_Demo_Shd/D_80993390" +static const ALIGN_ASSET(2) char D_80993390[] = dD_80993390; + +#define dD_809934B8 "__OTR__overlays/ovl_Demo_Shd/D_809934B8" +static const ALIGN_ASSET(2) char D_809934B8[] = dD_809934B8; + +#define dovl_Demo_ShdTex_000450 "__OTR__overlays/ovl_Demo_Shd/ovl_Demo_ShdTex_000450" +static const ALIGN_ASSET(2) char ovl_Demo_ShdTex_000450[] = dovl_Demo_ShdTex_000450; + +#define dovl_Demo_ShdTex_000C50 "__OTR__overlays/ovl_Demo_Shd/ovl_Demo_ShdTex_000C50" +static const ALIGN_ASSET(2) char ovl_Demo_ShdTex_000C50[] = dovl_Demo_ShdTex_000C50; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Elf_Msg/ovl_Elf_Msg.h b/soh/assets/overlays/ovl_Elf_Msg/ovl_Elf_Msg.h index 849f37979..ab0cb75f9 100644 --- a/soh/assets/overlays/ovl_Elf_Msg/ovl_Elf_Msg.h +++ b/soh/assets/overlays/ovl_Elf_Msg/ovl_Elf_Msg.h @@ -1,37 +1,18 @@ #pragma once -#define dD_809AD278 "__OTR__overlays/ovl_Elf_Msg/D_809AD278" -#ifdef _WIN32 -static const __declspec(align(2)) char D_809AD278[] = dD_809AD278; -#else -static const char D_809AD278[] __attribute__((aligned (2))) = dD_809AD278; -#endif - -#define dsCylinderVtx "__OTR__overlays/ovl_Elf_Msg/sCylinderVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderVtx[] = dsCylinderVtx; -#else -static const char sCylinderVtx[] __attribute__((aligned (2))) = dsCylinderVtx; -#endif - -#define dsCylinderDL "__OTR__overlays/ovl_Elf_Msg/sCylinderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderDL[] = dsCylinderDL; -#else -static const char sCylinderDL[] __attribute__((aligned (2))) = dsCylinderDL; -#endif - -#define dsCubeVtx "__OTR__overlays/ovl_Elf_Msg/sCubeVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCubeVtx[] = dsCubeVtx; -#else -static const char sCubeVtx[] __attribute__((aligned (2))) = dsCubeVtx; -#endif - -#define dsCubeDL "__OTR__overlays/ovl_Elf_Msg/sCubeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sCubeDL[] = dsCubeDL; -#else -static const char sCubeDL[] __attribute__((aligned (2))) = dsCubeDL; -#endif - +#include "align_asset_macro.h" + +#define dD_809AD278 "__OTR__overlays/ovl_Elf_Msg/D_809AD278" +static const ALIGN_ASSET(2) char D_809AD278[] = dD_809AD278; + +#define dsCylinderVtx "__OTR__overlays/ovl_Elf_Msg/sCylinderVtx" +static const ALIGN_ASSET(2) char sCylinderVtx[] = dsCylinderVtx; + +#define dsCylinderDL "__OTR__overlays/ovl_Elf_Msg/sCylinderDL" +static const ALIGN_ASSET(2) char sCylinderDL[] = dsCylinderDL; + +#define dsCubeVtx "__OTR__overlays/ovl_Elf_Msg/sCubeVtx" +static const ALIGN_ASSET(2) char sCubeVtx[] = dsCubeVtx; + +#define dsCubeDL "__OTR__overlays/ovl_Elf_Msg/sCubeDL" +static const ALIGN_ASSET(2) char sCubeDL[] = dsCubeDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Elf_Msg2/ovl_Elf_Msg2.h b/soh/assets/overlays/ovl_Elf_Msg2/ovl_Elf_Msg2.h index 2a4831a19..2ca96a5ce 100644 --- a/soh/assets/overlays/ovl_Elf_Msg2/ovl_Elf_Msg2.h +++ b/soh/assets/overlays/ovl_Elf_Msg2/ovl_Elf_Msg2.h @@ -1,23 +1,12 @@ #pragma once -#define dD_809ADC38 "__OTR__overlays/ovl_Elf_Msg2/D_809ADC38" -#ifdef _WIN32 -static const __declspec(align(2)) char D_809ADC38[] = dD_809ADC38; -#else -static const char D_809ADC38[] __attribute__((aligned (2))) = dD_809ADC38; -#endif - -#define dsCubeVtx "__OTR__overlays/ovl_Elf_Msg2/sCubeVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCubeVtx[] = dsCubeVtx; -#else -static const char sCubeVtx[] __attribute__((aligned (2))) = dsCubeVtx; -#endif - -#define dsCubeDL "__OTR__overlays/ovl_Elf_Msg2/sCubeDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sCubeDL[] = dsCubeDL; -#else -static const char sCubeDL[] __attribute__((aligned (2))) = dsCubeDL; -#endif - +#include "align_asset_macro.h" + +#define dD_809ADC38 "__OTR__overlays/ovl_Elf_Msg2/D_809ADC38" +static const ALIGN_ASSET(2) char D_809ADC38[] = dD_809ADC38; + +#define dsCubeVtx "__OTR__overlays/ovl_Elf_Msg2/sCubeVtx" +static const ALIGN_ASSET(2) char sCubeVtx[] = dsCubeVtx; + +#define dsCubeDL "__OTR__overlays/ovl_Elf_Msg2/sCubeDL" +static const ALIGN_ASSET(2) char sCubeDL[] = dsCubeDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Bili/ovl_En_Bili.h b/soh/assets/overlays/ovl_En_Bili/ovl_En_Bili.h index 4b10aa75c..4ae077aa8 100644 --- a/soh/assets/overlays/ovl_En_Bili/ovl_En_Bili.h +++ b/soh/assets/overlays/ovl_En_Bili/ovl_En_Bili.h @@ -1,16 +1,9 @@ #pragma once -#define dD_809C16F0 "__OTR__overlays/ovl_En_Bili/D_809C16F0" -#ifdef _WIN32 -static const __declspec(align(2)) char D_809C16F0[] = dD_809C16F0; -#else -static const char D_809C16F0[] __attribute__((aligned (2))) = dD_809C16F0; -#endif - -#define dD_809C1700 "__OTR__overlays/ovl_En_Bili/D_809C1700" -#ifdef _WIN32 -static const __declspec(align(2)) char D_809C1700[] = dD_809C1700; -#else -static const char D_809C1700[] __attribute__((aligned (2))) = dD_809C1700; -#endif - +#include "align_asset_macro.h" + +#define dD_809C16F0 "__OTR__overlays/ovl_En_Bili/D_809C16F0" +static const ALIGN_ASSET(2) char D_809C16F0[] = dD_809C16F0; + +#define dD_809C1700 "__OTR__overlays/ovl_En_Bili/D_809C1700" +static const ALIGN_ASSET(2) char D_809C1700[] = dD_809C1700; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Clear_Tag/ovl_En_Clear_Tag.h b/soh/assets/overlays/ovl_En_Clear_Tag/ovl_En_Clear_Tag.h index 19167aa52..55fe8ece7 100644 --- a/soh/assets/overlays/ovl_En_Clear_Tag/ovl_En_Clear_Tag.h +++ b/soh/assets/overlays/ovl_En_Clear_Tag/ovl_En_Clear_Tag.h @@ -1,170 +1,75 @@ #pragma once -#define dgArwingDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingDL[] = dgArwingDL; -#else -static const char gArwingDL[] __attribute__((aligned (2))) = dgArwingDL; -#endif - -#define dgArwingLaserDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingLaserDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingLaserDL[] = dgArwingLaserDL; -#else -static const char gArwingLaserDL[] __attribute__((aligned (2))) = dgArwingLaserDL; -#endif - -#define dgArwingBackfireDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingBackfireDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingBackfireDL[] = dgArwingBackfireDL; -#else -static const char gArwingBackfireDL[] __attribute__((aligned (2))) = dgArwingBackfireDL; -#endif - -#define dgArwingDebrisEffectMaterialDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDebrisEffectMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingDebrisEffectMaterialDL[] = dgArwingDebrisEffectMaterialDL; -#else -static const char gArwingDebrisEffectMaterialDL[] __attribute__((aligned (2))) = dgArwingDebrisEffectMaterialDL; -#endif - -#define dgArwingDebrisEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDebrisEffectDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingDebrisEffectDL[] = dgArwingDebrisEffectDL; -#else -static const char gArwingDebrisEffectDL[] __attribute__((aligned (2))) = dgArwingDebrisEffectDL; -#endif - -#define dgArwingFireEffectMaterialDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFireEffectMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingFireEffectMaterialDL[] = dgArwingFireEffectMaterialDL; -#else -static const char gArwingFireEffectMaterialDL[] __attribute__((aligned (2))) = dgArwingFireEffectMaterialDL; -#endif - -#define dgArwingFireEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFireEffectDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingFireEffectDL[] = dgArwingFireEffectDL; -#else -static const char gArwingFireEffectDL[] __attribute__((aligned (2))) = dgArwingFireEffectDL; -#endif - -#define dgArwingFlashEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFlashEffectDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingFlashEffectDL[] = dgArwingFlashEffectDL; -#else -static const char gArwingFlashEffectDL[] __attribute__((aligned (2))) = dgArwingFlashEffectDL; -#endif - -#define dgArwingFlashEffectGroundDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFlashEffectGroundDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingFlashEffectGroundDL[] = dgArwingFlashEffectGroundDL; -#else -static const char gArwingFlashEffectGroundDL[] __attribute__((aligned (2))) = dgArwingFlashEffectGroundDL; -#endif - -#define dgArwingShadowDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingShadowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gArwingShadowDL[] = dgArwingShadowDL; -#else -static const char gArwingShadowDL[] __attribute__((aligned (2))) = dgArwingShadowDL; -#endif - -#define dovl_En_Clear_TagTex_003B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003B88" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_003B88[] = dovl_En_Clear_TagTex_003B88; -#else -static const char ovl_En_Clear_TagTex_003B88[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_003B88; -#endif - -#define dovl_En_Clear_TagTex_004B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_004B88" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_004B88[] = dovl_En_Clear_TagTex_004B88; -#else -static const char ovl_En_Clear_TagTex_004B88[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_004B88; -#endif - -#define dovl_En_Clear_TagTex_003388 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003388" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_003388[] = dovl_En_Clear_TagTex_003388; -#else -static const char ovl_En_Clear_TagTex_003388[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_003388; -#endif - -#define dovl_En_Clear_TagTex_005388 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_005388" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_005388[] = dovl_En_Clear_TagTex_005388; -#else -static const char ovl_En_Clear_TagTex_005388[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_005388; -#endif - -#define dovl_En_Clear_TagTex_005B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_005B88" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_005B88[] = dovl_En_Clear_TagTex_005B88; -#else -static const char ovl_En_Clear_TagTex_005B88[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_005B88; -#endif - -#define dovl_En_Clear_TagTex_003308 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003308" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_003308[] = dovl_En_Clear_TagTex_003308; -#else -static const char ovl_En_Clear_TagTex_003308[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_003308; -#endif - -#define dovl_En_Clear_TagTex_006458 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006458" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_006458[] = dovl_En_Clear_TagTex_006458; -#else -static const char ovl_En_Clear_TagTex_006458[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006458; -#endif - -#define dovl_En_Clear_TagTex_006708 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006708" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_006708[] = dovl_En_Clear_TagTex_006708; -#else -static const char ovl_En_Clear_TagTex_006708[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006708; -#endif - -#define dovl_En_Clear_TagTex_006808 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006808" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_006808[] = dovl_En_Clear_TagTex_006808; -#else -static const char ovl_En_Clear_TagTex_006808[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006808; -#endif - -#define dovl_En_Clear_TagTex_006AD0 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_006AD0[] = dovl_En_Clear_TagTex_006AD0; -#else -static const char ovl_En_Clear_TagTex_006AD0[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006AD0; -#endif - -#define dovl_En_Clear_TagTex_006ED0 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_006ED0[] = dovl_En_Clear_TagTex_006ED0; -#else -static const char ovl_En_Clear_TagTex_006ED0[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006ED0; -#endif - -#define dovl_En_Clear_TagTex_0071C8 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_0071C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_0071C8[] = dovl_En_Clear_TagTex_0071C8; -#else -static const char ovl_En_Clear_TagTex_0071C8[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_0071C8; -#endif - -#define dovl_En_Clear_TagTex_008288 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_008288" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_008288[] = dovl_En_Clear_TagTex_008288; -#else -static const char ovl_En_Clear_TagTex_008288[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_008288; -#endif - -#define dovl_En_Clear_TagTex_008540 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_008540" -#ifdef _WIN32 -static const __declspec(align(2)) char ovl_En_Clear_TagTex_008540[] = dovl_En_Clear_TagTex_008540; -#else -static const char ovl_En_Clear_TagTex_008540[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_008540; -#endif - +#include "align_asset_macro.h" + +#define dgArwingDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDL" +static const ALIGN_ASSET(2) char gArwingDL[] = dgArwingDL; + +#define dgArwingLaserDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingLaserDL" +static const ALIGN_ASSET(2) char gArwingLaserDL[] = dgArwingLaserDL; + +#define dgArwingBackfireDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingBackfireDL" +static const ALIGN_ASSET(2) char gArwingBackfireDL[] = dgArwingBackfireDL; + +#define dgArwingDebrisEffectMaterialDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDebrisEffectMaterialDL" +static const ALIGN_ASSET(2) char gArwingDebrisEffectMaterialDL[] = dgArwingDebrisEffectMaterialDL; + +#define dgArwingDebrisEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDebrisEffectDL" +static const ALIGN_ASSET(2) char gArwingDebrisEffectDL[] = dgArwingDebrisEffectDL; + +#define dgArwingFireEffectMaterialDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFireEffectMaterialDL" +static const ALIGN_ASSET(2) char gArwingFireEffectMaterialDL[] = dgArwingFireEffectMaterialDL; + +#define dgArwingFireEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFireEffectDL" +static const ALIGN_ASSET(2) char gArwingFireEffectDL[] = dgArwingFireEffectDL; + +#define dgArwingFlashEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFlashEffectDL" +static const ALIGN_ASSET(2) char gArwingFlashEffectDL[] = dgArwingFlashEffectDL; + +#define dgArwingFlashEffectGroundDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFlashEffectGroundDL" +static const ALIGN_ASSET(2) char gArwingFlashEffectGroundDL[] = dgArwingFlashEffectGroundDL; + +#define dgArwingShadowDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingShadowDL" +static const ALIGN_ASSET(2) char gArwingShadowDL[] = dgArwingShadowDL; + +#define dovl_En_Clear_TagTex_003B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003B88" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_003B88[] = dovl_En_Clear_TagTex_003B88; + +#define dovl_En_Clear_TagTex_004B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_004B88" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_004B88[] = dovl_En_Clear_TagTex_004B88; + +#define dovl_En_Clear_TagTex_003388 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003388" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_003388[] = dovl_En_Clear_TagTex_003388; + +#define dovl_En_Clear_TagTex_005388 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_005388" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_005388[] = dovl_En_Clear_TagTex_005388; + +#define dovl_En_Clear_TagTex_005B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_005B88" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_005B88[] = dovl_En_Clear_TagTex_005B88; + +#define dovl_En_Clear_TagTex_003308 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003308" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_003308[] = dovl_En_Clear_TagTex_003308; + +#define dovl_En_Clear_TagTex_006458 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006458" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006458[] = dovl_En_Clear_TagTex_006458; + +#define dovl_En_Clear_TagTex_006708 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006708" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006708[] = dovl_En_Clear_TagTex_006708; + +#define dovl_En_Clear_TagTex_006808 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006808" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006808[] = dovl_En_Clear_TagTex_006808; + +#define dovl_En_Clear_TagTex_006AD0 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006AD0" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006AD0[] = dovl_En_Clear_TagTex_006AD0; + +#define dovl_En_Clear_TagTex_006ED0 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006ED0" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006ED0[] = dovl_En_Clear_TagTex_006ED0; + +#define dovl_En_Clear_TagTex_0071C8 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_0071C8" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_0071C8[] = dovl_En_Clear_TagTex_0071C8; + +#define dovl_En_Clear_TagTex_008288 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_008288" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_008288[] = dovl_En_Clear_TagTex_008288; + +#define dovl_En_Clear_TagTex_008540 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_008540" +static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_008540[] = dovl_En_Clear_TagTex_008540; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Ganon_Mant/ovl_En_Ganon_Mant.h b/soh/assets/overlays/ovl_En_Ganon_Mant/ovl_En_Ganon_Mant.h index 742e68565..4ed06fc90 100644 --- a/soh/assets/overlays/ovl_En_Ganon_Mant/ovl_En_Ganon_Mant.h +++ b/soh/assets/overlays/ovl_En_Ganon_Mant/ovl_En_Ganon_Mant.h @@ -1,51 +1,24 @@ #pragma once -#define dgMantTex "__OTR__overlays/ovl_En_Ganon_Mant/gMantTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMantTex[] = dgMantTex; -#else -static const char gMantTex[] __attribute__((aligned (2))) = dgMantTex; -#endif - -#define dgMantUnusedTex "__OTR__overlays/ovl_En_Ganon_Mant/gMantUnusedTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMantUnusedTex[] = dgMantUnusedTex; -#else -static const char gMantUnusedTex[] __attribute__((aligned (2))) = dgMantUnusedTex; -#endif - -#define dgMant1Vtx "__OTR__overlays/ovl_En_Ganon_Mant/gMant1Vtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gMant1Vtx[] = dgMant1Vtx; -#else -static const char gMant1Vtx[] __attribute__((aligned (2))) = dgMant1Vtx; -#endif - -#define dgMantMaterialDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMantMaterialDL[] = dgMantMaterialDL; -#else -static const char gMantMaterialDL[] __attribute__((aligned (2))) = dgMantMaterialDL; -#endif - -#define dgMantUnusedMaterialDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantUnusedMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMantUnusedMaterialDL[] = dgMantUnusedMaterialDL; -#else -static const char gMantUnusedMaterialDL[] __attribute__((aligned (2))) = dgMantUnusedMaterialDL; -#endif - -#define dgMantDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gMantDL[] = dgMantDL; -#else -static const char gMantDL[] __attribute__((aligned (2))) = dgMantDL; -#endif - -#define dgMant2Vtx "__OTR__overlays/ovl_En_Ganon_Mant/gMant2Vtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gMant2Vtx[] = dgMant2Vtx; -#else -static const char gMant2Vtx[] __attribute__((aligned (2))) = dgMant2Vtx; -#endif - +#include "align_asset_macro.h" + +#define dgMantTex "__OTR__overlays/ovl_En_Ganon_Mant/gMantTex" +static const ALIGN_ASSET(2) char gMantTex[] = dgMantTex; + +#define dgMantUnusedTex "__OTR__overlays/ovl_En_Ganon_Mant/gMantUnusedTex" +static const ALIGN_ASSET(2) char gMantUnusedTex[] = dgMantUnusedTex; + +#define dgMant1Vtx "__OTR__overlays/ovl_En_Ganon_Mant/gMant1Vtx" +static const ALIGN_ASSET(2) char gMant1Vtx[] = dgMant1Vtx; + +#define dgMantMaterialDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantMaterialDL" +static const ALIGN_ASSET(2) char gMantMaterialDL[] = dgMantMaterialDL; + +#define dgMantUnusedMaterialDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantUnusedMaterialDL" +static const ALIGN_ASSET(2) char gMantUnusedMaterialDL[] = dgMantUnusedMaterialDL; + +#define dgMantDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantDL" +static const ALIGN_ASSET(2) char gMantDL[] = dgMantDL; + +#define dgMant2Vtx "__OTR__overlays/ovl_En_Ganon_Mant/gMant2Vtx" +static const ALIGN_ASSET(2) char gMant2Vtx[] = dgMant2Vtx; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Ganon_Organ/ovl_En_Ganon_Organ.h b/soh/assets/overlays/ovl_En_Ganon_Organ/ovl_En_Ganon_Organ.h index 846ded932..8937e62df 100644 --- a/soh/assets/overlays/ovl_En_Ganon_Organ/ovl_En_Ganon_Organ.h +++ b/soh/assets/overlays/ovl_En_Ganon_Organ/ovl_En_Ganon_Organ.h @@ -1,100 +1,45 @@ #pragma once -#define dsRoomCarpetTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomCarpetTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomCarpetTex[] = dsRoomCarpetTex; -#else -static const char sRoomCarpetTex[] __attribute__((aligned (2))) = dsRoomCarpetTex; -#endif - -#define dsRoomOrganPipeTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganPipeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomOrganPipeTex[] = dsRoomOrganPipeTex; -#else -static const char sRoomOrganPipeTex[] __attribute__((aligned (2))) = dsRoomOrganPipeTex; -#endif - -#define dsRoomOrganCorbelsTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganCorbelsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomOrganCorbelsTex[] = dsRoomOrganCorbelsTex; -#else -static const char sRoomOrganCorbelsTex[] __attribute__((aligned (2))) = dsRoomOrganCorbelsTex; -#endif - -#define dsRoomOrganGrillTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganGrillTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomOrganGrillTex[] = dsRoomOrganGrillTex; -#else -static const char sRoomOrganGrillTex[] __attribute__((aligned (2))) = dsRoomOrganGrillTex; -#endif - -#define dsRoomCrestFriezeTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomCrestFriezeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomCrestFriezeTex[] = dsRoomCrestFriezeTex; -#else -static const char sRoomCrestFriezeTex[] __attribute__((aligned (2))) = dsRoomCrestFriezeTex; -#endif - -#define dsRoomColumnFriezeAndCanopyTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomColumnFriezeAndCanopyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomColumnFriezeAndCanopyTex[] = dsRoomColumnFriezeAndCanopyTex; -#else -static const char sRoomColumnFriezeAndCanopyTex[] __attribute__((aligned (2))) = dsRoomColumnFriezeAndCanopyTex; -#endif - -#define dsRoomColumnMetalEdgingTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomColumnMetalEdgingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomColumnMetalEdgingTex[] = dsRoomColumnMetalEdgingTex; -#else -static const char sRoomColumnMetalEdgingTex[] __attribute__((aligned (2))) = dsRoomColumnMetalEdgingTex; -#endif - -#define dsRoomStatueWingTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStatueWingTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomStatueWingTex[] = dsRoomStatueWingTex; -#else -static const char sRoomStatueWingTex[] __attribute__((aligned (2))) = dsRoomStatueWingTex; -#endif - -#define dsRoomPillarTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomPillarTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomPillarTex[] = dsRoomPillarTex; -#else -static const char sRoomPillarTex[] __attribute__((aligned (2))) = dsRoomPillarTex; -#endif - -#define dsRoomOrganKeyboardTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganKeyboardTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomOrganKeyboardTex[] = dsRoomOrganKeyboardTex; -#else -static const char sRoomOrganKeyboardTex[] __attribute__((aligned (2))) = dsRoomOrganKeyboardTex; -#endif - -#define dsRoomOrganKeyEndTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganKeyEndTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomOrganKeyEndTex[] = dsRoomOrganKeyEndTex; -#else -static const char sRoomOrganKeyEndTex[] __attribute__((aligned (2))) = dsRoomOrganKeyEndTex; -#endif - -#define dsRoomStepTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStepTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomStepTex[] = dsRoomStepTex; -#else -static const char sRoomStepTex[] __attribute__((aligned (2))) = dsRoomStepTex; -#endif - -#define dsRoomOrganAndFloorDL "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganAndFloorDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomOrganAndFloorDL[] = dsRoomOrganAndFloorDL; -#else -static const char sRoomOrganAndFloorDL[] __attribute__((aligned (2))) = dsRoomOrganAndFloorDL; -#endif - -#define dsRoomStatuesDL "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStatuesDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sRoomStatuesDL[] = dsRoomStatuesDL; -#else -static const char sRoomStatuesDL[] __attribute__((aligned (2))) = dsRoomStatuesDL; -#endif - +#include "align_asset_macro.h" + +#define dsRoomCarpetTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomCarpetTex" +static const ALIGN_ASSET(2) char sRoomCarpetTex[] = dsRoomCarpetTex; + +#define dsRoomOrganPipeTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganPipeTex" +static const ALIGN_ASSET(2) char sRoomOrganPipeTex[] = dsRoomOrganPipeTex; + +#define dsRoomOrganCorbelsTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganCorbelsTex" +static const ALIGN_ASSET(2) char sRoomOrganCorbelsTex[] = dsRoomOrganCorbelsTex; + +#define dsRoomOrganGrillTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganGrillTex" +static const ALIGN_ASSET(2) char sRoomOrganGrillTex[] = dsRoomOrganGrillTex; + +#define dsRoomCrestFriezeTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomCrestFriezeTex" +static const ALIGN_ASSET(2) char sRoomCrestFriezeTex[] = dsRoomCrestFriezeTex; + +#define dsRoomColumnFriezeAndCanopyTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomColumnFriezeAndCanopyTex" +static const ALIGN_ASSET(2) char sRoomColumnFriezeAndCanopyTex[] = dsRoomColumnFriezeAndCanopyTex; + +#define dsRoomColumnMetalEdgingTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomColumnMetalEdgingTex" +static const ALIGN_ASSET(2) char sRoomColumnMetalEdgingTex[] = dsRoomColumnMetalEdgingTex; + +#define dsRoomStatueWingTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStatueWingTex" +static const ALIGN_ASSET(2) char sRoomStatueWingTex[] = dsRoomStatueWingTex; + +#define dsRoomPillarTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomPillarTex" +static const ALIGN_ASSET(2) char sRoomPillarTex[] = dsRoomPillarTex; + +#define dsRoomOrganKeyboardTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganKeyboardTex" +static const ALIGN_ASSET(2) char sRoomOrganKeyboardTex[] = dsRoomOrganKeyboardTex; + +#define dsRoomOrganKeyEndTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganKeyEndTex" +static const ALIGN_ASSET(2) char sRoomOrganKeyEndTex[] = dsRoomOrganKeyEndTex; + +#define dsRoomStepTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStepTex" +static const ALIGN_ASSET(2) char sRoomStepTex[] = dsRoomStepTex; + +#define dsRoomOrganAndFloorDL "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganAndFloorDL" +static const ALIGN_ASSET(2) char sRoomOrganAndFloorDL[] = dsRoomOrganAndFloorDL; + +#define dsRoomStatuesDL "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStatuesDL" +static const ALIGN_ASSET(2) char sRoomStatuesDL[] = dsRoomStatuesDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Holl/ovl_En_Holl.h b/soh/assets/overlays/ovl_En_Holl/ovl_En_Holl.h index fd7ab3f31..958278f20 100644 --- a/soh/assets/overlays/ovl_En_Holl/ovl_En_Holl.h +++ b/soh/assets/overlays/ovl_En_Holl/ovl_En_Holl.h @@ -1,16 +1,9 @@ #pragma once -#define dsPlaneVtx "__OTR__overlays/ovl_En_Holl/sPlaneVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlaneVtx[] = dsPlaneVtx; -#else -static const char sPlaneVtx[] __attribute__((aligned (2))) = dsPlaneVtx; -#endif - -#define dsPlaneDL "__OTR__overlays/ovl_En_Holl/sPlaneDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sPlaneDL[] = dsPlaneDL; -#else -static const char sPlaneDL[] __attribute__((aligned (2))) = dsPlaneDL; -#endif - +#include "align_asset_macro.h" + +#define dsPlaneVtx "__OTR__overlays/ovl_En_Holl/sPlaneVtx" +static const ALIGN_ASSET(2) char sPlaneVtx[] = dsPlaneVtx; + +#define dsPlaneDL "__OTR__overlays/ovl_En_Holl/sPlaneDL" +static const ALIGN_ASSET(2) char sPlaneDL[] = dsPlaneDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Jsjutan/ovl_En_Jsjutan.h b/soh/assets/overlays/ovl_En_Jsjutan/ovl_En_Jsjutan.h index a6c5ee957..04912710c 100644 --- a/soh/assets/overlays/ovl_En_Jsjutan/ovl_En_Jsjutan.h +++ b/soh/assets/overlays/ovl_En_Jsjutan/ovl_En_Jsjutan.h @@ -1,66 +1,32 @@ #pragma once -#define dsCarpetTex "__OTR__overlays/ovl_En_Jsjutan/sCarpetTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sCarpetTex[] = dsCarpetTex; -#else -static const char sCarpetTex[] __attribute__((aligned (2))) = dsCarpetTex; -#endif - -#define dgShadowOddVtx "__OTR__overlays/ovl_En_Jsjutan/gShadowOddVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowOddVtx[] = dgShadowOddVtx; -#else -static const char gShadowOddVtx[] __attribute__((aligned (2))) = dgShadowOddVtx; -#endif - -#define dsShadowEvenVtx "__OTR__overlays/ovl_En_Jsjutan/sShadowEvenVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sShadowEvenVtx[] = dsShadowEvenVtx; -#else -static const char sShadowEvenVtx[] __attribute__((aligned (2))) = dsShadowEvenVtx; -#endif - -#define dsCarpetOddVtx "__OTR__overlays/ovl_En_Jsjutan/sCarpetOddVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCarpetOddVtx[] = dsCarpetOddVtx; -#else -static const char sCarpetOddVtx[] __attribute__((aligned (2))) = dsCarpetOddVtx; -#endif - -#define dsCarpetMaterialDL "__OTR__overlays/ovl_En_Jsjutan/sCarpetMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sCarpetMaterialDL[] = dsCarpetMaterialDL; -#else -static const char sCarpetMaterialDL[] __attribute__((aligned (2))) = dsCarpetMaterialDL; -#endif - -#define dsShadowMaterialDL "__OTR__overlays/ovl_En_Jsjutan/sShadowMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sShadowMaterialDL[] = dsShadowMaterialDL; -#else -static const char sShadowMaterialDL[] __attribute__((aligned (2))) = dsShadowMaterialDL; -#endif - -#define dsModelDL "__OTR__overlays/ovl_En_Jsjutan/sModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sModelDL[] = dsModelDL; -#else -static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL; -#endif - -#define dsCarpetEvenVtx "__OTR__overlays/ovl_En_Jsjutan/sCarpetEvenVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCarpetEvenVtx[] = dsCarpetEvenVtx; -#else -static const char sCarpetEvenVtx[] __attribute__((aligned (2))) = dsCarpetEvenVtx; -#endif - -#define dsCol "__OTR__overlays/ovl_En_Jsjutan/sCol" -#ifdef _WIN32 -static const __declspec(align(2)) char sCol[] = dsCol; -#else -static const char sCol[] __attribute__((aligned (2))) = dsCol; -#endif - -extern u8 sShadowTex[2048]; +#include "align_asset_macro.h" + +#define dsCarpetTex "__OTR__overlays/ovl_En_Jsjutan/sCarpetTex" +static const ALIGN_ASSET(2) char sCarpetTex[] = dsCarpetTex; + +#define dgShadowOddVtx "__OTR__overlays/ovl_En_Jsjutan/gShadowOddVtx" +static const ALIGN_ASSET(2) char gShadowOddVtx[] = dgShadowOddVtx; + +#define dsShadowEvenVtx "__OTR__overlays/ovl_En_Jsjutan/sShadowEvenVtx" +static const ALIGN_ASSET(2) char sShadowEvenVtx[] = dsShadowEvenVtx; + +#define dsCarpetOddVtx "__OTR__overlays/ovl_En_Jsjutan/sCarpetOddVtx" +static const ALIGN_ASSET(2) char sCarpetOddVtx[] = dsCarpetOddVtx; + +#define dsCarpetMaterialDL "__OTR__overlays/ovl_En_Jsjutan/sCarpetMaterialDL" +static const ALIGN_ASSET(2) char sCarpetMaterialDL[] = dsCarpetMaterialDL; + +#define dsShadowMaterialDL "__OTR__overlays/ovl_En_Jsjutan/sShadowMaterialDL" +static const ALIGN_ASSET(2) char sShadowMaterialDL[] = dsShadowMaterialDL; + +#define dsModelDL "__OTR__overlays/ovl_En_Jsjutan/sModelDL" +static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL; + +#define dsCarpetEvenVtx "__OTR__overlays/ovl_En_Jsjutan/sCarpetEvenVtx" +static const ALIGN_ASSET(2) char sCarpetEvenVtx[] = dsCarpetEvenVtx; + +#define dsCol "__OTR__overlays/ovl_En_Jsjutan/sCol" +static const ALIGN_ASSET(2) char sCol[] = dsCol; + +extern u8 sShadowTex[2048]; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Kanban/ovl_En_Kanban.h b/soh/assets/overlays/ovl_En_Kanban/ovl_En_Kanban.h index 9438cc110..bce8f86b2 100644 --- a/soh/assets/overlays/ovl_En_Kanban/ovl_En_Kanban.h +++ b/soh/assets/overlays/ovl_En_Kanban/ovl_En_Kanban.h @@ -1,16 +1,9 @@ #pragma once -#define dsShadowVtx "__OTR__overlays/ovl_En_Kanban/sShadowVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sShadowVtx[] = dsShadowVtx; -#else -static const char sShadowVtx[] __attribute__((aligned (2))) = dsShadowVtx; -#endif - -#define dsShadowDL "__OTR__overlays/ovl_En_Kanban/sShadowDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sShadowDL[] = dsShadowDL; -#else -static const char sShadowDL[] __attribute__((aligned (2))) = dsShadowDL; -#endif - +#include "align_asset_macro.h" + +#define dsShadowVtx "__OTR__overlays/ovl_En_Kanban/sShadowVtx" +static const ALIGN_ASSET(2) char sShadowVtx[] = dsShadowVtx; + +#define dsShadowDL "__OTR__overlays/ovl_En_Kanban/sShadowDL" +static const ALIGN_ASSET(2) char sShadowDL[] = dsShadowDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Sda/ovl_En_Sda.h b/soh/assets/overlays/ovl_En_Sda/ovl_En_Sda.h index fd021e8a5..8cc267e6e 100644 --- a/soh/assets/overlays/ovl_En_Sda/ovl_En_Sda.h +++ b/soh/assets/overlays/ovl_En_Sda/ovl_En_Sda.h @@ -1,23 +1,12 @@ #pragma once -#define dD_80AFA398 "__OTR__overlays/ovl_En_Sda/D_80AFA398" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80AFA398[] = dD_80AFA398; -#else -static const char D_80AFA398[] __attribute__((aligned (2))) = dD_80AFA398; -#endif - -#define dD_80AFA3D8 "__OTR__overlays/ovl_En_Sda/D_80AFA3D8" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80AFA3D8[] = dD_80AFA3D8; -#else -static const char D_80AFA3D8[] __attribute__((aligned (2))) = dD_80AFA3D8; -#endif - -#define dD_80AFA3F8 "__OTR__overlays/ovl_En_Sda/D_80AFA3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80AFA3F8[] = dD_80AFA3F8; -#else -static const char D_80AFA3F8[] __attribute__((aligned (2))) = dD_80AFA3F8; -#endif - +#include "align_asset_macro.h" + +#define dD_80AFA398 "__OTR__overlays/ovl_En_Sda/D_80AFA398" +static const ALIGN_ASSET(2) char D_80AFA398[] = dD_80AFA398; + +#define dD_80AFA3D8 "__OTR__overlays/ovl_En_Sda/D_80AFA3D8" +static const ALIGN_ASSET(2) char D_80AFA3D8[] = dD_80AFA3D8; + +#define dD_80AFA3F8 "__OTR__overlays/ovl_En_Sda/D_80AFA3F8" +static const ALIGN_ASSET(2) char D_80AFA3F8[] = dD_80AFA3F8; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Ssh/ovl_En_Ssh.h b/soh/assets/overlays/ovl_En_Ssh/ovl_En_Ssh.h index 9bf93b7ac..694883a45 100644 --- a/soh/assets/overlays/ovl_En_Ssh/ovl_En_Ssh.h +++ b/soh/assets/overlays/ovl_En_Ssh/ovl_En_Ssh.h @@ -1,16 +1,9 @@ #pragma once -#define dD_80B043C0 "__OTR__overlays/ovl_En_Ssh/D_80B043C0" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80B043C0[] = dD_80B043C0; -#else -static const char D_80B043C0[] __attribute__((aligned (2))) = dD_80B043C0; -#endif - -#define dD_80B04400 "__OTR__overlays/ovl_En_Ssh/D_80B04400" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80B04400[] = dD_80B04400; -#else -static const char D_80B04400[] __attribute__((aligned (2))) = dD_80B04400; -#endif - +#include "align_asset_macro.h" + +#define dD_80B043C0 "__OTR__overlays/ovl_En_Ssh/D_80B043C0" +static const ALIGN_ASSET(2) char D_80B043C0[] = dD_80B043C0; + +#define dD_80B04400 "__OTR__overlays/ovl_En_Ssh/D_80B04400" +static const ALIGN_ASSET(2) char D_80B04400[] = dD_80B04400; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_St/ovl_En_St.h b/soh/assets/overlays/ovl_En_St/ovl_En_St.h index 6e623f309..982ad8e5a 100644 --- a/soh/assets/overlays/ovl_En_St/ovl_En_St.h +++ b/soh/assets/overlays/ovl_En_St/ovl_En_St.h @@ -1,16 +1,9 @@ #pragma once -#define dsSkulltulaUnusedVtx "__OTR__overlays/ovl_En_St/sSkulltulaUnusedVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sSkulltulaUnusedVtx[] = dsSkulltulaUnusedVtx; -#else -static const char sSkulltulaUnusedVtx[] __attribute__((aligned (2))) = dsSkulltulaUnusedVtx; -#endif - -#define dsSkulltulaUnusedDL "__OTR__overlays/ovl_En_St/sSkulltulaUnusedDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sSkulltulaUnusedDL[] = dsSkulltulaUnusedDL; -#else -static const char sSkulltulaUnusedDL[] __attribute__((aligned (2))) = dsSkulltulaUnusedDL; -#endif - +#include "align_asset_macro.h" + +#define dsSkulltulaUnusedVtx "__OTR__overlays/ovl_En_St/sSkulltulaUnusedVtx" +static const ALIGN_ASSET(2) char sSkulltulaUnusedVtx[] = dsSkulltulaUnusedVtx; + +#define dsSkulltulaUnusedDL "__OTR__overlays/ovl_En_St/sSkulltulaUnusedDL" +static const ALIGN_ASSET(2) char sSkulltulaUnusedDL[] = dsSkulltulaUnusedDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_En_Sth/ovl_En_Sth.h b/soh/assets/overlays/ovl_En_Sth/ovl_En_Sth.h index 8d1c062a1..742f58c59 100644 --- a/soh/assets/overlays/ovl_En_Sth/ovl_En_Sth.h +++ b/soh/assets/overlays/ovl_En_Sth/ovl_En_Sth.h @@ -1,79 +1,36 @@ #pragma once -#define dsNoseTex "__OTR__overlays/ovl_En_Sth/sNoseTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sNoseTex[] = dsNoseTex; -#else -static const char sNoseTex[] __attribute__((aligned (2))) = dsNoseTex; -#endif - -#define dsHair1Tex "__OTR__overlays/ovl_En_Sth/sHair1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char sHair1Tex[] = dsHair1Tex; -#else -static const char sHair1Tex[] __attribute__((aligned (2))) = dsHair1Tex; -#endif - -#define dsEar1Tex "__OTR__overlays/ovl_En_Sth/sEar1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char sEar1Tex[] = dsEar1Tex; -#else -static const char sEar1Tex[] __attribute__((aligned (2))) = dsEar1Tex; -#endif - -#define dsEyeTex "__OTR__overlays/ovl_En_Sth/sEyeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sEyeTex[] = dsEyeTex; -#else -static const char sEyeTex[] __attribute__((aligned (2))) = dsEyeTex; -#endif - -#define dsMouthTex "__OTR__overlays/ovl_En_Sth/sMouthTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sMouthTex[] = dsMouthTex; -#else -static const char sMouthTex[] __attribute__((aligned (2))) = dsMouthTex; -#endif - -#define dsEar2Tex "__OTR__overlays/ovl_En_Sth/sEar2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char sEar2Tex[] = dsEar2Tex; -#else -static const char sEar2Tex[] __attribute__((aligned (2))) = dsEar2Tex; -#endif - -#define dsHair2Tex "__OTR__overlays/ovl_En_Sth/sHair2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char sHair2Tex[] = dsHair2Tex; -#else -static const char sHair2Tex[] __attribute__((aligned (2))) = dsHair2Tex; -#endif - -#define dD_80B0A050 "__OTR__overlays/ovl_En_Sth/D_80B0A050" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80B0A050[] = dD_80B0A050; -#else -static const char D_80B0A050[] __attribute__((aligned (2))) = dD_80B0A050; -#endif - -#define dD_80B0A3C0 "__OTR__overlays/ovl_En_Sth/D_80B0A3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80B0A3C0[] = dD_80B0A3C0; -#else -static const char D_80B0A3C0[] __attribute__((aligned (2))) = dD_80B0A3C0; -#endif - -#define dsChildDanceAnim "__OTR__overlays/ovl_En_Sth/sChildDanceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char sChildDanceAnim[] = dsChildDanceAnim; -#else -static const char sChildDanceAnim[] __attribute__((aligned (2))) = dsChildDanceAnim; -#endif - -#define dsParentDanceAnim "__OTR__overlays/ovl_En_Sth/sParentDanceAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char sParentDanceAnim[] = dsParentDanceAnim; -#else -static const char sParentDanceAnim[] __attribute__((aligned (2))) = dsParentDanceAnim; -#endif - +#include "align_asset_macro.h" + +#define dsNoseTex "__OTR__overlays/ovl_En_Sth/sNoseTex" +static const ALIGN_ASSET(2) char sNoseTex[] = dsNoseTex; + +#define dsHair1Tex "__OTR__overlays/ovl_En_Sth/sHair1Tex" +static const ALIGN_ASSET(2) char sHair1Tex[] = dsHair1Tex; + +#define dsEar1Tex "__OTR__overlays/ovl_En_Sth/sEar1Tex" +static const ALIGN_ASSET(2) char sEar1Tex[] = dsEar1Tex; + +#define dsEyeTex "__OTR__overlays/ovl_En_Sth/sEyeTex" +static const ALIGN_ASSET(2) char sEyeTex[] = dsEyeTex; + +#define dsMouthTex "__OTR__overlays/ovl_En_Sth/sMouthTex" +static const ALIGN_ASSET(2) char sMouthTex[] = dsMouthTex; + +#define dsEar2Tex "__OTR__overlays/ovl_En_Sth/sEar2Tex" +static const ALIGN_ASSET(2) char sEar2Tex[] = dsEar2Tex; + +#define dsHair2Tex "__OTR__overlays/ovl_En_Sth/sHair2Tex" +static const ALIGN_ASSET(2) char sHair2Tex[] = dsHair2Tex; + +#define dD_80B0A050 "__OTR__overlays/ovl_En_Sth/D_80B0A050" +static const ALIGN_ASSET(2) char D_80B0A050[] = dD_80B0A050; + +#define dD_80B0A3C0 "__OTR__overlays/ovl_En_Sth/D_80B0A3C0" +static const ALIGN_ASSET(2) char D_80B0A3C0[] = dD_80B0A3C0; + +#define dsChildDanceAnim "__OTR__overlays/ovl_En_Sth/sChildDanceAnim" +static const ALIGN_ASSET(2) char sChildDanceAnim[] = dsChildDanceAnim; + +#define dsParentDanceAnim "__OTR__overlays/ovl_En_Sth/sParentDanceAnim" +static const ALIGN_ASSET(2) char sParentDanceAnim[] = dsParentDanceAnim; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_End_Title/ovl_End_Title.h b/soh/assets/overlays/ovl_End_Title/ovl_End_Title.h index 424cab00c..2037f07bf 100644 --- a/soh/assets/overlays/ovl_End_Title/ovl_End_Title.h +++ b/soh/assets/overlays/ovl_End_Title/ovl_End_Title.h @@ -1,65 +1,30 @@ #pragma once -#define dsTheLegendOfZeldaTex "__OTR__overlays/ovl_End_Title/sTheLegendOfZeldaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTheLegendOfZeldaTex[] = dsTheLegendOfZeldaTex; -#else -static const char sTheLegendOfZeldaTex[] __attribute__((aligned (2))) = dsTheLegendOfZeldaTex; -#endif - -#define dsOcarinaOfTimeTex "__OTR__overlays/ovl_End_Title/sOcarinaOfTimeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sOcarinaOfTimeTex[] = dsOcarinaOfTimeTex; -#else -static const char sOcarinaOfTimeTex[] __attribute__((aligned (2))) = dsOcarinaOfTimeTex; -#endif - -#define dsTheEndTex "__OTR__overlays/ovl_End_Title/sTheEndTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTheEndTex[] = dsTheEndTex; -#else -static const char sTheEndTex[] __attribute__((aligned (2))) = dsTheEndTex; -#endif - -#define dsNintendoLeftTex "__OTR__overlays/ovl_End_Title/sNintendoLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sNintendoLeftTex[] = dsNintendoLeftTex; -#else -static const char sNintendoLeftTex[] __attribute__((aligned (2))) = dsNintendoLeftTex; -#endif - -#define dsNintendoRightTex "__OTR__overlays/ovl_End_Title/sNintendoRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sNintendoRightTex[] = dsNintendoRightTex; -#else -static const char sNintendoRightTex[] __attribute__((aligned (2))) = dsNintendoRightTex; -#endif - -#define dsPresentedByTex "__OTR__overlays/ovl_End_Title/sPresentedByTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sPresentedByTex[] = dsPresentedByTex; -#else -static const char sPresentedByTex[] __attribute__((aligned (2))) = dsPresentedByTex; -#endif - -#define dsTriforceVtx "__OTR__overlays/ovl_End_Title/sTriforceVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sTriforceVtx[] = dsTriforceVtx; -#else -static const char sTriforceVtx[] __attribute__((aligned (2))) = dsTriforceVtx; -#endif - -#define dsTriforceDL "__OTR__overlays/ovl_End_Title/sTriforceDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sTriforceDL[] = dsTriforceDL; -#else -static const char sTriforceDL[] __attribute__((aligned (2))) = dsTriforceDL; -#endif - -#define dsPresentedByNintendoDL "__OTR__overlays/ovl_End_Title/sPresentedByNintendoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sPresentedByNintendoDL[] = dsPresentedByNintendoDL; -#else -static const char sPresentedByNintendoDL[] __attribute__((aligned (2))) = dsPresentedByNintendoDL; -#endif - +#include "align_asset_macro.h" + +#define dsTheLegendOfZeldaTex "__OTR__overlays/ovl_End_Title/sTheLegendOfZeldaTex" +static const ALIGN_ASSET(2) char sTheLegendOfZeldaTex[] = dsTheLegendOfZeldaTex; + +#define dsOcarinaOfTimeTex "__OTR__overlays/ovl_End_Title/sOcarinaOfTimeTex" +static const ALIGN_ASSET(2) char sOcarinaOfTimeTex[] = dsOcarinaOfTimeTex; + +#define dsTheEndTex "__OTR__overlays/ovl_End_Title/sTheEndTex" +static const ALIGN_ASSET(2) char sTheEndTex[] = dsTheEndTex; + +#define dsNintendoLeftTex "__OTR__overlays/ovl_End_Title/sNintendoLeftTex" +static const ALIGN_ASSET(2) char sNintendoLeftTex[] = dsNintendoLeftTex; + +#define dsNintendoRightTex "__OTR__overlays/ovl_End_Title/sNintendoRightTex" +static const ALIGN_ASSET(2) char sNintendoRightTex[] = dsNintendoRightTex; + +#define dsPresentedByTex "__OTR__overlays/ovl_End_Title/sPresentedByTex" +static const ALIGN_ASSET(2) char sPresentedByTex[] = dsPresentedByTex; + +#define dsTriforceVtx "__OTR__overlays/ovl_End_Title/sTriforceVtx" +static const ALIGN_ASSET(2) char sTriforceVtx[] = dsTriforceVtx; + +#define dsTriforceDL "__OTR__overlays/ovl_End_Title/sTriforceDL" +static const ALIGN_ASSET(2) char sTriforceDL[] = dsTriforceDL; + +#define dsPresentedByNintendoDL "__OTR__overlays/ovl_End_Title/sPresentedByNintendoDL" +static const ALIGN_ASSET(2) char sPresentedByNintendoDL[] = dsPresentedByNintendoDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_File_Choose/ovl_file_choose.h b/soh/assets/overlays/ovl_File_Choose/ovl_file_choose.h index 1604f3527..d2bffa465 100644 --- a/soh/assets/overlays/ovl_File_Choose/ovl_file_choose.h +++ b/soh/assets/overlays/ovl_File_Choose/ovl_file_choose.h @@ -1,58 +1,27 @@ #pragma once -#define dD_80811BB0 "__OTR__overlays/ovl_file_choose/D_80811BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80811BB0[] = dD_80811BB0; -#else -static const char D_80811BB0[] __attribute__((aligned (2))) = dD_80811BB0; -#endif - -#define dD_80811D30 "__OTR__overlays/ovl_file_choose/D_80811D30" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80811D30[] = dD_80811D30; -#else -static const char D_80811D30[] __attribute__((aligned (2))) = dD_80811D30; -#endif - -#define dD_80811E30 "__OTR__overlays/ovl_file_choose/D_80811E30" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80811E30[] = dD_80811E30; -#else -static const char D_80811E30[] __attribute__((aligned (2))) = dD_80811E30; -#endif - -#define dD_80811F30 "__OTR__overlays/ovl_file_choose/D_80811F30" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80811F30[] = dD_80811F30; -#else -static const char D_80811F30[] __attribute__((aligned (2))) = dD_80811F30; -#endif - -#define dD_80812130 "__OTR__overlays/ovl_file_choose/D_80812130" -#ifdef _WIN32 -static const __declspec(align(2)) char D_80812130[] = dD_80812130; -#else -static const char D_80812130[] __attribute__((aligned (2))) = dD_80812130; -#endif - -#define dgOptionsDividerTopVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerTopVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gOptionsDividerTopVtx[] = dgOptionsDividerTopVtx; -#else -static const char gOptionsDividerTopVtx[] __attribute__((aligned (2))) = dgOptionsDividerTopVtx; -#endif - -#define dgOptionsDividerMiddleVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerMiddleVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gOptionsDividerMiddleVtx[] = dgOptionsDividerMiddleVtx; -#else -static const char gOptionsDividerMiddleVtx[] __attribute__((aligned (2))) = dgOptionsDividerMiddleVtx; -#endif - -#define dgOptionsDividerBottomVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerBottomVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char gOptionsDividerBottomVtx[] = dgOptionsDividerBottomVtx; -#else -static const char gOptionsDividerBottomVtx[] __attribute__((aligned (2))) = dgOptionsDividerBottomVtx; -#endif - +#include "align_asset_macro.h" + +#define dD_80811BB0 "__OTR__overlays/ovl_file_choose/D_80811BB0" +static const ALIGN_ASSET(2) char D_80811BB0[] = dD_80811BB0; + +#define dD_80811D30 "__OTR__overlays/ovl_file_choose/D_80811D30" +static const ALIGN_ASSET(2) char D_80811D30[] = dD_80811D30; + +#define dD_80811E30 "__OTR__overlays/ovl_file_choose/D_80811E30" +static const ALIGN_ASSET(2) char D_80811E30[] = dD_80811E30; + +#define dD_80811F30 "__OTR__overlays/ovl_file_choose/D_80811F30" +static const ALIGN_ASSET(2) char D_80811F30[] = dD_80811F30; + +#define dD_80812130 "__OTR__overlays/ovl_file_choose/D_80812130" +static const ALIGN_ASSET(2) char D_80812130[] = dD_80812130; + +#define dgOptionsDividerTopVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerTopVtx" +static const ALIGN_ASSET(2) char gOptionsDividerTopVtx[] = dgOptionsDividerTopVtx; + +#define dgOptionsDividerMiddleVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerMiddleVtx" +static const ALIGN_ASSET(2) char gOptionsDividerMiddleVtx[] = dgOptionsDividerMiddleVtx; + +#define dgOptionsDividerBottomVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerBottomVtx" +static const ALIGN_ASSET(2) char gOptionsDividerBottomVtx[] = dgOptionsDividerBottomVtx; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Magic_Dark/ovl_Magic_Dark.h b/soh/assets/overlays/ovl_Magic_Dark/ovl_Magic_Dark.h index 6c4838c4d..80313dd33 100644 --- a/soh/assets/overlays/ovl_Magic_Dark/ovl_Magic_Dark.h +++ b/soh/assets/overlays/ovl_Magic_Dark/ovl_Magic_Dark.h @@ -1,30 +1,15 @@ #pragma once -#define dsDiamondTex "__OTR__overlays/ovl_Magic_Dark/sDiamondTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sDiamondTex[] = dsDiamondTex; -#else -static const char sDiamondTex[] __attribute__((aligned (2))) = dsDiamondTex; -#endif - -#define dsDiamondVtx "__OTR__overlays/ovl_Magic_Dark/sDiamondVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sDiamondVtx[] = dsDiamondVtx; -#else -static const char sDiamondVtx[] __attribute__((aligned (2))) = dsDiamondVtx; -#endif - -#define dsDiamondMaterialDL "__OTR__overlays/ovl_Magic_Dark/sDiamondMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sDiamondMaterialDL[] = dsDiamondMaterialDL; -#else -static const char sDiamondMaterialDL[] __attribute__((aligned (2))) = dsDiamondMaterialDL; -#endif - -#define dsDiamondModelDL "__OTR__overlays/ovl_Magic_Dark/sDiamondModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sDiamondModelDL[] = dsDiamondModelDL; -#else -static const char sDiamondModelDL[] __attribute__((aligned (2))) = dsDiamondModelDL; -#endif - +#include "align_asset_macro.h" + +#define dsDiamondTex "__OTR__overlays/ovl_Magic_Dark/sDiamondTex" +static const ALIGN_ASSET(2) char sDiamondTex[] = dsDiamondTex; + +#define dsDiamondVtx "__OTR__overlays/ovl_Magic_Dark/sDiamondVtx" +static const ALIGN_ASSET(2) char sDiamondVtx[] = dsDiamondVtx; + +#define dsDiamondMaterialDL "__OTR__overlays/ovl_Magic_Dark/sDiamondMaterialDL" +static const ALIGN_ASSET(2) char sDiamondMaterialDL[] = dsDiamondMaterialDL; + +#define dsDiamondModelDL "__OTR__overlays/ovl_Magic_Dark/sDiamondModelDL" +static const ALIGN_ASSET(2) char sDiamondModelDL[] = dsDiamondModelDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Magic_Fire/ovl_Magic_Fire.h b/soh/assets/overlays/ovl_Magic_Fire/ovl_Magic_Fire.h index ac184e102..60723abf0 100644 --- a/soh/assets/overlays/ovl_Magic_Fire/ovl_Magic_Fire.h +++ b/soh/assets/overlays/ovl_Magic_Fire/ovl_Magic_Fire.h @@ -1,30 +1,15 @@ #pragma once -#define dsTex "__OTR__overlays/ovl_Magic_Fire/sTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTex[] = dsTex; -#else -static const char sTex[] __attribute__((aligned (2))) = dsTex; -#endif - -#define dsSphereVtx "__OTR__overlays/ovl_Magic_Fire/sSphereVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sSphereVtx[] = dsSphereVtx; -#else -static const char sSphereVtx[] __attribute__((aligned (2))) = dsSphereVtx; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Magic_Fire/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsModelDL "__OTR__overlays/ovl_Magic_Fire/sModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sModelDL[] = dsModelDL; -#else -static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL; -#endif - +#include "align_asset_macro.h" + +#define dsTex "__OTR__overlays/ovl_Magic_Fire/sTex" +static const ALIGN_ASSET(2) char sTex[] = dsTex; + +#define dsSphereVtx "__OTR__overlays/ovl_Magic_Fire/sSphereVtx" +static const ALIGN_ASSET(2) char sSphereVtx[] = dsSphereVtx; + +#define dsMaterialDL "__OTR__overlays/ovl_Magic_Fire/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsModelDL "__OTR__overlays/ovl_Magic_Fire/sModelDL" +static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Magic_Wind/ovl_Magic_Wind.h b/soh/assets/overlays/ovl_Magic_Wind/ovl_Magic_Wind.h index 115c9f3fd..e7b7ce310 100644 --- a/soh/assets/overlays/ovl_Magic_Wind/ovl_Magic_Wind.h +++ b/soh/assets/overlays/ovl_Magic_Wind/ovl_Magic_Wind.h @@ -1,44 +1,21 @@ #pragma once -#define dsSkel "__OTR__overlays/ovl_Magic_Wind/sSkel" -#ifdef _WIN32 -static const __declspec(align(2)) char sSkel[] = dsSkel; -#else -static const char sSkel[] __attribute__((aligned (2))) = dsSkel; -#endif - -#define dsAnim "__OTR__overlays/ovl_Magic_Wind/sAnim" -#ifdef _WIN32 -static const __declspec(align(2)) char sAnim[] = dsAnim; -#else -static const char sAnim[] __attribute__((aligned (2))) = dsAnim; -#endif - -#define dsCylinderVtx "__OTR__overlays/ovl_Magic_Wind/sCylinderVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderVtx[] = dsCylinderVtx; -#else -static const char sCylinderVtx[] __attribute__((aligned (2))) = dsCylinderVtx; -#endif - -#define dsTex "__OTR__overlays/ovl_Magic_Wind/sTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTex[] = dsTex; -#else -static const char sTex[] __attribute__((aligned (2))) = dsTex; -#endif - -#define dsInnerCylinderDL "__OTR__overlays/ovl_Magic_Wind/sInnerCylinderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sInnerCylinderDL[] = dsInnerCylinderDL; -#else -static const char sInnerCylinderDL[] __attribute__((aligned (2))) = dsInnerCylinderDL; -#endif - -#define dsOuterCylinderDL "__OTR__overlays/ovl_Magic_Wind/sOuterCylinderDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sOuterCylinderDL[] = dsOuterCylinderDL; -#else -static const char sOuterCylinderDL[] __attribute__((aligned (2))) = dsOuterCylinderDL; -#endif - +#include "align_asset_macro.h" + +#define dsSkel "__OTR__overlays/ovl_Magic_Wind/sSkel" +static const ALIGN_ASSET(2) char sSkel[] = dsSkel; + +#define dsAnim "__OTR__overlays/ovl_Magic_Wind/sAnim" +static const ALIGN_ASSET(2) char sAnim[] = dsAnim; + +#define dsCylinderVtx "__OTR__overlays/ovl_Magic_Wind/sCylinderVtx" +static const ALIGN_ASSET(2) char sCylinderVtx[] = dsCylinderVtx; + +#define dsTex "__OTR__overlays/ovl_Magic_Wind/sTex" +static const ALIGN_ASSET(2) char sTex[] = dsTex; + +#define dsInnerCylinderDL "__OTR__overlays/ovl_Magic_Wind/sInnerCylinderDL" +static const ALIGN_ASSET(2) char sInnerCylinderDL[] = dsInnerCylinderDL; + +#define dsOuterCylinderDL "__OTR__overlays/ovl_Magic_Wind/sOuterCylinderDL" +static const ALIGN_ASSET(2) char sOuterCylinderDL[] = dsOuterCylinderDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Oceff_Spot/ovl_Oceff_Spot.h b/soh/assets/overlays/ovl_Oceff_Spot/ovl_Oceff_Spot.h index bee03daa4..31de04626 100644 --- a/soh/assets/overlays/ovl_Oceff_Spot/ovl_Oceff_Spot.h +++ b/soh/assets/overlays/ovl_Oceff_Spot/ovl_Oceff_Spot.h @@ -1,30 +1,15 @@ #pragma once -#define dsTex "__OTR__overlays/ovl_Oceff_Spot/sTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTex[] = dsTex; -#else -static const char sTex[] __attribute__((aligned (2))) = dsTex; -#endif - -#define dsCylinderVtx "__OTR__overlays/ovl_Oceff_Spot/sCylinderVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderVtx[] = dsCylinderVtx; -#else -static const char sCylinderVtx[] __attribute__((aligned (2))) = dsCylinderVtx; -#endif - -#define dsCylinderMaterialDL "__OTR__overlays/ovl_Oceff_Spot/sCylinderMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderMaterialDL[] = dsCylinderMaterialDL; -#else -static const char sCylinderMaterialDL[] __attribute__((aligned (2))) = dsCylinderMaterialDL; -#endif - -#define dsCylinderModelDL "__OTR__overlays/ovl_Oceff_Spot/sCylinderModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderModelDL[] = dsCylinderModelDL; -#else -static const char sCylinderModelDL[] __attribute__((aligned (2))) = dsCylinderModelDL; -#endif - +#include "align_asset_macro.h" + +#define dsTex "__OTR__overlays/ovl_Oceff_Spot/sTex" +static const ALIGN_ASSET(2) char sTex[] = dsTex; + +#define dsCylinderVtx "__OTR__overlays/ovl_Oceff_Spot/sCylinderVtx" +static const ALIGN_ASSET(2) char sCylinderVtx[] = dsCylinderVtx; + +#define dsCylinderMaterialDL "__OTR__overlays/ovl_Oceff_Spot/sCylinderMaterialDL" +static const ALIGN_ASSET(2) char sCylinderMaterialDL[] = dsCylinderMaterialDL; + +#define dsCylinderModelDL "__OTR__overlays/ovl_Oceff_Spot/sCylinderModelDL" +static const ALIGN_ASSET(2) char sCylinderModelDL[] = dsCylinderModelDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Oceff_Storm/ovl_Oceff_Storm.h b/soh/assets/overlays/ovl_Oceff_Storm/ovl_Oceff_Storm.h index 94df5397f..b392ed76b 100644 --- a/soh/assets/overlays/ovl_Oceff_Storm/ovl_Oceff_Storm.h +++ b/soh/assets/overlays/ovl_Oceff_Storm/ovl_Oceff_Storm.h @@ -1,37 +1,18 @@ #pragma once -#define dsTex "__OTR__overlays/ovl_Oceff_Storm/sTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTex[] = dsTex; -#else -static const char sTex[] __attribute__((aligned (2))) = dsTex; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Storm/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsCylinderVtx "__OTR__overlays/ovl_Oceff_Storm/sCylinderVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderVtx[] = dsCylinderVtx; -#else -static const char sCylinderVtx[] __attribute__((aligned (2))) = dsCylinderVtx; -#endif - -#define dsCylinderMaterialDL "__OTR__overlays/ovl_Oceff_Storm/sCylinderMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderMaterialDL[] = dsCylinderMaterialDL; -#else -static const char sCylinderMaterialDL[] __attribute__((aligned (2))) = dsCylinderMaterialDL; -#endif - -#define dsCylinderModelDL "__OTR__overlays/ovl_Oceff_Storm/sCylinderModelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sCylinderModelDL[] = dsCylinderModelDL; -#else -static const char sCylinderModelDL[] __attribute__((aligned (2))) = dsCylinderModelDL; -#endif - +#include "align_asset_macro.h" + +#define dsTex "__OTR__overlays/ovl_Oceff_Storm/sTex" +static const ALIGN_ASSET(2) char sTex[] = dsTex; + +#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Storm/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsCylinderVtx "__OTR__overlays/ovl_Oceff_Storm/sCylinderVtx" +static const ALIGN_ASSET(2) char sCylinderVtx[] = dsCylinderVtx; + +#define dsCylinderMaterialDL "__OTR__overlays/ovl_Oceff_Storm/sCylinderMaterialDL" +static const ALIGN_ASSET(2) char sCylinderMaterialDL[] = dsCylinderMaterialDL; + +#define dsCylinderModelDL "__OTR__overlays/ovl_Oceff_Storm/sCylinderModelDL" +static const ALIGN_ASSET(2) char sCylinderModelDL[] = dsCylinderModelDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Oceff_Wipe/ovl_Oceff_Wipe.h b/soh/assets/overlays/ovl_Oceff_Wipe/ovl_Oceff_Wipe.h index 27d2bfcc5..031538d5e 100644 --- a/soh/assets/overlays/ovl_Oceff_Wipe/ovl_Oceff_Wipe.h +++ b/soh/assets/overlays/ovl_Oceff_Wipe/ovl_Oceff_Wipe.h @@ -1,30 +1,15 @@ #pragma once -#define dsTex "__OTR__overlays/ovl_Oceff_Wipe/sTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTex[] = dsTex; -#else -static const char sTex[] __attribute__((aligned (2))) = dsTex; -#endif - -#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe/sFrustumVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sFrustumVtx[] = dsFrustumVtx; -#else -static const char sFrustumVtx[] __attribute__((aligned (2))) = dsFrustumVtx; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe/sFrustumDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sFrustumDL[] = dsFrustumDL; -#else -static const char sFrustumDL[] __attribute__((aligned (2))) = dsFrustumDL; -#endif - +#include "align_asset_macro.h" + +#define dsTex "__OTR__overlays/ovl_Oceff_Wipe/sTex" +static const ALIGN_ASSET(2) char sTex[] = dsTex; + +#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe/sFrustumVtx" +static const ALIGN_ASSET(2) char sFrustumVtx[] = dsFrustumVtx; + +#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe/sFrustumDL" +static const ALIGN_ASSET(2) char sFrustumDL[] = dsFrustumDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Oceff_Wipe2/ovl_Oceff_Wipe2.h b/soh/assets/overlays/ovl_Oceff_Wipe2/ovl_Oceff_Wipe2.h index 9a9d2b0d3..d1a0521c3 100644 --- a/soh/assets/overlays/ovl_Oceff_Wipe2/ovl_Oceff_Wipe2.h +++ b/soh/assets/overlays/ovl_Oceff_Wipe2/ovl_Oceff_Wipe2.h @@ -1,37 +1,18 @@ #pragma once -#define ds1Tex "__OTR__overlays/ovl_Oceff_Wipe2/s1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char s1Tex[] = ds1Tex; -#else -static const char s1Tex[] __attribute__((aligned (2))) = ds1Tex; -#endif - -#define ds2Tex "__OTR__overlays/ovl_Oceff_Wipe2/s2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char s2Tex[] = ds2Tex; -#else -static const char s2Tex[] __attribute__((aligned (2))) = ds2Tex; -#endif - -#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe2/sFrustumVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sFrustumVtx[] = dsFrustumVtx; -#else -static const char sFrustumVtx[] __attribute__((aligned (2))) = dsFrustumVtx; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe2/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe2/sFrustumDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sFrustumDL[] = dsFrustumDL; -#else -static const char sFrustumDL[] __attribute__((aligned (2))) = dsFrustumDL; -#endif - +#include "align_asset_macro.h" + +#define ds1Tex "__OTR__overlays/ovl_Oceff_Wipe2/s1Tex" +static const ALIGN_ASSET(2) char s1Tex[] = ds1Tex; + +#define ds2Tex "__OTR__overlays/ovl_Oceff_Wipe2/s2Tex" +static const ALIGN_ASSET(2) char s2Tex[] = ds2Tex; + +#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe2/sFrustumVtx" +static const ALIGN_ASSET(2) char sFrustumVtx[] = dsFrustumVtx; + +#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe2/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe2/sFrustumDL" +static const ALIGN_ASSET(2) char sFrustumDL[] = dsFrustumDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Oceff_Wipe3/ovl_Oceff_Wipe3.h b/soh/assets/overlays/ovl_Oceff_Wipe3/ovl_Oceff_Wipe3.h index 38949f52b..9e7d4d22e 100644 --- a/soh/assets/overlays/ovl_Oceff_Wipe3/ovl_Oceff_Wipe3.h +++ b/soh/assets/overlays/ovl_Oceff_Wipe3/ovl_Oceff_Wipe3.h @@ -1,30 +1,15 @@ #pragma once -#define dsTex "__OTR__overlays/ovl_Oceff_Wipe3/sTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTex[] = dsTex; -#else -static const char sTex[] __attribute__((aligned (2))) = dsTex; -#endif - -#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe3/sFrustumVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sFrustumVtx[] = dsFrustumVtx; -#else -static const char sFrustumVtx[] __attribute__((aligned (2))) = dsFrustumVtx; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe3/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe3/sFrustumDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sFrustumDL[] = dsFrustumDL; -#else -static const char sFrustumDL[] __attribute__((aligned (2))) = dsFrustumDL; -#endif - +#include "align_asset_macro.h" + +#define dsTex "__OTR__overlays/ovl_Oceff_Wipe3/sTex" +static const ALIGN_ASSET(2) char sTex[] = dsTex; + +#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe3/sFrustumVtx" +static const ALIGN_ASSET(2) char sFrustumVtx[] = dsFrustumVtx; + +#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe3/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe3/sFrustumDL" +static const ALIGN_ASSET(2) char sFrustumDL[] = dsFrustumDL; \ No newline at end of file diff --git a/soh/assets/overlays/ovl_Oceff_Wipe4/ovl_Oceff_Wipe4.h b/soh/assets/overlays/ovl_Oceff_Wipe4/ovl_Oceff_Wipe4.h index c6227a17a..fabab16b7 100644 --- a/soh/assets/overlays/ovl_Oceff_Wipe4/ovl_Oceff_Wipe4.h +++ b/soh/assets/overlays/ovl_Oceff_Wipe4/ovl_Oceff_Wipe4.h @@ -1,37 +1,18 @@ #pragma once -#define dsTex "__OTR__overlays/ovl_Oceff_Wipe4/sTex" -#ifdef _WIN32 -static const __declspec(align(2)) char sTex[] = dsTex; -#else -static const char sTex[] __attribute__((aligned (2))) = dsTex; -#endif - -#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe4/sFrustumVtx" -#ifdef _WIN32 -static const __declspec(align(2)) char sFrustumVtx[] = dsFrustumVtx; -#else -static const char sFrustumVtx[] __attribute__((aligned (2))) = dsFrustumVtx; -#endif - -#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe4/sMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL; -#else -static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL; -#endif - -#define dsUnusedMaterialDL "__OTR__overlays/ovl_Oceff_Wipe4/sUnusedMaterialDL" -#ifdef _WIN32 -static const __declspec(align(2)) char sUnusedMaterialDL[] = dsUnusedMaterialDL; -#else -static const char sUnusedMaterialDL[] __attribute__((aligned (2))) = dsUnusedMaterialDL; -#endif - -#define dsMaterial2DL "__OTR__overlays/ovl_Oceff_Wipe4/sMaterial2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char sMaterial2DL[] = dsMaterial2DL; -#else -static const char sMaterial2DL[] __attribute__((aligned (2))) = dsMaterial2DL; -#endif - +#include "align_asset_macro.h" + +#define dsTex "__OTR__overlays/ovl_Oceff_Wipe4/sTex" +static const ALIGN_ASSET(2) char sTex[] = dsTex; + +#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe4/sFrustumVtx" +static const ALIGN_ASSET(2) char sFrustumVtx[] = dsFrustumVtx; + +#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe4/sMaterialDL" +static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL; + +#define dsUnusedMaterialDL "__OTR__overlays/ovl_Oceff_Wipe4/sUnusedMaterialDL" +static const ALIGN_ASSET(2) char sUnusedMaterialDL[] = dsUnusedMaterialDL; + +#define dsMaterial2DL "__OTR__overlays/ovl_Oceff_Wipe4/sMaterial2DL" +static const ALIGN_ASSET(2) char sMaterial2DL[] = dsMaterial2DL; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_0.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_0.h index a7c9cc24c..6ce01bd0b 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_0.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_0.h @@ -1,114 +1,51 @@ #pragma once -#define dBmori1_room_0DL_005CC8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0DL_005CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0DL_005CC8[] = dBmori1_room_0DL_005CC8; -#else -static const char Bmori1_room_0DL_005CC8[] __attribute__((aligned (2))) = dBmori1_room_0DL_005CC8; -#endif - -#define dBmori1_room_0Tex_00B0F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00B0F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_00B0F8[] = dBmori1_room_0Tex_00B0F8; -#else -static const char Bmori1_room_0Tex_00B0F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_00B0F8; -#endif - -#define dBmori1_room_0Tex_00C2F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00C2F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_00C2F8[] = dBmori1_room_0Tex_00C2F8; -#else -static const char Bmori1_room_0Tex_00C2F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_00C2F8; -#endif - -#define dBmori1_room_0Tex_00C0F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00C0F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_00C0F8[] = dBmori1_room_0Tex_00C0F8; -#else -static const char Bmori1_room_0Tex_00C0F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_00C0F8; -#endif - -#define dBmori1_room_0Tex_00B8F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_00B8F8[] = dBmori1_room_0Tex_00B8F8; -#else -static const char Bmori1_room_0Tex_00B8F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_00B8F8; -#endif - -#define dBmori1_room_0Tex_0084F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0084F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_0084F8[] = dBmori1_room_0Tex_0084F8; -#else -static const char Bmori1_room_0Tex_0084F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_0084F8; -#endif - -#define dBmori1_room_0Tex_005CF8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_005CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_005CF8[] = dBmori1_room_0Tex_005CF8; -#else -static const char Bmori1_room_0Tex_005CF8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_005CF8; -#endif - -#define dBmori1_room_0Tex_00A0F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00A0F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_00A0F8[] = dBmori1_room_0Tex_00A0F8; -#else -static const char Bmori1_room_0Tex_00A0F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_00A0F8; -#endif - -#define dBmori1_room_0Tex_0088F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0088F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_0088F8[] = dBmori1_room_0Tex_0088F8; -#else -static const char Bmori1_room_0Tex_0088F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_0088F8; -#endif - -#define dBmori1_room_0Tex_0098F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0098F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_0098F8[] = dBmori1_room_0Tex_0098F8; -#else -static const char Bmori1_room_0Tex_0098F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_0098F8; -#endif - -#define dBmori1_room_0Tex_00B4F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00B4F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_00B4F8[] = dBmori1_room_0Tex_00B4F8; -#else -static const char Bmori1_room_0Tex_00B4F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_00B4F8; -#endif - -#define dBmori1_room_0Tex_007CF8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_007CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_007CF8[] = dBmori1_room_0Tex_007CF8; -#else -static const char Bmori1_room_0Tex_007CF8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_007CF8; -#endif - -#define dBmori1_room_0Tex_0074F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0074F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_0074F8[] = dBmori1_room_0Tex_0074F8; -#else -static const char Bmori1_room_0Tex_0074F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_0074F8; -#endif - -#define dBmori1_room_0Tex_0064F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0064F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_0064F8[] = dBmori1_room_0Tex_0064F8; -#else -static const char Bmori1_room_0Tex_0064F8[] __attribute__((aligned (2))) = dBmori1_room_0Tex_0064F8; -#endif - -#define dBmori1_room_0DL_00CB70 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0DL_00CB70" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0DL_00CB70[] = dBmori1_room_0DL_00CB70; -#else -static const char Bmori1_room_0DL_00CB70[] __attribute__((aligned (2))) = dBmori1_room_0DL_00CB70; -#endif - -#define dBmori1_room_0Tex_00CB88 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00CB88" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_0Tex_00CB88[] = dBmori1_room_0Tex_00CB88; -#else -static const char Bmori1_room_0Tex_00CB88[] __attribute__((aligned (2))) = dBmori1_room_0Tex_00CB88; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_0DL_005CC8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0DL_005CC8" +static const ALIGN_ASSET(2) char Bmori1_room_0DL_005CC8[] = dBmori1_room_0DL_005CC8; + +#define dBmori1_room_0Tex_00B0F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00B0F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_00B0F8[] = dBmori1_room_0Tex_00B0F8; + +#define dBmori1_room_0Tex_00C2F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00C2F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_00C2F8[] = dBmori1_room_0Tex_00C2F8; + +#define dBmori1_room_0Tex_00C0F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00C0F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_00C0F8[] = dBmori1_room_0Tex_00C0F8; + +#define dBmori1_room_0Tex_00B8F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00B8F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_00B8F8[] = dBmori1_room_0Tex_00B8F8; + +#define dBmori1_room_0Tex_0084F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0084F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_0084F8[] = dBmori1_room_0Tex_0084F8; + +#define dBmori1_room_0Tex_005CF8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_005CF8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_005CF8[] = dBmori1_room_0Tex_005CF8; + +#define dBmori1_room_0Tex_00A0F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00A0F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_00A0F8[] = dBmori1_room_0Tex_00A0F8; + +#define dBmori1_room_0Tex_0088F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0088F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_0088F8[] = dBmori1_room_0Tex_0088F8; + +#define dBmori1_room_0Tex_0098F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0098F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_0098F8[] = dBmori1_room_0Tex_0098F8; + +#define dBmori1_room_0Tex_00B4F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00B4F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_00B4F8[] = dBmori1_room_0Tex_00B4F8; + +#define dBmori1_room_0Tex_007CF8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_007CF8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_007CF8[] = dBmori1_room_0Tex_007CF8; + +#define dBmori1_room_0Tex_0074F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0074F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_0074F8[] = dBmori1_room_0Tex_0074F8; + +#define dBmori1_room_0Tex_0064F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_0064F8" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_0064F8[] = dBmori1_room_0Tex_0064F8; + +#define dBmori1_room_0DL_00CB70 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0DL_00CB70" +static const ALIGN_ASSET(2) char Bmori1_room_0DL_00CB70[] = dBmori1_room_0DL_00CB70; + +#define dBmori1_room_0Tex_00CB88 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_0Tex_00CB88" +static const ALIGN_ASSET(2) char Bmori1_room_0Tex_00CB88[] = dBmori1_room_0Tex_00CB88; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_1.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_1.h index 414fe9566..20a6379ea 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_1.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_1.h @@ -1,37 +1,18 @@ #pragma once -#define dBmori1_room_1DL_003350 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1DL_003350" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_1DL_003350[] = dBmori1_room_1DL_003350; -#else -static const char Bmori1_room_1DL_003350[] __attribute__((aligned (2))) = dBmori1_room_1DL_003350; -#endif - -#define dBmori1_room_1Tex_003B68 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1Tex_003B68" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_1Tex_003B68[] = dBmori1_room_1Tex_003B68; -#else -static const char Bmori1_room_1Tex_003B68[] __attribute__((aligned (2))) = dBmori1_room_1Tex_003B68; -#endif - -#define dBmori1_room_1Tex_003368 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1Tex_003368" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_1Tex_003368[] = dBmori1_room_1Tex_003368; -#else -static const char Bmori1_room_1Tex_003368[] __attribute__((aligned (2))) = dBmori1_room_1Tex_003368; -#endif - -#define dBmori1_room_1Tex_005368 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1Tex_005368" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_1Tex_005368[] = dBmori1_room_1Tex_005368; -#else -static const char Bmori1_room_1Tex_005368[] __attribute__((aligned (2))) = dBmori1_room_1Tex_005368; -#endif - -#define dBmori1_room_1Tex_004368 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1Tex_004368" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_1Tex_004368[] = dBmori1_room_1Tex_004368; -#else -static const char Bmori1_room_1Tex_004368[] __attribute__((aligned (2))) = dBmori1_room_1Tex_004368; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_1DL_003350 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1DL_003350" +static const ALIGN_ASSET(2) char Bmori1_room_1DL_003350[] = dBmori1_room_1DL_003350; + +#define dBmori1_room_1Tex_003B68 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1Tex_003B68" +static const ALIGN_ASSET(2) char Bmori1_room_1Tex_003B68[] = dBmori1_room_1Tex_003B68; + +#define dBmori1_room_1Tex_003368 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1Tex_003368" +static const ALIGN_ASSET(2) char Bmori1_room_1Tex_003368[] = dBmori1_room_1Tex_003368; + +#define dBmori1_room_1Tex_005368 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1Tex_005368" +static const ALIGN_ASSET(2) char Bmori1_room_1Tex_005368[] = dBmori1_room_1Tex_005368; + +#define dBmori1_room_1Tex_004368 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_1Tex_004368" +static const ALIGN_ASSET(2) char Bmori1_room_1Tex_004368[] = dBmori1_room_1Tex_004368; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_10.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_10.h index 2563c6891..465bcaba9 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_10.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_10.h @@ -1,58 +1,27 @@ #pragma once -#define dBmori1_room_10DL_001248 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10DL_001248" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_10DL_001248[] = dBmori1_room_10DL_001248; -#else -static const char Bmori1_room_10DL_001248[] __attribute__((aligned (2))) = dBmori1_room_10DL_001248; -#endif - -#define dBmori1_room_10Tex_002260 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_002260" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_10Tex_002260[] = dBmori1_room_10Tex_002260; -#else -static const char Bmori1_room_10Tex_002260[] __attribute__((aligned (2))) = dBmori1_room_10Tex_002260; -#endif - -#define dBmori1_room_10Tex_001A60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_001A60" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_10Tex_001A60[] = dBmori1_room_10Tex_001A60; -#else -static const char Bmori1_room_10Tex_001A60[] __attribute__((aligned (2))) = dBmori1_room_10Tex_001A60; -#endif - -#define dBmori1_room_10Tex_001260 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_001260" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_10Tex_001260[] = dBmori1_room_10Tex_001260; -#else -static const char Bmori1_room_10Tex_001260[] __attribute__((aligned (2))) = dBmori1_room_10Tex_001260; -#endif - -#define dBmori1_room_10Tex_002A60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_002A60" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_10Tex_002A60[] = dBmori1_room_10Tex_002A60; -#else -static const char Bmori1_room_10Tex_002A60[] __attribute__((aligned (2))) = dBmori1_room_10Tex_002A60; -#endif - -#define dBmori1_room_10Tex_003A60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_003A60" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_10Tex_003A60[] = dBmori1_room_10Tex_003A60; -#else -static const char Bmori1_room_10Tex_003A60[] __attribute__((aligned (2))) = dBmori1_room_10Tex_003A60; -#endif - -#define dBmori1_room_10DL_004BC8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10DL_004BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_10DL_004BC8[] = dBmori1_room_10DL_004BC8; -#else -static const char Bmori1_room_10DL_004BC8[] __attribute__((aligned (2))) = dBmori1_room_10DL_004BC8; -#endif - -#define dBmori1_room_10Tex_004BD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_004BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_10Tex_004BD8[] = dBmori1_room_10Tex_004BD8; -#else -static const char Bmori1_room_10Tex_004BD8[] __attribute__((aligned (2))) = dBmori1_room_10Tex_004BD8; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_10DL_001248 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10DL_001248" +static const ALIGN_ASSET(2) char Bmori1_room_10DL_001248[] = dBmori1_room_10DL_001248; + +#define dBmori1_room_10Tex_002260 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_002260" +static const ALIGN_ASSET(2) char Bmori1_room_10Tex_002260[] = dBmori1_room_10Tex_002260; + +#define dBmori1_room_10Tex_001A60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_001A60" +static const ALIGN_ASSET(2) char Bmori1_room_10Tex_001A60[] = dBmori1_room_10Tex_001A60; + +#define dBmori1_room_10Tex_001260 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_001260" +static const ALIGN_ASSET(2) char Bmori1_room_10Tex_001260[] = dBmori1_room_10Tex_001260; + +#define dBmori1_room_10Tex_002A60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_002A60" +static const ALIGN_ASSET(2) char Bmori1_room_10Tex_002A60[] = dBmori1_room_10Tex_002A60; + +#define dBmori1_room_10Tex_003A60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_003A60" +static const ALIGN_ASSET(2) char Bmori1_room_10Tex_003A60[] = dBmori1_room_10Tex_003A60; + +#define dBmori1_room_10DL_004BC8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10DL_004BC8" +static const ALIGN_ASSET(2) char Bmori1_room_10DL_004BC8[] = dBmori1_room_10DL_004BC8; + +#define dBmori1_room_10Tex_004BD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_10Tex_004BD8" +static const ALIGN_ASSET(2) char Bmori1_room_10Tex_004BD8[] = dBmori1_room_10Tex_004BD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_11.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_11.h index 68a3e1bc8..352f67fd8 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_11.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_11.h @@ -1,51 +1,24 @@ #pragma once -#define dBmori1_room_11DL_008158 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11DL_008158" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_11DL_008158[] = dBmori1_room_11DL_008158; -#else -static const char Bmori1_room_11DL_008158[] __attribute__((aligned (2))) = dBmori1_room_11DL_008158; -#endif - -#define dBmori1_room_11Tex_00A598 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_00A598" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_11Tex_00A598[] = dBmori1_room_11Tex_00A598; -#else -static const char Bmori1_room_11Tex_00A598[] __attribute__((aligned (2))) = dBmori1_room_11Tex_00A598; -#endif - -#define dBmori1_room_11Tex_009598 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_009598" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_11Tex_009598[] = dBmori1_room_11Tex_009598; -#else -static const char Bmori1_room_11Tex_009598[] __attribute__((aligned (2))) = dBmori1_room_11Tex_009598; -#endif - -#define dBmori1_room_11Tex_009D98 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_009D98" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_11Tex_009D98[] = dBmori1_room_11Tex_009D98; -#else -static const char Bmori1_room_11Tex_009D98[] __attribute__((aligned (2))) = dBmori1_room_11Tex_009D98; -#endif - -#define dBmori1_room_11Tex_009198 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_009198" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_11Tex_009198[] = dBmori1_room_11Tex_009198; -#else -static const char Bmori1_room_11Tex_009198[] __attribute__((aligned (2))) = dBmori1_room_11Tex_009198; -#endif - -#define dBmori1_room_11Tex_008198 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_008198" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_11Tex_008198[] = dBmori1_room_11Tex_008198; -#else -static const char Bmori1_room_11Tex_008198[] __attribute__((aligned (2))) = dBmori1_room_11Tex_008198; -#endif - -#define dBmori1_room_11DL_00ABD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11DL_00ABD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_11DL_00ABD0[] = dBmori1_room_11DL_00ABD0; -#else -static const char Bmori1_room_11DL_00ABD0[] __attribute__((aligned (2))) = dBmori1_room_11DL_00ABD0; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_11DL_008158 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11DL_008158" +static const ALIGN_ASSET(2) char Bmori1_room_11DL_008158[] = dBmori1_room_11DL_008158; + +#define dBmori1_room_11Tex_00A598 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_00A598" +static const ALIGN_ASSET(2) char Bmori1_room_11Tex_00A598[] = dBmori1_room_11Tex_00A598; + +#define dBmori1_room_11Tex_009598 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_009598" +static const ALIGN_ASSET(2) char Bmori1_room_11Tex_009598[] = dBmori1_room_11Tex_009598; + +#define dBmori1_room_11Tex_009D98 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_009D98" +static const ALIGN_ASSET(2) char Bmori1_room_11Tex_009D98[] = dBmori1_room_11Tex_009D98; + +#define dBmori1_room_11Tex_009198 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_009198" +static const ALIGN_ASSET(2) char Bmori1_room_11Tex_009198[] = dBmori1_room_11Tex_009198; + +#define dBmori1_room_11Tex_008198 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11Tex_008198" +static const ALIGN_ASSET(2) char Bmori1_room_11Tex_008198[] = dBmori1_room_11Tex_008198; + +#define dBmori1_room_11DL_00ABD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_11DL_00ABD0" +static const ALIGN_ASSET(2) char Bmori1_room_11DL_00ABD0[] = dBmori1_room_11DL_00ABD0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_12.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_12.h index ddddc8ded..94adeab13 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_12.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_12.h @@ -1,72 +1,33 @@ #pragma once -#define dBmori1_room_12DL_0049E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12DL_0049E8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12DL_0049E8[] = dBmori1_room_12DL_0049E8; -#else -static const char Bmori1_room_12DL_0049E8[] __attribute__((aligned (2))) = dBmori1_room_12DL_0049E8; -#endif - -#define dBmori1_room_12Tex_006600 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_006600" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12Tex_006600[] = dBmori1_room_12Tex_006600; -#else -static const char Bmori1_room_12Tex_006600[] __attribute__((aligned (2))) = dBmori1_room_12Tex_006600; -#endif - -#define dBmori1_room_12Tex_005E00 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_005E00" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12Tex_005E00[] = dBmori1_room_12Tex_005E00; -#else -static const char Bmori1_room_12Tex_005E00[] __attribute__((aligned (2))) = dBmori1_room_12Tex_005E00; -#endif - -#define dBmori1_room_12Tex_005600 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_005600" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12Tex_005600[] = dBmori1_room_12Tex_005600; -#else -static const char Bmori1_room_12Tex_005600[] __attribute__((aligned (2))) = dBmori1_room_12Tex_005600; -#endif - -#define dBmori1_room_12Tex_006E00 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_006E00" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12Tex_006E00[] = dBmori1_room_12Tex_006E00; -#else -static const char Bmori1_room_12Tex_006E00[] __attribute__((aligned (2))) = dBmori1_room_12Tex_006E00; -#endif - -#define dBmori1_room_12Tex_004E00 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_004E00" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12Tex_004E00[] = dBmori1_room_12Tex_004E00; -#else -static const char Bmori1_room_12Tex_004E00[] __attribute__((aligned (2))) = dBmori1_room_12Tex_004E00; -#endif - -#define dBmori1_room_12Tex_004A00 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_004A00" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12Tex_004A00[] = dBmori1_room_12Tex_004A00; -#else -static const char Bmori1_room_12Tex_004A00[] __attribute__((aligned (2))) = dBmori1_room_12Tex_004A00; -#endif - -#define dBmori1_room_12Tex_007200 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12Tex_007200[] = dBmori1_room_12Tex_007200; -#else -static const char Bmori1_room_12Tex_007200[] __attribute__((aligned (2))) = dBmori1_room_12Tex_007200; -#endif - -#define dBmori1_room_12DL_007BC8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12DL_007BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12DL_007BC8[] = dBmori1_room_12DL_007BC8; -#else -static const char Bmori1_room_12DL_007BC8[] __attribute__((aligned (2))) = dBmori1_room_12DL_007BC8; -#endif - -#define dBmori1_room_12Tex_007BD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_007BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_12Tex_007BD8[] = dBmori1_room_12Tex_007BD8; -#else -static const char Bmori1_room_12Tex_007BD8[] __attribute__((aligned (2))) = dBmori1_room_12Tex_007BD8; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_12DL_0049E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12DL_0049E8" +static const ALIGN_ASSET(2) char Bmori1_room_12DL_0049E8[] = dBmori1_room_12DL_0049E8; + +#define dBmori1_room_12Tex_006600 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_006600" +static const ALIGN_ASSET(2) char Bmori1_room_12Tex_006600[] = dBmori1_room_12Tex_006600; + +#define dBmori1_room_12Tex_005E00 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_005E00" +static const ALIGN_ASSET(2) char Bmori1_room_12Tex_005E00[] = dBmori1_room_12Tex_005E00; + +#define dBmori1_room_12Tex_005600 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_005600" +static const ALIGN_ASSET(2) char Bmori1_room_12Tex_005600[] = dBmori1_room_12Tex_005600; + +#define dBmori1_room_12Tex_006E00 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_006E00" +static const ALIGN_ASSET(2) char Bmori1_room_12Tex_006E00[] = dBmori1_room_12Tex_006E00; + +#define dBmori1_room_12Tex_004E00 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_004E00" +static const ALIGN_ASSET(2) char Bmori1_room_12Tex_004E00[] = dBmori1_room_12Tex_004E00; + +#define dBmori1_room_12Tex_004A00 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_004A00" +static const ALIGN_ASSET(2) char Bmori1_room_12Tex_004A00[] = dBmori1_room_12Tex_004A00; + +#define dBmori1_room_12Tex_007200 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_007200" +static const ALIGN_ASSET(2) char Bmori1_room_12Tex_007200[] = dBmori1_room_12Tex_007200; + +#define dBmori1_room_12DL_007BC8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12DL_007BC8" +static const ALIGN_ASSET(2) char Bmori1_room_12DL_007BC8[] = dBmori1_room_12DL_007BC8; + +#define dBmori1_room_12Tex_007BD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_12Tex_007BD8" +static const ALIGN_ASSET(2) char Bmori1_room_12Tex_007BD8[] = dBmori1_room_12Tex_007BD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_13.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_13.h index 6f7f997b1..80c7d9d76 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_13.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_13.h @@ -1,72 +1,33 @@ #pragma once -#define dBmori1_room_13DL_004CB8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13DL_004CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13DL_004CB8[] = dBmori1_room_13DL_004CB8; -#else -static const char Bmori1_room_13DL_004CB8[] __attribute__((aligned (2))) = dBmori1_room_13DL_004CB8; -#endif - -#define dBmori1_room_13Tex_006CD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_006CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13Tex_006CD0[] = dBmori1_room_13Tex_006CD0; -#else -static const char Bmori1_room_13Tex_006CD0[] __attribute__((aligned (2))) = dBmori1_room_13Tex_006CD0; -#endif - -#define dBmori1_room_13Tex_0064D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0064D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13Tex_0064D0[] = dBmori1_room_13Tex_0064D0; -#else -static const char Bmori1_room_13Tex_0064D0[] __attribute__((aligned (2))) = dBmori1_room_13Tex_0064D0; -#endif - -#define dBmori1_room_13Tex_005CD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_005CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13Tex_005CD0[] = dBmori1_room_13Tex_005CD0; -#else -static const char Bmori1_room_13Tex_005CD0[] __attribute__((aligned (2))) = dBmori1_room_13Tex_005CD0; -#endif - -#define dBmori1_room_13Tex_0054D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0054D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13Tex_0054D0[] = dBmori1_room_13Tex_0054D0; -#else -static const char Bmori1_room_13Tex_0054D0[] __attribute__((aligned (2))) = dBmori1_room_13Tex_0054D0; -#endif - -#define dBmori1_room_13Tex_0074D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0074D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13Tex_0074D0[] = dBmori1_room_13Tex_0074D0; -#else -static const char Bmori1_room_13Tex_0074D0[] __attribute__((aligned (2))) = dBmori1_room_13Tex_0074D0; -#endif - -#define dBmori1_room_13Tex_004CD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_004CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13Tex_004CD0[] = dBmori1_room_13Tex_004CD0; -#else -static const char Bmori1_room_13Tex_004CD0[] __attribute__((aligned (2))) = dBmori1_room_13Tex_004CD0; -#endif - -#define dBmori1_room_13Tex_0078D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0078D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13Tex_0078D0[] = dBmori1_room_13Tex_0078D0; -#else -static const char Bmori1_room_13Tex_0078D0[] __attribute__((aligned (2))) = dBmori1_room_13Tex_0078D0; -#endif - -#define dBmori1_room_13DL_008298 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13DL_008298" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13DL_008298[] = dBmori1_room_13DL_008298; -#else -static const char Bmori1_room_13DL_008298[] __attribute__((aligned (2))) = dBmori1_room_13DL_008298; -#endif - -#define dBmori1_room_13Tex_0082A8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0082A8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_13Tex_0082A8[] = dBmori1_room_13Tex_0082A8; -#else -static const char Bmori1_room_13Tex_0082A8[] __attribute__((aligned (2))) = dBmori1_room_13Tex_0082A8; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_13DL_004CB8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13DL_004CB8" +static const ALIGN_ASSET(2) char Bmori1_room_13DL_004CB8[] = dBmori1_room_13DL_004CB8; + +#define dBmori1_room_13Tex_006CD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_006CD0" +static const ALIGN_ASSET(2) char Bmori1_room_13Tex_006CD0[] = dBmori1_room_13Tex_006CD0; + +#define dBmori1_room_13Tex_0064D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0064D0" +static const ALIGN_ASSET(2) char Bmori1_room_13Tex_0064D0[] = dBmori1_room_13Tex_0064D0; + +#define dBmori1_room_13Tex_005CD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_005CD0" +static const ALIGN_ASSET(2) char Bmori1_room_13Tex_005CD0[] = dBmori1_room_13Tex_005CD0; + +#define dBmori1_room_13Tex_0054D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0054D0" +static const ALIGN_ASSET(2) char Bmori1_room_13Tex_0054D0[] = dBmori1_room_13Tex_0054D0; + +#define dBmori1_room_13Tex_0074D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0074D0" +static const ALIGN_ASSET(2) char Bmori1_room_13Tex_0074D0[] = dBmori1_room_13Tex_0074D0; + +#define dBmori1_room_13Tex_004CD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_004CD0" +static const ALIGN_ASSET(2) char Bmori1_room_13Tex_004CD0[] = dBmori1_room_13Tex_004CD0; + +#define dBmori1_room_13Tex_0078D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0078D0" +static const ALIGN_ASSET(2) char Bmori1_room_13Tex_0078D0[] = dBmori1_room_13Tex_0078D0; + +#define dBmori1_room_13DL_008298 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13DL_008298" +static const ALIGN_ASSET(2) char Bmori1_room_13DL_008298[] = dBmori1_room_13DL_008298; + +#define dBmori1_room_13Tex_0082A8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_13Tex_0082A8" +static const ALIGN_ASSET(2) char Bmori1_room_13Tex_0082A8[] = dBmori1_room_13Tex_0082A8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_14.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_14.h index 0b2c40a5b..fa25dd838 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_14.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_14.h @@ -1,58 +1,27 @@ #pragma once -#define dBmori1_room_14DL_003520 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14DL_003520" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_14DL_003520[] = dBmori1_room_14DL_003520; -#else -static const char Bmori1_room_14DL_003520[] __attribute__((aligned (2))) = dBmori1_room_14DL_003520; -#endif - -#define dBmori1_room_14Tex_003560 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_003560" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_14Tex_003560[] = dBmori1_room_14Tex_003560; -#else -static const char Bmori1_room_14Tex_003560[] __attribute__((aligned (2))) = dBmori1_room_14Tex_003560; -#endif - -#define dBmori1_room_14Tex_004D60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_004D60" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_14Tex_004D60[] = dBmori1_room_14Tex_004D60; -#else -static const char Bmori1_room_14Tex_004D60[] __attribute__((aligned (2))) = dBmori1_room_14Tex_004D60; -#endif - -#define dBmori1_room_14Tex_004960 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_004960" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_14Tex_004960[] = dBmori1_room_14Tex_004960; -#else -static const char Bmori1_room_14Tex_004960[] __attribute__((aligned (2))) = dBmori1_room_14Tex_004960; -#endif - -#define dBmori1_room_14Tex_004160 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_004160" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_14Tex_004160[] = dBmori1_room_14Tex_004160; -#else -static const char Bmori1_room_14Tex_004160[] __attribute__((aligned (2))) = dBmori1_room_14Tex_004160; -#endif - -#define dBmori1_room_14Tex_003960 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_003960" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_14Tex_003960[] = dBmori1_room_14Tex_003960; -#else -static const char Bmori1_room_14Tex_003960[] __attribute__((aligned (2))) = dBmori1_room_14Tex_003960; -#endif - -#define dBmori1_room_14DL_005760 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14DL_005760" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_14DL_005760[] = dBmori1_room_14DL_005760; -#else -static const char Bmori1_room_14DL_005760[] __attribute__((aligned (2))) = dBmori1_room_14DL_005760; -#endif - -#define dBmori1_room_14Tex_005770 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_005770" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_14Tex_005770[] = dBmori1_room_14Tex_005770; -#else -static const char Bmori1_room_14Tex_005770[] __attribute__((aligned (2))) = dBmori1_room_14Tex_005770; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_14DL_003520 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14DL_003520" +static const ALIGN_ASSET(2) char Bmori1_room_14DL_003520[] = dBmori1_room_14DL_003520; + +#define dBmori1_room_14Tex_003560 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_003560" +static const ALIGN_ASSET(2) char Bmori1_room_14Tex_003560[] = dBmori1_room_14Tex_003560; + +#define dBmori1_room_14Tex_004D60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_004D60" +static const ALIGN_ASSET(2) char Bmori1_room_14Tex_004D60[] = dBmori1_room_14Tex_004D60; + +#define dBmori1_room_14Tex_004960 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_004960" +static const ALIGN_ASSET(2) char Bmori1_room_14Tex_004960[] = dBmori1_room_14Tex_004960; + +#define dBmori1_room_14Tex_004160 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_004160" +static const ALIGN_ASSET(2) char Bmori1_room_14Tex_004160[] = dBmori1_room_14Tex_004160; + +#define dBmori1_room_14Tex_003960 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_003960" +static const ALIGN_ASSET(2) char Bmori1_room_14Tex_003960[] = dBmori1_room_14Tex_003960; + +#define dBmori1_room_14DL_005760 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14DL_005760" +static const ALIGN_ASSET(2) char Bmori1_room_14DL_005760[] = dBmori1_room_14DL_005760; + +#define dBmori1_room_14Tex_005770 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_14Tex_005770" +static const ALIGN_ASSET(2) char Bmori1_room_14Tex_005770[] = dBmori1_room_14Tex_005770; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_15.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_15.h index 75482d381..52d91e221 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_15.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_15.h @@ -1,30 +1,15 @@ #pragma once -#define dBmori1_room_15DL_0012D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_15DL_0012D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_15DL_0012D0[] = dBmori1_room_15DL_0012D0; -#else -static const char Bmori1_room_15DL_0012D0[] __attribute__((aligned (2))) = dBmori1_room_15DL_0012D0; -#endif - -#define dBmori1_room_15Tex_0012E0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_15Tex_0012E0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_15Tex_0012E0[] = dBmori1_room_15Tex_0012E0; -#else -static const char Bmori1_room_15Tex_0012E0[] __attribute__((aligned (2))) = dBmori1_room_15Tex_0012E0; -#endif - -#define dBmori1_room_15Tex_001AE0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_15Tex_001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_15Tex_001AE0[] = dBmori1_room_15Tex_001AE0; -#else -static const char Bmori1_room_15Tex_001AE0[] __attribute__((aligned (2))) = dBmori1_room_15Tex_001AE0; -#endif - -#define dBmori1_room_15Tex_001EE0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_15Tex_001EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_15Tex_001EE0[] = dBmori1_room_15Tex_001EE0; -#else -static const char Bmori1_room_15Tex_001EE0[] __attribute__((aligned (2))) = dBmori1_room_15Tex_001EE0; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_15DL_0012D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_15DL_0012D0" +static const ALIGN_ASSET(2) char Bmori1_room_15DL_0012D0[] = dBmori1_room_15DL_0012D0; + +#define dBmori1_room_15Tex_0012E0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_15Tex_0012E0" +static const ALIGN_ASSET(2) char Bmori1_room_15Tex_0012E0[] = dBmori1_room_15Tex_0012E0; + +#define dBmori1_room_15Tex_001AE0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_15Tex_001AE0" +static const ALIGN_ASSET(2) char Bmori1_room_15Tex_001AE0[] = dBmori1_room_15Tex_001AE0; + +#define dBmori1_room_15Tex_001EE0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_15Tex_001EE0" +static const ALIGN_ASSET(2) char Bmori1_room_15Tex_001EE0[] = dBmori1_room_15Tex_001EE0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_16.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_16.h index 89de27a33..c592430b3 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_16.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_16.h @@ -1,44 +1,21 @@ #pragma once -#define dBmori1_room_16DL_002F88 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16DL_002F88" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_16DL_002F88[] = dBmori1_room_16DL_002F88; -#else -static const char Bmori1_room_16DL_002F88[] __attribute__((aligned (2))) = dBmori1_room_16DL_002F88; -#endif - -#define dBmori1_room_16Tex_003F98 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_003F98" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_16Tex_003F98[] = dBmori1_room_16Tex_003F98; -#else -static const char Bmori1_room_16Tex_003F98[] __attribute__((aligned (2))) = dBmori1_room_16Tex_003F98; -#endif - -#define dBmori1_room_16Tex_004398 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_004398" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_16Tex_004398[] = dBmori1_room_16Tex_004398; -#else -static const char Bmori1_room_16Tex_004398[] __attribute__((aligned (2))) = dBmori1_room_16Tex_004398; -#endif - -#define dBmori1_room_16Tex_004798 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_16Tex_004798[] = dBmori1_room_16Tex_004798; -#else -static const char Bmori1_room_16Tex_004798[] __attribute__((aligned (2))) = dBmori1_room_16Tex_004798; -#endif - -#define dBmori1_room_16Tex_002F98 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_002F98" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_16Tex_002F98[] = dBmori1_room_16Tex_002F98; -#else -static const char Bmori1_room_16Tex_002F98[] __attribute__((aligned (2))) = dBmori1_room_16Tex_002F98; -#endif - -#define dBmori1_room_16Tex_003798 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_003798" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_16Tex_003798[] = dBmori1_room_16Tex_003798; -#else -static const char Bmori1_room_16Tex_003798[] __attribute__((aligned (2))) = dBmori1_room_16Tex_003798; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_16DL_002F88 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16DL_002F88" +static const ALIGN_ASSET(2) char Bmori1_room_16DL_002F88[] = dBmori1_room_16DL_002F88; + +#define dBmori1_room_16Tex_003F98 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_003F98" +static const ALIGN_ASSET(2) char Bmori1_room_16Tex_003F98[] = dBmori1_room_16Tex_003F98; + +#define dBmori1_room_16Tex_004398 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_004398" +static const ALIGN_ASSET(2) char Bmori1_room_16Tex_004398[] = dBmori1_room_16Tex_004398; + +#define dBmori1_room_16Tex_004798 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_004798" +static const ALIGN_ASSET(2) char Bmori1_room_16Tex_004798[] = dBmori1_room_16Tex_004798; + +#define dBmori1_room_16Tex_002F98 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_002F98" +static const ALIGN_ASSET(2) char Bmori1_room_16Tex_002F98[] = dBmori1_room_16Tex_002F98; + +#define dBmori1_room_16Tex_003798 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_16Tex_003798" +static const ALIGN_ASSET(2) char Bmori1_room_16Tex_003798[] = dBmori1_room_16Tex_003798; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_17.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_17.h index 3435a4218..85812f4a9 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_17.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_17.h @@ -1,58 +1,27 @@ #pragma once -#define dBmori1_room_17DL_006490 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17DL_006490" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_17DL_006490[] = dBmori1_room_17DL_006490; -#else -static const char Bmori1_room_17DL_006490[] __attribute__((aligned (2))) = dBmori1_room_17DL_006490; -#endif - -#define dBmori1_room_17Tex_007CE8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_007CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_17Tex_007CE8[] = dBmori1_room_17Tex_007CE8; -#else -static const char Bmori1_room_17Tex_007CE8[] __attribute__((aligned (2))) = dBmori1_room_17Tex_007CE8; -#endif - -#define dBmori1_room_17Tex_0080E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0080E8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_17Tex_0080E8[] = dBmori1_room_17Tex_0080E8; -#else -static const char Bmori1_room_17Tex_0080E8[] __attribute__((aligned (2))) = dBmori1_room_17Tex_0080E8; -#endif - -#define dBmori1_room_17Tex_0088E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0088E8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_17Tex_0088E8[] = dBmori1_room_17Tex_0088E8; -#else -static const char Bmori1_room_17Tex_0088E8[] __attribute__((aligned (2))) = dBmori1_room_17Tex_0088E8; -#endif - -#define dBmori1_room_17Tex_0064E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0064E8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_17Tex_0064E8[] = dBmori1_room_17Tex_0064E8; -#else -static const char Bmori1_room_17Tex_0064E8[] __attribute__((aligned (2))) = dBmori1_room_17Tex_0064E8; -#endif - -#define dBmori1_room_17Tex_006CE8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_006CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_17Tex_006CE8[] = dBmori1_room_17Tex_006CE8; -#else -static const char Bmori1_room_17Tex_006CE8[] __attribute__((aligned (2))) = dBmori1_room_17Tex_006CE8; -#endif - -#define dBmori1_room_17Tex_0074E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0074E8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_17Tex_0074E8[] = dBmori1_room_17Tex_0074E8; -#else -static const char Bmori1_room_17Tex_0074E8[] __attribute__((aligned (2))) = dBmori1_room_17Tex_0074E8; -#endif - -#define dBmori1_room_17Tex_0078E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0078E8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_17Tex_0078E8[] = dBmori1_room_17Tex_0078E8; -#else -static const char Bmori1_room_17Tex_0078E8[] __attribute__((aligned (2))) = dBmori1_room_17Tex_0078E8; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_17DL_006490 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17DL_006490" +static const ALIGN_ASSET(2) char Bmori1_room_17DL_006490[] = dBmori1_room_17DL_006490; + +#define dBmori1_room_17Tex_007CE8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_007CE8" +static const ALIGN_ASSET(2) char Bmori1_room_17Tex_007CE8[] = dBmori1_room_17Tex_007CE8; + +#define dBmori1_room_17Tex_0080E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0080E8" +static const ALIGN_ASSET(2) char Bmori1_room_17Tex_0080E8[] = dBmori1_room_17Tex_0080E8; + +#define dBmori1_room_17Tex_0088E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0088E8" +static const ALIGN_ASSET(2) char Bmori1_room_17Tex_0088E8[] = dBmori1_room_17Tex_0088E8; + +#define dBmori1_room_17Tex_0064E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0064E8" +static const ALIGN_ASSET(2) char Bmori1_room_17Tex_0064E8[] = dBmori1_room_17Tex_0064E8; + +#define dBmori1_room_17Tex_006CE8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_006CE8" +static const ALIGN_ASSET(2) char Bmori1_room_17Tex_006CE8[] = dBmori1_room_17Tex_006CE8; + +#define dBmori1_room_17Tex_0074E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0074E8" +static const ALIGN_ASSET(2) char Bmori1_room_17Tex_0074E8[] = dBmori1_room_17Tex_0074E8; + +#define dBmori1_room_17Tex_0078E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_17Tex_0078E8" +static const ALIGN_ASSET(2) char Bmori1_room_17Tex_0078E8[] = dBmori1_room_17Tex_0078E8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_18.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_18.h index f598b90a9..2409b7668 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_18.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_18.h @@ -1,16 +1,9 @@ #pragma once -#define dBmori1_room_18DL_000B20 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_18DL_000B20" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_18DL_000B20[] = dBmori1_room_18DL_000B20; -#else -static const char Bmori1_room_18DL_000B20[] __attribute__((aligned (2))) = dBmori1_room_18DL_000B20; -#endif - -#define dBmori1_room_18Tex_000B30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_18Tex_000B30" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_18Tex_000B30[] = dBmori1_room_18Tex_000B30; -#else -static const char Bmori1_room_18Tex_000B30[] __attribute__((aligned (2))) = dBmori1_room_18Tex_000B30; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_18DL_000B20 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_18DL_000B20" +static const ALIGN_ASSET(2) char Bmori1_room_18DL_000B20[] = dBmori1_room_18DL_000B20; + +#define dBmori1_room_18Tex_000B30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_18Tex_000B30" +static const ALIGN_ASSET(2) char Bmori1_room_18Tex_000B30[] = dBmori1_room_18Tex_000B30; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_19.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_19.h index 0858658e5..a96840148 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_19.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_19.h @@ -1,9 +1,6 @@ #pragma once -#define dBmori1_room_19DL_0004F0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_19DL_0004F0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_19DL_0004F0[] = dBmori1_room_19DL_0004F0; -#else -static const char Bmori1_room_19DL_0004F0[] __attribute__((aligned (2))) = dBmori1_room_19DL_0004F0; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_19DL_0004F0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_19DL_0004F0" +static const ALIGN_ASSET(2) char Bmori1_room_19DL_0004F0[] = dBmori1_room_19DL_0004F0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_2.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_2.h index e37b72070..eb9227a7c 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_2.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_2.h @@ -1,86 +1,39 @@ #pragma once -#define dBmori1_room_2DL_00A328 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2DL_00A328" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2DL_00A328[] = dBmori1_room_2DL_00A328; -#else -static const char Bmori1_room_2DL_00A328[] __attribute__((aligned (2))) = dBmori1_room_2DL_00A328; -#endif - -#define dBmori1_room_2Tex_00A380 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00A380" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00A380[] = dBmori1_room_2Tex_00A380; -#else -static const char Bmori1_room_2Tex_00A380[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00A380; -#endif - -#define dBmori1_room_2Tex_00F180 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00F180" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00F180[] = dBmori1_room_2Tex_00F180; -#else -static const char Bmori1_room_2Tex_00F180[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00F180; -#endif - -#define dBmori1_room_2Tex_00DD80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00DD80" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00DD80[] = dBmori1_room_2Tex_00DD80; -#else -static const char Bmori1_room_2Tex_00DD80[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00DD80; -#endif - -#define dBmori1_room_2Tex_00AB80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00AB80" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00AB80[] = dBmori1_room_2Tex_00AB80; -#else -static const char Bmori1_room_2Tex_00AB80[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00AB80; -#endif - -#define dBmori1_room_2Tex_00DB80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00DB80" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00DB80[] = dBmori1_room_2Tex_00DB80; -#else -static const char Bmori1_room_2Tex_00DB80[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00DB80; -#endif - -#define dBmori1_room_2Tex_00E580 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00E580" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00E580[] = dBmori1_room_2Tex_00E580; -#else -static const char Bmori1_room_2Tex_00E580[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00E580; -#endif - -#define dBmori1_room_2Tex_00D380 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00D380" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00D380[] = dBmori1_room_2Tex_00D380; -#else -static const char Bmori1_room_2Tex_00D380[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00D380; -#endif - -#define dBmori1_room_2Tex_00CF80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00CF80" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00CF80[] = dBmori1_room_2Tex_00CF80; -#else -static const char Bmori1_room_2Tex_00CF80[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00CF80; -#endif - -#define dBmori1_room_2Tex_00BF80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00BF80" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00BF80[] = dBmori1_room_2Tex_00BF80; -#else -static const char Bmori1_room_2Tex_00BF80[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00BF80; -#endif - -#define dBmori1_room_2Tex_00AF80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00AF80" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00AF80[] = dBmori1_room_2Tex_00AF80; -#else -static const char Bmori1_room_2Tex_00AF80[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00AF80; -#endif - -#define dBmori1_room_2Tex_00E980 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00E980" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_2Tex_00E980[] = dBmori1_room_2Tex_00E980; -#else -static const char Bmori1_room_2Tex_00E980[] __attribute__((aligned (2))) = dBmori1_room_2Tex_00E980; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_2DL_00A328 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2DL_00A328" +static const ALIGN_ASSET(2) char Bmori1_room_2DL_00A328[] = dBmori1_room_2DL_00A328; + +#define dBmori1_room_2Tex_00A380 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00A380" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00A380[] = dBmori1_room_2Tex_00A380; + +#define dBmori1_room_2Tex_00F180 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00F180" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00F180[] = dBmori1_room_2Tex_00F180; + +#define dBmori1_room_2Tex_00DD80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00DD80" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00DD80[] = dBmori1_room_2Tex_00DD80; + +#define dBmori1_room_2Tex_00AB80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00AB80" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00AB80[] = dBmori1_room_2Tex_00AB80; + +#define dBmori1_room_2Tex_00DB80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00DB80" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00DB80[] = dBmori1_room_2Tex_00DB80; + +#define dBmori1_room_2Tex_00E580 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00E580" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00E580[] = dBmori1_room_2Tex_00E580; + +#define dBmori1_room_2Tex_00D380 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00D380" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00D380[] = dBmori1_room_2Tex_00D380; + +#define dBmori1_room_2Tex_00CF80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00CF80" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00CF80[] = dBmori1_room_2Tex_00CF80; + +#define dBmori1_room_2Tex_00BF80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00BF80" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00BF80[] = dBmori1_room_2Tex_00BF80; + +#define dBmori1_room_2Tex_00AF80 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00AF80" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00AF80[] = dBmori1_room_2Tex_00AF80; + +#define dBmori1_room_2Tex_00E980 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_2Tex_00E980" +static const ALIGN_ASSET(2) char Bmori1_room_2Tex_00E980[] = dBmori1_room_2Tex_00E980; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_20.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_20.h index 15a7aca09..9c4cf0a87 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_20.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_20.h @@ -1,23 +1,12 @@ #pragma once -#define dBmori1_room_20DL_0006E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_20DL_0006E8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_20DL_0006E8[] = dBmori1_room_20DL_0006E8; -#else -static const char Bmori1_room_20DL_0006E8[] __attribute__((aligned (2))) = dBmori1_room_20DL_0006E8; -#endif - -#define dBmori1_room_20Tex_0006F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_20Tex_0006F8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_20Tex_0006F8[] = dBmori1_room_20Tex_0006F8; -#else -static const char Bmori1_room_20Tex_0006F8[] __attribute__((aligned (2))) = dBmori1_room_20Tex_0006F8; -#endif - -#define dBmori1_room_20Tex_000EF8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_20Tex_000EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_20Tex_000EF8[] = dBmori1_room_20Tex_000EF8; -#else -static const char Bmori1_room_20Tex_000EF8[] __attribute__((aligned (2))) = dBmori1_room_20Tex_000EF8; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_20DL_0006E8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_20DL_0006E8" +static const ALIGN_ASSET(2) char Bmori1_room_20DL_0006E8[] = dBmori1_room_20DL_0006E8; + +#define dBmori1_room_20Tex_0006F8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_20Tex_0006F8" +static const ALIGN_ASSET(2) char Bmori1_room_20Tex_0006F8[] = dBmori1_room_20Tex_0006F8; + +#define dBmori1_room_20Tex_000EF8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_20Tex_000EF8" +static const ALIGN_ASSET(2) char Bmori1_room_20Tex_000EF8[] = dBmori1_room_20Tex_000EF8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_21.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_21.h index f4769b916..f5dcc8935 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_21.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_21.h @@ -1,16 +1,9 @@ #pragma once -#define dBmori1_room_21DL_000F60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_21DL_000F60" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_21DL_000F60[] = dBmori1_room_21DL_000F60; -#else -static const char Bmori1_room_21DL_000F60[] __attribute__((aligned (2))) = dBmori1_room_21DL_000F60; -#endif - -#define dBmori1_room_21Tex_000F70 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_21Tex_000F70" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_21Tex_000F70[] = dBmori1_room_21Tex_000F70; -#else -static const char Bmori1_room_21Tex_000F70[] __attribute__((aligned (2))) = dBmori1_room_21Tex_000F70; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_21DL_000F60 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_21DL_000F60" +static const ALIGN_ASSET(2) char Bmori1_room_21DL_000F60[] = dBmori1_room_21DL_000F60; + +#define dBmori1_room_21Tex_000F70 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_21Tex_000F70" +static const ALIGN_ASSET(2) char Bmori1_room_21Tex_000F70[] = dBmori1_room_21Tex_000F70; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_22.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_22.h index e4cf9cffc..e01e15cf3 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_22.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_22.h @@ -1,23 +1,12 @@ #pragma once -#define dBmori1_room_22DL_0005D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_22DL_0005D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_22DL_0005D0[] = dBmori1_room_22DL_0005D0; -#else -static const char Bmori1_room_22DL_0005D0[] __attribute__((aligned (2))) = dBmori1_room_22DL_0005D0; -#endif - -#define dBmori1_room_22Tex_0005E0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_22Tex_0005E0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_22Tex_0005E0[] = dBmori1_room_22Tex_0005E0; -#else -static const char Bmori1_room_22Tex_0005E0[] __attribute__((aligned (2))) = dBmori1_room_22Tex_0005E0; -#endif - -#define dBmori1_room_22Tex_0015E0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_22Tex_0015E0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_22Tex_0015E0[] = dBmori1_room_22Tex_0015E0; -#else -static const char Bmori1_room_22Tex_0015E0[] __attribute__((aligned (2))) = dBmori1_room_22Tex_0015E0; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_22DL_0005D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_22DL_0005D0" +static const ALIGN_ASSET(2) char Bmori1_room_22DL_0005D0[] = dBmori1_room_22DL_0005D0; + +#define dBmori1_room_22Tex_0005E0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_22Tex_0005E0" +static const ALIGN_ASSET(2) char Bmori1_room_22Tex_0005E0[] = dBmori1_room_22Tex_0005E0; + +#define dBmori1_room_22Tex_0015E0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_22Tex_0015E0" +static const ALIGN_ASSET(2) char Bmori1_room_22Tex_0015E0[] = dBmori1_room_22Tex_0015E0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_3.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_3.h index 6c9696a85..693543314 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_3.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_3.h @@ -1,44 +1,21 @@ #pragma once -#define dBmori1_room_3DL_0023B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3DL_0023B8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_3DL_0023B8[] = dBmori1_room_3DL_0023B8; -#else -static const char Bmori1_room_3DL_0023B8[] __attribute__((aligned (2))) = dBmori1_room_3DL_0023B8; -#endif - -#define dBmori1_room_3Tex_0033D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_0033D8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_3Tex_0033D8[] = dBmori1_room_3Tex_0033D8; -#else -static const char Bmori1_room_3Tex_0033D8[] __attribute__((aligned (2))) = dBmori1_room_3Tex_0033D8; -#endif - -#define dBmori1_room_3Tex_0023D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_0023D8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_3Tex_0023D8[] = dBmori1_room_3Tex_0023D8; -#else -static const char Bmori1_room_3Tex_0023D8[] __attribute__((aligned (2))) = dBmori1_room_3Tex_0023D8; -#endif - -#define dBmori1_room_3Tex_002BD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_002BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_3Tex_002BD8[] = dBmori1_room_3Tex_002BD8; -#else -static const char Bmori1_room_3Tex_002BD8[] __attribute__((aligned (2))) = dBmori1_room_3Tex_002BD8; -#endif - -#define dBmori1_room_3Tex_0037D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_0037D8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_3Tex_0037D8[] = dBmori1_room_3Tex_0037D8; -#else -static const char Bmori1_room_3Tex_0037D8[] __attribute__((aligned (2))) = dBmori1_room_3Tex_0037D8; -#endif - -#define dBmori1_room_3Tex_0038D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_0038D8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_3Tex_0038D8[] = dBmori1_room_3Tex_0038D8; -#else -static const char Bmori1_room_3Tex_0038D8[] __attribute__((aligned (2))) = dBmori1_room_3Tex_0038D8; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_3DL_0023B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3DL_0023B8" +static const ALIGN_ASSET(2) char Bmori1_room_3DL_0023B8[] = dBmori1_room_3DL_0023B8; + +#define dBmori1_room_3Tex_0033D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_0033D8" +static const ALIGN_ASSET(2) char Bmori1_room_3Tex_0033D8[] = dBmori1_room_3Tex_0033D8; + +#define dBmori1_room_3Tex_0023D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_0023D8" +static const ALIGN_ASSET(2) char Bmori1_room_3Tex_0023D8[] = dBmori1_room_3Tex_0023D8; + +#define dBmori1_room_3Tex_002BD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_002BD8" +static const ALIGN_ASSET(2) char Bmori1_room_3Tex_002BD8[] = dBmori1_room_3Tex_002BD8; + +#define dBmori1_room_3Tex_0037D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_0037D8" +static const ALIGN_ASSET(2) char Bmori1_room_3Tex_0037D8[] = dBmori1_room_3Tex_0037D8; + +#define dBmori1_room_3Tex_0038D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_3Tex_0038D8" +static const ALIGN_ASSET(2) char Bmori1_room_3Tex_0038D8[] = dBmori1_room_3Tex_0038D8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_4.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_4.h index e62468600..ddaf9202f 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_4.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_4.h @@ -1,23 +1,12 @@ #pragma once -#define dBmori1_room_4DL_0022A8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_4DL_0022A8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_4DL_0022A8[] = dBmori1_room_4DL_0022A8; -#else -static const char Bmori1_room_4DL_0022A8[] __attribute__((aligned (2))) = dBmori1_room_4DL_0022A8; -#endif - -#define dBmori1_room_4Tex_002AB8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_4Tex_002AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_4Tex_002AB8[] = dBmori1_room_4Tex_002AB8; -#else -static const char Bmori1_room_4Tex_002AB8[] __attribute__((aligned (2))) = dBmori1_room_4Tex_002AB8; -#endif - -#define dBmori1_room_4Tex_0022B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_4Tex_0022B8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_4Tex_0022B8[] = dBmori1_room_4Tex_0022B8; -#else -static const char Bmori1_room_4Tex_0022B8[] __attribute__((aligned (2))) = dBmori1_room_4Tex_0022B8; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_4DL_0022A8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_4DL_0022A8" +static const ALIGN_ASSET(2) char Bmori1_room_4DL_0022A8[] = dBmori1_room_4DL_0022A8; + +#define dBmori1_room_4Tex_002AB8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_4Tex_002AB8" +static const ALIGN_ASSET(2) char Bmori1_room_4Tex_002AB8[] = dBmori1_room_4Tex_002AB8; + +#define dBmori1_room_4Tex_0022B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_4Tex_0022B8" +static const ALIGN_ASSET(2) char Bmori1_room_4Tex_0022B8[] = dBmori1_room_4Tex_0022B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_5.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_5.h index bb40690ca..3d36b74c3 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_5.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_5.h @@ -1,44 +1,21 @@ #pragma once -#define dBmori1_room_5DL_0023B0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5DL_0023B0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_5DL_0023B0[] = dBmori1_room_5DL_0023B0; -#else -static const char Bmori1_room_5DL_0023B0[] __attribute__((aligned (2))) = dBmori1_room_5DL_0023B0; -#endif - -#define dBmori1_room_5Tex_002FD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_002FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_5Tex_002FD0[] = dBmori1_room_5Tex_002FD0; -#else -static const char Bmori1_room_5Tex_002FD0[] __attribute__((aligned (2))) = dBmori1_room_5Tex_002FD0; -#endif - -#define dBmori1_room_5Tex_0023D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_0023D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_5Tex_0023D0[] = dBmori1_room_5Tex_0023D0; -#else -static const char Bmori1_room_5Tex_0023D0[] __attribute__((aligned (2))) = dBmori1_room_5Tex_0023D0; -#endif - -#define dBmori1_room_5Tex_0027D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_0027D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_5Tex_0027D0[] = dBmori1_room_5Tex_0027D0; -#else -static const char Bmori1_room_5Tex_0027D0[] __attribute__((aligned (2))) = dBmori1_room_5Tex_0027D0; -#endif - -#define dBmori1_room_5Tex_0034D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_0034D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_5Tex_0034D0[] = dBmori1_room_5Tex_0034D0; -#else -static const char Bmori1_room_5Tex_0034D0[] __attribute__((aligned (2))) = dBmori1_room_5Tex_0034D0; -#endif - -#define dBmori1_room_5Tex_0033D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_0033D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_5Tex_0033D0[] = dBmori1_room_5Tex_0033D0; -#else -static const char Bmori1_room_5Tex_0033D0[] __attribute__((aligned (2))) = dBmori1_room_5Tex_0033D0; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_5DL_0023B0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5DL_0023B0" +static const ALIGN_ASSET(2) char Bmori1_room_5DL_0023B0[] = dBmori1_room_5DL_0023B0; + +#define dBmori1_room_5Tex_002FD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_002FD0" +static const ALIGN_ASSET(2) char Bmori1_room_5Tex_002FD0[] = dBmori1_room_5Tex_002FD0; + +#define dBmori1_room_5Tex_0023D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_0023D0" +static const ALIGN_ASSET(2) char Bmori1_room_5Tex_0023D0[] = dBmori1_room_5Tex_0023D0; + +#define dBmori1_room_5Tex_0027D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_0027D0" +static const ALIGN_ASSET(2) char Bmori1_room_5Tex_0027D0[] = dBmori1_room_5Tex_0027D0; + +#define dBmori1_room_5Tex_0034D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_0034D0" +static const ALIGN_ASSET(2) char Bmori1_room_5Tex_0034D0[] = dBmori1_room_5Tex_0034D0; + +#define dBmori1_room_5Tex_0033D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_5Tex_0033D0" +static const ALIGN_ASSET(2) char Bmori1_room_5Tex_0033D0[] = dBmori1_room_5Tex_0033D0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_6.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_6.h index 05f139fa6..90e6645f8 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_6.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_6.h @@ -1,58 +1,27 @@ #pragma once -#define dBmori1_room_6DL_0065D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6DL_0065D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_6DL_0065D0[] = dBmori1_room_6DL_0065D0; -#else -static const char Bmori1_room_6DL_0065D0[] __attribute__((aligned (2))) = dBmori1_room_6DL_0065D0; -#endif - -#define dBmori1_room_6Tex_006E30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_006E30" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_6Tex_006E30[] = dBmori1_room_6Tex_006E30; -#else -static const char Bmori1_room_6Tex_006E30[] __attribute__((aligned (2))) = dBmori1_room_6Tex_006E30; -#endif - -#define dBmori1_room_6Tex_008230 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_008230" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_6Tex_008230[] = dBmori1_room_6Tex_008230; -#else -static const char Bmori1_room_6Tex_008230[] __attribute__((aligned (2))) = dBmori1_room_6Tex_008230; -#endif - -#define dBmori1_room_6Tex_008A30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_008A30" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_6Tex_008A30[] = dBmori1_room_6Tex_008A30; -#else -static const char Bmori1_room_6Tex_008A30[] __attribute__((aligned (2))) = dBmori1_room_6Tex_008A30; -#endif - -#define dBmori1_room_6Tex_007A30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_007A30" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_6Tex_007A30[] = dBmori1_room_6Tex_007A30; -#else -static const char Bmori1_room_6Tex_007A30[] __attribute__((aligned (2))) = dBmori1_room_6Tex_007A30; -#endif - -#define dBmori1_room_6Tex_008C30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_008C30" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_6Tex_008C30[] = dBmori1_room_6Tex_008C30; -#else -static const char Bmori1_room_6Tex_008C30[] __attribute__((aligned (2))) = dBmori1_room_6Tex_008C30; -#endif - -#define dBmori1_room_6Tex_006630 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_006630" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_6Tex_006630[] = dBmori1_room_6Tex_006630; -#else -static const char Bmori1_room_6Tex_006630[] __attribute__((aligned (2))) = dBmori1_room_6Tex_006630; -#endif - -#define dBmori1_room_6Tex_007630 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_007630" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_6Tex_007630[] = dBmori1_room_6Tex_007630; -#else -static const char Bmori1_room_6Tex_007630[] __attribute__((aligned (2))) = dBmori1_room_6Tex_007630; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_6DL_0065D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6DL_0065D0" +static const ALIGN_ASSET(2) char Bmori1_room_6DL_0065D0[] = dBmori1_room_6DL_0065D0; + +#define dBmori1_room_6Tex_006E30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_006E30" +static const ALIGN_ASSET(2) char Bmori1_room_6Tex_006E30[] = dBmori1_room_6Tex_006E30; + +#define dBmori1_room_6Tex_008230 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_008230" +static const ALIGN_ASSET(2) char Bmori1_room_6Tex_008230[] = dBmori1_room_6Tex_008230; + +#define dBmori1_room_6Tex_008A30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_008A30" +static const ALIGN_ASSET(2) char Bmori1_room_6Tex_008A30[] = dBmori1_room_6Tex_008A30; + +#define dBmori1_room_6Tex_007A30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_007A30" +static const ALIGN_ASSET(2) char Bmori1_room_6Tex_007A30[] = dBmori1_room_6Tex_007A30; + +#define dBmori1_room_6Tex_008C30 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_008C30" +static const ALIGN_ASSET(2) char Bmori1_room_6Tex_008C30[] = dBmori1_room_6Tex_008C30; + +#define dBmori1_room_6Tex_006630 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_006630" +static const ALIGN_ASSET(2) char Bmori1_room_6Tex_006630[] = dBmori1_room_6Tex_006630; + +#define dBmori1_room_6Tex_007630 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_6Tex_007630" +static const ALIGN_ASSET(2) char Bmori1_room_6Tex_007630[] = dBmori1_room_6Tex_007630; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_7.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_7.h index b75af6854..375d4042e 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_7.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_7.h @@ -1,135 +1,60 @@ #pragma once -#define dBmori1_room_7DL_007D88 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7DL_007D88" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7DL_007D88[] = dBmori1_room_7DL_007D88; -#else -static const char Bmori1_room_7DL_007D88[] __attribute__((aligned (2))) = dBmori1_room_7DL_007D88; -#endif - -#define dBmori1_room_7Tex_009DD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_009DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_009DD0[] = dBmori1_room_7Tex_009DD0; -#else -static const char Bmori1_room_7Tex_009DD0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_009DD0; -#endif - -#define dBmori1_room_7Tex_00CDD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00CDD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_00CDD0[] = dBmori1_room_7Tex_00CDD0; -#else -static const char Bmori1_room_7Tex_00CDD0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_00CDD0; -#endif - -#define dBmori1_room_7Tex_00ADD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00ADD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_00ADD0[] = dBmori1_room_7Tex_00ADD0; -#else -static const char Bmori1_room_7Tex_00ADD0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_00ADD0; -#endif - -#define dBmori1_room_7Tex_00A5D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00A5D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_00A5D0[] = dBmori1_room_7Tex_00A5D0; -#else -static const char Bmori1_room_7Tex_00A5D0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_00A5D0; -#endif - -#define dBmori1_room_7Tex_00B5D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00B5D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_00B5D0[] = dBmori1_room_7Tex_00B5D0; -#else -static const char Bmori1_room_7Tex_00B5D0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_00B5D0; -#endif - -#define dBmori1_room_7Tex_008DD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_008DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_008DD0[] = dBmori1_room_7Tex_008DD0; -#else -static const char Bmori1_room_7Tex_008DD0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_008DD0; -#endif - -#define dBmori1_room_7Tex_0091D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_0091D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_0091D0[] = dBmori1_room_7Tex_0091D0; -#else -static const char Bmori1_room_7Tex_0091D0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_0091D0; -#endif - -#define dBmori1_room_7Tex_0095D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_0095D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_0095D0[] = dBmori1_room_7Tex_0095D0; -#else -static const char Bmori1_room_7Tex_0095D0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_0095D0; -#endif - -#define dBmori1_room_7Tex_0085D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_0085D0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_0085D0[] = dBmori1_room_7Tex_0085D0; -#else -static const char Bmori1_room_7Tex_0085D0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_0085D0; -#endif - -#define dBmori1_room_7Tex_00BDD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00BDD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_00BDD0[] = dBmori1_room_7Tex_00BDD0; -#else -static const char Bmori1_room_7Tex_00BDD0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_00BDD0; -#endif - -#define dBmori1_room_7Tex_007DD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_007DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_007DD0[] = dBmori1_room_7Tex_007DD0; -#else -static const char Bmori1_room_7Tex_007DD0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_007DD0; -#endif - -#define dBmori1_room_7Tex_00DDD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00DDD0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_00DDD0[] = dBmori1_room_7Tex_00DDD0; -#else -static const char Bmori1_room_7Tex_00DDD0[] __attribute__((aligned (2))) = dBmori1_room_7Tex_00DDD0; -#endif - -#define dBmori1_room_7DL_00EFA8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7DL_00EFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7DL_00EFA8[] = dBmori1_room_7DL_00EFA8; -#else -static const char Bmori1_room_7DL_00EFA8[] __attribute__((aligned (2))) = dBmori1_room_7DL_00EFA8; -#endif - -#define dBmori1_room_7Tex_0117D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_0117D8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_0117D8[] = dBmori1_room_7Tex_0117D8; -#else -static const char Bmori1_room_7Tex_0117D8[] __attribute__((aligned (2))) = dBmori1_room_7Tex_0117D8; -#endif - -#define dBmori1_room_7Tex_00FFD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00FFD8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_00FFD8[] = dBmori1_room_7Tex_00FFD8; -#else -static const char Bmori1_room_7Tex_00FFD8[] __attribute__((aligned (2))) = dBmori1_room_7Tex_00FFD8; -#endif - -#define dBmori1_room_7Tex_011FD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_011FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_011FD8[] = dBmori1_room_7Tex_011FD8; -#else -static const char Bmori1_room_7Tex_011FD8[] __attribute__((aligned (2))) = dBmori1_room_7Tex_011FD8; -#endif - -#define dBmori1_room_7Tex_00EFD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00EFD8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_00EFD8[] = dBmori1_room_7Tex_00EFD8; -#else -static const char Bmori1_room_7Tex_00EFD8[] __attribute__((aligned (2))) = dBmori1_room_7Tex_00EFD8; -#endif - -#define dBmori1_room_7Tex_010FD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_010FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_7Tex_010FD8[] = dBmori1_room_7Tex_010FD8; -#else -static const char Bmori1_room_7Tex_010FD8[] __attribute__((aligned (2))) = dBmori1_room_7Tex_010FD8; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_7DL_007D88 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7DL_007D88" +static const ALIGN_ASSET(2) char Bmori1_room_7DL_007D88[] = dBmori1_room_7DL_007D88; + +#define dBmori1_room_7Tex_009DD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_009DD0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_009DD0[] = dBmori1_room_7Tex_009DD0; + +#define dBmori1_room_7Tex_00CDD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00CDD0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_00CDD0[] = dBmori1_room_7Tex_00CDD0; + +#define dBmori1_room_7Tex_00ADD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00ADD0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_00ADD0[] = dBmori1_room_7Tex_00ADD0; + +#define dBmori1_room_7Tex_00A5D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00A5D0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_00A5D0[] = dBmori1_room_7Tex_00A5D0; + +#define dBmori1_room_7Tex_00B5D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00B5D0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_00B5D0[] = dBmori1_room_7Tex_00B5D0; + +#define dBmori1_room_7Tex_008DD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_008DD0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_008DD0[] = dBmori1_room_7Tex_008DD0; + +#define dBmori1_room_7Tex_0091D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_0091D0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_0091D0[] = dBmori1_room_7Tex_0091D0; + +#define dBmori1_room_7Tex_0095D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_0095D0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_0095D0[] = dBmori1_room_7Tex_0095D0; + +#define dBmori1_room_7Tex_0085D0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_0085D0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_0085D0[] = dBmori1_room_7Tex_0085D0; + +#define dBmori1_room_7Tex_00BDD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00BDD0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_00BDD0[] = dBmori1_room_7Tex_00BDD0; + +#define dBmori1_room_7Tex_007DD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_007DD0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_007DD0[] = dBmori1_room_7Tex_007DD0; + +#define dBmori1_room_7Tex_00DDD0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00DDD0" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_00DDD0[] = dBmori1_room_7Tex_00DDD0; + +#define dBmori1_room_7DL_00EFA8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7DL_00EFA8" +static const ALIGN_ASSET(2) char Bmori1_room_7DL_00EFA8[] = dBmori1_room_7DL_00EFA8; + +#define dBmori1_room_7Tex_0117D8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_0117D8" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_0117D8[] = dBmori1_room_7Tex_0117D8; + +#define dBmori1_room_7Tex_00FFD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00FFD8" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_00FFD8[] = dBmori1_room_7Tex_00FFD8; + +#define dBmori1_room_7Tex_011FD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_011FD8" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_011FD8[] = dBmori1_room_7Tex_011FD8; + +#define dBmori1_room_7Tex_00EFD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_00EFD8" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_00EFD8[] = dBmori1_room_7Tex_00EFD8; + +#define dBmori1_room_7Tex_010FD8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_7Tex_010FD8" +static const ALIGN_ASSET(2) char Bmori1_room_7Tex_010FD8[] = dBmori1_room_7Tex_010FD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_8.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_8.h index b85c71642..bf3c8a435 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_8.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_8.h @@ -1,156 +1,69 @@ #pragma once -#define dBmori1_room_8DL_00ABB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8DL_00ABB0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8DL_00ABB0[] = dBmori1_room_8DL_00ABB0; -#else -static const char Bmori1_room_8DL_00ABB0[] __attribute__((aligned (2))) = dBmori1_room_8DL_00ABB0; -#endif - -#define dBmori1_room_8Tex_00AC10 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00AC10" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00AC10[] = dBmori1_room_8Tex_00AC10; -#else -static const char Bmori1_room_8Tex_00AC10[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00AC10; -#endif - -#define dBmori1_room_8Tex_010810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_010810" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_010810[] = dBmori1_room_8Tex_010810; -#else -static const char Bmori1_room_8Tex_010810[] __attribute__((aligned (2))) = dBmori1_room_8Tex_010810; -#endif - -#define dBmori1_room_8Tex_00E010 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00E010" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00E010[] = dBmori1_room_8Tex_00E010; -#else -static const char Bmori1_room_8Tex_00E010[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00E010; -#endif - -#define dBmori1_room_8Tex_00F010 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00F010" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00F010[] = dBmori1_room_8Tex_00F010; -#else -static const char Bmori1_room_8Tex_00F010[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00F010; -#endif - -#define dBmori1_room_8Tex_00CC10 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00CC10" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00CC10[] = dBmori1_room_8Tex_00CC10; -#else -static const char Bmori1_room_8Tex_00CC10[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00CC10; -#endif - -#define dBmori1_room_8Tex_00E810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00E810" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00E810[] = dBmori1_room_8Tex_00E810; -#else -static const char Bmori1_room_8Tex_00E810[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00E810; -#endif - -#define dBmori1_room_8Tex_00D410 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00D410" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00D410[] = dBmori1_room_8Tex_00D410; -#else -static const char Bmori1_room_8Tex_00D410[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00D410; -#endif - -#define dBmori1_room_8Tex_00D810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00D810" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00D810[] = dBmori1_room_8Tex_00D810; -#else -static const char Bmori1_room_8Tex_00D810[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00D810; -#endif - -#define dBmori1_room_8Tex_00F810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00F810" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00F810[] = dBmori1_room_8Tex_00F810; -#else -static const char Bmori1_room_8Tex_00F810[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00F810; -#endif - -#define dBmori1_room_8Tex_00B410 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00B410" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00B410[] = dBmori1_room_8Tex_00B410; -#else -static const char Bmori1_room_8Tex_00B410[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00B410; -#endif - -#define dBmori1_room_8Tex_00C410 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00C410" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00C410[] = dBmori1_room_8Tex_00C410; -#else -static const char Bmori1_room_8Tex_00C410[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00C410; -#endif - -#define dBmori1_room_8Tex_012410 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_012410" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_012410[] = dBmori1_room_8Tex_012410; -#else -static const char Bmori1_room_8Tex_012410[] __attribute__((aligned (2))) = dBmori1_room_8Tex_012410; -#endif - -#define dBmori1_room_8Tex_011C10 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_011C10" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_011C10[] = dBmori1_room_8Tex_011C10; -#else -static const char Bmori1_room_8Tex_011C10[] __attribute__((aligned (2))) = dBmori1_room_8Tex_011C10; -#endif - -#define dBmori1_room_8Tex_00D010 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00D010" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_00D010[] = dBmori1_room_8Tex_00D010; -#else -static const char Bmori1_room_8Tex_00D010[] __attribute__((aligned (2))) = dBmori1_room_8Tex_00D010; -#endif - -#define dBmori1_room_8Tex_011810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_011810" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_011810[] = dBmori1_room_8Tex_011810; -#else -static const char Bmori1_room_8Tex_011810[] __attribute__((aligned (2))) = dBmori1_room_8Tex_011810; -#endif - -#define dBmori1_room_8DL_013A68 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8DL_013A68" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8DL_013A68[] = dBmori1_room_8DL_013A68; -#else -static const char Bmori1_room_8DL_013A68[] __attribute__((aligned (2))) = dBmori1_room_8DL_013A68; -#endif - -#define dBmori1_room_8Tex_016AB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_016AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_016AB0[] = dBmori1_room_8Tex_016AB0; -#else -static const char Bmori1_room_8Tex_016AB0[] __attribute__((aligned (2))) = dBmori1_room_8Tex_016AB0; -#endif - -#define dBmori1_room_8Tex_013AB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_013AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_013AB0[] = dBmori1_room_8Tex_013AB0; -#else -static const char Bmori1_room_8Tex_013AB0[] __attribute__((aligned (2))) = dBmori1_room_8Tex_013AB0; -#endif - -#define dBmori1_room_8Tex_014AB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_014AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_014AB0[] = dBmori1_room_8Tex_014AB0; -#else -static const char Bmori1_room_8Tex_014AB0[] __attribute__((aligned (2))) = dBmori1_room_8Tex_014AB0; -#endif - -#define dBmori1_room_8Tex_0152B0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_0152B0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_0152B0[] = dBmori1_room_8Tex_0152B0; -#else -static const char Bmori1_room_8Tex_0152B0[] __attribute__((aligned (2))) = dBmori1_room_8Tex_0152B0; -#endif - -#define dBmori1_room_8Tex_015AB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_015AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_8Tex_015AB0[] = dBmori1_room_8Tex_015AB0; -#else -static const char Bmori1_room_8Tex_015AB0[] __attribute__((aligned (2))) = dBmori1_room_8Tex_015AB0; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_8DL_00ABB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8DL_00ABB0" +static const ALIGN_ASSET(2) char Bmori1_room_8DL_00ABB0[] = dBmori1_room_8DL_00ABB0; + +#define dBmori1_room_8Tex_00AC10 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00AC10" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00AC10[] = dBmori1_room_8Tex_00AC10; + +#define dBmori1_room_8Tex_010810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_010810" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_010810[] = dBmori1_room_8Tex_010810; + +#define dBmori1_room_8Tex_00E010 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00E010" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00E010[] = dBmori1_room_8Tex_00E010; + +#define dBmori1_room_8Tex_00F010 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00F010" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00F010[] = dBmori1_room_8Tex_00F010; + +#define dBmori1_room_8Tex_00CC10 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00CC10" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00CC10[] = dBmori1_room_8Tex_00CC10; + +#define dBmori1_room_8Tex_00E810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00E810" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00E810[] = dBmori1_room_8Tex_00E810; + +#define dBmori1_room_8Tex_00D410 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00D410" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00D410[] = dBmori1_room_8Tex_00D410; + +#define dBmori1_room_8Tex_00D810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00D810" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00D810[] = dBmori1_room_8Tex_00D810; + +#define dBmori1_room_8Tex_00F810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00F810" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00F810[] = dBmori1_room_8Tex_00F810; + +#define dBmori1_room_8Tex_00B410 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00B410" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00B410[] = dBmori1_room_8Tex_00B410; + +#define dBmori1_room_8Tex_00C410 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00C410" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00C410[] = dBmori1_room_8Tex_00C410; + +#define dBmori1_room_8Tex_012410 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_012410" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_012410[] = dBmori1_room_8Tex_012410; + +#define dBmori1_room_8Tex_011C10 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_011C10" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_011C10[] = dBmori1_room_8Tex_011C10; + +#define dBmori1_room_8Tex_00D010 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_00D010" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_00D010[] = dBmori1_room_8Tex_00D010; + +#define dBmori1_room_8Tex_011810 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_011810" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_011810[] = dBmori1_room_8Tex_011810; + +#define dBmori1_room_8DL_013A68 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8DL_013A68" +static const ALIGN_ASSET(2) char Bmori1_room_8DL_013A68[] = dBmori1_room_8DL_013A68; + +#define dBmori1_room_8Tex_016AB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_016AB0" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_016AB0[] = dBmori1_room_8Tex_016AB0; + +#define dBmori1_room_8Tex_013AB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_013AB0" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_013AB0[] = dBmori1_room_8Tex_013AB0; + +#define dBmori1_room_8Tex_014AB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_014AB0" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_014AB0[] = dBmori1_room_8Tex_014AB0; + +#define dBmori1_room_8Tex_0152B0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_0152B0" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_0152B0[] = dBmori1_room_8Tex_0152B0; + +#define dBmori1_room_8Tex_015AB0 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_8Tex_015AB0" +static const ALIGN_ASSET(2) char Bmori1_room_8Tex_015AB0[] = dBmori1_room_8Tex_015AB0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_9.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_9.h index af47d52c2..45e0612c5 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_9.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_room_9.h @@ -1,79 +1,36 @@ #pragma once -#define dBmori1_room_9DL_004880 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9DL_004880" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9DL_004880[] = dBmori1_room_9DL_004880; -#else -static const char Bmori1_room_9DL_004880[] __attribute__((aligned (2))) = dBmori1_room_9DL_004880; -#endif - -#define dBmori1_room_9Tex_0074B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0074B8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_0074B8[] = dBmori1_room_9Tex_0074B8; -#else -static const char Bmori1_room_9Tex_0074B8[] __attribute__((aligned (2))) = dBmori1_room_9Tex_0074B8; -#endif - -#define dBmori1_room_9Tex_0054B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0054B8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_0054B8[] = dBmori1_room_9Tex_0054B8; -#else -static const char Bmori1_room_9Tex_0054B8[] __attribute__((aligned (2))) = dBmori1_room_9Tex_0054B8; -#endif - -#define dBmori1_room_9Tex_0064B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0064B8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_0064B8[] = dBmori1_room_9Tex_0064B8; -#else -static const char Bmori1_room_9Tex_0064B8[] __attribute__((aligned (2))) = dBmori1_room_9Tex_0064B8; -#endif - -#define dBmori1_room_9Tex_005CB8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_005CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_005CB8[] = dBmori1_room_9Tex_005CB8; -#else -static const char Bmori1_room_9Tex_005CB8[] __attribute__((aligned (2))) = dBmori1_room_9Tex_005CB8; -#endif - -#define dBmori1_room_9Tex_006CB8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_006CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_006CB8[] = dBmori1_room_9Tex_006CB8; -#else -static const char Bmori1_room_9Tex_006CB8[] __attribute__((aligned (2))) = dBmori1_room_9Tex_006CB8; -#endif - -#define dBmori1_room_9Tex_0048B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0048B8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_0048B8[] = dBmori1_room_9Tex_0048B8; -#else -static const char Bmori1_room_9Tex_0048B8[] __attribute__((aligned (2))) = dBmori1_room_9Tex_0048B8; -#endif - -#define dBmori1_room_9Tex_0050B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0050B8" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_0050B8[] = dBmori1_room_9Tex_0050B8; -#else -static const char Bmori1_room_9Tex_0050B8[] __attribute__((aligned (2))) = dBmori1_room_9Tex_0050B8; -#endif - -#define dBmori1_room_9DL_008940 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9DL_008940" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9DL_008940[] = dBmori1_room_9DL_008940; -#else -static const char Bmori1_room_9DL_008940[] __attribute__((aligned (2))) = dBmori1_room_9DL_008940; -#endif - -#define dBmori1_room_9Tex_008958 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_008958" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_008958[] = dBmori1_room_9Tex_008958; -#else -static const char Bmori1_room_9Tex_008958[] __attribute__((aligned (2))) = dBmori1_room_9Tex_008958; -#endif - -#define dBmori1_room_9Tex_009158 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_009158" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_room_9Tex_009158[] = dBmori1_room_9Tex_009158; -#else -static const char Bmori1_room_9Tex_009158[] __attribute__((aligned (2))) = dBmori1_room_9Tex_009158; -#endif - +#include "align_asset_macro.h" + +#define dBmori1_room_9DL_004880 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9DL_004880" +static const ALIGN_ASSET(2) char Bmori1_room_9DL_004880[] = dBmori1_room_9DL_004880; + +#define dBmori1_room_9Tex_0074B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0074B8" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_0074B8[] = dBmori1_room_9Tex_0074B8; + +#define dBmori1_room_9Tex_0054B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0054B8" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_0054B8[] = dBmori1_room_9Tex_0054B8; + +#define dBmori1_room_9Tex_0064B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0064B8" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_0064B8[] = dBmori1_room_9Tex_0064B8; + +#define dBmori1_room_9Tex_005CB8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_005CB8" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_005CB8[] = dBmori1_room_9Tex_005CB8; + +#define dBmori1_room_9Tex_006CB8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_006CB8" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_006CB8[] = dBmori1_room_9Tex_006CB8; + +#define dBmori1_room_9Tex_0048B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0048B8" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_0048B8[] = dBmori1_room_9Tex_0048B8; + +#define dBmori1_room_9Tex_0050B8 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_0050B8" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_0050B8[] = dBmori1_room_9Tex_0050B8; + +#define dBmori1_room_9DL_008940 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9DL_008940" +static const ALIGN_ASSET(2) char Bmori1_room_9DL_008940[] = dBmori1_room_9DL_008940; + +#define dBmori1_room_9Tex_008958 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_008958" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_008958[] = dBmori1_room_9Tex_008958; + +#define dBmori1_room_9Tex_009158 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_room_9Tex_009158" +static const ALIGN_ASSET(2) char Bmori1_room_9Tex_009158[] = dBmori1_room_9Tex_009158; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/Bmori1/Bmori1_scene.h b/soh/assets/scenes/dungeons/Bmori1/Bmori1_scene.h index 44cd7f097..5effeb714 100644 --- a/soh/assets/scenes/dungeons/Bmori1/Bmori1_scene.h +++ b/soh/assets/scenes/dungeons/Bmori1/Bmori1_scene.h @@ -1,72 +1,33 @@ #pragma once -#define dgForestTempleDayEntranceTex "__OTR__scenes/nonmq/Bmori1_scene/gForestTempleDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleDayEntranceTex[] = dgForestTempleDayEntranceTex; -#else -static const char gForestTempleDayEntranceTex[] __attribute__((aligned (2))) = dgForestTempleDayEntranceTex; -#endif - -#define dgForestTempleNightEntranceTex "__OTR__scenes/nonmq/Bmori1_scene/gForestTempleNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleNightEntranceTex[] = dgForestTempleNightEntranceTex; -#else -static const char gForestTempleNightEntranceTex[] __attribute__((aligned (2))) = dgForestTempleNightEntranceTex; -#endif - -#define dBmori1_sceneCollisionHeader_014054 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneCollisionHeader_014054" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_sceneCollisionHeader_014054[] = dBmori1_sceneCollisionHeader_014054; -#else -static const char Bmori1_sceneCollisionHeader_014054[] __attribute__((aligned (2))) = dBmori1_sceneCollisionHeader_014054; -#endif - -#define dBmori1_sceneTLUT_014288 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTLUT_014288" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_sceneTLUT_014288[] = dBmori1_sceneTLUT_014288; -#else -static const char Bmori1_sceneTLUT_014288[] __attribute__((aligned (2))) = dBmori1_sceneTLUT_014288; -#endif - -#define dBmori1_sceneTex_015B90 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_015B90" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_sceneTex_015B90[] = dBmori1_sceneTex_015B90; -#else -static const char Bmori1_sceneTex_015B90[] __attribute__((aligned (2))) = dBmori1_sceneTex_015B90; -#endif - -#define dBmori1_sceneTLUT_014080 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTLUT_014080" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_sceneTLUT_014080[] = dBmori1_sceneTLUT_014080; -#else -static const char Bmori1_sceneTLUT_014080[] __attribute__((aligned (2))) = dBmori1_sceneTLUT_014080; -#endif - -#define dBmori1_sceneTex_014490 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_014490" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_sceneTex_014490[] = dBmori1_sceneTex_014490; -#else -static const char Bmori1_sceneTex_014490[] __attribute__((aligned (2))) = dBmori1_sceneTex_014490; -#endif - -#define dBmori1_sceneTex_015A90 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_015A90" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_sceneTex_015A90[] = dBmori1_sceneTex_015A90; -#else -static const char Bmori1_sceneTex_015A90[] __attribute__((aligned (2))) = dBmori1_sceneTex_015A90; -#endif - -#define dBmori1_sceneTex_015690 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_015690" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_sceneTex_015690[] = dBmori1_sceneTex_015690; -#else -static const char Bmori1_sceneTex_015690[] __attribute__((aligned (2))) = dBmori1_sceneTex_015690; -#endif - -#define dBmori1_sceneTex_015590 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_015590" -#ifdef _WIN32 -static const __declspec(align(2)) char Bmori1_sceneTex_015590[] = dBmori1_sceneTex_015590; -#else -static const char Bmori1_sceneTex_015590[] __attribute__((aligned (2))) = dBmori1_sceneTex_015590; -#endif - +#include "align_asset_macro.h" + +#define dgForestTempleDayEntranceTex "__OTR__scenes/nonmq/Bmori1_scene/gForestTempleDayEntranceTex" +static const ALIGN_ASSET(2) char gForestTempleDayEntranceTex[] = dgForestTempleDayEntranceTex; + +#define dgForestTempleNightEntranceTex "__OTR__scenes/nonmq/Bmori1_scene/gForestTempleNightEntranceTex" +static const ALIGN_ASSET(2) char gForestTempleNightEntranceTex[] = dgForestTempleNightEntranceTex; + +#define dBmori1_sceneCollisionHeader_014054 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneCollisionHeader_014054" +static const ALIGN_ASSET(2) char Bmori1_sceneCollisionHeader_014054[] = dBmori1_sceneCollisionHeader_014054; + +#define dBmori1_sceneTLUT_014288 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTLUT_014288" +static const ALIGN_ASSET(2) char Bmori1_sceneTLUT_014288[] = dBmori1_sceneTLUT_014288; + +#define dBmori1_sceneTex_015B90 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_015B90" +static const ALIGN_ASSET(2) char Bmori1_sceneTex_015B90[] = dBmori1_sceneTex_015B90; + +#define dBmori1_sceneTLUT_014080 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTLUT_014080" +static const ALIGN_ASSET(2) char Bmori1_sceneTLUT_014080[] = dBmori1_sceneTLUT_014080; + +#define dBmori1_sceneTex_014490 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_014490" +static const ALIGN_ASSET(2) char Bmori1_sceneTex_014490[] = dBmori1_sceneTex_014490; + +#define dBmori1_sceneTex_015A90 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_015A90" +static const ALIGN_ASSET(2) char Bmori1_sceneTex_015A90[] = dBmori1_sceneTex_015A90; + +#define dBmori1_sceneTex_015690 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_015690" +static const ALIGN_ASSET(2) char Bmori1_sceneTex_015690[] = dBmori1_sceneTex_015690; + +#define dBmori1_sceneTex_015590 "__OTR__scenes/nonmq/Bmori1_scene/Bmori1_sceneTex_015590" +static const ALIGN_ASSET(2) char Bmori1_sceneTex_015590[] = dBmori1_sceneTex_015590; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_room_0.h b/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_room_0.h index 2d9eb86b2..e4e414dec 100644 --- a/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_room_0.h +++ b/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_room_0.h @@ -1,72 +1,33 @@ #pragma once -#define dFIRE_bs_room_0DL_002E08 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0DL_002E08" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0DL_002E08[] = dFIRE_bs_room_0DL_002E08; -#else -static const char FIRE_bs_room_0DL_002E08[] __attribute__((aligned (2))) = dFIRE_bs_room_0DL_002E08; -#endif - -#define dFIRE_bs_room_0Tex_004068 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_004068" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0Tex_004068[] = dFIRE_bs_room_0Tex_004068; -#else -static const char FIRE_bs_room_0Tex_004068[] __attribute__((aligned (2))) = dFIRE_bs_room_0Tex_004068; -#endif - -#define dFIRE_bs_room_0TLUT_002E48 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0TLUT_002E48" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0TLUT_002E48[] = dFIRE_bs_room_0TLUT_002E48; -#else -static const char FIRE_bs_room_0TLUT_002E48[] __attribute__((aligned (2))) = dFIRE_bs_room_0TLUT_002E48; -#endif - -#define dFIRE_bs_room_0Tex_003C68 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003C68" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0Tex_003C68[] = dFIRE_bs_room_0Tex_003C68; -#else -static const char FIRE_bs_room_0Tex_003C68[] __attribute__((aligned (2))) = dFIRE_bs_room_0Tex_003C68; -#endif - -#define dFIRE_bs_room_0Tex_003A68 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003A68" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0Tex_003A68[] = dFIRE_bs_room_0Tex_003A68; -#else -static const char FIRE_bs_room_0Tex_003A68[] __attribute__((aligned (2))) = dFIRE_bs_room_0Tex_003A68; -#endif - -#define dFIRE_bs_room_0TLUT_002E28 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0TLUT_002E28" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0TLUT_002E28[] = dFIRE_bs_room_0TLUT_002E28; -#else -static const char FIRE_bs_room_0TLUT_002E28[] __attribute__((aligned (2))) = dFIRE_bs_room_0TLUT_002E28; -#endif - -#define dFIRE_bs_room_0Tex_003868 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003868" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0Tex_003868[] = dFIRE_bs_room_0Tex_003868; -#else -static const char FIRE_bs_room_0Tex_003868[] __attribute__((aligned (2))) = dFIRE_bs_room_0Tex_003868; -#endif - -#define dFIRE_bs_room_0Tex_003468 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003468" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0Tex_003468[] = dFIRE_bs_room_0Tex_003468; -#else -static const char FIRE_bs_room_0Tex_003468[] __attribute__((aligned (2))) = dFIRE_bs_room_0Tex_003468; -#endif - -#define dFIRE_bs_room_0Tex_002E68 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_002E68" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0Tex_002E68[] = dFIRE_bs_room_0Tex_002E68; -#else -static const char FIRE_bs_room_0Tex_002E68[] __attribute__((aligned (2))) = dFIRE_bs_room_0Tex_002E68; -#endif - -#define dFIRE_bs_room_0Tex_003068 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_0Tex_003068[] = dFIRE_bs_room_0Tex_003068; -#else -static const char FIRE_bs_room_0Tex_003068[] __attribute__((aligned (2))) = dFIRE_bs_room_0Tex_003068; -#endif - +#include "align_asset_macro.h" + +#define dFIRE_bs_room_0DL_002E08 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0DL_002E08" +static const ALIGN_ASSET(2) char FIRE_bs_room_0DL_002E08[] = dFIRE_bs_room_0DL_002E08; + +#define dFIRE_bs_room_0Tex_004068 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_004068" +static const ALIGN_ASSET(2) char FIRE_bs_room_0Tex_004068[] = dFIRE_bs_room_0Tex_004068; + +#define dFIRE_bs_room_0TLUT_002E48 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0TLUT_002E48" +static const ALIGN_ASSET(2) char FIRE_bs_room_0TLUT_002E48[] = dFIRE_bs_room_0TLUT_002E48; + +#define dFIRE_bs_room_0Tex_003C68 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003C68" +static const ALIGN_ASSET(2) char FIRE_bs_room_0Tex_003C68[] = dFIRE_bs_room_0Tex_003C68; + +#define dFIRE_bs_room_0Tex_003A68 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003A68" +static const ALIGN_ASSET(2) char FIRE_bs_room_0Tex_003A68[] = dFIRE_bs_room_0Tex_003A68; + +#define dFIRE_bs_room_0TLUT_002E28 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0TLUT_002E28" +static const ALIGN_ASSET(2) char FIRE_bs_room_0TLUT_002E28[] = dFIRE_bs_room_0TLUT_002E28; + +#define dFIRE_bs_room_0Tex_003868 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003868" +static const ALIGN_ASSET(2) char FIRE_bs_room_0Tex_003868[] = dFIRE_bs_room_0Tex_003868; + +#define dFIRE_bs_room_0Tex_003468 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003468" +static const ALIGN_ASSET(2) char FIRE_bs_room_0Tex_003468[] = dFIRE_bs_room_0Tex_003468; + +#define dFIRE_bs_room_0Tex_002E68 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_002E68" +static const ALIGN_ASSET(2) char FIRE_bs_room_0Tex_002E68[] = dFIRE_bs_room_0Tex_002E68; + +#define dFIRE_bs_room_0Tex_003068 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_0Tex_003068" +static const ALIGN_ASSET(2) char FIRE_bs_room_0Tex_003068[] = dFIRE_bs_room_0Tex_003068; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_room_1.h b/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_room_1.h index decfe8273..e661f4fe1 100644 --- a/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_room_1.h +++ b/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_room_1.h @@ -1,79 +1,36 @@ #pragma once -#define dFIRE_bs_room_1DL_004940 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1DL_004940" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1DL_004940[] = dFIRE_bs_room_1DL_004940; -#else -static const char FIRE_bs_room_1DL_004940[] __attribute__((aligned (2))) = dFIRE_bs_room_1DL_004940; -#endif - -#define dFIRE_bs_room_1Tex_004BD8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_004BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1Tex_004BD8[] = dFIRE_bs_room_1Tex_004BD8; -#else -static const char FIRE_bs_room_1Tex_004BD8[] __attribute__((aligned (2))) = dFIRE_bs_room_1Tex_004BD8; -#endif - -#define dFIRE_bs_room_1Tex_006DD8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_006DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1Tex_006DD8[] = dFIRE_bs_room_1Tex_006DD8; -#else -static const char FIRE_bs_room_1Tex_006DD8[] __attribute__((aligned (2))) = dFIRE_bs_room_1Tex_006DD8; -#endif - -#define dFIRE_bs_room_1TLUT_0049B8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1TLUT_0049B8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1TLUT_0049B8[] = dFIRE_bs_room_1TLUT_0049B8; -#else -static const char FIRE_bs_room_1TLUT_0049B8[] __attribute__((aligned (2))) = dFIRE_bs_room_1TLUT_0049B8; -#endif - -#define dFIRE_bs_room_1Tex_0061D8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_0061D8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1Tex_0061D8[] = dFIRE_bs_room_1Tex_0061D8; -#else -static const char FIRE_bs_room_1Tex_0061D8[] __attribute__((aligned (2))) = dFIRE_bs_room_1Tex_0061D8; -#endif - -#define dFIRE_bs_room_1Tex_005FD8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_005FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1Tex_005FD8[] = dFIRE_bs_room_1Tex_005FD8; -#else -static const char FIRE_bs_room_1Tex_005FD8[] __attribute__((aligned (2))) = dFIRE_bs_room_1Tex_005FD8; -#endif - -#define dFIRE_bs_room_1TLUT_004998 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1TLUT_004998" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1TLUT_004998[] = dFIRE_bs_room_1TLUT_004998; -#else -static const char FIRE_bs_room_1TLUT_004998[] __attribute__((aligned (2))) = dFIRE_bs_room_1TLUT_004998; -#endif - -#define dFIRE_bs_room_1Tex_005BD8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_005BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1Tex_005BD8[] = dFIRE_bs_room_1Tex_005BD8; -#else -static const char FIRE_bs_room_1Tex_005BD8[] __attribute__((aligned (2))) = dFIRE_bs_room_1Tex_005BD8; -#endif - -#define dFIRE_bs_room_1Tex_0049D8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_0049D8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1Tex_0049D8[] = dFIRE_bs_room_1Tex_0049D8; -#else -static const char FIRE_bs_room_1Tex_0049D8[] __attribute__((aligned (2))) = dFIRE_bs_room_1Tex_0049D8; -#endif - -#define dFIRE_bs_room_1Tex_0065D8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_0065D8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1Tex_0065D8[] = dFIRE_bs_room_1Tex_0065D8; -#else -static const char FIRE_bs_room_1Tex_0065D8[] __attribute__((aligned (2))) = dFIRE_bs_room_1Tex_0065D8; -#endif - -#define dFIRE_bs_room_1Tex_0053D8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_0053D8" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_room_1Tex_0053D8[] = dFIRE_bs_room_1Tex_0053D8; -#else -static const char FIRE_bs_room_1Tex_0053D8[] __attribute__((aligned (2))) = dFIRE_bs_room_1Tex_0053D8; -#endif - +#include "align_asset_macro.h" + +#define dFIRE_bs_room_1DL_004940 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1DL_004940" +static const ALIGN_ASSET(2) char FIRE_bs_room_1DL_004940[] = dFIRE_bs_room_1DL_004940; + +#define dFIRE_bs_room_1Tex_004BD8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_004BD8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1Tex_004BD8[] = dFIRE_bs_room_1Tex_004BD8; + +#define dFIRE_bs_room_1Tex_006DD8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_006DD8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1Tex_006DD8[] = dFIRE_bs_room_1Tex_006DD8; + +#define dFIRE_bs_room_1TLUT_0049B8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1TLUT_0049B8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1TLUT_0049B8[] = dFIRE_bs_room_1TLUT_0049B8; + +#define dFIRE_bs_room_1Tex_0061D8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_0061D8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1Tex_0061D8[] = dFIRE_bs_room_1Tex_0061D8; + +#define dFIRE_bs_room_1Tex_005FD8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_005FD8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1Tex_005FD8[] = dFIRE_bs_room_1Tex_005FD8; + +#define dFIRE_bs_room_1TLUT_004998 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1TLUT_004998" +static const ALIGN_ASSET(2) char FIRE_bs_room_1TLUT_004998[] = dFIRE_bs_room_1TLUT_004998; + +#define dFIRE_bs_room_1Tex_005BD8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_005BD8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1Tex_005BD8[] = dFIRE_bs_room_1Tex_005BD8; + +#define dFIRE_bs_room_1Tex_0049D8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_0049D8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1Tex_0049D8[] = dFIRE_bs_room_1Tex_0049D8; + +#define dFIRE_bs_room_1Tex_0065D8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_0065D8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1Tex_0065D8[] = dFIRE_bs_room_1Tex_0065D8; + +#define dFIRE_bs_room_1Tex_0053D8 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_room_1Tex_0053D8" +static const ALIGN_ASSET(2) char FIRE_bs_room_1Tex_0053D8[] = dFIRE_bs_room_1Tex_0053D8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_scene.h b/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_scene.h index 1fe0a4f20..d3aeed722 100644 --- a/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_scene.h +++ b/soh/assets/scenes/dungeons/FIRE_bs/FIRE_bs_scene.h @@ -1,37 +1,18 @@ #pragma once -#define dFIRE_bs_sceneCollisionHeader_002BCC "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneCollisionHeader_002BCC" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_sceneCollisionHeader_002BCC[] = dFIRE_bs_sceneCollisionHeader_002BCC; -#else -static const char FIRE_bs_sceneCollisionHeader_002BCC[] __attribute__((aligned (2))) = dFIRE_bs_sceneCollisionHeader_002BCC; -#endif - -#define dFIRE_bs_sceneTex_003400 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneTex_003400" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_sceneTex_003400[] = dFIRE_bs_sceneTex_003400; -#else -static const char FIRE_bs_sceneTex_003400[] __attribute__((aligned (2))) = dFIRE_bs_sceneTex_003400; -#endif - -#define dFIRE_bs_sceneTex_002C00 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneTex_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_sceneTex_002C00[] = dFIRE_bs_sceneTex_002C00; -#else -static const char FIRE_bs_sceneTex_002C00[] __attribute__((aligned (2))) = dFIRE_bs_sceneTex_002C00; -#endif - -#define dFIRE_bs_sceneTex_003C00 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneTex_003C00" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_sceneTex_003C00[] = dFIRE_bs_sceneTex_003C00; -#else -static const char FIRE_bs_sceneTex_003C00[] __attribute__((aligned (2))) = dFIRE_bs_sceneTex_003C00; -#endif - -#define dFIRE_bs_sceneTex_004400 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneTex_004400" -#ifdef _WIN32 -static const __declspec(align(2)) char FIRE_bs_sceneTex_004400[] = dFIRE_bs_sceneTex_004400; -#else -static const char FIRE_bs_sceneTex_004400[] __attribute__((aligned (2))) = dFIRE_bs_sceneTex_004400; -#endif - +#include "align_asset_macro.h" + +#define dFIRE_bs_sceneCollisionHeader_002BCC "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneCollisionHeader_002BCC" +static const ALIGN_ASSET(2) char FIRE_bs_sceneCollisionHeader_002BCC[] = dFIRE_bs_sceneCollisionHeader_002BCC; + +#define dFIRE_bs_sceneTex_003400 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneTex_003400" +static const ALIGN_ASSET(2) char FIRE_bs_sceneTex_003400[] = dFIRE_bs_sceneTex_003400; + +#define dFIRE_bs_sceneTex_002C00 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneTex_002C00" +static const ALIGN_ASSET(2) char FIRE_bs_sceneTex_002C00[] = dFIRE_bs_sceneTex_002C00; + +#define dFIRE_bs_sceneTex_003C00 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneTex_003C00" +static const ALIGN_ASSET(2) char FIRE_bs_sceneTex_003C00[] = dFIRE_bs_sceneTex_003C00; + +#define dFIRE_bs_sceneTex_004400 "__OTR__scenes/nonmq/FIRE_bs_scene/FIRE_bs_sceneTex_004400" +static const ALIGN_ASSET(2) char FIRE_bs_sceneTex_004400[] = dFIRE_bs_sceneTex_004400; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_0.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_0.h index 93268b801..a0b4d2775 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_0.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_0.h @@ -1,72 +1,33 @@ #pragma once -#define dHAKAdan_room_0DL_002768 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_002768" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0DL_002768[] = dHAKAdan_room_0DL_002768; -#else -static const char HAKAdan_room_0DL_002768[] __attribute__((aligned (2))) = dHAKAdan_room_0DL_002768; -#endif - -#define dHAKAdan_room_0Tex_009230 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0Tex_009230" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0Tex_009230[] = dHAKAdan_room_0Tex_009230; -#else -static const char HAKAdan_room_0Tex_009230[] __attribute__((aligned (2))) = dHAKAdan_room_0Tex_009230; -#endif - -#define dHAKAdan_room_0Tex_008230 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0Tex_008230" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0Tex_008230[] = dHAKAdan_room_0Tex_008230; -#else -static const char HAKAdan_room_0Tex_008230[] __attribute__((aligned (2))) = dHAKAdan_room_0Tex_008230; -#endif - -#define dHAKAdan_room_0DL_005FF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_005FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0DL_005FF0[] = dHAKAdan_room_0DL_005FF0; -#else -static const char HAKAdan_room_0DL_005FF0[] __attribute__((aligned (2))) = dHAKAdan_room_0DL_005FF0; -#endif - -#define dHAKAdan_room_0DL_000D00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_000D00" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0DL_000D00[] = dHAKAdan_room_0DL_000D00; -#else -static const char HAKAdan_room_0DL_000D00[] __attribute__((aligned (2))) = dHAKAdan_room_0DL_000D00; -#endif - -#define dHAKAdan_room_0Tex_00A230 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0Tex_00A230" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0Tex_00A230[] = dHAKAdan_room_0Tex_00A230; -#else -static const char HAKAdan_room_0Tex_00A230[] __attribute__((aligned (2))) = dHAKAdan_room_0Tex_00A230; -#endif - -#define dHAKAdan_room_0DL_007EC8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_007EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0DL_007EC8[] = dHAKAdan_room_0DL_007EC8; -#else -static const char HAKAdan_room_0DL_007EC8[] __attribute__((aligned (2))) = dHAKAdan_room_0DL_007EC8; -#endif - -#define dHAKAdan_room_0DL_0045C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_0045C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0DL_0045C0[] = dHAKAdan_room_0DL_0045C0; -#else -static const char HAKAdan_room_0DL_0045C0[] __attribute__((aligned (2))) = dHAKAdan_room_0DL_0045C0; -#endif - -#define dHAKAdan_room_0DL_00AC40 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_00AC40" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0DL_00AC40[] = dHAKAdan_room_0DL_00AC40; -#else -static const char HAKAdan_room_0DL_00AC40[] __attribute__((aligned (2))) = dHAKAdan_room_0DL_00AC40; -#endif - -#define dHAKAdan_room_0Tex_00AD48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0Tex_00AD48" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_0Tex_00AD48[] = dHAKAdan_room_0Tex_00AD48; -#else -static const char HAKAdan_room_0Tex_00AD48[] __attribute__((aligned (2))) = dHAKAdan_room_0Tex_00AD48; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_0DL_002768 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_002768" +static const ALIGN_ASSET(2) char HAKAdan_room_0DL_002768[] = dHAKAdan_room_0DL_002768; + +#define dHAKAdan_room_0Tex_009230 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0Tex_009230" +static const ALIGN_ASSET(2) char HAKAdan_room_0Tex_009230[] = dHAKAdan_room_0Tex_009230; + +#define dHAKAdan_room_0Tex_008230 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0Tex_008230" +static const ALIGN_ASSET(2) char HAKAdan_room_0Tex_008230[] = dHAKAdan_room_0Tex_008230; + +#define dHAKAdan_room_0DL_005FF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_005FF0" +static const ALIGN_ASSET(2) char HAKAdan_room_0DL_005FF0[] = dHAKAdan_room_0DL_005FF0; + +#define dHAKAdan_room_0DL_000D00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_000D00" +static const ALIGN_ASSET(2) char HAKAdan_room_0DL_000D00[] = dHAKAdan_room_0DL_000D00; + +#define dHAKAdan_room_0Tex_00A230 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0Tex_00A230" +static const ALIGN_ASSET(2) char HAKAdan_room_0Tex_00A230[] = dHAKAdan_room_0Tex_00A230; + +#define dHAKAdan_room_0DL_007EC8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_007EC8" +static const ALIGN_ASSET(2) char HAKAdan_room_0DL_007EC8[] = dHAKAdan_room_0DL_007EC8; + +#define dHAKAdan_room_0DL_0045C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_0045C0" +static const ALIGN_ASSET(2) char HAKAdan_room_0DL_0045C0[] = dHAKAdan_room_0DL_0045C0; + +#define dHAKAdan_room_0DL_00AC40 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0DL_00AC40" +static const ALIGN_ASSET(2) char HAKAdan_room_0DL_00AC40[] = dHAKAdan_room_0DL_00AC40; + +#define dHAKAdan_room_0Tex_00AD48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_0Tex_00AD48" +static const ALIGN_ASSET(2) char HAKAdan_room_0Tex_00AD48[] = dHAKAdan_room_0Tex_00AD48; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_1.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_1.h index 132f1b640..73c45c0a4 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_1.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_1.h @@ -1,30 +1,15 @@ #pragma once -#define dHAKAdan_room_1DL_001110 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_1DL_001110" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_1DL_001110[] = dHAKAdan_room_1DL_001110; -#else -static const char HAKAdan_room_1DL_001110[] __attribute__((aligned (2))) = dHAKAdan_room_1DL_001110; -#endif - -#define dHAKAdan_room_1Tex_0012E8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_1Tex_0012E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_1Tex_0012E8[] = dHAKAdan_room_1Tex_0012E8; -#else -static const char HAKAdan_room_1Tex_0012E8[] __attribute__((aligned (2))) = dHAKAdan_room_1Tex_0012E8; -#endif - -#define dHAKAdan_room_1DL_000270 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_1DL_000270" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_1DL_000270[] = dHAKAdan_room_1DL_000270; -#else -static const char HAKAdan_room_1DL_000270[] __attribute__((aligned (2))) = dHAKAdan_room_1DL_000270; -#endif - -#define dHAKAdan_room_1DL_0008F8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_1DL_0008F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_1DL_0008F8[] = dHAKAdan_room_1DL_0008F8; -#else -static const char HAKAdan_room_1DL_0008F8[] __attribute__((aligned (2))) = dHAKAdan_room_1DL_0008F8; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_1DL_001110 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_1DL_001110" +static const ALIGN_ASSET(2) char HAKAdan_room_1DL_001110[] = dHAKAdan_room_1DL_001110; + +#define dHAKAdan_room_1Tex_0012E8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_1Tex_0012E8" +static const ALIGN_ASSET(2) char HAKAdan_room_1Tex_0012E8[] = dHAKAdan_room_1Tex_0012E8; + +#define dHAKAdan_room_1DL_000270 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_1DL_000270" +static const ALIGN_ASSET(2) char HAKAdan_room_1DL_000270[] = dHAKAdan_room_1DL_000270; + +#define dHAKAdan_room_1DL_0008F8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_1DL_0008F8" +static const ALIGN_ASSET(2) char HAKAdan_room_1DL_0008F8[] = dHAKAdan_room_1DL_0008F8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_10.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_10.h index 612054c33..8ab354535 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_10.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_10.h @@ -1,107 +1,48 @@ #pragma once -#define dHAKAdan_room_10DL_0019C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_0019C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10DL_0019C0[] = dHAKAdan_room_10DL_0019C0; -#else -static const char HAKAdan_room_10DL_0019C0[] __attribute__((aligned (2))) = dHAKAdan_room_10DL_0019C0; -#endif - -#define dHAKAdan_room_10Tex_004FF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_004FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10Tex_004FF0[] = dHAKAdan_room_10Tex_004FF0; -#else -static const char HAKAdan_room_10Tex_004FF0[] __attribute__((aligned (2))) = dHAKAdan_room_10Tex_004FF0; -#endif - -#define dHAKAdan_room_10DL_002B70 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_002B70" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10DL_002B70[] = dHAKAdan_room_10DL_002B70; -#else -static const char HAKAdan_room_10DL_002B70[] __attribute__((aligned (2))) = dHAKAdan_room_10DL_002B70; -#endif - -#define dHAKAdan_room_10Tex_006BF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_006BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10Tex_006BF0[] = dHAKAdan_room_10Tex_006BF0; -#else -static const char HAKAdan_room_10Tex_006BF0[] __attribute__((aligned (2))) = dHAKAdan_room_10Tex_006BF0; -#endif - -#define dHAKAdan_room_10Tex_003FF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_003FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10Tex_003FF0[] = dHAKAdan_room_10Tex_003FF0; -#else -static const char HAKAdan_room_10Tex_003FF0[] __attribute__((aligned (2))) = dHAKAdan_room_10Tex_003FF0; -#endif - -#define dHAKAdan_room_10Tex_003DF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_003DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10Tex_003DF0[] = dHAKAdan_room_10Tex_003DF0; -#else -static const char HAKAdan_room_10Tex_003DF0[] __attribute__((aligned (2))) = dHAKAdan_room_10Tex_003DF0; -#endif - -#define dHAKAdan_room_10Tex_0073F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_0073F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10Tex_0073F0[] = dHAKAdan_room_10Tex_0073F0; -#else -static const char HAKAdan_room_10Tex_0073F0[] __attribute__((aligned (2))) = dHAKAdan_room_10Tex_0073F0; -#endif - -#define dHAKAdan_room_10Tex_0067F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_0067F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10Tex_0067F0[] = dHAKAdan_room_10Tex_0067F0; -#else -static const char HAKAdan_room_10Tex_0067F0[] __attribute__((aligned (2))) = dHAKAdan_room_10Tex_0067F0; -#endif - -#define dHAKAdan_room_10Tex_0039F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_0039F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10Tex_0039F0[] = dHAKAdan_room_10Tex_0039F0; -#else -static const char HAKAdan_room_10Tex_0039F0[] __attribute__((aligned (2))) = dHAKAdan_room_10Tex_0039F0; -#endif - -#define dHAKAdan_room_10DL_003430 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_003430" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10DL_003430[] = dHAKAdan_room_10DL_003430; -#else -static const char HAKAdan_room_10DL_003430[] __attribute__((aligned (2))) = dHAKAdan_room_10DL_003430; -#endif - -#define dHAKAdan_room_10DL_0016B8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_0016B8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10DL_0016B8[] = dHAKAdan_room_10DL_0016B8; -#else -static const char HAKAdan_room_10DL_0016B8[] __attribute__((aligned (2))) = dHAKAdan_room_10DL_0016B8; -#endif - -#define dHAKAdan_room_10DL_001440 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_001440" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10DL_001440[] = dHAKAdan_room_10DL_001440; -#else -static const char HAKAdan_room_10DL_001440[] __attribute__((aligned (2))) = dHAKAdan_room_10DL_001440; -#endif - -#define dHAKAdan_room_10Tex_005FF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_005FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10Tex_005FF0[] = dHAKAdan_room_10Tex_005FF0; -#else -static const char HAKAdan_room_10Tex_005FF0[] __attribute__((aligned (2))) = dHAKAdan_room_10Tex_005FF0; -#endif - -#define dHAKAdan_room_10DL_003858 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_003858" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10DL_003858[] = dHAKAdan_room_10DL_003858; -#else -static const char HAKAdan_room_10DL_003858[] __attribute__((aligned (2))) = dHAKAdan_room_10DL_003858; -#endif - -#define dHAKAdan_room_10DL_001010 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_001010" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_10DL_001010[] = dHAKAdan_room_10DL_001010; -#else -static const char HAKAdan_room_10DL_001010[] __attribute__((aligned (2))) = dHAKAdan_room_10DL_001010; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_10DL_0019C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_0019C0" +static const ALIGN_ASSET(2) char HAKAdan_room_10DL_0019C0[] = dHAKAdan_room_10DL_0019C0; + +#define dHAKAdan_room_10Tex_004FF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_004FF0" +static const ALIGN_ASSET(2) char HAKAdan_room_10Tex_004FF0[] = dHAKAdan_room_10Tex_004FF0; + +#define dHAKAdan_room_10DL_002B70 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_002B70" +static const ALIGN_ASSET(2) char HAKAdan_room_10DL_002B70[] = dHAKAdan_room_10DL_002B70; + +#define dHAKAdan_room_10Tex_006BF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_006BF0" +static const ALIGN_ASSET(2) char HAKAdan_room_10Tex_006BF0[] = dHAKAdan_room_10Tex_006BF0; + +#define dHAKAdan_room_10Tex_003FF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_003FF0" +static const ALIGN_ASSET(2) char HAKAdan_room_10Tex_003FF0[] = dHAKAdan_room_10Tex_003FF0; + +#define dHAKAdan_room_10Tex_003DF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_003DF0" +static const ALIGN_ASSET(2) char HAKAdan_room_10Tex_003DF0[] = dHAKAdan_room_10Tex_003DF0; + +#define dHAKAdan_room_10Tex_0073F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_0073F0" +static const ALIGN_ASSET(2) char HAKAdan_room_10Tex_0073F0[] = dHAKAdan_room_10Tex_0073F0; + +#define dHAKAdan_room_10Tex_0067F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_0067F0" +static const ALIGN_ASSET(2) char HAKAdan_room_10Tex_0067F0[] = dHAKAdan_room_10Tex_0067F0; + +#define dHAKAdan_room_10Tex_0039F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_0039F0" +static const ALIGN_ASSET(2) char HAKAdan_room_10Tex_0039F0[] = dHAKAdan_room_10Tex_0039F0; + +#define dHAKAdan_room_10DL_003430 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_003430" +static const ALIGN_ASSET(2) char HAKAdan_room_10DL_003430[] = dHAKAdan_room_10DL_003430; + +#define dHAKAdan_room_10DL_0016B8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_0016B8" +static const ALIGN_ASSET(2) char HAKAdan_room_10DL_0016B8[] = dHAKAdan_room_10DL_0016B8; + +#define dHAKAdan_room_10DL_001440 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_001440" +static const ALIGN_ASSET(2) char HAKAdan_room_10DL_001440[] = dHAKAdan_room_10DL_001440; + +#define dHAKAdan_room_10Tex_005FF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10Tex_005FF0" +static const ALIGN_ASSET(2) char HAKAdan_room_10Tex_005FF0[] = dHAKAdan_room_10Tex_005FF0; + +#define dHAKAdan_room_10DL_003858 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_003858" +static const ALIGN_ASSET(2) char HAKAdan_room_10DL_003858[] = dHAKAdan_room_10DL_003858; + +#define dHAKAdan_room_10DL_001010 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_10DL_001010" +static const ALIGN_ASSET(2) char HAKAdan_room_10DL_001010[] = dHAKAdan_room_10DL_001010; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_11.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_11.h index cc85c8c69..aba4f9c35 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_11.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_11.h @@ -1,86 +1,39 @@ #pragma once -#define dHAKAdan_room_11DL_0008B0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_0008B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11DL_0008B0[] = dHAKAdan_room_11DL_0008B0; -#else -static const char HAKAdan_room_11DL_0008B0[] __attribute__((aligned (2))) = dHAKAdan_room_11DL_0008B0; -#endif - -#define dHAKAdan_room_11Tex_002A60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_002A60" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11Tex_002A60[] = dHAKAdan_room_11Tex_002A60; -#else -static const char HAKAdan_room_11Tex_002A60[] __attribute__((aligned (2))) = dHAKAdan_room_11Tex_002A60; -#endif - -#define dHAKAdan_room_11Tex_002660 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_002660" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11Tex_002660[] = dHAKAdan_room_11Tex_002660; -#else -static const char HAKAdan_room_11Tex_002660[] __attribute__((aligned (2))) = dHAKAdan_room_11Tex_002660; -#endif - -#define dHAKAdan_room_11DL_001928 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_001928" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11DL_001928[] = dHAKAdan_room_11DL_001928; -#else -static const char HAKAdan_room_11DL_001928[] __attribute__((aligned (2))) = dHAKAdan_room_11DL_001928; -#endif - -#define dHAKAdan_room_11Tex_001E60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_001E60" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11Tex_001E60[] = dHAKAdan_room_11Tex_001E60; -#else -static const char HAKAdan_room_11Tex_001E60[] __attribute__((aligned (2))) = dHAKAdan_room_11Tex_001E60; -#endif - -#define dHAKAdan_room_11Tex_003C60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_003C60" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11Tex_003C60[] = dHAKAdan_room_11Tex_003C60; -#else -static const char HAKAdan_room_11Tex_003C60[] __attribute__((aligned (2))) = dHAKAdan_room_11Tex_003C60; -#endif - -#define dHAKAdan_room_11DL_0013D0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_0013D0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11DL_0013D0[] = dHAKAdan_room_11DL_0013D0; -#else -static const char HAKAdan_room_11DL_0013D0[] __attribute__((aligned (2))) = dHAKAdan_room_11DL_0013D0; -#endif - -#define dHAKAdan_room_11Tex_002C60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_002C60" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11Tex_002C60[] = dHAKAdan_room_11Tex_002C60; -#else -static const char HAKAdan_room_11Tex_002C60[] __attribute__((aligned (2))) = dHAKAdan_room_11Tex_002C60; -#endif - -#define dHAKAdan_room_11DL_001B78 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_001B78" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11DL_001B78[] = dHAKAdan_room_11DL_001B78; -#else -static const char HAKAdan_room_11DL_001B78[] __attribute__((aligned (2))) = dHAKAdan_room_11DL_001B78; -#endif - -#define dHAKAdan_room_11DL_000F30 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_000F30" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11DL_000F30[] = dHAKAdan_room_11DL_000F30; -#else -static const char HAKAdan_room_11DL_000F30[] __attribute__((aligned (2))) = dHAKAdan_room_11DL_000F30; -#endif - -#define dHAKAdan_room_11Tex_003460 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_003460" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11Tex_003460[] = dHAKAdan_room_11Tex_003460; -#else -static const char HAKAdan_room_11Tex_003460[] __attribute__((aligned (2))) = dHAKAdan_room_11Tex_003460; -#endif - -#define dHAKAdan_room_11DL_001D58 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_001D58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_11DL_001D58[] = dHAKAdan_room_11DL_001D58; -#else -static const char HAKAdan_room_11DL_001D58[] __attribute__((aligned (2))) = dHAKAdan_room_11DL_001D58; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_11DL_0008B0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_0008B0" +static const ALIGN_ASSET(2) char HAKAdan_room_11DL_0008B0[] = dHAKAdan_room_11DL_0008B0; + +#define dHAKAdan_room_11Tex_002A60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_002A60" +static const ALIGN_ASSET(2) char HAKAdan_room_11Tex_002A60[] = dHAKAdan_room_11Tex_002A60; + +#define dHAKAdan_room_11Tex_002660 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_002660" +static const ALIGN_ASSET(2) char HAKAdan_room_11Tex_002660[] = dHAKAdan_room_11Tex_002660; + +#define dHAKAdan_room_11DL_001928 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_001928" +static const ALIGN_ASSET(2) char HAKAdan_room_11DL_001928[] = dHAKAdan_room_11DL_001928; + +#define dHAKAdan_room_11Tex_001E60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_001E60" +static const ALIGN_ASSET(2) char HAKAdan_room_11Tex_001E60[] = dHAKAdan_room_11Tex_001E60; + +#define dHAKAdan_room_11Tex_003C60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_003C60" +static const ALIGN_ASSET(2) char HAKAdan_room_11Tex_003C60[] = dHAKAdan_room_11Tex_003C60; + +#define dHAKAdan_room_11DL_0013D0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_0013D0" +static const ALIGN_ASSET(2) char HAKAdan_room_11DL_0013D0[] = dHAKAdan_room_11DL_0013D0; + +#define dHAKAdan_room_11Tex_002C60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_002C60" +static const ALIGN_ASSET(2) char HAKAdan_room_11Tex_002C60[] = dHAKAdan_room_11Tex_002C60; + +#define dHAKAdan_room_11DL_001B78 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_001B78" +static const ALIGN_ASSET(2) char HAKAdan_room_11DL_001B78[] = dHAKAdan_room_11DL_001B78; + +#define dHAKAdan_room_11DL_000F30 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_000F30" +static const ALIGN_ASSET(2) char HAKAdan_room_11DL_000F30[] = dHAKAdan_room_11DL_000F30; + +#define dHAKAdan_room_11Tex_003460 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11Tex_003460" +static const ALIGN_ASSET(2) char HAKAdan_room_11Tex_003460[] = dHAKAdan_room_11Tex_003460; + +#define dHAKAdan_room_11DL_001D58 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_11DL_001D58" +static const ALIGN_ASSET(2) char HAKAdan_room_11DL_001D58[] = dHAKAdan_room_11DL_001D58; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_12.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_12.h index 1ac9728bc..b0e965e73 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_12.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_12.h @@ -1,79 +1,36 @@ #pragma once -#define dHAKAdan_room_12DL_002A88 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12DL_002A88" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12DL_002A88[] = dHAKAdan_room_12DL_002A88; -#else -static const char HAKAdan_room_12DL_002A88[] __attribute__((aligned (2))) = dHAKAdan_room_12DL_002A88; -#endif - -#define dHAKAdan_room_12Tex_003B48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12Tex_003B48[] = dHAKAdan_room_12Tex_003B48; -#else -static const char HAKAdan_room_12Tex_003B48[] __attribute__((aligned (2))) = dHAKAdan_room_12Tex_003B48; -#endif - -#define dHAKAdan_room_12Tex_003748 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003748" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12Tex_003748[] = dHAKAdan_room_12Tex_003748; -#else -static const char HAKAdan_room_12Tex_003748[] __attribute__((aligned (2))) = dHAKAdan_room_12Tex_003748; -#endif - -#define dHAKAdan_room_12Tex_003D48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003D48" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12Tex_003D48[] = dHAKAdan_room_12Tex_003D48; -#else -static const char HAKAdan_room_12Tex_003D48[] __attribute__((aligned (2))) = dHAKAdan_room_12Tex_003D48; -#endif - -#define dHAKAdan_room_12DL_0014F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12DL_0014F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12DL_0014F0[] = dHAKAdan_room_12DL_0014F0; -#else -static const char HAKAdan_room_12DL_0014F0[] __attribute__((aligned (2))) = dHAKAdan_room_12DL_0014F0; -#endif - -#define dHAKAdan_room_12DL_001C60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12DL_001C60" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12DL_001C60[] = dHAKAdan_room_12DL_001C60; -#else -static const char HAKAdan_room_12DL_001C60[] __attribute__((aligned (2))) = dHAKAdan_room_12DL_001C60; -#endif - -#define dHAKAdan_room_12Tex_004D48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12Tex_004D48[] = dHAKAdan_room_12Tex_004D48; -#else -static const char HAKAdan_room_12Tex_004D48[] __attribute__((aligned (2))) = dHAKAdan_room_12Tex_004D48; -#endif - -#define dHAKAdan_room_12DL_000CF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12DL_000CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12DL_000CF0[] = dHAKAdan_room_12DL_000CF0; -#else -static const char HAKAdan_room_12DL_000CF0[] __attribute__((aligned (2))) = dHAKAdan_room_12DL_000CF0; -#endif - -#define dHAKAdan_room_12Tex_005548 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_005548" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12Tex_005548[] = dHAKAdan_room_12Tex_005548; -#else -static const char HAKAdan_room_12Tex_005548[] __attribute__((aligned (2))) = dHAKAdan_room_12Tex_005548; -#endif - -#define dHAKAdan_room_12Tex_003348 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003348" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12Tex_003348[] = dHAKAdan_room_12Tex_003348; -#else -static const char HAKAdan_room_12Tex_003348[] __attribute__((aligned (2))) = dHAKAdan_room_12Tex_003348; -#endif - -#define dHAKAdan_room_12Tex_003548 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003548" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_12Tex_003548[] = dHAKAdan_room_12Tex_003548; -#else -static const char HAKAdan_room_12Tex_003548[] __attribute__((aligned (2))) = dHAKAdan_room_12Tex_003548; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_12DL_002A88 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12DL_002A88" +static const ALIGN_ASSET(2) char HAKAdan_room_12DL_002A88[] = dHAKAdan_room_12DL_002A88; + +#define dHAKAdan_room_12Tex_003B48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003B48" +static const ALIGN_ASSET(2) char HAKAdan_room_12Tex_003B48[] = dHAKAdan_room_12Tex_003B48; + +#define dHAKAdan_room_12Tex_003748 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003748" +static const ALIGN_ASSET(2) char HAKAdan_room_12Tex_003748[] = dHAKAdan_room_12Tex_003748; + +#define dHAKAdan_room_12Tex_003D48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003D48" +static const ALIGN_ASSET(2) char HAKAdan_room_12Tex_003D48[] = dHAKAdan_room_12Tex_003D48; + +#define dHAKAdan_room_12DL_0014F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12DL_0014F0" +static const ALIGN_ASSET(2) char HAKAdan_room_12DL_0014F0[] = dHAKAdan_room_12DL_0014F0; + +#define dHAKAdan_room_12DL_001C60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12DL_001C60" +static const ALIGN_ASSET(2) char HAKAdan_room_12DL_001C60[] = dHAKAdan_room_12DL_001C60; + +#define dHAKAdan_room_12Tex_004D48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_004D48" +static const ALIGN_ASSET(2) char HAKAdan_room_12Tex_004D48[] = dHAKAdan_room_12Tex_004D48; + +#define dHAKAdan_room_12DL_000CF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12DL_000CF0" +static const ALIGN_ASSET(2) char HAKAdan_room_12DL_000CF0[] = dHAKAdan_room_12DL_000CF0; + +#define dHAKAdan_room_12Tex_005548 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_005548" +static const ALIGN_ASSET(2) char HAKAdan_room_12Tex_005548[] = dHAKAdan_room_12Tex_005548; + +#define dHAKAdan_room_12Tex_003348 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003348" +static const ALIGN_ASSET(2) char HAKAdan_room_12Tex_003348[] = dHAKAdan_room_12Tex_003348; + +#define dHAKAdan_room_12Tex_003548 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_12Tex_003548" +static const ALIGN_ASSET(2) char HAKAdan_room_12Tex_003548[] = dHAKAdan_room_12Tex_003548; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_13.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_13.h index e3721e27b..0bd8defea 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_13.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_13.h @@ -1,23 +1,12 @@ #pragma once -#define dHAKAdan_room_13DL_0006E0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_13DL_0006E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_13DL_0006E0[] = dHAKAdan_room_13DL_0006E0; -#else -static const char HAKAdan_room_13DL_0006E0[] __attribute__((aligned (2))) = dHAKAdan_room_13DL_0006E0; -#endif - -#define dHAKAdan_room_13Tex_000818 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_13Tex_000818" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_13Tex_000818[] = dHAKAdan_room_13Tex_000818; -#else -static const char HAKAdan_room_13Tex_000818[] __attribute__((aligned (2))) = dHAKAdan_room_13Tex_000818; -#endif - -#define dHAKAdan_room_13DL_000450 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_13DL_000450" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_13DL_000450[] = dHAKAdan_room_13DL_000450; -#else -static const char HAKAdan_room_13DL_000450[] __attribute__((aligned (2))) = dHAKAdan_room_13DL_000450; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_13DL_0006E0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_13DL_0006E0" +static const ALIGN_ASSET(2) char HAKAdan_room_13DL_0006E0[] = dHAKAdan_room_13DL_0006E0; + +#define dHAKAdan_room_13Tex_000818 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_13Tex_000818" +static const ALIGN_ASSET(2) char HAKAdan_room_13Tex_000818[] = dHAKAdan_room_13Tex_000818; + +#define dHAKAdan_room_13DL_000450 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_13DL_000450" +static const ALIGN_ASSET(2) char HAKAdan_room_13DL_000450[] = dHAKAdan_room_13DL_000450; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_14.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_14.h index 92ae54c02..d8c9f7cf1 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_14.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_14.h @@ -1,79 +1,36 @@ #pragma once -#define dHAKAdan_room_14DL_002D08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14DL_002D08" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14DL_002D08[] = dHAKAdan_room_14DL_002D08; -#else -static const char HAKAdan_room_14DL_002D08[] __attribute__((aligned (2))) = dHAKAdan_room_14DL_002D08; -#endif - -#define dHAKAdan_room_14Tex_003D00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003D00" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14Tex_003D00[] = dHAKAdan_room_14Tex_003D00; -#else -static const char HAKAdan_room_14Tex_003D00[] __attribute__((aligned (2))) = dHAKAdan_room_14Tex_003D00; -#endif - -#define dHAKAdan_room_14Tex_003900 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003900" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14Tex_003900[] = dHAKAdan_room_14Tex_003900; -#else -static const char HAKAdan_room_14Tex_003900[] __attribute__((aligned (2))) = dHAKAdan_room_14Tex_003900; -#endif - -#define dHAKAdan_room_14Tex_003F00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003F00" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14Tex_003F00[] = dHAKAdan_room_14Tex_003F00; -#else -static const char HAKAdan_room_14Tex_003F00[] __attribute__((aligned (2))) = dHAKAdan_room_14Tex_003F00; -#endif - -#define dHAKAdan_room_14DL_000470 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14DL_000470" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14DL_000470[] = dHAKAdan_room_14DL_000470; -#else -static const char HAKAdan_room_14DL_000470[] __attribute__((aligned (2))) = dHAKAdan_room_14DL_000470; -#endif - -#define dHAKAdan_room_14DL_001AE8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14DL_001AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14DL_001AE8[] = dHAKAdan_room_14DL_001AE8; -#else -static const char HAKAdan_room_14DL_001AE8[] __attribute__((aligned (2))) = dHAKAdan_room_14DL_001AE8; -#endif - -#define dHAKAdan_room_14Tex_003500 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003500" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14Tex_003500[] = dHAKAdan_room_14Tex_003500; -#else -static const char HAKAdan_room_14Tex_003500[] __attribute__((aligned (2))) = dHAKAdan_room_14Tex_003500; -#endif - -#define dHAKAdan_room_14Tex_003700 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003700" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14Tex_003700[] = dHAKAdan_room_14Tex_003700; -#else -static const char HAKAdan_room_14Tex_003700[] __attribute__((aligned (2))) = dHAKAdan_room_14Tex_003700; -#endif - -#define dHAKAdan_room_14Tex_005700 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_005700" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14Tex_005700[] = dHAKAdan_room_14Tex_005700; -#else -static const char HAKAdan_room_14Tex_005700[] __attribute__((aligned (2))) = dHAKAdan_room_14Tex_005700; -#endif - -#define dHAKAdan_room_14DL_000DC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14DL_000DC0[] = dHAKAdan_room_14DL_000DC0; -#else -static const char HAKAdan_room_14DL_000DC0[] __attribute__((aligned (2))) = dHAKAdan_room_14DL_000DC0; -#endif - -#define dHAKAdan_room_14Tex_004F00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_004F00" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_14Tex_004F00[] = dHAKAdan_room_14Tex_004F00; -#else -static const char HAKAdan_room_14Tex_004F00[] __attribute__((aligned (2))) = dHAKAdan_room_14Tex_004F00; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_14DL_002D08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14DL_002D08" +static const ALIGN_ASSET(2) char HAKAdan_room_14DL_002D08[] = dHAKAdan_room_14DL_002D08; + +#define dHAKAdan_room_14Tex_003D00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003D00" +static const ALIGN_ASSET(2) char HAKAdan_room_14Tex_003D00[] = dHAKAdan_room_14Tex_003D00; + +#define dHAKAdan_room_14Tex_003900 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003900" +static const ALIGN_ASSET(2) char HAKAdan_room_14Tex_003900[] = dHAKAdan_room_14Tex_003900; + +#define dHAKAdan_room_14Tex_003F00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003F00" +static const ALIGN_ASSET(2) char HAKAdan_room_14Tex_003F00[] = dHAKAdan_room_14Tex_003F00; + +#define dHAKAdan_room_14DL_000470 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14DL_000470" +static const ALIGN_ASSET(2) char HAKAdan_room_14DL_000470[] = dHAKAdan_room_14DL_000470; + +#define dHAKAdan_room_14DL_001AE8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14DL_001AE8" +static const ALIGN_ASSET(2) char HAKAdan_room_14DL_001AE8[] = dHAKAdan_room_14DL_001AE8; + +#define dHAKAdan_room_14Tex_003500 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003500" +static const ALIGN_ASSET(2) char HAKAdan_room_14Tex_003500[] = dHAKAdan_room_14Tex_003500; + +#define dHAKAdan_room_14Tex_003700 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_003700" +static const ALIGN_ASSET(2) char HAKAdan_room_14Tex_003700[] = dHAKAdan_room_14Tex_003700; + +#define dHAKAdan_room_14Tex_005700 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_005700" +static const ALIGN_ASSET(2) char HAKAdan_room_14Tex_005700[] = dHAKAdan_room_14Tex_005700; + +#define dHAKAdan_room_14DL_000DC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14DL_000DC0" +static const ALIGN_ASSET(2) char HAKAdan_room_14DL_000DC0[] = dHAKAdan_room_14DL_000DC0; + +#define dHAKAdan_room_14Tex_004F00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_14Tex_004F00" +static const ALIGN_ASSET(2) char HAKAdan_room_14Tex_004F00[] = dHAKAdan_room_14Tex_004F00; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_15.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_15.h index 19cc58dfd..e4c10b19c 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_15.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_15.h @@ -1,79 +1,36 @@ #pragma once -#define dHAKAdan_room_15DL_003340 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15DL_003340" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15DL_003340[] = dHAKAdan_room_15DL_003340; -#else -static const char HAKAdan_room_15DL_003340[] __attribute__((aligned (2))) = dHAKAdan_room_15DL_003340; -#endif - -#define dHAKAdan_room_15Tex_005EC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_005EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15Tex_005EC0[] = dHAKAdan_room_15Tex_005EC0; -#else -static const char HAKAdan_room_15Tex_005EC0[] __attribute__((aligned (2))) = dHAKAdan_room_15Tex_005EC0; -#endif - -#define dHAKAdan_room_15Tex_005AC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_005AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15Tex_005AC0[] = dHAKAdan_room_15Tex_005AC0; -#else -static const char HAKAdan_room_15Tex_005AC0[] __attribute__((aligned (2))) = dHAKAdan_room_15Tex_005AC0; -#endif - -#define dHAKAdan_room_15DL_004428 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15DL_004428" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15DL_004428[] = dHAKAdan_room_15DL_004428; -#else -static const char HAKAdan_room_15DL_004428[] __attribute__((aligned (2))) = dHAKAdan_room_15DL_004428; -#endif - -#define dHAKAdan_room_15DL_001350 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15DL_001350" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15DL_001350[] = dHAKAdan_room_15DL_001350; -#else -static const char HAKAdan_room_15DL_001350[] __attribute__((aligned (2))) = dHAKAdan_room_15DL_001350; -#endif - -#define dHAKAdan_room_15Tex_0070C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0070C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15Tex_0070C0[] = dHAKAdan_room_15Tex_0070C0; -#else -static const char HAKAdan_room_15Tex_0070C0[] __attribute__((aligned (2))) = dHAKAdan_room_15Tex_0070C0; -#endif - -#define dHAKAdan_room_15Tex_0056C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0056C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15Tex_0056C0[] = dHAKAdan_room_15Tex_0056C0; -#else -static const char HAKAdan_room_15Tex_0056C0[] __attribute__((aligned (2))) = dHAKAdan_room_15Tex_0056C0; -#endif - -#define dHAKAdan_room_15Tex_0058C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0058C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15Tex_0058C0[] = dHAKAdan_room_15Tex_0058C0; -#else -static const char HAKAdan_room_15Tex_0058C0[] __attribute__((aligned (2))) = dHAKAdan_room_15Tex_0058C0; -#endif - -#define dHAKAdan_room_15DL_0053B0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15DL_0053B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15DL_0053B0[] = dHAKAdan_room_15DL_0053B0; -#else -static const char HAKAdan_room_15DL_0053B0[] __attribute__((aligned (2))) = dHAKAdan_room_15DL_0053B0; -#endif - -#define dHAKAdan_room_15Tex_0068C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0068C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15Tex_0068C0[] = dHAKAdan_room_15Tex_0068C0; -#else -static const char HAKAdan_room_15Tex_0068C0[] __attribute__((aligned (2))) = dHAKAdan_room_15Tex_0068C0; -#endif - -#define dHAKAdan_room_15Tex_0060C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0060C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_15Tex_0060C0[] = dHAKAdan_room_15Tex_0060C0; -#else -static const char HAKAdan_room_15Tex_0060C0[] __attribute__((aligned (2))) = dHAKAdan_room_15Tex_0060C0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_15DL_003340 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15DL_003340" +static const ALIGN_ASSET(2) char HAKAdan_room_15DL_003340[] = dHAKAdan_room_15DL_003340; + +#define dHAKAdan_room_15Tex_005EC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_005EC0" +static const ALIGN_ASSET(2) char HAKAdan_room_15Tex_005EC0[] = dHAKAdan_room_15Tex_005EC0; + +#define dHAKAdan_room_15Tex_005AC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_005AC0" +static const ALIGN_ASSET(2) char HAKAdan_room_15Tex_005AC0[] = dHAKAdan_room_15Tex_005AC0; + +#define dHAKAdan_room_15DL_004428 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15DL_004428" +static const ALIGN_ASSET(2) char HAKAdan_room_15DL_004428[] = dHAKAdan_room_15DL_004428; + +#define dHAKAdan_room_15DL_001350 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15DL_001350" +static const ALIGN_ASSET(2) char HAKAdan_room_15DL_001350[] = dHAKAdan_room_15DL_001350; + +#define dHAKAdan_room_15Tex_0070C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0070C0" +static const ALIGN_ASSET(2) char HAKAdan_room_15Tex_0070C0[] = dHAKAdan_room_15Tex_0070C0; + +#define dHAKAdan_room_15Tex_0056C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0056C0" +static const ALIGN_ASSET(2) char HAKAdan_room_15Tex_0056C0[] = dHAKAdan_room_15Tex_0056C0; + +#define dHAKAdan_room_15Tex_0058C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0058C0" +static const ALIGN_ASSET(2) char HAKAdan_room_15Tex_0058C0[] = dHAKAdan_room_15Tex_0058C0; + +#define dHAKAdan_room_15DL_0053B0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15DL_0053B0" +static const ALIGN_ASSET(2) char HAKAdan_room_15DL_0053B0[] = dHAKAdan_room_15DL_0053B0; + +#define dHAKAdan_room_15Tex_0068C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0068C0" +static const ALIGN_ASSET(2) char HAKAdan_room_15Tex_0068C0[] = dHAKAdan_room_15Tex_0068C0; + +#define dHAKAdan_room_15Tex_0060C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_15Tex_0060C0" +static const ALIGN_ASSET(2) char HAKAdan_room_15Tex_0060C0[] = dHAKAdan_room_15Tex_0060C0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_16.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_16.h index 5c996651f..79c37c32d 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_16.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_16.h @@ -1,23 +1,12 @@ #pragma once -#define dHAKAdan_room_16DL_001858 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_16DL_001858" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_16DL_001858[] = dHAKAdan_room_16DL_001858; -#else -static const char HAKAdan_room_16DL_001858[] __attribute__((aligned (2))) = dHAKAdan_room_16DL_001858; -#endif - -#define dHAKAdan_room_16Tex_001930 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_16Tex_001930" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_16Tex_001930[] = dHAKAdan_room_16Tex_001930; -#else -static const char HAKAdan_room_16Tex_001930[] __attribute__((aligned (2))) = dHAKAdan_room_16Tex_001930; -#endif - -#define dHAKAdan_room_16DL_001400 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_16DL_001400" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_16DL_001400[] = dHAKAdan_room_16DL_001400; -#else -static const char HAKAdan_room_16DL_001400[] __attribute__((aligned (2))) = dHAKAdan_room_16DL_001400; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_16DL_001858 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_16DL_001858" +static const ALIGN_ASSET(2) char HAKAdan_room_16DL_001858[] = dHAKAdan_room_16DL_001858; + +#define dHAKAdan_room_16Tex_001930 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_16Tex_001930" +static const ALIGN_ASSET(2) char HAKAdan_room_16Tex_001930[] = dHAKAdan_room_16Tex_001930; + +#define dHAKAdan_room_16DL_001400 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_16DL_001400" +static const ALIGN_ASSET(2) char HAKAdan_room_16DL_001400[] = dHAKAdan_room_16DL_001400; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_17.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_17.h index 6c336a06f..6c5002c73 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_17.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_17.h @@ -1,72 +1,33 @@ #pragma once -#define dHAKAdan_room_17DL_000D28 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_000D28" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17DL_000D28[] = dHAKAdan_room_17DL_000D28; -#else -static const char HAKAdan_room_17DL_000D28[] __attribute__((aligned (2))) = dHAKAdan_room_17DL_000D28; -#endif - -#define dHAKAdan_room_17Tex_001248 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_001248" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17Tex_001248[] = dHAKAdan_room_17Tex_001248; -#else -static const char HAKAdan_room_17Tex_001248[] __attribute__((aligned (2))) = dHAKAdan_room_17Tex_001248; -#endif - -#define dHAKAdan_room_17Tex_002048 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_002048" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17Tex_002048[] = dHAKAdan_room_17Tex_002048; -#else -static const char HAKAdan_room_17Tex_002048[] __attribute__((aligned (2))) = dHAKAdan_room_17Tex_002048; -#endif - -#define dHAKAdan_room_17Tex_001C48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_001C48" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17Tex_001C48[] = dHAKAdan_room_17Tex_001C48; -#else -static const char HAKAdan_room_17Tex_001C48[] __attribute__((aligned (2))) = dHAKAdan_room_17Tex_001C48; -#endif - -#define dHAKAdan_room_17DL_000610 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_000610" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17DL_000610[] = dHAKAdan_room_17DL_000610; -#else -static const char HAKAdan_room_17DL_000610[] __attribute__((aligned (2))) = dHAKAdan_room_17DL_000610; -#endif - -#define dHAKAdan_room_17Tex_001448 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_001448" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17Tex_001448[] = dHAKAdan_room_17Tex_001448; -#else -static const char HAKAdan_room_17Tex_001448[] __attribute__((aligned (2))) = dHAKAdan_room_17Tex_001448; -#endif - -#define dHAKAdan_room_17DL_001128 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_001128" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17DL_001128[] = dHAKAdan_room_17DL_001128; -#else -static const char HAKAdan_room_17DL_001128[] __attribute__((aligned (2))) = dHAKAdan_room_17DL_001128; -#endif - -#define dHAKAdan_room_17DL_000400 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_000400" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17DL_000400[] = dHAKAdan_room_17DL_000400; -#else -static const char HAKAdan_room_17DL_000400[] __attribute__((aligned (2))) = dHAKAdan_room_17DL_000400; -#endif - -#define dHAKAdan_room_17DL_002510 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_002510" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17DL_002510[] = dHAKAdan_room_17DL_002510; -#else -static const char HAKAdan_room_17DL_002510[] __attribute__((aligned (2))) = dHAKAdan_room_17DL_002510; -#endif - -#define dHAKAdan_room_17Tex_0025D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_0025D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_17Tex_0025D8[] = dHAKAdan_room_17Tex_0025D8; -#else -static const char HAKAdan_room_17Tex_0025D8[] __attribute__((aligned (2))) = dHAKAdan_room_17Tex_0025D8; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_17DL_000D28 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_000D28" +static const ALIGN_ASSET(2) char HAKAdan_room_17DL_000D28[] = dHAKAdan_room_17DL_000D28; + +#define dHAKAdan_room_17Tex_001248 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_001248" +static const ALIGN_ASSET(2) char HAKAdan_room_17Tex_001248[] = dHAKAdan_room_17Tex_001248; + +#define dHAKAdan_room_17Tex_002048 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_002048" +static const ALIGN_ASSET(2) char HAKAdan_room_17Tex_002048[] = dHAKAdan_room_17Tex_002048; + +#define dHAKAdan_room_17Tex_001C48 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_001C48" +static const ALIGN_ASSET(2) char HAKAdan_room_17Tex_001C48[] = dHAKAdan_room_17Tex_001C48; + +#define dHAKAdan_room_17DL_000610 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_000610" +static const ALIGN_ASSET(2) char HAKAdan_room_17DL_000610[] = dHAKAdan_room_17DL_000610; + +#define dHAKAdan_room_17Tex_001448 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_001448" +static const ALIGN_ASSET(2) char HAKAdan_room_17Tex_001448[] = dHAKAdan_room_17Tex_001448; + +#define dHAKAdan_room_17DL_001128 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_001128" +static const ALIGN_ASSET(2) char HAKAdan_room_17DL_001128[] = dHAKAdan_room_17DL_001128; + +#define dHAKAdan_room_17DL_000400 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_000400" +static const ALIGN_ASSET(2) char HAKAdan_room_17DL_000400[] = dHAKAdan_room_17DL_000400; + +#define dHAKAdan_room_17DL_002510 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17DL_002510" +static const ALIGN_ASSET(2) char HAKAdan_room_17DL_002510[] = dHAKAdan_room_17DL_002510; + +#define dHAKAdan_room_17Tex_0025D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_17Tex_0025D8" +static const ALIGN_ASSET(2) char HAKAdan_room_17Tex_0025D8[] = dHAKAdan_room_17Tex_0025D8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_18.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_18.h index 2781081de..92ca5d699 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_18.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_18.h @@ -1,135 +1,60 @@ #pragma once -#define dHAKAdan_room_18DL_0032A0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_0032A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_0032A0[] = dHAKAdan_room_18DL_0032A0; -#else -static const char HAKAdan_room_18DL_0032A0[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_0032A0; -#endif - -#define dHAKAdan_room_18Tex_00C708 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00C708" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18Tex_00C708[] = dHAKAdan_room_18Tex_00C708; -#else -static const char HAKAdan_room_18Tex_00C708[] __attribute__((aligned (2))) = dHAKAdan_room_18Tex_00C708; -#endif - -#define dHAKAdan_room_18Tex_00BB08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00BB08" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18Tex_00BB08[] = dHAKAdan_room_18Tex_00BB08; -#else -static const char HAKAdan_room_18Tex_00BB08[] __attribute__((aligned (2))) = dHAKAdan_room_18Tex_00BB08; -#endif - -#define dHAKAdan_room_18Tex_00CF08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00CF08" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18Tex_00CF08[] = dHAKAdan_room_18Tex_00CF08; -#else -static const char HAKAdan_room_18Tex_00CF08[] __attribute__((aligned (2))) = dHAKAdan_room_18Tex_00CF08; -#endif - -#define dHAKAdan_room_18DL_000560 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_000560" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_000560[] = dHAKAdan_room_18DL_000560; -#else -static const char HAKAdan_room_18DL_000560[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_000560; -#endif - -#define dHAKAdan_room_18DL_001298 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_001298" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_001298[] = dHAKAdan_room_18DL_001298; -#else -static const char HAKAdan_room_18DL_001298[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_001298; -#endif - -#define dHAKAdan_room_18Tex_00CB08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00CB08" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18Tex_00CB08[] = dHAKAdan_room_18Tex_00CB08; -#else -static const char HAKAdan_room_18Tex_00CB08[] __attribute__((aligned (2))) = dHAKAdan_room_18Tex_00CB08; -#endif - -#define dHAKAdan_room_18Tex_00CD08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00CD08" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18Tex_00CD08[] = dHAKAdan_room_18Tex_00CD08; -#else -static const char HAKAdan_room_18Tex_00CD08[] __attribute__((aligned (2))) = dHAKAdan_room_18Tex_00CD08; -#endif - -#define dHAKAdan_room_18Tex_00C908 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00C908" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18Tex_00C908[] = dHAKAdan_room_18Tex_00C908; -#else -static const char HAKAdan_room_18Tex_00C908[] __attribute__((aligned (2))) = dHAKAdan_room_18Tex_00C908; -#endif - -#define dHAKAdan_room_18Tex_00B908 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00B908" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18Tex_00B908[] = dHAKAdan_room_18Tex_00B908; -#else -static const char HAKAdan_room_18Tex_00B908[] __attribute__((aligned (2))) = dHAKAdan_room_18Tex_00B908; -#endif - -#define dHAKAdan_room_18DL_004928 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_004928" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_004928[] = dHAKAdan_room_18DL_004928; -#else -static const char HAKAdan_room_18DL_004928[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_004928; -#endif - -#define dHAKAdan_room_18DL_005E28 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_005E28" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_005E28[] = dHAKAdan_room_18DL_005E28; -#else -static const char HAKAdan_room_18DL_005E28[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_005E28; -#endif - -#define dHAKAdan_room_18DL_007328 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_007328" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_007328[] = dHAKAdan_room_18DL_007328; -#else -static const char HAKAdan_room_18DL_007328[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_007328; -#endif - -#define dHAKAdan_room_18DL_008828 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_008828" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_008828[] = dHAKAdan_room_18DL_008828; -#else -static const char HAKAdan_room_18DL_008828[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_008828; -#endif - -#define dHAKAdan_room_18DL_009D28 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_009D28" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_009D28[] = dHAKAdan_room_18DL_009D28; -#else -static const char HAKAdan_room_18DL_009D28[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_009D28; -#endif - -#define dHAKAdan_room_18DL_003BD0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_003BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_003BD0[] = dHAKAdan_room_18DL_003BD0; -#else -static const char HAKAdan_room_18DL_003BD0[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_003BD0; -#endif - -#define dHAKAdan_room_18Tex_00BF08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00BF08" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18Tex_00BF08[] = dHAKAdan_room_18Tex_00BF08; -#else -static const char HAKAdan_room_18Tex_00BF08[] __attribute__((aligned (2))) = dHAKAdan_room_18Tex_00BF08; -#endif - -#define dHAKAdan_room_18DL_002708 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_002708" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_002708[] = dHAKAdan_room_18DL_002708; -#else -static const char HAKAdan_room_18DL_002708[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_002708; -#endif - -#define dHAKAdan_room_18DL_00B518 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_00B518" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_18DL_00B518[] = dHAKAdan_room_18DL_00B518; -#else -static const char HAKAdan_room_18DL_00B518[] __attribute__((aligned (2))) = dHAKAdan_room_18DL_00B518; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_18DL_0032A0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_0032A0" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_0032A0[] = dHAKAdan_room_18DL_0032A0; + +#define dHAKAdan_room_18Tex_00C708 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00C708" +static const ALIGN_ASSET(2) char HAKAdan_room_18Tex_00C708[] = dHAKAdan_room_18Tex_00C708; + +#define dHAKAdan_room_18Tex_00BB08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00BB08" +static const ALIGN_ASSET(2) char HAKAdan_room_18Tex_00BB08[] = dHAKAdan_room_18Tex_00BB08; + +#define dHAKAdan_room_18Tex_00CF08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00CF08" +static const ALIGN_ASSET(2) char HAKAdan_room_18Tex_00CF08[] = dHAKAdan_room_18Tex_00CF08; + +#define dHAKAdan_room_18DL_000560 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_000560" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_000560[] = dHAKAdan_room_18DL_000560; + +#define dHAKAdan_room_18DL_001298 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_001298" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_001298[] = dHAKAdan_room_18DL_001298; + +#define dHAKAdan_room_18Tex_00CB08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00CB08" +static const ALIGN_ASSET(2) char HAKAdan_room_18Tex_00CB08[] = dHAKAdan_room_18Tex_00CB08; + +#define dHAKAdan_room_18Tex_00CD08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00CD08" +static const ALIGN_ASSET(2) char HAKAdan_room_18Tex_00CD08[] = dHAKAdan_room_18Tex_00CD08; + +#define dHAKAdan_room_18Tex_00C908 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00C908" +static const ALIGN_ASSET(2) char HAKAdan_room_18Tex_00C908[] = dHAKAdan_room_18Tex_00C908; + +#define dHAKAdan_room_18Tex_00B908 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00B908" +static const ALIGN_ASSET(2) char HAKAdan_room_18Tex_00B908[] = dHAKAdan_room_18Tex_00B908; + +#define dHAKAdan_room_18DL_004928 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_004928" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_004928[] = dHAKAdan_room_18DL_004928; + +#define dHAKAdan_room_18DL_005E28 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_005E28" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_005E28[] = dHAKAdan_room_18DL_005E28; + +#define dHAKAdan_room_18DL_007328 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_007328" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_007328[] = dHAKAdan_room_18DL_007328; + +#define dHAKAdan_room_18DL_008828 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_008828" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_008828[] = dHAKAdan_room_18DL_008828; + +#define dHAKAdan_room_18DL_009D28 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_009D28" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_009D28[] = dHAKAdan_room_18DL_009D28; + +#define dHAKAdan_room_18DL_003BD0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_003BD0" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_003BD0[] = dHAKAdan_room_18DL_003BD0; + +#define dHAKAdan_room_18Tex_00BF08 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18Tex_00BF08" +static const ALIGN_ASSET(2) char HAKAdan_room_18Tex_00BF08[] = dHAKAdan_room_18Tex_00BF08; + +#define dHAKAdan_room_18DL_002708 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_002708" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_002708[] = dHAKAdan_room_18DL_002708; + +#define dHAKAdan_room_18DL_00B518 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_18DL_00B518" +static const ALIGN_ASSET(2) char HAKAdan_room_18DL_00B518[] = dHAKAdan_room_18DL_00B518; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_19.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_19.h index 895ba7516..f7daa5953 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_19.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_19.h @@ -1,44 +1,21 @@ #pragma once -#define dHAKAdan_room_19DL_0011E0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19DL_0011E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_19DL_0011E0[] = dHAKAdan_room_19DL_0011E0; -#else -static const char HAKAdan_room_19DL_0011E0[] __attribute__((aligned (2))) = dHAKAdan_room_19DL_0011E0; -#endif - -#define dHAKAdan_room_19Tex_002578 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19Tex_002578" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_19Tex_002578[] = dHAKAdan_room_19Tex_002578; -#else -static const char HAKAdan_room_19Tex_002578[] __attribute__((aligned (2))) = dHAKAdan_room_19Tex_002578; -#endif - -#define dHAKAdan_room_19DL_001490 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19DL_001490" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_19DL_001490[] = dHAKAdan_room_19DL_001490; -#else -static const char HAKAdan_room_19DL_001490[] __attribute__((aligned (2))) = dHAKAdan_room_19DL_001490; -#endif - -#define dHAKAdan_room_19Tex_001578 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19Tex_001578" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_19Tex_001578[] = dHAKAdan_room_19Tex_001578; -#else -static const char HAKAdan_room_19Tex_001578[] __attribute__((aligned (2))) = dHAKAdan_room_19Tex_001578; -#endif - -#define dHAKAdan_room_19DL_000290 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19DL_000290" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_19DL_000290[] = dHAKAdan_room_19DL_000290; -#else -static const char HAKAdan_room_19DL_000290[] __attribute__((aligned (2))) = dHAKAdan_room_19DL_000290; -#endif - -#define dHAKAdan_room_19DL_000938 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19DL_000938" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_19DL_000938[] = dHAKAdan_room_19DL_000938; -#else -static const char HAKAdan_room_19DL_000938[] __attribute__((aligned (2))) = dHAKAdan_room_19DL_000938; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_19DL_0011E0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19DL_0011E0" +static const ALIGN_ASSET(2) char HAKAdan_room_19DL_0011E0[] = dHAKAdan_room_19DL_0011E0; + +#define dHAKAdan_room_19Tex_002578 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19Tex_002578" +static const ALIGN_ASSET(2) char HAKAdan_room_19Tex_002578[] = dHAKAdan_room_19Tex_002578; + +#define dHAKAdan_room_19DL_001490 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19DL_001490" +static const ALIGN_ASSET(2) char HAKAdan_room_19DL_001490[] = dHAKAdan_room_19DL_001490; + +#define dHAKAdan_room_19Tex_001578 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19Tex_001578" +static const ALIGN_ASSET(2) char HAKAdan_room_19Tex_001578[] = dHAKAdan_room_19Tex_001578; + +#define dHAKAdan_room_19DL_000290 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19DL_000290" +static const ALIGN_ASSET(2) char HAKAdan_room_19DL_000290[] = dHAKAdan_room_19DL_000290; + +#define dHAKAdan_room_19DL_000938 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_19DL_000938" +static const ALIGN_ASSET(2) char HAKAdan_room_19DL_000938[] = dHAKAdan_room_19DL_000938; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_2.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_2.h index feed913a6..dfa757ebd 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_2.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_2.h @@ -1,142 +1,63 @@ #pragma once -#define dHAKAdan_room_2DL_004960 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_004960" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_004960[] = dHAKAdan_room_2DL_004960; -#else -static const char HAKAdan_room_2DL_004960[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_004960; -#endif - -#define dHAKAdan_room_2Tex_0081D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0081D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_0081D8[] = dHAKAdan_room_2Tex_0081D8; -#else -static const char HAKAdan_room_2Tex_0081D8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_0081D8; -#endif - -#define dHAKAdan_room_2Tex_007FD8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_007FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_007FD8[] = dHAKAdan_room_2Tex_007FD8; -#else -static const char HAKAdan_room_2Tex_007FD8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_007FD8; -#endif - -#define dHAKAdan_room_2Tex_0073D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0073D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_0073D8[] = dHAKAdan_room_2Tex_0073D8; -#else -static const char HAKAdan_room_2Tex_0073D8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_0073D8; -#endif - -#define dHAKAdan_room_2DL_006828 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_006828" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_006828[] = dHAKAdan_room_2DL_006828; -#else -static const char HAKAdan_room_2DL_006828[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_006828; -#endif - -#define dHAKAdan_room_2DL_005260 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_005260" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_005260[] = dHAKAdan_room_2DL_005260; -#else -static const char HAKAdan_room_2DL_005260[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_005260; -#endif - -#define dHAKAdan_room_2DL_006A90 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_006A90" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_006A90[] = dHAKAdan_room_2DL_006A90; -#else -static const char HAKAdan_room_2DL_006A90[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_006A90; -#endif - -#define dHAKAdan_room_2Tex_0077D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0077D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_0077D8[] = dHAKAdan_room_2Tex_0077D8; -#else -static const char HAKAdan_room_2Tex_0077D8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_0077D8; -#endif - -#define dHAKAdan_room_2DL_002248 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_002248" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_002248[] = dHAKAdan_room_2DL_002248; -#else -static const char HAKAdan_room_2DL_002248[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_002248; -#endif - -#define dHAKAdan_room_2Tex_0091D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0091D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_0091D8[] = dHAKAdan_room_2Tex_0091D8; -#else -static const char HAKAdan_room_2Tex_0091D8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_0091D8; -#endif - -#define dHAKAdan_room_2DL_003570 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_003570" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_003570[] = dHAKAdan_room_2DL_003570; -#else -static const char HAKAdan_room_2DL_003570[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_003570; -#endif - -#define dHAKAdan_room_2Tex_00A3D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_00A3D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_00A3D8[] = dHAKAdan_room_2Tex_00A3D8; -#else -static const char HAKAdan_room_2Tex_00A3D8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_00A3D8; -#endif - -#define dHAKAdan_room_2Tex_00A7D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_00A7D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_00A7D8[] = dHAKAdan_room_2Tex_00A7D8; -#else -static const char HAKAdan_room_2Tex_00A7D8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_00A7D8; -#endif - -#define dHAKAdan_room_2Tex_00A5D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_00A5D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_00A5D8[] = dHAKAdan_room_2Tex_00A5D8; -#else -static const char HAKAdan_room_2Tex_00A5D8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_00A5D8; -#endif - -#define dHAKAdan_room_2Tex_0099D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0099D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_0099D8[] = dHAKAdan_room_2Tex_0099D8; -#else -static const char HAKAdan_room_2Tex_0099D8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_0099D8; -#endif - -#define dHAKAdan_room_2Tex_006BD8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_006BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_006BD8[] = dHAKAdan_room_2Tex_006BD8; -#else -static const char HAKAdan_room_2Tex_006BD8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_006BD8; -#endif - -#define dHAKAdan_room_2DL_005B28 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_005B28" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_005B28[] = dHAKAdan_room_2DL_005B28; -#else -static const char HAKAdan_room_2DL_005B28[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_005B28; -#endif - -#define dHAKAdan_room_2Tex_009BD8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_009BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2Tex_009BD8[] = dHAKAdan_room_2Tex_009BD8; -#else -static const char HAKAdan_room_2Tex_009BD8[] __attribute__((aligned (2))) = dHAKAdan_room_2Tex_009BD8; -#endif - -#define dHAKAdan_room_2DL_006158 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_006158" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_006158[] = dHAKAdan_room_2DL_006158; -#else -static const char HAKAdan_room_2DL_006158[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_006158; -#endif - -#define dHAKAdan_room_2DL_000A50 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_000A50" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_2DL_000A50[] = dHAKAdan_room_2DL_000A50; -#else -static const char HAKAdan_room_2DL_000A50[] __attribute__((aligned (2))) = dHAKAdan_room_2DL_000A50; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_2DL_004960 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_004960" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_004960[] = dHAKAdan_room_2DL_004960; + +#define dHAKAdan_room_2Tex_0081D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0081D8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_0081D8[] = dHAKAdan_room_2Tex_0081D8; + +#define dHAKAdan_room_2Tex_007FD8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_007FD8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_007FD8[] = dHAKAdan_room_2Tex_007FD8; + +#define dHAKAdan_room_2Tex_0073D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0073D8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_0073D8[] = dHAKAdan_room_2Tex_0073D8; + +#define dHAKAdan_room_2DL_006828 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_006828" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_006828[] = dHAKAdan_room_2DL_006828; + +#define dHAKAdan_room_2DL_005260 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_005260" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_005260[] = dHAKAdan_room_2DL_005260; + +#define dHAKAdan_room_2DL_006A90 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_006A90" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_006A90[] = dHAKAdan_room_2DL_006A90; + +#define dHAKAdan_room_2Tex_0077D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0077D8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_0077D8[] = dHAKAdan_room_2Tex_0077D8; + +#define dHAKAdan_room_2DL_002248 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_002248" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_002248[] = dHAKAdan_room_2DL_002248; + +#define dHAKAdan_room_2Tex_0091D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0091D8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_0091D8[] = dHAKAdan_room_2Tex_0091D8; + +#define dHAKAdan_room_2DL_003570 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_003570" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_003570[] = dHAKAdan_room_2DL_003570; + +#define dHAKAdan_room_2Tex_00A3D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_00A3D8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_00A3D8[] = dHAKAdan_room_2Tex_00A3D8; + +#define dHAKAdan_room_2Tex_00A7D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_00A7D8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_00A7D8[] = dHAKAdan_room_2Tex_00A7D8; + +#define dHAKAdan_room_2Tex_00A5D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_00A5D8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_00A5D8[] = dHAKAdan_room_2Tex_00A5D8; + +#define dHAKAdan_room_2Tex_0099D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_0099D8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_0099D8[] = dHAKAdan_room_2Tex_0099D8; + +#define dHAKAdan_room_2Tex_006BD8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_006BD8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_006BD8[] = dHAKAdan_room_2Tex_006BD8; + +#define dHAKAdan_room_2DL_005B28 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_005B28" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_005B28[] = dHAKAdan_room_2DL_005B28; + +#define dHAKAdan_room_2Tex_009BD8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2Tex_009BD8" +static const ALIGN_ASSET(2) char HAKAdan_room_2Tex_009BD8[] = dHAKAdan_room_2Tex_009BD8; + +#define dHAKAdan_room_2DL_006158 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_006158" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_006158[] = dHAKAdan_room_2DL_006158; + +#define dHAKAdan_room_2DL_000A50 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_2DL_000A50" +static const ALIGN_ASSET(2) char HAKAdan_room_2DL_000A50[] = dHAKAdan_room_2DL_000A50; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_20.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_20.h index 686f4c1c7..f9d2e87d5 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_20.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_20.h @@ -1,30 +1,15 @@ #pragma once -#define dHAKAdan_room_20DL_0013D0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_20DL_0013D0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_20DL_0013D0[] = dHAKAdan_room_20DL_0013D0; -#else -static const char HAKAdan_room_20DL_0013D0[] __attribute__((aligned (2))) = dHAKAdan_room_20DL_0013D0; -#endif - -#define dHAKAdan_room_20Tex_001640 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_20Tex_001640" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_20Tex_001640[] = dHAKAdan_room_20Tex_001640; -#else -static const char HAKAdan_room_20Tex_001640[] __attribute__((aligned (2))) = dHAKAdan_room_20Tex_001640; -#endif - -#define dHAKAdan_room_20DL_0002B0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_20DL_0002B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_20DL_0002B0[] = dHAKAdan_room_20DL_0002B0; -#else -static const char HAKAdan_room_20DL_0002B0[] __attribute__((aligned (2))) = dHAKAdan_room_20DL_0002B0; -#endif - -#define dHAKAdan_room_20DL_000818 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_20DL_000818" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_20DL_000818[] = dHAKAdan_room_20DL_000818; -#else -static const char HAKAdan_room_20DL_000818[] __attribute__((aligned (2))) = dHAKAdan_room_20DL_000818; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_20DL_0013D0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_20DL_0013D0" +static const ALIGN_ASSET(2) char HAKAdan_room_20DL_0013D0[] = dHAKAdan_room_20DL_0013D0; + +#define dHAKAdan_room_20Tex_001640 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_20Tex_001640" +static const ALIGN_ASSET(2) char HAKAdan_room_20Tex_001640[] = dHAKAdan_room_20Tex_001640; + +#define dHAKAdan_room_20DL_0002B0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_20DL_0002B0" +static const ALIGN_ASSET(2) char HAKAdan_room_20DL_0002B0[] = dHAKAdan_room_20DL_0002B0; + +#define dHAKAdan_room_20DL_000818 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_20DL_000818" +static const ALIGN_ASSET(2) char HAKAdan_room_20DL_000818[] = dHAKAdan_room_20DL_000818; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_21.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_21.h index 3e140eecf..9ee3a7aea 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_21.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_21.h @@ -1,156 +1,69 @@ #pragma once -#define dHAKAdan_room_21DL_006690 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_006690" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_006690[] = dHAKAdan_room_21DL_006690; -#else -static const char HAKAdan_room_21DL_006690[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_006690; -#endif - -#define dHAKAdan_room_21Tex_007800 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_007800" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_007800[] = dHAKAdan_room_21Tex_007800; -#else -static const char HAKAdan_room_21Tex_007800[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_007800; -#endif - -#define dHAKAdan_room_21Tex_007600 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_007600" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_007600[] = dHAKAdan_room_21Tex_007600; -#else -static const char HAKAdan_room_21Tex_007600[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_007600; -#endif - -#define dHAKAdan_room_21Tex_009800 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_009800" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_009800[] = dHAKAdan_room_21Tex_009800; -#else -static const char HAKAdan_room_21Tex_009800[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_009800; -#endif - -#define dHAKAdan_room_21Tex_008800 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_008800" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_008800[] = dHAKAdan_room_21Tex_008800; -#else -static const char HAKAdan_room_21Tex_008800[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_008800; -#endif - -#define dHAKAdan_room_21Tex_009000 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_009000" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_009000[] = dHAKAdan_room_21Tex_009000; -#else -static const char HAKAdan_room_21Tex_009000[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_009000; -#endif - -#define dHAKAdan_room_21DL_001A60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_001A60" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_001A60[] = dHAKAdan_room_21DL_001A60; -#else -static const char HAKAdan_room_21DL_001A60[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_001A60; -#endif - -#define dHAKAdan_room_21Tex_00A800 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_00A800" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_00A800[] = dHAKAdan_room_21Tex_00A800; -#else -static const char HAKAdan_room_21Tex_00A800[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_00A800; -#endif - -#define dHAKAdan_room_21DL_005110 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_005110" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_005110[] = dHAKAdan_room_21DL_005110; -#else -static const char HAKAdan_room_21DL_005110[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_005110; -#endif - -#define dHAKAdan_room_21DL_003DB8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_003DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_003DB8[] = dHAKAdan_room_21DL_003DB8; -#else -static const char HAKAdan_room_21DL_003DB8[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_003DB8; -#endif - -#define dHAKAdan_room_21Tex_00AA00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_00AA00" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_00AA00[] = dHAKAdan_room_21Tex_00AA00; -#else -static const char HAKAdan_room_21Tex_00AA00[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_00AA00; -#endif - -#define dHAKAdan_room_21DL_000AA8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_000AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_000AA8[] = dHAKAdan_room_21DL_000AA8; -#else -static const char HAKAdan_room_21DL_000AA8[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_000AA8; -#endif - -#define dHAKAdan_room_21DL_005768 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_005768" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_005768[] = dHAKAdan_room_21DL_005768; -#else -static const char HAKAdan_room_21DL_005768[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_005768; -#endif - -#define dHAKAdan_room_21DL_000710 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_000710" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_000710[] = dHAKAdan_room_21DL_000710; -#else -static const char HAKAdan_room_21DL_000710[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_000710; -#endif - -#define dHAKAdan_room_21DL_00ACC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_00ACC0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_00ACC0[] = dHAKAdan_room_21DL_00ACC0; -#else -static const char HAKAdan_room_21DL_00ACC0[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_00ACC0; -#endif - -#define dHAKAdan_room_21Tex_00ADA8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_00ADA8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_00ADA8[] = dHAKAdan_room_21Tex_00ADA8; -#else -static const char HAKAdan_room_21Tex_00ADA8[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_00ADA8; -#endif - -#define dHAKAdan_room_21DL_005500 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_005500" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_005500[] = dHAKAdan_room_21DL_005500; -#else -static const char HAKAdan_room_21DL_005500[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_005500; -#endif - -#define dHAKAdan_room_21Tex_006E00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_006E00" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_006E00[] = dHAKAdan_room_21Tex_006E00; -#else -static const char HAKAdan_room_21Tex_006E00[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_006E00; -#endif - -#define dHAKAdan_room_21DL_002CE8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_002CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_002CE8[] = dHAKAdan_room_21DL_002CE8; -#else -static const char HAKAdan_room_21DL_002CE8[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_002CE8; -#endif - -#define dHAKAdan_room_21DL_0010D0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_0010D0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_0010D0[] = dHAKAdan_room_21DL_0010D0; -#else -static const char HAKAdan_room_21DL_0010D0[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_0010D0; -#endif - -#define dHAKAdan_room_21Tex_00A000 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_00A000" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21Tex_00A000[] = dHAKAdan_room_21Tex_00A000; -#else -static const char HAKAdan_room_21Tex_00A000[] __attribute__((aligned (2))) = dHAKAdan_room_21Tex_00A000; -#endif - -#define dHAKAdan_room_21DL_0047A0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_0047A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_21DL_0047A0[] = dHAKAdan_room_21DL_0047A0; -#else -static const char HAKAdan_room_21DL_0047A0[] __attribute__((aligned (2))) = dHAKAdan_room_21DL_0047A0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_21DL_006690 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_006690" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_006690[] = dHAKAdan_room_21DL_006690; + +#define dHAKAdan_room_21Tex_007800 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_007800" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_007800[] = dHAKAdan_room_21Tex_007800; + +#define dHAKAdan_room_21Tex_007600 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_007600" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_007600[] = dHAKAdan_room_21Tex_007600; + +#define dHAKAdan_room_21Tex_009800 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_009800" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_009800[] = dHAKAdan_room_21Tex_009800; + +#define dHAKAdan_room_21Tex_008800 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_008800" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_008800[] = dHAKAdan_room_21Tex_008800; + +#define dHAKAdan_room_21Tex_009000 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_009000" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_009000[] = dHAKAdan_room_21Tex_009000; + +#define dHAKAdan_room_21DL_001A60 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_001A60" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_001A60[] = dHAKAdan_room_21DL_001A60; + +#define dHAKAdan_room_21Tex_00A800 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_00A800" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_00A800[] = dHAKAdan_room_21Tex_00A800; + +#define dHAKAdan_room_21DL_005110 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_005110" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_005110[] = dHAKAdan_room_21DL_005110; + +#define dHAKAdan_room_21DL_003DB8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_003DB8" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_003DB8[] = dHAKAdan_room_21DL_003DB8; + +#define dHAKAdan_room_21Tex_00AA00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_00AA00" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_00AA00[] = dHAKAdan_room_21Tex_00AA00; + +#define dHAKAdan_room_21DL_000AA8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_000AA8" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_000AA8[] = dHAKAdan_room_21DL_000AA8; + +#define dHAKAdan_room_21DL_005768 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_005768" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_005768[] = dHAKAdan_room_21DL_005768; + +#define dHAKAdan_room_21DL_000710 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_000710" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_000710[] = dHAKAdan_room_21DL_000710; + +#define dHAKAdan_room_21DL_00ACC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_00ACC0" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_00ACC0[] = dHAKAdan_room_21DL_00ACC0; + +#define dHAKAdan_room_21Tex_00ADA8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_00ADA8" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_00ADA8[] = dHAKAdan_room_21Tex_00ADA8; + +#define dHAKAdan_room_21DL_005500 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_005500" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_005500[] = dHAKAdan_room_21DL_005500; + +#define dHAKAdan_room_21Tex_006E00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_006E00" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_006E00[] = dHAKAdan_room_21Tex_006E00; + +#define dHAKAdan_room_21DL_002CE8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_002CE8" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_002CE8[] = dHAKAdan_room_21DL_002CE8; + +#define dHAKAdan_room_21DL_0010D0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_0010D0" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_0010D0[] = dHAKAdan_room_21DL_0010D0; + +#define dHAKAdan_room_21Tex_00A000 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21Tex_00A000" +static const ALIGN_ASSET(2) char HAKAdan_room_21Tex_00A000[] = dHAKAdan_room_21Tex_00A000; + +#define dHAKAdan_room_21DL_0047A0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_21DL_0047A0" +static const ALIGN_ASSET(2) char HAKAdan_room_21DL_0047A0[] = dHAKAdan_room_21DL_0047A0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_22.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_22.h index 064894822..d34512448 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_22.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_22.h @@ -1,30 +1,15 @@ #pragma once -#define dHAKAdan_room_22DL_000B00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_22DL_000B00" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_22DL_000B00[] = dHAKAdan_room_22DL_000B00; -#else -static const char HAKAdan_room_22DL_000B00[] __attribute__((aligned (2))) = dHAKAdan_room_22DL_000B00; -#endif - -#define dHAKAdan_room_22Tex_0011A8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_22Tex_0011A8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_22Tex_0011A8[] = dHAKAdan_room_22Tex_0011A8; -#else -static const char HAKAdan_room_22Tex_0011A8[] __attribute__((aligned (2))) = dHAKAdan_room_22Tex_0011A8; -#endif - -#define dHAKAdan_room_22Tex_000FA8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_22Tex_000FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_22Tex_000FA8[] = dHAKAdan_room_22Tex_000FA8; -#else -static const char HAKAdan_room_22Tex_000FA8[] __attribute__((aligned (2))) = dHAKAdan_room_22Tex_000FA8; -#endif - -#define dHAKAdan_room_22Tex_0021A8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_22Tex_0021A8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_22Tex_0021A8[] = dHAKAdan_room_22Tex_0021A8; -#else -static const char HAKAdan_room_22Tex_0021A8[] __attribute__((aligned (2))) = dHAKAdan_room_22Tex_0021A8; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_22DL_000B00 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_22DL_000B00" +static const ALIGN_ASSET(2) char HAKAdan_room_22DL_000B00[] = dHAKAdan_room_22DL_000B00; + +#define dHAKAdan_room_22Tex_0011A8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_22Tex_0011A8" +static const ALIGN_ASSET(2) char HAKAdan_room_22Tex_0011A8[] = dHAKAdan_room_22Tex_0011A8; + +#define dHAKAdan_room_22Tex_000FA8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_22Tex_000FA8" +static const ALIGN_ASSET(2) char HAKAdan_room_22Tex_000FA8[] = dHAKAdan_room_22Tex_000FA8; + +#define dHAKAdan_room_22Tex_0021A8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_22Tex_0021A8" +static const ALIGN_ASSET(2) char HAKAdan_room_22Tex_0021A8[] = dHAKAdan_room_22Tex_0021A8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_3.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_3.h index d820bed26..32490aea7 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_3.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_3.h @@ -1,58 +1,27 @@ #pragma once -#define dHAKAdan_room_3DL_000CB0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3DL_000CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_3DL_000CB0[] = dHAKAdan_room_3DL_000CB0; -#else -static const char HAKAdan_room_3DL_000CB0[] __attribute__((aligned (2))) = dHAKAdan_room_3DL_000CB0; -#endif - -#define dHAKAdan_room_3Tex_002578 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3Tex_002578" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_3Tex_002578[] = dHAKAdan_room_3Tex_002578; -#else -static const char HAKAdan_room_3Tex_002578[] __attribute__((aligned (2))) = dHAKAdan_room_3Tex_002578; -#endif - -#define dHAKAdan_room_3Tex_002778 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3Tex_002778" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_3Tex_002778[] = dHAKAdan_room_3Tex_002778; -#else -static const char HAKAdan_room_3Tex_002778[] __attribute__((aligned (2))) = dHAKAdan_room_3Tex_002778; -#endif - -#define dHAKAdan_room_3DL_001420 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3DL_001420" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_3DL_001420[] = dHAKAdan_room_3DL_001420; -#else -static const char HAKAdan_room_3DL_001420[] __attribute__((aligned (2))) = dHAKAdan_room_3DL_001420; -#endif - -#define dHAKAdan_room_3DL_000750 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3DL_000750" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_3DL_000750[] = dHAKAdan_room_3DL_000750; -#else -static const char HAKAdan_room_3DL_000750[] __attribute__((aligned (2))) = dHAKAdan_room_3DL_000750; -#endif - -#define dHAKAdan_room_3Tex_001D78 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3Tex_001D78" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_3Tex_001D78[] = dHAKAdan_room_3Tex_001D78; -#else -static const char HAKAdan_room_3Tex_001D78[] __attribute__((aligned (2))) = dHAKAdan_room_3Tex_001D78; -#endif - -#define dHAKAdan_room_3Tex_001578 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3Tex_001578" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_3Tex_001578[] = dHAKAdan_room_3Tex_001578; -#else -static const char HAKAdan_room_3Tex_001578[] __attribute__((aligned (2))) = dHAKAdan_room_3Tex_001578; -#endif - -#define dHAKAdan_room_3DL_0011B0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3DL_0011B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_3DL_0011B0[] = dHAKAdan_room_3DL_0011B0; -#else -static const char HAKAdan_room_3DL_0011B0[] __attribute__((aligned (2))) = dHAKAdan_room_3DL_0011B0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_3DL_000CB0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3DL_000CB0" +static const ALIGN_ASSET(2) char HAKAdan_room_3DL_000CB0[] = dHAKAdan_room_3DL_000CB0; + +#define dHAKAdan_room_3Tex_002578 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3Tex_002578" +static const ALIGN_ASSET(2) char HAKAdan_room_3Tex_002578[] = dHAKAdan_room_3Tex_002578; + +#define dHAKAdan_room_3Tex_002778 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3Tex_002778" +static const ALIGN_ASSET(2) char HAKAdan_room_3Tex_002778[] = dHAKAdan_room_3Tex_002778; + +#define dHAKAdan_room_3DL_001420 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3DL_001420" +static const ALIGN_ASSET(2) char HAKAdan_room_3DL_001420[] = dHAKAdan_room_3DL_001420; + +#define dHAKAdan_room_3DL_000750 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3DL_000750" +static const ALIGN_ASSET(2) char HAKAdan_room_3DL_000750[] = dHAKAdan_room_3DL_000750; + +#define dHAKAdan_room_3Tex_001D78 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3Tex_001D78" +static const ALIGN_ASSET(2) char HAKAdan_room_3Tex_001D78[] = dHAKAdan_room_3Tex_001D78; + +#define dHAKAdan_room_3Tex_001578 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3Tex_001578" +static const ALIGN_ASSET(2) char HAKAdan_room_3Tex_001578[] = dHAKAdan_room_3Tex_001578; + +#define dHAKAdan_room_3DL_0011B0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_3DL_0011B0" +static const ALIGN_ASSET(2) char HAKAdan_room_3DL_0011B0[] = dHAKAdan_room_3DL_0011B0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_4.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_4.h index 2205a0603..916255b0c 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_4.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_4.h @@ -1,30 +1,15 @@ #pragma once -#define dHAKAdan_room_4DL_001230 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_4DL_001230" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_4DL_001230[] = dHAKAdan_room_4DL_001230; -#else -static const char HAKAdan_room_4DL_001230[] __attribute__((aligned (2))) = dHAKAdan_room_4DL_001230; -#endif - -#define dHAKAdan_room_4Tex_001458 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_4Tex_001458" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_4Tex_001458[] = dHAKAdan_room_4Tex_001458; -#else -static const char HAKAdan_room_4Tex_001458[] __attribute__((aligned (2))) = dHAKAdan_room_4Tex_001458; -#endif - -#define dHAKAdan_room_4DL_000280 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_4DL_000280" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_4DL_000280[] = dHAKAdan_room_4DL_000280; -#else -static const char HAKAdan_room_4DL_000280[] __attribute__((aligned (2))) = dHAKAdan_room_4DL_000280; -#endif - -#define dHAKAdan_room_4DL_000858 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_4DL_000858" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_4DL_000858[] = dHAKAdan_room_4DL_000858; -#else -static const char HAKAdan_room_4DL_000858[] __attribute__((aligned (2))) = dHAKAdan_room_4DL_000858; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_4DL_001230 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_4DL_001230" +static const ALIGN_ASSET(2) char HAKAdan_room_4DL_001230[] = dHAKAdan_room_4DL_001230; + +#define dHAKAdan_room_4Tex_001458 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_4Tex_001458" +static const ALIGN_ASSET(2) char HAKAdan_room_4Tex_001458[] = dHAKAdan_room_4Tex_001458; + +#define dHAKAdan_room_4DL_000280 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_4DL_000280" +static const ALIGN_ASSET(2) char HAKAdan_room_4DL_000280[] = dHAKAdan_room_4DL_000280; + +#define dHAKAdan_room_4DL_000858 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_4DL_000858" +static const ALIGN_ASSET(2) char HAKAdan_room_4DL_000858[] = dHAKAdan_room_4DL_000858; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_5.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_5.h index 7044502f6..aa800c06f 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_5.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_5.h @@ -1,86 +1,39 @@ #pragma once -#define dHAKAdan_room_5DL_002E10 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_002E10" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5DL_002E10[] = dHAKAdan_room_5DL_002E10; -#else -static const char HAKAdan_room_5DL_002E10[] __attribute__((aligned (2))) = dHAKAdan_room_5DL_002E10; -#endif - -#define dHAKAdan_room_5Tex_0048C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_0048C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5Tex_0048C0[] = dHAKAdan_room_5Tex_0048C0; -#else -static const char HAKAdan_room_5Tex_0048C0[] __attribute__((aligned (2))) = dHAKAdan_room_5Tex_0048C0; -#endif - -#define dHAKAdan_room_5Tex_003CC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_003CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5Tex_003CC0[] = dHAKAdan_room_5Tex_003CC0; -#else -static const char HAKAdan_room_5Tex_003CC0[] __attribute__((aligned (2))) = dHAKAdan_room_5Tex_003CC0; -#endif - -#define dHAKAdan_room_5DL_003398 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_003398" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5DL_003398[] = dHAKAdan_room_5DL_003398; -#else -static const char HAKAdan_room_5DL_003398[] __attribute__((aligned (2))) = dHAKAdan_room_5DL_003398; -#endif - -#define dHAKAdan_room_5DL_003938 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_003938" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5DL_003938[] = dHAKAdan_room_5DL_003938; -#else -static const char HAKAdan_room_5DL_003938[] __attribute__((aligned (2))) = dHAKAdan_room_5DL_003938; -#endif - -#define dHAKAdan_room_5Tex_004AC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_004AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5Tex_004AC0[] = dHAKAdan_room_5Tex_004AC0; -#else -static const char HAKAdan_room_5Tex_004AC0[] __attribute__((aligned (2))) = dHAKAdan_room_5Tex_004AC0; -#endif - -#define dHAKAdan_room_5DL_0001F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_0001F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5DL_0001F0[] = dHAKAdan_room_5DL_0001F0; -#else -static const char HAKAdan_room_5DL_0001F0[] __attribute__((aligned (2))) = dHAKAdan_room_5DL_0001F0; -#endif - -#define dHAKAdan_room_5Tex_0040C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_0040C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5Tex_0040C0[] = dHAKAdan_room_5Tex_0040C0; -#else -static const char HAKAdan_room_5Tex_0040C0[] __attribute__((aligned (2))) = dHAKAdan_room_5Tex_0040C0; -#endif - -#define dHAKAdan_room_5DL_003B88 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_003B88" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5DL_003B88[] = dHAKAdan_room_5DL_003B88; -#else -static const char HAKAdan_room_5DL_003B88[] __attribute__((aligned (2))) = dHAKAdan_room_5DL_003B88; -#endif - -#define dHAKAdan_room_5Tex_0052C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_0052C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5Tex_0052C0[] = dHAKAdan_room_5Tex_0052C0; -#else -static const char HAKAdan_room_5Tex_0052C0[] __attribute__((aligned (2))) = dHAKAdan_room_5Tex_0052C0; -#endif - -#define dHAKAdan_room_5DL_0019E8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_0019E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5DL_0019E8[] = dHAKAdan_room_5DL_0019E8; -#else -static const char HAKAdan_room_5DL_0019E8[] __attribute__((aligned (2))) = dHAKAdan_room_5DL_0019E8; -#endif - -#define dHAKAdan_room_5DL_002098 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_002098" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_5DL_002098[] = dHAKAdan_room_5DL_002098; -#else -static const char HAKAdan_room_5DL_002098[] __attribute__((aligned (2))) = dHAKAdan_room_5DL_002098; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_5DL_002E10 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_002E10" +static const ALIGN_ASSET(2) char HAKAdan_room_5DL_002E10[] = dHAKAdan_room_5DL_002E10; + +#define dHAKAdan_room_5Tex_0048C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_0048C0" +static const ALIGN_ASSET(2) char HAKAdan_room_5Tex_0048C0[] = dHAKAdan_room_5Tex_0048C0; + +#define dHAKAdan_room_5Tex_003CC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_003CC0" +static const ALIGN_ASSET(2) char HAKAdan_room_5Tex_003CC0[] = dHAKAdan_room_5Tex_003CC0; + +#define dHAKAdan_room_5DL_003398 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_003398" +static const ALIGN_ASSET(2) char HAKAdan_room_5DL_003398[] = dHAKAdan_room_5DL_003398; + +#define dHAKAdan_room_5DL_003938 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_003938" +static const ALIGN_ASSET(2) char HAKAdan_room_5DL_003938[] = dHAKAdan_room_5DL_003938; + +#define dHAKAdan_room_5Tex_004AC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_004AC0" +static const ALIGN_ASSET(2) char HAKAdan_room_5Tex_004AC0[] = dHAKAdan_room_5Tex_004AC0; + +#define dHAKAdan_room_5DL_0001F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_0001F0" +static const ALIGN_ASSET(2) char HAKAdan_room_5DL_0001F0[] = dHAKAdan_room_5DL_0001F0; + +#define dHAKAdan_room_5Tex_0040C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_0040C0" +static const ALIGN_ASSET(2) char HAKAdan_room_5Tex_0040C0[] = dHAKAdan_room_5Tex_0040C0; + +#define dHAKAdan_room_5DL_003B88 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_003B88" +static const ALIGN_ASSET(2) char HAKAdan_room_5DL_003B88[] = dHAKAdan_room_5DL_003B88; + +#define dHAKAdan_room_5Tex_0052C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5Tex_0052C0" +static const ALIGN_ASSET(2) char HAKAdan_room_5Tex_0052C0[] = dHAKAdan_room_5Tex_0052C0; + +#define dHAKAdan_room_5DL_0019E8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_0019E8" +static const ALIGN_ASSET(2) char HAKAdan_room_5DL_0019E8[] = dHAKAdan_room_5DL_0019E8; + +#define dHAKAdan_room_5DL_002098 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_5DL_002098" +static const ALIGN_ASSET(2) char HAKAdan_room_5DL_002098[] = dHAKAdan_room_5DL_002098; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_6.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_6.h index 29133da45..5b47b92b9 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_6.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_6.h @@ -1,65 +1,30 @@ #pragma once -#define dHAKAdan_room_6DL_004178 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6DL_004178" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6DL_004178[] = dHAKAdan_room_6DL_004178; -#else -static const char HAKAdan_room_6DL_004178[] __attribute__((aligned (2))) = dHAKAdan_room_6DL_004178; -#endif - -#define dHAKAdan_room_6Tex_0071F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_0071F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6Tex_0071F0[] = dHAKAdan_room_6Tex_0071F0; -#else -static const char HAKAdan_room_6Tex_0071F0[] __attribute__((aligned (2))) = dHAKAdan_room_6Tex_0071F0; -#endif - -#define dHAKAdan_room_6Tex_0055F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_0055F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6Tex_0055F0[] = dHAKAdan_room_6Tex_0055F0; -#else -static const char HAKAdan_room_6Tex_0055F0[] __attribute__((aligned (2))) = dHAKAdan_room_6Tex_0055F0; -#endif - -#define dHAKAdan_room_6Tex_006DF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_006DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6Tex_006DF0[] = dHAKAdan_room_6Tex_006DF0; -#else -static const char HAKAdan_room_6Tex_006DF0[] __attribute__((aligned (2))) = dHAKAdan_room_6Tex_006DF0; -#endif - -#define dHAKAdan_room_6Tex_0065F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_0065F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6Tex_0065F0[] = dHAKAdan_room_6Tex_0065F0; -#else -static const char HAKAdan_room_6Tex_0065F0[] __attribute__((aligned (2))) = dHAKAdan_room_6Tex_0065F0; -#endif - -#define dHAKAdan_room_6Tex_0053F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_0053F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6Tex_0053F0[] = dHAKAdan_room_6Tex_0053F0; -#else -static const char HAKAdan_room_6Tex_0053F0[] __attribute__((aligned (2))) = dHAKAdan_room_6Tex_0053F0; -#endif - -#define dHAKAdan_room_6DL_001B40 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6DL_001B40" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6DL_001B40[] = dHAKAdan_room_6DL_001B40; -#else -static const char HAKAdan_room_6DL_001B40[] __attribute__((aligned (2))) = dHAKAdan_room_6DL_001B40; -#endif - -#define dHAKAdan_room_6DL_004B18 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6DL_004B18" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6DL_004B18[] = dHAKAdan_room_6DL_004B18; -#else -static const char HAKAdan_room_6DL_004B18[] __attribute__((aligned (2))) = dHAKAdan_room_6DL_004B18; -#endif - -#define dHAKAdan_room_6Tex_004BF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_004BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_6Tex_004BF0[] = dHAKAdan_room_6Tex_004BF0; -#else -static const char HAKAdan_room_6Tex_004BF0[] __attribute__((aligned (2))) = dHAKAdan_room_6Tex_004BF0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_6DL_004178 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6DL_004178" +static const ALIGN_ASSET(2) char HAKAdan_room_6DL_004178[] = dHAKAdan_room_6DL_004178; + +#define dHAKAdan_room_6Tex_0071F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_0071F0" +static const ALIGN_ASSET(2) char HAKAdan_room_6Tex_0071F0[] = dHAKAdan_room_6Tex_0071F0; + +#define dHAKAdan_room_6Tex_0055F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_0055F0" +static const ALIGN_ASSET(2) char HAKAdan_room_6Tex_0055F0[] = dHAKAdan_room_6Tex_0055F0; + +#define dHAKAdan_room_6Tex_006DF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_006DF0" +static const ALIGN_ASSET(2) char HAKAdan_room_6Tex_006DF0[] = dHAKAdan_room_6Tex_006DF0; + +#define dHAKAdan_room_6Tex_0065F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_0065F0" +static const ALIGN_ASSET(2) char HAKAdan_room_6Tex_0065F0[] = dHAKAdan_room_6Tex_0065F0; + +#define dHAKAdan_room_6Tex_0053F0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_0053F0" +static const ALIGN_ASSET(2) char HAKAdan_room_6Tex_0053F0[] = dHAKAdan_room_6Tex_0053F0; + +#define dHAKAdan_room_6DL_001B40 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6DL_001B40" +static const ALIGN_ASSET(2) char HAKAdan_room_6DL_001B40[] = dHAKAdan_room_6DL_001B40; + +#define dHAKAdan_room_6DL_004B18 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6DL_004B18" +static const ALIGN_ASSET(2) char HAKAdan_room_6DL_004B18[] = dHAKAdan_room_6DL_004B18; + +#define dHAKAdan_room_6Tex_004BF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_6Tex_004BF0" +static const ALIGN_ASSET(2) char HAKAdan_room_6Tex_004BF0[] = dHAKAdan_room_6Tex_004BF0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_7.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_7.h index 859f99523..9c4db8c8b 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_7.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_7.h @@ -1,30 +1,15 @@ #pragma once -#define dHAKAdan_room_7DL_001100 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_7DL_001100" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_7DL_001100[] = dHAKAdan_room_7DL_001100; -#else -static const char HAKAdan_room_7DL_001100[] __attribute__((aligned (2))) = dHAKAdan_room_7DL_001100; -#endif - -#define dHAKAdan_room_7Tex_0012D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_7Tex_0012D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_7Tex_0012D8[] = dHAKAdan_room_7Tex_0012D8; -#else -static const char HAKAdan_room_7Tex_0012D8[] __attribute__((aligned (2))) = dHAKAdan_room_7Tex_0012D8; -#endif - -#define dHAKAdan_room_7DL_000260 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_7DL_000260" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_7DL_000260[] = dHAKAdan_room_7DL_000260; -#else -static const char HAKAdan_room_7DL_000260[] __attribute__((aligned (2))) = dHAKAdan_room_7DL_000260; -#endif - -#define dHAKAdan_room_7DL_0008E8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_7DL_0008E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_7DL_0008E8[] = dHAKAdan_room_7DL_0008E8; -#else -static const char HAKAdan_room_7DL_0008E8[] __attribute__((aligned (2))) = dHAKAdan_room_7DL_0008E8; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_7DL_001100 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_7DL_001100" +static const ALIGN_ASSET(2) char HAKAdan_room_7DL_001100[] = dHAKAdan_room_7DL_001100; + +#define dHAKAdan_room_7Tex_0012D8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_7Tex_0012D8" +static const ALIGN_ASSET(2) char HAKAdan_room_7Tex_0012D8[] = dHAKAdan_room_7Tex_0012D8; + +#define dHAKAdan_room_7DL_000260 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_7DL_000260" +static const ALIGN_ASSET(2) char HAKAdan_room_7DL_000260[] = dHAKAdan_room_7DL_000260; + +#define dHAKAdan_room_7DL_0008E8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_7DL_0008E8" +static const ALIGN_ASSET(2) char HAKAdan_room_7DL_0008E8[] = dHAKAdan_room_7DL_0008E8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_8.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_8.h index 574494705..d260fa831 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_8.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_8.h @@ -1,65 +1,30 @@ #pragma once -#define dHAKAdan_room_8DL_000E70 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8DL_000E70" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8DL_000E70[] = dHAKAdan_room_8DL_000E70; -#else -static const char HAKAdan_room_8DL_000E70[] __attribute__((aligned (2))) = dHAKAdan_room_8DL_000E70; -#endif - -#define dHAKAdan_room_8Tex_004C98 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_004C98" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8Tex_004C98[] = dHAKAdan_room_8Tex_004C98; -#else -static const char HAKAdan_room_8Tex_004C98[] __attribute__((aligned (2))) = dHAKAdan_room_8Tex_004C98; -#endif - -#define dHAKAdan_room_8Tex_003098 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_003098" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8Tex_003098[] = dHAKAdan_room_8Tex_003098; -#else -static const char HAKAdan_room_8Tex_003098[] __attribute__((aligned (2))) = dHAKAdan_room_8Tex_003098; -#endif - -#define dHAKAdan_room_8DL_002418 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8DL_002418" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8DL_002418[] = dHAKAdan_room_8DL_002418; -#else -static const char HAKAdan_room_8DL_002418[] __attribute__((aligned (2))) = dHAKAdan_room_8DL_002418; -#endif - -#define dHAKAdan_room_8DL_002CC8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8DL_002CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8DL_002CC8[] = dHAKAdan_room_8DL_002CC8; -#else -static const char HAKAdan_room_8DL_002CC8[] __attribute__((aligned (2))) = dHAKAdan_room_8DL_002CC8; -#endif - -#define dHAKAdan_room_8Tex_004A98 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_004A98" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8Tex_004A98[] = dHAKAdan_room_8Tex_004A98; -#else -static const char HAKAdan_room_8Tex_004A98[] __attribute__((aligned (2))) = dHAKAdan_room_8Tex_004A98; -#endif - -#define dHAKAdan_room_8Tex_003298 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_003298" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8Tex_003298[] = dHAKAdan_room_8Tex_003298; -#else -static const char HAKAdan_room_8Tex_003298[] __attribute__((aligned (2))) = dHAKAdan_room_8Tex_003298; -#endif - -#define dHAKAdan_room_8DL_001CE8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8DL_001CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8DL_001CE8[] = dHAKAdan_room_8DL_001CE8; -#else -static const char HAKAdan_room_8DL_001CE8[] __attribute__((aligned (2))) = dHAKAdan_room_8DL_001CE8; -#endif - -#define dHAKAdan_room_8Tex_004298 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_004298" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_8Tex_004298[] = dHAKAdan_room_8Tex_004298; -#else -static const char HAKAdan_room_8Tex_004298[] __attribute__((aligned (2))) = dHAKAdan_room_8Tex_004298; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_8DL_000E70 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8DL_000E70" +static const ALIGN_ASSET(2) char HAKAdan_room_8DL_000E70[] = dHAKAdan_room_8DL_000E70; + +#define dHAKAdan_room_8Tex_004C98 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_004C98" +static const ALIGN_ASSET(2) char HAKAdan_room_8Tex_004C98[] = dHAKAdan_room_8Tex_004C98; + +#define dHAKAdan_room_8Tex_003098 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_003098" +static const ALIGN_ASSET(2) char HAKAdan_room_8Tex_003098[] = dHAKAdan_room_8Tex_003098; + +#define dHAKAdan_room_8DL_002418 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8DL_002418" +static const ALIGN_ASSET(2) char HAKAdan_room_8DL_002418[] = dHAKAdan_room_8DL_002418; + +#define dHAKAdan_room_8DL_002CC8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8DL_002CC8" +static const ALIGN_ASSET(2) char HAKAdan_room_8DL_002CC8[] = dHAKAdan_room_8DL_002CC8; + +#define dHAKAdan_room_8Tex_004A98 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_004A98" +static const ALIGN_ASSET(2) char HAKAdan_room_8Tex_004A98[] = dHAKAdan_room_8Tex_004A98; + +#define dHAKAdan_room_8Tex_003298 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_003298" +static const ALIGN_ASSET(2) char HAKAdan_room_8Tex_003298[] = dHAKAdan_room_8Tex_003298; + +#define dHAKAdan_room_8DL_001CE8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8DL_001CE8" +static const ALIGN_ASSET(2) char HAKAdan_room_8DL_001CE8[] = dHAKAdan_room_8DL_001CE8; + +#define dHAKAdan_room_8Tex_004298 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_8Tex_004298" +static const ALIGN_ASSET(2) char HAKAdan_room_8Tex_004298[] = dHAKAdan_room_8Tex_004298; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_9.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_9.h index 865e5107d..324f9f152 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_9.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_room_9.h @@ -1,142 +1,63 @@ #pragma once -#define dHAKAdan_room_9DL_005AF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_005AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_005AF0[] = dHAKAdan_room_9DL_005AF0; -#else -static const char HAKAdan_room_9DL_005AF0[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_005AF0; -#endif - -#define dHAKAdan_room_9Tex_00C890 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00C890" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_00C890[] = dHAKAdan_room_9Tex_00C890; -#else -static const char HAKAdan_room_9Tex_00C890[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_00C890; -#endif - -#define dHAKAdan_room_9Tex_00A090 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00A090" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_00A090[] = dHAKAdan_room_9Tex_00A090; -#else -static const char HAKAdan_room_9Tex_00A090[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_00A090; -#endif - -#define dHAKAdan_room_9Tex_00BA90 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00BA90" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_00BA90[] = dHAKAdan_room_9Tex_00BA90; -#else -static const char HAKAdan_room_9Tex_00BA90[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_00BA90; -#endif - -#define dHAKAdan_room_9DL_008E68 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_008E68" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_008E68[] = dHAKAdan_room_9DL_008E68; -#else -static const char HAKAdan_room_9DL_008E68[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_008E68; -#endif - -#define dHAKAdan_room_9DL_008058 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_008058" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_008058[] = dHAKAdan_room_9DL_008058; -#else -static const char HAKAdan_room_9DL_008058[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_008058; -#endif - -#define dHAKAdan_room_9DL_000470 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_000470" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_000470[] = dHAKAdan_room_9DL_000470; -#else -static const char HAKAdan_room_9DL_000470[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_000470; -#endif - -#define dHAKAdan_room_9DL_006600 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_006600" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_006600[] = dHAKAdan_room_9DL_006600; -#else -static const char HAKAdan_room_9DL_006600[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_006600; -#endif - -#define dHAKAdan_room_9Tex_00B290 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00B290" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_00B290[] = dHAKAdan_room_9Tex_00B290; -#else -static const char HAKAdan_room_9Tex_00B290[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_00B290; -#endif - -#define dHAKAdan_room_9DL_008910 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_008910" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_008910[] = dHAKAdan_room_9DL_008910; -#else -static const char HAKAdan_room_9DL_008910[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_008910; -#endif - -#define dHAKAdan_room_9DL_002248 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_002248" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_002248[] = dHAKAdan_room_9DL_002248; -#else -static const char HAKAdan_room_9DL_002248[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_002248; -#endif - -#define dHAKAdan_room_9Tex_009890 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_009890" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_009890[] = dHAKAdan_room_9Tex_009890; -#else -static const char HAKAdan_room_9Tex_009890[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_009890; -#endif - -#define dHAKAdan_room_9DL_003E30 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_003E30" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_003E30[] = dHAKAdan_room_9DL_003E30; -#else -static const char HAKAdan_room_9DL_003E30[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_003E30; -#endif - -#define dHAKAdan_room_9Tex_009090 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_009090" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_009090[] = dHAKAdan_room_9Tex_009090; -#else -static const char HAKAdan_room_9Tex_009090[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_009090; -#endif - -#define dHAKAdan_room_9Tex_00C690 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00C690" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_00C690[] = dHAKAdan_room_9Tex_00C690; -#else -static const char HAKAdan_room_9Tex_00C690[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_00C690; -#endif - -#define dHAKAdan_room_9Tex_00A290 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00A290" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_00A290[] = dHAKAdan_room_9Tex_00A290; -#else -static const char HAKAdan_room_9Tex_00A290[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_00A290; -#endif - -#define dHAKAdan_room_9DL_0085F8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_0085F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_0085F8[] = dHAKAdan_room_9DL_0085F8; -#else -static const char HAKAdan_room_9DL_0085F8[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_0085F8; -#endif - -#define dHAKAdan_room_9DL_000868 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_000868" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_000868[] = dHAKAdan_room_9DL_000868; -#else -static const char HAKAdan_room_9DL_000868[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_000868; -#endif - -#define dHAKAdan_room_9DL_007620 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_007620" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9DL_007620[] = dHAKAdan_room_9DL_007620; -#else -static const char HAKAdan_room_9DL_007620[] __attribute__((aligned (2))) = dHAKAdan_room_9DL_007620; -#endif - -#define dHAKAdan_room_9Tex_00BE90 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00BE90" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_room_9Tex_00BE90[] = dHAKAdan_room_9Tex_00BE90; -#else -static const char HAKAdan_room_9Tex_00BE90[] __attribute__((aligned (2))) = dHAKAdan_room_9Tex_00BE90; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_room_9DL_005AF0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_005AF0" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_005AF0[] = dHAKAdan_room_9DL_005AF0; + +#define dHAKAdan_room_9Tex_00C890 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00C890" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_00C890[] = dHAKAdan_room_9Tex_00C890; + +#define dHAKAdan_room_9Tex_00A090 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00A090" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_00A090[] = dHAKAdan_room_9Tex_00A090; + +#define dHAKAdan_room_9Tex_00BA90 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00BA90" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_00BA90[] = dHAKAdan_room_9Tex_00BA90; + +#define dHAKAdan_room_9DL_008E68 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_008E68" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_008E68[] = dHAKAdan_room_9DL_008E68; + +#define dHAKAdan_room_9DL_008058 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_008058" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_008058[] = dHAKAdan_room_9DL_008058; + +#define dHAKAdan_room_9DL_000470 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_000470" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_000470[] = dHAKAdan_room_9DL_000470; + +#define dHAKAdan_room_9DL_006600 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_006600" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_006600[] = dHAKAdan_room_9DL_006600; + +#define dHAKAdan_room_9Tex_00B290 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00B290" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_00B290[] = dHAKAdan_room_9Tex_00B290; + +#define dHAKAdan_room_9DL_008910 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_008910" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_008910[] = dHAKAdan_room_9DL_008910; + +#define dHAKAdan_room_9DL_002248 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_002248" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_002248[] = dHAKAdan_room_9DL_002248; + +#define dHAKAdan_room_9Tex_009890 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_009890" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_009890[] = dHAKAdan_room_9Tex_009890; + +#define dHAKAdan_room_9DL_003E30 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_003E30" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_003E30[] = dHAKAdan_room_9DL_003E30; + +#define dHAKAdan_room_9Tex_009090 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_009090" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_009090[] = dHAKAdan_room_9Tex_009090; + +#define dHAKAdan_room_9Tex_00C690 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00C690" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_00C690[] = dHAKAdan_room_9Tex_00C690; + +#define dHAKAdan_room_9Tex_00A290 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00A290" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_00A290[] = dHAKAdan_room_9Tex_00A290; + +#define dHAKAdan_room_9DL_0085F8 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_0085F8" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_0085F8[] = dHAKAdan_room_9DL_0085F8; + +#define dHAKAdan_room_9DL_000868 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_000868" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_000868[] = dHAKAdan_room_9DL_000868; + +#define dHAKAdan_room_9DL_007620 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9DL_007620" +static const ALIGN_ASSET(2) char HAKAdan_room_9DL_007620[] = dHAKAdan_room_9DL_007620; + +#define dHAKAdan_room_9Tex_00BE90 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_room_9Tex_00BE90" +static const ALIGN_ASSET(2) char HAKAdan_room_9Tex_00BE90[] = dHAKAdan_room_9Tex_00BE90; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_scene.h b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_scene.h index ce415afb1..4897f466b 100644 --- a/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_scene.h +++ b/soh/assets/scenes/dungeons/HAKAdan/HAKAdan_scene.h @@ -1,37 +1,18 @@ #pragma once -#define dHAKAdan_sceneCollisionHeader_016394 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneCollisionHeader_016394" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_sceneCollisionHeader_016394[] = dHAKAdan_sceneCollisionHeader_016394; -#else -static const char HAKAdan_sceneCollisionHeader_016394[] __attribute__((aligned (2))) = dHAKAdan_sceneCollisionHeader_016394; -#endif - -#define dHAKAdan_sceneTex_0173C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneTex_0173C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_sceneTex_0173C0[] = dHAKAdan_sceneTex_0173C0; -#else -static const char HAKAdan_sceneTex_0173C0[] __attribute__((aligned (2))) = dHAKAdan_sceneTex_0173C0; -#endif - -#define dHAKAdan_sceneTex_017BC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneTex_017BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_sceneTex_017BC0[] = dHAKAdan_sceneTex_017BC0; -#else -static const char HAKAdan_sceneTex_017BC0[] __attribute__((aligned (2))) = dHAKAdan_sceneTex_017BC0; -#endif - -#define dHAKAdan_sceneTex_016BC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneTex_016BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_sceneTex_016BC0[] = dHAKAdan_sceneTex_016BC0; -#else -static const char HAKAdan_sceneTex_016BC0[] __attribute__((aligned (2))) = dHAKAdan_sceneTex_016BC0; -#endif - -#define dHAKAdan_sceneTex_0163C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneTex_0163C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_sceneTex_0163C0[] = dHAKAdan_sceneTex_0163C0; -#else -static const char HAKAdan_sceneTex_0163C0[] __attribute__((aligned (2))) = dHAKAdan_sceneTex_0163C0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_sceneCollisionHeader_016394 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneCollisionHeader_016394" +static const ALIGN_ASSET(2) char HAKAdan_sceneCollisionHeader_016394[] = dHAKAdan_sceneCollisionHeader_016394; + +#define dHAKAdan_sceneTex_0173C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneTex_0173C0" +static const ALIGN_ASSET(2) char HAKAdan_sceneTex_0173C0[] = dHAKAdan_sceneTex_0173C0; + +#define dHAKAdan_sceneTex_017BC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneTex_017BC0" +static const ALIGN_ASSET(2) char HAKAdan_sceneTex_017BC0[] = dHAKAdan_sceneTex_017BC0; + +#define dHAKAdan_sceneTex_016BC0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneTex_016BC0" +static const ALIGN_ASSET(2) char HAKAdan_sceneTex_016BC0[] = dHAKAdan_sceneTex_016BC0; + +#define dHAKAdan_sceneTex_0163C0 "__OTR__scenes/nonmq/HAKAdan_scene/HAKAdan_sceneTex_0163C0" +static const ALIGN_ASSET(2) char HAKAdan_sceneTex_0163C0[] = dHAKAdan_sceneTex_0163C0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_0.h b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_0.h index b5aff56e9..abb6848d2 100644 --- a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_0.h +++ b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_0.h @@ -1,366 +1,159 @@ #pragma once -#define dHAKAdanCH_room_0DL_001D30 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_001D30[] = dHAKAdanCH_room_0DL_001D30; -#else -static const char HAKAdanCH_room_0DL_001D30[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_001D30; -#endif - -#define dHAKAdanCH_room_0Tex_013320 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_013320" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_013320[] = dHAKAdanCH_room_0Tex_013320; -#else -static const char HAKAdanCH_room_0Tex_013320[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_013320; -#endif - -#define dHAKAdanCH_room_0Tex_011920 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_011920" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_011920[] = dHAKAdanCH_room_0Tex_011920; -#else -static const char HAKAdanCH_room_0Tex_011920[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_011920; -#endif - -#define dHAKAdanCH_room_0Tex_011120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_011120" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_011120[] = dHAKAdanCH_room_0Tex_011120; -#else -static const char HAKAdanCH_room_0Tex_011120[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_011120; -#endif - -#define dHAKAdanCH_room_0Tex_00DF20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00DF20" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_00DF20[] = dHAKAdanCH_room_0Tex_00DF20; -#else -static const char HAKAdanCH_room_0Tex_00DF20[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_00DF20; -#endif - -#define dHAKAdanCH_room_0Tex_00F920 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00F920" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_00F920[] = dHAKAdanCH_room_0Tex_00F920; -#else -static const char HAKAdanCH_room_0Tex_00F920[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_00F920; -#endif - -#define dHAKAdanCH_room_0DL_004018 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_004018" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_004018[] = dHAKAdanCH_room_0DL_004018; -#else -static const char HAKAdanCH_room_0DL_004018[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_004018; -#endif - -#define dHAKAdanCH_room_0Tex_011F20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_011F20" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_011F20[] = dHAKAdanCH_room_0Tex_011F20; -#else -static const char HAKAdanCH_room_0Tex_011F20[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_011F20; -#endif - -#define dHAKAdanCH_room_0Tex_010120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_010120" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_010120[] = dHAKAdanCH_room_0Tex_010120; -#else -static const char HAKAdanCH_room_0Tex_010120[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_010120; -#endif - -#define dHAKAdanCH_room_0DL_004D18 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_004D18" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_004D18[] = dHAKAdanCH_room_0DL_004D18; -#else -static const char HAKAdanCH_room_0DL_004D18[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_004D18; -#endif - -#define dHAKAdanCH_room_0DL_0057C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0057C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_0057C0[] = dHAKAdanCH_room_0DL_0057C0; -#else -static const char HAKAdanCH_room_0DL_0057C0[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_0057C0; -#endif - -#define dHAKAdanCH_room_0Tex_00E120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00E120" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_00E120[] = dHAKAdanCH_room_0Tex_00E120; -#else -static const char HAKAdanCH_room_0Tex_00E120[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_00E120; -#endif - -#define dHAKAdanCH_room_0DL_005C30 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_005C30" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_005C30[] = dHAKAdanCH_room_0DL_005C30; -#else -static const char HAKAdanCH_room_0DL_005C30[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_005C30; -#endif - -#define dHAKAdanCH_room_0DL_006000 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_006000" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_006000[] = dHAKAdanCH_room_0DL_006000; -#else -static const char HAKAdanCH_room_0DL_006000[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_006000; -#endif - -#define dHAKAdanCH_room_0DL_002438 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_002438" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_002438[] = dHAKAdanCH_room_0DL_002438; -#else -static const char HAKAdanCH_room_0DL_002438[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_002438; -#endif - -#define dHAKAdanCH_room_0DL_00D550 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00D550" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00D550[] = dHAKAdanCH_room_0DL_00D550; -#else -static const char HAKAdanCH_room_0DL_00D550[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00D550; -#endif - -#define dHAKAdanCH_room_0DL_001360 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_001360" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_001360[] = dHAKAdanCH_room_0DL_001360; -#else -static const char HAKAdanCH_room_0DL_001360[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_001360; -#endif - -#define dHAKAdanCH_room_0Tex_013720 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_013720" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_013720[] = dHAKAdanCH_room_0Tex_013720; -#else -static const char HAKAdanCH_room_0Tex_013720[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_013720; -#endif - -#define dHAKAdanCH_room_0DL_0079B0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0079B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_0079B0[] = dHAKAdanCH_room_0DL_0079B0; -#else -static const char HAKAdanCH_room_0DL_0079B0[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_0079B0; -#endif - -#define dHAKAdanCH_room_0DL_0087B0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0087B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_0087B0[] = dHAKAdanCH_room_0DL_0087B0; -#else -static const char HAKAdanCH_room_0DL_0087B0[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_0087B0; -#endif - -#define dHAKAdanCH_room_0DL_009AD8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_009AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_009AD8[] = dHAKAdanCH_room_0DL_009AD8; -#else -static const char HAKAdanCH_room_0DL_009AD8[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_009AD8; -#endif - -#define dHAKAdanCH_room_0DL_00A6A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00A6A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00A6A0[] = dHAKAdanCH_room_0DL_00A6A0; -#else -static const char HAKAdanCH_room_0DL_00A6A0[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00A6A0; -#endif - -#define dHAKAdanCH_room_0DL_00AC28 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00AC28" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00AC28[] = dHAKAdanCH_room_0DL_00AC28; -#else -static const char HAKAdanCH_room_0DL_00AC28[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00AC28; -#endif - -#define dHAKAdanCH_room_0DL_00B060 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00B060" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00B060[] = dHAKAdanCH_room_0DL_00B060; -#else -static const char HAKAdanCH_room_0DL_00B060[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00B060; -#endif - -#define dHAKAdanCH_room_0DL_003228 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_003228" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_003228[] = dHAKAdanCH_room_0DL_003228; -#else -static const char HAKAdanCH_room_0DL_003228[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_003228; -#endif - -#define dHAKAdanCH_room_0DL_002C00 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_002C00[] = dHAKAdanCH_room_0DL_002C00; -#else -static const char HAKAdanCH_room_0DL_002C00[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_002C00; -#endif - -#define dHAKAdanCH_room_0DL_014430 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_014430" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_014430[] = dHAKAdanCH_room_0DL_014430; -#else -static const char HAKAdanCH_room_0DL_014430[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_014430; -#endif - -#define dHAKAdanCH_room_0Tex_014B20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_014B20" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_014B20[] = dHAKAdanCH_room_0Tex_014B20; -#else -static const char HAKAdanCH_room_0Tex_014B20[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_014B20; -#endif - -#define dHAKAdanCH_room_0DL_014868 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_014868" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_014868[] = dHAKAdanCH_room_0DL_014868; -#else -static const char HAKAdanCH_room_0DL_014868[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_014868; -#endif - -#define dHAKAdanCH_room_0Tex_014F20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_014F20" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_014F20[] = dHAKAdanCH_room_0Tex_014F20; -#else -static const char HAKAdanCH_room_0Tex_014F20[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_014F20; -#endif - -#define dHAKAdanCH_room_0DL_014A38 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_014A38" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_014A38[] = dHAKAdanCH_room_0DL_014A38; -#else -static const char HAKAdanCH_room_0DL_014A38[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_014A38; -#endif - -#define dHAKAdanCH_room_0DL_006D58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_006D58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_006D58[] = dHAKAdanCH_room_0DL_006D58; -#else -static const char HAKAdanCH_room_0DL_006D58[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_006D58; -#endif - -#define dHAKAdanCH_room_0Tex_00D720 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00D720" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_00D720[] = dHAKAdanCH_room_0Tex_00D720; -#else -static const char HAKAdanCH_room_0Tex_00D720[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_00D720; -#endif - -#define dHAKAdanCH_room_0DL_0007B0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0007B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_0007B0[] = dHAKAdanCH_room_0DL_0007B0; -#else -static const char HAKAdanCH_room_0DL_0007B0[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_0007B0; -#endif - -#define dHAKAdanCH_room_0DL_0037D8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0037D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_0037D8[] = dHAKAdanCH_room_0DL_0037D8; -#else -static const char HAKAdanCH_room_0DL_0037D8[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_0037D8; -#endif - -#define dHAKAdanCH_room_0DL_003518 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_003518" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_003518[] = dHAKAdanCH_room_0DL_003518; -#else -static const char HAKAdanCH_room_0DL_003518[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_003518; -#endif - -#define dHAKAdanCH_room_0DL_006760 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_006760" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_006760[] = dHAKAdanCH_room_0DL_006760; -#else -static const char HAKAdanCH_room_0DL_006760[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_006760; -#endif - -#define dHAKAdanCH_room_0Tex_011D20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_011D20" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_011D20[] = dHAKAdanCH_room_0Tex_011D20; -#else -static const char HAKAdanCH_room_0Tex_011D20[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_011D20; -#endif - -#define dHAKAdanCH_room_0Tex_012F20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_012F20" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_012F20[] = dHAKAdanCH_room_0Tex_012F20; -#else -static const char HAKAdanCH_room_0Tex_012F20[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_012F20; -#endif - -#define dHAKAdanCH_room_0Tex_013120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_013120" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_013120[] = dHAKAdanCH_room_0Tex_013120; -#else -static const char HAKAdanCH_room_0Tex_013120[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_013120; -#endif - -#define dHAKAdanCH_room_0Tex_013F20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_013F20" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_013F20[] = dHAKAdanCH_room_0Tex_013F20; -#else -static const char HAKAdanCH_room_0Tex_013F20[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_013F20; -#endif - -#define dHAKAdanCH_room_0DL_0021C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0021C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_0021C0[] = dHAKAdanCH_room_0DL_0021C0; -#else -static const char HAKAdanCH_room_0DL_0021C0[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_0021C0; -#endif - -#define dHAKAdanCH_room_0Tex_00F120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00F120" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_00F120[] = dHAKAdanCH_room_0Tex_00F120; -#else -static const char HAKAdanCH_room_0Tex_00F120[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_00F120; -#endif - -#define dHAKAdanCH_room_0DL_00BAB8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00BAB8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00BAB8[] = dHAKAdanCH_room_0DL_00BAB8; -#else -static const char HAKAdanCH_room_0DL_00BAB8[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00BAB8; -#endif - -#define dHAKAdanCH_room_0Tex_012720 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_012720" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0Tex_012720[] = dHAKAdanCH_room_0Tex_012720; -#else -static const char HAKAdanCH_room_0Tex_012720[] __attribute__((aligned (2))) = dHAKAdanCH_room_0Tex_012720; -#endif - -#define dHAKAdanCH_room_0DL_00C178 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00C178" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00C178[] = dHAKAdanCH_room_0DL_00C178; -#else -static const char HAKAdanCH_room_0DL_00C178[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00C178; -#endif - -#define dHAKAdanCH_room_0DL_00C7A8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00C7A8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00C7A8[] = dHAKAdanCH_room_0DL_00C7A8; -#else -static const char HAKAdanCH_room_0DL_00C7A8[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00C7A8; -#endif - -#define dHAKAdanCH_room_0DL_00CE78 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00CE78" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00CE78[] = dHAKAdanCH_room_0DL_00CE78; -#else -static const char HAKAdanCH_room_0DL_00CE78[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00CE78; -#endif - -#define dHAKAdanCH_room_0DL_00D258 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00D258" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00D258[] = dHAKAdanCH_room_0DL_00D258; -#else -static const char HAKAdanCH_room_0DL_00D258[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00D258; -#endif - -#define dHAKAdanCH_room_0DL_014610 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_014610" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_014610[] = dHAKAdanCH_room_0DL_014610; -#else -static const char HAKAdanCH_room_0DL_014610[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_014610; -#endif - -#define dHAKAdanCH_room_0DL_00B380 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00B380" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_00B380[] = dHAKAdanCH_room_0DL_00B380; -#else -static const char HAKAdanCH_room_0DL_00B380[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_00B380; -#endif - -#define dHAKAdanCH_room_0DL_0025D0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0025D0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_0DL_0025D0[] = dHAKAdanCH_room_0DL_0025D0; -#else -static const char HAKAdanCH_room_0DL_0025D0[] __attribute__((aligned (2))) = dHAKAdanCH_room_0DL_0025D0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdanCH_room_0DL_001D30 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_001D30" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_001D30[] = dHAKAdanCH_room_0DL_001D30; + +#define dHAKAdanCH_room_0Tex_013320 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_013320" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_013320[] = dHAKAdanCH_room_0Tex_013320; + +#define dHAKAdanCH_room_0Tex_011920 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_011920" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_011920[] = dHAKAdanCH_room_0Tex_011920; + +#define dHAKAdanCH_room_0Tex_011120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_011120" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_011120[] = dHAKAdanCH_room_0Tex_011120; + +#define dHAKAdanCH_room_0Tex_00DF20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00DF20" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_00DF20[] = dHAKAdanCH_room_0Tex_00DF20; + +#define dHAKAdanCH_room_0Tex_00F920 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00F920" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_00F920[] = dHAKAdanCH_room_0Tex_00F920; + +#define dHAKAdanCH_room_0DL_004018 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_004018" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_004018[] = dHAKAdanCH_room_0DL_004018; + +#define dHAKAdanCH_room_0Tex_011F20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_011F20" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_011F20[] = dHAKAdanCH_room_0Tex_011F20; + +#define dHAKAdanCH_room_0Tex_010120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_010120" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_010120[] = dHAKAdanCH_room_0Tex_010120; + +#define dHAKAdanCH_room_0DL_004D18 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_004D18" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_004D18[] = dHAKAdanCH_room_0DL_004D18; + +#define dHAKAdanCH_room_0DL_0057C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0057C0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_0057C0[] = dHAKAdanCH_room_0DL_0057C0; + +#define dHAKAdanCH_room_0Tex_00E120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00E120" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_00E120[] = dHAKAdanCH_room_0Tex_00E120; + +#define dHAKAdanCH_room_0DL_005C30 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_005C30" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_005C30[] = dHAKAdanCH_room_0DL_005C30; + +#define dHAKAdanCH_room_0DL_006000 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_006000" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_006000[] = dHAKAdanCH_room_0DL_006000; + +#define dHAKAdanCH_room_0DL_002438 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_002438" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_002438[] = dHAKAdanCH_room_0DL_002438; + +#define dHAKAdanCH_room_0DL_00D550 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00D550" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00D550[] = dHAKAdanCH_room_0DL_00D550; + +#define dHAKAdanCH_room_0DL_001360 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_001360" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_001360[] = dHAKAdanCH_room_0DL_001360; + +#define dHAKAdanCH_room_0Tex_013720 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_013720" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_013720[] = dHAKAdanCH_room_0Tex_013720; + +#define dHAKAdanCH_room_0DL_0079B0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0079B0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_0079B0[] = dHAKAdanCH_room_0DL_0079B0; + +#define dHAKAdanCH_room_0DL_0087B0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0087B0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_0087B0[] = dHAKAdanCH_room_0DL_0087B0; + +#define dHAKAdanCH_room_0DL_009AD8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_009AD8" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_009AD8[] = dHAKAdanCH_room_0DL_009AD8; + +#define dHAKAdanCH_room_0DL_00A6A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00A6A0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00A6A0[] = dHAKAdanCH_room_0DL_00A6A0; + +#define dHAKAdanCH_room_0DL_00AC28 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00AC28" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00AC28[] = dHAKAdanCH_room_0DL_00AC28; + +#define dHAKAdanCH_room_0DL_00B060 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00B060" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00B060[] = dHAKAdanCH_room_0DL_00B060; + +#define dHAKAdanCH_room_0DL_003228 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_003228" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_003228[] = dHAKAdanCH_room_0DL_003228; + +#define dHAKAdanCH_room_0DL_002C00 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_002C00" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_002C00[] = dHAKAdanCH_room_0DL_002C00; + +#define dHAKAdanCH_room_0DL_014430 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_014430" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_014430[] = dHAKAdanCH_room_0DL_014430; + +#define dHAKAdanCH_room_0Tex_014B20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_014B20" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_014B20[] = dHAKAdanCH_room_0Tex_014B20; + +#define dHAKAdanCH_room_0DL_014868 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_014868" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_014868[] = dHAKAdanCH_room_0DL_014868; + +#define dHAKAdanCH_room_0Tex_014F20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_014F20" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_014F20[] = dHAKAdanCH_room_0Tex_014F20; + +#define dHAKAdanCH_room_0DL_014A38 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_014A38" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_014A38[] = dHAKAdanCH_room_0DL_014A38; + +#define dHAKAdanCH_room_0DL_006D58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_006D58" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_006D58[] = dHAKAdanCH_room_0DL_006D58; + +#define dHAKAdanCH_room_0Tex_00D720 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00D720" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_00D720[] = dHAKAdanCH_room_0Tex_00D720; + +#define dHAKAdanCH_room_0DL_0007B0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0007B0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_0007B0[] = dHAKAdanCH_room_0DL_0007B0; + +#define dHAKAdanCH_room_0DL_0037D8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0037D8" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_0037D8[] = dHAKAdanCH_room_0DL_0037D8; + +#define dHAKAdanCH_room_0DL_003518 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_003518" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_003518[] = dHAKAdanCH_room_0DL_003518; + +#define dHAKAdanCH_room_0DL_006760 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_006760" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_006760[] = dHAKAdanCH_room_0DL_006760; + +#define dHAKAdanCH_room_0Tex_011D20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_011D20" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_011D20[] = dHAKAdanCH_room_0Tex_011D20; + +#define dHAKAdanCH_room_0Tex_012F20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_012F20" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_012F20[] = dHAKAdanCH_room_0Tex_012F20; + +#define dHAKAdanCH_room_0Tex_013120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_013120" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_013120[] = dHAKAdanCH_room_0Tex_013120; + +#define dHAKAdanCH_room_0Tex_013F20 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_013F20" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_013F20[] = dHAKAdanCH_room_0Tex_013F20; + +#define dHAKAdanCH_room_0DL_0021C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0021C0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_0021C0[] = dHAKAdanCH_room_0DL_0021C0; + +#define dHAKAdanCH_room_0Tex_00F120 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_00F120" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_00F120[] = dHAKAdanCH_room_0Tex_00F120; + +#define dHAKAdanCH_room_0DL_00BAB8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00BAB8" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00BAB8[] = dHAKAdanCH_room_0DL_00BAB8; + +#define dHAKAdanCH_room_0Tex_012720 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0Tex_012720" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0Tex_012720[] = dHAKAdanCH_room_0Tex_012720; + +#define dHAKAdanCH_room_0DL_00C178 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00C178" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00C178[] = dHAKAdanCH_room_0DL_00C178; + +#define dHAKAdanCH_room_0DL_00C7A8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00C7A8" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00C7A8[] = dHAKAdanCH_room_0DL_00C7A8; + +#define dHAKAdanCH_room_0DL_00CE78 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00CE78" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00CE78[] = dHAKAdanCH_room_0DL_00CE78; + +#define dHAKAdanCH_room_0DL_00D258 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00D258" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00D258[] = dHAKAdanCH_room_0DL_00D258; + +#define dHAKAdanCH_room_0DL_014610 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_014610" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_014610[] = dHAKAdanCH_room_0DL_014610; + +#define dHAKAdanCH_room_0DL_00B380 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_00B380" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_00B380[] = dHAKAdanCH_room_0DL_00B380; + +#define dHAKAdanCH_room_0DL_0025D0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_0DL_0025D0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_0DL_0025D0[] = dHAKAdanCH_room_0DL_0025D0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_1.h b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_1.h index 91f26a6fd..d4e1ae94a 100644 --- a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_1.h +++ b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_1.h @@ -1,128 +1,57 @@ #pragma once -#define dHAKAdanCH_room_1DL_008B10 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_008B10" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_008B10[] = dHAKAdanCH_room_1DL_008B10; -#else -static const char HAKAdanCH_room_1DL_008B10[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_008B10; -#endif - -#define dHAKAdanCH_room_1Tex_00A158 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_00A158" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_00A158[] = dHAKAdanCH_room_1Tex_00A158; -#else -static const char HAKAdanCH_room_1Tex_00A158[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_00A158; -#endif - -#define dHAKAdanCH_room_1DL_005E60 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_005E60" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_005E60[] = dHAKAdanCH_room_1DL_005E60; -#else -static const char HAKAdanCH_room_1DL_005E60[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_005E60; -#endif - -#define dHAKAdanCH_room_1Tex_009758 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_009758" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_009758[] = dHAKAdanCH_room_1Tex_009758; -#else -static const char HAKAdanCH_room_1Tex_009758[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_009758; -#endif - -#define dHAKAdanCH_room_1Tex_008D58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_008D58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_008D58[] = dHAKAdanCH_room_1Tex_008D58; -#else -static const char HAKAdanCH_room_1Tex_008D58[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_008D58; -#endif - -#define dHAKAdanCH_room_1Tex_009358 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_009358" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_009358[] = dHAKAdanCH_room_1Tex_009358; -#else -static const char HAKAdanCH_room_1Tex_009358[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_009358; -#endif - -#define dHAKAdanCH_room_1DL_007358 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_007358" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_007358[] = dHAKAdanCH_room_1DL_007358; -#else -static const char HAKAdanCH_room_1DL_007358[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_007358; -#endif - -#define dHAKAdanCH_room_1Tex_00A558 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_00A558" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_00A558[] = dHAKAdanCH_room_1Tex_00A558; -#else -static const char HAKAdanCH_room_1Tex_00A558[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_00A558; -#endif - -#define dHAKAdanCH_room_1DL_007EA8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_007EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_007EA8[] = dHAKAdanCH_room_1DL_007EA8; -#else -static const char HAKAdanCH_room_1DL_007EA8[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_007EA8; -#endif - -#define dHAKAdanCH_room_1DL_0067E8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_0067E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_0067E8[] = dHAKAdanCH_room_1DL_0067E8; -#else -static const char HAKAdanCH_room_1DL_0067E8[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_0067E8; -#endif - -#define dHAKAdanCH_room_1DL_000A70 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_000A70" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_000A70[] = dHAKAdanCH_room_1DL_000A70; -#else -static const char HAKAdanCH_room_1DL_000A70[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_000A70; -#endif - -#define dHAKAdanCH_room_1DL_0018D8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_0018D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_0018D8[] = dHAKAdanCH_room_1DL_0018D8; -#else -static const char HAKAdanCH_room_1DL_0018D8[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_0018D8; -#endif - -#define dHAKAdanCH_room_1DL_0040C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_0040C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_0040C0[] = dHAKAdanCH_room_1DL_0040C0; -#else -static const char HAKAdanCH_room_1DL_0040C0[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_0040C0; -#endif - -#define dHAKAdanCH_room_1Tex_00AD58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_00AD58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_00AD58[] = dHAKAdanCH_room_1Tex_00AD58; -#else -static const char HAKAdanCH_room_1Tex_00AD58[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_00AD58; -#endif - -#define dHAKAdanCH_room_1Tex_009F58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_009F58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_009F58[] = dHAKAdanCH_room_1Tex_009F58; -#else -static const char HAKAdanCH_room_1Tex_009F58[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_009F58; -#endif - -#define dHAKAdanCH_room_1Tex_008F58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_008F58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_008F58[] = dHAKAdanCH_room_1Tex_008F58; -#else -static const char HAKAdanCH_room_1Tex_008F58[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_008F58; -#endif - -#define dHAKAdanCH_room_1Tex_009158 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_009158" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1Tex_009158[] = dHAKAdanCH_room_1Tex_009158; -#else -static const char HAKAdanCH_room_1Tex_009158[] __attribute__((aligned (2))) = dHAKAdanCH_room_1Tex_009158; -#endif - -#define dHAKAdanCH_room_1DL_00B040 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_00B040" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_1DL_00B040[] = dHAKAdanCH_room_1DL_00B040; -#else -static const char HAKAdanCH_room_1DL_00B040[] __attribute__((aligned (2))) = dHAKAdanCH_room_1DL_00B040; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdanCH_room_1DL_008B10 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_008B10" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_008B10[] = dHAKAdanCH_room_1DL_008B10; + +#define dHAKAdanCH_room_1Tex_00A158 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_00A158" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_00A158[] = dHAKAdanCH_room_1Tex_00A158; + +#define dHAKAdanCH_room_1DL_005E60 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_005E60" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_005E60[] = dHAKAdanCH_room_1DL_005E60; + +#define dHAKAdanCH_room_1Tex_009758 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_009758" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_009758[] = dHAKAdanCH_room_1Tex_009758; + +#define dHAKAdanCH_room_1Tex_008D58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_008D58" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_008D58[] = dHAKAdanCH_room_1Tex_008D58; + +#define dHAKAdanCH_room_1Tex_009358 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_009358" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_009358[] = dHAKAdanCH_room_1Tex_009358; + +#define dHAKAdanCH_room_1DL_007358 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_007358" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_007358[] = dHAKAdanCH_room_1DL_007358; + +#define dHAKAdanCH_room_1Tex_00A558 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_00A558" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_00A558[] = dHAKAdanCH_room_1Tex_00A558; + +#define dHAKAdanCH_room_1DL_007EA8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_007EA8" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_007EA8[] = dHAKAdanCH_room_1DL_007EA8; + +#define dHAKAdanCH_room_1DL_0067E8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_0067E8" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_0067E8[] = dHAKAdanCH_room_1DL_0067E8; + +#define dHAKAdanCH_room_1DL_000A70 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_000A70" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_000A70[] = dHAKAdanCH_room_1DL_000A70; + +#define dHAKAdanCH_room_1DL_0018D8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_0018D8" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_0018D8[] = dHAKAdanCH_room_1DL_0018D8; + +#define dHAKAdanCH_room_1DL_0040C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_0040C0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_0040C0[] = dHAKAdanCH_room_1DL_0040C0; + +#define dHAKAdanCH_room_1Tex_00AD58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_00AD58" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_00AD58[] = dHAKAdanCH_room_1Tex_00AD58; + +#define dHAKAdanCH_room_1Tex_009F58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_009F58" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_009F58[] = dHAKAdanCH_room_1Tex_009F58; + +#define dHAKAdanCH_room_1Tex_008F58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_008F58" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_008F58[] = dHAKAdanCH_room_1Tex_008F58; + +#define dHAKAdanCH_room_1Tex_009158 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1Tex_009158" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1Tex_009158[] = dHAKAdanCH_room_1Tex_009158; + +#define dHAKAdanCH_room_1DL_00B040 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_1DL_00B040" +static const ALIGN_ASSET(2) char HAKAdanCH_room_1DL_00B040[] = dHAKAdanCH_room_1DL_00B040; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_2.h b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_2.h index 15a4ab1ed..0421b4eff 100644 --- a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_2.h +++ b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_2.h @@ -1,51 +1,24 @@ #pragma once -#define dHAKAdanCH_room_2DL_0009E0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2DL_0009E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_2DL_0009E0[] = dHAKAdanCH_room_2DL_0009E0; -#else -static const char HAKAdanCH_room_2DL_0009E0[] __attribute__((aligned (2))) = dHAKAdanCH_room_2DL_0009E0; -#endif - -#define dHAKAdanCH_room_2Tex_002958 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2Tex_002958" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_2Tex_002958[] = dHAKAdanCH_room_2Tex_002958; -#else -static const char HAKAdanCH_room_2Tex_002958[] __attribute__((aligned (2))) = dHAKAdanCH_room_2Tex_002958; -#endif - -#define dHAKAdanCH_room_2DL_001FA8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2DL_001FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_2DL_001FA8[] = dHAKAdanCH_room_2DL_001FA8; -#else -static const char HAKAdanCH_room_2DL_001FA8[] __attribute__((aligned (2))) = dHAKAdanCH_room_2DL_001FA8; -#endif - -#define dHAKAdanCH_room_2Tex_002F58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2Tex_002F58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_2Tex_002F58[] = dHAKAdanCH_room_2Tex_002F58; -#else -static const char HAKAdanCH_room_2Tex_002F58[] __attribute__((aligned (2))) = dHAKAdanCH_room_2Tex_002F58; -#endif - -#define dHAKAdanCH_room_2Tex_002D58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2Tex_002D58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_2Tex_002D58[] = dHAKAdanCH_room_2Tex_002D58; -#else -static const char HAKAdanCH_room_2Tex_002D58[] __attribute__((aligned (2))) = dHAKAdanCH_room_2Tex_002D58; -#endif - -#define dHAKAdanCH_room_2Tex_002B58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2Tex_002B58" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_2Tex_002B58[] = dHAKAdanCH_room_2Tex_002B58; -#else -static const char HAKAdanCH_room_2Tex_002B58[] __attribute__((aligned (2))) = dHAKAdanCH_room_2Tex_002B58; -#endif - -#define dHAKAdanCH_room_2DL_0006E0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2DL_0006E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_2DL_0006E0[] = dHAKAdanCH_room_2DL_0006E0; -#else -static const char HAKAdanCH_room_2DL_0006E0[] __attribute__((aligned (2))) = dHAKAdanCH_room_2DL_0006E0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdanCH_room_2DL_0009E0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2DL_0009E0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_2DL_0009E0[] = dHAKAdanCH_room_2DL_0009E0; + +#define dHAKAdanCH_room_2Tex_002958 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2Tex_002958" +static const ALIGN_ASSET(2) char HAKAdanCH_room_2Tex_002958[] = dHAKAdanCH_room_2Tex_002958; + +#define dHAKAdanCH_room_2DL_001FA8 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2DL_001FA8" +static const ALIGN_ASSET(2) char HAKAdanCH_room_2DL_001FA8[] = dHAKAdanCH_room_2DL_001FA8; + +#define dHAKAdanCH_room_2Tex_002F58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2Tex_002F58" +static const ALIGN_ASSET(2) char HAKAdanCH_room_2Tex_002F58[] = dHAKAdanCH_room_2Tex_002F58; + +#define dHAKAdanCH_room_2Tex_002D58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2Tex_002D58" +static const ALIGN_ASSET(2) char HAKAdanCH_room_2Tex_002D58[] = dHAKAdanCH_room_2Tex_002D58; + +#define dHAKAdanCH_room_2Tex_002B58 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2Tex_002B58" +static const ALIGN_ASSET(2) char HAKAdanCH_room_2Tex_002B58[] = dHAKAdanCH_room_2Tex_002B58; + +#define dHAKAdanCH_room_2DL_0006E0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_2DL_0006E0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_2DL_0006E0[] = dHAKAdanCH_room_2DL_0006E0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_3.h b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_3.h index 722f17811..f16349e3e 100644 --- a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_3.h +++ b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_3.h @@ -1,30 +1,15 @@ #pragma once -#define dHAKAdanCH_room_3DL_000D40 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_3DL_000D40" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_3DL_000D40[] = dHAKAdanCH_room_3DL_000D40; -#else -static const char HAKAdanCH_room_3DL_000D40[] __attribute__((aligned (2))) = dHAKAdanCH_room_3DL_000D40; -#endif - -#define dHAKAdanCH_room_3Tex_0014C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_3Tex_0014C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_3Tex_0014C0[] = dHAKAdanCH_room_3Tex_0014C0; -#else -static const char HAKAdanCH_room_3Tex_0014C0[] __attribute__((aligned (2))) = dHAKAdanCH_room_3Tex_0014C0; -#endif - -#define dHAKAdanCH_room_3DL_0013A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_3DL_0013A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_3DL_0013A0[] = dHAKAdanCH_room_3DL_0013A0; -#else -static const char HAKAdanCH_room_3DL_0013A0[] __attribute__((aligned (2))) = dHAKAdanCH_room_3DL_0013A0; -#endif - -#define dHAKAdanCH_room_3DL_001198 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_3DL_001198" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_3DL_001198[] = dHAKAdanCH_room_3DL_001198; -#else -static const char HAKAdanCH_room_3DL_001198[] __attribute__((aligned (2))) = dHAKAdanCH_room_3DL_001198; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdanCH_room_3DL_000D40 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_3DL_000D40" +static const ALIGN_ASSET(2) char HAKAdanCH_room_3DL_000D40[] = dHAKAdanCH_room_3DL_000D40; + +#define dHAKAdanCH_room_3Tex_0014C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_3Tex_0014C0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_3Tex_0014C0[] = dHAKAdanCH_room_3Tex_0014C0; + +#define dHAKAdanCH_room_3DL_0013A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_3DL_0013A0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_3DL_0013A0[] = dHAKAdanCH_room_3DL_0013A0; + +#define dHAKAdanCH_room_3DL_001198 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_3DL_001198" +static const ALIGN_ASSET(2) char HAKAdanCH_room_3DL_001198[] = dHAKAdanCH_room_3DL_001198; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_4.h b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_4.h index f5ae9b5d6..27e042a81 100644 --- a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_4.h +++ b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_4.h @@ -1,37 +1,18 @@ #pragma once -#define dHAKAdanCH_room_4DL_001270 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4DL_001270" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_4DL_001270[] = dHAKAdanCH_room_4DL_001270; -#else -static const char HAKAdanCH_room_4DL_001270[] __attribute__((aligned (2))) = dHAKAdanCH_room_4DL_001270; -#endif - -#define dHAKAdanCH_room_4Tex_001C98 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4Tex_001C98" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_4Tex_001C98[] = dHAKAdanCH_room_4Tex_001C98; -#else -static const char HAKAdanCH_room_4Tex_001C98[] __attribute__((aligned (2))) = dHAKAdanCH_room_4Tex_001C98; -#endif - -#define dHAKAdanCH_room_4DL_0002C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4DL_0002C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_4DL_0002C0[] = dHAKAdanCH_room_4DL_0002C0; -#else -static const char HAKAdanCH_room_4DL_0002C0[] __attribute__((aligned (2))) = dHAKAdanCH_room_4DL_0002C0; -#endif - -#define dHAKAdanCH_room_4Tex_001498 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4Tex_001498" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_4Tex_001498[] = dHAKAdanCH_room_4Tex_001498; -#else -static const char HAKAdanCH_room_4Tex_001498[] __attribute__((aligned (2))) = dHAKAdanCH_room_4Tex_001498; -#endif - -#define dHAKAdanCH_room_4DL_000898 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4DL_000898" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_4DL_000898[] = dHAKAdanCH_room_4DL_000898; -#else -static const char HAKAdanCH_room_4DL_000898[] __attribute__((aligned (2))) = dHAKAdanCH_room_4DL_000898; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdanCH_room_4DL_001270 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4DL_001270" +static const ALIGN_ASSET(2) char HAKAdanCH_room_4DL_001270[] = dHAKAdanCH_room_4DL_001270; + +#define dHAKAdanCH_room_4Tex_001C98 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4Tex_001C98" +static const ALIGN_ASSET(2) char HAKAdanCH_room_4Tex_001C98[] = dHAKAdanCH_room_4Tex_001C98; + +#define dHAKAdanCH_room_4DL_0002C0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4DL_0002C0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_4DL_0002C0[] = dHAKAdanCH_room_4DL_0002C0; + +#define dHAKAdanCH_room_4Tex_001498 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4Tex_001498" +static const ALIGN_ASSET(2) char HAKAdanCH_room_4Tex_001498[] = dHAKAdanCH_room_4Tex_001498; + +#define dHAKAdanCH_room_4DL_000898 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_4DL_000898" +static const ALIGN_ASSET(2) char HAKAdanCH_room_4DL_000898[] = dHAKAdanCH_room_4DL_000898; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_5.h b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_5.h index 966ff94e9..56bfca27e 100644 --- a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_5.h +++ b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_5.h @@ -1,51 +1,24 @@ #pragma once -#define dHAKAdanCH_room_5DL_0010A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_0010A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_5DL_0010A0[] = dHAKAdanCH_room_5DL_0010A0; -#else -static const char HAKAdanCH_room_5DL_0010A0[] __attribute__((aligned (2))) = dHAKAdanCH_room_5DL_0010A0; -#endif - -#define dHAKAdanCH_room_5Tex_001190 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5Tex_001190" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_5Tex_001190[] = dHAKAdanCH_room_5Tex_001190; -#else -static const char HAKAdanCH_room_5Tex_001190[] __attribute__((aligned (2))) = dHAKAdanCH_room_5Tex_001190; -#endif - -#define dHAKAdanCH_room_5DL_000F10 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_000F10" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_5DL_000F10[] = dHAKAdanCH_room_5DL_000F10; -#else -static const char HAKAdanCH_room_5DL_000F10[] __attribute__((aligned (2))) = dHAKAdanCH_room_5DL_000F10; -#endif - -#define dHAKAdanCH_room_5DL_000C18 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_000C18" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_5DL_000C18[] = dHAKAdanCH_room_5DL_000C18; -#else -static const char HAKAdanCH_room_5DL_000C18[] __attribute__((aligned (2))) = dHAKAdanCH_room_5DL_000C18; -#endif - -#define dHAKAdanCH_room_5Tex_002190 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5Tex_002190" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_5Tex_002190[] = dHAKAdanCH_room_5Tex_002190; -#else -static const char HAKAdanCH_room_5Tex_002190[] __attribute__((aligned (2))) = dHAKAdanCH_room_5Tex_002190; -#endif - -#define dHAKAdanCH_room_5DL_000420 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_000420" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_5DL_000420[] = dHAKAdanCH_room_5DL_000420; -#else -static const char HAKAdanCH_room_5DL_000420[] __attribute__((aligned (2))) = dHAKAdanCH_room_5DL_000420; -#endif - -#define dHAKAdanCH_room_5DL_000270 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_000270" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_5DL_000270[] = dHAKAdanCH_room_5DL_000270; -#else -static const char HAKAdanCH_room_5DL_000270[] __attribute__((aligned (2))) = dHAKAdanCH_room_5DL_000270; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdanCH_room_5DL_0010A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_0010A0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_5DL_0010A0[] = dHAKAdanCH_room_5DL_0010A0; + +#define dHAKAdanCH_room_5Tex_001190 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5Tex_001190" +static const ALIGN_ASSET(2) char HAKAdanCH_room_5Tex_001190[] = dHAKAdanCH_room_5Tex_001190; + +#define dHAKAdanCH_room_5DL_000F10 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_000F10" +static const ALIGN_ASSET(2) char HAKAdanCH_room_5DL_000F10[] = dHAKAdanCH_room_5DL_000F10; + +#define dHAKAdanCH_room_5DL_000C18 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_000C18" +static const ALIGN_ASSET(2) char HAKAdanCH_room_5DL_000C18[] = dHAKAdanCH_room_5DL_000C18; + +#define dHAKAdanCH_room_5Tex_002190 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5Tex_002190" +static const ALIGN_ASSET(2) char HAKAdanCH_room_5Tex_002190[] = dHAKAdanCH_room_5Tex_002190; + +#define dHAKAdanCH_room_5DL_000420 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_000420" +static const ALIGN_ASSET(2) char HAKAdanCH_room_5DL_000420[] = dHAKAdanCH_room_5DL_000420; + +#define dHAKAdanCH_room_5DL_000270 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_5DL_000270" +static const ALIGN_ASSET(2) char HAKAdanCH_room_5DL_000270[] = dHAKAdanCH_room_5DL_000270; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_6.h b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_6.h index 9056dd735..0af3cf719 100644 --- a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_6.h +++ b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_room_6.h @@ -1,37 +1,18 @@ #pragma once -#define dHAKAdanCH_room_6DL_000C30 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6DL_000C30" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_6DL_000C30[] = dHAKAdanCH_room_6DL_000C30; -#else -static const char HAKAdanCH_room_6DL_000C30[] __attribute__((aligned (2))) = dHAKAdanCH_room_6DL_000C30; -#endif - -#define dHAKAdanCH_room_6Tex_0016A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6Tex_0016A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_6Tex_0016A0[] = dHAKAdanCH_room_6Tex_0016A0; -#else -static const char HAKAdanCH_room_6Tex_0016A0[] __attribute__((aligned (2))) = dHAKAdanCH_room_6Tex_0016A0; -#endif - -#define dHAKAdanCH_room_6Tex_0026A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6Tex_0026A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_6Tex_0026A0[] = dHAKAdanCH_room_6Tex_0026A0; -#else -static const char HAKAdanCH_room_6Tex_0026A0[] __attribute__((aligned (2))) = dHAKAdanCH_room_6Tex_0026A0; -#endif - -#define dHAKAdanCH_room_6DL_000410 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6DL_000410" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_6DL_000410[] = dHAKAdanCH_room_6DL_000410; -#else -static const char HAKAdanCH_room_6DL_000410[] __attribute__((aligned (2))) = dHAKAdanCH_room_6DL_000410; -#endif - -#define dHAKAdanCH_room_6Tex_000EA0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6Tex_000EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_room_6Tex_000EA0[] = dHAKAdanCH_room_6Tex_000EA0; -#else -static const char HAKAdanCH_room_6Tex_000EA0[] __attribute__((aligned (2))) = dHAKAdanCH_room_6Tex_000EA0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdanCH_room_6DL_000C30 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6DL_000C30" +static const ALIGN_ASSET(2) char HAKAdanCH_room_6DL_000C30[] = dHAKAdanCH_room_6DL_000C30; + +#define dHAKAdanCH_room_6Tex_0016A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6Tex_0016A0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_6Tex_0016A0[] = dHAKAdanCH_room_6Tex_0016A0; + +#define dHAKAdanCH_room_6Tex_0026A0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6Tex_0026A0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_6Tex_0026A0[] = dHAKAdanCH_room_6Tex_0026A0; + +#define dHAKAdanCH_room_6DL_000410 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6DL_000410" +static const ALIGN_ASSET(2) char HAKAdanCH_room_6DL_000410[] = dHAKAdanCH_room_6DL_000410; + +#define dHAKAdanCH_room_6Tex_000EA0 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_room_6Tex_000EA0" +static const ALIGN_ASSET(2) char HAKAdanCH_room_6Tex_000EA0[] = dHAKAdanCH_room_6Tex_000EA0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_scene.h b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_scene.h index 464de599d..9d0cfb239 100644 --- a/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_scene.h +++ b/soh/assets/scenes/dungeons/HAKAdanCH/HAKAdanCH_scene.h @@ -1,37 +1,18 @@ #pragma once -#define dHAKAdanCH_sceneCollisionHeader_00A558 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneCollisionHeader_00A558" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_sceneCollisionHeader_00A558[] = dHAKAdanCH_sceneCollisionHeader_00A558; -#else -static const char HAKAdanCH_sceneCollisionHeader_00A558[] __attribute__((aligned (2))) = dHAKAdanCH_sceneCollisionHeader_00A558; -#endif - -#define dHAKAdanCH_sceneTex_00BD90 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneTex_00BD90" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_sceneTex_00BD90[] = dHAKAdanCH_sceneTex_00BD90; -#else -static const char HAKAdanCH_sceneTex_00BD90[] __attribute__((aligned (2))) = dHAKAdanCH_sceneTex_00BD90; -#endif - -#define dHAKAdanCH_sceneTex_00AD90 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneTex_00AD90" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_sceneTex_00AD90[] = dHAKAdanCH_sceneTex_00AD90; -#else -static const char HAKAdanCH_sceneTex_00AD90[] __attribute__((aligned (2))) = dHAKAdanCH_sceneTex_00AD90; -#endif - -#define dHAKAdanCH_sceneTex_00A590 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneTex_00A590" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_sceneTex_00A590[] = dHAKAdanCH_sceneTex_00A590; -#else -static const char HAKAdanCH_sceneTex_00A590[] __attribute__((aligned (2))) = dHAKAdanCH_sceneTex_00A590; -#endif - -#define dHAKAdanCH_sceneTex_00B590 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneTex_00B590" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdanCH_sceneTex_00B590[] = dHAKAdanCH_sceneTex_00B590; -#else -static const char HAKAdanCH_sceneTex_00B590[] __attribute__((aligned (2))) = dHAKAdanCH_sceneTex_00B590; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdanCH_sceneCollisionHeader_00A558 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneCollisionHeader_00A558" +static const ALIGN_ASSET(2) char HAKAdanCH_sceneCollisionHeader_00A558[] = dHAKAdanCH_sceneCollisionHeader_00A558; + +#define dHAKAdanCH_sceneTex_00BD90 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneTex_00BD90" +static const ALIGN_ASSET(2) char HAKAdanCH_sceneTex_00BD90[] = dHAKAdanCH_sceneTex_00BD90; + +#define dHAKAdanCH_sceneTex_00AD90 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneTex_00AD90" +static const ALIGN_ASSET(2) char HAKAdanCH_sceneTex_00AD90[] = dHAKAdanCH_sceneTex_00AD90; + +#define dHAKAdanCH_sceneTex_00A590 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneTex_00A590" +static const ALIGN_ASSET(2) char HAKAdanCH_sceneTex_00A590[] = dHAKAdanCH_sceneTex_00A590; + +#define dHAKAdanCH_sceneTex_00B590 "__OTR__scenes/nonmq/HAKAdanCH_scene/HAKAdanCH_sceneTex_00B590" +static const ALIGN_ASSET(2) char HAKAdanCH_sceneTex_00B590[] = dHAKAdanCH_sceneTex_00B590; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_room_0.h b/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_room_0.h index 20cef2c7a..4d3691f1b 100644 --- a/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_room_0.h +++ b/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_room_0.h @@ -1,30 +1,15 @@ #pragma once -#define dHAKAdan_bs_room_0DL_0021B0 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_0DL_0021B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_0DL_0021B0[] = dHAKAdan_bs_room_0DL_0021B0; -#else -static const char HAKAdan_bs_room_0DL_0021B0[] __attribute__((aligned (2))) = dHAKAdan_bs_room_0DL_0021B0; -#endif - -#define dHAKAdan_bs_room_0Tex_0023E0 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_0Tex_0023E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_0Tex_0023E0[] = dHAKAdan_bs_room_0Tex_0023E0; -#else -static const char HAKAdan_bs_room_0Tex_0023E0[] __attribute__((aligned (2))) = dHAKAdan_bs_room_0Tex_0023E0; -#endif - -#define dHAKAdan_bs_room_0Tex_0021E0 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_0Tex_0021E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_0Tex_0021E0[] = dHAKAdan_bs_room_0Tex_0021E0; -#else -static const char HAKAdan_bs_room_0Tex_0021E0[] __attribute__((aligned (2))) = dHAKAdan_bs_room_0Tex_0021E0; -#endif - -#define dHAKAdan_bs_room_0Tex_0027E0 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_0Tex_0027E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_0Tex_0027E0[] = dHAKAdan_bs_room_0Tex_0027E0; -#else -static const char HAKAdan_bs_room_0Tex_0027E0[] __attribute__((aligned (2))) = dHAKAdan_bs_room_0Tex_0027E0; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_bs_room_0DL_0021B0 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_0DL_0021B0" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_0DL_0021B0[] = dHAKAdan_bs_room_0DL_0021B0; + +#define dHAKAdan_bs_room_0Tex_0023E0 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_0Tex_0023E0" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_0Tex_0023E0[] = dHAKAdan_bs_room_0Tex_0023E0; + +#define dHAKAdan_bs_room_0Tex_0021E0 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_0Tex_0021E0" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_0Tex_0021E0[] = dHAKAdan_bs_room_0Tex_0021E0; + +#define dHAKAdan_bs_room_0Tex_0027E0 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_0Tex_0027E0" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_0Tex_0027E0[] = dHAKAdan_bs_room_0Tex_0027E0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_room_1.h b/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_room_1.h index bfee7d15e..55a41b30c 100644 --- a/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_room_1.h +++ b/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_room_1.h @@ -1,44 +1,21 @@ #pragma once -#define dHAKAdan_bs_room_1DL_002D20 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1DL_002D20" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_1DL_002D20[] = dHAKAdan_bs_room_1DL_002D20; -#else -static const char HAKAdan_bs_room_1DL_002D20[] __attribute__((aligned (2))) = dHAKAdan_bs_room_1DL_002D20; -#endif - -#define dHAKAdan_bs_room_1Tex_004F50 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_004F50" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_1Tex_004F50[] = dHAKAdan_bs_room_1Tex_004F50; -#else -static const char HAKAdan_bs_room_1Tex_004F50[] __attribute__((aligned (2))) = dHAKAdan_bs_room_1Tex_004F50; -#endif - -#define dHAKAdan_bs_room_1Tex_003750 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_003750" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_1Tex_003750[] = dHAKAdan_bs_room_1Tex_003750; -#else -static const char HAKAdan_bs_room_1Tex_003750[] __attribute__((aligned (2))) = dHAKAdan_bs_room_1Tex_003750; -#endif - -#define dHAKAdan_bs_room_1Tex_002F50 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_002F50" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_1Tex_002F50[] = dHAKAdan_bs_room_1Tex_002F50; -#else -static const char HAKAdan_bs_room_1Tex_002F50[] __attribute__((aligned (2))) = dHAKAdan_bs_room_1Tex_002F50; -#endif - -#define dHAKAdan_bs_room_1Tex_002D50 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_002D50" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_1Tex_002D50[] = dHAKAdan_bs_room_1Tex_002D50; -#else -static const char HAKAdan_bs_room_1Tex_002D50[] __attribute__((aligned (2))) = dHAKAdan_bs_room_1Tex_002D50; -#endif - -#define dHAKAdan_bs_room_1Tex_003F50 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_003F50" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_room_1Tex_003F50[] = dHAKAdan_bs_room_1Tex_003F50; -#else -static const char HAKAdan_bs_room_1Tex_003F50[] __attribute__((aligned (2))) = dHAKAdan_bs_room_1Tex_003F50; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_bs_room_1DL_002D20 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1DL_002D20" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_1DL_002D20[] = dHAKAdan_bs_room_1DL_002D20; + +#define dHAKAdan_bs_room_1Tex_004F50 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_004F50" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_1Tex_004F50[] = dHAKAdan_bs_room_1Tex_004F50; + +#define dHAKAdan_bs_room_1Tex_003750 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_003750" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_1Tex_003750[] = dHAKAdan_bs_room_1Tex_003750; + +#define dHAKAdan_bs_room_1Tex_002F50 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_002F50" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_1Tex_002F50[] = dHAKAdan_bs_room_1Tex_002F50; + +#define dHAKAdan_bs_room_1Tex_002D50 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_002D50" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_1Tex_002D50[] = dHAKAdan_bs_room_1Tex_002D50; + +#define dHAKAdan_bs_room_1Tex_003F50 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_room_1Tex_003F50" +static const ALIGN_ASSET(2) char HAKAdan_bs_room_1Tex_003F50[] = dHAKAdan_bs_room_1Tex_003F50; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_scene.h b/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_scene.h index 21a15a58d..f490427d3 100644 --- a/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_scene.h +++ b/soh/assets/scenes/dungeons/HAKAdan_bs/HAKAdan_bs_scene.h @@ -1,37 +1,18 @@ #pragma once -#define dHAKAdan_bs_sceneCollisionHeader_00134C "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneCollisionHeader_00134C" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_sceneCollisionHeader_00134C[] = dHAKAdan_bs_sceneCollisionHeader_00134C; -#else -static const char HAKAdan_bs_sceneCollisionHeader_00134C[] __attribute__((aligned (2))) = dHAKAdan_bs_sceneCollisionHeader_00134C; -#endif - -#define dHAKAdan_bs_sceneTex_001F80 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneTex_001F80" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_sceneTex_001F80[] = dHAKAdan_bs_sceneTex_001F80; -#else -static const char HAKAdan_bs_sceneTex_001F80[] __attribute__((aligned (2))) = dHAKAdan_bs_sceneTex_001F80; -#endif - -#define dHAKAdan_bs_sceneTex_001580 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneTex_001580" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_sceneTex_001580[] = dHAKAdan_bs_sceneTex_001580; -#else -static const char HAKAdan_bs_sceneTex_001580[] __attribute__((aligned (2))) = dHAKAdan_bs_sceneTex_001580; -#endif - -#define dHAKAdan_bs_sceneTex_001380 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneTex_001380" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_sceneTex_001380[] = dHAKAdan_bs_sceneTex_001380; -#else -static const char HAKAdan_bs_sceneTex_001380[] __attribute__((aligned (2))) = dHAKAdan_bs_sceneTex_001380; -#endif - -#define dHAKAdan_bs_sceneTex_001780 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneTex_001780" -#ifdef _WIN32 -static const __declspec(align(2)) char HAKAdan_bs_sceneTex_001780[] = dHAKAdan_bs_sceneTex_001780; -#else -static const char HAKAdan_bs_sceneTex_001780[] __attribute__((aligned (2))) = dHAKAdan_bs_sceneTex_001780; -#endif - +#include "align_asset_macro.h" + +#define dHAKAdan_bs_sceneCollisionHeader_00134C "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneCollisionHeader_00134C" +static const ALIGN_ASSET(2) char HAKAdan_bs_sceneCollisionHeader_00134C[] = dHAKAdan_bs_sceneCollisionHeader_00134C; + +#define dHAKAdan_bs_sceneTex_001F80 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneTex_001F80" +static const ALIGN_ASSET(2) char HAKAdan_bs_sceneTex_001F80[] = dHAKAdan_bs_sceneTex_001F80; + +#define dHAKAdan_bs_sceneTex_001580 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneTex_001580" +static const ALIGN_ASSET(2) char HAKAdan_bs_sceneTex_001580[] = dHAKAdan_bs_sceneTex_001580; + +#define dHAKAdan_bs_sceneTex_001380 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneTex_001380" +static const ALIGN_ASSET(2) char HAKAdan_bs_sceneTex_001380[] = dHAKAdan_bs_sceneTex_001380; + +#define dHAKAdan_bs_sceneTex_001780 "__OTR__scenes/nonmq/HAKAdan_bs_scene/HAKAdan_bs_sceneTex_001780" +static const ALIGN_ASSET(2) char HAKAdan_bs_sceneTex_001780[] = dHAKAdan_bs_sceneTex_001780; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_0.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_0.h index 2048c9d91..a492ecb65 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_0.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_0.h @@ -1,58 +1,27 @@ #pragma once -#define dHIDAN_room_0DL_002C50 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0DL_002C50" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_0DL_002C50[] = dHIDAN_room_0DL_002C50; -#else -static const char HIDAN_room_0DL_002C50[] __attribute__((aligned (2))) = dHIDAN_room_0DL_002C50; -#endif - -#define dHIDAN_room_0Tex_005CF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_005CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_0Tex_005CF0[] = dHIDAN_room_0Tex_005CF0; -#else -static const char HIDAN_room_0Tex_005CF0[] __attribute__((aligned (2))) = dHIDAN_room_0Tex_005CF0; -#endif - -#define dHIDAN_room_0Tex_0062F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_0062F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_0Tex_0062F0[] = dHIDAN_room_0Tex_0062F0; -#else -static const char HIDAN_room_0Tex_0062F0[] __attribute__((aligned (2))) = dHIDAN_room_0Tex_0062F0; -#endif - -#define dHIDAN_room_0Tex_005AF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_005AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_0Tex_005AF0[] = dHIDAN_room_0Tex_005AF0; -#else -static const char HIDAN_room_0Tex_005AF0[] __attribute__((aligned (2))) = dHIDAN_room_0Tex_005AF0; -#endif - -#define dHIDAN_room_0Tex_0056F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_0056F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_0Tex_0056F0[] = dHIDAN_room_0Tex_0056F0; -#else -static const char HIDAN_room_0Tex_0056F0[] __attribute__((aligned (2))) = dHIDAN_room_0Tex_0056F0; -#endif - -#define dHIDAN_room_0Tex_004EF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_004EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_0Tex_004EF0[] = dHIDAN_room_0Tex_004EF0; -#else -static const char HIDAN_room_0Tex_004EF0[] __attribute__((aligned (2))) = dHIDAN_room_0Tex_004EF0; -#endif - -#define dHIDAN_room_0Tex_0052F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_0052F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_0Tex_0052F0[] = dHIDAN_room_0Tex_0052F0; -#else -static const char HIDAN_room_0Tex_0052F0[] __attribute__((aligned (2))) = dHIDAN_room_0Tex_0052F0; -#endif - -#define dHIDAN_room_0Tex_005EF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_005EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_0Tex_005EF0[] = dHIDAN_room_0Tex_005EF0; -#else -static const char HIDAN_room_0Tex_005EF0[] __attribute__((aligned (2))) = dHIDAN_room_0Tex_005EF0; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_0DL_002C50 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0DL_002C50" +static const ALIGN_ASSET(2) char HIDAN_room_0DL_002C50[] = dHIDAN_room_0DL_002C50; + +#define dHIDAN_room_0Tex_005CF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_005CF0" +static const ALIGN_ASSET(2) char HIDAN_room_0Tex_005CF0[] = dHIDAN_room_0Tex_005CF0; + +#define dHIDAN_room_0Tex_0062F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_0062F0" +static const ALIGN_ASSET(2) char HIDAN_room_0Tex_0062F0[] = dHIDAN_room_0Tex_0062F0; + +#define dHIDAN_room_0Tex_005AF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_005AF0" +static const ALIGN_ASSET(2) char HIDAN_room_0Tex_005AF0[] = dHIDAN_room_0Tex_005AF0; + +#define dHIDAN_room_0Tex_0056F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_0056F0" +static const ALIGN_ASSET(2) char HIDAN_room_0Tex_0056F0[] = dHIDAN_room_0Tex_0056F0; + +#define dHIDAN_room_0Tex_004EF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_004EF0" +static const ALIGN_ASSET(2) char HIDAN_room_0Tex_004EF0[] = dHIDAN_room_0Tex_004EF0; + +#define dHIDAN_room_0Tex_0052F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_0052F0" +static const ALIGN_ASSET(2) char HIDAN_room_0Tex_0052F0[] = dHIDAN_room_0Tex_0052F0; + +#define dHIDAN_room_0Tex_005EF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_0Tex_005EF0" +static const ALIGN_ASSET(2) char HIDAN_room_0Tex_005EF0[] = dHIDAN_room_0Tex_005EF0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_1.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_1.h index 4af2de3be..352daa449 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_1.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_1.h @@ -1,114 +1,51 @@ #pragma once -#define dHIDAN_room_1DL_000DC8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_000DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1DL_000DC8[] = dHIDAN_room_1DL_000DC8; -#else -static const char HIDAN_room_1DL_000DC8[] __attribute__((aligned (2))) = dHIDAN_room_1DL_000DC8; -#endif - -#define dHIDAN_room_1Tex_009130 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_009130" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_009130[] = dHIDAN_room_1Tex_009130; -#else -static const char HIDAN_room_1Tex_009130[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_009130; -#endif - -#define dHIDAN_room_1Tex_00B530 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00B530" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_00B530[] = dHIDAN_room_1Tex_00B530; -#else -static const char HIDAN_room_1Tex_00B530[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_00B530; -#endif - -#define dHIDAN_room_1Tex_008730 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_008730" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_008730[] = dHIDAN_room_1Tex_008730; -#else -static const char HIDAN_room_1Tex_008730[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_008730; -#endif - -#define dHIDAN_room_1Tex_00A530 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00A530" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_00A530[] = dHIDAN_room_1Tex_00A530; -#else -static const char HIDAN_room_1Tex_00A530[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_00A530; -#endif - -#define dHIDAN_room_1DL_002500 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_002500" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1DL_002500[] = dHIDAN_room_1DL_002500; -#else -static const char HIDAN_room_1DL_002500[] __attribute__((aligned (2))) = dHIDAN_room_1DL_002500; -#endif - -#define dHIDAN_room_1Tex_009930 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_009930" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_009930[] = dHIDAN_room_1Tex_009930; -#else -static const char HIDAN_room_1Tex_009930[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_009930; -#endif - -#define dHIDAN_room_1Tex_00A130 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00A130" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_00A130[] = dHIDAN_room_1Tex_00A130; -#else -static const char HIDAN_room_1Tex_00A130[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_00A130; -#endif - -#define dHIDAN_room_1Tex_00BD30 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00BD30" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_00BD30[] = dHIDAN_room_1Tex_00BD30; -#else -static const char HIDAN_room_1Tex_00BD30[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_00BD30; -#endif - -#define dHIDAN_room_1DL_006BF8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_006BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1DL_006BF8[] = dHIDAN_room_1DL_006BF8; -#else -static const char HIDAN_room_1DL_006BF8[] __attribute__((aligned (2))) = dHIDAN_room_1DL_006BF8; -#endif - -#define dHIDAN_room_1Tex_008930 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_008930" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_008930[] = dHIDAN_room_1Tex_008930; -#else -static const char HIDAN_room_1Tex_008930[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_008930; -#endif - -#define dHIDAN_room_1DL_0057B0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_0057B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1DL_0057B0[] = dHIDAN_room_1DL_0057B0; -#else -static const char HIDAN_room_1DL_0057B0[] __attribute__((aligned (2))) = dHIDAN_room_1DL_0057B0; -#endif - -#define dHIDAN_room_1DL_004068 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_004068" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1DL_004068[] = dHIDAN_room_1DL_004068; -#else -static const char HIDAN_room_1DL_004068[] __attribute__((aligned (2))) = dHIDAN_room_1DL_004068; -#endif - -#define dHIDAN_room_1DL_0002D0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_0002D0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1DL_0002D0[] = dHIDAN_room_1DL_0002D0; -#else -static const char HIDAN_room_1DL_0002D0[] __attribute__((aligned (2))) = dHIDAN_room_1DL_0002D0; -#endif - -#define dHIDAN_room_1Tex_00C130 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00C130" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1Tex_00C130[] = dHIDAN_room_1Tex_00C130; -#else -static const char HIDAN_room_1Tex_00C130[] __attribute__((aligned (2))) = dHIDAN_room_1Tex_00C130; -#endif - -#define dHIDAN_room_1DL_008448 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_1DL_008448[] = dHIDAN_room_1DL_008448; -#else -static const char HIDAN_room_1DL_008448[] __attribute__((aligned (2))) = dHIDAN_room_1DL_008448; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_1DL_000DC8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_000DC8" +static const ALIGN_ASSET(2) char HIDAN_room_1DL_000DC8[] = dHIDAN_room_1DL_000DC8; + +#define dHIDAN_room_1Tex_009130 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_009130" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_009130[] = dHIDAN_room_1Tex_009130; + +#define dHIDAN_room_1Tex_00B530 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00B530" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_00B530[] = dHIDAN_room_1Tex_00B530; + +#define dHIDAN_room_1Tex_008730 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_008730" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_008730[] = dHIDAN_room_1Tex_008730; + +#define dHIDAN_room_1Tex_00A530 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00A530" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_00A530[] = dHIDAN_room_1Tex_00A530; + +#define dHIDAN_room_1DL_002500 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_002500" +static const ALIGN_ASSET(2) char HIDAN_room_1DL_002500[] = dHIDAN_room_1DL_002500; + +#define dHIDAN_room_1Tex_009930 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_009930" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_009930[] = dHIDAN_room_1Tex_009930; + +#define dHIDAN_room_1Tex_00A130 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00A130" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_00A130[] = dHIDAN_room_1Tex_00A130; + +#define dHIDAN_room_1Tex_00BD30 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00BD30" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_00BD30[] = dHIDAN_room_1Tex_00BD30; + +#define dHIDAN_room_1DL_006BF8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_006BF8" +static const ALIGN_ASSET(2) char HIDAN_room_1DL_006BF8[] = dHIDAN_room_1DL_006BF8; + +#define dHIDAN_room_1Tex_008930 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_008930" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_008930[] = dHIDAN_room_1Tex_008930; + +#define dHIDAN_room_1DL_0057B0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_0057B0" +static const ALIGN_ASSET(2) char HIDAN_room_1DL_0057B0[] = dHIDAN_room_1DL_0057B0; + +#define dHIDAN_room_1DL_004068 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_004068" +static const ALIGN_ASSET(2) char HIDAN_room_1DL_004068[] = dHIDAN_room_1DL_004068; + +#define dHIDAN_room_1DL_0002D0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_0002D0" +static const ALIGN_ASSET(2) char HIDAN_room_1DL_0002D0[] = dHIDAN_room_1DL_0002D0; + +#define dHIDAN_room_1Tex_00C130 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1Tex_00C130" +static const ALIGN_ASSET(2) char HIDAN_room_1Tex_00C130[] = dHIDAN_room_1Tex_00C130; + +#define dHIDAN_room_1DL_008448 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_1DL_008448" +static const ALIGN_ASSET(2) char HIDAN_room_1DL_008448[] = dHIDAN_room_1DL_008448; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_10.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_10.h index 122957200..2b039210d 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_10.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_10.h @@ -1,198 +1,87 @@ #pragma once -#define dHIDAN_room_10DL_000680 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_000680" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_000680[] = dHIDAN_room_10DL_000680; -#else -static const char HIDAN_room_10DL_000680[] __attribute__((aligned (2))) = dHIDAN_room_10DL_000680; -#endif - -#define dHIDAN_room_10Tex_017018 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_017018" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_017018[] = dHIDAN_room_10Tex_017018; -#else -static const char HIDAN_room_10Tex_017018[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_017018; -#endif - -#define dHIDAN_room_10DL_000B40 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_000B40" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_000B40[] = dHIDAN_room_10DL_000B40; -#else -static const char HIDAN_room_10DL_000B40[] __attribute__((aligned (2))) = dHIDAN_room_10DL_000B40; -#endif - -#define dHIDAN_room_10Tex_011818 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_011818" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_011818[] = dHIDAN_room_10Tex_011818; -#else -static const char HIDAN_room_10Tex_011818[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_011818; -#endif - -#define dHIDAN_room_10Tex_011A18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_011A18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_011A18[] = dHIDAN_room_10Tex_011A18; -#else -static const char HIDAN_room_10Tex_011A18[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_011A18; -#endif - -#define dHIDAN_room_10DL_002620 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_002620" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_002620[] = dHIDAN_room_10DL_002620; -#else -static const char HIDAN_room_10DL_002620[] __attribute__((aligned (2))) = dHIDAN_room_10DL_002620; -#endif - -#define dHIDAN_room_10Tex_016A18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_016A18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_016A18[] = dHIDAN_room_10Tex_016A18; -#else -static const char HIDAN_room_10Tex_016A18[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_016A18; -#endif - -#define dHIDAN_room_10Tex_016C18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_016C18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_016C18[] = dHIDAN_room_10Tex_016C18; -#else -static const char HIDAN_room_10Tex_016C18[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_016C18; -#endif - -#define dHIDAN_room_10Tex_014418 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_014418" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_014418[] = dHIDAN_room_10Tex_014418; -#else -static const char HIDAN_room_10Tex_014418[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_014418; -#endif - -#define dHIDAN_room_10Tex_012E18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_012E18[] = dHIDAN_room_10Tex_012E18; -#else -static const char HIDAN_room_10Tex_012E18[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_012E18; -#endif - -#define dHIDAN_room_10Tex_013418 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_013418" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_013418[] = dHIDAN_room_10Tex_013418; -#else -static const char HIDAN_room_10Tex_013418[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_013418; -#endif - -#define dHIDAN_room_10Tex_015818 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_015818" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_015818[] = dHIDAN_room_10Tex_015818; -#else -static const char HIDAN_room_10Tex_015818[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_015818; -#endif - -#define dHIDAN_room_10Tex_015A18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_015A18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_015A18[] = dHIDAN_room_10Tex_015A18; -#else -static const char HIDAN_room_10Tex_015A18[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_015A18; -#endif - -#define dHIDAN_room_10DL_004900 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_004900" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_004900[] = dHIDAN_room_10DL_004900; -#else -static const char HIDAN_room_10DL_004900[] __attribute__((aligned (2))) = dHIDAN_room_10DL_004900; -#endif - -#define dHIDAN_room_10DL_0055C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_0055C0[] = dHIDAN_room_10DL_0055C0; -#else -static const char HIDAN_room_10DL_0055C0[] __attribute__((aligned (2))) = dHIDAN_room_10DL_0055C0; -#endif - -#define dHIDAN_room_10Tex_017C18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_017C18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_017C18[] = dHIDAN_room_10Tex_017C18; -#else -static const char HIDAN_room_10Tex_017C18[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_017C18; -#endif - -#define dHIDAN_room_10Tex_012618 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_012618" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_012618[] = dHIDAN_room_10Tex_012618; -#else -static const char HIDAN_room_10Tex_012618[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_012618; -#endif - -#define dHIDAN_room_10Tex_013218 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_013218" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_013218[] = dHIDAN_room_10Tex_013218; -#else -static const char HIDAN_room_10Tex_013218[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_013218; -#endif - -#define dHIDAN_room_10Tex_017818 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_017818" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_017818[] = dHIDAN_room_10Tex_017818; -#else -static const char HIDAN_room_10Tex_017818[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_017818; -#endif - -#define dHIDAN_room_10DL_0069D0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_0069D0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_0069D0[] = dHIDAN_room_10DL_0069D0; -#else -static const char HIDAN_room_10DL_0069D0[] __attribute__((aligned (2))) = dHIDAN_room_10DL_0069D0; -#endif - -#define dHIDAN_room_10DL_007B70 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_007B70" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_007B70[] = dHIDAN_room_10DL_007B70; -#else -static const char HIDAN_room_10DL_007B70[] __attribute__((aligned (2))) = dHIDAN_room_10DL_007B70; -#endif - -#define dHIDAN_room_10DL_009FB0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_009FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_009FB0[] = dHIDAN_room_10DL_009FB0; -#else -static const char HIDAN_room_10DL_009FB0[] __attribute__((aligned (2))) = dHIDAN_room_10DL_009FB0; -#endif - -#define dHIDAN_room_10DL_00C608 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_00C608" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_00C608[] = dHIDAN_room_10DL_00C608; -#else -static const char HIDAN_room_10DL_00C608[] __attribute__((aligned (2))) = dHIDAN_room_10DL_00C608; -#endif - -#define dHIDAN_room_10DL_00D970 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_00D970" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_00D970[] = dHIDAN_room_10DL_00D970; -#else -static const char HIDAN_room_10DL_00D970[] __attribute__((aligned (2))) = dHIDAN_room_10DL_00D970; -#endif - -#define dHIDAN_room_10DL_00FBD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_00FBD0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_00FBD0[] = dHIDAN_room_10DL_00FBD0; -#else -static const char HIDAN_room_10DL_00FBD0[] __attribute__((aligned (2))) = dHIDAN_room_10DL_00FBD0; -#endif - -#define dHIDAN_room_10Tex_015418 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_015418" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_015418[] = dHIDAN_room_10Tex_015418; -#else -static const char HIDAN_room_10Tex_015418[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_015418; -#endif - -#define dHIDAN_room_10Tex_012218 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_012218" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10Tex_012218[] = dHIDAN_room_10Tex_012218; -#else -static const char HIDAN_room_10Tex_012218[] __attribute__((aligned (2))) = dHIDAN_room_10Tex_012218; -#endif - -#define dHIDAN_room_10DL_011610 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_011610" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_10DL_011610[] = dHIDAN_room_10DL_011610; -#else -static const char HIDAN_room_10DL_011610[] __attribute__((aligned (2))) = dHIDAN_room_10DL_011610; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_10DL_000680 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_000680" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_000680[] = dHIDAN_room_10DL_000680; + +#define dHIDAN_room_10Tex_017018 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_017018" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_017018[] = dHIDAN_room_10Tex_017018; + +#define dHIDAN_room_10DL_000B40 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_000B40" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_000B40[] = dHIDAN_room_10DL_000B40; + +#define dHIDAN_room_10Tex_011818 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_011818" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_011818[] = dHIDAN_room_10Tex_011818; + +#define dHIDAN_room_10Tex_011A18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_011A18" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_011A18[] = dHIDAN_room_10Tex_011A18; + +#define dHIDAN_room_10DL_002620 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_002620" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_002620[] = dHIDAN_room_10DL_002620; + +#define dHIDAN_room_10Tex_016A18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_016A18" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_016A18[] = dHIDAN_room_10Tex_016A18; + +#define dHIDAN_room_10Tex_016C18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_016C18" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_016C18[] = dHIDAN_room_10Tex_016C18; + +#define dHIDAN_room_10Tex_014418 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_014418" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_014418[] = dHIDAN_room_10Tex_014418; + +#define dHIDAN_room_10Tex_012E18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_012E18" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_012E18[] = dHIDAN_room_10Tex_012E18; + +#define dHIDAN_room_10Tex_013418 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_013418" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_013418[] = dHIDAN_room_10Tex_013418; + +#define dHIDAN_room_10Tex_015818 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_015818" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_015818[] = dHIDAN_room_10Tex_015818; + +#define dHIDAN_room_10Tex_015A18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_015A18" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_015A18[] = dHIDAN_room_10Tex_015A18; + +#define dHIDAN_room_10DL_004900 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_004900" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_004900[] = dHIDAN_room_10DL_004900; + +#define dHIDAN_room_10DL_0055C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_0055C0" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_0055C0[] = dHIDAN_room_10DL_0055C0; + +#define dHIDAN_room_10Tex_017C18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_017C18" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_017C18[] = dHIDAN_room_10Tex_017C18; + +#define dHIDAN_room_10Tex_012618 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_012618" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_012618[] = dHIDAN_room_10Tex_012618; + +#define dHIDAN_room_10Tex_013218 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_013218" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_013218[] = dHIDAN_room_10Tex_013218; + +#define dHIDAN_room_10Tex_017818 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_017818" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_017818[] = dHIDAN_room_10Tex_017818; + +#define dHIDAN_room_10DL_0069D0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_0069D0" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_0069D0[] = dHIDAN_room_10DL_0069D0; + +#define dHIDAN_room_10DL_007B70 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_007B70" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_007B70[] = dHIDAN_room_10DL_007B70; + +#define dHIDAN_room_10DL_009FB0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_009FB0" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_009FB0[] = dHIDAN_room_10DL_009FB0; + +#define dHIDAN_room_10DL_00C608 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_00C608" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_00C608[] = dHIDAN_room_10DL_00C608; + +#define dHIDAN_room_10DL_00D970 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_00D970" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_00D970[] = dHIDAN_room_10DL_00D970; + +#define dHIDAN_room_10DL_00FBD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_00FBD0" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_00FBD0[] = dHIDAN_room_10DL_00FBD0; + +#define dHIDAN_room_10Tex_015418 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_015418" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_015418[] = dHIDAN_room_10Tex_015418; + +#define dHIDAN_room_10Tex_012218 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10Tex_012218" +static const ALIGN_ASSET(2) char HIDAN_room_10Tex_012218[] = dHIDAN_room_10Tex_012218; + +#define dHIDAN_room_10DL_011610 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_10DL_011610" +static const ALIGN_ASSET(2) char HIDAN_room_10DL_011610[] = dHIDAN_room_10DL_011610; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_11.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_11.h index d3e249776..31488b110 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_11.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_11.h @@ -1,44 +1,21 @@ #pragma once -#define dHIDAN_room_11DL_0009E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11DL_0009E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_11DL_0009E0[] = dHIDAN_room_11DL_0009E0; -#else -static const char HIDAN_room_11DL_0009E0[] __attribute__((aligned (2))) = dHIDAN_room_11DL_0009E0; -#endif - -#define dHIDAN_room_11Tex_0033D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11Tex_0033D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_11Tex_0033D8[] = dHIDAN_room_11Tex_0033D8; -#else -static const char HIDAN_room_11Tex_0033D8[] __attribute__((aligned (2))) = dHIDAN_room_11Tex_0033D8; -#endif - -#define dHIDAN_room_11Tex_0027D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11Tex_0027D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_11Tex_0027D8[] = dHIDAN_room_11Tex_0027D8; -#else -static const char HIDAN_room_11Tex_0027D8[] __attribute__((aligned (2))) = dHIDAN_room_11Tex_0027D8; -#endif - -#define dHIDAN_room_11DL_001908 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11DL_001908" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_11DL_001908[] = dHIDAN_room_11DL_001908; -#else -static const char HIDAN_room_11DL_001908[] __attribute__((aligned (2))) = dHIDAN_room_11DL_001908; -#endif - -#define dHIDAN_room_11Tex_002FD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11Tex_002FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_11Tex_002FD8[] = dHIDAN_room_11Tex_002FD8; -#else -static const char HIDAN_room_11Tex_002FD8[] __attribute__((aligned (2))) = dHIDAN_room_11Tex_002FD8; -#endif - -#define dHIDAN_room_11DL_002628 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11DL_002628" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_11DL_002628[] = dHIDAN_room_11DL_002628; -#else -static const char HIDAN_room_11DL_002628[] __attribute__((aligned (2))) = dHIDAN_room_11DL_002628; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_11DL_0009E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11DL_0009E0" +static const ALIGN_ASSET(2) char HIDAN_room_11DL_0009E0[] = dHIDAN_room_11DL_0009E0; + +#define dHIDAN_room_11Tex_0033D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11Tex_0033D8" +static const ALIGN_ASSET(2) char HIDAN_room_11Tex_0033D8[] = dHIDAN_room_11Tex_0033D8; + +#define dHIDAN_room_11Tex_0027D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11Tex_0027D8" +static const ALIGN_ASSET(2) char HIDAN_room_11Tex_0027D8[] = dHIDAN_room_11Tex_0027D8; + +#define dHIDAN_room_11DL_001908 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11DL_001908" +static const ALIGN_ASSET(2) char HIDAN_room_11DL_001908[] = dHIDAN_room_11DL_001908; + +#define dHIDAN_room_11Tex_002FD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11Tex_002FD8" +static const ALIGN_ASSET(2) char HIDAN_room_11Tex_002FD8[] = dHIDAN_room_11Tex_002FD8; + +#define dHIDAN_room_11DL_002628 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_11DL_002628" +static const ALIGN_ASSET(2) char HIDAN_room_11DL_002628[] = dHIDAN_room_11DL_002628; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_12.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_12.h index 853ca134a..9fc002040 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_12.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_12.h @@ -1,44 +1,21 @@ #pragma once -#define dHIDAN_room_12DL_000B70 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12DL_000B70" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_12DL_000B70[] = dHIDAN_room_12DL_000B70; -#else -static const char HIDAN_room_12DL_000B70[] __attribute__((aligned (2))) = dHIDAN_room_12DL_000B70; -#endif - -#define dHIDAN_room_12Tex_002768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12Tex_002768" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_12Tex_002768[] = dHIDAN_room_12Tex_002768; -#else -static const char HIDAN_room_12Tex_002768[] __attribute__((aligned (2))) = dHIDAN_room_12Tex_002768; -#endif - -#define dHIDAN_room_12DL_001520 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12DL_001520" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_12DL_001520[] = dHIDAN_room_12DL_001520; -#else -static const char HIDAN_room_12DL_001520[] __attribute__((aligned (2))) = dHIDAN_room_12DL_001520; -#endif - -#define dHIDAN_room_12DL_001A58 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12DL_001A58" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_12DL_001A58[] = dHIDAN_room_12DL_001A58; -#else -static const char HIDAN_room_12DL_001A58[] __attribute__((aligned (2))) = dHIDAN_room_12DL_001A58; -#endif - -#define dHIDAN_room_12Tex_001D68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12Tex_001D68" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_12Tex_001D68[] = dHIDAN_room_12Tex_001D68; -#else -static const char HIDAN_room_12Tex_001D68[] __attribute__((aligned (2))) = dHIDAN_room_12Tex_001D68; -#endif - -#define dHIDAN_room_12Tex_001F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12Tex_001F68" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_12Tex_001F68[] = dHIDAN_room_12Tex_001F68; -#else -static const char HIDAN_room_12Tex_001F68[] __attribute__((aligned (2))) = dHIDAN_room_12Tex_001F68; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_12DL_000B70 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12DL_000B70" +static const ALIGN_ASSET(2) char HIDAN_room_12DL_000B70[] = dHIDAN_room_12DL_000B70; + +#define dHIDAN_room_12Tex_002768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12Tex_002768" +static const ALIGN_ASSET(2) char HIDAN_room_12Tex_002768[] = dHIDAN_room_12Tex_002768; + +#define dHIDAN_room_12DL_001520 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12DL_001520" +static const ALIGN_ASSET(2) char HIDAN_room_12DL_001520[] = dHIDAN_room_12DL_001520; + +#define dHIDAN_room_12DL_001A58 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12DL_001A58" +static const ALIGN_ASSET(2) char HIDAN_room_12DL_001A58[] = dHIDAN_room_12DL_001A58; + +#define dHIDAN_room_12Tex_001D68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12Tex_001D68" +static const ALIGN_ASSET(2) char HIDAN_room_12Tex_001D68[] = dHIDAN_room_12Tex_001D68; + +#define dHIDAN_room_12Tex_001F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_12Tex_001F68" +static const ALIGN_ASSET(2) char HIDAN_room_12Tex_001F68[] = dHIDAN_room_12Tex_001F68; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_13.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_13.h index 642d02693..99dcaad4c 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_13.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_13.h @@ -1,86 +1,39 @@ #pragma once -#define dHIDAN_room_13DL_001210 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_001210" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13DL_001210[] = dHIDAN_room_13DL_001210; -#else -static const char HIDAN_room_13DL_001210[] __attribute__((aligned (2))) = dHIDAN_room_13DL_001210; -#endif - -#define dHIDAN_room_13Tex_00B388 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00B388" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13Tex_00B388[] = dHIDAN_room_13Tex_00B388; -#else -static const char HIDAN_room_13Tex_00B388[] __attribute__((aligned (2))) = dHIDAN_room_13Tex_00B388; -#endif - -#define dHIDAN_room_13Tex_00A788 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00A788" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13Tex_00A788[] = dHIDAN_room_13Tex_00A788; -#else -static const char HIDAN_room_13Tex_00A788[] __attribute__((aligned (2))) = dHIDAN_room_13Tex_00A788; -#endif - -#define dHIDAN_room_13Tex_00AF88 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00AF88" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13Tex_00AF88[] = dHIDAN_room_13Tex_00AF88; -#else -static const char HIDAN_room_13Tex_00AF88[] __attribute__((aligned (2))) = dHIDAN_room_13Tex_00AF88; -#endif - -#define dHIDAN_room_13DL_0031F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_0031F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13DL_0031F8[] = dHIDAN_room_13DL_0031F8; -#else -static const char HIDAN_room_13DL_0031F8[] __attribute__((aligned (2))) = dHIDAN_room_13DL_0031F8; -#endif - -#define dHIDAN_room_13DL_005138 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_005138" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13DL_005138[] = dHIDAN_room_13DL_005138; -#else -static const char HIDAN_room_13DL_005138[] __attribute__((aligned (2))) = dHIDAN_room_13DL_005138; -#endif - -#define dHIDAN_room_13Tex_00C388 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00C388" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13Tex_00C388[] = dHIDAN_room_13Tex_00C388; -#else -static const char HIDAN_room_13Tex_00C388[] __attribute__((aligned (2))) = dHIDAN_room_13Tex_00C388; -#endif - -#define dHIDAN_room_13DL_007908 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_007908" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13DL_007908[] = dHIDAN_room_13DL_007908; -#else -static const char HIDAN_room_13DL_007908[] __attribute__((aligned (2))) = dHIDAN_room_13DL_007908; -#endif - -#define dHIDAN_room_13Tex_00BB88 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00BB88" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13Tex_00BB88[] = dHIDAN_room_13Tex_00BB88; -#else -static const char HIDAN_room_13Tex_00BB88[] __attribute__((aligned (2))) = dHIDAN_room_13Tex_00BB88; -#endif - -#define dHIDAN_room_13DL_009160 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_009160" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13DL_009160[] = dHIDAN_room_13DL_009160; -#else -static const char HIDAN_room_13DL_009160[] __attribute__((aligned (2))) = dHIDAN_room_13DL_009160; -#endif - -#define dHIDAN_room_13DL_00A228 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_00A228" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13DL_00A228[] = dHIDAN_room_13DL_00A228; -#else -static const char HIDAN_room_13DL_00A228[] __attribute__((aligned (2))) = dHIDAN_room_13DL_00A228; -#endif - -#define dHIDAN_room_13Tex_00B788 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00B788" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_13Tex_00B788[] = dHIDAN_room_13Tex_00B788; -#else -static const char HIDAN_room_13Tex_00B788[] __attribute__((aligned (2))) = dHIDAN_room_13Tex_00B788; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_13DL_001210 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_001210" +static const ALIGN_ASSET(2) char HIDAN_room_13DL_001210[] = dHIDAN_room_13DL_001210; + +#define dHIDAN_room_13Tex_00B388 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00B388" +static const ALIGN_ASSET(2) char HIDAN_room_13Tex_00B388[] = dHIDAN_room_13Tex_00B388; + +#define dHIDAN_room_13Tex_00A788 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00A788" +static const ALIGN_ASSET(2) char HIDAN_room_13Tex_00A788[] = dHIDAN_room_13Tex_00A788; + +#define dHIDAN_room_13Tex_00AF88 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00AF88" +static const ALIGN_ASSET(2) char HIDAN_room_13Tex_00AF88[] = dHIDAN_room_13Tex_00AF88; + +#define dHIDAN_room_13DL_0031F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_0031F8" +static const ALIGN_ASSET(2) char HIDAN_room_13DL_0031F8[] = dHIDAN_room_13DL_0031F8; + +#define dHIDAN_room_13DL_005138 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_005138" +static const ALIGN_ASSET(2) char HIDAN_room_13DL_005138[] = dHIDAN_room_13DL_005138; + +#define dHIDAN_room_13Tex_00C388 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00C388" +static const ALIGN_ASSET(2) char HIDAN_room_13Tex_00C388[] = dHIDAN_room_13Tex_00C388; + +#define dHIDAN_room_13DL_007908 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_007908" +static const ALIGN_ASSET(2) char HIDAN_room_13DL_007908[] = dHIDAN_room_13DL_007908; + +#define dHIDAN_room_13Tex_00BB88 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00BB88" +static const ALIGN_ASSET(2) char HIDAN_room_13Tex_00BB88[] = dHIDAN_room_13Tex_00BB88; + +#define dHIDAN_room_13DL_009160 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_009160" +static const ALIGN_ASSET(2) char HIDAN_room_13DL_009160[] = dHIDAN_room_13DL_009160; + +#define dHIDAN_room_13DL_00A228 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13DL_00A228" +static const ALIGN_ASSET(2) char HIDAN_room_13DL_00A228[] = dHIDAN_room_13DL_00A228; + +#define dHIDAN_room_13Tex_00B788 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_13Tex_00B788" +static const ALIGN_ASSET(2) char HIDAN_room_13Tex_00B788[] = dHIDAN_room_13Tex_00B788; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_14.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_14.h index c57474566..2d750d0c6 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_14.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_14.h @@ -1,23 +1,12 @@ #pragma once -#define dHIDAN_room_14DL_001030 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_14DL_001030" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_14DL_001030[] = dHIDAN_room_14DL_001030; -#else -static const char HIDAN_room_14DL_001030[] __attribute__((aligned (2))) = dHIDAN_room_14DL_001030; -#endif - -#define dHIDAN_room_14Tex_001DF8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_14Tex_001DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_14Tex_001DF8[] = dHIDAN_room_14Tex_001DF8; -#else -static const char HIDAN_room_14Tex_001DF8[] __attribute__((aligned (2))) = dHIDAN_room_14Tex_001DF8; -#endif - -#define dHIDAN_room_14Tex_0019F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_14Tex_0019F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_14Tex_0019F8[] = dHIDAN_room_14Tex_0019F8; -#else -static const char HIDAN_room_14Tex_0019F8[] __attribute__((aligned (2))) = dHIDAN_room_14Tex_0019F8; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_14DL_001030 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_14DL_001030" +static const ALIGN_ASSET(2) char HIDAN_room_14DL_001030[] = dHIDAN_room_14DL_001030; + +#define dHIDAN_room_14Tex_001DF8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_14Tex_001DF8" +static const ALIGN_ASSET(2) char HIDAN_room_14Tex_001DF8[] = dHIDAN_room_14Tex_001DF8; + +#define dHIDAN_room_14Tex_0019F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_14Tex_0019F8" +static const ALIGN_ASSET(2) char HIDAN_room_14Tex_0019F8[] = dHIDAN_room_14Tex_0019F8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_15.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_15.h index 9685bcf16..67cd72f99 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_15.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_15.h @@ -1,16 +1,9 @@ #pragma once -#define dHIDAN_room_15DL_000910 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_15DL_000910" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_15DL_000910[] = dHIDAN_room_15DL_000910; -#else -static const char HIDAN_room_15DL_000910[] __attribute__((aligned (2))) = dHIDAN_room_15DL_000910; -#endif - -#define dHIDAN_room_15Tex_000D88 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_15Tex_000D88" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_15Tex_000D88[] = dHIDAN_room_15Tex_000D88; -#else -static const char HIDAN_room_15Tex_000D88[] __attribute__((aligned (2))) = dHIDAN_room_15Tex_000D88; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_15DL_000910 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_15DL_000910" +static const ALIGN_ASSET(2) char HIDAN_room_15DL_000910[] = dHIDAN_room_15DL_000910; + +#define dHIDAN_room_15Tex_000D88 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_15Tex_000D88" +static const ALIGN_ASSET(2) char HIDAN_room_15Tex_000D88[] = dHIDAN_room_15Tex_000D88; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_16.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_16.h index d32c25eb6..6f31e7622 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_16.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_16.h @@ -1,121 +1,54 @@ #pragma once -#define dHIDAN_room_16DL_000350 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16DL_000350" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16DL_000350[] = dHIDAN_room_16DL_000350; -#else -static const char HIDAN_room_16DL_000350[] __attribute__((aligned (2))) = dHIDAN_room_16DL_000350; -#endif - -#define dHIDAN_room_16Tex_009DE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_009DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_009DE0[] = dHIDAN_room_16Tex_009DE0; -#else -static const char HIDAN_room_16Tex_009DE0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_009DE0; -#endif - -#define dHIDAN_room_16DL_001480 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16DL_001480" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16DL_001480[] = dHIDAN_room_16DL_001480; -#else -static const char HIDAN_room_16DL_001480[] __attribute__((aligned (2))) = dHIDAN_room_16DL_001480; -#endif - -#define dHIDAN_room_16Tex_006FE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_006FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_006FE0[] = dHIDAN_room_16Tex_006FE0; -#else -static const char HIDAN_room_16Tex_006FE0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_006FE0; -#endif - -#define dHIDAN_room_16Tex_006DE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_006DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_006DE0[] = dHIDAN_room_16Tex_006DE0; -#else -static const char HIDAN_room_16Tex_006DE0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_006DE0; -#endif - -#define dHIDAN_room_16Tex_00A5E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_00A5E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_00A5E0[] = dHIDAN_room_16Tex_00A5E0; -#else -static const char HIDAN_room_16Tex_00A5E0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_00A5E0; -#endif - -#define dHIDAN_room_16Tex_0085E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0085E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_0085E0[] = dHIDAN_room_16Tex_0085E0; -#else -static const char HIDAN_room_16Tex_0085E0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_0085E0; -#endif - -#define dHIDAN_room_16Tex_0077E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0077E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_0077E0[] = dHIDAN_room_16Tex_0077E0; -#else -static const char HIDAN_room_16Tex_0077E0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_0077E0; -#endif - -#define dHIDAN_room_16Tex_0091E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0091E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_0091E0[] = dHIDAN_room_16Tex_0091E0; -#else -static const char HIDAN_room_16Tex_0091E0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_0091E0; -#endif - -#define dHIDAN_room_16Tex_0083E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0083E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_0083E0[] = dHIDAN_room_16Tex_0083E0; -#else -static const char HIDAN_room_16Tex_0083E0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_0083E0; -#endif - -#define dHIDAN_room_16DL_003B58 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16DL_003B58" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16DL_003B58[] = dHIDAN_room_16DL_003B58; -#else -static const char HIDAN_room_16DL_003B58[] __attribute__((aligned (2))) = dHIDAN_room_16DL_003B58; -#endif - -#define dHIDAN_room_16Tex_0095E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0095E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_0095E0[] = dHIDAN_room_16Tex_0095E0; -#else -static const char HIDAN_room_16Tex_0095E0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_0095E0; -#endif - -#define dHIDAN_room_16Tex_007FE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_007FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_007FE0[] = dHIDAN_room_16Tex_007FE0; -#else -static const char HIDAN_room_16Tex_007FE0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_007FE0; -#endif - -#define dHIDAN_room_16Tex_00B1E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_00B1E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_00B1E0[] = dHIDAN_room_16Tex_00B1E0; -#else -static const char HIDAN_room_16Tex_00B1E0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_00B1E0; -#endif - -#define dHIDAN_room_16Tex_00A9E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_00A9E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_00A9E0[] = dHIDAN_room_16Tex_00A9E0; -#else -static const char HIDAN_room_16Tex_00A9E0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_00A9E0; -#endif - -#define dHIDAN_room_16DL_005ED8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16DL_005ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16DL_005ED8[] = dHIDAN_room_16DL_005ED8; -#else -static const char HIDAN_room_16DL_005ED8[] __attribute__((aligned (2))) = dHIDAN_room_16DL_005ED8; -#endif - -#define dHIDAN_room_16Tex_008DE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_008DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_16Tex_008DE0[] = dHIDAN_room_16Tex_008DE0; -#else -static const char HIDAN_room_16Tex_008DE0[] __attribute__((aligned (2))) = dHIDAN_room_16Tex_008DE0; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_16DL_000350 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16DL_000350" +static const ALIGN_ASSET(2) char HIDAN_room_16DL_000350[] = dHIDAN_room_16DL_000350; + +#define dHIDAN_room_16Tex_009DE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_009DE0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_009DE0[] = dHIDAN_room_16Tex_009DE0; + +#define dHIDAN_room_16DL_001480 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16DL_001480" +static const ALIGN_ASSET(2) char HIDAN_room_16DL_001480[] = dHIDAN_room_16DL_001480; + +#define dHIDAN_room_16Tex_006FE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_006FE0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_006FE0[] = dHIDAN_room_16Tex_006FE0; + +#define dHIDAN_room_16Tex_006DE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_006DE0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_006DE0[] = dHIDAN_room_16Tex_006DE0; + +#define dHIDAN_room_16Tex_00A5E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_00A5E0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_00A5E0[] = dHIDAN_room_16Tex_00A5E0; + +#define dHIDAN_room_16Tex_0085E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0085E0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_0085E0[] = dHIDAN_room_16Tex_0085E0; + +#define dHIDAN_room_16Tex_0077E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0077E0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_0077E0[] = dHIDAN_room_16Tex_0077E0; + +#define dHIDAN_room_16Tex_0091E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0091E0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_0091E0[] = dHIDAN_room_16Tex_0091E0; + +#define dHIDAN_room_16Tex_0083E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0083E0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_0083E0[] = dHIDAN_room_16Tex_0083E0; + +#define dHIDAN_room_16DL_003B58 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16DL_003B58" +static const ALIGN_ASSET(2) char HIDAN_room_16DL_003B58[] = dHIDAN_room_16DL_003B58; + +#define dHIDAN_room_16Tex_0095E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_0095E0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_0095E0[] = dHIDAN_room_16Tex_0095E0; + +#define dHIDAN_room_16Tex_007FE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_007FE0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_007FE0[] = dHIDAN_room_16Tex_007FE0; + +#define dHIDAN_room_16Tex_00B1E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_00B1E0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_00B1E0[] = dHIDAN_room_16Tex_00B1E0; + +#define dHIDAN_room_16Tex_00A9E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_00A9E0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_00A9E0[] = dHIDAN_room_16Tex_00A9E0; + +#define dHIDAN_room_16DL_005ED8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16DL_005ED8" +static const ALIGN_ASSET(2) char HIDAN_room_16DL_005ED8[] = dHIDAN_room_16DL_005ED8; + +#define dHIDAN_room_16Tex_008DE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_16Tex_008DE0" +static const ALIGN_ASSET(2) char HIDAN_room_16Tex_008DE0[] = dHIDAN_room_16Tex_008DE0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_17.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_17.h index 9678fadfb..778041f65 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_17.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_17.h @@ -1,65 +1,30 @@ #pragma once -#define dHIDAN_room_17DL_003290 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17DL_003290" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17DL_003290[] = dHIDAN_room_17DL_003290; -#else -static const char HIDAN_room_17DL_003290[] __attribute__((aligned (2))) = dHIDAN_room_17DL_003290; -#endif - -#define dHIDAN_room_17Tex_007968 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_007968" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17Tex_007968[] = dHIDAN_room_17Tex_007968; -#else -static const char HIDAN_room_17Tex_007968[] __attribute__((aligned (2))) = dHIDAN_room_17Tex_007968; -#endif - -#define dHIDAN_room_17Tex_008968 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_008968" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17Tex_008968[] = dHIDAN_room_17Tex_008968; -#else -static const char HIDAN_room_17Tex_008968[] __attribute__((aligned (2))) = dHIDAN_room_17Tex_008968; -#endif - -#define dHIDAN_room_17Tex_008168 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_008168" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17Tex_008168[] = dHIDAN_room_17Tex_008168; -#else -static const char HIDAN_room_17Tex_008168[] __attribute__((aligned (2))) = dHIDAN_room_17Tex_008168; -#endif - -#define dHIDAN_room_17Tex_007168 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_007168" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17Tex_007168[] = dHIDAN_room_17Tex_007168; -#else -static const char HIDAN_room_17Tex_007168[] __attribute__((aligned (2))) = dHIDAN_room_17Tex_007168; -#endif - -#define dHIDAN_room_17Tex_006968 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_006968" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17Tex_006968[] = dHIDAN_room_17Tex_006968; -#else -static const char HIDAN_room_17Tex_006968[] __attribute__((aligned (2))) = dHIDAN_room_17Tex_006968; -#endif - -#define dHIDAN_room_17Tex_005168 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_005168" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17Tex_005168[] = dHIDAN_room_17Tex_005168; -#else -static const char HIDAN_room_17Tex_005168[] __attribute__((aligned (2))) = dHIDAN_room_17Tex_005168; -#endif - -#define dHIDAN_room_17Tex_005968 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_005968" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17Tex_005968[] = dHIDAN_room_17Tex_005968; -#else -static const char HIDAN_room_17Tex_005968[] __attribute__((aligned (2))) = dHIDAN_room_17Tex_005968; -#endif - -#define dHIDAN_room_17Tex_006168 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_006168" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_17Tex_006168[] = dHIDAN_room_17Tex_006168; -#else -static const char HIDAN_room_17Tex_006168[] __attribute__((aligned (2))) = dHIDAN_room_17Tex_006168; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_17DL_003290 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17DL_003290" +static const ALIGN_ASSET(2) char HIDAN_room_17DL_003290[] = dHIDAN_room_17DL_003290; + +#define dHIDAN_room_17Tex_007968 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_007968" +static const ALIGN_ASSET(2) char HIDAN_room_17Tex_007968[] = dHIDAN_room_17Tex_007968; + +#define dHIDAN_room_17Tex_008968 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_008968" +static const ALIGN_ASSET(2) char HIDAN_room_17Tex_008968[] = dHIDAN_room_17Tex_008968; + +#define dHIDAN_room_17Tex_008168 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_008168" +static const ALIGN_ASSET(2) char HIDAN_room_17Tex_008168[] = dHIDAN_room_17Tex_008168; + +#define dHIDAN_room_17Tex_007168 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_007168" +static const ALIGN_ASSET(2) char HIDAN_room_17Tex_007168[] = dHIDAN_room_17Tex_007168; + +#define dHIDAN_room_17Tex_006968 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_006968" +static const ALIGN_ASSET(2) char HIDAN_room_17Tex_006968[] = dHIDAN_room_17Tex_006968; + +#define dHIDAN_room_17Tex_005168 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_005168" +static const ALIGN_ASSET(2) char HIDAN_room_17Tex_005168[] = dHIDAN_room_17Tex_005168; + +#define dHIDAN_room_17Tex_005968 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_005968" +static const ALIGN_ASSET(2) char HIDAN_room_17Tex_005968[] = dHIDAN_room_17Tex_005968; + +#define dHIDAN_room_17Tex_006168 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_17Tex_006168" +static const ALIGN_ASSET(2) char HIDAN_room_17Tex_006168[] = dHIDAN_room_17Tex_006168; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_18.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_18.h index 599a43c3e..d384a5d23 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_18.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_18.h @@ -1,44 +1,21 @@ #pragma once -#define dHIDAN_room_18DL_001890 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18DL_001890" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_18DL_001890[] = dHIDAN_room_18DL_001890; -#else -static const char HIDAN_room_18DL_001890[] __attribute__((aligned (2))) = dHIDAN_room_18DL_001890; -#endif - -#define dHIDAN_room_18Tex_0033F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_0033F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_18Tex_0033F8[] = dHIDAN_room_18Tex_0033F8; -#else -static const char HIDAN_room_18Tex_0033F8[] __attribute__((aligned (2))) = dHIDAN_room_18Tex_0033F8; -#endif - -#define dHIDAN_room_18Tex_002FF8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_002FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_18Tex_002FF8[] = dHIDAN_room_18Tex_002FF8; -#else -static const char HIDAN_room_18Tex_002FF8[] __attribute__((aligned (2))) = dHIDAN_room_18Tex_002FF8; -#endif - -#define dHIDAN_room_18Tex_0027F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_0027F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_18Tex_0027F8[] = dHIDAN_room_18Tex_0027F8; -#else -static const char HIDAN_room_18Tex_0027F8[] __attribute__((aligned (2))) = dHIDAN_room_18Tex_0027F8; -#endif - -#define dHIDAN_room_18Tex_0037F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_0037F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_18Tex_0037F8[] = dHIDAN_room_18Tex_0037F8; -#else -static const char HIDAN_room_18Tex_0037F8[] __attribute__((aligned (2))) = dHIDAN_room_18Tex_0037F8; -#endif - -#define dHIDAN_room_18Tex_0039F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_0039F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_18Tex_0039F8[] = dHIDAN_room_18Tex_0039F8; -#else -static const char HIDAN_room_18Tex_0039F8[] __attribute__((aligned (2))) = dHIDAN_room_18Tex_0039F8; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_18DL_001890 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18DL_001890" +static const ALIGN_ASSET(2) char HIDAN_room_18DL_001890[] = dHIDAN_room_18DL_001890; + +#define dHIDAN_room_18Tex_0033F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_0033F8" +static const ALIGN_ASSET(2) char HIDAN_room_18Tex_0033F8[] = dHIDAN_room_18Tex_0033F8; + +#define dHIDAN_room_18Tex_002FF8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_002FF8" +static const ALIGN_ASSET(2) char HIDAN_room_18Tex_002FF8[] = dHIDAN_room_18Tex_002FF8; + +#define dHIDAN_room_18Tex_0027F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_0027F8" +static const ALIGN_ASSET(2) char HIDAN_room_18Tex_0027F8[] = dHIDAN_room_18Tex_0027F8; + +#define dHIDAN_room_18Tex_0037F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_0037F8" +static const ALIGN_ASSET(2) char HIDAN_room_18Tex_0037F8[] = dHIDAN_room_18Tex_0037F8; + +#define dHIDAN_room_18Tex_0039F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_18Tex_0039F8" +static const ALIGN_ASSET(2) char HIDAN_room_18Tex_0039F8[] = dHIDAN_room_18Tex_0039F8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_19.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_19.h index 6b1eb295f..d5fff86b1 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_19.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_19.h @@ -1,44 +1,21 @@ #pragma once -#define dHIDAN_room_19DL_001C00 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19DL_001C00" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_19DL_001C00[] = dHIDAN_room_19DL_001C00; -#else -static const char HIDAN_room_19DL_001C00[] __attribute__((aligned (2))) = dHIDAN_room_19DL_001C00; -#endif - -#define dHIDAN_room_19Tex_002E28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_002E28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_19Tex_002E28[] = dHIDAN_room_19Tex_002E28; -#else -static const char HIDAN_room_19Tex_002E28[] __attribute__((aligned (2))) = dHIDAN_room_19Tex_002E28; -#endif - -#define dHIDAN_room_19Tex_003E28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_003E28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_19Tex_003E28[] = dHIDAN_room_19Tex_003E28; -#else -static const char HIDAN_room_19Tex_003E28[] __attribute__((aligned (2))) = dHIDAN_room_19Tex_003E28; -#endif - -#define dHIDAN_room_19Tex_003A28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_003A28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_19Tex_003A28[] = dHIDAN_room_19Tex_003A28; -#else -static const char HIDAN_room_19Tex_003A28[] __attribute__((aligned (2))) = dHIDAN_room_19Tex_003A28; -#endif - -#define dHIDAN_room_19Tex_004028 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_004028" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_19Tex_004028[] = dHIDAN_room_19Tex_004028; -#else -static const char HIDAN_room_19Tex_004028[] __attribute__((aligned (2))) = dHIDAN_room_19Tex_004028; -#endif - -#define dHIDAN_room_19Tex_003628 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_003628" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_19Tex_003628[] = dHIDAN_room_19Tex_003628; -#else -static const char HIDAN_room_19Tex_003628[] __attribute__((aligned (2))) = dHIDAN_room_19Tex_003628; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_19DL_001C00 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19DL_001C00" +static const ALIGN_ASSET(2) char HIDAN_room_19DL_001C00[] = dHIDAN_room_19DL_001C00; + +#define dHIDAN_room_19Tex_002E28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_002E28" +static const ALIGN_ASSET(2) char HIDAN_room_19Tex_002E28[] = dHIDAN_room_19Tex_002E28; + +#define dHIDAN_room_19Tex_003E28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_003E28" +static const ALIGN_ASSET(2) char HIDAN_room_19Tex_003E28[] = dHIDAN_room_19Tex_003E28; + +#define dHIDAN_room_19Tex_003A28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_003A28" +static const ALIGN_ASSET(2) char HIDAN_room_19Tex_003A28[] = dHIDAN_room_19Tex_003A28; + +#define dHIDAN_room_19Tex_004028 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_004028" +static const ALIGN_ASSET(2) char HIDAN_room_19Tex_004028[] = dHIDAN_room_19Tex_004028; + +#define dHIDAN_room_19Tex_003628 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_19Tex_003628" +static const ALIGN_ASSET(2) char HIDAN_room_19Tex_003628[] = dHIDAN_room_19Tex_003628; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_2.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_2.h index 532536a87..aedb02734 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_2.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_2.h @@ -1,128 +1,57 @@ #pragma once -#define dHIDAN_room_2DL_0094C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2DL_0094C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2DL_0094C0[] = dHIDAN_room_2DL_0094C0; -#else -static const char HIDAN_room_2DL_0094C0[] __attribute__((aligned (2))) = dHIDAN_room_2DL_0094C0; -#endif - -#define dHIDAN_room_2Tex_00E428 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00E428" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00E428[] = dHIDAN_room_2Tex_00E428; -#else -static const char HIDAN_room_2Tex_00E428[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00E428; -#endif - -#define dHIDAN_room_2DL_002A80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2DL_002A80" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2DL_002A80[] = dHIDAN_room_2DL_002A80; -#else -static const char HIDAN_room_2DL_002A80[] __attribute__((aligned (2))) = dHIDAN_room_2DL_002A80; -#endif - -#define dHIDAN_room_2Tex_00F028 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00F028" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00F028[] = dHIDAN_room_2Tex_00F028; -#else -static const char HIDAN_room_2Tex_00F028[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00F028; -#endif - -#define dHIDAN_room_2Tex_00A828 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00A828" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00A828[] = dHIDAN_room_2Tex_00A828; -#else -static const char HIDAN_room_2Tex_00A828[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00A828; -#endif - -#define dHIDAN_room_2Tex_00CE28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00CE28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00CE28[] = dHIDAN_room_2Tex_00CE28; -#else -static const char HIDAN_room_2Tex_00CE28[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00CE28; -#endif - -#define dHIDAN_room_2Tex_00DE28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00DE28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00DE28[] = dHIDAN_room_2Tex_00DE28; -#else -static const char HIDAN_room_2Tex_00DE28[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00DE28; -#endif - -#define dHIDAN_room_2Tex_00E028 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00E028" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00E028[] = dHIDAN_room_2Tex_00E028; -#else -static const char HIDAN_room_2Tex_00E028[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00E028; -#endif - -#define dHIDAN_room_2Tex_00AC28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00AC28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00AC28[] = dHIDAN_room_2Tex_00AC28; -#else -static const char HIDAN_room_2Tex_00AC28[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00AC28; -#endif - -#define dHIDAN_room_2Tex_00CC28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00CC28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00CC28[] = dHIDAN_room_2Tex_00CC28; -#else -static const char HIDAN_room_2Tex_00CC28[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00CC28; -#endif - -#define dHIDAN_room_2Tex_00A028 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00A028" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00A028[] = dHIDAN_room_2Tex_00A028; -#else -static const char HIDAN_room_2Tex_00A028[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00A028; -#endif - -#define dHIDAN_room_2Tex_00F828 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00F828" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00F828[] = dHIDAN_room_2Tex_00F828; -#else -static const char HIDAN_room_2Tex_00F828[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00F828; -#endif - -#define dHIDAN_room_2Tex_00BC28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00BC28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00BC28[] = dHIDAN_room_2Tex_00BC28; -#else -static const char HIDAN_room_2Tex_00BC28[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00BC28; -#endif - -#define dHIDAN_room_2DL_005A80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2DL_005A80[] = dHIDAN_room_2DL_005A80; -#else -static const char HIDAN_room_2DL_005A80[] __attribute__((aligned (2))) = dHIDAN_room_2DL_005A80; -#endif - -#define dHIDAN_room_2DL_0079A0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2DL_0079A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2DL_0079A0[] = dHIDAN_room_2DL_0079A0; -#else -static const char HIDAN_room_2DL_0079A0[] __attribute__((aligned (2))) = dHIDAN_room_2DL_0079A0; -#endif - -#define dHIDAN_room_2Tex_009628 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_009628" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_009628[] = dHIDAN_room_2Tex_009628; -#else -static const char HIDAN_room_2Tex_009628[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_009628; -#endif - -#define dHIDAN_room_2Tex_009828 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_009828" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_009828[] = dHIDAN_room_2Tex_009828; -#else -static const char HIDAN_room_2Tex_009828[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_009828; -#endif - -#define dHIDAN_room_2Tex_00EC28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00EC28" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_2Tex_00EC28[] = dHIDAN_room_2Tex_00EC28; -#else -static const char HIDAN_room_2Tex_00EC28[] __attribute__((aligned (2))) = dHIDAN_room_2Tex_00EC28; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_2DL_0094C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2DL_0094C0" +static const ALIGN_ASSET(2) char HIDAN_room_2DL_0094C0[] = dHIDAN_room_2DL_0094C0; + +#define dHIDAN_room_2Tex_00E428 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00E428" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00E428[] = dHIDAN_room_2Tex_00E428; + +#define dHIDAN_room_2DL_002A80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2DL_002A80" +static const ALIGN_ASSET(2) char HIDAN_room_2DL_002A80[] = dHIDAN_room_2DL_002A80; + +#define dHIDAN_room_2Tex_00F028 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00F028" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00F028[] = dHIDAN_room_2Tex_00F028; + +#define dHIDAN_room_2Tex_00A828 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00A828" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00A828[] = dHIDAN_room_2Tex_00A828; + +#define dHIDAN_room_2Tex_00CE28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00CE28" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00CE28[] = dHIDAN_room_2Tex_00CE28; + +#define dHIDAN_room_2Tex_00DE28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00DE28" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00DE28[] = dHIDAN_room_2Tex_00DE28; + +#define dHIDAN_room_2Tex_00E028 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00E028" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00E028[] = dHIDAN_room_2Tex_00E028; + +#define dHIDAN_room_2Tex_00AC28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00AC28" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00AC28[] = dHIDAN_room_2Tex_00AC28; + +#define dHIDAN_room_2Tex_00CC28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00CC28" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00CC28[] = dHIDAN_room_2Tex_00CC28; + +#define dHIDAN_room_2Tex_00A028 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00A028" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00A028[] = dHIDAN_room_2Tex_00A028; + +#define dHIDAN_room_2Tex_00F828 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00F828" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00F828[] = dHIDAN_room_2Tex_00F828; + +#define dHIDAN_room_2Tex_00BC28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00BC28" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00BC28[] = dHIDAN_room_2Tex_00BC28; + +#define dHIDAN_room_2DL_005A80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2DL_005A80" +static const ALIGN_ASSET(2) char HIDAN_room_2DL_005A80[] = dHIDAN_room_2DL_005A80; + +#define dHIDAN_room_2DL_0079A0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2DL_0079A0" +static const ALIGN_ASSET(2) char HIDAN_room_2DL_0079A0[] = dHIDAN_room_2DL_0079A0; + +#define dHIDAN_room_2Tex_009628 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_009628" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_009628[] = dHIDAN_room_2Tex_009628; + +#define dHIDAN_room_2Tex_009828 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_009828" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_009828[] = dHIDAN_room_2Tex_009828; + +#define dHIDAN_room_2Tex_00EC28 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_2Tex_00EC28" +static const ALIGN_ASSET(2) char HIDAN_room_2Tex_00EC28[] = dHIDAN_room_2Tex_00EC28; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_20.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_20.h index caae1a14d..d8aa5a34c 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_20.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_20.h @@ -1,65 +1,30 @@ #pragma once -#define dHIDAN_room_20DL_001BE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20DL_001BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20DL_001BE0[] = dHIDAN_room_20DL_001BE0; -#else -static const char HIDAN_room_20DL_001BE0[] __attribute__((aligned (2))) = dHIDAN_room_20DL_001BE0; -#endif - -#define dHIDAN_room_20Tex_006508 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_006508" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20Tex_006508[] = dHIDAN_room_20Tex_006508; -#else -static const char HIDAN_room_20Tex_006508[] __attribute__((aligned (2))) = dHIDAN_room_20Tex_006508; -#endif - -#define dHIDAN_room_20Tex_005D08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_005D08" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20Tex_005D08[] = dHIDAN_room_20Tex_005D08; -#else -static const char HIDAN_room_20Tex_005D08[] __attribute__((aligned (2))) = dHIDAN_room_20Tex_005D08; -#endif - -#define dHIDAN_room_20Tex_005508 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_005508" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20Tex_005508[] = dHIDAN_room_20Tex_005508; -#else -static const char HIDAN_room_20Tex_005508[] __attribute__((aligned (2))) = dHIDAN_room_20Tex_005508; -#endif - -#define dHIDAN_room_20Tex_004D08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_004D08" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20Tex_004D08[] = dHIDAN_room_20Tex_004D08; -#else -static const char HIDAN_room_20Tex_004D08[] __attribute__((aligned (2))) = dHIDAN_room_20Tex_004D08; -#endif - -#define dHIDAN_room_20Tex_004508 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_004508" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20Tex_004508[] = dHIDAN_room_20Tex_004508; -#else -static const char HIDAN_room_20Tex_004508[] __attribute__((aligned (2))) = dHIDAN_room_20Tex_004508; -#endif - -#define dHIDAN_room_20Tex_003508 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_003508" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20Tex_003508[] = dHIDAN_room_20Tex_003508; -#else -static const char HIDAN_room_20Tex_003508[] __attribute__((aligned (2))) = dHIDAN_room_20Tex_003508; -#endif - -#define dHIDAN_room_20Tex_003D08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_003D08" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20Tex_003D08[] = dHIDAN_room_20Tex_003D08; -#else -static const char HIDAN_room_20Tex_003D08[] __attribute__((aligned (2))) = dHIDAN_room_20Tex_003D08; -#endif - -#define dHIDAN_room_20Tex_002D08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_002D08" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_20Tex_002D08[] = dHIDAN_room_20Tex_002D08; -#else -static const char HIDAN_room_20Tex_002D08[] __attribute__((aligned (2))) = dHIDAN_room_20Tex_002D08; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_20DL_001BE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20DL_001BE0" +static const ALIGN_ASSET(2) char HIDAN_room_20DL_001BE0[] = dHIDAN_room_20DL_001BE0; + +#define dHIDAN_room_20Tex_006508 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_006508" +static const ALIGN_ASSET(2) char HIDAN_room_20Tex_006508[] = dHIDAN_room_20Tex_006508; + +#define dHIDAN_room_20Tex_005D08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_005D08" +static const ALIGN_ASSET(2) char HIDAN_room_20Tex_005D08[] = dHIDAN_room_20Tex_005D08; + +#define dHIDAN_room_20Tex_005508 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_005508" +static const ALIGN_ASSET(2) char HIDAN_room_20Tex_005508[] = dHIDAN_room_20Tex_005508; + +#define dHIDAN_room_20Tex_004D08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_004D08" +static const ALIGN_ASSET(2) char HIDAN_room_20Tex_004D08[] = dHIDAN_room_20Tex_004D08; + +#define dHIDAN_room_20Tex_004508 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_004508" +static const ALIGN_ASSET(2) char HIDAN_room_20Tex_004508[] = dHIDAN_room_20Tex_004508; + +#define dHIDAN_room_20Tex_003508 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_003508" +static const ALIGN_ASSET(2) char HIDAN_room_20Tex_003508[] = dHIDAN_room_20Tex_003508; + +#define dHIDAN_room_20Tex_003D08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_003D08" +static const ALIGN_ASSET(2) char HIDAN_room_20Tex_003D08[] = dHIDAN_room_20Tex_003D08; + +#define dHIDAN_room_20Tex_002D08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_20Tex_002D08" +static const ALIGN_ASSET(2) char HIDAN_room_20Tex_002D08[] = dHIDAN_room_20Tex_002D08; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_21.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_21.h index 78481ab19..d9c9b6324 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_21.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_21.h @@ -1,149 +1,66 @@ #pragma once -#define dHIDAN_room_21DL_0003E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_0003E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_0003E8[] = dHIDAN_room_21DL_0003E8; -#else -static const char HIDAN_room_21DL_0003E8[] __attribute__((aligned (2))) = dHIDAN_room_21DL_0003E8; -#endif - -#define dHIDAN_room_21Tex_007478 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_007478[] = dHIDAN_room_21Tex_007478; -#else -static const char HIDAN_room_21Tex_007478[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_007478; -#endif - -#define dHIDAN_room_21DL_000230 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_000230" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_000230[] = dHIDAN_room_21DL_000230; -#else -static const char HIDAN_room_21DL_000230[] __attribute__((aligned (2))) = dHIDAN_room_21DL_000230; -#endif - -#define dHIDAN_room_21Tex_007C78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_007C78" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_007C78[] = dHIDAN_room_21Tex_007C78; -#else -static const char HIDAN_room_21Tex_007C78[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_007C78; -#endif - -#define dHIDAN_room_21DL_003FF8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_003FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_003FF8[] = dHIDAN_room_21DL_003FF8; -#else -static const char HIDAN_room_21DL_003FF8[] __attribute__((aligned (2))) = dHIDAN_room_21DL_003FF8; -#endif - -#define dHIDAN_room_21DL_004348 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_004348" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_004348[] = dHIDAN_room_21DL_004348; -#else -static const char HIDAN_room_21DL_004348[] __attribute__((aligned (2))) = dHIDAN_room_21DL_004348; -#endif - -#define dHIDAN_room_21DL_003AF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_003AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_003AF0[] = dHIDAN_room_21DL_003AF0; -#else -static const char HIDAN_room_21DL_003AF0[] __attribute__((aligned (2))) = dHIDAN_room_21DL_003AF0; -#endif - -#define dHIDAN_room_21Tex_004E78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_004E78" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_004E78[] = dHIDAN_room_21Tex_004E78; -#else -static const char HIDAN_room_21Tex_004E78[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_004E78; -#endif - -#define dHIDAN_room_21DL_003458 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_003458" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_003458[] = dHIDAN_room_21DL_003458; -#else -static const char HIDAN_room_21DL_003458[] __attribute__((aligned (2))) = dHIDAN_room_21DL_003458; -#endif - -#define dHIDAN_room_21DL_002F58 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_002F58" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_002F58[] = dHIDAN_room_21DL_002F58; -#else -static const char HIDAN_room_21DL_002F58[] __attribute__((aligned (2))) = dHIDAN_room_21DL_002F58; -#endif - -#define dHIDAN_room_21DL_002560 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_002560" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_002560[] = dHIDAN_room_21DL_002560; -#else -static const char HIDAN_room_21DL_002560[] __attribute__((aligned (2))) = dHIDAN_room_21DL_002560; -#endif - -#define dHIDAN_room_21Tex_004478 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_004478" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_004478[] = dHIDAN_room_21Tex_004478; -#else -static const char HIDAN_room_21Tex_004478[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_004478; -#endif - -#define dHIDAN_room_21Tex_005678 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_005678" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_005678[] = dHIDAN_room_21Tex_005678; -#else -static const char HIDAN_room_21Tex_005678[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_005678; -#endif - -#define dHIDAN_room_21DL_0010C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_0010C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_0010C0[] = dHIDAN_room_21DL_0010C0; -#else -static const char HIDAN_room_21DL_0010C0[] __attribute__((aligned (2))) = dHIDAN_room_21DL_0010C0; -#endif - -#define dHIDAN_room_21Tex_007278 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_007278" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_007278[] = dHIDAN_room_21Tex_007278; -#else -static const char HIDAN_room_21Tex_007278[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_007278; -#endif - -#define dHIDAN_room_21Tex_005E78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_005E78[] = dHIDAN_room_21Tex_005E78; -#else -static const char HIDAN_room_21Tex_005E78[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_005E78; -#endif - -#define dHIDAN_room_21Tex_004678 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_004678" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_004678[] = dHIDAN_room_21Tex_004678; -#else -static const char HIDAN_room_21Tex_004678[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_004678; -#endif - -#define dHIDAN_room_21Tex_006678 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_006678" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_006678[] = dHIDAN_room_21Tex_006678; -#else -static const char HIDAN_room_21Tex_006678[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_006678; -#endif - -#define dHIDAN_room_21DL_000838 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_000838" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_000838[] = dHIDAN_room_21DL_000838; -#else -static const char HIDAN_room_21DL_000838[] __attribute__((aligned (2))) = dHIDAN_room_21DL_000838; -#endif - -#define dHIDAN_room_21DL_000670 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_000670" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21DL_000670[] = dHIDAN_room_21DL_000670; -#else -static const char HIDAN_room_21DL_000670[] __attribute__((aligned (2))) = dHIDAN_room_21DL_000670; -#endif - -#define dHIDAN_room_21Tex_006A78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_006A78" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_21Tex_006A78[] = dHIDAN_room_21Tex_006A78; -#else -static const char HIDAN_room_21Tex_006A78[] __attribute__((aligned (2))) = dHIDAN_room_21Tex_006A78; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_21DL_0003E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_0003E8" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_0003E8[] = dHIDAN_room_21DL_0003E8; + +#define dHIDAN_room_21Tex_007478 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_007478" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_007478[] = dHIDAN_room_21Tex_007478; + +#define dHIDAN_room_21DL_000230 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_000230" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_000230[] = dHIDAN_room_21DL_000230; + +#define dHIDAN_room_21Tex_007C78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_007C78" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_007C78[] = dHIDAN_room_21Tex_007C78; + +#define dHIDAN_room_21DL_003FF8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_003FF8" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_003FF8[] = dHIDAN_room_21DL_003FF8; + +#define dHIDAN_room_21DL_004348 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_004348" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_004348[] = dHIDAN_room_21DL_004348; + +#define dHIDAN_room_21DL_003AF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_003AF0" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_003AF0[] = dHIDAN_room_21DL_003AF0; + +#define dHIDAN_room_21Tex_004E78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_004E78" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_004E78[] = dHIDAN_room_21Tex_004E78; + +#define dHIDAN_room_21DL_003458 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_003458" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_003458[] = dHIDAN_room_21DL_003458; + +#define dHIDAN_room_21DL_002F58 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_002F58" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_002F58[] = dHIDAN_room_21DL_002F58; + +#define dHIDAN_room_21DL_002560 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_002560" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_002560[] = dHIDAN_room_21DL_002560; + +#define dHIDAN_room_21Tex_004478 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_004478" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_004478[] = dHIDAN_room_21Tex_004478; + +#define dHIDAN_room_21Tex_005678 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_005678" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_005678[] = dHIDAN_room_21Tex_005678; + +#define dHIDAN_room_21DL_0010C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_0010C0" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_0010C0[] = dHIDAN_room_21DL_0010C0; + +#define dHIDAN_room_21Tex_007278 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_007278" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_007278[] = dHIDAN_room_21Tex_007278; + +#define dHIDAN_room_21Tex_005E78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_005E78" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_005E78[] = dHIDAN_room_21Tex_005E78; + +#define dHIDAN_room_21Tex_004678 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_004678" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_004678[] = dHIDAN_room_21Tex_004678; + +#define dHIDAN_room_21Tex_006678 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_006678" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_006678[] = dHIDAN_room_21Tex_006678; + +#define dHIDAN_room_21DL_000838 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_000838" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_000838[] = dHIDAN_room_21DL_000838; + +#define dHIDAN_room_21DL_000670 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21DL_000670" +static const ALIGN_ASSET(2) char HIDAN_room_21DL_000670[] = dHIDAN_room_21DL_000670; + +#define dHIDAN_room_21Tex_006A78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_21Tex_006A78" +static const ALIGN_ASSET(2) char HIDAN_room_21Tex_006A78[] = dHIDAN_room_21Tex_006A78; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_22.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_22.h index e2971922b..55f7d1895 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_22.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_22.h @@ -1,65 +1,30 @@ #pragma once -#define dHIDAN_room_22DL_001AA0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22DL_001AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22DL_001AA0[] = dHIDAN_room_22DL_001AA0; -#else -static const char HIDAN_room_22DL_001AA0[] __attribute__((aligned (2))) = dHIDAN_room_22DL_001AA0; -#endif - -#define dHIDAN_room_22Tex_0052E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_0052E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22Tex_0052E8[] = dHIDAN_room_22Tex_0052E8; -#else -static const char HIDAN_room_22Tex_0052E8[] __attribute__((aligned (2))) = dHIDAN_room_22Tex_0052E8; -#endif - -#define dHIDAN_room_22Tex_0062E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_0062E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22Tex_0062E8[] = dHIDAN_room_22Tex_0062E8; -#else -static const char HIDAN_room_22Tex_0062E8[] __attribute__((aligned (2))) = dHIDAN_room_22Tex_0062E8; -#endif - -#define dHIDAN_room_22Tex_005AE8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_005AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22Tex_005AE8[] = dHIDAN_room_22Tex_005AE8; -#else -static const char HIDAN_room_22Tex_005AE8[] __attribute__((aligned (2))) = dHIDAN_room_22Tex_005AE8; -#endif - -#define dHIDAN_room_22Tex_004AE8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_004AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22Tex_004AE8[] = dHIDAN_room_22Tex_004AE8; -#else -static const char HIDAN_room_22Tex_004AE8[] __attribute__((aligned (2))) = dHIDAN_room_22Tex_004AE8; -#endif - -#define dHIDAN_room_22Tex_0042E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_0042E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22Tex_0042E8[] = dHIDAN_room_22Tex_0042E8; -#else -static const char HIDAN_room_22Tex_0042E8[] __attribute__((aligned (2))) = dHIDAN_room_22Tex_0042E8; -#endif - -#define dHIDAN_room_22Tex_002AE8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_002AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22Tex_002AE8[] = dHIDAN_room_22Tex_002AE8; -#else -static const char HIDAN_room_22Tex_002AE8[] __attribute__((aligned (2))) = dHIDAN_room_22Tex_002AE8; -#endif - -#define dHIDAN_room_22Tex_0032E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_0032E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22Tex_0032E8[] = dHIDAN_room_22Tex_0032E8; -#else -static const char HIDAN_room_22Tex_0032E8[] __attribute__((aligned (2))) = dHIDAN_room_22Tex_0032E8; -#endif - -#define dHIDAN_room_22Tex_003AE8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_003AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_22Tex_003AE8[] = dHIDAN_room_22Tex_003AE8; -#else -static const char HIDAN_room_22Tex_003AE8[] __attribute__((aligned (2))) = dHIDAN_room_22Tex_003AE8; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_22DL_001AA0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22DL_001AA0" +static const ALIGN_ASSET(2) char HIDAN_room_22DL_001AA0[] = dHIDAN_room_22DL_001AA0; + +#define dHIDAN_room_22Tex_0052E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_0052E8" +static const ALIGN_ASSET(2) char HIDAN_room_22Tex_0052E8[] = dHIDAN_room_22Tex_0052E8; + +#define dHIDAN_room_22Tex_0062E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_0062E8" +static const ALIGN_ASSET(2) char HIDAN_room_22Tex_0062E8[] = dHIDAN_room_22Tex_0062E8; + +#define dHIDAN_room_22Tex_005AE8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_005AE8" +static const ALIGN_ASSET(2) char HIDAN_room_22Tex_005AE8[] = dHIDAN_room_22Tex_005AE8; + +#define dHIDAN_room_22Tex_004AE8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_004AE8" +static const ALIGN_ASSET(2) char HIDAN_room_22Tex_004AE8[] = dHIDAN_room_22Tex_004AE8; + +#define dHIDAN_room_22Tex_0042E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_0042E8" +static const ALIGN_ASSET(2) char HIDAN_room_22Tex_0042E8[] = dHIDAN_room_22Tex_0042E8; + +#define dHIDAN_room_22Tex_002AE8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_002AE8" +static const ALIGN_ASSET(2) char HIDAN_room_22Tex_002AE8[] = dHIDAN_room_22Tex_002AE8; + +#define dHIDAN_room_22Tex_0032E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_0032E8" +static const ALIGN_ASSET(2) char HIDAN_room_22Tex_0032E8[] = dHIDAN_room_22Tex_0032E8; + +#define dHIDAN_room_22Tex_003AE8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_22Tex_003AE8" +static const ALIGN_ASSET(2) char HIDAN_room_22Tex_003AE8[] = dHIDAN_room_22Tex_003AE8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_23.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_23.h index 27e853bf6..43cc2a031 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_23.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_23.h @@ -1,65 +1,30 @@ #pragma once -#define dHIDAN_room_23DL_001BF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23DL_001BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23DL_001BF0[] = dHIDAN_room_23DL_001BF0; -#else -static const char HIDAN_room_23DL_001BF0[] __attribute__((aligned (2))) = dHIDAN_room_23DL_001BF0; -#endif - -#define dHIDAN_room_23Tex_006518 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_006518" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23Tex_006518[] = dHIDAN_room_23Tex_006518; -#else -static const char HIDAN_room_23Tex_006518[] __attribute__((aligned (2))) = dHIDAN_room_23Tex_006518; -#endif - -#define dHIDAN_room_23Tex_005D18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_005D18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23Tex_005D18[] = dHIDAN_room_23Tex_005D18; -#else -static const char HIDAN_room_23Tex_005D18[] __attribute__((aligned (2))) = dHIDAN_room_23Tex_005D18; -#endif - -#define dHIDAN_room_23Tex_005518 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_005518" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23Tex_005518[] = dHIDAN_room_23Tex_005518; -#else -static const char HIDAN_room_23Tex_005518[] __attribute__((aligned (2))) = dHIDAN_room_23Tex_005518; -#endif - -#define dHIDAN_room_23Tex_004D18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_004D18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23Tex_004D18[] = dHIDAN_room_23Tex_004D18; -#else -static const char HIDAN_room_23Tex_004D18[] __attribute__((aligned (2))) = dHIDAN_room_23Tex_004D18; -#endif - -#define dHIDAN_room_23Tex_004518 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_004518" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23Tex_004518[] = dHIDAN_room_23Tex_004518; -#else -static const char HIDAN_room_23Tex_004518[] __attribute__((aligned (2))) = dHIDAN_room_23Tex_004518; -#endif - -#define dHIDAN_room_23Tex_003518 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_003518" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23Tex_003518[] = dHIDAN_room_23Tex_003518; -#else -static const char HIDAN_room_23Tex_003518[] __attribute__((aligned (2))) = dHIDAN_room_23Tex_003518; -#endif - -#define dHIDAN_room_23Tex_003D18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_003D18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23Tex_003D18[] = dHIDAN_room_23Tex_003D18; -#else -static const char HIDAN_room_23Tex_003D18[] __attribute__((aligned (2))) = dHIDAN_room_23Tex_003D18; -#endif - -#define dHIDAN_room_23Tex_002D18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_002D18" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_23Tex_002D18[] = dHIDAN_room_23Tex_002D18; -#else -static const char HIDAN_room_23Tex_002D18[] __attribute__((aligned (2))) = dHIDAN_room_23Tex_002D18; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_23DL_001BF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23DL_001BF0" +static const ALIGN_ASSET(2) char HIDAN_room_23DL_001BF0[] = dHIDAN_room_23DL_001BF0; + +#define dHIDAN_room_23Tex_006518 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_006518" +static const ALIGN_ASSET(2) char HIDAN_room_23Tex_006518[] = dHIDAN_room_23Tex_006518; + +#define dHIDAN_room_23Tex_005D18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_005D18" +static const ALIGN_ASSET(2) char HIDAN_room_23Tex_005D18[] = dHIDAN_room_23Tex_005D18; + +#define dHIDAN_room_23Tex_005518 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_005518" +static const ALIGN_ASSET(2) char HIDAN_room_23Tex_005518[] = dHIDAN_room_23Tex_005518; + +#define dHIDAN_room_23Tex_004D18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_004D18" +static const ALIGN_ASSET(2) char HIDAN_room_23Tex_004D18[] = dHIDAN_room_23Tex_004D18; + +#define dHIDAN_room_23Tex_004518 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_004518" +static const ALIGN_ASSET(2) char HIDAN_room_23Tex_004518[] = dHIDAN_room_23Tex_004518; + +#define dHIDAN_room_23Tex_003518 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_003518" +static const ALIGN_ASSET(2) char HIDAN_room_23Tex_003518[] = dHIDAN_room_23Tex_003518; + +#define dHIDAN_room_23Tex_003D18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_003D18" +static const ALIGN_ASSET(2) char HIDAN_room_23Tex_003D18[] = dHIDAN_room_23Tex_003D18; + +#define dHIDAN_room_23Tex_002D18 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_23Tex_002D18" +static const ALIGN_ASSET(2) char HIDAN_room_23Tex_002D18[] = dHIDAN_room_23Tex_002D18; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_24.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_24.h index 55280e96d..a90e7aa63 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_24.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_24.h @@ -1,72 +1,33 @@ #pragma once -#define dHIDAN_room_24DL_003A10 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24DL_003A10" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24DL_003A10[] = dHIDAN_room_24DL_003A10; -#else -static const char HIDAN_room_24DL_003A10[] __attribute__((aligned (2))) = dHIDAN_room_24DL_003A10; -#endif - -#define dHIDAN_room_24Tex_004D38 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_004D38" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24Tex_004D38[] = dHIDAN_room_24Tex_004D38; -#else -static const char HIDAN_room_24Tex_004D38[] __attribute__((aligned (2))) = dHIDAN_room_24Tex_004D38; -#endif - -#define dHIDAN_room_24DL_0019B0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24DL_0019B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24DL_0019B0[] = dHIDAN_room_24DL_0019B0; -#else -static const char HIDAN_room_24DL_0019B0[] __attribute__((aligned (2))) = dHIDAN_room_24DL_0019B0; -#endif - -#define dHIDAN_room_24Tex_004938 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_004938" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24Tex_004938[] = dHIDAN_room_24Tex_004938; -#else -static const char HIDAN_room_24Tex_004938[] __attribute__((aligned (2))) = dHIDAN_room_24Tex_004938; -#endif - -#define dHIDAN_room_24Tex_003B38 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_003B38" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24Tex_003B38[] = dHIDAN_room_24Tex_003B38; -#else -static const char HIDAN_room_24Tex_003B38[] __attribute__((aligned (2))) = dHIDAN_room_24Tex_003B38; -#endif - -#define dHIDAN_room_24Tex_003F38 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_003F38" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24Tex_003F38[] = dHIDAN_room_24Tex_003F38; -#else -static const char HIDAN_room_24Tex_003F38[] __attribute__((aligned (2))) = dHIDAN_room_24Tex_003F38; -#endif - -#define dHIDAN_room_24Tex_004338 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_004338" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24Tex_004338[] = dHIDAN_room_24Tex_004338; -#else -static const char HIDAN_room_24Tex_004338[] __attribute__((aligned (2))) = dHIDAN_room_24Tex_004338; -#endif - -#define dHIDAN_room_24Tex_004738 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_004738" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24Tex_004738[] = dHIDAN_room_24Tex_004738; -#else -static const char HIDAN_room_24Tex_004738[] __attribute__((aligned (2))) = dHIDAN_room_24Tex_004738; -#endif - -#define dHIDAN_room_24DL_003660 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24DL_003660" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24DL_003660[] = dHIDAN_room_24DL_003660; -#else -static const char HIDAN_room_24DL_003660[] __attribute__((aligned (2))) = dHIDAN_room_24DL_003660; -#endif - -#define dHIDAN_room_24DL_0030C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24DL_0030C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_24DL_0030C0[] = dHIDAN_room_24DL_0030C0; -#else -static const char HIDAN_room_24DL_0030C0[] __attribute__((aligned (2))) = dHIDAN_room_24DL_0030C0; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_24DL_003A10 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24DL_003A10" +static const ALIGN_ASSET(2) char HIDAN_room_24DL_003A10[] = dHIDAN_room_24DL_003A10; + +#define dHIDAN_room_24Tex_004D38 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_004D38" +static const ALIGN_ASSET(2) char HIDAN_room_24Tex_004D38[] = dHIDAN_room_24Tex_004D38; + +#define dHIDAN_room_24DL_0019B0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24DL_0019B0" +static const ALIGN_ASSET(2) char HIDAN_room_24DL_0019B0[] = dHIDAN_room_24DL_0019B0; + +#define dHIDAN_room_24Tex_004938 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_004938" +static const ALIGN_ASSET(2) char HIDAN_room_24Tex_004938[] = dHIDAN_room_24Tex_004938; + +#define dHIDAN_room_24Tex_003B38 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_003B38" +static const ALIGN_ASSET(2) char HIDAN_room_24Tex_003B38[] = dHIDAN_room_24Tex_003B38; + +#define dHIDAN_room_24Tex_003F38 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_003F38" +static const ALIGN_ASSET(2) char HIDAN_room_24Tex_003F38[] = dHIDAN_room_24Tex_003F38; + +#define dHIDAN_room_24Tex_004338 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_004338" +static const ALIGN_ASSET(2) char HIDAN_room_24Tex_004338[] = dHIDAN_room_24Tex_004338; + +#define dHIDAN_room_24Tex_004738 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24Tex_004738" +static const ALIGN_ASSET(2) char HIDAN_room_24Tex_004738[] = dHIDAN_room_24Tex_004738; + +#define dHIDAN_room_24DL_003660 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24DL_003660" +static const ALIGN_ASSET(2) char HIDAN_room_24DL_003660[] = dHIDAN_room_24DL_003660; + +#define dHIDAN_room_24DL_0030C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_24DL_0030C0" +static const ALIGN_ASSET(2) char HIDAN_room_24DL_0030C0[] = dHIDAN_room_24DL_0030C0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_25.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_25.h index d26a41325..92157ee98 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_25.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_25.h @@ -1,65 +1,30 @@ #pragma once -#define dHIDAN_room_25DL_001A90 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25DL_001A90" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25DL_001A90[] = dHIDAN_room_25DL_001A90; -#else -static const char HIDAN_room_25DL_001A90[] __attribute__((aligned (2))) = dHIDAN_room_25DL_001A90; -#endif - -#define dHIDAN_room_25Tex_0052D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_0052D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25Tex_0052D8[] = dHIDAN_room_25Tex_0052D8; -#else -static const char HIDAN_room_25Tex_0052D8[] __attribute__((aligned (2))) = dHIDAN_room_25Tex_0052D8; -#endif - -#define dHIDAN_room_25Tex_0062D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_0062D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25Tex_0062D8[] = dHIDAN_room_25Tex_0062D8; -#else -static const char HIDAN_room_25Tex_0062D8[] __attribute__((aligned (2))) = dHIDAN_room_25Tex_0062D8; -#endif - -#define dHIDAN_room_25Tex_005AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_005AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25Tex_005AD8[] = dHIDAN_room_25Tex_005AD8; -#else -static const char HIDAN_room_25Tex_005AD8[] __attribute__((aligned (2))) = dHIDAN_room_25Tex_005AD8; -#endif - -#define dHIDAN_room_25Tex_004AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_004AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25Tex_004AD8[] = dHIDAN_room_25Tex_004AD8; -#else -static const char HIDAN_room_25Tex_004AD8[] __attribute__((aligned (2))) = dHIDAN_room_25Tex_004AD8; -#endif - -#define dHIDAN_room_25Tex_0042D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_0042D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25Tex_0042D8[] = dHIDAN_room_25Tex_0042D8; -#else -static const char HIDAN_room_25Tex_0042D8[] __attribute__((aligned (2))) = dHIDAN_room_25Tex_0042D8; -#endif - -#define dHIDAN_room_25Tex_002AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_002AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25Tex_002AD8[] = dHIDAN_room_25Tex_002AD8; -#else -static const char HIDAN_room_25Tex_002AD8[] __attribute__((aligned (2))) = dHIDAN_room_25Tex_002AD8; -#endif - -#define dHIDAN_room_25Tex_0032D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_0032D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25Tex_0032D8[] = dHIDAN_room_25Tex_0032D8; -#else -static const char HIDAN_room_25Tex_0032D8[] __attribute__((aligned (2))) = dHIDAN_room_25Tex_0032D8; -#endif - -#define dHIDAN_room_25Tex_003AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_003AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_25Tex_003AD8[] = dHIDAN_room_25Tex_003AD8; -#else -static const char HIDAN_room_25Tex_003AD8[] __attribute__((aligned (2))) = dHIDAN_room_25Tex_003AD8; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_25DL_001A90 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25DL_001A90" +static const ALIGN_ASSET(2) char HIDAN_room_25DL_001A90[] = dHIDAN_room_25DL_001A90; + +#define dHIDAN_room_25Tex_0052D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_0052D8" +static const ALIGN_ASSET(2) char HIDAN_room_25Tex_0052D8[] = dHIDAN_room_25Tex_0052D8; + +#define dHIDAN_room_25Tex_0062D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_0062D8" +static const ALIGN_ASSET(2) char HIDAN_room_25Tex_0062D8[] = dHIDAN_room_25Tex_0062D8; + +#define dHIDAN_room_25Tex_005AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_005AD8" +static const ALIGN_ASSET(2) char HIDAN_room_25Tex_005AD8[] = dHIDAN_room_25Tex_005AD8; + +#define dHIDAN_room_25Tex_004AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_004AD8" +static const ALIGN_ASSET(2) char HIDAN_room_25Tex_004AD8[] = dHIDAN_room_25Tex_004AD8; + +#define dHIDAN_room_25Tex_0042D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_0042D8" +static const ALIGN_ASSET(2) char HIDAN_room_25Tex_0042D8[] = dHIDAN_room_25Tex_0042D8; + +#define dHIDAN_room_25Tex_002AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_002AD8" +static const ALIGN_ASSET(2) char HIDAN_room_25Tex_002AD8[] = dHIDAN_room_25Tex_002AD8; + +#define dHIDAN_room_25Tex_0032D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_0032D8" +static const ALIGN_ASSET(2) char HIDAN_room_25Tex_0032D8[] = dHIDAN_room_25Tex_0032D8; + +#define dHIDAN_room_25Tex_003AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_25Tex_003AD8" +static const ALIGN_ASSET(2) char HIDAN_room_25Tex_003AD8[] = dHIDAN_room_25Tex_003AD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_26.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_26.h index 2b92bffd4..15dc5a4d5 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_26.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_26.h @@ -1,107 +1,48 @@ #pragma once -#define dHIDAN_room_26DL_003590 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_003590" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_003590[] = dHIDAN_room_26DL_003590; -#else -static const char HIDAN_room_26DL_003590[] __attribute__((aligned (2))) = dHIDAN_room_26DL_003590; -#endif - -#define dHIDAN_room_26Tex_006098 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_006098" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26Tex_006098[] = dHIDAN_room_26Tex_006098; -#else -static const char HIDAN_room_26Tex_006098[] __attribute__((aligned (2))) = dHIDAN_room_26Tex_006098; -#endif - -#define dHIDAN_room_26DL_0037A0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0037A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_0037A0[] = dHIDAN_room_26DL_0037A0; -#else -static const char HIDAN_room_26DL_0037A0[] __attribute__((aligned (2))) = dHIDAN_room_26DL_0037A0; -#endif - -#define dHIDAN_room_26Tex_005898 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_005898" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26Tex_005898[] = dHIDAN_room_26Tex_005898; -#else -static const char HIDAN_room_26Tex_005898[] __attribute__((aligned (2))) = dHIDAN_room_26Tex_005898; -#endif - -#define dHIDAN_room_26DL_000A80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_000A80" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_000A80[] = dHIDAN_room_26DL_000A80; -#else -static const char HIDAN_room_26DL_000A80[] __attribute__((aligned (2))) = dHIDAN_room_26DL_000A80; -#endif - -#define dHIDAN_room_26DL_000EF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_000EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_000EF0[] = dHIDAN_room_26DL_000EF0; -#else -static const char HIDAN_room_26DL_000EF0[] __attribute__((aligned (2))) = dHIDAN_room_26DL_000EF0; -#endif - -#define dHIDAN_room_26DL_0010C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0010C0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_0010C0[] = dHIDAN_room_26DL_0010C0; -#else -static const char HIDAN_room_26DL_0010C0[] __attribute__((aligned (2))) = dHIDAN_room_26DL_0010C0; -#endif - -#define dHIDAN_room_26DL_001D40 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_001D40" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_001D40[] = dHIDAN_room_26DL_001D40; -#else -static const char HIDAN_room_26DL_001D40[] __attribute__((aligned (2))) = dHIDAN_room_26DL_001D40; -#endif - -#define dHIDAN_room_26Tex_005698 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_005698" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26Tex_005698[] = dHIDAN_room_26Tex_005698; -#else -static const char HIDAN_room_26Tex_005698[] __attribute__((aligned (2))) = dHIDAN_room_26Tex_005698; -#endif - -#define dHIDAN_room_26Tex_005298 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_005298" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26Tex_005298[] = dHIDAN_room_26Tex_005298; -#else -static const char HIDAN_room_26Tex_005298[] __attribute__((aligned (2))) = dHIDAN_room_26Tex_005298; -#endif - -#define dHIDAN_room_26DL_0015B8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0015B8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_0015B8[] = dHIDAN_room_26DL_0015B8; -#else -static const char HIDAN_room_26DL_0015B8[] __attribute__((aligned (2))) = dHIDAN_room_26DL_0015B8; -#endif - -#define dHIDAN_room_26DL_0024F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0024F8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_0024F8[] = dHIDAN_room_26DL_0024F8; -#else -static const char HIDAN_room_26DL_0024F8[] __attribute__((aligned (2))) = dHIDAN_room_26DL_0024F8; -#endif - -#define dHIDAN_room_26DL_002F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_002F68" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_002F68[] = dHIDAN_room_26DL_002F68; -#else -static const char HIDAN_room_26DL_002F68[] __attribute__((aligned (2))) = dHIDAN_room_26DL_002F68; -#endif - -#define dHIDAN_room_26DL_0046B8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0046B8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26DL_0046B8[] = dHIDAN_room_26DL_0046B8; -#else -static const char HIDAN_room_26DL_0046B8[] __attribute__((aligned (2))) = dHIDAN_room_26DL_0046B8; -#endif - -#define dHIDAN_room_26Tex_004A98 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_004A98" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_26Tex_004A98[] = dHIDAN_room_26Tex_004A98; -#else -static const char HIDAN_room_26Tex_004A98[] __attribute__((aligned (2))) = dHIDAN_room_26Tex_004A98; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_26DL_003590 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_003590" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_003590[] = dHIDAN_room_26DL_003590; + +#define dHIDAN_room_26Tex_006098 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_006098" +static const ALIGN_ASSET(2) char HIDAN_room_26Tex_006098[] = dHIDAN_room_26Tex_006098; + +#define dHIDAN_room_26DL_0037A0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0037A0" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_0037A0[] = dHIDAN_room_26DL_0037A0; + +#define dHIDAN_room_26Tex_005898 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_005898" +static const ALIGN_ASSET(2) char HIDAN_room_26Tex_005898[] = dHIDAN_room_26Tex_005898; + +#define dHIDAN_room_26DL_000A80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_000A80" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_000A80[] = dHIDAN_room_26DL_000A80; + +#define dHIDAN_room_26DL_000EF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_000EF0" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_000EF0[] = dHIDAN_room_26DL_000EF0; + +#define dHIDAN_room_26DL_0010C0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0010C0" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_0010C0[] = dHIDAN_room_26DL_0010C0; + +#define dHIDAN_room_26DL_001D40 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_001D40" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_001D40[] = dHIDAN_room_26DL_001D40; + +#define dHIDAN_room_26Tex_005698 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_005698" +static const ALIGN_ASSET(2) char HIDAN_room_26Tex_005698[] = dHIDAN_room_26Tex_005698; + +#define dHIDAN_room_26Tex_005298 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_005298" +static const ALIGN_ASSET(2) char HIDAN_room_26Tex_005298[] = dHIDAN_room_26Tex_005298; + +#define dHIDAN_room_26DL_0015B8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0015B8" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_0015B8[] = dHIDAN_room_26DL_0015B8; + +#define dHIDAN_room_26DL_0024F8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0024F8" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_0024F8[] = dHIDAN_room_26DL_0024F8; + +#define dHIDAN_room_26DL_002F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_002F68" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_002F68[] = dHIDAN_room_26DL_002F68; + +#define dHIDAN_room_26DL_0046B8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26DL_0046B8" +static const ALIGN_ASSET(2) char HIDAN_room_26DL_0046B8[] = dHIDAN_room_26DL_0046B8; + +#define dHIDAN_room_26Tex_004A98 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_26Tex_004A98" +static const ALIGN_ASSET(2) char HIDAN_room_26Tex_004A98[] = dHIDAN_room_26Tex_004A98; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_3.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_3.h index 6cdcbb906..b20593f80 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_3.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_3.h @@ -1,44 +1,21 @@ #pragma once -#define dHIDAN_room_3DL_000980 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3DL_000980" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_3DL_000980[] = dHIDAN_room_3DL_000980; -#else -static const char HIDAN_room_3DL_000980[] __attribute__((aligned (2))) = dHIDAN_room_3DL_000980; -#endif - -#define dHIDAN_room_3Tex_0022C8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3Tex_0022C8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_3Tex_0022C8[] = dHIDAN_room_3Tex_0022C8; -#else -static const char HIDAN_room_3Tex_0022C8[] __attribute__((aligned (2))) = dHIDAN_room_3Tex_0022C8; -#endif - -#define dHIDAN_room_3DL_0014A0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3DL_0014A0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_3DL_0014A0[] = dHIDAN_room_3DL_0014A0; -#else -static const char HIDAN_room_3DL_0014A0[] __attribute__((aligned (2))) = dHIDAN_room_3DL_0014A0; -#endif - -#define dHIDAN_room_3DL_001840 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3DL_001840" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_3DL_001840[] = dHIDAN_room_3DL_001840; -#else -static const char HIDAN_room_3DL_001840[] __attribute__((aligned (2))) = dHIDAN_room_3DL_001840; -#endif - -#define dHIDAN_room_3Tex_001EC8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3Tex_001EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_3Tex_001EC8[] = dHIDAN_room_3Tex_001EC8; -#else -static const char HIDAN_room_3Tex_001EC8[] __attribute__((aligned (2))) = dHIDAN_room_3Tex_001EC8; -#endif - -#define dHIDAN_room_3Tex_001AC8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3Tex_001AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_3Tex_001AC8[] = dHIDAN_room_3Tex_001AC8; -#else -static const char HIDAN_room_3Tex_001AC8[] __attribute__((aligned (2))) = dHIDAN_room_3Tex_001AC8; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_3DL_000980 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3DL_000980" +static const ALIGN_ASSET(2) char HIDAN_room_3DL_000980[] = dHIDAN_room_3DL_000980; + +#define dHIDAN_room_3Tex_0022C8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3Tex_0022C8" +static const ALIGN_ASSET(2) char HIDAN_room_3Tex_0022C8[] = dHIDAN_room_3Tex_0022C8; + +#define dHIDAN_room_3DL_0014A0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3DL_0014A0" +static const ALIGN_ASSET(2) char HIDAN_room_3DL_0014A0[] = dHIDAN_room_3DL_0014A0; + +#define dHIDAN_room_3DL_001840 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3DL_001840" +static const ALIGN_ASSET(2) char HIDAN_room_3DL_001840[] = dHIDAN_room_3DL_001840; + +#define dHIDAN_room_3Tex_001EC8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3Tex_001EC8" +static const ALIGN_ASSET(2) char HIDAN_room_3Tex_001EC8[] = dHIDAN_room_3Tex_001EC8; + +#define dHIDAN_room_3Tex_001AC8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_3Tex_001AC8" +static const ALIGN_ASSET(2) char HIDAN_room_3Tex_001AC8[] = dHIDAN_room_3Tex_001AC8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_4.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_4.h index 8bad222ba..b30c82f09 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_4.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_4.h @@ -1,107 +1,48 @@ #pragma once -#define dHIDAN_room_4DL_000470 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_000470" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4DL_000470[] = dHIDAN_room_4DL_000470; -#else -static const char HIDAN_room_4DL_000470[] __attribute__((aligned (2))) = dHIDAN_room_4DL_000470; -#endif - -#define dHIDAN_room_4Tex_0066F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0066F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4Tex_0066F0[] = dHIDAN_room_4Tex_0066F0; -#else -static const char HIDAN_room_4Tex_0066F0[] __attribute__((aligned (2))) = dHIDAN_room_4Tex_0066F0; -#endif - -#define dHIDAN_room_4DL_001A10 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_001A10" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4DL_001A10[] = dHIDAN_room_4DL_001A10; -#else -static const char HIDAN_room_4DL_001A10[] __attribute__((aligned (2))) = dHIDAN_room_4DL_001A10; -#endif - -#define dHIDAN_room_4Tex_006CF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_006CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4Tex_006CF0[] = dHIDAN_room_4Tex_006CF0; -#else -static const char HIDAN_room_4Tex_006CF0[] __attribute__((aligned (2))) = dHIDAN_room_4Tex_006CF0; -#endif - -#define dHIDAN_room_4Tex_0068F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0068F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4Tex_0068F0[] = dHIDAN_room_4Tex_0068F0; -#else -static const char HIDAN_room_4Tex_0068F0[] __attribute__((aligned (2))) = dHIDAN_room_4Tex_0068F0; -#endif - -#define dHIDAN_room_4Tex_0062F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0062F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4Tex_0062F0[] = dHIDAN_room_4Tex_0062F0; -#else -static const char HIDAN_room_4Tex_0062F0[] __attribute__((aligned (2))) = dHIDAN_room_4Tex_0062F0; -#endif - -#define dHIDAN_room_4DL_0028B8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_0028B8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4DL_0028B8[] = dHIDAN_room_4DL_0028B8; -#else -static const char HIDAN_room_4DL_0028B8[] __attribute__((aligned (2))) = dHIDAN_room_4DL_0028B8; -#endif - -#define dHIDAN_room_4Tex_0052F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0052F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4Tex_0052F0[] = dHIDAN_room_4Tex_0052F0; -#else -static const char HIDAN_room_4Tex_0052F0[] __attribute__((aligned (2))) = dHIDAN_room_4Tex_0052F0; -#endif - -#define dHIDAN_room_4DL_003060 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_003060" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4DL_003060[] = dHIDAN_room_4DL_003060; -#else -static const char HIDAN_room_4DL_003060[] __attribute__((aligned (2))) = dHIDAN_room_4DL_003060; -#endif - -#define dHIDAN_room_4DL_003C08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_003C08" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4DL_003C08[] = dHIDAN_room_4DL_003C08; -#else -static const char HIDAN_room_4DL_003C08[] __attribute__((aligned (2))) = dHIDAN_room_4DL_003C08; -#endif - -#define dHIDAN_room_4Tex_0050F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4Tex_0050F0[] = dHIDAN_room_4Tex_0050F0; -#else -static const char HIDAN_room_4Tex_0050F0[] __attribute__((aligned (2))) = dHIDAN_room_4Tex_0050F0; -#endif - -#define dHIDAN_room_4Tex_005AF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_005AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4Tex_005AF0[] = dHIDAN_room_4Tex_005AF0; -#else -static const char HIDAN_room_4Tex_005AF0[] __attribute__((aligned (2))) = dHIDAN_room_4Tex_005AF0; -#endif - -#define dHIDAN_room_4DL_004758 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_004758" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4DL_004758[] = dHIDAN_room_4DL_004758; -#else -static const char HIDAN_room_4DL_004758[] __attribute__((aligned (2))) = dHIDAN_room_4DL_004758; -#endif - -#define dHIDAN_room_4DL_004DA0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_004DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4DL_004DA0[] = dHIDAN_room_4DL_004DA0; -#else -static const char HIDAN_room_4DL_004DA0[] __attribute__((aligned (2))) = dHIDAN_room_4DL_004DA0; -#endif - -#define dHIDAN_room_4Tex_0070F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0070F0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_4Tex_0070F0[] = dHIDAN_room_4Tex_0070F0; -#else -static const char HIDAN_room_4Tex_0070F0[] __attribute__((aligned (2))) = dHIDAN_room_4Tex_0070F0; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_4DL_000470 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_000470" +static const ALIGN_ASSET(2) char HIDAN_room_4DL_000470[] = dHIDAN_room_4DL_000470; + +#define dHIDAN_room_4Tex_0066F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0066F0" +static const ALIGN_ASSET(2) char HIDAN_room_4Tex_0066F0[] = dHIDAN_room_4Tex_0066F0; + +#define dHIDAN_room_4DL_001A10 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_001A10" +static const ALIGN_ASSET(2) char HIDAN_room_4DL_001A10[] = dHIDAN_room_4DL_001A10; + +#define dHIDAN_room_4Tex_006CF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_006CF0" +static const ALIGN_ASSET(2) char HIDAN_room_4Tex_006CF0[] = dHIDAN_room_4Tex_006CF0; + +#define dHIDAN_room_4Tex_0068F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0068F0" +static const ALIGN_ASSET(2) char HIDAN_room_4Tex_0068F0[] = dHIDAN_room_4Tex_0068F0; + +#define dHIDAN_room_4Tex_0062F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0062F0" +static const ALIGN_ASSET(2) char HIDAN_room_4Tex_0062F0[] = dHIDAN_room_4Tex_0062F0; + +#define dHIDAN_room_4DL_0028B8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_0028B8" +static const ALIGN_ASSET(2) char HIDAN_room_4DL_0028B8[] = dHIDAN_room_4DL_0028B8; + +#define dHIDAN_room_4Tex_0052F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0052F0" +static const ALIGN_ASSET(2) char HIDAN_room_4Tex_0052F0[] = dHIDAN_room_4Tex_0052F0; + +#define dHIDAN_room_4DL_003060 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_003060" +static const ALIGN_ASSET(2) char HIDAN_room_4DL_003060[] = dHIDAN_room_4DL_003060; + +#define dHIDAN_room_4DL_003C08 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_003C08" +static const ALIGN_ASSET(2) char HIDAN_room_4DL_003C08[] = dHIDAN_room_4DL_003C08; + +#define dHIDAN_room_4Tex_0050F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0050F0" +static const ALIGN_ASSET(2) char HIDAN_room_4Tex_0050F0[] = dHIDAN_room_4Tex_0050F0; + +#define dHIDAN_room_4Tex_005AF0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_005AF0" +static const ALIGN_ASSET(2) char HIDAN_room_4Tex_005AF0[] = dHIDAN_room_4Tex_005AF0; + +#define dHIDAN_room_4DL_004758 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_004758" +static const ALIGN_ASSET(2) char HIDAN_room_4DL_004758[] = dHIDAN_room_4DL_004758; + +#define dHIDAN_room_4DL_004DA0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4DL_004DA0" +static const ALIGN_ASSET(2) char HIDAN_room_4DL_004DA0[] = dHIDAN_room_4DL_004DA0; + +#define dHIDAN_room_4Tex_0070F0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_4Tex_0070F0" +static const ALIGN_ASSET(2) char HIDAN_room_4Tex_0070F0[] = dHIDAN_room_4Tex_0070F0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_5.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_5.h index 610f5aa52..129b70a83 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_5.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_5.h @@ -1,100 +1,45 @@ #pragma once -#define dHIDAN_room_5DL_000A60 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_000A60" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5DL_000A60[] = dHIDAN_room_5DL_000A60; -#else -static const char HIDAN_room_5DL_000A60[] __attribute__((aligned (2))) = dHIDAN_room_5DL_000A60; -#endif - -#define dHIDAN_room_5Tex_007EE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_007EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5Tex_007EE0[] = dHIDAN_room_5Tex_007EE0; -#else -static const char HIDAN_room_5Tex_007EE0[] __attribute__((aligned (2))) = dHIDAN_room_5Tex_007EE0; -#endif - -#define dHIDAN_room_5Tex_0080E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_0080E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5Tex_0080E0[] = dHIDAN_room_5Tex_0080E0; -#else -static const char HIDAN_room_5Tex_0080E0[] __attribute__((aligned (2))) = dHIDAN_room_5Tex_0080E0; -#endif - -#define dHIDAN_room_5DL_002140 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_002140" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5DL_002140[] = dHIDAN_room_5DL_002140; -#else -static const char HIDAN_room_5DL_002140[] __attribute__((aligned (2))) = dHIDAN_room_5DL_002140; -#endif - -#define dHIDAN_room_5Tex_0096E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_0096E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5Tex_0096E0[] = dHIDAN_room_5Tex_0096E0; -#else -static const char HIDAN_room_5Tex_0096E0[] __attribute__((aligned (2))) = dHIDAN_room_5Tex_0096E0; -#endif - -#define dHIDAN_room_5Tex_008CE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_008CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5Tex_008CE0[] = dHIDAN_room_5Tex_008CE0; -#else -static const char HIDAN_room_5Tex_008CE0[] __attribute__((aligned (2))) = dHIDAN_room_5Tex_008CE0; -#endif - -#define dHIDAN_room_5Tex_009AE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_009AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5Tex_009AE0[] = dHIDAN_room_5Tex_009AE0; -#else -static const char HIDAN_room_5Tex_009AE0[] __attribute__((aligned (2))) = dHIDAN_room_5Tex_009AE0; -#endif - -#define dHIDAN_room_5Tex_009EE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_009EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5Tex_009EE0[] = dHIDAN_room_5Tex_009EE0; -#else -static const char HIDAN_room_5Tex_009EE0[] __attribute__((aligned (2))) = dHIDAN_room_5Tex_009EE0; -#endif - -#define dHIDAN_room_5DL_003BE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_003BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5DL_003BE0[] = dHIDAN_room_5DL_003BE0; -#else -static const char HIDAN_room_5DL_003BE0[] __attribute__((aligned (2))) = dHIDAN_room_5DL_003BE0; -#endif - -#define dHIDAN_room_5DL_005058 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_005058" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5DL_005058[] = dHIDAN_room_5DL_005058; -#else -static const char HIDAN_room_5DL_005058[] __attribute__((aligned (2))) = dHIDAN_room_5DL_005058; -#endif - -#define dHIDAN_room_5Tex_0088E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_0088E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5Tex_0088E0[] = dHIDAN_room_5Tex_0088E0; -#else -static const char HIDAN_room_5Tex_0088E0[] __attribute__((aligned (2))) = dHIDAN_room_5Tex_0088E0; -#endif - -#define dHIDAN_room_5DL_005D80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_005D80" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5DL_005D80[] = dHIDAN_room_5DL_005D80; -#else -static const char HIDAN_room_5DL_005D80[] __attribute__((aligned (2))) = dHIDAN_room_5DL_005D80; -#endif - -#define dHIDAN_room_5DL_007130 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_007130" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5DL_007130[] = dHIDAN_room_5DL_007130; -#else -static const char HIDAN_room_5DL_007130[] __attribute__((aligned (2))) = dHIDAN_room_5DL_007130; -#endif - -#define dHIDAN_room_5Tex_0094E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_0094E0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_5Tex_0094E0[] = dHIDAN_room_5Tex_0094E0; -#else -static const char HIDAN_room_5Tex_0094E0[] __attribute__((aligned (2))) = dHIDAN_room_5Tex_0094E0; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_5DL_000A60 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_000A60" +static const ALIGN_ASSET(2) char HIDAN_room_5DL_000A60[] = dHIDAN_room_5DL_000A60; + +#define dHIDAN_room_5Tex_007EE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_007EE0" +static const ALIGN_ASSET(2) char HIDAN_room_5Tex_007EE0[] = dHIDAN_room_5Tex_007EE0; + +#define dHIDAN_room_5Tex_0080E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_0080E0" +static const ALIGN_ASSET(2) char HIDAN_room_5Tex_0080E0[] = dHIDAN_room_5Tex_0080E0; + +#define dHIDAN_room_5DL_002140 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_002140" +static const ALIGN_ASSET(2) char HIDAN_room_5DL_002140[] = dHIDAN_room_5DL_002140; + +#define dHIDAN_room_5Tex_0096E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_0096E0" +static const ALIGN_ASSET(2) char HIDAN_room_5Tex_0096E0[] = dHIDAN_room_5Tex_0096E0; + +#define dHIDAN_room_5Tex_008CE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_008CE0" +static const ALIGN_ASSET(2) char HIDAN_room_5Tex_008CE0[] = dHIDAN_room_5Tex_008CE0; + +#define dHIDAN_room_5Tex_009AE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_009AE0" +static const ALIGN_ASSET(2) char HIDAN_room_5Tex_009AE0[] = dHIDAN_room_5Tex_009AE0; + +#define dHIDAN_room_5Tex_009EE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_009EE0" +static const ALIGN_ASSET(2) char HIDAN_room_5Tex_009EE0[] = dHIDAN_room_5Tex_009EE0; + +#define dHIDAN_room_5DL_003BE0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_003BE0" +static const ALIGN_ASSET(2) char HIDAN_room_5DL_003BE0[] = dHIDAN_room_5DL_003BE0; + +#define dHIDAN_room_5DL_005058 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_005058" +static const ALIGN_ASSET(2) char HIDAN_room_5DL_005058[] = dHIDAN_room_5DL_005058; + +#define dHIDAN_room_5Tex_0088E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_0088E0" +static const ALIGN_ASSET(2) char HIDAN_room_5Tex_0088E0[] = dHIDAN_room_5Tex_0088E0; + +#define dHIDAN_room_5DL_005D80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_005D80" +static const ALIGN_ASSET(2) char HIDAN_room_5DL_005D80[] = dHIDAN_room_5DL_005D80; + +#define dHIDAN_room_5DL_007130 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5DL_007130" +static const ALIGN_ASSET(2) char HIDAN_room_5DL_007130[] = dHIDAN_room_5DL_007130; + +#define dHIDAN_room_5Tex_0094E0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_5Tex_0094E0" +static const ALIGN_ASSET(2) char HIDAN_room_5Tex_0094E0[] = dHIDAN_room_5Tex_0094E0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_6.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_6.h index 2dbd4f491..abb847ea7 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_6.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_6.h @@ -1,72 +1,33 @@ #pragma once -#define dHIDAN_room_6DL_002B78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6DL_002B78" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6DL_002B78[] = dHIDAN_room_6DL_002B78; -#else -static const char HIDAN_room_6DL_002B78[] __attribute__((aligned (2))) = dHIDAN_room_6DL_002B78; -#endif - -#define dHIDAN_room_6Tex_003B90 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_003B90" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6Tex_003B90[] = dHIDAN_room_6Tex_003B90; -#else -static const char HIDAN_room_6Tex_003B90[] __attribute__((aligned (2))) = dHIDAN_room_6Tex_003B90; -#endif - -#define dHIDAN_room_6Tex_004B90 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_004B90" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6Tex_004B90[] = dHIDAN_room_6Tex_004B90; -#else -static const char HIDAN_room_6Tex_004B90[] __attribute__((aligned (2))) = dHIDAN_room_6Tex_004B90; -#endif - -#define dHIDAN_room_6Tex_003990 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_003990" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6Tex_003990[] = dHIDAN_room_6Tex_003990; -#else -static const char HIDAN_room_6Tex_003990[] __attribute__((aligned (2))) = dHIDAN_room_6Tex_003990; -#endif - -#define dHIDAN_room_6Tex_005B90 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_005B90" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6Tex_005B90[] = dHIDAN_room_6Tex_005B90; -#else -static const char HIDAN_room_6Tex_005B90[] __attribute__((aligned (2))) = dHIDAN_room_6Tex_005B90; -#endif - -#define dHIDAN_room_6Tex_006390 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_006390" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6Tex_006390[] = dHIDAN_room_6Tex_006390; -#else -static const char HIDAN_room_6Tex_006390[] __attribute__((aligned (2))) = dHIDAN_room_6Tex_006390; -#endif - -#define dHIDAN_room_6DL_001A00 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6DL_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6DL_001A00[] = dHIDAN_room_6DL_001A00; -#else -static const char HIDAN_room_6DL_001A00[] __attribute__((aligned (2))) = dHIDAN_room_6DL_001A00; -#endif - -#define dHIDAN_room_6Tex_006790 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_006790" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6Tex_006790[] = dHIDAN_room_6Tex_006790; -#else -static const char HIDAN_room_6Tex_006790[] __attribute__((aligned (2))) = dHIDAN_room_6Tex_006790; -#endif - -#define dHIDAN_room_6DL_001350 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6DL_001350" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6DL_001350[] = dHIDAN_room_6DL_001350; -#else -static const char HIDAN_room_6DL_001350[] __attribute__((aligned (2))) = dHIDAN_room_6DL_001350; -#endif - -#define dHIDAN_room_6Tex_004390 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_004390" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_6Tex_004390[] = dHIDAN_room_6Tex_004390; -#else -static const char HIDAN_room_6Tex_004390[] __attribute__((aligned (2))) = dHIDAN_room_6Tex_004390; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_6DL_002B78 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6DL_002B78" +static const ALIGN_ASSET(2) char HIDAN_room_6DL_002B78[] = dHIDAN_room_6DL_002B78; + +#define dHIDAN_room_6Tex_003B90 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_003B90" +static const ALIGN_ASSET(2) char HIDAN_room_6Tex_003B90[] = dHIDAN_room_6Tex_003B90; + +#define dHIDAN_room_6Tex_004B90 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_004B90" +static const ALIGN_ASSET(2) char HIDAN_room_6Tex_004B90[] = dHIDAN_room_6Tex_004B90; + +#define dHIDAN_room_6Tex_003990 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_003990" +static const ALIGN_ASSET(2) char HIDAN_room_6Tex_003990[] = dHIDAN_room_6Tex_003990; + +#define dHIDAN_room_6Tex_005B90 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_005B90" +static const ALIGN_ASSET(2) char HIDAN_room_6Tex_005B90[] = dHIDAN_room_6Tex_005B90; + +#define dHIDAN_room_6Tex_006390 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_006390" +static const ALIGN_ASSET(2) char HIDAN_room_6Tex_006390[] = dHIDAN_room_6Tex_006390; + +#define dHIDAN_room_6DL_001A00 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6DL_001A00" +static const ALIGN_ASSET(2) char HIDAN_room_6DL_001A00[] = dHIDAN_room_6DL_001A00; + +#define dHIDAN_room_6Tex_006790 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_006790" +static const ALIGN_ASSET(2) char HIDAN_room_6Tex_006790[] = dHIDAN_room_6Tex_006790; + +#define dHIDAN_room_6DL_001350 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6DL_001350" +static const ALIGN_ASSET(2) char HIDAN_room_6DL_001350[] = dHIDAN_room_6DL_001350; + +#define dHIDAN_room_6Tex_004390 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_6Tex_004390" +static const ALIGN_ASSET(2) char HIDAN_room_6Tex_004390[] = dHIDAN_room_6Tex_004390; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_7.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_7.h index 8dd9a4f05..2fe8fe6d9 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_7.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_7.h @@ -1,44 +1,21 @@ #pragma once -#define dHIDAN_room_7DL_000C80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7DL_000C80" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_7DL_000C80[] = dHIDAN_room_7DL_000C80; -#else -static const char HIDAN_room_7DL_000C80[] __attribute__((aligned (2))) = dHIDAN_room_7DL_000C80; -#endif - -#define dHIDAN_room_7Tex_002648 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7Tex_002648" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_7Tex_002648[] = dHIDAN_room_7Tex_002648; -#else -static const char HIDAN_room_7Tex_002648[] __attribute__((aligned (2))) = dHIDAN_room_7Tex_002648; -#endif - -#define dHIDAN_room_7Tex_002A48 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7Tex_002A48" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_7Tex_002A48[] = dHIDAN_room_7Tex_002A48; -#else -static const char HIDAN_room_7Tex_002A48[] __attribute__((aligned (2))) = dHIDAN_room_7Tex_002A48; -#endif - -#define dHIDAN_room_7DL_001948 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7DL_001948" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_7DL_001948[] = dHIDAN_room_7DL_001948; -#else -static const char HIDAN_room_7DL_001948[] __attribute__((aligned (2))) = dHIDAN_room_7DL_001948; -#endif - -#define dHIDAN_room_7Tex_001E48 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7Tex_001E48" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_7Tex_001E48[] = dHIDAN_room_7Tex_001E48; -#else -static const char HIDAN_room_7Tex_001E48[] __attribute__((aligned (2))) = dHIDAN_room_7Tex_001E48; -#endif - -#define dHIDAN_room_7Tex_001C48 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7Tex_001C48" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_7Tex_001C48[] = dHIDAN_room_7Tex_001C48; -#else -static const char HIDAN_room_7Tex_001C48[] __attribute__((aligned (2))) = dHIDAN_room_7Tex_001C48; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_7DL_000C80 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7DL_000C80" +static const ALIGN_ASSET(2) char HIDAN_room_7DL_000C80[] = dHIDAN_room_7DL_000C80; + +#define dHIDAN_room_7Tex_002648 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7Tex_002648" +static const ALIGN_ASSET(2) char HIDAN_room_7Tex_002648[] = dHIDAN_room_7Tex_002648; + +#define dHIDAN_room_7Tex_002A48 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7Tex_002A48" +static const ALIGN_ASSET(2) char HIDAN_room_7Tex_002A48[] = dHIDAN_room_7Tex_002A48; + +#define dHIDAN_room_7DL_001948 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7DL_001948" +static const ALIGN_ASSET(2) char HIDAN_room_7DL_001948[] = dHIDAN_room_7DL_001948; + +#define dHIDAN_room_7Tex_001E48 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7Tex_001E48" +static const ALIGN_ASSET(2) char HIDAN_room_7Tex_001E48[] = dHIDAN_room_7Tex_001E48; + +#define dHIDAN_room_7Tex_001C48 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_7Tex_001C48" +static const ALIGN_ASSET(2) char HIDAN_room_7Tex_001C48[] = dHIDAN_room_7Tex_001C48; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_8.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_8.h index be1b359e9..591c7e648 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_8.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_8.h @@ -1,121 +1,54 @@ #pragma once -#define dHIDAN_room_8DL_003668 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_003668" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8DL_003668[] = dHIDAN_room_8DL_003668; -#else -static const char HIDAN_room_8DL_003668[] __attribute__((aligned (2))) = dHIDAN_room_8DL_003668; -#endif - -#define dHIDAN_room_8Tex_005AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_005AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_005AD8[] = dHIDAN_room_8Tex_005AD8; -#else -static const char HIDAN_room_8Tex_005AD8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_005AD8; -#endif - -#define dHIDAN_room_8DL_002660 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_002660" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8DL_002660[] = dHIDAN_room_8DL_002660; -#else -static const char HIDAN_room_8DL_002660[] __attribute__((aligned (2))) = dHIDAN_room_8DL_002660; -#endif - -#define dHIDAN_room_8Tex_0092D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0092D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_0092D8[] = dHIDAN_room_8Tex_0092D8; -#else -static const char HIDAN_room_8Tex_0092D8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_0092D8; -#endif - -#define dHIDAN_room_8DL_000700 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_000700" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8DL_000700[] = dHIDAN_room_8DL_000700; -#else -static const char HIDAN_room_8DL_000700[] __attribute__((aligned (2))) = dHIDAN_room_8DL_000700; -#endif - -#define dHIDAN_room_8Tex_0062D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0062D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_0062D8[] = dHIDAN_room_8Tex_0062D8; -#else -static const char HIDAN_room_8Tex_0062D8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_0062D8; -#endif - -#define dHIDAN_room_8Tex_0086D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0086D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_0086D8[] = dHIDAN_room_8Tex_0086D8; -#else -static const char HIDAN_room_8Tex_0086D8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_0086D8; -#endif - -#define dHIDAN_room_8Tex_0082D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0082D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_0082D8[] = dHIDAN_room_8Tex_0082D8; -#else -static const char HIDAN_room_8Tex_0082D8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_0082D8; -#endif - -#define dHIDAN_room_8DL_001248 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_001248" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8DL_001248[] = dHIDAN_room_8DL_001248; -#else -static const char HIDAN_room_8DL_001248[] __attribute__((aligned (2))) = dHIDAN_room_8DL_001248; -#endif - -#define dHIDAN_room_8DL_001900 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_001900" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8DL_001900[] = dHIDAN_room_8DL_001900; -#else -static const char HIDAN_room_8DL_001900[] __attribute__((aligned (2))) = dHIDAN_room_8DL_001900; -#endif - -#define dHIDAN_room_8DL_002050 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_002050" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8DL_002050[] = dHIDAN_room_8DL_002050; -#else -static const char HIDAN_room_8DL_002050[] __attribute__((aligned (2))) = dHIDAN_room_8DL_002050; -#endif - -#define dHIDAN_room_8Tex_008AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_008AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_008AD8[] = dHIDAN_room_8Tex_008AD8; -#else -static const char HIDAN_room_8Tex_008AD8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_008AD8; -#endif - -#define dHIDAN_room_8DL_0047E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_0047E8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8DL_0047E8[] = dHIDAN_room_8DL_0047E8; -#else -static const char HIDAN_room_8DL_0047E8[] __attribute__((aligned (2))) = dHIDAN_room_8DL_0047E8; -#endif - -#define dHIDAN_room_8Tex_0052D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0052D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_0052D8[] = dHIDAN_room_8Tex_0052D8; -#else -static const char HIDAN_room_8Tex_0052D8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_0052D8; -#endif - -#define dHIDAN_room_8Tex_006AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_006AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_006AD8[] = dHIDAN_room_8Tex_006AD8; -#else -static const char HIDAN_room_8Tex_006AD8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_006AD8; -#endif - -#define dHIDAN_room_8Tex_0050D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0050D8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_0050D8[] = dHIDAN_room_8Tex_0050D8; -#else -static const char HIDAN_room_8Tex_0050D8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_0050D8; -#endif - -#define dHIDAN_room_8Tex_007AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_007AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_8Tex_007AD8[] = dHIDAN_room_8Tex_007AD8; -#else -static const char HIDAN_room_8Tex_007AD8[] __attribute__((aligned (2))) = dHIDAN_room_8Tex_007AD8; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_8DL_003668 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_003668" +static const ALIGN_ASSET(2) char HIDAN_room_8DL_003668[] = dHIDAN_room_8DL_003668; + +#define dHIDAN_room_8Tex_005AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_005AD8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_005AD8[] = dHIDAN_room_8Tex_005AD8; + +#define dHIDAN_room_8DL_002660 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_002660" +static const ALIGN_ASSET(2) char HIDAN_room_8DL_002660[] = dHIDAN_room_8DL_002660; + +#define dHIDAN_room_8Tex_0092D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0092D8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_0092D8[] = dHIDAN_room_8Tex_0092D8; + +#define dHIDAN_room_8DL_000700 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_000700" +static const ALIGN_ASSET(2) char HIDAN_room_8DL_000700[] = dHIDAN_room_8DL_000700; + +#define dHIDAN_room_8Tex_0062D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0062D8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_0062D8[] = dHIDAN_room_8Tex_0062D8; + +#define dHIDAN_room_8Tex_0086D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0086D8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_0086D8[] = dHIDAN_room_8Tex_0086D8; + +#define dHIDAN_room_8Tex_0082D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0082D8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_0082D8[] = dHIDAN_room_8Tex_0082D8; + +#define dHIDAN_room_8DL_001248 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_001248" +static const ALIGN_ASSET(2) char HIDAN_room_8DL_001248[] = dHIDAN_room_8DL_001248; + +#define dHIDAN_room_8DL_001900 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_001900" +static const ALIGN_ASSET(2) char HIDAN_room_8DL_001900[] = dHIDAN_room_8DL_001900; + +#define dHIDAN_room_8DL_002050 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_002050" +static const ALIGN_ASSET(2) char HIDAN_room_8DL_002050[] = dHIDAN_room_8DL_002050; + +#define dHIDAN_room_8Tex_008AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_008AD8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_008AD8[] = dHIDAN_room_8Tex_008AD8; + +#define dHIDAN_room_8DL_0047E8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8DL_0047E8" +static const ALIGN_ASSET(2) char HIDAN_room_8DL_0047E8[] = dHIDAN_room_8DL_0047E8; + +#define dHIDAN_room_8Tex_0052D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0052D8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_0052D8[] = dHIDAN_room_8Tex_0052D8; + +#define dHIDAN_room_8Tex_006AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_006AD8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_006AD8[] = dHIDAN_room_8Tex_006AD8; + +#define dHIDAN_room_8Tex_0050D8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_0050D8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_0050D8[] = dHIDAN_room_8Tex_0050D8; + +#define dHIDAN_room_8Tex_007AD8 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_8Tex_007AD8" +static const ALIGN_ASSET(2) char HIDAN_room_8Tex_007AD8[] = dHIDAN_room_8Tex_007AD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_9.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_9.h index 4257c83e7..d546ac503 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_9.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_room_9.h @@ -1,65 +1,30 @@ #pragma once -#define dHIDAN_room_9DL_002C30 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9DL_002C30" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9DL_002C30[] = dHIDAN_room_9DL_002C30; -#else -static const char HIDAN_room_9DL_002C30[] __attribute__((aligned (2))) = dHIDAN_room_9DL_002C30; -#endif - -#define dHIDAN_room_9Tex_007768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_007768" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9Tex_007768[] = dHIDAN_room_9Tex_007768; -#else -static const char HIDAN_room_9Tex_007768[] __attribute__((aligned (2))) = dHIDAN_room_9Tex_007768; -#endif - -#define dHIDAN_room_9Tex_006F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_006F68" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9Tex_006F68[] = dHIDAN_room_9Tex_006F68; -#else -static const char HIDAN_room_9Tex_006F68[] __attribute__((aligned (2))) = dHIDAN_room_9Tex_006F68; -#endif - -#define dHIDAN_room_9Tex_006768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_006768" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9Tex_006768[] = dHIDAN_room_9Tex_006768; -#else -static const char HIDAN_room_9Tex_006768[] __attribute__((aligned (2))) = dHIDAN_room_9Tex_006768; -#endif - -#define dHIDAN_room_9Tex_005F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_005F68" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9Tex_005F68[] = dHIDAN_room_9Tex_005F68; -#else -static const char HIDAN_room_9Tex_005F68[] __attribute__((aligned (2))) = dHIDAN_room_9Tex_005F68; -#endif - -#define dHIDAN_room_9Tex_004F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_004F68" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9Tex_004F68[] = dHIDAN_room_9Tex_004F68; -#else -static const char HIDAN_room_9Tex_004F68[] __attribute__((aligned (2))) = dHIDAN_room_9Tex_004F68; -#endif - -#define dHIDAN_room_9Tex_005768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_005768" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9Tex_005768[] = dHIDAN_room_9Tex_005768; -#else -static const char HIDAN_room_9Tex_005768[] __attribute__((aligned (2))) = dHIDAN_room_9Tex_005768; -#endif - -#define dHIDAN_room_9Tex_004768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_004768" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9Tex_004768[] = dHIDAN_room_9Tex_004768; -#else -static const char HIDAN_room_9Tex_004768[] __attribute__((aligned (2))) = dHIDAN_room_9Tex_004768; -#endif - -#define dHIDAN_room_9Tex_007F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_007F68" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_room_9Tex_007F68[] = dHIDAN_room_9Tex_007F68; -#else -static const char HIDAN_room_9Tex_007F68[] __attribute__((aligned (2))) = dHIDAN_room_9Tex_007F68; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_room_9DL_002C30 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9DL_002C30" +static const ALIGN_ASSET(2) char HIDAN_room_9DL_002C30[] = dHIDAN_room_9DL_002C30; + +#define dHIDAN_room_9Tex_007768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_007768" +static const ALIGN_ASSET(2) char HIDAN_room_9Tex_007768[] = dHIDAN_room_9Tex_007768; + +#define dHIDAN_room_9Tex_006F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_006F68" +static const ALIGN_ASSET(2) char HIDAN_room_9Tex_006F68[] = dHIDAN_room_9Tex_006F68; + +#define dHIDAN_room_9Tex_006768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_006768" +static const ALIGN_ASSET(2) char HIDAN_room_9Tex_006768[] = dHIDAN_room_9Tex_006768; + +#define dHIDAN_room_9Tex_005F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_005F68" +static const ALIGN_ASSET(2) char HIDAN_room_9Tex_005F68[] = dHIDAN_room_9Tex_005F68; + +#define dHIDAN_room_9Tex_004F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_004F68" +static const ALIGN_ASSET(2) char HIDAN_room_9Tex_004F68[] = dHIDAN_room_9Tex_004F68; + +#define dHIDAN_room_9Tex_005768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_005768" +static const ALIGN_ASSET(2) char HIDAN_room_9Tex_005768[] = dHIDAN_room_9Tex_005768; + +#define dHIDAN_room_9Tex_004768 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_004768" +static const ALIGN_ASSET(2) char HIDAN_room_9Tex_004768[] = dHIDAN_room_9Tex_004768; + +#define dHIDAN_room_9Tex_007F68 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_room_9Tex_007F68" +static const ALIGN_ASSET(2) char HIDAN_room_9Tex_007F68[] = dHIDAN_room_9Tex_007F68; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/HIDAN/HIDAN_scene.h b/soh/assets/scenes/dungeons/HIDAN/HIDAN_scene.h index adcbf9d34..d9e9d458a 100644 --- a/soh/assets/scenes/dungeons/HIDAN/HIDAN_scene.h +++ b/soh/assets/scenes/dungeons/HIDAN/HIDAN_scene.h @@ -1,65 +1,30 @@ #pragma once -#define dHIDAN_sceneCollisionHeader_01895C "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneCollisionHeader_01895C" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneCollisionHeader_01895C[] = dHIDAN_sceneCollisionHeader_01895C; -#else -static const char HIDAN_sceneCollisionHeader_01895C[] __attribute__((aligned (2))) = dHIDAN_sceneCollisionHeader_01895C; -#endif - -#define dHIDAN_sceneTLUT_018990 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTLUT_018990" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneTLUT_018990[] = dHIDAN_sceneTLUT_018990; -#else -static const char HIDAN_sceneTLUT_018990[] __attribute__((aligned (2))) = dHIDAN_sceneTLUT_018990; -#endif - -#define dHIDAN_sceneTex_0195D0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_0195D0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneTex_0195D0[] = dHIDAN_sceneTex_0195D0; -#else -static const char HIDAN_sceneTex_0195D0[] __attribute__((aligned (2))) = dHIDAN_sceneTex_0195D0; -#endif - -#define dHIDAN_sceneTex_018DD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_018DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneTex_018DD0[] = dHIDAN_sceneTex_018DD0; -#else -static const char HIDAN_sceneTex_018DD0[] __attribute__((aligned (2))) = dHIDAN_sceneTex_018DD0; -#endif - -#define dHIDAN_sceneTex_018BD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_018BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneTex_018BD0[] = dHIDAN_sceneTex_018BD0; -#else -static const char HIDAN_sceneTex_018BD0[] __attribute__((aligned (2))) = dHIDAN_sceneTex_018BD0; -#endif - -#define dHIDAN_sceneTLUT_0189B0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTLUT_0189B0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneTLUT_0189B0[] = dHIDAN_sceneTLUT_0189B0; -#else -static const char HIDAN_sceneTLUT_0189B0[] __attribute__((aligned (2))) = dHIDAN_sceneTLUT_0189B0; -#endif - -#define dHIDAN_sceneTex_019DD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_019DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneTex_019DD0[] = dHIDAN_sceneTex_019DD0; -#else -static const char HIDAN_sceneTex_019DD0[] __attribute__((aligned (2))) = dHIDAN_sceneTex_019DD0; -#endif - -#define dHIDAN_sceneTex_0189D0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_0189D0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneTex_0189D0[] = dHIDAN_sceneTex_0189D0; -#else -static const char HIDAN_sceneTex_0189D0[] __attribute__((aligned (2))) = dHIDAN_sceneTex_0189D0; -#endif - -#define dHIDAN_sceneTex_019FD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_019FD0" -#ifdef _WIN32 -static const __declspec(align(2)) char HIDAN_sceneTex_019FD0[] = dHIDAN_sceneTex_019FD0; -#else -static const char HIDAN_sceneTex_019FD0[] __attribute__((aligned (2))) = dHIDAN_sceneTex_019FD0; -#endif - +#include "align_asset_macro.h" + +#define dHIDAN_sceneCollisionHeader_01895C "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneCollisionHeader_01895C" +static const ALIGN_ASSET(2) char HIDAN_sceneCollisionHeader_01895C[] = dHIDAN_sceneCollisionHeader_01895C; + +#define dHIDAN_sceneTLUT_018990 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTLUT_018990" +static const ALIGN_ASSET(2) char HIDAN_sceneTLUT_018990[] = dHIDAN_sceneTLUT_018990; + +#define dHIDAN_sceneTex_0195D0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_0195D0" +static const ALIGN_ASSET(2) char HIDAN_sceneTex_0195D0[] = dHIDAN_sceneTex_0195D0; + +#define dHIDAN_sceneTex_018DD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_018DD0" +static const ALIGN_ASSET(2) char HIDAN_sceneTex_018DD0[] = dHIDAN_sceneTex_018DD0; + +#define dHIDAN_sceneTex_018BD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_018BD0" +static const ALIGN_ASSET(2) char HIDAN_sceneTex_018BD0[] = dHIDAN_sceneTex_018BD0; + +#define dHIDAN_sceneTLUT_0189B0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTLUT_0189B0" +static const ALIGN_ASSET(2) char HIDAN_sceneTLUT_0189B0[] = dHIDAN_sceneTLUT_0189B0; + +#define dHIDAN_sceneTex_019DD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_019DD0" +static const ALIGN_ASSET(2) char HIDAN_sceneTex_019DD0[] = dHIDAN_sceneTex_019DD0; + +#define dHIDAN_sceneTex_0189D0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_0189D0" +static const ALIGN_ASSET(2) char HIDAN_sceneTex_0189D0[] = dHIDAN_sceneTex_0189D0; + +#define dHIDAN_sceneTex_019FD0 "__OTR__scenes/nonmq/HIDAN_scene/HIDAN_sceneTex_019FD0" +static const ALIGN_ASSET(2) char HIDAN_sceneTex_019FD0[] = dHIDAN_sceneTex_019FD0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_0.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_0.h index c2f72ed88..41fe97896 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_0.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_0.h @@ -1,436 +1,189 @@ #pragma once -#define dMIZUsin_room_0DL_0051B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0051B8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_0051B8[] = dMIZUsin_room_0DL_0051B8; -#else -static const char MIZUsin_room_0DL_0051B8[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_0051B8; -#endif - -#define dMIZUsin_room_0DL_003880 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_003880" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_003880[] = dMIZUsin_room_0DL_003880; -#else -static const char MIZUsin_room_0DL_003880[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_003880; -#endif - -#define dMIZUsin_room_0DL_003320 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_003320" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_003320[] = dMIZUsin_room_0DL_003320; -#else -static const char MIZUsin_room_0DL_003320[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_003320; -#endif - -#define dMIZUsin_room_0DL_002F60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_002F60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_002F60[] = dMIZUsin_room_0DL_002F60; -#else -static const char MIZUsin_room_0DL_002F60[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_002F60; -#endif - -#define dMIZUsin_room_0DL_0014A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0014A0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_0014A0[] = dMIZUsin_room_0DL_0014A0; -#else -static const char MIZUsin_room_0DL_0014A0[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_0014A0; -#endif - -#define dMIZUsin_room_0DL_0010A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0010A8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_0010A8[] = dMIZUsin_room_0DL_0010A8; -#else -static const char MIZUsin_room_0DL_0010A8[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_0010A8; -#endif - -#define dMIZUsin_room_0DL_004778 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_004778" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_004778[] = dMIZUsin_room_0DL_004778; -#else -static const char MIZUsin_room_0DL_004778[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_004778; -#endif - -#define dMIZUsin_room_0DL_015330 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_015330" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_015330[] = dMIZUsin_room_0DL_015330; -#else -static const char MIZUsin_room_0DL_015330[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_015330; -#endif - -#define dMIZUsin_room_0DL_003E38 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_003E38" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_003E38[] = dMIZUsin_room_0DL_003E38; -#else -static const char MIZUsin_room_0DL_003E38[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_003E38; -#endif - -#define dMIZUsin_room_0Tex_0125F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0125F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_0125F8[] = dMIZUsin_room_0Tex_0125F8; -#else -static const char MIZUsin_room_0Tex_0125F8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_0125F8; -#endif - -#define dMIZUsin_room_0DL_0027C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0027C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_0027C8[] = dMIZUsin_room_0DL_0027C8; -#else -static const char MIZUsin_room_0DL_0027C8[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_0027C8; -#endif - -#define dMIZUsin_room_0Tex_00F5F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00F5F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_00F5F8[] = dMIZUsin_room_0Tex_00F5F8; -#else -static const char MIZUsin_room_0Tex_00F5F8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_00F5F8; -#endif - -#define dMIZUsin_room_0DL_015078 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_015078" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_015078[] = dMIZUsin_room_0DL_015078; -#else -static const char MIZUsin_room_0DL_015078[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_015078; -#endif - -#define dMIZUsin_room_0Tex_015428 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_015428" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_015428[] = dMIZUsin_room_0Tex_015428; -#else -static const char MIZUsin_room_0Tex_015428[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_015428; -#endif - -#define dMIZUsin_room_0DL_014EC0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_014EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_014EC0[] = dMIZUsin_room_0DL_014EC0; -#else -static const char MIZUsin_room_0DL_014EC0[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_014EC0; -#endif - -#define dMIZUsin_room_0DL_007AC0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_007AC0[] = dMIZUsin_room_0DL_007AC0; -#else -static const char MIZUsin_room_0DL_007AC0[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_007AC0; -#endif - -#define dMIZUsin_room_0Tex_00DDF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00DDF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_00DDF8[] = dMIZUsin_room_0Tex_00DDF8; -#else -static const char MIZUsin_room_0Tex_00DDF8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_00DDF8; -#endif - -#define dMIZUsin_room_0DL_007620 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007620" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_007620[] = dMIZUsin_room_0DL_007620; -#else -static const char MIZUsin_room_0DL_007620[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_007620; -#endif - -#define dMIZUsin_room_0DL_007D78 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007D78" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_007D78[] = dMIZUsin_room_0DL_007D78; -#else -static const char MIZUsin_room_0DL_007D78[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_007D78; -#endif - -#define dMIZUsin_room_0DL_007370 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007370" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_007370[] = dMIZUsin_room_0DL_007370; -#else -static const char MIZUsin_room_0DL_007370[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_007370; -#endif - -#define dMIZUsin_room_0DL_006C60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_006C60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_006C60[] = dMIZUsin_room_0DL_006C60; -#else -static const char MIZUsin_room_0DL_006C60[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_006C60; -#endif - -#define dMIZUsin_room_0DL_007050 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007050" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_007050[] = dMIZUsin_room_0DL_007050; -#else -static const char MIZUsin_room_0DL_007050[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_007050; -#endif - -#define dMIZUsin_room_0DL_0062E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0062E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_0062E0[] = dMIZUsin_room_0DL_0062E0; -#else -static const char MIZUsin_room_0DL_0062E0[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_0062E0; -#endif - -#define dMIZUsin_room_0Tex_012DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_012DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_012DF8[] = dMIZUsin_room_0Tex_012DF8; -#else -static const char MIZUsin_room_0Tex_012DF8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_012DF8; -#endif - -#define dMIZUsin_room_0DL_0067C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_0067C8[] = dMIZUsin_room_0DL_0067C8; -#else -static const char MIZUsin_room_0DL_0067C8[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_0067C8; -#endif - -#define dMIZUsin_room_0Tex_00E5F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00E5F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_00E5F8[] = dMIZUsin_room_0Tex_00E5F8; -#else -static const char MIZUsin_room_0Tex_00E5F8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_00E5F8; -#endif - -#define dMIZUsin_room_0DL_006508 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_006508" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_006508[] = dMIZUsin_room_0DL_006508; -#else -static const char MIZUsin_room_0DL_006508[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_006508; -#endif - -#define dMIZUsin_room_0DL_0008F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0008F0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_0008F0[] = dMIZUsin_room_0DL_0008F0; -#else -static const char MIZUsin_room_0DL_0008F0[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_0008F0; -#endif - -#define dMIZUsin_room_0Tex_00CDF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00CDF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_00CDF8[] = dMIZUsin_room_0Tex_00CDF8; -#else -static const char MIZUsin_room_0Tex_00CDF8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_00CDF8; -#endif - -#define dMIZUsin_room_0Tex_00D5F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00D5F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_00D5F8[] = dMIZUsin_room_0Tex_00D5F8; -#else -static const char MIZUsin_room_0Tex_00D5F8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_00D5F8; -#endif - -#define dMIZUsin_room_0DL_005428 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_005428" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_005428[] = dMIZUsin_room_0DL_005428; -#else -static const char MIZUsin_room_0DL_005428[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_005428; -#endif - -#define dMIZUsin_room_0DL_000B98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_000B98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_000B98[] = dMIZUsin_room_0DL_000B98; -#else -static const char MIZUsin_room_0DL_000B98[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_000B98; -#endif - -#define dMIZUsin_room_0DL_001A10 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_001A10" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_001A10[] = dMIZUsin_room_0DL_001A10; -#else -static const char MIZUsin_room_0DL_001A10[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_001A10; -#endif - -#define dMIZUsin_room_0DL_0041C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0041C0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_0041C0[] = dMIZUsin_room_0DL_0041C0; -#else -static const char MIZUsin_room_0DL_0041C0[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_0041C0; -#endif - -#define dMIZUsin_room_0DL_001750 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_001750" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_001750[] = dMIZUsin_room_0DL_001750; -#else -static const char MIZUsin_room_0DL_001750[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_001750; -#endif - -#define dMIZUsin_room_0DL_008B98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_008B98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_008B98[] = dMIZUsin_room_0DL_008B98; -#else -static const char MIZUsin_room_0DL_008B98[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_008B98; -#endif - -#define dMIZUsin_room_0DL_005B48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_005B48" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_005B48[] = dMIZUsin_room_0DL_005B48; -#else -static const char MIZUsin_room_0DL_005B48[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_005B48; -#endif - -#define dMIZUsin_room_0DL_005870 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_005870" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_005870[] = dMIZUsin_room_0DL_005870; -#else -static const char MIZUsin_room_0DL_005870[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_005870; -#endif - -#define dMIZUsin_room_0DL_005F78 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_005F78" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_005F78[] = dMIZUsin_room_0DL_005F78; -#else -static const char MIZUsin_room_0DL_005F78[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_005F78; -#endif - -#define dMIZUsin_room_0DL_009560 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_009560" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_009560[] = dMIZUsin_room_0DL_009560; -#else -static const char MIZUsin_room_0DL_009560[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_009560; -#endif - -#define dMIZUsin_room_0DL_00CB60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00CB60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00CB60[] = dMIZUsin_room_0DL_00CB60; -#else -static const char MIZUsin_room_0DL_00CB60[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00CB60; -#endif - -#define dMIZUsin_room_0Tex_00EDF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00EDF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_00EDF8[] = dMIZUsin_room_0Tex_00EDF8; -#else -static const char MIZUsin_room_0Tex_00EDF8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_00EDF8; -#endif - -#define dMIZUsin_room_0DL_00C180 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00C180" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00C180[] = dMIZUsin_room_0DL_00C180; -#else -static const char MIZUsin_room_0DL_00C180[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00C180; -#endif - -#define dMIZUsin_room_0Tex_011DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_011DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_011DF8[] = dMIZUsin_room_0Tex_011DF8; -#else -static const char MIZUsin_room_0Tex_011DF8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_011DF8; -#endif - -#define dMIZUsin_room_0DL_00B018 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00B018" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00B018[] = dMIZUsin_room_0DL_00B018; -#else -static const char MIZUsin_room_0DL_00B018[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00B018; -#endif - -#define dMIZUsin_room_0Tex_010DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_010DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_010DF8[] = dMIZUsin_room_0Tex_010DF8; -#else -static const char MIZUsin_room_0Tex_010DF8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_010DF8; -#endif - -#define dMIZUsin_room_0DL_00B328 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00B328" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00B328[] = dMIZUsin_room_0DL_00B328; -#else -static const char MIZUsin_room_0DL_00B328[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00B328; -#endif - -#define dMIZUsin_room_0DL_00B730 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00B730" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00B730[] = dMIZUsin_room_0DL_00B730; -#else -static const char MIZUsin_room_0DL_00B730[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00B730; -#endif - -#define dMIZUsin_room_0DL_00ABB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00ABB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00ABB8[] = dMIZUsin_room_0DL_00ABB8; -#else -static const char MIZUsin_room_0DL_00ABB8[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00ABB8; -#endif - -#define dMIZUsin_room_0Tex_00FDF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00FDF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_00FDF8[] = dMIZUsin_room_0Tex_00FDF8; -#else -static const char MIZUsin_room_0Tex_00FDF8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_00FDF8; -#endif - -#define dMIZUsin_room_0DL_00BCC8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00BCC8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00BCC8[] = dMIZUsin_room_0DL_00BCC8; -#else -static const char MIZUsin_room_0DL_00BCC8[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00BCC8; -#endif - -#define dMIZUsin_room_0Tex_0115F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0115F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_0115F8[] = dMIZUsin_room_0Tex_0115F8; -#else -static const char MIZUsin_room_0Tex_0115F8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_0115F8; -#endif - -#define dMIZUsin_room_0DL_00A550 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00A550" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00A550[] = dMIZUsin_room_0DL_00A550; -#else -static const char MIZUsin_room_0DL_00A550[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00A550; -#endif - -#define dMIZUsin_room_0Tex_0105F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0105F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_0105F8[] = dMIZUsin_room_0Tex_0105F8; -#else -static const char MIZUsin_room_0Tex_0105F8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_0105F8; -#endif - -#define dMIZUsin_room_0DL_001D70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_001D70" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_001D70[] = dMIZUsin_room_0DL_001D70; -#else -static const char MIZUsin_room_0DL_001D70[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_001D70; -#endif - -#define dMIZUsin_room_0DL_004D90 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_004D90" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_004D90[] = dMIZUsin_room_0DL_004D90; -#else -static const char MIZUsin_room_0DL_004D90[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_004D90; -#endif - -#define dMIZUsin_room_0DL_00C5D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00C5D8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00C5D8[] = dMIZUsin_room_0DL_00C5D8; -#else -static const char MIZUsin_room_0DL_00C5D8[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00C5D8; -#endif - -#define dMIZUsin_room_0Tex_013DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_013DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_013DF8[] = dMIZUsin_room_0Tex_013DF8; -#else -static const char MIZUsin_room_0Tex_013DF8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_013DF8; -#endif - -#define dMIZUsin_room_0DL_00C840 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00C840" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_00C840[] = dMIZUsin_room_0DL_00C840; -#else -static const char MIZUsin_room_0DL_00C840[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_00C840; -#endif - -#define dMIZUsin_room_0Tex_0135F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0135F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_0135F8[] = dMIZUsin_room_0Tex_0135F8; -#else -static const char MIZUsin_room_0Tex_0135F8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_0135F8; -#endif - -#define dMIZUsin_room_0DL_009D60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_009D60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0DL_009D60[] = dMIZUsin_room_0DL_009D60; -#else -static const char MIZUsin_room_0DL_009D60[] __attribute__((aligned (2))) = dMIZUsin_room_0DL_009D60; -#endif - -#define dMIZUsin_room_0Tex_0145F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0145F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_0Tex_0145F8[] = dMIZUsin_room_0Tex_0145F8; -#else -static const char MIZUsin_room_0Tex_0145F8[] __attribute__((aligned (2))) = dMIZUsin_room_0Tex_0145F8; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_0DL_0051B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0051B8" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_0051B8[] = dMIZUsin_room_0DL_0051B8; + +#define dMIZUsin_room_0DL_003880 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_003880" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_003880[] = dMIZUsin_room_0DL_003880; + +#define dMIZUsin_room_0DL_003320 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_003320" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_003320[] = dMIZUsin_room_0DL_003320; + +#define dMIZUsin_room_0DL_002F60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_002F60" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_002F60[] = dMIZUsin_room_0DL_002F60; + +#define dMIZUsin_room_0DL_0014A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0014A0" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_0014A0[] = dMIZUsin_room_0DL_0014A0; + +#define dMIZUsin_room_0DL_0010A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0010A8" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_0010A8[] = dMIZUsin_room_0DL_0010A8; + +#define dMIZUsin_room_0DL_004778 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_004778" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_004778[] = dMIZUsin_room_0DL_004778; + +#define dMIZUsin_room_0DL_015330 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_015330" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_015330[] = dMIZUsin_room_0DL_015330; + +#define dMIZUsin_room_0DL_003E38 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_003E38" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_003E38[] = dMIZUsin_room_0DL_003E38; + +#define dMIZUsin_room_0Tex_0125F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0125F8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_0125F8[] = dMIZUsin_room_0Tex_0125F8; + +#define dMIZUsin_room_0DL_0027C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0027C8" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_0027C8[] = dMIZUsin_room_0DL_0027C8; + +#define dMIZUsin_room_0Tex_00F5F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00F5F8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_00F5F8[] = dMIZUsin_room_0Tex_00F5F8; + +#define dMIZUsin_room_0DL_015078 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_015078" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_015078[] = dMIZUsin_room_0DL_015078; + +#define dMIZUsin_room_0Tex_015428 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_015428" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_015428[] = dMIZUsin_room_0Tex_015428; + +#define dMIZUsin_room_0DL_014EC0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_014EC0" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_014EC0[] = dMIZUsin_room_0DL_014EC0; + +#define dMIZUsin_room_0DL_007AC0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007AC0" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_007AC0[] = dMIZUsin_room_0DL_007AC0; + +#define dMIZUsin_room_0Tex_00DDF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00DDF8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_00DDF8[] = dMIZUsin_room_0Tex_00DDF8; + +#define dMIZUsin_room_0DL_007620 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007620" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_007620[] = dMIZUsin_room_0DL_007620; + +#define dMIZUsin_room_0DL_007D78 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007D78" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_007D78[] = dMIZUsin_room_0DL_007D78; + +#define dMIZUsin_room_0DL_007370 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007370" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_007370[] = dMIZUsin_room_0DL_007370; + +#define dMIZUsin_room_0DL_006C60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_006C60" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_006C60[] = dMIZUsin_room_0DL_006C60; + +#define dMIZUsin_room_0DL_007050 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_007050" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_007050[] = dMIZUsin_room_0DL_007050; + +#define dMIZUsin_room_0DL_0062E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0062E0" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_0062E0[] = dMIZUsin_room_0DL_0062E0; + +#define dMIZUsin_room_0Tex_012DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_012DF8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_012DF8[] = dMIZUsin_room_0Tex_012DF8; + +#define dMIZUsin_room_0DL_0067C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0067C8" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_0067C8[] = dMIZUsin_room_0DL_0067C8; + +#define dMIZUsin_room_0Tex_00E5F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00E5F8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_00E5F8[] = dMIZUsin_room_0Tex_00E5F8; + +#define dMIZUsin_room_0DL_006508 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_006508" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_006508[] = dMIZUsin_room_0DL_006508; + +#define dMIZUsin_room_0DL_0008F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0008F0" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_0008F0[] = dMIZUsin_room_0DL_0008F0; + +#define dMIZUsin_room_0Tex_00CDF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00CDF8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_00CDF8[] = dMIZUsin_room_0Tex_00CDF8; + +#define dMIZUsin_room_0Tex_00D5F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00D5F8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_00D5F8[] = dMIZUsin_room_0Tex_00D5F8; + +#define dMIZUsin_room_0DL_005428 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_005428" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_005428[] = dMIZUsin_room_0DL_005428; + +#define dMIZUsin_room_0DL_000B98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_000B98" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_000B98[] = dMIZUsin_room_0DL_000B98; + +#define dMIZUsin_room_0DL_001A10 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_001A10" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_001A10[] = dMIZUsin_room_0DL_001A10; + +#define dMIZUsin_room_0DL_0041C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_0041C0" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_0041C0[] = dMIZUsin_room_0DL_0041C0; + +#define dMIZUsin_room_0DL_001750 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_001750" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_001750[] = dMIZUsin_room_0DL_001750; + +#define dMIZUsin_room_0DL_008B98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_008B98" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_008B98[] = dMIZUsin_room_0DL_008B98; + +#define dMIZUsin_room_0DL_005B48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_005B48" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_005B48[] = dMIZUsin_room_0DL_005B48; + +#define dMIZUsin_room_0DL_005870 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_005870" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_005870[] = dMIZUsin_room_0DL_005870; + +#define dMIZUsin_room_0DL_005F78 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_005F78" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_005F78[] = dMIZUsin_room_0DL_005F78; + +#define dMIZUsin_room_0DL_009560 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_009560" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_009560[] = dMIZUsin_room_0DL_009560; + +#define dMIZUsin_room_0DL_00CB60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00CB60" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00CB60[] = dMIZUsin_room_0DL_00CB60; + +#define dMIZUsin_room_0Tex_00EDF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00EDF8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_00EDF8[] = dMIZUsin_room_0Tex_00EDF8; + +#define dMIZUsin_room_0DL_00C180 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00C180" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00C180[] = dMIZUsin_room_0DL_00C180; + +#define dMIZUsin_room_0Tex_011DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_011DF8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_011DF8[] = dMIZUsin_room_0Tex_011DF8; + +#define dMIZUsin_room_0DL_00B018 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00B018" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00B018[] = dMIZUsin_room_0DL_00B018; + +#define dMIZUsin_room_0Tex_010DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_010DF8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_010DF8[] = dMIZUsin_room_0Tex_010DF8; + +#define dMIZUsin_room_0DL_00B328 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00B328" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00B328[] = dMIZUsin_room_0DL_00B328; + +#define dMIZUsin_room_0DL_00B730 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00B730" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00B730[] = dMIZUsin_room_0DL_00B730; + +#define dMIZUsin_room_0DL_00ABB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00ABB8" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00ABB8[] = dMIZUsin_room_0DL_00ABB8; + +#define dMIZUsin_room_0Tex_00FDF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_00FDF8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_00FDF8[] = dMIZUsin_room_0Tex_00FDF8; + +#define dMIZUsin_room_0DL_00BCC8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00BCC8" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00BCC8[] = dMIZUsin_room_0DL_00BCC8; + +#define dMIZUsin_room_0Tex_0115F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0115F8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_0115F8[] = dMIZUsin_room_0Tex_0115F8; + +#define dMIZUsin_room_0DL_00A550 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00A550" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00A550[] = dMIZUsin_room_0DL_00A550; + +#define dMIZUsin_room_0Tex_0105F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0105F8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_0105F8[] = dMIZUsin_room_0Tex_0105F8; + +#define dMIZUsin_room_0DL_001D70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_001D70" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_001D70[] = dMIZUsin_room_0DL_001D70; + +#define dMIZUsin_room_0DL_004D90 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_004D90" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_004D90[] = dMIZUsin_room_0DL_004D90; + +#define dMIZUsin_room_0DL_00C5D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00C5D8" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00C5D8[] = dMIZUsin_room_0DL_00C5D8; + +#define dMIZUsin_room_0Tex_013DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_013DF8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_013DF8[] = dMIZUsin_room_0Tex_013DF8; + +#define dMIZUsin_room_0DL_00C840 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_00C840" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_00C840[] = dMIZUsin_room_0DL_00C840; + +#define dMIZUsin_room_0Tex_0135F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0135F8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_0135F8[] = dMIZUsin_room_0Tex_0135F8; + +#define dMIZUsin_room_0DL_009D60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0DL_009D60" +static const ALIGN_ASSET(2) char MIZUsin_room_0DL_009D60[] = dMIZUsin_room_0DL_009D60; + +#define dMIZUsin_room_0Tex_0145F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_0Tex_0145F8" +static const ALIGN_ASSET(2) char MIZUsin_room_0Tex_0145F8[] = dMIZUsin_room_0Tex_0145F8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_1.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_1.h index c8e9bf72d..484fb3d95 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_1.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_1.h @@ -1,149 +1,66 @@ #pragma once -#define dMIZUsin_room_1DL_003D70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_003D70" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_003D70[] = dMIZUsin_room_1DL_003D70; -#else -static const char MIZUsin_room_1DL_003D70[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_003D70; -#endif - -#define dMIZUsin_room_1DL_005818 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_005818" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_005818[] = dMIZUsin_room_1DL_005818; -#else -static const char MIZUsin_room_1DL_005818[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_005818; -#endif - -#define dMIZUsin_room_1DL_004B18 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_004B18" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_004B18[] = dMIZUsin_room_1DL_004B18; -#else -static const char MIZUsin_room_1DL_004B18[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_004B18; -#endif - -#define dMIZUsin_room_1Tex_0089D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0089D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0089D0[] = dMIZUsin_room_1Tex_0089D0; -#else -static const char MIZUsin_room_1Tex_0089D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0089D0; -#endif - -#define dMIZUsin_room_1DL_003888 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_003888" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_003888[] = dMIZUsin_room_1DL_003888; -#else -static const char MIZUsin_room_1DL_003888[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_003888; -#endif - -#define dMIZUsin_room_1Tex_0069D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0069D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0069D0[] = dMIZUsin_room_1Tex_0069D0; -#else -static const char MIZUsin_room_1Tex_0069D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0069D0; -#endif - -#define dMIZUsin_room_1DL_0045D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_0045D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_0045D0[] = dMIZUsin_room_1DL_0045D0; -#else -static const char MIZUsin_room_1DL_0045D0[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_0045D0; -#endif - -#define dMIZUsin_room_1Tex_0071D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0071D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0071D0[] = dMIZUsin_room_1Tex_0071D0; -#else -static const char MIZUsin_room_1Tex_0071D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0071D0; -#endif - -#define dMIZUsin_room_1DL_003030 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_003030" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_003030[] = dMIZUsin_room_1DL_003030; -#else -static const char MIZUsin_room_1DL_003030[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_003030; -#endif - -#define dMIZUsin_room_1Tex_0079D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0079D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0079D0[] = dMIZUsin_room_1Tex_0079D0; -#else -static const char MIZUsin_room_1Tex_0079D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0079D0; -#endif - -#define dMIZUsin_room_1DL_002C40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_002C40" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_002C40[] = dMIZUsin_room_1DL_002C40; -#else -static const char MIZUsin_room_1DL_002C40[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_002C40; -#endif - -#define dMIZUsin_room_1Tex_0091D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0091D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0091D0[] = dMIZUsin_room_1Tex_0091D0; -#else -static const char MIZUsin_room_1Tex_0091D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0091D0; -#endif - -#define dMIZUsin_room_1DL_004DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_004DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_004DF8[] = dMIZUsin_room_1DL_004DF8; -#else -static const char MIZUsin_room_1DL_004DF8[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_004DF8; -#endif - -#define dMIZUsin_room_1Tex_0059D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0059D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0059D0[] = dMIZUsin_room_1Tex_0059D0; -#else -static const char MIZUsin_room_1Tex_0059D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0059D0; -#endif - -#define dMIZUsin_room_1Tex_0061D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0061D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0061D0[] = dMIZUsin_room_1Tex_0061D0; -#else -static const char MIZUsin_room_1Tex_0061D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0061D0; -#endif - -#define dMIZUsin_room_1DL_005050 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_005050" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_005050[] = dMIZUsin_room_1DL_005050; -#else -static const char MIZUsin_room_1DL_005050[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_005050; -#endif - -#define dMIZUsin_room_1Tex_0099D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0099D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0099D0[] = dMIZUsin_room_1Tex_0099D0; -#else -static const char MIZUsin_room_1Tex_0099D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0099D0; -#endif - -#define dMIZUsin_room_1DL_001F20 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_001F20[] = dMIZUsin_room_1DL_001F20; -#else -static const char MIZUsin_room_1DL_001F20[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_001F20; -#endif - -#define dMIZUsin_room_1Tex_0081D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0081D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1Tex_0081D0[] = dMIZUsin_room_1Tex_0081D0; -#else -static const char MIZUsin_room_1Tex_0081D0[] __attribute__((aligned (2))) = dMIZUsin_room_1Tex_0081D0; -#endif - -#define dMIZUsin_room_1DL_0028D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_0028D8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_0028D8[] = dMIZUsin_room_1DL_0028D8; -#else -static const char MIZUsin_room_1DL_0028D8[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_0028D8; -#endif - -#define dMIZUsin_room_1DL_0053E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_0053E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_1DL_0053E8[] = dMIZUsin_room_1DL_0053E8; -#else -static const char MIZUsin_room_1DL_0053E8[] __attribute__((aligned (2))) = dMIZUsin_room_1DL_0053E8; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_1DL_003D70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_003D70" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_003D70[] = dMIZUsin_room_1DL_003D70; + +#define dMIZUsin_room_1DL_005818 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_005818" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_005818[] = dMIZUsin_room_1DL_005818; + +#define dMIZUsin_room_1DL_004B18 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_004B18" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_004B18[] = dMIZUsin_room_1DL_004B18; + +#define dMIZUsin_room_1Tex_0089D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0089D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0089D0[] = dMIZUsin_room_1Tex_0089D0; + +#define dMIZUsin_room_1DL_003888 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_003888" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_003888[] = dMIZUsin_room_1DL_003888; + +#define dMIZUsin_room_1Tex_0069D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0069D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0069D0[] = dMIZUsin_room_1Tex_0069D0; + +#define dMIZUsin_room_1DL_0045D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_0045D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_0045D0[] = dMIZUsin_room_1DL_0045D0; + +#define dMIZUsin_room_1Tex_0071D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0071D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0071D0[] = dMIZUsin_room_1Tex_0071D0; + +#define dMIZUsin_room_1DL_003030 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_003030" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_003030[] = dMIZUsin_room_1DL_003030; + +#define dMIZUsin_room_1Tex_0079D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0079D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0079D0[] = dMIZUsin_room_1Tex_0079D0; + +#define dMIZUsin_room_1DL_002C40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_002C40" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_002C40[] = dMIZUsin_room_1DL_002C40; + +#define dMIZUsin_room_1Tex_0091D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0091D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0091D0[] = dMIZUsin_room_1Tex_0091D0; + +#define dMIZUsin_room_1DL_004DF8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_004DF8" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_004DF8[] = dMIZUsin_room_1DL_004DF8; + +#define dMIZUsin_room_1Tex_0059D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0059D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0059D0[] = dMIZUsin_room_1Tex_0059D0; + +#define dMIZUsin_room_1Tex_0061D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0061D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0061D0[] = dMIZUsin_room_1Tex_0061D0; + +#define dMIZUsin_room_1DL_005050 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_005050" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_005050[] = dMIZUsin_room_1DL_005050; + +#define dMIZUsin_room_1Tex_0099D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0099D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0099D0[] = dMIZUsin_room_1Tex_0099D0; + +#define dMIZUsin_room_1DL_001F20 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_001F20" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_001F20[] = dMIZUsin_room_1DL_001F20; + +#define dMIZUsin_room_1Tex_0081D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1Tex_0081D0" +static const ALIGN_ASSET(2) char MIZUsin_room_1Tex_0081D0[] = dMIZUsin_room_1Tex_0081D0; + +#define dMIZUsin_room_1DL_0028D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_0028D8" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_0028D8[] = dMIZUsin_room_1DL_0028D8; + +#define dMIZUsin_room_1DL_0053E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_1DL_0053E8" +static const ALIGN_ASSET(2) char MIZUsin_room_1DL_0053E8[] = dMIZUsin_room_1DL_0053E8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_10.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_10.h index 7d45e9518..eab10f111 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_10.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_10.h @@ -1,93 +1,42 @@ #pragma once -#define dMIZUsin_room_10DL_001B80 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_001B80" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10DL_001B80[] = dMIZUsin_room_10DL_001B80; -#else -static const char MIZUsin_room_10DL_001B80[] __attribute__((aligned (2))) = dMIZUsin_room_10DL_001B80; -#endif - -#define dMIZUsin_room_10DL_000FE0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_000FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10DL_000FE0[] = dMIZUsin_room_10DL_000FE0; -#else -static const char MIZUsin_room_10DL_000FE0[] __attribute__((aligned (2))) = dMIZUsin_room_10DL_000FE0; -#endif - -#define dMIZUsin_room_10Tex_004870 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_004870" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10Tex_004870[] = dMIZUsin_room_10Tex_004870; -#else -static const char MIZUsin_room_10Tex_004870[] __attribute__((aligned (2))) = dMIZUsin_room_10Tex_004870; -#endif - -#define dMIZUsin_room_10Tex_005870 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_005870" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10Tex_005870[] = dMIZUsin_room_10Tex_005870; -#else -static const char MIZUsin_room_10Tex_005870[] __attribute__((aligned (2))) = dMIZUsin_room_10Tex_005870; -#endif - -#define dMIZUsin_room_10Tex_005070 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_005070" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10Tex_005070[] = dMIZUsin_room_10Tex_005070; -#else -static const char MIZUsin_room_10Tex_005070[] __attribute__((aligned (2))) = dMIZUsin_room_10Tex_005070; -#endif - -#define dMIZUsin_room_10Tex_004070 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_004070" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10Tex_004070[] = dMIZUsin_room_10Tex_004070; -#else -static const char MIZUsin_room_10Tex_004070[] __attribute__((aligned (2))) = dMIZUsin_room_10Tex_004070; -#endif - -#define dMIZUsin_room_10DL_003298 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_003298" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10DL_003298[] = dMIZUsin_room_10DL_003298; -#else -static const char MIZUsin_room_10DL_003298[] __attribute__((aligned (2))) = dMIZUsin_room_10DL_003298; -#endif - -#define dMIZUsin_room_10Tex_003870 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_003870" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10Tex_003870[] = dMIZUsin_room_10Tex_003870; -#else -static const char MIZUsin_room_10Tex_003870[] __attribute__((aligned (2))) = dMIZUsin_room_10Tex_003870; -#endif - -#define dMIZUsin_room_10DL_001E60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_001E60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10DL_001E60[] = dMIZUsin_room_10DL_001E60; -#else -static const char MIZUsin_room_10DL_001E60[] __attribute__((aligned (2))) = dMIZUsin_room_10DL_001E60; -#endif - -#define dMIZUsin_room_10DL_0036D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_0036D8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10DL_0036D8[] = dMIZUsin_room_10DL_0036D8; -#else -static const char MIZUsin_room_10DL_0036D8[] __attribute__((aligned (2))) = dMIZUsin_room_10DL_0036D8; -#endif - -#define dMIZUsin_room_10DL_002708 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_002708" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10DL_002708[] = dMIZUsin_room_10DL_002708; -#else -static const char MIZUsin_room_10DL_002708[] __attribute__((aligned (2))) = dMIZUsin_room_10DL_002708; -#endif - -#define dMIZUsin_room_10DL_0021D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_0021D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10DL_0021D0[] = dMIZUsin_room_10DL_0021D0; -#else -static const char MIZUsin_room_10DL_0021D0[] __attribute__((aligned (2))) = dMIZUsin_room_10DL_0021D0; -#endif - -#define dMIZUsin_room_10DL_002FE0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_002FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_10DL_002FE0[] = dMIZUsin_room_10DL_002FE0; -#else -static const char MIZUsin_room_10DL_002FE0[] __attribute__((aligned (2))) = dMIZUsin_room_10DL_002FE0; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_10DL_001B80 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_001B80" +static const ALIGN_ASSET(2) char MIZUsin_room_10DL_001B80[] = dMIZUsin_room_10DL_001B80; + +#define dMIZUsin_room_10DL_000FE0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_000FE0" +static const ALIGN_ASSET(2) char MIZUsin_room_10DL_000FE0[] = dMIZUsin_room_10DL_000FE0; + +#define dMIZUsin_room_10Tex_004870 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_004870" +static const ALIGN_ASSET(2) char MIZUsin_room_10Tex_004870[] = dMIZUsin_room_10Tex_004870; + +#define dMIZUsin_room_10Tex_005870 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_005870" +static const ALIGN_ASSET(2) char MIZUsin_room_10Tex_005870[] = dMIZUsin_room_10Tex_005870; + +#define dMIZUsin_room_10Tex_005070 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_005070" +static const ALIGN_ASSET(2) char MIZUsin_room_10Tex_005070[] = dMIZUsin_room_10Tex_005070; + +#define dMIZUsin_room_10Tex_004070 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_004070" +static const ALIGN_ASSET(2) char MIZUsin_room_10Tex_004070[] = dMIZUsin_room_10Tex_004070; + +#define dMIZUsin_room_10DL_003298 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_003298" +static const ALIGN_ASSET(2) char MIZUsin_room_10DL_003298[] = dMIZUsin_room_10DL_003298; + +#define dMIZUsin_room_10Tex_003870 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10Tex_003870" +static const ALIGN_ASSET(2) char MIZUsin_room_10Tex_003870[] = dMIZUsin_room_10Tex_003870; + +#define dMIZUsin_room_10DL_001E60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_001E60" +static const ALIGN_ASSET(2) char MIZUsin_room_10DL_001E60[] = dMIZUsin_room_10DL_001E60; + +#define dMIZUsin_room_10DL_0036D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_0036D8" +static const ALIGN_ASSET(2) char MIZUsin_room_10DL_0036D8[] = dMIZUsin_room_10DL_0036D8; + +#define dMIZUsin_room_10DL_002708 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_002708" +static const ALIGN_ASSET(2) char MIZUsin_room_10DL_002708[] = dMIZUsin_room_10DL_002708; + +#define dMIZUsin_room_10DL_0021D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_0021D0" +static const ALIGN_ASSET(2) char MIZUsin_room_10DL_0021D0[] = dMIZUsin_room_10DL_0021D0; + +#define dMIZUsin_room_10DL_002FE0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_10DL_002FE0" +static const ALIGN_ASSET(2) char MIZUsin_room_10DL_002FE0[] = dMIZUsin_room_10DL_002FE0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_11.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_11.h index 689574b67..bbcc1f39f 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_11.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_11.h @@ -1,44 +1,21 @@ #pragma once -#define dMIZUsin_room_11DL_001580 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11DL_001580" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_11DL_001580[] = dMIZUsin_room_11DL_001580; -#else -static const char MIZUsin_room_11DL_001580[] __attribute__((aligned (2))) = dMIZUsin_room_11DL_001580; -#endif - -#define dMIZUsin_room_11Tex_003A20 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_003A20" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_11Tex_003A20[] = dMIZUsin_room_11Tex_003A20; -#else -static const char MIZUsin_room_11Tex_003A20[] __attribute__((aligned (2))) = dMIZUsin_room_11Tex_003A20; -#endif - -#define dMIZUsin_room_11Tex_004220 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_004220" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_11Tex_004220[] = dMIZUsin_room_11Tex_004220; -#else -static const char MIZUsin_room_11Tex_004220[] __attribute__((aligned (2))) = dMIZUsin_room_11Tex_004220; -#endif - -#define dMIZUsin_room_11Tex_002220 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_002220" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_11Tex_002220[] = dMIZUsin_room_11Tex_002220; -#else -static const char MIZUsin_room_11Tex_002220[] __attribute__((aligned (2))) = dMIZUsin_room_11Tex_002220; -#endif - -#define dMIZUsin_room_11Tex_002A20 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_002A20" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_11Tex_002A20[] = dMIZUsin_room_11Tex_002A20; -#else -static const char MIZUsin_room_11Tex_002A20[] __attribute__((aligned (2))) = dMIZUsin_room_11Tex_002A20; -#endif - -#define dMIZUsin_room_11Tex_003220 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_003220" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_11Tex_003220[] = dMIZUsin_room_11Tex_003220; -#else -static const char MIZUsin_room_11Tex_003220[] __attribute__((aligned (2))) = dMIZUsin_room_11Tex_003220; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_11DL_001580 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11DL_001580" +static const ALIGN_ASSET(2) char MIZUsin_room_11DL_001580[] = dMIZUsin_room_11DL_001580; + +#define dMIZUsin_room_11Tex_003A20 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_003A20" +static const ALIGN_ASSET(2) char MIZUsin_room_11Tex_003A20[] = dMIZUsin_room_11Tex_003A20; + +#define dMIZUsin_room_11Tex_004220 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_004220" +static const ALIGN_ASSET(2) char MIZUsin_room_11Tex_004220[] = dMIZUsin_room_11Tex_004220; + +#define dMIZUsin_room_11Tex_002220 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_002220" +static const ALIGN_ASSET(2) char MIZUsin_room_11Tex_002220[] = dMIZUsin_room_11Tex_002220; + +#define dMIZUsin_room_11Tex_002A20 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_002A20" +static const ALIGN_ASSET(2) char MIZUsin_room_11Tex_002A20[] = dMIZUsin_room_11Tex_002A20; + +#define dMIZUsin_room_11Tex_003220 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_11Tex_003220" +static const ALIGN_ASSET(2) char MIZUsin_room_11Tex_003220[] = dMIZUsin_room_11Tex_003220; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_12.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_12.h index d04ffaa42..acfbd6fa9 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_12.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_12.h @@ -1,100 +1,45 @@ #pragma once -#define dMIZUsin_room_12DL_0024F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_0024F0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_0024F0[] = dMIZUsin_room_12DL_0024F0; -#else -static const char MIZUsin_room_12DL_0024F0[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_0024F0; -#endif - -#define dMIZUsin_room_12DL_0035A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_0035A8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_0035A8[] = dMIZUsin_room_12DL_0035A8; -#else -static const char MIZUsin_room_12DL_0035A8[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_0035A8; -#endif - -#define dMIZUsin_room_12Tex_0051C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_0051C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12Tex_0051C8[] = dMIZUsin_room_12Tex_0051C8; -#else -static const char MIZUsin_room_12Tex_0051C8[] __attribute__((aligned (2))) = dMIZUsin_room_12Tex_0051C8; -#endif - -#define dMIZUsin_room_12DL_002D30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_002D30" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_002D30[] = dMIZUsin_room_12DL_002D30; -#else -static const char MIZUsin_room_12DL_002D30[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_002D30; -#endif - -#define dMIZUsin_room_12Tex_0039C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_0039C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12Tex_0039C8[] = dMIZUsin_room_12Tex_0039C8; -#else -static const char MIZUsin_room_12Tex_0039C8[] __attribute__((aligned (2))) = dMIZUsin_room_12Tex_0039C8; -#endif - -#define dMIZUsin_room_12DL_0061C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_0061C0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_0061C0[] = dMIZUsin_room_12DL_0061C0; -#else -static const char MIZUsin_room_12DL_0061C0[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_0061C0; -#endif - -#define dMIZUsin_room_12Tex_006628 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_006628" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12Tex_006628[] = dMIZUsin_room_12Tex_006628; -#else -static const char MIZUsin_room_12Tex_006628[] __attribute__((aligned (2))) = dMIZUsin_room_12Tex_006628; -#endif - -#define dMIZUsin_room_12DL_006518 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_006518" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_006518[] = dMIZUsin_room_12DL_006518; -#else -static const char MIZUsin_room_12DL_006518[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_006518; -#endif - -#define dMIZUsin_room_12DL_000DF0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_000DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_000DF0[] = dMIZUsin_room_12DL_000DF0; -#else -static const char MIZUsin_room_12DL_000DF0[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_000DF0; -#endif - -#define dMIZUsin_room_12Tex_0041C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_0041C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12Tex_0041C8[] = dMIZUsin_room_12Tex_0041C8; -#else -static const char MIZUsin_room_12Tex_0041C8[] __attribute__((aligned (2))) = dMIZUsin_room_12Tex_0041C8; -#endif - -#define dMIZUsin_room_12DL_002F68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_002F68" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_002F68[] = dMIZUsin_room_12DL_002F68; -#else -static const char MIZUsin_room_12DL_002F68[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_002F68; -#endif - -#define dMIZUsin_room_12Tex_0049C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_0049C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12Tex_0049C8[] = dMIZUsin_room_12Tex_0049C8; -#else -static const char MIZUsin_room_12Tex_0049C8[] __attribute__((aligned (2))) = dMIZUsin_room_12Tex_0049C8; -#endif - -#define dMIZUsin_room_12DL_000AC8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_000AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_000AC8[] = dMIZUsin_room_12DL_000AC8; -#else -static const char MIZUsin_room_12DL_000AC8[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_000AC8; -#endif - -#define dMIZUsin_room_12DL_000720 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_000720" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_12DL_000720[] = dMIZUsin_room_12DL_000720; -#else -static const char MIZUsin_room_12DL_000720[] __attribute__((aligned (2))) = dMIZUsin_room_12DL_000720; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_12DL_0024F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_0024F0" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_0024F0[] = dMIZUsin_room_12DL_0024F0; + +#define dMIZUsin_room_12DL_0035A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_0035A8" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_0035A8[] = dMIZUsin_room_12DL_0035A8; + +#define dMIZUsin_room_12Tex_0051C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_0051C8" +static const ALIGN_ASSET(2) char MIZUsin_room_12Tex_0051C8[] = dMIZUsin_room_12Tex_0051C8; + +#define dMIZUsin_room_12DL_002D30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_002D30" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_002D30[] = dMIZUsin_room_12DL_002D30; + +#define dMIZUsin_room_12Tex_0039C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_0039C8" +static const ALIGN_ASSET(2) char MIZUsin_room_12Tex_0039C8[] = dMIZUsin_room_12Tex_0039C8; + +#define dMIZUsin_room_12DL_0061C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_0061C0" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_0061C0[] = dMIZUsin_room_12DL_0061C0; + +#define dMIZUsin_room_12Tex_006628 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_006628" +static const ALIGN_ASSET(2) char MIZUsin_room_12Tex_006628[] = dMIZUsin_room_12Tex_006628; + +#define dMIZUsin_room_12DL_006518 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_006518" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_006518[] = dMIZUsin_room_12DL_006518; + +#define dMIZUsin_room_12DL_000DF0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_000DF0" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_000DF0[] = dMIZUsin_room_12DL_000DF0; + +#define dMIZUsin_room_12Tex_0041C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_0041C8" +static const ALIGN_ASSET(2) char MIZUsin_room_12Tex_0041C8[] = dMIZUsin_room_12Tex_0041C8; + +#define dMIZUsin_room_12DL_002F68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_002F68" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_002F68[] = dMIZUsin_room_12DL_002F68; + +#define dMIZUsin_room_12Tex_0049C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12Tex_0049C8" +static const ALIGN_ASSET(2) char MIZUsin_room_12Tex_0049C8[] = dMIZUsin_room_12Tex_0049C8; + +#define dMIZUsin_room_12DL_000AC8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_000AC8" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_000AC8[] = dMIZUsin_room_12DL_000AC8; + +#define dMIZUsin_room_12DL_000720 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_12DL_000720" +static const ALIGN_ASSET(2) char MIZUsin_room_12DL_000720[] = dMIZUsin_room_12DL_000720; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_13.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_13.h index 49d6a2822..60859fda0 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_13.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_13.h @@ -1,16 +1,9 @@ #pragma once -#define dMIZUsin_room_13DL_000130 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_13DL_000130" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_13DL_000130[] = dMIZUsin_room_13DL_000130; -#else -static const char MIZUsin_room_13DL_000130[] __attribute__((aligned (2))) = dMIZUsin_room_13DL_000130; -#endif - -#define dMIZUsin_room_13Tex_0001F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_13Tex_0001F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_13Tex_0001F8[] = dMIZUsin_room_13Tex_0001F8; -#else -static const char MIZUsin_room_13Tex_0001F8[] __attribute__((aligned (2))) = dMIZUsin_room_13Tex_0001F8; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_13DL_000130 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_13DL_000130" +static const ALIGN_ASSET(2) char MIZUsin_room_13DL_000130[] = dMIZUsin_room_13DL_000130; + +#define dMIZUsin_room_13Tex_0001F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_13Tex_0001F8" +static const ALIGN_ASSET(2) char MIZUsin_room_13Tex_0001F8[] = dMIZUsin_room_13Tex_0001F8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_14.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_14.h index 060624f1f..6e1b49e6e 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_14.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_14.h @@ -1,100 +1,45 @@ #pragma once -#define dMIZUsin_room_14DL_0009E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_0009E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14DL_0009E0[] = dMIZUsin_room_14DL_0009E0; -#else -static const char MIZUsin_room_14DL_0009E0[] __attribute__((aligned (2))) = dMIZUsin_room_14DL_0009E0; -#endif - -#define dMIZUsin_room_14DL_002548 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_002548" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14DL_002548[] = dMIZUsin_room_14DL_002548; -#else -static const char MIZUsin_room_14DL_002548[] __attribute__((aligned (2))) = dMIZUsin_room_14DL_002548; -#endif - -#define dMIZUsin_room_14Tex_006680 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_006680" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14Tex_006680[] = dMIZUsin_room_14Tex_006680; -#else -static const char MIZUsin_room_14Tex_006680[] __attribute__((aligned (2))) = dMIZUsin_room_14Tex_006680; -#endif - -#define dMIZUsin_room_14Tex_004E80 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_004E80" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14Tex_004E80[] = dMIZUsin_room_14Tex_004E80; -#else -static const char MIZUsin_room_14Tex_004E80[] __attribute__((aligned (2))) = dMIZUsin_room_14Tex_004E80; -#endif - -#define dMIZUsin_room_14Tex_005680 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14Tex_005680[] = dMIZUsin_room_14Tex_005680; -#else -static const char MIZUsin_room_14Tex_005680[] __attribute__((aligned (2))) = dMIZUsin_room_14Tex_005680; -#endif - -#define dMIZUsin_room_14Tex_004680 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_004680" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14Tex_004680[] = dMIZUsin_room_14Tex_004680; -#else -static const char MIZUsin_room_14Tex_004680[] __attribute__((aligned (2))) = dMIZUsin_room_14Tex_004680; -#endif - -#define dMIZUsin_room_14DL_000FB0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_000FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14DL_000FB0[] = dMIZUsin_room_14DL_000FB0; -#else -static const char MIZUsin_room_14DL_000FB0[] __attribute__((aligned (2))) = dMIZUsin_room_14DL_000FB0; -#endif - -#define dMIZUsin_room_14Tex_003E80 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_003E80" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14Tex_003E80[] = dMIZUsin_room_14Tex_003E80; -#else -static const char MIZUsin_room_14Tex_003E80[] __attribute__((aligned (2))) = dMIZUsin_room_14Tex_003E80; -#endif - -#define dMIZUsin_room_14DL_003520 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_003520" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14DL_003520[] = dMIZUsin_room_14DL_003520; -#else -static const char MIZUsin_room_14DL_003520[] __attribute__((aligned (2))) = dMIZUsin_room_14DL_003520; -#endif - -#define dMIZUsin_room_14Tex_005E80 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_005E80" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14Tex_005E80[] = dMIZUsin_room_14Tex_005E80; -#else -static const char MIZUsin_room_14Tex_005E80[] __attribute__((aligned (2))) = dMIZUsin_room_14Tex_005E80; -#endif - -#define dMIZUsin_room_14DL_000E38 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_000E38" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14DL_000E38[] = dMIZUsin_room_14DL_000E38; -#else -static const char MIZUsin_room_14DL_000E38[] __attribute__((aligned (2))) = dMIZUsin_room_14DL_000E38; -#endif - -#define dMIZUsin_room_14Tex_003680 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_003680" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14Tex_003680[] = dMIZUsin_room_14Tex_003680; -#else -static const char MIZUsin_room_14Tex_003680[] __attribute__((aligned (2))) = dMIZUsin_room_14Tex_003680; -#endif - -#define dMIZUsin_room_14DL_000C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_000C68" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14DL_000C68[] = dMIZUsin_room_14DL_000C68; -#else -static const char MIZUsin_room_14DL_000C68[] __attribute__((aligned (2))) = dMIZUsin_room_14DL_000C68; -#endif - -#define dMIZUsin_room_14DL_000450 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_000450" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_14DL_000450[] = dMIZUsin_room_14DL_000450; -#else -static const char MIZUsin_room_14DL_000450[] __attribute__((aligned (2))) = dMIZUsin_room_14DL_000450; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_14DL_0009E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_0009E0" +static const ALIGN_ASSET(2) char MIZUsin_room_14DL_0009E0[] = dMIZUsin_room_14DL_0009E0; + +#define dMIZUsin_room_14DL_002548 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_002548" +static const ALIGN_ASSET(2) char MIZUsin_room_14DL_002548[] = dMIZUsin_room_14DL_002548; + +#define dMIZUsin_room_14Tex_006680 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_006680" +static const ALIGN_ASSET(2) char MIZUsin_room_14Tex_006680[] = dMIZUsin_room_14Tex_006680; + +#define dMIZUsin_room_14Tex_004E80 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_004E80" +static const ALIGN_ASSET(2) char MIZUsin_room_14Tex_004E80[] = dMIZUsin_room_14Tex_004E80; + +#define dMIZUsin_room_14Tex_005680 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_005680" +static const ALIGN_ASSET(2) char MIZUsin_room_14Tex_005680[] = dMIZUsin_room_14Tex_005680; + +#define dMIZUsin_room_14Tex_004680 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_004680" +static const ALIGN_ASSET(2) char MIZUsin_room_14Tex_004680[] = dMIZUsin_room_14Tex_004680; + +#define dMIZUsin_room_14DL_000FB0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_000FB0" +static const ALIGN_ASSET(2) char MIZUsin_room_14DL_000FB0[] = dMIZUsin_room_14DL_000FB0; + +#define dMIZUsin_room_14Tex_003E80 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_003E80" +static const ALIGN_ASSET(2) char MIZUsin_room_14Tex_003E80[] = dMIZUsin_room_14Tex_003E80; + +#define dMIZUsin_room_14DL_003520 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_003520" +static const ALIGN_ASSET(2) char MIZUsin_room_14DL_003520[] = dMIZUsin_room_14DL_003520; + +#define dMIZUsin_room_14Tex_005E80 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_005E80" +static const ALIGN_ASSET(2) char MIZUsin_room_14Tex_005E80[] = dMIZUsin_room_14Tex_005E80; + +#define dMIZUsin_room_14DL_000E38 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_000E38" +static const ALIGN_ASSET(2) char MIZUsin_room_14DL_000E38[] = dMIZUsin_room_14DL_000E38; + +#define dMIZUsin_room_14Tex_003680 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14Tex_003680" +static const ALIGN_ASSET(2) char MIZUsin_room_14Tex_003680[] = dMIZUsin_room_14Tex_003680; + +#define dMIZUsin_room_14DL_000C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_000C68" +static const ALIGN_ASSET(2) char MIZUsin_room_14DL_000C68[] = dMIZUsin_room_14DL_000C68; + +#define dMIZUsin_room_14DL_000450 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_14DL_000450" +static const ALIGN_ASSET(2) char MIZUsin_room_14DL_000450[] = dMIZUsin_room_14DL_000450; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_15.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_15.h index 01c1bad77..2242833f1 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_15.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_15.h @@ -1,79 +1,36 @@ #pragma once -#define dMIZUsin_room_15DL_001990 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15DL_001990" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15DL_001990[] = dMIZUsin_room_15DL_001990; -#else -static const char MIZUsin_room_15DL_001990[] __attribute__((aligned (2))) = dMIZUsin_room_15DL_001990; -#endif - -#define dMIZUsin_room_15Tex_006C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_006C68" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_006C68[] = dMIZUsin_room_15Tex_006C68; -#else -static const char MIZUsin_room_15Tex_006C68[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_006C68; -#endif - -#define dMIZUsin_room_15Tex_006468 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_006468" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_006468[] = dMIZUsin_room_15Tex_006468; -#else -static const char MIZUsin_room_15Tex_006468[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_006468; -#endif - -#define dMIZUsin_room_15Tex_004468 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_004468" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_004468[] = dMIZUsin_room_15Tex_004468; -#else -static const char MIZUsin_room_15Tex_004468[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_004468; -#endif - -#define dMIZUsin_room_15Tex_003468 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_003468" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_003468[] = dMIZUsin_room_15Tex_003468; -#else -static const char MIZUsin_room_15Tex_003468[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_003468; -#endif - -#define dMIZUsin_room_15Tex_005468 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_005468" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_005468[] = dMIZUsin_room_15Tex_005468; -#else -static const char MIZUsin_room_15Tex_005468[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_005468; -#endif - -#define dMIZUsin_room_15Tex_005C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_005C68" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_005C68[] = dMIZUsin_room_15Tex_005C68; -#else -static const char MIZUsin_room_15Tex_005C68[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_005C68; -#endif - -#define dMIZUsin_room_15Tex_004C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_004C68" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_004C68[] = dMIZUsin_room_15Tex_004C68; -#else -static const char MIZUsin_room_15Tex_004C68[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_004C68; -#endif - -#define dMIZUsin_room_15Tex_003C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_003C68" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_003C68[] = dMIZUsin_room_15Tex_003C68; -#else -static const char MIZUsin_room_15Tex_003C68[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_003C68; -#endif - -#define dMIZUsin_room_15DL_002B98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15DL_002B98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15DL_002B98[] = dMIZUsin_room_15DL_002B98; -#else -static const char MIZUsin_room_15DL_002B98[] __attribute__((aligned (2))) = dMIZUsin_room_15DL_002B98; -#endif - -#define dMIZUsin_room_15Tex_002C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_002C68" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_15Tex_002C68[] = dMIZUsin_room_15Tex_002C68; -#else -static const char MIZUsin_room_15Tex_002C68[] __attribute__((aligned (2))) = dMIZUsin_room_15Tex_002C68; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_15DL_001990 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15DL_001990" +static const ALIGN_ASSET(2) char MIZUsin_room_15DL_001990[] = dMIZUsin_room_15DL_001990; + +#define dMIZUsin_room_15Tex_006C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_006C68" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_006C68[] = dMIZUsin_room_15Tex_006C68; + +#define dMIZUsin_room_15Tex_006468 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_006468" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_006468[] = dMIZUsin_room_15Tex_006468; + +#define dMIZUsin_room_15Tex_004468 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_004468" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_004468[] = dMIZUsin_room_15Tex_004468; + +#define dMIZUsin_room_15Tex_003468 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_003468" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_003468[] = dMIZUsin_room_15Tex_003468; + +#define dMIZUsin_room_15Tex_005468 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_005468" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_005468[] = dMIZUsin_room_15Tex_005468; + +#define dMIZUsin_room_15Tex_005C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_005C68" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_005C68[] = dMIZUsin_room_15Tex_005C68; + +#define dMIZUsin_room_15Tex_004C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_004C68" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_004C68[] = dMIZUsin_room_15Tex_004C68; + +#define dMIZUsin_room_15Tex_003C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_003C68" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_003C68[] = dMIZUsin_room_15Tex_003C68; + +#define dMIZUsin_room_15DL_002B98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15DL_002B98" +static const ALIGN_ASSET(2) char MIZUsin_room_15DL_002B98[] = dMIZUsin_room_15DL_002B98; + +#define dMIZUsin_room_15Tex_002C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_15Tex_002C68" +static const ALIGN_ASSET(2) char MIZUsin_room_15Tex_002C68[] = dMIZUsin_room_15Tex_002C68; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_16.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_16.h index f25959f71..7054c91d8 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_16.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_16.h @@ -1,44 +1,21 @@ #pragma once -#define dMIZUsin_room_16DL_000D50 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16DL_000D50" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_16DL_000D50[] = dMIZUsin_room_16DL_000D50; -#else -static const char MIZUsin_room_16DL_000D50[] __attribute__((aligned (2))) = dMIZUsin_room_16DL_000D50; -#endif - -#define dMIZUsin_room_16Tex_002330 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_002330" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_16Tex_002330[] = dMIZUsin_room_16Tex_002330; -#else -static const char MIZUsin_room_16Tex_002330[] __attribute__((aligned (2))) = dMIZUsin_room_16Tex_002330; -#endif - -#define dMIZUsin_room_16Tex_001330 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_001330" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_16Tex_001330[] = dMIZUsin_room_16Tex_001330; -#else -static const char MIZUsin_room_16Tex_001330[] __attribute__((aligned (2))) = dMIZUsin_room_16Tex_001330; -#endif - -#define dMIZUsin_room_16Tex_001B30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_001B30" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_16Tex_001B30[] = dMIZUsin_room_16Tex_001B30; -#else -static const char MIZUsin_room_16Tex_001B30[] __attribute__((aligned (2))) = dMIZUsin_room_16Tex_001B30; -#endif - -#define dMIZUsin_room_16Tex_003330 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_003330" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_16Tex_003330[] = dMIZUsin_room_16Tex_003330; -#else -static const char MIZUsin_room_16Tex_003330[] __attribute__((aligned (2))) = dMIZUsin_room_16Tex_003330; -#endif - -#define dMIZUsin_room_16Tex_002B30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_002B30" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_16Tex_002B30[] = dMIZUsin_room_16Tex_002B30; -#else -static const char MIZUsin_room_16Tex_002B30[] __attribute__((aligned (2))) = dMIZUsin_room_16Tex_002B30; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_16DL_000D50 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16DL_000D50" +static const ALIGN_ASSET(2) char MIZUsin_room_16DL_000D50[] = dMIZUsin_room_16DL_000D50; + +#define dMIZUsin_room_16Tex_002330 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_002330" +static const ALIGN_ASSET(2) char MIZUsin_room_16Tex_002330[] = dMIZUsin_room_16Tex_002330; + +#define dMIZUsin_room_16Tex_001330 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_001330" +static const ALIGN_ASSET(2) char MIZUsin_room_16Tex_001330[] = dMIZUsin_room_16Tex_001330; + +#define dMIZUsin_room_16Tex_001B30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_001B30" +static const ALIGN_ASSET(2) char MIZUsin_room_16Tex_001B30[] = dMIZUsin_room_16Tex_001B30; + +#define dMIZUsin_room_16Tex_003330 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_003330" +static const ALIGN_ASSET(2) char MIZUsin_room_16Tex_003330[] = dMIZUsin_room_16Tex_003330; + +#define dMIZUsin_room_16Tex_002B30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_16Tex_002B30" +static const ALIGN_ASSET(2) char MIZUsin_room_16Tex_002B30[] = dMIZUsin_room_16Tex_002B30; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_17.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_17.h index 74d1bdc56..d231ac6eb 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_17.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_17.h @@ -1,156 +1,69 @@ #pragma once -#define dMIZUsin_room_17DL_003458 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_003458" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_003458[] = dMIZUsin_room_17DL_003458; -#else -static const char MIZUsin_room_17DL_003458[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_003458; -#endif - -#define dMIZUsin_room_17DL_0041C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0041C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_0041C8[] = dMIZUsin_room_17DL_0041C8; -#else -static const char MIZUsin_room_17DL_0041C8[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_0041C8; -#endif - -#define dMIZUsin_room_17DL_001010 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_001010" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_001010[] = dMIZUsin_room_17DL_001010; -#else -static const char MIZUsin_room_17DL_001010[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_001010; -#endif - -#define dMIZUsin_room_17Tex_006AA8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_006AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17Tex_006AA8[] = dMIZUsin_room_17Tex_006AA8; -#else -static const char MIZUsin_room_17Tex_006AA8[] __attribute__((aligned (2))) = dMIZUsin_room_17Tex_006AA8; -#endif - -#define dMIZUsin_room_17Tex_007AA8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_007AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17Tex_007AA8[] = dMIZUsin_room_17Tex_007AA8; -#else -static const char MIZUsin_room_17Tex_007AA8[] __attribute__((aligned (2))) = dMIZUsin_room_17Tex_007AA8; -#endif - -#define dMIZUsin_room_17Tex_0072A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_0072A8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17Tex_0072A8[] = dMIZUsin_room_17Tex_0072A8; -#else -static const char MIZUsin_room_17Tex_0072A8[] __attribute__((aligned (2))) = dMIZUsin_room_17Tex_0072A8; -#endif - -#define dMIZUsin_room_17Tex_0082A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_0082A8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17Tex_0082A8[] = dMIZUsin_room_17Tex_0082A8; -#else -static const char MIZUsin_room_17Tex_0082A8[] __attribute__((aligned (2))) = dMIZUsin_room_17Tex_0082A8; -#endif - -#define dMIZUsin_room_17DL_005928 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_005928" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_005928[] = dMIZUsin_room_17DL_005928; -#else -static const char MIZUsin_room_17DL_005928[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_005928; -#endif - -#define dMIZUsin_room_17DL_0056E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0056E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_0056E8[] = dMIZUsin_room_17DL_0056E8; -#else -static const char MIZUsin_room_17DL_0056E8[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_0056E8; -#endif - -#define dMIZUsin_room_17Tex_005AA8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_005AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17Tex_005AA8[] = dMIZUsin_room_17Tex_005AA8; -#else -static const char MIZUsin_room_17Tex_005AA8[] __attribute__((aligned (2))) = dMIZUsin_room_17Tex_005AA8; -#endif - -#define dMIZUsin_room_17DL_0016E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0016E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_0016E0[] = dMIZUsin_room_17DL_0016E0; -#else -static const char MIZUsin_room_17DL_0016E0[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_0016E0; -#endif - -#define dMIZUsin_room_17Tex_0062A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_0062A8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17Tex_0062A8[] = dMIZUsin_room_17Tex_0062A8; -#else -static const char MIZUsin_room_17Tex_0062A8[] __attribute__((aligned (2))) = dMIZUsin_room_17Tex_0062A8; -#endif - -#define dMIZUsin_room_17DL_001910 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_001910" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_001910[] = dMIZUsin_room_17DL_001910; -#else -static const char MIZUsin_room_17DL_001910[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_001910; -#endif - -#define dMIZUsin_room_17DL_003B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_003B00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_003B00[] = dMIZUsin_room_17DL_003B00; -#else -static const char MIZUsin_room_17DL_003B00[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_003B00; -#endif - -#define dMIZUsin_room_17DL_002C70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_002C70" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_002C70[] = dMIZUsin_room_17DL_002C70; -#else -static const char MIZUsin_room_17DL_002C70[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_002C70; -#endif - -#define dMIZUsin_room_17DL_0038C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0038C0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_0038C0[] = dMIZUsin_room_17DL_0038C0; -#else -static const char MIZUsin_room_17DL_0038C0[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_0038C0; -#endif - -#define dMIZUsin_room_17DL_0025F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0025F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_0025F8[] = dMIZUsin_room_17DL_0025F8; -#else -static const char MIZUsin_room_17DL_0025F8[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_0025F8; -#endif - -#define dMIZUsin_room_17DL_005118 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_005118" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_005118[] = dMIZUsin_room_17DL_005118; -#else -static const char MIZUsin_room_17DL_005118[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_005118; -#endif - -#define dMIZUsin_room_17DL_002910 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_002910" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_002910[] = dMIZUsin_room_17DL_002910; -#else -static const char MIZUsin_room_17DL_002910[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_002910; -#endif - -#define dMIZUsin_room_17DL_0054E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0054E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_0054E0[] = dMIZUsin_room_17DL_0054E0; -#else -static const char MIZUsin_room_17DL_0054E0[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_0054E0; -#endif - -#define dMIZUsin_room_17DL_0020B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0020B8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_0020B8[] = dMIZUsin_room_17DL_0020B8; -#else -static const char MIZUsin_room_17DL_0020B8[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_0020B8; -#endif - -#define dMIZUsin_room_17DL_004B30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_004B30" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_17DL_004B30[] = dMIZUsin_room_17DL_004B30; -#else -static const char MIZUsin_room_17DL_004B30[] __attribute__((aligned (2))) = dMIZUsin_room_17DL_004B30; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_17DL_003458 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_003458" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_003458[] = dMIZUsin_room_17DL_003458; + +#define dMIZUsin_room_17DL_0041C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0041C8" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_0041C8[] = dMIZUsin_room_17DL_0041C8; + +#define dMIZUsin_room_17DL_001010 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_001010" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_001010[] = dMIZUsin_room_17DL_001010; + +#define dMIZUsin_room_17Tex_006AA8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_006AA8" +static const ALIGN_ASSET(2) char MIZUsin_room_17Tex_006AA8[] = dMIZUsin_room_17Tex_006AA8; + +#define dMIZUsin_room_17Tex_007AA8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_007AA8" +static const ALIGN_ASSET(2) char MIZUsin_room_17Tex_007AA8[] = dMIZUsin_room_17Tex_007AA8; + +#define dMIZUsin_room_17Tex_0072A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_0072A8" +static const ALIGN_ASSET(2) char MIZUsin_room_17Tex_0072A8[] = dMIZUsin_room_17Tex_0072A8; + +#define dMIZUsin_room_17Tex_0082A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_0082A8" +static const ALIGN_ASSET(2) char MIZUsin_room_17Tex_0082A8[] = dMIZUsin_room_17Tex_0082A8; + +#define dMIZUsin_room_17DL_005928 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_005928" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_005928[] = dMIZUsin_room_17DL_005928; + +#define dMIZUsin_room_17DL_0056E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0056E8" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_0056E8[] = dMIZUsin_room_17DL_0056E8; + +#define dMIZUsin_room_17Tex_005AA8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_005AA8" +static const ALIGN_ASSET(2) char MIZUsin_room_17Tex_005AA8[] = dMIZUsin_room_17Tex_005AA8; + +#define dMIZUsin_room_17DL_0016E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0016E0" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_0016E0[] = dMIZUsin_room_17DL_0016E0; + +#define dMIZUsin_room_17Tex_0062A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17Tex_0062A8" +static const ALIGN_ASSET(2) char MIZUsin_room_17Tex_0062A8[] = dMIZUsin_room_17Tex_0062A8; + +#define dMIZUsin_room_17DL_001910 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_001910" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_001910[] = dMIZUsin_room_17DL_001910; + +#define dMIZUsin_room_17DL_003B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_003B00" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_003B00[] = dMIZUsin_room_17DL_003B00; + +#define dMIZUsin_room_17DL_002C70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_002C70" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_002C70[] = dMIZUsin_room_17DL_002C70; + +#define dMIZUsin_room_17DL_0038C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0038C0" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_0038C0[] = dMIZUsin_room_17DL_0038C0; + +#define dMIZUsin_room_17DL_0025F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0025F8" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_0025F8[] = dMIZUsin_room_17DL_0025F8; + +#define dMIZUsin_room_17DL_005118 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_005118" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_005118[] = dMIZUsin_room_17DL_005118; + +#define dMIZUsin_room_17DL_002910 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_002910" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_002910[] = dMIZUsin_room_17DL_002910; + +#define dMIZUsin_room_17DL_0054E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0054E0" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_0054E0[] = dMIZUsin_room_17DL_0054E0; + +#define dMIZUsin_room_17DL_0020B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_0020B8" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_0020B8[] = dMIZUsin_room_17DL_0020B8; + +#define dMIZUsin_room_17DL_004B30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_17DL_004B30" +static const ALIGN_ASSET(2) char MIZUsin_room_17DL_004B30[] = dMIZUsin_room_17DL_004B30; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_18.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_18.h index 72975ba99..b481021ef 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_18.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_18.h @@ -1,86 +1,39 @@ #pragma once -#define dMIZUsin_room_18DL_0006B0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_0006B0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18DL_0006B0[] = dMIZUsin_room_18DL_0006B0; -#else -static const char MIZUsin_room_18DL_0006B0[] __attribute__((aligned (2))) = dMIZUsin_room_18DL_0006B0; -#endif - -#define dMIZUsin_room_18DL_000240 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_000240" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18DL_000240[] = dMIZUsin_room_18DL_000240; -#else -static const char MIZUsin_room_18DL_000240[] __attribute__((aligned (2))) = dMIZUsin_room_18DL_000240; -#endif - -#define dMIZUsin_room_18Tex_0018F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0018F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18Tex_0018F8[] = dMIZUsin_room_18Tex_0018F8; -#else -static const char MIZUsin_room_18Tex_0018F8[] __attribute__((aligned (2))) = dMIZUsin_room_18Tex_0018F8; -#endif - -#define dMIZUsin_room_18DL_0008F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_0008F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18DL_0008F8[] = dMIZUsin_room_18DL_0008F8; -#else -static const char MIZUsin_room_18DL_0008F8[] __attribute__((aligned (2))) = dMIZUsin_room_18DL_0008F8; -#endif - -#define dMIZUsin_room_18Tex_0020F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0020F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18Tex_0020F8[] = dMIZUsin_room_18Tex_0020F8; -#else -static const char MIZUsin_room_18Tex_0020F8[] __attribute__((aligned (2))) = dMIZUsin_room_18Tex_0020F8; -#endif - -#define dMIZUsin_room_18DL_000B38 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_000B38" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18DL_000B38[] = dMIZUsin_room_18DL_000B38; -#else -static const char MIZUsin_room_18DL_000B38[] __attribute__((aligned (2))) = dMIZUsin_room_18DL_000B38; -#endif - -#define dMIZUsin_room_18DL_0011A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_0011A0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18DL_0011A0[] = dMIZUsin_room_18DL_0011A0; -#else -static const char MIZUsin_room_18DL_0011A0[] __attribute__((aligned (2))) = dMIZUsin_room_18DL_0011A0; -#endif - -#define dMIZUsin_room_18Tex_0030F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0030F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18Tex_0030F8[] = dMIZUsin_room_18Tex_0030F8; -#else -static const char MIZUsin_room_18Tex_0030F8[] __attribute__((aligned (2))) = dMIZUsin_room_18Tex_0030F8; -#endif - -#define dMIZUsin_room_18DL_000E00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_000E00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18DL_000E00[] = dMIZUsin_room_18DL_000E00; -#else -static const char MIZUsin_room_18DL_000E00[] __attribute__((aligned (2))) = dMIZUsin_room_18DL_000E00; -#endif - -#define dMIZUsin_room_18Tex_0028F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0028F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18Tex_0028F8[] = dMIZUsin_room_18Tex_0028F8; -#else -static const char MIZUsin_room_18Tex_0028F8[] __attribute__((aligned (2))) = dMIZUsin_room_18Tex_0028F8; -#endif - -#define dMIZUsin_room_18DL_001740 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_001740" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18DL_001740[] = dMIZUsin_room_18DL_001740; -#else -static const char MIZUsin_room_18DL_001740[] __attribute__((aligned (2))) = dMIZUsin_room_18DL_001740; -#endif - -#define dMIZUsin_room_18Tex_0038F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0038F8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_18Tex_0038F8[] = dMIZUsin_room_18Tex_0038F8; -#else -static const char MIZUsin_room_18Tex_0038F8[] __attribute__((aligned (2))) = dMIZUsin_room_18Tex_0038F8; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_18DL_0006B0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_0006B0" +static const ALIGN_ASSET(2) char MIZUsin_room_18DL_0006B0[] = dMIZUsin_room_18DL_0006B0; + +#define dMIZUsin_room_18DL_000240 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_000240" +static const ALIGN_ASSET(2) char MIZUsin_room_18DL_000240[] = dMIZUsin_room_18DL_000240; + +#define dMIZUsin_room_18Tex_0018F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0018F8" +static const ALIGN_ASSET(2) char MIZUsin_room_18Tex_0018F8[] = dMIZUsin_room_18Tex_0018F8; + +#define dMIZUsin_room_18DL_0008F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_0008F8" +static const ALIGN_ASSET(2) char MIZUsin_room_18DL_0008F8[] = dMIZUsin_room_18DL_0008F8; + +#define dMIZUsin_room_18Tex_0020F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0020F8" +static const ALIGN_ASSET(2) char MIZUsin_room_18Tex_0020F8[] = dMIZUsin_room_18Tex_0020F8; + +#define dMIZUsin_room_18DL_000B38 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_000B38" +static const ALIGN_ASSET(2) char MIZUsin_room_18DL_000B38[] = dMIZUsin_room_18DL_000B38; + +#define dMIZUsin_room_18DL_0011A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_0011A0" +static const ALIGN_ASSET(2) char MIZUsin_room_18DL_0011A0[] = dMIZUsin_room_18DL_0011A0; + +#define dMIZUsin_room_18Tex_0030F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0030F8" +static const ALIGN_ASSET(2) char MIZUsin_room_18Tex_0030F8[] = dMIZUsin_room_18Tex_0030F8; + +#define dMIZUsin_room_18DL_000E00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_000E00" +static const ALIGN_ASSET(2) char MIZUsin_room_18DL_000E00[] = dMIZUsin_room_18DL_000E00; + +#define dMIZUsin_room_18Tex_0028F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0028F8" +static const ALIGN_ASSET(2) char MIZUsin_room_18Tex_0028F8[] = dMIZUsin_room_18Tex_0028F8; + +#define dMIZUsin_room_18DL_001740 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18DL_001740" +static const ALIGN_ASSET(2) char MIZUsin_room_18DL_001740[] = dMIZUsin_room_18DL_001740; + +#define dMIZUsin_room_18Tex_0038F8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_18Tex_0038F8" +static const ALIGN_ASSET(2) char MIZUsin_room_18Tex_0038F8[] = dMIZUsin_room_18Tex_0038F8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_19.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_19.h index 9a553c52a..920a606e1 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_19.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_19.h @@ -1,44 +1,21 @@ #pragma once -#define dMIZUsin_room_19DL_000D00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19DL_000D00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_19DL_000D00[] = dMIZUsin_room_19DL_000D00; -#else -static const char MIZUsin_room_19DL_000D00[] __attribute__((aligned (2))) = dMIZUsin_room_19DL_000D00; -#endif - -#define dMIZUsin_room_19Tex_001130 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_001130" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_19Tex_001130[] = dMIZUsin_room_19Tex_001130; -#else -static const char MIZUsin_room_19Tex_001130[] __attribute__((aligned (2))) = dMIZUsin_room_19Tex_001130; -#endif - -#define dMIZUsin_room_19Tex_001930 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_001930" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_19Tex_001930[] = dMIZUsin_room_19Tex_001930; -#else -static const char MIZUsin_room_19Tex_001930[] __attribute__((aligned (2))) = dMIZUsin_room_19Tex_001930; -#endif - -#define dMIZUsin_room_19Tex_002130 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_002130" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_19Tex_002130[] = dMIZUsin_room_19Tex_002130; -#else -static const char MIZUsin_room_19Tex_002130[] __attribute__((aligned (2))) = dMIZUsin_room_19Tex_002130; -#endif - -#define dMIZUsin_room_19Tex_002930 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_002930" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_19Tex_002930[] = dMIZUsin_room_19Tex_002930; -#else -static const char MIZUsin_room_19Tex_002930[] __attribute__((aligned (2))) = dMIZUsin_room_19Tex_002930; -#endif - -#define dMIZUsin_room_19Tex_003130 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_003130" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_19Tex_003130[] = dMIZUsin_room_19Tex_003130; -#else -static const char MIZUsin_room_19Tex_003130[] __attribute__((aligned (2))) = dMIZUsin_room_19Tex_003130; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_19DL_000D00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19DL_000D00" +static const ALIGN_ASSET(2) char MIZUsin_room_19DL_000D00[] = dMIZUsin_room_19DL_000D00; + +#define dMIZUsin_room_19Tex_001130 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_001130" +static const ALIGN_ASSET(2) char MIZUsin_room_19Tex_001130[] = dMIZUsin_room_19Tex_001130; + +#define dMIZUsin_room_19Tex_001930 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_001930" +static const ALIGN_ASSET(2) char MIZUsin_room_19Tex_001930[] = dMIZUsin_room_19Tex_001930; + +#define dMIZUsin_room_19Tex_002130 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_002130" +static const ALIGN_ASSET(2) char MIZUsin_room_19Tex_002130[] = dMIZUsin_room_19Tex_002130; + +#define dMIZUsin_room_19Tex_002930 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_002930" +static const ALIGN_ASSET(2) char MIZUsin_room_19Tex_002930[] = dMIZUsin_room_19Tex_002930; + +#define dMIZUsin_room_19Tex_003130 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_19Tex_003130" +static const ALIGN_ASSET(2) char MIZUsin_room_19Tex_003130[] = dMIZUsin_room_19Tex_003130; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_2.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_2.h index e5978931c..4d103a9d8 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_2.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_2.h @@ -1,79 +1,36 @@ #pragma once -#define dMIZUsin_room_2DL_0028A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_0028A0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2DL_0028A0[] = dMIZUsin_room_2DL_0028A0; -#else -static const char MIZUsin_room_2DL_0028A0[] __attribute__((aligned (2))) = dMIZUsin_room_2DL_0028A0; -#endif - -#define dMIZUsin_room_2DL_001428 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_001428" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2DL_001428[] = dMIZUsin_room_2DL_001428; -#else -static const char MIZUsin_room_2DL_001428[] __attribute__((aligned (2))) = dMIZUsin_room_2DL_001428; -#endif - -#define dMIZUsin_room_2Tex_004AB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_004AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2Tex_004AB8[] = dMIZUsin_room_2Tex_004AB8; -#else -static const char MIZUsin_room_2Tex_004AB8[] __attribute__((aligned (2))) = dMIZUsin_room_2Tex_004AB8; -#endif - -#define dMIZUsin_room_2Tex_003AB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_003AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2Tex_003AB8[] = dMIZUsin_room_2Tex_003AB8; -#else -static const char MIZUsin_room_2Tex_003AB8[] __attribute__((aligned (2))) = dMIZUsin_room_2Tex_003AB8; -#endif - -#define dMIZUsin_room_2Tex_002AB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_002AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2Tex_002AB8[] = dMIZUsin_room_2Tex_002AB8; -#else -static const char MIZUsin_room_2Tex_002AB8[] __attribute__((aligned (2))) = dMIZUsin_room_2Tex_002AB8; -#endif - -#define dMIZUsin_room_2Tex_0042B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_0042B8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2Tex_0042B8[] = dMIZUsin_room_2Tex_0042B8; -#else -static const char MIZUsin_room_2Tex_0042B8[] __attribute__((aligned (2))) = dMIZUsin_room_2Tex_0042B8; -#endif - -#define dMIZUsin_room_2Tex_0032B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_0032B8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2Tex_0032B8[] = dMIZUsin_room_2Tex_0032B8; -#else -static const char MIZUsin_room_2Tex_0032B8[] __attribute__((aligned (2))) = dMIZUsin_room_2Tex_0032B8; -#endif - -#define dMIZUsin_room_2DL_005380 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_005380" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2DL_005380[] = dMIZUsin_room_2DL_005380; -#else -static const char MIZUsin_room_2DL_005380[] __attribute__((aligned (2))) = dMIZUsin_room_2DL_005380; -#endif - -#define dMIZUsin_room_2Tex_005488 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_005488" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2Tex_005488[] = dMIZUsin_room_2Tex_005488; -#else -static const char MIZUsin_room_2Tex_005488[] __attribute__((aligned (2))) = dMIZUsin_room_2Tex_005488; -#endif - -#define dMIZUsin_room_2DL_0004E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_0004E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2DL_0004E0[] = dMIZUsin_room_2DL_0004E0; -#else -static const char MIZUsin_room_2DL_0004E0[] __attribute__((aligned (2))) = dMIZUsin_room_2DL_0004E0; -#endif - -#define dMIZUsin_room_2DL_002000 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_002000" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_2DL_002000[] = dMIZUsin_room_2DL_002000; -#else -static const char MIZUsin_room_2DL_002000[] __attribute__((aligned (2))) = dMIZUsin_room_2DL_002000; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_2DL_0028A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_0028A0" +static const ALIGN_ASSET(2) char MIZUsin_room_2DL_0028A0[] = dMIZUsin_room_2DL_0028A0; + +#define dMIZUsin_room_2DL_001428 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_001428" +static const ALIGN_ASSET(2) char MIZUsin_room_2DL_001428[] = dMIZUsin_room_2DL_001428; + +#define dMIZUsin_room_2Tex_004AB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_004AB8" +static const ALIGN_ASSET(2) char MIZUsin_room_2Tex_004AB8[] = dMIZUsin_room_2Tex_004AB8; + +#define dMIZUsin_room_2Tex_003AB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_003AB8" +static const ALIGN_ASSET(2) char MIZUsin_room_2Tex_003AB8[] = dMIZUsin_room_2Tex_003AB8; + +#define dMIZUsin_room_2Tex_002AB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_002AB8" +static const ALIGN_ASSET(2) char MIZUsin_room_2Tex_002AB8[] = dMIZUsin_room_2Tex_002AB8; + +#define dMIZUsin_room_2Tex_0042B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_0042B8" +static const ALIGN_ASSET(2) char MIZUsin_room_2Tex_0042B8[] = dMIZUsin_room_2Tex_0042B8; + +#define dMIZUsin_room_2Tex_0032B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_0032B8" +static const ALIGN_ASSET(2) char MIZUsin_room_2Tex_0032B8[] = dMIZUsin_room_2Tex_0032B8; + +#define dMIZUsin_room_2DL_005380 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_005380" +static const ALIGN_ASSET(2) char MIZUsin_room_2DL_005380[] = dMIZUsin_room_2DL_005380; + +#define dMIZUsin_room_2Tex_005488 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2Tex_005488" +static const ALIGN_ASSET(2) char MIZUsin_room_2Tex_005488[] = dMIZUsin_room_2Tex_005488; + +#define dMIZUsin_room_2DL_0004E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_0004E0" +static const ALIGN_ASSET(2) char MIZUsin_room_2DL_0004E0[] = dMIZUsin_room_2DL_0004E0; + +#define dMIZUsin_room_2DL_002000 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_2DL_002000" +static const ALIGN_ASSET(2) char MIZUsin_room_2DL_002000[] = dMIZUsin_room_2DL_002000; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_20.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_20.h index 8f4e3d86c..962988775 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_20.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_20.h @@ -1,121 +1,54 @@ #pragma once -#define dMIZUsin_room_20DL_0018B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_0018B8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_0018B8[] = dMIZUsin_room_20DL_0018B8; -#else -static const char MIZUsin_room_20DL_0018B8[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_0018B8; -#endif - -#define dMIZUsin_room_20DL_0006E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_0006E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_0006E0[] = dMIZUsin_room_20DL_0006E0; -#else -static const char MIZUsin_room_20DL_0006E0[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_0006E0; -#endif - -#define dMIZUsin_room_20Tex_004840 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_004840" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20Tex_004840[] = dMIZUsin_room_20Tex_004840; -#else -static const char MIZUsin_room_20Tex_004840[] __attribute__((aligned (2))) = dMIZUsin_room_20Tex_004840; -#endif - -#define dMIZUsin_room_20DL_002ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_002ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_002ED8[] = dMIZUsin_room_20DL_002ED8; -#else -static const char MIZUsin_room_20DL_002ED8[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_002ED8; -#endif - -#define dMIZUsin_room_20Tex_004040 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_004040" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20Tex_004040[] = dMIZUsin_room_20Tex_004040; -#else -static const char MIZUsin_room_20Tex_004040[] __attribute__((aligned (2))) = dMIZUsin_room_20Tex_004040; -#endif - -#define dMIZUsin_room_20DL_002B30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_002B30" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_002B30[] = dMIZUsin_room_20DL_002B30; -#else -static const char MIZUsin_room_20DL_002B30[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_002B30; -#endif - -#define dMIZUsin_room_20Tex_003840 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_003840" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20Tex_003840[] = dMIZUsin_room_20Tex_003840; -#else -static const char MIZUsin_room_20Tex_003840[] __attribute__((aligned (2))) = dMIZUsin_room_20Tex_003840; -#endif - -#define dMIZUsin_room_20DL_000BA0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_000BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_000BA0[] = dMIZUsin_room_20DL_000BA0; -#else -static const char MIZUsin_room_20DL_000BA0[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_000BA0; -#endif - -#define dMIZUsin_room_20DL_002980 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_002980" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_002980[] = dMIZUsin_room_20DL_002980; -#else -static const char MIZUsin_room_20DL_002980[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_002980; -#endif - -#define dMIZUsin_room_20DL_0026D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_0026D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_0026D0[] = dMIZUsin_room_20DL_0026D0; -#else -static const char MIZUsin_room_20DL_0026D0[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_0026D0; -#endif - -#define dMIZUsin_room_20Tex_005840 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_005840" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20Tex_005840[] = dMIZUsin_room_20Tex_005840; -#else -static const char MIZUsin_room_20Tex_005840[] __attribute__((aligned (2))) = dMIZUsin_room_20Tex_005840; -#endif - -#define dMIZUsin_room_20DL_001D48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_001D48" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_001D48[] = dMIZUsin_room_20DL_001D48; -#else -static const char MIZUsin_room_20DL_001D48[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_001D48; -#endif - -#define dMIZUsin_room_20Tex_005040 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_005040" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20Tex_005040[] = dMIZUsin_room_20Tex_005040; -#else -static const char MIZUsin_room_20Tex_005040[] __attribute__((aligned (2))) = dMIZUsin_room_20Tex_005040; -#endif - -#define dMIZUsin_room_20DL_0022D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_0022D8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_0022D8[] = dMIZUsin_room_20DL_0022D8; -#else -static const char MIZUsin_room_20DL_0022D8[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_0022D8; -#endif - -#define dMIZUsin_room_20Tex_006040 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_006040" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20Tex_006040[] = dMIZUsin_room_20Tex_006040; -#else -static const char MIZUsin_room_20Tex_006040[] __attribute__((aligned (2))) = dMIZUsin_room_20Tex_006040; -#endif - -#define dMIZUsin_room_20DL_002CB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_002CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20DL_002CB8[] = dMIZUsin_room_20DL_002CB8; -#else -static const char MIZUsin_room_20DL_002CB8[] __attribute__((aligned (2))) = dMIZUsin_room_20DL_002CB8; -#endif - -#define dMIZUsin_room_20Tex_003040 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_003040" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_20Tex_003040[] = dMIZUsin_room_20Tex_003040; -#else -static const char MIZUsin_room_20Tex_003040[] __attribute__((aligned (2))) = dMIZUsin_room_20Tex_003040; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_20DL_0018B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_0018B8" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_0018B8[] = dMIZUsin_room_20DL_0018B8; + +#define dMIZUsin_room_20DL_0006E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_0006E0" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_0006E0[] = dMIZUsin_room_20DL_0006E0; + +#define dMIZUsin_room_20Tex_004840 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_004840" +static const ALIGN_ASSET(2) char MIZUsin_room_20Tex_004840[] = dMIZUsin_room_20Tex_004840; + +#define dMIZUsin_room_20DL_002ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_002ED8" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_002ED8[] = dMIZUsin_room_20DL_002ED8; + +#define dMIZUsin_room_20Tex_004040 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_004040" +static const ALIGN_ASSET(2) char MIZUsin_room_20Tex_004040[] = dMIZUsin_room_20Tex_004040; + +#define dMIZUsin_room_20DL_002B30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_002B30" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_002B30[] = dMIZUsin_room_20DL_002B30; + +#define dMIZUsin_room_20Tex_003840 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_003840" +static const ALIGN_ASSET(2) char MIZUsin_room_20Tex_003840[] = dMIZUsin_room_20Tex_003840; + +#define dMIZUsin_room_20DL_000BA0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_000BA0" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_000BA0[] = dMIZUsin_room_20DL_000BA0; + +#define dMIZUsin_room_20DL_002980 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_002980" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_002980[] = dMIZUsin_room_20DL_002980; + +#define dMIZUsin_room_20DL_0026D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_0026D0" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_0026D0[] = dMIZUsin_room_20DL_0026D0; + +#define dMIZUsin_room_20Tex_005840 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_005840" +static const ALIGN_ASSET(2) char MIZUsin_room_20Tex_005840[] = dMIZUsin_room_20Tex_005840; + +#define dMIZUsin_room_20DL_001D48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_001D48" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_001D48[] = dMIZUsin_room_20DL_001D48; + +#define dMIZUsin_room_20Tex_005040 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_005040" +static const ALIGN_ASSET(2) char MIZUsin_room_20Tex_005040[] = dMIZUsin_room_20Tex_005040; + +#define dMIZUsin_room_20DL_0022D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_0022D8" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_0022D8[] = dMIZUsin_room_20DL_0022D8; + +#define dMIZUsin_room_20Tex_006040 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_006040" +static const ALIGN_ASSET(2) char MIZUsin_room_20Tex_006040[] = dMIZUsin_room_20Tex_006040; + +#define dMIZUsin_room_20DL_002CB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20DL_002CB8" +static const ALIGN_ASSET(2) char MIZUsin_room_20DL_002CB8[] = dMIZUsin_room_20DL_002CB8; + +#define dMIZUsin_room_20Tex_003040 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_20Tex_003040" +static const ALIGN_ASSET(2) char MIZUsin_room_20Tex_003040[] = dMIZUsin_room_20Tex_003040; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_21.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_21.h index 51360e414..0a2085b8b 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_21.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_21.h @@ -1,86 +1,39 @@ #pragma once -#define dMIZUsin_room_21DL_0003E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_0003E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21DL_0003E0[] = dMIZUsin_room_21DL_0003E0; -#else -static const char MIZUsin_room_21DL_0003E0[] __attribute__((aligned (2))) = dMIZUsin_room_21DL_0003E0; -#endif - -#define dMIZUsin_room_21DL_003CD8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_003CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21DL_003CD8[] = dMIZUsin_room_21DL_003CD8; -#else -static const char MIZUsin_room_21DL_003CD8[] __attribute__((aligned (2))) = dMIZUsin_room_21DL_003CD8; -#endif - -#define dMIZUsin_room_21Tex_005360 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_005360" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21Tex_005360[] = dMIZUsin_room_21Tex_005360; -#else -static const char MIZUsin_room_21Tex_005360[] __attribute__((aligned (2))) = dMIZUsin_room_21Tex_005360; -#endif - -#define dMIZUsin_room_21DL_006A40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_006A40" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21DL_006A40[] = dMIZUsin_room_21DL_006A40; -#else -static const char MIZUsin_room_21DL_006A40[] __attribute__((aligned (2))) = dMIZUsin_room_21DL_006A40; -#endif - -#define dMIZUsin_room_21Tex_006CA0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_006CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21Tex_006CA0[] = dMIZUsin_room_21Tex_006CA0; -#else -static const char MIZUsin_room_21Tex_006CA0[] __attribute__((aligned (2))) = dMIZUsin_room_21Tex_006CA0; -#endif - -#define dMIZUsin_room_21DL_002D40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_002D40" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21DL_002D40[] = dMIZUsin_room_21DL_002D40; -#else -static const char MIZUsin_room_21DL_002D40[] __attribute__((aligned (2))) = dMIZUsin_room_21DL_002D40; -#endif - -#define dMIZUsin_room_21Tex_004360 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_004360" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21Tex_004360[] = dMIZUsin_room_21Tex_004360; -#else -static const char MIZUsin_room_21Tex_004360[] __attribute__((aligned (2))) = dMIZUsin_room_21Tex_004360; -#endif - -#define dMIZUsin_room_21DL_004228 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_004228" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21DL_004228[] = dMIZUsin_room_21DL_004228; -#else -static const char MIZUsin_room_21DL_004228[] __attribute__((aligned (2))) = dMIZUsin_room_21DL_004228; -#endif - -#define dMIZUsin_room_21Tex_005B60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_005B60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21Tex_005B60[] = dMIZUsin_room_21Tex_005B60; -#else -static const char MIZUsin_room_21Tex_005B60[] __attribute__((aligned (2))) = dMIZUsin_room_21Tex_005B60; -#endif - -#define dMIZUsin_room_21DL_004018 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_004018" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21DL_004018[] = dMIZUsin_room_21DL_004018; -#else -static const char MIZUsin_room_21DL_004018[] __attribute__((aligned (2))) = dMIZUsin_room_21DL_004018; -#endif - -#define dMIZUsin_room_21Tex_004B60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_004B60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21Tex_004B60[] = dMIZUsin_room_21Tex_004B60; -#else -static const char MIZUsin_room_21Tex_004B60[] __attribute__((aligned (2))) = dMIZUsin_room_21Tex_004B60; -#endif - -#define dMIZUsin_room_21DL_003A70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_003A70" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_21DL_003A70[] = dMIZUsin_room_21DL_003A70; -#else -static const char MIZUsin_room_21DL_003A70[] __attribute__((aligned (2))) = dMIZUsin_room_21DL_003A70; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_21DL_0003E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_0003E0" +static const ALIGN_ASSET(2) char MIZUsin_room_21DL_0003E0[] = dMIZUsin_room_21DL_0003E0; + +#define dMIZUsin_room_21DL_003CD8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_003CD8" +static const ALIGN_ASSET(2) char MIZUsin_room_21DL_003CD8[] = dMIZUsin_room_21DL_003CD8; + +#define dMIZUsin_room_21Tex_005360 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_005360" +static const ALIGN_ASSET(2) char MIZUsin_room_21Tex_005360[] = dMIZUsin_room_21Tex_005360; + +#define dMIZUsin_room_21DL_006A40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_006A40" +static const ALIGN_ASSET(2) char MIZUsin_room_21DL_006A40[] = dMIZUsin_room_21DL_006A40; + +#define dMIZUsin_room_21Tex_006CA0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_006CA0" +static const ALIGN_ASSET(2) char MIZUsin_room_21Tex_006CA0[] = dMIZUsin_room_21Tex_006CA0; + +#define dMIZUsin_room_21DL_002D40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_002D40" +static const ALIGN_ASSET(2) char MIZUsin_room_21DL_002D40[] = dMIZUsin_room_21DL_002D40; + +#define dMIZUsin_room_21Tex_004360 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_004360" +static const ALIGN_ASSET(2) char MIZUsin_room_21Tex_004360[] = dMIZUsin_room_21Tex_004360; + +#define dMIZUsin_room_21DL_004228 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_004228" +static const ALIGN_ASSET(2) char MIZUsin_room_21DL_004228[] = dMIZUsin_room_21DL_004228; + +#define dMIZUsin_room_21Tex_005B60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_005B60" +static const ALIGN_ASSET(2) char MIZUsin_room_21Tex_005B60[] = dMIZUsin_room_21Tex_005B60; + +#define dMIZUsin_room_21DL_004018 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_004018" +static const ALIGN_ASSET(2) char MIZUsin_room_21DL_004018[] = dMIZUsin_room_21DL_004018; + +#define dMIZUsin_room_21Tex_004B60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21Tex_004B60" +static const ALIGN_ASSET(2) char MIZUsin_room_21Tex_004B60[] = dMIZUsin_room_21Tex_004B60; + +#define dMIZUsin_room_21DL_003A70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_21DL_003A70" +static const ALIGN_ASSET(2) char MIZUsin_room_21DL_003A70[] = dMIZUsin_room_21DL_003A70; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_22.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_22.h index 556c676f7..38e40c5f0 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_22.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_22.h @@ -1,142 +1,63 @@ #pragma once -#define dMIZUsin_room_22DL_002E40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_002E40" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_002E40[] = dMIZUsin_room_22DL_002E40; -#else -static const char MIZUsin_room_22DL_002E40[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_002E40; -#endif - -#define dMIZUsin_room_22Tex_0068E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0068E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0068E8[] = dMIZUsin_room_22Tex_0068E8; -#else -static const char MIZUsin_room_22Tex_0068E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0068E8; -#endif - -#define dMIZUsin_room_22DL_003E08 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_003E08" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_003E08[] = dMIZUsin_room_22DL_003E08; -#else -static const char MIZUsin_room_22DL_003E08[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_003E08; -#endif - -#define dMIZUsin_room_22Tex_0060E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0060E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0060E8[] = dMIZUsin_room_22Tex_0060E8; -#else -static const char MIZUsin_room_22Tex_0060E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0060E8; -#endif - -#define dMIZUsin_room_22DL_0040C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_0040C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_0040C8[] = dMIZUsin_room_22DL_0040C8; -#else -static const char MIZUsin_room_22DL_0040C8[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_0040C8; -#endif - -#define dMIZUsin_room_22Tex_0058E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0058E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0058E8[] = dMIZUsin_room_22Tex_0058E8; -#else -static const char MIZUsin_room_22Tex_0058E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0058E8; -#endif - -#define dMIZUsin_room_22DL_004370 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_004370" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_004370[] = dMIZUsin_room_22DL_004370; -#else -static const char MIZUsin_room_22DL_004370[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_004370; -#endif - -#define dMIZUsin_room_22Tex_0050E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0050E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0050E8[] = dMIZUsin_room_22Tex_0050E8; -#else -static const char MIZUsin_room_22Tex_0050E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0050E8; -#endif - -#define dMIZUsin_room_22DL_0033A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_0033A0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_0033A0[] = dMIZUsin_room_22DL_0033A0; -#else -static const char MIZUsin_room_22DL_0033A0[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_0033A0; -#endif - -#define dMIZUsin_room_22Tex_0080E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0080E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0080E8[] = dMIZUsin_room_22Tex_0080E8; -#else -static const char MIZUsin_room_22Tex_0080E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0080E8; -#endif - -#define dMIZUsin_room_22DL_002B18 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_002B18" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_002B18[] = dMIZUsin_room_22DL_002B18; -#else -static const char MIZUsin_room_22DL_002B18[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_002B18; -#endif - -#define dMIZUsin_room_22Tex_0048E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0048E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0048E8[] = dMIZUsin_room_22Tex_0048E8; -#else -static const char MIZUsin_room_22Tex_0048E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0048E8; -#endif - -#define dMIZUsin_room_22DL_000380 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_000380" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_000380[] = dMIZUsin_room_22DL_000380; -#else -static const char MIZUsin_room_22DL_000380[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_000380; -#endif - -#define dMIZUsin_room_22Tex_0044E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0044E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0044E8[] = dMIZUsin_room_22Tex_0044E8; -#else -static const char MIZUsin_room_22Tex_0044E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0044E8; -#endif - -#define dMIZUsin_room_22DL_003778 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_003778" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_003778[] = dMIZUsin_room_22DL_003778; -#else -static const char MIZUsin_room_22DL_003778[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_003778; -#endif - -#define dMIZUsin_room_22Tex_0078E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0078E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0078E8[] = dMIZUsin_room_22Tex_0078E8; -#else -static const char MIZUsin_room_22Tex_0078E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0078E8; -#endif - -#define dMIZUsin_room_22DL_0006D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_0006D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_0006D0[] = dMIZUsin_room_22DL_0006D0; -#else -static const char MIZUsin_room_22DL_0006D0[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_0006D0; -#endif - -#define dMIZUsin_room_22Tex_0088E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0088E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0088E8[] = dMIZUsin_room_22Tex_0088E8; -#else -static const char MIZUsin_room_22Tex_0088E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0088E8; -#endif - -#define dMIZUsin_room_22DL_0020C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_0020C0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22DL_0020C0[] = dMIZUsin_room_22DL_0020C0; -#else -static const char MIZUsin_room_22DL_0020C0[] __attribute__((aligned (2))) = dMIZUsin_room_22DL_0020C0; -#endif - -#define dMIZUsin_room_22Tex_0070E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0070E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_22Tex_0070E8[] = dMIZUsin_room_22Tex_0070E8; -#else -static const char MIZUsin_room_22Tex_0070E8[] __attribute__((aligned (2))) = dMIZUsin_room_22Tex_0070E8; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_22DL_002E40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_002E40" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_002E40[] = dMIZUsin_room_22DL_002E40; + +#define dMIZUsin_room_22Tex_0068E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0068E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0068E8[] = dMIZUsin_room_22Tex_0068E8; + +#define dMIZUsin_room_22DL_003E08 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_003E08" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_003E08[] = dMIZUsin_room_22DL_003E08; + +#define dMIZUsin_room_22Tex_0060E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0060E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0060E8[] = dMIZUsin_room_22Tex_0060E8; + +#define dMIZUsin_room_22DL_0040C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_0040C8" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_0040C8[] = dMIZUsin_room_22DL_0040C8; + +#define dMIZUsin_room_22Tex_0058E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0058E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0058E8[] = dMIZUsin_room_22Tex_0058E8; + +#define dMIZUsin_room_22DL_004370 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_004370" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_004370[] = dMIZUsin_room_22DL_004370; + +#define dMIZUsin_room_22Tex_0050E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0050E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0050E8[] = dMIZUsin_room_22Tex_0050E8; + +#define dMIZUsin_room_22DL_0033A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_0033A0" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_0033A0[] = dMIZUsin_room_22DL_0033A0; + +#define dMIZUsin_room_22Tex_0080E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0080E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0080E8[] = dMIZUsin_room_22Tex_0080E8; + +#define dMIZUsin_room_22DL_002B18 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_002B18" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_002B18[] = dMIZUsin_room_22DL_002B18; + +#define dMIZUsin_room_22Tex_0048E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0048E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0048E8[] = dMIZUsin_room_22Tex_0048E8; + +#define dMIZUsin_room_22DL_000380 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_000380" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_000380[] = dMIZUsin_room_22DL_000380; + +#define dMIZUsin_room_22Tex_0044E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0044E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0044E8[] = dMIZUsin_room_22Tex_0044E8; + +#define dMIZUsin_room_22DL_003778 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_003778" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_003778[] = dMIZUsin_room_22DL_003778; + +#define dMIZUsin_room_22Tex_0078E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0078E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0078E8[] = dMIZUsin_room_22Tex_0078E8; + +#define dMIZUsin_room_22DL_0006D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_0006D0" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_0006D0[] = dMIZUsin_room_22DL_0006D0; + +#define dMIZUsin_room_22Tex_0088E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0088E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0088E8[] = dMIZUsin_room_22Tex_0088E8; + +#define dMIZUsin_room_22DL_0020C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22DL_0020C0" +static const ALIGN_ASSET(2) char MIZUsin_room_22DL_0020C0[] = dMIZUsin_room_22DL_0020C0; + +#define dMIZUsin_room_22Tex_0070E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_22Tex_0070E8" +static const ALIGN_ASSET(2) char MIZUsin_room_22Tex_0070E8[] = dMIZUsin_room_22Tex_0070E8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_3.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_3.h index 55b288ca6..90cb2e2f4 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_3.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_3.h @@ -1,100 +1,45 @@ #pragma once -#define dMIZUsin_room_3DL_0007F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_0007F0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3DL_0007F0[] = dMIZUsin_room_3DL_0007F0; -#else -static const char MIZUsin_room_3DL_0007F0[] __attribute__((aligned (2))) = dMIZUsin_room_3DL_0007F0; -#endif - -#define dMIZUsin_room_3DL_0012B0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_0012B0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3DL_0012B0[] = dMIZUsin_room_3DL_0012B0; -#else -static const char MIZUsin_room_3DL_0012B0[] __attribute__((aligned (2))) = dMIZUsin_room_3DL_0012B0; -#endif - -#define dMIZUsin_room_3DL_0030D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_0030D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3DL_0030D0[] = dMIZUsin_room_3DL_0030D0; -#else -static const char MIZUsin_room_3DL_0030D0[] __attribute__((aligned (2))) = dMIZUsin_room_3DL_0030D0; -#endif - -#define dMIZUsin_room_3Tex_0037B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_0037B8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3Tex_0037B8[] = dMIZUsin_room_3Tex_0037B8; -#else -static const char MIZUsin_room_3Tex_0037B8[] __attribute__((aligned (2))) = dMIZUsin_room_3Tex_0037B8; -#endif - -#define dMIZUsin_room_3Tex_0057B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_0057B8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3Tex_0057B8[] = dMIZUsin_room_3Tex_0057B8; -#else -static const char MIZUsin_room_3Tex_0057B8[] __attribute__((aligned (2))) = dMIZUsin_room_3Tex_0057B8; -#endif - -#define dMIZUsin_room_3Tex_003FB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_003FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3Tex_003FB8[] = dMIZUsin_room_3Tex_003FB8; -#else -static const char MIZUsin_room_3Tex_003FB8[] __attribute__((aligned (2))) = dMIZUsin_room_3Tex_003FB8; -#endif - -#define dMIZUsin_room_3Tex_004FB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_004FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3Tex_004FB8[] = dMIZUsin_room_3Tex_004FB8; -#else -static const char MIZUsin_room_3Tex_004FB8[] __attribute__((aligned (2))) = dMIZUsin_room_3Tex_004FB8; -#endif - -#define dMIZUsin_room_3Tex_005FB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_005FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3Tex_005FB8[] = dMIZUsin_room_3Tex_005FB8; -#else -static const char MIZUsin_room_3Tex_005FB8[] __attribute__((aligned (2))) = dMIZUsin_room_3Tex_005FB8; -#endif - -#define dMIZUsin_room_3DL_002190 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_002190" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3DL_002190[] = dMIZUsin_room_3DL_002190; -#else -static const char MIZUsin_room_3DL_002190[] __attribute__((aligned (2))) = dMIZUsin_room_3DL_002190; -#endif - -#define dMIZUsin_room_3DL_0003C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_0003C0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3DL_0003C0[] = dMIZUsin_room_3DL_0003C0; -#else -static const char MIZUsin_room_3DL_0003C0[] __attribute__((aligned (2))) = dMIZUsin_room_3DL_0003C0; -#endif - -#define dMIZUsin_room_3Tex_0047B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_0047B8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3Tex_0047B8[] = dMIZUsin_room_3Tex_0047B8; -#else -static const char MIZUsin_room_3Tex_0047B8[] __attribute__((aligned (2))) = dMIZUsin_room_3Tex_0047B8; -#endif - -#define dMIZUsin_room_3DL_001658 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_001658" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3DL_001658[] = dMIZUsin_room_3DL_001658; -#else -static const char MIZUsin_room_3DL_001658[] __attribute__((aligned (2))) = dMIZUsin_room_3DL_001658; -#endif - -#define dMIZUsin_room_3DL_000AC0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_000AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3DL_000AC0[] = dMIZUsin_room_3DL_000AC0; -#else -static const char MIZUsin_room_3DL_000AC0[] __attribute__((aligned (2))) = dMIZUsin_room_3DL_000AC0; -#endif - -#define dMIZUsin_room_3DL_001E98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_001E98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_3DL_001E98[] = dMIZUsin_room_3DL_001E98; -#else -static const char MIZUsin_room_3DL_001E98[] __attribute__((aligned (2))) = dMIZUsin_room_3DL_001E98; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_3DL_0007F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_0007F0" +static const ALIGN_ASSET(2) char MIZUsin_room_3DL_0007F0[] = dMIZUsin_room_3DL_0007F0; + +#define dMIZUsin_room_3DL_0012B0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_0012B0" +static const ALIGN_ASSET(2) char MIZUsin_room_3DL_0012B0[] = dMIZUsin_room_3DL_0012B0; + +#define dMIZUsin_room_3DL_0030D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_0030D0" +static const ALIGN_ASSET(2) char MIZUsin_room_3DL_0030D0[] = dMIZUsin_room_3DL_0030D0; + +#define dMIZUsin_room_3Tex_0037B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_0037B8" +static const ALIGN_ASSET(2) char MIZUsin_room_3Tex_0037B8[] = dMIZUsin_room_3Tex_0037B8; + +#define dMIZUsin_room_3Tex_0057B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_0057B8" +static const ALIGN_ASSET(2) char MIZUsin_room_3Tex_0057B8[] = dMIZUsin_room_3Tex_0057B8; + +#define dMIZUsin_room_3Tex_003FB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_003FB8" +static const ALIGN_ASSET(2) char MIZUsin_room_3Tex_003FB8[] = dMIZUsin_room_3Tex_003FB8; + +#define dMIZUsin_room_3Tex_004FB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_004FB8" +static const ALIGN_ASSET(2) char MIZUsin_room_3Tex_004FB8[] = dMIZUsin_room_3Tex_004FB8; + +#define dMIZUsin_room_3Tex_005FB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_005FB8" +static const ALIGN_ASSET(2) char MIZUsin_room_3Tex_005FB8[] = dMIZUsin_room_3Tex_005FB8; + +#define dMIZUsin_room_3DL_002190 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_002190" +static const ALIGN_ASSET(2) char MIZUsin_room_3DL_002190[] = dMIZUsin_room_3DL_002190; + +#define dMIZUsin_room_3DL_0003C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_0003C0" +static const ALIGN_ASSET(2) char MIZUsin_room_3DL_0003C0[] = dMIZUsin_room_3DL_0003C0; + +#define dMIZUsin_room_3Tex_0047B8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3Tex_0047B8" +static const ALIGN_ASSET(2) char MIZUsin_room_3Tex_0047B8[] = dMIZUsin_room_3Tex_0047B8; + +#define dMIZUsin_room_3DL_001658 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_001658" +static const ALIGN_ASSET(2) char MIZUsin_room_3DL_001658[] = dMIZUsin_room_3DL_001658; + +#define dMIZUsin_room_3DL_000AC0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_000AC0" +static const ALIGN_ASSET(2) char MIZUsin_room_3DL_000AC0[] = dMIZUsin_room_3DL_000AC0; + +#define dMIZUsin_room_3DL_001E98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_3DL_001E98" +static const ALIGN_ASSET(2) char MIZUsin_room_3DL_001E98[] = dMIZUsin_room_3DL_001E98; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_4.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_4.h index f5fd610c7..94869e0b0 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_4.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_4.h @@ -1,86 +1,39 @@ #pragma once -#define dMIZUsin_room_4DL_000780 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_000780" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4DL_000780[] = dMIZUsin_room_4DL_000780; -#else -static const char MIZUsin_room_4DL_000780[] __attribute__((aligned (2))) = dMIZUsin_room_4DL_000780; -#endif - -#define dMIZUsin_room_4DL_0023A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_0023A0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4DL_0023A0[] = dMIZUsin_room_4DL_0023A0; -#else -static const char MIZUsin_room_4DL_0023A0[] __attribute__((aligned (2))) = dMIZUsin_room_4DL_0023A0; -#endif - -#define dMIZUsin_room_4Tex_004820 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_004820" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4Tex_004820[] = dMIZUsin_room_4Tex_004820; -#else -static const char MIZUsin_room_4Tex_004820[] __attribute__((aligned (2))) = dMIZUsin_room_4Tex_004820; -#endif - -#define dMIZUsin_room_4Tex_005820 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_005820" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4Tex_005820[] = dMIZUsin_room_4Tex_005820; -#else -static const char MIZUsin_room_4Tex_005820[] __attribute__((aligned (2))) = dMIZUsin_room_4Tex_005820; -#endif - -#define dMIZUsin_room_4Tex_005020 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_005020" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4Tex_005020[] = dMIZUsin_room_4Tex_005020; -#else -static const char MIZUsin_room_4Tex_005020[] __attribute__((aligned (2))) = dMIZUsin_room_4Tex_005020; -#endif - -#define dMIZUsin_room_4Tex_004020 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_004020" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4Tex_004020[] = dMIZUsin_room_4Tex_004020; -#else -static const char MIZUsin_room_4Tex_004020[] __attribute__((aligned (2))) = dMIZUsin_room_4Tex_004020; -#endif - -#define dMIZUsin_room_4Tex_003020 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_003020" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4Tex_003020[] = dMIZUsin_room_4Tex_003020; -#else -static const char MIZUsin_room_4Tex_003020[] __attribute__((aligned (2))) = dMIZUsin_room_4Tex_003020; -#endif - -#define dMIZUsin_room_4DL_0016C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_0016C0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4DL_0016C0[] = dMIZUsin_room_4DL_0016C0; -#else -static const char MIZUsin_room_4DL_0016C0[] __attribute__((aligned (2))) = dMIZUsin_room_4DL_0016C0; -#endif - -#define dMIZUsin_room_4Tex_002820 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_002820" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4Tex_002820[] = dMIZUsin_room_4Tex_002820; -#else -static const char MIZUsin_room_4Tex_002820[] __attribute__((aligned (2))) = dMIZUsin_room_4Tex_002820; -#endif - -#define dMIZUsin_room_4DL_000AD8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_000AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4DL_000AD8[] = dMIZUsin_room_4DL_000AD8; -#else -static const char MIZUsin_room_4DL_000AD8[] __attribute__((aligned (2))) = dMIZUsin_room_4DL_000AD8; -#endif - -#define dMIZUsin_room_4DL_001370 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_001370" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4DL_001370[] = dMIZUsin_room_4DL_001370; -#else -static const char MIZUsin_room_4DL_001370[] __attribute__((aligned (2))) = dMIZUsin_room_4DL_001370; -#endif - -#define dMIZUsin_room_4Tex_003820 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_003820" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_4Tex_003820[] = dMIZUsin_room_4Tex_003820; -#else -static const char MIZUsin_room_4Tex_003820[] __attribute__((aligned (2))) = dMIZUsin_room_4Tex_003820; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_4DL_000780 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_000780" +static const ALIGN_ASSET(2) char MIZUsin_room_4DL_000780[] = dMIZUsin_room_4DL_000780; + +#define dMIZUsin_room_4DL_0023A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_0023A0" +static const ALIGN_ASSET(2) char MIZUsin_room_4DL_0023A0[] = dMIZUsin_room_4DL_0023A0; + +#define dMIZUsin_room_4Tex_004820 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_004820" +static const ALIGN_ASSET(2) char MIZUsin_room_4Tex_004820[] = dMIZUsin_room_4Tex_004820; + +#define dMIZUsin_room_4Tex_005820 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_005820" +static const ALIGN_ASSET(2) char MIZUsin_room_4Tex_005820[] = dMIZUsin_room_4Tex_005820; + +#define dMIZUsin_room_4Tex_005020 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_005020" +static const ALIGN_ASSET(2) char MIZUsin_room_4Tex_005020[] = dMIZUsin_room_4Tex_005020; + +#define dMIZUsin_room_4Tex_004020 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_004020" +static const ALIGN_ASSET(2) char MIZUsin_room_4Tex_004020[] = dMIZUsin_room_4Tex_004020; + +#define dMIZUsin_room_4Tex_003020 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_003020" +static const ALIGN_ASSET(2) char MIZUsin_room_4Tex_003020[] = dMIZUsin_room_4Tex_003020; + +#define dMIZUsin_room_4DL_0016C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_0016C0" +static const ALIGN_ASSET(2) char MIZUsin_room_4DL_0016C0[] = dMIZUsin_room_4DL_0016C0; + +#define dMIZUsin_room_4Tex_002820 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_002820" +static const ALIGN_ASSET(2) char MIZUsin_room_4Tex_002820[] = dMIZUsin_room_4Tex_002820; + +#define dMIZUsin_room_4DL_000AD8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_000AD8" +static const ALIGN_ASSET(2) char MIZUsin_room_4DL_000AD8[] = dMIZUsin_room_4DL_000AD8; + +#define dMIZUsin_room_4DL_001370 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4DL_001370" +static const ALIGN_ASSET(2) char MIZUsin_room_4DL_001370[] = dMIZUsin_room_4DL_001370; + +#define dMIZUsin_room_4Tex_003820 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_4Tex_003820" +static const ALIGN_ASSET(2) char MIZUsin_room_4Tex_003820[] = dMIZUsin_room_4Tex_003820; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_5.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_5.h index 66f5fb7d8..2e238496d 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_5.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_5.h @@ -1,135 +1,60 @@ #pragma once -#define dMIZUsin_room_5DL_0014D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_0014D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5DL_0014D0[] = dMIZUsin_room_5DL_0014D0; -#else -static const char MIZUsin_room_5DL_0014D0[] __attribute__((aligned (2))) = dMIZUsin_room_5DL_0014D0; -#endif - -#define dMIZUsin_room_5Tex_006A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_006A48" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_006A48[] = dMIZUsin_room_5Tex_006A48; -#else -static const char MIZUsin_room_5Tex_006A48[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_006A48; -#endif - -#define dMIZUsin_room_5Tex_005A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_005A48" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_005A48[] = dMIZUsin_room_5Tex_005A48; -#else -static const char MIZUsin_room_5Tex_005A48[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_005A48; -#endif - -#define dMIZUsin_room_5Tex_004A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_004A48" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_004A48[] = dMIZUsin_room_5Tex_004A48; -#else -static const char MIZUsin_room_5Tex_004A48[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_004A48; -#endif - -#define dMIZUsin_room_5Tex_006248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_006248" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_006248[] = dMIZUsin_room_5Tex_006248; -#else -static const char MIZUsin_room_5Tex_006248[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_006248; -#endif - -#define dMIZUsin_room_5DL_0008E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_0008E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5DL_0008E0[] = dMIZUsin_room_5DL_0008E0; -#else -static const char MIZUsin_room_5DL_0008E0[] __attribute__((aligned (2))) = dMIZUsin_room_5DL_0008E0; -#endif - -#define dMIZUsin_room_5Tex_005248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_005248" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_005248[] = dMIZUsin_room_5Tex_005248; -#else -static const char MIZUsin_room_5Tex_005248[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_005248; -#endif - -#define dMIZUsin_room_5DL_009CB0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_009CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5DL_009CB0[] = dMIZUsin_room_5DL_009CB0; -#else -static const char MIZUsin_room_5DL_009CB0[] __attribute__((aligned (2))) = dMIZUsin_room_5DL_009CB0; -#endif - -#define dMIZUsin_room_5Tex_009E38 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_009E38" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_009E38[] = dMIZUsin_room_5Tex_009E38; -#else -static const char MIZUsin_room_5Tex_009E38[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_009E38; -#endif - -#define dMIZUsin_room_5DL_002610 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_002610" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5DL_002610[] = dMIZUsin_room_5DL_002610; -#else -static const char MIZUsin_room_5DL_002610[] __attribute__((aligned (2))) = dMIZUsin_room_5DL_002610; -#endif - -#define dMIZUsin_room_5Tex_009248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_009248" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_009248[] = dMIZUsin_room_5Tex_009248; -#else -static const char MIZUsin_room_5Tex_009248[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_009248; -#endif - -#define dMIZUsin_room_5Tex_008A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_008A48" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_008A48[] = dMIZUsin_room_5Tex_008A48; -#else -static const char MIZUsin_room_5Tex_008A48[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_008A48; -#endif - -#define dMIZUsin_room_5Tex_008248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_008248" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_008248[] = dMIZUsin_room_5Tex_008248; -#else -static const char MIZUsin_room_5Tex_008248[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_008248; -#endif - -#define dMIZUsin_room_5Tex_007A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_007A48" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_007A48[] = dMIZUsin_room_5Tex_007A48; -#else -static const char MIZUsin_room_5Tex_007A48[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_007A48; -#endif - -#define dMIZUsin_room_5DL_003470 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_003470" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5DL_003470[] = dMIZUsin_room_5DL_003470; -#else -static const char MIZUsin_room_5DL_003470[] __attribute__((aligned (2))) = dMIZUsin_room_5DL_003470; -#endif - -#define dMIZUsin_room_5Tex_007248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_007248" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_007248[] = dMIZUsin_room_5Tex_007248; -#else -static const char MIZUsin_room_5Tex_007248[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_007248; -#endif - -#define dMIZUsin_room_5Tex_003A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_003A48" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_003A48[] = dMIZUsin_room_5Tex_003A48; -#else -static const char MIZUsin_room_5Tex_003A48[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_003A48; -#endif - -#define dMIZUsin_room_5Tex_004248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_004248" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5Tex_004248[] = dMIZUsin_room_5Tex_004248; -#else -static const char MIZUsin_room_5Tex_004248[] __attribute__((aligned (2))) = dMIZUsin_room_5Tex_004248; -#endif - -#define dMIZUsin_room_5DL_0004C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_0004C0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_5DL_0004C0[] = dMIZUsin_room_5DL_0004C0; -#else -static const char MIZUsin_room_5DL_0004C0[] __attribute__((aligned (2))) = dMIZUsin_room_5DL_0004C0; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_5DL_0014D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_0014D0" +static const ALIGN_ASSET(2) char MIZUsin_room_5DL_0014D0[] = dMIZUsin_room_5DL_0014D0; + +#define dMIZUsin_room_5Tex_006A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_006A48" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_006A48[] = dMIZUsin_room_5Tex_006A48; + +#define dMIZUsin_room_5Tex_005A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_005A48" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_005A48[] = dMIZUsin_room_5Tex_005A48; + +#define dMIZUsin_room_5Tex_004A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_004A48" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_004A48[] = dMIZUsin_room_5Tex_004A48; + +#define dMIZUsin_room_5Tex_006248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_006248" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_006248[] = dMIZUsin_room_5Tex_006248; + +#define dMIZUsin_room_5DL_0008E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_0008E0" +static const ALIGN_ASSET(2) char MIZUsin_room_5DL_0008E0[] = dMIZUsin_room_5DL_0008E0; + +#define dMIZUsin_room_5Tex_005248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_005248" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_005248[] = dMIZUsin_room_5Tex_005248; + +#define dMIZUsin_room_5DL_009CB0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_009CB0" +static const ALIGN_ASSET(2) char MIZUsin_room_5DL_009CB0[] = dMIZUsin_room_5DL_009CB0; + +#define dMIZUsin_room_5Tex_009E38 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_009E38" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_009E38[] = dMIZUsin_room_5Tex_009E38; + +#define dMIZUsin_room_5DL_002610 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_002610" +static const ALIGN_ASSET(2) char MIZUsin_room_5DL_002610[] = dMIZUsin_room_5DL_002610; + +#define dMIZUsin_room_5Tex_009248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_009248" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_009248[] = dMIZUsin_room_5Tex_009248; + +#define dMIZUsin_room_5Tex_008A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_008A48" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_008A48[] = dMIZUsin_room_5Tex_008A48; + +#define dMIZUsin_room_5Tex_008248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_008248" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_008248[] = dMIZUsin_room_5Tex_008248; + +#define dMIZUsin_room_5Tex_007A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_007A48" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_007A48[] = dMIZUsin_room_5Tex_007A48; + +#define dMIZUsin_room_5DL_003470 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_003470" +static const ALIGN_ASSET(2) char MIZUsin_room_5DL_003470[] = dMIZUsin_room_5DL_003470; + +#define dMIZUsin_room_5Tex_007248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_007248" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_007248[] = dMIZUsin_room_5Tex_007248; + +#define dMIZUsin_room_5Tex_003A48 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_003A48" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_003A48[] = dMIZUsin_room_5Tex_003A48; + +#define dMIZUsin_room_5Tex_004248 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5Tex_004248" +static const ALIGN_ASSET(2) char MIZUsin_room_5Tex_004248[] = dMIZUsin_room_5Tex_004248; + +#define dMIZUsin_room_5DL_0004C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_5DL_0004C0" +static const ALIGN_ASSET(2) char MIZUsin_room_5DL_0004C0[] = dMIZUsin_room_5DL_0004C0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_6.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_6.h index 2712d8b9b..9c9f3161e 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_6.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_6.h @@ -1,177 +1,78 @@ #pragma once -#define dMIZUsin_room_6DL_0047E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_0047E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_0047E8[] = dMIZUsin_room_6DL_0047E8; -#else -static const char MIZUsin_room_6DL_0047E8[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_0047E8; -#endif - -#define dMIZUsin_room_6DL_002908 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_002908" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_002908[] = dMIZUsin_room_6DL_002908; -#else -static const char MIZUsin_room_6DL_002908[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_002908; -#endif - -#define dMIZUsin_room_6Tex_008300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_008300" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_008300[] = dMIZUsin_room_6Tex_008300; -#else -static const char MIZUsin_room_6Tex_008300[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_008300; -#endif - -#define dMIZUsin_room_6Tex_008B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_008B00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_008B00[] = dMIZUsin_room_6Tex_008B00; -#else -static const char MIZUsin_room_6Tex_008B00[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_008B00; -#endif - -#define dMIZUsin_room_6Tex_00A300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_00A300" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_00A300[] = dMIZUsin_room_6Tex_00A300; -#else -static const char MIZUsin_room_6Tex_00A300[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_00A300; -#endif - -#define dMIZUsin_room_6Tex_00AB00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_00AB00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_00AB00[] = dMIZUsin_room_6Tex_00AB00; -#else -static const char MIZUsin_room_6Tex_00AB00[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_00AB00; -#endif - -#define dMIZUsin_room_6Tex_005300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_005300" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_005300[] = dMIZUsin_room_6Tex_005300; -#else -static const char MIZUsin_room_6Tex_005300[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_005300; -#endif - -#define dMIZUsin_room_6Tex_007B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_007B00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_007B00[] = dMIZUsin_room_6Tex_007B00; -#else -static const char MIZUsin_room_6Tex_007B00[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_007B00; -#endif - -#define dMIZUsin_room_6Tex_007300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_007300" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_007300[] = dMIZUsin_room_6Tex_007300; -#else -static const char MIZUsin_room_6Tex_007300[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_007300; -#endif - -#define dMIZUsin_room_6Tex_009B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_009B00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_009B00[] = dMIZUsin_room_6Tex_009B00; -#else -static const char MIZUsin_room_6Tex_009B00[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_009B00; -#endif - -#define dMIZUsin_room_6Tex_009300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_009300" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_009300[] = dMIZUsin_room_6Tex_009300; -#else -static const char MIZUsin_room_6Tex_009300[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_009300; -#endif - -#define dMIZUsin_room_6Tex_005B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_005B00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_005B00[] = dMIZUsin_room_6Tex_005B00; -#else -static const char MIZUsin_room_6Tex_005B00[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_005B00; -#endif - -#define dMIZUsin_room_6DL_0014D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_0014D0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_0014D0[] = dMIZUsin_room_6DL_0014D0; -#else -static const char MIZUsin_room_6DL_0014D0[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_0014D0; -#endif - -#define dMIZUsin_room_6Tex_006300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006300" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_006300[] = dMIZUsin_room_6Tex_006300; -#else -static const char MIZUsin_room_6Tex_006300[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_006300; -#endif - -#define dMIZUsin_room_6Tex_006700 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006700" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_006700[] = dMIZUsin_room_6Tex_006700; -#else -static const char MIZUsin_room_6Tex_006700[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_006700; -#endif - -#define dMIZUsin_room_6Tex_006500 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006500" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_006500[] = dMIZUsin_room_6Tex_006500; -#else -static const char MIZUsin_room_6Tex_006500[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_006500; -#endif - -#define dMIZUsin_room_6Tex_005100 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_005100" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_005100[] = dMIZUsin_room_6Tex_005100; -#else -static const char MIZUsin_room_6Tex_005100[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_005100; -#endif - -#define dMIZUsin_room_6Tex_006900 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006900" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_006900[] = dMIZUsin_room_6Tex_006900; -#else -static const char MIZUsin_room_6Tex_006900[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_006900; -#endif - -#define dMIZUsin_room_6DL_003450 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003450" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_003450[] = dMIZUsin_room_6DL_003450; -#else -static const char MIZUsin_room_6DL_003450[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_003450; -#endif - -#define dMIZUsin_room_6DL_003898 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003898" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_003898[] = dMIZUsin_room_6DL_003898; -#else -static const char MIZUsin_room_6DL_003898[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_003898; -#endif - -#define dMIZUsin_room_6Tex_006B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006B00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6Tex_006B00[] = dMIZUsin_room_6Tex_006B00; -#else -static const char MIZUsin_room_6Tex_006B00[] __attribute__((aligned (2))) = dMIZUsin_room_6Tex_006B00; -#endif - -#define dMIZUsin_room_6DL_003D08 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003D08" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_003D08[] = dMIZUsin_room_6DL_003D08; -#else -static const char MIZUsin_room_6DL_003D08[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_003D08; -#endif - -#define dMIZUsin_room_6DL_004F28 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_004F28" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_004F28[] = dMIZUsin_room_6DL_004F28; -#else -static const char MIZUsin_room_6DL_004F28[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_004F28; -#endif - -#define dMIZUsin_room_6DL_003A58 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003A58" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_003A58[] = dMIZUsin_room_6DL_003A58; -#else -static const char MIZUsin_room_6DL_003A58[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_003A58; -#endif - -#define dMIZUsin_room_6DL_003698 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003698" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_6DL_003698[] = dMIZUsin_room_6DL_003698; -#else -static const char MIZUsin_room_6DL_003698[] __attribute__((aligned (2))) = dMIZUsin_room_6DL_003698; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_6DL_0047E8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_0047E8" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_0047E8[] = dMIZUsin_room_6DL_0047E8; + +#define dMIZUsin_room_6DL_002908 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_002908" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_002908[] = dMIZUsin_room_6DL_002908; + +#define dMIZUsin_room_6Tex_008300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_008300" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_008300[] = dMIZUsin_room_6Tex_008300; + +#define dMIZUsin_room_6Tex_008B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_008B00" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_008B00[] = dMIZUsin_room_6Tex_008B00; + +#define dMIZUsin_room_6Tex_00A300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_00A300" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_00A300[] = dMIZUsin_room_6Tex_00A300; + +#define dMIZUsin_room_6Tex_00AB00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_00AB00" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_00AB00[] = dMIZUsin_room_6Tex_00AB00; + +#define dMIZUsin_room_6Tex_005300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_005300" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_005300[] = dMIZUsin_room_6Tex_005300; + +#define dMIZUsin_room_6Tex_007B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_007B00" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_007B00[] = dMIZUsin_room_6Tex_007B00; + +#define dMIZUsin_room_6Tex_007300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_007300" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_007300[] = dMIZUsin_room_6Tex_007300; + +#define dMIZUsin_room_6Tex_009B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_009B00" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_009B00[] = dMIZUsin_room_6Tex_009B00; + +#define dMIZUsin_room_6Tex_009300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_009300" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_009300[] = dMIZUsin_room_6Tex_009300; + +#define dMIZUsin_room_6Tex_005B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_005B00" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_005B00[] = dMIZUsin_room_6Tex_005B00; + +#define dMIZUsin_room_6DL_0014D0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_0014D0" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_0014D0[] = dMIZUsin_room_6DL_0014D0; + +#define dMIZUsin_room_6Tex_006300 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006300" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_006300[] = dMIZUsin_room_6Tex_006300; + +#define dMIZUsin_room_6Tex_006700 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006700" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_006700[] = dMIZUsin_room_6Tex_006700; + +#define dMIZUsin_room_6Tex_006500 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006500" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_006500[] = dMIZUsin_room_6Tex_006500; + +#define dMIZUsin_room_6Tex_005100 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_005100" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_005100[] = dMIZUsin_room_6Tex_005100; + +#define dMIZUsin_room_6Tex_006900 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006900" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_006900[] = dMIZUsin_room_6Tex_006900; + +#define dMIZUsin_room_6DL_003450 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003450" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_003450[] = dMIZUsin_room_6DL_003450; + +#define dMIZUsin_room_6DL_003898 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003898" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_003898[] = dMIZUsin_room_6DL_003898; + +#define dMIZUsin_room_6Tex_006B00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6Tex_006B00" +static const ALIGN_ASSET(2) char MIZUsin_room_6Tex_006B00[] = dMIZUsin_room_6Tex_006B00; + +#define dMIZUsin_room_6DL_003D08 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003D08" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_003D08[] = dMIZUsin_room_6DL_003D08; + +#define dMIZUsin_room_6DL_004F28 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_004F28" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_004F28[] = dMIZUsin_room_6DL_004F28; + +#define dMIZUsin_room_6DL_003A58 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003A58" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_003A58[] = dMIZUsin_room_6DL_003A58; + +#define dMIZUsin_room_6DL_003698 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_6DL_003698" +static const ALIGN_ASSET(2) char MIZUsin_room_6DL_003698[] = dMIZUsin_room_6DL_003698; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_7.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_7.h index f25577b1a..fdafd7420 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_7.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_7.h @@ -1,58 +1,27 @@ #pragma once -#define dMIZUsin_room_7DL_0014B0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7DL_0014B0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_7DL_0014B0[] = dMIZUsin_room_7DL_0014B0; -#else -static const char MIZUsin_room_7DL_0014B0[] __attribute__((aligned (2))) = dMIZUsin_room_7DL_0014B0; -#endif - -#define dMIZUsin_room_7Tex_004560 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_004560" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_7Tex_004560[] = dMIZUsin_room_7Tex_004560; -#else -static const char MIZUsin_room_7Tex_004560[] __attribute__((aligned (2))) = dMIZUsin_room_7Tex_004560; -#endif - -#define dMIZUsin_room_7Tex_004D60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_004D60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_7Tex_004D60[] = dMIZUsin_room_7Tex_004D60; -#else -static const char MIZUsin_room_7Tex_004D60[] __attribute__((aligned (2))) = dMIZUsin_room_7Tex_004D60; -#endif - -#define dMIZUsin_room_7Tex_003D60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_003D60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_7Tex_003D60[] = dMIZUsin_room_7Tex_003D60; -#else -static const char MIZUsin_room_7Tex_003D60[] __attribute__((aligned (2))) = dMIZUsin_room_7Tex_003D60; -#endif - -#define dMIZUsin_room_7Tex_002560 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_002560" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_7Tex_002560[] = dMIZUsin_room_7Tex_002560; -#else -static const char MIZUsin_room_7Tex_002560[] __attribute__((aligned (2))) = dMIZUsin_room_7Tex_002560; -#endif - -#define dMIZUsin_room_7Tex_003560 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_003560" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_7Tex_003560[] = dMIZUsin_room_7Tex_003560; -#else -static const char MIZUsin_room_7Tex_003560[] __attribute__((aligned (2))) = dMIZUsin_room_7Tex_003560; -#endif - -#define dMIZUsin_room_7DL_002440 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7DL_002440" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_7DL_002440[] = dMIZUsin_room_7DL_002440; -#else -static const char MIZUsin_room_7DL_002440[] __attribute__((aligned (2))) = dMIZUsin_room_7DL_002440; -#endif - -#define dMIZUsin_room_7Tex_002D60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_002D60" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_7Tex_002D60[] = dMIZUsin_room_7Tex_002D60; -#else -static const char MIZUsin_room_7Tex_002D60[] __attribute__((aligned (2))) = dMIZUsin_room_7Tex_002D60; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_7DL_0014B0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7DL_0014B0" +static const ALIGN_ASSET(2) char MIZUsin_room_7DL_0014B0[] = dMIZUsin_room_7DL_0014B0; + +#define dMIZUsin_room_7Tex_004560 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_004560" +static const ALIGN_ASSET(2) char MIZUsin_room_7Tex_004560[] = dMIZUsin_room_7Tex_004560; + +#define dMIZUsin_room_7Tex_004D60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_004D60" +static const ALIGN_ASSET(2) char MIZUsin_room_7Tex_004D60[] = dMIZUsin_room_7Tex_004D60; + +#define dMIZUsin_room_7Tex_003D60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_003D60" +static const ALIGN_ASSET(2) char MIZUsin_room_7Tex_003D60[] = dMIZUsin_room_7Tex_003D60; + +#define dMIZUsin_room_7Tex_002560 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_002560" +static const ALIGN_ASSET(2) char MIZUsin_room_7Tex_002560[] = dMIZUsin_room_7Tex_002560; + +#define dMIZUsin_room_7Tex_003560 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_003560" +static const ALIGN_ASSET(2) char MIZUsin_room_7Tex_003560[] = dMIZUsin_room_7Tex_003560; + +#define dMIZUsin_room_7DL_002440 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7DL_002440" +static const ALIGN_ASSET(2) char MIZUsin_room_7DL_002440[] = dMIZUsin_room_7DL_002440; + +#define dMIZUsin_room_7Tex_002D60 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_7Tex_002D60" +static const ALIGN_ASSET(2) char MIZUsin_room_7Tex_002D60[] = dMIZUsin_room_7Tex_002D60; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_8.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_8.h index 30c2378a5..8515653ca 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_8.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_8.h @@ -1,261 +1,114 @@ #pragma once -#define dMIZUsin_room_8DL_001398 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_001398" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_001398[] = dMIZUsin_room_8DL_001398; -#else -static const char MIZUsin_room_8DL_001398[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_001398; -#endif - -#define dMIZUsin_room_8DL_004E40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_004E40" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_004E40[] = dMIZUsin_room_8DL_004E40; -#else -static const char MIZUsin_room_8DL_004E40[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_004E40; -#endif - -#define dMIZUsin_room_8Tex_00B598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00B598" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_00B598[] = dMIZUsin_room_8Tex_00B598; -#else -static const char MIZUsin_room_8Tex_00B598[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_00B598; -#endif - -#define dMIZUsin_room_8Tex_00AD98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00AD98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_00AD98[] = dMIZUsin_room_8Tex_00AD98; -#else -static const char MIZUsin_room_8Tex_00AD98[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_00AD98; -#endif - -#define dMIZUsin_room_8Tex_00C598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00C598" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_00C598[] = dMIZUsin_room_8Tex_00C598; -#else -static const char MIZUsin_room_8Tex_00C598[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_00C598; -#endif - -#define dMIZUsin_room_8Tex_00BD98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_00BD98[] = dMIZUsin_room_8Tex_00BD98; -#else -static const char MIZUsin_room_8Tex_00BD98[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_00BD98; -#endif - -#define dMIZUsin_room_8Tex_007598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_007598" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_007598[] = dMIZUsin_room_8Tex_007598; -#else -static const char MIZUsin_room_8Tex_007598[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_007598; -#endif - -#define dMIZUsin_room_8DL_000DB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_000DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_000DB8[] = dMIZUsin_room_8DL_000DB8; -#else -static const char MIZUsin_room_8DL_000DB8[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_000DB8; -#endif - -#define dMIZUsin_room_8Tex_006998 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_006998" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_006998[] = dMIZUsin_room_8Tex_006998; -#else -static const char MIZUsin_room_8Tex_006998[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_006998; -#endif - -#define dMIZUsin_room_8DL_003008 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003008" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_003008[] = dMIZUsin_room_8DL_003008; -#else -static const char MIZUsin_room_8DL_003008[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_003008; -#endif - -#define dMIZUsin_room_8Tex_009598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_009598" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_009598[] = dMIZUsin_room_8Tex_009598; -#else -static const char MIZUsin_room_8Tex_009598[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_009598; -#endif - -#define dMIZUsin_room_8DL_0025F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_0025F0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_0025F0[] = dMIZUsin_room_8DL_0025F0; -#else -static const char MIZUsin_room_8DL_0025F0[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_0025F0; -#endif - -#define dMIZUsin_room_8Tex_006198 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_006198" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_006198[] = dMIZUsin_room_8Tex_006198; -#else -static const char MIZUsin_room_8Tex_006198[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_006198; -#endif - -#define dMIZUsin_room_8DL_00D0A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_00D0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_00D0A0[] = dMIZUsin_room_8DL_00D0A0; -#else -static const char MIZUsin_room_8DL_00D0A0[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_00D0A0; -#endif - -#define dMIZUsin_room_8Tex_00D578 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00D578" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_00D578[] = dMIZUsin_room_8Tex_00D578; -#else -static const char MIZUsin_room_8Tex_00D578[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_00D578; -#endif - -#define dMIZUsin_room_8DL_00CED0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_00CED0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_00CED0[] = dMIZUsin_room_8DL_00CED0; -#else -static const char MIZUsin_room_8DL_00CED0[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_00CED0; -#endif - -#define dMIZUsin_room_8DL_000740 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_000740" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_000740[] = dMIZUsin_room_8DL_000740; -#else -static const char MIZUsin_room_8DL_000740[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_000740; -#endif - -#define dMIZUsin_room_8Tex_008598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_008598" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_008598[] = dMIZUsin_room_8Tex_008598; -#else -static const char MIZUsin_room_8Tex_008598[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_008598; -#endif - -#define dMIZUsin_room_8DL_003968 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003968" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_003968[] = dMIZUsin_room_8DL_003968; -#else -static const char MIZUsin_room_8DL_003968[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_003968; -#endif - -#define dMIZUsin_room_8Tex_007198 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_007198" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_007198[] = dMIZUsin_room_8Tex_007198; -#else -static const char MIZUsin_room_8Tex_007198[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_007198; -#endif - -#define dMIZUsin_room_8DL_003B70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003B70" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_003B70[] = dMIZUsin_room_8DL_003B70; -#else -static const char MIZUsin_room_8DL_003B70[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_003B70; -#endif - -#define dMIZUsin_room_8Tex_005F98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_005F98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_005F98[] = dMIZUsin_room_8Tex_005F98; -#else -static const char MIZUsin_room_8Tex_005F98[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_005F98; -#endif - -#define dMIZUsin_room_8DL_0036C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_0036C8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_0036C8[] = dMIZUsin_room_8DL_0036C8; -#else -static const char MIZUsin_room_8DL_0036C8[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_0036C8; -#endif - -#define dMIZUsin_room_8Tex_007398 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_007398" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_007398[] = dMIZUsin_room_8Tex_007398; -#else -static const char MIZUsin_room_8Tex_007398[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_007398; -#endif - -#define dMIZUsin_room_8DL_0020E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_0020E0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_0020E0[] = dMIZUsin_room_8DL_0020E0; -#else -static const char MIZUsin_room_8DL_0020E0[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_0020E0; -#endif - -#define dMIZUsin_room_8Tex_005D98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_005D98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_005D98[] = dMIZUsin_room_8Tex_005D98; -#else -static const char MIZUsin_room_8Tex_005D98[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_005D98; -#endif - -#define dMIZUsin_room_8DL_003F58 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003F58" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_003F58[] = dMIZUsin_room_8DL_003F58; -#else -static const char MIZUsin_room_8DL_003F58[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_003F58; -#endif - -#define dMIZUsin_room_8Tex_009D98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_009D98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_009D98[] = dMIZUsin_room_8Tex_009D98; -#else -static const char MIZUsin_room_8Tex_009D98[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_009D98; -#endif - -#define dMIZUsin_room_8DL_00D408 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_00D408" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_00D408[] = dMIZUsin_room_8DL_00D408; -#else -static const char MIZUsin_room_8DL_00D408[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_00D408; -#endif - -#define dMIZUsin_room_8DL_005C00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_005C00" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_005C00[] = dMIZUsin_room_8DL_005C00; -#else -static const char MIZUsin_room_8DL_005C00[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_005C00; -#endif - -#define dMIZUsin_room_8Tex_008D98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_008D98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_008D98[] = dMIZUsin_room_8Tex_008D98; -#else -static const char MIZUsin_room_8Tex_008D98[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_008D98; -#endif - -#define dMIZUsin_room_8DL_000A78 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_000A78" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_000A78[] = dMIZUsin_room_8DL_000A78; -#else -static const char MIZUsin_room_8DL_000A78[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_000A78; -#endif - -#define dMIZUsin_room_8Tex_00A598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00A598" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_00A598[] = dMIZUsin_room_8Tex_00A598; -#else -static const char MIZUsin_room_8Tex_00A598[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_00A598; -#endif - -#define dMIZUsin_room_8DL_003D40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003D40" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_003D40[] = dMIZUsin_room_8DL_003D40; -#else -static const char MIZUsin_room_8DL_003D40[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_003D40; -#endif - -#define dMIZUsin_room_8Tex_007D98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_007D98" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8Tex_007D98[] = dMIZUsin_room_8Tex_007D98; -#else -static const char MIZUsin_room_8Tex_007D98[] __attribute__((aligned (2))) = dMIZUsin_room_8Tex_007D98; -#endif - -#define dMIZUsin_room_8DL_002C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_002C68" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_002C68[] = dMIZUsin_room_8DL_002C68; -#else -static const char MIZUsin_room_8DL_002C68[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_002C68; -#endif - -#define dMIZUsin_room_8DL_0059B0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_0059B0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_8DL_0059B0[] = dMIZUsin_room_8DL_0059B0; -#else -static const char MIZUsin_room_8DL_0059B0[] __attribute__((aligned (2))) = dMIZUsin_room_8DL_0059B0; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_8DL_001398 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_001398" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_001398[] = dMIZUsin_room_8DL_001398; + +#define dMIZUsin_room_8DL_004E40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_004E40" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_004E40[] = dMIZUsin_room_8DL_004E40; + +#define dMIZUsin_room_8Tex_00B598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00B598" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_00B598[] = dMIZUsin_room_8Tex_00B598; + +#define dMIZUsin_room_8Tex_00AD98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00AD98" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_00AD98[] = dMIZUsin_room_8Tex_00AD98; + +#define dMIZUsin_room_8Tex_00C598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00C598" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_00C598[] = dMIZUsin_room_8Tex_00C598; + +#define dMIZUsin_room_8Tex_00BD98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00BD98" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_00BD98[] = dMIZUsin_room_8Tex_00BD98; + +#define dMIZUsin_room_8Tex_007598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_007598" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_007598[] = dMIZUsin_room_8Tex_007598; + +#define dMIZUsin_room_8DL_000DB8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_000DB8" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_000DB8[] = dMIZUsin_room_8DL_000DB8; + +#define dMIZUsin_room_8Tex_006998 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_006998" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_006998[] = dMIZUsin_room_8Tex_006998; + +#define dMIZUsin_room_8DL_003008 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003008" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_003008[] = dMIZUsin_room_8DL_003008; + +#define dMIZUsin_room_8Tex_009598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_009598" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_009598[] = dMIZUsin_room_8Tex_009598; + +#define dMIZUsin_room_8DL_0025F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_0025F0" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_0025F0[] = dMIZUsin_room_8DL_0025F0; + +#define dMIZUsin_room_8Tex_006198 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_006198" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_006198[] = dMIZUsin_room_8Tex_006198; + +#define dMIZUsin_room_8DL_00D0A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_00D0A0" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_00D0A0[] = dMIZUsin_room_8DL_00D0A0; + +#define dMIZUsin_room_8Tex_00D578 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00D578" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_00D578[] = dMIZUsin_room_8Tex_00D578; + +#define dMIZUsin_room_8DL_00CED0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_00CED0" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_00CED0[] = dMIZUsin_room_8DL_00CED0; + +#define dMIZUsin_room_8DL_000740 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_000740" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_000740[] = dMIZUsin_room_8DL_000740; + +#define dMIZUsin_room_8Tex_008598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_008598" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_008598[] = dMIZUsin_room_8Tex_008598; + +#define dMIZUsin_room_8DL_003968 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003968" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_003968[] = dMIZUsin_room_8DL_003968; + +#define dMIZUsin_room_8Tex_007198 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_007198" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_007198[] = dMIZUsin_room_8Tex_007198; + +#define dMIZUsin_room_8DL_003B70 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003B70" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_003B70[] = dMIZUsin_room_8DL_003B70; + +#define dMIZUsin_room_8Tex_005F98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_005F98" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_005F98[] = dMIZUsin_room_8Tex_005F98; + +#define dMIZUsin_room_8DL_0036C8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_0036C8" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_0036C8[] = dMIZUsin_room_8DL_0036C8; + +#define dMIZUsin_room_8Tex_007398 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_007398" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_007398[] = dMIZUsin_room_8Tex_007398; + +#define dMIZUsin_room_8DL_0020E0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_0020E0" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_0020E0[] = dMIZUsin_room_8DL_0020E0; + +#define dMIZUsin_room_8Tex_005D98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_005D98" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_005D98[] = dMIZUsin_room_8Tex_005D98; + +#define dMIZUsin_room_8DL_003F58 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003F58" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_003F58[] = dMIZUsin_room_8DL_003F58; + +#define dMIZUsin_room_8Tex_009D98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_009D98" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_009D98[] = dMIZUsin_room_8Tex_009D98; + +#define dMIZUsin_room_8DL_00D408 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_00D408" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_00D408[] = dMIZUsin_room_8DL_00D408; + +#define dMIZUsin_room_8DL_005C00 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_005C00" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_005C00[] = dMIZUsin_room_8DL_005C00; + +#define dMIZUsin_room_8Tex_008D98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_008D98" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_008D98[] = dMIZUsin_room_8Tex_008D98; + +#define dMIZUsin_room_8DL_000A78 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_000A78" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_000A78[] = dMIZUsin_room_8DL_000A78; + +#define dMIZUsin_room_8Tex_00A598 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_00A598" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_00A598[] = dMIZUsin_room_8Tex_00A598; + +#define dMIZUsin_room_8DL_003D40 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_003D40" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_003D40[] = dMIZUsin_room_8DL_003D40; + +#define dMIZUsin_room_8Tex_007D98 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8Tex_007D98" +static const ALIGN_ASSET(2) char MIZUsin_room_8Tex_007D98[] = dMIZUsin_room_8Tex_007D98; + +#define dMIZUsin_room_8DL_002C68 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_002C68" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_002C68[] = dMIZUsin_room_8DL_002C68; + +#define dMIZUsin_room_8DL_0059B0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_8DL_0059B0" +static const ALIGN_ASSET(2) char MIZUsin_room_8DL_0059B0[] = dMIZUsin_room_8DL_0059B0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_9.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_9.h index 2b1fde9f8..b301d672b 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_9.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_room_9.h @@ -1,107 +1,48 @@ #pragma once -#define dMIZUsin_room_9DL_002E20 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_002E20" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9DL_002E20[] = dMIZUsin_room_9DL_002E20; -#else -static const char MIZUsin_room_9DL_002E20[] __attribute__((aligned (2))) = dMIZUsin_room_9DL_002E20; -#endif - -#define dMIZUsin_room_9DL_001890 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_001890" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9DL_001890[] = dMIZUsin_room_9DL_001890; -#else -static const char MIZUsin_room_9DL_001890[] __attribute__((aligned (2))) = dMIZUsin_room_9DL_001890; -#endif - -#define dMIZUsin_room_9Tex_005ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_005ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_005ED8[] = dMIZUsin_room_9Tex_005ED8; -#else -static const char MIZUsin_room_9Tex_005ED8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_005ED8; -#endif - -#define dMIZUsin_room_9Tex_0056D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0056D8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_0056D8[] = dMIZUsin_room_9Tex_0056D8; -#else -static const char MIZUsin_room_9Tex_0056D8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_0056D8; -#endif - -#define dMIZUsin_room_9Tex_0046D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0046D8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_0046D8[] = dMIZUsin_room_9Tex_0046D8; -#else -static const char MIZUsin_room_9Tex_0046D8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_0046D8; -#endif - -#define dMIZUsin_room_9Tex_003ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_003ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_003ED8[] = dMIZUsin_room_9Tex_003ED8; -#else -static const char MIZUsin_room_9Tex_003ED8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_003ED8; -#endif - -#define dMIZUsin_room_9Tex_004ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_004ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_004ED8[] = dMIZUsin_room_9Tex_004ED8; -#else -static const char MIZUsin_room_9Tex_004ED8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_004ED8; -#endif - -#define dMIZUsin_room_9Tex_006ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_006ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_006ED8[] = dMIZUsin_room_9Tex_006ED8; -#else -static const char MIZUsin_room_9Tex_006ED8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_006ED8; -#endif - -#define dMIZUsin_room_9Tex_0066D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0066D8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_0066D8[] = dMIZUsin_room_9Tex_0066D8; -#else -static const char MIZUsin_room_9Tex_0066D8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_0066D8; -#endif - -#define dMIZUsin_room_9DL_0077A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_0077A0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9DL_0077A0[] = dMIZUsin_room_9DL_0077A0; -#else -static const char MIZUsin_room_9DL_0077A0[] __attribute__((aligned (2))) = dMIZUsin_room_9DL_0077A0; -#endif - -#define dMIZUsin_room_9Tex_0078A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0078A8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_0078A8[] = dMIZUsin_room_9Tex_0078A8; -#else -static const char MIZUsin_room_9Tex_0078A8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_0078A8; -#endif - -#define dMIZUsin_room_9DL_0035F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_0035F0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9DL_0035F0[] = dMIZUsin_room_9DL_0035F0; -#else -static const char MIZUsin_room_9DL_0035F0[] __attribute__((aligned (2))) = dMIZUsin_room_9DL_0035F0; -#endif - -#define dMIZUsin_room_9Tex_0036D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0036D8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9Tex_0036D8[] = dMIZUsin_room_9Tex_0036D8; -#else -static const char MIZUsin_room_9Tex_0036D8[] __attribute__((aligned (2))) = dMIZUsin_room_9Tex_0036D8; -#endif - -#define dMIZUsin_room_9DL_0030C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_0030C0" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9DL_0030C0[] = dMIZUsin_room_9DL_0030C0; -#else -static const char MIZUsin_room_9DL_0030C0[] __attribute__((aligned (2))) = dMIZUsin_room_9DL_0030C0; -#endif - -#define dMIZUsin_room_9DL_003408 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_003408" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_room_9DL_003408[] = dMIZUsin_room_9DL_003408; -#else -static const char MIZUsin_room_9DL_003408[] __attribute__((aligned (2))) = dMIZUsin_room_9DL_003408; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_room_9DL_002E20 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_002E20" +static const ALIGN_ASSET(2) char MIZUsin_room_9DL_002E20[] = dMIZUsin_room_9DL_002E20; + +#define dMIZUsin_room_9DL_001890 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_001890" +static const ALIGN_ASSET(2) char MIZUsin_room_9DL_001890[] = dMIZUsin_room_9DL_001890; + +#define dMIZUsin_room_9Tex_005ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_005ED8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_005ED8[] = dMIZUsin_room_9Tex_005ED8; + +#define dMIZUsin_room_9Tex_0056D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0056D8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_0056D8[] = dMIZUsin_room_9Tex_0056D8; + +#define dMIZUsin_room_9Tex_0046D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0046D8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_0046D8[] = dMIZUsin_room_9Tex_0046D8; + +#define dMIZUsin_room_9Tex_003ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_003ED8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_003ED8[] = dMIZUsin_room_9Tex_003ED8; + +#define dMIZUsin_room_9Tex_004ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_004ED8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_004ED8[] = dMIZUsin_room_9Tex_004ED8; + +#define dMIZUsin_room_9Tex_006ED8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_006ED8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_006ED8[] = dMIZUsin_room_9Tex_006ED8; + +#define dMIZUsin_room_9Tex_0066D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0066D8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_0066D8[] = dMIZUsin_room_9Tex_0066D8; + +#define dMIZUsin_room_9DL_0077A0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_0077A0" +static const ALIGN_ASSET(2) char MIZUsin_room_9DL_0077A0[] = dMIZUsin_room_9DL_0077A0; + +#define dMIZUsin_room_9Tex_0078A8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0078A8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_0078A8[] = dMIZUsin_room_9Tex_0078A8; + +#define dMIZUsin_room_9DL_0035F0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_0035F0" +static const ALIGN_ASSET(2) char MIZUsin_room_9DL_0035F0[] = dMIZUsin_room_9DL_0035F0; + +#define dMIZUsin_room_9Tex_0036D8 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9Tex_0036D8" +static const ALIGN_ASSET(2) char MIZUsin_room_9Tex_0036D8[] = dMIZUsin_room_9Tex_0036D8; + +#define dMIZUsin_room_9DL_0030C0 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_0030C0" +static const ALIGN_ASSET(2) char MIZUsin_room_9DL_0030C0[] = dMIZUsin_room_9DL_0030C0; + +#define dMIZUsin_room_9DL_003408 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_room_9DL_003408" +static const ALIGN_ASSET(2) char MIZUsin_room_9DL_003408[] = dMIZUsin_room_9DL_003408; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_scene.h b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_scene.h index 98c8b74ce..7d44a9c93 100644 --- a/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_scene.h +++ b/soh/assets/scenes/dungeons/MIZUsin/MIZUsin_scene.h @@ -1,44 +1,21 @@ #pragma once -#define dgWaterTempleDayEntranceTex "__OTR__scenes/nonmq/MIZUsin_scene/gWaterTempleDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleDayEntranceTex[] = dgWaterTempleDayEntranceTex; -#else -static const char gWaterTempleDayEntranceTex[] __attribute__((aligned (2))) = dgWaterTempleDayEntranceTex; -#endif - -#define dgWaterTempleNightEntranceTex "__OTR__scenes/nonmq/MIZUsin_scene/gWaterTempleNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleNightEntranceTex[] = dgWaterTempleNightEntranceTex; -#else -static const char gWaterTempleNightEntranceTex[] __attribute__((aligned (2))) = dgWaterTempleNightEntranceTex; -#endif - -#define dMIZUsin_sceneCollisionHeader_013C04 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_sceneCollisionHeader_013C04" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_sceneCollisionHeader_013C04[] = dMIZUsin_sceneCollisionHeader_013C04; -#else -static const char MIZUsin_sceneCollisionHeader_013C04[] __attribute__((aligned (2))) = dMIZUsin_sceneCollisionHeader_013C04; -#endif - -#define dMIZUsin_sceneTex_014430 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_sceneTex_014430" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_sceneTex_014430[] = dMIZUsin_sceneTex_014430; -#else -static const char MIZUsin_sceneTex_014430[] __attribute__((aligned (2))) = dMIZUsin_sceneTex_014430; -#endif - -#define dMIZUsin_sceneTex_013C30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_sceneTex_013C30" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_sceneTex_013C30[] = dMIZUsin_sceneTex_013C30; -#else -static const char MIZUsin_sceneTex_013C30[] __attribute__((aligned (2))) = dMIZUsin_sceneTex_013C30; -#endif - -#define dMIZUsin_sceneTex_015030 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_sceneTex_015030" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_sceneTex_015030[] = dMIZUsin_sceneTex_015030; -#else -static const char MIZUsin_sceneTex_015030[] __attribute__((aligned (2))) = dMIZUsin_sceneTex_015030; -#endif - +#include "align_asset_macro.h" + +#define dgWaterTempleDayEntranceTex "__OTR__scenes/nonmq/MIZUsin_scene/gWaterTempleDayEntranceTex" +static const ALIGN_ASSET(2) char gWaterTempleDayEntranceTex[] = dgWaterTempleDayEntranceTex; + +#define dgWaterTempleNightEntranceTex "__OTR__scenes/nonmq/MIZUsin_scene/gWaterTempleNightEntranceTex" +static const ALIGN_ASSET(2) char gWaterTempleNightEntranceTex[] = dgWaterTempleNightEntranceTex; + +#define dMIZUsin_sceneCollisionHeader_013C04 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_sceneCollisionHeader_013C04" +static const ALIGN_ASSET(2) char MIZUsin_sceneCollisionHeader_013C04[] = dMIZUsin_sceneCollisionHeader_013C04; + +#define dMIZUsin_sceneTex_014430 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_sceneTex_014430" +static const ALIGN_ASSET(2) char MIZUsin_sceneTex_014430[] = dMIZUsin_sceneTex_014430; + +#define dMIZUsin_sceneTex_013C30 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_sceneTex_013C30" +static const ALIGN_ASSET(2) char MIZUsin_sceneTex_013C30[] = dMIZUsin_sceneTex_013C30; + +#define dMIZUsin_sceneTex_015030 "__OTR__scenes/nonmq/MIZUsin_scene/MIZUsin_sceneTex_015030" +static const ALIGN_ASSET(2) char MIZUsin_sceneTex_015030[] = dMIZUsin_sceneTex_015030; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_room_0.h b/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_room_0.h index d363e17cb..bce080dae 100644 --- a/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_room_0.h +++ b/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_room_0.h @@ -1,51 +1,24 @@ #pragma once -#define dMIZUsin_bs_room_0DL_001460 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0DL_001460" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_0DL_001460[] = dMIZUsin_bs_room_0DL_001460; -#else -static const char MIZUsin_bs_room_0DL_001460[] __attribute__((aligned (2))) = dMIZUsin_bs_room_0DL_001460; -#endif - -#define dMIZUsin_bs_room_0Tex_003C70 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_003C70" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_0Tex_003C70[] = dMIZUsin_bs_room_0Tex_003C70; -#else -static const char MIZUsin_bs_room_0Tex_003C70[] __attribute__((aligned (2))) = dMIZUsin_bs_room_0Tex_003C70; -#endif - -#define dMIZUsin_bs_room_0Tex_003470 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_003470" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_0Tex_003470[] = dMIZUsin_bs_room_0Tex_003470; -#else -static const char MIZUsin_bs_room_0Tex_003470[] __attribute__((aligned (2))) = dMIZUsin_bs_room_0Tex_003470; -#endif - -#define dMIZUsin_bs_room_0Tex_002C70 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_002C70" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_0Tex_002C70[] = dMIZUsin_bs_room_0Tex_002C70; -#else -static const char MIZUsin_bs_room_0Tex_002C70[] __attribute__((aligned (2))) = dMIZUsin_bs_room_0Tex_002C70; -#endif - -#define dMIZUsin_bs_room_0Tex_002470 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_002470" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_0Tex_002470[] = dMIZUsin_bs_room_0Tex_002470; -#else -static const char MIZUsin_bs_room_0Tex_002470[] __attribute__((aligned (2))) = dMIZUsin_bs_room_0Tex_002470; -#endif - -#define dMIZUsin_bs_room_0Tex_001C70 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_001C70" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_0Tex_001C70[] = dMIZUsin_bs_room_0Tex_001C70; -#else -static const char MIZUsin_bs_room_0Tex_001C70[] __attribute__((aligned (2))) = dMIZUsin_bs_room_0Tex_001C70; -#endif - -#define dMIZUsin_bs_room_0Tex_001470 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_001470" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_0Tex_001470[] = dMIZUsin_bs_room_0Tex_001470; -#else -static const char MIZUsin_bs_room_0Tex_001470[] __attribute__((aligned (2))) = dMIZUsin_bs_room_0Tex_001470; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_bs_room_0DL_001460 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0DL_001460" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_0DL_001460[] = dMIZUsin_bs_room_0DL_001460; + +#define dMIZUsin_bs_room_0Tex_003C70 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_003C70" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_0Tex_003C70[] = dMIZUsin_bs_room_0Tex_003C70; + +#define dMIZUsin_bs_room_0Tex_003470 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_003470" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_0Tex_003470[] = dMIZUsin_bs_room_0Tex_003470; + +#define dMIZUsin_bs_room_0Tex_002C70 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_002C70" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_0Tex_002C70[] = dMIZUsin_bs_room_0Tex_002C70; + +#define dMIZUsin_bs_room_0Tex_002470 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_002470" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_0Tex_002470[] = dMIZUsin_bs_room_0Tex_002470; + +#define dMIZUsin_bs_room_0Tex_001C70 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_001C70" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_0Tex_001C70[] = dMIZUsin_bs_room_0Tex_001C70; + +#define dMIZUsin_bs_room_0Tex_001470 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_0Tex_001470" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_0Tex_001470[] = dMIZUsin_bs_room_0Tex_001470; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_room_1.h b/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_room_1.h index d3f17b9e3..4a9fe2edf 100644 --- a/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_room_1.h +++ b/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_room_1.h @@ -1,93 +1,42 @@ #pragma once -#define dMIZUsin_bs_room_1DL_005688 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1DL_005688" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1DL_005688[] = dMIZUsin_bs_room_1DL_005688; -#else -static const char MIZUsin_bs_room_1DL_005688[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1DL_005688; -#endif - -#define dMIZUsin_bs_room_1Tex_0056E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0056E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_0056E8[] = dMIZUsin_bs_room_1Tex_0056E8; -#else -static const char MIZUsin_bs_room_1Tex_0056E8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_0056E8; -#endif - -#define dMIZUsin_bs_room_1Tex_005EE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_005EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_005EE8[] = dMIZUsin_bs_room_1Tex_005EE8; -#else -static const char MIZUsin_bs_room_1Tex_005EE8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_005EE8; -#endif - -#define dMIZUsin_bs_room_1Tex_007EE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_007EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_007EE8[] = dMIZUsin_bs_room_1Tex_007EE8; -#else -static const char MIZUsin_bs_room_1Tex_007EE8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_007EE8; -#endif - -#define dMIZUsin_bs_room_1Tex_00A2E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_00A2E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_00A2E8[] = dMIZUsin_bs_room_1Tex_00A2E8; -#else -static const char MIZUsin_bs_room_1Tex_00A2E8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_00A2E8; -#endif - -#define dMIZUsin_bs_room_1Tex_0086E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0086E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_0086E8[] = dMIZUsin_bs_room_1Tex_0086E8; -#else -static const char MIZUsin_bs_room_1Tex_0086E8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_0086E8; -#endif - -#define dMIZUsin_bs_room_1Tex_0076E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0076E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_0076E8[] = dMIZUsin_bs_room_1Tex_0076E8; -#else -static const char MIZUsin_bs_room_1Tex_0076E8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_0076E8; -#endif - -#define dMIZUsin_bs_room_1Tex_006EE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_006EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_006EE8[] = dMIZUsin_bs_room_1Tex_006EE8; -#else -static const char MIZUsin_bs_room_1Tex_006EE8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_006EE8; -#endif - -#define dMIZUsin_bs_room_1Tex_0066E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0066E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_0066E8[] = dMIZUsin_bs_room_1Tex_0066E8; -#else -static const char MIZUsin_bs_room_1Tex_0066E8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_0066E8; -#endif - -#define dMIZUsin_bs_room_1Tex_0092E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0092E8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_0092E8[] = dMIZUsin_bs_room_1Tex_0092E8; -#else -static const char MIZUsin_bs_room_1Tex_0092E8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_0092E8; -#endif - -#define dMIZUsin_bs_room_1Tex_009AE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_009AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_009AE8[] = dMIZUsin_bs_room_1Tex_009AE8; -#else -static const char MIZUsin_bs_room_1Tex_009AE8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_009AE8; -#endif - -#define dMIZUsin_bs_room_1Tex_00AAE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_00AAE8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_00AAE8[] = dMIZUsin_bs_room_1Tex_00AAE8; -#else -static const char MIZUsin_bs_room_1Tex_00AAE8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_00AAE8; -#endif - -#define dMIZUsin_bs_room_1Tex_008EE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_008EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_room_1Tex_008EE8[] = dMIZUsin_bs_room_1Tex_008EE8; -#else -static const char MIZUsin_bs_room_1Tex_008EE8[] __attribute__((aligned (2))) = dMIZUsin_bs_room_1Tex_008EE8; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_bs_room_1DL_005688 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1DL_005688" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1DL_005688[] = dMIZUsin_bs_room_1DL_005688; + +#define dMIZUsin_bs_room_1Tex_0056E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0056E8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_0056E8[] = dMIZUsin_bs_room_1Tex_0056E8; + +#define dMIZUsin_bs_room_1Tex_005EE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_005EE8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_005EE8[] = dMIZUsin_bs_room_1Tex_005EE8; + +#define dMIZUsin_bs_room_1Tex_007EE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_007EE8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_007EE8[] = dMIZUsin_bs_room_1Tex_007EE8; + +#define dMIZUsin_bs_room_1Tex_00A2E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_00A2E8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_00A2E8[] = dMIZUsin_bs_room_1Tex_00A2E8; + +#define dMIZUsin_bs_room_1Tex_0086E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0086E8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_0086E8[] = dMIZUsin_bs_room_1Tex_0086E8; + +#define dMIZUsin_bs_room_1Tex_0076E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0076E8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_0076E8[] = dMIZUsin_bs_room_1Tex_0076E8; + +#define dMIZUsin_bs_room_1Tex_006EE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_006EE8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_006EE8[] = dMIZUsin_bs_room_1Tex_006EE8; + +#define dMIZUsin_bs_room_1Tex_0066E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0066E8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_0066E8[] = dMIZUsin_bs_room_1Tex_0066E8; + +#define dMIZUsin_bs_room_1Tex_0092E8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_0092E8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_0092E8[] = dMIZUsin_bs_room_1Tex_0092E8; + +#define dMIZUsin_bs_room_1Tex_009AE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_009AE8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_009AE8[] = dMIZUsin_bs_room_1Tex_009AE8; + +#define dMIZUsin_bs_room_1Tex_00AAE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_00AAE8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_00AAE8[] = dMIZUsin_bs_room_1Tex_00AAE8; + +#define dMIZUsin_bs_room_1Tex_008EE8 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_room_1Tex_008EE8" +static const ALIGN_ASSET(2) char MIZUsin_bs_room_1Tex_008EE8[] = dMIZUsin_bs_room_1Tex_008EE8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_scene.h b/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_scene.h index 2e7b7e0ed..2a086bc7d 100644 --- a/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_scene.h +++ b/soh/assets/scenes/dungeons/MIZUsin_bs/MIZUsin_bs_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dMIZUsin_bs_sceneCollisionHeader_001A34 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_sceneCollisionHeader_001A34" -#ifdef _WIN32 -static const __declspec(align(2)) char MIZUsin_bs_sceneCollisionHeader_001A34[] = dMIZUsin_bs_sceneCollisionHeader_001A34; -#else -static const char MIZUsin_bs_sceneCollisionHeader_001A34[] __attribute__((aligned (2))) = dMIZUsin_bs_sceneCollisionHeader_001A34; -#endif - +#include "align_asset_macro.h" + +#define dMIZUsin_bs_sceneCollisionHeader_001A34 "__OTR__scenes/nonmq/MIZUsin_bs_scene/MIZUsin_bs_sceneCollisionHeader_001A34" +static const ALIGN_ASSET(2) char MIZUsin_bs_sceneCollisionHeader_001A34[] = dMIZUsin_bs_sceneCollisionHeader_001A34; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_0.h b/soh/assets/scenes/dungeons/bdan/bdan_room_0.h index 4e205b556..1745307ae 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_0.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_0.h @@ -1,51 +1,24 @@ #pragma once -#define dbdan_room_0DL_002DA8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0DL_002DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_0DL_002DA8[] = dbdan_room_0DL_002DA8; -#else -static const char bdan_room_0DL_002DA8[] __attribute__((aligned (2))) = dbdan_room_0DL_002DA8; -#endif - -#define dbdan_room_0Tex_002DB8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Tex_002DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_0Tex_002DB8[] = dbdan_room_0Tex_002DB8; -#else -static const char bdan_room_0Tex_002DB8[] __attribute__((aligned (2))) = dbdan_room_0Tex_002DB8; -#endif - -#define dbdan_room_0Tex_0031B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Tex_0031B8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_0Tex_0031B8[] = dbdan_room_0Tex_0031B8; -#else -static const char bdan_room_0Tex_0031B8[] __attribute__((aligned (2))) = dbdan_room_0Tex_0031B8; -#endif - -#define dbdan_room_0Tex_0039B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Tex_0039B8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_0Tex_0039B8[] = dbdan_room_0Tex_0039B8; -#else -static const char bdan_room_0Tex_0039B8[] __attribute__((aligned (2))) = dbdan_room_0Tex_0039B8; -#endif - -#define dbdan_room_0DL_004130 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0DL_004130" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_0DL_004130[] = dbdan_room_0DL_004130; -#else -static const char bdan_room_0DL_004130[] __attribute__((aligned (2))) = dbdan_room_0DL_004130; -#endif - -#define dbdan_room_0Set_0001B0DL_002DA8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Set_0001B0DL_002DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_0Set_0001B0DL_002DA8[] = dbdan_room_0Set_0001B0DL_002DA8; -#else -static const char bdan_room_0Set_0001B0DL_002DA8[] __attribute__((aligned (2))) = dbdan_room_0Set_0001B0DL_002DA8; -#endif - -#define dbdan_room_0Set_0001B0DL_004130 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Set_0001B0DL_004130" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_0Set_0001B0DL_004130[] = dbdan_room_0Set_0001B0DL_004130; -#else -static const char bdan_room_0Set_0001B0DL_004130[] __attribute__((aligned (2))) = dbdan_room_0Set_0001B0DL_004130; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_0DL_002DA8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0DL_002DA8" +static const ALIGN_ASSET(2) char bdan_room_0DL_002DA8[] = dbdan_room_0DL_002DA8; + +#define dbdan_room_0Tex_002DB8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Tex_002DB8" +static const ALIGN_ASSET(2) char bdan_room_0Tex_002DB8[] = dbdan_room_0Tex_002DB8; + +#define dbdan_room_0Tex_0031B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Tex_0031B8" +static const ALIGN_ASSET(2) char bdan_room_0Tex_0031B8[] = dbdan_room_0Tex_0031B8; + +#define dbdan_room_0Tex_0039B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Tex_0039B8" +static const ALIGN_ASSET(2) char bdan_room_0Tex_0039B8[] = dbdan_room_0Tex_0039B8; + +#define dbdan_room_0DL_004130 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0DL_004130" +static const ALIGN_ASSET(2) char bdan_room_0DL_004130[] = dbdan_room_0DL_004130; + +#define dbdan_room_0Set_0001B0DL_002DA8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Set_0001B0DL_002DA8" +static const ALIGN_ASSET(2) char bdan_room_0Set_0001B0DL_002DA8[] = dbdan_room_0Set_0001B0DL_002DA8; + +#define dbdan_room_0Set_0001B0DL_004130 "__OTR__scenes/nonmq/bdan_scene/bdan_room_0Set_0001B0DL_004130" +static const ALIGN_ASSET(2) char bdan_room_0Set_0001B0DL_004130[] = dbdan_room_0Set_0001B0DL_004130; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_1.h b/soh/assets/scenes/dungeons/bdan/bdan_room_1.h index 70a69c734..9a34fe0ae 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_1.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_1.h @@ -1,44 +1,21 @@ #pragma once -#define dbdan_room_1DL_004DF0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1DL_004DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_1DL_004DF0[] = dbdan_room_1DL_004DF0; -#else -static const char bdan_room_1DL_004DF0[] __attribute__((aligned (2))) = dbdan_room_1DL_004DF0; -#endif - -#define dbdan_room_1Tex_004E00 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1Tex_004E00" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_1Tex_004E00[] = dbdan_room_1Tex_004E00; -#else -static const char bdan_room_1Tex_004E00[] __attribute__((aligned (2))) = dbdan_room_1Tex_004E00; -#endif - -#define dbdan_room_1Tex_005600 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1Tex_005600" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_1Tex_005600[] = dbdan_room_1Tex_005600; -#else -static const char bdan_room_1Tex_005600[] __attribute__((aligned (2))) = dbdan_room_1Tex_005600; -#endif - -#define dbdan_room_1DL_005FA8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1DL_005FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_1DL_005FA8[] = dbdan_room_1DL_005FA8; -#else -static const char bdan_room_1DL_005FA8[] __attribute__((aligned (2))) = dbdan_room_1DL_005FA8; -#endif - -#define dbdan_room_1Set_000240DL_004DF0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1Set_000240DL_004DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_1Set_000240DL_004DF0[] = dbdan_room_1Set_000240DL_004DF0; -#else -static const char bdan_room_1Set_000240DL_004DF0[] __attribute__((aligned (2))) = dbdan_room_1Set_000240DL_004DF0; -#endif - -#define dbdan_room_1Set_000240DL_005FA8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1Set_000240DL_005FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_1Set_000240DL_005FA8[] = dbdan_room_1Set_000240DL_005FA8; -#else -static const char bdan_room_1Set_000240DL_005FA8[] __attribute__((aligned (2))) = dbdan_room_1Set_000240DL_005FA8; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_1DL_004DF0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1DL_004DF0" +static const ALIGN_ASSET(2) char bdan_room_1DL_004DF0[] = dbdan_room_1DL_004DF0; + +#define dbdan_room_1Tex_004E00 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1Tex_004E00" +static const ALIGN_ASSET(2) char bdan_room_1Tex_004E00[] = dbdan_room_1Tex_004E00; + +#define dbdan_room_1Tex_005600 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1Tex_005600" +static const ALIGN_ASSET(2) char bdan_room_1Tex_005600[] = dbdan_room_1Tex_005600; + +#define dbdan_room_1DL_005FA8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1DL_005FA8" +static const ALIGN_ASSET(2) char bdan_room_1DL_005FA8[] = dbdan_room_1DL_005FA8; + +#define dbdan_room_1Set_000240DL_004DF0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1Set_000240DL_004DF0" +static const ALIGN_ASSET(2) char bdan_room_1Set_000240DL_004DF0[] = dbdan_room_1Set_000240DL_004DF0; + +#define dbdan_room_1Set_000240DL_005FA8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_1Set_000240DL_005FA8" +static const ALIGN_ASSET(2) char bdan_room_1Set_000240DL_005FA8[] = dbdan_room_1Set_000240DL_005FA8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_10.h b/soh/assets/scenes/dungeons/bdan/bdan_room_10.h index 2c37604d6..615660037 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_10.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_10.h @@ -1,16 +1,9 @@ #pragma once -#define dbdan_room_10DL_003780 "__OTR__scenes/nonmq/bdan_scene/bdan_room_10DL_003780" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_10DL_003780[] = dbdan_room_10DL_003780; -#else -static const char bdan_room_10DL_003780[] __attribute__((aligned (2))) = dbdan_room_10DL_003780; -#endif - -#define dbdan_room_10Set_0000A0DL_003780 "__OTR__scenes/nonmq/bdan_scene/bdan_room_10Set_0000A0DL_003780" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_10Set_0000A0DL_003780[] = dbdan_room_10Set_0000A0DL_003780; -#else -static const char bdan_room_10Set_0000A0DL_003780[] __attribute__((aligned (2))) = dbdan_room_10Set_0000A0DL_003780; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_10DL_003780 "__OTR__scenes/nonmq/bdan_scene/bdan_room_10DL_003780" +static const ALIGN_ASSET(2) char bdan_room_10DL_003780[] = dbdan_room_10DL_003780; + +#define dbdan_room_10Set_0000A0DL_003780 "__OTR__scenes/nonmq/bdan_scene/bdan_room_10Set_0000A0DL_003780" +static const ALIGN_ASSET(2) char bdan_room_10Set_0000A0DL_003780[] = dbdan_room_10Set_0000A0DL_003780; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_11.h b/soh/assets/scenes/dungeons/bdan/bdan_room_11.h index 867001b96..35c93519e 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_11.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_11.h @@ -1,16 +1,9 @@ #pragma once -#define dbdan_room_11DL_003958 "__OTR__scenes/nonmq/bdan_scene/bdan_room_11DL_003958" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_11DL_003958[] = dbdan_room_11DL_003958; -#else -static const char bdan_room_11DL_003958[] __attribute__((aligned (2))) = dbdan_room_11DL_003958; -#endif - -#define dbdan_room_11Set_000290DL_003958 "__OTR__scenes/nonmq/bdan_scene/bdan_room_11Set_000290DL_003958" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_11Set_000290DL_003958[] = dbdan_room_11Set_000290DL_003958; -#else -static const char bdan_room_11Set_000290DL_003958[] __attribute__((aligned (2))) = dbdan_room_11Set_000290DL_003958; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_11DL_003958 "__OTR__scenes/nonmq/bdan_scene/bdan_room_11DL_003958" +static const ALIGN_ASSET(2) char bdan_room_11DL_003958[] = dbdan_room_11DL_003958; + +#define dbdan_room_11Set_000290DL_003958 "__OTR__scenes/nonmq/bdan_scene/bdan_room_11Set_000290DL_003958" +static const ALIGN_ASSET(2) char bdan_room_11Set_000290DL_003958[] = dbdan_room_11Set_000290DL_003958; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_12.h b/soh/assets/scenes/dungeons/bdan/bdan_room_12.h index 182d8cb11..5e15f02a4 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_12.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_12.h @@ -1,23 +1,12 @@ #pragma once -#define dbdan_room_12DL_003848 "__OTR__scenes/nonmq/bdan_scene/bdan_room_12DL_003848" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_12DL_003848[] = dbdan_room_12DL_003848; -#else -static const char bdan_room_12DL_003848[] __attribute__((aligned (2))) = dbdan_room_12DL_003848; -#endif - -#define dbdan_room_12Tex_0038E0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_12Tex_0038E0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_12Tex_0038E0[] = dbdan_room_12Tex_0038E0; -#else -static const char bdan_room_12Tex_0038E0[] __attribute__((aligned (2))) = dbdan_room_12Tex_0038E0; -#endif - -#define dbdan_room_12Set_000150DL_003848 "__OTR__scenes/nonmq/bdan_scene/bdan_room_12Set_000150DL_003848" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_12Set_000150DL_003848[] = dbdan_room_12Set_000150DL_003848; -#else -static const char bdan_room_12Set_000150DL_003848[] __attribute__((aligned (2))) = dbdan_room_12Set_000150DL_003848; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_12DL_003848 "__OTR__scenes/nonmq/bdan_scene/bdan_room_12DL_003848" +static const ALIGN_ASSET(2) char bdan_room_12DL_003848[] = dbdan_room_12DL_003848; + +#define dbdan_room_12Tex_0038E0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_12Tex_0038E0" +static const ALIGN_ASSET(2) char bdan_room_12Tex_0038E0[] = dbdan_room_12Tex_0038E0; + +#define dbdan_room_12Set_000150DL_003848 "__OTR__scenes/nonmq/bdan_scene/bdan_room_12Set_000150DL_003848" +static const ALIGN_ASSET(2) char bdan_room_12Set_000150DL_003848[] = dbdan_room_12Set_000150DL_003848; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_13.h b/soh/assets/scenes/dungeons/bdan/bdan_room_13.h index c444d5b69..1389d435f 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_13.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_13.h @@ -1,51 +1,24 @@ #pragma once -#define dbdan_room_13DL_0015A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13DL_0015A8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_13DL_0015A8[] = dbdan_room_13DL_0015A8; -#else -static const char bdan_room_13DL_0015A8[] __attribute__((aligned (2))) = dbdan_room_13DL_0015A8; -#endif - -#define dbdan_room_13Tex_0015B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Tex_0015B8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_13Tex_0015B8[] = dbdan_room_13Tex_0015B8; -#else -static const char bdan_room_13Tex_0015B8[] __attribute__((aligned (2))) = dbdan_room_13Tex_0015B8; -#endif - -#define dbdan_room_13Tex_0021B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Tex_0021B8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_13Tex_0021B8[] = dbdan_room_13Tex_0021B8; -#else -static const char bdan_room_13Tex_0021B8[] __attribute__((aligned (2))) = dbdan_room_13Tex_0021B8; -#endif - -#define dbdan_room_13Tex_001DB8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Tex_001DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_13Tex_001DB8[] = dbdan_room_13Tex_001DB8; -#else -static const char bdan_room_13Tex_001DB8[] __attribute__((aligned (2))) = dbdan_room_13Tex_001DB8; -#endif - -#define dbdan_room_13DL_002B68 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13DL_002B68" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_13DL_002B68[] = dbdan_room_13DL_002B68; -#else -static const char bdan_room_13DL_002B68[] __attribute__((aligned (2))) = dbdan_room_13DL_002B68; -#endif - -#define dbdan_room_13Set_000140DL_0015A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Set_000140DL_0015A8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_13Set_000140DL_0015A8[] = dbdan_room_13Set_000140DL_0015A8; -#else -static const char bdan_room_13Set_000140DL_0015A8[] __attribute__((aligned (2))) = dbdan_room_13Set_000140DL_0015A8; -#endif - -#define dbdan_room_13Set_000140DL_002B68 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Set_000140DL_002B68" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_13Set_000140DL_002B68[] = dbdan_room_13Set_000140DL_002B68; -#else -static const char bdan_room_13Set_000140DL_002B68[] __attribute__((aligned (2))) = dbdan_room_13Set_000140DL_002B68; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_13DL_0015A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13DL_0015A8" +static const ALIGN_ASSET(2) char bdan_room_13DL_0015A8[] = dbdan_room_13DL_0015A8; + +#define dbdan_room_13Tex_0015B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Tex_0015B8" +static const ALIGN_ASSET(2) char bdan_room_13Tex_0015B8[] = dbdan_room_13Tex_0015B8; + +#define dbdan_room_13Tex_0021B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Tex_0021B8" +static const ALIGN_ASSET(2) char bdan_room_13Tex_0021B8[] = dbdan_room_13Tex_0021B8; + +#define dbdan_room_13Tex_001DB8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Tex_001DB8" +static const ALIGN_ASSET(2) char bdan_room_13Tex_001DB8[] = dbdan_room_13Tex_001DB8; + +#define dbdan_room_13DL_002B68 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13DL_002B68" +static const ALIGN_ASSET(2) char bdan_room_13DL_002B68[] = dbdan_room_13DL_002B68; + +#define dbdan_room_13Set_000140DL_0015A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Set_000140DL_0015A8" +static const ALIGN_ASSET(2) char bdan_room_13Set_000140DL_0015A8[] = dbdan_room_13Set_000140DL_0015A8; + +#define dbdan_room_13Set_000140DL_002B68 "__OTR__scenes/nonmq/bdan_scene/bdan_room_13Set_000140DL_002B68" +static const ALIGN_ASSET(2) char bdan_room_13Set_000140DL_002B68[] = dbdan_room_13Set_000140DL_002B68; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_14.h b/soh/assets/scenes/dungeons/bdan/bdan_room_14.h index ef66f39c8..ca05ff8ad 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_14.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_14.h @@ -1,44 +1,21 @@ #pragma once -#define dbdan_room_14DL_0045B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14DL_0045B8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_14DL_0045B8[] = dbdan_room_14DL_0045B8; -#else -static const char bdan_room_14DL_0045B8[] __attribute__((aligned (2))) = dbdan_room_14DL_0045B8; -#endif - -#define dbdan_room_14Tex_0055C8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Tex_0055C8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_14Tex_0055C8[] = dbdan_room_14Tex_0055C8; -#else -static const char bdan_room_14Tex_0055C8[] __attribute__((aligned (2))) = dbdan_room_14Tex_0055C8; -#endif - -#define dbdan_room_14Tex_0059C8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Tex_0059C8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_14Tex_0059C8[] = dbdan_room_14Tex_0059C8; -#else -static const char bdan_room_14Tex_0059C8[] __attribute__((aligned (2))) = dbdan_room_14Tex_0059C8; -#endif - -#define dbdan_room_14Tex_004DC8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Tex_004DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_14Tex_004DC8[] = dbdan_room_14Tex_004DC8; -#else -static const char bdan_room_14Tex_004DC8[] __attribute__((aligned (2))) = dbdan_room_14Tex_004DC8; -#endif - -#define dbdan_room_14Tex_0045C8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Tex_0045C8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_14Tex_0045C8[] = dbdan_room_14Tex_0045C8; -#else -static const char bdan_room_14Tex_0045C8[] __attribute__((aligned (2))) = dbdan_room_14Tex_0045C8; -#endif - -#define dbdan_room_14Set_000190DL_0045B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Set_000190DL_0045B8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_14Set_000190DL_0045B8[] = dbdan_room_14Set_000190DL_0045B8; -#else -static const char bdan_room_14Set_000190DL_0045B8[] __attribute__((aligned (2))) = dbdan_room_14Set_000190DL_0045B8; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_14DL_0045B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14DL_0045B8" +static const ALIGN_ASSET(2) char bdan_room_14DL_0045B8[] = dbdan_room_14DL_0045B8; + +#define dbdan_room_14Tex_0055C8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Tex_0055C8" +static const ALIGN_ASSET(2) char bdan_room_14Tex_0055C8[] = dbdan_room_14Tex_0055C8; + +#define dbdan_room_14Tex_0059C8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Tex_0059C8" +static const ALIGN_ASSET(2) char bdan_room_14Tex_0059C8[] = dbdan_room_14Tex_0059C8; + +#define dbdan_room_14Tex_004DC8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Tex_004DC8" +static const ALIGN_ASSET(2) char bdan_room_14Tex_004DC8[] = dbdan_room_14Tex_004DC8; + +#define dbdan_room_14Tex_0045C8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Tex_0045C8" +static const ALIGN_ASSET(2) char bdan_room_14Tex_0045C8[] = dbdan_room_14Tex_0045C8; + +#define dbdan_room_14Set_000190DL_0045B8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_14Set_000190DL_0045B8" +static const ALIGN_ASSET(2) char bdan_room_14Set_000190DL_0045B8[] = dbdan_room_14Set_000190DL_0045B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_15.h b/soh/assets/scenes/dungeons/bdan/bdan_room_15.h index d9ed506e4..e8b6d04d7 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_15.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_15.h @@ -1,16 +1,9 @@ #pragma once -#define dbdan_room_15DL_002688 "__OTR__scenes/nonmq/bdan_scene/bdan_room_15DL_002688" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_15DL_002688[] = dbdan_room_15DL_002688; -#else -static const char bdan_room_15DL_002688[] __attribute__((aligned (2))) = dbdan_room_15DL_002688; -#endif - -#define dbdan_room_15Set_000080DL_002688 "__OTR__scenes/nonmq/bdan_scene/bdan_room_15Set_000080DL_002688" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_15Set_000080DL_002688[] = dbdan_room_15Set_000080DL_002688; -#else -static const char bdan_room_15Set_000080DL_002688[] __attribute__((aligned (2))) = dbdan_room_15Set_000080DL_002688; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_15DL_002688 "__OTR__scenes/nonmq/bdan_scene/bdan_room_15DL_002688" +static const ALIGN_ASSET(2) char bdan_room_15DL_002688[] = dbdan_room_15DL_002688; + +#define dbdan_room_15Set_000080DL_002688 "__OTR__scenes/nonmq/bdan_scene/bdan_room_15Set_000080DL_002688" +static const ALIGN_ASSET(2) char bdan_room_15Set_000080DL_002688[] = dbdan_room_15Set_000080DL_002688; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_2.h b/soh/assets/scenes/dungeons/bdan/bdan_room_2.h index ec7d66841..9f381541b 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_2.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_2.h @@ -1,44 +1,21 @@ #pragma once -#define dbdan_room_2DL_006DD8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2DL_006DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_2DL_006DD8[] = dbdan_room_2DL_006DD8; -#else -static const char bdan_room_2DL_006DD8[] __attribute__((aligned (2))) = dbdan_room_2DL_006DD8; -#endif - -#define dbdan_room_2Tex_008E38 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Tex_008E38" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_2Tex_008E38[] = dbdan_room_2Tex_008E38; -#else -static const char bdan_room_2Tex_008E38[] __attribute__((aligned (2))) = dbdan_room_2Tex_008E38; -#endif - -#define dbdan_room_2Tex_007E38 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Tex_007E38" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_2Tex_007E38[] = dbdan_room_2Tex_007E38; -#else -static const char bdan_room_2Tex_007E38[] __attribute__((aligned (2))) = dbdan_room_2Tex_007E38; -#endif - -#define dbdan_room_2Tex_008638 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Tex_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_2Tex_008638[] = dbdan_room_2Tex_008638; -#else -static const char bdan_room_2Tex_008638[] __attribute__((aligned (2))) = dbdan_room_2Tex_008638; -#endif - -#define dbdan_room_2Tex_006E38 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Tex_006E38" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_2Tex_006E38[] = dbdan_room_2Tex_006E38; -#else -static const char bdan_room_2Tex_006E38[] __attribute__((aligned (2))) = dbdan_room_2Tex_006E38; -#endif - -#define dbdan_room_2Set_000180DL_006DD8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Set_000180DL_006DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_2Set_000180DL_006DD8[] = dbdan_room_2Set_000180DL_006DD8; -#else -static const char bdan_room_2Set_000180DL_006DD8[] __attribute__((aligned (2))) = dbdan_room_2Set_000180DL_006DD8; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_2DL_006DD8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2DL_006DD8" +static const ALIGN_ASSET(2) char bdan_room_2DL_006DD8[] = dbdan_room_2DL_006DD8; + +#define dbdan_room_2Tex_008E38 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Tex_008E38" +static const ALIGN_ASSET(2) char bdan_room_2Tex_008E38[] = dbdan_room_2Tex_008E38; + +#define dbdan_room_2Tex_007E38 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Tex_007E38" +static const ALIGN_ASSET(2) char bdan_room_2Tex_007E38[] = dbdan_room_2Tex_007E38; + +#define dbdan_room_2Tex_008638 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Tex_008638" +static const ALIGN_ASSET(2) char bdan_room_2Tex_008638[] = dbdan_room_2Tex_008638; + +#define dbdan_room_2Tex_006E38 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Tex_006E38" +static const ALIGN_ASSET(2) char bdan_room_2Tex_006E38[] = dbdan_room_2Tex_006E38; + +#define dbdan_room_2Set_000180DL_006DD8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_2Set_000180DL_006DD8" +static const ALIGN_ASSET(2) char bdan_room_2Set_000180DL_006DD8[] = dbdan_room_2Set_000180DL_006DD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_3.h b/soh/assets/scenes/dungeons/bdan/bdan_room_3.h index e04c0860b..e94478243 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_3.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_3.h @@ -1,65 +1,30 @@ #pragma once -#define dbdan_room_3DL_004858 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3DL_004858" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3DL_004858[] = dbdan_room_3DL_004858; -#else -static const char bdan_room_3DL_004858[] __attribute__((aligned (2))) = dbdan_room_3DL_004858; -#endif - -#define dbdan_room_3Tex_005888 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_005888" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3Tex_005888[] = dbdan_room_3Tex_005888; -#else -static const char bdan_room_3Tex_005888[] __attribute__((aligned (2))) = dbdan_room_3Tex_005888; -#endif - -#define dbdan_room_3Tex_006488 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_006488" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3Tex_006488[] = dbdan_room_3Tex_006488; -#else -static const char bdan_room_3Tex_006488[] __attribute__((aligned (2))) = dbdan_room_3Tex_006488; -#endif - -#define dbdan_room_3Tex_006088 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_006088" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3Tex_006088[] = dbdan_room_3Tex_006088; -#else -static const char bdan_room_3Tex_006088[] __attribute__((aligned (2))) = dbdan_room_3Tex_006088; -#endif - -#define dbdan_room_3Tex_006C88 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_006C88" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3Tex_006C88[] = dbdan_room_3Tex_006C88; -#else -static const char bdan_room_3Tex_006C88[] __attribute__((aligned (2))) = dbdan_room_3Tex_006C88; -#endif - -#define dbdan_room_3Tex_004888 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_004888" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3Tex_004888[] = dbdan_room_3Tex_004888; -#else -static const char bdan_room_3Tex_004888[] __attribute__((aligned (2))) = dbdan_room_3Tex_004888; -#endif - -#define dbdan_room_3DL_007250 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3DL_007250" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3DL_007250[] = dbdan_room_3DL_007250; -#else -static const char bdan_room_3DL_007250[] __attribute__((aligned (2))) = dbdan_room_3DL_007250; -#endif - -#define dbdan_room_3Set_000210DL_004858 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Set_000210DL_004858" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3Set_000210DL_004858[] = dbdan_room_3Set_000210DL_004858; -#else -static const char bdan_room_3Set_000210DL_004858[] __attribute__((aligned (2))) = dbdan_room_3Set_000210DL_004858; -#endif - -#define dbdan_room_3Set_000210DL_007250 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Set_000210DL_007250" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_3Set_000210DL_007250[] = dbdan_room_3Set_000210DL_007250; -#else -static const char bdan_room_3Set_000210DL_007250[] __attribute__((aligned (2))) = dbdan_room_3Set_000210DL_007250; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_3DL_004858 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3DL_004858" +static const ALIGN_ASSET(2) char bdan_room_3DL_004858[] = dbdan_room_3DL_004858; + +#define dbdan_room_3Tex_005888 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_005888" +static const ALIGN_ASSET(2) char bdan_room_3Tex_005888[] = dbdan_room_3Tex_005888; + +#define dbdan_room_3Tex_006488 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_006488" +static const ALIGN_ASSET(2) char bdan_room_3Tex_006488[] = dbdan_room_3Tex_006488; + +#define dbdan_room_3Tex_006088 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_006088" +static const ALIGN_ASSET(2) char bdan_room_3Tex_006088[] = dbdan_room_3Tex_006088; + +#define dbdan_room_3Tex_006C88 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_006C88" +static const ALIGN_ASSET(2) char bdan_room_3Tex_006C88[] = dbdan_room_3Tex_006C88; + +#define dbdan_room_3Tex_004888 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Tex_004888" +static const ALIGN_ASSET(2) char bdan_room_3Tex_004888[] = dbdan_room_3Tex_004888; + +#define dbdan_room_3DL_007250 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3DL_007250" +static const ALIGN_ASSET(2) char bdan_room_3DL_007250[] = dbdan_room_3DL_007250; + +#define dbdan_room_3Set_000210DL_004858 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Set_000210DL_004858" +static const ALIGN_ASSET(2) char bdan_room_3Set_000210DL_004858[] = dbdan_room_3Set_000210DL_004858; + +#define dbdan_room_3Set_000210DL_007250 "__OTR__scenes/nonmq/bdan_scene/bdan_room_3Set_000210DL_007250" +static const ALIGN_ASSET(2) char bdan_room_3Set_000210DL_007250[] = dbdan_room_3Set_000210DL_007250; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_4.h b/soh/assets/scenes/dungeons/bdan/bdan_room_4.h index 26d38587e..d9da7782f 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_4.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_4.h @@ -1,51 +1,24 @@ #pragma once -#define dbdan_room_4DL_002B20 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4DL_002B20" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_4DL_002B20[] = dbdan_room_4DL_002B20; -#else -static const char bdan_room_4DL_002B20[] __attribute__((aligned (2))) = dbdan_room_4DL_002B20; -#endif - -#define dbdan_room_4Tex_002B30 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Tex_002B30" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_4Tex_002B30[] = dbdan_room_4Tex_002B30; -#else -static const char bdan_room_4Tex_002B30[] __attribute__((aligned (2))) = dbdan_room_4Tex_002B30; -#endif - -#define dbdan_room_4Tex_002F30 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Tex_002F30" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_4Tex_002F30[] = dbdan_room_4Tex_002F30; -#else -static const char bdan_room_4Tex_002F30[] __attribute__((aligned (2))) = dbdan_room_4Tex_002F30; -#endif - -#define dbdan_room_4Tex_003730 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Tex_003730" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_4Tex_003730[] = dbdan_room_4Tex_003730; -#else -static const char bdan_room_4Tex_003730[] __attribute__((aligned (2))) = dbdan_room_4Tex_003730; -#endif - -#define dbdan_room_4DL_0040F0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_4DL_0040F0[] = dbdan_room_4DL_0040F0; -#else -static const char bdan_room_4DL_0040F0[] __attribute__((aligned (2))) = dbdan_room_4DL_0040F0; -#endif - -#define dbdan_room_4Set_000170DL_002B20 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Set_000170DL_002B20" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_4Set_000170DL_002B20[] = dbdan_room_4Set_000170DL_002B20; -#else -static const char bdan_room_4Set_000170DL_002B20[] __attribute__((aligned (2))) = dbdan_room_4Set_000170DL_002B20; -#endif - -#define dbdan_room_4Set_000170DL_0040F0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Set_000170DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_4Set_000170DL_0040F0[] = dbdan_room_4Set_000170DL_0040F0; -#else -static const char bdan_room_4Set_000170DL_0040F0[] __attribute__((aligned (2))) = dbdan_room_4Set_000170DL_0040F0; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_4DL_002B20 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4DL_002B20" +static const ALIGN_ASSET(2) char bdan_room_4DL_002B20[] = dbdan_room_4DL_002B20; + +#define dbdan_room_4Tex_002B30 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Tex_002B30" +static const ALIGN_ASSET(2) char bdan_room_4Tex_002B30[] = dbdan_room_4Tex_002B30; + +#define dbdan_room_4Tex_002F30 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Tex_002F30" +static const ALIGN_ASSET(2) char bdan_room_4Tex_002F30[] = dbdan_room_4Tex_002F30; + +#define dbdan_room_4Tex_003730 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Tex_003730" +static const ALIGN_ASSET(2) char bdan_room_4Tex_003730[] = dbdan_room_4Tex_003730; + +#define dbdan_room_4DL_0040F0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4DL_0040F0" +static const ALIGN_ASSET(2) char bdan_room_4DL_0040F0[] = dbdan_room_4DL_0040F0; + +#define dbdan_room_4Set_000170DL_002B20 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Set_000170DL_002B20" +static const ALIGN_ASSET(2) char bdan_room_4Set_000170DL_002B20[] = dbdan_room_4Set_000170DL_002B20; + +#define dbdan_room_4Set_000170DL_0040F0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_4Set_000170DL_0040F0" +static const ALIGN_ASSET(2) char bdan_room_4Set_000170DL_0040F0[] = dbdan_room_4Set_000170DL_0040F0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_5.h b/soh/assets/scenes/dungeons/bdan/bdan_room_5.h index 3bdc1b8e5..50620148e 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_5.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_5.h @@ -1,65 +1,30 @@ #pragma once -#define dbdan_room_5DL_002498 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5DL_002498" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5DL_002498[] = dbdan_room_5DL_002498; -#else -static const char bdan_room_5DL_002498[] __attribute__((aligned (2))) = dbdan_room_5DL_002498; -#endif - -#define dbdan_room_5Tex_0024A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_0024A8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5Tex_0024A8[] = dbdan_room_5Tex_0024A8; -#else -static const char bdan_room_5Tex_0024A8[] __attribute__((aligned (2))) = dbdan_room_5Tex_0024A8; -#endif - -#define dbdan_room_5Tex_0030A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_0030A8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5Tex_0030A8[] = dbdan_room_5Tex_0030A8; -#else -static const char bdan_room_5Tex_0030A8[] __attribute__((aligned (2))) = dbdan_room_5Tex_0030A8; -#endif - -#define dbdan_room_5Tex_0028A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_0028A8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5Tex_0028A8[] = dbdan_room_5Tex_0028A8; -#else -static const char bdan_room_5Tex_0028A8[] __attribute__((aligned (2))) = dbdan_room_5Tex_0028A8; -#endif - -#define dbdan_room_5DL_004070 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5DL_004070" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5DL_004070[] = dbdan_room_5DL_004070; -#else -static const char bdan_room_5DL_004070[] __attribute__((aligned (2))) = dbdan_room_5DL_004070; -#endif - -#define dbdan_room_5Tex_005090 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_005090" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5Tex_005090[] = dbdan_room_5Tex_005090; -#else -static const char bdan_room_5Tex_005090[] __attribute__((aligned (2))) = dbdan_room_5Tex_005090; -#endif - -#define dbdan_room_5Tex_004090 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_004090" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5Tex_004090[] = dbdan_room_5Tex_004090; -#else -static const char bdan_room_5Tex_004090[] __attribute__((aligned (2))) = dbdan_room_5Tex_004090; -#endif - -#define dbdan_room_5Set_000180DL_002498 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Set_000180DL_002498" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5Set_000180DL_002498[] = dbdan_room_5Set_000180DL_002498; -#else -static const char bdan_room_5Set_000180DL_002498[] __attribute__((aligned (2))) = dbdan_room_5Set_000180DL_002498; -#endif - -#define dbdan_room_5Set_000180DL_004070 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Set_000180DL_004070" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_5Set_000180DL_004070[] = dbdan_room_5Set_000180DL_004070; -#else -static const char bdan_room_5Set_000180DL_004070[] __attribute__((aligned (2))) = dbdan_room_5Set_000180DL_004070; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_5DL_002498 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5DL_002498" +static const ALIGN_ASSET(2) char bdan_room_5DL_002498[] = dbdan_room_5DL_002498; + +#define dbdan_room_5Tex_0024A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_0024A8" +static const ALIGN_ASSET(2) char bdan_room_5Tex_0024A8[] = dbdan_room_5Tex_0024A8; + +#define dbdan_room_5Tex_0030A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_0030A8" +static const ALIGN_ASSET(2) char bdan_room_5Tex_0030A8[] = dbdan_room_5Tex_0030A8; + +#define dbdan_room_5Tex_0028A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_0028A8" +static const ALIGN_ASSET(2) char bdan_room_5Tex_0028A8[] = dbdan_room_5Tex_0028A8; + +#define dbdan_room_5DL_004070 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5DL_004070" +static const ALIGN_ASSET(2) char bdan_room_5DL_004070[] = dbdan_room_5DL_004070; + +#define dbdan_room_5Tex_005090 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_005090" +static const ALIGN_ASSET(2) char bdan_room_5Tex_005090[] = dbdan_room_5Tex_005090; + +#define dbdan_room_5Tex_004090 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Tex_004090" +static const ALIGN_ASSET(2) char bdan_room_5Tex_004090[] = dbdan_room_5Tex_004090; + +#define dbdan_room_5Set_000180DL_002498 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Set_000180DL_002498" +static const ALIGN_ASSET(2) char bdan_room_5Set_000180DL_002498[] = dbdan_room_5Set_000180DL_002498; + +#define dbdan_room_5Set_000180DL_004070 "__OTR__scenes/nonmq/bdan_scene/bdan_room_5Set_000180DL_004070" +static const ALIGN_ASSET(2) char bdan_room_5Set_000180DL_004070[] = dbdan_room_5Set_000180DL_004070; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_6.h b/soh/assets/scenes/dungeons/bdan/bdan_room_6.h index 407b02a6e..53cc1583f 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_6.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_6.h @@ -1,44 +1,21 @@ #pragma once -#define dbdan_room_6DL_003048 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_6DL_003048[] = dbdan_room_6DL_003048; -#else -static const char bdan_room_6DL_003048[] __attribute__((aligned (2))) = dbdan_room_6DL_003048; -#endif - -#define dbdan_room_6Tex_003068 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6Tex_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_6Tex_003068[] = dbdan_room_6Tex_003068; -#else -static const char bdan_room_6Tex_003068[] __attribute__((aligned (2))) = dbdan_room_6Tex_003068; -#endif - -#define dbdan_room_6Tex_003868 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6Tex_003868" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_6Tex_003868[] = dbdan_room_6Tex_003868; -#else -static const char bdan_room_6Tex_003868[] __attribute__((aligned (2))) = dbdan_room_6Tex_003868; -#endif - -#define dbdan_room_6DL_004230 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6DL_004230" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_6DL_004230[] = dbdan_room_6DL_004230; -#else -static const char bdan_room_6DL_004230[] __attribute__((aligned (2))) = dbdan_room_6DL_004230; -#endif - -#define dbdan_room_6Set_000120DL_003048 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6Set_000120DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_6Set_000120DL_003048[] = dbdan_room_6Set_000120DL_003048; -#else -static const char bdan_room_6Set_000120DL_003048[] __attribute__((aligned (2))) = dbdan_room_6Set_000120DL_003048; -#endif - -#define dbdan_room_6Set_000120DL_004230 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6Set_000120DL_004230" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_6Set_000120DL_004230[] = dbdan_room_6Set_000120DL_004230; -#else -static const char bdan_room_6Set_000120DL_004230[] __attribute__((aligned (2))) = dbdan_room_6Set_000120DL_004230; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_6DL_003048 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6DL_003048" +static const ALIGN_ASSET(2) char bdan_room_6DL_003048[] = dbdan_room_6DL_003048; + +#define dbdan_room_6Tex_003068 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6Tex_003068" +static const ALIGN_ASSET(2) char bdan_room_6Tex_003068[] = dbdan_room_6Tex_003068; + +#define dbdan_room_6Tex_003868 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6Tex_003868" +static const ALIGN_ASSET(2) char bdan_room_6Tex_003868[] = dbdan_room_6Tex_003868; + +#define dbdan_room_6DL_004230 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6DL_004230" +static const ALIGN_ASSET(2) char bdan_room_6DL_004230[] = dbdan_room_6DL_004230; + +#define dbdan_room_6Set_000120DL_003048 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6Set_000120DL_003048" +static const ALIGN_ASSET(2) char bdan_room_6Set_000120DL_003048[] = dbdan_room_6Set_000120DL_003048; + +#define dbdan_room_6Set_000120DL_004230 "__OTR__scenes/nonmq/bdan_scene/bdan_room_6Set_000120DL_004230" +static const ALIGN_ASSET(2) char bdan_room_6Set_000120DL_004230[] = dbdan_room_6Set_000120DL_004230; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_7.h b/soh/assets/scenes/dungeons/bdan/bdan_room_7.h index 60ccf1fc1..23d804eb0 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_7.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_7.h @@ -1,30 +1,15 @@ #pragma once -#define dbdan_room_7DL_002CB8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_7DL_002CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_7DL_002CB8[] = dbdan_room_7DL_002CB8; -#else -static const char bdan_room_7DL_002CB8[] __attribute__((aligned (2))) = dbdan_room_7DL_002CB8; -#endif - -#define dbdan_room_7Tex_002CD0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_7Tex_002CD0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_7Tex_002CD0[] = dbdan_room_7Tex_002CD0; -#else -static const char bdan_room_7Tex_002CD0[] __attribute__((aligned (2))) = dbdan_room_7Tex_002CD0; -#endif - -#define dbdan_room_7Tex_0030D0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_7Tex_0030D0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_7Tex_0030D0[] = dbdan_room_7Tex_0030D0; -#else -static const char bdan_room_7Tex_0030D0[] __attribute__((aligned (2))) = dbdan_room_7Tex_0030D0; -#endif - -#define dbdan_room_7Set_000150DL_002CB8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_7Set_000150DL_002CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_7Set_000150DL_002CB8[] = dbdan_room_7Set_000150DL_002CB8; -#else -static const char bdan_room_7Set_000150DL_002CB8[] __attribute__((aligned (2))) = dbdan_room_7Set_000150DL_002CB8; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_7DL_002CB8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_7DL_002CB8" +static const ALIGN_ASSET(2) char bdan_room_7DL_002CB8[] = dbdan_room_7DL_002CB8; + +#define dbdan_room_7Tex_002CD0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_7Tex_002CD0" +static const ALIGN_ASSET(2) char bdan_room_7Tex_002CD0[] = dbdan_room_7Tex_002CD0; + +#define dbdan_room_7Tex_0030D0 "__OTR__scenes/nonmq/bdan_scene/bdan_room_7Tex_0030D0" +static const ALIGN_ASSET(2) char bdan_room_7Tex_0030D0[] = dbdan_room_7Tex_0030D0; + +#define dbdan_room_7Set_000150DL_002CB8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_7Set_000150DL_002CB8" +static const ALIGN_ASSET(2) char bdan_room_7Set_000150DL_002CB8[] = dbdan_room_7Set_000150DL_002CB8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_8.h b/soh/assets/scenes/dungeons/bdan/bdan_room_8.h index d3121681f..22ac558d0 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_8.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_8.h @@ -1,16 +1,9 @@ #pragma once -#define dbdan_room_8DL_0037A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_8DL_0037A8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_8DL_0037A8[] = dbdan_room_8DL_0037A8; -#else -static const char bdan_room_8DL_0037A8[] __attribute__((aligned (2))) = dbdan_room_8DL_0037A8; -#endif - -#define dbdan_room_8Set_0000A0DL_0037A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_8Set_0000A0DL_0037A8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_8Set_0000A0DL_0037A8[] = dbdan_room_8Set_0000A0DL_0037A8; -#else -static const char bdan_room_8Set_0000A0DL_0037A8[] __attribute__((aligned (2))) = dbdan_room_8Set_0000A0DL_0037A8; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_8DL_0037A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_8DL_0037A8" +static const ALIGN_ASSET(2) char bdan_room_8DL_0037A8[] = dbdan_room_8DL_0037A8; + +#define dbdan_room_8Set_0000A0DL_0037A8 "__OTR__scenes/nonmq/bdan_scene/bdan_room_8Set_0000A0DL_0037A8" +static const ALIGN_ASSET(2) char bdan_room_8Set_0000A0DL_0037A8[] = dbdan_room_8Set_0000A0DL_0037A8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_room_9.h b/soh/assets/scenes/dungeons/bdan/bdan_room_9.h index da1f6e9c5..990ed82e7 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_room_9.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_room_9.h @@ -1,23 +1,12 @@ #pragma once -#define dbdan_room_9DL_003790 "__OTR__scenes/nonmq/bdan_scene/bdan_room_9DL_003790" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_9DL_003790[] = dbdan_room_9DL_003790; -#else -static const char bdan_room_9DL_003790[] __attribute__((aligned (2))) = dbdan_room_9DL_003790; -#endif - -#define dbdan_room_9Tex_003828 "__OTR__scenes/nonmq/bdan_scene/bdan_room_9Tex_003828" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_9Tex_003828[] = dbdan_room_9Tex_003828; -#else -static const char bdan_room_9Tex_003828[] __attribute__((aligned (2))) = dbdan_room_9Tex_003828; -#endif - -#define dbdan_room_9Set_0000A0DL_003790 "__OTR__scenes/nonmq/bdan_scene/bdan_room_9Set_0000A0DL_003790" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_room_9Set_0000A0DL_003790[] = dbdan_room_9Set_0000A0DL_003790; -#else -static const char bdan_room_9Set_0000A0DL_003790[] __attribute__((aligned (2))) = dbdan_room_9Set_0000A0DL_003790; -#endif - +#include "align_asset_macro.h" + +#define dbdan_room_9DL_003790 "__OTR__scenes/nonmq/bdan_scene/bdan_room_9DL_003790" +static const ALIGN_ASSET(2) char bdan_room_9DL_003790[] = dbdan_room_9DL_003790; + +#define dbdan_room_9Tex_003828 "__OTR__scenes/nonmq/bdan_scene/bdan_room_9Tex_003828" +static const ALIGN_ASSET(2) char bdan_room_9Tex_003828[] = dbdan_room_9Tex_003828; + +#define dbdan_room_9Set_0000A0DL_003790 "__OTR__scenes/nonmq/bdan_scene/bdan_room_9Set_0000A0DL_003790" +static const ALIGN_ASSET(2) char bdan_room_9Set_0000A0DL_003790[] = dbdan_room_9Set_0000A0DL_003790; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan/bdan_scene.h b/soh/assets/scenes/dungeons/bdan/bdan_scene.h index a74bc76d5..bde3ef908 100644 --- a/soh/assets/scenes/dungeons/bdan/bdan_scene.h +++ b/soh/assets/scenes/dungeons/bdan/bdan_scene.h @@ -1,59 +1,29 @@ #pragma once -#define dgJabuJabuIntroCs "__OTR__scenes/nonmq/bdan_scene/gJabuJabuIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuIntroCs[] = dgJabuJabuIntroCs; -#else -static const char gJabuJabuIntroCs[] __attribute__((aligned (2))) = dgJabuJabuIntroCs; -#endif - -#define dbdan_sceneCollisionHeader_013074 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneCollisionHeader_013074" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_sceneCollisionHeader_013074[] = dbdan_sceneCollisionHeader_013074; -#else -static const char bdan_sceneCollisionHeader_013074[] __attribute__((aligned (2))) = dbdan_sceneCollisionHeader_013074; -#endif - -#define dbdan_sceneTLUT_013BF8 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTLUT_013BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_sceneTLUT_013BF8[] = dbdan_sceneTLUT_013BF8; -#else -static const char bdan_sceneTLUT_013BF8[] __attribute__((aligned (2))) = dbdan_sceneTLUT_013BF8; -#endif - -#define dbdan_sceneTex_015200 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTex_015200" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_sceneTex_015200[] = dbdan_sceneTex_015200; -#else -static const char bdan_sceneTex_015200[] __attribute__((aligned (2))) = dbdan_sceneTex_015200; -#endif - -#define dbdan_sceneTLUT_0139F0 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTLUT_0139F0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_sceneTLUT_0139F0[] = dbdan_sceneTLUT_0139F0; -#else -static const char bdan_sceneTLUT_0139F0[] __attribute__((aligned (2))) = dbdan_sceneTLUT_0139F0; -#endif - -#define dbdan_sceneTex_014A00 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTex_014A00" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_sceneTex_014A00[] = dbdan_sceneTex_014A00; -#else -static const char bdan_sceneTex_014A00[] __attribute__((aligned (2))) = dbdan_sceneTex_014A00; -#endif - -#define dbdan_sceneTex_014600 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTex_014600" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_sceneTex_014600[] = dbdan_sceneTex_014600; -#else -static const char bdan_sceneTex_014600[] __attribute__((aligned (2))) = dbdan_sceneTex_014600; -#endif - -#define dbdan_sceneTex_013E00 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTex_013E00" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_sceneTex_013E00[] = dbdan_sceneTex_013E00; -#else -static const char bdan_sceneTex_013E00[] __attribute__((aligned (2))) = dbdan_sceneTex_013E00; -#endif - -#define dbdan_sceneCollisionHeader_013074 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneCollisionHeader_013074" +#include "align_asset_macro.h" + +#define dgJabuJabuIntroCs "__OTR__scenes/nonmq/bdan_scene/gJabuJabuIntroCs" +static const ALIGN_ASSET(2) char gJabuJabuIntroCs[] = dgJabuJabuIntroCs; + +#define dbdan_sceneCollisionHeader_013074 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneCollisionHeader_013074" +static const ALIGN_ASSET(2) char bdan_sceneCollisionHeader_013074[] = dbdan_sceneCollisionHeader_013074; + +#define dbdan_sceneTLUT_013BF8 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTLUT_013BF8" +static const ALIGN_ASSET(2) char bdan_sceneTLUT_013BF8[] = dbdan_sceneTLUT_013BF8; + +#define dbdan_sceneTex_015200 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTex_015200" +static const ALIGN_ASSET(2) char bdan_sceneTex_015200[] = dbdan_sceneTex_015200; + +#define dbdan_sceneTLUT_0139F0 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTLUT_0139F0" +static const ALIGN_ASSET(2) char bdan_sceneTLUT_0139F0[] = dbdan_sceneTLUT_0139F0; + +#define dbdan_sceneTex_014A00 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTex_014A00" +static const ALIGN_ASSET(2) char bdan_sceneTex_014A00[] = dbdan_sceneTex_014A00; + +#define dbdan_sceneTex_014600 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTex_014600" +static const ALIGN_ASSET(2) char bdan_sceneTex_014600[] = dbdan_sceneTex_014600; + +#define dbdan_sceneTex_013E00 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneTex_013E00" +static const ALIGN_ASSET(2) char bdan_sceneTex_013E00[] = dbdan_sceneTex_013E00; + +#define dbdan_sceneCollisionHeader_013074 "__OTR__scenes/nonmq/bdan_scene/bdan_sceneCollisionHeader_013074" \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_room_0.h b/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_room_0.h index 765cf8190..b285c81fd 100644 --- a/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_room_0.h +++ b/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_room_0.h @@ -1,44 +1,21 @@ #pragma once -#define dbdan_boss_room_0DL_001E28 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0DL_001E28" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_0DL_001E28[] = dbdan_boss_room_0DL_001E28; -#else -static const char bdan_boss_room_0DL_001E28[] __attribute__((aligned (2))) = dbdan_boss_room_0DL_001E28; -#endif - -#define dbdan_boss_room_0Tex_002040 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0Tex_002040" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_0Tex_002040[] = dbdan_boss_room_0Tex_002040; -#else -static const char bdan_boss_room_0Tex_002040[] __attribute__((aligned (2))) = dbdan_boss_room_0Tex_002040; -#endif - -#define dbdan_boss_room_0TLUT_001E38 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0TLUT_001E38" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_0TLUT_001E38[] = dbdan_boss_room_0TLUT_001E38; -#else -static const char bdan_boss_room_0TLUT_001E38[] __attribute__((aligned (2))) = dbdan_boss_room_0TLUT_001E38; -#endif - -#define dbdan_boss_room_0DL_002A00 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0DL_002A00" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_0DL_002A00[] = dbdan_boss_room_0DL_002A00; -#else -static const char bdan_boss_room_0DL_002A00[] __attribute__((aligned (2))) = dbdan_boss_room_0DL_002A00; -#endif - -#define dbdan_boss_room_0Tex_002C18 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0Tex_002C18" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_0Tex_002C18[] = dbdan_boss_room_0Tex_002C18; -#else -static const char bdan_boss_room_0Tex_002C18[] __attribute__((aligned (2))) = dbdan_boss_room_0Tex_002C18; -#endif - -#define dbdan_boss_room_0TLUT_002A10 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0TLUT_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_0TLUT_002A10[] = dbdan_boss_room_0TLUT_002A10; -#else -static const char bdan_boss_room_0TLUT_002A10[] __attribute__((aligned (2))) = dbdan_boss_room_0TLUT_002A10; -#endif - +#include "align_asset_macro.h" + +#define dbdan_boss_room_0DL_001E28 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0DL_001E28" +static const ALIGN_ASSET(2) char bdan_boss_room_0DL_001E28[] = dbdan_boss_room_0DL_001E28; + +#define dbdan_boss_room_0Tex_002040 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0Tex_002040" +static const ALIGN_ASSET(2) char bdan_boss_room_0Tex_002040[] = dbdan_boss_room_0Tex_002040; + +#define dbdan_boss_room_0TLUT_001E38 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0TLUT_001E38" +static const ALIGN_ASSET(2) char bdan_boss_room_0TLUT_001E38[] = dbdan_boss_room_0TLUT_001E38; + +#define dbdan_boss_room_0DL_002A00 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0DL_002A00" +static const ALIGN_ASSET(2) char bdan_boss_room_0DL_002A00[] = dbdan_boss_room_0DL_002A00; + +#define dbdan_boss_room_0Tex_002C18 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0Tex_002C18" +static const ALIGN_ASSET(2) char bdan_boss_room_0Tex_002C18[] = dbdan_boss_room_0Tex_002C18; + +#define dbdan_boss_room_0TLUT_002A10 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_0TLUT_002A10" +static const ALIGN_ASSET(2) char bdan_boss_room_0TLUT_002A10[] = dbdan_boss_room_0TLUT_002A10; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_room_1.h b/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_room_1.h index 213011118..92ef83709 100644 --- a/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_room_1.h +++ b/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_room_1.h @@ -1,37 +1,18 @@ #pragma once -#define dbdan_boss_room_1DL_003A58 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1DL_003A58" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_1DL_003A58[] = dbdan_boss_room_1DL_003A58; -#else -static const char bdan_boss_room_1DL_003A58[] __attribute__((aligned (2))) = dbdan_boss_room_1DL_003A58; -#endif - -#define dbdan_boss_room_1Tex_0048B8 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1Tex_0048B8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_1Tex_0048B8[] = dbdan_boss_room_1Tex_0048B8; -#else -static const char bdan_boss_room_1Tex_0048B8[] __attribute__((aligned (2))) = dbdan_boss_room_1Tex_0048B8; -#endif - -#define dbdan_boss_room_1TLUT_003AB0 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1TLUT_003AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_1TLUT_003AB0[] = dbdan_boss_room_1TLUT_003AB0; -#else -static const char bdan_boss_room_1TLUT_003AB0[] __attribute__((aligned (2))) = dbdan_boss_room_1TLUT_003AB0; -#endif - -#define dbdan_boss_room_1Tex_0044B8 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1Tex_0044B8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_1Tex_0044B8[] = dbdan_boss_room_1Tex_0044B8; -#else -static const char bdan_boss_room_1Tex_0044B8[] __attribute__((aligned (2))) = dbdan_boss_room_1Tex_0044B8; -#endif - -#define dbdan_boss_room_1Tex_003CB8 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1Tex_003CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_room_1Tex_003CB8[] = dbdan_boss_room_1Tex_003CB8; -#else -static const char bdan_boss_room_1Tex_003CB8[] __attribute__((aligned (2))) = dbdan_boss_room_1Tex_003CB8; -#endif - +#include "align_asset_macro.h" + +#define dbdan_boss_room_1DL_003A58 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1DL_003A58" +static const ALIGN_ASSET(2) char bdan_boss_room_1DL_003A58[] = dbdan_boss_room_1DL_003A58; + +#define dbdan_boss_room_1Tex_0048B8 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1Tex_0048B8" +static const ALIGN_ASSET(2) char bdan_boss_room_1Tex_0048B8[] = dbdan_boss_room_1Tex_0048B8; + +#define dbdan_boss_room_1TLUT_003AB0 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1TLUT_003AB0" +static const ALIGN_ASSET(2) char bdan_boss_room_1TLUT_003AB0[] = dbdan_boss_room_1TLUT_003AB0; + +#define dbdan_boss_room_1Tex_0044B8 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1Tex_0044B8" +static const ALIGN_ASSET(2) char bdan_boss_room_1Tex_0044B8[] = dbdan_boss_room_1Tex_0044B8; + +#define dbdan_boss_room_1Tex_003CB8 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_room_1Tex_003CB8" +static const ALIGN_ASSET(2) char bdan_boss_room_1Tex_003CB8[] = dbdan_boss_room_1Tex_003CB8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_scene.h b/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_scene.h index 465ebd677..c9ea990c7 100644 --- a/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_scene.h +++ b/soh/assets/scenes/dungeons/bdan_boss/bdan_boss_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dbdan_boss_sceneCollisionHeader_000E14 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_sceneCollisionHeader_000E14" -#ifdef _WIN32 -static const __declspec(align(2)) char bdan_boss_sceneCollisionHeader_000E14[] = dbdan_boss_sceneCollisionHeader_000E14; -#else -static const char bdan_boss_sceneCollisionHeader_000E14[] __attribute__((aligned (2))) = dbdan_boss_sceneCollisionHeader_000E14; -#endif - +#include "align_asset_macro.h" + +#define dbdan_boss_sceneCollisionHeader_000E14 "__OTR__scenes/nonmq/bdan_boss_scene/bdan_boss_sceneCollisionHeader_000E14" +static const ALIGN_ASSET(2) char bdan_boss_sceneCollisionHeader_000E14[] = dbdan_boss_sceneCollisionHeader_000E14; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_0.h b/soh/assets/scenes/dungeons/ddan/ddan_room_0.h index a4f574f36..571df87bc 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_0.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_0.h @@ -1,296 +1,129 @@ #pragma once -#define dddan_room_0DL_000D98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_000D98" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_000D98[] = dddan_room_0DL_000D98; -#else -static const char ddan_room_0DL_000D98[] __attribute__((aligned (2))) = dddan_room_0DL_000D98; -#endif - -#define dddan_room_0Tex_018C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_018C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_018C98[] = dddan_room_0Tex_018C98; -#else -static const char ddan_room_0Tex_018C98[] __attribute__((aligned (2))) = dddan_room_0Tex_018C98; -#endif - -#define dddan_room_0Tex_011898 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_011898" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_011898[] = dddan_room_0Tex_011898; -#else -static const char ddan_room_0Tex_011898[] __attribute__((aligned (2))) = dddan_room_0Tex_011898; -#endif - -#define dddan_room_0Tex_01B498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_01B498" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_01B498[] = dddan_room_0Tex_01B498; -#else -static const char ddan_room_0Tex_01B498[] __attribute__((aligned (2))) = dddan_room_0Tex_01B498; -#endif - -#define dddan_room_0DL_001710 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_001710" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_001710[] = dddan_room_0DL_001710; -#else -static const char ddan_room_0DL_001710[] __attribute__((aligned (2))) = dddan_room_0DL_001710; -#endif - -#define dddan_room_0Tex_016898 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_016898" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_016898[] = dddan_room_0Tex_016898; -#else -static const char ddan_room_0Tex_016898[] __attribute__((aligned (2))) = dddan_room_0Tex_016898; -#endif - -#define dddan_room_0DL_0021E0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_0021E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_0021E0[] = dddan_room_0DL_0021E0; -#else -static const char ddan_room_0DL_0021E0[] __attribute__((aligned (2))) = dddan_room_0DL_0021E0; -#endif - -#define dddan_room_0Tex_012498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_012498" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_012498[] = dddan_room_0Tex_012498; -#else -static const char ddan_room_0Tex_012498[] __attribute__((aligned (2))) = dddan_room_0Tex_012498; -#endif - -#define dddan_room_0Tex_018498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_018498" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_018498[] = dddan_room_0Tex_018498; -#else -static const char ddan_room_0Tex_018498[] __attribute__((aligned (2))) = dddan_room_0Tex_018498; -#endif - -#define dddan_room_0DL_002F28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_002F28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_002F28[] = dddan_room_0DL_002F28; -#else -static const char ddan_room_0DL_002F28[] __attribute__((aligned (2))) = dddan_room_0DL_002F28; -#endif - -#define dddan_room_0DL_004110 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_004110" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_004110[] = dddan_room_0DL_004110; -#else -static const char ddan_room_0DL_004110[] __attribute__((aligned (2))) = dddan_room_0DL_004110; -#endif - -#define dddan_room_0Tex_015C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_015C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_015C98[] = dddan_room_0Tex_015C98; -#else -static const char ddan_room_0Tex_015C98[] __attribute__((aligned (2))) = dddan_room_0Tex_015C98; -#endif - -#define dddan_room_0DL_0050A8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_0050A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_0050A8[] = dddan_room_0DL_0050A8; -#else -static const char ddan_room_0DL_0050A8[] __attribute__((aligned (2))) = dddan_room_0DL_0050A8; -#endif - -#define dddan_room_0DL_006588 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_006588" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_006588[] = dddan_room_0DL_006588; -#else -static const char ddan_room_0DL_006588[] __attribute__((aligned (2))) = dddan_room_0DL_006588; -#endif - -#define dddan_room_0Tex_017898 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_017898" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_017898[] = dddan_room_0Tex_017898; -#else -static const char ddan_room_0Tex_017898[] __attribute__((aligned (2))) = dddan_room_0Tex_017898; -#endif - -#define dddan_room_0Tex_016498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_016498" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_016498[] = dddan_room_0Tex_016498; -#else -static const char ddan_room_0Tex_016498[] __attribute__((aligned (2))) = dddan_room_0Tex_016498; -#endif - -#define dddan_room_0TLUT_011290 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0TLUT_011290" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0TLUT_011290[] = dddan_room_0TLUT_011290; -#else -static const char ddan_room_0TLUT_011290[] __attribute__((aligned (2))) = dddan_room_0TLUT_011290; -#endif - -#define dddan_room_0DL_0072B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_0072B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_0072B8[] = dddan_room_0DL_0072B8; -#else -static const char ddan_room_0DL_0072B8[] __attribute__((aligned (2))) = dddan_room_0DL_0072B8; -#endif - -#define dddan_room_0DL_007E68 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_007E68" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_007E68[] = dddan_room_0DL_007E68; -#else -static const char ddan_room_0DL_007E68[] __attribute__((aligned (2))) = dddan_room_0DL_007E68; -#endif - -#define dddan_room_0Tex_011498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_011498" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_011498[] = dddan_room_0Tex_011498; -#else -static const char ddan_room_0Tex_011498[] __attribute__((aligned (2))) = dddan_room_0Tex_011498; -#endif - -#define dddan_room_0DL_009110 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_009110" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_009110[] = dddan_room_0DL_009110; -#else -static const char ddan_room_0DL_009110[] __attribute__((aligned (2))) = dddan_room_0DL_009110; -#endif - -#define dddan_room_0DL_00A0B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00A0B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_00A0B8[] = dddan_room_0DL_00A0B8; -#else -static const char ddan_room_0DL_00A0B8[] __attribute__((aligned (2))) = dddan_room_0DL_00A0B8; -#endif - -#define dddan_room_0DL_00AE68 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00AE68" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_00AE68[] = dddan_room_0DL_00AE68; -#else -static const char ddan_room_0DL_00AE68[] __attribute__((aligned (2))) = dddan_room_0DL_00AE68; -#endif - -#define dddan_room_0Tex_017098 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_017098" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_017098[] = dddan_room_0Tex_017098; -#else -static const char ddan_room_0Tex_017098[] __attribute__((aligned (2))) = dddan_room_0Tex_017098; -#endif - -#define dddan_room_0DL_00B520 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_00B520[] = dddan_room_0DL_00B520; -#else -static const char ddan_room_0DL_00B520[] __attribute__((aligned (2))) = dddan_room_0DL_00B520; -#endif - -#define dddan_room_0DL_00BE80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00BE80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_00BE80[] = dddan_room_0DL_00BE80; -#else -static const char ddan_room_0DL_00BE80[] __attribute__((aligned (2))) = dddan_room_0DL_00BE80; -#endif - -#define dddan_room_0DL_00C518 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00C518" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_00C518[] = dddan_room_0DL_00C518; -#else -static const char ddan_room_0DL_00C518[] __attribute__((aligned (2))) = dddan_room_0DL_00C518; -#endif - -#define dddan_room_0DL_00CD38 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00CD38" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_00CD38[] = dddan_room_0DL_00CD38; -#else -static const char ddan_room_0DL_00CD38[] __attribute__((aligned (2))) = dddan_room_0DL_00CD38; -#endif - -#define dddan_room_0Tex_013C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_013C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_013C98[] = dddan_room_0Tex_013C98; -#else -static const char ddan_room_0Tex_013C98[] __attribute__((aligned (2))) = dddan_room_0Tex_013C98; -#endif - -#define dddan_room_0Tex_011C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_011C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_011C98[] = dddan_room_0Tex_011C98; -#else -static const char ddan_room_0Tex_011C98[] __attribute__((aligned (2))) = dddan_room_0Tex_011C98; -#endif - -#define dddan_room_0Tex_012C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_012C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_012C98[] = dddan_room_0Tex_012C98; -#else -static const char ddan_room_0Tex_012C98[] __attribute__((aligned (2))) = dddan_room_0Tex_012C98; -#endif - -#define dddan_room_0DL_00DE20 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00DE20" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_00DE20[] = dddan_room_0DL_00DE20; -#else -static const char ddan_room_0DL_00DE20[] __attribute__((aligned (2))) = dddan_room_0DL_00DE20; -#endif - -#define dddan_room_0Tex_01A498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_01A498" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_01A498[] = dddan_room_0Tex_01A498; -#else -static const char ddan_room_0Tex_01A498[] __attribute__((aligned (2))) = dddan_room_0Tex_01A498; -#endif - -#define dddan_room_0Tex_019498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_019498" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_019498[] = dddan_room_0Tex_019498; -#else -static const char ddan_room_0Tex_019498[] __attribute__((aligned (2))) = dddan_room_0Tex_019498; -#endif - -#define dddan_room_0Tex_014C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_014C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_014C98[] = dddan_room_0Tex_014C98; -#else -static const char ddan_room_0Tex_014C98[] __attribute__((aligned (2))) = dddan_room_0Tex_014C98; -#endif - -#define dddan_room_0DL_00F100 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00F100" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_00F100[] = dddan_room_0DL_00F100; -#else -static const char ddan_room_0DL_00F100[] __attribute__((aligned (2))) = dddan_room_0DL_00F100; -#endif - -#define dddan_room_0Tex_017C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_017C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_017C98[] = dddan_room_0Tex_017C98; -#else -static const char ddan_room_0Tex_017C98[] __attribute__((aligned (2))) = dddan_room_0Tex_017C98; -#endif - -#define dddan_room_0Tex_015498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_015498" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0Tex_015498[] = dddan_room_0Tex_015498; -#else -static const char ddan_room_0Tex_015498[] __attribute__((aligned (2))) = dddan_room_0Tex_015498; -#endif - -#define dddan_room_0DL_010238 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_010238" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_010238[] = dddan_room_0DL_010238; -#else -static const char ddan_room_0DL_010238[] __attribute__((aligned (2))) = dddan_room_0DL_010238; -#endif - -#define dddan_room_0DL_010A88 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_010A88" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_010A88[] = dddan_room_0DL_010A88; -#else -static const char ddan_room_0DL_010A88[] __attribute__((aligned (2))) = dddan_room_0DL_010A88; -#endif - -#define dddan_room_0DL_011050 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_011050" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_011050[] = dddan_room_0DL_011050; -#else -static const char ddan_room_0DL_011050[] __attribute__((aligned (2))) = dddan_room_0DL_011050; -#endif - -#define dddan_room_0DL_000580 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_000580" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_0DL_000580[] = dddan_room_0DL_000580; -#else -static const char ddan_room_0DL_000580[] __attribute__((aligned (2))) = dddan_room_0DL_000580; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_0DL_000D98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_000D98" +static const ALIGN_ASSET(2) char ddan_room_0DL_000D98[] = dddan_room_0DL_000D98; + +#define dddan_room_0Tex_018C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_018C98" +static const ALIGN_ASSET(2) char ddan_room_0Tex_018C98[] = dddan_room_0Tex_018C98; + +#define dddan_room_0Tex_011898 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_011898" +static const ALIGN_ASSET(2) char ddan_room_0Tex_011898[] = dddan_room_0Tex_011898; + +#define dddan_room_0Tex_01B498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_01B498" +static const ALIGN_ASSET(2) char ddan_room_0Tex_01B498[] = dddan_room_0Tex_01B498; + +#define dddan_room_0DL_001710 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_001710" +static const ALIGN_ASSET(2) char ddan_room_0DL_001710[] = dddan_room_0DL_001710; + +#define dddan_room_0Tex_016898 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_016898" +static const ALIGN_ASSET(2) char ddan_room_0Tex_016898[] = dddan_room_0Tex_016898; + +#define dddan_room_0DL_0021E0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_0021E0" +static const ALIGN_ASSET(2) char ddan_room_0DL_0021E0[] = dddan_room_0DL_0021E0; + +#define dddan_room_0Tex_012498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_012498" +static const ALIGN_ASSET(2) char ddan_room_0Tex_012498[] = dddan_room_0Tex_012498; + +#define dddan_room_0Tex_018498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_018498" +static const ALIGN_ASSET(2) char ddan_room_0Tex_018498[] = dddan_room_0Tex_018498; + +#define dddan_room_0DL_002F28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_002F28" +static const ALIGN_ASSET(2) char ddan_room_0DL_002F28[] = dddan_room_0DL_002F28; + +#define dddan_room_0DL_004110 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_004110" +static const ALIGN_ASSET(2) char ddan_room_0DL_004110[] = dddan_room_0DL_004110; + +#define dddan_room_0Tex_015C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_015C98" +static const ALIGN_ASSET(2) char ddan_room_0Tex_015C98[] = dddan_room_0Tex_015C98; + +#define dddan_room_0DL_0050A8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_0050A8" +static const ALIGN_ASSET(2) char ddan_room_0DL_0050A8[] = dddan_room_0DL_0050A8; + +#define dddan_room_0DL_006588 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_006588" +static const ALIGN_ASSET(2) char ddan_room_0DL_006588[] = dddan_room_0DL_006588; + +#define dddan_room_0Tex_017898 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_017898" +static const ALIGN_ASSET(2) char ddan_room_0Tex_017898[] = dddan_room_0Tex_017898; + +#define dddan_room_0Tex_016498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_016498" +static const ALIGN_ASSET(2) char ddan_room_0Tex_016498[] = dddan_room_0Tex_016498; + +#define dddan_room_0TLUT_011290 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0TLUT_011290" +static const ALIGN_ASSET(2) char ddan_room_0TLUT_011290[] = dddan_room_0TLUT_011290; + +#define dddan_room_0DL_0072B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_0072B8" +static const ALIGN_ASSET(2) char ddan_room_0DL_0072B8[] = dddan_room_0DL_0072B8; + +#define dddan_room_0DL_007E68 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_007E68" +static const ALIGN_ASSET(2) char ddan_room_0DL_007E68[] = dddan_room_0DL_007E68; + +#define dddan_room_0Tex_011498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_011498" +static const ALIGN_ASSET(2) char ddan_room_0Tex_011498[] = dddan_room_0Tex_011498; + +#define dddan_room_0DL_009110 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_009110" +static const ALIGN_ASSET(2) char ddan_room_0DL_009110[] = dddan_room_0DL_009110; + +#define dddan_room_0DL_00A0B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00A0B8" +static const ALIGN_ASSET(2) char ddan_room_0DL_00A0B8[] = dddan_room_0DL_00A0B8; + +#define dddan_room_0DL_00AE68 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00AE68" +static const ALIGN_ASSET(2) char ddan_room_0DL_00AE68[] = dddan_room_0DL_00AE68; + +#define dddan_room_0Tex_017098 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_017098" +static const ALIGN_ASSET(2) char ddan_room_0Tex_017098[] = dddan_room_0Tex_017098; + +#define dddan_room_0DL_00B520 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00B520" +static const ALIGN_ASSET(2) char ddan_room_0DL_00B520[] = dddan_room_0DL_00B520; + +#define dddan_room_0DL_00BE80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00BE80" +static const ALIGN_ASSET(2) char ddan_room_0DL_00BE80[] = dddan_room_0DL_00BE80; + +#define dddan_room_0DL_00C518 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00C518" +static const ALIGN_ASSET(2) char ddan_room_0DL_00C518[] = dddan_room_0DL_00C518; + +#define dddan_room_0DL_00CD38 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00CD38" +static const ALIGN_ASSET(2) char ddan_room_0DL_00CD38[] = dddan_room_0DL_00CD38; + +#define dddan_room_0Tex_013C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_013C98" +static const ALIGN_ASSET(2) char ddan_room_0Tex_013C98[] = dddan_room_0Tex_013C98; + +#define dddan_room_0Tex_011C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_011C98" +static const ALIGN_ASSET(2) char ddan_room_0Tex_011C98[] = dddan_room_0Tex_011C98; + +#define dddan_room_0Tex_012C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_012C98" +static const ALIGN_ASSET(2) char ddan_room_0Tex_012C98[] = dddan_room_0Tex_012C98; + +#define dddan_room_0DL_00DE20 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00DE20" +static const ALIGN_ASSET(2) char ddan_room_0DL_00DE20[] = dddan_room_0DL_00DE20; + +#define dddan_room_0Tex_01A498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_01A498" +static const ALIGN_ASSET(2) char ddan_room_0Tex_01A498[] = dddan_room_0Tex_01A498; + +#define dddan_room_0Tex_019498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_019498" +static const ALIGN_ASSET(2) char ddan_room_0Tex_019498[] = dddan_room_0Tex_019498; + +#define dddan_room_0Tex_014C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_014C98" +static const ALIGN_ASSET(2) char ddan_room_0Tex_014C98[] = dddan_room_0Tex_014C98; + +#define dddan_room_0DL_00F100 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_00F100" +static const ALIGN_ASSET(2) char ddan_room_0DL_00F100[] = dddan_room_0DL_00F100; + +#define dddan_room_0Tex_017C98 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_017C98" +static const ALIGN_ASSET(2) char ddan_room_0Tex_017C98[] = dddan_room_0Tex_017C98; + +#define dddan_room_0Tex_015498 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0Tex_015498" +static const ALIGN_ASSET(2) char ddan_room_0Tex_015498[] = dddan_room_0Tex_015498; + +#define dddan_room_0DL_010238 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_010238" +static const ALIGN_ASSET(2) char ddan_room_0DL_010238[] = dddan_room_0DL_010238; + +#define dddan_room_0DL_010A88 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_010A88" +static const ALIGN_ASSET(2) char ddan_room_0DL_010A88[] = dddan_room_0DL_010A88; + +#define dddan_room_0DL_011050 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_011050" +static const ALIGN_ASSET(2) char ddan_room_0DL_011050[] = dddan_room_0DL_011050; + +#define dddan_room_0DL_000580 "__OTR__scenes/nonmq/ddan_scene/ddan_room_0DL_000580" +static const ALIGN_ASSET(2) char ddan_room_0DL_000580[] = dddan_room_0DL_000580; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_1.h b/soh/assets/scenes/dungeons/ddan/ddan_room_1.h index c65e95d99..24e85073c 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_1.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_1.h @@ -1,86 +1,39 @@ #pragma once -#define dddan_room_1DL_002520 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1DL_002520" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1DL_002520[] = dddan_room_1DL_002520; -#else -static const char ddan_room_1DL_002520[] __attribute__((aligned (2))) = dddan_room_1DL_002520; -#endif - -#define dddan_room_1Tex_004770 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_004770" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_004770[] = dddan_room_1Tex_004770; -#else -static const char ddan_room_1Tex_004770[] __attribute__((aligned (2))) = dddan_room_1Tex_004770; -#endif - -#define dddan_room_1Tex_007F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_007F70" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_007F70[] = dddan_room_1Tex_007F70; -#else -static const char ddan_room_1Tex_007F70[] __attribute__((aligned (2))) = dddan_room_1Tex_007F70; -#endif - -#define dddan_room_1Tex_008770 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_008770" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_008770[] = dddan_room_1Tex_008770; -#else -static const char ddan_room_1Tex_008770[] __attribute__((aligned (2))) = dddan_room_1Tex_008770; -#endif - -#define dddan_room_1Tex_009770 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_009770" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_009770[] = dddan_room_1Tex_009770; -#else -static const char ddan_room_1Tex_009770[] __attribute__((aligned (2))) = dddan_room_1Tex_009770; -#endif - -#define dddan_room_1Tex_005770 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_005770" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_005770[] = dddan_room_1Tex_005770; -#else -static const char ddan_room_1Tex_005770[] __attribute__((aligned (2))) = dddan_room_1Tex_005770; -#endif - -#define dddan_room_1Tex_004B70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_004B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_004B70[] = dddan_room_1Tex_004B70; -#else -static const char ddan_room_1Tex_004B70[] __attribute__((aligned (2))) = dddan_room_1Tex_004B70; -#endif - -#define dddan_room_1Tex_005F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_005F70" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_005F70[] = dddan_room_1Tex_005F70; -#else -static const char ddan_room_1Tex_005F70[] __attribute__((aligned (2))) = dddan_room_1Tex_005F70; -#endif - -#define dddan_room_1Tex_006F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_006F70" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_006F70[] = dddan_room_1Tex_006F70; -#else -static const char ddan_room_1Tex_006F70[] __attribute__((aligned (2))) = dddan_room_1Tex_006F70; -#endif - -#define dddan_room_1Tex_004F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_004F70" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_004F70[] = dddan_room_1Tex_004F70; -#else -static const char ddan_room_1Tex_004F70[] __attribute__((aligned (2))) = dddan_room_1Tex_004F70; -#endif - -#define dddan_room_1DL_004630 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1DL_004630" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1DL_004630[] = dddan_room_1DL_004630; -#else -static const char ddan_room_1DL_004630[] __attribute__((aligned (2))) = dddan_room_1DL_004630; -#endif - -#define dddan_room_1Tex_008F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_008F70" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_1Tex_008F70[] = dddan_room_1Tex_008F70; -#else -static const char ddan_room_1Tex_008F70[] __attribute__((aligned (2))) = dddan_room_1Tex_008F70; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_1DL_002520 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1DL_002520" +static const ALIGN_ASSET(2) char ddan_room_1DL_002520[] = dddan_room_1DL_002520; + +#define dddan_room_1Tex_004770 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_004770" +static const ALIGN_ASSET(2) char ddan_room_1Tex_004770[] = dddan_room_1Tex_004770; + +#define dddan_room_1Tex_007F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_007F70" +static const ALIGN_ASSET(2) char ddan_room_1Tex_007F70[] = dddan_room_1Tex_007F70; + +#define dddan_room_1Tex_008770 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_008770" +static const ALIGN_ASSET(2) char ddan_room_1Tex_008770[] = dddan_room_1Tex_008770; + +#define dddan_room_1Tex_009770 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_009770" +static const ALIGN_ASSET(2) char ddan_room_1Tex_009770[] = dddan_room_1Tex_009770; + +#define dddan_room_1Tex_005770 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_005770" +static const ALIGN_ASSET(2) char ddan_room_1Tex_005770[] = dddan_room_1Tex_005770; + +#define dddan_room_1Tex_004B70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_004B70" +static const ALIGN_ASSET(2) char ddan_room_1Tex_004B70[] = dddan_room_1Tex_004B70; + +#define dddan_room_1Tex_005F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_005F70" +static const ALIGN_ASSET(2) char ddan_room_1Tex_005F70[] = dddan_room_1Tex_005F70; + +#define dddan_room_1Tex_006F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_006F70" +static const ALIGN_ASSET(2) char ddan_room_1Tex_006F70[] = dddan_room_1Tex_006F70; + +#define dddan_room_1Tex_004F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_004F70" +static const ALIGN_ASSET(2) char ddan_room_1Tex_004F70[] = dddan_room_1Tex_004F70; + +#define dddan_room_1DL_004630 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1DL_004630" +static const ALIGN_ASSET(2) char ddan_room_1DL_004630[] = dddan_room_1DL_004630; + +#define dddan_room_1Tex_008F70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_1Tex_008F70" +static const ALIGN_ASSET(2) char ddan_room_1Tex_008F70[] = dddan_room_1Tex_008F70; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_10.h b/soh/assets/scenes/dungeons/ddan/ddan_room_10.h index 83355d473..6e8473e0e 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_10.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_10.h @@ -1,86 +1,39 @@ #pragma once -#define dddan_room_10DL_001B10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10DL_001B10" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10DL_001B10[] = dddan_room_10DL_001B10; -#else -static const char ddan_room_10DL_001B10[] __attribute__((aligned (2))) = dddan_room_10DL_001B10; -#endif - -#define dddan_room_10Tex_004F10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_004F10" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_004F10[] = dddan_room_10Tex_004F10; -#else -static const char ddan_room_10Tex_004F10[] __attribute__((aligned (2))) = dddan_room_10Tex_004F10; -#endif - -#define dddan_room_10Tex_004710 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_004710" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_004710[] = dddan_room_10Tex_004710; -#else -static const char ddan_room_10Tex_004710[] __attribute__((aligned (2))) = dddan_room_10Tex_004710; -#endif - -#define dddan_room_10Tex_007B10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_007B10" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_007B10[] = dddan_room_10Tex_007B10; -#else -static const char ddan_room_10Tex_007B10[] __attribute__((aligned (2))) = dddan_room_10Tex_007B10; -#endif - -#define dddan_room_10Tex_002F10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_002F10" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_002F10[] = dddan_room_10Tex_002F10; -#else -static const char ddan_room_10Tex_002F10[] __attribute__((aligned (2))) = dddan_room_10Tex_002F10; -#endif - -#define dddan_room_10Tex_005310 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_005310" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_005310[] = dddan_room_10Tex_005310; -#else -static const char ddan_room_10Tex_005310[] __attribute__((aligned (2))) = dddan_room_10Tex_005310; -#endif - -#define dddan_room_10Tex_006310 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_006310" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_006310[] = dddan_room_10Tex_006310; -#else -static const char ddan_room_10Tex_006310[] __attribute__((aligned (2))) = dddan_room_10Tex_006310; -#endif - -#define dddan_room_10Tex_003B10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_003B10" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_003B10[] = dddan_room_10Tex_003B10; -#else -static const char ddan_room_10Tex_003B10[] __attribute__((aligned (2))) = dddan_room_10Tex_003B10; -#endif - -#define dddan_room_10Tex_003710 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_003710" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_003710[] = dddan_room_10Tex_003710; -#else -static const char ddan_room_10Tex_003710[] __attribute__((aligned (2))) = dddan_room_10Tex_003710; -#endif - -#define dddan_room_10Tex_004310 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_004310" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_004310[] = dddan_room_10Tex_004310; -#else -static const char ddan_room_10Tex_004310[] __attribute__((aligned (2))) = dddan_room_10Tex_004310; -#endif - -#define dddan_room_10Tex_002B10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_002B10" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_002B10[] = dddan_room_10Tex_002B10; -#else -static const char ddan_room_10Tex_002B10[] __attribute__((aligned (2))) = dddan_room_10Tex_002B10; -#endif - -#define dddan_room_10Tex_007310 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_007310" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_10Tex_007310[] = dddan_room_10Tex_007310; -#else -static const char ddan_room_10Tex_007310[] __attribute__((aligned (2))) = dddan_room_10Tex_007310; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_10DL_001B10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10DL_001B10" +static const ALIGN_ASSET(2) char ddan_room_10DL_001B10[] = dddan_room_10DL_001B10; + +#define dddan_room_10Tex_004F10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_004F10" +static const ALIGN_ASSET(2) char ddan_room_10Tex_004F10[] = dddan_room_10Tex_004F10; + +#define dddan_room_10Tex_004710 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_004710" +static const ALIGN_ASSET(2) char ddan_room_10Tex_004710[] = dddan_room_10Tex_004710; + +#define dddan_room_10Tex_007B10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_007B10" +static const ALIGN_ASSET(2) char ddan_room_10Tex_007B10[] = dddan_room_10Tex_007B10; + +#define dddan_room_10Tex_002F10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_002F10" +static const ALIGN_ASSET(2) char ddan_room_10Tex_002F10[] = dddan_room_10Tex_002F10; + +#define dddan_room_10Tex_005310 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_005310" +static const ALIGN_ASSET(2) char ddan_room_10Tex_005310[] = dddan_room_10Tex_005310; + +#define dddan_room_10Tex_006310 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_006310" +static const ALIGN_ASSET(2) char ddan_room_10Tex_006310[] = dddan_room_10Tex_006310; + +#define dddan_room_10Tex_003B10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_003B10" +static const ALIGN_ASSET(2) char ddan_room_10Tex_003B10[] = dddan_room_10Tex_003B10; + +#define dddan_room_10Tex_003710 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_003710" +static const ALIGN_ASSET(2) char ddan_room_10Tex_003710[] = dddan_room_10Tex_003710; + +#define dddan_room_10Tex_004310 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_004310" +static const ALIGN_ASSET(2) char ddan_room_10Tex_004310[] = dddan_room_10Tex_004310; + +#define dddan_room_10Tex_002B10 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_002B10" +static const ALIGN_ASSET(2) char ddan_room_10Tex_002B10[] = dddan_room_10Tex_002B10; + +#define dddan_room_10Tex_007310 "__OTR__scenes/nonmq/ddan_scene/ddan_room_10Tex_007310" +static const ALIGN_ASSET(2) char ddan_room_10Tex_007310[] = dddan_room_10Tex_007310; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_11.h b/soh/assets/scenes/dungeons/ddan/ddan_room_11.h index d79c6001e..ddc08878c 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_11.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_11.h @@ -1,30 +1,15 @@ #pragma once -#define dddan_room_11DL_0006A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_11DL_0006A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_11DL_0006A0[] = dddan_room_11DL_0006A0; -#else -static const char ddan_room_11DL_0006A0[] __attribute__((aligned (2))) = dddan_room_11DL_0006A0; -#endif - -#define dddan_room_11Tex_001C30 "__OTR__scenes/nonmq/ddan_scene/ddan_room_11Tex_001C30" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_11Tex_001C30[] = dddan_room_11Tex_001C30; -#else -static const char ddan_room_11Tex_001C30[] __attribute__((aligned (2))) = dddan_room_11Tex_001C30; -#endif - -#define dddan_room_11Tex_001430 "__OTR__scenes/nonmq/ddan_scene/ddan_room_11Tex_001430" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_11Tex_001430[] = dddan_room_11Tex_001430; -#else -static const char ddan_room_11Tex_001430[] __attribute__((aligned (2))) = dddan_room_11Tex_001430; -#endif - -#define dddan_room_11Tex_000C30 "__OTR__scenes/nonmq/ddan_scene/ddan_room_11Tex_000C30" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_11Tex_000C30[] = dddan_room_11Tex_000C30; -#else -static const char ddan_room_11Tex_000C30[] __attribute__((aligned (2))) = dddan_room_11Tex_000C30; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_11DL_0006A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_11DL_0006A0" +static const ALIGN_ASSET(2) char ddan_room_11DL_0006A0[] = dddan_room_11DL_0006A0; + +#define dddan_room_11Tex_001C30 "__OTR__scenes/nonmq/ddan_scene/ddan_room_11Tex_001C30" +static const ALIGN_ASSET(2) char ddan_room_11Tex_001C30[] = dddan_room_11Tex_001C30; + +#define dddan_room_11Tex_001430 "__OTR__scenes/nonmq/ddan_scene/ddan_room_11Tex_001430" +static const ALIGN_ASSET(2) char ddan_room_11Tex_001430[] = dddan_room_11Tex_001430; + +#define dddan_room_11Tex_000C30 "__OTR__scenes/nonmq/ddan_scene/ddan_room_11Tex_000C30" +static const ALIGN_ASSET(2) char ddan_room_11Tex_000C30[] = dddan_room_11Tex_000C30; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_12.h b/soh/assets/scenes/dungeons/ddan/ddan_room_12.h index b456667df..af204da5e 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_12.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_12.h @@ -1,93 +1,42 @@ #pragma once -#define dddan_room_12DL_001BE0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12DL_001BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12DL_001BE0[] = dddan_room_12DL_001BE0; -#else -static const char ddan_room_12DL_001BE0[] __attribute__((aligned (2))) = dddan_room_12DL_001BE0; -#endif - -#define dddan_room_12Tex_007B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_007B80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_007B80[] = dddan_room_12Tex_007B80; -#else -static const char ddan_room_12Tex_007B80[] __attribute__((aligned (2))) = dddan_room_12Tex_007B80; -#endif - -#define dddan_room_12Tex_005380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_005380" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_005380[] = dddan_room_12Tex_005380; -#else -static const char ddan_room_12Tex_005380[] __attribute__((aligned (2))) = dddan_room_12Tex_005380; -#endif - -#define dddan_room_12Tex_007780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_007780" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_007780[] = dddan_room_12Tex_007780; -#else -static const char ddan_room_12Tex_007780[] __attribute__((aligned (2))) = dddan_room_12Tex_007780; -#endif - -#define dddan_room_12Tex_004B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_004B80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_004B80[] = dddan_room_12Tex_004B80; -#else -static const char ddan_room_12Tex_004B80[] __attribute__((aligned (2))) = dddan_room_12Tex_004B80; -#endif - -#define dddan_room_12Tex_008380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_008380" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_008380[] = dddan_room_12Tex_008380; -#else -static const char ddan_room_12Tex_008380[] __attribute__((aligned (2))) = dddan_room_12Tex_008380; -#endif - -#define dddan_room_12Tex_003380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_003380" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_003380[] = dddan_room_12Tex_003380; -#else -static const char ddan_room_12Tex_003380[] __attribute__((aligned (2))) = dddan_room_12Tex_003380; -#endif - -#define dddan_room_12Tex_006780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_006780" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_006780[] = dddan_room_12Tex_006780; -#else -static const char ddan_room_12Tex_006780[] __attribute__((aligned (2))) = dddan_room_12Tex_006780; -#endif - -#define dddan_room_12Tex_005780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_005780" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_005780[] = dddan_room_12Tex_005780; -#else -static const char ddan_room_12Tex_005780[] __attribute__((aligned (2))) = dddan_room_12Tex_005780; -#endif - -#define dddan_room_12Tex_003F80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_003F80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_003F80[] = dddan_room_12Tex_003F80; -#else -static const char ddan_room_12Tex_003F80[] __attribute__((aligned (2))) = dddan_room_12Tex_003F80; -#endif - -#define dddan_room_12Tex_003B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_003B80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_003B80[] = dddan_room_12Tex_003B80; -#else -static const char ddan_room_12Tex_003B80[] __attribute__((aligned (2))) = dddan_room_12Tex_003B80; -#endif - -#define dddan_room_12Tex_004780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_004780" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_004780[] = dddan_room_12Tex_004780; -#else -static const char ddan_room_12Tex_004780[] __attribute__((aligned (2))) = dddan_room_12Tex_004780; -#endif - -#define dddan_room_12Tex_002F80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_002F80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_12Tex_002F80[] = dddan_room_12Tex_002F80; -#else -static const char ddan_room_12Tex_002F80[] __attribute__((aligned (2))) = dddan_room_12Tex_002F80; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_12DL_001BE0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12DL_001BE0" +static const ALIGN_ASSET(2) char ddan_room_12DL_001BE0[] = dddan_room_12DL_001BE0; + +#define dddan_room_12Tex_007B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_007B80" +static const ALIGN_ASSET(2) char ddan_room_12Tex_007B80[] = dddan_room_12Tex_007B80; + +#define dddan_room_12Tex_005380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_005380" +static const ALIGN_ASSET(2) char ddan_room_12Tex_005380[] = dddan_room_12Tex_005380; + +#define dddan_room_12Tex_007780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_007780" +static const ALIGN_ASSET(2) char ddan_room_12Tex_007780[] = dddan_room_12Tex_007780; + +#define dddan_room_12Tex_004B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_004B80" +static const ALIGN_ASSET(2) char ddan_room_12Tex_004B80[] = dddan_room_12Tex_004B80; + +#define dddan_room_12Tex_008380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_008380" +static const ALIGN_ASSET(2) char ddan_room_12Tex_008380[] = dddan_room_12Tex_008380; + +#define dddan_room_12Tex_003380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_003380" +static const ALIGN_ASSET(2) char ddan_room_12Tex_003380[] = dddan_room_12Tex_003380; + +#define dddan_room_12Tex_006780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_006780" +static const ALIGN_ASSET(2) char ddan_room_12Tex_006780[] = dddan_room_12Tex_006780; + +#define dddan_room_12Tex_005780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_005780" +static const ALIGN_ASSET(2) char ddan_room_12Tex_005780[] = dddan_room_12Tex_005780; + +#define dddan_room_12Tex_003F80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_003F80" +static const ALIGN_ASSET(2) char ddan_room_12Tex_003F80[] = dddan_room_12Tex_003F80; + +#define dddan_room_12Tex_003B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_003B80" +static const ALIGN_ASSET(2) char ddan_room_12Tex_003B80[] = dddan_room_12Tex_003B80; + +#define dddan_room_12Tex_004780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_004780" +static const ALIGN_ASSET(2) char ddan_room_12Tex_004780[] = dddan_room_12Tex_004780; + +#define dddan_room_12Tex_002F80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_12Tex_002F80" +static const ALIGN_ASSET(2) char ddan_room_12Tex_002F80[] = dddan_room_12Tex_002F80; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_13.h b/soh/assets/scenes/dungeons/ddan/ddan_room_13.h index 5703ee1ee..7c7f03e03 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_13.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_13.h @@ -1,37 +1,18 @@ #pragma once -#define dddan_room_13DL_0006E0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13DL_0006E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_13DL_0006E0[] = dddan_room_13DL_0006E0; -#else -static const char ddan_room_13DL_0006E0[] __attribute__((aligned (2))) = dddan_room_13DL_0006E0; -#endif - -#define dddan_room_13Tex_0014C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13Tex_0014C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_13Tex_0014C8[] = dddan_room_13Tex_0014C8; -#else -static const char ddan_room_13Tex_0014C8[] __attribute__((aligned (2))) = dddan_room_13Tex_0014C8; -#endif - -#define dddan_room_13Tex_0020C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13Tex_0020C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_13Tex_0020C8[] = dddan_room_13Tex_0020C8; -#else -static const char ddan_room_13Tex_0020C8[] __attribute__((aligned (2))) = dddan_room_13Tex_0020C8; -#endif - -#define dddan_room_13Tex_000CC8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13Tex_000CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_13Tex_000CC8[] = dddan_room_13Tex_000CC8; -#else -static const char ddan_room_13Tex_000CC8[] __attribute__((aligned (2))) = dddan_room_13Tex_000CC8; -#endif - -#define dddan_room_13Tex_001CC8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13Tex_001CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_13Tex_001CC8[] = dddan_room_13Tex_001CC8; -#else -static const char ddan_room_13Tex_001CC8[] __attribute__((aligned (2))) = dddan_room_13Tex_001CC8; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_13DL_0006E0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13DL_0006E0" +static const ALIGN_ASSET(2) char ddan_room_13DL_0006E0[] = dddan_room_13DL_0006E0; + +#define dddan_room_13Tex_0014C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13Tex_0014C8" +static const ALIGN_ASSET(2) char ddan_room_13Tex_0014C8[] = dddan_room_13Tex_0014C8; + +#define dddan_room_13Tex_0020C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13Tex_0020C8" +static const ALIGN_ASSET(2) char ddan_room_13Tex_0020C8[] = dddan_room_13Tex_0020C8; + +#define dddan_room_13Tex_000CC8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13Tex_000CC8" +static const ALIGN_ASSET(2) char ddan_room_13Tex_000CC8[] = dddan_room_13Tex_000CC8; + +#define dddan_room_13Tex_001CC8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_13Tex_001CC8" +static const ALIGN_ASSET(2) char ddan_room_13Tex_001CC8[] = dddan_room_13Tex_001CC8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_14.h b/soh/assets/scenes/dungeons/ddan/ddan_room_14.h index d4906b5d5..a6bf7932f 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_14.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_14.h @@ -1,37 +1,18 @@ #pragma once -#define dddan_room_14DL_0006A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14DL_0006A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_14DL_0006A0[] = dddan_room_14DL_0006A0; -#else -static const char ddan_room_14DL_0006A0[] __attribute__((aligned (2))) = dddan_room_14DL_0006A0; -#endif - -#define dddan_room_14Tex_000CC8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14Tex_000CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_14Tex_000CC8[] = dddan_room_14Tex_000CC8; -#else -static const char ddan_room_14Tex_000CC8[] __attribute__((aligned (2))) = dddan_room_14Tex_000CC8; -#endif - -#define dddan_room_14Tex_0020C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14Tex_0020C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_14Tex_0020C8[] = dddan_room_14Tex_0020C8; -#else -static const char ddan_room_14Tex_0020C8[] __attribute__((aligned (2))) = dddan_room_14Tex_0020C8; -#endif - -#define dddan_room_14Tex_0014C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14Tex_0014C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_14Tex_0014C8[] = dddan_room_14Tex_0014C8; -#else -static const char ddan_room_14Tex_0014C8[] __attribute__((aligned (2))) = dddan_room_14Tex_0014C8; -#endif - -#define dddan_room_14Tex_001CC8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14Tex_001CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_14Tex_001CC8[] = dddan_room_14Tex_001CC8; -#else -static const char ddan_room_14Tex_001CC8[] __attribute__((aligned (2))) = dddan_room_14Tex_001CC8; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_14DL_0006A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14DL_0006A0" +static const ALIGN_ASSET(2) char ddan_room_14DL_0006A0[] = dddan_room_14DL_0006A0; + +#define dddan_room_14Tex_000CC8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14Tex_000CC8" +static const ALIGN_ASSET(2) char ddan_room_14Tex_000CC8[] = dddan_room_14Tex_000CC8; + +#define dddan_room_14Tex_0020C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14Tex_0020C8" +static const ALIGN_ASSET(2) char ddan_room_14Tex_0020C8[] = dddan_room_14Tex_0020C8; + +#define dddan_room_14Tex_0014C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14Tex_0014C8" +static const ALIGN_ASSET(2) char ddan_room_14Tex_0014C8[] = dddan_room_14Tex_0014C8; + +#define dddan_room_14Tex_001CC8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_14Tex_001CC8" +static const ALIGN_ASSET(2) char ddan_room_14Tex_001CC8[] = dddan_room_14Tex_001CC8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_15.h b/soh/assets/scenes/dungeons/ddan/ddan_room_15.h index 54ed11e8a..4f1a5b8be 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_15.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_15.h @@ -1,37 +1,18 @@ #pragma once -#define dddan_room_15DL_000780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15DL_000780" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_15DL_000780[] = dddan_room_15DL_000780; -#else -static const char ddan_room_15DL_000780[] __attribute__((aligned (2))) = dddan_room_15DL_000780; -#endif - -#define dddan_room_15Tex_001D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15Tex_001D28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_15Tex_001D28[] = dddan_room_15Tex_001D28; -#else -static const char ddan_room_15Tex_001D28[] __attribute__((aligned (2))) = dddan_room_15Tex_001D28; -#endif - -#define dddan_room_15Tex_002528 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15Tex_002528" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_15Tex_002528[] = dddan_room_15Tex_002528; -#else -static const char ddan_room_15Tex_002528[] __attribute__((aligned (2))) = dddan_room_15Tex_002528; -#endif - -#define dddan_room_15Tex_001528 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15Tex_001528" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_15Tex_001528[] = dddan_room_15Tex_001528; -#else -static const char ddan_room_15Tex_001528[] __attribute__((aligned (2))) = dddan_room_15Tex_001528; -#endif - -#define dddan_room_15Tex_000D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15Tex_000D28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_15Tex_000D28[] = dddan_room_15Tex_000D28; -#else -static const char ddan_room_15Tex_000D28[] __attribute__((aligned (2))) = dddan_room_15Tex_000D28; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_15DL_000780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15DL_000780" +static const ALIGN_ASSET(2) char ddan_room_15DL_000780[] = dddan_room_15DL_000780; + +#define dddan_room_15Tex_001D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15Tex_001D28" +static const ALIGN_ASSET(2) char ddan_room_15Tex_001D28[] = dddan_room_15Tex_001D28; + +#define dddan_room_15Tex_002528 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15Tex_002528" +static const ALIGN_ASSET(2) char ddan_room_15Tex_002528[] = dddan_room_15Tex_002528; + +#define dddan_room_15Tex_001528 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15Tex_001528" +static const ALIGN_ASSET(2) char ddan_room_15Tex_001528[] = dddan_room_15Tex_001528; + +#define dddan_room_15Tex_000D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_15Tex_000D28" +static const ALIGN_ASSET(2) char ddan_room_15Tex_000D28[] = dddan_room_15Tex_000D28; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_16.h b/soh/assets/scenes/dungeons/ddan/ddan_room_16.h index f87294ed2..26010b367 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_16.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_16.h @@ -1,58 +1,27 @@ #pragma once -#define dddan_room_16DL_0009D0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16DL_0009D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_16DL_0009D0[] = dddan_room_16DL_0009D0; -#else -static const char ddan_room_16DL_0009D0[] __attribute__((aligned (2))) = dddan_room_16DL_0009D0; -#endif - -#define dddan_room_16Tex_005158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_005158" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_16Tex_005158[] = dddan_room_16Tex_005158; -#else -static const char ddan_room_16Tex_005158[] __attribute__((aligned (2))) = dddan_room_16Tex_005158; -#endif - -#define dddan_room_16Tex_004158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_004158" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_16Tex_004158[] = dddan_room_16Tex_004158; -#else -static const char ddan_room_16Tex_004158[] __attribute__((aligned (2))) = dddan_room_16Tex_004158; -#endif - -#define dddan_room_16Tex_004958 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_004958" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_16Tex_004958[] = dddan_room_16Tex_004958; -#else -static const char ddan_room_16Tex_004958[] __attribute__((aligned (2))) = dddan_room_16Tex_004958; -#endif - -#define dddan_room_16DL_0019B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16DL_0019B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_16DL_0019B8[] = dddan_room_16DL_0019B8; -#else -static const char ddan_room_16DL_0019B8[] __attribute__((aligned (2))) = dddan_room_16DL_0019B8; -#endif - -#define dddan_room_16Tex_003158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_003158" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_16Tex_003158[] = dddan_room_16Tex_003158; -#else -static const char ddan_room_16Tex_003158[] __attribute__((aligned (2))) = dddan_room_16Tex_003158; -#endif - -#define dddan_room_16Tex_002158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_002158" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_16Tex_002158[] = dddan_room_16Tex_002158; -#else -static const char ddan_room_16Tex_002158[] __attribute__((aligned (2))) = dddan_room_16Tex_002158; -#endif - -#define dddan_room_16Tex_003958 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_003958" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_16Tex_003958[] = dddan_room_16Tex_003958; -#else -static const char ddan_room_16Tex_003958[] __attribute__((aligned (2))) = dddan_room_16Tex_003958; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_16DL_0009D0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16DL_0009D0" +static const ALIGN_ASSET(2) char ddan_room_16DL_0009D0[] = dddan_room_16DL_0009D0; + +#define dddan_room_16Tex_005158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_005158" +static const ALIGN_ASSET(2) char ddan_room_16Tex_005158[] = dddan_room_16Tex_005158; + +#define dddan_room_16Tex_004158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_004158" +static const ALIGN_ASSET(2) char ddan_room_16Tex_004158[] = dddan_room_16Tex_004158; + +#define dddan_room_16Tex_004958 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_004958" +static const ALIGN_ASSET(2) char ddan_room_16Tex_004958[] = dddan_room_16Tex_004958; + +#define dddan_room_16DL_0019B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16DL_0019B8" +static const ALIGN_ASSET(2) char ddan_room_16DL_0019B8[] = dddan_room_16DL_0019B8; + +#define dddan_room_16Tex_003158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_003158" +static const ALIGN_ASSET(2) char ddan_room_16Tex_003158[] = dddan_room_16Tex_003158; + +#define dddan_room_16Tex_002158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_002158" +static const ALIGN_ASSET(2) char ddan_room_16Tex_002158[] = dddan_room_16Tex_002158; + +#define dddan_room_16Tex_003958 "__OTR__scenes/nonmq/ddan_scene/ddan_room_16Tex_003958" +static const ALIGN_ASSET(2) char ddan_room_16Tex_003958[] = dddan_room_16Tex_003958; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_2.h b/soh/assets/scenes/dungeons/ddan/ddan_room_2.h index a9a86409c..265b96741 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_2.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_2.h @@ -1,86 +1,39 @@ #pragma once -#define dddan_room_2DL_001B30 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2DL_001B30" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2DL_001B30[] = dddan_room_2DL_001B30; -#else -static const char ddan_room_2DL_001B30[] __attribute__((aligned (2))) = dddan_room_2DL_001B30; -#endif - -#define dddan_room_2Tex_004B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_004B80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_004B80[] = dddan_room_2Tex_004B80; -#else -static const char ddan_room_2Tex_004B80[] __attribute__((aligned (2))) = dddan_room_2Tex_004B80; -#endif - -#define dddan_room_2Tex_006380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_006380" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_006380[] = dddan_room_2Tex_006380; -#else -static const char ddan_room_2Tex_006380[] __attribute__((aligned (2))) = dddan_room_2Tex_006380; -#endif - -#define dddan_room_2Tex_003B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_003B80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_003B80[] = dddan_room_2Tex_003B80; -#else -static const char ddan_room_2Tex_003B80[] __attribute__((aligned (2))) = dddan_room_2Tex_003B80; -#endif - -#define dddan_room_2Tex_005F80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_005F80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_005F80[] = dddan_room_2Tex_005F80; -#else -static const char ddan_room_2Tex_005F80[] __attribute__((aligned (2))) = dddan_room_2Tex_005F80; -#endif - -#define dddan_room_2Tex_005380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_005380" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_005380[] = dddan_room_2Tex_005380; -#else -static const char ddan_room_2Tex_005380[] __attribute__((aligned (2))) = dddan_room_2Tex_005380; -#endif - -#define dddan_room_2Tex_004780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_004780" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_004780[] = dddan_room_2Tex_004780; -#else -static const char ddan_room_2Tex_004780[] __attribute__((aligned (2))) = dddan_room_2Tex_004780; -#endif - -#define dddan_room_2Tex_004380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_004380" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_004380[] = dddan_room_2Tex_004380; -#else -static const char ddan_room_2Tex_004380[] __attribute__((aligned (2))) = dddan_room_2Tex_004380; -#endif - -#define dddan_room_2Tex_005B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_005B80" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_005B80[] = dddan_room_2Tex_005B80; -#else -static const char ddan_room_2Tex_005B80[] __attribute__((aligned (2))) = dddan_room_2Tex_005B80; -#endif - -#define dddan_room_2DL_0035C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2DL_0035C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2DL_0035C8[] = dddan_room_2DL_0035C8; -#else -static const char ddan_room_2DL_0035C8[] __attribute__((aligned (2))) = dddan_room_2DL_0035C8; -#endif - -#define dddan_room_2DL_006CB0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2DL_006CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2DL_006CB0[] = dddan_room_2DL_006CB0; -#else -static const char ddan_room_2DL_006CB0[] __attribute__((aligned (2))) = dddan_room_2DL_006CB0; -#endif - -#define dddan_room_2Tex_006EB8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_006EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_2Tex_006EB8[] = dddan_room_2Tex_006EB8; -#else -static const char ddan_room_2Tex_006EB8[] __attribute__((aligned (2))) = dddan_room_2Tex_006EB8; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_2DL_001B30 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2DL_001B30" +static const ALIGN_ASSET(2) char ddan_room_2DL_001B30[] = dddan_room_2DL_001B30; + +#define dddan_room_2Tex_004B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_004B80" +static const ALIGN_ASSET(2) char ddan_room_2Tex_004B80[] = dddan_room_2Tex_004B80; + +#define dddan_room_2Tex_006380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_006380" +static const ALIGN_ASSET(2) char ddan_room_2Tex_006380[] = dddan_room_2Tex_006380; + +#define dddan_room_2Tex_003B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_003B80" +static const ALIGN_ASSET(2) char ddan_room_2Tex_003B80[] = dddan_room_2Tex_003B80; + +#define dddan_room_2Tex_005F80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_005F80" +static const ALIGN_ASSET(2) char ddan_room_2Tex_005F80[] = dddan_room_2Tex_005F80; + +#define dddan_room_2Tex_005380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_005380" +static const ALIGN_ASSET(2) char ddan_room_2Tex_005380[] = dddan_room_2Tex_005380; + +#define dddan_room_2Tex_004780 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_004780" +static const ALIGN_ASSET(2) char ddan_room_2Tex_004780[] = dddan_room_2Tex_004780; + +#define dddan_room_2Tex_004380 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_004380" +static const ALIGN_ASSET(2) char ddan_room_2Tex_004380[] = dddan_room_2Tex_004380; + +#define dddan_room_2Tex_005B80 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_005B80" +static const ALIGN_ASSET(2) char ddan_room_2Tex_005B80[] = dddan_room_2Tex_005B80; + +#define dddan_room_2DL_0035C8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2DL_0035C8" +static const ALIGN_ASSET(2) char ddan_room_2DL_0035C8[] = dddan_room_2DL_0035C8; + +#define dddan_room_2DL_006CB0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2DL_006CB0" +static const ALIGN_ASSET(2) char ddan_room_2DL_006CB0[] = dddan_room_2DL_006CB0; + +#define dddan_room_2Tex_006EB8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_2Tex_006EB8" +static const ALIGN_ASSET(2) char ddan_room_2Tex_006EB8[] = dddan_room_2Tex_006EB8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_3.h b/soh/assets/scenes/dungeons/ddan/ddan_room_3.h index 70e159dee..3c2b97ada 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_3.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_3.h @@ -1,184 +1,81 @@ #pragma once -#define dddan_room_3DL_0018F0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_0018F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_0018F0[] = dddan_room_3DL_0018F0; -#else -static const char ddan_room_3DL_0018F0[] __attribute__((aligned (2))) = dddan_room_3DL_0018F0; -#endif - -#define dddan_room_3Tex_00A838 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00A838" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00A838[] = dddan_room_3Tex_00A838; -#else -static const char ddan_room_3Tex_00A838[] __attribute__((aligned (2))) = dddan_room_3Tex_00A838; -#endif - -#define dddan_room_3Tex_008C38 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_008C38" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_008C38[] = dddan_room_3Tex_008C38; -#else -static const char ddan_room_3Tex_008C38[] __attribute__((aligned (2))) = dddan_room_3Tex_008C38; -#endif - -#define dddan_room_3Tex_00D038 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00D038" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00D038[] = dddan_room_3Tex_00D038; -#else -static const char ddan_room_3Tex_00D038[] __attribute__((aligned (2))) = dddan_room_3Tex_00D038; -#endif - -#define dddan_room_3Tex_008838 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_008838" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_008838[] = dddan_room_3Tex_008838; -#else -static const char ddan_room_3Tex_008838[] __attribute__((aligned (2))) = dddan_room_3Tex_008838; -#endif - -#define dddan_room_3DL_002A40 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_002A40" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_002A40[] = dddan_room_3DL_002A40; -#else -static const char ddan_room_3DL_002A40[] __attribute__((aligned (2))) = dddan_room_3DL_002A40; -#endif - -#define dddan_room_3Tex_009438 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_009438" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_009438[] = dddan_room_3Tex_009438; -#else -static const char ddan_room_3Tex_009438[] __attribute__((aligned (2))) = dddan_room_3Tex_009438; -#endif - -#define dddan_room_3Tex_009838 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_009838" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_009838[] = dddan_room_3Tex_009838; -#else -static const char ddan_room_3Tex_009838[] __attribute__((aligned (2))) = dddan_room_3Tex_009838; -#endif - -#define dddan_room_3Tex_00A038 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00A038" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00A038[] = dddan_room_3Tex_00A038; -#else -static const char ddan_room_3Tex_00A038[] __attribute__((aligned (2))) = dddan_room_3Tex_00A038; -#endif - -#define dddan_room_3Tex_00B838 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00B838" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00B838[] = dddan_room_3Tex_00B838; -#else -static const char ddan_room_3Tex_00B838[] __attribute__((aligned (2))) = dddan_room_3Tex_00B838; -#endif - -#define dddan_room_3Tex_00BC38 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00BC38" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00BC38[] = dddan_room_3Tex_00BC38; -#else -static const char ddan_room_3Tex_00BC38[] __attribute__((aligned (2))) = dddan_room_3Tex_00BC38; -#endif - -#define dddan_room_3DL_003968 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_003968" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_003968[] = dddan_room_3DL_003968; -#else -static const char ddan_room_3DL_003968[] __attribute__((aligned (2))) = dddan_room_3DL_003968; -#endif - -#define dddan_room_3Tex_00C438 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00C438" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00C438[] = dddan_room_3Tex_00C438; -#else -static const char ddan_room_3Tex_00C438[] __attribute__((aligned (2))) = dddan_room_3Tex_00C438; -#endif - -#define dddan_room_3DL_005098 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_005098" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_005098[] = dddan_room_3DL_005098; -#else -static const char ddan_room_3DL_005098[] __attribute__((aligned (2))) = dddan_room_3DL_005098; -#endif - -#define dddan_room_3Tex_00CC38 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00CC38" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00CC38[] = dddan_room_3Tex_00CC38; -#else -static const char ddan_room_3Tex_00CC38[] __attribute__((aligned (2))) = dddan_room_3Tex_00CC38; -#endif - -#define dddan_room_3Tex_00B438 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00B438" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00B438[] = dddan_room_3Tex_00B438; -#else -static const char ddan_room_3Tex_00B438[] __attribute__((aligned (2))) = dddan_room_3Tex_00B438; -#endif - -#define dddan_room_3DL_006510 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_006510" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_006510[] = dddan_room_3DL_006510; -#else -static const char ddan_room_3DL_006510[] __attribute__((aligned (2))) = dddan_room_3DL_006510; -#endif - -#define dddan_room_3DL_007168 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_007168" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_007168[] = dddan_room_3DL_007168; -#else -static const char ddan_room_3DL_007168[] __attribute__((aligned (2))) = dddan_room_3DL_007168; -#endif - -#define dddan_room_3DL_007990 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_007990" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_007990[] = dddan_room_3DL_007990; -#else -static const char ddan_room_3DL_007990[] __attribute__((aligned (2))) = dddan_room_3DL_007990; -#endif - -#define dddan_room_3DL_008018 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_008018" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_008018[] = dddan_room_3DL_008018; -#else -static const char ddan_room_3DL_008018[] __attribute__((aligned (2))) = dddan_room_3DL_008018; -#endif - -#define dddan_room_3TLUT_008630 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3TLUT_008630" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3TLUT_008630[] = dddan_room_3TLUT_008630; -#else -static const char ddan_room_3TLUT_008630[] __attribute__((aligned (2))) = dddan_room_3TLUT_008630; -#endif - -#define dddan_room_3DL_008430 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_008430" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_008430[] = dddan_room_3DL_008430; -#else -static const char ddan_room_3DL_008430[] __attribute__((aligned (2))) = dddan_room_3DL_008430; -#endif - -#define dddan_room_3Tex_00B038 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00B038" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00B038[] = dddan_room_3Tex_00B038; -#else -static const char ddan_room_3Tex_00B038[] __attribute__((aligned (2))) = dddan_room_3Tex_00B038; -#endif - -#define dddan_room_3DL_00D560 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_00D560" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_00D560[] = dddan_room_3DL_00D560; -#else -static const char ddan_room_3DL_00D560[] __attribute__((aligned (2))) = dddan_room_3DL_00D560; -#endif - -#define dddan_room_3Tex_00D668 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00D668" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3Tex_00D668[] = dddan_room_3Tex_00D668; -#else -static const char ddan_room_3Tex_00D668[] __attribute__((aligned (2))) = dddan_room_3Tex_00D668; -#endif - -#define dddan_room_3DL_000430 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_000430" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_3DL_000430[] = dddan_room_3DL_000430; -#else -static const char ddan_room_3DL_000430[] __attribute__((aligned (2))) = dddan_room_3DL_000430; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_3DL_0018F0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_0018F0" +static const ALIGN_ASSET(2) char ddan_room_3DL_0018F0[] = dddan_room_3DL_0018F0; + +#define dddan_room_3Tex_00A838 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00A838" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00A838[] = dddan_room_3Tex_00A838; + +#define dddan_room_3Tex_008C38 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_008C38" +static const ALIGN_ASSET(2) char ddan_room_3Tex_008C38[] = dddan_room_3Tex_008C38; + +#define dddan_room_3Tex_00D038 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00D038" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00D038[] = dddan_room_3Tex_00D038; + +#define dddan_room_3Tex_008838 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_008838" +static const ALIGN_ASSET(2) char ddan_room_3Tex_008838[] = dddan_room_3Tex_008838; + +#define dddan_room_3DL_002A40 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_002A40" +static const ALIGN_ASSET(2) char ddan_room_3DL_002A40[] = dddan_room_3DL_002A40; + +#define dddan_room_3Tex_009438 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_009438" +static const ALIGN_ASSET(2) char ddan_room_3Tex_009438[] = dddan_room_3Tex_009438; + +#define dddan_room_3Tex_009838 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_009838" +static const ALIGN_ASSET(2) char ddan_room_3Tex_009838[] = dddan_room_3Tex_009838; + +#define dddan_room_3Tex_00A038 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00A038" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00A038[] = dddan_room_3Tex_00A038; + +#define dddan_room_3Tex_00B838 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00B838" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00B838[] = dddan_room_3Tex_00B838; + +#define dddan_room_3Tex_00BC38 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00BC38" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00BC38[] = dddan_room_3Tex_00BC38; + +#define dddan_room_3DL_003968 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_003968" +static const ALIGN_ASSET(2) char ddan_room_3DL_003968[] = dddan_room_3DL_003968; + +#define dddan_room_3Tex_00C438 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00C438" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00C438[] = dddan_room_3Tex_00C438; + +#define dddan_room_3DL_005098 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_005098" +static const ALIGN_ASSET(2) char ddan_room_3DL_005098[] = dddan_room_3DL_005098; + +#define dddan_room_3Tex_00CC38 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00CC38" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00CC38[] = dddan_room_3Tex_00CC38; + +#define dddan_room_3Tex_00B438 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00B438" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00B438[] = dddan_room_3Tex_00B438; + +#define dddan_room_3DL_006510 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_006510" +static const ALIGN_ASSET(2) char ddan_room_3DL_006510[] = dddan_room_3DL_006510; + +#define dddan_room_3DL_007168 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_007168" +static const ALIGN_ASSET(2) char ddan_room_3DL_007168[] = dddan_room_3DL_007168; + +#define dddan_room_3DL_007990 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_007990" +static const ALIGN_ASSET(2) char ddan_room_3DL_007990[] = dddan_room_3DL_007990; + +#define dddan_room_3DL_008018 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_008018" +static const ALIGN_ASSET(2) char ddan_room_3DL_008018[] = dddan_room_3DL_008018; + +#define dddan_room_3TLUT_008630 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3TLUT_008630" +static const ALIGN_ASSET(2) char ddan_room_3TLUT_008630[] = dddan_room_3TLUT_008630; + +#define dddan_room_3DL_008430 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_008430" +static const ALIGN_ASSET(2) char ddan_room_3DL_008430[] = dddan_room_3DL_008430; + +#define dddan_room_3Tex_00B038 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00B038" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00B038[] = dddan_room_3Tex_00B038; + +#define dddan_room_3DL_00D560 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_00D560" +static const ALIGN_ASSET(2) char ddan_room_3DL_00D560[] = dddan_room_3DL_00D560; + +#define dddan_room_3Tex_00D668 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3Tex_00D668" +static const ALIGN_ASSET(2) char ddan_room_3Tex_00D668[] = dddan_room_3Tex_00D668; + +#define dddan_room_3DL_000430 "__OTR__scenes/nonmq/ddan_scene/ddan_room_3DL_000430" +static const ALIGN_ASSET(2) char ddan_room_3DL_000430[] = dddan_room_3DL_000430; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_4.h b/soh/assets/scenes/dungeons/ddan/ddan_room_4.h index 7a7754009..bafd8e339 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_4.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_4.h @@ -1,72 +1,33 @@ #pragma once -#define dddan_room_4DL_003260 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4DL_003260" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4DL_003260[] = dddan_room_4DL_003260; -#else -static const char ddan_room_4DL_003260[] __attribute__((aligned (2))) = dddan_room_4DL_003260; -#endif - -#define dddan_room_4Tex_007D58 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_007D58" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4Tex_007D58[] = dddan_room_4Tex_007D58; -#else -static const char ddan_room_4Tex_007D58[] __attribute__((aligned (2))) = dddan_room_4Tex_007D58; -#endif - -#define dddan_room_4Tex_007158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_007158" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4Tex_007158[] = dddan_room_4Tex_007158; -#else -static const char ddan_room_4Tex_007158[] __attribute__((aligned (2))) = dddan_room_4Tex_007158; -#endif - -#define dddan_room_4TLUT_006B50 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4TLUT_006B50" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4TLUT_006B50[] = dddan_room_4TLUT_006B50; -#else -static const char ddan_room_4TLUT_006B50[] __attribute__((aligned (2))) = dddan_room_4TLUT_006B50; -#endif - -#define dddan_room_4Tex_009158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_009158" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4Tex_009158[] = dddan_room_4Tex_009158; -#else -static const char ddan_room_4Tex_009158[] __attribute__((aligned (2))) = dddan_room_4Tex_009158; -#endif - -#define dddan_room_4Tex_007558 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_007558" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4Tex_007558[] = dddan_room_4Tex_007558; -#else -static const char ddan_room_4Tex_007558[] __attribute__((aligned (2))) = dddan_room_4Tex_007558; -#endif - -#define dddan_room_4Tex_008D58 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_008D58" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4Tex_008D58[] = dddan_room_4Tex_008D58; -#else -static const char ddan_room_4Tex_008D58[] __attribute__((aligned (2))) = dddan_room_4Tex_008D58; -#endif - -#define dddan_room_4Tex_006D58 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_006D58" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4Tex_006D58[] = dddan_room_4Tex_006D58; -#else -static const char ddan_room_4Tex_006D58[] __attribute__((aligned (2))) = dddan_room_4Tex_006D58; -#endif - -#define dddan_room_4DL_0068C0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4DL_0068C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4DL_0068C0[] = dddan_room_4DL_0068C0; -#else -static const char ddan_room_4DL_0068C0[] __attribute__((aligned (2))) = dddan_room_4DL_0068C0; -#endif - -#define dddan_room_4Tex_008558 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_008558" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_4Tex_008558[] = dddan_room_4Tex_008558; -#else -static const char ddan_room_4Tex_008558[] __attribute__((aligned (2))) = dddan_room_4Tex_008558; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_4DL_003260 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4DL_003260" +static const ALIGN_ASSET(2) char ddan_room_4DL_003260[] = dddan_room_4DL_003260; + +#define dddan_room_4Tex_007D58 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_007D58" +static const ALIGN_ASSET(2) char ddan_room_4Tex_007D58[] = dddan_room_4Tex_007D58; + +#define dddan_room_4Tex_007158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_007158" +static const ALIGN_ASSET(2) char ddan_room_4Tex_007158[] = dddan_room_4Tex_007158; + +#define dddan_room_4TLUT_006B50 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4TLUT_006B50" +static const ALIGN_ASSET(2) char ddan_room_4TLUT_006B50[] = dddan_room_4TLUT_006B50; + +#define dddan_room_4Tex_009158 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_009158" +static const ALIGN_ASSET(2) char ddan_room_4Tex_009158[] = dddan_room_4Tex_009158; + +#define dddan_room_4Tex_007558 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_007558" +static const ALIGN_ASSET(2) char ddan_room_4Tex_007558[] = dddan_room_4Tex_007558; + +#define dddan_room_4Tex_008D58 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_008D58" +static const ALIGN_ASSET(2) char ddan_room_4Tex_008D58[] = dddan_room_4Tex_008D58; + +#define dddan_room_4Tex_006D58 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_006D58" +static const ALIGN_ASSET(2) char ddan_room_4Tex_006D58[] = dddan_room_4Tex_006D58; + +#define dddan_room_4DL_0068C0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4DL_0068C0" +static const ALIGN_ASSET(2) char ddan_room_4DL_0068C0[] = dddan_room_4DL_0068C0; + +#define dddan_room_4Tex_008558 "__OTR__scenes/nonmq/ddan_scene/ddan_room_4Tex_008558" +static const ALIGN_ASSET(2) char ddan_room_4Tex_008558[] = dddan_room_4Tex_008558; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_5.h b/soh/assets/scenes/dungeons/ddan/ddan_room_5.h index 82af5ddc9..376f1967f 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_5.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_5.h @@ -1,58 +1,27 @@ #pragma once -#define dddan_room_5DL_001D70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5DL_001D70" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_5DL_001D70[] = dddan_room_5DL_001D70; -#else -static const char ddan_room_5DL_001D70[] __attribute__((aligned (2))) = dddan_room_5DL_001D70; -#endif - -#define dddan_room_5Tex_0042B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_0042B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_5Tex_0042B8[] = dddan_room_5Tex_0042B8; -#else -static const char ddan_room_5Tex_0042B8[] __attribute__((aligned (2))) = dddan_room_5Tex_0042B8; -#endif - -#define dddan_room_5Tex_004AB8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_004AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_5Tex_004AB8[] = dddan_room_5Tex_004AB8; -#else -static const char ddan_room_5Tex_004AB8[] __attribute__((aligned (2))) = dddan_room_5Tex_004AB8; -#endif - -#define dddan_room_5Tex_0032B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_0032B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_5Tex_0032B8[] = dddan_room_5Tex_0032B8; -#else -static const char ddan_room_5Tex_0032B8[] __attribute__((aligned (2))) = dddan_room_5Tex_0032B8; -#endif - -#define dddan_room_5Tex_004EB8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_004EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_5Tex_004EB8[] = dddan_room_5Tex_004EB8; -#else -static const char ddan_room_5Tex_004EB8[] __attribute__((aligned (2))) = dddan_room_5Tex_004EB8; -#endif - -#define dddan_room_5Tex_0046B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_0046B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_5Tex_0046B8[] = dddan_room_5Tex_0046B8; -#else -static const char ddan_room_5Tex_0046B8[] __attribute__((aligned (2))) = dddan_room_5Tex_0046B8; -#endif - -#define dddan_room_5Tex_003AB8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_003AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_5Tex_003AB8[] = dddan_room_5Tex_003AB8; -#else -static const char ddan_room_5Tex_003AB8[] __attribute__((aligned (2))) = dddan_room_5Tex_003AB8; -#endif - -#define dddan_room_5Tex_0056B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_5Tex_0056B8[] = dddan_room_5Tex_0056B8; -#else -static const char ddan_room_5Tex_0056B8[] __attribute__((aligned (2))) = dddan_room_5Tex_0056B8; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_5DL_001D70 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5DL_001D70" +static const ALIGN_ASSET(2) char ddan_room_5DL_001D70[] = dddan_room_5DL_001D70; + +#define dddan_room_5Tex_0042B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_0042B8" +static const ALIGN_ASSET(2) char ddan_room_5Tex_0042B8[] = dddan_room_5Tex_0042B8; + +#define dddan_room_5Tex_004AB8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_004AB8" +static const ALIGN_ASSET(2) char ddan_room_5Tex_004AB8[] = dddan_room_5Tex_004AB8; + +#define dddan_room_5Tex_0032B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_0032B8" +static const ALIGN_ASSET(2) char ddan_room_5Tex_0032B8[] = dddan_room_5Tex_0032B8; + +#define dddan_room_5Tex_004EB8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_004EB8" +static const ALIGN_ASSET(2) char ddan_room_5Tex_004EB8[] = dddan_room_5Tex_004EB8; + +#define dddan_room_5Tex_0046B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_0046B8" +static const ALIGN_ASSET(2) char ddan_room_5Tex_0046B8[] = dddan_room_5Tex_0046B8; + +#define dddan_room_5Tex_003AB8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_003AB8" +static const ALIGN_ASSET(2) char ddan_room_5Tex_003AB8[] = dddan_room_5Tex_003AB8; + +#define dddan_room_5Tex_0056B8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_5Tex_0056B8" +static const ALIGN_ASSET(2) char ddan_room_5Tex_0056B8[] = dddan_room_5Tex_0056B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_6.h b/soh/assets/scenes/dungeons/ddan/ddan_room_6.h index 85ef3d6b6..3b88aeb91 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_6.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_6.h @@ -1,37 +1,18 @@ #pragma once -#define dddan_room_6DL_000700 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6DL_000700" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_6DL_000700[] = dddan_room_6DL_000700; -#else -static const char ddan_room_6DL_000700[] __attribute__((aligned (2))) = dddan_room_6DL_000700; -#endif - -#define dddan_room_6Tex_000CA8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6Tex_000CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_6Tex_000CA8[] = dddan_room_6Tex_000CA8; -#else -static const char ddan_room_6Tex_000CA8[] __attribute__((aligned (2))) = dddan_room_6Tex_000CA8; -#endif - -#define dddan_room_6Tex_0014A8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6Tex_0014A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_6Tex_0014A8[] = dddan_room_6Tex_0014A8; -#else -static const char ddan_room_6Tex_0014A8[] __attribute__((aligned (2))) = dddan_room_6Tex_0014A8; -#endif - -#define dddan_room_6Tex_0020A8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6Tex_0020A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_6Tex_0020A8[] = dddan_room_6Tex_0020A8; -#else -static const char ddan_room_6Tex_0020A8[] __attribute__((aligned (2))) = dddan_room_6Tex_0020A8; -#endif - -#define dddan_room_6Tex_001CA8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6Tex_001CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_6Tex_001CA8[] = dddan_room_6Tex_001CA8; -#else -static const char ddan_room_6Tex_001CA8[] __attribute__((aligned (2))) = dddan_room_6Tex_001CA8; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_6DL_000700 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6DL_000700" +static const ALIGN_ASSET(2) char ddan_room_6DL_000700[] = dddan_room_6DL_000700; + +#define dddan_room_6Tex_000CA8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6Tex_000CA8" +static const ALIGN_ASSET(2) char ddan_room_6Tex_000CA8[] = dddan_room_6Tex_000CA8; + +#define dddan_room_6Tex_0014A8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6Tex_0014A8" +static const ALIGN_ASSET(2) char ddan_room_6Tex_0014A8[] = dddan_room_6Tex_0014A8; + +#define dddan_room_6Tex_0020A8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6Tex_0020A8" +static const ALIGN_ASSET(2) char ddan_room_6Tex_0020A8[] = dddan_room_6Tex_0020A8; + +#define dddan_room_6Tex_001CA8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_6Tex_001CA8" +static const ALIGN_ASSET(2) char ddan_room_6Tex_001CA8[] = dddan_room_6Tex_001CA8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_7.h b/soh/assets/scenes/dungeons/ddan/ddan_room_7.h index 921da35d2..fe34da119 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_7.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_7.h @@ -1,65 +1,30 @@ #pragma once -#define dddan_room_7DL_002670 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7DL_002670" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7DL_002670[] = dddan_room_7DL_002670; -#else -static const char ddan_room_7DL_002670[] __attribute__((aligned (2))) = dddan_room_7DL_002670; -#endif - -#define dddan_room_7Tex_0046F8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_0046F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7Tex_0046F8[] = dddan_room_7Tex_0046F8; -#else -static const char ddan_room_7Tex_0046F8[] __attribute__((aligned (2))) = dddan_room_7Tex_0046F8; -#endif - -#define dddan_room_7Tex_004AF8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_004AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7Tex_004AF8[] = dddan_room_7Tex_004AF8; -#else -static const char ddan_room_7Tex_004AF8[] __attribute__((aligned (2))) = dddan_room_7Tex_004AF8; -#endif - -#define dddan_room_7Tex_0066F8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_0066F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7Tex_0066F8[] = dddan_room_7Tex_0066F8; -#else -static const char ddan_room_7Tex_0066F8[] __attribute__((aligned (2))) = dddan_room_7Tex_0066F8; -#endif - -#define dddan_room_7Tex_004EF8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_004EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7Tex_004EF8[] = dddan_room_7Tex_004EF8; -#else -static const char ddan_room_7Tex_004EF8[] __attribute__((aligned (2))) = dddan_room_7Tex_004EF8; -#endif - -#define dddan_room_7Tex_0056F8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_0056F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7Tex_0056F8[] = dddan_room_7Tex_0056F8; -#else -static const char ddan_room_7Tex_0056F8[] __attribute__((aligned (2))) = dddan_room_7Tex_0056F8; -#endif - -#define dddan_room_7Tex_005EF8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_005EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7Tex_005EF8[] = dddan_room_7Tex_005EF8; -#else -static const char ddan_room_7Tex_005EF8[] __attribute__((aligned (2))) = dddan_room_7Tex_005EF8; -#endif - -#define dddan_room_7Tex_006EF8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_006EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7Tex_006EF8[] = dddan_room_7Tex_006EF8; -#else -static const char ddan_room_7Tex_006EF8[] __attribute__((aligned (2))) = dddan_room_7Tex_006EF8; -#endif - -#define dddan_room_7DL_004538 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7DL_004538" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_7DL_004538[] = dddan_room_7DL_004538; -#else -static const char ddan_room_7DL_004538[] __attribute__((aligned (2))) = dddan_room_7DL_004538; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_7DL_002670 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7DL_002670" +static const ALIGN_ASSET(2) char ddan_room_7DL_002670[] = dddan_room_7DL_002670; + +#define dddan_room_7Tex_0046F8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_0046F8" +static const ALIGN_ASSET(2) char ddan_room_7Tex_0046F8[] = dddan_room_7Tex_0046F8; + +#define dddan_room_7Tex_004AF8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_004AF8" +static const ALIGN_ASSET(2) char ddan_room_7Tex_004AF8[] = dddan_room_7Tex_004AF8; + +#define dddan_room_7Tex_0066F8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_0066F8" +static const ALIGN_ASSET(2) char ddan_room_7Tex_0066F8[] = dddan_room_7Tex_0066F8; + +#define dddan_room_7Tex_004EF8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_004EF8" +static const ALIGN_ASSET(2) char ddan_room_7Tex_004EF8[] = dddan_room_7Tex_004EF8; + +#define dddan_room_7Tex_0056F8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_0056F8" +static const ALIGN_ASSET(2) char ddan_room_7Tex_0056F8[] = dddan_room_7Tex_0056F8; + +#define dddan_room_7Tex_005EF8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_005EF8" +static const ALIGN_ASSET(2) char ddan_room_7Tex_005EF8[] = dddan_room_7Tex_005EF8; + +#define dddan_room_7Tex_006EF8 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7Tex_006EF8" +static const ALIGN_ASSET(2) char ddan_room_7Tex_006EF8[] = dddan_room_7Tex_006EF8; + +#define dddan_room_7DL_004538 "__OTR__scenes/nonmq/ddan_scene/ddan_room_7DL_004538" +static const ALIGN_ASSET(2) char ddan_room_7DL_004538[] = dddan_room_7DL_004538; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_8.h b/soh/assets/scenes/dungeons/ddan/ddan_room_8.h index ad4116e17..6248efbb6 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_8.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_8.h @@ -1,93 +1,42 @@ #pragma once -#define dddan_room_8DL_002610 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8DL_002610" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8DL_002610[] = dddan_room_8DL_002610; -#else -static const char ddan_room_8DL_002610[] __attribute__((aligned (2))) = dddan_room_8DL_002610; -#endif - -#define dddan_room_8Tex_0089A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0089A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0089A0[] = dddan_room_8Tex_0089A0; -#else -static const char ddan_room_8Tex_0089A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0089A0; -#endif - -#define dddan_room_8Tex_0071A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0071A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0071A0[] = dddan_room_8Tex_0071A0; -#else -static const char ddan_room_8Tex_0071A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0071A0; -#endif - -#define dddan_room_8Tex_0091A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0091A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0091A0[] = dddan_room_8Tex_0091A0; -#else -static const char ddan_room_8Tex_0091A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0091A0; -#endif - -#define dddan_room_8Tex_0051A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0051A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0051A0[] = dddan_room_8Tex_0051A0; -#else -static const char ddan_room_8Tex_0051A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0051A0; -#endif - -#define dddan_room_8Tex_0081A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0081A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0081A0[] = dddan_room_8Tex_0081A0; -#else -static const char ddan_room_8Tex_0081A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0081A0; -#endif - -#define dddan_room_8Tex_004DA0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_004DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_004DA0[] = dddan_room_8Tex_004DA0; -#else -static const char ddan_room_8Tex_004DA0[] __attribute__((aligned (2))) = dddan_room_8Tex_004DA0; -#endif - -#define dddan_room_8Tex_0069A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0069A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0069A0[] = dddan_room_8Tex_0069A0; -#else -static const char ddan_room_8Tex_0069A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0069A0; -#endif - -#define dddan_room_8Tex_0041A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0041A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0041A0[] = dddan_room_8Tex_0041A0; -#else -static const char ddan_room_8Tex_0041A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0041A0; -#endif - -#define dddan_room_8Tex_0079A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0079A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0079A0[] = dddan_room_8Tex_0079A0; -#else -static const char ddan_room_8Tex_0079A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0079A0; -#endif - -#define dddan_room_8Tex_0049A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0049A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0049A0[] = dddan_room_8Tex_0049A0; -#else -static const char ddan_room_8Tex_0049A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0049A0; -#endif - -#define dddan_room_8Tex_0059A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0059A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0059A0[] = dddan_room_8Tex_0059A0; -#else -static const char ddan_room_8Tex_0059A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0059A0; -#endif - -#define dddan_room_8Tex_0061A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0061A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_8Tex_0061A0[] = dddan_room_8Tex_0061A0; -#else -static const char ddan_room_8Tex_0061A0[] __attribute__((aligned (2))) = dddan_room_8Tex_0061A0; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_8DL_002610 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8DL_002610" +static const ALIGN_ASSET(2) char ddan_room_8DL_002610[] = dddan_room_8DL_002610; + +#define dddan_room_8Tex_0089A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0089A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0089A0[] = dddan_room_8Tex_0089A0; + +#define dddan_room_8Tex_0071A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0071A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0071A0[] = dddan_room_8Tex_0071A0; + +#define dddan_room_8Tex_0091A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0091A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0091A0[] = dddan_room_8Tex_0091A0; + +#define dddan_room_8Tex_0051A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0051A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0051A0[] = dddan_room_8Tex_0051A0; + +#define dddan_room_8Tex_0081A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0081A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0081A0[] = dddan_room_8Tex_0081A0; + +#define dddan_room_8Tex_004DA0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_004DA0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_004DA0[] = dddan_room_8Tex_004DA0; + +#define dddan_room_8Tex_0069A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0069A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0069A0[] = dddan_room_8Tex_0069A0; + +#define dddan_room_8Tex_0041A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0041A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0041A0[] = dddan_room_8Tex_0041A0; + +#define dddan_room_8Tex_0079A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0079A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0079A0[] = dddan_room_8Tex_0079A0; + +#define dddan_room_8Tex_0049A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0049A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0049A0[] = dddan_room_8Tex_0049A0; + +#define dddan_room_8Tex_0059A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0059A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0059A0[] = dddan_room_8Tex_0059A0; + +#define dddan_room_8Tex_0061A0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_8Tex_0061A0" +static const ALIGN_ASSET(2) char ddan_room_8Tex_0061A0[] = dddan_room_8Tex_0061A0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_room_9.h b/soh/assets/scenes/dungeons/ddan/ddan_room_9.h index 149c2d600..2b3b98a19 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_room_9.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_room_9.h @@ -1,100 +1,45 @@ #pragma once -#define dddan_room_9DL_0032B0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9DL_0032B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9DL_0032B0[] = dddan_room_9DL_0032B0; -#else -static const char ddan_room_9DL_0032B0[] __attribute__((aligned (2))) = dddan_room_9DL_0032B0; -#endif - -#define dddan_room_9Tex_009128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_009128" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_009128[] = dddan_room_9Tex_009128; -#else -static const char ddan_room_9Tex_009128[] __attribute__((aligned (2))) = dddan_room_9Tex_009128; -#endif - -#define dddan_room_9Tex_009928 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_009928" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_009928[] = dddan_room_9Tex_009928; -#else -static const char ddan_room_9Tex_009928[] __attribute__((aligned (2))) = dddan_room_9Tex_009928; -#endif - -#define dddan_room_9Tex_00B128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_00B128" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_00B128[] = dddan_room_9Tex_00B128; -#else -static const char ddan_room_9Tex_00B128[] __attribute__((aligned (2))) = dddan_room_9Tex_00B128; -#endif - -#define dddan_room_9Tex_006928 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_006928" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_006928[] = dddan_room_9Tex_006928; -#else -static const char ddan_room_9Tex_006928[] __attribute__((aligned (2))) = dddan_room_9Tex_006928; -#endif - -#define dddan_room_9Tex_006128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_006128" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_006128[] = dddan_room_9Tex_006128; -#else -static const char ddan_room_9Tex_006128[] __attribute__((aligned (2))) = dddan_room_9Tex_006128; -#endif - -#define dddan_room_9Tex_008D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_008D28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_008D28[] = dddan_room_9Tex_008D28; -#else -static const char ddan_room_9Tex_008D28[] __attribute__((aligned (2))) = dddan_room_9Tex_008D28; -#endif - -#define dddan_room_9Tex_007D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_007D28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_007D28[] = dddan_room_9Tex_007D28; -#else -static const char ddan_room_9Tex_007D28[] __attribute__((aligned (2))) = dddan_room_9Tex_007D28; -#endif - -#define dddan_room_9Tex_006D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_006D28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_006D28[] = dddan_room_9Tex_006D28; -#else -static const char ddan_room_9Tex_006D28[] __attribute__((aligned (2))) = dddan_room_9Tex_006D28; -#endif - -#define dddan_room_9Tex_00A128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_00A128" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_00A128[] = dddan_room_9Tex_00A128; -#else -static const char ddan_room_9Tex_00A128[] __attribute__((aligned (2))) = dddan_room_9Tex_00A128; -#endif - -#define dddan_room_9Tex_005528 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_005528" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_005528[] = dddan_room_9Tex_005528; -#else -static const char ddan_room_9Tex_005528[] __attribute__((aligned (2))) = dddan_room_9Tex_005528; -#endif - -#define dddan_room_9Tex_005D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_005D28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_005D28[] = dddan_room_9Tex_005D28; -#else -static const char ddan_room_9Tex_005D28[] __attribute__((aligned (2))) = dddan_room_9Tex_005D28; -#endif - -#define dddan_room_9Tex_005128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_005128" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_005128[] = dddan_room_9Tex_005128; -#else -static const char ddan_room_9Tex_005128[] __attribute__((aligned (2))) = dddan_room_9Tex_005128; -#endif - -#define dddan_room_9Tex_00A928 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_00A928" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_room_9Tex_00A928[] = dddan_room_9Tex_00A928; -#else -static const char ddan_room_9Tex_00A928[] __attribute__((aligned (2))) = dddan_room_9Tex_00A928; -#endif - +#include "align_asset_macro.h" + +#define dddan_room_9DL_0032B0 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9DL_0032B0" +static const ALIGN_ASSET(2) char ddan_room_9DL_0032B0[] = dddan_room_9DL_0032B0; + +#define dddan_room_9Tex_009128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_009128" +static const ALIGN_ASSET(2) char ddan_room_9Tex_009128[] = dddan_room_9Tex_009128; + +#define dddan_room_9Tex_009928 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_009928" +static const ALIGN_ASSET(2) char ddan_room_9Tex_009928[] = dddan_room_9Tex_009928; + +#define dddan_room_9Tex_00B128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_00B128" +static const ALIGN_ASSET(2) char ddan_room_9Tex_00B128[] = dddan_room_9Tex_00B128; + +#define dddan_room_9Tex_006928 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_006928" +static const ALIGN_ASSET(2) char ddan_room_9Tex_006928[] = dddan_room_9Tex_006928; + +#define dddan_room_9Tex_006128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_006128" +static const ALIGN_ASSET(2) char ddan_room_9Tex_006128[] = dddan_room_9Tex_006128; + +#define dddan_room_9Tex_008D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_008D28" +static const ALIGN_ASSET(2) char ddan_room_9Tex_008D28[] = dddan_room_9Tex_008D28; + +#define dddan_room_9Tex_007D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_007D28" +static const ALIGN_ASSET(2) char ddan_room_9Tex_007D28[] = dddan_room_9Tex_007D28; + +#define dddan_room_9Tex_006D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_006D28" +static const ALIGN_ASSET(2) char ddan_room_9Tex_006D28[] = dddan_room_9Tex_006D28; + +#define dddan_room_9Tex_00A128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_00A128" +static const ALIGN_ASSET(2) char ddan_room_9Tex_00A128[] = dddan_room_9Tex_00A128; + +#define dddan_room_9Tex_005528 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_005528" +static const ALIGN_ASSET(2) char ddan_room_9Tex_005528[] = dddan_room_9Tex_005528; + +#define dddan_room_9Tex_005D28 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_005D28" +static const ALIGN_ASSET(2) char ddan_room_9Tex_005D28[] = dddan_room_9Tex_005D28; + +#define dddan_room_9Tex_005128 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_005128" +static const ALIGN_ASSET(2) char ddan_room_9Tex_005128[] = dddan_room_9Tex_005128; + +#define dddan_room_9Tex_00A928 "__OTR__scenes/nonmq/ddan_scene/ddan_room_9Tex_00A928" +static const ALIGN_ASSET(2) char ddan_room_9Tex_00A928[] = dddan_room_9Tex_00A928; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan/ddan_scene.h b/soh/assets/scenes/dungeons/ddan/ddan_scene.h index 55decf69d..0a0d838d5 100644 --- a/soh/assets/scenes/dungeons/ddan/ddan_scene.h +++ b/soh/assets/scenes/dungeons/ddan/ddan_scene.h @@ -1,93 +1,42 @@ #pragma once -#define dgDCDayEntranceTex "__OTR__scenes/nonmq/ddan_scene/gDCDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCDayEntranceTex[] = dgDCDayEntranceTex; -#else -static const char gDCDayEntranceTex[] __attribute__((aligned (2))) = dgDCDayEntranceTex; -#endif - -#define dgDCNightEntranceTex "__OTR__scenes/nonmq/ddan_scene/gDCNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCNightEntranceTex[] = dgDCNightEntranceTex; -#else -static const char gDCNightEntranceTex[] __attribute__((aligned (2))) = dgDCNightEntranceTex; -#endif - -#define dgDCLavaFloor1Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCLavaFloor1Tex[] = dgDCLavaFloor1Tex; -#else -static const char gDCLavaFloor1Tex[] __attribute__((aligned (2))) = dgDCLavaFloor1Tex; -#endif - -#define dgDCLavaFloor2Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCLavaFloor2Tex[] = dgDCLavaFloor2Tex; -#else -static const char gDCLavaFloor2Tex[] __attribute__((aligned (2))) = dgDCLavaFloor2Tex; -#endif - -#define dgDCLavaFloor3Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCLavaFloor3Tex[] = dgDCLavaFloor3Tex; -#else -static const char gDCLavaFloor3Tex[] __attribute__((aligned (2))) = dgDCLavaFloor3Tex; -#endif - -#define dgDCLavaFloor4Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCLavaFloor4Tex[] = dgDCLavaFloor4Tex; -#else -static const char gDCLavaFloor4Tex[] __attribute__((aligned (2))) = dgDCLavaFloor4Tex; -#endif - -#define dgDCLavaFloor5Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCLavaFloor5Tex[] = dgDCLavaFloor5Tex; -#else -static const char gDCLavaFloor5Tex[] __attribute__((aligned (2))) = dgDCLavaFloor5Tex; -#endif - -#define dgDCLavaFloor6Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCLavaFloor6Tex[] = dgDCLavaFloor6Tex; -#else -static const char gDCLavaFloor6Tex[] __attribute__((aligned (2))) = dgDCLavaFloor6Tex; -#endif - -#define dgDCLavaFloor7Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCLavaFloor7Tex[] = dgDCLavaFloor7Tex; -#else -static const char gDCLavaFloor7Tex[] __attribute__((aligned (2))) = dgDCLavaFloor7Tex; -#endif - -#define dgDCLavaFloor8Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDCLavaFloor8Tex[] = dgDCLavaFloor8Tex; -#else -static const char gDCLavaFloor8Tex[] __attribute__((aligned (2))) = dgDCLavaFloor8Tex; -#endif - -#define dgDcOpeningCs "__OTR__scenes/nonmq/ddan_scene/gDcOpeningCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gDcOpeningCs[] = dgDcOpeningCs; -#else -static const char gDcOpeningCs[] __attribute__((aligned (2))) = dgDcOpeningCs; -#endif - -#define dddan_sceneCollisionHeader_011D40 "__OTR__scenes/nonmq/ddan_scene/ddan_sceneCollisionHeader_011D40" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_sceneCollisionHeader_011D40[] = dddan_sceneCollisionHeader_011D40; -#else -static const char ddan_sceneCollisionHeader_011D40[] __attribute__((aligned (2))) = dddan_sceneCollisionHeader_011D40; -#endif - -#define dddan_sceneTLUT_011D70 "__OTR__scenes/nonmq/ddan_scene/ddan_sceneTLUT_011D70" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_sceneTLUT_011D70[] = dddan_sceneTLUT_011D70; -#else -static const char ddan_sceneTLUT_011D70[] __attribute__((aligned (2))) = dddan_sceneTLUT_011D70; -#endif - +#include "align_asset_macro.h" + +#define dgDCDayEntranceTex "__OTR__scenes/nonmq/ddan_scene/gDCDayEntranceTex" +static const ALIGN_ASSET(2) char gDCDayEntranceTex[] = dgDCDayEntranceTex; + +#define dgDCNightEntranceTex "__OTR__scenes/nonmq/ddan_scene/gDCNightEntranceTex" +static const ALIGN_ASSET(2) char gDCNightEntranceTex[] = dgDCNightEntranceTex; + +#define dgDCLavaFloor1Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor1Tex" +static const ALIGN_ASSET(2) char gDCLavaFloor1Tex[] = dgDCLavaFloor1Tex; + +#define dgDCLavaFloor2Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor2Tex" +static const ALIGN_ASSET(2) char gDCLavaFloor2Tex[] = dgDCLavaFloor2Tex; + +#define dgDCLavaFloor3Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor3Tex" +static const ALIGN_ASSET(2) char gDCLavaFloor3Tex[] = dgDCLavaFloor3Tex; + +#define dgDCLavaFloor4Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor4Tex" +static const ALIGN_ASSET(2) char gDCLavaFloor4Tex[] = dgDCLavaFloor4Tex; + +#define dgDCLavaFloor5Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor5Tex" +static const ALIGN_ASSET(2) char gDCLavaFloor5Tex[] = dgDCLavaFloor5Tex; + +#define dgDCLavaFloor6Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor6Tex" +static const ALIGN_ASSET(2) char gDCLavaFloor6Tex[] = dgDCLavaFloor6Tex; + +#define dgDCLavaFloor7Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor7Tex" +static const ALIGN_ASSET(2) char gDCLavaFloor7Tex[] = dgDCLavaFloor7Tex; + +#define dgDCLavaFloor8Tex "__OTR__scenes/nonmq/ddan_scene/gDCLavaFloor8Tex" +static const ALIGN_ASSET(2) char gDCLavaFloor8Tex[] = dgDCLavaFloor8Tex; + +#define dgDcOpeningCs "__OTR__scenes/nonmq/ddan_scene/gDcOpeningCs" +static const ALIGN_ASSET(2) char gDcOpeningCs[] = dgDcOpeningCs; + +#define dddan_sceneCollisionHeader_011D40 "__OTR__scenes/nonmq/ddan_scene/ddan_sceneCollisionHeader_011D40" +static const ALIGN_ASSET(2) char ddan_sceneCollisionHeader_011D40[] = dddan_sceneCollisionHeader_011D40; + +#define dddan_sceneTLUT_011D70 "__OTR__scenes/nonmq/ddan_scene/ddan_sceneTLUT_011D70" +static const ALIGN_ASSET(2) char ddan_sceneTLUT_011D70[] = dddan_sceneTLUT_011D70; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_room_0.h b/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_room_0.h index eee3f5458..0531e32cd 100644 --- a/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_room_0.h +++ b/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_room_0.h @@ -1,37 +1,18 @@ #pragma once -#define dddan_boss_room_0DL_002000 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0DL_002000" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_0DL_002000[] = dddan_boss_room_0DL_002000; -#else -static const char ddan_boss_room_0DL_002000[] __attribute__((aligned (2))) = dddan_boss_room_0DL_002000; -#endif - -#define dddan_boss_room_0Tex_003A28 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0Tex_003A28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_0Tex_003A28[] = dddan_boss_room_0Tex_003A28; -#else -static const char ddan_boss_room_0Tex_003A28[] __attribute__((aligned (2))) = dddan_boss_room_0Tex_003A28; -#endif - -#define dddan_boss_room_0Tex_003628 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0Tex_003628" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_0Tex_003628[] = dddan_boss_room_0Tex_003628; -#else -static const char ddan_boss_room_0Tex_003628[] __attribute__((aligned (2))) = dddan_boss_room_0Tex_003628; -#endif - -#define dddan_boss_room_0Tex_003E28 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0Tex_003E28" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_0Tex_003E28[] = dddan_boss_room_0Tex_003E28; -#else -static const char ddan_boss_room_0Tex_003E28[] __attribute__((aligned (2))) = dddan_boss_room_0Tex_003E28; -#endif - -#define dddan_boss_room_0Tex_004628 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0Tex_004628" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_0Tex_004628[] = dddan_boss_room_0Tex_004628; -#else -static const char ddan_boss_room_0Tex_004628[] __attribute__((aligned (2))) = dddan_boss_room_0Tex_004628; -#endif - +#include "align_asset_macro.h" + +#define dddan_boss_room_0DL_002000 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0DL_002000" +static const ALIGN_ASSET(2) char ddan_boss_room_0DL_002000[] = dddan_boss_room_0DL_002000; + +#define dddan_boss_room_0Tex_003A28 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0Tex_003A28" +static const ALIGN_ASSET(2) char ddan_boss_room_0Tex_003A28[] = dddan_boss_room_0Tex_003A28; + +#define dddan_boss_room_0Tex_003628 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0Tex_003628" +static const ALIGN_ASSET(2) char ddan_boss_room_0Tex_003628[] = dddan_boss_room_0Tex_003628; + +#define dddan_boss_room_0Tex_003E28 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0Tex_003E28" +static const ALIGN_ASSET(2) char ddan_boss_room_0Tex_003E28[] = dddan_boss_room_0Tex_003E28; + +#define dddan_boss_room_0Tex_004628 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_0Tex_004628" +static const ALIGN_ASSET(2) char ddan_boss_room_0Tex_004628[] = dddan_boss_room_0Tex_004628; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_room_1.h b/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_room_1.h index 5b7a2fd33..dfaaa07e5 100644 --- a/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_room_1.h +++ b/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_room_1.h @@ -1,37 +1,18 @@ #pragma once -#define dgDodongosCavernBossLavaFloorTex "__OTR__scenes/nonmq/ddan_boss_scene/gDodongosCavernBossLavaFloorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernBossLavaFloorTex[] = dgDodongosCavernBossLavaFloorTex; -#else -static const char gDodongosCavernBossLavaFloorTex[] __attribute__((aligned (2))) = dgDodongosCavernBossLavaFloorTex; -#endif - -#define dddan_boss_room_1DL_001A38 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_1DL_001A38" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_1DL_001A38[] = dddan_boss_room_1DL_001A38; -#else -static const char ddan_boss_room_1DL_001A38[] __attribute__((aligned (2))) = dddan_boss_room_1DL_001A38; -#endif - -#define dddan_boss_room_1Tex_0031D8 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_1Tex_0031D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_1Tex_0031D8[] = dddan_boss_room_1Tex_0031D8; -#else -static const char ddan_boss_room_1Tex_0031D8[] __attribute__((aligned (2))) = dddan_boss_room_1Tex_0031D8; -#endif - -#define dddan_boss_room_1Tex_0039D8 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_1Tex_0039D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_1Tex_0039D8[] = dddan_boss_room_1Tex_0039D8; -#else -static const char ddan_boss_room_1Tex_0039D8[] __attribute__((aligned (2))) = dddan_boss_room_1Tex_0039D8; -#endif - -#define dddan_boss_room_1DL_000A50 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_1DL_000A50" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_room_1DL_000A50[] = dddan_boss_room_1DL_000A50; -#else -static const char ddan_boss_room_1DL_000A50[] __attribute__((aligned (2))) = dddan_boss_room_1DL_000A50; -#endif - +#include "align_asset_macro.h" + +#define dgDodongosCavernBossLavaFloorTex "__OTR__scenes/nonmq/ddan_boss_scene/gDodongosCavernBossLavaFloorTex" +static const ALIGN_ASSET(2) char gDodongosCavernBossLavaFloorTex[] = dgDodongosCavernBossLavaFloorTex; + +#define dddan_boss_room_1DL_001A38 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_1DL_001A38" +static const ALIGN_ASSET(2) char ddan_boss_room_1DL_001A38[] = dddan_boss_room_1DL_001A38; + +#define dddan_boss_room_1Tex_0031D8 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_1Tex_0031D8" +static const ALIGN_ASSET(2) char ddan_boss_room_1Tex_0031D8[] = dddan_boss_room_1Tex_0031D8; + +#define dddan_boss_room_1Tex_0039D8 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_1Tex_0039D8" +static const ALIGN_ASSET(2) char ddan_boss_room_1Tex_0039D8[] = dddan_boss_room_1Tex_0039D8; + +#define dddan_boss_room_1DL_000A50 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_room_1DL_000A50" +static const ALIGN_ASSET(2) char ddan_boss_room_1DL_000A50[] = dddan_boss_room_1DL_000A50; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_scene.h b/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_scene.h index 77b4ff806..171adff35 100644 --- a/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_scene.h +++ b/soh/assets/scenes/dungeons/ddan_boss/ddan_boss_scene.h @@ -1,37 +1,18 @@ #pragma once -#define dddan_boss_sceneCollisionHeader_000E20 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneCollisionHeader_000E20" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_sceneCollisionHeader_000E20[] = dddan_boss_sceneCollisionHeader_000E20; -#else -static const char ddan_boss_sceneCollisionHeader_000E20[] __attribute__((aligned (2))) = dddan_boss_sceneCollisionHeader_000E20; -#endif - -#define dddan_boss_sceneTex_001858 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneTex_001858" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_sceneTex_001858[] = dddan_boss_sceneTex_001858; -#else -static const char ddan_boss_sceneTex_001858[] __attribute__((aligned (2))) = dddan_boss_sceneTex_001858; -#endif - -#define dddan_boss_sceneTLUT_000E50 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneTLUT_000E50" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_sceneTLUT_000E50[] = dddan_boss_sceneTLUT_000E50; -#else -static const char ddan_boss_sceneTLUT_000E50[] __attribute__((aligned (2))) = dddan_boss_sceneTLUT_000E50; -#endif - -#define dddan_boss_sceneTex_002058 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneTex_002058" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_sceneTex_002058[] = dddan_boss_sceneTex_002058; -#else -static const char ddan_boss_sceneTex_002058[] __attribute__((aligned (2))) = dddan_boss_sceneTex_002058; -#endif - -#define dddan_boss_sceneTex_001058 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneTex_001058" -#ifdef _WIN32 -static const __declspec(align(2)) char ddan_boss_sceneTex_001058[] = dddan_boss_sceneTex_001058; -#else -static const char ddan_boss_sceneTex_001058[] __attribute__((aligned (2))) = dddan_boss_sceneTex_001058; -#endif - +#include "align_asset_macro.h" + +#define dddan_boss_sceneCollisionHeader_000E20 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneCollisionHeader_000E20" +static const ALIGN_ASSET(2) char ddan_boss_sceneCollisionHeader_000E20[] = dddan_boss_sceneCollisionHeader_000E20; + +#define dddan_boss_sceneTex_001858 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneTex_001858" +static const ALIGN_ASSET(2) char ddan_boss_sceneTex_001858[] = dddan_boss_sceneTex_001858; + +#define dddan_boss_sceneTLUT_000E50 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneTLUT_000E50" +static const ALIGN_ASSET(2) char ddan_boss_sceneTLUT_000E50[] = dddan_boss_sceneTLUT_000E50; + +#define dddan_boss_sceneTex_002058 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneTex_002058" +static const ALIGN_ASSET(2) char ddan_boss_sceneTex_002058[] = dddan_boss_sceneTex_002058; + +#define dddan_boss_sceneTex_001058 "__OTR__scenes/nonmq/ddan_boss_scene/ddan_boss_sceneTex_001058" +static const ALIGN_ASSET(2) char ddan_boss_sceneTex_001058[] = dddan_boss_sceneTex_001058; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_0.h b/soh/assets/scenes/dungeons/ganon/ganon_room_0.h index 1615ffa8d..6dd42da48 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_0.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_0.h @@ -1,65 +1,30 @@ #pragma once -#define dganon_room_0DL_004C50 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0DL_004C50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0DL_004C50[] = dganon_room_0DL_004C50; -#else -static const char ganon_room_0DL_004C50[] __attribute__((aligned (2))) = dganon_room_0DL_004C50; -#endif - -#define dganon_room_0Tex_004C68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_004C68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0Tex_004C68[] = dganon_room_0Tex_004C68; -#else -static const char ganon_room_0Tex_004C68[] __attribute__((aligned (2))) = dganon_room_0Tex_004C68; -#endif - -#define dganon_room_0Tex_005468 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_005468" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0Tex_005468[] = dganon_room_0Tex_005468; -#else -static const char ganon_room_0Tex_005468[] __attribute__((aligned (2))) = dganon_room_0Tex_005468; -#endif - -#define dganon_room_0Tex_007068 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_007068" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0Tex_007068[] = dganon_room_0Tex_007068; -#else -static const char ganon_room_0Tex_007068[] __attribute__((aligned (2))) = dganon_room_0Tex_007068; -#endif - -#define dganon_room_0Tex_006068 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_006068" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0Tex_006068[] = dganon_room_0Tex_006068; -#else -static const char ganon_room_0Tex_006068[] __attribute__((aligned (2))) = dganon_room_0Tex_006068; -#endif - -#define dganon_room_0Tex_006868 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_006868" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0Tex_006868[] = dganon_room_0Tex_006868; -#else -static const char ganon_room_0Tex_006868[] __attribute__((aligned (2))) = dganon_room_0Tex_006868; -#endif - -#define dganon_room_0Tex_005C68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_005C68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0Tex_005C68[] = dganon_room_0Tex_005C68; -#else -static const char ganon_room_0Tex_005C68[] __attribute__((aligned (2))) = dganon_room_0Tex_005C68; -#endif - -#define dganon_room_0DL_0076C0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0DL_0076C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0DL_0076C0[] = dganon_room_0DL_0076C0; -#else -static const char ganon_room_0DL_0076C0[] __attribute__((aligned (2))) = dganon_room_0DL_0076C0; -#endif - -#define dganon_room_0Tex_0076D0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_0076D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_0Tex_0076D0[] = dganon_room_0Tex_0076D0; -#else -static const char ganon_room_0Tex_0076D0[] __attribute__((aligned (2))) = dganon_room_0Tex_0076D0; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_0DL_004C50 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0DL_004C50" +static const ALIGN_ASSET(2) char ganon_room_0DL_004C50[] = dganon_room_0DL_004C50; + +#define dganon_room_0Tex_004C68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_004C68" +static const ALIGN_ASSET(2) char ganon_room_0Tex_004C68[] = dganon_room_0Tex_004C68; + +#define dganon_room_0Tex_005468 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_005468" +static const ALIGN_ASSET(2) char ganon_room_0Tex_005468[] = dganon_room_0Tex_005468; + +#define dganon_room_0Tex_007068 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_007068" +static const ALIGN_ASSET(2) char ganon_room_0Tex_007068[] = dganon_room_0Tex_007068; + +#define dganon_room_0Tex_006068 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_006068" +static const ALIGN_ASSET(2) char ganon_room_0Tex_006068[] = dganon_room_0Tex_006068; + +#define dganon_room_0Tex_006868 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_006868" +static const ALIGN_ASSET(2) char ganon_room_0Tex_006868[] = dganon_room_0Tex_006868; + +#define dganon_room_0Tex_005C68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_005C68" +static const ALIGN_ASSET(2) char ganon_room_0Tex_005C68[] = dganon_room_0Tex_005C68; + +#define dganon_room_0DL_0076C0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0DL_0076C0" +static const ALIGN_ASSET(2) char ganon_room_0DL_0076C0[] = dganon_room_0DL_0076C0; + +#define dganon_room_0Tex_0076D0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_0Tex_0076D0" +static const ALIGN_ASSET(2) char ganon_room_0Tex_0076D0[] = dganon_room_0Tex_0076D0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_1.h b/soh/assets/scenes/dungeons/ganon/ganon_room_1.h index 2b3ab5769..728d33bab 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_1.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_1.h @@ -1,44 +1,21 @@ #pragma once -#define dganon_room_1DL_005360 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1DL_005360" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_1DL_005360[] = dganon_room_1DL_005360; -#else -static const char ganon_room_1DL_005360[] __attribute__((aligned (2))) = dganon_room_1DL_005360; -#endif - -#define dganon_room_1Tex_006370 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_006370" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_1Tex_006370[] = dganon_room_1Tex_006370; -#else -static const char ganon_room_1Tex_006370[] __attribute__((aligned (2))) = dganon_room_1Tex_006370; -#endif - -#define dganon_room_1Tex_005F70 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_005F70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_1Tex_005F70[] = dganon_room_1Tex_005F70; -#else -static const char ganon_room_1Tex_005F70[] __attribute__((aligned (2))) = dganon_room_1Tex_005F70; -#endif - -#define dganon_room_1Tex_005B70 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_005B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_1Tex_005B70[] = dganon_room_1Tex_005B70; -#else -static const char ganon_room_1Tex_005B70[] __attribute__((aligned (2))) = dganon_room_1Tex_005B70; -#endif - -#define dganon_room_1Tex_005370 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_005370" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_1Tex_005370[] = dganon_room_1Tex_005370; -#else -static const char ganon_room_1Tex_005370[] __attribute__((aligned (2))) = dganon_room_1Tex_005370; -#endif - -#define dganon_room_1Tex_006770 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_006770" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_1Tex_006770[] = dganon_room_1Tex_006770; -#else -static const char ganon_room_1Tex_006770[] __attribute__((aligned (2))) = dganon_room_1Tex_006770; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_1DL_005360 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1DL_005360" +static const ALIGN_ASSET(2) char ganon_room_1DL_005360[] = dganon_room_1DL_005360; + +#define dganon_room_1Tex_006370 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_006370" +static const ALIGN_ASSET(2) char ganon_room_1Tex_006370[] = dganon_room_1Tex_006370; + +#define dganon_room_1Tex_005F70 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_005F70" +static const ALIGN_ASSET(2) char ganon_room_1Tex_005F70[] = dganon_room_1Tex_005F70; + +#define dganon_room_1Tex_005B70 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_005B70" +static const ALIGN_ASSET(2) char ganon_room_1Tex_005B70[] = dganon_room_1Tex_005B70; + +#define dganon_room_1Tex_005370 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_005370" +static const ALIGN_ASSET(2) char ganon_room_1Tex_005370[] = dganon_room_1Tex_005370; + +#define dganon_room_1Tex_006770 "__OTR__scenes/nonmq/ganon_scene/ganon_room_1Tex_006770" +static const ALIGN_ASSET(2) char ganon_room_1Tex_006770[] = dganon_room_1Tex_006770; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_2.h b/soh/assets/scenes/dungeons/ganon/ganon_room_2.h index 0117fdf68..8c073bc40 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_2.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_2.h @@ -1,72 +1,33 @@ #pragma once -#define dganon_room_2DL_003DD8 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2DL_003DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2DL_003DD8[] = dganon_room_2DL_003DD8; -#else -static const char ganon_room_2DL_003DD8[] __attribute__((aligned (2))) = dganon_room_2DL_003DD8; -#endif - -#define dganon_room_2Tex_005DF0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_005DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2Tex_005DF0[] = dganon_room_2Tex_005DF0; -#else -static const char ganon_room_2Tex_005DF0[] __attribute__((aligned (2))) = dganon_room_2Tex_005DF0; -#endif - -#define dganon_room_2Tex_004DF0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_004DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2Tex_004DF0[] = dganon_room_2Tex_004DF0; -#else -static const char ganon_room_2Tex_004DF0[] __attribute__((aligned (2))) = dganon_room_2Tex_004DF0; -#endif - -#define dganon_room_2Tex_0059F0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_0059F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2Tex_0059F0[] = dganon_room_2Tex_0059F0; -#else -static const char ganon_room_2Tex_0059F0[] __attribute__((aligned (2))) = dganon_room_2Tex_0059F0; -#endif - -#define dganon_room_2Tex_0041F0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_0041F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2Tex_0041F0[] = dganon_room_2Tex_0041F0; -#else -static const char ganon_room_2Tex_0041F0[] __attribute__((aligned (2))) = dganon_room_2Tex_0041F0; -#endif - -#define dganon_room_2Tex_0049F0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_0049F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2Tex_0049F0[] = dganon_room_2Tex_0049F0; -#else -static const char ganon_room_2Tex_0049F0[] __attribute__((aligned (2))) = dganon_room_2Tex_0049F0; -#endif - -#define dganon_room_2Tex_003DF0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_003DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2Tex_003DF0[] = dganon_room_2Tex_003DF0; -#else -static const char ganon_room_2Tex_003DF0[] __attribute__((aligned (2))) = dganon_room_2Tex_003DF0; -#endif - -#define dganon_room_2Tex_0051F0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_0051F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2Tex_0051F0[] = dganon_room_2Tex_0051F0; -#else -static const char ganon_room_2Tex_0051F0[] __attribute__((aligned (2))) = dganon_room_2Tex_0051F0; -#endif - -#define dganon_room_2DL_007040 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2DL_007040" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2DL_007040[] = dganon_room_2DL_007040; -#else -static const char ganon_room_2DL_007040[] __attribute__((aligned (2))) = dganon_room_2DL_007040; -#endif - -#define dganon_room_2Tex_007050 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_007050" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_2Tex_007050[] = dganon_room_2Tex_007050; -#else -static const char ganon_room_2Tex_007050[] __attribute__((aligned (2))) = dganon_room_2Tex_007050; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_2DL_003DD8 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2DL_003DD8" +static const ALIGN_ASSET(2) char ganon_room_2DL_003DD8[] = dganon_room_2DL_003DD8; + +#define dganon_room_2Tex_005DF0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_005DF0" +static const ALIGN_ASSET(2) char ganon_room_2Tex_005DF0[] = dganon_room_2Tex_005DF0; + +#define dganon_room_2Tex_004DF0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_004DF0" +static const ALIGN_ASSET(2) char ganon_room_2Tex_004DF0[] = dganon_room_2Tex_004DF0; + +#define dganon_room_2Tex_0059F0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_0059F0" +static const ALIGN_ASSET(2) char ganon_room_2Tex_0059F0[] = dganon_room_2Tex_0059F0; + +#define dganon_room_2Tex_0041F0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_0041F0" +static const ALIGN_ASSET(2) char ganon_room_2Tex_0041F0[] = dganon_room_2Tex_0041F0; + +#define dganon_room_2Tex_0049F0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_0049F0" +static const ALIGN_ASSET(2) char ganon_room_2Tex_0049F0[] = dganon_room_2Tex_0049F0; + +#define dganon_room_2Tex_003DF0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_003DF0" +static const ALIGN_ASSET(2) char ganon_room_2Tex_003DF0[] = dganon_room_2Tex_003DF0; + +#define dganon_room_2Tex_0051F0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_0051F0" +static const ALIGN_ASSET(2) char ganon_room_2Tex_0051F0[] = dganon_room_2Tex_0051F0; + +#define dganon_room_2DL_007040 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2DL_007040" +static const ALIGN_ASSET(2) char ganon_room_2DL_007040[] = dganon_room_2DL_007040; + +#define dganon_room_2Tex_007050 "__OTR__scenes/nonmq/ganon_scene/ganon_room_2Tex_007050" +static const ALIGN_ASSET(2) char ganon_room_2Tex_007050[] = dganon_room_2Tex_007050; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_3.h b/soh/assets/scenes/dungeons/ganon/ganon_room_3.h index 7c13d3e14..cef532233 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_3.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_3.h @@ -1,44 +1,21 @@ #pragma once -#define dganon_room_3DL_004F20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3DL_004F20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_3DL_004F20[] = dganon_room_3DL_004F20; -#else -static const char ganon_room_3DL_004F20[] __attribute__((aligned (2))) = dganon_room_3DL_004F20; -#endif - -#define dganon_room_3Tex_004F30 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_004F30" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_3Tex_004F30[] = dganon_room_3Tex_004F30; -#else -static const char ganon_room_3Tex_004F30[] __attribute__((aligned (2))) = dganon_room_3Tex_004F30; -#endif - -#define dganon_room_3Tex_005330 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_005330" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_3Tex_005330[] = dganon_room_3Tex_005330; -#else -static const char ganon_room_3Tex_005330[] __attribute__((aligned (2))) = dganon_room_3Tex_005330; -#endif - -#define dganon_room_3Tex_005730 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_3Tex_005730[] = dganon_room_3Tex_005730; -#else -static const char ganon_room_3Tex_005730[] __attribute__((aligned (2))) = dganon_room_3Tex_005730; -#endif - -#define dganon_room_3Tex_005F30 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_005F30" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_3Tex_005F30[] = dganon_room_3Tex_005F30; -#else -static const char ganon_room_3Tex_005F30[] __attribute__((aligned (2))) = dganon_room_3Tex_005F30; -#endif - -#define dganon_room_3Tex_006730 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_006730" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_3Tex_006730[] = dganon_room_3Tex_006730; -#else -static const char ganon_room_3Tex_006730[] __attribute__((aligned (2))) = dganon_room_3Tex_006730; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_3DL_004F20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3DL_004F20" +static const ALIGN_ASSET(2) char ganon_room_3DL_004F20[] = dganon_room_3DL_004F20; + +#define dganon_room_3Tex_004F30 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_004F30" +static const ALIGN_ASSET(2) char ganon_room_3Tex_004F30[] = dganon_room_3Tex_004F30; + +#define dganon_room_3Tex_005330 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_005330" +static const ALIGN_ASSET(2) char ganon_room_3Tex_005330[] = dganon_room_3Tex_005330; + +#define dganon_room_3Tex_005730 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_005730" +static const ALIGN_ASSET(2) char ganon_room_3Tex_005730[] = dganon_room_3Tex_005730; + +#define dganon_room_3Tex_005F30 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_005F30" +static const ALIGN_ASSET(2) char ganon_room_3Tex_005F30[] = dganon_room_3Tex_005F30; + +#define dganon_room_3Tex_006730 "__OTR__scenes/nonmq/ganon_scene/ganon_room_3Tex_006730" +static const ALIGN_ASSET(2) char ganon_room_3Tex_006730[] = dganon_room_3Tex_006730; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_4.h b/soh/assets/scenes/dungeons/ganon/ganon_room_4.h index d7aa697f8..2e9148002 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_4.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_4.h @@ -1,93 +1,42 @@ #pragma once -#define dganon_room_4DL_004650 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4DL_004650" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4DL_004650[] = dganon_room_4DL_004650; -#else -static const char ganon_room_4DL_004650[] __attribute__((aligned (2))) = dganon_room_4DL_004650; -#endif - -#define dganon_room_4Tex_007668 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_007668" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_007668[] = dganon_room_4Tex_007668; -#else -static const char ganon_room_4Tex_007668[] __attribute__((aligned (2))) = dganon_room_4Tex_007668; -#endif - -#define dganon_room_4Tex_004668 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_004668" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_004668[] = dganon_room_4Tex_004668; -#else -static const char ganon_room_4Tex_004668[] __attribute__((aligned (2))) = dganon_room_4Tex_004668; -#endif - -#define dganon_room_4Tex_005A68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_005A68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_005A68[] = dganon_room_4Tex_005A68; -#else -static const char ganon_room_4Tex_005A68[] __attribute__((aligned (2))) = dganon_room_4Tex_005A68; -#endif - -#define dganon_room_4Tex_006268 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_006268" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_006268[] = dganon_room_4Tex_006268; -#else -static const char ganon_room_4Tex_006268[] __attribute__((aligned (2))) = dganon_room_4Tex_006268; -#endif - -#define dganon_room_4Tex_005668 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_005668" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_005668[] = dganon_room_4Tex_005668; -#else -static const char ganon_room_4Tex_005668[] __attribute__((aligned (2))) = dganon_room_4Tex_005668; -#endif - -#define dganon_room_4Tex_004E68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_004E68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_004E68[] = dganon_room_4Tex_004E68; -#else -static const char ganon_room_4Tex_004E68[] __attribute__((aligned (2))) = dganon_room_4Tex_004E68; -#endif - -#define dganon_room_4Tex_006668 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_006668" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_006668[] = dganon_room_4Tex_006668; -#else -static const char ganon_room_4Tex_006668[] __attribute__((aligned (2))) = dganon_room_4Tex_006668; -#endif - -#define dganon_room_4Tex_006E68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_006E68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_006E68[] = dganon_room_4Tex_006E68; -#else -static const char ganon_room_4Tex_006E68[] __attribute__((aligned (2))) = dganon_room_4Tex_006E68; -#endif - -#define dganon_room_4Tex_007E68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_007E68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_007E68[] = dganon_room_4Tex_007E68; -#else -static const char ganon_room_4Tex_007E68[] __attribute__((aligned (2))) = dganon_room_4Tex_007E68; -#endif - -#define dganon_room_4Tex_006A68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_006A68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_006A68[] = dganon_room_4Tex_006A68; -#else -static const char ganon_room_4Tex_006A68[] __attribute__((aligned (2))) = dganon_room_4Tex_006A68; -#endif - -#define dganon_room_4DL_0088C0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4DL_0088C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4DL_0088C0[] = dganon_room_4DL_0088C0; -#else -static const char ganon_room_4DL_0088C0[] __attribute__((aligned (2))) = dganon_room_4DL_0088C0; -#endif - -#define dganon_room_4Tex_0088D0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_0088D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_4Tex_0088D0[] = dganon_room_4Tex_0088D0; -#else -static const char ganon_room_4Tex_0088D0[] __attribute__((aligned (2))) = dganon_room_4Tex_0088D0; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_4DL_004650 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4DL_004650" +static const ALIGN_ASSET(2) char ganon_room_4DL_004650[] = dganon_room_4DL_004650; + +#define dganon_room_4Tex_007668 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_007668" +static const ALIGN_ASSET(2) char ganon_room_4Tex_007668[] = dganon_room_4Tex_007668; + +#define dganon_room_4Tex_004668 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_004668" +static const ALIGN_ASSET(2) char ganon_room_4Tex_004668[] = dganon_room_4Tex_004668; + +#define dganon_room_4Tex_005A68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_005A68" +static const ALIGN_ASSET(2) char ganon_room_4Tex_005A68[] = dganon_room_4Tex_005A68; + +#define dganon_room_4Tex_006268 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_006268" +static const ALIGN_ASSET(2) char ganon_room_4Tex_006268[] = dganon_room_4Tex_006268; + +#define dganon_room_4Tex_005668 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_005668" +static const ALIGN_ASSET(2) char ganon_room_4Tex_005668[] = dganon_room_4Tex_005668; + +#define dganon_room_4Tex_004E68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_004E68" +static const ALIGN_ASSET(2) char ganon_room_4Tex_004E68[] = dganon_room_4Tex_004E68; + +#define dganon_room_4Tex_006668 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_006668" +static const ALIGN_ASSET(2) char ganon_room_4Tex_006668[] = dganon_room_4Tex_006668; + +#define dganon_room_4Tex_006E68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_006E68" +static const ALIGN_ASSET(2) char ganon_room_4Tex_006E68[] = dganon_room_4Tex_006E68; + +#define dganon_room_4Tex_007E68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_007E68" +static const ALIGN_ASSET(2) char ganon_room_4Tex_007E68[] = dganon_room_4Tex_007E68; + +#define dganon_room_4Tex_006A68 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_006A68" +static const ALIGN_ASSET(2) char ganon_room_4Tex_006A68[] = dganon_room_4Tex_006A68; + +#define dganon_room_4DL_0088C0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4DL_0088C0" +static const ALIGN_ASSET(2) char ganon_room_4DL_0088C0[] = dganon_room_4DL_0088C0; + +#define dganon_room_4Tex_0088D0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_4Tex_0088D0" +static const ALIGN_ASSET(2) char ganon_room_4Tex_0088D0[] = dganon_room_4Tex_0088D0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_5.h b/soh/assets/scenes/dungeons/ganon/ganon_room_5.h index 18882afcf..d1fe118a9 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_5.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_5.h @@ -1,51 +1,24 @@ #pragma once -#define dganon_room_5DL_005AF8 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5DL_005AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_5DL_005AF8[] = dganon_room_5DL_005AF8; -#else -static const char ganon_room_5DL_005AF8[] __attribute__((aligned (2))) = dganon_room_5DL_005AF8; -#endif - -#define dganon_room_5Tex_007F08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_007F08" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_5Tex_007F08[] = dganon_room_5Tex_007F08; -#else -static const char ganon_room_5Tex_007F08[] __attribute__((aligned (2))) = dganon_room_5Tex_007F08; -#endif - -#define dganon_room_5Tex_007B08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_007B08" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_5Tex_007B08[] = dganon_room_5Tex_007B08; -#else -static const char ganon_room_5Tex_007B08[] __attribute__((aligned (2))) = dganon_room_5Tex_007B08; -#endif - -#define dganon_room_5Tex_005B08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_005B08" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_5Tex_005B08[] = dganon_room_5Tex_005B08; -#else -static const char ganon_room_5Tex_005B08[] __attribute__((aligned (2))) = dganon_room_5Tex_005B08; -#endif - -#define dganon_room_5Tex_008308 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_008308" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_5Tex_008308[] = dganon_room_5Tex_008308; -#else -static const char ganon_room_5Tex_008308[] __attribute__((aligned (2))) = dganon_room_5Tex_008308; -#endif - -#define dganon_room_5Tex_006B08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_006B08" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_5Tex_006B08[] = dganon_room_5Tex_006B08; -#else -static const char ganon_room_5Tex_006B08[] __attribute__((aligned (2))) = dganon_room_5Tex_006B08; -#endif - -#define dganon_room_5Tex_006308 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_006308" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_5Tex_006308[] = dganon_room_5Tex_006308; -#else -static const char ganon_room_5Tex_006308[] __attribute__((aligned (2))) = dganon_room_5Tex_006308; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_5DL_005AF8 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5DL_005AF8" +static const ALIGN_ASSET(2) char ganon_room_5DL_005AF8[] = dganon_room_5DL_005AF8; + +#define dganon_room_5Tex_007F08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_007F08" +static const ALIGN_ASSET(2) char ganon_room_5Tex_007F08[] = dganon_room_5Tex_007F08; + +#define dganon_room_5Tex_007B08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_007B08" +static const ALIGN_ASSET(2) char ganon_room_5Tex_007B08[] = dganon_room_5Tex_007B08; + +#define dganon_room_5Tex_005B08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_005B08" +static const ALIGN_ASSET(2) char ganon_room_5Tex_005B08[] = dganon_room_5Tex_005B08; + +#define dganon_room_5Tex_008308 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_008308" +static const ALIGN_ASSET(2) char ganon_room_5Tex_008308[] = dganon_room_5Tex_008308; + +#define dganon_room_5Tex_006B08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_006B08" +static const ALIGN_ASSET(2) char ganon_room_5Tex_006B08[] = dganon_room_5Tex_006B08; + +#define dganon_room_5Tex_006308 "__OTR__scenes/nonmq/ganon_scene/ganon_room_5Tex_006308" +static const ALIGN_ASSET(2) char ganon_room_5Tex_006308[] = dganon_room_5Tex_006308; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_6.h b/soh/assets/scenes/dungeons/ganon/ganon_room_6.h index 5e40f5f13..5a485f038 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_6.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_6.h @@ -1,72 +1,33 @@ #pragma once -#define dganon_room_6DL_006DF0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6DL_006DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6DL_006DF0[] = dganon_room_6DL_006DF0; -#else -static const char ganon_room_6DL_006DF0[] __attribute__((aligned (2))) = dganon_room_6DL_006DF0; -#endif - -#define dganon_room_6Tex_007A00 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_007A00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6Tex_007A00[] = dganon_room_6Tex_007A00; -#else -static const char ganon_room_6Tex_007A00[] __attribute__((aligned (2))) = dganon_room_6Tex_007A00; -#endif - -#define dganon_room_6Tex_008200 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_008200" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6Tex_008200[] = dganon_room_6Tex_008200; -#else -static const char ganon_room_6Tex_008200[] __attribute__((aligned (2))) = dganon_room_6Tex_008200; -#endif - -#define dganon_room_6Tex_007200 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6Tex_007200[] = dganon_room_6Tex_007200; -#else -static const char ganon_room_6Tex_007200[] __attribute__((aligned (2))) = dganon_room_6Tex_007200; -#endif - -#define dganon_room_6Tex_008B00 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_008B00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6Tex_008B00[] = dganon_room_6Tex_008B00; -#else -static const char ganon_room_6Tex_008B00[] __attribute__((aligned (2))) = dganon_room_6Tex_008B00; -#endif - -#define dganon_room_6Tex_007600 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_007600" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6Tex_007600[] = dganon_room_6Tex_007600; -#else -static const char ganon_room_6Tex_007600[] __attribute__((aligned (2))) = dganon_room_6Tex_007600; -#endif - -#define dganon_room_6Tex_006E00 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_006E00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6Tex_006E00[] = dganon_room_6Tex_006E00; -#else -static const char ganon_room_6Tex_006E00[] __attribute__((aligned (2))) = dganon_room_6Tex_006E00; -#endif - -#define dganon_room_6Tex_008300 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_008300" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6Tex_008300[] = dganon_room_6Tex_008300; -#else -static const char ganon_room_6Tex_008300[] __attribute__((aligned (2))) = dganon_room_6Tex_008300; -#endif - -#define dganon_room_6DL_009388 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6DL_009388" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6DL_009388[] = dganon_room_6DL_009388; -#else -static const char ganon_room_6DL_009388[] __attribute__((aligned (2))) = dganon_room_6DL_009388; -#endif - -#define dganon_room_6Tex_009398 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_009398" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_6Tex_009398[] = dganon_room_6Tex_009398; -#else -static const char ganon_room_6Tex_009398[] __attribute__((aligned (2))) = dganon_room_6Tex_009398; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_6DL_006DF0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6DL_006DF0" +static const ALIGN_ASSET(2) char ganon_room_6DL_006DF0[] = dganon_room_6DL_006DF0; + +#define dganon_room_6Tex_007A00 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_007A00" +static const ALIGN_ASSET(2) char ganon_room_6Tex_007A00[] = dganon_room_6Tex_007A00; + +#define dganon_room_6Tex_008200 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_008200" +static const ALIGN_ASSET(2) char ganon_room_6Tex_008200[] = dganon_room_6Tex_008200; + +#define dganon_room_6Tex_007200 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_007200" +static const ALIGN_ASSET(2) char ganon_room_6Tex_007200[] = dganon_room_6Tex_007200; + +#define dganon_room_6Tex_008B00 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_008B00" +static const ALIGN_ASSET(2) char ganon_room_6Tex_008B00[] = dganon_room_6Tex_008B00; + +#define dganon_room_6Tex_007600 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_007600" +static const ALIGN_ASSET(2) char ganon_room_6Tex_007600[] = dganon_room_6Tex_007600; + +#define dganon_room_6Tex_006E00 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_006E00" +static const ALIGN_ASSET(2) char ganon_room_6Tex_006E00[] = dganon_room_6Tex_006E00; + +#define dganon_room_6Tex_008300 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_008300" +static const ALIGN_ASSET(2) char ganon_room_6Tex_008300[] = dganon_room_6Tex_008300; + +#define dganon_room_6DL_009388 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6DL_009388" +static const ALIGN_ASSET(2) char ganon_room_6DL_009388[] = dganon_room_6DL_009388; + +#define dganon_room_6Tex_009398 "__OTR__scenes/nonmq/ganon_scene/ganon_room_6Tex_009398" +static const ALIGN_ASSET(2) char ganon_room_6Tex_009398[] = dganon_room_6Tex_009398; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_7.h b/soh/assets/scenes/dungeons/ganon/ganon_room_7.h index 3176347a5..dac4d2c60 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_7.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_7.h @@ -1,65 +1,30 @@ #pragma once -#define dganon_room_7DL_0071C8 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7DL_0071C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7DL_0071C8[] = dganon_room_7DL_0071C8; -#else -static const char ganon_room_7DL_0071C8[] __attribute__((aligned (2))) = dganon_room_7DL_0071C8; -#endif - -#define dganon_room_7Tex_0085E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0085E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7Tex_0085E0[] = dganon_room_7Tex_0085E0; -#else -static const char ganon_room_7Tex_0085E0[] __attribute__((aligned (2))) = dganon_room_7Tex_0085E0; -#endif - -#define dganon_room_7Tex_0089E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0089E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7Tex_0089E0[] = dganon_room_7Tex_0089E0; -#else -static const char ganon_room_7Tex_0089E0[] __attribute__((aligned (2))) = dganon_room_7Tex_0089E0; -#endif - -#define dganon_room_7Tex_007DE0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_007DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7Tex_007DE0[] = dganon_room_7Tex_007DE0; -#else -static const char ganon_room_7Tex_007DE0[] __attribute__((aligned (2))) = dganon_room_7Tex_007DE0; -#endif - -#define dganon_room_7Tex_0075E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0075E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7Tex_0075E0[] = dganon_room_7Tex_0075E0; -#else -static const char ganon_room_7Tex_0075E0[] __attribute__((aligned (2))) = dganon_room_7Tex_0075E0; -#endif - -#define dganon_room_7Tex_0091E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0091E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7Tex_0091E0[] = dganon_room_7Tex_0091E0; -#else -static const char ganon_room_7Tex_0091E0[] __attribute__((aligned (2))) = dganon_room_7Tex_0091E0; -#endif - -#define dganon_room_7Tex_0071E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0071E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7Tex_0071E0[] = dganon_room_7Tex_0071E0; -#else -static const char ganon_room_7Tex_0071E0[] __attribute__((aligned (2))) = dganon_room_7Tex_0071E0; -#endif - -#define dganon_room_7DL_009F88 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7DL_009F88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7DL_009F88[] = dganon_room_7DL_009F88; -#else -static const char ganon_room_7DL_009F88[] __attribute__((aligned (2))) = dganon_room_7DL_009F88; -#endif - -#define dganon_room_7Tex_009F98 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_009F98" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_7Tex_009F98[] = dganon_room_7Tex_009F98; -#else -static const char ganon_room_7Tex_009F98[] __attribute__((aligned (2))) = dganon_room_7Tex_009F98; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_7DL_0071C8 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7DL_0071C8" +static const ALIGN_ASSET(2) char ganon_room_7DL_0071C8[] = dganon_room_7DL_0071C8; + +#define dganon_room_7Tex_0085E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0085E0" +static const ALIGN_ASSET(2) char ganon_room_7Tex_0085E0[] = dganon_room_7Tex_0085E0; + +#define dganon_room_7Tex_0089E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0089E0" +static const ALIGN_ASSET(2) char ganon_room_7Tex_0089E0[] = dganon_room_7Tex_0089E0; + +#define dganon_room_7Tex_007DE0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_007DE0" +static const ALIGN_ASSET(2) char ganon_room_7Tex_007DE0[] = dganon_room_7Tex_007DE0; + +#define dganon_room_7Tex_0075E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0075E0" +static const ALIGN_ASSET(2) char ganon_room_7Tex_0075E0[] = dganon_room_7Tex_0075E0; + +#define dganon_room_7Tex_0091E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0091E0" +static const ALIGN_ASSET(2) char ganon_room_7Tex_0091E0[] = dganon_room_7Tex_0091E0; + +#define dganon_room_7Tex_0071E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_0071E0" +static const ALIGN_ASSET(2) char ganon_room_7Tex_0071E0[] = dganon_room_7Tex_0071E0; + +#define dganon_room_7DL_009F88 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7DL_009F88" +static const ALIGN_ASSET(2) char ganon_room_7DL_009F88[] = dganon_room_7DL_009F88; + +#define dganon_room_7Tex_009F98 "__OTR__scenes/nonmq/ganon_scene/ganon_room_7Tex_009F98" +static const ALIGN_ASSET(2) char ganon_room_7Tex_009F98[] = dganon_room_7Tex_009F98; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_8.h b/soh/assets/scenes/dungeons/ganon/ganon_room_8.h index 115f676c2..49f8fe901 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_8.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_8.h @@ -1,72 +1,33 @@ #pragma once -#define dganon_room_8DL_004940 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8DL_004940" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8DL_004940[] = dganon_room_8DL_004940; -#else -static const char ganon_room_8DL_004940[] __attribute__((aligned (2))) = dganon_room_8DL_004940; -#endif - -#define dganon_room_8Tex_005BE0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8Tex_005BE0[] = dganon_room_8Tex_005BE0; -#else -static const char ganon_room_8Tex_005BE0[] __attribute__((aligned (2))) = dganon_room_8Tex_005BE0; -#endif - -#define dganon_room_8Tex_0053E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8Tex_0053E0[] = dganon_room_8Tex_0053E0; -#else -static const char ganon_room_8Tex_0053E0[] __attribute__((aligned (2))) = dganon_room_8Tex_0053E0; -#endif - -#define dganon_room_8Tex_005320 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005320" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8Tex_005320[] = dganon_room_8Tex_005320; -#else -static const char ganon_room_8Tex_005320[] __attribute__((aligned (2))) = dganon_room_8Tex_005320; -#endif - -#define dganon_room_8Tex_005220 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005220" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8Tex_005220[] = dganon_room_8Tex_005220; -#else -static const char ganon_room_8Tex_005220[] __attribute__((aligned (2))) = dganon_room_8Tex_005220; -#endif - -#define dganon_room_8Tex_004A20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_004A20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8Tex_004A20[] = dganon_room_8Tex_004A20; -#else -static const char ganon_room_8Tex_004A20[] __attribute__((aligned (2))) = dganon_room_8Tex_004A20; -#endif - -#define dganon_room_8TLUT_004950 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8TLUT_004950" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8TLUT_004950[] = dganon_room_8TLUT_004950; -#else -static const char ganon_room_8TLUT_004950[] __attribute__((aligned (2))) = dganon_room_8TLUT_004950; -#endif - -#define dganon_room_8Tex_0063E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_0063E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8Tex_0063E0[] = dganon_room_8Tex_0063E0; -#else -static const char ganon_room_8Tex_0063E0[] __attribute__((aligned (2))) = dganon_room_8Tex_0063E0; -#endif - -#define dganon_room_8Tex_005360 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005360" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8Tex_005360[] = dganon_room_8Tex_005360; -#else -static const char ganon_room_8Tex_005360[] __attribute__((aligned (2))) = dganon_room_8Tex_005360; -#endif - -#define dganon_room_8Tex_005FE0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_8Tex_005FE0[] = dganon_room_8Tex_005FE0; -#else -static const char ganon_room_8Tex_005FE0[] __attribute__((aligned (2))) = dganon_room_8Tex_005FE0; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_8DL_004940 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8DL_004940" +static const ALIGN_ASSET(2) char ganon_room_8DL_004940[] = dganon_room_8DL_004940; + +#define dganon_room_8Tex_005BE0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005BE0" +static const ALIGN_ASSET(2) char ganon_room_8Tex_005BE0[] = dganon_room_8Tex_005BE0; + +#define dganon_room_8Tex_0053E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_0053E0" +static const ALIGN_ASSET(2) char ganon_room_8Tex_0053E0[] = dganon_room_8Tex_0053E0; + +#define dganon_room_8Tex_005320 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005320" +static const ALIGN_ASSET(2) char ganon_room_8Tex_005320[] = dganon_room_8Tex_005320; + +#define dganon_room_8Tex_005220 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005220" +static const ALIGN_ASSET(2) char ganon_room_8Tex_005220[] = dganon_room_8Tex_005220; + +#define dganon_room_8Tex_004A20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_004A20" +static const ALIGN_ASSET(2) char ganon_room_8Tex_004A20[] = dganon_room_8Tex_004A20; + +#define dganon_room_8TLUT_004950 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8TLUT_004950" +static const ALIGN_ASSET(2) char ganon_room_8TLUT_004950[] = dganon_room_8TLUT_004950; + +#define dganon_room_8Tex_0063E0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_0063E0" +static const ALIGN_ASSET(2) char ganon_room_8Tex_0063E0[] = dganon_room_8Tex_0063E0; + +#define dganon_room_8Tex_005360 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005360" +static const ALIGN_ASSET(2) char ganon_room_8Tex_005360[] = dganon_room_8Tex_005360; + +#define dganon_room_8Tex_005FE0 "__OTR__scenes/nonmq/ganon_scene/ganon_room_8Tex_005FE0" +static const ALIGN_ASSET(2) char ganon_room_8Tex_005FE0[] = dganon_room_8Tex_005FE0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_room_9.h b/soh/assets/scenes/dungeons/ganon/ganon_room_9.h index 437029659..c9635b9f9 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_room_9.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_room_9.h @@ -1,86 +1,39 @@ #pragma once -#define dganon_room_9DL_001F08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9DL_001F08" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9DL_001F08[] = dganon_room_9DL_001F08; -#else -static const char ganon_room_9DL_001F08[] __attribute__((aligned (2))) = dganon_room_9DL_001F08; -#endif - -#define dganon_room_9Tex_004D20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_004D20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_004D20[] = dganon_room_9Tex_004D20; -#else -static const char ganon_room_9Tex_004D20[] __attribute__((aligned (2))) = dganon_room_9Tex_004D20; -#endif - -#define dganon_room_9Tex_003D20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_003D20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_003D20[] = dganon_room_9Tex_003D20; -#else -static const char ganon_room_9Tex_003D20[] __attribute__((aligned (2))) = dganon_room_9Tex_003D20; -#endif - -#define dganon_room_9Tex_002120 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_002120" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_002120[] = dganon_room_9Tex_002120; -#else -static const char ganon_room_9Tex_002120[] __attribute__((aligned (2))) = dganon_room_9Tex_002120; -#endif - -#define dganon_room_9Tex_005120 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_005120" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_005120[] = dganon_room_9Tex_005120; -#else -static const char ganon_room_9Tex_005120[] __attribute__((aligned (2))) = dganon_room_9Tex_005120; -#endif - -#define dganon_room_9Tex_002920 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_002920" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_002920[] = dganon_room_9Tex_002920; -#else -static const char ganon_room_9Tex_002920[] __attribute__((aligned (2))) = dganon_room_9Tex_002920; -#endif - -#define dganon_room_9TLUT_001F18 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9TLUT_001F18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9TLUT_001F18[] = dganon_room_9TLUT_001F18; -#else -static const char ganon_room_9TLUT_001F18[] __attribute__((aligned (2))) = dganon_room_9TLUT_001F18; -#endif - -#define dganon_room_9Tex_004520 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_004520" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_004520[] = dganon_room_9Tex_004520; -#else -static const char ganon_room_9Tex_004520[] __attribute__((aligned (2))) = dganon_room_9Tex_004520; -#endif - -#define dganon_room_9Tex_002D20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_002D20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_002D20[] = dganon_room_9Tex_002D20; -#else -static const char ganon_room_9Tex_002D20[] __attribute__((aligned (2))) = dganon_room_9Tex_002D20; -#endif - -#define dganon_room_9Tex_003120 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_003120" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_003120[] = dganon_room_9Tex_003120; -#else -static const char ganon_room_9Tex_003120[] __attribute__((aligned (2))) = dganon_room_9Tex_003120; -#endif - -#define dganon_room_9Tex_003520 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_003520" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_003520[] = dganon_room_9Tex_003520; -#else -static const char ganon_room_9Tex_003520[] __attribute__((aligned (2))) = dganon_room_9Tex_003520; -#endif - -#define dganon_room_9Tex_003920 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_003920" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_room_9Tex_003920[] = dganon_room_9Tex_003920; -#else -static const char ganon_room_9Tex_003920[] __attribute__((aligned (2))) = dganon_room_9Tex_003920; -#endif - +#include "align_asset_macro.h" + +#define dganon_room_9DL_001F08 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9DL_001F08" +static const ALIGN_ASSET(2) char ganon_room_9DL_001F08[] = dganon_room_9DL_001F08; + +#define dganon_room_9Tex_004D20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_004D20" +static const ALIGN_ASSET(2) char ganon_room_9Tex_004D20[] = dganon_room_9Tex_004D20; + +#define dganon_room_9Tex_003D20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_003D20" +static const ALIGN_ASSET(2) char ganon_room_9Tex_003D20[] = dganon_room_9Tex_003D20; + +#define dganon_room_9Tex_002120 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_002120" +static const ALIGN_ASSET(2) char ganon_room_9Tex_002120[] = dganon_room_9Tex_002120; + +#define dganon_room_9Tex_005120 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_005120" +static const ALIGN_ASSET(2) char ganon_room_9Tex_005120[] = dganon_room_9Tex_005120; + +#define dganon_room_9Tex_002920 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_002920" +static const ALIGN_ASSET(2) char ganon_room_9Tex_002920[] = dganon_room_9Tex_002920; + +#define dganon_room_9TLUT_001F18 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9TLUT_001F18" +static const ALIGN_ASSET(2) char ganon_room_9TLUT_001F18[] = dganon_room_9TLUT_001F18; + +#define dganon_room_9Tex_004520 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_004520" +static const ALIGN_ASSET(2) char ganon_room_9Tex_004520[] = dganon_room_9Tex_004520; + +#define dganon_room_9Tex_002D20 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_002D20" +static const ALIGN_ASSET(2) char ganon_room_9Tex_002D20[] = dganon_room_9Tex_002D20; + +#define dganon_room_9Tex_003120 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_003120" +static const ALIGN_ASSET(2) char ganon_room_9Tex_003120[] = dganon_room_9Tex_003120; + +#define dganon_room_9Tex_003520 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_003520" +static const ALIGN_ASSET(2) char ganon_room_9Tex_003520[] = dganon_room_9Tex_003520; + +#define dganon_room_9Tex_003920 "__OTR__scenes/nonmq/ganon_scene/ganon_room_9Tex_003920" +static const ALIGN_ASSET(2) char ganon_room_9Tex_003920[] = dganon_room_9Tex_003920; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon/ganon_scene.h b/soh/assets/scenes/dungeons/ganon/ganon_scene.h index 1317704c0..4e2007b77 100644 --- a/soh/assets/scenes/dungeons/ganon/ganon_scene.h +++ b/soh/assets/scenes/dungeons/ganon/ganon_scene.h @@ -1,72 +1,33 @@ #pragma once -#define dganon_sceneCollisionHeader_00E7A0 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneCollisionHeader_00E7A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneCollisionHeader_00E7A0[] = dganon_sceneCollisionHeader_00E7A0; -#else -static const char ganon_sceneCollisionHeader_00E7A0[] __attribute__((aligned (2))) = dganon_sceneCollisionHeader_00E7A0; -#endif - -#define dganon_sceneTex_00FBA8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00FBA8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTex_00FBA8[] = dganon_sceneTex_00FBA8; -#else -static const char ganon_sceneTex_00FBA8[] __attribute__((aligned (2))) = dganon_sceneTex_00FBA8; -#endif - -#define dganon_sceneTLUT_00E7D0 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTLUT_00E7D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTLUT_00E7D0[] = dganon_sceneTLUT_00E7D0; -#else -static const char ganon_sceneTLUT_00E7D0[] __attribute__((aligned (2))) = dganon_sceneTLUT_00E7D0; -#endif - -#define dganon_sceneTex_00EFA8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00EFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTex_00EFA8[] = dganon_sceneTex_00EFA8; -#else -static const char ganon_sceneTex_00EFA8[] __attribute__((aligned (2))) = dganon_sceneTex_00EFA8; -#endif - -#define dganon_sceneTLUT_00EDA0 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTLUT_00EDA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTLUT_00EDA0[] = dganon_sceneTLUT_00EDA0; -#else -static const char ganon_sceneTLUT_00EDA0[] __attribute__((aligned (2))) = dganon_sceneTLUT_00EDA0; -#endif - -#define dganon_sceneTex_00F3A8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00F3A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTex_00F3A8[] = dganon_sceneTex_00F3A8; -#else -static const char ganon_sceneTex_00F3A8[] __attribute__((aligned (2))) = dganon_sceneTex_00F3A8; -#endif - -#define dganon_sceneTex_00F7A8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00F7A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTex_00F7A8[] = dganon_sceneTex_00F7A8; -#else -static const char ganon_sceneTex_00F7A8[] __attribute__((aligned (2))) = dganon_sceneTex_00F7A8; -#endif - -#define dganon_sceneTex_00FFA8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00FFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTex_00FFA8[] = dganon_sceneTex_00FFA8; -#else -static const char ganon_sceneTex_00FFA8[] __attribute__((aligned (2))) = dganon_sceneTex_00FFA8; -#endif - -#define dganon_sceneTLUT_00EBE0 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTLUT_00EBE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTLUT_00EBE0[] = dganon_sceneTLUT_00EBE0; -#else -static const char ganon_sceneTLUT_00EBE0[] __attribute__((aligned (2))) = dganon_sceneTLUT_00EBE0; -#endif - -#define dganon_sceneTLUT_00E9D8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTLUT_00E9D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sceneTLUT_00E9D8[] = dganon_sceneTLUT_00E9D8; -#else -static const char ganon_sceneTLUT_00E9D8[] __attribute__((aligned (2))) = dganon_sceneTLUT_00E9D8; -#endif - +#include "align_asset_macro.h" + +#define dganon_sceneCollisionHeader_00E7A0 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneCollisionHeader_00E7A0" +static const ALIGN_ASSET(2) char ganon_sceneCollisionHeader_00E7A0[] = dganon_sceneCollisionHeader_00E7A0; + +#define dganon_sceneTex_00FBA8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00FBA8" +static const ALIGN_ASSET(2) char ganon_sceneTex_00FBA8[] = dganon_sceneTex_00FBA8; + +#define dganon_sceneTLUT_00E7D0 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTLUT_00E7D0" +static const ALIGN_ASSET(2) char ganon_sceneTLUT_00E7D0[] = dganon_sceneTLUT_00E7D0; + +#define dganon_sceneTex_00EFA8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00EFA8" +static const ALIGN_ASSET(2) char ganon_sceneTex_00EFA8[] = dganon_sceneTex_00EFA8; + +#define dganon_sceneTLUT_00EDA0 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTLUT_00EDA0" +static const ALIGN_ASSET(2) char ganon_sceneTLUT_00EDA0[] = dganon_sceneTLUT_00EDA0; + +#define dganon_sceneTex_00F3A8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00F3A8" +static const ALIGN_ASSET(2) char ganon_sceneTex_00F3A8[] = dganon_sceneTex_00F3A8; + +#define dganon_sceneTex_00F7A8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00F7A8" +static const ALIGN_ASSET(2) char ganon_sceneTex_00F7A8[] = dganon_sceneTex_00F7A8; + +#define dganon_sceneTex_00FFA8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTex_00FFA8" +static const ALIGN_ASSET(2) char ganon_sceneTex_00FFA8[] = dganon_sceneTex_00FFA8; + +#define dganon_sceneTLUT_00EBE0 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTLUT_00EBE0" +static const ALIGN_ASSET(2) char ganon_sceneTLUT_00EBE0[] = dganon_sceneTLUT_00EBE0; + +#define dganon_sceneTLUT_00E9D8 "__OTR__scenes/nonmq/ganon_scene/ganon_sceneTLUT_00E9D8" +static const ALIGN_ASSET(2) char ganon_sceneTLUT_00E9D8[] = dganon_sceneTLUT_00E9D8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_boss/ganon_boss_room_0.h b/soh/assets/scenes/dungeons/ganon_boss/ganon_boss_room_0.h index 9f145da3e..463b93b09 100644 --- a/soh/assets/scenes/dungeons/ganon_boss/ganon_boss_room_0.h +++ b/soh/assets/scenes/dungeons/ganon_boss/ganon_boss_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dganon_boss_room_0DL_005E50 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_room_0DL_005E50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_room_0DL_005E50[] = dganon_boss_room_0DL_005E50; -#else -static const char ganon_boss_room_0DL_005E50[] __attribute__((aligned (2))) = dganon_boss_room_0DL_005E50; -#endif - +#include "align_asset_macro.h" + +#define dganon_boss_room_0DL_005E50 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_room_0DL_005E50" +static const ALIGN_ASSET(2) char ganon_boss_room_0DL_005E50[] = dganon_boss_room_0DL_005E50; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_boss/ganon_boss_scene.h b/soh/assets/scenes/dungeons/ganon_boss/ganon_boss_scene.h index 857928c61..c42c9d854 100644 --- a/soh/assets/scenes/dungeons/ganon_boss/ganon_boss_scene.h +++ b/soh/assets/scenes/dungeons/ganon_boss/ganon_boss_scene.h @@ -1,170 +1,75 @@ #pragma once -#define dganon_boss_sceneCollisionHeader_001520 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneCollisionHeader_001520" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneCollisionHeader_001520[] = dganon_boss_sceneCollisionHeader_001520; -#else -static const char ganon_boss_sceneCollisionHeader_001520[] __attribute__((aligned (2))) = dganon_boss_sceneCollisionHeader_001520; -#endif - -#define dganon_boss_sceneTex_002798 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002798" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_002798[] = dganon_boss_sceneTex_002798; -#else -static const char ganon_boss_sceneTex_002798[] __attribute__((aligned (2))) = dganon_boss_sceneTex_002798; -#endif - -#define dganon_boss_sceneTLUT_001C50 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001C50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTLUT_001C50[] = dganon_boss_sceneTLUT_001C50; -#else -static const char ganon_boss_sceneTLUT_001C50[] __attribute__((aligned (2))) = dganon_boss_sceneTLUT_001C50; -#endif - -#define dganon_boss_sceneTex_002B98 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002B98" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_002B98[] = dganon_boss_sceneTex_002B98; -#else -static const char ganon_boss_sceneTex_002B98[] __attribute__((aligned (2))) = dganon_boss_sceneTex_002B98; -#endif - -#define dganon_boss_sceneTLUT_001A90 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001A90" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTLUT_001A90[] = dganon_boss_sceneTLUT_001A90; -#else -static const char ganon_boss_sceneTLUT_001A90[] __attribute__((aligned (2))) = dganon_boss_sceneTLUT_001A90; -#endif - -#define dganon_boss_sceneTex_004C18 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_004C18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_004C18[] = dganon_boss_sceneTex_004C18; -#else -static const char ganon_boss_sceneTex_004C18[] __attribute__((aligned (2))) = dganon_boss_sceneTex_004C18; -#endif - -#define dganon_boss_sceneTex_006C18 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_006C18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_006C18[] = dganon_boss_sceneTex_006C18; -#else -static const char ganon_boss_sceneTex_006C18[] __attribute__((aligned (2))) = dganon_boss_sceneTex_006C18; -#endif - -#define dganon_boss_sceneTLUT_001680 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001680" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTLUT_001680[] = dganon_boss_sceneTLUT_001680; -#else -static const char ganon_boss_sceneTLUT_001680[] __attribute__((aligned (2))) = dganon_boss_sceneTLUT_001680; -#endif - -#define dganon_boss_sceneTex_002C18 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002C18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_002C18[] = dganon_boss_sceneTex_002C18; -#else -static const char ganon_boss_sceneTex_002C18[] __attribute__((aligned (2))) = dganon_boss_sceneTex_002C18; -#endif - -#define dganon_boss_sceneTex_005018 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_005018" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_005018[] = dganon_boss_sceneTex_005018; -#else -static const char ganon_boss_sceneTex_005018[] __attribute__((aligned (2))) = dganon_boss_sceneTex_005018; -#endif - -#define dganon_boss_sceneTex_002658 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002658" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_002658[] = dganon_boss_sceneTex_002658; -#else -static const char ganon_boss_sceneTex_002658[] __attribute__((aligned (2))) = dganon_boss_sceneTex_002658; -#endif - -#define dganon_boss_sceneTex_003C18 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_003C18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_003C18[] = dganon_boss_sceneTex_003C18; -#else -static const char ganon_boss_sceneTex_003C18[] __attribute__((aligned (2))) = dganon_boss_sceneTex_003C18; -#endif - -#define dganon_boss_sceneTLUT_001620 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001620" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTLUT_001620[] = dganon_boss_sceneTLUT_001620; -#else -static const char ganon_boss_sceneTLUT_001620[] __attribute__((aligned (2))) = dganon_boss_sceneTLUT_001620; -#endif - -#define dganon_boss_sceneTex_002758 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002758" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_002758[] = dganon_boss_sceneTex_002758; -#else -static const char ganon_boss_sceneTex_002758[] __attribute__((aligned (2))) = dganon_boss_sceneTex_002758; -#endif - -#define dganon_boss_sceneTex_006418 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_006418" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_006418[] = dganon_boss_sceneTex_006418; -#else -static const char ganon_boss_sceneTex_006418[] __attribute__((aligned (2))) = dganon_boss_sceneTex_006418; -#endif - -#define dganon_boss_sceneTex_001E58 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_001E58[] = dganon_boss_sceneTex_001E58; -#else -static const char ganon_boss_sceneTex_001E58[] __attribute__((aligned (2))) = dganon_boss_sceneTex_001E58; -#endif - -#define dganon_boss_sceneTLUT_001550 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTLUT_001550[] = dganon_boss_sceneTLUT_001550; -#else -static const char ganon_boss_sceneTLUT_001550[] __attribute__((aligned (2))) = dganon_boss_sceneTLUT_001550; -#endif - -#define dganon_boss_sceneTex_006018 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_006018" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_006018[] = dganon_boss_sceneTex_006018; -#else -static const char ganon_boss_sceneTex_006018[] __attribute__((aligned (2))) = dganon_boss_sceneTex_006018; -#endif - -#define dganon_boss_sceneTex_005818 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_005818" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_005818[] = dganon_boss_sceneTex_005818; -#else -static const char ganon_boss_sceneTex_005818[] __attribute__((aligned (2))) = dganon_boss_sceneTex_005818; -#endif - -#define dganon_boss_sceneTLUT_001888 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001888" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTLUT_001888[] = dganon_boss_sceneTLUT_001888; -#else -static const char ganon_boss_sceneTLUT_001888[] __attribute__((aligned (2))) = dganon_boss_sceneTLUT_001888; -#endif - -#define dganon_boss_sceneTex_004818 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_004818" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_004818[] = dganon_boss_sceneTex_004818; -#else -static const char ganon_boss_sceneTex_004818[] __attribute__((aligned (2))) = dganon_boss_sceneTex_004818; -#endif - -#define dganon_boss_sceneTex_004418 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_004418" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_004418[] = dganon_boss_sceneTex_004418; -#else -static const char ganon_boss_sceneTex_004418[] __attribute__((aligned (2))) = dganon_boss_sceneTex_004418; -#endif - -#define dganon_boss_sceneTex_004018 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_004018" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_004018[] = dganon_boss_sceneTex_004018; -#else -static const char ganon_boss_sceneTex_004018[] __attribute__((aligned (2))) = dganon_boss_sceneTex_004018; -#endif - -#define dganon_boss_sceneTex_007418 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_boss_sceneTex_007418[] = dganon_boss_sceneTex_007418; -#else -static const char ganon_boss_sceneTex_007418[] __attribute__((aligned (2))) = dganon_boss_sceneTex_007418; -#endif - +#include "align_asset_macro.h" + +#define dganon_boss_sceneCollisionHeader_001520 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneCollisionHeader_001520" +static const ALIGN_ASSET(2) char ganon_boss_sceneCollisionHeader_001520[] = dganon_boss_sceneCollisionHeader_001520; + +#define dganon_boss_sceneTex_002798 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002798" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_002798[] = dganon_boss_sceneTex_002798; + +#define dganon_boss_sceneTLUT_001C50 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001C50" +static const ALIGN_ASSET(2) char ganon_boss_sceneTLUT_001C50[] = dganon_boss_sceneTLUT_001C50; + +#define dganon_boss_sceneTex_002B98 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002B98" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_002B98[] = dganon_boss_sceneTex_002B98; + +#define dganon_boss_sceneTLUT_001A90 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001A90" +static const ALIGN_ASSET(2) char ganon_boss_sceneTLUT_001A90[] = dganon_boss_sceneTLUT_001A90; + +#define dganon_boss_sceneTex_004C18 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_004C18" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_004C18[] = dganon_boss_sceneTex_004C18; + +#define dganon_boss_sceneTex_006C18 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_006C18" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_006C18[] = dganon_boss_sceneTex_006C18; + +#define dganon_boss_sceneTLUT_001680 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001680" +static const ALIGN_ASSET(2) char ganon_boss_sceneTLUT_001680[] = dganon_boss_sceneTLUT_001680; + +#define dganon_boss_sceneTex_002C18 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002C18" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_002C18[] = dganon_boss_sceneTex_002C18; + +#define dganon_boss_sceneTex_005018 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_005018" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_005018[] = dganon_boss_sceneTex_005018; + +#define dganon_boss_sceneTex_002658 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002658" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_002658[] = dganon_boss_sceneTex_002658; + +#define dganon_boss_sceneTex_003C18 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_003C18" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_003C18[] = dganon_boss_sceneTex_003C18; + +#define dganon_boss_sceneTLUT_001620 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001620" +static const ALIGN_ASSET(2) char ganon_boss_sceneTLUT_001620[] = dganon_boss_sceneTLUT_001620; + +#define dganon_boss_sceneTex_002758 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_002758" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_002758[] = dganon_boss_sceneTex_002758; + +#define dganon_boss_sceneTex_006418 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_006418" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_006418[] = dganon_boss_sceneTex_006418; + +#define dganon_boss_sceneTex_001E58 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_001E58" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_001E58[] = dganon_boss_sceneTex_001E58; + +#define dganon_boss_sceneTLUT_001550 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001550" +static const ALIGN_ASSET(2) char ganon_boss_sceneTLUT_001550[] = dganon_boss_sceneTLUT_001550; + +#define dganon_boss_sceneTex_006018 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_006018" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_006018[] = dganon_boss_sceneTex_006018; + +#define dganon_boss_sceneTex_005818 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_005818" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_005818[] = dganon_boss_sceneTex_005818; + +#define dganon_boss_sceneTLUT_001888 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTLUT_001888" +static const ALIGN_ASSET(2) char ganon_boss_sceneTLUT_001888[] = dganon_boss_sceneTLUT_001888; + +#define dganon_boss_sceneTex_004818 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_004818" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_004818[] = dganon_boss_sceneTex_004818; + +#define dganon_boss_sceneTex_004418 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_004418" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_004418[] = dganon_boss_sceneTex_004418; + +#define dganon_boss_sceneTex_004018 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_004018" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_004018[] = dganon_boss_sceneTex_004018; + +#define dganon_boss_sceneTex_007418 "__OTR__scenes/nonmq/ganon_boss_scene/ganon_boss_sceneTex_007418" +static const ALIGN_ASSET(2) char ganon_boss_sceneTex_007418[] = dganon_boss_sceneTex_007418; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_demo/ganon_demo_room_0.h b/soh/assets/scenes/dungeons/ganon_demo/ganon_demo_room_0.h index 2c72194a3..299f212da 100644 --- a/soh/assets/scenes/dungeons/ganon_demo/ganon_demo_room_0.h +++ b/soh/assets/scenes/dungeons/ganon_demo/ganon_demo_room_0.h @@ -1,30 +1,15 @@ #pragma once -#define dganon_demo_room_0DL_003D58 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_room_0DL_003D58" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_room_0DL_003D58[] = dganon_demo_room_0DL_003D58; -#else -static const char ganon_demo_room_0DL_003D58[] __attribute__((aligned (2))) = dganon_demo_room_0DL_003D58; -#endif - -#define dganon_demo_room_0DL_004140 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_room_0DL_004140" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_room_0DL_004140[] = dganon_demo_room_0DL_004140; -#else -static const char ganon_demo_room_0DL_004140[] __attribute__((aligned (2))) = dganon_demo_room_0DL_004140; -#endif - -#define dganon_demo_room_0Set_000230DL_003D58 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_room_0Set_000230DL_003D58" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_room_0Set_000230DL_003D58[] = dganon_demo_room_0Set_000230DL_003D58; -#else -static const char ganon_demo_room_0Set_000230DL_003D58[] __attribute__((aligned (2))) = dganon_demo_room_0Set_000230DL_003D58; -#endif - -#define dganon_demo_room_0Set_000230DL_004140 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_room_0Set_000230DL_004140" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_room_0Set_000230DL_004140[] = dganon_demo_room_0Set_000230DL_004140; -#else -static const char ganon_demo_room_0Set_000230DL_004140[] __attribute__((aligned (2))) = dganon_demo_room_0Set_000230DL_004140; -#endif - +#include "align_asset_macro.h" + +#define dganon_demo_room_0DL_003D58 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_room_0DL_003D58" +static const ALIGN_ASSET(2) char ganon_demo_room_0DL_003D58[] = dganon_demo_room_0DL_003D58; + +#define dganon_demo_room_0DL_004140 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_room_0DL_004140" +static const ALIGN_ASSET(2) char ganon_demo_room_0DL_004140[] = dganon_demo_room_0DL_004140; + +#define dganon_demo_room_0Set_000230DL_003D58 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_room_0Set_000230DL_003D58" +static const ALIGN_ASSET(2) char ganon_demo_room_0Set_000230DL_003D58[] = dganon_demo_room_0Set_000230DL_003D58; + +#define dganon_demo_room_0Set_000230DL_004140 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_room_0Set_000230DL_004140" +static const ALIGN_ASSET(2) char ganon_demo_room_0Set_000230DL_004140[] = dganon_demo_room_0Set_000230DL_004140; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_demo/ganon_demo_scene.h b/soh/assets/scenes/dungeons/ganon_demo/ganon_demo_scene.h index 720444703..3346f0149 100644 --- a/soh/assets/scenes/dungeons/ganon_demo/ganon_demo_scene.h +++ b/soh/assets/scenes/dungeons/ganon_demo/ganon_demo_scene.h @@ -1,87 +1,41 @@ #pragma once -#define dganon_demo_sceneCollisionHeader_001AA0 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneCollisionHeader_001AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneCollisionHeader_001AA0[] = dganon_demo_sceneCollisionHeader_001AA0; -#else -static const char ganon_demo_sceneCollisionHeader_001AA0[] __attribute__((aligned (2))) = dganon_demo_sceneCollisionHeader_001AA0; -#endif - -#define dganon_demo_sceneTex_008370 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_008370" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_008370[] = dganon_demo_sceneTex_008370; -#else -static const char ganon_demo_sceneTex_008370[] __attribute__((aligned (2))) = dganon_demo_sceneTex_008370; -#endif - -#define dganon_demo_sceneTex_007370 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_007370" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_007370[] = dganon_demo_sceneTex_007370; -#else -static const char ganon_demo_sceneTex_007370[] __attribute__((aligned (2))) = dganon_demo_sceneTex_007370; -#endif - -#define dganon_demo_sceneTex_008870 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_008870" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_008870[] = dganon_demo_sceneTex_008870; -#else -static const char ganon_demo_sceneTex_008870[] __attribute__((aligned (2))) = dganon_demo_sceneTex_008870; -#endif - -#define dganon_demo_sceneTex_008770 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_008770" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_008770[] = dganon_demo_sceneTex_008770; -#else -static const char ganon_demo_sceneTex_008770[] __attribute__((aligned (2))) = dganon_demo_sceneTex_008770; -#endif - -#define dganon_demo_sceneTex_006370 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_006370" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_006370[] = dganon_demo_sceneTex_006370; -#else -static const char ganon_demo_sceneTex_006370[] __attribute__((aligned (2))) = dganon_demo_sceneTex_006370; -#endif - -#define dganon_demo_sceneTex_005B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_005B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_005B70[] = dganon_demo_sceneTex_005B70; -#else -static const char ganon_demo_sceneTex_005B70[] __attribute__((aligned (2))) = dganon_demo_sceneTex_005B70; -#endif - -#define dganon_demo_sceneTex_004B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_004B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_004B70[] = dganon_demo_sceneTex_004B70; -#else -static const char ganon_demo_sceneTex_004B70[] __attribute__((aligned (2))) = dganon_demo_sceneTex_004B70; -#endif - -#define dganon_demo_sceneTex_003B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_003B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_003B70[] = dganon_demo_sceneTex_003B70; -#else -static const char ganon_demo_sceneTex_003B70[] __attribute__((aligned (2))) = dganon_demo_sceneTex_003B70; -#endif - -#define dganon_demo_sceneTex_002B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_002B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_002B70[] = dganon_demo_sceneTex_002B70; -#else -static const char ganon_demo_sceneTex_002B70[] __attribute__((aligned (2))) = dganon_demo_sceneTex_002B70; -#endif - -#define dganon_demo_sceneTex_001B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_001B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_001B70[] = dganon_demo_sceneTex_001B70; -#else -static const char ganon_demo_sceneTex_001B70[] __attribute__((aligned (2))) = dganon_demo_sceneTex_001B70; -#endif - -#define dganon_demo_sceneTex_006B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_006B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_demo_sceneTex_006B70[] = dganon_demo_sceneTex_006B70; -#else -static const char ganon_demo_sceneTex_006B70[] __attribute__((aligned (2))) = dganon_demo_sceneTex_006B70; -#endif - -#define dganon_demo_sceneCollisionHeader_001AA0 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneCollisionHeader_001AA0" +#include "align_asset_macro.h" + +#define dganon_demo_sceneCollisionHeader_001AA0 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneCollisionHeader_001AA0" +static const ALIGN_ASSET(2) char ganon_demo_sceneCollisionHeader_001AA0[] = dganon_demo_sceneCollisionHeader_001AA0; + +#define dganon_demo_sceneTex_008370 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_008370" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_008370[] = dganon_demo_sceneTex_008370; + +#define dganon_demo_sceneTex_007370 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_007370" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_007370[] = dganon_demo_sceneTex_007370; + +#define dganon_demo_sceneTex_008870 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_008870" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_008870[] = dganon_demo_sceneTex_008870; + +#define dganon_demo_sceneTex_008770 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_008770" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_008770[] = dganon_demo_sceneTex_008770; + +#define dganon_demo_sceneTex_006370 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_006370" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_006370[] = dganon_demo_sceneTex_006370; + +#define dganon_demo_sceneTex_005B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_005B70" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_005B70[] = dganon_demo_sceneTex_005B70; + +#define dganon_demo_sceneTex_004B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_004B70" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_004B70[] = dganon_demo_sceneTex_004B70; + +#define dganon_demo_sceneTex_003B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_003B70" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_003B70[] = dganon_demo_sceneTex_003B70; + +#define dganon_demo_sceneTex_002B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_002B70" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_002B70[] = dganon_demo_sceneTex_002B70; + +#define dganon_demo_sceneTex_001B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_001B70" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_001B70[] = dganon_demo_sceneTex_001B70; + +#define dganon_demo_sceneTex_006B70 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneTex_006B70" +static const ALIGN_ASSET(2) char ganon_demo_sceneTex_006B70[] = dganon_demo_sceneTex_006B70; + +#define dganon_demo_sceneCollisionHeader_001AA0 "__OTR__scenes/nonmq/ganon_demo_scene/ganon_demo_sceneCollisionHeader_001AA0" \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_final/ganon_final_room_0.h b/soh/assets/scenes/dungeons/ganon_final/ganon_final_room_0.h index 6aeccf231..6b8adc8bf 100644 --- a/soh/assets/scenes/dungeons/ganon_final/ganon_final_room_0.h +++ b/soh/assets/scenes/dungeons/ganon_final/ganon_final_room_0.h @@ -1,16 +1,9 @@ #pragma once -#define dganon_final_room_0DL_00CA40 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_room_0DL_00CA40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_room_0DL_00CA40[] = dganon_final_room_0DL_00CA40; -#else -static const char ganon_final_room_0DL_00CA40[] __attribute__((aligned (2))) = dganon_final_room_0DL_00CA40; -#endif - -#define dganon_final_room_0DL_00CE98 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_room_0DL_00CE98" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_room_0DL_00CE98[] = dganon_final_room_0DL_00CE98; -#else -static const char ganon_final_room_0DL_00CE98[] __attribute__((aligned (2))) = dganon_final_room_0DL_00CE98; -#endif - +#include "align_asset_macro.h" + +#define dganon_final_room_0DL_00CA40 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_room_0DL_00CA40" +static const ALIGN_ASSET(2) char ganon_final_room_0DL_00CA40[] = dganon_final_room_0DL_00CA40; + +#define dganon_final_room_0DL_00CE98 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_room_0DL_00CE98" +static const ALIGN_ASSET(2) char ganon_final_room_0DL_00CE98[] = dganon_final_room_0DL_00CE98; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_final/ganon_final_scene.h b/soh/assets/scenes/dungeons/ganon_final/ganon_final_scene.h index d5c2a9fb4..93184b233 100644 --- a/soh/assets/scenes/dungeons/ganon_final/ganon_final_scene.h +++ b/soh/assets/scenes/dungeons/ganon_final/ganon_final_scene.h @@ -1,184 +1,81 @@ #pragma once -#define dganon_final_sceneCollisionHeader_002354 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneCollisionHeader_002354" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneCollisionHeader_002354[] = dganon_final_sceneCollisionHeader_002354; -#else -static const char ganon_final_sceneCollisionHeader_002354[] __attribute__((aligned (2))) = dganon_final_sceneCollisionHeader_002354; -#endif - -#define dganon_final_sceneTex_00A580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00A580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00A580[] = dganon_final_sceneTex_00A580; -#else -static const char ganon_final_sceneTex_00A580[] __attribute__((aligned (2))) = dganon_final_sceneTex_00A580; -#endif - -#define dganon_final_sceneTex_00BD80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00BD80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00BD80[] = dganon_final_sceneTex_00BD80; -#else -static const char ganon_final_sceneTex_00BD80[] __attribute__((aligned (2))) = dganon_final_sceneTex_00BD80; -#endif - -#define dganon_final_sceneTex_00AD80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00AD80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00AD80[] = dganon_final_sceneTex_00AD80; -#else -static const char ganon_final_sceneTex_00AD80[] __attribute__((aligned (2))) = dganon_final_sceneTex_00AD80; -#endif - -#define dganon_final_sceneTex_00CD80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00CD80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00CD80[] = dganon_final_sceneTex_00CD80; -#else -static const char ganon_final_sceneTex_00CD80[] __attribute__((aligned (2))) = dganon_final_sceneTex_00CD80; -#endif - -#define dganon_final_sceneTex_004D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_004D80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_004D80[] = dganon_final_sceneTex_004D80; -#else -static const char ganon_final_sceneTex_004D80[] __attribute__((aligned (2))) = dganon_final_sceneTex_004D80; -#endif - -#define dganon_final_sceneTex_006D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_006D80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_006D80[] = dganon_final_sceneTex_006D80; -#else -static const char ganon_final_sceneTex_006D80[] __attribute__((aligned (2))) = dganon_final_sceneTex_006D80; -#endif - -#define dganon_final_sceneTex_003D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_003D80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_003D80[] = dganon_final_sceneTex_003D80; -#else -static const char ganon_final_sceneTex_003D80[] __attribute__((aligned (2))) = dganon_final_sceneTex_003D80; -#endif - -#define dganon_final_sceneTex_010580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_010580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_010580[] = dganon_final_sceneTex_010580; -#else -static const char ganon_final_sceneTex_010580[] __attribute__((aligned (2))) = dganon_final_sceneTex_010580; -#endif - -#define dganon_final_sceneTex_00CE80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00CE80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00CE80[] = dganon_final_sceneTex_00CE80; -#else -static const char ganon_final_sceneTex_00CE80[] __attribute__((aligned (2))) = dganon_final_sceneTex_00CE80; -#endif - -#define dganon_final_sceneTex_00DE80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00DE80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00DE80[] = dganon_final_sceneTex_00DE80; -#else -static const char ganon_final_sceneTex_00DE80[] __attribute__((aligned (2))) = dganon_final_sceneTex_00DE80; -#endif - -#define dganon_final_sceneTex_002980 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_002980" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_002980[] = dganon_final_sceneTex_002980; -#else -static const char ganon_final_sceneTex_002980[] __attribute__((aligned (2))) = dganon_final_sceneTex_002980; -#endif - -#define dganon_final_sceneTex_002380 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_002380" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_002380[] = dganon_final_sceneTex_002380; -#else -static const char ganon_final_sceneTex_002380[] __attribute__((aligned (2))) = dganon_final_sceneTex_002380; -#endif - -#define dganon_final_sceneTex_002D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_002D80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_002D80[] = dganon_final_sceneTex_002D80; -#else -static const char ganon_final_sceneTex_002D80[] __attribute__((aligned (2))) = dganon_final_sceneTex_002D80; -#endif - -#define dganon_final_sceneTex_007580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_007580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_007580[] = dganon_final_sceneTex_007580; -#else -static const char ganon_final_sceneTex_007580[] __attribute__((aligned (2))) = dganon_final_sceneTex_007580; -#endif - -#define dganon_final_sceneTex_00E180 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00E180" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00E180[] = dganon_final_sceneTex_00E180; -#else -static const char ganon_final_sceneTex_00E180[] __attribute__((aligned (2))) = dganon_final_sceneTex_00E180; -#endif - -#define dganon_final_sceneTex_00F580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00F580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00F580[] = dganon_final_sceneTex_00F580; -#else -static const char ganon_final_sceneTex_00F580[] __attribute__((aligned (2))) = dganon_final_sceneTex_00F580; -#endif - -#define dganon_final_sceneTex_005D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_005D80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_005D80[] = dganon_final_sceneTex_005D80; -#else -static const char ganon_final_sceneTex_005D80[] __attribute__((aligned (2))) = dganon_final_sceneTex_005D80; -#endif - -#define dganon_final_sceneTex_008580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_008580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_008580[] = dganon_final_sceneTex_008580; -#else -static const char ganon_final_sceneTex_008580[] __attribute__((aligned (2))) = dganon_final_sceneTex_008580; -#endif - -#define dganon_final_sceneTex_009580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_009580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_009580[] = dganon_final_sceneTex_009580; -#else -static const char ganon_final_sceneTex_009580[] __attribute__((aligned (2))) = dganon_final_sceneTex_009580; -#endif - -#define dganon_final_sceneTex_010980 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_010980" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_010980[] = dganon_final_sceneTex_010980; -#else -static const char ganon_final_sceneTex_010980[] __attribute__((aligned (2))) = dganon_final_sceneTex_010980; -#endif - -#define dganon_final_sceneTex_004580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_004580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_004580[] = dganon_final_sceneTex_004580; -#else -static const char ganon_final_sceneTex_004580[] __attribute__((aligned (2))) = dganon_final_sceneTex_004580; -#endif - -#define dganon_final_sceneTex_002780 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_002780" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_002780[] = dganon_final_sceneTex_002780; -#else -static const char ganon_final_sceneTex_002780[] __attribute__((aligned (2))) = dganon_final_sceneTex_002780; -#endif - -#define dganon_final_sceneTex_00F180 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00F180" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00F180[] = dganon_final_sceneTex_00F180; -#else -static const char ganon_final_sceneTex_00F180[] __attribute__((aligned (2))) = dganon_final_sceneTex_00F180; -#endif - -#define dganon_final_sceneTex_00E080 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00E080" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_00E080[] = dganon_final_sceneTex_00E080; -#else -static const char ganon_final_sceneTex_00E080[] __attribute__((aligned (2))) = dganon_final_sceneTex_00E080; -#endif - -#define dganon_final_sceneTex_011180 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_011180" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_final_sceneTex_011180[] = dganon_final_sceneTex_011180; -#else -static const char ganon_final_sceneTex_011180[] __attribute__((aligned (2))) = dganon_final_sceneTex_011180; -#endif - +#include "align_asset_macro.h" + +#define dganon_final_sceneCollisionHeader_002354 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneCollisionHeader_002354" +static const ALIGN_ASSET(2) char ganon_final_sceneCollisionHeader_002354[] = dganon_final_sceneCollisionHeader_002354; + +#define dganon_final_sceneTex_00A580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00A580" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00A580[] = dganon_final_sceneTex_00A580; + +#define dganon_final_sceneTex_00BD80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00BD80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00BD80[] = dganon_final_sceneTex_00BD80; + +#define dganon_final_sceneTex_00AD80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00AD80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00AD80[] = dganon_final_sceneTex_00AD80; + +#define dganon_final_sceneTex_00CD80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00CD80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00CD80[] = dganon_final_sceneTex_00CD80; + +#define dganon_final_sceneTex_004D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_004D80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_004D80[] = dganon_final_sceneTex_004D80; + +#define dganon_final_sceneTex_006D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_006D80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_006D80[] = dganon_final_sceneTex_006D80; + +#define dganon_final_sceneTex_003D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_003D80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_003D80[] = dganon_final_sceneTex_003D80; + +#define dganon_final_sceneTex_010580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_010580" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_010580[] = dganon_final_sceneTex_010580; + +#define dganon_final_sceneTex_00CE80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00CE80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00CE80[] = dganon_final_sceneTex_00CE80; + +#define dganon_final_sceneTex_00DE80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00DE80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00DE80[] = dganon_final_sceneTex_00DE80; + +#define dganon_final_sceneTex_002980 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_002980" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_002980[] = dganon_final_sceneTex_002980; + +#define dganon_final_sceneTex_002380 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_002380" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_002380[] = dganon_final_sceneTex_002380; + +#define dganon_final_sceneTex_002D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_002D80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_002D80[] = dganon_final_sceneTex_002D80; + +#define dganon_final_sceneTex_007580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_007580" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_007580[] = dganon_final_sceneTex_007580; + +#define dganon_final_sceneTex_00E180 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00E180" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00E180[] = dganon_final_sceneTex_00E180; + +#define dganon_final_sceneTex_00F580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00F580" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00F580[] = dganon_final_sceneTex_00F580; + +#define dganon_final_sceneTex_005D80 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_005D80" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_005D80[] = dganon_final_sceneTex_005D80; + +#define dganon_final_sceneTex_008580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_008580" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_008580[] = dganon_final_sceneTex_008580; + +#define dganon_final_sceneTex_009580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_009580" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_009580[] = dganon_final_sceneTex_009580; + +#define dganon_final_sceneTex_010980 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_010980" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_010980[] = dganon_final_sceneTex_010980; + +#define dganon_final_sceneTex_004580 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_004580" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_004580[] = dganon_final_sceneTex_004580; + +#define dganon_final_sceneTex_002780 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_002780" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_002780[] = dganon_final_sceneTex_002780; + +#define dganon_final_sceneTex_00F180 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00F180" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00F180[] = dganon_final_sceneTex_00F180; + +#define dganon_final_sceneTex_00E080 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_00E080" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_00E080[] = dganon_final_sceneTex_00E080; + +#define dganon_final_sceneTex_011180 "__OTR__scenes/nonmq/ganon_final_scene/ganon_final_sceneTex_011180" +static const ALIGN_ASSET(2) char ganon_final_sceneTex_011180[] = dganon_final_sceneTex_011180; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_0.h b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_0.h index 735c4731e..7ad65ca0a 100644 --- a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_0.h +++ b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_0.h @@ -1,72 +1,33 @@ #pragma once -#define dganon_sonogo_room_0DL_005010 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0DL_005010" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0DL_005010[] = dganon_sonogo_room_0DL_005010; -#else -static const char ganon_sonogo_room_0DL_005010[] __attribute__((aligned (2))) = dganon_sonogo_room_0DL_005010; -#endif - -#define dganon_sonogo_room_0Tex_005820 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_005820" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0Tex_005820[] = dganon_sonogo_room_0Tex_005820; -#else -static const char ganon_sonogo_room_0Tex_005820[] __attribute__((aligned (2))) = dganon_sonogo_room_0Tex_005820; -#endif - -#define dganon_sonogo_room_0Tex_005020 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_005020" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0Tex_005020[] = dganon_sonogo_room_0Tex_005020; -#else -static const char ganon_sonogo_room_0Tex_005020[] __attribute__((aligned (2))) = dganon_sonogo_room_0Tex_005020; -#endif - -#define dganon_sonogo_room_0Tex_007820 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_007820" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0Tex_007820[] = dganon_sonogo_room_0Tex_007820; -#else -static const char ganon_sonogo_room_0Tex_007820[] __attribute__((aligned (2))) = dganon_sonogo_room_0Tex_007820; -#endif - -#define dganon_sonogo_room_0Tex_006020 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_006020" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0Tex_006020[] = dganon_sonogo_room_0Tex_006020; -#else -static const char ganon_sonogo_room_0Tex_006020[] __attribute__((aligned (2))) = dganon_sonogo_room_0Tex_006020; -#endif - -#define dganon_sonogo_room_0Tex_006820 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_006820" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0Tex_006820[] = dganon_sonogo_room_0Tex_006820; -#else -static const char ganon_sonogo_room_0Tex_006820[] __attribute__((aligned (2))) = dganon_sonogo_room_0Tex_006820; -#endif - -#define dganon_sonogo_room_0Tex_007420 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_007420" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0Tex_007420[] = dganon_sonogo_room_0Tex_007420; -#else -static const char ganon_sonogo_room_0Tex_007420[] __attribute__((aligned (2))) = dganon_sonogo_room_0Tex_007420; -#endif - -#define dganon_sonogo_room_0Tex_007020 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_007020" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0Tex_007020[] = dganon_sonogo_room_0Tex_007020; -#else -static const char ganon_sonogo_room_0Tex_007020[] __attribute__((aligned (2))) = dganon_sonogo_room_0Tex_007020; -#endif - -#define dganon_sonogo_room_0Tex_005C20 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_005C20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0Tex_005C20[] = dganon_sonogo_room_0Tex_005C20; -#else -static const char ganon_sonogo_room_0Tex_005C20[] __attribute__((aligned (2))) = dganon_sonogo_room_0Tex_005C20; -#endif - -#define dganon_sonogo_room_0DL_007E70 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0DL_007E70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_0DL_007E70[] = dganon_sonogo_room_0DL_007E70; -#else -static const char ganon_sonogo_room_0DL_007E70[] __attribute__((aligned (2))) = dganon_sonogo_room_0DL_007E70; -#endif - +#include "align_asset_macro.h" + +#define dganon_sonogo_room_0DL_005010 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0DL_005010" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0DL_005010[] = dganon_sonogo_room_0DL_005010; + +#define dganon_sonogo_room_0Tex_005820 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_005820" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0Tex_005820[] = dganon_sonogo_room_0Tex_005820; + +#define dganon_sonogo_room_0Tex_005020 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_005020" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0Tex_005020[] = dganon_sonogo_room_0Tex_005020; + +#define dganon_sonogo_room_0Tex_007820 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_007820" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0Tex_007820[] = dganon_sonogo_room_0Tex_007820; + +#define dganon_sonogo_room_0Tex_006020 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_006020" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0Tex_006020[] = dganon_sonogo_room_0Tex_006020; + +#define dganon_sonogo_room_0Tex_006820 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_006820" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0Tex_006820[] = dganon_sonogo_room_0Tex_006820; + +#define dganon_sonogo_room_0Tex_007420 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_007420" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0Tex_007420[] = dganon_sonogo_room_0Tex_007420; + +#define dganon_sonogo_room_0Tex_007020 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_007020" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0Tex_007020[] = dganon_sonogo_room_0Tex_007020; + +#define dganon_sonogo_room_0Tex_005C20 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0Tex_005C20" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0Tex_005C20[] = dganon_sonogo_room_0Tex_005C20; + +#define dganon_sonogo_room_0DL_007E70 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_0DL_007E70" +static const ALIGN_ASSET(2) char ganon_sonogo_room_0DL_007E70[] = dganon_sonogo_room_0DL_007E70; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_1.h b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_1.h index 75745f074..90c42dc79 100644 --- a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_1.h +++ b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_1.h @@ -1,79 +1,36 @@ #pragma once -#define dganon_sonogo_room_1DL_004138 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1DL_004138" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1DL_004138[] = dganon_sonogo_room_1DL_004138; -#else -static const char ganon_sonogo_room_1DL_004138[] __attribute__((aligned (2))) = dganon_sonogo_room_1DL_004138; -#endif - -#define dganon_sonogo_room_1Tex_004948 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_004948" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_004948[] = dganon_sonogo_room_1Tex_004948; -#else -static const char ganon_sonogo_room_1Tex_004948[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_004948; -#endif - -#define dganon_sonogo_room_1Tex_006948 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_006948" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_006948[] = dganon_sonogo_room_1Tex_006948; -#else -static const char ganon_sonogo_room_1Tex_006948[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_006948; -#endif - -#define dganon_sonogo_room_1Tex_005948 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_005948" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_005948[] = dganon_sonogo_room_1Tex_005948; -#else -static const char ganon_sonogo_room_1Tex_005948[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_005948; -#endif - -#define dganon_sonogo_room_1Tex_006548 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_006548" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_006548[] = dganon_sonogo_room_1Tex_006548; -#else -static const char ganon_sonogo_room_1Tex_006548[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_006548; -#endif - -#define dganon_sonogo_room_1Tex_004D48 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_004D48[] = dganon_sonogo_room_1Tex_004D48; -#else -static const char ganon_sonogo_room_1Tex_004D48[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_004D48; -#endif - -#define dganon_sonogo_room_1Tex_005548 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_005548" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_005548[] = dganon_sonogo_room_1Tex_005548; -#else -static const char ganon_sonogo_room_1Tex_005548[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_005548; -#endif - -#define dganon_sonogo_room_1Tex_004148 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_004148" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_004148[] = dganon_sonogo_room_1Tex_004148; -#else -static const char ganon_sonogo_room_1Tex_004148[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_004148; -#endif - -#define dganon_sonogo_room_1Tex_005D48 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_005D48" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_005D48[] = dganon_sonogo_room_1Tex_005D48; -#else -static const char ganon_sonogo_room_1Tex_005D48[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_005D48; -#endif - -#define dganon_sonogo_room_1Tex_004548 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_004548" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1Tex_004548[] = dganon_sonogo_room_1Tex_004548; -#else -static const char ganon_sonogo_room_1Tex_004548[] __attribute__((aligned (2))) = dganon_sonogo_room_1Tex_004548; -#endif - -#define dganon_sonogo_room_1DL_007BA0 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1DL_007BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_1DL_007BA0[] = dganon_sonogo_room_1DL_007BA0; -#else -static const char ganon_sonogo_room_1DL_007BA0[] __attribute__((aligned (2))) = dganon_sonogo_room_1DL_007BA0; -#endif - +#include "align_asset_macro.h" + +#define dganon_sonogo_room_1DL_004138 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1DL_004138" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1DL_004138[] = dganon_sonogo_room_1DL_004138; + +#define dganon_sonogo_room_1Tex_004948 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_004948" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_004948[] = dganon_sonogo_room_1Tex_004948; + +#define dganon_sonogo_room_1Tex_006948 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_006948" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_006948[] = dganon_sonogo_room_1Tex_006948; + +#define dganon_sonogo_room_1Tex_005948 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_005948" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_005948[] = dganon_sonogo_room_1Tex_005948; + +#define dganon_sonogo_room_1Tex_006548 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_006548" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_006548[] = dganon_sonogo_room_1Tex_006548; + +#define dganon_sonogo_room_1Tex_004D48 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_004D48" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_004D48[] = dganon_sonogo_room_1Tex_004D48; + +#define dganon_sonogo_room_1Tex_005548 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_005548" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_005548[] = dganon_sonogo_room_1Tex_005548; + +#define dganon_sonogo_room_1Tex_004148 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_004148" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_004148[] = dganon_sonogo_room_1Tex_004148; + +#define dganon_sonogo_room_1Tex_005D48 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_005D48" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_005D48[] = dganon_sonogo_room_1Tex_005D48; + +#define dganon_sonogo_room_1Tex_004548 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1Tex_004548" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1Tex_004548[] = dganon_sonogo_room_1Tex_004548; + +#define dganon_sonogo_room_1DL_007BA0 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_1DL_007BA0" +static const ALIGN_ASSET(2) char ganon_sonogo_room_1DL_007BA0[] = dganon_sonogo_room_1DL_007BA0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_2.h b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_2.h index 7572f88ba..509cc86d7 100644 --- a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_2.h +++ b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_2.h @@ -1,93 +1,42 @@ #pragma once -#define dganon_sonogo_room_2DL_004A30 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2DL_004A30" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2DL_004A30[] = dganon_sonogo_room_2DL_004A30; -#else -static const char ganon_sonogo_room_2DL_004A30[] __attribute__((aligned (2))) = dganon_sonogo_room_2DL_004A30; -#endif - -#define dganon_sonogo_room_2Tex_006640 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_006640" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_006640[] = dganon_sonogo_room_2Tex_006640; -#else -static const char ganon_sonogo_room_2Tex_006640[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_006640; -#endif - -#define dganon_sonogo_room_2Tex_007A40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_007A40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_007A40[] = dganon_sonogo_room_2Tex_007A40; -#else -static const char ganon_sonogo_room_2Tex_007A40[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_007A40; -#endif - -#define dganon_sonogo_room_2Tex_005240 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_005240" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_005240[] = dganon_sonogo_room_2Tex_005240; -#else -static const char ganon_sonogo_room_2Tex_005240[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_005240; -#endif - -#define dganon_sonogo_room_2Tex_005A40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_005A40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_005A40[] = dganon_sonogo_room_2Tex_005A40; -#else -static const char ganon_sonogo_room_2Tex_005A40[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_005A40; -#endif - -#define dganon_sonogo_room_2Tex_006240 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_006240" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_006240[] = dganon_sonogo_room_2Tex_006240; -#else -static const char ganon_sonogo_room_2Tex_006240[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_006240; -#endif - -#define dganon_sonogo_room_2Tex_005640 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_005640" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_005640[] = dganon_sonogo_room_2Tex_005640; -#else -static const char ganon_sonogo_room_2Tex_005640[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_005640; -#endif - -#define dganon_sonogo_room_2Tex_004A40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_004A40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_004A40[] = dganon_sonogo_room_2Tex_004A40; -#else -static const char ganon_sonogo_room_2Tex_004A40[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_004A40; -#endif - -#define dganon_sonogo_room_2Tex_006A40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_006A40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_006A40[] = dganon_sonogo_room_2Tex_006A40; -#else -static const char ganon_sonogo_room_2Tex_006A40[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_006A40; -#endif - -#define dganon_sonogo_room_2Tex_007240 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_007240" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_007240[] = dganon_sonogo_room_2Tex_007240; -#else -static const char ganon_sonogo_room_2Tex_007240[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_007240; -#endif - -#define dganon_sonogo_room_2Tex_008240 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_008240" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_008240[] = dganon_sonogo_room_2Tex_008240; -#else -static const char ganon_sonogo_room_2Tex_008240[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_008240; -#endif - -#define dganon_sonogo_room_2Tex_006E40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_006E40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2Tex_006E40[] = dganon_sonogo_room_2Tex_006E40; -#else -static const char ganon_sonogo_room_2Tex_006E40[] __attribute__((aligned (2))) = dganon_sonogo_room_2Tex_006E40; -#endif - -#define dganon_sonogo_room_2DL_008C90 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2DL_008C90" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_2DL_008C90[] = dganon_sonogo_room_2DL_008C90; -#else -static const char ganon_sonogo_room_2DL_008C90[] __attribute__((aligned (2))) = dganon_sonogo_room_2DL_008C90; -#endif - +#include "align_asset_macro.h" + +#define dganon_sonogo_room_2DL_004A30 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2DL_004A30" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2DL_004A30[] = dganon_sonogo_room_2DL_004A30; + +#define dganon_sonogo_room_2Tex_006640 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_006640" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_006640[] = dganon_sonogo_room_2Tex_006640; + +#define dganon_sonogo_room_2Tex_007A40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_007A40" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_007A40[] = dganon_sonogo_room_2Tex_007A40; + +#define dganon_sonogo_room_2Tex_005240 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_005240" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_005240[] = dganon_sonogo_room_2Tex_005240; + +#define dganon_sonogo_room_2Tex_005A40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_005A40" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_005A40[] = dganon_sonogo_room_2Tex_005A40; + +#define dganon_sonogo_room_2Tex_006240 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_006240" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_006240[] = dganon_sonogo_room_2Tex_006240; + +#define dganon_sonogo_room_2Tex_005640 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_005640" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_005640[] = dganon_sonogo_room_2Tex_005640; + +#define dganon_sonogo_room_2Tex_004A40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_004A40" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_004A40[] = dganon_sonogo_room_2Tex_004A40; + +#define dganon_sonogo_room_2Tex_006A40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_006A40" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_006A40[] = dganon_sonogo_room_2Tex_006A40; + +#define dganon_sonogo_room_2Tex_007240 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_007240" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_007240[] = dganon_sonogo_room_2Tex_007240; + +#define dganon_sonogo_room_2Tex_008240 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_008240" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_008240[] = dganon_sonogo_room_2Tex_008240; + +#define dganon_sonogo_room_2Tex_006E40 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2Tex_006E40" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2Tex_006E40[] = dganon_sonogo_room_2Tex_006E40; + +#define dganon_sonogo_room_2DL_008C90 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_2DL_008C90" +static const ALIGN_ASSET(2) char ganon_sonogo_room_2DL_008C90[] = dganon_sonogo_room_2DL_008C90; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_3.h b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_3.h index dc9edd3fd..016f52192 100644 --- a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_3.h +++ b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_3.h @@ -1,37 +1,18 @@ #pragma once -#define dganon_sonogo_room_3DL_003A28 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3DL_003A28" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_3DL_003A28[] = dganon_sonogo_room_3DL_003A28; -#else -static const char ganon_sonogo_room_3DL_003A28[] __attribute__((aligned (2))) = dganon_sonogo_room_3DL_003A28; -#endif - -#define dganon_sonogo_room_3Tex_003A38 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3Tex_003A38" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_3Tex_003A38[] = dganon_sonogo_room_3Tex_003A38; -#else -static const char ganon_sonogo_room_3Tex_003A38[] __attribute__((aligned (2))) = dganon_sonogo_room_3Tex_003A38; -#endif - -#define dganon_sonogo_room_3Tex_004E38 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3Tex_004E38" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_3Tex_004E38[] = dganon_sonogo_room_3Tex_004E38; -#else -static const char ganon_sonogo_room_3Tex_004E38[] __attribute__((aligned (2))) = dganon_sonogo_room_3Tex_004E38; -#endif - -#define dganon_sonogo_room_3Tex_004638 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3Tex_004638" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_3Tex_004638[] = dganon_sonogo_room_3Tex_004638; -#else -static const char ganon_sonogo_room_3Tex_004638[] __attribute__((aligned (2))) = dganon_sonogo_room_3Tex_004638; -#endif - -#define dganon_sonogo_room_3Tex_003E38 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3Tex_003E38" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_3Tex_003E38[] = dganon_sonogo_room_3Tex_003E38; -#else -static const char ganon_sonogo_room_3Tex_003E38[] __attribute__((aligned (2))) = dganon_sonogo_room_3Tex_003E38; -#endif - +#include "align_asset_macro.h" + +#define dganon_sonogo_room_3DL_003A28 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3DL_003A28" +static const ALIGN_ASSET(2) char ganon_sonogo_room_3DL_003A28[] = dganon_sonogo_room_3DL_003A28; + +#define dganon_sonogo_room_3Tex_003A38 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3Tex_003A38" +static const ALIGN_ASSET(2) char ganon_sonogo_room_3Tex_003A38[] = dganon_sonogo_room_3Tex_003A38; + +#define dganon_sonogo_room_3Tex_004E38 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3Tex_004E38" +static const ALIGN_ASSET(2) char ganon_sonogo_room_3Tex_004E38[] = dganon_sonogo_room_3Tex_004E38; + +#define dganon_sonogo_room_3Tex_004638 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3Tex_004638" +static const ALIGN_ASSET(2) char ganon_sonogo_room_3Tex_004638[] = dganon_sonogo_room_3Tex_004638; + +#define dganon_sonogo_room_3Tex_003E38 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_3Tex_003E38" +static const ALIGN_ASSET(2) char ganon_sonogo_room_3Tex_003E38[] = dganon_sonogo_room_3Tex_003E38; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_4.h b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_4.h index e9d2b23ef..a3eb90d30 100644 --- a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_4.h +++ b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_room_4.h @@ -1,100 +1,45 @@ #pragma once -#define dganon_sonogo_room_4DL_004830 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4DL_004830" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4DL_004830[] = dganon_sonogo_room_4DL_004830; -#else -static const char ganon_sonogo_room_4DL_004830[] __attribute__((aligned (2))) = dganon_sonogo_room_4DL_004830; -#endif - -#define dganon_sonogo_room_4Tex_005CE8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_005CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_005CE8[] = dganon_sonogo_room_4Tex_005CE8; -#else -static const char ganon_sonogo_room_4Tex_005CE8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_005CE8; -#endif - -#define dganon_sonogo_room_4TLUT_004910 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4TLUT_004910" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4TLUT_004910[] = dganon_sonogo_room_4TLUT_004910; -#else -static const char ganon_sonogo_room_4TLUT_004910[] __attribute__((aligned (2))) = dganon_sonogo_room_4TLUT_004910; -#endif - -#define dganon_sonogo_room_4Tex_0064E8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0064E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_0064E8[] = dganon_sonogo_room_4Tex_0064E8; -#else -static const char ganon_sonogo_room_4Tex_0064E8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_0064E8; -#endif - -#define dganon_sonogo_room_4TLUT_004B18 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4TLUT_004B18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4TLUT_004B18[] = dganon_sonogo_room_4TLUT_004B18; -#else -static const char ganon_sonogo_room_4TLUT_004B18[] __attribute__((aligned (2))) = dganon_sonogo_room_4TLUT_004B18; -#endif - -#define dganon_sonogo_room_4Tex_0053A8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0053A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_0053A8[] = dganon_sonogo_room_4Tex_0053A8; -#else -static const char ganon_sonogo_room_4Tex_0053A8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_0053A8; -#endif - -#define dganon_sonogo_room_4Tex_0074E8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0074E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_0074E8[] = dganon_sonogo_room_4Tex_0074E8; -#else -static const char ganon_sonogo_room_4Tex_0074E8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_0074E8; -#endif - -#define dganon_sonogo_room_4Tex_0054E8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0054E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_0054E8[] = dganon_sonogo_room_4Tex_0054E8; -#else -static const char ganon_sonogo_room_4Tex_0054E8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_0054E8; -#endif - -#define dganon_sonogo_room_4Tex_0068E8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0068E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_0068E8[] = dganon_sonogo_room_4Tex_0068E8; -#else -static const char ganon_sonogo_room_4Tex_0068E8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_0068E8; -#endif - -#define dganon_sonogo_room_4Tex_004BA8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_004BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_004BA8[] = dganon_sonogo_room_4Tex_004BA8; -#else -static const char ganon_sonogo_room_4Tex_004BA8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_004BA8; -#endif - -#define dganon_sonogo_room_4TLUT_004840 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4TLUT_004840" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4TLUT_004840[] = dganon_sonogo_room_4TLUT_004840; -#else -static const char ganon_sonogo_room_4TLUT_004840[] __attribute__((aligned (2))) = dganon_sonogo_room_4TLUT_004840; -#endif - -#define dganon_sonogo_room_4Tex_007CE8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_007CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_007CE8[] = dganon_sonogo_room_4Tex_007CE8; -#else -static const char ganon_sonogo_room_4Tex_007CE8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_007CE8; -#endif - -#define dganon_sonogo_room_4Tex_006CE8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_006CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_006CE8[] = dganon_sonogo_room_4Tex_006CE8; -#else -static const char ganon_sonogo_room_4Tex_006CE8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_006CE8; -#endif - -#define dganon_sonogo_room_4Tex_0054A8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0054A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_room_4Tex_0054A8[] = dganon_sonogo_room_4Tex_0054A8; -#else -static const char ganon_sonogo_room_4Tex_0054A8[] __attribute__((aligned (2))) = dganon_sonogo_room_4Tex_0054A8; -#endif - +#include "align_asset_macro.h" + +#define dganon_sonogo_room_4DL_004830 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4DL_004830" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4DL_004830[] = dganon_sonogo_room_4DL_004830; + +#define dganon_sonogo_room_4Tex_005CE8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_005CE8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_005CE8[] = dganon_sonogo_room_4Tex_005CE8; + +#define dganon_sonogo_room_4TLUT_004910 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4TLUT_004910" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4TLUT_004910[] = dganon_sonogo_room_4TLUT_004910; + +#define dganon_sonogo_room_4Tex_0064E8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0064E8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_0064E8[] = dganon_sonogo_room_4Tex_0064E8; + +#define dganon_sonogo_room_4TLUT_004B18 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4TLUT_004B18" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4TLUT_004B18[] = dganon_sonogo_room_4TLUT_004B18; + +#define dganon_sonogo_room_4Tex_0053A8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0053A8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_0053A8[] = dganon_sonogo_room_4Tex_0053A8; + +#define dganon_sonogo_room_4Tex_0074E8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0074E8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_0074E8[] = dganon_sonogo_room_4Tex_0074E8; + +#define dganon_sonogo_room_4Tex_0054E8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0054E8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_0054E8[] = dganon_sonogo_room_4Tex_0054E8; + +#define dganon_sonogo_room_4Tex_0068E8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0068E8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_0068E8[] = dganon_sonogo_room_4Tex_0068E8; + +#define dganon_sonogo_room_4Tex_004BA8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_004BA8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_004BA8[] = dganon_sonogo_room_4Tex_004BA8; + +#define dganon_sonogo_room_4TLUT_004840 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4TLUT_004840" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4TLUT_004840[] = dganon_sonogo_room_4TLUT_004840; + +#define dganon_sonogo_room_4Tex_007CE8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_007CE8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_007CE8[] = dganon_sonogo_room_4Tex_007CE8; + +#define dganon_sonogo_room_4Tex_006CE8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_006CE8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_006CE8[] = dganon_sonogo_room_4Tex_006CE8; + +#define dganon_sonogo_room_4Tex_0054A8 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_room_4Tex_0054A8" +static const ALIGN_ASSET(2) char ganon_sonogo_room_4Tex_0054A8[] = dganon_sonogo_room_4Tex_0054A8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_scene.h b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_scene.h index a550133c2..9d66715ce 100644 --- a/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_scene.h +++ b/soh/assets/scenes/dungeons/ganon_sonogo/ganon_sonogo_scene.h @@ -1,51 +1,24 @@ #pragma once -#define dganon_sonogo_sceneCollisionHeader_0062CC "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneCollisionHeader_0062CC" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_sceneCollisionHeader_0062CC[] = dganon_sonogo_sceneCollisionHeader_0062CC; -#else -static const char ganon_sonogo_sceneCollisionHeader_0062CC[] __attribute__((aligned (2))) = dganon_sonogo_sceneCollisionHeader_0062CC; -#endif - -#define dganon_sonogo_sceneTex_007310 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTex_007310" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_sceneTex_007310[] = dganon_sonogo_sceneTex_007310; -#else -static const char ganon_sonogo_sceneTex_007310[] __attribute__((aligned (2))) = dganon_sonogo_sceneTex_007310; -#endif - -#define dganon_sonogo_sceneTLUT_006300 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTLUT_006300" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_sceneTLUT_006300[] = dganon_sonogo_sceneTLUT_006300; -#else -static const char ganon_sonogo_sceneTLUT_006300[] __attribute__((aligned (2))) = dganon_sonogo_sceneTLUT_006300; -#endif - -#define dganon_sonogo_sceneTex_006710 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTex_006710" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_sceneTex_006710[] = dganon_sonogo_sceneTex_006710; -#else -static const char ganon_sonogo_sceneTex_006710[] __attribute__((aligned (2))) = dganon_sonogo_sceneTex_006710; -#endif - -#define dganon_sonogo_sceneTLUT_006508 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTLUT_006508" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_sceneTLUT_006508[] = dganon_sonogo_sceneTLUT_006508; -#else -static const char ganon_sonogo_sceneTLUT_006508[] __attribute__((aligned (2))) = dganon_sonogo_sceneTLUT_006508; -#endif - -#define dganon_sonogo_sceneTex_006F10 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTex_006F10" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_sceneTex_006F10[] = dganon_sonogo_sceneTex_006F10; -#else -static const char ganon_sonogo_sceneTex_006F10[] __attribute__((aligned (2))) = dganon_sonogo_sceneTex_006F10; -#endif - -#define dganon_sonogo_sceneTex_007710 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTex_007710" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_sonogo_sceneTex_007710[] = dganon_sonogo_sceneTex_007710; -#else -static const char ganon_sonogo_sceneTex_007710[] __attribute__((aligned (2))) = dganon_sonogo_sceneTex_007710; -#endif - +#include "align_asset_macro.h" + +#define dganon_sonogo_sceneCollisionHeader_0062CC "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneCollisionHeader_0062CC" +static const ALIGN_ASSET(2) char ganon_sonogo_sceneCollisionHeader_0062CC[] = dganon_sonogo_sceneCollisionHeader_0062CC; + +#define dganon_sonogo_sceneTex_007310 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTex_007310" +static const ALIGN_ASSET(2) char ganon_sonogo_sceneTex_007310[] = dganon_sonogo_sceneTex_007310; + +#define dganon_sonogo_sceneTLUT_006300 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTLUT_006300" +static const ALIGN_ASSET(2) char ganon_sonogo_sceneTLUT_006300[] = dganon_sonogo_sceneTLUT_006300; + +#define dganon_sonogo_sceneTex_006710 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTex_006710" +static const ALIGN_ASSET(2) char ganon_sonogo_sceneTex_006710[] = dganon_sonogo_sceneTex_006710; + +#define dganon_sonogo_sceneTLUT_006508 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTLUT_006508" +static const ALIGN_ASSET(2) char ganon_sonogo_sceneTLUT_006508[] = dganon_sonogo_sceneTLUT_006508; + +#define dganon_sonogo_sceneTex_006F10 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTex_006F10" +static const ALIGN_ASSET(2) char ganon_sonogo_sceneTex_006F10[] = dganon_sonogo_sceneTex_006F10; + +#define dganon_sonogo_sceneTex_007710 "__OTR__scenes/nonmq/ganon_sonogo_scene/ganon_sonogo_sceneTex_007710" +static const ALIGN_ASSET(2) char ganon_sonogo_sceneTex_007710[] = dganon_sonogo_sceneTex_007710; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_tou/ganon_tou_room_0.h b/soh/assets/scenes/dungeons/ganon_tou/ganon_tou_room_0.h index 90a552b09..7c2d3a968 100644 --- a/soh/assets/scenes/dungeons/ganon_tou/ganon_tou_room_0.h +++ b/soh/assets/scenes/dungeons/ganon_tou/ganon_tou_room_0.h @@ -1,191 +1,84 @@ #pragma once -#define dganon_tou_room_0DL_0084A8 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0DL_0084A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0DL_0084A8[] = dganon_tou_room_0DL_0084A8; -#else -static const char ganon_tou_room_0DL_0084A8[] __attribute__((aligned (2))) = dganon_tou_room_0DL_0084A8; -#endif - -#define dganon_tou_room_0Tex_00E750 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00E750" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00E750[] = dganon_tou_room_0Tex_00E750; -#else -static const char ganon_tou_room_0Tex_00E750[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00E750; -#endif - -#define dganon_tou_room_0Tex_00D750 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00D750" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00D750[] = dganon_tou_room_0Tex_00D750; -#else -static const char ganon_tou_room_0Tex_00D750[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00D750; -#endif - -#define dganon_tou_room_0Tex_008550 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_008550" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_008550[] = dganon_tou_room_0Tex_008550; -#else -static const char ganon_tou_room_0Tex_008550[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_008550; -#endif - -#define dganon_tou_room_0Tex_00FF50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00FF50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00FF50[] = dganon_tou_room_0Tex_00FF50; -#else -static const char ganon_tou_room_0Tex_00FF50[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00FF50; -#endif - -#define dganon_tou_room_0Tex_00FB50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00FB50[] = dganon_tou_room_0Tex_00FB50; -#else -static const char ganon_tou_room_0Tex_00FB50[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00FB50; -#endif - -#define dganon_tou_room_0Tex_00BF50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00BF50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00BF50[] = dganon_tou_room_0Tex_00BF50; -#else -static const char ganon_tou_room_0Tex_00BF50[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00BF50; -#endif - -#define dganon_tou_room_0Tex_00B950 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00B950" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00B950[] = dganon_tou_room_0Tex_00B950; -#else -static const char ganon_tou_room_0Tex_00B950[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00B950; -#endif - -#define dganon_tou_room_0Tex_00B550 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00B550" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00B550[] = dganon_tou_room_0Tex_00B550; -#else -static const char ganon_tou_room_0Tex_00B550[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00B550; -#endif - -#define dganon_tou_room_0Tex_00CF50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00CF50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00CF50[] = dganon_tou_room_0Tex_00CF50; -#else -static const char ganon_tou_room_0Tex_00CF50[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00CF50; -#endif - -#define dganon_tou_room_0Tex_00BD50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00BD50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00BD50[] = dganon_tou_room_0Tex_00BD50; -#else -static const char ganon_tou_room_0Tex_00BD50[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00BD50; -#endif - -#define dganon_tou_room_0Tex_00B150 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00B150" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00B150[] = dganon_tou_room_0Tex_00B150; -#else -static const char ganon_tou_room_0Tex_00B150[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00B150; -#endif - -#define dganon_tou_room_0Tex_010550 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_010550" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_010550[] = dganon_tou_room_0Tex_010550; -#else -static const char ganon_tou_room_0Tex_010550[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_010550; -#endif - -#define dganon_tou_room_0Tex_010150 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_010150" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_010150[] = dganon_tou_room_0Tex_010150; -#else -static const char ganon_tou_room_0Tex_010150[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_010150; -#endif - -#define dganon_tou_room_0Tex_00F750 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00F750" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00F750[] = dganon_tou_room_0Tex_00F750; -#else -static const char ganon_tou_room_0Tex_00F750[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00F750; -#endif - -#define dganon_tou_room_0Tex_00A150 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00A150" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_00A150[] = dganon_tou_room_0Tex_00A150; -#else -static const char ganon_tou_room_0Tex_00A150[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_00A150; -#endif - -#define dganon_tou_room_0Tex_009150 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_009150" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_009150[] = dganon_tou_room_0Tex_009150; -#else -static const char ganon_tou_room_0Tex_009150[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_009150; -#endif - -#define dganon_tou_room_0Tex_008F50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_008F50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_008F50[] = dganon_tou_room_0Tex_008F50; -#else -static const char ganon_tou_room_0Tex_008F50[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_008F50; -#endif - -#define dganon_tou_room_0Tex_008D50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_008D50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_008D50[] = dganon_tou_room_0Tex_008D50; -#else -static const char ganon_tou_room_0Tex_008D50[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_008D50; -#endif - -#define dganon_tou_room_0DL_0124B8 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0DL_0124B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0DL_0124B8[] = dganon_tou_room_0DL_0124B8; -#else -static const char ganon_tou_room_0DL_0124B8[] __attribute__((aligned (2))) = dganon_tou_room_0DL_0124B8; -#endif - -#define dganon_tou_room_0Tex_0125F0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_0125F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_0125F0[] = dganon_tou_room_0Tex_0125F0; -#else -static const char ganon_tou_room_0Tex_0125F0[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_0125F0; -#endif - -#define dganon_tou_room_0Tex_0139F0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_0139F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_0139F0[] = dganon_tou_room_0Tex_0139F0; -#else -static const char ganon_tou_room_0Tex_0139F0[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_0139F0; -#endif - -#define dganon_tou_room_0Tex_012DF0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_012DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_012DF0[] = dganon_tou_room_0Tex_012DF0; -#else -static const char ganon_tou_room_0Tex_012DF0[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_012DF0; -#endif - -#define dganon_tou_room_0Tex_0135F0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_0135F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_0135F0[] = dganon_tou_room_0Tex_0135F0; -#else -static const char ganon_tou_room_0Tex_0135F0[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_0135F0; -#endif - -#define dganon_tou_room_0Tex_0124F0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_0124F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Tex_0124F0[] = dganon_tou_room_0Tex_0124F0; -#else -static const char ganon_tou_room_0Tex_0124F0[] __attribute__((aligned (2))) = dganon_tou_room_0Tex_0124F0; -#endif - -#define dganon_tou_room_0Set_000160DL_0084A8 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Set_000160DL_0084A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Set_000160DL_0084A8[] = dganon_tou_room_0Set_000160DL_0084A8; -#else -static const char ganon_tou_room_0Set_000160DL_0084A8[] __attribute__((aligned (2))) = dganon_tou_room_0Set_000160DL_0084A8; -#endif - -#define dganon_tou_room_0Set_000160DL_0124B8 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Set_000160DL_0124B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_room_0Set_000160DL_0124B8[] = dganon_tou_room_0Set_000160DL_0124B8; -#else -static const char ganon_tou_room_0Set_000160DL_0124B8[] __attribute__((aligned (2))) = dganon_tou_room_0Set_000160DL_0124B8; -#endif - +#include "align_asset_macro.h" + +#define dganon_tou_room_0DL_0084A8 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0DL_0084A8" +static const ALIGN_ASSET(2) char ganon_tou_room_0DL_0084A8[] = dganon_tou_room_0DL_0084A8; + +#define dganon_tou_room_0Tex_00E750 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00E750" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00E750[] = dganon_tou_room_0Tex_00E750; + +#define dganon_tou_room_0Tex_00D750 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00D750" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00D750[] = dganon_tou_room_0Tex_00D750; + +#define dganon_tou_room_0Tex_008550 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_008550" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_008550[] = dganon_tou_room_0Tex_008550; + +#define dganon_tou_room_0Tex_00FF50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00FF50" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00FF50[] = dganon_tou_room_0Tex_00FF50; + +#define dganon_tou_room_0Tex_00FB50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00FB50" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00FB50[] = dganon_tou_room_0Tex_00FB50; + +#define dganon_tou_room_0Tex_00BF50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00BF50" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00BF50[] = dganon_tou_room_0Tex_00BF50; + +#define dganon_tou_room_0Tex_00B950 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00B950" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00B950[] = dganon_tou_room_0Tex_00B950; + +#define dganon_tou_room_0Tex_00B550 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00B550" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00B550[] = dganon_tou_room_0Tex_00B550; + +#define dganon_tou_room_0Tex_00CF50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00CF50" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00CF50[] = dganon_tou_room_0Tex_00CF50; + +#define dganon_tou_room_0Tex_00BD50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00BD50" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00BD50[] = dganon_tou_room_0Tex_00BD50; + +#define dganon_tou_room_0Tex_00B150 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00B150" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00B150[] = dganon_tou_room_0Tex_00B150; + +#define dganon_tou_room_0Tex_010550 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_010550" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_010550[] = dganon_tou_room_0Tex_010550; + +#define dganon_tou_room_0Tex_010150 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_010150" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_010150[] = dganon_tou_room_0Tex_010150; + +#define dganon_tou_room_0Tex_00F750 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00F750" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00F750[] = dganon_tou_room_0Tex_00F750; + +#define dganon_tou_room_0Tex_00A150 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_00A150" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_00A150[] = dganon_tou_room_0Tex_00A150; + +#define dganon_tou_room_0Tex_009150 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_009150" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_009150[] = dganon_tou_room_0Tex_009150; + +#define dganon_tou_room_0Tex_008F50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_008F50" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_008F50[] = dganon_tou_room_0Tex_008F50; + +#define dganon_tou_room_0Tex_008D50 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_008D50" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_008D50[] = dganon_tou_room_0Tex_008D50; + +#define dganon_tou_room_0DL_0124B8 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0DL_0124B8" +static const ALIGN_ASSET(2) char ganon_tou_room_0DL_0124B8[] = dganon_tou_room_0DL_0124B8; + +#define dganon_tou_room_0Tex_0125F0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_0125F0" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_0125F0[] = dganon_tou_room_0Tex_0125F0; + +#define dganon_tou_room_0Tex_0139F0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_0139F0" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_0139F0[] = dganon_tou_room_0Tex_0139F0; + +#define dganon_tou_room_0Tex_012DF0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_012DF0" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_012DF0[] = dganon_tou_room_0Tex_012DF0; + +#define dganon_tou_room_0Tex_0135F0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_0135F0" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_0135F0[] = dganon_tou_room_0Tex_0135F0; + +#define dganon_tou_room_0Tex_0124F0 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Tex_0124F0" +static const ALIGN_ASSET(2) char ganon_tou_room_0Tex_0124F0[] = dganon_tou_room_0Tex_0124F0; + +#define dganon_tou_room_0Set_000160DL_0084A8 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Set_000160DL_0084A8" +static const ALIGN_ASSET(2) char ganon_tou_room_0Set_000160DL_0084A8[] = dganon_tou_room_0Set_000160DL_0084A8; + +#define dganon_tou_room_0Set_000160DL_0124B8 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_room_0Set_000160DL_0124B8" +static const ALIGN_ASSET(2) char ganon_tou_room_0Set_000160DL_0124B8[] = dganon_tou_room_0Set_000160DL_0124B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganon_tou/ganon_tou_scene.h b/soh/assets/scenes/dungeons/ganon_tou/ganon_tou_scene.h index 6589af817..660402253 100644 --- a/soh/assets/scenes/dungeons/ganon_tou/ganon_tou_scene.h +++ b/soh/assets/scenes/dungeons/ganon_tou/ganon_tou_scene.h @@ -1,31 +1,17 @@ #pragma once -#define dgRainbowBridgeCs "__OTR__scenes/nonmq/ganon_tou_scene/gRainbowBridgeCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gRainbowBridgeCs[] = dgRainbowBridgeCs; -#else -static const char gRainbowBridgeCs[] __attribute__((aligned (2))) = dgRainbowBridgeCs; -#endif - -#define dgGanonsCastleIntroCs "__OTR__scenes/nonmq/ganon_tou_scene/gGanonsCastleIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleIntroCs[] = dgGanonsCastleIntroCs; -#else -static const char gGanonsCastleIntroCs[] __attribute__((aligned (2))) = dgGanonsCastleIntroCs; -#endif - -#define dganon_tou_sceneCollisionHeader_002610 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_sceneCollisionHeader_002610" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_sceneCollisionHeader_002610[] = dganon_tou_sceneCollisionHeader_002610; -#else -static const char ganon_tou_sceneCollisionHeader_002610[] __attribute__((aligned (2))) = dganon_tou_sceneCollisionHeader_002610; -#endif - -#define dganon_tou_sceneTex_003280 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_sceneTex_003280" -#ifdef _WIN32 -static const __declspec(align(2)) char ganon_tou_sceneTex_003280[] = dganon_tou_sceneTex_003280; -#else -static const char ganon_tou_sceneTex_003280[] __attribute__((aligned (2))) = dganon_tou_sceneTex_003280; -#endif - -#define dganon_tou_sceneCollisionHeader_002610 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_sceneCollisionHeader_002610" +#include "align_asset_macro.h" + +#define dgRainbowBridgeCs "__OTR__scenes/nonmq/ganon_tou_scene/gRainbowBridgeCs" +static const ALIGN_ASSET(2) char gRainbowBridgeCs[] = dgRainbowBridgeCs; + +#define dgGanonsCastleIntroCs "__OTR__scenes/nonmq/ganon_tou_scene/gGanonsCastleIntroCs" +static const ALIGN_ASSET(2) char gGanonsCastleIntroCs[] = dgGanonsCastleIntroCs; + +#define dganon_tou_sceneCollisionHeader_002610 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_sceneCollisionHeader_002610" +static const ALIGN_ASSET(2) char ganon_tou_sceneCollisionHeader_002610[] = dganon_tou_sceneCollisionHeader_002610; + +#define dganon_tou_sceneTex_003280 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_sceneTex_003280" +static const ALIGN_ASSET(2) char ganon_tou_sceneTex_003280[] = dganon_tou_sceneTex_003280; + +#define dganon_tou_sceneCollisionHeader_002610 "__OTR__scenes/nonmq/ganon_tou_scene/ganon_tou_sceneCollisionHeader_002610" \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_0.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_0.h index 99c0f52c7..694eaf46c 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_0.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_0.h @@ -1,135 +1,60 @@ #pragma once -#define dganontika_room_0DL_000550 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_000550" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_000550[] = dganontika_room_0DL_000550; -#else -static const char ganontika_room_0DL_000550[] __attribute__((aligned (2))) = dganontika_room_0DL_000550; -#endif - -#define dganontika_room_0Tex_007F48 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0Tex_007F48" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0Tex_007F48[] = dganontika_room_0Tex_007F48; -#else -static const char ganontika_room_0Tex_007F48[] __attribute__((aligned (2))) = dganontika_room_0Tex_007F48; -#endif - -#define dganontika_room_0DL_000B30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_000B30" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_000B30[] = dganontika_room_0DL_000B30; -#else -static const char ganontika_room_0DL_000B30[] __attribute__((aligned (2))) = dganontika_room_0DL_000B30; -#endif - -#define dganontika_room_0DL_001088 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_001088" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_001088[] = dganontika_room_0DL_001088; -#else -static const char ganontika_room_0DL_001088[] __attribute__((aligned (2))) = dganontika_room_0DL_001088; -#endif - -#define dganontika_room_0DL_008910 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_008910" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_008910[] = dganontika_room_0DL_008910; -#else -static const char ganontika_room_0DL_008910[] __attribute__((aligned (2))) = dganontika_room_0DL_008910; -#endif - -#define dganontika_room_0Tex_008A10 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0Tex_008A10" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0Tex_008A10[] = dganontika_room_0Tex_008A10; -#else -static const char ganontika_room_0Tex_008A10[] __attribute__((aligned (2))) = dganontika_room_0Tex_008A10; -#endif - -#define dganontika_room_0DL_001670 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_001670" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_001670[] = dganontika_room_0DL_001670; -#else -static const char ganontika_room_0DL_001670[] __attribute__((aligned (2))) = dganontika_room_0DL_001670; -#endif - -#define dganontika_room_0DL_0022A8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_0022A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_0022A8[] = dganontika_room_0DL_0022A8; -#else -static const char ganontika_room_0DL_0022A8[] __attribute__((aligned (2))) = dganontika_room_0DL_0022A8; -#endif - -#define dganontika_room_0DL_002F98 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_002F98" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_002F98[] = dganontika_room_0DL_002F98; -#else -static const char ganontika_room_0DL_002F98[] __attribute__((aligned (2))) = dganontika_room_0DL_002F98; -#endif - -#define dganontika_room_0DL_003658 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_003658" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_003658[] = dganontika_room_0DL_003658; -#else -static const char ganontika_room_0DL_003658[] __attribute__((aligned (2))) = dganontika_room_0DL_003658; -#endif - -#define dganontika_room_0DL_003C20 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_003C20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_003C20[] = dganontika_room_0DL_003C20; -#else -static const char ganontika_room_0DL_003C20[] __attribute__((aligned (2))) = dganontika_room_0DL_003C20; -#endif - -#define dganontika_room_0DL_004860 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_004860[] = dganontika_room_0DL_004860; -#else -static const char ganontika_room_0DL_004860[] __attribute__((aligned (2))) = dganontika_room_0DL_004860; -#endif - -#define dganontika_room_0DL_0052B0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_0052B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_0052B0[] = dganontika_room_0DL_0052B0; -#else -static const char ganontika_room_0DL_0052B0[] __attribute__((aligned (2))) = dganontika_room_0DL_0052B0; -#endif - -#define dganontika_room_0DL_005EC8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_005EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_005EC8[] = dganontika_room_0DL_005EC8; -#else -static const char ganontika_room_0DL_005EC8[] __attribute__((aligned (2))) = dganontika_room_0DL_005EC8; -#endif - -#define dganontika_room_0DL_006608 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_006608" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_006608[] = dganontika_room_0DL_006608; -#else -static const char ganontika_room_0DL_006608[] __attribute__((aligned (2))) = dganontika_room_0DL_006608; -#endif - -#define dganontika_room_0DL_006D48 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_006D48" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_006D48[] = dganontika_room_0DL_006D48; -#else -static const char ganontika_room_0DL_006D48[] __attribute__((aligned (2))) = dganontika_room_0DL_006D48; -#endif - -#define dganontika_room_0DL_007488 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_007488" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_007488[] = dganontika_room_0DL_007488; -#else -static const char ganontika_room_0DL_007488[] __attribute__((aligned (2))) = dganontika_room_0DL_007488; -#endif - -#define dganontika_room_0DL_0079E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_0079E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_0079E8[] = dganontika_room_0DL_0079E8; -#else -static const char ganontika_room_0DL_0079E8[] __attribute__((aligned (2))) = dganontika_room_0DL_0079E8; -#endif - -#define dganontika_room_0DL_007DA0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_007DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_0DL_007DA0[] = dganontika_room_0DL_007DA0; -#else -static const char ganontika_room_0DL_007DA0[] __attribute__((aligned (2))) = dganontika_room_0DL_007DA0; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_0DL_000550 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_000550" +static const ALIGN_ASSET(2) char ganontika_room_0DL_000550[] = dganontika_room_0DL_000550; + +#define dganontika_room_0Tex_007F48 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0Tex_007F48" +static const ALIGN_ASSET(2) char ganontika_room_0Tex_007F48[] = dganontika_room_0Tex_007F48; + +#define dganontika_room_0DL_000B30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_000B30" +static const ALIGN_ASSET(2) char ganontika_room_0DL_000B30[] = dganontika_room_0DL_000B30; + +#define dganontika_room_0DL_001088 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_001088" +static const ALIGN_ASSET(2) char ganontika_room_0DL_001088[] = dganontika_room_0DL_001088; + +#define dganontika_room_0DL_008910 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_008910" +static const ALIGN_ASSET(2) char ganontika_room_0DL_008910[] = dganontika_room_0DL_008910; + +#define dganontika_room_0Tex_008A10 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0Tex_008A10" +static const ALIGN_ASSET(2) char ganontika_room_0Tex_008A10[] = dganontika_room_0Tex_008A10; + +#define dganontika_room_0DL_001670 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_001670" +static const ALIGN_ASSET(2) char ganontika_room_0DL_001670[] = dganontika_room_0DL_001670; + +#define dganontika_room_0DL_0022A8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_0022A8" +static const ALIGN_ASSET(2) char ganontika_room_0DL_0022A8[] = dganontika_room_0DL_0022A8; + +#define dganontika_room_0DL_002F98 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_002F98" +static const ALIGN_ASSET(2) char ganontika_room_0DL_002F98[] = dganontika_room_0DL_002F98; + +#define dganontika_room_0DL_003658 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_003658" +static const ALIGN_ASSET(2) char ganontika_room_0DL_003658[] = dganontika_room_0DL_003658; + +#define dganontika_room_0DL_003C20 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_003C20" +static const ALIGN_ASSET(2) char ganontika_room_0DL_003C20[] = dganontika_room_0DL_003C20; + +#define dganontika_room_0DL_004860 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_004860" +static const ALIGN_ASSET(2) char ganontika_room_0DL_004860[] = dganontika_room_0DL_004860; + +#define dganontika_room_0DL_0052B0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_0052B0" +static const ALIGN_ASSET(2) char ganontika_room_0DL_0052B0[] = dganontika_room_0DL_0052B0; + +#define dganontika_room_0DL_005EC8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_005EC8" +static const ALIGN_ASSET(2) char ganontika_room_0DL_005EC8[] = dganontika_room_0DL_005EC8; + +#define dganontika_room_0DL_006608 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_006608" +static const ALIGN_ASSET(2) char ganontika_room_0DL_006608[] = dganontika_room_0DL_006608; + +#define dganontika_room_0DL_006D48 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_006D48" +static const ALIGN_ASSET(2) char ganontika_room_0DL_006D48[] = dganontika_room_0DL_006D48; + +#define dganontika_room_0DL_007488 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_007488" +static const ALIGN_ASSET(2) char ganontika_room_0DL_007488[] = dganontika_room_0DL_007488; + +#define dganontika_room_0DL_0079E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_0079E8" +static const ALIGN_ASSET(2) char ganontika_room_0DL_0079E8[] = dganontika_room_0DL_0079E8; + +#define dganontika_room_0DL_007DA0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_0DL_007DA0" +static const ALIGN_ASSET(2) char ganontika_room_0DL_007DA0[] = dganontika_room_0DL_007DA0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_1.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_1.h index 9e98bd193..8aa879f59 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_1.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_1.h @@ -1,450 +1,195 @@ #pragma once -#define dganontika_room_1DL_0007C0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0007C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_0007C0[] = dganontika_room_1DL_0007C0; -#else -static const char ganontika_room_1DL_0007C0[] __attribute__((aligned (2))) = dganontika_room_1DL_0007C0; -#endif - -#define dganontika_room_1Tex_0129E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0129E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0129E0[] = dganontika_room_1Tex_0129E0; -#else -static const char ganontika_room_1Tex_0129E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0129E0; -#endif - -#define dganontika_room_1Tex_0139E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0139E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0139E0[] = dganontika_room_1Tex_0139E0; -#else -static const char ganontika_room_1Tex_0139E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0139E0; -#endif - -#define dganontika_room_1DL_000F60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_000F60" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_000F60[] = dganontika_room_1DL_000F60; -#else -static const char ganontika_room_1DL_000F60[] __attribute__((aligned (2))) = dganontika_room_1DL_000F60; -#endif - -#define dganontika_room_1Tex_019DE0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_019DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_019DE0[] = dganontika_room_1Tex_019DE0; -#else -static const char ganontika_room_1Tex_019DE0[] __attribute__((aligned (2))) = dganontika_room_1Tex_019DE0; -#endif - -#define dganontika_room_1Tex_0199E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0199E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0199E0[] = dganontika_room_1Tex_0199E0; -#else -static const char ganontika_room_1Tex_0199E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0199E0; -#endif - -#define dganontika_room_1DL_001A08 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_001A08" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_001A08[] = dganontika_room_1DL_001A08; -#else -static const char ganontika_room_1DL_001A08[] __attribute__((aligned (2))) = dganontika_room_1DL_001A08; -#endif - -#define dganontika_room_1Tex_0189E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0189E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0189E0[] = dganontika_room_1Tex_0189E0; -#else -static const char ganontika_room_1Tex_0189E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0189E0; -#endif - -#define dganontika_room_1Tex_0141E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0141E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0141E0[] = dganontika_room_1Tex_0141E0; -#else -static const char ganontika_room_1Tex_0141E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0141E0; -#endif - -#define dganontika_room_1DL_002290 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_002290" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_002290[] = dganontika_room_1DL_002290; -#else -static const char ganontika_room_1DL_002290[] __attribute__((aligned (2))) = dganontika_room_1DL_002290; -#endif - -#define dganontika_room_1DL_0029D0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0029D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_0029D0[] = dganontika_room_1DL_0029D0; -#else -static const char ganontika_room_1DL_0029D0[] __attribute__((aligned (2))) = dganontika_room_1DL_0029D0; -#endif - -#define dganontika_room_1DL_0030B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0030B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_0030B8[] = dganontika_room_1DL_0030B8; -#else -static const char ganontika_room_1DL_0030B8[] __attribute__((aligned (2))) = dganontika_room_1DL_0030B8; -#endif - -#define dganontika_room_1DL_003538 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_003538" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_003538[] = dganontika_room_1DL_003538; -#else -static const char ganontika_room_1DL_003538[] __attribute__((aligned (2))) = dganontika_room_1DL_003538; -#endif - -#define dganontika_room_1DL_003978 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_003978" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_003978[] = dganontika_room_1DL_003978; -#else -static const char ganontika_room_1DL_003978[] __attribute__((aligned (2))) = dganontika_room_1DL_003978; -#endif - -#define dganontika_room_1DL_003DB0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_003DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_003DB0[] = dganontika_room_1DL_003DB0; -#else -static const char ganontika_room_1DL_003DB0[] __attribute__((aligned (2))) = dganontika_room_1DL_003DB0; -#endif - -#define dganontika_room_1DL_0040D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0040D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_0040D8[] = dganontika_room_1DL_0040D8; -#else -static const char ganontika_room_1DL_0040D8[] __attribute__((aligned (2))) = dganontika_room_1DL_0040D8; -#endif - -#define dganontika_room_1DL_004450 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_004450" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_004450[] = dganontika_room_1DL_004450; -#else -static const char ganontika_room_1DL_004450[] __attribute__((aligned (2))) = dganontika_room_1DL_004450; -#endif - -#define dganontika_room_1Tex_0149E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0149E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0149E0[] = dganontika_room_1Tex_0149E0; -#else -static const char ganontika_room_1Tex_0149E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0149E0; -#endif - -#define dganontika_room_1DL_004838 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_004838" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_004838[] = dganontika_room_1DL_004838; -#else -static const char ganontika_room_1DL_004838[] __attribute__((aligned (2))) = dganontika_room_1DL_004838; -#endif - -#define dganontika_room_1Tex_0121E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0121E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0121E0[] = dganontika_room_1Tex_0121E0; -#else -static const char ganontika_room_1Tex_0121E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0121E0; -#endif - -#define dganontika_room_1DL_004B88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_004B88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_004B88[] = dganontika_room_1DL_004B88; -#else -static const char ganontika_room_1DL_004B88[] __attribute__((aligned (2))) = dganontika_room_1DL_004B88; -#endif - -#define dganontika_room_1DL_005138 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_005138" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_005138[] = dganontika_room_1DL_005138; -#else -static const char ganontika_room_1DL_005138[] __attribute__((aligned (2))) = dganontika_room_1DL_005138; -#endif - -#define dganontika_room_1DL_005748 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_005748" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_005748[] = dganontika_room_1DL_005748; -#else -static const char ganontika_room_1DL_005748[] __attribute__((aligned (2))) = dganontika_room_1DL_005748; -#endif - -#define dganontika_room_1DL_005A98 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_005A98" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_005A98[] = dganontika_room_1DL_005A98; -#else -static const char ganontika_room_1DL_005A98[] __attribute__((aligned (2))) = dganontika_room_1DL_005A98; -#endif - -#define dganontika_room_1DL_006498 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_006498" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_006498[] = dganontika_room_1DL_006498; -#else -static const char ganontika_room_1DL_006498[] __attribute__((aligned (2))) = dganontika_room_1DL_006498; -#endif - -#define dganontika_room_1Tex_0151E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0151E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0151E0[] = dganontika_room_1Tex_0151E0; -#else -static const char ganontika_room_1Tex_0151E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0151E0; -#endif - -#define dganontika_room_1Tex_0109E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0109E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0109E0[] = dganontika_room_1Tex_0109E0; -#else -static const char ganontika_room_1Tex_0109E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0109E0; -#endif - -#define dganontika_room_1DL_007120 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_007120" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_007120[] = dganontika_room_1DL_007120; -#else -static const char ganontika_room_1DL_007120[] __attribute__((aligned (2))) = dganontika_room_1DL_007120; -#endif - -#define dganontika_room_1DL_0079A8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0079A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_0079A8[] = dganontika_room_1DL_0079A8; -#else -static const char ganontika_room_1DL_0079A8[] __attribute__((aligned (2))) = dganontika_room_1DL_0079A8; -#endif - -#define dganontika_room_1DL_008220 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008220" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_008220[] = dganontika_room_1DL_008220; -#else -static const char ganontika_room_1DL_008220[] __attribute__((aligned (2))) = dganontika_room_1DL_008220; -#endif - -#define dganontika_room_1Tex_0119E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0119E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0119E0[] = dganontika_room_1Tex_0119E0; -#else -static const char ganontika_room_1Tex_0119E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0119E0; -#endif - -#define dganontika_room_1DL_008578 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008578" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_008578[] = dganontika_room_1DL_008578; -#else -static const char ganontika_room_1DL_008578[] __attribute__((aligned (2))) = dganontika_room_1DL_008578; -#endif - -#define dganontika_room_1Tex_0181E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0181E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0181E0[] = dganontika_room_1Tex_0181E0; -#else -static const char ganontika_room_1Tex_0181E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0181E0; -#endif - -#define dganontika_room_1TLUT_00D9C0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1TLUT_00D9C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1TLUT_00D9C0[] = dganontika_room_1TLUT_00D9C0; -#else -static const char ganontika_room_1TLUT_00D9C0[] __attribute__((aligned (2))) = dganontika_room_1TLUT_00D9C0; -#endif - -#define dganontika_room_1DL_01A810 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01A810" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_01A810[] = dganontika_room_1DL_01A810; -#else -static const char ganontika_room_1DL_01A810[] __attribute__((aligned (2))) = dganontika_room_1DL_01A810; -#endif - -#define dganontika_room_1Tex_01B9C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_01B9C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_01B9C8[] = dganontika_room_1Tex_01B9C8; -#else -static const char ganontika_room_1Tex_01B9C8[] __attribute__((aligned (2))) = dganontika_room_1Tex_01B9C8; -#endif - -#define dganontika_room_1DL_008738 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008738" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_008738[] = dganontika_room_1DL_008738; -#else -static const char ganontika_room_1DL_008738[] __attribute__((aligned (2))) = dganontika_room_1DL_008738; -#endif - -#define dganontika_room_1Tex_0179E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0179E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0179E0[] = dganontika_room_1Tex_0179E0; -#else -static const char ganontika_room_1Tex_0179E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0179E0; -#endif - -#define dganontika_room_1DL_01AB58 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01AB58" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_01AB58[] = dganontika_room_1DL_01AB58; -#else -static const char ganontika_room_1DL_01AB58[] __attribute__((aligned (2))) = dganontika_room_1DL_01AB58; -#endif - -#define dganontika_room_1DL_0088F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0088F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_0088F8[] = dganontika_room_1DL_0088F8; -#else -static const char ganontika_room_1DL_0088F8[] __attribute__((aligned (2))) = dganontika_room_1DL_0088F8; -#endif - -#define dganontika_room_1Tex_0171E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0171E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0171E0[] = dganontika_room_1Tex_0171E0; -#else -static const char ganontika_room_1Tex_0171E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0171E0; -#endif - -#define dganontika_room_1DL_01AEA0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01AEA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_01AEA0[] = dganontika_room_1DL_01AEA0; -#else -static const char ganontika_room_1DL_01AEA0[] __attribute__((aligned (2))) = dganontika_room_1DL_01AEA0; -#endif - -#define dganontika_room_1DL_008AB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_008AB8[] = dganontika_room_1DL_008AB8; -#else -static const char ganontika_room_1DL_008AB8[] __attribute__((aligned (2))) = dganontika_room_1DL_008AB8; -#endif - -#define dganontika_room_1Tex_0169E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0169E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0169E0[] = dganontika_room_1Tex_0169E0; -#else -static const char ganontika_room_1Tex_0169E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0169E0; -#endif - -#define dganontika_room_1DL_01B1E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01B1E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_01B1E8[] = dganontika_room_1DL_01B1E8; -#else -static const char ganontika_room_1DL_01B1E8[] __attribute__((aligned (2))) = dganontika_room_1DL_01B1E8; -#endif - -#define dganontika_room_1DL_008C78 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008C78" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_008C78[] = dganontika_room_1DL_008C78; -#else -static const char ganontika_room_1DL_008C78[] __attribute__((aligned (2))) = dganontika_room_1DL_008C78; -#endif - -#define dganontika_room_1Tex_0161E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0161E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0161E0[] = dganontika_room_1Tex_0161E0; -#else -static const char ganontika_room_1Tex_0161E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0161E0; -#endif - -#define dganontika_room_1DL_01B530 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01B530" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_01B530[] = dganontika_room_1DL_01B530; -#else -static const char ganontika_room_1DL_01B530[] __attribute__((aligned (2))) = dganontika_room_1DL_01B530; -#endif - -#define dganontika_room_1DL_008E38 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008E38" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_008E38[] = dganontika_room_1DL_008E38; -#else -static const char ganontika_room_1DL_008E38[] __attribute__((aligned (2))) = dganontika_room_1DL_008E38; -#endif - -#define dganontika_room_1Tex_0159E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0159E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0159E0[] = dganontika_room_1Tex_0159E0; -#else -static const char ganontika_room_1Tex_0159E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0159E0; -#endif - -#define dganontika_room_1DL_01B878 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01B878" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_01B878[] = dganontika_room_1DL_01B878; -#else -static const char ganontika_room_1DL_01B878[] __attribute__((aligned (2))) = dganontika_room_1DL_01B878; -#endif - -#define dganontika_room_1DL_009168 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_009168" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_009168[] = dganontika_room_1DL_009168; -#else -static const char ganontika_room_1DL_009168[] __attribute__((aligned (2))) = dganontika_room_1DL_009168; -#endif - -#define dganontika_room_1DL_009668 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_009668" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_009668[] = dganontika_room_1DL_009668; -#else -static const char ganontika_room_1DL_009668[] __attribute__((aligned (2))) = dganontika_room_1DL_009668; -#endif - -#define dganontika_room_1DL_009B68 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_009B68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_009B68[] = dganontika_room_1DL_009B68; -#else -static const char ganontika_room_1DL_009B68[] __attribute__((aligned (2))) = dganontika_room_1DL_009B68; -#endif - -#define dganontika_room_1DL_00A548 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00A548" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_00A548[] = dganontika_room_1DL_00A548; -#else -static const char ganontika_room_1DL_00A548[] __attribute__((aligned (2))) = dganontika_room_1DL_00A548; -#endif - -#define dganontika_room_1DL_00B730 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00B730" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_00B730[] = dganontika_room_1DL_00B730; -#else -static const char ganontika_room_1DL_00B730[] __attribute__((aligned (2))) = dganontika_room_1DL_00B730; -#endif - -#define dganontika_room_1Tex_00D9E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_00D9E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_00D9E0[] = dganontika_room_1Tex_00D9E0; -#else -static const char ganontika_room_1Tex_00D9E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_00D9E0; -#endif - -#define dganontika_room_1Tex_00E9E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_00E9E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_00E9E0[] = dganontika_room_1Tex_00E9E0; -#else -static const char ganontika_room_1Tex_00E9E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_00E9E0; -#endif - -#define dganontika_room_1Tex_00F9E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_00F9E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_00F9E0[] = dganontika_room_1Tex_00F9E0; -#else -static const char ganontika_room_1Tex_00F9E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_00F9E0; -#endif - -#define dganontika_room_1DL_00C9E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00C9E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_00C9E8[] = dganontika_room_1DL_00C9E8; -#else -static const char ganontika_room_1DL_00C9E8[] __attribute__((aligned (2))) = dganontika_room_1DL_00C9E8; -#endif - -#define dganontika_room_1Tex_0131E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0131E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1Tex_0131E0[] = dganontika_room_1Tex_0131E0; -#else -static const char ganontika_room_1Tex_0131E0[] __attribute__((aligned (2))) = dganontika_room_1Tex_0131E0; -#endif - -#define dganontika_room_1DL_00CE08 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00CE08" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_00CE08[] = dganontika_room_1DL_00CE08; -#else -static const char ganontika_room_1DL_00CE08[] __attribute__((aligned (2))) = dganontika_room_1DL_00CE08; -#endif - -#define dganontika_room_1DL_00D138 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00D138" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_00D138[] = dganontika_room_1DL_00D138; -#else -static const char ganontika_room_1DL_00D138[] __attribute__((aligned (2))) = dganontika_room_1DL_00D138; -#endif - -#define dganontika_room_1DL_00D560 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00D560" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_1DL_00D560[] = dganontika_room_1DL_00D560; -#else -static const char ganontika_room_1DL_00D560[] __attribute__((aligned (2))) = dganontika_room_1DL_00D560; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_1DL_0007C0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0007C0" +static const ALIGN_ASSET(2) char ganontika_room_1DL_0007C0[] = dganontika_room_1DL_0007C0; + +#define dganontika_room_1Tex_0129E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0129E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0129E0[] = dganontika_room_1Tex_0129E0; + +#define dganontika_room_1Tex_0139E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0139E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0139E0[] = dganontika_room_1Tex_0139E0; + +#define dganontika_room_1DL_000F60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_000F60" +static const ALIGN_ASSET(2) char ganontika_room_1DL_000F60[] = dganontika_room_1DL_000F60; + +#define dganontika_room_1Tex_019DE0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_019DE0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_019DE0[] = dganontika_room_1Tex_019DE0; + +#define dganontika_room_1Tex_0199E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0199E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0199E0[] = dganontika_room_1Tex_0199E0; + +#define dganontika_room_1DL_001A08 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_001A08" +static const ALIGN_ASSET(2) char ganontika_room_1DL_001A08[] = dganontika_room_1DL_001A08; + +#define dganontika_room_1Tex_0189E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0189E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0189E0[] = dganontika_room_1Tex_0189E0; + +#define dganontika_room_1Tex_0141E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0141E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0141E0[] = dganontika_room_1Tex_0141E0; + +#define dganontika_room_1DL_002290 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_002290" +static const ALIGN_ASSET(2) char ganontika_room_1DL_002290[] = dganontika_room_1DL_002290; + +#define dganontika_room_1DL_0029D0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0029D0" +static const ALIGN_ASSET(2) char ganontika_room_1DL_0029D0[] = dganontika_room_1DL_0029D0; + +#define dganontika_room_1DL_0030B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0030B8" +static const ALIGN_ASSET(2) char ganontika_room_1DL_0030B8[] = dganontika_room_1DL_0030B8; + +#define dganontika_room_1DL_003538 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_003538" +static const ALIGN_ASSET(2) char ganontika_room_1DL_003538[] = dganontika_room_1DL_003538; + +#define dganontika_room_1DL_003978 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_003978" +static const ALIGN_ASSET(2) char ganontika_room_1DL_003978[] = dganontika_room_1DL_003978; + +#define dganontika_room_1DL_003DB0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_003DB0" +static const ALIGN_ASSET(2) char ganontika_room_1DL_003DB0[] = dganontika_room_1DL_003DB0; + +#define dganontika_room_1DL_0040D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0040D8" +static const ALIGN_ASSET(2) char ganontika_room_1DL_0040D8[] = dganontika_room_1DL_0040D8; + +#define dganontika_room_1DL_004450 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_004450" +static const ALIGN_ASSET(2) char ganontika_room_1DL_004450[] = dganontika_room_1DL_004450; + +#define dganontika_room_1Tex_0149E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0149E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0149E0[] = dganontika_room_1Tex_0149E0; + +#define dganontika_room_1DL_004838 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_004838" +static const ALIGN_ASSET(2) char ganontika_room_1DL_004838[] = dganontika_room_1DL_004838; + +#define dganontika_room_1Tex_0121E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0121E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0121E0[] = dganontika_room_1Tex_0121E0; + +#define dganontika_room_1DL_004B88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_004B88" +static const ALIGN_ASSET(2) char ganontika_room_1DL_004B88[] = dganontika_room_1DL_004B88; + +#define dganontika_room_1DL_005138 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_005138" +static const ALIGN_ASSET(2) char ganontika_room_1DL_005138[] = dganontika_room_1DL_005138; + +#define dganontika_room_1DL_005748 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_005748" +static const ALIGN_ASSET(2) char ganontika_room_1DL_005748[] = dganontika_room_1DL_005748; + +#define dganontika_room_1DL_005A98 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_005A98" +static const ALIGN_ASSET(2) char ganontika_room_1DL_005A98[] = dganontika_room_1DL_005A98; + +#define dganontika_room_1DL_006498 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_006498" +static const ALIGN_ASSET(2) char ganontika_room_1DL_006498[] = dganontika_room_1DL_006498; + +#define dganontika_room_1Tex_0151E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0151E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0151E0[] = dganontika_room_1Tex_0151E0; + +#define dganontika_room_1Tex_0109E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0109E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0109E0[] = dganontika_room_1Tex_0109E0; + +#define dganontika_room_1DL_007120 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_007120" +static const ALIGN_ASSET(2) char ganontika_room_1DL_007120[] = dganontika_room_1DL_007120; + +#define dganontika_room_1DL_0079A8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0079A8" +static const ALIGN_ASSET(2) char ganontika_room_1DL_0079A8[] = dganontika_room_1DL_0079A8; + +#define dganontika_room_1DL_008220 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008220" +static const ALIGN_ASSET(2) char ganontika_room_1DL_008220[] = dganontika_room_1DL_008220; + +#define dganontika_room_1Tex_0119E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0119E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0119E0[] = dganontika_room_1Tex_0119E0; + +#define dganontika_room_1DL_008578 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008578" +static const ALIGN_ASSET(2) char ganontika_room_1DL_008578[] = dganontika_room_1DL_008578; + +#define dganontika_room_1Tex_0181E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0181E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0181E0[] = dganontika_room_1Tex_0181E0; + +#define dganontika_room_1TLUT_00D9C0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1TLUT_00D9C0" +static const ALIGN_ASSET(2) char ganontika_room_1TLUT_00D9C0[] = dganontika_room_1TLUT_00D9C0; + +#define dganontika_room_1DL_01A810 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01A810" +static const ALIGN_ASSET(2) char ganontika_room_1DL_01A810[] = dganontika_room_1DL_01A810; + +#define dganontika_room_1Tex_01B9C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_01B9C8" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_01B9C8[] = dganontika_room_1Tex_01B9C8; + +#define dganontika_room_1DL_008738 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008738" +static const ALIGN_ASSET(2) char ganontika_room_1DL_008738[] = dganontika_room_1DL_008738; + +#define dganontika_room_1Tex_0179E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0179E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0179E0[] = dganontika_room_1Tex_0179E0; + +#define dganontika_room_1DL_01AB58 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01AB58" +static const ALIGN_ASSET(2) char ganontika_room_1DL_01AB58[] = dganontika_room_1DL_01AB58; + +#define dganontika_room_1DL_0088F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_0088F8" +static const ALIGN_ASSET(2) char ganontika_room_1DL_0088F8[] = dganontika_room_1DL_0088F8; + +#define dganontika_room_1Tex_0171E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0171E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0171E0[] = dganontika_room_1Tex_0171E0; + +#define dganontika_room_1DL_01AEA0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01AEA0" +static const ALIGN_ASSET(2) char ganontika_room_1DL_01AEA0[] = dganontika_room_1DL_01AEA0; + +#define dganontika_room_1DL_008AB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008AB8" +static const ALIGN_ASSET(2) char ganontika_room_1DL_008AB8[] = dganontika_room_1DL_008AB8; + +#define dganontika_room_1Tex_0169E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0169E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0169E0[] = dganontika_room_1Tex_0169E0; + +#define dganontika_room_1DL_01B1E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01B1E8" +static const ALIGN_ASSET(2) char ganontika_room_1DL_01B1E8[] = dganontika_room_1DL_01B1E8; + +#define dganontika_room_1DL_008C78 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008C78" +static const ALIGN_ASSET(2) char ganontika_room_1DL_008C78[] = dganontika_room_1DL_008C78; + +#define dganontika_room_1Tex_0161E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0161E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0161E0[] = dganontika_room_1Tex_0161E0; + +#define dganontika_room_1DL_01B530 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01B530" +static const ALIGN_ASSET(2) char ganontika_room_1DL_01B530[] = dganontika_room_1DL_01B530; + +#define dganontika_room_1DL_008E38 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_008E38" +static const ALIGN_ASSET(2) char ganontika_room_1DL_008E38[] = dganontika_room_1DL_008E38; + +#define dganontika_room_1Tex_0159E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0159E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0159E0[] = dganontika_room_1Tex_0159E0; + +#define dganontika_room_1DL_01B878 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_01B878" +static const ALIGN_ASSET(2) char ganontika_room_1DL_01B878[] = dganontika_room_1DL_01B878; + +#define dganontika_room_1DL_009168 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_009168" +static const ALIGN_ASSET(2) char ganontika_room_1DL_009168[] = dganontika_room_1DL_009168; + +#define dganontika_room_1DL_009668 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_009668" +static const ALIGN_ASSET(2) char ganontika_room_1DL_009668[] = dganontika_room_1DL_009668; + +#define dganontika_room_1DL_009B68 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_009B68" +static const ALIGN_ASSET(2) char ganontika_room_1DL_009B68[] = dganontika_room_1DL_009B68; + +#define dganontika_room_1DL_00A548 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00A548" +static const ALIGN_ASSET(2) char ganontika_room_1DL_00A548[] = dganontika_room_1DL_00A548; + +#define dganontika_room_1DL_00B730 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00B730" +static const ALIGN_ASSET(2) char ganontika_room_1DL_00B730[] = dganontika_room_1DL_00B730; + +#define dganontika_room_1Tex_00D9E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_00D9E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_00D9E0[] = dganontika_room_1Tex_00D9E0; + +#define dganontika_room_1Tex_00E9E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_00E9E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_00E9E0[] = dganontika_room_1Tex_00E9E0; + +#define dganontika_room_1Tex_00F9E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_00F9E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_00F9E0[] = dganontika_room_1Tex_00F9E0; + +#define dganontika_room_1DL_00C9E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00C9E8" +static const ALIGN_ASSET(2) char ganontika_room_1DL_00C9E8[] = dganontika_room_1DL_00C9E8; + +#define dganontika_room_1Tex_0131E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1Tex_0131E0" +static const ALIGN_ASSET(2) char ganontika_room_1Tex_0131E0[] = dganontika_room_1Tex_0131E0; + +#define dganontika_room_1DL_00CE08 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00CE08" +static const ALIGN_ASSET(2) char ganontika_room_1DL_00CE08[] = dganontika_room_1DL_00CE08; + +#define dganontika_room_1DL_00D138 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00D138" +static const ALIGN_ASSET(2) char ganontika_room_1DL_00D138[] = dganontika_room_1DL_00D138; + +#define dganontika_room_1DL_00D560 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_1DL_00D560" +static const ALIGN_ASSET(2) char ganontika_room_1DL_00D560[] = dganontika_room_1DL_00D560; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_10.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_10.h index 82fd35749..afa265510 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_10.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_10.h @@ -1,86 +1,39 @@ #pragma once -#define dganontika_room_10DL_000290 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_000290" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10DL_000290[] = dganontika_room_10DL_000290; -#else -static const char ganontika_room_10DL_000290[] __attribute__((aligned (2))) = dganontika_room_10DL_000290; -#endif - -#define dganontika_room_10Tex_0039B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0039B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10Tex_0039B8[] = dganontika_room_10Tex_0039B8; -#else -static const char ganontika_room_10Tex_0039B8[] __attribute__((aligned (2))) = dganontika_room_10Tex_0039B8; -#endif - -#define dganontika_room_10DL_000568 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_000568" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10DL_000568[] = dganontika_room_10DL_000568; -#else -static const char ganontika_room_10DL_000568[] __attribute__((aligned (2))) = dganontika_room_10DL_000568; -#endif - -#define dganontika_room_10Tex_0041B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0041B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10Tex_0041B8[] = dganontika_room_10Tex_0041B8; -#else -static const char ganontika_room_10Tex_0041B8[] __attribute__((aligned (2))) = dganontika_room_10Tex_0041B8; -#endif - -#define dganontika_room_10DL_0017C0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_0017C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10DL_0017C0[] = dganontika_room_10DL_0017C0; -#else -static const char ganontika_room_10DL_0017C0[] __attribute__((aligned (2))) = dganontika_room_10DL_0017C0; -#endif - -#define dganontika_room_10Tex_0059B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0059B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10Tex_0059B8[] = dganontika_room_10Tex_0059B8; -#else -static const char ganontika_room_10Tex_0059B8[] __attribute__((aligned (2))) = dganontika_room_10Tex_0059B8; -#endif - -#define dganontika_room_10Tex_005BB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_005BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10Tex_005BB8[] = dganontika_room_10Tex_005BB8; -#else -static const char ganontika_room_10Tex_005BB8[] __attribute__((aligned (2))) = dganontika_room_10Tex_005BB8; -#endif - -#define dganontika_room_10Tex_0051B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0051B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10Tex_0051B8[] = dganontika_room_10Tex_0051B8; -#else -static const char ganontika_room_10Tex_0051B8[] __attribute__((aligned (2))) = dganontika_room_10Tex_0051B8; -#endif - -#define dganontika_room_10Tex_0049B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0049B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10Tex_0049B8[] = dganontika_room_10Tex_0049B8; -#else -static const char ganontika_room_10Tex_0049B8[] __attribute__((aligned (2))) = dganontika_room_10Tex_0049B8; -#endif - -#define dganontika_room_10DL_002AD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_002AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10DL_002AD8[] = dganontika_room_10DL_002AD8; -#else -static const char ganontika_room_10DL_002AD8[] __attribute__((aligned (2))) = dganontika_room_10DL_002AD8; -#endif - -#define dganontika_room_10DL_0032E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_0032E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10DL_0032E8[] = dganontika_room_10DL_0032E8; -#else -static const char ganontika_room_10DL_0032E8[] __attribute__((aligned (2))) = dganontika_room_10DL_0032E8; -#endif - -#define dganontika_room_10DL_0037E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_0037E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_10DL_0037E8[] = dganontika_room_10DL_0037E8; -#else -static const char ganontika_room_10DL_0037E8[] __attribute__((aligned (2))) = dganontika_room_10DL_0037E8; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_10DL_000290 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_000290" +static const ALIGN_ASSET(2) char ganontika_room_10DL_000290[] = dganontika_room_10DL_000290; + +#define dganontika_room_10Tex_0039B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0039B8" +static const ALIGN_ASSET(2) char ganontika_room_10Tex_0039B8[] = dganontika_room_10Tex_0039B8; + +#define dganontika_room_10DL_000568 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_000568" +static const ALIGN_ASSET(2) char ganontika_room_10DL_000568[] = dganontika_room_10DL_000568; + +#define dganontika_room_10Tex_0041B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0041B8" +static const ALIGN_ASSET(2) char ganontika_room_10Tex_0041B8[] = dganontika_room_10Tex_0041B8; + +#define dganontika_room_10DL_0017C0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_0017C0" +static const ALIGN_ASSET(2) char ganontika_room_10DL_0017C0[] = dganontika_room_10DL_0017C0; + +#define dganontika_room_10Tex_0059B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0059B8" +static const ALIGN_ASSET(2) char ganontika_room_10Tex_0059B8[] = dganontika_room_10Tex_0059B8; + +#define dganontika_room_10Tex_005BB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_005BB8" +static const ALIGN_ASSET(2) char ganontika_room_10Tex_005BB8[] = dganontika_room_10Tex_005BB8; + +#define dganontika_room_10Tex_0051B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0051B8" +static const ALIGN_ASSET(2) char ganontika_room_10Tex_0051B8[] = dganontika_room_10Tex_0051B8; + +#define dganontika_room_10Tex_0049B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10Tex_0049B8" +static const ALIGN_ASSET(2) char ganontika_room_10Tex_0049B8[] = dganontika_room_10Tex_0049B8; + +#define dganontika_room_10DL_002AD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_002AD8" +static const ALIGN_ASSET(2) char ganontika_room_10DL_002AD8[] = dganontika_room_10DL_002AD8; + +#define dganontika_room_10DL_0032E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_0032E8" +static const ALIGN_ASSET(2) char ganontika_room_10DL_0032E8[] = dganontika_room_10DL_0032E8; + +#define dganontika_room_10DL_0037E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_10DL_0037E8" +static const ALIGN_ASSET(2) char ganontika_room_10DL_0037E8[] = dganontika_room_10DL_0037E8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_11.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_11.h index b374fa483..e9b142529 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_11.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_11.h @@ -1,107 +1,48 @@ #pragma once -#define dganontika_room_11DL_000390 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_000390" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_000390[] = dganontika_room_11DL_000390; -#else -static const char ganontika_room_11DL_000390[] __attribute__((aligned (2))) = dganontika_room_11DL_000390; -#endif - -#define dganontika_room_11Tex_004950 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_004950" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11Tex_004950[] = dganontika_room_11Tex_004950; -#else -static const char ganontika_room_11Tex_004950[] __attribute__((aligned (2))) = dganontika_room_11Tex_004950; -#endif - -#define dganontika_room_11DL_000580 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_000580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_000580[] = dganontika_room_11DL_000580; -#else -static const char ganontika_room_11DL_000580[] __attribute__((aligned (2))) = dganontika_room_11DL_000580; -#endif - -#define dganontika_room_11DL_000878 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_000878" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_000878[] = dganontika_room_11DL_000878; -#else -static const char ganontika_room_11DL_000878[] __attribute__((aligned (2))) = dganontika_room_11DL_000878; -#endif - -#define dganontika_room_11Tex_006150 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_006150" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11Tex_006150[] = dganontika_room_11Tex_006150; -#else -static const char ganontika_room_11Tex_006150[] __attribute__((aligned (2))) = dganontika_room_11Tex_006150; -#endif - -#define dganontika_room_11DL_000E60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_000E60" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_000E60[] = dganontika_room_11DL_000E60; -#else -static const char ganontika_room_11DL_000E60[] __attribute__((aligned (2))) = dganontika_room_11DL_000E60; -#endif - -#define dganontika_room_11Tex_005150 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_005150" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11Tex_005150[] = dganontika_room_11Tex_005150; -#else -static const char ganontika_room_11Tex_005150[] __attribute__((aligned (2))) = dganontika_room_11Tex_005150; -#endif - -#define dganontika_room_11DL_0015B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_0015B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_0015B8[] = dganontika_room_11DL_0015B8; -#else -static const char ganontika_room_11DL_0015B8[] __attribute__((aligned (2))) = dganontika_room_11DL_0015B8; -#endif - -#define dganontika_room_11DL_001D20 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_001D20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_001D20[] = dganontika_room_11DL_001D20; -#else -static const char ganontika_room_11DL_001D20[] __attribute__((aligned (2))) = dganontika_room_11DL_001D20; -#endif - -#define dganontika_room_11DL_002530 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_002530" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_002530[] = dganontika_room_11DL_002530; -#else -static const char ganontika_room_11DL_002530[] __attribute__((aligned (2))) = dganontika_room_11DL_002530; -#endif - -#define dganontika_room_11DL_0029D0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_0029D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_0029D0[] = dganontika_room_11DL_0029D0; -#else -static const char ganontika_room_11DL_0029D0[] __attribute__((aligned (2))) = dganontika_room_11DL_0029D0; -#endif - -#define dganontika_room_11DL_0034D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_0034D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_0034D8[] = dganontika_room_11DL_0034D8; -#else -static const char ganontika_room_11DL_0034D8[] __attribute__((aligned (2))) = dganontika_room_11DL_0034D8; -#endif - -#define dganontika_room_11Tex_005950 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_005950" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11Tex_005950[] = dganontika_room_11Tex_005950; -#else -static const char ganontika_room_11Tex_005950[] __attribute__((aligned (2))) = dganontika_room_11Tex_005950; -#endif - -#define dganontika_room_11Tex_004150 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_004150" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11Tex_004150[] = dganontika_room_11Tex_004150; -#else -static const char ganontika_room_11Tex_004150[] __attribute__((aligned (2))) = dganontika_room_11Tex_004150; -#endif - -#define dganontika_room_11DL_003F60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_003F60" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_11DL_003F60[] = dganontika_room_11DL_003F60; -#else -static const char ganontika_room_11DL_003F60[] __attribute__((aligned (2))) = dganontika_room_11DL_003F60; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_11DL_000390 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_000390" +static const ALIGN_ASSET(2) char ganontika_room_11DL_000390[] = dganontika_room_11DL_000390; + +#define dganontika_room_11Tex_004950 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_004950" +static const ALIGN_ASSET(2) char ganontika_room_11Tex_004950[] = dganontika_room_11Tex_004950; + +#define dganontika_room_11DL_000580 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_000580" +static const ALIGN_ASSET(2) char ganontika_room_11DL_000580[] = dganontika_room_11DL_000580; + +#define dganontika_room_11DL_000878 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_000878" +static const ALIGN_ASSET(2) char ganontika_room_11DL_000878[] = dganontika_room_11DL_000878; + +#define dganontika_room_11Tex_006150 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_006150" +static const ALIGN_ASSET(2) char ganontika_room_11Tex_006150[] = dganontika_room_11Tex_006150; + +#define dganontika_room_11DL_000E60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_000E60" +static const ALIGN_ASSET(2) char ganontika_room_11DL_000E60[] = dganontika_room_11DL_000E60; + +#define dganontika_room_11Tex_005150 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_005150" +static const ALIGN_ASSET(2) char ganontika_room_11Tex_005150[] = dganontika_room_11Tex_005150; + +#define dganontika_room_11DL_0015B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_0015B8" +static const ALIGN_ASSET(2) char ganontika_room_11DL_0015B8[] = dganontika_room_11DL_0015B8; + +#define dganontika_room_11DL_001D20 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_001D20" +static const ALIGN_ASSET(2) char ganontika_room_11DL_001D20[] = dganontika_room_11DL_001D20; + +#define dganontika_room_11DL_002530 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_002530" +static const ALIGN_ASSET(2) char ganontika_room_11DL_002530[] = dganontika_room_11DL_002530; + +#define dganontika_room_11DL_0029D0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_0029D0" +static const ALIGN_ASSET(2) char ganontika_room_11DL_0029D0[] = dganontika_room_11DL_0029D0; + +#define dganontika_room_11DL_0034D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_0034D8" +static const ALIGN_ASSET(2) char ganontika_room_11DL_0034D8[] = dganontika_room_11DL_0034D8; + +#define dganontika_room_11Tex_005950 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_005950" +static const ALIGN_ASSET(2) char ganontika_room_11Tex_005950[] = dganontika_room_11Tex_005950; + +#define dganontika_room_11Tex_004150 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11Tex_004150" +static const ALIGN_ASSET(2) char ganontika_room_11Tex_004150[] = dganontika_room_11Tex_004150; + +#define dganontika_room_11DL_003F60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_11DL_003F60" +static const ALIGN_ASSET(2) char ganontika_room_11DL_003F60[] = dganontika_room_11DL_003F60; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_12.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_12.h index a4f41aaa0..8a5f1938f 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_12.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_12.h @@ -1,156 +1,69 @@ #pragma once -#define dganontika_room_12DL_0021C0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_0021C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_0021C0[] = dganontika_room_12DL_0021C0; -#else -static const char ganontika_room_12DL_0021C0[] __attribute__((aligned (2))) = dganontika_room_12DL_0021C0; -#endif - -#define dganontika_room_12Tex_008560 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_008560" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_008560[] = dganontika_room_12Tex_008560; -#else -static const char ganontika_room_12Tex_008560[] __attribute__((aligned (2))) = dganontika_room_12Tex_008560; -#endif - -#define dganontika_room_12Tex_008160 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_008160" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_008160[] = dganontika_room_12Tex_008160; -#else -static const char ganontika_room_12Tex_008160[] __attribute__((aligned (2))) = dganontika_room_12Tex_008160; -#endif - -#define dganontika_room_12DL_002738 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_002738" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_002738[] = dganontika_room_12DL_002738; -#else -static const char ganontika_room_12DL_002738[] __attribute__((aligned (2))) = dganontika_room_12DL_002738; -#endif - -#define dganontika_room_12Tex_007160 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_007160" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_007160[] = dganontika_room_12Tex_007160; -#else -static const char ganontika_room_12Tex_007160[] __attribute__((aligned (2))) = dganontika_room_12Tex_007160; -#endif - -#define dganontika_room_12DL_002AB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_002AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_002AB8[] = dganontika_room_12DL_002AB8; -#else -static const char ganontika_room_12DL_002AB8[] __attribute__((aligned (2))) = dganontika_room_12DL_002AB8; -#endif - -#define dganontika_room_12DL_002C60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_002C60" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_002C60[] = dganontika_room_12DL_002C60; -#else -static const char ganontika_room_12DL_002C60[] __attribute__((aligned (2))) = dganontika_room_12DL_002C60; -#endif - -#define dganontika_room_12Tex_006960 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_006960" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_006960[] = dganontika_room_12Tex_006960; -#else -static const char ganontika_room_12Tex_006960[] __attribute__((aligned (2))) = dganontika_room_12Tex_006960; -#endif - -#define dganontika_room_12TLUT_005140 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12TLUT_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12TLUT_005140[] = dganontika_room_12TLUT_005140; -#else -static const char ganontika_room_12TLUT_005140[] __attribute__((aligned (2))) = dganontika_room_12TLUT_005140; -#endif - -#define dganontika_room_12DL_008F90 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_008F90" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_008F90[] = dganontika_room_12DL_008F90; -#else -static const char ganontika_room_12DL_008F90[] __attribute__((aligned (2))) = dganontika_room_12DL_008F90; -#endif - -#define dganontika_room_12Tex_009270 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_009270" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_009270[] = dganontika_room_12Tex_009270; -#else -static const char ganontika_room_12Tex_009270[] __attribute__((aligned (2))) = dganontika_room_12Tex_009270; -#endif - -#define dganontika_room_12DL_0031A0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_0031A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_0031A0[] = dganontika_room_12DL_0031A0; -#else -static const char ganontika_room_12DL_0031A0[] __attribute__((aligned (2))) = dganontika_room_12DL_0031A0; -#endif - -#define dganontika_room_12Tex_005960 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_005960" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_005960[] = dganontika_room_12Tex_005960; -#else -static const char ganontika_room_12Tex_005960[] __attribute__((aligned (2))) = dganontika_room_12Tex_005960; -#endif - -#define dganontika_room_12DL_003D30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_003D30" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_003D30[] = dganontika_room_12DL_003D30; -#else -static const char ganontika_room_12DL_003D30[] __attribute__((aligned (2))) = dganontika_room_12DL_003D30; -#endif - -#define dganontika_room_12Tex_005160 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_005160" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_005160[] = dganontika_room_12Tex_005160; -#else -static const char ganontika_room_12Tex_005160[] __attribute__((aligned (2))) = dganontika_room_12Tex_005160; -#endif - -#define dganontika_room_12DL_004A08 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_004A08" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_004A08[] = dganontika_room_12DL_004A08; -#else -static const char ganontika_room_12DL_004A08[] __attribute__((aligned (2))) = dganontika_room_12DL_004A08; -#endif - -#define dganontika_room_12DL_004EF8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_004EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_004EF8[] = dganontika_room_12DL_004EF8; -#else -static const char ganontika_room_12DL_004EF8[] __attribute__((aligned (2))) = dganontika_room_12DL_004EF8; -#endif - -#define dganontika_room_12DL_000330 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_000330" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_000330[] = dganontika_room_12DL_000330; -#else -static const char ganontika_room_12DL_000330[] __attribute__((aligned (2))) = dganontika_room_12DL_000330; -#endif - -#define dganontika_room_12DL_001928 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_001928" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_001928[] = dganontika_room_12DL_001928; -#else -static const char ganontika_room_12DL_001928[] __attribute__((aligned (2))) = dganontika_room_12DL_001928; -#endif - -#define dganontika_room_12Tex_006160 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_006160" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_006160[] = dganontika_room_12Tex_006160; -#else -static const char ganontika_room_12Tex_006160[] __attribute__((aligned (2))) = dganontika_room_12Tex_006160; -#endif - -#define dganontika_room_12DL_009178 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_009178" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12DL_009178[] = dganontika_room_12DL_009178; -#else -static const char ganontika_room_12DL_009178[] __attribute__((aligned (2))) = dganontika_room_12DL_009178; -#endif - -#define dganontika_room_12Tex_00A270 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_00A270" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_12Tex_00A270[] = dganontika_room_12Tex_00A270; -#else -static const char ganontika_room_12Tex_00A270[] __attribute__((aligned (2))) = dganontika_room_12Tex_00A270; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_12DL_0021C0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_0021C0" +static const ALIGN_ASSET(2) char ganontika_room_12DL_0021C0[] = dganontika_room_12DL_0021C0; + +#define dganontika_room_12Tex_008560 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_008560" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_008560[] = dganontika_room_12Tex_008560; + +#define dganontika_room_12Tex_008160 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_008160" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_008160[] = dganontika_room_12Tex_008160; + +#define dganontika_room_12DL_002738 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_002738" +static const ALIGN_ASSET(2) char ganontika_room_12DL_002738[] = dganontika_room_12DL_002738; + +#define dganontika_room_12Tex_007160 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_007160" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_007160[] = dganontika_room_12Tex_007160; + +#define dganontika_room_12DL_002AB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_002AB8" +static const ALIGN_ASSET(2) char ganontika_room_12DL_002AB8[] = dganontika_room_12DL_002AB8; + +#define dganontika_room_12DL_002C60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_002C60" +static const ALIGN_ASSET(2) char ganontika_room_12DL_002C60[] = dganontika_room_12DL_002C60; + +#define dganontika_room_12Tex_006960 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_006960" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_006960[] = dganontika_room_12Tex_006960; + +#define dganontika_room_12TLUT_005140 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12TLUT_005140" +static const ALIGN_ASSET(2) char ganontika_room_12TLUT_005140[] = dganontika_room_12TLUT_005140; + +#define dganontika_room_12DL_008F90 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_008F90" +static const ALIGN_ASSET(2) char ganontika_room_12DL_008F90[] = dganontika_room_12DL_008F90; + +#define dganontika_room_12Tex_009270 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_009270" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_009270[] = dganontika_room_12Tex_009270; + +#define dganontika_room_12DL_0031A0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_0031A0" +static const ALIGN_ASSET(2) char ganontika_room_12DL_0031A0[] = dganontika_room_12DL_0031A0; + +#define dganontika_room_12Tex_005960 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_005960" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_005960[] = dganontika_room_12Tex_005960; + +#define dganontika_room_12DL_003D30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_003D30" +static const ALIGN_ASSET(2) char ganontika_room_12DL_003D30[] = dganontika_room_12DL_003D30; + +#define dganontika_room_12Tex_005160 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_005160" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_005160[] = dganontika_room_12Tex_005160; + +#define dganontika_room_12DL_004A08 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_004A08" +static const ALIGN_ASSET(2) char ganontika_room_12DL_004A08[] = dganontika_room_12DL_004A08; + +#define dganontika_room_12DL_004EF8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_004EF8" +static const ALIGN_ASSET(2) char ganontika_room_12DL_004EF8[] = dganontika_room_12DL_004EF8; + +#define dganontika_room_12DL_000330 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_000330" +static const ALIGN_ASSET(2) char ganontika_room_12DL_000330[] = dganontika_room_12DL_000330; + +#define dganontika_room_12DL_001928 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_001928" +static const ALIGN_ASSET(2) char ganontika_room_12DL_001928[] = dganontika_room_12DL_001928; + +#define dganontika_room_12Tex_006160 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_006160" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_006160[] = dganontika_room_12Tex_006160; + +#define dganontika_room_12DL_009178 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12DL_009178" +static const ALIGN_ASSET(2) char ganontika_room_12DL_009178[] = dganontika_room_12DL_009178; + +#define dganontika_room_12Tex_00A270 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_12Tex_00A270" +static const ALIGN_ASSET(2) char ganontika_room_12Tex_00A270[] = dganontika_room_12Tex_00A270; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_13.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_13.h index c7c39a445..1db518034 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_13.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_13.h @@ -1,93 +1,42 @@ #pragma once -#define dganontika_room_13DL_001260 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_001260" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13DL_001260[] = dganontika_room_13DL_001260; -#else -static const char ganontika_room_13DL_001260[] __attribute__((aligned (2))) = dganontika_room_13DL_001260; -#endif - -#define dganontika_room_13Tex_006B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_006B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13Tex_006B40[] = dganontika_room_13Tex_006B40; -#else -static const char ganontika_room_13Tex_006B40[] __attribute__((aligned (2))) = dganontika_room_13Tex_006B40; -#endif - -#define dganontika_room_13Tex_006D40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_006D40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13Tex_006D40[] = dganontika_room_13Tex_006D40; -#else -static const char ganontika_room_13Tex_006D40[] __attribute__((aligned (2))) = dganontika_room_13Tex_006D40; -#endif - -#define dganontika_room_13Tex_006340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_006340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13Tex_006340[] = dganontika_room_13Tex_006340; -#else -static const char ganontika_room_13Tex_006340[] __attribute__((aligned (2))) = dganontika_room_13Tex_006340; -#endif - -#define dganontika_room_13Tex_004B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_004B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13Tex_004B40[] = dganontika_room_13Tex_004B40; -#else -static const char ganontika_room_13Tex_004B40[] __attribute__((aligned (2))) = dganontika_room_13Tex_004B40; -#endif - -#define dganontika_room_13Tex_005B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_005B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13Tex_005B40[] = dganontika_room_13Tex_005B40; -#else -static const char ganontika_room_13Tex_005B40[] __attribute__((aligned (2))) = dganontika_room_13Tex_005B40; -#endif - -#define dganontika_room_13Tex_004340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_004340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13Tex_004340[] = dganontika_room_13Tex_004340; -#else -static const char ganontika_room_13Tex_004340[] __attribute__((aligned (2))) = dganontika_room_13Tex_004340; -#endif - -#define dganontika_room_13DL_0024F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_0024F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13DL_0024F8[] = dganontika_room_13DL_0024F8; -#else -static const char ganontika_room_13DL_0024F8[] __attribute__((aligned (2))) = dganontika_room_13DL_0024F8; -#endif - -#define dganontika_room_13Tex_005340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_005340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13Tex_005340[] = dganontika_room_13Tex_005340; -#else -static const char ganontika_room_13Tex_005340[] __attribute__((aligned (2))) = dganontika_room_13Tex_005340; -#endif - -#define dganontika_room_13DL_002CF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_002CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13DL_002CF0[] = dganontika_room_13DL_002CF0; -#else -static const char ganontika_room_13DL_002CF0[] __attribute__((aligned (2))) = dganontika_room_13DL_002CF0; -#endif - -#define dganontika_room_13DL_003470 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_003470" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13DL_003470[] = dganontika_room_13DL_003470; -#else -static const char ganontika_room_13DL_003470[] __attribute__((aligned (2))) = dganontika_room_13DL_003470; -#endif - -#define dganontika_room_13DL_003C80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_003C80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13DL_003C80[] = dganontika_room_13DL_003C80; -#else -static const char ganontika_room_13DL_003C80[] __attribute__((aligned (2))) = dganontika_room_13DL_003C80; -#endif - -#define dganontika_room_13DL_004170 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_004170" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_13DL_004170[] = dganontika_room_13DL_004170; -#else -static const char ganontika_room_13DL_004170[] __attribute__((aligned (2))) = dganontika_room_13DL_004170; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_13DL_001260 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_001260" +static const ALIGN_ASSET(2) char ganontika_room_13DL_001260[] = dganontika_room_13DL_001260; + +#define dganontika_room_13Tex_006B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_006B40" +static const ALIGN_ASSET(2) char ganontika_room_13Tex_006B40[] = dganontika_room_13Tex_006B40; + +#define dganontika_room_13Tex_006D40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_006D40" +static const ALIGN_ASSET(2) char ganontika_room_13Tex_006D40[] = dganontika_room_13Tex_006D40; + +#define dganontika_room_13Tex_006340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_006340" +static const ALIGN_ASSET(2) char ganontika_room_13Tex_006340[] = dganontika_room_13Tex_006340; + +#define dganontika_room_13Tex_004B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_004B40" +static const ALIGN_ASSET(2) char ganontika_room_13Tex_004B40[] = dganontika_room_13Tex_004B40; + +#define dganontika_room_13Tex_005B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_005B40" +static const ALIGN_ASSET(2) char ganontika_room_13Tex_005B40[] = dganontika_room_13Tex_005B40; + +#define dganontika_room_13Tex_004340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_004340" +static const ALIGN_ASSET(2) char ganontika_room_13Tex_004340[] = dganontika_room_13Tex_004340; + +#define dganontika_room_13DL_0024F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_0024F8" +static const ALIGN_ASSET(2) char ganontika_room_13DL_0024F8[] = dganontika_room_13DL_0024F8; + +#define dganontika_room_13Tex_005340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13Tex_005340" +static const ALIGN_ASSET(2) char ganontika_room_13Tex_005340[] = dganontika_room_13Tex_005340; + +#define dganontika_room_13DL_002CF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_002CF0" +static const ALIGN_ASSET(2) char ganontika_room_13DL_002CF0[] = dganontika_room_13DL_002CF0; + +#define dganontika_room_13DL_003470 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_003470" +static const ALIGN_ASSET(2) char ganontika_room_13DL_003470[] = dganontika_room_13DL_003470; + +#define dganontika_room_13DL_003C80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_003C80" +static const ALIGN_ASSET(2) char ganontika_room_13DL_003C80[] = dganontika_room_13DL_003C80; + +#define dganontika_room_13DL_004170 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_13DL_004170" +static const ALIGN_ASSET(2) char ganontika_room_13DL_004170[] = dganontika_room_13DL_004170; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_14.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_14.h index af283ff26..1758382c3 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_14.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_14.h @@ -1,149 +1,66 @@ #pragma once -#define dganontika_room_14DL_000918 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_000918" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_000918[] = dganontika_room_14DL_000918; -#else -static const char ganontika_room_14DL_000918[] __attribute__((aligned (2))) = dganontika_room_14DL_000918; -#endif - -#define dganontika_room_14Tex_0077B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0077B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14Tex_0077B8[] = dganontika_room_14Tex_0077B8; -#else -static const char ganontika_room_14Tex_0077B8[] __attribute__((aligned (2))) = dganontika_room_14Tex_0077B8; -#endif - -#define dganontika_room_14Tex_007BB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_007BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14Tex_007BB8[] = dganontika_room_14Tex_007BB8; -#else -static const char ganontika_room_14Tex_007BB8[] __attribute__((aligned (2))) = dganontika_room_14Tex_007BB8; -#endif - -#define dganontika_room_14Tex_0057B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0057B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14Tex_0057B8[] = dganontika_room_14Tex_0057B8; -#else -static const char ganontika_room_14Tex_0057B8[] __attribute__((aligned (2))) = dganontika_room_14Tex_0057B8; -#endif - -#define dganontika_room_14DL_001110 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_001110" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_001110[] = dganontika_room_14DL_001110; -#else -static const char ganontika_room_14DL_001110[] __attribute__((aligned (2))) = dganontika_room_14DL_001110; -#endif - -#define dganontika_room_14DL_001670 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_001670" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_001670[] = dganontika_room_14DL_001670; -#else -static const char ganontika_room_14DL_001670[] __attribute__((aligned (2))) = dganontika_room_14DL_001670; -#endif - -#define dganontika_room_14DL_001C68 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_001C68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_001C68[] = dganontika_room_14DL_001C68; -#else -static const char ganontika_room_14DL_001C68[] __attribute__((aligned (2))) = dganontika_room_14DL_001C68; -#endif - -#define dganontika_room_14DL_002778 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_002778" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_002778[] = dganontika_room_14DL_002778; -#else -static const char ganontika_room_14DL_002778[] __attribute__((aligned (2))) = dganontika_room_14DL_002778; -#endif - -#define dganontika_room_14DL_0036E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_0036E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_0036E8[] = dganontika_room_14DL_0036E8; -#else -static const char ganontika_room_14DL_0036E8[] __attribute__((aligned (2))) = dganontika_room_14DL_0036E8; -#endif - -#define dganontika_room_14DL_004920 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_004920" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_004920[] = dganontika_room_14DL_004920; -#else -static const char ganontika_room_14DL_004920[] __attribute__((aligned (2))) = dganontika_room_14DL_004920; -#endif - -#define dganontika_room_14Tex_0067B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0067B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14Tex_0067B8[] = dganontika_room_14Tex_0067B8; -#else -static const char ganontika_room_14Tex_0067B8[] __attribute__((aligned (2))) = dganontika_room_14Tex_0067B8; -#endif - -#define dganontika_room_14DL_004BF8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_004BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_004BF8[] = dganontika_room_14DL_004BF8; -#else -static const char ganontika_room_14DL_004BF8[] __attribute__((aligned (2))) = dganontika_room_14DL_004BF8; -#endif - -#define dganontika_room_14Tex_005FB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_005FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14Tex_005FB8[] = dganontika_room_14Tex_005FB8; -#else -static const char ganontika_room_14Tex_005FB8[] __attribute__((aligned (2))) = dganontika_room_14Tex_005FB8; -#endif - -#define dganontika_room_14TLUT_004F98 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14TLUT_004F98" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14TLUT_004F98[] = dganontika_room_14TLUT_004F98; -#else -static const char ganontika_room_14TLUT_004F98[] __attribute__((aligned (2))) = dganontika_room_14TLUT_004F98; -#endif - -#define dganontika_room_14DL_0085F0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_0085F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_0085F0[] = dganontika_room_14DL_0085F0; -#else -static const char ganontika_room_14DL_0085F0[] __attribute__((aligned (2))) = dganontika_room_14DL_0085F0; -#endif - -#define dganontika_room_14Tex_0089C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0089C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14Tex_0089C8[] = dganontika_room_14Tex_0089C8; -#else -static const char ganontika_room_14Tex_0089C8[] __attribute__((aligned (2))) = dganontika_room_14Tex_0089C8; -#endif - -#define dganontika_room_14DL_0003D0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_0003D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_0003D0[] = dganontika_room_14DL_0003D0; -#else -static const char ganontika_room_14DL_0003D0[] __attribute__((aligned (2))) = dganontika_room_14DL_0003D0; -#endif - -#define dganontika_room_14DL_004E38 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_004E38" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_004E38[] = dganontika_room_14DL_004E38; -#else -static const char ganontika_room_14DL_004E38[] __attribute__((aligned (2))) = dganontika_room_14DL_004E38; -#endif - -#define dganontika_room_14Tex_004FB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_004FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14Tex_004FB8[] = dganontika_room_14Tex_004FB8; -#else -static const char ganontika_room_14Tex_004FB8[] __attribute__((aligned (2))) = dganontika_room_14Tex_004FB8; -#endif - -#define dganontika_room_14DL_008888 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_008888" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14DL_008888[] = dganontika_room_14DL_008888; -#else -static const char ganontika_room_14DL_008888[] __attribute__((aligned (2))) = dganontika_room_14DL_008888; -#endif - -#define dganontika_room_14Tex_0099C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0099C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_14Tex_0099C8[] = dganontika_room_14Tex_0099C8; -#else -static const char ganontika_room_14Tex_0099C8[] __attribute__((aligned (2))) = dganontika_room_14Tex_0099C8; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_14DL_000918 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_000918" +static const ALIGN_ASSET(2) char ganontika_room_14DL_000918[] = dganontika_room_14DL_000918; + +#define dganontika_room_14Tex_0077B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0077B8" +static const ALIGN_ASSET(2) char ganontika_room_14Tex_0077B8[] = dganontika_room_14Tex_0077B8; + +#define dganontika_room_14Tex_007BB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_007BB8" +static const ALIGN_ASSET(2) char ganontika_room_14Tex_007BB8[] = dganontika_room_14Tex_007BB8; + +#define dganontika_room_14Tex_0057B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0057B8" +static const ALIGN_ASSET(2) char ganontika_room_14Tex_0057B8[] = dganontika_room_14Tex_0057B8; + +#define dganontika_room_14DL_001110 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_001110" +static const ALIGN_ASSET(2) char ganontika_room_14DL_001110[] = dganontika_room_14DL_001110; + +#define dganontika_room_14DL_001670 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_001670" +static const ALIGN_ASSET(2) char ganontika_room_14DL_001670[] = dganontika_room_14DL_001670; + +#define dganontika_room_14DL_001C68 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_001C68" +static const ALIGN_ASSET(2) char ganontika_room_14DL_001C68[] = dganontika_room_14DL_001C68; + +#define dganontika_room_14DL_002778 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_002778" +static const ALIGN_ASSET(2) char ganontika_room_14DL_002778[] = dganontika_room_14DL_002778; + +#define dganontika_room_14DL_0036E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_0036E8" +static const ALIGN_ASSET(2) char ganontika_room_14DL_0036E8[] = dganontika_room_14DL_0036E8; + +#define dganontika_room_14DL_004920 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_004920" +static const ALIGN_ASSET(2) char ganontika_room_14DL_004920[] = dganontika_room_14DL_004920; + +#define dganontika_room_14Tex_0067B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0067B8" +static const ALIGN_ASSET(2) char ganontika_room_14Tex_0067B8[] = dganontika_room_14Tex_0067B8; + +#define dganontika_room_14DL_004BF8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_004BF8" +static const ALIGN_ASSET(2) char ganontika_room_14DL_004BF8[] = dganontika_room_14DL_004BF8; + +#define dganontika_room_14Tex_005FB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_005FB8" +static const ALIGN_ASSET(2) char ganontika_room_14Tex_005FB8[] = dganontika_room_14Tex_005FB8; + +#define dganontika_room_14TLUT_004F98 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14TLUT_004F98" +static const ALIGN_ASSET(2) char ganontika_room_14TLUT_004F98[] = dganontika_room_14TLUT_004F98; + +#define dganontika_room_14DL_0085F0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_0085F0" +static const ALIGN_ASSET(2) char ganontika_room_14DL_0085F0[] = dganontika_room_14DL_0085F0; + +#define dganontika_room_14Tex_0089C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0089C8" +static const ALIGN_ASSET(2) char ganontika_room_14Tex_0089C8[] = dganontika_room_14Tex_0089C8; + +#define dganontika_room_14DL_0003D0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_0003D0" +static const ALIGN_ASSET(2) char ganontika_room_14DL_0003D0[] = dganontika_room_14DL_0003D0; + +#define dganontika_room_14DL_004E38 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_004E38" +static const ALIGN_ASSET(2) char ganontika_room_14DL_004E38[] = dganontika_room_14DL_004E38; + +#define dganontika_room_14Tex_004FB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_004FB8" +static const ALIGN_ASSET(2) char ganontika_room_14Tex_004FB8[] = dganontika_room_14Tex_004FB8; + +#define dganontika_room_14DL_008888 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14DL_008888" +static const ALIGN_ASSET(2) char ganontika_room_14DL_008888[] = dganontika_room_14DL_008888; + +#define dganontika_room_14Tex_0099C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_14Tex_0099C8" +static const ALIGN_ASSET(2) char ganontika_room_14Tex_0099C8[] = dganontika_room_14Tex_0099C8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_15.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_15.h index 76d15c275..6c3dc5c9a 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_15.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_15.h @@ -1,93 +1,42 @@ #pragma once -#define dganontika_room_15DL_001260 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_001260" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15DL_001260[] = dganontika_room_15DL_001260; -#else -static const char ganontika_room_15DL_001260[] __attribute__((aligned (2))) = dganontika_room_15DL_001260; -#endif - -#define dganontika_room_15Tex_006B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_006B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15Tex_006B40[] = dganontika_room_15Tex_006B40; -#else -static const char ganontika_room_15Tex_006B40[] __attribute__((aligned (2))) = dganontika_room_15Tex_006B40; -#endif - -#define dganontika_room_15Tex_006D40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_006D40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15Tex_006D40[] = dganontika_room_15Tex_006D40; -#else -static const char ganontika_room_15Tex_006D40[] __attribute__((aligned (2))) = dganontika_room_15Tex_006D40; -#endif - -#define dganontika_room_15Tex_006340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_006340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15Tex_006340[] = dganontika_room_15Tex_006340; -#else -static const char ganontika_room_15Tex_006340[] __attribute__((aligned (2))) = dganontika_room_15Tex_006340; -#endif - -#define dganontika_room_15Tex_004B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_004B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15Tex_004B40[] = dganontika_room_15Tex_004B40; -#else -static const char ganontika_room_15Tex_004B40[] __attribute__((aligned (2))) = dganontika_room_15Tex_004B40; -#endif - -#define dganontika_room_15Tex_005B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_005B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15Tex_005B40[] = dganontika_room_15Tex_005B40; -#else -static const char ganontika_room_15Tex_005B40[] __attribute__((aligned (2))) = dganontika_room_15Tex_005B40; -#endif - -#define dganontika_room_15Tex_004340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_004340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15Tex_004340[] = dganontika_room_15Tex_004340; -#else -static const char ganontika_room_15Tex_004340[] __attribute__((aligned (2))) = dganontika_room_15Tex_004340; -#endif - -#define dganontika_room_15DL_0024F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_0024F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15DL_0024F8[] = dganontika_room_15DL_0024F8; -#else -static const char ganontika_room_15DL_0024F8[] __attribute__((aligned (2))) = dganontika_room_15DL_0024F8; -#endif - -#define dganontika_room_15Tex_005340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_005340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15Tex_005340[] = dganontika_room_15Tex_005340; -#else -static const char ganontika_room_15Tex_005340[] __attribute__((aligned (2))) = dganontika_room_15Tex_005340; -#endif - -#define dganontika_room_15DL_002CF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_002CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15DL_002CF0[] = dganontika_room_15DL_002CF0; -#else -static const char ganontika_room_15DL_002CF0[] __attribute__((aligned (2))) = dganontika_room_15DL_002CF0; -#endif - -#define dganontika_room_15DL_003470 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_003470" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15DL_003470[] = dganontika_room_15DL_003470; -#else -static const char ganontika_room_15DL_003470[] __attribute__((aligned (2))) = dganontika_room_15DL_003470; -#endif - -#define dganontika_room_15DL_003C80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_003C80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15DL_003C80[] = dganontika_room_15DL_003C80; -#else -static const char ganontika_room_15DL_003C80[] __attribute__((aligned (2))) = dganontika_room_15DL_003C80; -#endif - -#define dganontika_room_15DL_004170 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_004170" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_15DL_004170[] = dganontika_room_15DL_004170; -#else -static const char ganontika_room_15DL_004170[] __attribute__((aligned (2))) = dganontika_room_15DL_004170; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_15DL_001260 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_001260" +static const ALIGN_ASSET(2) char ganontika_room_15DL_001260[] = dganontika_room_15DL_001260; + +#define dganontika_room_15Tex_006B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_006B40" +static const ALIGN_ASSET(2) char ganontika_room_15Tex_006B40[] = dganontika_room_15Tex_006B40; + +#define dganontika_room_15Tex_006D40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_006D40" +static const ALIGN_ASSET(2) char ganontika_room_15Tex_006D40[] = dganontika_room_15Tex_006D40; + +#define dganontika_room_15Tex_006340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_006340" +static const ALIGN_ASSET(2) char ganontika_room_15Tex_006340[] = dganontika_room_15Tex_006340; + +#define dganontika_room_15Tex_004B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_004B40" +static const ALIGN_ASSET(2) char ganontika_room_15Tex_004B40[] = dganontika_room_15Tex_004B40; + +#define dganontika_room_15Tex_005B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_005B40" +static const ALIGN_ASSET(2) char ganontika_room_15Tex_005B40[] = dganontika_room_15Tex_005B40; + +#define dganontika_room_15Tex_004340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_004340" +static const ALIGN_ASSET(2) char ganontika_room_15Tex_004340[] = dganontika_room_15Tex_004340; + +#define dganontika_room_15DL_0024F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_0024F8" +static const ALIGN_ASSET(2) char ganontika_room_15DL_0024F8[] = dganontika_room_15DL_0024F8; + +#define dganontika_room_15Tex_005340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15Tex_005340" +static const ALIGN_ASSET(2) char ganontika_room_15Tex_005340[] = dganontika_room_15Tex_005340; + +#define dganontika_room_15DL_002CF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_002CF0" +static const ALIGN_ASSET(2) char ganontika_room_15DL_002CF0[] = dganontika_room_15DL_002CF0; + +#define dganontika_room_15DL_003470 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_003470" +static const ALIGN_ASSET(2) char ganontika_room_15DL_003470[] = dganontika_room_15DL_003470; + +#define dganontika_room_15DL_003C80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_003C80" +static const ALIGN_ASSET(2) char ganontika_room_15DL_003C80[] = dganontika_room_15DL_003C80; + +#define dganontika_room_15DL_004170 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_15DL_004170" +static const ALIGN_ASSET(2) char ganontika_room_15DL_004170[] = dganontika_room_15DL_004170; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_16.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_16.h index c55b8df00..45c065e40 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_16.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_16.h @@ -1,37 +1,18 @@ #pragma once -#define dganontika_room_16DL_0006F0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16DL_0006F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_16DL_0006F0[] = dganontika_room_16DL_0006F0; -#else -static const char ganontika_room_16DL_0006F0[] __attribute__((aligned (2))) = dganontika_room_16DL_0006F0; -#endif - -#define dganontika_room_16Tex_001630 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16Tex_001630" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_16Tex_001630[] = dganontika_room_16Tex_001630; -#else -static const char ganontika_room_16Tex_001630[] __attribute__((aligned (2))) = dganontika_room_16Tex_001630; -#endif - -#define dganontika_room_16DL_000E80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16DL_000E80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_16DL_000E80[] = dganontika_room_16DL_000E80; -#else -static const char ganontika_room_16DL_000E80[] __attribute__((aligned (2))) = dganontika_room_16DL_000E80; -#endif - -#define dganontika_room_16DL_001288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16DL_001288" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_16DL_001288[] = dganontika_room_16DL_001288; -#else -static const char ganontika_room_16DL_001288[] __attribute__((aligned (2))) = dganontika_room_16DL_001288; -#endif - -#define dganontika_room_16Tex_002630 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16Tex_002630" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_16Tex_002630[] = dganontika_room_16Tex_002630; -#else -static const char ganontika_room_16Tex_002630[] __attribute__((aligned (2))) = dganontika_room_16Tex_002630; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_16DL_0006F0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16DL_0006F0" +static const ALIGN_ASSET(2) char ganontika_room_16DL_0006F0[] = dganontika_room_16DL_0006F0; + +#define dganontika_room_16Tex_001630 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16Tex_001630" +static const ALIGN_ASSET(2) char ganontika_room_16Tex_001630[] = dganontika_room_16Tex_001630; + +#define dganontika_room_16DL_000E80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16DL_000E80" +static const ALIGN_ASSET(2) char ganontika_room_16DL_000E80[] = dganontika_room_16DL_000E80; + +#define dganontika_room_16DL_001288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16DL_001288" +static const ALIGN_ASSET(2) char ganontika_room_16DL_001288[] = dganontika_room_16DL_001288; + +#define dganontika_room_16Tex_002630 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_16Tex_002630" +static const ALIGN_ASSET(2) char ganontika_room_16Tex_002630[] = dganontika_room_16Tex_002630; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_17.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_17.h index 8275fdc8e..adc1298bc 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_17.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_17.h @@ -1,107 +1,48 @@ #pragma once -#define dganontika_room_17DL_000B30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_000B30" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17DL_000B30[] = dganontika_room_17DL_000B30; -#else -static const char ganontika_room_17DL_000B30[] __attribute__((aligned (2))) = dganontika_room_17DL_000B30; -#endif - -#define dganontika_room_17Tex_005618 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_005618" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17Tex_005618[] = dganontika_room_17Tex_005618; -#else -static const char ganontika_room_17Tex_005618[] __attribute__((aligned (2))) = dganontika_room_17Tex_005618; -#endif - -#define dganontika_room_17Tex_007618 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_007618" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17Tex_007618[] = dganontika_room_17Tex_007618; -#else -static const char ganontika_room_17Tex_007618[] __attribute__((aligned (2))) = dganontika_room_17Tex_007618; -#endif - -#define dganontika_room_17Tex_002A18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_002A18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17Tex_002A18[] = dganontika_room_17Tex_002A18; -#else -static const char ganontika_room_17Tex_002A18[] __attribute__((aligned (2))) = dganontika_room_17Tex_002A18; -#endif - -#define dganontika_room_17DL_0023B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_0023B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17DL_0023B8[] = dganontika_room_17DL_0023B8; -#else -static const char ganontika_room_17DL_0023B8[] __attribute__((aligned (2))) = dganontika_room_17DL_0023B8; -#endif - -#define dganontika_room_17Tex_004E18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_004E18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17Tex_004E18[] = dganontika_room_17Tex_004E18; -#else -static const char ganontika_room_17Tex_004E18[] __attribute__((aligned (2))) = dganontika_room_17Tex_004E18; -#endif - -#define dganontika_room_17Tex_003E18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_003E18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17Tex_003E18[] = dganontika_room_17Tex_003E18; -#else -static const char ganontika_room_17Tex_003E18[] __attribute__((aligned (2))) = dganontika_room_17Tex_003E18; -#endif - -#define dganontika_room_17Tex_002E18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_002E18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17Tex_002E18[] = dganontika_room_17Tex_002E18; -#else -static const char ganontika_room_17Tex_002E18[] __attribute__((aligned (2))) = dganontika_room_17Tex_002E18; -#endif - -#define dganontika_room_17DL_001448 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_001448" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17DL_001448[] = dganontika_room_17DL_001448; -#else -static const char ganontika_room_17DL_001448[] __attribute__((aligned (2))) = dganontika_room_17DL_001448; -#endif - -#define dganontika_room_17Tex_006E18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_006E18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17Tex_006E18[] = dganontika_room_17Tex_006E18; -#else -static const char ganontika_room_17Tex_006E18[] __attribute__((aligned (2))) = dganontika_room_17Tex_006E18; -#endif - -#define dganontika_room_17DL_001720 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_001720" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17DL_001720[] = dganontika_room_17DL_001720; -#else -static const char ganontika_room_17DL_001720[] __attribute__((aligned (2))) = dganontika_room_17DL_001720; -#endif - -#define dganontika_room_17DL_001AB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_001AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17DL_001AB8[] = dganontika_room_17DL_001AB8; -#else -static const char ganontika_room_17DL_001AB8[] __attribute__((aligned (2))) = dganontika_room_17DL_001AB8; -#endif - -#define dganontika_room_17DL_001DE0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_001DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17DL_001DE0[] = dganontika_room_17DL_001DE0; -#else -static const char ganontika_room_17DL_001DE0[] __attribute__((aligned (2))) = dganontika_room_17DL_001DE0; -#endif - -#define dganontika_room_17DL_002908 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_002908" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17DL_002908[] = dganontika_room_17DL_002908; -#else -static const char ganontika_room_17DL_002908[] __attribute__((aligned (2))) = dganontika_room_17DL_002908; -#endif - -#define dganontika_room_17Tex_006618 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_006618" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_17Tex_006618[] = dganontika_room_17Tex_006618; -#else -static const char ganontika_room_17Tex_006618[] __attribute__((aligned (2))) = dganontika_room_17Tex_006618; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_17DL_000B30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_000B30" +static const ALIGN_ASSET(2) char ganontika_room_17DL_000B30[] = dganontika_room_17DL_000B30; + +#define dganontika_room_17Tex_005618 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_005618" +static const ALIGN_ASSET(2) char ganontika_room_17Tex_005618[] = dganontika_room_17Tex_005618; + +#define dganontika_room_17Tex_007618 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_007618" +static const ALIGN_ASSET(2) char ganontika_room_17Tex_007618[] = dganontika_room_17Tex_007618; + +#define dganontika_room_17Tex_002A18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_002A18" +static const ALIGN_ASSET(2) char ganontika_room_17Tex_002A18[] = dganontika_room_17Tex_002A18; + +#define dganontika_room_17DL_0023B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_0023B8" +static const ALIGN_ASSET(2) char ganontika_room_17DL_0023B8[] = dganontika_room_17DL_0023B8; + +#define dganontika_room_17Tex_004E18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_004E18" +static const ALIGN_ASSET(2) char ganontika_room_17Tex_004E18[] = dganontika_room_17Tex_004E18; + +#define dganontika_room_17Tex_003E18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_003E18" +static const ALIGN_ASSET(2) char ganontika_room_17Tex_003E18[] = dganontika_room_17Tex_003E18; + +#define dganontika_room_17Tex_002E18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_002E18" +static const ALIGN_ASSET(2) char ganontika_room_17Tex_002E18[] = dganontika_room_17Tex_002E18; + +#define dganontika_room_17DL_001448 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_001448" +static const ALIGN_ASSET(2) char ganontika_room_17DL_001448[] = dganontika_room_17DL_001448; + +#define dganontika_room_17Tex_006E18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_006E18" +static const ALIGN_ASSET(2) char ganontika_room_17Tex_006E18[] = dganontika_room_17Tex_006E18; + +#define dganontika_room_17DL_001720 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_001720" +static const ALIGN_ASSET(2) char ganontika_room_17DL_001720[] = dganontika_room_17DL_001720; + +#define dganontika_room_17DL_001AB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_001AB8" +static const ALIGN_ASSET(2) char ganontika_room_17DL_001AB8[] = dganontika_room_17DL_001AB8; + +#define dganontika_room_17DL_001DE0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_001DE0" +static const ALIGN_ASSET(2) char ganontika_room_17DL_001DE0[] = dganontika_room_17DL_001DE0; + +#define dganontika_room_17DL_002908 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17DL_002908" +static const ALIGN_ASSET(2) char ganontika_room_17DL_002908[] = dganontika_room_17DL_002908; + +#define dganontika_room_17Tex_006618 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_17Tex_006618" +static const ALIGN_ASSET(2) char ganontika_room_17Tex_006618[] = dganontika_room_17Tex_006618; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_18.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_18.h index ee62ba37a..d5cb5fc57 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_18.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_18.h @@ -1,170 +1,75 @@ #pragma once -#define dganontika_room_18DL_002E80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_002E80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_002E80[] = dganontika_room_18DL_002E80; -#else -static const char ganontika_room_18DL_002E80[] __attribute__((aligned (2))) = dganontika_room_18DL_002E80; -#endif - -#define dganontika_room_18Tex_004380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_004380" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_004380[] = dganontika_room_18Tex_004380; -#else -static const char ganontika_room_18Tex_004380[] __attribute__((aligned (2))) = dganontika_room_18Tex_004380; -#endif - -#define dganontika_room_18DL_0028E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_0028E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_0028E0[] = dganontika_room_18DL_0028E0; -#else -static const char ganontika_room_18DL_0028E0[] __attribute__((aligned (2))) = dganontika_room_18DL_0028E0; -#endif - -#define dganontika_room_18Tex_007F80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_007F80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_007F80[] = dganontika_room_18Tex_007F80; -#else -static const char ganontika_room_18Tex_007F80[] __attribute__((aligned (2))) = dganontika_room_18Tex_007F80; -#endif - -#define dganontika_room_18DL_001720 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_001720" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_001720[] = dganontika_room_18DL_001720; -#else -static const char ganontika_room_18DL_001720[] __attribute__((aligned (2))) = dganontika_room_18DL_001720; -#endif - -#define dganontika_room_18Tex_009980 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_009980" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_009980[] = dganontika_room_18Tex_009980; -#else -static const char ganontika_room_18Tex_009980[] __attribute__((aligned (2))) = dganontika_room_18Tex_009980; -#endif - -#define dganontika_room_18TLUT_004360 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18TLUT_004360" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18TLUT_004360[] = dganontika_room_18TLUT_004360; -#else -static const char ganontika_room_18TLUT_004360[] __attribute__((aligned (2))) = dganontika_room_18TLUT_004360; -#endif - -#define dganontika_room_18DL_00B5B0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_00B5B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_00B5B0[] = dganontika_room_18DL_00B5B0; -#else -static const char ganontika_room_18DL_00B5B0[] __attribute__((aligned (2))) = dganontika_room_18DL_00B5B0; -#endif - -#define dganontika_room_18Tex_00B6E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_00B6E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_00B6E0[] = dganontika_room_18Tex_00B6E0; -#else -static const char ganontika_room_18Tex_00B6E0[] __attribute__((aligned (2))) = dganontika_room_18Tex_00B6E0; -#endif - -#define dganontika_room_18DL_001FC8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_001FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_001FC8[] = dganontika_room_18DL_001FC8; -#else -static const char ganontika_room_18DL_001FC8[] __attribute__((aligned (2))) = dganontika_room_18DL_001FC8; -#endif - -#define dganontika_room_18DL_003108 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_003108" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_003108[] = dganontika_room_18DL_003108; -#else -static const char ganontika_room_18DL_003108[] __attribute__((aligned (2))) = dganontika_room_18DL_003108; -#endif - -#define dganontika_room_18Tex_00A380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_00A380" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_00A380[] = dganontika_room_18Tex_00A380; -#else -static const char ganontika_room_18Tex_00A380[] __attribute__((aligned (2))) = dganontika_room_18Tex_00A380; -#endif - -#define dganontika_room_18DL_003530 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_003530" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_003530[] = dganontika_room_18DL_003530; -#else -static const char ganontika_room_18DL_003530[] __attribute__((aligned (2))) = dganontika_room_18DL_003530; -#endif - -#define dganontika_room_18Tex_009180 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_009180" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_009180[] = dganontika_room_18Tex_009180; -#else -static const char ganontika_room_18Tex_009180[] __attribute__((aligned (2))) = dganontika_room_18Tex_009180; -#endif - -#define dganontika_room_18Tex_008F80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_008F80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_008F80[] = dganontika_room_18Tex_008F80; -#else -static const char ganontika_room_18Tex_008F80[] __attribute__((aligned (2))) = dganontika_room_18Tex_008F80; -#endif - -#define dganontika_room_18DL_003B70 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_003B70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_003B70[] = dganontika_room_18DL_003B70; -#else -static const char ganontika_room_18DL_003B70[] __attribute__((aligned (2))) = dganontika_room_18DL_003B70; -#endif - -#define dganontika_room_18Tex_00A180 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_00A180" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_00A180[] = dganontika_room_18Tex_00A180; -#else -static const char ganontika_room_18Tex_00A180[] __attribute__((aligned (2))) = dganontika_room_18Tex_00A180; -#endif - -#define dganontika_room_18DL_003E48 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_003E48" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_003E48[] = dganontika_room_18DL_003E48; -#else -static const char ganontika_room_18DL_003E48[] __attribute__((aligned (2))) = dganontika_room_18DL_003E48; -#endif - -#define dganontika_room_18Tex_005780 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_005780" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_005780[] = dganontika_room_18Tex_005780; -#else -static const char ganontika_room_18Tex_005780[] __attribute__((aligned (2))) = dganontika_room_18Tex_005780; -#endif - -#define dganontika_room_18Tex_006780 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_006780" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_006780[] = dganontika_room_18Tex_006780; -#else -static const char ganontika_room_18Tex_006780[] __attribute__((aligned (2))) = dganontika_room_18Tex_006780; -#endif - -#define dganontika_room_18Tex_007780 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_007780" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_007780[] = dganontika_room_18Tex_007780; -#else -static const char ganontika_room_18Tex_007780[] __attribute__((aligned (2))) = dganontika_room_18Tex_007780; -#endif - -#define dganontika_room_18DL_004188 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_004188" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_004188[] = dganontika_room_18DL_004188; -#else -static const char ganontika_room_18DL_004188[] __attribute__((aligned (2))) = dganontika_room_18DL_004188; -#endif - -#define dganontika_room_18DL_000D70 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_000D70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18DL_000D70[] = dganontika_room_18DL_000D70; -#else -static const char ganontika_room_18DL_000D70[] __attribute__((aligned (2))) = dganontika_room_18DL_000D70; -#endif - -#define dganontika_room_18Tex_005380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_005380" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_18Tex_005380[] = dganontika_room_18Tex_005380; -#else -static const char ganontika_room_18Tex_005380[] __attribute__((aligned (2))) = dganontika_room_18Tex_005380; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_18DL_002E80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_002E80" +static const ALIGN_ASSET(2) char ganontika_room_18DL_002E80[] = dganontika_room_18DL_002E80; + +#define dganontika_room_18Tex_004380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_004380" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_004380[] = dganontika_room_18Tex_004380; + +#define dganontika_room_18DL_0028E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_0028E0" +static const ALIGN_ASSET(2) char ganontika_room_18DL_0028E0[] = dganontika_room_18DL_0028E0; + +#define dganontika_room_18Tex_007F80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_007F80" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_007F80[] = dganontika_room_18Tex_007F80; + +#define dganontika_room_18DL_001720 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_001720" +static const ALIGN_ASSET(2) char ganontika_room_18DL_001720[] = dganontika_room_18DL_001720; + +#define dganontika_room_18Tex_009980 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_009980" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_009980[] = dganontika_room_18Tex_009980; + +#define dganontika_room_18TLUT_004360 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18TLUT_004360" +static const ALIGN_ASSET(2) char ganontika_room_18TLUT_004360[] = dganontika_room_18TLUT_004360; + +#define dganontika_room_18DL_00B5B0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_00B5B0" +static const ALIGN_ASSET(2) char ganontika_room_18DL_00B5B0[] = dganontika_room_18DL_00B5B0; + +#define dganontika_room_18Tex_00B6E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_00B6E0" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_00B6E0[] = dganontika_room_18Tex_00B6E0; + +#define dganontika_room_18DL_001FC8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_001FC8" +static const ALIGN_ASSET(2) char ganontika_room_18DL_001FC8[] = dganontika_room_18DL_001FC8; + +#define dganontika_room_18DL_003108 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_003108" +static const ALIGN_ASSET(2) char ganontika_room_18DL_003108[] = dganontika_room_18DL_003108; + +#define dganontika_room_18Tex_00A380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_00A380" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_00A380[] = dganontika_room_18Tex_00A380; + +#define dganontika_room_18DL_003530 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_003530" +static const ALIGN_ASSET(2) char ganontika_room_18DL_003530[] = dganontika_room_18DL_003530; + +#define dganontika_room_18Tex_009180 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_009180" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_009180[] = dganontika_room_18Tex_009180; + +#define dganontika_room_18Tex_008F80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_008F80" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_008F80[] = dganontika_room_18Tex_008F80; + +#define dganontika_room_18DL_003B70 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_003B70" +static const ALIGN_ASSET(2) char ganontika_room_18DL_003B70[] = dganontika_room_18DL_003B70; + +#define dganontika_room_18Tex_00A180 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_00A180" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_00A180[] = dganontika_room_18Tex_00A180; + +#define dganontika_room_18DL_003E48 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_003E48" +static const ALIGN_ASSET(2) char ganontika_room_18DL_003E48[] = dganontika_room_18DL_003E48; + +#define dganontika_room_18Tex_005780 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_005780" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_005780[] = dganontika_room_18Tex_005780; + +#define dganontika_room_18Tex_006780 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_006780" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_006780[] = dganontika_room_18Tex_006780; + +#define dganontika_room_18Tex_007780 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_007780" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_007780[] = dganontika_room_18Tex_007780; + +#define dganontika_room_18DL_004188 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_004188" +static const ALIGN_ASSET(2) char ganontika_room_18DL_004188[] = dganontika_room_18DL_004188; + +#define dganontika_room_18DL_000D70 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18DL_000D70" +static const ALIGN_ASSET(2) char ganontika_room_18DL_000D70[] = dganontika_room_18DL_000D70; + +#define dganontika_room_18Tex_005380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_18Tex_005380" +static const ALIGN_ASSET(2) char ganontika_room_18Tex_005380[] = dganontika_room_18Tex_005380; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_19.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_19.h index 53cd6c524..caf4496a1 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_19.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_19.h @@ -1,93 +1,42 @@ #pragma once -#define dganontika_room_19DL_001260 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_001260" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19DL_001260[] = dganontika_room_19DL_001260; -#else -static const char ganontika_room_19DL_001260[] __attribute__((aligned (2))) = dganontika_room_19DL_001260; -#endif - -#define dganontika_room_19Tex_006B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_006B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19Tex_006B40[] = dganontika_room_19Tex_006B40; -#else -static const char ganontika_room_19Tex_006B40[] __attribute__((aligned (2))) = dganontika_room_19Tex_006B40; -#endif - -#define dganontika_room_19Tex_006D40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_006D40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19Tex_006D40[] = dganontika_room_19Tex_006D40; -#else -static const char ganontika_room_19Tex_006D40[] __attribute__((aligned (2))) = dganontika_room_19Tex_006D40; -#endif - -#define dganontika_room_19Tex_006340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_006340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19Tex_006340[] = dganontika_room_19Tex_006340; -#else -static const char ganontika_room_19Tex_006340[] __attribute__((aligned (2))) = dganontika_room_19Tex_006340; -#endif - -#define dganontika_room_19Tex_004B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_004B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19Tex_004B40[] = dganontika_room_19Tex_004B40; -#else -static const char ganontika_room_19Tex_004B40[] __attribute__((aligned (2))) = dganontika_room_19Tex_004B40; -#endif - -#define dganontika_room_19Tex_005B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_005B40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19Tex_005B40[] = dganontika_room_19Tex_005B40; -#else -static const char ganontika_room_19Tex_005B40[] __attribute__((aligned (2))) = dganontika_room_19Tex_005B40; -#endif - -#define dganontika_room_19Tex_004340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_004340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19Tex_004340[] = dganontika_room_19Tex_004340; -#else -static const char ganontika_room_19Tex_004340[] __attribute__((aligned (2))) = dganontika_room_19Tex_004340; -#endif - -#define dganontika_room_19DL_0024F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_0024F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19DL_0024F8[] = dganontika_room_19DL_0024F8; -#else -static const char ganontika_room_19DL_0024F8[] __attribute__((aligned (2))) = dganontika_room_19DL_0024F8; -#endif - -#define dganontika_room_19Tex_005340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_005340" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19Tex_005340[] = dganontika_room_19Tex_005340; -#else -static const char ganontika_room_19Tex_005340[] __attribute__((aligned (2))) = dganontika_room_19Tex_005340; -#endif - -#define dganontika_room_19DL_002CF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_002CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19DL_002CF0[] = dganontika_room_19DL_002CF0; -#else -static const char ganontika_room_19DL_002CF0[] __attribute__((aligned (2))) = dganontika_room_19DL_002CF0; -#endif - -#define dganontika_room_19DL_003470 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_003470" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19DL_003470[] = dganontika_room_19DL_003470; -#else -static const char ganontika_room_19DL_003470[] __attribute__((aligned (2))) = dganontika_room_19DL_003470; -#endif - -#define dganontika_room_19DL_003C80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_003C80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19DL_003C80[] = dganontika_room_19DL_003C80; -#else -static const char ganontika_room_19DL_003C80[] __attribute__((aligned (2))) = dganontika_room_19DL_003C80; -#endif - -#define dganontika_room_19DL_004170 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_004170" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_19DL_004170[] = dganontika_room_19DL_004170; -#else -static const char ganontika_room_19DL_004170[] __attribute__((aligned (2))) = dganontika_room_19DL_004170; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_19DL_001260 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_001260" +static const ALIGN_ASSET(2) char ganontika_room_19DL_001260[] = dganontika_room_19DL_001260; + +#define dganontika_room_19Tex_006B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_006B40" +static const ALIGN_ASSET(2) char ganontika_room_19Tex_006B40[] = dganontika_room_19Tex_006B40; + +#define dganontika_room_19Tex_006D40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_006D40" +static const ALIGN_ASSET(2) char ganontika_room_19Tex_006D40[] = dganontika_room_19Tex_006D40; + +#define dganontika_room_19Tex_006340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_006340" +static const ALIGN_ASSET(2) char ganontika_room_19Tex_006340[] = dganontika_room_19Tex_006340; + +#define dganontika_room_19Tex_004B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_004B40" +static const ALIGN_ASSET(2) char ganontika_room_19Tex_004B40[] = dganontika_room_19Tex_004B40; + +#define dganontika_room_19Tex_005B40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_005B40" +static const ALIGN_ASSET(2) char ganontika_room_19Tex_005B40[] = dganontika_room_19Tex_005B40; + +#define dganontika_room_19Tex_004340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_004340" +static const ALIGN_ASSET(2) char ganontika_room_19Tex_004340[] = dganontika_room_19Tex_004340; + +#define dganontika_room_19DL_0024F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_0024F8" +static const ALIGN_ASSET(2) char ganontika_room_19DL_0024F8[] = dganontika_room_19DL_0024F8; + +#define dganontika_room_19Tex_005340 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19Tex_005340" +static const ALIGN_ASSET(2) char ganontika_room_19Tex_005340[] = dganontika_room_19Tex_005340; + +#define dganontika_room_19DL_002CF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_002CF0" +static const ALIGN_ASSET(2) char ganontika_room_19DL_002CF0[] = dganontika_room_19DL_002CF0; + +#define dganontika_room_19DL_003470 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_003470" +static const ALIGN_ASSET(2) char ganontika_room_19DL_003470[] = dganontika_room_19DL_003470; + +#define dganontika_room_19DL_003C80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_003C80" +static const ALIGN_ASSET(2) char ganontika_room_19DL_003C80[] = dganontika_room_19DL_003C80; + +#define dganontika_room_19DL_004170 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_19DL_004170" +static const ALIGN_ASSET(2) char ganontika_room_19DL_004170[] = dganontika_room_19DL_004170; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_2.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_2.h index a9b6d0001..3fbfb5799 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_2.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_2.h @@ -1,121 +1,54 @@ #pragma once -#define dganontika_room_2DL_0006D0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_0006D0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_0006D0[] = dganontika_room_2DL_0006D0; -#else -static const char ganontika_room_2DL_0006D0[] __attribute__((aligned (2))) = dganontika_room_2DL_0006D0; -#endif - -#define dganontika_room_2Tex_004FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_004FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2Tex_004FD8[] = dganontika_room_2Tex_004FD8; -#else -static const char ganontika_room_2Tex_004FD8[] __attribute__((aligned (2))) = dganontika_room_2Tex_004FD8; -#endif - -#define dganontika_room_2Tex_0047D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_0047D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2Tex_0047D8[] = dganontika_room_2Tex_0047D8; -#else -static const char ganontika_room_2Tex_0047D8[] __attribute__((aligned (2))) = dganontika_room_2Tex_0047D8; -#endif - -#define dganontika_room_2DL_000D10 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_000D10" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_000D10[] = dganontika_room_2DL_000D10; -#else -static const char ganontika_room_2DL_000D10[] __attribute__((aligned (2))) = dganontika_room_2DL_000D10; -#endif - -#define dganontika_room_2DL_002E70 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_002E70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_002E70[] = dganontika_room_2DL_002E70; -#else -static const char ganontika_room_2DL_002E70[] __attribute__((aligned (2))) = dganontika_room_2DL_002E70; -#endif - -#define dganontika_room_2DL_0014A8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_0014A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_0014A8[] = dganontika_room_2DL_0014A8; -#else -static const char ganontika_room_2DL_0014A8[] __attribute__((aligned (2))) = dganontika_room_2DL_0014A8; -#endif - -#define dganontika_room_2Tex_0057D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_0057D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2Tex_0057D8[] = dganontika_room_2Tex_0057D8; -#else -static const char ganontika_room_2Tex_0057D8[] __attribute__((aligned (2))) = dganontika_room_2Tex_0057D8; -#endif - -#define dganontika_room_2DL_001B68 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_001B68" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_001B68[] = dganontika_room_2DL_001B68; -#else -static const char ganontika_room_2DL_001B68[] __attribute__((aligned (2))) = dganontika_room_2DL_001B68; -#endif - -#define dganontika_room_2Tex_002FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_002FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2Tex_002FD8[] = dganontika_room_2Tex_002FD8; -#else -static const char ganontika_room_2Tex_002FD8[] __attribute__((aligned (2))) = dganontika_room_2Tex_002FD8; -#endif - -#define dganontika_room_2DL_001F20 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_001F20[] = dganontika_room_2DL_001F20; -#else -static const char ganontika_room_2DL_001F20[] __attribute__((aligned (2))) = dganontika_room_2DL_001F20; -#endif - -#define dganontika_room_2Tex_003FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_003FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2Tex_003FD8[] = dganontika_room_2Tex_003FD8; -#else -static const char ganontika_room_2Tex_003FD8[] __attribute__((aligned (2))) = dganontika_room_2Tex_003FD8; -#endif - -#define dganontika_room_2DL_002498 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_002498" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_002498[] = dganontika_room_2DL_002498; -#else -static const char ganontika_room_2DL_002498[] __attribute__((aligned (2))) = dganontika_room_2DL_002498; -#endif - -#define dganontika_room_2Tex_0067D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_0067D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2Tex_0067D8[] = dganontika_room_2Tex_0067D8; -#else -static const char ganontika_room_2Tex_0067D8[] __attribute__((aligned (2))) = dganontika_room_2Tex_0067D8; -#endif - -#define dganontika_room_2Tex_005FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_005FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2Tex_005FD8[] = dganontika_room_2Tex_005FD8; -#else -static const char ganontika_room_2Tex_005FD8[] __attribute__((aligned (2))) = dganontika_room_2Tex_005FD8; -#endif - -#define dganontika_room_2DL_002AE0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_002AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_002AE0[] = dganontika_room_2DL_002AE0; -#else -static const char ganontika_room_2DL_002AE0[] __attribute__((aligned (2))) = dganontika_room_2DL_002AE0; -#endif - -#define dganontika_room_2Tex_0037D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_0037D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2Tex_0037D8[] = dganontika_room_2Tex_0037D8; -#else -static const char ganontika_room_2Tex_0037D8[] __attribute__((aligned (2))) = dganontika_room_2Tex_0037D8; -#endif - -#define dganontika_room_2DL_000F00 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_000F00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_2DL_000F00[] = dganontika_room_2DL_000F00; -#else -static const char ganontika_room_2DL_000F00[] __attribute__((aligned (2))) = dganontika_room_2DL_000F00; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_2DL_0006D0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_0006D0" +static const ALIGN_ASSET(2) char ganontika_room_2DL_0006D0[] = dganontika_room_2DL_0006D0; + +#define dganontika_room_2Tex_004FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_004FD8" +static const ALIGN_ASSET(2) char ganontika_room_2Tex_004FD8[] = dganontika_room_2Tex_004FD8; + +#define dganontika_room_2Tex_0047D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_0047D8" +static const ALIGN_ASSET(2) char ganontika_room_2Tex_0047D8[] = dganontika_room_2Tex_0047D8; + +#define dganontika_room_2DL_000D10 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_000D10" +static const ALIGN_ASSET(2) char ganontika_room_2DL_000D10[] = dganontika_room_2DL_000D10; + +#define dganontika_room_2DL_002E70 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_002E70" +static const ALIGN_ASSET(2) char ganontika_room_2DL_002E70[] = dganontika_room_2DL_002E70; + +#define dganontika_room_2DL_0014A8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_0014A8" +static const ALIGN_ASSET(2) char ganontika_room_2DL_0014A8[] = dganontika_room_2DL_0014A8; + +#define dganontika_room_2Tex_0057D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_0057D8" +static const ALIGN_ASSET(2) char ganontika_room_2Tex_0057D8[] = dganontika_room_2Tex_0057D8; + +#define dganontika_room_2DL_001B68 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_001B68" +static const ALIGN_ASSET(2) char ganontika_room_2DL_001B68[] = dganontika_room_2DL_001B68; + +#define dganontika_room_2Tex_002FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_002FD8" +static const ALIGN_ASSET(2) char ganontika_room_2Tex_002FD8[] = dganontika_room_2Tex_002FD8; + +#define dganontika_room_2DL_001F20 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_001F20" +static const ALIGN_ASSET(2) char ganontika_room_2DL_001F20[] = dganontika_room_2DL_001F20; + +#define dganontika_room_2Tex_003FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_003FD8" +static const ALIGN_ASSET(2) char ganontika_room_2Tex_003FD8[] = dganontika_room_2Tex_003FD8; + +#define dganontika_room_2DL_002498 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_002498" +static const ALIGN_ASSET(2) char ganontika_room_2DL_002498[] = dganontika_room_2DL_002498; + +#define dganontika_room_2Tex_0067D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_0067D8" +static const ALIGN_ASSET(2) char ganontika_room_2Tex_0067D8[] = dganontika_room_2Tex_0067D8; + +#define dganontika_room_2Tex_005FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_005FD8" +static const ALIGN_ASSET(2) char ganontika_room_2Tex_005FD8[] = dganontika_room_2Tex_005FD8; + +#define dganontika_room_2DL_002AE0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_002AE0" +static const ALIGN_ASSET(2) char ganontika_room_2DL_002AE0[] = dganontika_room_2DL_002AE0; + +#define dganontika_room_2Tex_0037D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2Tex_0037D8" +static const ALIGN_ASSET(2) char ganontika_room_2Tex_0037D8[] = dganontika_room_2Tex_0037D8; + +#define dganontika_room_2DL_000F00 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_2DL_000F00" +static const ALIGN_ASSET(2) char ganontika_room_2DL_000F00[] = dganontika_room_2DL_000F00; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_3.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_3.h index b21ca9944..cf0af584a 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_3.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_3.h @@ -1,149 +1,66 @@ #pragma once -#define dganontika_room_3DL_003410 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_003410" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_003410[] = dganontika_room_3DL_003410; -#else -static const char ganontika_room_3DL_003410[] __attribute__((aligned (2))) = dganontika_room_3DL_003410; -#endif - -#define dganontika_room_3Tex_0066D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_0066D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_0066D8[] = dganontika_room_3Tex_0066D8; -#else -static const char ganontika_room_3Tex_0066D8[] __attribute__((aligned (2))) = dganontika_room_3Tex_0066D8; -#endif - -#define dganontika_room_3DL_003838 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_003838" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_003838[] = dganontika_room_3DL_003838; -#else -static const char ganontika_room_3DL_003838[] __attribute__((aligned (2))) = dganontika_room_3DL_003838; -#endif - -#define dganontika_room_3DL_003A60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_003A60" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_003A60[] = dganontika_room_3DL_003A60; -#else -static const char ganontika_room_3DL_003A60[] __attribute__((aligned (2))) = dganontika_room_3DL_003A60; -#endif - -#define dganontika_room_3Tex_006ED8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_006ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_006ED8[] = dganontika_room_3Tex_006ED8; -#else -static const char ganontika_room_3Tex_006ED8[] __attribute__((aligned (2))) = dganontika_room_3Tex_006ED8; -#endif - -#define dganontika_room_3TLUT_003EB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3TLUT_003EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3TLUT_003EB8[] = dganontika_room_3TLUT_003EB8; -#else -static const char ganontika_room_3TLUT_003EB8[] __attribute__((aligned (2))) = dganontika_room_3TLUT_003EB8; -#endif - -#define dganontika_room_3DL_008910 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_008910" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_008910[] = dganontika_room_3DL_008910; -#else -static const char ganontika_room_3DL_008910[] __attribute__((aligned (2))) = dganontika_room_3DL_008910; -#endif - -#define dganontika_room_3Tex_008A38 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_008A38" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_008A38[] = dganontika_room_3Tex_008A38; -#else -static const char ganontika_room_3Tex_008A38[] __attribute__((aligned (2))) = dganontika_room_3Tex_008A38; -#endif - -#define dganontika_room_3DL_003D40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_003D40" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_003D40[] = dganontika_room_3DL_003D40; -#else -static const char ganontika_room_3DL_003D40[] __attribute__((aligned (2))) = dganontika_room_3DL_003D40; -#endif - -#define dganontika_room_3DL_000FF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_000FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_000FF0[] = dganontika_room_3DL_000FF0; -#else -static const char ganontika_room_3DL_000FF0[] __attribute__((aligned (2))) = dganontika_room_3DL_000FF0; -#endif - -#define dganontika_room_3Tex_004ED8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_004ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_004ED8[] = dganontika_room_3Tex_004ED8; -#else -static const char ganontika_room_3Tex_004ED8[] __attribute__((aligned (2))) = dganontika_room_3Tex_004ED8; -#endif - -#define dganontika_room_3DL_001550 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_001550[] = dganontika_room_3DL_001550; -#else -static const char ganontika_room_3DL_001550[] __attribute__((aligned (2))) = dganontika_room_3DL_001550; -#endif - -#define dganontika_room_3Tex_005ED8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_005ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_005ED8[] = dganontika_room_3Tex_005ED8; -#else -static const char ganontika_room_3Tex_005ED8[] __attribute__((aligned (2))) = dganontika_room_3Tex_005ED8; -#endif - -#define dganontika_room_3Tex_0056D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_0056D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_0056D8[] = dganontika_room_3Tex_0056D8; -#else -static const char ganontika_room_3Tex_0056D8[] __attribute__((aligned (2))) = dganontika_room_3Tex_0056D8; -#endif - -#define dganontika_room_3DL_001990 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_001990" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_001990[] = dganontika_room_3DL_001990; -#else -static const char ganontika_room_3DL_001990[] __attribute__((aligned (2))) = dganontika_room_3DL_001990; -#endif - -#define dganontika_room_3Tex_003ED8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_003ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_003ED8[] = dganontika_room_3Tex_003ED8; -#else -static const char ganontika_room_3Tex_003ED8[] __attribute__((aligned (2))) = dganontika_room_3Tex_003ED8; -#endif - -#define dganontika_room_3DL_001C70 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_001C70" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_001C70[] = dganontika_room_3DL_001C70; -#else -static const char ganontika_room_3DL_001C70[] __attribute__((aligned (2))) = dganontika_room_3DL_001C70; -#endif - -#define dganontika_room_3Tex_0046D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_0046D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_0046D8[] = dganontika_room_3Tex_0046D8; -#else -static const char ganontika_room_3Tex_0046D8[] __attribute__((aligned (2))) = dganontika_room_3Tex_0046D8; -#endif - -#define dganontika_room_3DL_0028E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_0028E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_0028E8[] = dganontika_room_3DL_0028E8; -#else -static const char ganontika_room_3DL_0028E8[] __attribute__((aligned (2))) = dganontika_room_3DL_0028E8; -#endif - -#define dganontika_room_3DL_002F48 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_002F48" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3DL_002F48[] = dganontika_room_3DL_002F48; -#else -static const char ganontika_room_3DL_002F48[] __attribute__((aligned (2))) = dganontika_room_3DL_002F48; -#endif - -#define dganontika_room_3Tex_0076D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_0076D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_3Tex_0076D8[] = dganontika_room_3Tex_0076D8; -#else -static const char ganontika_room_3Tex_0076D8[] __attribute__((aligned (2))) = dganontika_room_3Tex_0076D8; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_3DL_003410 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_003410" +static const ALIGN_ASSET(2) char ganontika_room_3DL_003410[] = dganontika_room_3DL_003410; + +#define dganontika_room_3Tex_0066D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_0066D8" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_0066D8[] = dganontika_room_3Tex_0066D8; + +#define dganontika_room_3DL_003838 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_003838" +static const ALIGN_ASSET(2) char ganontika_room_3DL_003838[] = dganontika_room_3DL_003838; + +#define dganontika_room_3DL_003A60 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_003A60" +static const ALIGN_ASSET(2) char ganontika_room_3DL_003A60[] = dganontika_room_3DL_003A60; + +#define dganontika_room_3Tex_006ED8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_006ED8" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_006ED8[] = dganontika_room_3Tex_006ED8; + +#define dganontika_room_3TLUT_003EB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3TLUT_003EB8" +static const ALIGN_ASSET(2) char ganontika_room_3TLUT_003EB8[] = dganontika_room_3TLUT_003EB8; + +#define dganontika_room_3DL_008910 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_008910" +static const ALIGN_ASSET(2) char ganontika_room_3DL_008910[] = dganontika_room_3DL_008910; + +#define dganontika_room_3Tex_008A38 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_008A38" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_008A38[] = dganontika_room_3Tex_008A38; + +#define dganontika_room_3DL_003D40 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_003D40" +static const ALIGN_ASSET(2) char ganontika_room_3DL_003D40[] = dganontika_room_3DL_003D40; + +#define dganontika_room_3DL_000FF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_000FF0" +static const ALIGN_ASSET(2) char ganontika_room_3DL_000FF0[] = dganontika_room_3DL_000FF0; + +#define dganontika_room_3Tex_004ED8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_004ED8" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_004ED8[] = dganontika_room_3Tex_004ED8; + +#define dganontika_room_3DL_001550 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_001550" +static const ALIGN_ASSET(2) char ganontika_room_3DL_001550[] = dganontika_room_3DL_001550; + +#define dganontika_room_3Tex_005ED8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_005ED8" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_005ED8[] = dganontika_room_3Tex_005ED8; + +#define dganontika_room_3Tex_0056D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_0056D8" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_0056D8[] = dganontika_room_3Tex_0056D8; + +#define dganontika_room_3DL_001990 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_001990" +static const ALIGN_ASSET(2) char ganontika_room_3DL_001990[] = dganontika_room_3DL_001990; + +#define dganontika_room_3Tex_003ED8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_003ED8" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_003ED8[] = dganontika_room_3Tex_003ED8; + +#define dganontika_room_3DL_001C70 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_001C70" +static const ALIGN_ASSET(2) char ganontika_room_3DL_001C70[] = dganontika_room_3DL_001C70; + +#define dganontika_room_3Tex_0046D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_0046D8" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_0046D8[] = dganontika_room_3Tex_0046D8; + +#define dganontika_room_3DL_0028E8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_0028E8" +static const ALIGN_ASSET(2) char ganontika_room_3DL_0028E8[] = dganontika_room_3DL_0028E8; + +#define dganontika_room_3DL_002F48 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3DL_002F48" +static const ALIGN_ASSET(2) char ganontika_room_3DL_002F48[] = dganontika_room_3DL_002F48; + +#define dganontika_room_3Tex_0076D8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_3Tex_0076D8" +static const ALIGN_ASSET(2) char ganontika_room_3Tex_0076D8[] = dganontika_room_3Tex_0076D8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_4.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_4.h index e6b1fea90..5f9e117ef 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_4.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_4.h @@ -1,86 +1,39 @@ #pragma once -#define dganontika_room_4DL_001440 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_001440" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4DL_001440[] = dganontika_room_4DL_001440; -#else -static const char ganontika_room_4DL_001440[] __attribute__((aligned (2))) = dganontika_room_4DL_001440; -#endif - -#define dganontika_room_4Tex_006A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_006A88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4Tex_006A88[] = dganontika_room_4Tex_006A88; -#else -static const char ganontika_room_4Tex_006A88[] __attribute__((aligned (2))) = dganontika_room_4Tex_006A88; -#endif - -#define dganontika_room_4Tex_006C88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_006C88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4Tex_006C88[] = dganontika_room_4Tex_006C88; -#else -static const char ganontika_room_4Tex_006C88[] __attribute__((aligned (2))) = dganontika_room_4Tex_006C88; -#endif - -#define dganontika_room_4Tex_006288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_006288" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4Tex_006288[] = dganontika_room_4Tex_006288; -#else -static const char ganontika_room_4Tex_006288[] __attribute__((aligned (2))) = dganontika_room_4Tex_006288; -#endif - -#define dganontika_room_4Tex_004A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_004A88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4Tex_004A88[] = dganontika_room_4Tex_004A88; -#else -static const char ganontika_room_4Tex_004A88[] __attribute__((aligned (2))) = dganontika_room_4Tex_004A88; -#endif - -#define dganontika_room_4Tex_005A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_005A88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4Tex_005A88[] = dganontika_room_4Tex_005A88; -#else -static const char ganontika_room_4Tex_005A88[] __attribute__((aligned (2))) = dganontika_room_4Tex_005A88; -#endif - -#define dganontika_room_4Tex_004288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_004288" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4Tex_004288[] = dganontika_room_4Tex_004288; -#else -static const char ganontika_room_4Tex_004288[] __attribute__((aligned (2))) = dganontika_room_4Tex_004288; -#endif - -#define dganontika_room_4DL_002850 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_002850" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4DL_002850[] = dganontika_room_4DL_002850; -#else -static const char ganontika_room_4DL_002850[] __attribute__((aligned (2))) = dganontika_room_4DL_002850; -#endif - -#define dganontika_room_4Tex_005288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_005288" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4Tex_005288[] = dganontika_room_4Tex_005288; -#else -static const char ganontika_room_4Tex_005288[] __attribute__((aligned (2))) = dganontika_room_4Tex_005288; -#endif - -#define dganontika_room_4DL_003048 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4DL_003048[] = dganontika_room_4DL_003048; -#else -static const char ganontika_room_4DL_003048[] __attribute__((aligned (2))) = dganontika_room_4DL_003048; -#endif - -#define dganontika_room_4DL_0037C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_0037C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4DL_0037C8[] = dganontika_room_4DL_0037C8; -#else -static const char ganontika_room_4DL_0037C8[] __attribute__((aligned (2))) = dganontika_room_4DL_0037C8; -#endif - -#define dganontika_room_4DL_003FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_003FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_4DL_003FD8[] = dganontika_room_4DL_003FD8; -#else -static const char ganontika_room_4DL_003FD8[] __attribute__((aligned (2))) = dganontika_room_4DL_003FD8; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_4DL_001440 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_001440" +static const ALIGN_ASSET(2) char ganontika_room_4DL_001440[] = dganontika_room_4DL_001440; + +#define dganontika_room_4Tex_006A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_006A88" +static const ALIGN_ASSET(2) char ganontika_room_4Tex_006A88[] = dganontika_room_4Tex_006A88; + +#define dganontika_room_4Tex_006C88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_006C88" +static const ALIGN_ASSET(2) char ganontika_room_4Tex_006C88[] = dganontika_room_4Tex_006C88; + +#define dganontika_room_4Tex_006288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_006288" +static const ALIGN_ASSET(2) char ganontika_room_4Tex_006288[] = dganontika_room_4Tex_006288; + +#define dganontika_room_4Tex_004A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_004A88" +static const ALIGN_ASSET(2) char ganontika_room_4Tex_004A88[] = dganontika_room_4Tex_004A88; + +#define dganontika_room_4Tex_005A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_005A88" +static const ALIGN_ASSET(2) char ganontika_room_4Tex_005A88[] = dganontika_room_4Tex_005A88; + +#define dganontika_room_4Tex_004288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_004288" +static const ALIGN_ASSET(2) char ganontika_room_4Tex_004288[] = dganontika_room_4Tex_004288; + +#define dganontika_room_4DL_002850 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_002850" +static const ALIGN_ASSET(2) char ganontika_room_4DL_002850[] = dganontika_room_4DL_002850; + +#define dganontika_room_4Tex_005288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4Tex_005288" +static const ALIGN_ASSET(2) char ganontika_room_4Tex_005288[] = dganontika_room_4Tex_005288; + +#define dganontika_room_4DL_003048 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_003048" +static const ALIGN_ASSET(2) char ganontika_room_4DL_003048[] = dganontika_room_4DL_003048; + +#define dganontika_room_4DL_0037C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_0037C8" +static const ALIGN_ASSET(2) char ganontika_room_4DL_0037C8[] = dganontika_room_4DL_0037C8; + +#define dganontika_room_4DL_003FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_4DL_003FD8" +static const ALIGN_ASSET(2) char ganontika_room_4DL_003FD8[] = dganontika_room_4DL_003FD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_5.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_5.h index 013f6a2ed..40a8ae3a1 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_5.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_5.h @@ -1,100 +1,45 @@ #pragma once -#define dganontika_room_5DL_0005E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_0005E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5DL_0005E0[] = dganontika_room_5DL_0005E0; -#else -static const char ganontika_room_5DL_0005E0[] __attribute__((aligned (2))) = dganontika_room_5DL_0005E0; -#endif - -#define dganontika_room_5Tex_004D18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_004D18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5Tex_004D18[] = dganontika_room_5Tex_004D18; -#else -static const char ganontika_room_5Tex_004D18[] __attribute__((aligned (2))) = dganontika_room_5Tex_004D18; -#endif - -#define dganontika_room_5DL_000930 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_000930" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5DL_000930[] = dganontika_room_5DL_000930; -#else -static const char ganontika_room_5DL_000930[] __attribute__((aligned (2))) = dganontika_room_5DL_000930; -#endif - -#define dganontika_room_5DL_001588 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_001588" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5DL_001588[] = dganontika_room_5DL_001588; -#else -static const char ganontika_room_5DL_001588[] __attribute__((aligned (2))) = dganontika_room_5DL_001588; -#endif - -#define dganontika_room_5Tex_006518 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_006518" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5Tex_006518[] = dganontika_room_5Tex_006518; -#else -static const char ganontika_room_5Tex_006518[] __attribute__((aligned (2))) = dganontika_room_5Tex_006518; -#endif - -#define dganontika_room_5DL_002678 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_002678" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5DL_002678[] = dganontika_room_5DL_002678; -#else -static const char ganontika_room_5DL_002678[] __attribute__((aligned (2))) = dganontika_room_5DL_002678; -#endif - -#define dganontika_room_5DL_002E50 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_002E50" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5DL_002E50[] = dganontika_room_5DL_002E50; -#else -static const char ganontika_room_5DL_002E50[] __attribute__((aligned (2))) = dganontika_room_5DL_002E50; -#endif - -#define dganontika_room_5DL_0035A8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_0035A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5DL_0035A8[] = dganontika_room_5DL_0035A8; -#else -static const char ganontika_room_5DL_0035A8[] __attribute__((aligned (2))) = dganontika_room_5DL_0035A8; -#endif - -#define dganontika_room_5Tex_003B18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_003B18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5Tex_003B18[] = dganontika_room_5Tex_003B18; -#else -static const char ganontika_room_5Tex_003B18[] __attribute__((aligned (2))) = dganontika_room_5Tex_003B18; -#endif - -#define dganontika_room_5Tex_003D18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_003D18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5Tex_003D18[] = dganontika_room_5Tex_003D18; -#else -static const char ganontika_room_5Tex_003D18[] __attribute__((aligned (2))) = dganontika_room_5Tex_003D18; -#endif - -#define dganontika_room_5Tex_005518 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_005518" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5Tex_005518[] = dganontika_room_5Tex_005518; -#else -static const char ganontika_room_5Tex_005518[] __attribute__((aligned (2))) = dganontika_room_5Tex_005518; -#endif - -#define dganontika_room_5Tex_004518 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_004518" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5Tex_004518[] = dganontika_room_5Tex_004518; -#else -static const char ganontika_room_5Tex_004518[] __attribute__((aligned (2))) = dganontika_room_5Tex_004518; -#endif - -#define dganontika_room_5DL_000320 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_000320" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5DL_000320[] = dganontika_room_5DL_000320; -#else -static const char ganontika_room_5DL_000320[] __attribute__((aligned (2))) = dganontika_room_5DL_000320; -#endif - -#define dganontika_room_5Tex_005D18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_005D18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_5Tex_005D18[] = dganontika_room_5Tex_005D18; -#else -static const char ganontika_room_5Tex_005D18[] __attribute__((aligned (2))) = dganontika_room_5Tex_005D18; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_5DL_0005E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_0005E0" +static const ALIGN_ASSET(2) char ganontika_room_5DL_0005E0[] = dganontika_room_5DL_0005E0; + +#define dganontika_room_5Tex_004D18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_004D18" +static const ALIGN_ASSET(2) char ganontika_room_5Tex_004D18[] = dganontika_room_5Tex_004D18; + +#define dganontika_room_5DL_000930 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_000930" +static const ALIGN_ASSET(2) char ganontika_room_5DL_000930[] = dganontika_room_5DL_000930; + +#define dganontika_room_5DL_001588 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_001588" +static const ALIGN_ASSET(2) char ganontika_room_5DL_001588[] = dganontika_room_5DL_001588; + +#define dganontika_room_5Tex_006518 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_006518" +static const ALIGN_ASSET(2) char ganontika_room_5Tex_006518[] = dganontika_room_5Tex_006518; + +#define dganontika_room_5DL_002678 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_002678" +static const ALIGN_ASSET(2) char ganontika_room_5DL_002678[] = dganontika_room_5DL_002678; + +#define dganontika_room_5DL_002E50 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_002E50" +static const ALIGN_ASSET(2) char ganontika_room_5DL_002E50[] = dganontika_room_5DL_002E50; + +#define dganontika_room_5DL_0035A8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_0035A8" +static const ALIGN_ASSET(2) char ganontika_room_5DL_0035A8[] = dganontika_room_5DL_0035A8; + +#define dganontika_room_5Tex_003B18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_003B18" +static const ALIGN_ASSET(2) char ganontika_room_5Tex_003B18[] = dganontika_room_5Tex_003B18; + +#define dganontika_room_5Tex_003D18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_003D18" +static const ALIGN_ASSET(2) char ganontika_room_5Tex_003D18[] = dganontika_room_5Tex_003D18; + +#define dganontika_room_5Tex_005518 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_005518" +static const ALIGN_ASSET(2) char ganontika_room_5Tex_005518[] = dganontika_room_5Tex_005518; + +#define dganontika_room_5Tex_004518 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_004518" +static const ALIGN_ASSET(2) char ganontika_room_5Tex_004518[] = dganontika_room_5Tex_004518; + +#define dganontika_room_5DL_000320 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5DL_000320" +static const ALIGN_ASSET(2) char ganontika_room_5DL_000320[] = dganontika_room_5DL_000320; + +#define dganontika_room_5Tex_005D18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_5Tex_005D18" +static const ALIGN_ASSET(2) char ganontika_room_5Tex_005D18[] = dganontika_room_5Tex_005D18; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_6.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_6.h index ac39978c8..465e86bbe 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_6.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_6.h @@ -1,191 +1,84 @@ #pragma once -#define dganontika_room_6DL_00A250 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_00A250" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_00A250[] = dganontika_room_6DL_00A250; -#else -static const char ganontika_room_6DL_00A250[] __attribute__((aligned (2))) = dganontika_room_6DL_00A250; -#endif - -#define dganontika_room_6Tex_00D700 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00D700" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00D700[] = dganontika_room_6Tex_00D700; -#else -static const char ganontika_room_6Tex_00D700[] __attribute__((aligned (2))) = dganontika_room_6Tex_00D700; -#endif - -#define dganontika_room_6Tex_00C900 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00C900" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00C900[] = dganontika_room_6Tex_00C900; -#else -static const char ganontika_room_6Tex_00C900[] __attribute__((aligned (2))) = dganontika_room_6Tex_00C900; -#endif - -#define dganontika_room_6Tex_00CB00 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00CB00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00CB00[] = dganontika_room_6Tex_00CB00; -#else -static const char ganontika_room_6Tex_00CB00[] __attribute__((aligned (2))) = dganontika_room_6Tex_00CB00; -#endif - -#define dganontika_room_6Tex_00CD00 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00CD00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00CD00[] = dganontika_room_6Tex_00CD00; -#else -static const char ganontika_room_6Tex_00CD00[] __attribute__((aligned (2))) = dganontika_room_6Tex_00CD00; -#endif - -#define dganontika_room_6DL_007980 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_007980" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_007980[] = dganontika_room_6DL_007980; -#else -static const char ganontika_room_6DL_007980[] __attribute__((aligned (2))) = dganontika_room_6DL_007980; -#endif - -#define dganontika_room_6DL_0018F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0018F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_0018F8[] = dganontika_room_6DL_0018F8; -#else -static const char ganontika_room_6DL_0018F8[] __attribute__((aligned (2))) = dganontika_room_6DL_0018F8; -#endif - -#define dganontika_room_6Tex_00CF00 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00CF00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00CF00[] = dganontika_room_6Tex_00CF00; -#else -static const char ganontika_room_6Tex_00CF00[] __attribute__((aligned (2))) = dganontika_room_6Tex_00CF00; -#endif - -#define dganontika_room_6TLUT_00B4E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6TLUT_00B4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6TLUT_00B4E0[] = dganontika_room_6TLUT_00B4E0; -#else -static const char ganontika_room_6TLUT_00B4E0[] __attribute__((aligned (2))) = dganontika_room_6TLUT_00B4E0; -#endif - -#define dganontika_room_6DL_00EB30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_00EB30" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_00EB30[] = dganontika_room_6DL_00EB30; -#else -static const char ganontika_room_6DL_00EB30[] __attribute__((aligned (2))) = dganontika_room_6DL_00EB30; -#endif - -#define dganontika_room_6Tex_00EC58 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00EC58" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00EC58[] = dganontika_room_6Tex_00EC58; -#else -static const char ganontika_room_6Tex_00EC58[] __attribute__((aligned (2))) = dganontika_room_6Tex_00EC58; -#endif - -#define dganontika_room_6DL_0010E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0010E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_0010E0[] = dganontika_room_6DL_0010E0; -#else -static const char ganontika_room_6DL_0010E0[] __attribute__((aligned (2))) = dganontika_room_6DL_0010E0; -#endif - -#define dganontika_room_6Tex_00D900 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00D900" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00D900[] = dganontika_room_6Tex_00D900; -#else -static const char ganontika_room_6Tex_00D900[] __attribute__((aligned (2))) = dganontika_room_6Tex_00D900; -#endif - -#define dganontika_room_6DL_0015E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0015E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_0015E0[] = dganontika_room_6DL_0015E0; -#else -static const char ganontika_room_6DL_0015E0[] __attribute__((aligned (2))) = dganontika_room_6DL_0015E0; -#endif - -#define dganontika_room_6Tex_00C100 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00C100" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00C100[] = dganontika_room_6Tex_00C100; -#else -static const char ganontika_room_6Tex_00C100[] __attribute__((aligned (2))) = dganontika_room_6Tex_00C100; -#endif - -#define dganontika_room_6DL_001D18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_001D18" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_001D18[] = dganontika_room_6DL_001D18; -#else -static const char ganontika_room_6DL_001D18[] __attribute__((aligned (2))) = dganontika_room_6DL_001D18; -#endif - -#define dganontika_room_6Tex_00B500 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00B500" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00B500[] = dganontika_room_6Tex_00B500; -#else -static const char ganontika_room_6Tex_00B500[] __attribute__((aligned (2))) = dganontika_room_6Tex_00B500; -#endif - -#define dganontika_room_6DL_0023A0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0023A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_0023A0[] = dganontika_room_6DL_0023A0; -#else -static const char ganontika_room_6DL_0023A0[] __attribute__((aligned (2))) = dganontika_room_6DL_0023A0; -#endif - -#define dganontika_room_6Tex_00B900 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00B900" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6Tex_00B900[] = dganontika_room_6Tex_00B900; -#else -static const char ganontika_room_6Tex_00B900[] __attribute__((aligned (2))) = dganontika_room_6Tex_00B900; -#endif - -#define dganontika_room_6DL_002C20 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_002C20" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_002C20[] = dganontika_room_6DL_002C20; -#else -static const char ganontika_room_6DL_002C20[] __attribute__((aligned (2))) = dganontika_room_6DL_002C20; -#endif - -#define dganontika_room_6DL_003640 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_003640" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_003640[] = dganontika_room_6DL_003640; -#else -static const char ganontika_room_6DL_003640[] __attribute__((aligned (2))) = dganontika_room_6DL_003640; -#endif - -#define dganontika_room_6DL_004308 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_004308" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_004308[] = dganontika_room_6DL_004308; -#else -static const char ganontika_room_6DL_004308[] __attribute__((aligned (2))) = dganontika_room_6DL_004308; -#endif - -#define dganontika_room_6DL_004E30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_004E30" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_004E30[] = dganontika_room_6DL_004E30; -#else -static const char ganontika_room_6DL_004E30[] __attribute__((aligned (2))) = dganontika_room_6DL_004E30; -#endif - -#define dganontika_room_6DL_005850 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_005850[] = dganontika_room_6DL_005850; -#else -static const char ganontika_room_6DL_005850[] __attribute__((aligned (2))) = dganontika_room_6DL_005850; -#endif - -#define dganontika_room_6DL_006168 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_006168" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_006168[] = dganontika_room_6DL_006168; -#else -static const char ganontika_room_6DL_006168[] __attribute__((aligned (2))) = dganontika_room_6DL_006168; -#endif - -#define dganontika_room_6DL_0003F0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0003F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_0003F0[] = dganontika_room_6DL_0003F0; -#else -static const char ganontika_room_6DL_0003F0[] __attribute__((aligned (2))) = dganontika_room_6DL_0003F0; -#endif - -#define dganontika_room_6DL_0009E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0009E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_6DL_0009E0[] = dganontika_room_6DL_0009E0; -#else -static const char ganontika_room_6DL_0009E0[] __attribute__((aligned (2))) = dganontika_room_6DL_0009E0; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_6DL_00A250 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_00A250" +static const ALIGN_ASSET(2) char ganontika_room_6DL_00A250[] = dganontika_room_6DL_00A250; + +#define dganontika_room_6Tex_00D700 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00D700" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00D700[] = dganontika_room_6Tex_00D700; + +#define dganontika_room_6Tex_00C900 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00C900" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00C900[] = dganontika_room_6Tex_00C900; + +#define dganontika_room_6Tex_00CB00 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00CB00" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00CB00[] = dganontika_room_6Tex_00CB00; + +#define dganontika_room_6Tex_00CD00 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00CD00" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00CD00[] = dganontika_room_6Tex_00CD00; + +#define dganontika_room_6DL_007980 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_007980" +static const ALIGN_ASSET(2) char ganontika_room_6DL_007980[] = dganontika_room_6DL_007980; + +#define dganontika_room_6DL_0018F8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0018F8" +static const ALIGN_ASSET(2) char ganontika_room_6DL_0018F8[] = dganontika_room_6DL_0018F8; + +#define dganontika_room_6Tex_00CF00 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00CF00" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00CF00[] = dganontika_room_6Tex_00CF00; + +#define dganontika_room_6TLUT_00B4E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6TLUT_00B4E0" +static const ALIGN_ASSET(2) char ganontika_room_6TLUT_00B4E0[] = dganontika_room_6TLUT_00B4E0; + +#define dganontika_room_6DL_00EB30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_00EB30" +static const ALIGN_ASSET(2) char ganontika_room_6DL_00EB30[] = dganontika_room_6DL_00EB30; + +#define dganontika_room_6Tex_00EC58 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00EC58" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00EC58[] = dganontika_room_6Tex_00EC58; + +#define dganontika_room_6DL_0010E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0010E0" +static const ALIGN_ASSET(2) char ganontika_room_6DL_0010E0[] = dganontika_room_6DL_0010E0; + +#define dganontika_room_6Tex_00D900 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00D900" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00D900[] = dganontika_room_6Tex_00D900; + +#define dganontika_room_6DL_0015E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0015E0" +static const ALIGN_ASSET(2) char ganontika_room_6DL_0015E0[] = dganontika_room_6DL_0015E0; + +#define dganontika_room_6Tex_00C100 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00C100" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00C100[] = dganontika_room_6Tex_00C100; + +#define dganontika_room_6DL_001D18 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_001D18" +static const ALIGN_ASSET(2) char ganontika_room_6DL_001D18[] = dganontika_room_6DL_001D18; + +#define dganontika_room_6Tex_00B500 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00B500" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00B500[] = dganontika_room_6Tex_00B500; + +#define dganontika_room_6DL_0023A0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0023A0" +static const ALIGN_ASSET(2) char ganontika_room_6DL_0023A0[] = dganontika_room_6DL_0023A0; + +#define dganontika_room_6Tex_00B900 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6Tex_00B900" +static const ALIGN_ASSET(2) char ganontika_room_6Tex_00B900[] = dganontika_room_6Tex_00B900; + +#define dganontika_room_6DL_002C20 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_002C20" +static const ALIGN_ASSET(2) char ganontika_room_6DL_002C20[] = dganontika_room_6DL_002C20; + +#define dganontika_room_6DL_003640 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_003640" +static const ALIGN_ASSET(2) char ganontika_room_6DL_003640[] = dganontika_room_6DL_003640; + +#define dganontika_room_6DL_004308 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_004308" +static const ALIGN_ASSET(2) char ganontika_room_6DL_004308[] = dganontika_room_6DL_004308; + +#define dganontika_room_6DL_004E30 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_004E30" +static const ALIGN_ASSET(2) char ganontika_room_6DL_004E30[] = dganontika_room_6DL_004E30; + +#define dganontika_room_6DL_005850 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_005850" +static const ALIGN_ASSET(2) char ganontika_room_6DL_005850[] = dganontika_room_6DL_005850; + +#define dganontika_room_6DL_006168 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_006168" +static const ALIGN_ASSET(2) char ganontika_room_6DL_006168[] = dganontika_room_6DL_006168; + +#define dganontika_room_6DL_0003F0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0003F0" +static const ALIGN_ASSET(2) char ganontika_room_6DL_0003F0[] = dganontika_room_6DL_0003F0; + +#define dganontika_room_6DL_0009E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_6DL_0009E0" +static const ALIGN_ASSET(2) char ganontika_room_6DL_0009E0[] = dganontika_room_6DL_0009E0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_7.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_7.h index 103b8271a..f6eaf48ec 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_7.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_7.h @@ -1,86 +1,39 @@ #pragma once -#define dganontika_room_7DL_001440 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_001440" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7DL_001440[] = dganontika_room_7DL_001440; -#else -static const char ganontika_room_7DL_001440[] __attribute__((aligned (2))) = dganontika_room_7DL_001440; -#endif - -#define dganontika_room_7Tex_006A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_006A88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7Tex_006A88[] = dganontika_room_7Tex_006A88; -#else -static const char ganontika_room_7Tex_006A88[] __attribute__((aligned (2))) = dganontika_room_7Tex_006A88; -#endif - -#define dganontika_room_7Tex_006C88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_006C88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7Tex_006C88[] = dganontika_room_7Tex_006C88; -#else -static const char ganontika_room_7Tex_006C88[] __attribute__((aligned (2))) = dganontika_room_7Tex_006C88; -#endif - -#define dganontika_room_7Tex_006288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_006288" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7Tex_006288[] = dganontika_room_7Tex_006288; -#else -static const char ganontika_room_7Tex_006288[] __attribute__((aligned (2))) = dganontika_room_7Tex_006288; -#endif - -#define dganontika_room_7Tex_004A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_004A88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7Tex_004A88[] = dganontika_room_7Tex_004A88; -#else -static const char ganontika_room_7Tex_004A88[] __attribute__((aligned (2))) = dganontika_room_7Tex_004A88; -#endif - -#define dganontika_room_7Tex_005A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_005A88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7Tex_005A88[] = dganontika_room_7Tex_005A88; -#else -static const char ganontika_room_7Tex_005A88[] __attribute__((aligned (2))) = dganontika_room_7Tex_005A88; -#endif - -#define dganontika_room_7Tex_004288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_004288" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7Tex_004288[] = dganontika_room_7Tex_004288; -#else -static const char ganontika_room_7Tex_004288[] __attribute__((aligned (2))) = dganontika_room_7Tex_004288; -#endif - -#define dganontika_room_7DL_002850 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_002850" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7DL_002850[] = dganontika_room_7DL_002850; -#else -static const char ganontika_room_7DL_002850[] __attribute__((aligned (2))) = dganontika_room_7DL_002850; -#endif - -#define dganontika_room_7Tex_005288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_005288" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7Tex_005288[] = dganontika_room_7Tex_005288; -#else -static const char ganontika_room_7Tex_005288[] __attribute__((aligned (2))) = dganontika_room_7Tex_005288; -#endif - -#define dganontika_room_7DL_003048 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7DL_003048[] = dganontika_room_7DL_003048; -#else -static const char ganontika_room_7DL_003048[] __attribute__((aligned (2))) = dganontika_room_7DL_003048; -#endif - -#define dganontika_room_7DL_0037C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_0037C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7DL_0037C8[] = dganontika_room_7DL_0037C8; -#else -static const char ganontika_room_7DL_0037C8[] __attribute__((aligned (2))) = dganontika_room_7DL_0037C8; -#endif - -#define dganontika_room_7DL_003FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_003FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_7DL_003FD8[] = dganontika_room_7DL_003FD8; -#else -static const char ganontika_room_7DL_003FD8[] __attribute__((aligned (2))) = dganontika_room_7DL_003FD8; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_7DL_001440 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_001440" +static const ALIGN_ASSET(2) char ganontika_room_7DL_001440[] = dganontika_room_7DL_001440; + +#define dganontika_room_7Tex_006A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_006A88" +static const ALIGN_ASSET(2) char ganontika_room_7Tex_006A88[] = dganontika_room_7Tex_006A88; + +#define dganontika_room_7Tex_006C88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_006C88" +static const ALIGN_ASSET(2) char ganontika_room_7Tex_006C88[] = dganontika_room_7Tex_006C88; + +#define dganontika_room_7Tex_006288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_006288" +static const ALIGN_ASSET(2) char ganontika_room_7Tex_006288[] = dganontika_room_7Tex_006288; + +#define dganontika_room_7Tex_004A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_004A88" +static const ALIGN_ASSET(2) char ganontika_room_7Tex_004A88[] = dganontika_room_7Tex_004A88; + +#define dganontika_room_7Tex_005A88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_005A88" +static const ALIGN_ASSET(2) char ganontika_room_7Tex_005A88[] = dganontika_room_7Tex_005A88; + +#define dganontika_room_7Tex_004288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_004288" +static const ALIGN_ASSET(2) char ganontika_room_7Tex_004288[] = dganontika_room_7Tex_004288; + +#define dganontika_room_7DL_002850 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_002850" +static const ALIGN_ASSET(2) char ganontika_room_7DL_002850[] = dganontika_room_7DL_002850; + +#define dganontika_room_7Tex_005288 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7Tex_005288" +static const ALIGN_ASSET(2) char ganontika_room_7Tex_005288[] = dganontika_room_7Tex_005288; + +#define dganontika_room_7DL_003048 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_003048" +static const ALIGN_ASSET(2) char ganontika_room_7DL_003048[] = dganontika_room_7DL_003048; + +#define dganontika_room_7DL_0037C8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_0037C8" +static const ALIGN_ASSET(2) char ganontika_room_7DL_0037C8[] = dganontika_room_7DL_0037C8; + +#define dganontika_room_7DL_003FD8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_7DL_003FD8" +static const ALIGN_ASSET(2) char ganontika_room_7DL_003FD8[] = dganontika_room_7DL_003FD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_8.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_8.h index 26921d8cf..825ed43c1 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_8.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_8.h @@ -1,93 +1,42 @@ #pragma once -#define dganontika_room_8DL_002EE8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_002EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8DL_002EE8[] = dganontika_room_8DL_002EE8; -#else -static const char ganontika_room_8DL_002EE8[] __attribute__((aligned (2))) = dganontika_room_8DL_002EE8; -#endif - -#define dganontika_room_8DL_0030B0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_0030B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8DL_0030B0[] = dganontika_room_8DL_0030B0; -#else -static const char ganontika_room_8DL_0030B0[] __attribute__((aligned (2))) = dganontika_room_8DL_0030B0; -#endif - -#define dganontika_room_8Tex_0074B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_0074B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8Tex_0074B8[] = dganontika_room_8Tex_0074B8; -#else -static const char ganontika_room_8Tex_0074B8[] __attribute__((aligned (2))) = dganontika_room_8Tex_0074B8; -#endif - -#define dganontika_room_8TLUT_003498 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8TLUT_003498" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8TLUT_003498[] = dganontika_room_8TLUT_003498; -#else -static const char ganontika_room_8TLUT_003498[] __attribute__((aligned (2))) = dganontika_room_8TLUT_003498; -#endif - -#define dganontika_room_8DL_007EF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_007EF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8DL_007EF0[] = dganontika_room_8DL_007EF0; -#else -static const char ganontika_room_8DL_007EF0[] __attribute__((aligned (2))) = dganontika_room_8DL_007EF0; -#endif - -#define dganontika_room_8Tex_008018 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_008018" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8Tex_008018[] = dganontika_room_8Tex_008018; -#else -static const char ganontika_room_8Tex_008018[] __attribute__((aligned (2))) = dganontika_room_8Tex_008018; -#endif - -#define dganontika_room_8DL_003360 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_003360" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8DL_003360[] = dganontika_room_8DL_003360; -#else -static const char ganontika_room_8DL_003360[] __attribute__((aligned (2))) = dganontika_room_8DL_003360; -#endif - -#define dganontika_room_8DL_001DE0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_001DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8DL_001DE0[] = dganontika_room_8DL_001DE0; -#else -static const char ganontika_room_8DL_001DE0[] __attribute__((aligned (2))) = dganontika_room_8DL_001DE0; -#endif - -#define dganontika_room_8Tex_0044B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_0044B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8Tex_0044B8[] = dganontika_room_8Tex_0044B8; -#else -static const char ganontika_room_8Tex_0044B8[] __attribute__((aligned (2))) = dganontika_room_8Tex_0044B8; -#endif - -#define dganontika_room_8Tex_005CB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_005CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8Tex_005CB8[] = dganontika_room_8Tex_005CB8; -#else -static const char ganontika_room_8Tex_005CB8[] __attribute__((aligned (2))) = dganontika_room_8Tex_005CB8; -#endif - -#define dganontika_room_8Tex_0034B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_0034B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8Tex_0034B8[] = dganontika_room_8Tex_0034B8; -#else -static const char ganontika_room_8Tex_0034B8[] __attribute__((aligned (2))) = dganontika_room_8Tex_0034B8; -#endif - -#define dganontika_room_8Tex_0054B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_0054B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8Tex_0054B8[] = dganontika_room_8Tex_0054B8; -#else -static const char ganontika_room_8Tex_0054B8[] __attribute__((aligned (2))) = dganontika_room_8Tex_0054B8; -#endif - -#define dganontika_room_8Tex_006CB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_006CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_8Tex_006CB8[] = dganontika_room_8Tex_006CB8; -#else -static const char ganontika_room_8Tex_006CB8[] __attribute__((aligned (2))) = dganontika_room_8Tex_006CB8; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_8DL_002EE8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_002EE8" +static const ALIGN_ASSET(2) char ganontika_room_8DL_002EE8[] = dganontika_room_8DL_002EE8; + +#define dganontika_room_8DL_0030B0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_0030B0" +static const ALIGN_ASSET(2) char ganontika_room_8DL_0030B0[] = dganontika_room_8DL_0030B0; + +#define dganontika_room_8Tex_0074B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_0074B8" +static const ALIGN_ASSET(2) char ganontika_room_8Tex_0074B8[] = dganontika_room_8Tex_0074B8; + +#define dganontika_room_8TLUT_003498 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8TLUT_003498" +static const ALIGN_ASSET(2) char ganontika_room_8TLUT_003498[] = dganontika_room_8TLUT_003498; + +#define dganontika_room_8DL_007EF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_007EF0" +static const ALIGN_ASSET(2) char ganontika_room_8DL_007EF0[] = dganontika_room_8DL_007EF0; + +#define dganontika_room_8Tex_008018 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_008018" +static const ALIGN_ASSET(2) char ganontika_room_8Tex_008018[] = dganontika_room_8Tex_008018; + +#define dganontika_room_8DL_003360 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_003360" +static const ALIGN_ASSET(2) char ganontika_room_8DL_003360[] = dganontika_room_8DL_003360; + +#define dganontika_room_8DL_001DE0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8DL_001DE0" +static const ALIGN_ASSET(2) char ganontika_room_8DL_001DE0[] = dganontika_room_8DL_001DE0; + +#define dganontika_room_8Tex_0044B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_0044B8" +static const ALIGN_ASSET(2) char ganontika_room_8Tex_0044B8[] = dganontika_room_8Tex_0044B8; + +#define dganontika_room_8Tex_005CB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_005CB8" +static const ALIGN_ASSET(2) char ganontika_room_8Tex_005CB8[] = dganontika_room_8Tex_005CB8; + +#define dganontika_room_8Tex_0034B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_0034B8" +static const ALIGN_ASSET(2) char ganontika_room_8Tex_0034B8[] = dganontika_room_8Tex_0034B8; + +#define dganontika_room_8Tex_0054B8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_0054B8" +static const ALIGN_ASSET(2) char ganontika_room_8Tex_0054B8[] = dganontika_room_8Tex_0054B8; + +#define dganontika_room_8Tex_006CB8 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_8Tex_006CB8" +static const ALIGN_ASSET(2) char ganontika_room_8Tex_006CB8[] = dganontika_room_8Tex_006CB8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_room_9.h b/soh/assets/scenes/dungeons/ganontika/ganontika_room_9.h index 79cd68675..00cfed490 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_room_9.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_room_9.h @@ -1,149 +1,66 @@ #pragma once -#define dganontika_room_9DL_001CF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_001CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_001CF0[] = dganontika_room_9DL_001CF0; -#else -static const char ganontika_room_9DL_001CF0[] __attribute__((aligned (2))) = dganontika_room_9DL_001CF0; -#endif - -#define dganontika_room_9Tex_007C88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_007C88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_007C88[] = dganontika_room_9Tex_007C88; -#else -static const char ganontika_room_9Tex_007C88[] __attribute__((aligned (2))) = dganontika_room_9Tex_007C88; -#endif - -#define dganontika_room_9Tex_007E88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_007E88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_007E88[] = dganontika_room_9Tex_007E88; -#else -static const char ganontika_room_9Tex_007E88[] __attribute__((aligned (2))) = dganontika_room_9Tex_007E88; -#endif - -#define dganontika_room_9DL_002918 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_002918" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_002918[] = dganontika_room_9DL_002918; -#else -static const char ganontika_room_9DL_002918[] __attribute__((aligned (2))) = dganontika_room_9DL_002918; -#endif - -#define dganontika_room_9DL_003200 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_003200" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_003200[] = dganontika_room_9DL_003200; -#else -static const char ganontika_room_9DL_003200[] __attribute__((aligned (2))) = dganontika_room_9DL_003200; -#endif - -#define dganontika_room_9DL_003B90 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_003B90" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_003B90[] = dganontika_room_9DL_003B90; -#else -static const char ganontika_room_9DL_003B90[] __attribute__((aligned (2))) = dganontika_room_9DL_003B90; -#endif - -#define dganontika_room_9DL_0049B0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_0049B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_0049B0[] = dganontika_room_9DL_0049B0; -#else -static const char ganontika_room_9DL_0049B0[] __attribute__((aligned (2))) = dganontika_room_9DL_0049B0; -#endif - -#define dganontika_room_9Tex_008688 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_008688" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_008688[] = dganontika_room_9Tex_008688; -#else -static const char ganontika_room_9Tex_008688[] __attribute__((aligned (2))) = dganontika_room_9Tex_008688; -#endif - -#define dganontika_room_9Tex_009688 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_009688" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_009688[] = dganontika_room_9Tex_009688; -#else -static const char ganontika_room_9Tex_009688[] __attribute__((aligned (2))) = dganontika_room_9Tex_009688; -#endif - -#define dganontika_room_9DL_004D80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_004D80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_004D80[] = dganontika_room_9DL_004D80; -#else -static const char ganontika_room_9DL_004D80[] __attribute__((aligned (2))) = dganontika_room_9DL_004D80; -#endif - -#define dganontika_room_9Tex_008E88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_008E88" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_008E88[] = dganontika_room_9Tex_008E88; -#else -static const char ganontika_room_9Tex_008E88[] __attribute__((aligned (2))) = dganontika_room_9Tex_008E88; -#endif - -#define dganontika_room_9DL_005038 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_005038" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_005038[] = dganontika_room_9DL_005038; -#else -static const char ganontika_room_9DL_005038[] __attribute__((aligned (2))) = dganontika_room_9DL_005038; -#endif - -#define dganontika_room_9DL_005318 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_005318" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_005318[] = dganontika_room_9DL_005318; -#else -static const char ganontika_room_9DL_005318[] __attribute__((aligned (2))) = dganontika_room_9DL_005318; -#endif - -#define dganontika_room_9DL_0012F0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_0012F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_0012F0[] = dganontika_room_9DL_0012F0; -#else -static const char ganontika_room_9DL_0012F0[] __attribute__((aligned (2))) = dganontika_room_9DL_0012F0; -#endif - -#define dganontika_room_9DL_0006E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_0006E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_0006E0[] = dganontika_room_9DL_0006E0; -#else -static const char ganontika_room_9DL_0006E0[] __attribute__((aligned (2))) = dganontika_room_9DL_0006E0; -#endif - -#define dganontika_room_9Tex_005488 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_005488" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_005488[] = dganontika_room_9Tex_005488; -#else -static const char ganontika_room_9Tex_005488[] __attribute__((aligned (2))) = dganontika_room_9Tex_005488; -#endif - -#define dganontika_room_9Tex_006488 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_006488" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_006488[] = dganontika_room_9Tex_006488; -#else -static const char ganontika_room_9Tex_006488[] __attribute__((aligned (2))) = dganontika_room_9Tex_006488; -#endif - -#define dganontika_room_9Tex_007488 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_007488" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_007488[] = dganontika_room_9Tex_007488; -#else -static const char ganontika_room_9Tex_007488[] __attribute__((aligned (2))) = dganontika_room_9Tex_007488; -#endif - -#define dganontika_room_9DL_0003A0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_0003A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_0003A0[] = dganontika_room_9DL_0003A0; -#else -static const char ganontika_room_9DL_0003A0[] __attribute__((aligned (2))) = dganontika_room_9DL_0003A0; -#endif - -#define dganontika_room_9DL_00A750 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_00A750" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9DL_00A750[] = dganontika_room_9DL_00A750; -#else -static const char ganontika_room_9DL_00A750[] __attribute__((aligned (2))) = dganontika_room_9DL_00A750; -#endif - -#define dganontika_room_9Tex_00A818 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_00A818" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_room_9Tex_00A818[] = dganontika_room_9Tex_00A818; -#else -static const char ganontika_room_9Tex_00A818[] __attribute__((aligned (2))) = dganontika_room_9Tex_00A818; -#endif - +#include "align_asset_macro.h" + +#define dganontika_room_9DL_001CF0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_001CF0" +static const ALIGN_ASSET(2) char ganontika_room_9DL_001CF0[] = dganontika_room_9DL_001CF0; + +#define dganontika_room_9Tex_007C88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_007C88" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_007C88[] = dganontika_room_9Tex_007C88; + +#define dganontika_room_9Tex_007E88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_007E88" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_007E88[] = dganontika_room_9Tex_007E88; + +#define dganontika_room_9DL_002918 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_002918" +static const ALIGN_ASSET(2) char ganontika_room_9DL_002918[] = dganontika_room_9DL_002918; + +#define dganontika_room_9DL_003200 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_003200" +static const ALIGN_ASSET(2) char ganontika_room_9DL_003200[] = dganontika_room_9DL_003200; + +#define dganontika_room_9DL_003B90 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_003B90" +static const ALIGN_ASSET(2) char ganontika_room_9DL_003B90[] = dganontika_room_9DL_003B90; + +#define dganontika_room_9DL_0049B0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_0049B0" +static const ALIGN_ASSET(2) char ganontika_room_9DL_0049B0[] = dganontika_room_9DL_0049B0; + +#define dganontika_room_9Tex_008688 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_008688" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_008688[] = dganontika_room_9Tex_008688; + +#define dganontika_room_9Tex_009688 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_009688" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_009688[] = dganontika_room_9Tex_009688; + +#define dganontika_room_9DL_004D80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_004D80" +static const ALIGN_ASSET(2) char ganontika_room_9DL_004D80[] = dganontika_room_9DL_004D80; + +#define dganontika_room_9Tex_008E88 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_008E88" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_008E88[] = dganontika_room_9Tex_008E88; + +#define dganontika_room_9DL_005038 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_005038" +static const ALIGN_ASSET(2) char ganontika_room_9DL_005038[] = dganontika_room_9DL_005038; + +#define dganontika_room_9DL_005318 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_005318" +static const ALIGN_ASSET(2) char ganontika_room_9DL_005318[] = dganontika_room_9DL_005318; + +#define dganontika_room_9DL_0012F0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_0012F0" +static const ALIGN_ASSET(2) char ganontika_room_9DL_0012F0[] = dganontika_room_9DL_0012F0; + +#define dganontika_room_9DL_0006E0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_0006E0" +static const ALIGN_ASSET(2) char ganontika_room_9DL_0006E0[] = dganontika_room_9DL_0006E0; + +#define dganontika_room_9Tex_005488 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_005488" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_005488[] = dganontika_room_9Tex_005488; + +#define dganontika_room_9Tex_006488 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_006488" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_006488[] = dganontika_room_9Tex_006488; + +#define dganontika_room_9Tex_007488 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_007488" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_007488[] = dganontika_room_9Tex_007488; + +#define dganontika_room_9DL_0003A0 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_0003A0" +static const ALIGN_ASSET(2) char ganontika_room_9DL_0003A0[] = dganontika_room_9DL_0003A0; + +#define dganontika_room_9DL_00A750 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9DL_00A750" +static const ALIGN_ASSET(2) char ganontika_room_9DL_00A750[] = dganontika_room_9DL_00A750; + +#define dganontika_room_9Tex_00A818 "__OTR__scenes/nonmq/ganontika_scene/ganontika_room_9Tex_00A818" +static const ALIGN_ASSET(2) char ganontika_room_9Tex_00A818[] = dganontika_room_9Tex_00A818; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontika/ganontika_scene.h b/soh/assets/scenes/dungeons/ganontika/ganontika_scene.h index 68b459c02..8ebe6628c 100644 --- a/soh/assets/scenes/dungeons/ganontika/ganontika_scene.h +++ b/soh/assets/scenes/dungeons/ganontika/ganontika_scene.h @@ -1,142 +1,63 @@ #pragma once -#define dgForestTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gForestTrialSageCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTrialSageCs[] = dgForestTrialSageCs; -#else -static const char gForestTrialSageCs[] __attribute__((aligned (2))) = dgForestTrialSageCs; -#endif - -#define dgWaterTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gWaterTrialSageCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTrialSageCs[] = dgWaterTrialSageCs; -#else -static const char gWaterTrialSageCs[] __attribute__((aligned (2))) = dgWaterTrialSageCs; -#endif - -#define dgShadowTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gShadowTrialSageCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTrialSageCs[] = dgShadowTrialSageCs; -#else -static const char gShadowTrialSageCs[] __attribute__((aligned (2))) = dgShadowTrialSageCs; -#endif - -#define dgFireTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gFireTrialSageCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTrialSageCs[] = dgFireTrialSageCs; -#else -static const char gFireTrialSageCs[] __attribute__((aligned (2))) = dgFireTrialSageCs; -#endif - -#define dgLightTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gLightTrialSageCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightTrialSageCs[] = dgLightTrialSageCs; -#else -static const char gLightTrialSageCs[] __attribute__((aligned (2))) = dgLightTrialSageCs; -#endif - -#define dgSpiritTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gSpiritTrialSageCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTrialSageCs[] = dgSpiritTrialSageCs; -#else -static const char gSpiritTrialSageCs[] __attribute__((aligned (2))) = dgSpiritTrialSageCs; -#endif - -#define dgTowerBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gTowerBarrierCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gTowerBarrierCs[] = dgTowerBarrierCs; -#else -static const char gTowerBarrierCs[] __attribute__((aligned (2))) = dgTowerBarrierCs; -#endif - -#define dgLightBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gLightBarrierCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightBarrierCs[] = dgLightBarrierCs; -#else -static const char gLightBarrierCs[] __attribute__((aligned (2))) = dgLightBarrierCs; -#endif - -#define dgFireBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gFireBarrierCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireBarrierCs[] = dgFireBarrierCs; -#else -static const char gFireBarrierCs[] __attribute__((aligned (2))) = dgFireBarrierCs; -#endif - -#define dgForestBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gForestBarrierCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestBarrierCs[] = dgForestBarrierCs; -#else -static const char gForestBarrierCs[] __attribute__((aligned (2))) = dgForestBarrierCs; -#endif - -#define dgSpiritBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gSpiritBarrierCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritBarrierCs[] = dgSpiritBarrierCs; -#else -static const char gSpiritBarrierCs[] __attribute__((aligned (2))) = dgSpiritBarrierCs; -#endif - -#define dgWaterBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gWaterBarrierCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterBarrierCs[] = dgWaterBarrierCs; -#else -static const char gWaterBarrierCs[] __attribute__((aligned (2))) = dgWaterBarrierCs; -#endif - -#define dgShadowBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gShadowBarrierCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowBarrierCs[] = dgShadowBarrierCs; -#else -static const char gShadowBarrierCs[] __attribute__((aligned (2))) = dgShadowBarrierCs; -#endif - -#define dganontika_sceneCollisionHeader_019EAC "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneCollisionHeader_019EAC" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_sceneCollisionHeader_019EAC[] = dganontika_sceneCollisionHeader_019EAC; -#else -static const char ganontika_sceneCollisionHeader_019EAC[] __attribute__((aligned (2))) = dganontika_sceneCollisionHeader_019EAC; -#endif - -#define dganontika_sceneTex_01F780 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_01F780" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_sceneTex_01F780[] = dganontika_sceneTex_01F780; -#else -static const char ganontika_sceneTex_01F780[] __attribute__((aligned (2))) = dganontika_sceneTex_01F780; -#endif - -#define dganontika_sceneTLUT_01F380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTLUT_01F380" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_sceneTLUT_01F380[] = dganontika_sceneTLUT_01F380; -#else -static const char ganontika_sceneTLUT_01F380[] __attribute__((aligned (2))) = dganontika_sceneTLUT_01F380; -#endif - -#define dganontika_sceneTex_020380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_020380" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_sceneTex_020380[] = dganontika_sceneTex_020380; -#else -static const char ganontika_sceneTex_020380[] __attribute__((aligned (2))) = dganontika_sceneTex_020380; -#endif - -#define dganontika_sceneTex_020B80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_020B80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_sceneTex_020B80[] = dganontika_sceneTex_020B80; -#else -static const char ganontika_sceneTex_020B80[] __attribute__((aligned (2))) = dganontika_sceneTex_020B80; -#endif - -#define dganontika_sceneTex_01F580 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_01F580" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_sceneTex_01F580[] = dganontika_sceneTex_01F580; -#else -static const char ganontika_sceneTex_01F580[] __attribute__((aligned (2))) = dganontika_sceneTex_01F580; -#endif - -#define dganontika_sceneTex_01FF80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_01FF80" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontika_sceneTex_01FF80[] = dganontika_sceneTex_01FF80; -#else -static const char ganontika_sceneTex_01FF80[] __attribute__((aligned (2))) = dganontika_sceneTex_01FF80; -#endif - +#include "align_asset_macro.h" + +#define dgForestTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gForestTrialSageCs" +static const ALIGN_ASSET(2) char gForestTrialSageCs[] = dgForestTrialSageCs; + +#define dgWaterTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gWaterTrialSageCs" +static const ALIGN_ASSET(2) char gWaterTrialSageCs[] = dgWaterTrialSageCs; + +#define dgShadowTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gShadowTrialSageCs" +static const ALIGN_ASSET(2) char gShadowTrialSageCs[] = dgShadowTrialSageCs; + +#define dgFireTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gFireTrialSageCs" +static const ALIGN_ASSET(2) char gFireTrialSageCs[] = dgFireTrialSageCs; + +#define dgLightTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gLightTrialSageCs" +static const ALIGN_ASSET(2) char gLightTrialSageCs[] = dgLightTrialSageCs; + +#define dgSpiritTrialSageCs "__OTR__scenes/nonmq/ganontika_scene/gSpiritTrialSageCs" +static const ALIGN_ASSET(2) char gSpiritTrialSageCs[] = dgSpiritTrialSageCs; + +#define dgTowerBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gTowerBarrierCs" +static const ALIGN_ASSET(2) char gTowerBarrierCs[] = dgTowerBarrierCs; + +#define dgLightBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gLightBarrierCs" +static const ALIGN_ASSET(2) char gLightBarrierCs[] = dgLightBarrierCs; + +#define dgFireBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gFireBarrierCs" +static const ALIGN_ASSET(2) char gFireBarrierCs[] = dgFireBarrierCs; + +#define dgForestBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gForestBarrierCs" +static const ALIGN_ASSET(2) char gForestBarrierCs[] = dgForestBarrierCs; + +#define dgSpiritBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gSpiritBarrierCs" +static const ALIGN_ASSET(2) char gSpiritBarrierCs[] = dgSpiritBarrierCs; + +#define dgWaterBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gWaterBarrierCs" +static const ALIGN_ASSET(2) char gWaterBarrierCs[] = dgWaterBarrierCs; + +#define dgShadowBarrierCs "__OTR__scenes/nonmq/ganontika_scene/gShadowBarrierCs" +static const ALIGN_ASSET(2) char gShadowBarrierCs[] = dgShadowBarrierCs; + +#define dganontika_sceneCollisionHeader_019EAC "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneCollisionHeader_019EAC" +static const ALIGN_ASSET(2) char ganontika_sceneCollisionHeader_019EAC[] = dganontika_sceneCollisionHeader_019EAC; + +#define dganontika_sceneTex_01F780 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_01F780" +static const ALIGN_ASSET(2) char ganontika_sceneTex_01F780[] = dganontika_sceneTex_01F780; + +#define dganontika_sceneTLUT_01F380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTLUT_01F380" +static const ALIGN_ASSET(2) char ganontika_sceneTLUT_01F380[] = dganontika_sceneTLUT_01F380; + +#define dganontika_sceneTex_020380 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_020380" +static const ALIGN_ASSET(2) char ganontika_sceneTex_020380[] = dganontika_sceneTex_020380; + +#define dganontika_sceneTex_020B80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_020B80" +static const ALIGN_ASSET(2) char ganontika_sceneTex_020B80[] = dganontika_sceneTex_020B80; + +#define dganontika_sceneTex_01F580 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_01F580" +static const ALIGN_ASSET(2) char ganontika_sceneTex_01F580[] = dganontika_sceneTex_01F580; + +#define dganontika_sceneTex_01FF80 "__OTR__scenes/nonmq/ganontika_scene/ganontika_sceneTex_01FF80" +static const ALIGN_ASSET(2) char ganontika_sceneTex_01FF80[] = dganontika_sceneTex_01FF80; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_room_0.h b/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_room_0.h index 816f0c687..832f0510f 100644 --- a/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_room_0.h +++ b/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_room_0.h @@ -1,142 +1,63 @@ #pragma once -#define dganontikasonogo_room_0DL_0091C0 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0DL_0091C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0DL_0091C0[] = dganontikasonogo_room_0DL_0091C0; -#else -static const char ganontikasonogo_room_0DL_0091C0[] __attribute__((aligned (2))) = dganontikasonogo_room_0DL_0091C0; -#endif - -#define dganontikasonogo_room_0Tex_00B2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00B2D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_00B2D8[] = dganontikasonogo_room_0Tex_00B2D8; -#else -static const char ganontikasonogo_room_0Tex_00B2D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_00B2D8; -#endif - -#define dganontikasonogo_room_0Tex_00D2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00D2D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_00D2D8[] = dganontikasonogo_room_0Tex_00D2D8; -#else -static const char ganontikasonogo_room_0Tex_00D2D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_00D2D8; -#endif - -#define dganontikasonogo_room_0Tex_014AD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_014AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_014AD8[] = dganontikasonogo_room_0Tex_014AD8; -#else -static const char ganontikasonogo_room_0Tex_014AD8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_014AD8; -#endif - -#define dganontikasonogo_room_0Tex_0142D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0142D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_0142D8[] = dganontikasonogo_room_0Tex_0142D8; -#else -static const char ganontikasonogo_room_0Tex_0142D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_0142D8; -#endif - -#define dganontikasonogo_room_0Tex_0132D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0132D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_0132D8[] = dganontikasonogo_room_0Tex_0132D8; -#else -static const char ganontikasonogo_room_0Tex_0132D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_0132D8; -#endif - -#define dganontikasonogo_room_0Tex_00F2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00F2D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_00F2D8[] = dganontikasonogo_room_0Tex_00F2D8; -#else -static const char ganontikasonogo_room_0Tex_00F2D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_00F2D8; -#endif - -#define dganontikasonogo_room_0Tex_00E2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00E2D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_00E2D8[] = dganontikasonogo_room_0Tex_00E2D8; -#else -static const char ganontikasonogo_room_0Tex_00E2D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_00E2D8; -#endif - -#define dganontikasonogo_room_0Tex_00A2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00A2D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_00A2D8[] = dganontikasonogo_room_0Tex_00A2D8; -#else -static const char ganontikasonogo_room_0Tex_00A2D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_00A2D8; -#endif - -#define dganontikasonogo_room_0Tex_00FAD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00FAD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_00FAD8[] = dganontikasonogo_room_0Tex_00FAD8; -#else -static const char ganontikasonogo_room_0Tex_00FAD8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_00FAD8; -#endif - -#define dganontikasonogo_room_0Tex_0092D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0092D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_0092D8[] = dganontikasonogo_room_0Tex_0092D8; -#else -static const char ganontikasonogo_room_0Tex_0092D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_0092D8; -#endif - -#define dganontikasonogo_room_0Tex_012AD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_012AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_012AD8[] = dganontikasonogo_room_0Tex_012AD8; -#else -static const char ganontikasonogo_room_0Tex_012AD8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_012AD8; -#endif - -#define dganontikasonogo_room_0TLUT_0092B8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0TLUT_0092B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0TLUT_0092B8[] = dganontikasonogo_room_0TLUT_0092B8; -#else -static const char ganontikasonogo_room_0TLUT_0092B8[] __attribute__((aligned (2))) = dganontikasonogo_room_0TLUT_0092B8; -#endif - -#define dganontikasonogo_room_0Tex_0122D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0122D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_0122D8[] = dganontikasonogo_room_0Tex_0122D8; -#else -static const char ganontikasonogo_room_0Tex_0122D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_0122D8; -#endif - -#define dganontikasonogo_room_0Tex_011AD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_011AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_011AD8[] = dganontikasonogo_room_0Tex_011AD8; -#else -static const char ganontikasonogo_room_0Tex_011AD8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_011AD8; -#endif - -#define dganontikasonogo_room_0Tex_0112D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0112D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_0112D8[] = dganontikasonogo_room_0Tex_0112D8; -#else -static const char ganontikasonogo_room_0Tex_0112D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_0112D8; -#endif - -#define dganontikasonogo_room_0Tex_010AD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_010AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_010AD8[] = dganontikasonogo_room_0Tex_010AD8; -#else -static const char ganontikasonogo_room_0Tex_010AD8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_010AD8; -#endif - -#define dganontikasonogo_room_0Tex_00C2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00C2D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_00C2D8[] = dganontikasonogo_room_0Tex_00C2D8; -#else -static const char ganontikasonogo_room_0Tex_00C2D8[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_00C2D8; -#endif - -#define dganontikasonogo_room_0DL_016B48 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0DL_016B48" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0DL_016B48[] = dganontikasonogo_room_0DL_016B48; -#else -static const char ganontikasonogo_room_0DL_016B48[] __attribute__((aligned (2))) = dganontikasonogo_room_0DL_016B48; -#endif - -#define dganontikasonogo_room_0Tex_016B78 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_016B78" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_0Tex_016B78[] = dganontikasonogo_room_0Tex_016B78; -#else -static const char ganontikasonogo_room_0Tex_016B78[] __attribute__((aligned (2))) = dganontikasonogo_room_0Tex_016B78; -#endif - +#include "align_asset_macro.h" + +#define dganontikasonogo_room_0DL_0091C0 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0DL_0091C0" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0DL_0091C0[] = dganontikasonogo_room_0DL_0091C0; + +#define dganontikasonogo_room_0Tex_00B2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00B2D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_00B2D8[] = dganontikasonogo_room_0Tex_00B2D8; + +#define dganontikasonogo_room_0Tex_00D2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00D2D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_00D2D8[] = dganontikasonogo_room_0Tex_00D2D8; + +#define dganontikasonogo_room_0Tex_014AD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_014AD8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_014AD8[] = dganontikasonogo_room_0Tex_014AD8; + +#define dganontikasonogo_room_0Tex_0142D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0142D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_0142D8[] = dganontikasonogo_room_0Tex_0142D8; + +#define dganontikasonogo_room_0Tex_0132D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0132D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_0132D8[] = dganontikasonogo_room_0Tex_0132D8; + +#define dganontikasonogo_room_0Tex_00F2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00F2D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_00F2D8[] = dganontikasonogo_room_0Tex_00F2D8; + +#define dganontikasonogo_room_0Tex_00E2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00E2D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_00E2D8[] = dganontikasonogo_room_0Tex_00E2D8; + +#define dganontikasonogo_room_0Tex_00A2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00A2D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_00A2D8[] = dganontikasonogo_room_0Tex_00A2D8; + +#define dganontikasonogo_room_0Tex_00FAD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00FAD8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_00FAD8[] = dganontikasonogo_room_0Tex_00FAD8; + +#define dganontikasonogo_room_0Tex_0092D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0092D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_0092D8[] = dganontikasonogo_room_0Tex_0092D8; + +#define dganontikasonogo_room_0Tex_012AD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_012AD8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_012AD8[] = dganontikasonogo_room_0Tex_012AD8; + +#define dganontikasonogo_room_0TLUT_0092B8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0TLUT_0092B8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0TLUT_0092B8[] = dganontikasonogo_room_0TLUT_0092B8; + +#define dganontikasonogo_room_0Tex_0122D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0122D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_0122D8[] = dganontikasonogo_room_0Tex_0122D8; + +#define dganontikasonogo_room_0Tex_011AD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_011AD8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_011AD8[] = dganontikasonogo_room_0Tex_011AD8; + +#define dganontikasonogo_room_0Tex_0112D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_0112D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_0112D8[] = dganontikasonogo_room_0Tex_0112D8; + +#define dganontikasonogo_room_0Tex_010AD8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_010AD8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_010AD8[] = dganontikasonogo_room_0Tex_010AD8; + +#define dganontikasonogo_room_0Tex_00C2D8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_00C2D8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_00C2D8[] = dganontikasonogo_room_0Tex_00C2D8; + +#define dganontikasonogo_room_0DL_016B48 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0DL_016B48" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0DL_016B48[] = dganontikasonogo_room_0DL_016B48; + +#define dganontikasonogo_room_0Tex_016B78 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_0Tex_016B78" +static const ALIGN_ASSET(2) char ganontikasonogo_room_0Tex_016B78[] = dganontikasonogo_room_0Tex_016B78; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_room_1.h b/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_room_1.h index e7aa41387..5aedb322e 100644 --- a/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_room_1.h +++ b/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_room_1.h @@ -1,44 +1,21 @@ #pragma once -#define dganontikasonogo_room_1DL_006BE8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1DL_006BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_1DL_006BE8[] = dganontikasonogo_room_1DL_006BE8; -#else -static const char ganontikasonogo_room_1DL_006BE8[] __attribute__((aligned (2))) = dganontikasonogo_room_1DL_006BE8; -#endif - -#define dganontikasonogo_room_1Tex_006C60 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1Tex_006C60" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_1Tex_006C60[] = dganontikasonogo_room_1Tex_006C60; -#else -static const char ganontikasonogo_room_1Tex_006C60[] __attribute__((aligned (2))) = dganontikasonogo_room_1Tex_006C60; -#endif - -#define dganontikasonogo_room_1Tex_007460 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1Tex_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_1Tex_007460[] = dganontikasonogo_room_1Tex_007460; -#else -static const char ganontikasonogo_room_1Tex_007460[] __attribute__((aligned (2))) = dganontikasonogo_room_1Tex_007460; -#endif - -#define dganontikasonogo_room_1Tex_008460 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1Tex_008460" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_1Tex_008460[] = dganontikasonogo_room_1Tex_008460; -#else -static const char ganontikasonogo_room_1Tex_008460[] __attribute__((aligned (2))) = dganontikasonogo_room_1Tex_008460; -#endif - -#define dganontikasonogo_room_1DL_009710 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1DL_009710" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_1DL_009710[] = dganontikasonogo_room_1DL_009710; -#else -static const char ganontikasonogo_room_1DL_009710[] __attribute__((aligned (2))) = dganontikasonogo_room_1DL_009710; -#endif - -#define dganontikasonogo_room_1Tex_009720 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1Tex_009720" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_room_1Tex_009720[] = dganontikasonogo_room_1Tex_009720; -#else -static const char ganontikasonogo_room_1Tex_009720[] __attribute__((aligned (2))) = dganontikasonogo_room_1Tex_009720; -#endif - +#include "align_asset_macro.h" + +#define dganontikasonogo_room_1DL_006BE8 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1DL_006BE8" +static const ALIGN_ASSET(2) char ganontikasonogo_room_1DL_006BE8[] = dganontikasonogo_room_1DL_006BE8; + +#define dganontikasonogo_room_1Tex_006C60 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1Tex_006C60" +static const ALIGN_ASSET(2) char ganontikasonogo_room_1Tex_006C60[] = dganontikasonogo_room_1Tex_006C60; + +#define dganontikasonogo_room_1Tex_007460 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1Tex_007460" +static const ALIGN_ASSET(2) char ganontikasonogo_room_1Tex_007460[] = dganontikasonogo_room_1Tex_007460; + +#define dganontikasonogo_room_1Tex_008460 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1Tex_008460" +static const ALIGN_ASSET(2) char ganontikasonogo_room_1Tex_008460[] = dganontikasonogo_room_1Tex_008460; + +#define dganontikasonogo_room_1DL_009710 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1DL_009710" +static const ALIGN_ASSET(2) char ganontikasonogo_room_1DL_009710[] = dganontikasonogo_room_1DL_009710; + +#define dganontikasonogo_room_1Tex_009720 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_room_1Tex_009720" +static const ALIGN_ASSET(2) char ganontikasonogo_room_1Tex_009720[] = dganontikasonogo_room_1Tex_009720; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_scene.h b/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_scene.h index c0d61ac49..e36e74cb7 100644 --- a/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_scene.h +++ b/soh/assets/scenes/dungeons/ganontikasonogo/ganontikasonogo_scene.h @@ -1,23 +1,12 @@ #pragma once -#define dganontikasonogo_sceneCollisionHeader_002ACC "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_sceneCollisionHeader_002ACC" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_sceneCollisionHeader_002ACC[] = dganontikasonogo_sceneCollisionHeader_002ACC; -#else -static const char ganontikasonogo_sceneCollisionHeader_002ACC[] __attribute__((aligned (2))) = dganontikasonogo_sceneCollisionHeader_002ACC; -#endif - -#define dganontikasonogo_sceneTex_002B00 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_sceneTex_002B00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_sceneTex_002B00[] = dganontikasonogo_sceneTex_002B00; -#else -static const char ganontikasonogo_sceneTex_002B00[] __attribute__((aligned (2))) = dganontikasonogo_sceneTex_002B00; -#endif - -#define dganontikasonogo_sceneTex_003B00 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_sceneTex_003B00" -#ifdef _WIN32 -static const __declspec(align(2)) char ganontikasonogo_sceneTex_003B00[] = dganontikasonogo_sceneTex_003B00; -#else -static const char ganontikasonogo_sceneTex_003B00[] __attribute__((aligned (2))) = dganontikasonogo_sceneTex_003B00; -#endif - +#include "align_asset_macro.h" + +#define dganontikasonogo_sceneCollisionHeader_002ACC "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_sceneCollisionHeader_002ACC" +static const ALIGN_ASSET(2) char ganontikasonogo_sceneCollisionHeader_002ACC[] = dganontikasonogo_sceneCollisionHeader_002ACC; + +#define dganontikasonogo_sceneTex_002B00 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_sceneTex_002B00" +static const ALIGN_ASSET(2) char ganontikasonogo_sceneTex_002B00[] = dganontikasonogo_sceneTex_002B00; + +#define dganontikasonogo_sceneTex_003B00 "__OTR__scenes/nonmq/ganontikasonogo_scene/ganontikasonogo_sceneTex_003B00" +static const ALIGN_ASSET(2) char ganontikasonogo_sceneTex_003B00[] = dganontikasonogo_sceneTex_003B00; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_0.h b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_0.h index 20c035a12..637ecc7b9 100644 --- a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_0.h +++ b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_0.h @@ -1,72 +1,33 @@ #pragma once -#define dgerudoway_room_0DL_002B58 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_002B58" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0DL_002B58[] = dgerudoway_room_0DL_002B58; -#else -static const char gerudoway_room_0DL_002B58[] __attribute__((aligned (2))) = dgerudoway_room_0DL_002B58; -#endif - -#define dgerudoway_room_0DL_004520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_004520" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0DL_004520[] = dgerudoway_room_0DL_004520; -#else -static const char gerudoway_room_0DL_004520[] __attribute__((aligned (2))) = dgerudoway_room_0DL_004520; -#endif - -#define dgerudoway_room_0DL_002E68 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_002E68" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0DL_002E68[] = dgerudoway_room_0DL_002E68; -#else -static const char gerudoway_room_0DL_002E68[] __attribute__((aligned (2))) = dgerudoway_room_0DL_002E68; -#endif - -#define dgerudoway_room_0DL_0047A0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_0047A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0DL_0047A0[] = dgerudoway_room_0DL_0047A0; -#else -static const char gerudoway_room_0DL_0047A0[] __attribute__((aligned (2))) = dgerudoway_room_0DL_0047A0; -#endif - -#define dgerudoway_room_0DL_004BF8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_004BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0DL_004BF8[] = dgerudoway_room_0DL_004BF8; -#else -static const char gerudoway_room_0DL_004BF8[] __attribute__((aligned (2))) = dgerudoway_room_0DL_004BF8; -#endif - -#define dgerudoway_room_0DL_002858 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_002858" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0DL_002858[] = dgerudoway_room_0DL_002858; -#else -static const char gerudoway_room_0DL_002858[] __attribute__((aligned (2))) = dgerudoway_room_0DL_002858; -#endif - -#define dgerudoway_room_0DL_002208 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_002208" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0DL_002208[] = dgerudoway_room_0DL_002208; -#else -static const char gerudoway_room_0DL_002208[] __attribute__((aligned (2))) = dgerudoway_room_0DL_002208; -#endif - -#define dgerudoway_room_0DL_000E70 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_000E70" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0DL_000E70[] = dgerudoway_room_0DL_000E70; -#else -static const char gerudoway_room_0DL_000E70[] __attribute__((aligned (2))) = dgerudoway_room_0DL_000E70; -#endif - -#define dgerudoway_room_0Tex_002FB0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0Tex_002FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0Tex_002FB0[] = dgerudoway_room_0Tex_002FB0; -#else -static const char gerudoway_room_0Tex_002FB0[] __attribute__((aligned (2))) = dgerudoway_room_0Tex_002FB0; -#endif - -#define dgerudoway_room_0Tex_003FB0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0Tex_003FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_0Tex_003FB0[] = dgerudoway_room_0Tex_003FB0; -#else -static const char gerudoway_room_0Tex_003FB0[] __attribute__((aligned (2))) = dgerudoway_room_0Tex_003FB0; -#endif - +#include "align_asset_macro.h" + +#define dgerudoway_room_0DL_002B58 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_002B58" +static const ALIGN_ASSET(2) char gerudoway_room_0DL_002B58[] = dgerudoway_room_0DL_002B58; + +#define dgerudoway_room_0DL_004520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_004520" +static const ALIGN_ASSET(2) char gerudoway_room_0DL_004520[] = dgerudoway_room_0DL_004520; + +#define dgerudoway_room_0DL_002E68 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_002E68" +static const ALIGN_ASSET(2) char gerudoway_room_0DL_002E68[] = dgerudoway_room_0DL_002E68; + +#define dgerudoway_room_0DL_0047A0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_0047A0" +static const ALIGN_ASSET(2) char gerudoway_room_0DL_0047A0[] = dgerudoway_room_0DL_0047A0; + +#define dgerudoway_room_0DL_004BF8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_004BF8" +static const ALIGN_ASSET(2) char gerudoway_room_0DL_004BF8[] = dgerudoway_room_0DL_004BF8; + +#define dgerudoway_room_0DL_002858 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_002858" +static const ALIGN_ASSET(2) char gerudoway_room_0DL_002858[] = dgerudoway_room_0DL_002858; + +#define dgerudoway_room_0DL_002208 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_002208" +static const ALIGN_ASSET(2) char gerudoway_room_0DL_002208[] = dgerudoway_room_0DL_002208; + +#define dgerudoway_room_0DL_000E70 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0DL_000E70" +static const ALIGN_ASSET(2) char gerudoway_room_0DL_000E70[] = dgerudoway_room_0DL_000E70; + +#define dgerudoway_room_0Tex_002FB0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0Tex_002FB0" +static const ALIGN_ASSET(2) char gerudoway_room_0Tex_002FB0[] = dgerudoway_room_0Tex_002FB0; + +#define dgerudoway_room_0Tex_003FB0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_0Tex_003FB0" +static const ALIGN_ASSET(2) char gerudoway_room_0Tex_003FB0[] = dgerudoway_room_0Tex_003FB0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_1.h b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_1.h index db36ee07d..ca100b431 100644 --- a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_1.h +++ b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_1.h @@ -1,107 +1,48 @@ #pragma once -#define dgerudoway_room_1DL_001A60 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_001A60" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_001A60[] = dgerudoway_room_1DL_001A60; -#else -static const char gerudoway_room_1DL_001A60[] __attribute__((aligned (2))) = dgerudoway_room_1DL_001A60; -#endif - -#define dgerudoway_room_1DL_006C80 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_006C80" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_006C80[] = dgerudoway_room_1DL_006C80; -#else -static const char gerudoway_room_1DL_006C80[] __attribute__((aligned (2))) = dgerudoway_room_1DL_006C80; -#endif - -#define dgerudoway_room_1DL_001D70 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_001D70" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_001D70[] = dgerudoway_room_1DL_001D70; -#else -static const char gerudoway_room_1DL_001D70[] __attribute__((aligned (2))) = dgerudoway_room_1DL_001D70; -#endif - -#define dgerudoway_room_1DL_006F00 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_006F00" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_006F00[] = dgerudoway_room_1DL_006F00; -#else -static const char gerudoway_room_1DL_006F00[] __attribute__((aligned (2))) = dgerudoway_room_1DL_006F00; -#endif - -#define dgerudoway_room_1DL_002EC8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_002EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_002EC8[] = dgerudoway_room_1DL_002EC8; -#else -static const char gerudoway_room_1DL_002EC8[] __attribute__((aligned (2))) = dgerudoway_room_1DL_002EC8; -#endif - -#define dgerudoway_room_1Tex_005710 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_005710" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1Tex_005710[] = dgerudoway_room_1Tex_005710; -#else -static const char gerudoway_room_1Tex_005710[] __attribute__((aligned (2))) = dgerudoway_room_1Tex_005710; -#endif - -#define dgerudoway_room_1Tex_003F10 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_003F10" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1Tex_003F10[] = dgerudoway_room_1Tex_003F10; -#else -static const char gerudoway_room_1Tex_003F10[] __attribute__((aligned (2))) = dgerudoway_room_1Tex_003F10; -#endif - -#define dgerudoway_room_1Tex_003710 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_003710" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1Tex_003710[] = dgerudoway_room_1Tex_003710; -#else -static const char gerudoway_room_1Tex_003710[] __attribute__((aligned (2))) = dgerudoway_room_1Tex_003710; -#endif - -#define dgerudoway_room_1Tex_004710 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_004710" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1Tex_004710[] = dgerudoway_room_1Tex_004710; -#else -static const char gerudoway_room_1Tex_004710[] __attribute__((aligned (2))) = dgerudoway_room_1Tex_004710; -#endif - -#define dgerudoway_room_1DL_0071B8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_0071B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_0071B8[] = dgerudoway_room_1DL_0071B8; -#else -static const char gerudoway_room_1DL_0071B8[] __attribute__((aligned (2))) = dgerudoway_room_1DL_0071B8; -#endif - -#define dgerudoway_room_1DL_001178 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_001178" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_001178[] = dgerudoway_room_1DL_001178; -#else -static const char gerudoway_room_1DL_001178[] __attribute__((aligned (2))) = dgerudoway_room_1DL_001178; -#endif - -#define dgerudoway_room_1DL_001710 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_001710" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_001710[] = dgerudoway_room_1DL_001710; -#else -static const char gerudoway_room_1DL_001710[] __attribute__((aligned (2))) = dgerudoway_room_1DL_001710; -#endif - -#define dgerudoway_room_1Tex_006310 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_006310" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1Tex_006310[] = dgerudoway_room_1Tex_006310; -#else -static const char gerudoway_room_1Tex_006310[] __attribute__((aligned (2))) = dgerudoway_room_1Tex_006310; -#endif - -#define dgerudoway_room_1Tex_005B10 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_005B10" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1Tex_005B10[] = dgerudoway_room_1Tex_005B10; -#else -static const char gerudoway_room_1Tex_005B10[] __attribute__((aligned (2))) = dgerudoway_room_1Tex_005B10; -#endif - -#define dgerudoway_room_1DL_000B90 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_000B90" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_1DL_000B90[] = dgerudoway_room_1DL_000B90; -#else -static const char gerudoway_room_1DL_000B90[] __attribute__((aligned (2))) = dgerudoway_room_1DL_000B90; -#endif - +#include "align_asset_macro.h" + +#define dgerudoway_room_1DL_001A60 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_001A60" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_001A60[] = dgerudoway_room_1DL_001A60; + +#define dgerudoway_room_1DL_006C80 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_006C80" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_006C80[] = dgerudoway_room_1DL_006C80; + +#define dgerudoway_room_1DL_001D70 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_001D70" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_001D70[] = dgerudoway_room_1DL_001D70; + +#define dgerudoway_room_1DL_006F00 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_006F00" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_006F00[] = dgerudoway_room_1DL_006F00; + +#define dgerudoway_room_1DL_002EC8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_002EC8" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_002EC8[] = dgerudoway_room_1DL_002EC8; + +#define dgerudoway_room_1Tex_005710 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_005710" +static const ALIGN_ASSET(2) char gerudoway_room_1Tex_005710[] = dgerudoway_room_1Tex_005710; + +#define dgerudoway_room_1Tex_003F10 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_003F10" +static const ALIGN_ASSET(2) char gerudoway_room_1Tex_003F10[] = dgerudoway_room_1Tex_003F10; + +#define dgerudoway_room_1Tex_003710 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_003710" +static const ALIGN_ASSET(2) char gerudoway_room_1Tex_003710[] = dgerudoway_room_1Tex_003710; + +#define dgerudoway_room_1Tex_004710 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_004710" +static const ALIGN_ASSET(2) char gerudoway_room_1Tex_004710[] = dgerudoway_room_1Tex_004710; + +#define dgerudoway_room_1DL_0071B8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_0071B8" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_0071B8[] = dgerudoway_room_1DL_0071B8; + +#define dgerudoway_room_1DL_001178 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_001178" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_001178[] = dgerudoway_room_1DL_001178; + +#define dgerudoway_room_1DL_001710 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_001710" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_001710[] = dgerudoway_room_1DL_001710; + +#define dgerudoway_room_1Tex_006310 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_006310" +static const ALIGN_ASSET(2) char gerudoway_room_1Tex_006310[] = dgerudoway_room_1Tex_006310; + +#define dgerudoway_room_1Tex_005B10 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1Tex_005B10" +static const ALIGN_ASSET(2) char gerudoway_room_1Tex_005B10[] = dgerudoway_room_1Tex_005B10; + +#define dgerudoway_room_1DL_000B90 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_1DL_000B90" +static const ALIGN_ASSET(2) char gerudoway_room_1DL_000B90[] = dgerudoway_room_1DL_000B90; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_2.h b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_2.h index 0db303a61..d6847ac68 100644 --- a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_2.h +++ b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_2.h @@ -1,72 +1,33 @@ #pragma once -#define dgerudoway_room_2DL_001E40 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_001E40" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2DL_001E40[] = dgerudoway_room_2DL_001E40; -#else -static const char gerudoway_room_2DL_001E40[] __attribute__((aligned (2))) = dgerudoway_room_2DL_001E40; -#endif - -#define dgerudoway_room_2DL_003410 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_003410" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2DL_003410[] = dgerudoway_room_2DL_003410; -#else -static const char gerudoway_room_2DL_003410[] __attribute__((aligned (2))) = dgerudoway_room_2DL_003410; -#endif - -#define dgerudoway_room_2DL_002150 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_002150" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2DL_002150[] = dgerudoway_room_2DL_002150; -#else -static const char gerudoway_room_2DL_002150[] __attribute__((aligned (2))) = dgerudoway_room_2DL_002150; -#endif - -#define dgerudoway_room_2DL_003690 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_003690" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2DL_003690[] = dgerudoway_room_2DL_003690; -#else -static const char gerudoway_room_2DL_003690[] __attribute__((aligned (2))) = dgerudoway_room_2DL_003690; -#endif - -#define dgerudoway_room_2DL_003CC8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_003CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2DL_003CC8[] = dgerudoway_room_2DL_003CC8; -#else -static const char gerudoway_room_2DL_003CC8[] __attribute__((aligned (2))) = dgerudoway_room_2DL_003CC8; -#endif - -#define dgerudoway_room_2DL_001518 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_001518" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2DL_001518[] = dgerudoway_room_2DL_001518; -#else -static const char gerudoway_room_2DL_001518[] __attribute__((aligned (2))) = dgerudoway_room_2DL_001518; -#endif - -#define dgerudoway_room_2DL_001A98 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_001A98" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2DL_001A98[] = dgerudoway_room_2DL_001A98; -#else -static const char gerudoway_room_2DL_001A98[] __attribute__((aligned (2))) = dgerudoway_room_2DL_001A98; -#endif - -#define dgerudoway_room_2Tex_002298 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2Tex_002298" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2Tex_002298[] = dgerudoway_room_2Tex_002298; -#else -static const char gerudoway_room_2Tex_002298[] __attribute__((aligned (2))) = dgerudoway_room_2Tex_002298; -#endif - -#define dgerudoway_room_2Tex_002A98 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2Tex_002A98" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2Tex_002A98[] = dgerudoway_room_2Tex_002A98; -#else -static const char gerudoway_room_2Tex_002A98[] __attribute__((aligned (2))) = dgerudoway_room_2Tex_002A98; -#endif - -#define dgerudoway_room_2DL_000E80 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_000E80" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_2DL_000E80[] = dgerudoway_room_2DL_000E80; -#else -static const char gerudoway_room_2DL_000E80[] __attribute__((aligned (2))) = dgerudoway_room_2DL_000E80; -#endif - +#include "align_asset_macro.h" + +#define dgerudoway_room_2DL_001E40 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_001E40" +static const ALIGN_ASSET(2) char gerudoway_room_2DL_001E40[] = dgerudoway_room_2DL_001E40; + +#define dgerudoway_room_2DL_003410 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_003410" +static const ALIGN_ASSET(2) char gerudoway_room_2DL_003410[] = dgerudoway_room_2DL_003410; + +#define dgerudoway_room_2DL_002150 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_002150" +static const ALIGN_ASSET(2) char gerudoway_room_2DL_002150[] = dgerudoway_room_2DL_002150; + +#define dgerudoway_room_2DL_003690 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_003690" +static const ALIGN_ASSET(2) char gerudoway_room_2DL_003690[] = dgerudoway_room_2DL_003690; + +#define dgerudoway_room_2DL_003CC8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_003CC8" +static const ALIGN_ASSET(2) char gerudoway_room_2DL_003CC8[] = dgerudoway_room_2DL_003CC8; + +#define dgerudoway_room_2DL_001518 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_001518" +static const ALIGN_ASSET(2) char gerudoway_room_2DL_001518[] = dgerudoway_room_2DL_001518; + +#define dgerudoway_room_2DL_001A98 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_001A98" +static const ALIGN_ASSET(2) char gerudoway_room_2DL_001A98[] = dgerudoway_room_2DL_001A98; + +#define dgerudoway_room_2Tex_002298 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2Tex_002298" +static const ALIGN_ASSET(2) char gerudoway_room_2Tex_002298[] = dgerudoway_room_2Tex_002298; + +#define dgerudoway_room_2Tex_002A98 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2Tex_002A98" +static const ALIGN_ASSET(2) char gerudoway_room_2Tex_002A98[] = dgerudoway_room_2Tex_002A98; + +#define dgerudoway_room_2DL_000E80 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_2DL_000E80" +static const ALIGN_ASSET(2) char gerudoway_room_2DL_000E80[] = dgerudoway_room_2DL_000E80; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_3.h b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_3.h index 689ade7a1..e4e931b66 100644 --- a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_3.h +++ b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_3.h @@ -1,128 +1,57 @@ #pragma once -#define dgerudoway_room_3DL_005540 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_005540" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_005540[] = dgerudoway_room_3DL_005540; -#else -static const char gerudoway_room_3DL_005540[] __attribute__((aligned (2))) = dgerudoway_room_3DL_005540; -#endif - -#define dgerudoway_room_3Tex_009AA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_009AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3Tex_009AA0[] = dgerudoway_room_3Tex_009AA0; -#else -static const char gerudoway_room_3Tex_009AA0[] __attribute__((aligned (2))) = dgerudoway_room_3Tex_009AA0; -#endif - -#define dgerudoway_room_3DL_002BA8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_002BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_002BA8[] = dgerudoway_room_3DL_002BA8; -#else -static const char gerudoway_room_3DL_002BA8[] __attribute__((aligned (2))) = dgerudoway_room_3DL_002BA8; -#endif - -#define dgerudoway_room_3Tex_0076A0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_0076A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3Tex_0076A0[] = dgerudoway_room_3Tex_0076A0; -#else -static const char gerudoway_room_3Tex_0076A0[] __attribute__((aligned (2))) = dgerudoway_room_3Tex_0076A0; -#endif - -#define dgerudoway_room_3DL_00A410 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_00A410" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_00A410[] = dgerudoway_room_3DL_00A410; -#else -static const char gerudoway_room_3DL_00A410[] __attribute__((aligned (2))) = dgerudoway_room_3DL_00A410; -#endif - -#define dgerudoway_room_3DL_002F28 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_002F28" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_002F28[] = dgerudoway_room_3DL_002F28; -#else -static const char gerudoway_room_3DL_002F28[] __attribute__((aligned (2))) = dgerudoway_room_3DL_002F28; -#endif - -#define dgerudoway_room_3DL_00A690 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_00A690" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_00A690[] = dgerudoway_room_3DL_00A690; -#else -static const char gerudoway_room_3DL_00A690[] __attribute__((aligned (2))) = dgerudoway_room_3DL_00A690; -#endif - -#define dgerudoway_room_3DL_006640 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_006640" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_006640[] = dgerudoway_room_3DL_006640; -#else -static const char gerudoway_room_3DL_006640[] __attribute__((aligned (2))) = dgerudoway_room_3DL_006640; -#endif - -#define dgerudoway_room_3Tex_008EA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_008EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3Tex_008EA0[] = dgerudoway_room_3Tex_008EA0; -#else -static const char gerudoway_room_3Tex_008EA0[] __attribute__((aligned (2))) = dgerudoway_room_3Tex_008EA0; -#endif - -#define dgerudoway_room_3Tex_007EA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_007EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3Tex_007EA0[] = dgerudoway_room_3Tex_007EA0; -#else -static const char gerudoway_room_3Tex_007EA0[] __attribute__((aligned (2))) = dgerudoway_room_3Tex_007EA0; -#endif - -#define dgerudoway_room_3Tex_006EA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_006EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3Tex_006EA0[] = dgerudoway_room_3Tex_006EA0; -#else -static const char gerudoway_room_3Tex_006EA0[] __attribute__((aligned (2))) = dgerudoway_room_3Tex_006EA0; -#endif - -#define dgerudoway_room_3DL_00B0E8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_00B0E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_00B0E8[] = dgerudoway_room_3DL_00B0E8; -#else -static const char gerudoway_room_3DL_00B0E8[] __attribute__((aligned (2))) = dgerudoway_room_3DL_00B0E8; -#endif - -#define dgerudoway_room_3DL_002658 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_002658" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_002658[] = dgerudoway_room_3DL_002658; -#else -static const char gerudoway_room_3DL_002658[] __attribute__((aligned (2))) = dgerudoway_room_3DL_002658; -#endif - -#define dgerudoway_room_3DL_005378 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_005378" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_005378[] = dgerudoway_room_3DL_005378; -#else -static const char gerudoway_room_3DL_005378[] __attribute__((aligned (2))) = dgerudoway_room_3DL_005378; -#endif - -#define dgerudoway_room_3Tex_0092A0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_0092A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3Tex_0092A0[] = dgerudoway_room_3Tex_0092A0; -#else -static const char gerudoway_room_3Tex_0092A0[] __attribute__((aligned (2))) = dgerudoway_room_3Tex_0092A0; -#endif - -#define dgerudoway_room_3DL_004EA8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_004EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_004EA8[] = dgerudoway_room_3DL_004EA8; -#else -static const char gerudoway_room_3DL_004EA8[] __attribute__((aligned (2))) = dgerudoway_room_3DL_004EA8; -#endif - -#define dgerudoway_room_3DL_001B70 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_001B70" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_001B70[] = dgerudoway_room_3DL_001B70; -#else -static const char gerudoway_room_3DL_001B70[] __attribute__((aligned (2))) = dgerudoway_room_3DL_001B70; -#endif - -#define dgerudoway_room_3DL_003E80 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_003E80" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_3DL_003E80[] = dgerudoway_room_3DL_003E80; -#else -static const char gerudoway_room_3DL_003E80[] __attribute__((aligned (2))) = dgerudoway_room_3DL_003E80; -#endif - +#include "align_asset_macro.h" + +#define dgerudoway_room_3DL_005540 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_005540" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_005540[] = dgerudoway_room_3DL_005540; + +#define dgerudoway_room_3Tex_009AA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_009AA0" +static const ALIGN_ASSET(2) char gerudoway_room_3Tex_009AA0[] = dgerudoway_room_3Tex_009AA0; + +#define dgerudoway_room_3DL_002BA8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_002BA8" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_002BA8[] = dgerudoway_room_3DL_002BA8; + +#define dgerudoway_room_3Tex_0076A0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_0076A0" +static const ALIGN_ASSET(2) char gerudoway_room_3Tex_0076A0[] = dgerudoway_room_3Tex_0076A0; + +#define dgerudoway_room_3DL_00A410 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_00A410" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_00A410[] = dgerudoway_room_3DL_00A410; + +#define dgerudoway_room_3DL_002F28 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_002F28" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_002F28[] = dgerudoway_room_3DL_002F28; + +#define dgerudoway_room_3DL_00A690 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_00A690" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_00A690[] = dgerudoway_room_3DL_00A690; + +#define dgerudoway_room_3DL_006640 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_006640" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_006640[] = dgerudoway_room_3DL_006640; + +#define dgerudoway_room_3Tex_008EA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_008EA0" +static const ALIGN_ASSET(2) char gerudoway_room_3Tex_008EA0[] = dgerudoway_room_3Tex_008EA0; + +#define dgerudoway_room_3Tex_007EA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_007EA0" +static const ALIGN_ASSET(2) char gerudoway_room_3Tex_007EA0[] = dgerudoway_room_3Tex_007EA0; + +#define dgerudoway_room_3Tex_006EA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_006EA0" +static const ALIGN_ASSET(2) char gerudoway_room_3Tex_006EA0[] = dgerudoway_room_3Tex_006EA0; + +#define dgerudoway_room_3DL_00B0E8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_00B0E8" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_00B0E8[] = dgerudoway_room_3DL_00B0E8; + +#define dgerudoway_room_3DL_002658 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_002658" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_002658[] = dgerudoway_room_3DL_002658; + +#define dgerudoway_room_3DL_005378 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_005378" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_005378[] = dgerudoway_room_3DL_005378; + +#define dgerudoway_room_3Tex_0092A0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3Tex_0092A0" +static const ALIGN_ASSET(2) char gerudoway_room_3Tex_0092A0[] = dgerudoway_room_3Tex_0092A0; + +#define dgerudoway_room_3DL_004EA8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_004EA8" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_004EA8[] = dgerudoway_room_3DL_004EA8; + +#define dgerudoway_room_3DL_001B70 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_001B70" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_001B70[] = dgerudoway_room_3DL_001B70; + +#define dgerudoway_room_3DL_003E80 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_3DL_003E80" +static const ALIGN_ASSET(2) char gerudoway_room_3DL_003E80[] = dgerudoway_room_3DL_003E80; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_4.h b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_4.h index 38fa89654..5d7b393b8 100644 --- a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_4.h +++ b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_4.h @@ -1,72 +1,33 @@ #pragma once -#define dgerudoway_room_4DL_001BD0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_001BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4DL_001BD0[] = dgerudoway_room_4DL_001BD0; -#else -static const char gerudoway_room_4DL_001BD0[] __attribute__((aligned (2))) = dgerudoway_room_4DL_001BD0; -#endif - -#define dgerudoway_room_4DL_0031A0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_0031A0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4DL_0031A0[] = dgerudoway_room_4DL_0031A0; -#else -static const char gerudoway_room_4DL_0031A0[] __attribute__((aligned (2))) = dgerudoway_room_4DL_0031A0; -#endif - -#define dgerudoway_room_4DL_001EE0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_001EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4DL_001EE0[] = dgerudoway_room_4DL_001EE0; -#else -static const char gerudoway_room_4DL_001EE0[] __attribute__((aligned (2))) = dgerudoway_room_4DL_001EE0; -#endif - -#define dgerudoway_room_4DL_003420 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_003420" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4DL_003420[] = dgerudoway_room_4DL_003420; -#else -static const char gerudoway_room_4DL_003420[] __attribute__((aligned (2))) = dgerudoway_room_4DL_003420; -#endif - -#define dgerudoway_room_4DL_0037F8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_0037F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4DL_0037F8[] = dgerudoway_room_4DL_0037F8; -#else -static const char gerudoway_room_4DL_0037F8[] __attribute__((aligned (2))) = dgerudoway_room_4DL_0037F8; -#endif - -#define dgerudoway_room_4DL_0012E8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_0012E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4DL_0012E8[] = dgerudoway_room_4DL_0012E8; -#else -static const char gerudoway_room_4DL_0012E8[] __attribute__((aligned (2))) = dgerudoway_room_4DL_0012E8; -#endif - -#define dgerudoway_room_4DL_001880 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4DL_001880[] = dgerudoway_room_4DL_001880; -#else -static const char gerudoway_room_4DL_001880[] __attribute__((aligned (2))) = dgerudoway_room_4DL_001880; -#endif - -#define dgerudoway_room_4Tex_002828 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4Tex_002828" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4Tex_002828[] = dgerudoway_room_4Tex_002828; -#else -static const char gerudoway_room_4Tex_002828[] __attribute__((aligned (2))) = dgerudoway_room_4Tex_002828; -#endif - -#define dgerudoway_room_4Tex_002028 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4Tex_002028" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4Tex_002028[] = dgerudoway_room_4Tex_002028; -#else -static const char gerudoway_room_4Tex_002028[] __attribute__((aligned (2))) = dgerudoway_room_4Tex_002028; -#endif - -#define dgerudoway_room_4DL_000D10 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_000D10" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_4DL_000D10[] = dgerudoway_room_4DL_000D10; -#else -static const char gerudoway_room_4DL_000D10[] __attribute__((aligned (2))) = dgerudoway_room_4DL_000D10; -#endif - +#include "align_asset_macro.h" + +#define dgerudoway_room_4DL_001BD0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_001BD0" +static const ALIGN_ASSET(2) char gerudoway_room_4DL_001BD0[] = dgerudoway_room_4DL_001BD0; + +#define dgerudoway_room_4DL_0031A0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_0031A0" +static const ALIGN_ASSET(2) char gerudoway_room_4DL_0031A0[] = dgerudoway_room_4DL_0031A0; + +#define dgerudoway_room_4DL_001EE0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_001EE0" +static const ALIGN_ASSET(2) char gerudoway_room_4DL_001EE0[] = dgerudoway_room_4DL_001EE0; + +#define dgerudoway_room_4DL_003420 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_003420" +static const ALIGN_ASSET(2) char gerudoway_room_4DL_003420[] = dgerudoway_room_4DL_003420; + +#define dgerudoway_room_4DL_0037F8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_0037F8" +static const ALIGN_ASSET(2) char gerudoway_room_4DL_0037F8[] = dgerudoway_room_4DL_0037F8; + +#define dgerudoway_room_4DL_0012E8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_0012E8" +static const ALIGN_ASSET(2) char gerudoway_room_4DL_0012E8[] = dgerudoway_room_4DL_0012E8; + +#define dgerudoway_room_4DL_001880 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_001880" +static const ALIGN_ASSET(2) char gerudoway_room_4DL_001880[] = dgerudoway_room_4DL_001880; + +#define dgerudoway_room_4Tex_002828 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4Tex_002828" +static const ALIGN_ASSET(2) char gerudoway_room_4Tex_002828[] = dgerudoway_room_4Tex_002828; + +#define dgerudoway_room_4Tex_002028 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4Tex_002028" +static const ALIGN_ASSET(2) char gerudoway_room_4Tex_002028[] = dgerudoway_room_4Tex_002028; + +#define dgerudoway_room_4DL_000D10 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_4DL_000D10" +static const ALIGN_ASSET(2) char gerudoway_room_4DL_000D10[] = dgerudoway_room_4DL_000D10; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_5.h b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_5.h index e70391156..4b23049c4 100644 --- a/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_5.h +++ b/soh/assets/scenes/dungeons/gerudoway/gerudoway_room_5.h @@ -1,72 +1,33 @@ #pragma once -#define dgerudoway_room_5DL_002BA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_002BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5DL_002BA0[] = dgerudoway_room_5DL_002BA0; -#else -static const char gerudoway_room_5DL_002BA0[] __attribute__((aligned (2))) = dgerudoway_room_5DL_002BA0; -#endif - -#define dgerudoway_room_5DL_004170 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_004170" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5DL_004170[] = dgerudoway_room_5DL_004170; -#else -static const char gerudoway_room_5DL_004170[] __attribute__((aligned (2))) = dgerudoway_room_5DL_004170; -#endif - -#define dgerudoway_room_5DL_002EB0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_002EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5DL_002EB0[] = dgerudoway_room_5DL_002EB0; -#else -static const char gerudoway_room_5DL_002EB0[] __attribute__((aligned (2))) = dgerudoway_room_5DL_002EB0; -#endif - -#define dgerudoway_room_5DL_0043F0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_0043F0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5DL_0043F0[] = dgerudoway_room_5DL_0043F0; -#else -static const char gerudoway_room_5DL_0043F0[] __attribute__((aligned (2))) = dgerudoway_room_5DL_0043F0; -#endif - -#define dgerudoway_room_5DL_004C68 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_004C68" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5DL_004C68[] = dgerudoway_room_5DL_004C68; -#else -static const char gerudoway_room_5DL_004C68[] __attribute__((aligned (2))) = dgerudoway_room_5DL_004C68; -#endif - -#define dgerudoway_room_5DL_001DE8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_001DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5DL_001DE8[] = dgerudoway_room_5DL_001DE8; -#else -static const char gerudoway_room_5DL_001DE8[] __attribute__((aligned (2))) = dgerudoway_room_5DL_001DE8; -#endif - -#define dgerudoway_room_5DL_002770 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_002770" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5DL_002770[] = dgerudoway_room_5DL_002770; -#else -static const char gerudoway_room_5DL_002770[] __attribute__((aligned (2))) = dgerudoway_room_5DL_002770; -#endif - -#define dgerudoway_room_5Tex_002FF8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5Tex_002FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5Tex_002FF8[] = dgerudoway_room_5Tex_002FF8; -#else -static const char gerudoway_room_5Tex_002FF8[] __attribute__((aligned (2))) = dgerudoway_room_5Tex_002FF8; -#endif - -#define dgerudoway_room_5Tex_0037F8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5Tex_0037F8" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5Tex_0037F8[] = dgerudoway_room_5Tex_0037F8; -#else -static const char gerudoway_room_5Tex_0037F8[] __attribute__((aligned (2))) = dgerudoway_room_5Tex_0037F8; -#endif - -#define dgerudoway_room_5DL_0014C0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_0014C0" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_room_5DL_0014C0[] = dgerudoway_room_5DL_0014C0; -#else -static const char gerudoway_room_5DL_0014C0[] __attribute__((aligned (2))) = dgerudoway_room_5DL_0014C0; -#endif - +#include "align_asset_macro.h" + +#define dgerudoway_room_5DL_002BA0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_002BA0" +static const ALIGN_ASSET(2) char gerudoway_room_5DL_002BA0[] = dgerudoway_room_5DL_002BA0; + +#define dgerudoway_room_5DL_004170 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_004170" +static const ALIGN_ASSET(2) char gerudoway_room_5DL_004170[] = dgerudoway_room_5DL_004170; + +#define dgerudoway_room_5DL_002EB0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_002EB0" +static const ALIGN_ASSET(2) char gerudoway_room_5DL_002EB0[] = dgerudoway_room_5DL_002EB0; + +#define dgerudoway_room_5DL_0043F0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_0043F0" +static const ALIGN_ASSET(2) char gerudoway_room_5DL_0043F0[] = dgerudoway_room_5DL_0043F0; + +#define dgerudoway_room_5DL_004C68 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_004C68" +static const ALIGN_ASSET(2) char gerudoway_room_5DL_004C68[] = dgerudoway_room_5DL_004C68; + +#define dgerudoway_room_5DL_001DE8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_001DE8" +static const ALIGN_ASSET(2) char gerudoway_room_5DL_001DE8[] = dgerudoway_room_5DL_001DE8; + +#define dgerudoway_room_5DL_002770 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_002770" +static const ALIGN_ASSET(2) char gerudoway_room_5DL_002770[] = dgerudoway_room_5DL_002770; + +#define dgerudoway_room_5Tex_002FF8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5Tex_002FF8" +static const ALIGN_ASSET(2) char gerudoway_room_5Tex_002FF8[] = dgerudoway_room_5Tex_002FF8; + +#define dgerudoway_room_5Tex_0037F8 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5Tex_0037F8" +static const ALIGN_ASSET(2) char gerudoway_room_5Tex_0037F8[] = dgerudoway_room_5Tex_0037F8; + +#define dgerudoway_room_5DL_0014C0 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_room_5DL_0014C0" +static const ALIGN_ASSET(2) char gerudoway_room_5DL_0014C0[] = dgerudoway_room_5DL_0014C0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/gerudoway/gerudoway_scene.h b/soh/assets/scenes/dungeons/gerudoway/gerudoway_scene.h index 6762b862e..bc0d8358b 100644 --- a/soh/assets/scenes/dungeons/gerudoway/gerudoway_scene.h +++ b/soh/assets/scenes/dungeons/gerudoway/gerudoway_scene.h @@ -1,86 +1,39 @@ #pragma once -#define dgThievesHideoutNightEntranceTex "__OTR__scenes/nonmq/gerudoway_scene/gThievesHideoutNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gThievesHideoutNightEntranceTex[] = dgThievesHideoutNightEntranceTex; -#else -static const char gThievesHideoutNightEntranceTex[] __attribute__((aligned (2))) = dgThievesHideoutNightEntranceTex; -#endif - -#define dgThievesHideoutDayEntranceTex "__OTR__scenes/nonmq/gerudoway_scene/gThievesHideoutDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gThievesHideoutDayEntranceTex[] = dgThievesHideoutDayEntranceTex; -#else -static const char gThievesHideoutDayEntranceTex[] __attribute__((aligned (2))) = dgThievesHideoutDayEntranceTex; -#endif - -#define dgerudoway_sceneCollisionHeader_0074EC "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneCollisionHeader_0074EC" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneCollisionHeader_0074EC[] = dgerudoway_sceneCollisionHeader_0074EC; -#else -static const char gerudoway_sceneCollisionHeader_0074EC[] __attribute__((aligned (2))) = dgerudoway_sceneCollisionHeader_0074EC; -#endif - -#define dgerudoway_sceneTex_009D20 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_009D20" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_009D20[] = dgerudoway_sceneTex_009D20; -#else -static const char gerudoway_sceneTex_009D20[] __attribute__((aligned (2))) = dgerudoway_sceneTex_009D20; -#endif - -#define dgerudoway_sceneTex_00A920 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_00A920" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_00A920[] = dgerudoway_sceneTex_00A920; -#else -static const char gerudoway_sceneTex_00A920[] __attribute__((aligned (2))) = dgerudoway_sceneTex_00A920; -#endif - -#define dgerudoway_sceneTex_00A520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_00A520" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_00A520[] = dgerudoway_sceneTex_00A520; -#else -static const char gerudoway_sceneTex_00A520[] __attribute__((aligned (2))) = dgerudoway_sceneTex_00A520; -#endif - -#define dgerudoway_sceneTex_009520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_009520" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_009520[] = dgerudoway_sceneTex_009520; -#else -static const char gerudoway_sceneTex_009520[] __attribute__((aligned (2))) = dgerudoway_sceneTex_009520; -#endif - -#define dgerudoway_sceneTex_007520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_007520" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_007520[] = dgerudoway_sceneTex_007520; -#else -static const char gerudoway_sceneTex_007520[] __attribute__((aligned (2))) = dgerudoway_sceneTex_007520; -#endif - -#define dgerudoway_sceneTex_008520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_008520" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_008520[] = dgerudoway_sceneTex_008520; -#else -static const char gerudoway_sceneTex_008520[] __attribute__((aligned (2))) = dgerudoway_sceneTex_008520; -#endif - -#define dgerudoway_sceneTex_008D20 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_008D20" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_008D20[] = dgerudoway_sceneTex_008D20; -#else -static const char gerudoway_sceneTex_008D20[] __attribute__((aligned (2))) = dgerudoway_sceneTex_008D20; -#endif - -#define dgerudoway_sceneTex_00D120 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_00D120" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_00D120[] = dgerudoway_sceneTex_00D120; -#else -static const char gerudoway_sceneTex_00D120[] __attribute__((aligned (2))) = dgerudoway_sceneTex_00D120; -#endif - -#define dgerudoway_sceneTex_00C120 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_00C120" -#ifdef _WIN32 -static const __declspec(align(2)) char gerudoway_sceneTex_00C120[] = dgerudoway_sceneTex_00C120; -#else -static const char gerudoway_sceneTex_00C120[] __attribute__((aligned (2))) = dgerudoway_sceneTex_00C120; -#endif - +#include "align_asset_macro.h" + +#define dgThievesHideoutNightEntranceTex "__OTR__scenes/nonmq/gerudoway_scene/gThievesHideoutNightEntranceTex" +static const ALIGN_ASSET(2) char gThievesHideoutNightEntranceTex[] = dgThievesHideoutNightEntranceTex; + +#define dgThievesHideoutDayEntranceTex "__OTR__scenes/nonmq/gerudoway_scene/gThievesHideoutDayEntranceTex" +static const ALIGN_ASSET(2) char gThievesHideoutDayEntranceTex[] = dgThievesHideoutDayEntranceTex; + +#define dgerudoway_sceneCollisionHeader_0074EC "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneCollisionHeader_0074EC" +static const ALIGN_ASSET(2) char gerudoway_sceneCollisionHeader_0074EC[] = dgerudoway_sceneCollisionHeader_0074EC; + +#define dgerudoway_sceneTex_009D20 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_009D20" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_009D20[] = dgerudoway_sceneTex_009D20; + +#define dgerudoway_sceneTex_00A920 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_00A920" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_00A920[] = dgerudoway_sceneTex_00A920; + +#define dgerudoway_sceneTex_00A520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_00A520" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_00A520[] = dgerudoway_sceneTex_00A520; + +#define dgerudoway_sceneTex_009520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_009520" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_009520[] = dgerudoway_sceneTex_009520; + +#define dgerudoway_sceneTex_007520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_007520" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_007520[] = dgerudoway_sceneTex_007520; + +#define dgerudoway_sceneTex_008520 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_008520" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_008520[] = dgerudoway_sceneTex_008520; + +#define dgerudoway_sceneTex_008D20 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_008D20" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_008D20[] = dgerudoway_sceneTex_008D20; + +#define dgerudoway_sceneTex_00D120 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_00D120" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_00D120[] = dgerudoway_sceneTex_00D120; + +#define dgerudoway_sceneTex_00C120 "__OTR__scenes/nonmq/gerudoway_scene/gerudoway_sceneTex_00C120" +static const ALIGN_ASSET(2) char gerudoway_sceneTex_00C120[] = dgerudoway_sceneTex_00C120; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_0.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_0.h index 63fa0e909..7a6712fd4 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_0.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_0.h @@ -1,72 +1,33 @@ #pragma once -#define dice_doukutu_room_0DL_002F20 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0DL_002F20" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0DL_002F20[] = dice_doukutu_room_0DL_002F20; -#else -static const char ice_doukutu_room_0DL_002F20[] __attribute__((aligned (2))) = dice_doukutu_room_0DL_002F20; -#endif - -#define dice_doukutu_room_0Tex_005750 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_005750" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0Tex_005750[] = dice_doukutu_room_0Tex_005750; -#else -static const char ice_doukutu_room_0Tex_005750[] __attribute__((aligned (2))) = dice_doukutu_room_0Tex_005750; -#endif - -#define dice_doukutu_room_0Tex_004750 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_004750" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0Tex_004750[] = dice_doukutu_room_0Tex_004750; -#else -static const char ice_doukutu_room_0Tex_004750[] __attribute__((aligned (2))) = dice_doukutu_room_0Tex_004750; -#endif - -#define dice_doukutu_room_0Tex_003F50 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_003F50" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0Tex_003F50[] = dice_doukutu_room_0Tex_003F50; -#else -static const char ice_doukutu_room_0Tex_003F50[] __attribute__((aligned (2))) = dice_doukutu_room_0Tex_003F50; -#endif - -#define dice_doukutu_room_0Tex_002F50 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_002F50" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0Tex_002F50[] = dice_doukutu_room_0Tex_002F50; -#else -static const char ice_doukutu_room_0Tex_002F50[] __attribute__((aligned (2))) = dice_doukutu_room_0Tex_002F50; -#endif - -#define dice_doukutu_room_0Tex_005F50 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_005F50" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0Tex_005F50[] = dice_doukutu_room_0Tex_005F50; -#else -static const char ice_doukutu_room_0Tex_005F50[] __attribute__((aligned (2))) = dice_doukutu_room_0Tex_005F50; -#endif - -#define dice_doukutu_room_0DL_007660 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0DL_007660" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0DL_007660[] = dice_doukutu_room_0DL_007660; -#else -static const char ice_doukutu_room_0DL_007660[] __attribute__((aligned (2))) = dice_doukutu_room_0DL_007660; -#endif - -#define dice_doukutu_room_0Tex_007678 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_007678" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0Tex_007678[] = dice_doukutu_room_0Tex_007678; -#else -static const char ice_doukutu_room_0Tex_007678[] __attribute__((aligned (2))) = dice_doukutu_room_0Tex_007678; -#endif - -#define dice_doukutu_room_0Set_000100DL_002F20 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Set_000100DL_002F20" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0Set_000100DL_002F20[] = dice_doukutu_room_0Set_000100DL_002F20; -#else -static const char ice_doukutu_room_0Set_000100DL_002F20[] __attribute__((aligned (2))) = dice_doukutu_room_0Set_000100DL_002F20; -#endif - -#define dice_doukutu_room_0Set_000100DL_007660 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Set_000100DL_007660" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_0Set_000100DL_007660[] = dice_doukutu_room_0Set_000100DL_007660; -#else -static const char ice_doukutu_room_0Set_000100DL_007660[] __attribute__((aligned (2))) = dice_doukutu_room_0Set_000100DL_007660; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_0DL_002F20 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0DL_002F20" +static const ALIGN_ASSET(2) char ice_doukutu_room_0DL_002F20[] = dice_doukutu_room_0DL_002F20; + +#define dice_doukutu_room_0Tex_005750 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_005750" +static const ALIGN_ASSET(2) char ice_doukutu_room_0Tex_005750[] = dice_doukutu_room_0Tex_005750; + +#define dice_doukutu_room_0Tex_004750 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_004750" +static const ALIGN_ASSET(2) char ice_doukutu_room_0Tex_004750[] = dice_doukutu_room_0Tex_004750; + +#define dice_doukutu_room_0Tex_003F50 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_003F50" +static const ALIGN_ASSET(2) char ice_doukutu_room_0Tex_003F50[] = dice_doukutu_room_0Tex_003F50; + +#define dice_doukutu_room_0Tex_002F50 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_002F50" +static const ALIGN_ASSET(2) char ice_doukutu_room_0Tex_002F50[] = dice_doukutu_room_0Tex_002F50; + +#define dice_doukutu_room_0Tex_005F50 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_005F50" +static const ALIGN_ASSET(2) char ice_doukutu_room_0Tex_005F50[] = dice_doukutu_room_0Tex_005F50; + +#define dice_doukutu_room_0DL_007660 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0DL_007660" +static const ALIGN_ASSET(2) char ice_doukutu_room_0DL_007660[] = dice_doukutu_room_0DL_007660; + +#define dice_doukutu_room_0Tex_007678 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Tex_007678" +static const ALIGN_ASSET(2) char ice_doukutu_room_0Tex_007678[] = dice_doukutu_room_0Tex_007678; + +#define dice_doukutu_room_0Set_000100DL_002F20 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Set_000100DL_002F20" +static const ALIGN_ASSET(2) char ice_doukutu_room_0Set_000100DL_002F20[] = dice_doukutu_room_0Set_000100DL_002F20; + +#define dice_doukutu_room_0Set_000100DL_007660 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_0Set_000100DL_007660" +static const ALIGN_ASSET(2) char ice_doukutu_room_0Set_000100DL_007660[] = dice_doukutu_room_0Set_000100DL_007660; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_1.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_1.h index a54cb4037..679b0e2f2 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_1.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_1.h @@ -1,100 +1,45 @@ #pragma once -#define dice_doukutu_room_1DL_0040D8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1DL_0040D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1DL_0040D8[] = dice_doukutu_room_1DL_0040D8; -#else -static const char ice_doukutu_room_1DL_0040D8[] __attribute__((aligned (2))) = dice_doukutu_room_1DL_0040D8; -#endif - -#define dice_doukutu_room_1Tex_004110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_004110" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_004110[] = dice_doukutu_room_1Tex_004110; -#else -static const char ice_doukutu_room_1Tex_004110[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_004110; -#endif - -#define dice_doukutu_room_1Tex_006910 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_006910" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_006910[] = dice_doukutu_room_1Tex_006910; -#else -static const char ice_doukutu_room_1Tex_006910[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_006910; -#endif - -#define dice_doukutu_room_1Tex_005910 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_005910" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_005910[] = dice_doukutu_room_1Tex_005910; -#else -static const char ice_doukutu_room_1Tex_005910[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_005910; -#endif - -#define dice_doukutu_room_1Tex_005110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_005110" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_005110[] = dice_doukutu_room_1Tex_005110; -#else -static const char ice_doukutu_room_1Tex_005110[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_005110; -#endif - -#define dice_doukutu_room_1Tex_008110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_008110" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_008110[] = dice_doukutu_room_1Tex_008110; -#else -static const char ice_doukutu_room_1Tex_008110[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_008110; -#endif - -#define dice_doukutu_room_1Tex_007110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_007110" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_007110[] = dice_doukutu_room_1Tex_007110; -#else -static const char ice_doukutu_room_1Tex_007110[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_007110; -#endif - -#define dice_doukutu_room_1Tex_009110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_009110" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_009110[] = dice_doukutu_room_1Tex_009110; -#else -static const char ice_doukutu_room_1Tex_009110[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_009110; -#endif - -#define dice_doukutu_room_1DL_00AB10 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1DL_00AB10" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1DL_00AB10[] = dice_doukutu_room_1DL_00AB10; -#else -static const char ice_doukutu_room_1DL_00AB10[] __attribute__((aligned (2))) = dice_doukutu_room_1DL_00AB10; -#endif - -#define dice_doukutu_room_1Tex_00AB30 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_00AB30" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_00AB30[] = dice_doukutu_room_1Tex_00AB30; -#else -static const char ice_doukutu_room_1Tex_00AB30[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_00AB30; -#endif - -#define dice_doukutu_room_1Tex_00BD30 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_00BD30" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_00BD30[] = dice_doukutu_room_1Tex_00BD30; -#else -static const char ice_doukutu_room_1Tex_00BD30[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_00BD30; -#endif - -#define dice_doukutu_room_1Tex_00BB30 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_00BB30" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Tex_00BB30[] = dice_doukutu_room_1Tex_00BB30; -#else -static const char ice_doukutu_room_1Tex_00BB30[] __attribute__((aligned (2))) = dice_doukutu_room_1Tex_00BB30; -#endif - -#define dice_doukutu_room_1Set_000160DL_0040D8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Set_000160DL_0040D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Set_000160DL_0040D8[] = dice_doukutu_room_1Set_000160DL_0040D8; -#else -static const char ice_doukutu_room_1Set_000160DL_0040D8[] __attribute__((aligned (2))) = dice_doukutu_room_1Set_000160DL_0040D8; -#endif - -#define dice_doukutu_room_1Set_000160DL_00AB10 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Set_000160DL_00AB10" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_1Set_000160DL_00AB10[] = dice_doukutu_room_1Set_000160DL_00AB10; -#else -static const char ice_doukutu_room_1Set_000160DL_00AB10[] __attribute__((aligned (2))) = dice_doukutu_room_1Set_000160DL_00AB10; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_1DL_0040D8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1DL_0040D8" +static const ALIGN_ASSET(2) char ice_doukutu_room_1DL_0040D8[] = dice_doukutu_room_1DL_0040D8; + +#define dice_doukutu_room_1Tex_004110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_004110" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_004110[] = dice_doukutu_room_1Tex_004110; + +#define dice_doukutu_room_1Tex_006910 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_006910" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_006910[] = dice_doukutu_room_1Tex_006910; + +#define dice_doukutu_room_1Tex_005910 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_005910" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_005910[] = dice_doukutu_room_1Tex_005910; + +#define dice_doukutu_room_1Tex_005110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_005110" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_005110[] = dice_doukutu_room_1Tex_005110; + +#define dice_doukutu_room_1Tex_008110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_008110" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_008110[] = dice_doukutu_room_1Tex_008110; + +#define dice_doukutu_room_1Tex_007110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_007110" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_007110[] = dice_doukutu_room_1Tex_007110; + +#define dice_doukutu_room_1Tex_009110 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_009110" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_009110[] = dice_doukutu_room_1Tex_009110; + +#define dice_doukutu_room_1DL_00AB10 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1DL_00AB10" +static const ALIGN_ASSET(2) char ice_doukutu_room_1DL_00AB10[] = dice_doukutu_room_1DL_00AB10; + +#define dice_doukutu_room_1Tex_00AB30 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_00AB30" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_00AB30[] = dice_doukutu_room_1Tex_00AB30; + +#define dice_doukutu_room_1Tex_00BD30 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_00BD30" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_00BD30[] = dice_doukutu_room_1Tex_00BD30; + +#define dice_doukutu_room_1Tex_00BB30 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Tex_00BB30" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Tex_00BB30[] = dice_doukutu_room_1Tex_00BB30; + +#define dice_doukutu_room_1Set_000160DL_0040D8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Set_000160DL_0040D8" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Set_000160DL_0040D8[] = dice_doukutu_room_1Set_000160DL_0040D8; + +#define dice_doukutu_room_1Set_000160DL_00AB10 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_1Set_000160DL_00AB10" +static const ALIGN_ASSET(2) char ice_doukutu_room_1Set_000160DL_00AB10[] = dice_doukutu_room_1Set_000160DL_00AB10; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_10.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_10.h index ab01b92ef..db6619c53 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_10.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_10.h @@ -1,51 +1,24 @@ #pragma once -#define dice_doukutu_room_10DL_0019F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10DL_0019F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_10DL_0019F8[] = dice_doukutu_room_10DL_0019F8; -#else -static const char ice_doukutu_room_10DL_0019F8[] __attribute__((aligned (2))) = dice_doukutu_room_10DL_0019F8; -#endif - -#define dice_doukutu_room_10Tex_001A28 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Tex_001A28" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_10Tex_001A28[] = dice_doukutu_room_10Tex_001A28; -#else -static const char ice_doukutu_room_10Tex_001A28[] __attribute__((aligned (2))) = dice_doukutu_room_10Tex_001A28; -#endif - -#define dice_doukutu_room_10Tex_002A28 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Tex_002A28" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_10Tex_002A28[] = dice_doukutu_room_10Tex_002A28; -#else -static const char ice_doukutu_room_10Tex_002A28[] __attribute__((aligned (2))) = dice_doukutu_room_10Tex_002A28; -#endif - -#define dice_doukutu_room_10DL_003BC8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10DL_003BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_10DL_003BC8[] = dice_doukutu_room_10DL_003BC8; -#else -static const char ice_doukutu_room_10DL_003BC8[] __attribute__((aligned (2))) = dice_doukutu_room_10DL_003BC8; -#endif - -#define dice_doukutu_room_10Tex_003BD8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Tex_003BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_10Tex_003BD8[] = dice_doukutu_room_10Tex_003BD8; -#else -static const char ice_doukutu_room_10Tex_003BD8[] __attribute__((aligned (2))) = dice_doukutu_room_10Tex_003BD8; -#endif - -#define dice_doukutu_room_10Set_000090DL_0019F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Set_000090DL_0019F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_10Set_000090DL_0019F8[] = dice_doukutu_room_10Set_000090DL_0019F8; -#else -static const char ice_doukutu_room_10Set_000090DL_0019F8[] __attribute__((aligned (2))) = dice_doukutu_room_10Set_000090DL_0019F8; -#endif - -#define dice_doukutu_room_10Set_000090DL_003BC8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Set_000090DL_003BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_10Set_000090DL_003BC8[] = dice_doukutu_room_10Set_000090DL_003BC8; -#else -static const char ice_doukutu_room_10Set_000090DL_003BC8[] __attribute__((aligned (2))) = dice_doukutu_room_10Set_000090DL_003BC8; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_10DL_0019F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10DL_0019F8" +static const ALIGN_ASSET(2) char ice_doukutu_room_10DL_0019F8[] = dice_doukutu_room_10DL_0019F8; + +#define dice_doukutu_room_10Tex_001A28 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Tex_001A28" +static const ALIGN_ASSET(2) char ice_doukutu_room_10Tex_001A28[] = dice_doukutu_room_10Tex_001A28; + +#define dice_doukutu_room_10Tex_002A28 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Tex_002A28" +static const ALIGN_ASSET(2) char ice_doukutu_room_10Tex_002A28[] = dice_doukutu_room_10Tex_002A28; + +#define dice_doukutu_room_10DL_003BC8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10DL_003BC8" +static const ALIGN_ASSET(2) char ice_doukutu_room_10DL_003BC8[] = dice_doukutu_room_10DL_003BC8; + +#define dice_doukutu_room_10Tex_003BD8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Tex_003BD8" +static const ALIGN_ASSET(2) char ice_doukutu_room_10Tex_003BD8[] = dice_doukutu_room_10Tex_003BD8; + +#define dice_doukutu_room_10Set_000090DL_0019F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Set_000090DL_0019F8" +static const ALIGN_ASSET(2) char ice_doukutu_room_10Set_000090DL_0019F8[] = dice_doukutu_room_10Set_000090DL_0019F8; + +#define dice_doukutu_room_10Set_000090DL_003BC8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_10Set_000090DL_003BC8" +static const ALIGN_ASSET(2) char ice_doukutu_room_10Set_000090DL_003BC8[] = dice_doukutu_room_10Set_000090DL_003BC8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_11.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_11.h index db40c689e..53216186e 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_11.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_11.h @@ -1,58 +1,27 @@ #pragma once -#define dice_doukutu_room_11DL_0028F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11DL_0028F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_11DL_0028F8[] = dice_doukutu_room_11DL_0028F8; -#else -static const char ice_doukutu_room_11DL_0028F8[] __attribute__((aligned (2))) = dice_doukutu_room_11DL_0028F8; -#endif - -#define dice_doukutu_room_11Tex_002928 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Tex_002928" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_11Tex_002928[] = dice_doukutu_room_11Tex_002928; -#else -static const char ice_doukutu_room_11Tex_002928[] __attribute__((aligned (2))) = dice_doukutu_room_11Tex_002928; -#endif - -#define dice_doukutu_room_11Tex_003928 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Tex_003928" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_11Tex_003928[] = dice_doukutu_room_11Tex_003928; -#else -static const char ice_doukutu_room_11Tex_003928[] __attribute__((aligned (2))) = dice_doukutu_room_11Tex_003928; -#endif - -#define dice_doukutu_room_11Tex_003128 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Tex_003128" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_11Tex_003128[] = dice_doukutu_room_11Tex_003128; -#else -static const char ice_doukutu_room_11Tex_003128[] __attribute__((aligned (2))) = dice_doukutu_room_11Tex_003128; -#endif - -#define dice_doukutu_room_11DL_004838 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11DL_004838" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_11DL_004838[] = dice_doukutu_room_11DL_004838; -#else -static const char ice_doukutu_room_11DL_004838[] __attribute__((aligned (2))) = dice_doukutu_room_11DL_004838; -#endif - -#define dice_doukutu_room_11Tex_004848 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Tex_004848" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_11Tex_004848[] = dice_doukutu_room_11Tex_004848; -#else -static const char ice_doukutu_room_11Tex_004848[] __attribute__((aligned (2))) = dice_doukutu_room_11Tex_004848; -#endif - -#define dice_doukutu_room_11Set_0001B0DL_0028F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Set_0001B0DL_0028F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_11Set_0001B0DL_0028F8[] = dice_doukutu_room_11Set_0001B0DL_0028F8; -#else -static const char ice_doukutu_room_11Set_0001B0DL_0028F8[] __attribute__((aligned (2))) = dice_doukutu_room_11Set_0001B0DL_0028F8; -#endif - -#define dice_doukutu_room_11Set_0001B0DL_004838 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Set_0001B0DL_004838" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_11Set_0001B0DL_004838[] = dice_doukutu_room_11Set_0001B0DL_004838; -#else -static const char ice_doukutu_room_11Set_0001B0DL_004838[] __attribute__((aligned (2))) = dice_doukutu_room_11Set_0001B0DL_004838; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_11DL_0028F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11DL_0028F8" +static const ALIGN_ASSET(2) char ice_doukutu_room_11DL_0028F8[] = dice_doukutu_room_11DL_0028F8; + +#define dice_doukutu_room_11Tex_002928 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Tex_002928" +static const ALIGN_ASSET(2) char ice_doukutu_room_11Tex_002928[] = dice_doukutu_room_11Tex_002928; + +#define dice_doukutu_room_11Tex_003928 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Tex_003928" +static const ALIGN_ASSET(2) char ice_doukutu_room_11Tex_003928[] = dice_doukutu_room_11Tex_003928; + +#define dice_doukutu_room_11Tex_003128 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Tex_003128" +static const ALIGN_ASSET(2) char ice_doukutu_room_11Tex_003128[] = dice_doukutu_room_11Tex_003128; + +#define dice_doukutu_room_11DL_004838 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11DL_004838" +static const ALIGN_ASSET(2) char ice_doukutu_room_11DL_004838[] = dice_doukutu_room_11DL_004838; + +#define dice_doukutu_room_11Tex_004848 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Tex_004848" +static const ALIGN_ASSET(2) char ice_doukutu_room_11Tex_004848[] = dice_doukutu_room_11Tex_004848; + +#define dice_doukutu_room_11Set_0001B0DL_0028F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Set_0001B0DL_0028F8" +static const ALIGN_ASSET(2) char ice_doukutu_room_11Set_0001B0DL_0028F8[] = dice_doukutu_room_11Set_0001B0DL_0028F8; + +#define dice_doukutu_room_11Set_0001B0DL_004838 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_11Set_0001B0DL_004838" +static const ALIGN_ASSET(2) char ice_doukutu_room_11Set_0001B0DL_004838[] = dice_doukutu_room_11Set_0001B0DL_004838; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_2.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_2.h index 20a428989..1445f0ba0 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_2.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_2.h @@ -1,58 +1,27 @@ #pragma once -#define dice_doukutu_room_2DL_001700 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2DL_001700" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_2DL_001700[] = dice_doukutu_room_2DL_001700; -#else -static const char ice_doukutu_room_2DL_001700[] __attribute__((aligned (2))) = dice_doukutu_room_2DL_001700; -#endif - -#define dice_doukutu_room_2Tex_001730 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Tex_001730" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_2Tex_001730[] = dice_doukutu_room_2Tex_001730; -#else -static const char ice_doukutu_room_2Tex_001730[] __attribute__((aligned (2))) = dice_doukutu_room_2Tex_001730; -#endif - -#define dice_doukutu_room_2Tex_002730 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Tex_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_2Tex_002730[] = dice_doukutu_room_2Tex_002730; -#else -static const char ice_doukutu_room_2Tex_002730[] __attribute__((aligned (2))) = dice_doukutu_room_2Tex_002730; -#endif - -#define dice_doukutu_room_2DL_003AD8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2DL_003AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_2DL_003AD8[] = dice_doukutu_room_2DL_003AD8; -#else -static const char ice_doukutu_room_2DL_003AD8[] __attribute__((aligned (2))) = dice_doukutu_room_2DL_003AD8; -#endif - -#define dice_doukutu_room_2Tex_003AF8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Tex_003AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_2Tex_003AF8[] = dice_doukutu_room_2Tex_003AF8; -#else -static const char ice_doukutu_room_2Tex_003AF8[] __attribute__((aligned (2))) = dice_doukutu_room_2Tex_003AF8; -#endif - -#define dice_doukutu_room_2Tex_004AF8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Tex_004AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_2Tex_004AF8[] = dice_doukutu_room_2Tex_004AF8; -#else -static const char ice_doukutu_room_2Tex_004AF8[] __attribute__((aligned (2))) = dice_doukutu_room_2Tex_004AF8; -#endif - -#define dice_doukutu_room_2Set_000100DL_001700 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Set_000100DL_001700" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_2Set_000100DL_001700[] = dice_doukutu_room_2Set_000100DL_001700; -#else -static const char ice_doukutu_room_2Set_000100DL_001700[] __attribute__((aligned (2))) = dice_doukutu_room_2Set_000100DL_001700; -#endif - -#define dice_doukutu_room_2Set_000100DL_003AD8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Set_000100DL_003AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_2Set_000100DL_003AD8[] = dice_doukutu_room_2Set_000100DL_003AD8; -#else -static const char ice_doukutu_room_2Set_000100DL_003AD8[] __attribute__((aligned (2))) = dice_doukutu_room_2Set_000100DL_003AD8; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_2DL_001700 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2DL_001700" +static const ALIGN_ASSET(2) char ice_doukutu_room_2DL_001700[] = dice_doukutu_room_2DL_001700; + +#define dice_doukutu_room_2Tex_001730 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Tex_001730" +static const ALIGN_ASSET(2) char ice_doukutu_room_2Tex_001730[] = dice_doukutu_room_2Tex_001730; + +#define dice_doukutu_room_2Tex_002730 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Tex_002730" +static const ALIGN_ASSET(2) char ice_doukutu_room_2Tex_002730[] = dice_doukutu_room_2Tex_002730; + +#define dice_doukutu_room_2DL_003AD8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2DL_003AD8" +static const ALIGN_ASSET(2) char ice_doukutu_room_2DL_003AD8[] = dice_doukutu_room_2DL_003AD8; + +#define dice_doukutu_room_2Tex_003AF8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Tex_003AF8" +static const ALIGN_ASSET(2) char ice_doukutu_room_2Tex_003AF8[] = dice_doukutu_room_2Tex_003AF8; + +#define dice_doukutu_room_2Tex_004AF8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Tex_004AF8" +static const ALIGN_ASSET(2) char ice_doukutu_room_2Tex_004AF8[] = dice_doukutu_room_2Tex_004AF8; + +#define dice_doukutu_room_2Set_000100DL_001700 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Set_000100DL_001700" +static const ALIGN_ASSET(2) char ice_doukutu_room_2Set_000100DL_001700[] = dice_doukutu_room_2Set_000100DL_001700; + +#define dice_doukutu_room_2Set_000100DL_003AD8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_2Set_000100DL_003AD8" +static const ALIGN_ASSET(2) char ice_doukutu_room_2Set_000100DL_003AD8[] = dice_doukutu_room_2Set_000100DL_003AD8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_3.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_3.h index 35b81c113..aaa90051e 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_3.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_3.h @@ -1,65 +1,30 @@ #pragma once -#define dice_doukutu_room_3DL_0031D8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3DL_0031D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3DL_0031D8[] = dice_doukutu_room_3DL_0031D8; -#else -static const char ice_doukutu_room_3DL_0031D8[] __attribute__((aligned (2))) = dice_doukutu_room_3DL_0031D8; -#endif - -#define dice_doukutu_room_3Tex_003A08 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_003A08" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3Tex_003A08[] = dice_doukutu_room_3Tex_003A08; -#else -static const char ice_doukutu_room_3Tex_003A08[] __attribute__((aligned (2))) = dice_doukutu_room_3Tex_003A08; -#endif - -#define dice_doukutu_room_3Tex_003208 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_003208" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3Tex_003208[] = dice_doukutu_room_3Tex_003208; -#else -static const char ice_doukutu_room_3Tex_003208[] __attribute__((aligned (2))) = dice_doukutu_room_3Tex_003208; -#endif - -#define dice_doukutu_room_3DL_005070 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3DL_005070" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3DL_005070[] = dice_doukutu_room_3DL_005070; -#else -static const char ice_doukutu_room_3DL_005070[] __attribute__((aligned (2))) = dice_doukutu_room_3DL_005070; -#endif - -#define dice_doukutu_room_3Tex_007090 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_007090" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3Tex_007090[] = dice_doukutu_room_3Tex_007090; -#else -static const char ice_doukutu_room_3Tex_007090[] __attribute__((aligned (2))) = dice_doukutu_room_3Tex_007090; -#endif - -#define dice_doukutu_room_3Tex_005090 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_005090" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3Tex_005090[] = dice_doukutu_room_3Tex_005090; -#else -static const char ice_doukutu_room_3Tex_005090[] __attribute__((aligned (2))) = dice_doukutu_room_3Tex_005090; -#endif - -#define dice_doukutu_room_3Tex_006090 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_006090" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3Tex_006090[] = dice_doukutu_room_3Tex_006090; -#else -static const char ice_doukutu_room_3Tex_006090[] __attribute__((aligned (2))) = dice_doukutu_room_3Tex_006090; -#endif - -#define dice_doukutu_room_3Set_0001D0DL_0031D8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Set_0001D0DL_0031D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3Set_0001D0DL_0031D8[] = dice_doukutu_room_3Set_0001D0DL_0031D8; -#else -static const char ice_doukutu_room_3Set_0001D0DL_0031D8[] __attribute__((aligned (2))) = dice_doukutu_room_3Set_0001D0DL_0031D8; -#endif - -#define dice_doukutu_room_3Set_0001D0DL_005070 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Set_0001D0DL_005070" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_3Set_0001D0DL_005070[] = dice_doukutu_room_3Set_0001D0DL_005070; -#else -static const char ice_doukutu_room_3Set_0001D0DL_005070[] __attribute__((aligned (2))) = dice_doukutu_room_3Set_0001D0DL_005070; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_3DL_0031D8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3DL_0031D8" +static const ALIGN_ASSET(2) char ice_doukutu_room_3DL_0031D8[] = dice_doukutu_room_3DL_0031D8; + +#define dice_doukutu_room_3Tex_003A08 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_003A08" +static const ALIGN_ASSET(2) char ice_doukutu_room_3Tex_003A08[] = dice_doukutu_room_3Tex_003A08; + +#define dice_doukutu_room_3Tex_003208 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_003208" +static const ALIGN_ASSET(2) char ice_doukutu_room_3Tex_003208[] = dice_doukutu_room_3Tex_003208; + +#define dice_doukutu_room_3DL_005070 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3DL_005070" +static const ALIGN_ASSET(2) char ice_doukutu_room_3DL_005070[] = dice_doukutu_room_3DL_005070; + +#define dice_doukutu_room_3Tex_007090 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_007090" +static const ALIGN_ASSET(2) char ice_doukutu_room_3Tex_007090[] = dice_doukutu_room_3Tex_007090; + +#define dice_doukutu_room_3Tex_005090 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_005090" +static const ALIGN_ASSET(2) char ice_doukutu_room_3Tex_005090[] = dice_doukutu_room_3Tex_005090; + +#define dice_doukutu_room_3Tex_006090 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Tex_006090" +static const ALIGN_ASSET(2) char ice_doukutu_room_3Tex_006090[] = dice_doukutu_room_3Tex_006090; + +#define dice_doukutu_room_3Set_0001D0DL_0031D8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Set_0001D0DL_0031D8" +static const ALIGN_ASSET(2) char ice_doukutu_room_3Set_0001D0DL_0031D8[] = dice_doukutu_room_3Set_0001D0DL_0031D8; + +#define dice_doukutu_room_3Set_0001D0DL_005070 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_3Set_0001D0DL_005070" +static const ALIGN_ASSET(2) char ice_doukutu_room_3Set_0001D0DL_005070[] = dice_doukutu_room_3Set_0001D0DL_005070; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_4.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_4.h index c0e33f340..21c0d627a 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_4.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_4.h @@ -1,72 +1,33 @@ #pragma once -#define dice_doukutu_room_4DL_0028B8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4DL_0028B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4DL_0028B8[] = dice_doukutu_room_4DL_0028B8; -#else -static const char ice_doukutu_room_4DL_0028B8[] __attribute__((aligned (2))) = dice_doukutu_room_4DL_0028B8; -#endif - -#define dice_doukutu_room_4Tex_0028E0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_0028E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4Tex_0028E0[] = dice_doukutu_room_4Tex_0028E0; -#else -static const char ice_doukutu_room_4Tex_0028E0[] __attribute__((aligned (2))) = dice_doukutu_room_4Tex_0028E0; -#endif - -#define dice_doukutu_room_4Tex_0038E0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_0038E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4Tex_0038E0[] = dice_doukutu_room_4Tex_0038E0; -#else -static const char ice_doukutu_room_4Tex_0038E0[] __attribute__((aligned (2))) = dice_doukutu_room_4Tex_0038E0; -#endif - -#define dice_doukutu_room_4Tex_0030E0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_0030E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4Tex_0030E0[] = dice_doukutu_room_4Tex_0030E0; -#else -static const char ice_doukutu_room_4Tex_0030E0[] __attribute__((aligned (2))) = dice_doukutu_room_4Tex_0030E0; -#endif - -#define dice_doukutu_room_4DL_004638 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4DL_004638" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4DL_004638[] = dice_doukutu_room_4DL_004638; -#else -static const char ice_doukutu_room_4DL_004638[] __attribute__((aligned (2))) = dice_doukutu_room_4DL_004638; -#endif - -#define dice_doukutu_room_4Tex_005650 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_005650" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4Tex_005650[] = dice_doukutu_room_4Tex_005650; -#else -static const char ice_doukutu_room_4Tex_005650[] __attribute__((aligned (2))) = dice_doukutu_room_4Tex_005650; -#endif - -#define dice_doukutu_room_4Tex_004650 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_004650" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4Tex_004650[] = dice_doukutu_room_4Tex_004650; -#else -static const char ice_doukutu_room_4Tex_004650[] __attribute__((aligned (2))) = dice_doukutu_room_4Tex_004650; -#endif - -#define dice_doukutu_room_4Tex_006650 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_006650" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4Tex_006650[] = dice_doukutu_room_4Tex_006650; -#else -static const char ice_doukutu_room_4Tex_006650[] __attribute__((aligned (2))) = dice_doukutu_room_4Tex_006650; -#endif - -#define dice_doukutu_room_4Set_0000F0DL_0028B8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Set_0000F0DL_0028B8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4Set_0000F0DL_0028B8[] = dice_doukutu_room_4Set_0000F0DL_0028B8; -#else -static const char ice_doukutu_room_4Set_0000F0DL_0028B8[] __attribute__((aligned (2))) = dice_doukutu_room_4Set_0000F0DL_0028B8; -#endif - -#define dice_doukutu_room_4Set_0000F0DL_004638 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Set_0000F0DL_004638" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_4Set_0000F0DL_004638[] = dice_doukutu_room_4Set_0000F0DL_004638; -#else -static const char ice_doukutu_room_4Set_0000F0DL_004638[] __attribute__((aligned (2))) = dice_doukutu_room_4Set_0000F0DL_004638; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_4DL_0028B8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4DL_0028B8" +static const ALIGN_ASSET(2) char ice_doukutu_room_4DL_0028B8[] = dice_doukutu_room_4DL_0028B8; + +#define dice_doukutu_room_4Tex_0028E0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_0028E0" +static const ALIGN_ASSET(2) char ice_doukutu_room_4Tex_0028E0[] = dice_doukutu_room_4Tex_0028E0; + +#define dice_doukutu_room_4Tex_0038E0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_0038E0" +static const ALIGN_ASSET(2) char ice_doukutu_room_4Tex_0038E0[] = dice_doukutu_room_4Tex_0038E0; + +#define dice_doukutu_room_4Tex_0030E0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_0030E0" +static const ALIGN_ASSET(2) char ice_doukutu_room_4Tex_0030E0[] = dice_doukutu_room_4Tex_0030E0; + +#define dice_doukutu_room_4DL_004638 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4DL_004638" +static const ALIGN_ASSET(2) char ice_doukutu_room_4DL_004638[] = dice_doukutu_room_4DL_004638; + +#define dice_doukutu_room_4Tex_005650 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_005650" +static const ALIGN_ASSET(2) char ice_doukutu_room_4Tex_005650[] = dice_doukutu_room_4Tex_005650; + +#define dice_doukutu_room_4Tex_004650 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_004650" +static const ALIGN_ASSET(2) char ice_doukutu_room_4Tex_004650[] = dice_doukutu_room_4Tex_004650; + +#define dice_doukutu_room_4Tex_006650 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Tex_006650" +static const ALIGN_ASSET(2) char ice_doukutu_room_4Tex_006650[] = dice_doukutu_room_4Tex_006650; + +#define dice_doukutu_room_4Set_0000F0DL_0028B8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Set_0000F0DL_0028B8" +static const ALIGN_ASSET(2) char ice_doukutu_room_4Set_0000F0DL_0028B8[] = dice_doukutu_room_4Set_0000F0DL_0028B8; + +#define dice_doukutu_room_4Set_0000F0DL_004638 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_4Set_0000F0DL_004638" +static const ALIGN_ASSET(2) char ice_doukutu_room_4Set_0000F0DL_004638[] = dice_doukutu_room_4Set_0000F0DL_004638; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_5.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_5.h index 00d303a0c..d1ab60972 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_5.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_5.h @@ -1,72 +1,33 @@ #pragma once -#define dice_doukutu_room_5DL_004618 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5DL_004618" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5DL_004618[] = dice_doukutu_room_5DL_004618; -#else -static const char ice_doukutu_room_5DL_004618[] __attribute__((aligned (2))) = dice_doukutu_room_5DL_004618; -#endif - -#define dice_doukutu_room_5Tex_004648 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_004648" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5Tex_004648[] = dice_doukutu_room_5Tex_004648; -#else -static const char ice_doukutu_room_5Tex_004648[] __attribute__((aligned (2))) = dice_doukutu_room_5Tex_004648; -#endif - -#define dice_doukutu_room_5Tex_006648 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_006648" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5Tex_006648[] = dice_doukutu_room_5Tex_006648; -#else -static const char ice_doukutu_room_5Tex_006648[] __attribute__((aligned (2))) = dice_doukutu_room_5Tex_006648; -#endif - -#define dice_doukutu_room_5Tex_005648 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_005648" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5Tex_005648[] = dice_doukutu_room_5Tex_005648; -#else -static const char ice_doukutu_room_5Tex_005648[] __attribute__((aligned (2))) = dice_doukutu_room_5Tex_005648; -#endif - -#define dice_doukutu_room_5Tex_005E48 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5Tex_005E48[] = dice_doukutu_room_5Tex_005E48; -#else -static const char ice_doukutu_room_5Tex_005E48[] __attribute__((aligned (2))) = dice_doukutu_room_5Tex_005E48; -#endif - -#define dice_doukutu_room_5DL_007460 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5DL_007460[] = dice_doukutu_room_5DL_007460; -#else -static const char ice_doukutu_room_5DL_007460[] __attribute__((aligned (2))) = dice_doukutu_room_5DL_007460; -#endif - -#define dice_doukutu_room_5Tex_007478 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5Tex_007478[] = dice_doukutu_room_5Tex_007478; -#else -static const char ice_doukutu_room_5Tex_007478[] __attribute__((aligned (2))) = dice_doukutu_room_5Tex_007478; -#endif - -#define dice_doukutu_room_5Tex_007878 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_007878" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5Tex_007878[] = dice_doukutu_room_5Tex_007878; -#else -static const char ice_doukutu_room_5Tex_007878[] __attribute__((aligned (2))) = dice_doukutu_room_5Tex_007878; -#endif - -#define dice_doukutu_room_5Set_0001C0DL_004618 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Set_0001C0DL_004618" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5Set_0001C0DL_004618[] = dice_doukutu_room_5Set_0001C0DL_004618; -#else -static const char ice_doukutu_room_5Set_0001C0DL_004618[] __attribute__((aligned (2))) = dice_doukutu_room_5Set_0001C0DL_004618; -#endif - -#define dice_doukutu_room_5Set_0001C0DL_007460 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Set_0001C0DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_5Set_0001C0DL_007460[] = dice_doukutu_room_5Set_0001C0DL_007460; -#else -static const char ice_doukutu_room_5Set_0001C0DL_007460[] __attribute__((aligned (2))) = dice_doukutu_room_5Set_0001C0DL_007460; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_5DL_004618 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5DL_004618" +static const ALIGN_ASSET(2) char ice_doukutu_room_5DL_004618[] = dice_doukutu_room_5DL_004618; + +#define dice_doukutu_room_5Tex_004648 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_004648" +static const ALIGN_ASSET(2) char ice_doukutu_room_5Tex_004648[] = dice_doukutu_room_5Tex_004648; + +#define dice_doukutu_room_5Tex_006648 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_006648" +static const ALIGN_ASSET(2) char ice_doukutu_room_5Tex_006648[] = dice_doukutu_room_5Tex_006648; + +#define dice_doukutu_room_5Tex_005648 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_005648" +static const ALIGN_ASSET(2) char ice_doukutu_room_5Tex_005648[] = dice_doukutu_room_5Tex_005648; + +#define dice_doukutu_room_5Tex_005E48 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_005E48" +static const ALIGN_ASSET(2) char ice_doukutu_room_5Tex_005E48[] = dice_doukutu_room_5Tex_005E48; + +#define dice_doukutu_room_5DL_007460 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5DL_007460" +static const ALIGN_ASSET(2) char ice_doukutu_room_5DL_007460[] = dice_doukutu_room_5DL_007460; + +#define dice_doukutu_room_5Tex_007478 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_007478" +static const ALIGN_ASSET(2) char ice_doukutu_room_5Tex_007478[] = dice_doukutu_room_5Tex_007478; + +#define dice_doukutu_room_5Tex_007878 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Tex_007878" +static const ALIGN_ASSET(2) char ice_doukutu_room_5Tex_007878[] = dice_doukutu_room_5Tex_007878; + +#define dice_doukutu_room_5Set_0001C0DL_004618 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Set_0001C0DL_004618" +static const ALIGN_ASSET(2) char ice_doukutu_room_5Set_0001C0DL_004618[] = dice_doukutu_room_5Set_0001C0DL_004618; + +#define dice_doukutu_room_5Set_0001C0DL_007460 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_5Set_0001C0DL_007460" +static const ALIGN_ASSET(2) char ice_doukutu_room_5Set_0001C0DL_007460[] = dice_doukutu_room_5Set_0001C0DL_007460; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_6.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_6.h index b7d51c688..6770c759b 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_6.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_6.h @@ -1,30 +1,15 @@ #pragma once -#define dice_doukutu_room_6DL_002980 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_6DL_002980" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_6DL_002980[] = dice_doukutu_room_6DL_002980; -#else -static const char ice_doukutu_room_6DL_002980[] __attribute__((aligned (2))) = dice_doukutu_room_6DL_002980; -#endif - -#define dice_doukutu_room_6Tex_0039B0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_6Tex_0039B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_6Tex_0039B0[] = dice_doukutu_room_6Tex_0039B0; -#else -static const char ice_doukutu_room_6Tex_0039B0[] __attribute__((aligned (2))) = dice_doukutu_room_6Tex_0039B0; -#endif - -#define dice_doukutu_room_6Tex_0029B0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_6Tex_0029B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_6Tex_0029B0[] = dice_doukutu_room_6Tex_0029B0; -#else -static const char ice_doukutu_room_6Tex_0029B0[] __attribute__((aligned (2))) = dice_doukutu_room_6Tex_0029B0; -#endif - -#define dice_doukutu_room_6Set_000110DL_002980 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_6Set_000110DL_002980" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_6Set_000110DL_002980[] = dice_doukutu_room_6Set_000110DL_002980; -#else -static const char ice_doukutu_room_6Set_000110DL_002980[] __attribute__((aligned (2))) = dice_doukutu_room_6Set_000110DL_002980; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_6DL_002980 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_6DL_002980" +static const ALIGN_ASSET(2) char ice_doukutu_room_6DL_002980[] = dice_doukutu_room_6DL_002980; + +#define dice_doukutu_room_6Tex_0039B0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_6Tex_0039B0" +static const ALIGN_ASSET(2) char ice_doukutu_room_6Tex_0039B0[] = dice_doukutu_room_6Tex_0039B0; + +#define dice_doukutu_room_6Tex_0029B0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_6Tex_0029B0" +static const ALIGN_ASSET(2) char ice_doukutu_room_6Tex_0029B0[] = dice_doukutu_room_6Tex_0029B0; + +#define dice_doukutu_room_6Set_000110DL_002980 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_6Set_000110DL_002980" +static const ALIGN_ASSET(2) char ice_doukutu_room_6Set_000110DL_002980[] = dice_doukutu_room_6Set_000110DL_002980; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_7.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_7.h index 7dd79aeb7..43afba33e 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_7.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_7.h @@ -1,51 +1,24 @@ #pragma once -#define dice_doukutu_room_7DL_001730 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7DL_001730" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_7DL_001730[] = dice_doukutu_room_7DL_001730; -#else -static const char ice_doukutu_room_7DL_001730[] __attribute__((aligned (2))) = dice_doukutu_room_7DL_001730; -#endif - -#define dice_doukutu_room_7Tex_001758 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Tex_001758" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_7Tex_001758[] = dice_doukutu_room_7Tex_001758; -#else -static const char ice_doukutu_room_7Tex_001758[] __attribute__((aligned (2))) = dice_doukutu_room_7Tex_001758; -#endif - -#define dice_doukutu_room_7DL_0040A8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7DL_0040A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_7DL_0040A8[] = dice_doukutu_room_7DL_0040A8; -#else -static const char ice_doukutu_room_7DL_0040A8[] __attribute__((aligned (2))) = dice_doukutu_room_7DL_0040A8; -#endif - -#define dice_doukutu_room_7Tex_0040E8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Tex_0040E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_7Tex_0040E8[] = dice_doukutu_room_7Tex_0040E8; -#else -static const char ice_doukutu_room_7Tex_0040E8[] __attribute__((aligned (2))) = dice_doukutu_room_7Tex_0040E8; -#endif - -#define dice_doukutu_room_7Tex_0050E8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Tex_0050E8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_7Tex_0050E8[] = dice_doukutu_room_7Tex_0050E8; -#else -static const char ice_doukutu_room_7Tex_0050E8[] __attribute__((aligned (2))) = dice_doukutu_room_7Tex_0050E8; -#endif - -#define dice_doukutu_room_7Set_0000D0DL_001730 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Set_0000D0DL_001730" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_7Set_0000D0DL_001730[] = dice_doukutu_room_7Set_0000D0DL_001730; -#else -static const char ice_doukutu_room_7Set_0000D0DL_001730[] __attribute__((aligned (2))) = dice_doukutu_room_7Set_0000D0DL_001730; -#endif - -#define dice_doukutu_room_7Set_0000D0DL_0040A8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Set_0000D0DL_0040A8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_7Set_0000D0DL_0040A8[] = dice_doukutu_room_7Set_0000D0DL_0040A8; -#else -static const char ice_doukutu_room_7Set_0000D0DL_0040A8[] __attribute__((aligned (2))) = dice_doukutu_room_7Set_0000D0DL_0040A8; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_7DL_001730 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7DL_001730" +static const ALIGN_ASSET(2) char ice_doukutu_room_7DL_001730[] = dice_doukutu_room_7DL_001730; + +#define dice_doukutu_room_7Tex_001758 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Tex_001758" +static const ALIGN_ASSET(2) char ice_doukutu_room_7Tex_001758[] = dice_doukutu_room_7Tex_001758; + +#define dice_doukutu_room_7DL_0040A8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7DL_0040A8" +static const ALIGN_ASSET(2) char ice_doukutu_room_7DL_0040A8[] = dice_doukutu_room_7DL_0040A8; + +#define dice_doukutu_room_7Tex_0040E8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Tex_0040E8" +static const ALIGN_ASSET(2) char ice_doukutu_room_7Tex_0040E8[] = dice_doukutu_room_7Tex_0040E8; + +#define dice_doukutu_room_7Tex_0050E8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Tex_0050E8" +static const ALIGN_ASSET(2) char ice_doukutu_room_7Tex_0050E8[] = dice_doukutu_room_7Tex_0050E8; + +#define dice_doukutu_room_7Set_0000D0DL_001730 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Set_0000D0DL_001730" +static const ALIGN_ASSET(2) char ice_doukutu_room_7Set_0000D0DL_001730[] = dice_doukutu_room_7Set_0000D0DL_001730; + +#define dice_doukutu_room_7Set_0000D0DL_0040A8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_7Set_0000D0DL_0040A8" +static const ALIGN_ASSET(2) char ice_doukutu_room_7Set_0000D0DL_0040A8[] = dice_doukutu_room_7Set_0000D0DL_0040A8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_8.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_8.h index 2382a625f..0b963c97b 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_8.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_8.h @@ -1,16 +1,9 @@ #pragma once -#define dice_doukutu_room_8DL_0018F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_8DL_0018F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_8DL_0018F8[] = dice_doukutu_room_8DL_0018F8; -#else -static const char ice_doukutu_room_8DL_0018F8[] __attribute__((aligned (2))) = dice_doukutu_room_8DL_0018F8; -#endif - -#define dice_doukutu_room_8Set_000100DL_0018F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_8Set_000100DL_0018F8" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_8Set_000100DL_0018F8[] = dice_doukutu_room_8Set_000100DL_0018F8; -#else -static const char ice_doukutu_room_8Set_000100DL_0018F8[] __attribute__((aligned (2))) = dice_doukutu_room_8Set_000100DL_0018F8; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_8DL_0018F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_8DL_0018F8" +static const ALIGN_ASSET(2) char ice_doukutu_room_8DL_0018F8[] = dice_doukutu_room_8DL_0018F8; + +#define dice_doukutu_room_8Set_000100DL_0018F8 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_8Set_000100DL_0018F8" +static const ALIGN_ASSET(2) char ice_doukutu_room_8Set_000100DL_0018F8[] = dice_doukutu_room_8Set_000100DL_0018F8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_9.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_9.h index c2be53868..e0cb0e543 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_9.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_room_9.h @@ -1,72 +1,33 @@ #pragma once -#define dice_doukutu_room_9DL_004468 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9DL_004468" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9DL_004468[] = dice_doukutu_room_9DL_004468; -#else -static const char ice_doukutu_room_9DL_004468[] __attribute__((aligned (2))) = dice_doukutu_room_9DL_004468; -#endif - -#define dice_doukutu_room_9Tex_005CA0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_005CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9Tex_005CA0[] = dice_doukutu_room_9Tex_005CA0; -#else -static const char ice_doukutu_room_9Tex_005CA0[] __attribute__((aligned (2))) = dice_doukutu_room_9Tex_005CA0; -#endif - -#define dice_doukutu_room_9Tex_006CA0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_006CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9Tex_006CA0[] = dice_doukutu_room_9Tex_006CA0; -#else -static const char ice_doukutu_room_9Tex_006CA0[] __attribute__((aligned (2))) = dice_doukutu_room_9Tex_006CA0; -#endif - -#define dice_doukutu_room_9Tex_0044A0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_0044A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9Tex_0044A0[] = dice_doukutu_room_9Tex_0044A0; -#else -static const char ice_doukutu_room_9Tex_0044A0[] __attribute__((aligned (2))) = dice_doukutu_room_9Tex_0044A0; -#endif - -#define dice_doukutu_room_9Tex_0054A0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_0054A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9Tex_0054A0[] = dice_doukutu_room_9Tex_0054A0; -#else -static const char ice_doukutu_room_9Tex_0054A0[] __attribute__((aligned (2))) = dice_doukutu_room_9Tex_0054A0; -#endif - -#define dice_doukutu_room_9Tex_0064A0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_0064A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9Tex_0064A0[] = dice_doukutu_room_9Tex_0064A0; -#else -static const char ice_doukutu_room_9Tex_0064A0[] __attribute__((aligned (2))) = dice_doukutu_room_9Tex_0064A0; -#endif - -#define dice_doukutu_room_9DL_007680 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9DL_007680" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9DL_007680[] = dice_doukutu_room_9DL_007680; -#else -static const char ice_doukutu_room_9DL_007680[] __attribute__((aligned (2))) = dice_doukutu_room_9DL_007680; -#endif - -#define dice_doukutu_room_9Tex_007690 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_007690" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9Tex_007690[] = dice_doukutu_room_9Tex_007690; -#else -static const char ice_doukutu_room_9Tex_007690[] __attribute__((aligned (2))) = dice_doukutu_room_9Tex_007690; -#endif - -#define dice_doukutu_room_9Set_0001D0DL_004468 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Set_0001D0DL_004468" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9Set_0001D0DL_004468[] = dice_doukutu_room_9Set_0001D0DL_004468; -#else -static const char ice_doukutu_room_9Set_0001D0DL_004468[] __attribute__((aligned (2))) = dice_doukutu_room_9Set_0001D0DL_004468; -#endif - -#define dice_doukutu_room_9Set_0001D0DL_007680 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Set_0001D0DL_007680" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_room_9Set_0001D0DL_007680[] = dice_doukutu_room_9Set_0001D0DL_007680; -#else -static const char ice_doukutu_room_9Set_0001D0DL_007680[] __attribute__((aligned (2))) = dice_doukutu_room_9Set_0001D0DL_007680; -#endif - +#include "align_asset_macro.h" + +#define dice_doukutu_room_9DL_004468 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9DL_004468" +static const ALIGN_ASSET(2) char ice_doukutu_room_9DL_004468[] = dice_doukutu_room_9DL_004468; + +#define dice_doukutu_room_9Tex_005CA0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_005CA0" +static const ALIGN_ASSET(2) char ice_doukutu_room_9Tex_005CA0[] = dice_doukutu_room_9Tex_005CA0; + +#define dice_doukutu_room_9Tex_006CA0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_006CA0" +static const ALIGN_ASSET(2) char ice_doukutu_room_9Tex_006CA0[] = dice_doukutu_room_9Tex_006CA0; + +#define dice_doukutu_room_9Tex_0044A0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_0044A0" +static const ALIGN_ASSET(2) char ice_doukutu_room_9Tex_0044A0[] = dice_doukutu_room_9Tex_0044A0; + +#define dice_doukutu_room_9Tex_0054A0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_0054A0" +static const ALIGN_ASSET(2) char ice_doukutu_room_9Tex_0054A0[] = dice_doukutu_room_9Tex_0054A0; + +#define dice_doukutu_room_9Tex_0064A0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_0064A0" +static const ALIGN_ASSET(2) char ice_doukutu_room_9Tex_0064A0[] = dice_doukutu_room_9Tex_0064A0; + +#define dice_doukutu_room_9DL_007680 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9DL_007680" +static const ALIGN_ASSET(2) char ice_doukutu_room_9DL_007680[] = dice_doukutu_room_9DL_007680; + +#define dice_doukutu_room_9Tex_007690 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Tex_007690" +static const ALIGN_ASSET(2) char ice_doukutu_room_9Tex_007690[] = dice_doukutu_room_9Tex_007690; + +#define dice_doukutu_room_9Set_0001D0DL_004468 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Set_0001D0DL_004468" +static const ALIGN_ASSET(2) char ice_doukutu_room_9Set_0001D0DL_004468[] = dice_doukutu_room_9Set_0001D0DL_004468; + +#define dice_doukutu_room_9Set_0001D0DL_007680 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_room_9Set_0001D0DL_007680" +static const ALIGN_ASSET(2) char ice_doukutu_room_9Set_0001D0DL_007680[] = dice_doukutu_room_9Set_0001D0DL_007680; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_scene.h b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_scene.h index f22c280e7..5d36380bd 100644 --- a/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_scene.h +++ b/soh/assets/scenes/dungeons/ice_doukutu/ice_doukutu_scene.h @@ -1,73 +1,35 @@ #pragma once -#define dgIceCavernSerenadeCs "__OTR__scenes/nonmq/ice_doukutu_scene/gIceCavernSerenadeCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernSerenadeCs[] = dgIceCavernSerenadeCs; -#else -static const char gIceCavernSerenadeCs[] __attribute__((aligned (2))) = dgIceCavernSerenadeCs; -#endif - -#define dgIceCavernNightEntranceTex "__OTR__scenes/nonmq/ice_doukutu_scene/gIceCavernNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernNightEntranceTex[] = dgIceCavernNightEntranceTex; -#else -static const char gIceCavernNightEntranceTex[] __attribute__((aligned (2))) = dgIceCavernNightEntranceTex; -#endif - -#define dgIceCavernDayEntranceTex "__OTR__scenes/nonmq/ice_doukutu_scene/gIceCavernDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernDayEntranceTex[] = dgIceCavernDayEntranceTex; -#else -static const char gIceCavernDayEntranceTex[] __attribute__((aligned (2))) = dgIceCavernDayEntranceTex; -#endif - -#define dice_doukutu_sceneCollisionHeader_00F668 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneCollisionHeader_00F668" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_sceneCollisionHeader_00F668[] = dice_doukutu_sceneCollisionHeader_00F668; -#else -static const char ice_doukutu_sceneCollisionHeader_00F668[] __attribute__((aligned (2))) = dice_doukutu_sceneCollisionHeader_00F668; -#endif - -#define dice_doukutu_sceneTex_010AC0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_010AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_sceneTex_010AC0[] = dice_doukutu_sceneTex_010AC0; -#else -static const char ice_doukutu_sceneTex_010AC0[] __attribute__((aligned (2))) = dice_doukutu_sceneTex_010AC0; -#endif - -#define dice_doukutu_sceneTex_00FCC0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_00FCC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_sceneTex_00FCC0[] = dice_doukutu_sceneTex_00FCC0; -#else -static const char ice_doukutu_sceneTex_00FCC0[] __attribute__((aligned (2))) = dice_doukutu_sceneTex_00FCC0; -#endif - -#define dice_doukutu_sceneTex_0100C0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_0100C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_sceneTex_0100C0[] = dice_doukutu_sceneTex_0100C0; -#else -static const char ice_doukutu_sceneTex_0100C0[] __attribute__((aligned (2))) = dice_doukutu_sceneTex_0100C0; -#endif - -#define dice_doukutu_sceneTex_0108C0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_0108C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_sceneTex_0108C0[] = dice_doukutu_sceneTex_0108C0; -#else -static const char ice_doukutu_sceneTex_0108C0[] __attribute__((aligned (2))) = dice_doukutu_sceneTex_0108C0; -#endif - -#define dice_doukutu_sceneTex_010EC0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_010EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_sceneTex_010EC0[] = dice_doukutu_sceneTex_010EC0; -#else -static const char ice_doukutu_sceneTex_010EC0[] __attribute__((aligned (2))) = dice_doukutu_sceneTex_010EC0; -#endif - -#define dice_doukutu_sceneTLUT_00F8A0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTLUT_00F8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char ice_doukutu_sceneTLUT_00F8A0[] = dice_doukutu_sceneTLUT_00F8A0; -#else -static const char ice_doukutu_sceneTLUT_00F8A0[] __attribute__((aligned (2))) = dice_doukutu_sceneTLUT_00F8A0; -#endif - -#define dice_doukutu_sceneCollisionHeader_00F668 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneCollisionHeader_00F668" +#include "align_asset_macro.h" + +#define dgIceCavernSerenadeCs "__OTR__scenes/nonmq/ice_doukutu_scene/gIceCavernSerenadeCs" +static const ALIGN_ASSET(2) char gIceCavernSerenadeCs[] = dgIceCavernSerenadeCs; + +#define dgIceCavernNightEntranceTex "__OTR__scenes/nonmq/ice_doukutu_scene/gIceCavernNightEntranceTex" +static const ALIGN_ASSET(2) char gIceCavernNightEntranceTex[] = dgIceCavernNightEntranceTex; + +#define dgIceCavernDayEntranceTex "__OTR__scenes/nonmq/ice_doukutu_scene/gIceCavernDayEntranceTex" +static const ALIGN_ASSET(2) char gIceCavernDayEntranceTex[] = dgIceCavernDayEntranceTex; + +#define dice_doukutu_sceneCollisionHeader_00F668 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneCollisionHeader_00F668" +static const ALIGN_ASSET(2) char ice_doukutu_sceneCollisionHeader_00F668[] = dice_doukutu_sceneCollisionHeader_00F668; + +#define dice_doukutu_sceneTex_010AC0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_010AC0" +static const ALIGN_ASSET(2) char ice_doukutu_sceneTex_010AC0[] = dice_doukutu_sceneTex_010AC0; + +#define dice_doukutu_sceneTex_00FCC0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_00FCC0" +static const ALIGN_ASSET(2) char ice_doukutu_sceneTex_00FCC0[] = dice_doukutu_sceneTex_00FCC0; + +#define dice_doukutu_sceneTex_0100C0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_0100C0" +static const ALIGN_ASSET(2) char ice_doukutu_sceneTex_0100C0[] = dice_doukutu_sceneTex_0100C0; + +#define dice_doukutu_sceneTex_0108C0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_0108C0" +static const ALIGN_ASSET(2) char ice_doukutu_sceneTex_0108C0[] = dice_doukutu_sceneTex_0108C0; + +#define dice_doukutu_sceneTex_010EC0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTex_010EC0" +static const ALIGN_ASSET(2) char ice_doukutu_sceneTex_010EC0[] = dice_doukutu_sceneTex_010EC0; + +#define dice_doukutu_sceneTLUT_00F8A0 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneTLUT_00F8A0" +static const ALIGN_ASSET(2) char ice_doukutu_sceneTLUT_00F8A0[] = dice_doukutu_sceneTLUT_00F8A0; + +#define dice_doukutu_sceneCollisionHeader_00F668 "__OTR__scenes/nonmq/ice_doukutu_scene/ice_doukutu_sceneCollisionHeader_00F668" \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_0.h b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_0.h index a2b81a11f..5fc7f89d3 100644 --- a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_0.h +++ b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_0.h @@ -1,37 +1,18 @@ #pragma once -#define djyasinboss_room_0DL_0007B0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0DL_0007B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_0DL_0007B0[] = djyasinboss_room_0DL_0007B0; -#else -static const char jyasinboss_room_0DL_0007B0[] __attribute__((aligned (2))) = djyasinboss_room_0DL_0007B0; -#endif - -#define djyasinboss_room_0Tex_0007C8 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0Tex_0007C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_0Tex_0007C8[] = djyasinboss_room_0Tex_0007C8; -#else -static const char jyasinboss_room_0Tex_0007C8[] __attribute__((aligned (2))) = djyasinboss_room_0Tex_0007C8; -#endif - -#define djyasinboss_room_0Set_000080DL_0007B0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0Set_000080DL_0007B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_0Set_000080DL_0007B0[] = djyasinboss_room_0Set_000080DL_0007B0; -#else -static const char jyasinboss_room_0Set_000080DL_0007B0[] __attribute__((aligned (2))) = djyasinboss_room_0Set_000080DL_0007B0; -#endif - -#define djyasinboss_room_0Set_0000C0DL_0007B0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0Set_0000C0DL_0007B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_0Set_0000C0DL_0007B0[] = djyasinboss_room_0Set_0000C0DL_0007B0; -#else -static const char jyasinboss_room_0Set_0000C0DL_0007B0[] __attribute__((aligned (2))) = djyasinboss_room_0Set_0000C0DL_0007B0; -#endif - -#define djyasinboss_room_0Set_000100DL_0007B0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0Set_000100DL_0007B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_0Set_000100DL_0007B0[] = djyasinboss_room_0Set_000100DL_0007B0; -#else -static const char jyasinboss_room_0Set_000100DL_0007B0[] __attribute__((aligned (2))) = djyasinboss_room_0Set_000100DL_0007B0; -#endif - +#include "align_asset_macro.h" + +#define djyasinboss_room_0DL_0007B0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0DL_0007B0" +static const ALIGN_ASSET(2) char jyasinboss_room_0DL_0007B0[] = djyasinboss_room_0DL_0007B0; + +#define djyasinboss_room_0Tex_0007C8 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0Tex_0007C8" +static const ALIGN_ASSET(2) char jyasinboss_room_0Tex_0007C8[] = djyasinboss_room_0Tex_0007C8; + +#define djyasinboss_room_0Set_000080DL_0007B0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0Set_000080DL_0007B0" +static const ALIGN_ASSET(2) char jyasinboss_room_0Set_000080DL_0007B0[] = djyasinboss_room_0Set_000080DL_0007B0; + +#define djyasinboss_room_0Set_0000C0DL_0007B0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0Set_0000C0DL_0007B0" +static const ALIGN_ASSET(2) char jyasinboss_room_0Set_0000C0DL_0007B0[] = djyasinboss_room_0Set_0000C0DL_0007B0; + +#define djyasinboss_room_0Set_000100DL_0007B0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_0Set_000100DL_0007B0" +static const ALIGN_ASSET(2) char jyasinboss_room_0Set_000100DL_0007B0[] = djyasinboss_room_0Set_000100DL_0007B0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_1.h b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_1.h index c3c785777..1957c088e 100644 --- a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_1.h +++ b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_1.h @@ -1,86 +1,39 @@ #pragma once -#define djyasinboss_room_1DL_002DD0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1DL_002DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1DL_002DD0[] = djyasinboss_room_1DL_002DD0; -#else -static const char jyasinboss_room_1DL_002DD0[] __attribute__((aligned (2))) = djyasinboss_room_1DL_002DD0; -#endif - -#define djyasinboss_room_1Tex_006638 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_006638" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Tex_006638[] = djyasinboss_room_1Tex_006638; -#else -static const char jyasinboss_room_1Tex_006638[] __attribute__((aligned (2))) = djyasinboss_room_1Tex_006638; -#endif - -#define djyasinboss_room_1Tex_007638 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_007638" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Tex_007638[] = djyasinboss_room_1Tex_007638; -#else -static const char jyasinboss_room_1Tex_007638[] __attribute__((aligned (2))) = djyasinboss_room_1Tex_007638; -#endif - -#define djyasinboss_room_1Tex_002E38 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_002E38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Tex_002E38[] = djyasinboss_room_1Tex_002E38; -#else -static const char jyasinboss_room_1Tex_002E38[] __attribute__((aligned (2))) = djyasinboss_room_1Tex_002E38; -#endif - -#define djyasinboss_room_1Tex_006E38 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_006E38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Tex_006E38[] = djyasinboss_room_1Tex_006E38; -#else -static const char jyasinboss_room_1Tex_006E38[] __attribute__((aligned (2))) = djyasinboss_room_1Tex_006E38; -#endif - -#define djyasinboss_room_1TLUT_002E18 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1TLUT_002E18" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1TLUT_002E18[] = djyasinboss_room_1TLUT_002E18; -#else -static const char jyasinboss_room_1TLUT_002E18[] __attribute__((aligned (2))) = djyasinboss_room_1TLUT_002E18; -#endif - -#define djyasinboss_room_1Tex_005638 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_005638" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Tex_005638[] = djyasinboss_room_1Tex_005638; -#else -static const char jyasinboss_room_1Tex_005638[] __attribute__((aligned (2))) = djyasinboss_room_1Tex_005638; -#endif - -#define djyasinboss_room_1Tex_004E38 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_004E38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Tex_004E38[] = djyasinboss_room_1Tex_004E38; -#else -static const char jyasinboss_room_1Tex_004E38[] __attribute__((aligned (2))) = djyasinboss_room_1Tex_004E38; -#endif - -#define djyasinboss_room_1Tex_003E38 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_003E38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Tex_003E38[] = djyasinboss_room_1Tex_003E38; -#else -static const char jyasinboss_room_1Tex_003E38[] __attribute__((aligned (2))) = djyasinboss_room_1Tex_003E38; -#endif - -#define djyasinboss_room_1Set_0001B0DL_002DD0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Set_0001B0DL_002DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Set_0001B0DL_002DD0[] = djyasinboss_room_1Set_0001B0DL_002DD0; -#else -static const char jyasinboss_room_1Set_0001B0DL_002DD0[] __attribute__((aligned (2))) = djyasinboss_room_1Set_0001B0DL_002DD0; -#endif - -#define djyasinboss_room_1Set_000320DL_002DD0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Set_000320DL_002DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Set_000320DL_002DD0[] = djyasinboss_room_1Set_000320DL_002DD0; -#else -static const char jyasinboss_room_1Set_000320DL_002DD0[] __attribute__((aligned (2))) = djyasinboss_room_1Set_000320DL_002DD0; -#endif - -#define djyasinboss_room_1Set_000490DL_002DD0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Set_000490DL_002DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_1Set_000490DL_002DD0[] = djyasinboss_room_1Set_000490DL_002DD0; -#else -static const char jyasinboss_room_1Set_000490DL_002DD0[] __attribute__((aligned (2))) = djyasinboss_room_1Set_000490DL_002DD0; -#endif - +#include "align_asset_macro.h" + +#define djyasinboss_room_1DL_002DD0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1DL_002DD0" +static const ALIGN_ASSET(2) char jyasinboss_room_1DL_002DD0[] = djyasinboss_room_1DL_002DD0; + +#define djyasinboss_room_1Tex_006638 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_006638" +static const ALIGN_ASSET(2) char jyasinboss_room_1Tex_006638[] = djyasinboss_room_1Tex_006638; + +#define djyasinboss_room_1Tex_007638 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_007638" +static const ALIGN_ASSET(2) char jyasinboss_room_1Tex_007638[] = djyasinboss_room_1Tex_007638; + +#define djyasinboss_room_1Tex_002E38 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_002E38" +static const ALIGN_ASSET(2) char jyasinboss_room_1Tex_002E38[] = djyasinboss_room_1Tex_002E38; + +#define djyasinboss_room_1Tex_006E38 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_006E38" +static const ALIGN_ASSET(2) char jyasinboss_room_1Tex_006E38[] = djyasinboss_room_1Tex_006E38; + +#define djyasinboss_room_1TLUT_002E18 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1TLUT_002E18" +static const ALIGN_ASSET(2) char jyasinboss_room_1TLUT_002E18[] = djyasinboss_room_1TLUT_002E18; + +#define djyasinboss_room_1Tex_005638 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_005638" +static const ALIGN_ASSET(2) char jyasinboss_room_1Tex_005638[] = djyasinboss_room_1Tex_005638; + +#define djyasinboss_room_1Tex_004E38 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_004E38" +static const ALIGN_ASSET(2) char jyasinboss_room_1Tex_004E38[] = djyasinboss_room_1Tex_004E38; + +#define djyasinboss_room_1Tex_003E38 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Tex_003E38" +static const ALIGN_ASSET(2) char jyasinboss_room_1Tex_003E38[] = djyasinboss_room_1Tex_003E38; + +#define djyasinboss_room_1Set_0001B0DL_002DD0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Set_0001B0DL_002DD0" +static const ALIGN_ASSET(2) char jyasinboss_room_1Set_0001B0DL_002DD0[] = djyasinboss_room_1Set_0001B0DL_002DD0; + +#define djyasinboss_room_1Set_000320DL_002DD0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Set_000320DL_002DD0" +static const ALIGN_ASSET(2) char jyasinboss_room_1Set_000320DL_002DD0[] = djyasinboss_room_1Set_000320DL_002DD0; + +#define djyasinboss_room_1Set_000490DL_002DD0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_1Set_000490DL_002DD0" +static const ALIGN_ASSET(2) char jyasinboss_room_1Set_000490DL_002DD0[] = djyasinboss_room_1Set_000490DL_002DD0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_2.h b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_2.h index 9aa6ab768..b1395affe 100644 --- a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_2.h +++ b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_2.h @@ -1,51 +1,24 @@ #pragma once -#define djyasinboss_room_2DL_0021A0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2DL_0021A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_2DL_0021A0[] = djyasinboss_room_2DL_0021A0; -#else -static const char jyasinboss_room_2DL_0021A0[] __attribute__((aligned (2))) = djyasinboss_room_2DL_0021A0; -#endif - -#define djyasinboss_room_2Tex_0021C0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Tex_0021C0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_2Tex_0021C0[] = djyasinboss_room_2Tex_0021C0; -#else -static const char jyasinboss_room_2Tex_0021C0[] __attribute__((aligned (2))) = djyasinboss_room_2Tex_0021C0; -#endif - -#define djyasinboss_room_2Tex_0029C0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Tex_0029C0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_2Tex_0029C0[] = djyasinboss_room_2Tex_0029C0; -#else -static const char jyasinboss_room_2Tex_0029C0[] __attribute__((aligned (2))) = djyasinboss_room_2Tex_0029C0; -#endif - -#define djyasinboss_room_2Tex_0039C0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Tex_0039C0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_2Tex_0039C0[] = djyasinboss_room_2Tex_0039C0; -#else -static const char jyasinboss_room_2Tex_0039C0[] __attribute__((aligned (2))) = djyasinboss_room_2Tex_0039C0; -#endif - -#define djyasinboss_room_2Set_0000F0DL_0021A0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Set_0000F0DL_0021A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_2Set_0000F0DL_0021A0[] = djyasinboss_room_2Set_0000F0DL_0021A0; -#else -static const char jyasinboss_room_2Set_0000F0DL_0021A0[] __attribute__((aligned (2))) = djyasinboss_room_2Set_0000F0DL_0021A0; -#endif - -#define djyasinboss_room_2Set_000130DL_0021A0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Set_000130DL_0021A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_2Set_000130DL_0021A0[] = djyasinboss_room_2Set_000130DL_0021A0; -#else -static const char jyasinboss_room_2Set_000130DL_0021A0[] __attribute__((aligned (2))) = djyasinboss_room_2Set_000130DL_0021A0; -#endif - -#define djyasinboss_room_2Set_000170DL_0021A0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Set_000170DL_0021A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_2Set_000170DL_0021A0[] = djyasinboss_room_2Set_000170DL_0021A0; -#else -static const char jyasinboss_room_2Set_000170DL_0021A0[] __attribute__((aligned (2))) = djyasinboss_room_2Set_000170DL_0021A0; -#endif - +#include "align_asset_macro.h" + +#define djyasinboss_room_2DL_0021A0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2DL_0021A0" +static const ALIGN_ASSET(2) char jyasinboss_room_2DL_0021A0[] = djyasinboss_room_2DL_0021A0; + +#define djyasinboss_room_2Tex_0021C0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Tex_0021C0" +static const ALIGN_ASSET(2) char jyasinboss_room_2Tex_0021C0[] = djyasinboss_room_2Tex_0021C0; + +#define djyasinboss_room_2Tex_0029C0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Tex_0029C0" +static const ALIGN_ASSET(2) char jyasinboss_room_2Tex_0029C0[] = djyasinboss_room_2Tex_0029C0; + +#define djyasinboss_room_2Tex_0039C0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Tex_0039C0" +static const ALIGN_ASSET(2) char jyasinboss_room_2Tex_0039C0[] = djyasinboss_room_2Tex_0039C0; + +#define djyasinboss_room_2Set_0000F0DL_0021A0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Set_0000F0DL_0021A0" +static const ALIGN_ASSET(2) char jyasinboss_room_2Set_0000F0DL_0021A0[] = djyasinboss_room_2Set_0000F0DL_0021A0; + +#define djyasinboss_room_2Set_000130DL_0021A0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Set_000130DL_0021A0" +static const ALIGN_ASSET(2) char jyasinboss_room_2Set_000130DL_0021A0[] = djyasinboss_room_2Set_000130DL_0021A0; + +#define djyasinboss_room_2Set_000170DL_0021A0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_2Set_000170DL_0021A0" +static const ALIGN_ASSET(2) char jyasinboss_room_2Set_000170DL_0021A0[] = djyasinboss_room_2Set_000170DL_0021A0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_3.h b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_3.h index 152f84385..9a365e392 100644 --- a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_3.h +++ b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_room_3.h @@ -1,142 +1,63 @@ #pragma once -#define djyasinboss_room_3DL_003C88 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3DL_003C88" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3DL_003C88[] = djyasinboss_room_3DL_003C88; -#else -static const char jyasinboss_room_3DL_003C88[] __attribute__((aligned (2))) = djyasinboss_room_3DL_003C88; -#endif - -#define djyasinboss_room_3Tex_007F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_007F00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_007F00[] = djyasinboss_room_3Tex_007F00; -#else -static const char jyasinboss_room_3Tex_007F00[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_007F00; -#endif - -#define djyasinboss_room_3Tex_008F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_008F00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_008F00[] = djyasinboss_room_3Tex_008F00; -#else -static const char jyasinboss_room_3Tex_008F00[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_008F00; -#endif - -#define djyasinboss_room_3Tex_009F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_009F00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_009F00[] = djyasinboss_room_3Tex_009F00; -#else -static const char jyasinboss_room_3Tex_009F00[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_009F00; -#endif - -#define djyasinboss_room_3TLUT_003EE0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3TLUT_003EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3TLUT_003EE0[] = djyasinboss_room_3TLUT_003EE0; -#else -static const char jyasinboss_room_3TLUT_003EE0[] __attribute__((aligned (2))) = djyasinboss_room_3TLUT_003EE0; -#endif - -#define djyasinboss_room_3Tex_00A700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_00A700" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_00A700[] = djyasinboss_room_3Tex_00A700; -#else -static const char jyasinboss_room_3Tex_00A700[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_00A700; -#endif - -#define djyasinboss_room_3Tex_00AF00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_00AF00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_00AF00[] = djyasinboss_room_3Tex_00AF00; -#else -static const char jyasinboss_room_3Tex_00AF00[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_00AF00; -#endif - -#define djyasinboss_room_3Tex_007700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_007700" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_007700[] = djyasinboss_room_3Tex_007700; -#else -static const char jyasinboss_room_3Tex_007700[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_007700; -#endif - -#define djyasinboss_room_3Tex_006700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_006700" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_006700[] = djyasinboss_room_3Tex_006700; -#else -static const char jyasinboss_room_3Tex_006700[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_006700; -#endif - -#define djyasinboss_room_3Tex_005700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_005700" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_005700[] = djyasinboss_room_3Tex_005700; -#else -static const char jyasinboss_room_3Tex_005700[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_005700; -#endif - -#define djyasinboss_room_3TLUT_003CE0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3TLUT_003CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3TLUT_003CE0[] = djyasinboss_room_3TLUT_003CE0; -#else -static const char jyasinboss_room_3TLUT_003CE0[] __attribute__((aligned (2))) = djyasinboss_room_3TLUT_003CE0; -#endif - -#define djyasinboss_room_3Tex_004700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_004700" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_004700[] = djyasinboss_room_3Tex_004700; -#else -static const char jyasinboss_room_3Tex_004700[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_004700; -#endif - -#define djyasinboss_room_3Tex_004F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_004F00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_004F00[] = djyasinboss_room_3Tex_004F00; -#else -static const char jyasinboss_room_3Tex_004F00[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_004F00; -#endif - -#define djyasinboss_room_3Tex_003F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_003F00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_003F00[] = djyasinboss_room_3Tex_003F00; -#else -static const char jyasinboss_room_3Tex_003F00[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_003F00; -#endif - -#define djyasinboss_room_3Tex_005300 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_005300" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_005300[] = djyasinboss_room_3Tex_005300; -#else -static const char jyasinboss_room_3Tex_005300[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_005300; -#endif - -#define djyasinboss_room_3Tex_004300 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_004300" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_004300[] = djyasinboss_room_3Tex_004300; -#else -static const char jyasinboss_room_3Tex_004300[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_004300; -#endif - -#define djyasinboss_room_3Tex_005F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_005F00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Tex_005F00[] = djyasinboss_room_3Tex_005F00; -#else -static const char jyasinboss_room_3Tex_005F00[] __attribute__((aligned (2))) = djyasinboss_room_3Tex_005F00; -#endif - -#define djyasinboss_room_3Set_0000A0DL_003C88 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Set_0000A0DL_003C88" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Set_0000A0DL_003C88[] = djyasinboss_room_3Set_0000A0DL_003C88; -#else -static const char jyasinboss_room_3Set_0000A0DL_003C88[] __attribute__((aligned (2))) = djyasinboss_room_3Set_0000A0DL_003C88; -#endif - -#define djyasinboss_room_3Set_000100DL_003C88 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Set_000100DL_003C88" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Set_000100DL_003C88[] = djyasinboss_room_3Set_000100DL_003C88; -#else -static const char jyasinboss_room_3Set_000100DL_003C88[] __attribute__((aligned (2))) = djyasinboss_room_3Set_000100DL_003C88; -#endif - -#define djyasinboss_room_3Set_000160DL_003C88 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Set_000160DL_003C88" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_room_3Set_000160DL_003C88[] = djyasinboss_room_3Set_000160DL_003C88; -#else -static const char jyasinboss_room_3Set_000160DL_003C88[] __attribute__((aligned (2))) = djyasinboss_room_3Set_000160DL_003C88; -#endif - +#include "align_asset_macro.h" + +#define djyasinboss_room_3DL_003C88 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3DL_003C88" +static const ALIGN_ASSET(2) char jyasinboss_room_3DL_003C88[] = djyasinboss_room_3DL_003C88; + +#define djyasinboss_room_3Tex_007F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_007F00" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_007F00[] = djyasinboss_room_3Tex_007F00; + +#define djyasinboss_room_3Tex_008F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_008F00" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_008F00[] = djyasinboss_room_3Tex_008F00; + +#define djyasinboss_room_3Tex_009F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_009F00" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_009F00[] = djyasinboss_room_3Tex_009F00; + +#define djyasinboss_room_3TLUT_003EE0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3TLUT_003EE0" +static const ALIGN_ASSET(2) char jyasinboss_room_3TLUT_003EE0[] = djyasinboss_room_3TLUT_003EE0; + +#define djyasinboss_room_3Tex_00A700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_00A700" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_00A700[] = djyasinboss_room_3Tex_00A700; + +#define djyasinboss_room_3Tex_00AF00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_00AF00" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_00AF00[] = djyasinboss_room_3Tex_00AF00; + +#define djyasinboss_room_3Tex_007700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_007700" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_007700[] = djyasinboss_room_3Tex_007700; + +#define djyasinboss_room_3Tex_006700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_006700" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_006700[] = djyasinboss_room_3Tex_006700; + +#define djyasinboss_room_3Tex_005700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_005700" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_005700[] = djyasinboss_room_3Tex_005700; + +#define djyasinboss_room_3TLUT_003CE0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3TLUT_003CE0" +static const ALIGN_ASSET(2) char jyasinboss_room_3TLUT_003CE0[] = djyasinboss_room_3TLUT_003CE0; + +#define djyasinboss_room_3Tex_004700 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_004700" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_004700[] = djyasinboss_room_3Tex_004700; + +#define djyasinboss_room_3Tex_004F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_004F00" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_004F00[] = djyasinboss_room_3Tex_004F00; + +#define djyasinboss_room_3Tex_003F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_003F00" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_003F00[] = djyasinboss_room_3Tex_003F00; + +#define djyasinboss_room_3Tex_005300 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_005300" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_005300[] = djyasinboss_room_3Tex_005300; + +#define djyasinboss_room_3Tex_004300 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_004300" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_004300[] = djyasinboss_room_3Tex_004300; + +#define djyasinboss_room_3Tex_005F00 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Tex_005F00" +static const ALIGN_ASSET(2) char jyasinboss_room_3Tex_005F00[] = djyasinboss_room_3Tex_005F00; + +#define djyasinboss_room_3Set_0000A0DL_003C88 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Set_0000A0DL_003C88" +static const ALIGN_ASSET(2) char jyasinboss_room_3Set_0000A0DL_003C88[] = djyasinboss_room_3Set_0000A0DL_003C88; + +#define djyasinboss_room_3Set_000100DL_003C88 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Set_000100DL_003C88" +static const ALIGN_ASSET(2) char jyasinboss_room_3Set_000100DL_003C88[] = djyasinboss_room_3Set_000100DL_003C88; + +#define djyasinboss_room_3Set_000160DL_003C88 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_room_3Set_000160DL_003C88" +static const ALIGN_ASSET(2) char jyasinboss_room_3Set_000160DL_003C88[] = djyasinboss_room_3Set_000160DL_003C88; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_scene.h b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_scene.h index 96fd72631..6908a6f31 100644 --- a/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_scene.h +++ b/soh/assets/scenes/dungeons/jyasinboss/jyasinboss_scene.h @@ -1,40 +1,24 @@ #pragma once + +#include "align_asset_macro.h" + #define dgSpiritBossNabooruKnuckleIntroCs "__OTR__scenes/nonmq/jyasinboss_scene/gSpiritBossNabooruKnuckleIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritBossNabooruKnuckleIntroCs[] = dgSpiritBossNabooruKnuckleIntroCs; -#else -static const char gSpiritBossNabooruKnuckleIntroCs[] __attribute__((aligned (2))) = dgSpiritBossNabooruKnuckleIntroCs; -#endif - +static const ALIGN_ASSET(2) char gSpiritBossNabooruKnuckleIntroCs[] = dgSpiritBossNabooruKnuckleIntroCs; + #define dgSpiritBossNabooruKnuckleDefeatCs "__OTR__scenes/nonmq/jyasinboss_scene/gSpiritBossNabooruKnuckleDefeatCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritBossNabooruKnuckleDefeatCs[] = dgSpiritBossNabooruKnuckleDefeatCs; -#else -static const char gSpiritBossNabooruKnuckleDefeatCs[] __attribute__((aligned (2))) = dgSpiritBossNabooruKnuckleDefeatCs; -#endif - +static const ALIGN_ASSET(2) char gSpiritBossNabooruKnuckleDefeatCs[] = dgSpiritBossNabooruKnuckleDefeatCs; + #define djyasinboss_sceneCollisionHeader_002B80 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_sceneCollisionHeader_002B80" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_sceneCollisionHeader_002B80[] = djyasinboss_sceneCollisionHeader_002B80; -#else -static const char jyasinboss_sceneCollisionHeader_002B80[] __attribute__((aligned (2))) = djyasinboss_sceneCollisionHeader_002B80; -#endif - +static const ALIGN_ASSET(2) char jyasinboss_sceneCollisionHeader_002B80[] = djyasinboss_sceneCollisionHeader_002B80; + #define djyasinboss_sceneTex_007CF0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_sceneTex_007CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_sceneTex_007CF0[] = djyasinboss_sceneTex_007CF0; -#else -static const char jyasinboss_sceneTex_007CF0[] __attribute__((aligned (2))) = djyasinboss_sceneTex_007CF0; -#endif - +static const ALIGN_ASSET(2) char jyasinboss_sceneTex_007CF0[] = djyasinboss_sceneTex_007CF0; + #define djyasinboss_sceneTex_006CF0 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_sceneTex_006CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinboss_sceneTex_006CF0[] = djyasinboss_sceneTex_006CF0; -#else -static const char jyasinboss_sceneTex_006CF0[] __attribute__((aligned (2))) = djyasinboss_sceneTex_006CF0; -#endif - -#define djyasinboss_sceneCollisionHeader_002B80 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_sceneCollisionHeader_002B80" -#define djyasinboss_sceneCollisionHeader_002B80 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_sceneCollisionHeader_002B80" +static const ALIGN_ASSET(2) char jyasinboss_sceneTex_006CF0[] = djyasinboss_sceneTex_006CF0; + #define djyasinboss_sceneCollisionHeader_002B80 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_sceneCollisionHeader_002B80" +#define djyasinboss_sceneCollisionHeader_002B80 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_sceneCollisionHeader_002B80" + +#define djyasinboss_sceneCollisionHeader_002B80 "__OTR__scenes/nonmq/jyasinboss_scene/jyasinboss_sceneCollisionHeader_002B80" \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_0.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_0.h index cd550a207..016ab1982 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_0.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_0.h @@ -1,205 +1,90 @@ #pragma once -#define djyasinzou_room_0DL_004820 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_004820" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_004820[] = djyasinzou_room_0DL_004820; -#else -static const char jyasinzou_room_0DL_004820[] __attribute__((aligned (2))) = djyasinzou_room_0DL_004820; -#endif - -#define djyasinzou_room_0Tex_00C9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00C9D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00C9D8[] = djyasinzou_room_0Tex_00C9D8; -#else -static const char jyasinzou_room_0Tex_00C9D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00C9D8; -#endif - -#define djyasinzou_room_0Tex_00F9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00F9D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00F9D8[] = djyasinzou_room_0Tex_00F9D8; -#else -static const char jyasinzou_room_0Tex_00F9D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00F9D8; -#endif - -#define djyasinzou_room_0Tex_00DDD8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00DDD8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00DDD8[] = djyasinzou_room_0Tex_00DDD8; -#else -static const char jyasinzou_room_0Tex_00DDD8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00DDD8; -#endif - -#define djyasinzou_room_0Tex_00E9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00E9D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00E9D8[] = djyasinzou_room_0Tex_00E9D8; -#else -static const char jyasinzou_room_0Tex_00E9D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00E9D8; -#endif - -#define djyasinzou_room_0Tex_00E1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00E1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00E1D8[] = djyasinzou_room_0Tex_00E1D8; -#else -static const char jyasinzou_room_0Tex_00E1D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00E1D8; -#endif - -#define djyasinzou_room_0Tex_00D5D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00D5D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00D5D8[] = djyasinzou_room_0Tex_00D5D8; -#else -static const char jyasinzou_room_0Tex_00D5D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00D5D8; -#endif - -#define djyasinzou_room_0Tex_00B1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00B1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00B1D8[] = djyasinzou_room_0Tex_00B1D8; -#else -static const char jyasinzou_room_0Tex_00B1D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00B1D8; -#endif - -#define djyasinzou_room_0DL_005CB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_005CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_005CB0[] = djyasinzou_room_0DL_005CB0; -#else -static const char jyasinzou_room_0DL_005CB0[] __attribute__((aligned (2))) = djyasinzou_room_0DL_005CB0; -#endif - -#define djyasinzou_room_0Tex_00C1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00C1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00C1D8[] = djyasinzou_room_0Tex_00C1D8; -#else -static const char jyasinzou_room_0Tex_00C1D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00C1D8; -#endif - -#define djyasinzou_room_0Tex_00B9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00B9D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00B9D8[] = djyasinzou_room_0Tex_00B9D8; -#else -static const char jyasinzou_room_0Tex_00B9D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00B9D8; -#endif - -#define djyasinzou_room_0DL_007248 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_007248" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_007248[] = djyasinzou_room_0DL_007248; -#else -static const char jyasinzou_room_0DL_007248[] __attribute__((aligned (2))) = djyasinzou_room_0DL_007248; -#endif - -#define djyasinzou_room_0DL_007BE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_007BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_007BE8[] = djyasinzou_room_0DL_007BE8; -#else -static const char jyasinzou_room_0DL_007BE8[] __attribute__((aligned (2))) = djyasinzou_room_0DL_007BE8; -#endif - -#define djyasinzou_room_0DL_008020 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_008020" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_008020[] = djyasinzou_room_0DL_008020; -#else -static const char jyasinzou_room_0DL_008020[] __attribute__((aligned (2))) = djyasinzou_room_0DL_008020; -#endif - -#define djyasinzou_room_0DL_008200 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_008200" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_008200[] = djyasinzou_room_0DL_008200; -#else -static const char jyasinzou_room_0DL_008200[] __attribute__((aligned (2))) = djyasinzou_room_0DL_008200; -#endif - -#define djyasinzou_room_0DL_008AE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_008AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_008AE0[] = djyasinzou_room_0DL_008AE0; -#else -static const char jyasinzou_room_0DL_008AE0[] __attribute__((aligned (2))) = djyasinzou_room_0DL_008AE0; -#endif - -#define djyasinzou_room_0Tex_00A9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00A9D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00A9D8[] = djyasinzou_room_0Tex_00A9D8; -#else -static const char jyasinzou_room_0Tex_00A9D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00A9D8; -#endif - -#define djyasinzou_room_0DL_006768 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_006768" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_006768[] = djyasinzou_room_0DL_006768; -#else -static const char jyasinzou_room_0DL_006768[] __attribute__((aligned (2))) = djyasinzou_room_0DL_006768; -#endif - -#define djyasinzou_room_0DL_0092D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_0092D0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_0092D0[] = djyasinzou_room_0DL_0092D0; -#else -static const char jyasinzou_room_0DL_0092D0[] __attribute__((aligned (2))) = djyasinzou_room_0DL_0092D0; -#endif - -#define djyasinzou_room_0DL_009A08 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_009A08" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_009A08[] = djyasinzou_room_0DL_009A08; -#else -static const char jyasinzou_room_0DL_009A08[] __attribute__((aligned (2))) = djyasinzou_room_0DL_009A08; -#endif - -#define djyasinzou_room_0DL_0030A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_0030A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_0030A0[] = djyasinzou_room_0DL_0030A0; -#else -static const char jyasinzou_room_0DL_0030A0[] __attribute__((aligned (2))) = djyasinzou_room_0DL_0030A0; -#endif - -#define djyasinzou_room_0Tex_00D1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00D1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00D1D8[] = djyasinzou_room_0Tex_00D1D8; -#else -static const char jyasinzou_room_0Tex_00D1D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00D1D8; -#endif - -#define djyasinzou_room_0Tex_00F1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00F1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_00F1D8[] = djyasinzou_room_0Tex_00F1D8; -#else -static const char jyasinzou_room_0Tex_00F1D8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_00F1D8; -#endif - -#define djyasinzou_room_0DL_010468 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_010468" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_010468[] = djyasinzou_room_0DL_010468; -#else -static const char jyasinzou_room_0DL_010468[] __attribute__((aligned (2))) = djyasinzou_room_0DL_010468; -#endif - -#define djyasinzou_room_0Tex_0107E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_0107E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0Tex_0107E8[] = djyasinzou_room_0Tex_0107E8; -#else -static const char jyasinzou_room_0Tex_0107E8[] __attribute__((aligned (2))) = djyasinzou_room_0Tex_0107E8; -#endif - -#define djyasinzou_room_0DL_00A2B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_00A2B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_00A2B0[] = djyasinzou_room_0DL_00A2B0; -#else -static const char jyasinzou_room_0DL_00A2B0[] __attribute__((aligned (2))) = djyasinzou_room_0DL_00A2B0; -#endif - -#define djyasinzou_room_0DL_001700 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_001700" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_001700[] = djyasinzou_room_0DL_001700; -#else -static const char jyasinzou_room_0DL_001700[] __attribute__((aligned (2))) = djyasinzou_room_0DL_001700; -#endif - -#define djyasinzou_room_0DL_0102C0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_0102C0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_0102C0[] = djyasinzou_room_0DL_0102C0; -#else -static const char jyasinzou_room_0DL_0102C0[] __attribute__((aligned (2))) = djyasinzou_room_0DL_0102C0; -#endif - -#define djyasinzou_room_0DL_0106F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_0106F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_0DL_0106F0[] = djyasinzou_room_0DL_0106F0; -#else -static const char jyasinzou_room_0DL_0106F0[] __attribute__((aligned (2))) = djyasinzou_room_0DL_0106F0; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_0DL_004820 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_004820" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_004820[] = djyasinzou_room_0DL_004820; + +#define djyasinzou_room_0Tex_00C9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00C9D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00C9D8[] = djyasinzou_room_0Tex_00C9D8; + +#define djyasinzou_room_0Tex_00F9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00F9D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00F9D8[] = djyasinzou_room_0Tex_00F9D8; + +#define djyasinzou_room_0Tex_00DDD8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00DDD8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00DDD8[] = djyasinzou_room_0Tex_00DDD8; + +#define djyasinzou_room_0Tex_00E9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00E9D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00E9D8[] = djyasinzou_room_0Tex_00E9D8; + +#define djyasinzou_room_0Tex_00E1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00E1D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00E1D8[] = djyasinzou_room_0Tex_00E1D8; + +#define djyasinzou_room_0Tex_00D5D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00D5D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00D5D8[] = djyasinzou_room_0Tex_00D5D8; + +#define djyasinzou_room_0Tex_00B1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00B1D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00B1D8[] = djyasinzou_room_0Tex_00B1D8; + +#define djyasinzou_room_0DL_005CB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_005CB0" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_005CB0[] = djyasinzou_room_0DL_005CB0; + +#define djyasinzou_room_0Tex_00C1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00C1D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00C1D8[] = djyasinzou_room_0Tex_00C1D8; + +#define djyasinzou_room_0Tex_00B9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00B9D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00B9D8[] = djyasinzou_room_0Tex_00B9D8; + +#define djyasinzou_room_0DL_007248 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_007248" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_007248[] = djyasinzou_room_0DL_007248; + +#define djyasinzou_room_0DL_007BE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_007BE8" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_007BE8[] = djyasinzou_room_0DL_007BE8; + +#define djyasinzou_room_0DL_008020 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_008020" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_008020[] = djyasinzou_room_0DL_008020; + +#define djyasinzou_room_0DL_008200 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_008200" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_008200[] = djyasinzou_room_0DL_008200; + +#define djyasinzou_room_0DL_008AE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_008AE0" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_008AE0[] = djyasinzou_room_0DL_008AE0; + +#define djyasinzou_room_0Tex_00A9D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00A9D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00A9D8[] = djyasinzou_room_0Tex_00A9D8; + +#define djyasinzou_room_0DL_006768 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_006768" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_006768[] = djyasinzou_room_0DL_006768; + +#define djyasinzou_room_0DL_0092D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_0092D0" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_0092D0[] = djyasinzou_room_0DL_0092D0; + +#define djyasinzou_room_0DL_009A08 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_009A08" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_009A08[] = djyasinzou_room_0DL_009A08; + +#define djyasinzou_room_0DL_0030A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_0030A0" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_0030A0[] = djyasinzou_room_0DL_0030A0; + +#define djyasinzou_room_0Tex_00D1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00D1D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00D1D8[] = djyasinzou_room_0Tex_00D1D8; + +#define djyasinzou_room_0Tex_00F1D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_00F1D8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_00F1D8[] = djyasinzou_room_0Tex_00F1D8; + +#define djyasinzou_room_0DL_010468 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_010468" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_010468[] = djyasinzou_room_0DL_010468; + +#define djyasinzou_room_0Tex_0107E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0Tex_0107E8" +static const ALIGN_ASSET(2) char jyasinzou_room_0Tex_0107E8[] = djyasinzou_room_0Tex_0107E8; + +#define djyasinzou_room_0DL_00A2B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_00A2B0" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_00A2B0[] = djyasinzou_room_0DL_00A2B0; + +#define djyasinzou_room_0DL_001700 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_001700" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_001700[] = djyasinzou_room_0DL_001700; + +#define djyasinzou_room_0DL_0102C0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_0102C0" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_0102C0[] = djyasinzou_room_0DL_0102C0; + +#define djyasinzou_room_0DL_0106F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_0DL_0106F0" +static const ALIGN_ASSET(2) char jyasinzou_room_0DL_0106F0[] = djyasinzou_room_0DL_0106F0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_1.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_1.h index ed9bf0046..6baf3899c 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_1.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_1.h @@ -1,93 +1,42 @@ #pragma once -#define djyasinzou_room_1DL_0003E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1DL_0003E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1DL_0003E0[] = djyasinzou_room_1DL_0003E0; -#else -static const char jyasinzou_room_1DL_0003E0[] __attribute__((aligned (2))) = djyasinzou_room_1DL_0003E0; -#endif - -#define djyasinzou_room_1Tex_007348 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_007348" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_007348[] = djyasinzou_room_1Tex_007348; -#else -static const char jyasinzou_room_1Tex_007348[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_007348; -#endif - -#define djyasinzou_room_1DL_0025E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1DL_0025E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1DL_0025E8[] = djyasinzou_room_1DL_0025E8; -#else -static const char jyasinzou_room_1DL_0025E8[] __attribute__((aligned (2))) = djyasinzou_room_1DL_0025E8; -#endif - -#define djyasinzou_room_1Tex_006748 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_006748" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_006748[] = djyasinzou_room_1Tex_006748; -#else -static const char jyasinzou_room_1Tex_006748[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_006748; -#endif - -#define djyasinzou_room_1Tex_008B48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_008B48" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_008B48[] = djyasinzou_room_1Tex_008B48; -#else -static const char jyasinzou_room_1Tex_008B48[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_008B48; -#endif - -#define djyasinzou_room_1Tex_005748 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_005748" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_005748[] = djyasinzou_room_1Tex_005748; -#else -static const char jyasinzou_room_1Tex_005748[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_005748; -#endif - -#define djyasinzou_room_1Tex_005F48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_005F48" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_005F48[] = djyasinzou_room_1Tex_005F48; -#else -static const char jyasinzou_room_1Tex_005F48[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_005F48; -#endif - -#define djyasinzou_room_1Tex_007B48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_007B48" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_007B48[] = djyasinzou_room_1Tex_007B48; -#else -static const char jyasinzou_room_1Tex_007B48[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_007B48; -#endif - -#define djyasinzou_room_1Tex_006B48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_006B48" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_006B48[] = djyasinzou_room_1Tex_006B48; -#else -static const char jyasinzou_room_1Tex_006B48[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_006B48; -#endif - -#define djyasinzou_room_1Tex_008348 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_008348" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_008348[] = djyasinzou_room_1Tex_008348; -#else -static const char jyasinzou_room_1Tex_008348[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_008348; -#endif - -#define djyasinzou_room_1DL_0045E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1DL_0045E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1DL_0045E8[] = djyasinzou_room_1DL_0045E8; -#else -static const char jyasinzou_room_1DL_0045E8[] __attribute__((aligned (2))) = djyasinzou_room_1DL_0045E8; -#endif - -#define djyasinzou_room_1DL_004D50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1DL_004D50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1DL_004D50[] = djyasinzou_room_1DL_004D50; -#else -static const char jyasinzou_room_1DL_004D50[] __attribute__((aligned (2))) = djyasinzou_room_1DL_004D50; -#endif - -#define djyasinzou_room_1Tex_004F48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_004F48" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_1Tex_004F48[] = djyasinzou_room_1Tex_004F48; -#else -static const char jyasinzou_room_1Tex_004F48[] __attribute__((aligned (2))) = djyasinzou_room_1Tex_004F48; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_1DL_0003E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1DL_0003E0" +static const ALIGN_ASSET(2) char jyasinzou_room_1DL_0003E0[] = djyasinzou_room_1DL_0003E0; + +#define djyasinzou_room_1Tex_007348 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_007348" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_007348[] = djyasinzou_room_1Tex_007348; + +#define djyasinzou_room_1DL_0025E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1DL_0025E8" +static const ALIGN_ASSET(2) char jyasinzou_room_1DL_0025E8[] = djyasinzou_room_1DL_0025E8; + +#define djyasinzou_room_1Tex_006748 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_006748" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_006748[] = djyasinzou_room_1Tex_006748; + +#define djyasinzou_room_1Tex_008B48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_008B48" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_008B48[] = djyasinzou_room_1Tex_008B48; + +#define djyasinzou_room_1Tex_005748 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_005748" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_005748[] = djyasinzou_room_1Tex_005748; + +#define djyasinzou_room_1Tex_005F48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_005F48" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_005F48[] = djyasinzou_room_1Tex_005F48; + +#define djyasinzou_room_1Tex_007B48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_007B48" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_007B48[] = djyasinzou_room_1Tex_007B48; + +#define djyasinzou_room_1Tex_006B48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_006B48" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_006B48[] = djyasinzou_room_1Tex_006B48; + +#define djyasinzou_room_1Tex_008348 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_008348" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_008348[] = djyasinzou_room_1Tex_008348; + +#define djyasinzou_room_1DL_0045E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1DL_0045E8" +static const ALIGN_ASSET(2) char jyasinzou_room_1DL_0045E8[] = djyasinzou_room_1DL_0045E8; + +#define djyasinzou_room_1DL_004D50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1DL_004D50" +static const ALIGN_ASSET(2) char jyasinzou_room_1DL_004D50[] = djyasinzou_room_1DL_004D50; + +#define djyasinzou_room_1Tex_004F48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_1Tex_004F48" +static const ALIGN_ASSET(2) char jyasinzou_room_1Tex_004F48[] = djyasinzou_room_1Tex_004F48; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_10.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_10.h index 45af83716..42c77965b 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_10.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_10.h @@ -1,135 +1,60 @@ #pragma once -#define djyasinzou_room_10DL_000460 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_000460" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_000460[] = djyasinzou_room_10DL_000460; -#else -static const char jyasinzou_room_10DL_000460[] __attribute__((aligned (2))) = djyasinzou_room_10DL_000460; -#endif - -#define djyasinzou_room_10Tex_0051A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0051A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_0051A0[] = djyasinzou_room_10Tex_0051A0; -#else -static const char jyasinzou_room_10Tex_0051A0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_0051A0; -#endif - -#define djyasinzou_room_10DL_0008F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_0008F8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_0008F8[] = djyasinzou_room_10DL_0008F8; -#else -static const char jyasinzou_room_10DL_0008F8[] __attribute__((aligned (2))) = djyasinzou_room_10DL_0008F8; -#endif - -#define djyasinzou_room_10Tex_007DA0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_007DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_007DA0[] = djyasinzou_room_10Tex_007DA0; -#else -static const char jyasinzou_room_10Tex_007DA0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_007DA0; -#endif - -#define djyasinzou_room_10Tex_0041A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0041A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_0041A0[] = djyasinzou_room_10Tex_0041A0; -#else -static const char jyasinzou_room_10Tex_0041A0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_0041A0; -#endif - -#define djyasinzou_room_10Tex_0049A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0049A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_0049A0[] = djyasinzou_room_10Tex_0049A0; -#else -static const char jyasinzou_room_10Tex_0049A0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_0049A0; -#endif - -#define djyasinzou_room_10DL_002DE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_002DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_002DE0[] = djyasinzou_room_10DL_002DE0; -#else -static const char jyasinzou_room_10DL_002DE0[] __attribute__((aligned (2))) = djyasinzou_room_10DL_002DE0; -#endif - -#define djyasinzou_room_10Tex_0079A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0079A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_0079A0[] = djyasinzou_room_10Tex_0079A0; -#else -static const char jyasinzou_room_10Tex_0079A0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_0079A0; -#endif - -#define djyasinzou_room_10DL_000CC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_000CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_000CC0[] = djyasinzou_room_10DL_000CC0; -#else -static const char jyasinzou_room_10DL_000CC0[] __attribute__((aligned (2))) = djyasinzou_room_10DL_000CC0; -#endif - -#define djyasinzou_room_10Tex_0069A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0069A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_0069A0[] = djyasinzou_room_10Tex_0069A0; -#else -static const char jyasinzou_room_10Tex_0069A0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_0069A0; -#endif - -#define djyasinzou_room_10DL_001270 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_001270" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_001270[] = djyasinzou_room_10DL_001270; -#else -static const char jyasinzou_room_10DL_001270[] __attribute__((aligned (2))) = djyasinzou_room_10DL_001270; -#endif - -#define djyasinzou_room_10Tex_0065A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0065A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_0065A0[] = djyasinzou_room_10Tex_0065A0; -#else -static const char jyasinzou_room_10Tex_0065A0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_0065A0; -#endif - -#define djyasinzou_room_10DL_001AA0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_001AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_001AA0[] = djyasinzou_room_10DL_001AA0; -#else -static const char jyasinzou_room_10DL_001AA0[] __attribute__((aligned (2))) = djyasinzou_room_10DL_001AA0; -#endif - -#define djyasinzou_room_10Tex_005DA0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_005DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_005DA0[] = djyasinzou_room_10Tex_005DA0; -#else -static const char jyasinzou_room_10Tex_005DA0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_005DA0; -#endif - -#define djyasinzou_room_10DL_000E80 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_000E80" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_000E80[] = djyasinzou_room_10DL_000E80; -#else -static const char jyasinzou_room_10DL_000E80[] __attribute__((aligned (2))) = djyasinzou_room_10DL_000E80; -#endif - -#define djyasinzou_room_10DL_001720 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_001720" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_001720[] = djyasinzou_room_10DL_001720; -#else -static const char jyasinzou_room_10DL_001720[] __attribute__((aligned (2))) = djyasinzou_room_10DL_001720; -#endif - -#define djyasinzou_room_10DL_0020C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_0020C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10DL_0020C8[] = djyasinzou_room_10DL_0020C8; -#else -static const char jyasinzou_room_10DL_0020C8[] __attribute__((aligned (2))) = djyasinzou_room_10DL_0020C8; -#endif - -#define djyasinzou_room_10Tex_0031A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0031A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_0031A0[] = djyasinzou_room_10Tex_0031A0; -#else -static const char jyasinzou_room_10Tex_0031A0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_0031A0; -#endif - -#define djyasinzou_room_10Tex_0059A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0059A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_10Tex_0059A0[] = djyasinzou_room_10Tex_0059A0; -#else -static const char jyasinzou_room_10Tex_0059A0[] __attribute__((aligned (2))) = djyasinzou_room_10Tex_0059A0; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_10DL_000460 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_000460" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_000460[] = djyasinzou_room_10DL_000460; + +#define djyasinzou_room_10Tex_0051A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0051A0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_0051A0[] = djyasinzou_room_10Tex_0051A0; + +#define djyasinzou_room_10DL_0008F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_0008F8" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_0008F8[] = djyasinzou_room_10DL_0008F8; + +#define djyasinzou_room_10Tex_007DA0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_007DA0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_007DA0[] = djyasinzou_room_10Tex_007DA0; + +#define djyasinzou_room_10Tex_0041A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0041A0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_0041A0[] = djyasinzou_room_10Tex_0041A0; + +#define djyasinzou_room_10Tex_0049A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0049A0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_0049A0[] = djyasinzou_room_10Tex_0049A0; + +#define djyasinzou_room_10DL_002DE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_002DE0" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_002DE0[] = djyasinzou_room_10DL_002DE0; + +#define djyasinzou_room_10Tex_0079A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0079A0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_0079A0[] = djyasinzou_room_10Tex_0079A0; + +#define djyasinzou_room_10DL_000CC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_000CC0" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_000CC0[] = djyasinzou_room_10DL_000CC0; + +#define djyasinzou_room_10Tex_0069A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0069A0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_0069A0[] = djyasinzou_room_10Tex_0069A0; + +#define djyasinzou_room_10DL_001270 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_001270" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_001270[] = djyasinzou_room_10DL_001270; + +#define djyasinzou_room_10Tex_0065A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0065A0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_0065A0[] = djyasinzou_room_10Tex_0065A0; + +#define djyasinzou_room_10DL_001AA0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_001AA0" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_001AA0[] = djyasinzou_room_10DL_001AA0; + +#define djyasinzou_room_10Tex_005DA0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_005DA0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_005DA0[] = djyasinzou_room_10Tex_005DA0; + +#define djyasinzou_room_10DL_000E80 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_000E80" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_000E80[] = djyasinzou_room_10DL_000E80; + +#define djyasinzou_room_10DL_001720 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_001720" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_001720[] = djyasinzou_room_10DL_001720; + +#define djyasinzou_room_10DL_0020C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10DL_0020C8" +static const ALIGN_ASSET(2) char jyasinzou_room_10DL_0020C8[] = djyasinzou_room_10DL_0020C8; + +#define djyasinzou_room_10Tex_0031A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0031A0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_0031A0[] = djyasinzou_room_10Tex_0031A0; + +#define djyasinzou_room_10Tex_0059A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_10Tex_0059A0" +static const ALIGN_ASSET(2) char jyasinzou_room_10Tex_0059A0[] = djyasinzou_room_10Tex_0059A0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_11.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_11.h index f9c92797f..1b2233d73 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_11.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_11.h @@ -1,23 +1,12 @@ #pragma once -#define djyasinzou_room_11DL_000E40 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_11DL_000E40" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_11DL_000E40[] = djyasinzou_room_11DL_000E40; -#else -static const char jyasinzou_room_11DL_000E40[] __attribute__((aligned (2))) = djyasinzou_room_11DL_000E40; -#endif - -#define djyasinzou_room_11DL_000530 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_11DL_000530" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_11DL_000530[] = djyasinzou_room_11DL_000530; -#else -static const char jyasinzou_room_11DL_000530[] __attribute__((aligned (2))) = djyasinzou_room_11DL_000530; -#endif - -#define djyasinzou_room_11Tex_000780 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_11Tex_000780" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_11Tex_000780[] = djyasinzou_room_11Tex_000780; -#else -static const char jyasinzou_room_11Tex_000780[] __attribute__((aligned (2))) = djyasinzou_room_11Tex_000780; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_11DL_000E40 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_11DL_000E40" +static const ALIGN_ASSET(2) char jyasinzou_room_11DL_000E40[] = djyasinzou_room_11DL_000E40; + +#define djyasinzou_room_11DL_000530 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_11DL_000530" +static const ALIGN_ASSET(2) char jyasinzou_room_11DL_000530[] = djyasinzou_room_11DL_000530; + +#define djyasinzou_room_11Tex_000780 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_11Tex_000780" +static const ALIGN_ASSET(2) char jyasinzou_room_11Tex_000780[] = djyasinzou_room_11Tex_000780; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_12.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_12.h index e9158e7f0..30ae1fccd 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_12.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_12.h @@ -1,37 +1,18 @@ #pragma once -#define djyasinzou_room_12DL_0006B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12DL_0006B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_12DL_0006B0[] = djyasinzou_room_12DL_0006B0; -#else -static const char jyasinzou_room_12DL_0006B0[] __attribute__((aligned (2))) = djyasinzou_room_12DL_0006B0; -#endif - -#define djyasinzou_room_12Tex_0018D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12Tex_0018D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_12Tex_0018D8[] = djyasinzou_room_12Tex_0018D8; -#else -static const char jyasinzou_room_12Tex_0018D8[] __attribute__((aligned (2))) = djyasinzou_room_12Tex_0018D8; -#endif - -#define djyasinzou_room_12Tex_0010D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12Tex_0010D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_12Tex_0010D8[] = djyasinzou_room_12Tex_0010D8; -#else -static const char jyasinzou_room_12Tex_0010D8[] __attribute__((aligned (2))) = djyasinzou_room_12Tex_0010D8; -#endif - -#define djyasinzou_room_12DL_000B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12DL_000B38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_12DL_000B38[] = djyasinzou_room_12DL_000B38; -#else -static const char jyasinzou_room_12DL_000B38[] __attribute__((aligned (2))) = djyasinzou_room_12DL_000B38; -#endif - -#define djyasinzou_room_12DL_000F08 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12DL_000F08" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_12DL_000F08[] = djyasinzou_room_12DL_000F08; -#else -static const char jyasinzou_room_12DL_000F08[] __attribute__((aligned (2))) = djyasinzou_room_12DL_000F08; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_12DL_0006B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12DL_0006B0" +static const ALIGN_ASSET(2) char jyasinzou_room_12DL_0006B0[] = djyasinzou_room_12DL_0006B0; + +#define djyasinzou_room_12Tex_0018D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12Tex_0018D8" +static const ALIGN_ASSET(2) char jyasinzou_room_12Tex_0018D8[] = djyasinzou_room_12Tex_0018D8; + +#define djyasinzou_room_12Tex_0010D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12Tex_0010D8" +static const ALIGN_ASSET(2) char jyasinzou_room_12Tex_0010D8[] = djyasinzou_room_12Tex_0010D8; + +#define djyasinzou_room_12DL_000B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12DL_000B38" +static const ALIGN_ASSET(2) char jyasinzou_room_12DL_000B38[] = djyasinzou_room_12DL_000B38; + +#define djyasinzou_room_12DL_000F08 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_12DL_000F08" +static const ALIGN_ASSET(2) char jyasinzou_room_12DL_000F08[] = djyasinzou_room_12DL_000F08; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_13.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_13.h index a3f2e1bf1..1450b0746 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_13.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_13.h @@ -1,65 +1,30 @@ #pragma once -#define djyasinzou_room_13DL_001B60 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13DL_001B60" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13DL_001B60[] = djyasinzou_room_13DL_001B60; -#else -static const char jyasinzou_room_13DL_001B60[] __attribute__((aligned (2))) = djyasinzou_room_13DL_001B60; -#endif - -#define djyasinzou_room_13Tex_0044A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0044A8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13Tex_0044A8[] = djyasinzou_room_13Tex_0044A8; -#else -static const char jyasinzou_room_13Tex_0044A8[] __attribute__((aligned (2))) = djyasinzou_room_13Tex_0044A8; -#endif - -#define djyasinzou_room_13Tex_0028A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0028A8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13Tex_0028A8[] = djyasinzou_room_13Tex_0028A8; -#else -static const char jyasinzou_room_13Tex_0028A8[] __attribute__((aligned (2))) = djyasinzou_room_13Tex_0028A8; -#endif - -#define djyasinzou_room_13Tex_0030A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0030A8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13Tex_0030A8[] = djyasinzou_room_13Tex_0030A8; -#else -static const char jyasinzou_room_13Tex_0030A8[] __attribute__((aligned (2))) = djyasinzou_room_13Tex_0030A8; -#endif - -#define djyasinzou_room_13Tex_003CA8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_003CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13Tex_003CA8[] = djyasinzou_room_13Tex_003CA8; -#else -static const char jyasinzou_room_13Tex_003CA8[] __attribute__((aligned (2))) = djyasinzou_room_13Tex_003CA8; -#endif - -#define djyasinzou_room_13Tex_0050A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0050A8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13Tex_0050A8[] = djyasinzou_room_13Tex_0050A8; -#else -static const char jyasinzou_room_13Tex_0050A8[] __attribute__((aligned (2))) = djyasinzou_room_13Tex_0050A8; -#endif - -#define djyasinzou_room_13DL_002710 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13DL_002710" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13DL_002710[] = djyasinzou_room_13DL_002710; -#else -static const char jyasinzou_room_13DL_002710[] __attribute__((aligned (2))) = djyasinzou_room_13DL_002710; -#endif - -#define djyasinzou_room_13Tex_0038A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0038A8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13Tex_0038A8[] = djyasinzou_room_13Tex_0038A8; -#else -static const char jyasinzou_room_13Tex_0038A8[] __attribute__((aligned (2))) = djyasinzou_room_13Tex_0038A8; -#endif - -#define djyasinzou_room_13Tex_004CA8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_004CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_13Tex_004CA8[] = djyasinzou_room_13Tex_004CA8; -#else -static const char jyasinzou_room_13Tex_004CA8[] __attribute__((aligned (2))) = djyasinzou_room_13Tex_004CA8; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_13DL_001B60 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13DL_001B60" +static const ALIGN_ASSET(2) char jyasinzou_room_13DL_001B60[] = djyasinzou_room_13DL_001B60; + +#define djyasinzou_room_13Tex_0044A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0044A8" +static const ALIGN_ASSET(2) char jyasinzou_room_13Tex_0044A8[] = djyasinzou_room_13Tex_0044A8; + +#define djyasinzou_room_13Tex_0028A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0028A8" +static const ALIGN_ASSET(2) char jyasinzou_room_13Tex_0028A8[] = djyasinzou_room_13Tex_0028A8; + +#define djyasinzou_room_13Tex_0030A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0030A8" +static const ALIGN_ASSET(2) char jyasinzou_room_13Tex_0030A8[] = djyasinzou_room_13Tex_0030A8; + +#define djyasinzou_room_13Tex_003CA8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_003CA8" +static const ALIGN_ASSET(2) char jyasinzou_room_13Tex_003CA8[] = djyasinzou_room_13Tex_003CA8; + +#define djyasinzou_room_13Tex_0050A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0050A8" +static const ALIGN_ASSET(2) char jyasinzou_room_13Tex_0050A8[] = djyasinzou_room_13Tex_0050A8; + +#define djyasinzou_room_13DL_002710 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13DL_002710" +static const ALIGN_ASSET(2) char jyasinzou_room_13DL_002710[] = djyasinzou_room_13DL_002710; + +#define djyasinzou_room_13Tex_0038A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_0038A8" +static const ALIGN_ASSET(2) char jyasinzou_room_13Tex_0038A8[] = djyasinzou_room_13Tex_0038A8; + +#define djyasinzou_room_13Tex_004CA8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_13Tex_004CA8" +static const ALIGN_ASSET(2) char jyasinzou_room_13Tex_004CA8[] = djyasinzou_room_13Tex_004CA8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_14.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_14.h index 27b5b5b48..a57a1e1f1 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_14.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_14.h @@ -1,86 +1,39 @@ #pragma once -#define djyasinzou_room_14DL_000350 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_000350" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14DL_000350[] = djyasinzou_room_14DL_000350; -#else -static const char jyasinzou_room_14DL_000350[] __attribute__((aligned (2))) = djyasinzou_room_14DL_000350; -#endif - -#define djyasinzou_room_14Tex_0044A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0044A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14Tex_0044A0[] = djyasinzou_room_14Tex_0044A0; -#else -static const char jyasinzou_room_14Tex_0044A0[] __attribute__((aligned (2))) = djyasinzou_room_14Tex_0044A0; -#endif - -#define djyasinzou_room_14DL_000AF8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_000AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14DL_000AF8[] = djyasinzou_room_14DL_000AF8; -#else -static const char jyasinzou_room_14DL_000AF8[] __attribute__((aligned (2))) = djyasinzou_room_14DL_000AF8; -#endif - -#define djyasinzou_room_14Tex_001CA0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_001CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14Tex_001CA0[] = djyasinzou_room_14Tex_001CA0; -#else -static const char jyasinzou_room_14Tex_001CA0[] __attribute__((aligned (2))) = djyasinzou_room_14Tex_001CA0; -#endif - -#define djyasinzou_room_14Tex_0028A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0028A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14Tex_0028A0[] = djyasinzou_room_14Tex_0028A0; -#else -static const char jyasinzou_room_14Tex_0028A0[] __attribute__((aligned (2))) = djyasinzou_room_14Tex_0028A0; -#endif - -#define djyasinzou_room_14DL_001088 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_001088" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14DL_001088[] = djyasinzou_room_14DL_001088; -#else -static const char jyasinzou_room_14DL_001088[] __attribute__((aligned (2))) = djyasinzou_room_14DL_001088; -#endif - -#define djyasinzou_room_14DL_001340 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_001340" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14DL_001340[] = djyasinzou_room_14DL_001340; -#else -static const char jyasinzou_room_14DL_001340[] __attribute__((aligned (2))) = djyasinzou_room_14DL_001340; -#endif - -#define djyasinzou_room_14Tex_0024A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0024A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14Tex_0024A0[] = djyasinzou_room_14Tex_0024A0; -#else -static const char jyasinzou_room_14Tex_0024A0[] __attribute__((aligned (2))) = djyasinzou_room_14Tex_0024A0; -#endif - -#define djyasinzou_room_14DL_0017D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_0017D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14DL_0017D8[] = djyasinzou_room_14DL_0017D8; -#else -static const char jyasinzou_room_14DL_0017D8[] __attribute__((aligned (2))) = djyasinzou_room_14DL_0017D8; -#endif - -#define djyasinzou_room_14Tex_0030A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0030A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14Tex_0030A0[] = djyasinzou_room_14Tex_0030A0; -#else -static const char jyasinzou_room_14Tex_0030A0[] __attribute__((aligned (2))) = djyasinzou_room_14Tex_0030A0; -#endif - -#define djyasinzou_room_14DL_001AE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14DL_001AE0[] = djyasinzou_room_14DL_001AE0; -#else -static const char jyasinzou_room_14DL_001AE0[] __attribute__((aligned (2))) = djyasinzou_room_14DL_001AE0; -#endif - -#define djyasinzou_room_14Tex_0034A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0034A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_14Tex_0034A0[] = djyasinzou_room_14Tex_0034A0; -#else -static const char jyasinzou_room_14Tex_0034A0[] __attribute__((aligned (2))) = djyasinzou_room_14Tex_0034A0; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_14DL_000350 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_000350" +static const ALIGN_ASSET(2) char jyasinzou_room_14DL_000350[] = djyasinzou_room_14DL_000350; + +#define djyasinzou_room_14Tex_0044A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0044A0" +static const ALIGN_ASSET(2) char jyasinzou_room_14Tex_0044A0[] = djyasinzou_room_14Tex_0044A0; + +#define djyasinzou_room_14DL_000AF8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_000AF8" +static const ALIGN_ASSET(2) char jyasinzou_room_14DL_000AF8[] = djyasinzou_room_14DL_000AF8; + +#define djyasinzou_room_14Tex_001CA0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_001CA0" +static const ALIGN_ASSET(2) char jyasinzou_room_14Tex_001CA0[] = djyasinzou_room_14Tex_001CA0; + +#define djyasinzou_room_14Tex_0028A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0028A0" +static const ALIGN_ASSET(2) char jyasinzou_room_14Tex_0028A0[] = djyasinzou_room_14Tex_0028A0; + +#define djyasinzou_room_14DL_001088 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_001088" +static const ALIGN_ASSET(2) char jyasinzou_room_14DL_001088[] = djyasinzou_room_14DL_001088; + +#define djyasinzou_room_14DL_001340 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_001340" +static const ALIGN_ASSET(2) char jyasinzou_room_14DL_001340[] = djyasinzou_room_14DL_001340; + +#define djyasinzou_room_14Tex_0024A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0024A0" +static const ALIGN_ASSET(2) char jyasinzou_room_14Tex_0024A0[] = djyasinzou_room_14Tex_0024A0; + +#define djyasinzou_room_14DL_0017D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_0017D8" +static const ALIGN_ASSET(2) char jyasinzou_room_14DL_0017D8[] = djyasinzou_room_14DL_0017D8; + +#define djyasinzou_room_14Tex_0030A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0030A0" +static const ALIGN_ASSET(2) char jyasinzou_room_14Tex_0030A0[] = djyasinzou_room_14Tex_0030A0; + +#define djyasinzou_room_14DL_001AE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14DL_001AE0" +static const ALIGN_ASSET(2) char jyasinzou_room_14DL_001AE0[] = djyasinzou_room_14DL_001AE0; + +#define djyasinzou_room_14Tex_0034A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_14Tex_0034A0" +static const ALIGN_ASSET(2) char jyasinzou_room_14Tex_0034A0[] = djyasinzou_room_14Tex_0034A0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_15.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_15.h index d1297e6cf..8b22af2c9 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_15.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_15.h @@ -1,135 +1,60 @@ #pragma once -#define djyasinzou_room_15DL_007970 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_007970" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15DL_007970[] = djyasinzou_room_15DL_007970; -#else -static const char jyasinzou_room_15DL_007970[] __attribute__((aligned (2))) = djyasinzou_room_15DL_007970; -#endif - -#define djyasinzou_room_15DL_000DE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_000DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15DL_000DE0[] = djyasinzou_room_15DL_000DE0; -#else -static const char jyasinzou_room_15DL_000DE0[] __attribute__((aligned (2))) = djyasinzou_room_15DL_000DE0; -#endif - -#define djyasinzou_room_15Tex_005CE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_005CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_005CE8[] = djyasinzou_room_15Tex_005CE8; -#else -static const char jyasinzou_room_15Tex_005CE8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_005CE8; -#endif - -#define djyasinzou_room_15Tex_0053E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_0053E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_0053E8[] = djyasinzou_room_15Tex_0053E8; -#else -static const char jyasinzou_room_15Tex_0053E8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_0053E8; -#endif - -#define djyasinzou_room_15Tex_0043E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_0043E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_0043E8[] = djyasinzou_room_15Tex_0043E8; -#else -static const char jyasinzou_room_15Tex_0043E8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_0043E8; -#endif - -#define djyasinzou_room_15Tex_004BE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_004BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_004BE8[] = djyasinzou_room_15Tex_004BE8; -#else -static const char jyasinzou_room_15Tex_004BE8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_004BE8; -#endif - -#define djyasinzou_room_15Tex_0060E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_0060E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_0060E8[] = djyasinzou_room_15Tex_0060E8; -#else -static const char jyasinzou_room_15Tex_0060E8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_0060E8; -#endif - -#define djyasinzou_room_15DL_007BC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_007BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15DL_007BC0[] = djyasinzou_room_15DL_007BC0; -#else -static const char jyasinzou_room_15DL_007BC0[] __attribute__((aligned (2))) = djyasinzou_room_15DL_007BC0; -#endif - -#define djyasinzou_room_15Tex_007C98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_007C98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_007C98[] = djyasinzou_room_15Tex_007C98; -#else -static const char jyasinzou_room_15Tex_007C98[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_007C98; -#endif - -#define djyasinzou_room_15DL_002950 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_002950" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15DL_002950[] = djyasinzou_room_15DL_002950; -#else -static const char jyasinzou_room_15DL_002950[] __attribute__((aligned (2))) = djyasinzou_room_15DL_002950; -#endif - -#define djyasinzou_room_15Tex_006CE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_006CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_006CE8[] = djyasinzou_room_15Tex_006CE8; -#else -static const char jyasinzou_room_15Tex_006CE8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_006CE8; -#endif - -#define djyasinzou_room_15DL_001A68 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_001A68" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15DL_001A68[] = djyasinzou_room_15DL_001A68; -#else -static const char jyasinzou_room_15DL_001A68[] __attribute__((aligned (2))) = djyasinzou_room_15DL_001A68; -#endif - -#define djyasinzou_room_15Tex_0068E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_0068E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_0068E8[] = djyasinzou_room_15Tex_0068E8; -#else -static const char jyasinzou_room_15Tex_0068E8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_0068E8; -#endif - -#define djyasinzou_room_15DL_002380 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_002380" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15DL_002380[] = djyasinzou_room_15DL_002380; -#else -static const char jyasinzou_room_15DL_002380[] __attribute__((aligned (2))) = djyasinzou_room_15DL_002380; -#endif - -#define djyasinzou_room_15Tex_005BE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_005BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_005BE8[] = djyasinzou_room_15Tex_005BE8; -#else -static const char jyasinzou_room_15Tex_005BE8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_005BE8; -#endif - -#define djyasinzou_room_15DL_002C10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_002C10" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15DL_002C10[] = djyasinzou_room_15DL_002C10; -#else -static const char jyasinzou_room_15DL_002C10[] __attribute__((aligned (2))) = djyasinzou_room_15DL_002C10; -#endif - -#define djyasinzou_room_15Tex_002FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_002FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_002FE8[] = djyasinzou_room_15Tex_002FE8; -#else -static const char jyasinzou_room_15Tex_002FE8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_002FE8; -#endif - -#define djyasinzou_room_15Tex_003FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_003FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15Tex_003FE8[] = djyasinzou_room_15Tex_003FE8; -#else -static const char jyasinzou_room_15Tex_003FE8[] __attribute__((aligned (2))) = djyasinzou_room_15Tex_003FE8; -#endif - -#define djyasinzou_room_15DL_002E90 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_002E90" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_15DL_002E90[] = djyasinzou_room_15DL_002E90; -#else -static const char jyasinzou_room_15DL_002E90[] __attribute__((aligned (2))) = djyasinzou_room_15DL_002E90; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_15DL_007970 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_007970" +static const ALIGN_ASSET(2) char jyasinzou_room_15DL_007970[] = djyasinzou_room_15DL_007970; + +#define djyasinzou_room_15DL_000DE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_000DE0" +static const ALIGN_ASSET(2) char jyasinzou_room_15DL_000DE0[] = djyasinzou_room_15DL_000DE0; + +#define djyasinzou_room_15Tex_005CE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_005CE8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_005CE8[] = djyasinzou_room_15Tex_005CE8; + +#define djyasinzou_room_15Tex_0053E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_0053E8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_0053E8[] = djyasinzou_room_15Tex_0053E8; + +#define djyasinzou_room_15Tex_0043E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_0043E8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_0043E8[] = djyasinzou_room_15Tex_0043E8; + +#define djyasinzou_room_15Tex_004BE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_004BE8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_004BE8[] = djyasinzou_room_15Tex_004BE8; + +#define djyasinzou_room_15Tex_0060E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_0060E8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_0060E8[] = djyasinzou_room_15Tex_0060E8; + +#define djyasinzou_room_15DL_007BC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_007BC0" +static const ALIGN_ASSET(2) char jyasinzou_room_15DL_007BC0[] = djyasinzou_room_15DL_007BC0; + +#define djyasinzou_room_15Tex_007C98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_007C98" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_007C98[] = djyasinzou_room_15Tex_007C98; + +#define djyasinzou_room_15DL_002950 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_002950" +static const ALIGN_ASSET(2) char jyasinzou_room_15DL_002950[] = djyasinzou_room_15DL_002950; + +#define djyasinzou_room_15Tex_006CE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_006CE8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_006CE8[] = djyasinzou_room_15Tex_006CE8; + +#define djyasinzou_room_15DL_001A68 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_001A68" +static const ALIGN_ASSET(2) char jyasinzou_room_15DL_001A68[] = djyasinzou_room_15DL_001A68; + +#define djyasinzou_room_15Tex_0068E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_0068E8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_0068E8[] = djyasinzou_room_15Tex_0068E8; + +#define djyasinzou_room_15DL_002380 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_002380" +static const ALIGN_ASSET(2) char jyasinzou_room_15DL_002380[] = djyasinzou_room_15DL_002380; + +#define djyasinzou_room_15Tex_005BE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_005BE8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_005BE8[] = djyasinzou_room_15Tex_005BE8; + +#define djyasinzou_room_15DL_002C10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_002C10" +static const ALIGN_ASSET(2) char jyasinzou_room_15DL_002C10[] = djyasinzou_room_15DL_002C10; + +#define djyasinzou_room_15Tex_002FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_002FE8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_002FE8[] = djyasinzou_room_15Tex_002FE8; + +#define djyasinzou_room_15Tex_003FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15Tex_003FE8" +static const ALIGN_ASSET(2) char jyasinzou_room_15Tex_003FE8[] = djyasinzou_room_15Tex_003FE8; + +#define djyasinzou_room_15DL_002E90 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_15DL_002E90" +static const ALIGN_ASSET(2) char jyasinzou_room_15DL_002E90[] = djyasinzou_room_15DL_002E90; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_16.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_16.h index e98863925..311c7fd44 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_16.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_16.h @@ -1,121 +1,54 @@ #pragma once -#define djyasinzou_room_16DL_0003F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_0003F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_0003F0[] = djyasinzou_room_16DL_0003F0; -#else -static const char jyasinzou_room_16DL_0003F0[] __attribute__((aligned (2))) = djyasinzou_room_16DL_0003F0; -#endif - -#define djyasinzou_room_16Tex_0045B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0045B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16Tex_0045B8[] = djyasinzou_room_16Tex_0045B8; -#else -static const char jyasinzou_room_16Tex_0045B8[] __attribute__((aligned (2))) = djyasinzou_room_16Tex_0045B8; -#endif - -#define djyasinzou_room_16Tex_0059B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0059B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16Tex_0059B8[] = djyasinzou_room_16Tex_0059B8; -#else -static const char jyasinzou_room_16Tex_0059B8[] __attribute__((aligned (2))) = djyasinzou_room_16Tex_0059B8; -#endif - -#define djyasinzou_room_16DL_0007E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_0007E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_0007E0[] = djyasinzou_room_16DL_0007E0; -#else -static const char jyasinzou_room_16DL_0007E0[] __attribute__((aligned (2))) = djyasinzou_room_16DL_0007E0; -#endif - -#define djyasinzou_room_16Tex_0039B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0039B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16Tex_0039B8[] = djyasinzou_room_16Tex_0039B8; -#else -static const char jyasinzou_room_16Tex_0039B8[] __attribute__((aligned (2))) = djyasinzou_room_16Tex_0039B8; -#endif - -#define djyasinzou_room_16DL_000D90 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_000D90" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_000D90[] = djyasinzou_room_16DL_000D90; -#else -static const char jyasinzou_room_16DL_000D90[] __attribute__((aligned (2))) = djyasinzou_room_16DL_000D90; -#endif - -#define djyasinzou_room_16DL_001458 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_001458" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_001458[] = djyasinzou_room_16DL_001458; -#else -static const char jyasinzou_room_16DL_001458[] __attribute__((aligned (2))) = djyasinzou_room_16DL_001458; -#endif - -#define djyasinzou_room_16DL_0017D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_0017D0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_0017D0[] = djyasinzou_room_16DL_0017D0; -#else -static const char jyasinzou_room_16DL_0017D0[] __attribute__((aligned (2))) = djyasinzou_room_16DL_0017D0; -#endif - -#define djyasinzou_room_16DL_001B40 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_001B40" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_001B40[] = djyasinzou_room_16DL_001B40; -#else -static const char jyasinzou_room_16DL_001B40[] __attribute__((aligned (2))) = djyasinzou_room_16DL_001B40; -#endif - -#define djyasinzou_room_16Tex_0029B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0029B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16Tex_0029B8[] = djyasinzou_room_16Tex_0029B8; -#else -static const char jyasinzou_room_16Tex_0029B8[] __attribute__((aligned (2))) = djyasinzou_room_16Tex_0029B8; -#endif - -#define djyasinzou_room_16Tex_004DB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_004DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16Tex_004DB8[] = djyasinzou_room_16Tex_004DB8; -#else -static const char jyasinzou_room_16Tex_004DB8[] __attribute__((aligned (2))) = djyasinzou_room_16Tex_004DB8; -#endif - -#define djyasinzou_room_16DL_001DC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_001DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_001DC0[] = djyasinzou_room_16DL_001DC0; -#else -static const char jyasinzou_room_16DL_001DC0[] __attribute__((aligned (2))) = djyasinzou_room_16DL_001DC0; -#endif - -#define djyasinzou_room_16DL_002040 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_002040" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_002040[] = djyasinzou_room_16DL_002040; -#else -static const char jyasinzou_room_16DL_002040[] __attribute__((aligned (2))) = djyasinzou_room_16DL_002040; -#endif - -#define djyasinzou_room_16DL_0022C0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_0022C0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_0022C0[] = djyasinzou_room_16DL_0022C0; -#else -static const char jyasinzou_room_16DL_0022C0[] __attribute__((aligned (2))) = djyasinzou_room_16DL_0022C0; -#endif - -#define djyasinzou_room_16DL_002660 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_002660" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16DL_002660[] = djyasinzou_room_16DL_002660; -#else -static const char jyasinzou_room_16DL_002660[] __attribute__((aligned (2))) = djyasinzou_room_16DL_002660; -#endif - -#define djyasinzou_room_16Tex_0041B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0041B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16Tex_0041B8[] = djyasinzou_room_16Tex_0041B8; -#else -static const char jyasinzou_room_16Tex_0041B8[] __attribute__((aligned (2))) = djyasinzou_room_16Tex_0041B8; -#endif - -#define djyasinzou_room_16Tex_0051B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0051B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_16Tex_0051B8[] = djyasinzou_room_16Tex_0051B8; -#else -static const char jyasinzou_room_16Tex_0051B8[] __attribute__((aligned (2))) = djyasinzou_room_16Tex_0051B8; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_16DL_0003F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_0003F0" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_0003F0[] = djyasinzou_room_16DL_0003F0; + +#define djyasinzou_room_16Tex_0045B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0045B8" +static const ALIGN_ASSET(2) char jyasinzou_room_16Tex_0045B8[] = djyasinzou_room_16Tex_0045B8; + +#define djyasinzou_room_16Tex_0059B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0059B8" +static const ALIGN_ASSET(2) char jyasinzou_room_16Tex_0059B8[] = djyasinzou_room_16Tex_0059B8; + +#define djyasinzou_room_16DL_0007E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_0007E0" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_0007E0[] = djyasinzou_room_16DL_0007E0; + +#define djyasinzou_room_16Tex_0039B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0039B8" +static const ALIGN_ASSET(2) char jyasinzou_room_16Tex_0039B8[] = djyasinzou_room_16Tex_0039B8; + +#define djyasinzou_room_16DL_000D90 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_000D90" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_000D90[] = djyasinzou_room_16DL_000D90; + +#define djyasinzou_room_16DL_001458 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_001458" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_001458[] = djyasinzou_room_16DL_001458; + +#define djyasinzou_room_16DL_0017D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_0017D0" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_0017D0[] = djyasinzou_room_16DL_0017D0; + +#define djyasinzou_room_16DL_001B40 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_001B40" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_001B40[] = djyasinzou_room_16DL_001B40; + +#define djyasinzou_room_16Tex_0029B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0029B8" +static const ALIGN_ASSET(2) char jyasinzou_room_16Tex_0029B8[] = djyasinzou_room_16Tex_0029B8; + +#define djyasinzou_room_16Tex_004DB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_004DB8" +static const ALIGN_ASSET(2) char jyasinzou_room_16Tex_004DB8[] = djyasinzou_room_16Tex_004DB8; + +#define djyasinzou_room_16DL_001DC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_001DC0" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_001DC0[] = djyasinzou_room_16DL_001DC0; + +#define djyasinzou_room_16DL_002040 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_002040" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_002040[] = djyasinzou_room_16DL_002040; + +#define djyasinzou_room_16DL_0022C0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_0022C0" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_0022C0[] = djyasinzou_room_16DL_0022C0; + +#define djyasinzou_room_16DL_002660 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16DL_002660" +static const ALIGN_ASSET(2) char jyasinzou_room_16DL_002660[] = djyasinzou_room_16DL_002660; + +#define djyasinzou_room_16Tex_0041B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0041B8" +static const ALIGN_ASSET(2) char jyasinzou_room_16Tex_0041B8[] = djyasinzou_room_16Tex_0041B8; + +#define djyasinzou_room_16Tex_0051B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_16Tex_0051B8" +static const ALIGN_ASSET(2) char jyasinzou_room_16Tex_0051B8[] = djyasinzou_room_16Tex_0051B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_17.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_17.h index d18556e1a..52a1e738b 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_17.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_17.h @@ -1,93 +1,42 @@ #pragma once -#define djyasinzou_room_17DL_000980 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_000980" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17DL_000980[] = djyasinzou_room_17DL_000980; -#else -static const char jyasinzou_room_17DL_000980[] __attribute__((aligned (2))) = djyasinzou_room_17DL_000980; -#endif - -#define djyasinzou_room_17Tex_006650 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_006650" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17Tex_006650[] = djyasinzou_room_17Tex_006650; -#else -static const char jyasinzou_room_17Tex_006650[] __attribute__((aligned (2))) = djyasinzou_room_17Tex_006650; -#endif - -#define djyasinzou_room_17Tex_007A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_007A50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17Tex_007A50[] = djyasinzou_room_17Tex_007A50; -#else -static const char jyasinzou_room_17Tex_007A50[] __attribute__((aligned (2))) = djyasinzou_room_17Tex_007A50; -#endif - -#define djyasinzou_room_17Tex_008250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_008250" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17Tex_008250[] = djyasinzou_room_17Tex_008250; -#else -static const char jyasinzou_room_17Tex_008250[] __attribute__((aligned (2))) = djyasinzou_room_17Tex_008250; -#endif - -#define djyasinzou_room_17Tex_008E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_008E50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17Tex_008E50[] = djyasinzou_room_17Tex_008E50; -#else -static const char jyasinzou_room_17Tex_008E50[] __attribute__((aligned (2))) = djyasinzou_room_17Tex_008E50; -#endif - -#define djyasinzou_room_17DL_0011F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_0011F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17DL_0011F0[] = djyasinzou_room_17DL_0011F0; -#else -static const char jyasinzou_room_17DL_0011F0[] __attribute__((aligned (2))) = djyasinzou_room_17DL_0011F0; -#endif - -#define djyasinzou_room_17Tex_005E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_005E50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17Tex_005E50[] = djyasinzou_room_17Tex_005E50; -#else -static const char jyasinzou_room_17Tex_005E50[] __attribute__((aligned (2))) = djyasinzou_room_17Tex_005E50; -#endif - -#define djyasinzou_room_17DL_001850 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_001850" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17DL_001850[] = djyasinzou_room_17DL_001850; -#else -static const char jyasinzou_room_17DL_001850[] __attribute__((aligned (2))) = djyasinzou_room_17DL_001850; -#endif - -#define djyasinzou_room_17Tex_008A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_008A50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17Tex_008A50[] = djyasinzou_room_17Tex_008A50; -#else -static const char jyasinzou_room_17Tex_008A50[] __attribute__((aligned (2))) = djyasinzou_room_17Tex_008A50; -#endif - -#define djyasinzou_room_17Tex_006E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_006E50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17Tex_006E50[] = djyasinzou_room_17Tex_006E50; -#else -static const char jyasinzou_room_17Tex_006E50[] __attribute__((aligned (2))) = djyasinzou_room_17Tex_006E50; -#endif - -#define djyasinzou_room_17DL_003258 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_003258" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17DL_003258[] = djyasinzou_room_17DL_003258; -#else -static const char jyasinzou_room_17DL_003258[] __attribute__((aligned (2))) = djyasinzou_room_17DL_003258; -#endif - -#define djyasinzou_room_17Tex_007250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_007250" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17Tex_007250[] = djyasinzou_room_17Tex_007250; -#else -static const char jyasinzou_room_17Tex_007250[] __attribute__((aligned (2))) = djyasinzou_room_17Tex_007250; -#endif - -#define djyasinzou_room_17DL_005D38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_005D38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_17DL_005D38[] = djyasinzou_room_17DL_005D38; -#else -static const char jyasinzou_room_17DL_005D38[] __attribute__((aligned (2))) = djyasinzou_room_17DL_005D38; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_17DL_000980 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_000980" +static const ALIGN_ASSET(2) char jyasinzou_room_17DL_000980[] = djyasinzou_room_17DL_000980; + +#define djyasinzou_room_17Tex_006650 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_006650" +static const ALIGN_ASSET(2) char jyasinzou_room_17Tex_006650[] = djyasinzou_room_17Tex_006650; + +#define djyasinzou_room_17Tex_007A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_007A50" +static const ALIGN_ASSET(2) char jyasinzou_room_17Tex_007A50[] = djyasinzou_room_17Tex_007A50; + +#define djyasinzou_room_17Tex_008250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_008250" +static const ALIGN_ASSET(2) char jyasinzou_room_17Tex_008250[] = djyasinzou_room_17Tex_008250; + +#define djyasinzou_room_17Tex_008E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_008E50" +static const ALIGN_ASSET(2) char jyasinzou_room_17Tex_008E50[] = djyasinzou_room_17Tex_008E50; + +#define djyasinzou_room_17DL_0011F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_0011F0" +static const ALIGN_ASSET(2) char jyasinzou_room_17DL_0011F0[] = djyasinzou_room_17DL_0011F0; + +#define djyasinzou_room_17Tex_005E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_005E50" +static const ALIGN_ASSET(2) char jyasinzou_room_17Tex_005E50[] = djyasinzou_room_17Tex_005E50; + +#define djyasinzou_room_17DL_001850 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_001850" +static const ALIGN_ASSET(2) char jyasinzou_room_17DL_001850[] = djyasinzou_room_17DL_001850; + +#define djyasinzou_room_17Tex_008A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_008A50" +static const ALIGN_ASSET(2) char jyasinzou_room_17Tex_008A50[] = djyasinzou_room_17Tex_008A50; + +#define djyasinzou_room_17Tex_006E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_006E50" +static const ALIGN_ASSET(2) char jyasinzou_room_17Tex_006E50[] = djyasinzou_room_17Tex_006E50; + +#define djyasinzou_room_17DL_003258 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_003258" +static const ALIGN_ASSET(2) char jyasinzou_room_17DL_003258[] = djyasinzou_room_17DL_003258; + +#define djyasinzou_room_17Tex_007250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17Tex_007250" +static const ALIGN_ASSET(2) char jyasinzou_room_17Tex_007250[] = djyasinzou_room_17Tex_007250; + +#define djyasinzou_room_17DL_005D38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_17DL_005D38" +static const ALIGN_ASSET(2) char jyasinzou_room_17DL_005D38[] = djyasinzou_room_17DL_005D38; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_18.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_18.h index 5a0dc0a50..602cf267b 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_18.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_18.h @@ -1,128 +1,57 @@ #pragma once -#define djyasinzou_room_18DL_000620 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_000620" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_000620[] = djyasinzou_room_18DL_000620; -#else -static const char jyasinzou_room_18DL_000620[] __attribute__((aligned (2))) = djyasinzou_room_18DL_000620; -#endif - -#define djyasinzou_room_18Tex_0044F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0044F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18Tex_0044F0[] = djyasinzou_room_18Tex_0044F0; -#else -static const char jyasinzou_room_18Tex_0044F0[] __attribute__((aligned (2))) = djyasinzou_room_18Tex_0044F0; -#endif - -#define djyasinzou_room_18Tex_0048F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0048F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18Tex_0048F0[] = djyasinzou_room_18Tex_0048F0; -#else -static const char jyasinzou_room_18Tex_0048F0[] __attribute__((aligned (2))) = djyasinzou_room_18Tex_0048F0; -#endif - -#define djyasinzou_room_18DL_000D78 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_000D78" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_000D78[] = djyasinzou_room_18DL_000D78; -#else -static const char jyasinzou_room_18DL_000D78[] __attribute__((aligned (2))) = djyasinzou_room_18DL_000D78; -#endif - -#define djyasinzou_room_18Tex_0028F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0028F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18Tex_0028F0[] = djyasinzou_room_18Tex_0028F0; -#else -static const char jyasinzou_room_18Tex_0028F0[] __attribute__((aligned (2))) = djyasinzou_room_18Tex_0028F0; -#endif - -#define djyasinzou_room_18DL_001038 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001038" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_001038[] = djyasinzou_room_18DL_001038; -#else -static const char jyasinzou_room_18DL_001038[] __attribute__((aligned (2))) = djyasinzou_room_18DL_001038; -#endif - -#define djyasinzou_room_18DL_001418 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001418" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_001418[] = djyasinzou_room_18DL_001418; -#else -static const char jyasinzou_room_18DL_001418[] __attribute__((aligned (2))) = djyasinzou_room_18DL_001418; -#endif - -#define djyasinzou_room_18Tex_0034F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0034F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18Tex_0034F0[] = djyasinzou_room_18Tex_0034F0; -#else -static const char jyasinzou_room_18Tex_0034F0[] __attribute__((aligned (2))) = djyasinzou_room_18Tex_0034F0; -#endif - -#define djyasinzou_room_18DL_001690 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001690" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_001690[] = djyasinzou_room_18DL_001690; -#else -static const char jyasinzou_room_18DL_001690[] __attribute__((aligned (2))) = djyasinzou_room_18DL_001690; -#endif - -#define djyasinzou_room_18Tex_0020F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0020F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18Tex_0020F0[] = djyasinzou_room_18Tex_0020F0; -#else -static const char jyasinzou_room_18Tex_0020F0[] __attribute__((aligned (2))) = djyasinzou_room_18Tex_0020F0; -#endif - -#define djyasinzou_room_18DL_005170 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_005170" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_005170[] = djyasinzou_room_18DL_005170; -#else -static const char jyasinzou_room_18DL_005170[] __attribute__((aligned (2))) = djyasinzou_room_18DL_005170; -#endif - -#define djyasinzou_room_18DL_001900 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001900" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_001900[] = djyasinzou_room_18DL_001900; -#else -static const char jyasinzou_room_18DL_001900[] __attribute__((aligned (2))) = djyasinzou_room_18DL_001900; -#endif - -#define djyasinzou_room_18DL_005408 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_005408" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_005408[] = djyasinzou_room_18DL_005408; -#else -static const char jyasinzou_room_18DL_005408[] __attribute__((aligned (2))) = djyasinzou_room_18DL_005408; -#endif - -#define djyasinzou_room_18Tex_0054E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0054E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18Tex_0054E0[] = djyasinzou_room_18Tex_0054E0; -#else -static const char jyasinzou_room_18Tex_0054E0[] __attribute__((aligned (2))) = djyasinzou_room_18Tex_0054E0; -#endif - -#define djyasinzou_room_18DL_001D20 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001D20" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_001D20[] = djyasinzou_room_18DL_001D20; -#else -static const char jyasinzou_room_18DL_001D20[] __attribute__((aligned (2))) = djyasinzou_room_18DL_001D20; -#endif - -#define djyasinzou_room_18Tex_003CF0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_003CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18Tex_003CF0[] = djyasinzou_room_18Tex_003CF0; -#else -static const char jyasinzou_room_18Tex_003CF0[] __attribute__((aligned (2))) = djyasinzou_room_18Tex_003CF0; -#endif - -#define djyasinzou_room_18DL_001FA8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001FA8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18DL_001FA8[] = djyasinzou_room_18DL_001FA8; -#else -static const char jyasinzou_room_18DL_001FA8[] __attribute__((aligned (2))) = djyasinzou_room_18DL_001FA8; -#endif - -#define djyasinzou_room_18Tex_0030F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0030F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_18Tex_0030F0[] = djyasinzou_room_18Tex_0030F0; -#else -static const char jyasinzou_room_18Tex_0030F0[] __attribute__((aligned (2))) = djyasinzou_room_18Tex_0030F0; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_18DL_000620 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_000620" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_000620[] = djyasinzou_room_18DL_000620; + +#define djyasinzou_room_18Tex_0044F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0044F0" +static const ALIGN_ASSET(2) char jyasinzou_room_18Tex_0044F0[] = djyasinzou_room_18Tex_0044F0; + +#define djyasinzou_room_18Tex_0048F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0048F0" +static const ALIGN_ASSET(2) char jyasinzou_room_18Tex_0048F0[] = djyasinzou_room_18Tex_0048F0; + +#define djyasinzou_room_18DL_000D78 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_000D78" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_000D78[] = djyasinzou_room_18DL_000D78; + +#define djyasinzou_room_18Tex_0028F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0028F0" +static const ALIGN_ASSET(2) char jyasinzou_room_18Tex_0028F0[] = djyasinzou_room_18Tex_0028F0; + +#define djyasinzou_room_18DL_001038 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001038" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_001038[] = djyasinzou_room_18DL_001038; + +#define djyasinzou_room_18DL_001418 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001418" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_001418[] = djyasinzou_room_18DL_001418; + +#define djyasinzou_room_18Tex_0034F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0034F0" +static const ALIGN_ASSET(2) char jyasinzou_room_18Tex_0034F0[] = djyasinzou_room_18Tex_0034F0; + +#define djyasinzou_room_18DL_001690 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001690" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_001690[] = djyasinzou_room_18DL_001690; + +#define djyasinzou_room_18Tex_0020F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0020F0" +static const ALIGN_ASSET(2) char jyasinzou_room_18Tex_0020F0[] = djyasinzou_room_18Tex_0020F0; + +#define djyasinzou_room_18DL_005170 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_005170" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_005170[] = djyasinzou_room_18DL_005170; + +#define djyasinzou_room_18DL_001900 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001900" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_001900[] = djyasinzou_room_18DL_001900; + +#define djyasinzou_room_18DL_005408 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_005408" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_005408[] = djyasinzou_room_18DL_005408; + +#define djyasinzou_room_18Tex_0054E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0054E0" +static const ALIGN_ASSET(2) char jyasinzou_room_18Tex_0054E0[] = djyasinzou_room_18Tex_0054E0; + +#define djyasinzou_room_18DL_001D20 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001D20" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_001D20[] = djyasinzou_room_18DL_001D20; + +#define djyasinzou_room_18Tex_003CF0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_003CF0" +static const ALIGN_ASSET(2) char jyasinzou_room_18Tex_003CF0[] = djyasinzou_room_18Tex_003CF0; + +#define djyasinzou_room_18DL_001FA8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18DL_001FA8" +static const ALIGN_ASSET(2) char jyasinzou_room_18DL_001FA8[] = djyasinzou_room_18DL_001FA8; + +#define djyasinzou_room_18Tex_0030F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_18Tex_0030F0" +static const ALIGN_ASSET(2) char jyasinzou_room_18Tex_0030F0[] = djyasinzou_room_18Tex_0030F0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_19.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_19.h index 88134765a..4d5f5d8d1 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_19.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_19.h @@ -1,93 +1,42 @@ #pragma once -#define djyasinzou_room_19DL_0014E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_0014E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19DL_0014E0[] = djyasinzou_room_19DL_0014E0; -#else -static const char jyasinzou_room_19DL_0014E0[] __attribute__((aligned (2))) = djyasinzou_room_19DL_0014E0; -#endif - -#define djyasinzou_room_19Tex_0045C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_0045C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19Tex_0045C8[] = djyasinzou_room_19Tex_0045C8; -#else -static const char jyasinzou_room_19Tex_0045C8[] __attribute__((aligned (2))) = djyasinzou_room_19Tex_0045C8; -#endif - -#define djyasinzou_room_19Tex_003DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_003DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19Tex_003DC8[] = djyasinzou_room_19Tex_003DC8; -#else -static const char jyasinzou_room_19Tex_003DC8[] __attribute__((aligned (2))) = djyasinzou_room_19Tex_003DC8; -#endif - -#define djyasinzou_room_19Tex_0051C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_0051C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19Tex_0051C8[] = djyasinzou_room_19Tex_0051C8; -#else -static const char jyasinzou_room_19Tex_0051C8[] __attribute__((aligned (2))) = djyasinzou_room_19Tex_0051C8; -#endif - -#define djyasinzou_room_19Tex_0055C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_0055C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19Tex_0055C8[] = djyasinzou_room_19Tex_0055C8; -#else -static const char jyasinzou_room_19Tex_0055C8[] __attribute__((aligned (2))) = djyasinzou_room_19Tex_0055C8; -#endif - -#define djyasinzou_room_19DL_001FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_001FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19DL_001FE8[] = djyasinzou_room_19DL_001FE8; -#else -static const char jyasinzou_room_19DL_001FE8[] __attribute__((aligned (2))) = djyasinzou_room_19DL_001FE8; -#endif - -#define djyasinzou_room_19Tex_002DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_002DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19Tex_002DC8[] = djyasinzou_room_19Tex_002DC8; -#else -static const char jyasinzou_room_19Tex_002DC8[] __attribute__((aligned (2))) = djyasinzou_room_19Tex_002DC8; -#endif - -#define djyasinzou_room_19Tex_004DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_004DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19Tex_004DC8[] = djyasinzou_room_19Tex_004DC8; -#else -static const char jyasinzou_room_19Tex_004DC8[] __attribute__((aligned (2))) = djyasinzou_room_19Tex_004DC8; -#endif - -#define djyasinzou_room_19DL_002268 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_002268" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19DL_002268[] = djyasinzou_room_19DL_002268; -#else -static const char jyasinzou_room_19DL_002268[] __attribute__((aligned (2))) = djyasinzou_room_19DL_002268; -#endif - -#define djyasinzou_room_19DL_0024E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19DL_0024E8[] = djyasinzou_room_19DL_0024E8; -#else -static const char jyasinzou_room_19DL_0024E8[] __attribute__((aligned (2))) = djyasinzou_room_19DL_0024E8; -#endif - -#define djyasinzou_room_19DL_002768 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_002768" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19DL_002768[] = djyasinzou_room_19DL_002768; -#else -static const char jyasinzou_room_19DL_002768[] __attribute__((aligned (2))) = djyasinzou_room_19DL_002768; -#endif - -#define djyasinzou_room_19DL_0029E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_0029E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19DL_0029E8[] = djyasinzou_room_19DL_0029E8; -#else -static const char jyasinzou_room_19DL_0029E8[] __attribute__((aligned (2))) = djyasinzou_room_19DL_0029E8; -#endif - -#define djyasinzou_room_19DL_002C68 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_002C68" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_19DL_002C68[] = djyasinzou_room_19DL_002C68; -#else -static const char jyasinzou_room_19DL_002C68[] __attribute__((aligned (2))) = djyasinzou_room_19DL_002C68; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_19DL_0014E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_0014E0" +static const ALIGN_ASSET(2) char jyasinzou_room_19DL_0014E0[] = djyasinzou_room_19DL_0014E0; + +#define djyasinzou_room_19Tex_0045C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_0045C8" +static const ALIGN_ASSET(2) char jyasinzou_room_19Tex_0045C8[] = djyasinzou_room_19Tex_0045C8; + +#define djyasinzou_room_19Tex_003DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_003DC8" +static const ALIGN_ASSET(2) char jyasinzou_room_19Tex_003DC8[] = djyasinzou_room_19Tex_003DC8; + +#define djyasinzou_room_19Tex_0051C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_0051C8" +static const ALIGN_ASSET(2) char jyasinzou_room_19Tex_0051C8[] = djyasinzou_room_19Tex_0051C8; + +#define djyasinzou_room_19Tex_0055C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_0055C8" +static const ALIGN_ASSET(2) char jyasinzou_room_19Tex_0055C8[] = djyasinzou_room_19Tex_0055C8; + +#define djyasinzou_room_19DL_001FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_001FE8" +static const ALIGN_ASSET(2) char jyasinzou_room_19DL_001FE8[] = djyasinzou_room_19DL_001FE8; + +#define djyasinzou_room_19Tex_002DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_002DC8" +static const ALIGN_ASSET(2) char jyasinzou_room_19Tex_002DC8[] = djyasinzou_room_19Tex_002DC8; + +#define djyasinzou_room_19Tex_004DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19Tex_004DC8" +static const ALIGN_ASSET(2) char jyasinzou_room_19Tex_004DC8[] = djyasinzou_room_19Tex_004DC8; + +#define djyasinzou_room_19DL_002268 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_002268" +static const ALIGN_ASSET(2) char jyasinzou_room_19DL_002268[] = djyasinzou_room_19DL_002268; + +#define djyasinzou_room_19DL_0024E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_0024E8" +static const ALIGN_ASSET(2) char jyasinzou_room_19DL_0024E8[] = djyasinzou_room_19DL_0024E8; + +#define djyasinzou_room_19DL_002768 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_002768" +static const ALIGN_ASSET(2) char jyasinzou_room_19DL_002768[] = djyasinzou_room_19DL_002768; + +#define djyasinzou_room_19DL_0029E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_0029E8" +static const ALIGN_ASSET(2) char jyasinzou_room_19DL_0029E8[] = djyasinzou_room_19DL_0029E8; + +#define djyasinzou_room_19DL_002C68 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_19DL_002C68" +static const ALIGN_ASSET(2) char jyasinzou_room_19DL_002C68[] = djyasinzou_room_19DL_002C68; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_2.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_2.h index 3fe9293ed..b04e6238e 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_2.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_2.h @@ -1,86 +1,39 @@ #pragma once -#define djyasinzou_room_2DL_0006F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_0006F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2DL_0006F0[] = djyasinzou_room_2DL_0006F0; -#else -static const char jyasinzou_room_2DL_0006F0[] __attribute__((aligned (2))) = djyasinzou_room_2DL_0006F0; -#endif - -#define djyasinzou_room_2Tex_0047B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_0047B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2Tex_0047B0[] = djyasinzou_room_2Tex_0047B0; -#else -static const char jyasinzou_room_2Tex_0047B0[] __attribute__((aligned (2))) = djyasinzou_room_2Tex_0047B0; -#endif - -#define djyasinzou_room_2Tex_0053B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_0053B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2Tex_0053B0[] = djyasinzou_room_2Tex_0053B0; -#else -static const char jyasinzou_room_2Tex_0053B0[] __attribute__((aligned (2))) = djyasinzou_room_2Tex_0053B0; -#endif - -#define djyasinzou_room_2Tex_0033B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_0033B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2Tex_0033B0[] = djyasinzou_room_2Tex_0033B0; -#else -static const char jyasinzou_room_2Tex_0033B0[] __attribute__((aligned (2))) = djyasinzou_room_2Tex_0033B0; -#endif - -#define djyasinzou_room_2DL_000C58 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_000C58" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2DL_000C58[] = djyasinzou_room_2DL_000C58; -#else -static const char jyasinzou_room_2DL_000C58[] __attribute__((aligned (2))) = djyasinzou_room_2DL_000C58; -#endif - -#define djyasinzou_room_2DL_001398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_001398" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2DL_001398[] = djyasinzou_room_2DL_001398; -#else -static const char jyasinzou_room_2DL_001398[] __attribute__((aligned (2))) = djyasinzou_room_2DL_001398; -#endif - -#define djyasinzou_room_2Tex_004BB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_004BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2Tex_004BB0[] = djyasinzou_room_2Tex_004BB0; -#else -static const char jyasinzou_room_2Tex_004BB0[] __attribute__((aligned (2))) = djyasinzou_room_2Tex_004BB0; -#endif - -#define djyasinzou_room_2DL_001D88 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_001D88" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2DL_001D88[] = djyasinzou_room_2DL_001D88; -#else -static const char jyasinzou_room_2DL_001D88[] __attribute__((aligned (2))) = djyasinzou_room_2DL_001D88; -#endif - -#define djyasinzou_room_2Tex_003BB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_003BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2Tex_003BB0[] = djyasinzou_room_2Tex_003BB0; -#else -static const char jyasinzou_room_2Tex_003BB0[] __attribute__((aligned (2))) = djyasinzou_room_2Tex_003BB0; -#endif - -#define djyasinzou_room_2Tex_0023B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_0023B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2Tex_0023B0[] = djyasinzou_room_2Tex_0023B0; -#else -static const char jyasinzou_room_2Tex_0023B0[] __attribute__((aligned (2))) = djyasinzou_room_2Tex_0023B0; -#endif - -#define djyasinzou_room_2Tex_003FB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_003FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2Tex_003FB0[] = djyasinzou_room_2Tex_003FB0; -#else -static const char jyasinzou_room_2Tex_003FB0[] __attribute__((aligned (2))) = djyasinzou_room_2Tex_003FB0; -#endif - -#define djyasinzou_room_2DL_002170 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_002170" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_2DL_002170[] = djyasinzou_room_2DL_002170; -#else -static const char jyasinzou_room_2DL_002170[] __attribute__((aligned (2))) = djyasinzou_room_2DL_002170; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_2DL_0006F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_0006F0" +static const ALIGN_ASSET(2) char jyasinzou_room_2DL_0006F0[] = djyasinzou_room_2DL_0006F0; + +#define djyasinzou_room_2Tex_0047B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_0047B0" +static const ALIGN_ASSET(2) char jyasinzou_room_2Tex_0047B0[] = djyasinzou_room_2Tex_0047B0; + +#define djyasinzou_room_2Tex_0053B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_0053B0" +static const ALIGN_ASSET(2) char jyasinzou_room_2Tex_0053B0[] = djyasinzou_room_2Tex_0053B0; + +#define djyasinzou_room_2Tex_0033B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_0033B0" +static const ALIGN_ASSET(2) char jyasinzou_room_2Tex_0033B0[] = djyasinzou_room_2Tex_0033B0; + +#define djyasinzou_room_2DL_000C58 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_000C58" +static const ALIGN_ASSET(2) char jyasinzou_room_2DL_000C58[] = djyasinzou_room_2DL_000C58; + +#define djyasinzou_room_2DL_001398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_001398" +static const ALIGN_ASSET(2) char jyasinzou_room_2DL_001398[] = djyasinzou_room_2DL_001398; + +#define djyasinzou_room_2Tex_004BB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_004BB0" +static const ALIGN_ASSET(2) char jyasinzou_room_2Tex_004BB0[] = djyasinzou_room_2Tex_004BB0; + +#define djyasinzou_room_2DL_001D88 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_001D88" +static const ALIGN_ASSET(2) char jyasinzou_room_2DL_001D88[] = djyasinzou_room_2DL_001D88; + +#define djyasinzou_room_2Tex_003BB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_003BB0" +static const ALIGN_ASSET(2) char jyasinzou_room_2Tex_003BB0[] = djyasinzou_room_2Tex_003BB0; + +#define djyasinzou_room_2Tex_0023B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_0023B0" +static const ALIGN_ASSET(2) char jyasinzou_room_2Tex_0023B0[] = djyasinzou_room_2Tex_0023B0; + +#define djyasinzou_room_2Tex_003FB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2Tex_003FB0" +static const ALIGN_ASSET(2) char jyasinzou_room_2Tex_003FB0[] = djyasinzou_room_2Tex_003FB0; + +#define djyasinzou_room_2DL_002170 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_2DL_002170" +static const ALIGN_ASSET(2) char jyasinzou_room_2DL_002170[] = djyasinzou_room_2DL_002170; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_20.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_20.h index 2a44a6b67..2a610ea63 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_20.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_20.h @@ -1,135 +1,60 @@ #pragma once -#define djyasinzou_room_20DL_000460 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_000460" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_000460[] = djyasinzou_room_20DL_000460; -#else -static const char jyasinzou_room_20DL_000460[] __attribute__((aligned (2))) = djyasinzou_room_20DL_000460; -#endif - -#define djyasinzou_room_20Tex_0051B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0051B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_0051B8[] = djyasinzou_room_20Tex_0051B8; -#else -static const char jyasinzou_room_20Tex_0051B8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_0051B8; -#endif - -#define djyasinzou_room_20DL_000908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_000908" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_000908[] = djyasinzou_room_20DL_000908; -#else -static const char jyasinzou_room_20DL_000908[] __attribute__((aligned (2))) = djyasinzou_room_20DL_000908; -#endif - -#define djyasinzou_room_20Tex_007DB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_007DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_007DB8[] = djyasinzou_room_20Tex_007DB8; -#else -static const char jyasinzou_room_20Tex_007DB8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_007DB8; -#endif - -#define djyasinzou_room_20Tex_0041B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0041B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_0041B8[] = djyasinzou_room_20Tex_0041B8; -#else -static const char jyasinzou_room_20Tex_0041B8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_0041B8; -#endif - -#define djyasinzou_room_20Tex_0049B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0049B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_0049B8[] = djyasinzou_room_20Tex_0049B8; -#else -static const char jyasinzou_room_20Tex_0049B8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_0049B8; -#endif - -#define djyasinzou_room_20DL_000CD8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_000CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_000CD8[] = djyasinzou_room_20DL_000CD8; -#else -static const char jyasinzou_room_20DL_000CD8[] __attribute__((aligned (2))) = djyasinzou_room_20DL_000CD8; -#endif - -#define djyasinzou_room_20Tex_0069B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0069B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_0069B8[] = djyasinzou_room_20Tex_0069B8; -#else -static const char jyasinzou_room_20Tex_0069B8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_0069B8; -#endif - -#define djyasinzou_room_20DL_000E98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_000E98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_000E98[] = djyasinzou_room_20DL_000E98; -#else -static const char jyasinzou_room_20DL_000E98[] __attribute__((aligned (2))) = djyasinzou_room_20DL_000E98; -#endif - -#define djyasinzou_room_20DL_001278 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_001278" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_001278[] = djyasinzou_room_20DL_001278; -#else -static const char jyasinzou_room_20DL_001278[] __attribute__((aligned (2))) = djyasinzou_room_20DL_001278; -#endif - -#define djyasinzou_room_20Tex_0065B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0065B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_0065B8[] = djyasinzou_room_20Tex_0065B8; -#else -static const char jyasinzou_room_20Tex_0065B8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_0065B8; -#endif - -#define djyasinzou_room_20DL_001738 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_001738" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_001738[] = djyasinzou_room_20DL_001738; -#else -static const char jyasinzou_room_20DL_001738[] __attribute__((aligned (2))) = djyasinzou_room_20DL_001738; -#endif - -#define djyasinzou_room_20DL_001AB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_001AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_001AB8[] = djyasinzou_room_20DL_001AB8; -#else -static const char jyasinzou_room_20DL_001AB8[] __attribute__((aligned (2))) = djyasinzou_room_20DL_001AB8; -#endif - -#define djyasinzou_room_20Tex_005DB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_005DB8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_005DB8[] = djyasinzou_room_20Tex_005DB8; -#else -static const char jyasinzou_room_20Tex_005DB8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_005DB8; -#endif - -#define djyasinzou_room_20DL_0020E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_0020E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_0020E0[] = djyasinzou_room_20DL_0020E0; -#else -static const char jyasinzou_room_20DL_0020E0[] __attribute__((aligned (2))) = djyasinzou_room_20DL_0020E0; -#endif - -#define djyasinzou_room_20Tex_0031B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0031B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_0031B8[] = djyasinzou_room_20Tex_0031B8; -#else -static const char jyasinzou_room_20Tex_0031B8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_0031B8; -#endif - -#define djyasinzou_room_20Tex_0059B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0059B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_0059B8[] = djyasinzou_room_20Tex_0059B8; -#else -static const char jyasinzou_room_20Tex_0059B8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_0059B8; -#endif - -#define djyasinzou_room_20DL_002DF8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_002DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20DL_002DF8[] = djyasinzou_room_20DL_002DF8; -#else -static const char jyasinzou_room_20DL_002DF8[] __attribute__((aligned (2))) = djyasinzou_room_20DL_002DF8; -#endif - -#define djyasinzou_room_20Tex_0079B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0079B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_20Tex_0079B8[] = djyasinzou_room_20Tex_0079B8; -#else -static const char jyasinzou_room_20Tex_0079B8[] __attribute__((aligned (2))) = djyasinzou_room_20Tex_0079B8; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_20DL_000460 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_000460" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_000460[] = djyasinzou_room_20DL_000460; + +#define djyasinzou_room_20Tex_0051B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0051B8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_0051B8[] = djyasinzou_room_20Tex_0051B8; + +#define djyasinzou_room_20DL_000908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_000908" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_000908[] = djyasinzou_room_20DL_000908; + +#define djyasinzou_room_20Tex_007DB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_007DB8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_007DB8[] = djyasinzou_room_20Tex_007DB8; + +#define djyasinzou_room_20Tex_0041B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0041B8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_0041B8[] = djyasinzou_room_20Tex_0041B8; + +#define djyasinzou_room_20Tex_0049B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0049B8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_0049B8[] = djyasinzou_room_20Tex_0049B8; + +#define djyasinzou_room_20DL_000CD8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_000CD8" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_000CD8[] = djyasinzou_room_20DL_000CD8; + +#define djyasinzou_room_20Tex_0069B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0069B8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_0069B8[] = djyasinzou_room_20Tex_0069B8; + +#define djyasinzou_room_20DL_000E98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_000E98" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_000E98[] = djyasinzou_room_20DL_000E98; + +#define djyasinzou_room_20DL_001278 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_001278" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_001278[] = djyasinzou_room_20DL_001278; + +#define djyasinzou_room_20Tex_0065B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0065B8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_0065B8[] = djyasinzou_room_20Tex_0065B8; + +#define djyasinzou_room_20DL_001738 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_001738" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_001738[] = djyasinzou_room_20DL_001738; + +#define djyasinzou_room_20DL_001AB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_001AB8" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_001AB8[] = djyasinzou_room_20DL_001AB8; + +#define djyasinzou_room_20Tex_005DB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_005DB8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_005DB8[] = djyasinzou_room_20Tex_005DB8; + +#define djyasinzou_room_20DL_0020E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_0020E0" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_0020E0[] = djyasinzou_room_20DL_0020E0; + +#define djyasinzou_room_20Tex_0031B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0031B8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_0031B8[] = djyasinzou_room_20Tex_0031B8; + +#define djyasinzou_room_20Tex_0059B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0059B8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_0059B8[] = djyasinzou_room_20Tex_0059B8; + +#define djyasinzou_room_20DL_002DF8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20DL_002DF8" +static const ALIGN_ASSET(2) char jyasinzou_room_20DL_002DF8[] = djyasinzou_room_20DL_002DF8; + +#define djyasinzou_room_20Tex_0079B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_20Tex_0079B8" +static const ALIGN_ASSET(2) char jyasinzou_room_20Tex_0079B8[] = djyasinzou_room_20Tex_0079B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_21.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_21.h index 9ce9da278..a6768ca49 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_21.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_21.h @@ -1,65 +1,30 @@ #pragma once -#define djyasinzou_room_21DL_000A80 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21DL_000A80" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21DL_000A80[] = djyasinzou_room_21DL_000A80; -#else -static const char jyasinzou_room_21DL_000A80[] __attribute__((aligned (2))) = djyasinzou_room_21DL_000A80; -#endif - -#define djyasinzou_room_21Tex_003260 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_003260" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21Tex_003260[] = djyasinzou_room_21Tex_003260; -#else -static const char jyasinzou_room_21Tex_003260[] __attribute__((aligned (2))) = djyasinzou_room_21Tex_003260; -#endif - -#define djyasinzou_room_21Tex_003660 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_003660" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21Tex_003660[] = djyasinzou_room_21Tex_003660; -#else -static const char jyasinzou_room_21Tex_003660[] __attribute__((aligned (2))) = djyasinzou_room_21Tex_003660; -#endif - -#define djyasinzou_room_21Tex_002660 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_002660" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21Tex_002660[] = djyasinzou_room_21Tex_002660; -#else -static const char jyasinzou_room_21Tex_002660[] __attribute__((aligned (2))) = djyasinzou_room_21Tex_002660; -#endif - -#define djyasinzou_room_21Tex_003E60 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_003E60" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21Tex_003E60[] = djyasinzou_room_21Tex_003E60; -#else -static const char jyasinzou_room_21Tex_003E60[] __attribute__((aligned (2))) = djyasinzou_room_21Tex_003E60; -#endif - -#define djyasinzou_room_21DL_0012A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21DL_0012A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21DL_0012A0[] = djyasinzou_room_21DL_0012A0; -#else -static const char jyasinzou_room_21DL_0012A0[] __attribute__((aligned (2))) = djyasinzou_room_21DL_0012A0; -#endif - -#define djyasinzou_room_21Tex_001660 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_001660" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21Tex_001660[] = djyasinzou_room_21Tex_001660; -#else -static const char jyasinzou_room_21Tex_001660[] __attribute__((aligned (2))) = djyasinzou_room_21Tex_001660; -#endif - -#define djyasinzou_room_21Tex_002E60 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_002E60" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21Tex_002E60[] = djyasinzou_room_21Tex_002E60; -#else -static const char jyasinzou_room_21Tex_002E60[] __attribute__((aligned (2))) = djyasinzou_room_21Tex_002E60; -#endif - -#define djyasinzou_room_21DL_001520 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21DL_001520" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_21DL_001520[] = djyasinzou_room_21DL_001520; -#else -static const char jyasinzou_room_21DL_001520[] __attribute__((aligned (2))) = djyasinzou_room_21DL_001520; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_21DL_000A80 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21DL_000A80" +static const ALIGN_ASSET(2) char jyasinzou_room_21DL_000A80[] = djyasinzou_room_21DL_000A80; + +#define djyasinzou_room_21Tex_003260 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_003260" +static const ALIGN_ASSET(2) char jyasinzou_room_21Tex_003260[] = djyasinzou_room_21Tex_003260; + +#define djyasinzou_room_21Tex_003660 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_003660" +static const ALIGN_ASSET(2) char jyasinzou_room_21Tex_003660[] = djyasinzou_room_21Tex_003660; + +#define djyasinzou_room_21Tex_002660 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_002660" +static const ALIGN_ASSET(2) char jyasinzou_room_21Tex_002660[] = djyasinzou_room_21Tex_002660; + +#define djyasinzou_room_21Tex_003E60 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_003E60" +static const ALIGN_ASSET(2) char jyasinzou_room_21Tex_003E60[] = djyasinzou_room_21Tex_003E60; + +#define djyasinzou_room_21DL_0012A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21DL_0012A0" +static const ALIGN_ASSET(2) char jyasinzou_room_21DL_0012A0[] = djyasinzou_room_21DL_0012A0; + +#define djyasinzou_room_21Tex_001660 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_001660" +static const ALIGN_ASSET(2) char jyasinzou_room_21Tex_001660[] = djyasinzou_room_21Tex_001660; + +#define djyasinzou_room_21Tex_002E60 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21Tex_002E60" +static const ALIGN_ASSET(2) char jyasinzou_room_21Tex_002E60[] = djyasinzou_room_21Tex_002E60; + +#define djyasinzou_room_21DL_001520 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_21DL_001520" +static const ALIGN_ASSET(2) char jyasinzou_room_21DL_001520[] = djyasinzou_room_21DL_001520; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_22.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_22.h index 64abd5f07..9b634ab30 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_22.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_22.h @@ -1,58 +1,27 @@ #pragma once -#define djyasinzou_room_22DL_0005D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22DL_0005D0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_22DL_0005D0[] = djyasinzou_room_22DL_0005D0; -#else -static const char jyasinzou_room_22DL_0005D0[] __attribute__((aligned (2))) = djyasinzou_room_22DL_0005D0; -#endif - -#define djyasinzou_room_22Tex_002868 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22Tex_002868" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_22Tex_002868[] = djyasinzou_room_22Tex_002868; -#else -static const char jyasinzou_room_22Tex_002868[] __attribute__((aligned (2))) = djyasinzou_room_22Tex_002868; -#endif - -#define djyasinzou_room_22Tex_001C68 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22Tex_001C68" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_22Tex_001C68[] = djyasinzou_room_22Tex_001C68; -#else -static const char jyasinzou_room_22Tex_001C68[] __attribute__((aligned (2))) = djyasinzou_room_22Tex_001C68; -#endif - -#define djyasinzou_room_22DL_000B30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22DL_000B30" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_22DL_000B30[] = djyasinzou_room_22DL_000B30; -#else -static const char jyasinzou_room_22DL_000B30[] __attribute__((aligned (2))) = djyasinzou_room_22DL_000B30; -#endif - -#define djyasinzou_room_22Tex_002468 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22Tex_002468" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_22Tex_002468[] = djyasinzou_room_22Tex_002468; -#else -static const char jyasinzou_room_22Tex_002468[] __attribute__((aligned (2))) = djyasinzou_room_22Tex_002468; -#endif - -#define djyasinzou_room_22DL_000E48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22DL_000E48" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_22DL_000E48[] = djyasinzou_room_22DL_000E48; -#else -static const char jyasinzou_room_22DL_000E48[] __attribute__((aligned (2))) = djyasinzou_room_22DL_000E48; -#endif - -#define djyasinzou_room_22Tex_001468 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22Tex_001468" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_22Tex_001468[] = djyasinzou_room_22Tex_001468; -#else -static const char jyasinzou_room_22Tex_001468[] __attribute__((aligned (2))) = djyasinzou_room_22Tex_001468; -#endif - -#define djyasinzou_room_22DL_0012C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22DL_0012C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_22DL_0012C8[] = djyasinzou_room_22DL_0012C8; -#else -static const char jyasinzou_room_22DL_0012C8[] __attribute__((aligned (2))) = djyasinzou_room_22DL_0012C8; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_22DL_0005D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22DL_0005D0" +static const ALIGN_ASSET(2) char jyasinzou_room_22DL_0005D0[] = djyasinzou_room_22DL_0005D0; + +#define djyasinzou_room_22Tex_002868 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22Tex_002868" +static const ALIGN_ASSET(2) char jyasinzou_room_22Tex_002868[] = djyasinzou_room_22Tex_002868; + +#define djyasinzou_room_22Tex_001C68 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22Tex_001C68" +static const ALIGN_ASSET(2) char jyasinzou_room_22Tex_001C68[] = djyasinzou_room_22Tex_001C68; + +#define djyasinzou_room_22DL_000B30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22DL_000B30" +static const ALIGN_ASSET(2) char jyasinzou_room_22DL_000B30[] = djyasinzou_room_22DL_000B30; + +#define djyasinzou_room_22Tex_002468 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22Tex_002468" +static const ALIGN_ASSET(2) char jyasinzou_room_22Tex_002468[] = djyasinzou_room_22Tex_002468; + +#define djyasinzou_room_22DL_000E48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22DL_000E48" +static const ALIGN_ASSET(2) char jyasinzou_room_22DL_000E48[] = djyasinzou_room_22DL_000E48; + +#define djyasinzou_room_22Tex_001468 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22Tex_001468" +static const ALIGN_ASSET(2) char jyasinzou_room_22Tex_001468[] = djyasinzou_room_22Tex_001468; + +#define djyasinzou_room_22DL_0012C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_22DL_0012C8" +static const ALIGN_ASSET(2) char jyasinzou_room_22DL_0012C8[] = djyasinzou_room_22DL_0012C8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_23.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_23.h index b2f7a1f47..d2c58102e 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_23.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_23.h @@ -1,170 +1,75 @@ #pragma once -#define djyasinzou_room_23DL_000B48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_000B48" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_000B48[] = djyasinzou_room_23DL_000B48; -#else -static const char jyasinzou_room_23DL_000B48[] __attribute__((aligned (2))) = djyasinzou_room_23DL_000B48; -#endif - -#define djyasinzou_room_23Tex_006038 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_006038" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_006038[] = djyasinzou_room_23Tex_006038; -#else -static const char jyasinzou_room_23Tex_006038[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_006038; -#endif - -#define djyasinzou_room_23Tex_004438 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_004438" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_004438[] = djyasinzou_room_23Tex_004438; -#else -static const char jyasinzou_room_23Tex_004438[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_004438; -#endif - -#define djyasinzou_room_23Tex_008838 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_008838" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_008838[] = djyasinzou_room_23Tex_008838; -#else -static const char jyasinzou_room_23Tex_008838[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_008838; -#endif - -#define djyasinzou_room_23DL_0010A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_0010A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_0010A0[] = djyasinzou_room_23DL_0010A0; -#else -static const char jyasinzou_room_23DL_0010A0[] __attribute__((aligned (2))) = djyasinzou_room_23DL_0010A0; -#endif - -#define djyasinzou_room_23Tex_006438 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_006438" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_006438[] = djyasinzou_room_23Tex_006438; -#else -static const char jyasinzou_room_23Tex_006438[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_006438; -#endif - -#define djyasinzou_room_23DL_0012E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_0012E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_0012E0[] = djyasinzou_room_23DL_0012E0; -#else -static const char jyasinzou_room_23DL_0012E0[] __attribute__((aligned (2))) = djyasinzou_room_23DL_0012E0; -#endif - -#define djyasinzou_room_23Tex_004C38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_004C38[] = djyasinzou_room_23Tex_004C38; -#else -static const char jyasinzou_room_23Tex_004C38[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_004C38; -#endif - -#define djyasinzou_room_23DL_001550 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_001550[] = djyasinzou_room_23DL_001550; -#else -static const char jyasinzou_room_23DL_001550[] __attribute__((aligned (2))) = djyasinzou_room_23DL_001550; -#endif - -#define djyasinzou_room_23Tex_005838 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_005838" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_005838[] = djyasinzou_room_23Tex_005838; -#else -static const char jyasinzou_room_23Tex_005838[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_005838; -#endif - -#define djyasinzou_room_23DL_001800 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_001800" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_001800[] = djyasinzou_room_23DL_001800; -#else -static const char jyasinzou_room_23DL_001800[] __attribute__((aligned (2))) = djyasinzou_room_23DL_001800; -#endif - -#define djyasinzou_room_23Tex_007C38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_007C38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_007C38[] = djyasinzou_room_23Tex_007C38; -#else -static const char jyasinzou_room_23Tex_007C38[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_007C38; -#endif - -#define djyasinzou_room_23DL_001AE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_001AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_001AE8[] = djyasinzou_room_23DL_001AE8; -#else -static const char jyasinzou_room_23DL_001AE8[] __attribute__((aligned (2))) = djyasinzou_room_23DL_001AE8; -#endif - -#define djyasinzou_room_23DL_001E00 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_001E00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_001E00[] = djyasinzou_room_23DL_001E00; -#else -static const char jyasinzou_room_23DL_001E00[] __attribute__((aligned (2))) = djyasinzou_room_23DL_001E00; -#endif - -#define djyasinzou_room_23Tex_008038 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_008038" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_008038[] = djyasinzou_room_23Tex_008038; -#else -static const char jyasinzou_room_23Tex_008038[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_008038; -#endif - -#define djyasinzou_room_23Tex_007438 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_007438" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_007438[] = djyasinzou_room_23Tex_007438; -#else -static const char jyasinzou_room_23Tex_007438[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_007438; -#endif - -#define djyasinzou_room_23DL_002B10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_002B10" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_002B10[] = djyasinzou_room_23DL_002B10; -#else -static const char jyasinzou_room_23DL_002B10[] __attribute__((aligned (2))) = djyasinzou_room_23DL_002B10; -#endif - -#define djyasinzou_room_23Tex_006C38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_006C38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_006C38[] = djyasinzou_room_23Tex_006C38; -#else -static const char jyasinzou_room_23Tex_006C38[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_006C38; -#endif - -#define djyasinzou_room_23DL_009140 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_009140" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_009140[] = djyasinzou_room_23DL_009140; -#else -static const char jyasinzou_room_23DL_009140[] __attribute__((aligned (2))) = djyasinzou_room_23DL_009140; -#endif - -#define djyasinzou_room_23DL_003898 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_003898" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_003898[] = djyasinzou_room_23DL_003898; -#else -static const char jyasinzou_room_23DL_003898[] __attribute__((aligned (2))) = djyasinzou_room_23DL_003898; -#endif - -#define djyasinzou_room_23DL_0004F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_0004F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_0004F0[] = djyasinzou_room_23DL_0004F0; -#else -static const char jyasinzou_room_23DL_0004F0[] __attribute__((aligned (2))) = djyasinzou_room_23DL_0004F0; -#endif - -#define djyasinzou_room_23DL_003DE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_003DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_003DE0[] = djyasinzou_room_23DL_003DE0; -#else -static const char jyasinzou_room_23DL_003DE0[] __attribute__((aligned (2))) = djyasinzou_room_23DL_003DE0; -#endif - -#define djyasinzou_room_23Tex_005438 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_005438" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23Tex_005438[] = djyasinzou_room_23Tex_005438; -#else -static const char jyasinzou_room_23Tex_005438[] __attribute__((aligned (2))) = djyasinzou_room_23Tex_005438; -#endif - -#define djyasinzou_room_23DL_004258 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_004258" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_23DL_004258[] = djyasinzou_room_23DL_004258; -#else -static const char jyasinzou_room_23DL_004258[] __attribute__((aligned (2))) = djyasinzou_room_23DL_004258; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_23DL_000B48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_000B48" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_000B48[] = djyasinzou_room_23DL_000B48; + +#define djyasinzou_room_23Tex_006038 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_006038" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_006038[] = djyasinzou_room_23Tex_006038; + +#define djyasinzou_room_23Tex_004438 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_004438" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_004438[] = djyasinzou_room_23Tex_004438; + +#define djyasinzou_room_23Tex_008838 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_008838" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_008838[] = djyasinzou_room_23Tex_008838; + +#define djyasinzou_room_23DL_0010A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_0010A0" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_0010A0[] = djyasinzou_room_23DL_0010A0; + +#define djyasinzou_room_23Tex_006438 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_006438" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_006438[] = djyasinzou_room_23Tex_006438; + +#define djyasinzou_room_23DL_0012E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_0012E0" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_0012E0[] = djyasinzou_room_23DL_0012E0; + +#define djyasinzou_room_23Tex_004C38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_004C38" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_004C38[] = djyasinzou_room_23Tex_004C38; + +#define djyasinzou_room_23DL_001550 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_001550" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_001550[] = djyasinzou_room_23DL_001550; + +#define djyasinzou_room_23Tex_005838 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_005838" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_005838[] = djyasinzou_room_23Tex_005838; + +#define djyasinzou_room_23DL_001800 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_001800" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_001800[] = djyasinzou_room_23DL_001800; + +#define djyasinzou_room_23Tex_007C38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_007C38" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_007C38[] = djyasinzou_room_23Tex_007C38; + +#define djyasinzou_room_23DL_001AE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_001AE8" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_001AE8[] = djyasinzou_room_23DL_001AE8; + +#define djyasinzou_room_23DL_001E00 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_001E00" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_001E00[] = djyasinzou_room_23DL_001E00; + +#define djyasinzou_room_23Tex_008038 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_008038" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_008038[] = djyasinzou_room_23Tex_008038; + +#define djyasinzou_room_23Tex_007438 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_007438" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_007438[] = djyasinzou_room_23Tex_007438; + +#define djyasinzou_room_23DL_002B10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_002B10" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_002B10[] = djyasinzou_room_23DL_002B10; + +#define djyasinzou_room_23Tex_006C38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_006C38" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_006C38[] = djyasinzou_room_23Tex_006C38; + +#define djyasinzou_room_23DL_009140 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_009140" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_009140[] = djyasinzou_room_23DL_009140; + +#define djyasinzou_room_23DL_003898 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_003898" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_003898[] = djyasinzou_room_23DL_003898; + +#define djyasinzou_room_23DL_0004F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_0004F0" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_0004F0[] = djyasinzou_room_23DL_0004F0; + +#define djyasinzou_room_23DL_003DE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_003DE0" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_003DE0[] = djyasinzou_room_23DL_003DE0; + +#define djyasinzou_room_23Tex_005438 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23Tex_005438" +static const ALIGN_ASSET(2) char jyasinzou_room_23Tex_005438[] = djyasinzou_room_23Tex_005438; + +#define djyasinzou_room_23DL_004258 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_23DL_004258" +static const ALIGN_ASSET(2) char jyasinzou_room_23DL_004258[] = djyasinzou_room_23DL_004258; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_24.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_24.h index 7708bbc27..5edb3671d 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_24.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_24.h @@ -1,93 +1,42 @@ #pragma once -#define djyasinzou_room_24DL_000A30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_000A30" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24DL_000A30[] = djyasinzou_room_24DL_000A30; -#else -static const char jyasinzou_room_24DL_000A30[] __attribute__((aligned (2))) = djyasinzou_room_24DL_000A30; -#endif - -#define djyasinzou_room_24Tex_004B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_004B38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24Tex_004B38[] = djyasinzou_room_24Tex_004B38; -#else -static const char jyasinzou_room_24Tex_004B38[] __attribute__((aligned (2))) = djyasinzou_room_24Tex_004B38; -#endif - -#define djyasinzou_room_24Tex_003338 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24Tex_003338[] = djyasinzou_room_24Tex_003338; -#else -static const char jyasinzou_room_24Tex_003338[] __attribute__((aligned (2))) = djyasinzou_room_24Tex_003338; -#endif - -#define djyasinzou_room_24Tex_004338 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_004338" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24Tex_004338[] = djyasinzou_room_24Tex_004338; -#else -static const char jyasinzou_room_24Tex_004338[] __attribute__((aligned (2))) = djyasinzou_room_24Tex_004338; -#endif - -#define djyasinzou_room_24Tex_003F38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_003F38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24Tex_003F38[] = djyasinzou_room_24Tex_003F38; -#else -static const char jyasinzou_room_24Tex_003F38[] __attribute__((aligned (2))) = djyasinzou_room_24Tex_003F38; -#endif - -#define djyasinzou_room_24DL_001390 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_001390" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24DL_001390[] = djyasinzou_room_24DL_001390; -#else -static const char jyasinzou_room_24DL_001390[] __attribute__((aligned (2))) = djyasinzou_room_24DL_001390; -#endif - -#define djyasinzou_room_24Tex_001B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_001B38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24Tex_001B38[] = djyasinzou_room_24Tex_001B38; -#else -static const char jyasinzou_room_24Tex_001B38[] __attribute__((aligned (2))) = djyasinzou_room_24Tex_001B38; -#endif - -#define djyasinzou_room_24Tex_003B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_003B38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24Tex_003B38[] = djyasinzou_room_24Tex_003B38; -#else -static const char jyasinzou_room_24Tex_003B38[] __attribute__((aligned (2))) = djyasinzou_room_24Tex_003B38; -#endif - -#define djyasinzou_room_24DL_001610 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_001610" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24DL_001610[] = djyasinzou_room_24DL_001610; -#else -static const char jyasinzou_room_24DL_001610[] __attribute__((aligned (2))) = djyasinzou_room_24DL_001610; -#endif - -#define djyasinzou_room_24DL_001950 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_001950" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24DL_001950[] = djyasinzou_room_24DL_001950; -#else -static const char jyasinzou_room_24DL_001950[] __attribute__((aligned (2))) = djyasinzou_room_24DL_001950; -#endif - -#define djyasinzou_room_24Tex_002B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_002B38" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24Tex_002B38[] = djyasinzou_room_24Tex_002B38; -#else -static const char jyasinzou_room_24Tex_002B38[] __attribute__((aligned (2))) = djyasinzou_room_24Tex_002B38; -#endif - -#define djyasinzou_room_24DL_005400 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_005400" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24DL_005400[] = djyasinzou_room_24DL_005400; -#else -static const char jyasinzou_room_24DL_005400[] __attribute__((aligned (2))) = djyasinzou_room_24DL_005400; -#endif - -#define djyasinzou_room_24Tex_0054D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_0054D0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_24Tex_0054D0[] = djyasinzou_room_24Tex_0054D0; -#else -static const char jyasinzou_room_24Tex_0054D0[] __attribute__((aligned (2))) = djyasinzou_room_24Tex_0054D0; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_24DL_000A30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_000A30" +static const ALIGN_ASSET(2) char jyasinzou_room_24DL_000A30[] = djyasinzou_room_24DL_000A30; + +#define djyasinzou_room_24Tex_004B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_004B38" +static const ALIGN_ASSET(2) char jyasinzou_room_24Tex_004B38[] = djyasinzou_room_24Tex_004B38; + +#define djyasinzou_room_24Tex_003338 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_003338" +static const ALIGN_ASSET(2) char jyasinzou_room_24Tex_003338[] = djyasinzou_room_24Tex_003338; + +#define djyasinzou_room_24Tex_004338 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_004338" +static const ALIGN_ASSET(2) char jyasinzou_room_24Tex_004338[] = djyasinzou_room_24Tex_004338; + +#define djyasinzou_room_24Tex_003F38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_003F38" +static const ALIGN_ASSET(2) char jyasinzou_room_24Tex_003F38[] = djyasinzou_room_24Tex_003F38; + +#define djyasinzou_room_24DL_001390 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_001390" +static const ALIGN_ASSET(2) char jyasinzou_room_24DL_001390[] = djyasinzou_room_24DL_001390; + +#define djyasinzou_room_24Tex_001B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_001B38" +static const ALIGN_ASSET(2) char jyasinzou_room_24Tex_001B38[] = djyasinzou_room_24Tex_001B38; + +#define djyasinzou_room_24Tex_003B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_003B38" +static const ALIGN_ASSET(2) char jyasinzou_room_24Tex_003B38[] = djyasinzou_room_24Tex_003B38; + +#define djyasinzou_room_24DL_001610 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_001610" +static const ALIGN_ASSET(2) char jyasinzou_room_24DL_001610[] = djyasinzou_room_24DL_001610; + +#define djyasinzou_room_24DL_001950 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_001950" +static const ALIGN_ASSET(2) char jyasinzou_room_24DL_001950[] = djyasinzou_room_24DL_001950; + +#define djyasinzou_room_24Tex_002B38 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_002B38" +static const ALIGN_ASSET(2) char jyasinzou_room_24Tex_002B38[] = djyasinzou_room_24Tex_002B38; + +#define djyasinzou_room_24DL_005400 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24DL_005400" +static const ALIGN_ASSET(2) char jyasinzou_room_24DL_005400[] = djyasinzou_room_24DL_005400; + +#define djyasinzou_room_24Tex_0054D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_24Tex_0054D0" +static const ALIGN_ASSET(2) char jyasinzou_room_24Tex_0054D0[] = djyasinzou_room_24Tex_0054D0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_25.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_25.h index 87fec60e9..2c755eeb8 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_25.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_25.h @@ -1,422 +1,183 @@ #pragma once -#define djyasinzou_room_25DL_000620 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_000620" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_000620[] = djyasinzou_room_25DL_000620; -#else -static const char jyasinzou_room_25DL_000620[] __attribute__((aligned (2))) = djyasinzou_room_25DL_000620; -#endif - -#define djyasinzou_room_25Tex_015398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_015398" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_015398[] = djyasinzou_room_25Tex_015398; -#else -static const char jyasinzou_room_25Tex_015398[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_015398; -#endif - -#define djyasinzou_room_25DL_000F10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_000F10" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_000F10[] = djyasinzou_room_25DL_000F10; -#else -static const char jyasinzou_room_25DL_000F10[] __attribute__((aligned (2))) = djyasinzou_room_25DL_000F10; -#endif - -#define djyasinzou_room_25Tex_011398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_011398" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_011398[] = djyasinzou_room_25Tex_011398; -#else -static const char jyasinzou_room_25Tex_011398[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_011398; -#endif - -#define djyasinzou_room_25Tex_00CE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00CE98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00CE98[] = djyasinzou_room_25Tex_00CE98; -#else -static const char jyasinzou_room_25Tex_00CE98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00CE98; -#endif - -#define djyasinzou_room_25Tex_00E698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00E698" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00E698[] = djyasinzou_room_25Tex_00E698; -#else -static const char jyasinzou_room_25Tex_00E698[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00E698; -#endif - -#define djyasinzou_room_25Tex_014798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_014798" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_014798[] = djyasinzou_room_25Tex_014798; -#else -static const char jyasinzou_room_25Tex_014798[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_014798; -#endif - -#define djyasinzou_room_25DL_0019A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0019A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_0019A0[] = djyasinzou_room_25DL_0019A0; -#else -static const char jyasinzou_room_25DL_0019A0[] __attribute__((aligned (2))) = djyasinzou_room_25DL_0019A0; -#endif - -#define djyasinzou_room_25DL_001E00 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_001E00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_001E00[] = djyasinzou_room_25DL_001E00; -#else -static const char jyasinzou_room_25DL_001E00[] __attribute__((aligned (2))) = djyasinzou_room_25DL_001E00; -#endif - -#define djyasinzou_room_25Tex_013398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_013398" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_013398[] = djyasinzou_room_25Tex_013398; -#else -static const char jyasinzou_room_25Tex_013398[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_013398; -#endif - -#define djyasinzou_room_25Tex_011F98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_011F98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_011F98[] = djyasinzou_room_25Tex_011F98; -#else -static const char jyasinzou_room_25Tex_011F98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_011F98; -#endif - -#define djyasinzou_room_25DL_002418 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002418" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_002418[] = djyasinzou_room_25DL_002418; -#else -static const char jyasinzou_room_25DL_002418[] __attribute__((aligned (2))) = djyasinzou_room_25DL_002418; -#endif - -#define djyasinzou_room_25Tex_011798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_011798" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_011798[] = djyasinzou_room_25Tex_011798; -#else -static const char jyasinzou_room_25Tex_011798[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_011798; -#endif - -#define djyasinzou_room_25DL_002610 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002610" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_002610[] = djyasinzou_room_25DL_002610; -#else -static const char jyasinzou_room_25DL_002610[] __attribute__((aligned (2))) = djyasinzou_room_25DL_002610; -#endif - -#define djyasinzou_room_25DL_002808 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002808" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_002808[] = djyasinzou_room_25DL_002808; -#else -static const char jyasinzou_room_25DL_002808[] __attribute__((aligned (2))) = djyasinzou_room_25DL_002808; -#endif - -#define djyasinzou_room_25DL_002A00 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002A00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_002A00[] = djyasinzou_room_25DL_002A00; -#else -static const char jyasinzou_room_25DL_002A00[] __attribute__((aligned (2))) = djyasinzou_room_25DL_002A00; -#endif - -#define djyasinzou_room_25DL_002C78 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002C78" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_002C78[] = djyasinzou_room_25DL_002C78; -#else -static const char jyasinzou_room_25DL_002C78[] __attribute__((aligned (2))) = djyasinzou_room_25DL_002C78; -#endif - -#define djyasinzou_room_25Tex_00BA98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00BA98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00BA98[] = djyasinzou_room_25Tex_00BA98; -#else -static const char jyasinzou_room_25Tex_00BA98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00BA98; -#endif - -#define djyasinzou_room_25DL_002ED8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_002ED8[] = djyasinzou_room_25DL_002ED8; -#else -static const char jyasinzou_room_25DL_002ED8[] __attribute__((aligned (2))) = djyasinzou_room_25DL_002ED8; -#endif - -#define djyasinzou_room_25Tex_014398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_014398" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_014398[] = djyasinzou_room_25Tex_014398; -#else -static const char jyasinzou_room_25Tex_014398[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_014398; -#endif - -#define djyasinzou_room_25DL_003298 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_003298" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_003298[] = djyasinzou_room_25DL_003298; -#else -static const char jyasinzou_room_25DL_003298[] __attribute__((aligned (2))) = djyasinzou_room_25DL_003298; -#endif - -#define djyasinzou_room_25Tex_00DE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00DE98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00DE98[] = djyasinzou_room_25Tex_00DE98; -#else -static const char jyasinzou_room_25Tex_00DE98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00DE98; -#endif - -#define djyasinzou_room_25DL_0034D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0034D0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_0034D0[] = djyasinzou_room_25DL_0034D0; -#else -static const char jyasinzou_room_25DL_0034D0[] __attribute__((aligned (2))) = djyasinzou_room_25DL_0034D0; -#endif - -#define djyasinzou_room_25DL_0038F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0038F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_0038F0[] = djyasinzou_room_25DL_0038F0; -#else -static const char jyasinzou_room_25DL_0038F0[] __attribute__((aligned (2))) = djyasinzou_room_25DL_0038F0; -#endif - -#define djyasinzou_room_25DL_0041F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0041F8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_0041F8[] = djyasinzou_room_25DL_0041F8; -#else -static const char jyasinzou_room_25DL_0041F8[] __attribute__((aligned (2))) = djyasinzou_room_25DL_0041F8; -#endif - -#define djyasinzou_room_25Tex_012B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_012B98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_012B98[] = djyasinzou_room_25Tex_012B98; -#else -static const char jyasinzou_room_25Tex_012B98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_012B98; -#endif - -#define djyasinzou_room_25Tex_012798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_012798" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_012798[] = djyasinzou_room_25Tex_012798; -#else -static const char jyasinzou_room_25Tex_012798[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_012798; -#endif - -#define djyasinzou_room_25Tex_013B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_013B98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_013B98[] = djyasinzou_room_25Tex_013B98; -#else -static const char jyasinzou_room_25Tex_013B98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_013B98; -#endif - -#define djyasinzou_room_25DL_004B60 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_004B60" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_004B60[] = djyasinzou_room_25DL_004B60; -#else -static const char jyasinzou_room_25DL_004B60[] __attribute__((aligned (2))) = djyasinzou_room_25DL_004B60; -#endif - -#define djyasinzou_room_25DL_004DC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_004DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_004DC0[] = djyasinzou_room_25DL_004DC0; -#else -static const char jyasinzou_room_25DL_004DC0[] __attribute__((aligned (2))) = djyasinzou_room_25DL_004DC0; -#endif - -#define djyasinzou_room_25DL_005050 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_005050" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_005050[] = djyasinzou_room_25DL_005050; -#else -static const char jyasinzou_room_25DL_005050[] __attribute__((aligned (2))) = djyasinzou_room_25DL_005050; -#endif - -#define djyasinzou_room_25DL_005340 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_005340" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_005340[] = djyasinzou_room_25DL_005340; -#else -static const char jyasinzou_room_25DL_005340[] __attribute__((aligned (2))) = djyasinzou_room_25DL_005340; -#endif - -#define djyasinzou_room_25Tex_00DA98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00DA98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00DA98[] = djyasinzou_room_25Tex_00DA98; -#else -static const char jyasinzou_room_25Tex_00DA98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00DA98; -#endif - -#define djyasinzou_room_25TLUT_00B8A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25TLUT_00B8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25TLUT_00B8A0[] = djyasinzou_room_25TLUT_00B8A0; -#else -static const char jyasinzou_room_25TLUT_00B8A0[] __attribute__((aligned (2))) = djyasinzou_room_25TLUT_00B8A0; -#endif - -#define djyasinzou_room_25DL_005670 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_005670" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_005670[] = djyasinzou_room_25DL_005670; -#else -static const char jyasinzou_room_25DL_005670[] __attribute__((aligned (2))) = djyasinzou_room_25DL_005670; -#endif - -#define djyasinzou_room_25Tex_010398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_010398" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_010398[] = djyasinzou_room_25Tex_010398; -#else -static const char jyasinzou_room_25Tex_010398[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_010398; -#endif - -#define djyasinzou_room_25DL_0059D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0059D0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_0059D0[] = djyasinzou_room_25DL_0059D0; -#else -static const char jyasinzou_room_25DL_0059D0[] __attribute__((aligned (2))) = djyasinzou_room_25DL_0059D0; -#endif - -#define djyasinzou_room_25DL_005E28 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_005E28" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_005E28[] = djyasinzou_room_25DL_005E28; -#else -static const char jyasinzou_room_25DL_005E28[] __attribute__((aligned (2))) = djyasinzou_room_25DL_005E28; -#endif - -#define djyasinzou_room_25Tex_00F698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00F698" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00F698[] = djyasinzou_room_25Tex_00F698; -#else -static const char jyasinzou_room_25Tex_00F698[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00F698; -#endif - -#define djyasinzou_room_25DL_006400 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_006400" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_006400[] = djyasinzou_room_25DL_006400; -#else -static const char jyasinzou_room_25DL_006400[] __attribute__((aligned (2))) = djyasinzou_room_25DL_006400; -#endif - -#define djyasinzou_room_25DL_006E18 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_006E18" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_006E18[] = djyasinzou_room_25DL_006E18; -#else -static const char jyasinzou_room_25DL_006E18[] __attribute__((aligned (2))) = djyasinzou_room_25DL_006E18; -#endif - -#define djyasinzou_room_25Tex_00F298 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00F298" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00F298[] = djyasinzou_room_25Tex_00F298; -#else -static const char jyasinzou_room_25Tex_00F298[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00F298; -#endif - -#define djyasinzou_room_25Tex_010798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_010798" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_010798[] = djyasinzou_room_25Tex_010798; -#else -static const char jyasinzou_room_25Tex_010798[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_010798; -#endif - -#define djyasinzou_room_25DL_0076A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0076A8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_0076A8[] = djyasinzou_room_25DL_0076A8; -#else -static const char jyasinzou_room_25DL_0076A8[] __attribute__((aligned (2))) = djyasinzou_room_25DL_0076A8; -#endif - -#define djyasinzou_room_25Tex_010B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_010B98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_010B98[] = djyasinzou_room_25Tex_010B98; -#else -static const char jyasinzou_room_25Tex_010B98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_010B98; -#endif - -#define djyasinzou_room_25DL_007958 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_007958" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_007958[] = djyasinzou_room_25DL_007958; -#else -static const char jyasinzou_room_25DL_007958[] __attribute__((aligned (2))) = djyasinzou_room_25DL_007958; -#endif - -#define djyasinzou_room_25Tex_00FE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00FE98[] = djyasinzou_room_25Tex_00FE98; -#else -static const char jyasinzou_room_25Tex_00FE98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00FE98; -#endif - -#define djyasinzou_room_25DL_007DF0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_007DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_007DF0[] = djyasinzou_room_25DL_007DF0; -#else -static const char jyasinzou_room_25DL_007DF0[] __attribute__((aligned (2))) = djyasinzou_room_25DL_007DF0; -#endif - -#define djyasinzou_room_25DL_0083F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0083F8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_0083F8[] = djyasinzou_room_25DL_0083F8; -#else -static const char jyasinzou_room_25DL_0083F8[] __attribute__((aligned (2))) = djyasinzou_room_25DL_0083F8; -#endif - -#define djyasinzou_room_25Tex_00FF98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00FF98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00FF98[] = djyasinzou_room_25Tex_00FF98; -#else -static const char jyasinzou_room_25Tex_00FF98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00FF98; -#endif - -#define djyasinzou_room_25Tex_010F98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_010F98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_010F98[] = djyasinzou_room_25Tex_010F98; -#else -static const char jyasinzou_room_25Tex_010F98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_010F98; -#endif - -#define djyasinzou_room_25DL_008C30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_008C30" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_008C30[] = djyasinzou_room_25DL_008C30; -#else -static const char jyasinzou_room_25DL_008C30[] __attribute__((aligned (2))) = djyasinzou_room_25DL_008C30; -#endif - -#define djyasinzou_room_25DL_009010 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_009010" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_009010[] = djyasinzou_room_25DL_009010; -#else -static const char jyasinzou_room_25DL_009010[] __attribute__((aligned (2))) = djyasinzou_room_25DL_009010; -#endif - -#define djyasinzou_room_25Tex_00EE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00EE98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00EE98[] = djyasinzou_room_25Tex_00EE98; -#else -static const char jyasinzou_room_25Tex_00EE98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00EE98; -#endif - -#define djyasinzou_room_25DL_009248 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_009248" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_009248[] = djyasinzou_room_25DL_009248; -#else -static const char jyasinzou_room_25DL_009248[] __attribute__((aligned (2))) = djyasinzou_room_25DL_009248; -#endif - -#define djyasinzou_room_25DL_00A0E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_00A0E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_00A0E0[] = djyasinzou_room_25DL_00A0E0; -#else -static const char jyasinzou_room_25DL_00A0E0[] __attribute__((aligned (2))) = djyasinzou_room_25DL_00A0E0; -#endif - -#define djyasinzou_room_25Tex_00D698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00D698" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00D698[] = djyasinzou_room_25Tex_00D698; -#else -static const char jyasinzou_room_25Tex_00D698[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00D698; -#endif - -#define djyasinzou_room_25Tex_014F98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_014F98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_014F98[] = djyasinzou_room_25Tex_014F98; -#else -static const char jyasinzou_room_25Tex_014F98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_014F98; -#endif - -#define djyasinzou_room_25DL_00B540 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_00B540" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25DL_00B540[] = djyasinzou_room_25DL_00B540; -#else -static const char jyasinzou_room_25DL_00B540[] __attribute__((aligned (2))) = djyasinzou_room_25DL_00B540; -#endif - -#define djyasinzou_room_25Tex_00BE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00BE98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_25Tex_00BE98[] = djyasinzou_room_25Tex_00BE98; -#else -static const char jyasinzou_room_25Tex_00BE98[] __attribute__((aligned (2))) = djyasinzou_room_25Tex_00BE98; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_25DL_000620 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_000620" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_000620[] = djyasinzou_room_25DL_000620; + +#define djyasinzou_room_25Tex_015398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_015398" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_015398[] = djyasinzou_room_25Tex_015398; + +#define djyasinzou_room_25DL_000F10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_000F10" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_000F10[] = djyasinzou_room_25DL_000F10; + +#define djyasinzou_room_25Tex_011398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_011398" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_011398[] = djyasinzou_room_25Tex_011398; + +#define djyasinzou_room_25Tex_00CE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00CE98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00CE98[] = djyasinzou_room_25Tex_00CE98; + +#define djyasinzou_room_25Tex_00E698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00E698" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00E698[] = djyasinzou_room_25Tex_00E698; + +#define djyasinzou_room_25Tex_014798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_014798" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_014798[] = djyasinzou_room_25Tex_014798; + +#define djyasinzou_room_25DL_0019A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0019A0" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_0019A0[] = djyasinzou_room_25DL_0019A0; + +#define djyasinzou_room_25DL_001E00 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_001E00" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_001E00[] = djyasinzou_room_25DL_001E00; + +#define djyasinzou_room_25Tex_013398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_013398" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_013398[] = djyasinzou_room_25Tex_013398; + +#define djyasinzou_room_25Tex_011F98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_011F98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_011F98[] = djyasinzou_room_25Tex_011F98; + +#define djyasinzou_room_25DL_002418 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002418" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_002418[] = djyasinzou_room_25DL_002418; + +#define djyasinzou_room_25Tex_011798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_011798" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_011798[] = djyasinzou_room_25Tex_011798; + +#define djyasinzou_room_25DL_002610 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002610" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_002610[] = djyasinzou_room_25DL_002610; + +#define djyasinzou_room_25DL_002808 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002808" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_002808[] = djyasinzou_room_25DL_002808; + +#define djyasinzou_room_25DL_002A00 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002A00" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_002A00[] = djyasinzou_room_25DL_002A00; + +#define djyasinzou_room_25DL_002C78 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002C78" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_002C78[] = djyasinzou_room_25DL_002C78; + +#define djyasinzou_room_25Tex_00BA98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00BA98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00BA98[] = djyasinzou_room_25Tex_00BA98; + +#define djyasinzou_room_25DL_002ED8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_002ED8" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_002ED8[] = djyasinzou_room_25DL_002ED8; + +#define djyasinzou_room_25Tex_014398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_014398" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_014398[] = djyasinzou_room_25Tex_014398; + +#define djyasinzou_room_25DL_003298 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_003298" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_003298[] = djyasinzou_room_25DL_003298; + +#define djyasinzou_room_25Tex_00DE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00DE98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00DE98[] = djyasinzou_room_25Tex_00DE98; + +#define djyasinzou_room_25DL_0034D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0034D0" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_0034D0[] = djyasinzou_room_25DL_0034D0; + +#define djyasinzou_room_25DL_0038F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0038F0" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_0038F0[] = djyasinzou_room_25DL_0038F0; + +#define djyasinzou_room_25DL_0041F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0041F8" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_0041F8[] = djyasinzou_room_25DL_0041F8; + +#define djyasinzou_room_25Tex_012B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_012B98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_012B98[] = djyasinzou_room_25Tex_012B98; + +#define djyasinzou_room_25Tex_012798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_012798" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_012798[] = djyasinzou_room_25Tex_012798; + +#define djyasinzou_room_25Tex_013B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_013B98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_013B98[] = djyasinzou_room_25Tex_013B98; + +#define djyasinzou_room_25DL_004B60 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_004B60" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_004B60[] = djyasinzou_room_25DL_004B60; + +#define djyasinzou_room_25DL_004DC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_004DC0" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_004DC0[] = djyasinzou_room_25DL_004DC0; + +#define djyasinzou_room_25DL_005050 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_005050" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_005050[] = djyasinzou_room_25DL_005050; + +#define djyasinzou_room_25DL_005340 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_005340" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_005340[] = djyasinzou_room_25DL_005340; + +#define djyasinzou_room_25Tex_00DA98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00DA98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00DA98[] = djyasinzou_room_25Tex_00DA98; + +#define djyasinzou_room_25TLUT_00B8A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25TLUT_00B8A0" +static const ALIGN_ASSET(2) char jyasinzou_room_25TLUT_00B8A0[] = djyasinzou_room_25TLUT_00B8A0; + +#define djyasinzou_room_25DL_005670 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_005670" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_005670[] = djyasinzou_room_25DL_005670; + +#define djyasinzou_room_25Tex_010398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_010398" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_010398[] = djyasinzou_room_25Tex_010398; + +#define djyasinzou_room_25DL_0059D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0059D0" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_0059D0[] = djyasinzou_room_25DL_0059D0; + +#define djyasinzou_room_25DL_005E28 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_005E28" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_005E28[] = djyasinzou_room_25DL_005E28; + +#define djyasinzou_room_25Tex_00F698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00F698" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00F698[] = djyasinzou_room_25Tex_00F698; + +#define djyasinzou_room_25DL_006400 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_006400" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_006400[] = djyasinzou_room_25DL_006400; + +#define djyasinzou_room_25DL_006E18 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_006E18" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_006E18[] = djyasinzou_room_25DL_006E18; + +#define djyasinzou_room_25Tex_00F298 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00F298" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00F298[] = djyasinzou_room_25Tex_00F298; + +#define djyasinzou_room_25Tex_010798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_010798" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_010798[] = djyasinzou_room_25Tex_010798; + +#define djyasinzou_room_25DL_0076A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0076A8" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_0076A8[] = djyasinzou_room_25DL_0076A8; + +#define djyasinzou_room_25Tex_010B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_010B98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_010B98[] = djyasinzou_room_25Tex_010B98; + +#define djyasinzou_room_25DL_007958 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_007958" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_007958[] = djyasinzou_room_25DL_007958; + +#define djyasinzou_room_25Tex_00FE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00FE98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00FE98[] = djyasinzou_room_25Tex_00FE98; + +#define djyasinzou_room_25DL_007DF0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_007DF0" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_007DF0[] = djyasinzou_room_25DL_007DF0; + +#define djyasinzou_room_25DL_0083F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_0083F8" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_0083F8[] = djyasinzou_room_25DL_0083F8; + +#define djyasinzou_room_25Tex_00FF98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00FF98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00FF98[] = djyasinzou_room_25Tex_00FF98; + +#define djyasinzou_room_25Tex_010F98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_010F98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_010F98[] = djyasinzou_room_25Tex_010F98; + +#define djyasinzou_room_25DL_008C30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_008C30" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_008C30[] = djyasinzou_room_25DL_008C30; + +#define djyasinzou_room_25DL_009010 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_009010" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_009010[] = djyasinzou_room_25DL_009010; + +#define djyasinzou_room_25Tex_00EE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00EE98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00EE98[] = djyasinzou_room_25Tex_00EE98; + +#define djyasinzou_room_25DL_009248 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_009248" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_009248[] = djyasinzou_room_25DL_009248; + +#define djyasinzou_room_25DL_00A0E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_00A0E0" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_00A0E0[] = djyasinzou_room_25DL_00A0E0; + +#define djyasinzou_room_25Tex_00D698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00D698" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00D698[] = djyasinzou_room_25Tex_00D698; + +#define djyasinzou_room_25Tex_014F98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_014F98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_014F98[] = djyasinzou_room_25Tex_014F98; + +#define djyasinzou_room_25DL_00B540 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25DL_00B540" +static const ALIGN_ASSET(2) char jyasinzou_room_25DL_00B540[] = djyasinzou_room_25DL_00B540; + +#define djyasinzou_room_25Tex_00BE98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_25Tex_00BE98" +static const ALIGN_ASSET(2) char jyasinzou_room_25Tex_00BE98[] = djyasinzou_room_25Tex_00BE98; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_26.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_26.h index 383349251..f1c1478c3 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_26.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_26.h @@ -1,233 +1,102 @@ #pragma once -#define djyasinzou_room_26DL_005468 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005468" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_005468[] = djyasinzou_room_26DL_005468; -#else -static const char jyasinzou_room_26DL_005468[] __attribute__((aligned (2))) = djyasinzou_room_26DL_005468; -#endif - -#define djyasinzou_room_26Tex_00A8C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00A8C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_00A8C8[] = djyasinzou_room_26Tex_00A8C8; -#else -static const char jyasinzou_room_26Tex_00A8C8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_00A8C8; -#endif - -#define djyasinzou_room_26Tex_008CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_008CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_008CC8[] = djyasinzou_room_26Tex_008CC8; -#else -static const char jyasinzou_room_26Tex_008CC8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_008CC8; -#endif - -#define djyasinzou_room_26DL_001AD0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_001AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_001AD0[] = djyasinzou_room_26DL_001AD0; -#else -static const char jyasinzou_room_26DL_001AD0[] __attribute__((aligned (2))) = djyasinzou_room_26DL_001AD0; -#endif - -#define djyasinzou_room_26DL_002290 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_002290" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_002290[] = djyasinzou_room_26DL_002290; -#else -static const char jyasinzou_room_26DL_002290[] __attribute__((aligned (2))) = djyasinzou_room_26DL_002290; -#endif - -#define djyasinzou_room_26Tex_008AC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_008AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_008AC8[] = djyasinzou_room_26Tex_008AC8; -#else -static const char jyasinzou_room_26Tex_008AC8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_008AC8; -#endif - -#define djyasinzou_room_26DL_0028C0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_0028C0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_0028C0[] = djyasinzou_room_26DL_0028C0; -#else -static const char jyasinzou_room_26DL_0028C0[] __attribute__((aligned (2))) = djyasinzou_room_26DL_0028C0; -#endif - -#define djyasinzou_room_26DL_002E18 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_002E18" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_002E18[] = djyasinzou_room_26DL_002E18; -#else -static const char jyasinzou_room_26DL_002E18[] __attribute__((aligned (2))) = djyasinzou_room_26DL_002E18; -#endif - -#define djyasinzou_room_26DL_005800 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005800" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_005800[] = djyasinzou_room_26DL_005800; -#else -static const char jyasinzou_room_26DL_005800[] __attribute__((aligned (2))) = djyasinzou_room_26DL_005800; -#endif - -#define djyasinzou_room_26DL_000420 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_000420" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_000420[] = djyasinzou_room_26DL_000420; -#else -static const char jyasinzou_room_26DL_000420[] __attribute__((aligned (2))) = djyasinzou_room_26DL_000420; -#endif - -#define djyasinzou_room_26DL_000E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_000E50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_000E50[] = djyasinzou_room_26DL_000E50; -#else -static const char jyasinzou_room_26DL_000E50[] __attribute__((aligned (2))) = djyasinzou_room_26DL_000E50; -#endif - -#define djyasinzou_room_26DL_0016D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_0016D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_0016D8[] = djyasinzou_room_26DL_0016D8; -#else -static const char jyasinzou_room_26DL_0016D8[] __attribute__((aligned (2))) = djyasinzou_room_26DL_0016D8; -#endif - -#define djyasinzou_room_26DL_003168 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_003168" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_003168[] = djyasinzou_room_26DL_003168; -#else -static const char jyasinzou_room_26DL_003168[] __attribute__((aligned (2))) = djyasinzou_room_26DL_003168; -#endif - -#define djyasinzou_room_26DL_0035B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_0035B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_0035B0[] = djyasinzou_room_26DL_0035B0; -#else -static const char jyasinzou_room_26DL_0035B0[] __attribute__((aligned (2))) = djyasinzou_room_26DL_0035B0; -#endif - -#define djyasinzou_room_26DL_0046A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_0046A8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_0046A8[] = djyasinzou_room_26DL_0046A8; -#else -static const char jyasinzou_room_26DL_0046A8[] __attribute__((aligned (2))) = djyasinzou_room_26DL_0046A8; -#endif - -#define djyasinzou_room_26Tex_00A0C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00A0C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_00A0C8[] = djyasinzou_room_26Tex_00A0C8; -#else -static const char jyasinzou_room_26Tex_00A0C8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_00A0C8; -#endif - -#define djyasinzou_room_26Tex_0080C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_0080C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_0080C8[] = djyasinzou_room_26Tex_0080C8; -#else -static const char jyasinzou_room_26Tex_0080C8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_0080C8; -#endif - -#define djyasinzou_room_26Tex_00ACC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00ACC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_00ACC8[] = djyasinzou_room_26Tex_00ACC8; -#else -static const char jyasinzou_room_26Tex_00ACC8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_00ACC8; -#endif - -#define djyasinzou_room_26Tex_0082C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_0082C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_0082C8[] = djyasinzou_room_26Tex_0082C8; -#else -static const char jyasinzou_room_26Tex_0082C8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_0082C8; -#endif - -#define djyasinzou_room_26Tex_00B4C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00B4C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_00B4C8[] = djyasinzou_room_26Tex_00B4C8; -#else -static const char jyasinzou_room_26Tex_00B4C8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_00B4C8; -#endif - -#define djyasinzou_room_26Tex_0094C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_0094C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_0094C8[] = djyasinzou_room_26Tex_0094C8; -#else -static const char jyasinzou_room_26Tex_0094C8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_0094C8; -#endif - -#define djyasinzou_room_26Tex_009CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_009CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_009CC8[] = djyasinzou_room_26Tex_009CC8; -#else -static const char jyasinzou_room_26Tex_009CC8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_009CC8; -#endif - -#define djyasinzou_room_26DL_00C200 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_00C200" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_00C200[] = djyasinzou_room_26DL_00C200; -#else -static const char jyasinzou_room_26DL_00C200[] __attribute__((aligned (2))) = djyasinzou_room_26DL_00C200; -#endif - -#define djyasinzou_room_26Tex_00C2F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00C2F8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_00C2F8[] = djyasinzou_room_26Tex_00C2F8; -#else -static const char jyasinzou_room_26Tex_00C2F8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_00C2F8; -#endif - -#define djyasinzou_room_26DL_005A80 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_005A80[] = djyasinzou_room_26DL_005A80; -#else -static const char jyasinzou_room_26DL_005A80[] __attribute__((aligned (2))) = djyasinzou_room_26DL_005A80; -#endif - -#define djyasinzou_room_26Tex_006CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_006CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_006CC8[] = djyasinzou_room_26Tex_006CC8; -#else -static const char jyasinzou_room_26Tex_006CC8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_006CC8; -#endif - -#define djyasinzou_room_26DL_005D20 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005D20" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_005D20[] = djyasinzou_room_26DL_005D20; -#else -static const char jyasinzou_room_26DL_005D20[] __attribute__((aligned (2))) = djyasinzou_room_26DL_005D20; -#endif - -#define djyasinzou_room_26DL_005FF0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_005FF0[] = djyasinzou_room_26DL_005FF0; -#else -static const char jyasinzou_room_26DL_005FF0[] __attribute__((aligned (2))) = djyasinzou_room_26DL_005FF0; -#endif - -#define djyasinzou_room_26DL_006560 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_006560" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_006560[] = djyasinzou_room_26DL_006560; -#else -static const char jyasinzou_room_26DL_006560[] __attribute__((aligned (2))) = djyasinzou_room_26DL_006560; -#endif - -#define djyasinzou_room_26Tex_0070C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_0070C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26Tex_0070C8[] = djyasinzou_room_26Tex_0070C8; -#else -static const char jyasinzou_room_26Tex_0070C8[] __attribute__((aligned (2))) = djyasinzou_room_26Tex_0070C8; -#endif - -#define djyasinzou_room_26DL_006A98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_006A98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_006A98[] = djyasinzou_room_26DL_006A98; -#else -static const char jyasinzou_room_26DL_006A98[] __attribute__((aligned (2))) = djyasinzou_room_26DL_006A98; -#endif - -#define djyasinzou_room_26DL_003880 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_003880" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_003880[] = djyasinzou_room_26DL_003880; -#else -static const char jyasinzou_room_26DL_003880[] __attribute__((aligned (2))) = djyasinzou_room_26DL_003880; -#endif - -#define djyasinzou_room_26DL_00BF50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_00BF50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_26DL_00BF50[] = djyasinzou_room_26DL_00BF50; -#else -static const char jyasinzou_room_26DL_00BF50[] __attribute__((aligned (2))) = djyasinzou_room_26DL_00BF50; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_26DL_005468 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005468" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_005468[] = djyasinzou_room_26DL_005468; + +#define djyasinzou_room_26Tex_00A8C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00A8C8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_00A8C8[] = djyasinzou_room_26Tex_00A8C8; + +#define djyasinzou_room_26Tex_008CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_008CC8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_008CC8[] = djyasinzou_room_26Tex_008CC8; + +#define djyasinzou_room_26DL_001AD0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_001AD0" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_001AD0[] = djyasinzou_room_26DL_001AD0; + +#define djyasinzou_room_26DL_002290 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_002290" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_002290[] = djyasinzou_room_26DL_002290; + +#define djyasinzou_room_26Tex_008AC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_008AC8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_008AC8[] = djyasinzou_room_26Tex_008AC8; + +#define djyasinzou_room_26DL_0028C0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_0028C0" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_0028C0[] = djyasinzou_room_26DL_0028C0; + +#define djyasinzou_room_26DL_002E18 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_002E18" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_002E18[] = djyasinzou_room_26DL_002E18; + +#define djyasinzou_room_26DL_005800 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005800" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_005800[] = djyasinzou_room_26DL_005800; + +#define djyasinzou_room_26DL_000420 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_000420" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_000420[] = djyasinzou_room_26DL_000420; + +#define djyasinzou_room_26DL_000E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_000E50" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_000E50[] = djyasinzou_room_26DL_000E50; + +#define djyasinzou_room_26DL_0016D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_0016D8" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_0016D8[] = djyasinzou_room_26DL_0016D8; + +#define djyasinzou_room_26DL_003168 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_003168" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_003168[] = djyasinzou_room_26DL_003168; + +#define djyasinzou_room_26DL_0035B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_0035B0" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_0035B0[] = djyasinzou_room_26DL_0035B0; + +#define djyasinzou_room_26DL_0046A8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_0046A8" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_0046A8[] = djyasinzou_room_26DL_0046A8; + +#define djyasinzou_room_26Tex_00A0C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00A0C8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_00A0C8[] = djyasinzou_room_26Tex_00A0C8; + +#define djyasinzou_room_26Tex_0080C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_0080C8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_0080C8[] = djyasinzou_room_26Tex_0080C8; + +#define djyasinzou_room_26Tex_00ACC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00ACC8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_00ACC8[] = djyasinzou_room_26Tex_00ACC8; + +#define djyasinzou_room_26Tex_0082C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_0082C8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_0082C8[] = djyasinzou_room_26Tex_0082C8; + +#define djyasinzou_room_26Tex_00B4C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00B4C8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_00B4C8[] = djyasinzou_room_26Tex_00B4C8; + +#define djyasinzou_room_26Tex_0094C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_0094C8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_0094C8[] = djyasinzou_room_26Tex_0094C8; + +#define djyasinzou_room_26Tex_009CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_009CC8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_009CC8[] = djyasinzou_room_26Tex_009CC8; + +#define djyasinzou_room_26DL_00C200 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_00C200" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_00C200[] = djyasinzou_room_26DL_00C200; + +#define djyasinzou_room_26Tex_00C2F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_00C2F8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_00C2F8[] = djyasinzou_room_26Tex_00C2F8; + +#define djyasinzou_room_26DL_005A80 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005A80" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_005A80[] = djyasinzou_room_26DL_005A80; + +#define djyasinzou_room_26Tex_006CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_006CC8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_006CC8[] = djyasinzou_room_26Tex_006CC8; + +#define djyasinzou_room_26DL_005D20 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005D20" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_005D20[] = djyasinzou_room_26DL_005D20; + +#define djyasinzou_room_26DL_005FF0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_005FF0" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_005FF0[] = djyasinzou_room_26DL_005FF0; + +#define djyasinzou_room_26DL_006560 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_006560" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_006560[] = djyasinzou_room_26DL_006560; + +#define djyasinzou_room_26Tex_0070C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26Tex_0070C8" +static const ALIGN_ASSET(2) char jyasinzou_room_26Tex_0070C8[] = djyasinzou_room_26Tex_0070C8; + +#define djyasinzou_room_26DL_006A98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_006A98" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_006A98[] = djyasinzou_room_26DL_006A98; + +#define djyasinzou_room_26DL_003880 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_003880" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_003880[] = djyasinzou_room_26DL_003880; + +#define djyasinzou_room_26DL_00BF50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_26DL_00BF50" +static const ALIGN_ASSET(2) char jyasinzou_room_26DL_00BF50[] = djyasinzou_room_26DL_00BF50; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_27.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_27.h index de849b726..571376687 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_27.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_27.h @@ -1,86 +1,39 @@ #pragma once -#define djyasinzou_room_27DL_000598 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000598" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_000598[] = djyasinzou_room_27DL_000598; -#else -static const char jyasinzou_room_27DL_000598[] __attribute__((aligned (2))) = djyasinzou_room_27DL_000598; -#endif - -#define djyasinzou_room_27DL_000AD8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_000AD8[] = djyasinzou_room_27DL_000AD8; -#else -static const char jyasinzou_room_27DL_000AD8[] __attribute__((aligned (2))) = djyasinzou_room_27DL_000AD8; -#endif - -#define djyasinzou_room_27DL_000360 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000360" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_000360[] = djyasinzou_room_27DL_000360; -#else -static const char jyasinzou_room_27DL_000360[] __attribute__((aligned (2))) = djyasinzou_room_27DL_000360; -#endif - -#define djyasinzou_room_27DL_000DC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_000DC0[] = djyasinzou_room_27DL_000DC0; -#else -static const char jyasinzou_room_27DL_000DC0[] __attribute__((aligned (2))) = djyasinzou_room_27DL_000DC0; -#endif - -#define djyasinzou_room_27DL_000F78 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000F78" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_000F78[] = djyasinzou_room_27DL_000F78; -#else -static const char jyasinzou_room_27DL_000F78[] __attribute__((aligned (2))) = djyasinzou_room_27DL_000F78; -#endif - -#define djyasinzou_room_27DL_001120 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_001120" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_001120[] = djyasinzou_room_27DL_001120; -#else -static const char jyasinzou_room_27DL_001120[] __attribute__((aligned (2))) = djyasinzou_room_27DL_001120; -#endif - -#define djyasinzou_room_27DL_001CB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_001CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_001CB0[] = djyasinzou_room_27DL_001CB0; -#else -static const char jyasinzou_room_27DL_001CB0[] __attribute__((aligned (2))) = djyasinzou_room_27DL_001CB0; -#endif - -#define djyasinzou_room_27Tex_004310 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27Tex_004310" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27Tex_004310[] = djyasinzou_room_27Tex_004310; -#else -static const char jyasinzou_room_27Tex_004310[] __attribute__((aligned (2))) = djyasinzou_room_27Tex_004310; -#endif - -#define djyasinzou_room_27Tex_004F10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27Tex_004F10" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27Tex_004F10[] = djyasinzou_room_27Tex_004F10; -#else -static const char jyasinzou_room_27Tex_004F10[] __attribute__((aligned (2))) = djyasinzou_room_27Tex_004F10; -#endif - -#define djyasinzou_room_27DL_003138 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_003138" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_003138[] = djyasinzou_room_27DL_003138; -#else -static const char jyasinzou_room_27DL_003138[] __attribute__((aligned (2))) = djyasinzou_room_27DL_003138; -#endif - -#define djyasinzou_room_27DL_004150 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_004150" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27DL_004150[] = djyasinzou_room_27DL_004150; -#else -static const char jyasinzou_room_27DL_004150[] __attribute__((aligned (2))) = djyasinzou_room_27DL_004150; -#endif - -#define djyasinzou_room_27Tex_004B10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27Tex_004B10" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_27Tex_004B10[] = djyasinzou_room_27Tex_004B10; -#else -static const char jyasinzou_room_27Tex_004B10[] __attribute__((aligned (2))) = djyasinzou_room_27Tex_004B10; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_27DL_000598 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000598" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_000598[] = djyasinzou_room_27DL_000598; + +#define djyasinzou_room_27DL_000AD8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000AD8" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_000AD8[] = djyasinzou_room_27DL_000AD8; + +#define djyasinzou_room_27DL_000360 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000360" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_000360[] = djyasinzou_room_27DL_000360; + +#define djyasinzou_room_27DL_000DC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000DC0" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_000DC0[] = djyasinzou_room_27DL_000DC0; + +#define djyasinzou_room_27DL_000F78 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_000F78" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_000F78[] = djyasinzou_room_27DL_000F78; + +#define djyasinzou_room_27DL_001120 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_001120" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_001120[] = djyasinzou_room_27DL_001120; + +#define djyasinzou_room_27DL_001CB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_001CB0" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_001CB0[] = djyasinzou_room_27DL_001CB0; + +#define djyasinzou_room_27Tex_004310 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27Tex_004310" +static const ALIGN_ASSET(2) char jyasinzou_room_27Tex_004310[] = djyasinzou_room_27Tex_004310; + +#define djyasinzou_room_27Tex_004F10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27Tex_004F10" +static const ALIGN_ASSET(2) char jyasinzou_room_27Tex_004F10[] = djyasinzou_room_27Tex_004F10; + +#define djyasinzou_room_27DL_003138 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_003138" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_003138[] = djyasinzou_room_27DL_003138; + +#define djyasinzou_room_27DL_004150 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27DL_004150" +static const ALIGN_ASSET(2) char jyasinzou_room_27DL_004150[] = djyasinzou_room_27DL_004150; + +#define djyasinzou_room_27Tex_004B10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_27Tex_004B10" +static const ALIGN_ASSET(2) char jyasinzou_room_27Tex_004B10[] = djyasinzou_room_27Tex_004B10; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_28.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_28.h index 44e4d3c24..4c49bc7bd 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_28.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_28.h @@ -1,121 +1,54 @@ #pragma once -#define djyasinzou_room_28DL_000D00 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_000D00" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28DL_000D00[] = djyasinzou_room_28DL_000D00; -#else -static const char jyasinzou_room_28DL_000D00[] __attribute__((aligned (2))) = djyasinzou_room_28DL_000D00; -#endif - -#define djyasinzou_room_28Tex_007530 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_007530" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_007530[] = djyasinzou_room_28Tex_007530; -#else -static const char jyasinzou_room_28Tex_007530[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_007530; -#endif - -#define djyasinzou_room_28Tex_005130 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_005130" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_005130[] = djyasinzou_room_28Tex_005130; -#else -static const char jyasinzou_room_28Tex_005130[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_005130; -#endif - -#define djyasinzou_room_28Tex_007E30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_007E30" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_007E30[] = djyasinzou_room_28Tex_007E30; -#else -static const char jyasinzou_room_28Tex_007E30[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_007E30; -#endif - -#define djyasinzou_room_28DL_001708 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_001708" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28DL_001708[] = djyasinzou_room_28DL_001708; -#else -static const char jyasinzou_room_28DL_001708[] __attribute__((aligned (2))) = djyasinzou_room_28DL_001708; -#endif - -#define djyasinzou_room_28Tex_008630 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_008630" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_008630[] = djyasinzou_room_28Tex_008630; -#else -static const char jyasinzou_room_28Tex_008630[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_008630; -#endif - -#define djyasinzou_room_28Tex_004130 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_004130" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_004130[] = djyasinzou_room_28Tex_004130; -#else -static const char jyasinzou_room_28Tex_004130[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_004130; -#endif - -#define djyasinzou_room_28Tex_004930 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_004930" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_004930[] = djyasinzou_room_28Tex_004930; -#else -static const char jyasinzou_room_28Tex_004930[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_004930; -#endif - -#define djyasinzou_room_28DL_0028A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_0028A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28DL_0028A0[] = djyasinzou_room_28DL_0028A0; -#else -static const char jyasinzou_room_28DL_0028A0[] __attribute__((aligned (2))) = djyasinzou_room_28DL_0028A0; -#endif - -#define djyasinzou_room_28Tex_007A30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_007A30" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_007A30[] = djyasinzou_room_28Tex_007A30; -#else -static const char jyasinzou_room_28Tex_007A30[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_007A30; -#endif - -#define djyasinzou_room_28Tex_007930 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_007930" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_007930[] = djyasinzou_room_28Tex_007930; -#else -static const char jyasinzou_room_28Tex_007930[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_007930; -#endif - -#define djyasinzou_room_28DL_0032F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_0032F8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28DL_0032F8[] = djyasinzou_room_28DL_0032F8; -#else -static const char jyasinzou_room_28DL_0032F8[] __attribute__((aligned (2))) = djyasinzou_room_28DL_0032F8; -#endif - -#define djyasinzou_room_28DL_0035D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_0035D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28DL_0035D8[] = djyasinzou_room_28DL_0035D8; -#else -static const char jyasinzou_room_28DL_0035D8[] __attribute__((aligned (2))) = djyasinzou_room_28DL_0035D8; -#endif - -#define djyasinzou_room_28Tex_006530 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_006530" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_006530[] = djyasinzou_room_28Tex_006530; -#else -static const char jyasinzou_room_28Tex_006530[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_006530; -#endif - -#define djyasinzou_room_28DL_003E18 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_003E18" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28DL_003E18[] = djyasinzou_room_28DL_003E18; -#else -static const char jyasinzou_room_28DL_003E18[] __attribute__((aligned (2))) = djyasinzou_room_28DL_003E18; -#endif - -#define djyasinzou_room_28Tex_006130 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_006130" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_006130[] = djyasinzou_room_28Tex_006130; -#else -static const char jyasinzou_room_28Tex_006130[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_006130; -#endif - -#define djyasinzou_room_28Tex_005930 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_005930" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_28Tex_005930[] = djyasinzou_room_28Tex_005930; -#else -static const char jyasinzou_room_28Tex_005930[] __attribute__((aligned (2))) = djyasinzou_room_28Tex_005930; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_28DL_000D00 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_000D00" +static const ALIGN_ASSET(2) char jyasinzou_room_28DL_000D00[] = djyasinzou_room_28DL_000D00; + +#define djyasinzou_room_28Tex_007530 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_007530" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_007530[] = djyasinzou_room_28Tex_007530; + +#define djyasinzou_room_28Tex_005130 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_005130" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_005130[] = djyasinzou_room_28Tex_005130; + +#define djyasinzou_room_28Tex_007E30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_007E30" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_007E30[] = djyasinzou_room_28Tex_007E30; + +#define djyasinzou_room_28DL_001708 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_001708" +static const ALIGN_ASSET(2) char jyasinzou_room_28DL_001708[] = djyasinzou_room_28DL_001708; + +#define djyasinzou_room_28Tex_008630 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_008630" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_008630[] = djyasinzou_room_28Tex_008630; + +#define djyasinzou_room_28Tex_004130 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_004130" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_004130[] = djyasinzou_room_28Tex_004130; + +#define djyasinzou_room_28Tex_004930 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_004930" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_004930[] = djyasinzou_room_28Tex_004930; + +#define djyasinzou_room_28DL_0028A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_0028A0" +static const ALIGN_ASSET(2) char jyasinzou_room_28DL_0028A0[] = djyasinzou_room_28DL_0028A0; + +#define djyasinzou_room_28Tex_007A30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_007A30" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_007A30[] = djyasinzou_room_28Tex_007A30; + +#define djyasinzou_room_28Tex_007930 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_007930" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_007930[] = djyasinzou_room_28Tex_007930; + +#define djyasinzou_room_28DL_0032F8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_0032F8" +static const ALIGN_ASSET(2) char jyasinzou_room_28DL_0032F8[] = djyasinzou_room_28DL_0032F8; + +#define djyasinzou_room_28DL_0035D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_0035D8" +static const ALIGN_ASSET(2) char jyasinzou_room_28DL_0035D8[] = djyasinzou_room_28DL_0035D8; + +#define djyasinzou_room_28Tex_006530 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_006530" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_006530[] = djyasinzou_room_28Tex_006530; + +#define djyasinzou_room_28DL_003E18 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28DL_003E18" +static const ALIGN_ASSET(2) char jyasinzou_room_28DL_003E18[] = djyasinzou_room_28DL_003E18; + +#define djyasinzou_room_28Tex_006130 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_006130" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_006130[] = djyasinzou_room_28Tex_006130; + +#define djyasinzou_room_28Tex_005930 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_28Tex_005930" +static const ALIGN_ASSET(2) char jyasinzou_room_28Tex_005930[] = djyasinzou_room_28Tex_005930; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_3.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_3.h index 967a496cc..78dbd6919 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_3.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_3.h @@ -1,58 +1,27 @@ #pragma once -#define djyasinzou_room_3DL_001588 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3DL_001588" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_3DL_001588[] = djyasinzou_room_3DL_001588; -#else -static const char jyasinzou_room_3DL_001588[] __attribute__((aligned (2))) = djyasinzou_room_3DL_001588; -#endif - -#define djyasinzou_room_3Tex_0033C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3Tex_0033C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_3Tex_0033C8[] = djyasinzou_room_3Tex_0033C8; -#else -static const char jyasinzou_room_3Tex_0033C8[] __attribute__((aligned (2))) = djyasinzou_room_3Tex_0033C8; -#endif - -#define djyasinzou_room_3DL_001B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3DL_001B98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_3DL_001B98[] = djyasinzou_room_3DL_001B98; -#else -static const char jyasinzou_room_3DL_001B98[] __attribute__((aligned (2))) = djyasinzou_room_3DL_001B98; -#endif - -#define djyasinzou_room_3Tex_0023C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3Tex_0023C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_3Tex_0023C8[] = djyasinzou_room_3Tex_0023C8; -#else -static const char jyasinzou_room_3Tex_0023C8[] __attribute__((aligned (2))) = djyasinzou_room_3Tex_0023C8; -#endif - -#define djyasinzou_room_3Tex_001FC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3Tex_001FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_3Tex_001FC8[] = djyasinzou_room_3Tex_001FC8; -#else -static const char jyasinzou_room_3Tex_001FC8[] __attribute__((aligned (2))) = djyasinzou_room_3Tex_001FC8; -#endif - -#define djyasinzou_room_3DL_000A70 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3DL_000A70" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_3DL_000A70[] = djyasinzou_room_3DL_000A70; -#else -static const char jyasinzou_room_3DL_000A70[] __attribute__((aligned (2))) = djyasinzou_room_3DL_000A70; -#endif - -#define djyasinzou_room_3Tex_002BC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3Tex_002BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_3Tex_002BC8[] = djyasinzou_room_3Tex_002BC8; -#else -static const char jyasinzou_room_3Tex_002BC8[] __attribute__((aligned (2))) = djyasinzou_room_3Tex_002BC8; -#endif - -#define djyasinzou_room_3DL_001150 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3DL_001150" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_3DL_001150[] = djyasinzou_room_3DL_001150; -#else -static const char jyasinzou_room_3DL_001150[] __attribute__((aligned (2))) = djyasinzou_room_3DL_001150; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_3DL_001588 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3DL_001588" +static const ALIGN_ASSET(2) char jyasinzou_room_3DL_001588[] = djyasinzou_room_3DL_001588; + +#define djyasinzou_room_3Tex_0033C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3Tex_0033C8" +static const ALIGN_ASSET(2) char jyasinzou_room_3Tex_0033C8[] = djyasinzou_room_3Tex_0033C8; + +#define djyasinzou_room_3DL_001B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3DL_001B98" +static const ALIGN_ASSET(2) char jyasinzou_room_3DL_001B98[] = djyasinzou_room_3DL_001B98; + +#define djyasinzou_room_3Tex_0023C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3Tex_0023C8" +static const ALIGN_ASSET(2) char jyasinzou_room_3Tex_0023C8[] = djyasinzou_room_3Tex_0023C8; + +#define djyasinzou_room_3Tex_001FC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3Tex_001FC8" +static const ALIGN_ASSET(2) char jyasinzou_room_3Tex_001FC8[] = djyasinzou_room_3Tex_001FC8; + +#define djyasinzou_room_3DL_000A70 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3DL_000A70" +static const ALIGN_ASSET(2) char jyasinzou_room_3DL_000A70[] = djyasinzou_room_3DL_000A70; + +#define djyasinzou_room_3Tex_002BC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3Tex_002BC8" +static const ALIGN_ASSET(2) char jyasinzou_room_3Tex_002BC8[] = djyasinzou_room_3Tex_002BC8; + +#define djyasinzou_room_3DL_001150 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_3DL_001150" +static const ALIGN_ASSET(2) char jyasinzou_room_3DL_001150[] = djyasinzou_room_3DL_001150; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_4.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_4.h index 411ed3856..0a048117b 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_4.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_4.h @@ -1,135 +1,60 @@ #pragma once -#define djyasinzou_room_4DL_000A80 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_000A80" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_000A80[] = djyasinzou_room_4DL_000A80; -#else -static const char jyasinzou_room_4DL_000A80[] __attribute__((aligned (2))) = djyasinzou_room_4DL_000A80; -#endif - -#define djyasinzou_room_4Tex_004698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_004698" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_004698[] = djyasinzou_room_4Tex_004698; -#else -static const char jyasinzou_room_4Tex_004698[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_004698; -#endif - -#define djyasinzou_room_4Tex_005B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_005B98[] = djyasinzou_room_4Tex_005B98; -#else -static const char jyasinzou_room_4Tex_005B98[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_005B98; -#endif - -#define djyasinzou_room_4Tex_003E98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_003E98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_003E98[] = djyasinzou_room_4Tex_003E98; -#else -static const char jyasinzou_room_4Tex_003E98[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_003E98; -#endif - -#define djyasinzou_room_4Tex_006798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_006798" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_006798[] = djyasinzou_room_4Tex_006798; -#else -static const char jyasinzou_room_4Tex_006798[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_006798; -#endif - -#define djyasinzou_room_4DL_001240 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_001240" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_001240[] = djyasinzou_room_4DL_001240; -#else -static const char jyasinzou_room_4DL_001240[] __attribute__((aligned (2))) = djyasinzou_room_4DL_001240; -#endif - -#define djyasinzou_room_4Tex_005698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_005698" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_005698[] = djyasinzou_room_4Tex_005698; -#else -static const char jyasinzou_room_4Tex_005698[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_005698; -#endif - -#define djyasinzou_room_4DL_001858 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_001858" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_001858[] = djyasinzou_room_4DL_001858; -#else -static const char jyasinzou_room_4DL_001858[] __attribute__((aligned (2))) = djyasinzou_room_4DL_001858; -#endif - -#define djyasinzou_room_4Tex_005798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_005798" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_005798[] = djyasinzou_room_4Tex_005798; -#else -static const char jyasinzou_room_4Tex_005798[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_005798; -#endif - -#define djyasinzou_room_4Tex_004E98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_004E98" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_004E98[] = djyasinzou_room_4Tex_004E98; -#else -static const char jyasinzou_room_4Tex_004E98[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_004E98; -#endif - -#define djyasinzou_room_4DL_001D50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_001D50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_001D50[] = djyasinzou_room_4DL_001D50; -#else -static const char jyasinzou_room_4DL_001D50[] __attribute__((aligned (2))) = djyasinzou_room_4DL_001D50; -#endif - -#define djyasinzou_room_4Tex_006398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_006398" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_006398[] = djyasinzou_room_4Tex_006398; -#else -static const char jyasinzou_room_4Tex_006398[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_006398; -#endif - -#define djyasinzou_room_4DL_002648 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_002648" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_002648[] = djyasinzou_room_4DL_002648; -#else -static const char jyasinzou_room_4DL_002648[] __attribute__((aligned (2))) = djyasinzou_room_4DL_002648; -#endif - -#define djyasinzou_room_4Tex_003698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_003698" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4Tex_003698[] = djyasinzou_room_4Tex_003698; -#else -static const char jyasinzou_room_4Tex_003698[] __attribute__((aligned (2))) = djyasinzou_room_4Tex_003698; -#endif - -#define djyasinzou_room_4DL_002090 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_002090" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_002090[] = djyasinzou_room_4DL_002090; -#else -static const char jyasinzou_room_4DL_002090[] __attribute__((aligned (2))) = djyasinzou_room_4DL_002090; -#endif - -#define djyasinzou_room_4DL_002338 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_002338[] = djyasinzou_room_4DL_002338; -#else -static const char jyasinzou_room_4DL_002338[] __attribute__((aligned (2))) = djyasinzou_room_4DL_002338; -#endif - -#define djyasinzou_room_4DL_002880 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_002880" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_002880[] = djyasinzou_room_4DL_002880; -#else -static const char jyasinzou_room_4DL_002880[] __attribute__((aligned (2))) = djyasinzou_room_4DL_002880; -#endif - -#define djyasinzou_room_4DL_007170 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_007170" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_007170[] = djyasinzou_room_4DL_007170; -#else -static const char jyasinzou_room_4DL_007170[] __attribute__((aligned (2))) = djyasinzou_room_4DL_007170; -#endif - -#define djyasinzou_room_4DL_0032A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_0032A0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_4DL_0032A0[] = djyasinzou_room_4DL_0032A0; -#else -static const char jyasinzou_room_4DL_0032A0[] __attribute__((aligned (2))) = djyasinzou_room_4DL_0032A0; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_4DL_000A80 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_000A80" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_000A80[] = djyasinzou_room_4DL_000A80; + +#define djyasinzou_room_4Tex_004698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_004698" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_004698[] = djyasinzou_room_4Tex_004698; + +#define djyasinzou_room_4Tex_005B98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_005B98" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_005B98[] = djyasinzou_room_4Tex_005B98; + +#define djyasinzou_room_4Tex_003E98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_003E98" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_003E98[] = djyasinzou_room_4Tex_003E98; + +#define djyasinzou_room_4Tex_006798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_006798" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_006798[] = djyasinzou_room_4Tex_006798; + +#define djyasinzou_room_4DL_001240 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_001240" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_001240[] = djyasinzou_room_4DL_001240; + +#define djyasinzou_room_4Tex_005698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_005698" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_005698[] = djyasinzou_room_4Tex_005698; + +#define djyasinzou_room_4DL_001858 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_001858" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_001858[] = djyasinzou_room_4DL_001858; + +#define djyasinzou_room_4Tex_005798 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_005798" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_005798[] = djyasinzou_room_4Tex_005798; + +#define djyasinzou_room_4Tex_004E98 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_004E98" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_004E98[] = djyasinzou_room_4Tex_004E98; + +#define djyasinzou_room_4DL_001D50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_001D50" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_001D50[] = djyasinzou_room_4DL_001D50; + +#define djyasinzou_room_4Tex_006398 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_006398" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_006398[] = djyasinzou_room_4Tex_006398; + +#define djyasinzou_room_4DL_002648 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_002648" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_002648[] = djyasinzou_room_4DL_002648; + +#define djyasinzou_room_4Tex_003698 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4Tex_003698" +static const ALIGN_ASSET(2) char jyasinzou_room_4Tex_003698[] = djyasinzou_room_4Tex_003698; + +#define djyasinzou_room_4DL_002090 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_002090" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_002090[] = djyasinzou_room_4DL_002090; + +#define djyasinzou_room_4DL_002338 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_002338" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_002338[] = djyasinzou_room_4DL_002338; + +#define djyasinzou_room_4DL_002880 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_002880" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_002880[] = djyasinzou_room_4DL_002880; + +#define djyasinzou_room_4DL_007170 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_007170" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_007170[] = djyasinzou_room_4DL_007170; + +#define djyasinzou_room_4DL_0032A0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_4DL_0032A0" +static const ALIGN_ASSET(2) char jyasinzou_room_4DL_0032A0[] = djyasinzou_room_4DL_0032A0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_5.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_5.h index ae7f213bf..d25a86536 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_5.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_5.h @@ -1,380 +1,165 @@ #pragma once -#define djyasinzou_room_5DL_001850 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_001850" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_001850[] = djyasinzou_room_5DL_001850; -#else -static const char jyasinzou_room_5DL_001850[] __attribute__((aligned (2))) = djyasinzou_room_5DL_001850; -#endif - -#define djyasinzou_room_5Tex_00D7C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00D7C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00D7C8[] = djyasinzou_room_5Tex_00D7C8; -#else -static const char jyasinzou_room_5Tex_00D7C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00D7C8; -#endif - -#define djyasinzou_room_5Tex_0158C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0158C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0158C8[] = djyasinzou_room_5Tex_0158C8; -#else -static const char jyasinzou_room_5Tex_0158C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0158C8; -#endif - -#define djyasinzou_room_5Tex_015CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_015CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_015CC8[] = djyasinzou_room_5Tex_015CC8; -#else -static const char jyasinzou_room_5Tex_015CC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_015CC8; -#endif - -#define djyasinzou_room_5Tex_0140C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0140C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0140C8[] = djyasinzou_room_5Tex_0140C8; -#else -static const char jyasinzou_room_5Tex_0140C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0140C8; -#endif - -#define djyasinzou_room_5Tex_0134C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0134C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0134C8[] = djyasinzou_room_5Tex_0134C8; -#else -static const char jyasinzou_room_5Tex_0134C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0134C8; -#endif - -#define djyasinzou_room_5Tex_00DFC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00DFC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00DFC8[] = djyasinzou_room_5Tex_00DFC8; -#else -static const char jyasinzou_room_5Tex_00DFC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00DFC8; -#endif - -#define djyasinzou_room_5Tex_0150C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0150C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0150C8[] = djyasinzou_room_5Tex_0150C8; -#else -static const char jyasinzou_room_5Tex_0150C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0150C8; -#endif - -#define djyasinzou_room_5Tex_012CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_012CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_012CC8[] = djyasinzou_room_5Tex_012CC8; -#else -static const char jyasinzou_room_5Tex_012CC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_012CC8; -#endif - -#define djyasinzou_room_5Tex_0124C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0124C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0124C8[] = djyasinzou_room_5Tex_0124C8; -#else -static const char jyasinzou_room_5Tex_0124C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0124C8; -#endif - -#define djyasinzou_room_5Tex_00CFC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00CFC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00CFC8[] = djyasinzou_room_5Tex_00CFC8; -#else -static const char jyasinzou_room_5Tex_00CFC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00CFC8; -#endif - -#define djyasinzou_room_5Tex_00E7C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00E7C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00E7C8[] = djyasinzou_room_5Tex_00E7C8; -#else -static const char jyasinzou_room_5Tex_00E7C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00E7C8; -#endif - -#define djyasinzou_room_5Tex_0148C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0148C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0148C8[] = djyasinzou_room_5Tex_0148C8; -#else -static const char jyasinzou_room_5Tex_0148C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0148C8; -#endif - -#define djyasinzou_room_5DL_0034C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_0034C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_0034C8[] = djyasinzou_room_5DL_0034C8; -#else -static const char jyasinzou_room_5DL_0034C8[] __attribute__((aligned (2))) = djyasinzou_room_5DL_0034C8; -#endif - -#define djyasinzou_room_5Tex_00EFC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00EFC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00EFC8[] = djyasinzou_room_5Tex_00EFC8; -#else -static const char jyasinzou_room_5Tex_00EFC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00EFC8; -#endif - -#define djyasinzou_room_5DL_003C50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_003C50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_003C50[] = djyasinzou_room_5DL_003C50; -#else -static const char jyasinzou_room_5DL_003C50[] __attribute__((aligned (2))) = djyasinzou_room_5DL_003C50; -#endif - -#define djyasinzou_room_5Tex_00DBC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00DBC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00DBC8[] = djyasinzou_room_5Tex_00DBC8; -#else -static const char jyasinzou_room_5Tex_00DBC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00DBC8; -#endif - -#define djyasinzou_room_5TLUT_00C9B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5TLUT_00C9B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5TLUT_00C9B0[] = djyasinzou_room_5TLUT_00C9B0; -#else -static const char jyasinzou_room_5TLUT_00C9B0[] __attribute__((aligned (2))) = djyasinzou_room_5TLUT_00C9B0; -#endif - -#define djyasinzou_room_5Tex_00FFC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00FFC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00FFC8[] = djyasinzou_room_5Tex_00FFC8; -#else -static const char jyasinzou_room_5Tex_00FFC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00FFC8; -#endif - -#define djyasinzou_room_5Tex_0108C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0108C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0108C8[] = djyasinzou_room_5Tex_0108C8; -#else -static const char jyasinzou_room_5Tex_0108C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0108C8; -#endif - -#define djyasinzou_room_5Tex_0118C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0118C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0118C8[] = djyasinzou_room_5Tex_0118C8; -#else -static const char jyasinzou_room_5Tex_0118C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0118C8; -#endif - -#define djyasinzou_room_5Tex_0114C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0114C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0114C8[] = djyasinzou_room_5Tex_0114C8; -#else -static const char jyasinzou_room_5Tex_0114C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0114C8; -#endif - -#define djyasinzou_room_5DL_004480 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_004480" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_004480[] = djyasinzou_room_5DL_004480; -#else -static const char jyasinzou_room_5DL_004480[] __attribute__((aligned (2))) = djyasinzou_room_5DL_004480; -#endif - -#define djyasinzou_room_5DL_005070 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_005070" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_005070[] = djyasinzou_room_5DL_005070; -#else -static const char jyasinzou_room_5DL_005070[] __attribute__((aligned (2))) = djyasinzou_room_5DL_005070; -#endif - -#define djyasinzou_room_5Tex_00F3C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00F3C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00F3C8[] = djyasinzou_room_5Tex_00F3C8; -#else -static const char jyasinzou_room_5Tex_00F3C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00F3C8; -#endif - -#define djyasinzou_room_5Tex_0100C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0100C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0100C8[] = djyasinzou_room_5Tex_0100C8; -#else -static const char jyasinzou_room_5Tex_0100C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0100C8; -#endif - -#define djyasinzou_room_5DL_005B30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_005B30" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_005B30[] = djyasinzou_room_5DL_005B30; -#else -static const char jyasinzou_room_5DL_005B30[] __attribute__((aligned (2))) = djyasinzou_room_5DL_005B30; -#endif - -#define djyasinzou_room_5Tex_011CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_011CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_011CC8[] = djyasinzou_room_5Tex_011CC8; -#else -static const char jyasinzou_room_5Tex_011CC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_011CC8; -#endif - -#define djyasinzou_room_5TLUT_00CBA8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5TLUT_00CBA8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5TLUT_00CBA8[] = djyasinzou_room_5TLUT_00CBA8; -#else -static const char jyasinzou_room_5TLUT_00CBA8[] __attribute__((aligned (2))) = djyasinzou_room_5TLUT_00CBA8; -#endif - -#define djyasinzou_room_5DL_0165B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_0165B0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_0165B0[] = djyasinzou_room_5DL_0165B0; -#else -static const char jyasinzou_room_5DL_0165B0[] __attribute__((aligned (2))) = djyasinzou_room_5DL_0165B0; -#endif - -#define djyasinzou_room_5Tex_016808 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_016808" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_016808[] = djyasinzou_room_5Tex_016808; -#else -static const char jyasinzou_room_5Tex_016808[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_016808; -#endif - -#define djyasinzou_room_5DL_0060E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_0060E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_0060E8[] = djyasinzou_room_5DL_0060E8; -#else -static const char jyasinzou_room_5DL_0060E8[] __attribute__((aligned (2))) = djyasinzou_room_5DL_0060E8; -#endif - -#define djyasinzou_room_5DL_006F48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_006F48" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_006F48[] = djyasinzou_room_5DL_006F48; -#else -static const char jyasinzou_room_5DL_006F48[] __attribute__((aligned (2))) = djyasinzou_room_5DL_006F48; -#endif - -#define djyasinzou_room_5Tex_00F7C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00F7C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00F7C8[] = djyasinzou_room_5Tex_00F7C8; -#else -static const char jyasinzou_room_5Tex_00F7C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00F7C8; -#endif - -#define djyasinzou_room_5Tex_0110C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0110C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0110C8[] = djyasinzou_room_5Tex_0110C8; -#else -static const char jyasinzou_room_5Tex_0110C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0110C8; -#endif - -#define djyasinzou_room_5DL_007E18 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_007E18" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_007E18[] = djyasinzou_room_5DL_007E18; -#else -static const char jyasinzou_room_5DL_007E18[] __attribute__((aligned (2))) = djyasinzou_room_5DL_007E18; -#endif - -#define djyasinzou_room_5DL_008478 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_008478" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_008478[] = djyasinzou_room_5DL_008478; -#else -static const char jyasinzou_room_5DL_008478[] __attribute__((aligned (2))) = djyasinzou_room_5DL_008478; -#endif - -#define djyasinzou_room_5DL_008800 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_008800" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_008800[] = djyasinzou_room_5DL_008800; -#else -static const char jyasinzou_room_5DL_008800[] __attribute__((aligned (2))) = djyasinzou_room_5DL_008800; -#endif - -#define djyasinzou_room_5DL_008B50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_008B50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_008B50[] = djyasinzou_room_5DL_008B50; -#else -static const char jyasinzou_room_5DL_008B50[] __attribute__((aligned (2))) = djyasinzou_room_5DL_008B50; -#endif - -#define djyasinzou_room_5DL_003188 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_003188" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_003188[] = djyasinzou_room_5DL_003188; -#else -static const char jyasinzou_room_5DL_003188[] __attribute__((aligned (2))) = djyasinzou_room_5DL_003188; -#endif - -#define djyasinzou_room_5DL_008EC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_008EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_008EC0[] = djyasinzou_room_5DL_008EC0; -#else -static const char jyasinzou_room_5DL_008EC0[] __attribute__((aligned (2))) = djyasinzou_room_5DL_008EC0; -#endif - -#define djyasinzou_room_5DL_0093B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_0093B8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_0093B8[] = djyasinzou_room_5DL_0093B8; -#else -static const char jyasinzou_room_5DL_0093B8[] __attribute__((aligned (2))) = djyasinzou_room_5DL_0093B8; -#endif - -#define djyasinzou_room_5DL_009688 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_009688" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_009688[] = djyasinzou_room_5DL_009688; -#else -static const char jyasinzou_room_5DL_009688[] __attribute__((aligned (2))) = djyasinzou_room_5DL_009688; -#endif - -#define djyasinzou_room_5Tex_0138C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0138C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_0138C8[] = djyasinzou_room_5Tex_0138C8; -#else -static const char jyasinzou_room_5Tex_0138C8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_0138C8; -#endif - -#define djyasinzou_room_5DL_00A018 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00A018" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_00A018[] = djyasinzou_room_5DL_00A018; -#else -static const char jyasinzou_room_5DL_00A018[] __attribute__((aligned (2))) = djyasinzou_room_5DL_00A018; -#endif - -#define djyasinzou_room_5DL_00ADB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00ADB8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_00ADB8[] = djyasinzou_room_5DL_00ADB8; -#else -static const char jyasinzou_room_5DL_00ADB8[] __attribute__((aligned (2))) = djyasinzou_room_5DL_00ADB8; -#endif - -#define djyasinzou_room_5DL_00B428 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00B428" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_00B428[] = djyasinzou_room_5DL_00B428; -#else -static const char jyasinzou_room_5DL_00B428[] __attribute__((aligned (2))) = djyasinzou_room_5DL_00B428; -#endif - -#define djyasinzou_room_5DL_00BC70 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00BC70" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_00BC70[] = djyasinzou_room_5DL_00BC70; -#else -static const char jyasinzou_room_5DL_00BC70[] __attribute__((aligned (2))) = djyasinzou_room_5DL_00BC70; -#endif - -#define djyasinzou_room_5Tex_010CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_010CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_010CC8[] = djyasinzou_room_5Tex_010CC8; -#else -static const char jyasinzou_room_5Tex_010CC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_010CC8; -#endif - -#define djyasinzou_room_5Tex_00CBC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00CBC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_00CBC8[] = djyasinzou_room_5Tex_00CBC8; -#else -static const char jyasinzou_room_5Tex_00CBC8[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_00CBC8; -#endif - -#define djyasinzou_room_5DL_00C0E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00C0E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_00C0E8[] = djyasinzou_room_5DL_00C0E8; -#else -static const char jyasinzou_room_5DL_00C0E8[] __attribute__((aligned (2))) = djyasinzou_room_5DL_00C0E8; -#endif - -#define djyasinzou_room_5DL_00C638 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00C638" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_00C638[] = djyasinzou_room_5DL_00C638; -#else -static const char jyasinzou_room_5DL_00C638[] __attribute__((aligned (2))) = djyasinzou_room_5DL_00C638; -#endif - -#define djyasinzou_room_5DL_016730 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_016730" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5DL_016730[] = djyasinzou_room_5DL_016730; -#else -static const char jyasinzou_room_5DL_016730[] __attribute__((aligned (2))) = djyasinzou_room_5DL_016730; -#endif - -#define djyasinzou_room_5Tex_017008 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_017008" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_5Tex_017008[] = djyasinzou_room_5Tex_017008; -#else -static const char jyasinzou_room_5Tex_017008[] __attribute__((aligned (2))) = djyasinzou_room_5Tex_017008; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_5DL_001850 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_001850" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_001850[] = djyasinzou_room_5DL_001850; + +#define djyasinzou_room_5Tex_00D7C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00D7C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00D7C8[] = djyasinzou_room_5Tex_00D7C8; + +#define djyasinzou_room_5Tex_0158C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0158C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0158C8[] = djyasinzou_room_5Tex_0158C8; + +#define djyasinzou_room_5Tex_015CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_015CC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_015CC8[] = djyasinzou_room_5Tex_015CC8; + +#define djyasinzou_room_5Tex_0140C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0140C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0140C8[] = djyasinzou_room_5Tex_0140C8; + +#define djyasinzou_room_5Tex_0134C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0134C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0134C8[] = djyasinzou_room_5Tex_0134C8; + +#define djyasinzou_room_5Tex_00DFC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00DFC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00DFC8[] = djyasinzou_room_5Tex_00DFC8; + +#define djyasinzou_room_5Tex_0150C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0150C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0150C8[] = djyasinzou_room_5Tex_0150C8; + +#define djyasinzou_room_5Tex_012CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_012CC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_012CC8[] = djyasinzou_room_5Tex_012CC8; + +#define djyasinzou_room_5Tex_0124C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0124C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0124C8[] = djyasinzou_room_5Tex_0124C8; + +#define djyasinzou_room_5Tex_00CFC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00CFC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00CFC8[] = djyasinzou_room_5Tex_00CFC8; + +#define djyasinzou_room_5Tex_00E7C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00E7C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00E7C8[] = djyasinzou_room_5Tex_00E7C8; + +#define djyasinzou_room_5Tex_0148C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0148C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0148C8[] = djyasinzou_room_5Tex_0148C8; + +#define djyasinzou_room_5DL_0034C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_0034C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_0034C8[] = djyasinzou_room_5DL_0034C8; + +#define djyasinzou_room_5Tex_00EFC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00EFC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00EFC8[] = djyasinzou_room_5Tex_00EFC8; + +#define djyasinzou_room_5DL_003C50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_003C50" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_003C50[] = djyasinzou_room_5DL_003C50; + +#define djyasinzou_room_5Tex_00DBC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00DBC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00DBC8[] = djyasinzou_room_5Tex_00DBC8; + +#define djyasinzou_room_5TLUT_00C9B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5TLUT_00C9B0" +static const ALIGN_ASSET(2) char jyasinzou_room_5TLUT_00C9B0[] = djyasinzou_room_5TLUT_00C9B0; + +#define djyasinzou_room_5Tex_00FFC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00FFC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00FFC8[] = djyasinzou_room_5Tex_00FFC8; + +#define djyasinzou_room_5Tex_0108C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0108C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0108C8[] = djyasinzou_room_5Tex_0108C8; + +#define djyasinzou_room_5Tex_0118C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0118C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0118C8[] = djyasinzou_room_5Tex_0118C8; + +#define djyasinzou_room_5Tex_0114C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0114C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0114C8[] = djyasinzou_room_5Tex_0114C8; + +#define djyasinzou_room_5DL_004480 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_004480" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_004480[] = djyasinzou_room_5DL_004480; + +#define djyasinzou_room_5DL_005070 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_005070" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_005070[] = djyasinzou_room_5DL_005070; + +#define djyasinzou_room_5Tex_00F3C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00F3C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00F3C8[] = djyasinzou_room_5Tex_00F3C8; + +#define djyasinzou_room_5Tex_0100C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0100C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0100C8[] = djyasinzou_room_5Tex_0100C8; + +#define djyasinzou_room_5DL_005B30 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_005B30" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_005B30[] = djyasinzou_room_5DL_005B30; + +#define djyasinzou_room_5Tex_011CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_011CC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_011CC8[] = djyasinzou_room_5Tex_011CC8; + +#define djyasinzou_room_5TLUT_00CBA8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5TLUT_00CBA8" +static const ALIGN_ASSET(2) char jyasinzou_room_5TLUT_00CBA8[] = djyasinzou_room_5TLUT_00CBA8; + +#define djyasinzou_room_5DL_0165B0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_0165B0" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_0165B0[] = djyasinzou_room_5DL_0165B0; + +#define djyasinzou_room_5Tex_016808 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_016808" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_016808[] = djyasinzou_room_5Tex_016808; + +#define djyasinzou_room_5DL_0060E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_0060E8" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_0060E8[] = djyasinzou_room_5DL_0060E8; + +#define djyasinzou_room_5DL_006F48 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_006F48" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_006F48[] = djyasinzou_room_5DL_006F48; + +#define djyasinzou_room_5Tex_00F7C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00F7C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00F7C8[] = djyasinzou_room_5Tex_00F7C8; + +#define djyasinzou_room_5Tex_0110C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0110C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0110C8[] = djyasinzou_room_5Tex_0110C8; + +#define djyasinzou_room_5DL_007E18 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_007E18" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_007E18[] = djyasinzou_room_5DL_007E18; + +#define djyasinzou_room_5DL_008478 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_008478" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_008478[] = djyasinzou_room_5DL_008478; + +#define djyasinzou_room_5DL_008800 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_008800" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_008800[] = djyasinzou_room_5DL_008800; + +#define djyasinzou_room_5DL_008B50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_008B50" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_008B50[] = djyasinzou_room_5DL_008B50; + +#define djyasinzou_room_5DL_003188 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_003188" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_003188[] = djyasinzou_room_5DL_003188; + +#define djyasinzou_room_5DL_008EC0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_008EC0" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_008EC0[] = djyasinzou_room_5DL_008EC0; + +#define djyasinzou_room_5DL_0093B8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_0093B8" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_0093B8[] = djyasinzou_room_5DL_0093B8; + +#define djyasinzou_room_5DL_009688 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_009688" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_009688[] = djyasinzou_room_5DL_009688; + +#define djyasinzou_room_5Tex_0138C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_0138C8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_0138C8[] = djyasinzou_room_5Tex_0138C8; + +#define djyasinzou_room_5DL_00A018 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00A018" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_00A018[] = djyasinzou_room_5DL_00A018; + +#define djyasinzou_room_5DL_00ADB8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00ADB8" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_00ADB8[] = djyasinzou_room_5DL_00ADB8; + +#define djyasinzou_room_5DL_00B428 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00B428" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_00B428[] = djyasinzou_room_5DL_00B428; + +#define djyasinzou_room_5DL_00BC70 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00BC70" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_00BC70[] = djyasinzou_room_5DL_00BC70; + +#define djyasinzou_room_5Tex_010CC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_010CC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_010CC8[] = djyasinzou_room_5Tex_010CC8; + +#define djyasinzou_room_5Tex_00CBC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_00CBC8" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_00CBC8[] = djyasinzou_room_5Tex_00CBC8; + +#define djyasinzou_room_5DL_00C0E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00C0E8" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_00C0E8[] = djyasinzou_room_5DL_00C0E8; + +#define djyasinzou_room_5DL_00C638 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_00C638" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_00C638[] = djyasinzou_room_5DL_00C638; + +#define djyasinzou_room_5DL_016730 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5DL_016730" +static const ALIGN_ASSET(2) char jyasinzou_room_5DL_016730[] = djyasinzou_room_5DL_016730; + +#define djyasinzou_room_5Tex_017008 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_5Tex_017008" +static const ALIGN_ASSET(2) char jyasinzou_room_5Tex_017008[] = djyasinzou_room_5Tex_017008; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_6.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_6.h index 8bc557b44..b53a1a69a 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_6.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_6.h @@ -1,79 +1,36 @@ #pragma once -#define djyasinzou_room_6DL_000340 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_000340" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6DL_000340[] = djyasinzou_room_6DL_000340; -#else -static const char jyasinzou_room_6DL_000340[] __attribute__((aligned (2))) = djyasinzou_room_6DL_000340; -#endif - -#define djyasinzou_room_6DL_0014D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_0014D0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6DL_0014D0[] = djyasinzou_room_6DL_0014D0; -#else -static const char jyasinzou_room_6DL_0014D0[] __attribute__((aligned (2))) = djyasinzou_room_6DL_0014D0; -#endif - -#define djyasinzou_room_6Tex_0033E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6Tex_0033E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6Tex_0033E8[] = djyasinzou_room_6Tex_0033E8; -#else -static const char jyasinzou_room_6Tex_0033E8[] __attribute__((aligned (2))) = djyasinzou_room_6Tex_0033E8; -#endif - -#define djyasinzou_room_6Tex_0037E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6Tex_0037E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6Tex_0037E8[] = djyasinzou_room_6Tex_0037E8; -#else -static const char jyasinzou_room_6Tex_0037E8[] __attribute__((aligned (2))) = djyasinzou_room_6Tex_0037E8; -#endif - -#define djyasinzou_room_6DL_001EC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_001EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6DL_001EC8[] = djyasinzou_room_6DL_001EC8; -#else -static const char jyasinzou_room_6DL_001EC8[] __attribute__((aligned (2))) = djyasinzou_room_6DL_001EC8; -#endif - -#define djyasinzou_room_6Tex_003FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6Tex_003FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6Tex_003FE8[] = djyasinzou_room_6Tex_003FE8; -#else -static const char jyasinzou_room_6Tex_003FE8[] __attribute__((aligned (2))) = djyasinzou_room_6Tex_003FE8; -#endif - -#define djyasinzou_room_6DL_002420 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_002420" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6DL_002420[] = djyasinzou_room_6DL_002420; -#else -static const char jyasinzou_room_6DL_002420[] __attribute__((aligned (2))) = djyasinzou_room_6DL_002420; -#endif - -#define djyasinzou_room_6Tex_002BE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6Tex_002BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6Tex_002BE8[] = djyasinzou_room_6Tex_002BE8; -#else -static const char jyasinzou_room_6Tex_002BE8[] __attribute__((aligned (2))) = djyasinzou_room_6Tex_002BE8; -#endif - -#define djyasinzou_room_6DL_002950 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_002950" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6DL_002950[] = djyasinzou_room_6DL_002950; -#else -static const char jyasinzou_room_6DL_002950[] __attribute__((aligned (2))) = djyasinzou_room_6DL_002950; -#endif - -#define djyasinzou_room_6DL_000EB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_000EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6DL_000EB0[] = djyasinzou_room_6DL_000EB0; -#else -static const char jyasinzou_room_6DL_000EB0[] __attribute__((aligned (2))) = djyasinzou_room_6DL_000EB0; -#endif - -#define djyasinzou_room_6DL_000908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_000908" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_6DL_000908[] = djyasinzou_room_6DL_000908; -#else -static const char jyasinzou_room_6DL_000908[] __attribute__((aligned (2))) = djyasinzou_room_6DL_000908; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_6DL_000340 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_000340" +static const ALIGN_ASSET(2) char jyasinzou_room_6DL_000340[] = djyasinzou_room_6DL_000340; + +#define djyasinzou_room_6DL_0014D0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_0014D0" +static const ALIGN_ASSET(2) char jyasinzou_room_6DL_0014D0[] = djyasinzou_room_6DL_0014D0; + +#define djyasinzou_room_6Tex_0033E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6Tex_0033E8" +static const ALIGN_ASSET(2) char jyasinzou_room_6Tex_0033E8[] = djyasinzou_room_6Tex_0033E8; + +#define djyasinzou_room_6Tex_0037E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6Tex_0037E8" +static const ALIGN_ASSET(2) char jyasinzou_room_6Tex_0037E8[] = djyasinzou_room_6Tex_0037E8; + +#define djyasinzou_room_6DL_001EC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_001EC8" +static const ALIGN_ASSET(2) char jyasinzou_room_6DL_001EC8[] = djyasinzou_room_6DL_001EC8; + +#define djyasinzou_room_6Tex_003FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6Tex_003FE8" +static const ALIGN_ASSET(2) char jyasinzou_room_6Tex_003FE8[] = djyasinzou_room_6Tex_003FE8; + +#define djyasinzou_room_6DL_002420 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_002420" +static const ALIGN_ASSET(2) char jyasinzou_room_6DL_002420[] = djyasinzou_room_6DL_002420; + +#define djyasinzou_room_6Tex_002BE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6Tex_002BE8" +static const ALIGN_ASSET(2) char jyasinzou_room_6Tex_002BE8[] = djyasinzou_room_6Tex_002BE8; + +#define djyasinzou_room_6DL_002950 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_002950" +static const ALIGN_ASSET(2) char jyasinzou_room_6DL_002950[] = djyasinzou_room_6DL_002950; + +#define djyasinzou_room_6DL_000EB0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_000EB0" +static const ALIGN_ASSET(2) char jyasinzou_room_6DL_000EB0[] = djyasinzou_room_6DL_000EB0; + +#define djyasinzou_room_6DL_000908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_6DL_000908" +static const ALIGN_ASSET(2) char jyasinzou_room_6DL_000908[] = djyasinzou_room_6DL_000908; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_7.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_7.h index 4dc714216..12f4f28bd 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_7.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_7.h @@ -1,114 +1,51 @@ #pragma once -#define djyasinzou_room_7DL_000390 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000390" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_000390[] = djyasinzou_room_7DL_000390; -#else -static const char jyasinzou_room_7DL_000390[] __attribute__((aligned (2))) = djyasinzou_room_7DL_000390; -#endif - -#define djyasinzou_room_7Tex_002908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_002908" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7Tex_002908[] = djyasinzou_room_7Tex_002908; -#else -static const char jyasinzou_room_7Tex_002908[] __attribute__((aligned (2))) = djyasinzou_room_7Tex_002908; -#endif - -#define djyasinzou_room_7Tex_004908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_004908" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7Tex_004908[] = djyasinzou_room_7Tex_004908; -#else -static const char jyasinzou_room_7Tex_004908[] __attribute__((aligned (2))) = djyasinzou_room_7Tex_004908; -#endif - -#define djyasinzou_room_7DL_000610 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000610" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_000610[] = djyasinzou_room_7DL_000610; -#else -static const char jyasinzou_room_7DL_000610[] __attribute__((aligned (2))) = djyasinzou_room_7DL_000610; -#endif - -#define djyasinzou_room_7DL_000890 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000890" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_000890[] = djyasinzou_room_7DL_000890; -#else -static const char jyasinzou_room_7DL_000890[] __attribute__((aligned (2))) = djyasinzou_room_7DL_000890; -#endif - -#define djyasinzou_room_7DL_000B10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000B10" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_000B10[] = djyasinzou_room_7DL_000B10; -#else -static const char jyasinzou_room_7DL_000B10[] __attribute__((aligned (2))) = djyasinzou_room_7DL_000B10; -#endif - -#define djyasinzou_room_7DL_000D90 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000D90" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_000D90[] = djyasinzou_room_7DL_000D90; -#else -static const char jyasinzou_room_7DL_000D90[] __attribute__((aligned (2))) = djyasinzou_room_7DL_000D90; -#endif - -#define djyasinzou_room_7DL_001010 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_001010" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_001010[] = djyasinzou_room_7DL_001010; -#else -static const char jyasinzou_room_7DL_001010[] __attribute__((aligned (2))) = djyasinzou_room_7DL_001010; -#endif - -#define djyasinzou_room_7DL_001310 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_001310" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_001310[] = djyasinzou_room_7DL_001310; -#else -static const char jyasinzou_room_7DL_001310[] __attribute__((aligned (2))) = djyasinzou_room_7DL_001310; -#endif - -#define djyasinzou_room_7Tex_003908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_003908" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7Tex_003908[] = djyasinzou_room_7Tex_003908; -#else -static const char jyasinzou_room_7Tex_003908[] __attribute__((aligned (2))) = djyasinzou_room_7Tex_003908; -#endif - -#define djyasinzou_room_7DL_001980 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_001980" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_001980[] = djyasinzou_room_7DL_001980; -#else -static const char jyasinzou_room_7DL_001980[] __attribute__((aligned (2))) = djyasinzou_room_7DL_001980; -#endif - -#define djyasinzou_room_7Tex_004108 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_004108" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7Tex_004108[] = djyasinzou_room_7Tex_004108; -#else -static const char jyasinzou_room_7Tex_004108[] __attribute__((aligned (2))) = djyasinzou_room_7Tex_004108; -#endif - -#define djyasinzou_room_7DL_001FD8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_001FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_001FD8[] = djyasinzou_room_7DL_001FD8; -#else -static const char jyasinzou_room_7DL_001FD8[] __attribute__((aligned (2))) = djyasinzou_room_7DL_001FD8; -#endif - -#define djyasinzou_room_7DL_002340 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_002340" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_002340[] = djyasinzou_room_7DL_002340; -#else -static const char jyasinzou_room_7DL_002340[] __attribute__((aligned (2))) = djyasinzou_room_7DL_002340; -#endif - -#define djyasinzou_room_7DL_002630 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_002630" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7DL_002630[] = djyasinzou_room_7DL_002630; -#else -static const char jyasinzou_room_7DL_002630[] __attribute__((aligned (2))) = djyasinzou_room_7DL_002630; -#endif - -#define djyasinzou_room_7Tex_004D08 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_004D08" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_7Tex_004D08[] = djyasinzou_room_7Tex_004D08; -#else -static const char jyasinzou_room_7Tex_004D08[] __attribute__((aligned (2))) = djyasinzou_room_7Tex_004D08; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_7DL_000390 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000390" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_000390[] = djyasinzou_room_7DL_000390; + +#define djyasinzou_room_7Tex_002908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_002908" +static const ALIGN_ASSET(2) char jyasinzou_room_7Tex_002908[] = djyasinzou_room_7Tex_002908; + +#define djyasinzou_room_7Tex_004908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_004908" +static const ALIGN_ASSET(2) char jyasinzou_room_7Tex_004908[] = djyasinzou_room_7Tex_004908; + +#define djyasinzou_room_7DL_000610 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000610" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_000610[] = djyasinzou_room_7DL_000610; + +#define djyasinzou_room_7DL_000890 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000890" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_000890[] = djyasinzou_room_7DL_000890; + +#define djyasinzou_room_7DL_000B10 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000B10" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_000B10[] = djyasinzou_room_7DL_000B10; + +#define djyasinzou_room_7DL_000D90 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_000D90" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_000D90[] = djyasinzou_room_7DL_000D90; + +#define djyasinzou_room_7DL_001010 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_001010" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_001010[] = djyasinzou_room_7DL_001010; + +#define djyasinzou_room_7DL_001310 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_001310" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_001310[] = djyasinzou_room_7DL_001310; + +#define djyasinzou_room_7Tex_003908 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_003908" +static const ALIGN_ASSET(2) char jyasinzou_room_7Tex_003908[] = djyasinzou_room_7Tex_003908; + +#define djyasinzou_room_7DL_001980 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_001980" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_001980[] = djyasinzou_room_7DL_001980; + +#define djyasinzou_room_7Tex_004108 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_004108" +static const ALIGN_ASSET(2) char jyasinzou_room_7Tex_004108[] = djyasinzou_room_7Tex_004108; + +#define djyasinzou_room_7DL_001FD8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_001FD8" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_001FD8[] = djyasinzou_room_7DL_001FD8; + +#define djyasinzou_room_7DL_002340 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_002340" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_002340[] = djyasinzou_room_7DL_002340; + +#define djyasinzou_room_7DL_002630 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7DL_002630" +static const ALIGN_ASSET(2) char jyasinzou_room_7DL_002630[] = djyasinzou_room_7DL_002630; + +#define djyasinzou_room_7Tex_004D08 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_7Tex_004D08" +static const ALIGN_ASSET(2) char jyasinzou_room_7Tex_004D08[] = djyasinzou_room_7Tex_004D08; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_8.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_8.h index e896dda80..bba30a43a 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_8.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_8.h @@ -1,128 +1,57 @@ #pragma once -#define djyasinzou_room_8DL_0009F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_0009F0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_0009F0[] = djyasinzou_room_8DL_0009F0; -#else -static const char jyasinzou_room_8DL_0009F0[] __attribute__((aligned (2))) = djyasinzou_room_8DL_0009F0; -#endif - -#define djyasinzou_room_8Tex_007250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_007250" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_007250[] = djyasinzou_room_8Tex_007250; -#else -static const char jyasinzou_room_8Tex_007250[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_007250; -#endif - -#define djyasinzou_room_8DL_0018D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_0018D8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_0018D8[] = djyasinzou_room_8DL_0018D8; -#else -static const char jyasinzou_room_8DL_0018D8[] __attribute__((aligned (2))) = djyasinzou_room_8DL_0018D8; -#endif - -#define djyasinzou_room_8Tex_006A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_006A50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_006A50[] = djyasinzou_room_8Tex_006A50; -#else -static const char jyasinzou_room_8Tex_006A50[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_006A50; -#endif - -#define djyasinzou_room_8Tex_005650 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_005650" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_005650[] = djyasinzou_room_8Tex_005650; -#else -static const char jyasinzou_room_8Tex_005650[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_005650; -#endif - -#define djyasinzou_room_8Tex_006250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_006250" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_006250[] = djyasinzou_room_8Tex_006250; -#else -static const char jyasinzou_room_8Tex_006250[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_006250; -#endif - -#define djyasinzou_room_8DL_0036E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_0036E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_0036E8[] = djyasinzou_room_8DL_0036E8; -#else -static const char jyasinzou_room_8DL_0036E8[] __attribute__((aligned (2))) = djyasinzou_room_8DL_0036E8; -#endif - -#define djyasinzou_room_8Tex_005E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_005E50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_005E50[] = djyasinzou_room_8Tex_005E50; -#else -static const char jyasinzou_room_8Tex_005E50[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_005E50; -#endif - -#define djyasinzou_room_8Tex_004A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_004A50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_004A50[] = djyasinzou_room_8Tex_004A50; -#else -static const char jyasinzou_room_8Tex_004A50[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_004A50; -#endif - -#define djyasinzou_room_8DL_002350 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_002350" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_002350[] = djyasinzou_room_8DL_002350; -#else -static const char jyasinzou_room_8DL_002350[] __attribute__((aligned (2))) = djyasinzou_room_8DL_002350; -#endif - -#define djyasinzou_room_8DL_002720 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_002720" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_002720[] = djyasinzou_room_8DL_002720; -#else -static const char jyasinzou_room_8DL_002720[] __attribute__((aligned (2))) = djyasinzou_room_8DL_002720; -#endif - -#define djyasinzou_room_8Tex_003A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_003A50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_003A50[] = djyasinzou_room_8Tex_003A50; -#else -static const char jyasinzou_room_8Tex_003A50[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_003A50; -#endif - -#define djyasinzou_room_8DL_0028E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_0028E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_0028E0[] = djyasinzou_room_8DL_0028E0; -#else -static const char jyasinzou_room_8DL_0028E0[] __attribute__((aligned (2))) = djyasinzou_room_8DL_0028E0; -#endif - -#define djyasinzou_room_8Tex_004E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_004E50" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_004E50[] = djyasinzou_room_8Tex_004E50; -#else -static const char jyasinzou_room_8Tex_004E50[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_004E50; -#endif - -#define djyasinzou_room_8DL_002B90 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_002B90" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_002B90[] = djyasinzou_room_8DL_002B90; -#else -static const char jyasinzou_room_8DL_002B90[] __attribute__((aligned (2))) = djyasinzou_room_8DL_002B90; -#endif - -#define djyasinzou_room_8DL_002D70 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_002D70" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_002D70[] = djyasinzou_room_8DL_002D70; -#else -static const char jyasinzou_room_8DL_002D70[] __attribute__((aligned (2))) = djyasinzou_room_8DL_002D70; -#endif - -#define djyasinzou_room_8Tex_004250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_004250" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8Tex_004250[] = djyasinzou_room_8Tex_004250; -#else -static const char jyasinzou_room_8Tex_004250[] __attribute__((aligned (2))) = djyasinzou_room_8Tex_004250; -#endif - -#define djyasinzou_room_8DL_007ED0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_007ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_8DL_007ED0[] = djyasinzou_room_8DL_007ED0; -#else -static const char jyasinzou_room_8DL_007ED0[] __attribute__((aligned (2))) = djyasinzou_room_8DL_007ED0; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_8DL_0009F0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_0009F0" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_0009F0[] = djyasinzou_room_8DL_0009F0; + +#define djyasinzou_room_8Tex_007250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_007250" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_007250[] = djyasinzou_room_8Tex_007250; + +#define djyasinzou_room_8DL_0018D8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_0018D8" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_0018D8[] = djyasinzou_room_8DL_0018D8; + +#define djyasinzou_room_8Tex_006A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_006A50" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_006A50[] = djyasinzou_room_8Tex_006A50; + +#define djyasinzou_room_8Tex_005650 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_005650" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_005650[] = djyasinzou_room_8Tex_005650; + +#define djyasinzou_room_8Tex_006250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_006250" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_006250[] = djyasinzou_room_8Tex_006250; + +#define djyasinzou_room_8DL_0036E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_0036E8" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_0036E8[] = djyasinzou_room_8DL_0036E8; + +#define djyasinzou_room_8Tex_005E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_005E50" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_005E50[] = djyasinzou_room_8Tex_005E50; + +#define djyasinzou_room_8Tex_004A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_004A50" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_004A50[] = djyasinzou_room_8Tex_004A50; + +#define djyasinzou_room_8DL_002350 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_002350" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_002350[] = djyasinzou_room_8DL_002350; + +#define djyasinzou_room_8DL_002720 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_002720" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_002720[] = djyasinzou_room_8DL_002720; + +#define djyasinzou_room_8Tex_003A50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_003A50" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_003A50[] = djyasinzou_room_8Tex_003A50; + +#define djyasinzou_room_8DL_0028E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_0028E0" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_0028E0[] = djyasinzou_room_8DL_0028E0; + +#define djyasinzou_room_8Tex_004E50 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_004E50" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_004E50[] = djyasinzou_room_8Tex_004E50; + +#define djyasinzou_room_8DL_002B90 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_002B90" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_002B90[] = djyasinzou_room_8DL_002B90; + +#define djyasinzou_room_8DL_002D70 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_002D70" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_002D70[] = djyasinzou_room_8DL_002D70; + +#define djyasinzou_room_8Tex_004250 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8Tex_004250" +static const ALIGN_ASSET(2) char jyasinzou_room_8Tex_004250[] = djyasinzou_room_8Tex_004250; + +#define djyasinzou_room_8DL_007ED0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_8DL_007ED0" +static const ALIGN_ASSET(2) char jyasinzou_room_8DL_007ED0[] = djyasinzou_room_8DL_007ED0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_9.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_9.h index 67cf5627a..3ef2b145e 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_9.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_room_9.h @@ -1,93 +1,42 @@ #pragma once -#define djyasinzou_room_9DL_0014E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_0014E0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9DL_0014E0[] = djyasinzou_room_9DL_0014E0; -#else -static const char jyasinzou_room_9DL_0014E0[] __attribute__((aligned (2))) = djyasinzou_room_9DL_0014E0; -#endif - -#define djyasinzou_room_9Tex_0045C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_0045C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9Tex_0045C8[] = djyasinzou_room_9Tex_0045C8; -#else -static const char jyasinzou_room_9Tex_0045C8[] __attribute__((aligned (2))) = djyasinzou_room_9Tex_0045C8; -#endif - -#define djyasinzou_room_9Tex_003DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_003DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9Tex_003DC8[] = djyasinzou_room_9Tex_003DC8; -#else -static const char jyasinzou_room_9Tex_003DC8[] __attribute__((aligned (2))) = djyasinzou_room_9Tex_003DC8; -#endif - -#define djyasinzou_room_9Tex_0051C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_0051C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9Tex_0051C8[] = djyasinzou_room_9Tex_0051C8; -#else -static const char jyasinzou_room_9Tex_0051C8[] __attribute__((aligned (2))) = djyasinzou_room_9Tex_0051C8; -#endif - -#define djyasinzou_room_9Tex_0055C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_0055C8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9Tex_0055C8[] = djyasinzou_room_9Tex_0055C8; -#else -static const char jyasinzou_room_9Tex_0055C8[] __attribute__((aligned (2))) = djyasinzou_room_9Tex_0055C8; -#endif - -#define djyasinzou_room_9DL_001FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_001FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9DL_001FE8[] = djyasinzou_room_9DL_001FE8; -#else -static const char jyasinzou_room_9DL_001FE8[] __attribute__((aligned (2))) = djyasinzou_room_9DL_001FE8; -#endif - -#define djyasinzou_room_9Tex_002DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_002DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9Tex_002DC8[] = djyasinzou_room_9Tex_002DC8; -#else -static const char jyasinzou_room_9Tex_002DC8[] __attribute__((aligned (2))) = djyasinzou_room_9Tex_002DC8; -#endif - -#define djyasinzou_room_9Tex_004DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_004DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9Tex_004DC8[] = djyasinzou_room_9Tex_004DC8; -#else -static const char jyasinzou_room_9Tex_004DC8[] __attribute__((aligned (2))) = djyasinzou_room_9Tex_004DC8; -#endif - -#define djyasinzou_room_9DL_002268 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_002268" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9DL_002268[] = djyasinzou_room_9DL_002268; -#else -static const char jyasinzou_room_9DL_002268[] __attribute__((aligned (2))) = djyasinzou_room_9DL_002268; -#endif - -#define djyasinzou_room_9DL_0024E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9DL_0024E8[] = djyasinzou_room_9DL_0024E8; -#else -static const char jyasinzou_room_9DL_0024E8[] __attribute__((aligned (2))) = djyasinzou_room_9DL_0024E8; -#endif - -#define djyasinzou_room_9DL_002768 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_002768" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9DL_002768[] = djyasinzou_room_9DL_002768; -#else -static const char jyasinzou_room_9DL_002768[] __attribute__((aligned (2))) = djyasinzou_room_9DL_002768; -#endif - -#define djyasinzou_room_9DL_0029E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_0029E8" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9DL_0029E8[] = djyasinzou_room_9DL_0029E8; -#else -static const char jyasinzou_room_9DL_0029E8[] __attribute__((aligned (2))) = djyasinzou_room_9DL_0029E8; -#endif - -#define djyasinzou_room_9DL_002C68 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_002C68" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_room_9DL_002C68[] = djyasinzou_room_9DL_002C68; -#else -static const char jyasinzou_room_9DL_002C68[] __attribute__((aligned (2))) = djyasinzou_room_9DL_002C68; -#endif - +#include "align_asset_macro.h" + +#define djyasinzou_room_9DL_0014E0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_0014E0" +static const ALIGN_ASSET(2) char jyasinzou_room_9DL_0014E0[] = djyasinzou_room_9DL_0014E0; + +#define djyasinzou_room_9Tex_0045C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_0045C8" +static const ALIGN_ASSET(2) char jyasinzou_room_9Tex_0045C8[] = djyasinzou_room_9Tex_0045C8; + +#define djyasinzou_room_9Tex_003DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_003DC8" +static const ALIGN_ASSET(2) char jyasinzou_room_9Tex_003DC8[] = djyasinzou_room_9Tex_003DC8; + +#define djyasinzou_room_9Tex_0051C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_0051C8" +static const ALIGN_ASSET(2) char jyasinzou_room_9Tex_0051C8[] = djyasinzou_room_9Tex_0051C8; + +#define djyasinzou_room_9Tex_0055C8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_0055C8" +static const ALIGN_ASSET(2) char jyasinzou_room_9Tex_0055C8[] = djyasinzou_room_9Tex_0055C8; + +#define djyasinzou_room_9DL_001FE8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_001FE8" +static const ALIGN_ASSET(2) char jyasinzou_room_9DL_001FE8[] = djyasinzou_room_9DL_001FE8; + +#define djyasinzou_room_9Tex_002DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_002DC8" +static const ALIGN_ASSET(2) char jyasinzou_room_9Tex_002DC8[] = djyasinzou_room_9Tex_002DC8; + +#define djyasinzou_room_9Tex_004DC8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9Tex_004DC8" +static const ALIGN_ASSET(2) char jyasinzou_room_9Tex_004DC8[] = djyasinzou_room_9Tex_004DC8; + +#define djyasinzou_room_9DL_002268 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_002268" +static const ALIGN_ASSET(2) char jyasinzou_room_9DL_002268[] = djyasinzou_room_9DL_002268; + +#define djyasinzou_room_9DL_0024E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_0024E8" +static const ALIGN_ASSET(2) char jyasinzou_room_9DL_0024E8[] = djyasinzou_room_9DL_0024E8; + +#define djyasinzou_room_9DL_002768 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_002768" +static const ALIGN_ASSET(2) char jyasinzou_room_9DL_002768[] = djyasinzou_room_9DL_002768; + +#define djyasinzou_room_9DL_0029E8 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_0029E8" +static const ALIGN_ASSET(2) char jyasinzou_room_9DL_0029E8[] = djyasinzou_room_9DL_0029E8; + +#define djyasinzou_room_9DL_002C68 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_room_9DL_002C68" +static const ALIGN_ASSET(2) char jyasinzou_room_9DL_002C68[] = djyasinzou_room_9DL_002C68; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_scene.h b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_scene.h index 252880e46..7d82db3ea 100644 --- a/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_scene.h +++ b/soh/assets/scenes/dungeons/jyasinzou/jyasinzou_scene.h @@ -1,72 +1,33 @@ #pragma once -#define dgSpiritTempleDayEntranceTex "__OTR__scenes/nonmq/jyasinzou_scene/gSpiritTempleDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleDayEntranceTex[] = dgSpiritTempleDayEntranceTex; -#else -static const char gSpiritTempleDayEntranceTex[] __attribute__((aligned (2))) = dgSpiritTempleDayEntranceTex; -#endif - -#define dgSpiritTempleNightEntranceTex "__OTR__scenes/nonmq/jyasinzou_scene/gSpiritTempleNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleNightEntranceTex[] = dgSpiritTempleNightEntranceTex; -#else -static const char gSpiritTempleNightEntranceTex[] __attribute__((aligned (2))) = dgSpiritTempleNightEntranceTex; -#endif - -#define djyasinzou_sceneCollisionHeader_01680C "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneCollisionHeader_01680C" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_sceneCollisionHeader_01680C[] = djyasinzou_sceneCollisionHeader_01680C; -#else -static const char jyasinzou_sceneCollisionHeader_01680C[] __attribute__((aligned (2))) = djyasinzou_sceneCollisionHeader_01680C; -#endif - -#define djyasinzou_sceneTLUT_017BE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTLUT_017BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_sceneTLUT_017BE0[] = djyasinzou_sceneTLUT_017BE0; -#else -static const char jyasinzou_sceneTLUT_017BE0[] __attribute__((aligned (2))) = djyasinzou_sceneTLUT_017BE0; -#endif - -#define djyasinzou_sceneTLUT_018000 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTLUT_018000" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_sceneTLUT_018000[] = djyasinzou_sceneTLUT_018000; -#else -static const char jyasinzou_sceneTLUT_018000[] __attribute__((aligned (2))) = djyasinzou_sceneTLUT_018000; -#endif - -#define djyasinzou_sceneTex_019320 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTex_019320" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_sceneTex_019320[] = djyasinzou_sceneTex_019320; -#else -static const char jyasinzou_sceneTex_019320[] __attribute__((aligned (2))) = djyasinzou_sceneTex_019320; -#endif - -#define djyasinzou_sceneTex_018820 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTex_018820" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_sceneTex_018820[] = djyasinzou_sceneTex_018820; -#else -static const char jyasinzou_sceneTex_018820[] __attribute__((aligned (2))) = djyasinzou_sceneTex_018820; -#endif - -#define djyasinzou_sceneTLUT_017DE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTLUT_017DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_sceneTLUT_017DE0[] = djyasinzou_sceneTLUT_017DE0; -#else -static const char jyasinzou_sceneTLUT_017DE0[] __attribute__((aligned (2))) = djyasinzou_sceneTLUT_017DE0; -#endif - -#define djyasinzou_sceneTLUT_017FE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTLUT_017FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_sceneTLUT_017FE0[] = djyasinzou_sceneTLUT_017FE0; -#else -static const char jyasinzou_sceneTLUT_017FE0[] __attribute__((aligned (2))) = djyasinzou_sceneTLUT_017FE0; -#endif - -#define djyasinzou_sceneTex_019120 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTex_019120" -#ifdef _WIN32 -static const __declspec(align(2)) char jyasinzou_sceneTex_019120[] = djyasinzou_sceneTex_019120; -#else -static const char jyasinzou_sceneTex_019120[] __attribute__((aligned (2))) = djyasinzou_sceneTex_019120; -#endif - +#include "align_asset_macro.h" + +#define dgSpiritTempleDayEntranceTex "__OTR__scenes/nonmq/jyasinzou_scene/gSpiritTempleDayEntranceTex" +static const ALIGN_ASSET(2) char gSpiritTempleDayEntranceTex[] = dgSpiritTempleDayEntranceTex; + +#define dgSpiritTempleNightEntranceTex "__OTR__scenes/nonmq/jyasinzou_scene/gSpiritTempleNightEntranceTex" +static const ALIGN_ASSET(2) char gSpiritTempleNightEntranceTex[] = dgSpiritTempleNightEntranceTex; + +#define djyasinzou_sceneCollisionHeader_01680C "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneCollisionHeader_01680C" +static const ALIGN_ASSET(2) char jyasinzou_sceneCollisionHeader_01680C[] = djyasinzou_sceneCollisionHeader_01680C; + +#define djyasinzou_sceneTLUT_017BE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTLUT_017BE0" +static const ALIGN_ASSET(2) char jyasinzou_sceneTLUT_017BE0[] = djyasinzou_sceneTLUT_017BE0; + +#define djyasinzou_sceneTLUT_018000 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTLUT_018000" +static const ALIGN_ASSET(2) char jyasinzou_sceneTLUT_018000[] = djyasinzou_sceneTLUT_018000; + +#define djyasinzou_sceneTex_019320 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTex_019320" +static const ALIGN_ASSET(2) char jyasinzou_sceneTex_019320[] = djyasinzou_sceneTex_019320; + +#define djyasinzou_sceneTex_018820 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTex_018820" +static const ALIGN_ASSET(2) char jyasinzou_sceneTex_018820[] = djyasinzou_sceneTex_018820; + +#define djyasinzou_sceneTLUT_017DE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTLUT_017DE0" +static const ALIGN_ASSET(2) char jyasinzou_sceneTLUT_017DE0[] = djyasinzou_sceneTLUT_017DE0; + +#define djyasinzou_sceneTLUT_017FE0 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTLUT_017FE0" +static const ALIGN_ASSET(2) char jyasinzou_sceneTLUT_017FE0[] = djyasinzou_sceneTLUT_017FE0; + +#define djyasinzou_sceneTex_019120 "__OTR__scenes/nonmq/jyasinzou_scene/jyasinzou_sceneTex_019120" +static const ALIGN_ASSET(2) char jyasinzou_sceneTex_019120[] = djyasinzou_sceneTex_019120; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_0.h b/soh/assets/scenes/dungeons/men/men_room_0.h index 69a3722f9..9487fa1cc 100644 --- a/soh/assets/scenes/dungeons/men/men_room_0.h +++ b/soh/assets/scenes/dungeons/men/men_room_0.h @@ -1,135 +1,60 @@ #pragma once -#define dgMenDL_008118 "__OTR__scenes/nonmq/men_scene/gMenDL_008118" -#ifdef _WIN32 -static const __declspec(align(2)) char gMenDL_008118[] = dgMenDL_008118; -#else -static const char gMenDL_008118[] __attribute__((aligned (2))) = dgMenDL_008118; -#endif - -#define dgMenDL_00FF78 "__OTR__scenes/nonmq/men_scene/gMenDL_00FF78" -#ifdef _WIN32 -static const __declspec(align(2)) char gMenDL_00FF78[] = dgMenDL_00FF78; -#else -static const char gMenDL_00FF78[] __attribute__((aligned (2))) = dgMenDL_00FF78; -#endif - -#define dmen_room_0DL_00FEA0 "__OTR__scenes/nonmq/men_scene/men_room_0DL_00FEA0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0DL_00FEA0[] = dmen_room_0DL_00FEA0; -#else -static const char men_room_0DL_00FEA0[] __attribute__((aligned (2))) = dmen_room_0DL_00FEA0; -#endif - -#define dmen_room_0DL_002AD0 "__OTR__scenes/nonmq/men_scene/men_room_0DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0DL_002AD0[] = dmen_room_0DL_002AD0; -#else -static const char men_room_0DL_002AD0[] __attribute__((aligned (2))) = dmen_room_0DL_002AD0; -#endif - -#define dmen_room_0Tex_00ED38 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00ED38" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_00ED38[] = dmen_room_0Tex_00ED38; -#else -static const char men_room_0Tex_00ED38[] __attribute__((aligned (2))) = dmen_room_0Tex_00ED38; -#endif - -#define dmen_room_0Tex_00D538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00D538" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_00D538[] = dmen_room_0Tex_00D538; -#else -static const char men_room_0Tex_00D538[] __attribute__((aligned (2))) = dmen_room_0Tex_00D538; -#endif - -#define dmen_room_0Tex_008138 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_008138" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_008138[] = dmen_room_0Tex_008138; -#else -static const char men_room_0Tex_008138[] __attribute__((aligned (2))) = dmen_room_0Tex_008138; -#endif - -#define dmen_room_0Tex_00F538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00F538" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_00F538[] = dmen_room_0Tex_00F538; -#else -static const char men_room_0Tex_00F538[] __attribute__((aligned (2))) = dmen_room_0Tex_00F538; -#endif - -#define dmen_room_0Tex_00BD38 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00BD38" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_00BD38[] = dmen_room_0Tex_00BD38; -#else -static const char men_room_0Tex_00BD38[] __attribute__((aligned (2))) = dmen_room_0Tex_00BD38; -#endif - -#define dmen_room_0Tex_00B538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00B538" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_00B538[] = dmen_room_0Tex_00B538; -#else -static const char men_room_0Tex_00B538[] __attribute__((aligned (2))) = dmen_room_0Tex_00B538; -#endif - -#define dmen_room_0Tex_009D38 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_009D38" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_009D38[] = dmen_room_0Tex_009D38; -#else -static const char men_room_0Tex_009D38[] __attribute__((aligned (2))) = dmen_room_0Tex_009D38; -#endif - -#define dmen_room_0Tex_009138 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_009138" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_009138[] = dmen_room_0Tex_009138; -#else -static const char men_room_0Tex_009138[] __attribute__((aligned (2))) = dmen_room_0Tex_009138; -#endif - -#define dmen_room_0DL_0066D0 "__OTR__scenes/nonmq/men_scene/men_room_0DL_0066D0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0DL_0066D0[] = dmen_room_0DL_0066D0; -#else -static const char men_room_0DL_0066D0[] __attribute__((aligned (2))) = dmen_room_0DL_0066D0; -#endif - -#define dmen_room_0Tex_00DD38 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00DD38" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_00DD38[] = dmen_room_0Tex_00DD38; -#else -static const char men_room_0Tex_00DD38[] __attribute__((aligned (2))) = dmen_room_0Tex_00DD38; -#endif - -#define dmen_room_0Tex_009538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_009538" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_009538[] = dmen_room_0Tex_009538; -#else -static const char men_room_0Tex_009538[] __attribute__((aligned (2))) = dmen_room_0Tex_009538; -#endif - -#define dmen_room_0Tex_00C538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00C538" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_00C538[] = dmen_room_0Tex_00C538; -#else -static const char men_room_0Tex_00C538[] __attribute__((aligned (2))) = dmen_room_0Tex_00C538; -#endif - -#define dmen_room_0Tex_00A538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00A538" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_00A538[] = dmen_room_0Tex_00A538; -#else -static const char men_room_0Tex_00A538[] __attribute__((aligned (2))) = dmen_room_0Tex_00A538; -#endif - -#define dmen_room_0DL_007FD8 "__OTR__scenes/nonmq/men_scene/men_room_0DL_007FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0DL_007FD8[] = dmen_room_0DL_007FD8; -#else -static const char men_room_0DL_007FD8[] __attribute__((aligned (2))) = dmen_room_0DL_007FD8; -#endif - -#define dmen_room_0Tex_008938 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_008938" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_0Tex_008938[] = dmen_room_0Tex_008938; -#else -static const char men_room_0Tex_008938[] __attribute__((aligned (2))) = dmen_room_0Tex_008938; -#endif - +#include "align_asset_macro.h" + +#define dgMenDL_008118 "__OTR__scenes/nonmq/men_scene/gMenDL_008118" +static const ALIGN_ASSET(2) char gMenDL_008118[] = dgMenDL_008118; + +#define dgMenDL_00FF78 "__OTR__scenes/nonmq/men_scene/gMenDL_00FF78" +static const ALIGN_ASSET(2) char gMenDL_00FF78[] = dgMenDL_00FF78; + +#define dmen_room_0DL_00FEA0 "__OTR__scenes/nonmq/men_scene/men_room_0DL_00FEA0" +static const ALIGN_ASSET(2) char men_room_0DL_00FEA0[] = dmen_room_0DL_00FEA0; + +#define dmen_room_0DL_002AD0 "__OTR__scenes/nonmq/men_scene/men_room_0DL_002AD0" +static const ALIGN_ASSET(2) char men_room_0DL_002AD0[] = dmen_room_0DL_002AD0; + +#define dmen_room_0Tex_00ED38 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00ED38" +static const ALIGN_ASSET(2) char men_room_0Tex_00ED38[] = dmen_room_0Tex_00ED38; + +#define dmen_room_0Tex_00D538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00D538" +static const ALIGN_ASSET(2) char men_room_0Tex_00D538[] = dmen_room_0Tex_00D538; + +#define dmen_room_0Tex_008138 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_008138" +static const ALIGN_ASSET(2) char men_room_0Tex_008138[] = dmen_room_0Tex_008138; + +#define dmen_room_0Tex_00F538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00F538" +static const ALIGN_ASSET(2) char men_room_0Tex_00F538[] = dmen_room_0Tex_00F538; + +#define dmen_room_0Tex_00BD38 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00BD38" +static const ALIGN_ASSET(2) char men_room_0Tex_00BD38[] = dmen_room_0Tex_00BD38; + +#define dmen_room_0Tex_00B538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00B538" +static const ALIGN_ASSET(2) char men_room_0Tex_00B538[] = dmen_room_0Tex_00B538; + +#define dmen_room_0Tex_009D38 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_009D38" +static const ALIGN_ASSET(2) char men_room_0Tex_009D38[] = dmen_room_0Tex_009D38; + +#define dmen_room_0Tex_009138 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_009138" +static const ALIGN_ASSET(2) char men_room_0Tex_009138[] = dmen_room_0Tex_009138; + +#define dmen_room_0DL_0066D0 "__OTR__scenes/nonmq/men_scene/men_room_0DL_0066D0" +static const ALIGN_ASSET(2) char men_room_0DL_0066D0[] = dmen_room_0DL_0066D0; + +#define dmen_room_0Tex_00DD38 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00DD38" +static const ALIGN_ASSET(2) char men_room_0Tex_00DD38[] = dmen_room_0Tex_00DD38; + +#define dmen_room_0Tex_009538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_009538" +static const ALIGN_ASSET(2) char men_room_0Tex_009538[] = dmen_room_0Tex_009538; + +#define dmen_room_0Tex_00C538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00C538" +static const ALIGN_ASSET(2) char men_room_0Tex_00C538[] = dmen_room_0Tex_00C538; + +#define dmen_room_0Tex_00A538 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_00A538" +static const ALIGN_ASSET(2) char men_room_0Tex_00A538[] = dmen_room_0Tex_00A538; + +#define dmen_room_0DL_007FD8 "__OTR__scenes/nonmq/men_scene/men_room_0DL_007FD8" +static const ALIGN_ASSET(2) char men_room_0DL_007FD8[] = dmen_room_0DL_007FD8; + +#define dmen_room_0Tex_008938 "__OTR__scenes/nonmq/men_scene/men_room_0Tex_008938" +static const ALIGN_ASSET(2) char men_room_0Tex_008938[] = dmen_room_0Tex_008938; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_1.h b/soh/assets/scenes/dungeons/men/men_room_1.h index 41a70c92b..18bdb2b7c 100644 --- a/soh/assets/scenes/dungeons/men/men_room_1.h +++ b/soh/assets/scenes/dungeons/men/men_room_1.h @@ -1,142 +1,63 @@ #pragma once -#define dmen_room_1DL_001DA8 "__OTR__scenes/nonmq/men_scene/men_room_1DL_001DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_001DA8[] = dmen_room_1DL_001DA8; -#else -static const char men_room_1DL_001DA8[] __attribute__((aligned (2))) = dmen_room_1DL_001DA8; -#endif - -#define dmen_room_1Tex_008A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_008A70" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_008A70[] = dmen_room_1Tex_008A70; -#else -static const char men_room_1Tex_008A70[] __attribute__((aligned (2))) = dmen_room_1Tex_008A70; -#endif - -#define dmen_room_1Tex_005A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_005A70" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_005A70[] = dmen_room_1Tex_005A70; -#else -static const char men_room_1Tex_005A70[] __attribute__((aligned (2))) = dmen_room_1Tex_005A70; -#endif - -#define dmen_room_1DL_0023A8 "__OTR__scenes/nonmq/men_scene/men_room_1DL_0023A8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_0023A8[] = dmen_room_1DL_0023A8; -#else -static const char men_room_1DL_0023A8[] __attribute__((aligned (2))) = dmen_room_1DL_0023A8; -#endif - -#define dmen_room_1Tex_004A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_004A70" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_004A70[] = dmen_room_1Tex_004A70; -#else -static const char men_room_1Tex_004A70[] __attribute__((aligned (2))) = dmen_room_1Tex_004A70; -#endif - -#define dmen_room_1Tex_005270 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_005270" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_005270[] = dmen_room_1Tex_005270; -#else -static const char men_room_1Tex_005270[] __attribute__((aligned (2))) = dmen_room_1Tex_005270; -#endif - -#define dmen_room_1DL_002BD0 "__OTR__scenes/nonmq/men_scene/men_room_1DL_002BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_002BD0[] = dmen_room_1DL_002BD0; -#else -static const char men_room_1DL_002BD0[] __attribute__((aligned (2))) = dmen_room_1DL_002BD0; -#endif - -#define dmen_room_1Tex_006270 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_006270" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_006270[] = dmen_room_1Tex_006270; -#else -static const char men_room_1Tex_006270[] __attribute__((aligned (2))) = dmen_room_1Tex_006270; -#endif - -#define dmen_room_1DL_002FC8 "__OTR__scenes/nonmq/men_scene/men_room_1DL_002FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_002FC8[] = dmen_room_1DL_002FC8; -#else -static const char men_room_1DL_002FC8[] __attribute__((aligned (2))) = dmen_room_1DL_002FC8; -#endif - -#define dmen_room_1DL_003528 "__OTR__scenes/nonmq/men_scene/men_room_1DL_003528" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_003528[] = dmen_room_1DL_003528; -#else -static const char men_room_1DL_003528[] __attribute__((aligned (2))) = dmen_room_1DL_003528; -#endif - -#define dmen_room_1DL_0037B0 "__OTR__scenes/nonmq/men_scene/men_room_1DL_0037B0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_0037B0[] = dmen_room_1DL_0037B0; -#else -static const char men_room_1DL_0037B0[] __attribute__((aligned (2))) = dmen_room_1DL_0037B0; -#endif - -#define dmen_room_1DL_003C88 "__OTR__scenes/nonmq/men_scene/men_room_1DL_003C88" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_003C88[] = dmen_room_1DL_003C88; -#else -static const char men_room_1DL_003C88[] __attribute__((aligned (2))) = dmen_room_1DL_003C88; -#endif - -#define dmen_room_1DL_003F40 "__OTR__scenes/nonmq/men_scene/men_room_1DL_003F40" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_003F40[] = dmen_room_1DL_003F40; -#else -static const char men_room_1DL_003F40[] __attribute__((aligned (2))) = dmen_room_1DL_003F40; -#endif - -#define dmen_room_1Tex_004270 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_004270" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_004270[] = dmen_room_1Tex_004270; -#else -static const char men_room_1Tex_004270[] __attribute__((aligned (2))) = dmen_room_1Tex_004270; -#endif - -#define dmen_room_1DL_004150 "__OTR__scenes/nonmq/men_scene/men_room_1DL_004150" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_004150[] = dmen_room_1DL_004150; -#else -static const char men_room_1DL_004150[] __attribute__((aligned (2))) = dmen_room_1DL_004150; -#endif - -#define dmen_room_1Tex_006A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_006A70" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_006A70[] = dmen_room_1Tex_006A70; -#else -static const char men_room_1Tex_006A70[] __attribute__((aligned (2))) = dmen_room_1Tex_006A70; -#endif - -#define dmen_room_1DL_001AB0 "__OTR__scenes/nonmq/men_scene/men_room_1DL_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_001AB0[] = dmen_room_1DL_001AB0; -#else -static const char men_room_1DL_001AB0[] __attribute__((aligned (2))) = dmen_room_1DL_001AB0; -#endif - -#define dmen_room_1Tex_007A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_007A70" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_007A70[] = dmen_room_1Tex_007A70; -#else -static const char men_room_1Tex_007A70[] __attribute__((aligned (2))) = dmen_room_1Tex_007A70; -#endif - -#define dmen_room_1DL_000B70 "__OTR__scenes/nonmq/men_scene/men_room_1DL_000B70" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1DL_000B70[] = dmen_room_1DL_000B70; -#else -static const char men_room_1DL_000B70[] __attribute__((aligned (2))) = dmen_room_1DL_000B70; -#endif - -#define dmen_room_1Tex_007270 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_007270" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_1Tex_007270[] = dmen_room_1Tex_007270; -#else -static const char men_room_1Tex_007270[] __attribute__((aligned (2))) = dmen_room_1Tex_007270; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_1DL_001DA8 "__OTR__scenes/nonmq/men_scene/men_room_1DL_001DA8" +static const ALIGN_ASSET(2) char men_room_1DL_001DA8[] = dmen_room_1DL_001DA8; + +#define dmen_room_1Tex_008A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_008A70" +static const ALIGN_ASSET(2) char men_room_1Tex_008A70[] = dmen_room_1Tex_008A70; + +#define dmen_room_1Tex_005A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_005A70" +static const ALIGN_ASSET(2) char men_room_1Tex_005A70[] = dmen_room_1Tex_005A70; + +#define dmen_room_1DL_0023A8 "__OTR__scenes/nonmq/men_scene/men_room_1DL_0023A8" +static const ALIGN_ASSET(2) char men_room_1DL_0023A8[] = dmen_room_1DL_0023A8; + +#define dmen_room_1Tex_004A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_004A70" +static const ALIGN_ASSET(2) char men_room_1Tex_004A70[] = dmen_room_1Tex_004A70; + +#define dmen_room_1Tex_005270 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_005270" +static const ALIGN_ASSET(2) char men_room_1Tex_005270[] = dmen_room_1Tex_005270; + +#define dmen_room_1DL_002BD0 "__OTR__scenes/nonmq/men_scene/men_room_1DL_002BD0" +static const ALIGN_ASSET(2) char men_room_1DL_002BD0[] = dmen_room_1DL_002BD0; + +#define dmen_room_1Tex_006270 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_006270" +static const ALIGN_ASSET(2) char men_room_1Tex_006270[] = dmen_room_1Tex_006270; + +#define dmen_room_1DL_002FC8 "__OTR__scenes/nonmq/men_scene/men_room_1DL_002FC8" +static const ALIGN_ASSET(2) char men_room_1DL_002FC8[] = dmen_room_1DL_002FC8; + +#define dmen_room_1DL_003528 "__OTR__scenes/nonmq/men_scene/men_room_1DL_003528" +static const ALIGN_ASSET(2) char men_room_1DL_003528[] = dmen_room_1DL_003528; + +#define dmen_room_1DL_0037B0 "__OTR__scenes/nonmq/men_scene/men_room_1DL_0037B0" +static const ALIGN_ASSET(2) char men_room_1DL_0037B0[] = dmen_room_1DL_0037B0; + +#define dmen_room_1DL_003C88 "__OTR__scenes/nonmq/men_scene/men_room_1DL_003C88" +static const ALIGN_ASSET(2) char men_room_1DL_003C88[] = dmen_room_1DL_003C88; + +#define dmen_room_1DL_003F40 "__OTR__scenes/nonmq/men_scene/men_room_1DL_003F40" +static const ALIGN_ASSET(2) char men_room_1DL_003F40[] = dmen_room_1DL_003F40; + +#define dmen_room_1Tex_004270 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_004270" +static const ALIGN_ASSET(2) char men_room_1Tex_004270[] = dmen_room_1Tex_004270; + +#define dmen_room_1DL_004150 "__OTR__scenes/nonmq/men_scene/men_room_1DL_004150" +static const ALIGN_ASSET(2) char men_room_1DL_004150[] = dmen_room_1DL_004150; + +#define dmen_room_1Tex_006A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_006A70" +static const ALIGN_ASSET(2) char men_room_1Tex_006A70[] = dmen_room_1Tex_006A70; + +#define dmen_room_1DL_001AB0 "__OTR__scenes/nonmq/men_scene/men_room_1DL_001AB0" +static const ALIGN_ASSET(2) char men_room_1DL_001AB0[] = dmen_room_1DL_001AB0; + +#define dmen_room_1Tex_007A70 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_007A70" +static const ALIGN_ASSET(2) char men_room_1Tex_007A70[] = dmen_room_1Tex_007A70; + +#define dmen_room_1DL_000B70 "__OTR__scenes/nonmq/men_scene/men_room_1DL_000B70" +static const ALIGN_ASSET(2) char men_room_1DL_000B70[] = dmen_room_1DL_000B70; + +#define dmen_room_1Tex_007270 "__OTR__scenes/nonmq/men_scene/men_room_1Tex_007270" +static const ALIGN_ASSET(2) char men_room_1Tex_007270[] = dmen_room_1Tex_007270; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_10.h b/soh/assets/scenes/dungeons/men/men_room_10.h index 10023f6f7..b5a9d6649 100644 --- a/soh/assets/scenes/dungeons/men/men_room_10.h +++ b/soh/assets/scenes/dungeons/men/men_room_10.h @@ -1,107 +1,48 @@ #pragma once -#define dmen_room_10DL_000280 "__OTR__scenes/nonmq/men_scene/men_room_10DL_000280" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10DL_000280[] = dmen_room_10DL_000280; -#else -static const char men_room_10DL_000280[] __attribute__((aligned (2))) = dmen_room_10DL_000280; -#endif - -#define dmen_room_10DL_000928 "__OTR__scenes/nonmq/men_scene/men_room_10DL_000928" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10DL_000928[] = dmen_room_10DL_000928; -#else -static const char men_room_10DL_000928[] __attribute__((aligned (2))) = dmen_room_10DL_000928; -#endif - -#define dmen_room_10Tex_004C48 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_004C48" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10Tex_004C48[] = dmen_room_10Tex_004C48; -#else -static const char men_room_10Tex_004C48[] __attribute__((aligned (2))) = dmen_room_10Tex_004C48; -#endif - -#define dmen_room_10DL_001398 "__OTR__scenes/nonmq/men_scene/men_room_10DL_001398" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10DL_001398[] = dmen_room_10DL_001398; -#else -static const char men_room_10DL_001398[] __attribute__((aligned (2))) = dmen_room_10DL_001398; -#endif - -#define dmen_room_10Tex_005448 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_005448" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10Tex_005448[] = dmen_room_10Tex_005448; -#else -static const char men_room_10Tex_005448[] __attribute__((aligned (2))) = dmen_room_10Tex_005448; -#endif - -#define dmen_room_10DL_000C78 "__OTR__scenes/nonmq/men_scene/men_room_10DL_000C78" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10DL_000C78[] = dmen_room_10DL_000C78; -#else -static const char men_room_10DL_000C78[] __attribute__((aligned (2))) = dmen_room_10DL_000C78; -#endif - -#define dmen_room_10DL_001AA8 "__OTR__scenes/nonmq/men_scene/men_room_10DL_001AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10DL_001AA8[] = dmen_room_10DL_001AA8; -#else -static const char men_room_10DL_001AA8[] __attribute__((aligned (2))) = dmen_room_10DL_001AA8; -#endif - -#define dmen_room_10Tex_002448 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_002448" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10Tex_002448[] = dmen_room_10Tex_002448; -#else -static const char men_room_10Tex_002448[] __attribute__((aligned (2))) = dmen_room_10Tex_002448; -#endif - -#define dmen_room_10Tex_003C48 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_003C48" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10Tex_003C48[] = dmen_room_10Tex_003C48; -#else -static const char men_room_10Tex_003C48[] __attribute__((aligned (2))) = dmen_room_10Tex_003C48; -#endif - -#define dmen_room_10DL_001EE8 "__OTR__scenes/nonmq/men_scene/men_room_10DL_001EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10DL_001EE8[] = dmen_room_10DL_001EE8; -#else -static const char men_room_10DL_001EE8[] __attribute__((aligned (2))) = dmen_room_10DL_001EE8; -#endif - -#define dmen_room_10Tex_002C48 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_002C48" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10Tex_002C48[] = dmen_room_10Tex_002C48; -#else -static const char men_room_10Tex_002C48[] __attribute__((aligned (2))) = dmen_room_10Tex_002C48; -#endif - -#define dmen_room_10DL_002138 "__OTR__scenes/nonmq/men_scene/men_room_10DL_002138" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10DL_002138[] = dmen_room_10DL_002138; -#else -static const char men_room_10DL_002138[] __attribute__((aligned (2))) = dmen_room_10DL_002138; -#endif - -#define dmen_room_10Tex_003448 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_003448" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10Tex_003448[] = dmen_room_10Tex_003448; -#else -static const char men_room_10Tex_003448[] __attribute__((aligned (2))) = dmen_room_10Tex_003448; -#endif - -#define dmen_room_10DL_002340 "__OTR__scenes/nonmq/men_scene/men_room_10DL_002340" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10DL_002340[] = dmen_room_10DL_002340; -#else -static const char men_room_10DL_002340[] __attribute__((aligned (2))) = dmen_room_10DL_002340; -#endif - -#define dmen_room_10Tex_004448 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_004448" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_10Tex_004448[] = dmen_room_10Tex_004448; -#else -static const char men_room_10Tex_004448[] __attribute__((aligned (2))) = dmen_room_10Tex_004448; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_10DL_000280 "__OTR__scenes/nonmq/men_scene/men_room_10DL_000280" +static const ALIGN_ASSET(2) char men_room_10DL_000280[] = dmen_room_10DL_000280; + +#define dmen_room_10DL_000928 "__OTR__scenes/nonmq/men_scene/men_room_10DL_000928" +static const ALIGN_ASSET(2) char men_room_10DL_000928[] = dmen_room_10DL_000928; + +#define dmen_room_10Tex_004C48 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_004C48" +static const ALIGN_ASSET(2) char men_room_10Tex_004C48[] = dmen_room_10Tex_004C48; + +#define dmen_room_10DL_001398 "__OTR__scenes/nonmq/men_scene/men_room_10DL_001398" +static const ALIGN_ASSET(2) char men_room_10DL_001398[] = dmen_room_10DL_001398; + +#define dmen_room_10Tex_005448 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_005448" +static const ALIGN_ASSET(2) char men_room_10Tex_005448[] = dmen_room_10Tex_005448; + +#define dmen_room_10DL_000C78 "__OTR__scenes/nonmq/men_scene/men_room_10DL_000C78" +static const ALIGN_ASSET(2) char men_room_10DL_000C78[] = dmen_room_10DL_000C78; + +#define dmen_room_10DL_001AA8 "__OTR__scenes/nonmq/men_scene/men_room_10DL_001AA8" +static const ALIGN_ASSET(2) char men_room_10DL_001AA8[] = dmen_room_10DL_001AA8; + +#define dmen_room_10Tex_002448 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_002448" +static const ALIGN_ASSET(2) char men_room_10Tex_002448[] = dmen_room_10Tex_002448; + +#define dmen_room_10Tex_003C48 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_003C48" +static const ALIGN_ASSET(2) char men_room_10Tex_003C48[] = dmen_room_10Tex_003C48; + +#define dmen_room_10DL_001EE8 "__OTR__scenes/nonmq/men_scene/men_room_10DL_001EE8" +static const ALIGN_ASSET(2) char men_room_10DL_001EE8[] = dmen_room_10DL_001EE8; + +#define dmen_room_10Tex_002C48 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_002C48" +static const ALIGN_ASSET(2) char men_room_10Tex_002C48[] = dmen_room_10Tex_002C48; + +#define dmen_room_10DL_002138 "__OTR__scenes/nonmq/men_scene/men_room_10DL_002138" +static const ALIGN_ASSET(2) char men_room_10DL_002138[] = dmen_room_10DL_002138; + +#define dmen_room_10Tex_003448 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_003448" +static const ALIGN_ASSET(2) char men_room_10Tex_003448[] = dmen_room_10Tex_003448; + +#define dmen_room_10DL_002340 "__OTR__scenes/nonmq/men_scene/men_room_10DL_002340" +static const ALIGN_ASSET(2) char men_room_10DL_002340[] = dmen_room_10DL_002340; + +#define dmen_room_10Tex_004448 "__OTR__scenes/nonmq/men_scene/men_room_10Tex_004448" +static const ALIGN_ASSET(2) char men_room_10Tex_004448[] = dmen_room_10Tex_004448; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_2.h b/soh/assets/scenes/dungeons/men/men_room_2.h index e0219e596..441b67ec0 100644 --- a/soh/assets/scenes/dungeons/men/men_room_2.h +++ b/soh/assets/scenes/dungeons/men/men_room_2.h @@ -1,79 +1,36 @@ #pragma once -#define dmen_room_2DL_000580 "__OTR__scenes/nonmq/men_scene/men_room_2DL_000580" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2DL_000580[] = dmen_room_2DL_000580; -#else -static const char men_room_2DL_000580[] __attribute__((aligned (2))) = dmen_room_2DL_000580; -#endif - -#define dmen_room_2Tex_004448 "__OTR__scenes/nonmq/men_scene/men_room_2Tex_004448" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2Tex_004448[] = dmen_room_2Tex_004448; -#else -static const char men_room_2Tex_004448[] __attribute__((aligned (2))) = dmen_room_2Tex_004448; -#endif - -#define dmen_room_2DL_001300 "__OTR__scenes/nonmq/men_scene/men_room_2DL_001300" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2DL_001300[] = dmen_room_2DL_001300; -#else -static const char men_room_2DL_001300[] __attribute__((aligned (2))) = dmen_room_2DL_001300; -#endif - -#define dmen_room_2DL_000940 "__OTR__scenes/nonmq/men_scene/men_room_2DL_000940" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2DL_000940[] = dmen_room_2DL_000940; -#else -static const char men_room_2DL_000940[] __attribute__((aligned (2))) = dmen_room_2DL_000940; -#endif - -#define dmen_room_2Tex_004C48 "__OTR__scenes/nonmq/men_scene/men_room_2Tex_004C48" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2Tex_004C48[] = dmen_room_2Tex_004C48; -#else -static const char men_room_2Tex_004C48[] __attribute__((aligned (2))) = dmen_room_2Tex_004C48; -#endif - -#define dmen_room_2DL_001C30 "__OTR__scenes/nonmq/men_scene/men_room_2DL_001C30" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2DL_001C30[] = dmen_room_2DL_001C30; -#else -static const char men_room_2DL_001C30[] __attribute__((aligned (2))) = dmen_room_2DL_001C30; -#endif - -#define dmen_room_2DL_0026E0 "__OTR__scenes/nonmq/men_scene/men_room_2DL_0026E0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2DL_0026E0[] = dmen_room_2DL_0026E0; -#else -static const char men_room_2DL_0026E0[] __attribute__((aligned (2))) = dmen_room_2DL_0026E0; -#endif - -#define dmen_room_2DL_002C30 "__OTR__scenes/nonmq/men_scene/men_room_2DL_002C30" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2DL_002C30[] = dmen_room_2DL_002C30; -#else -static const char men_room_2DL_002C30[] __attribute__((aligned (2))) = dmen_room_2DL_002C30; -#endif - -#define dmen_room_2DL_002FA0 "__OTR__scenes/nonmq/men_scene/men_room_2DL_002FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2DL_002FA0[] = dmen_room_2DL_002FA0; -#else -static const char men_room_2DL_002FA0[] __attribute__((aligned (2))) = dmen_room_2DL_002FA0; -#endif - -#define dmen_room_2DL_003928 "__OTR__scenes/nonmq/men_scene/men_room_2DL_003928" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2DL_003928[] = dmen_room_2DL_003928; -#else -static const char men_room_2DL_003928[] __attribute__((aligned (2))) = dmen_room_2DL_003928; -#endif - -#define dmen_room_2Tex_003C48 "__OTR__scenes/nonmq/men_scene/men_room_2Tex_003C48" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_2Tex_003C48[] = dmen_room_2Tex_003C48; -#else -static const char men_room_2Tex_003C48[] __attribute__((aligned (2))) = dmen_room_2Tex_003C48; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_2DL_000580 "__OTR__scenes/nonmq/men_scene/men_room_2DL_000580" +static const ALIGN_ASSET(2) char men_room_2DL_000580[] = dmen_room_2DL_000580; + +#define dmen_room_2Tex_004448 "__OTR__scenes/nonmq/men_scene/men_room_2Tex_004448" +static const ALIGN_ASSET(2) char men_room_2Tex_004448[] = dmen_room_2Tex_004448; + +#define dmen_room_2DL_001300 "__OTR__scenes/nonmq/men_scene/men_room_2DL_001300" +static const ALIGN_ASSET(2) char men_room_2DL_001300[] = dmen_room_2DL_001300; + +#define dmen_room_2DL_000940 "__OTR__scenes/nonmq/men_scene/men_room_2DL_000940" +static const ALIGN_ASSET(2) char men_room_2DL_000940[] = dmen_room_2DL_000940; + +#define dmen_room_2Tex_004C48 "__OTR__scenes/nonmq/men_scene/men_room_2Tex_004C48" +static const ALIGN_ASSET(2) char men_room_2Tex_004C48[] = dmen_room_2Tex_004C48; + +#define dmen_room_2DL_001C30 "__OTR__scenes/nonmq/men_scene/men_room_2DL_001C30" +static const ALIGN_ASSET(2) char men_room_2DL_001C30[] = dmen_room_2DL_001C30; + +#define dmen_room_2DL_0026E0 "__OTR__scenes/nonmq/men_scene/men_room_2DL_0026E0" +static const ALIGN_ASSET(2) char men_room_2DL_0026E0[] = dmen_room_2DL_0026E0; + +#define dmen_room_2DL_002C30 "__OTR__scenes/nonmq/men_scene/men_room_2DL_002C30" +static const ALIGN_ASSET(2) char men_room_2DL_002C30[] = dmen_room_2DL_002C30; + +#define dmen_room_2DL_002FA0 "__OTR__scenes/nonmq/men_scene/men_room_2DL_002FA0" +static const ALIGN_ASSET(2) char men_room_2DL_002FA0[] = dmen_room_2DL_002FA0; + +#define dmen_room_2DL_003928 "__OTR__scenes/nonmq/men_scene/men_room_2DL_003928" +static const ALIGN_ASSET(2) char men_room_2DL_003928[] = dmen_room_2DL_003928; + +#define dmen_room_2Tex_003C48 "__OTR__scenes/nonmq/men_scene/men_room_2Tex_003C48" +static const ALIGN_ASSET(2) char men_room_2Tex_003C48[] = dmen_room_2Tex_003C48; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_3.h b/soh/assets/scenes/dungeons/men/men_room_3.h index 4356277ca..c8ec308f2 100644 --- a/soh/assets/scenes/dungeons/men/men_room_3.h +++ b/soh/assets/scenes/dungeons/men/men_room_3.h @@ -1,79 +1,36 @@ #pragma once -#define dmen_room_3DL_001740 "__OTR__scenes/nonmq/men_scene/men_room_3DL_001740" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3DL_001740[] = dmen_room_3DL_001740; -#else -static const char men_room_3DL_001740[] __attribute__((aligned (2))) = dmen_room_3DL_001740; -#endif - -#define dmen_room_3Tex_004050 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_004050" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3Tex_004050[] = dmen_room_3Tex_004050; -#else -static const char men_room_3Tex_004050[] __attribute__((aligned (2))) = dmen_room_3Tex_004050; -#endif - -#define dmen_room_3Tex_003850 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_003850" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3Tex_003850[] = dmen_room_3Tex_003850; -#else -static const char men_room_3Tex_003850[] __attribute__((aligned (2))) = dmen_room_3Tex_003850; -#endif - -#define dmen_room_3Tex_007450 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_007450" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3Tex_007450[] = dmen_room_3Tex_007450; -#else -static const char men_room_3Tex_007450[] __attribute__((aligned (2))) = dmen_room_3Tex_007450; -#endif - -#define dmen_room_3Tex_005050 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_005050" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3Tex_005050[] = dmen_room_3Tex_005050; -#else -static const char men_room_3Tex_005050[] __attribute__((aligned (2))) = dmen_room_3Tex_005050; -#endif - -#define dmen_room_3Tex_005C50 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_005C50" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3Tex_005C50[] = dmen_room_3Tex_005C50; -#else -static const char men_room_3Tex_005C50[] __attribute__((aligned (2))) = dmen_room_3Tex_005C50; -#endif - -#define dmen_room_3Tex_006450 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_006450" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3Tex_006450[] = dmen_room_3Tex_006450; -#else -static const char men_room_3Tex_006450[] __attribute__((aligned (2))) = dmen_room_3Tex_006450; -#endif - -#define dmen_room_3Tex_005850 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3Tex_005850[] = dmen_room_3Tex_005850; -#else -static const char men_room_3Tex_005850[] __attribute__((aligned (2))) = dmen_room_3Tex_005850; -#endif - -#define dmen_room_3Tex_004850 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_004850" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3Tex_004850[] = dmen_room_3Tex_004850; -#else -static const char men_room_3Tex_004850[] __attribute__((aligned (2))) = dmen_room_3Tex_004850; -#endif - -#define dmen_room_3DL_002768 "__OTR__scenes/nonmq/men_scene/men_room_3DL_002768" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3DL_002768[] = dmen_room_3DL_002768; -#else -static const char men_room_3DL_002768[] __attribute__((aligned (2))) = dmen_room_3DL_002768; -#endif - -#define dmen_room_3DL_0031B8 "__OTR__scenes/nonmq/men_scene/men_room_3DL_0031B8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_3DL_0031B8[] = dmen_room_3DL_0031B8; -#else -static const char men_room_3DL_0031B8[] __attribute__((aligned (2))) = dmen_room_3DL_0031B8; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_3DL_001740 "__OTR__scenes/nonmq/men_scene/men_room_3DL_001740" +static const ALIGN_ASSET(2) char men_room_3DL_001740[] = dmen_room_3DL_001740; + +#define dmen_room_3Tex_004050 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_004050" +static const ALIGN_ASSET(2) char men_room_3Tex_004050[] = dmen_room_3Tex_004050; + +#define dmen_room_3Tex_003850 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_003850" +static const ALIGN_ASSET(2) char men_room_3Tex_003850[] = dmen_room_3Tex_003850; + +#define dmen_room_3Tex_007450 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_007450" +static const ALIGN_ASSET(2) char men_room_3Tex_007450[] = dmen_room_3Tex_007450; + +#define dmen_room_3Tex_005050 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_005050" +static const ALIGN_ASSET(2) char men_room_3Tex_005050[] = dmen_room_3Tex_005050; + +#define dmen_room_3Tex_005C50 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_005C50" +static const ALIGN_ASSET(2) char men_room_3Tex_005C50[] = dmen_room_3Tex_005C50; + +#define dmen_room_3Tex_006450 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_006450" +static const ALIGN_ASSET(2) char men_room_3Tex_006450[] = dmen_room_3Tex_006450; + +#define dmen_room_3Tex_005850 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_005850" +static const ALIGN_ASSET(2) char men_room_3Tex_005850[] = dmen_room_3Tex_005850; + +#define dmen_room_3Tex_004850 "__OTR__scenes/nonmq/men_scene/men_room_3Tex_004850" +static const ALIGN_ASSET(2) char men_room_3Tex_004850[] = dmen_room_3Tex_004850; + +#define dmen_room_3DL_002768 "__OTR__scenes/nonmq/men_scene/men_room_3DL_002768" +static const ALIGN_ASSET(2) char men_room_3DL_002768[] = dmen_room_3DL_002768; + +#define dmen_room_3DL_0031B8 "__OTR__scenes/nonmq/men_scene/men_room_3DL_0031B8" +static const ALIGN_ASSET(2) char men_room_3DL_0031B8[] = dmen_room_3DL_0031B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_4.h b/soh/assets/scenes/dungeons/men/men_room_4.h index a89636a8b..ead0c4629 100644 --- a/soh/assets/scenes/dungeons/men/men_room_4.h +++ b/soh/assets/scenes/dungeons/men/men_room_4.h @@ -1,100 +1,45 @@ #pragma once -#define dmen_room_4DL_003EF8 "__OTR__scenes/nonmq/men_scene/men_room_4DL_003EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4DL_003EF8[] = dmen_room_4DL_003EF8; -#else -static const char men_room_4DL_003EF8[] __attribute__((aligned (2))) = dmen_room_4DL_003EF8; -#endif - -#define dmen_room_4Tex_0099E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0099E0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4Tex_0099E0[] = dmen_room_4Tex_0099E0; -#else -static const char men_room_4Tex_0099E0[] __attribute__((aligned (2))) = dmen_room_4Tex_0099E0; -#endif - -#define dmen_room_4DL_0046B0 "__OTR__scenes/nonmq/men_scene/men_room_4DL_0046B0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4DL_0046B0[] = dmen_room_4DL_0046B0; -#else -static const char men_room_4DL_0046B0[] __attribute__((aligned (2))) = dmen_room_4DL_0046B0; -#endif - -#define dmen_room_4Tex_0071E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0071E0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4Tex_0071E0[] = dmen_room_4Tex_0071E0; -#else -static const char men_room_4Tex_0071E0[] __attribute__((aligned (2))) = dmen_room_4Tex_0071E0; -#endif - -#define dmen_room_4Tex_0061E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0061E0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4Tex_0061E0[] = dmen_room_4Tex_0061E0; -#else -static const char men_room_4Tex_0061E0[] __attribute__((aligned (2))) = dmen_room_4Tex_0061E0; -#endif - -#define dmen_room_4DL_004C30 "__OTR__scenes/nonmq/men_scene/men_room_4DL_004C30" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4DL_004C30[] = dmen_room_4DL_004C30; -#else -static const char men_room_4DL_004C30[] __attribute__((aligned (2))) = dmen_room_4DL_004C30; -#endif - -#define dmen_room_4DL_005068 "__OTR__scenes/nonmq/men_scene/men_room_4DL_005068" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4DL_005068[] = dmen_room_4DL_005068; -#else -static const char men_room_4DL_005068[] __attribute__((aligned (2))) = dmen_room_4DL_005068; -#endif - -#define dmen_room_4Tex_0051E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0051E0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4Tex_0051E0[] = dmen_room_4Tex_0051E0; -#else -static const char men_room_4Tex_0051E0[] __attribute__((aligned (2))) = dmen_room_4Tex_0051E0; -#endif - -#define dmen_room_4DL_000B10 "__OTR__scenes/nonmq/men_scene/men_room_4DL_000B10" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4DL_000B10[] = dmen_room_4DL_000B10; -#else -static const char men_room_4DL_000B10[] __attribute__((aligned (2))) = dmen_room_4DL_000B10; -#endif - -#define dmen_room_4Tex_0081E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0081E0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4Tex_0081E0[] = dmen_room_4Tex_0081E0; -#else -static const char men_room_4Tex_0081E0[] __attribute__((aligned (2))) = dmen_room_4Tex_0081E0; -#endif - -#define dmen_room_4DL_0015C8 "__OTR__scenes/nonmq/men_scene/men_room_4DL_0015C8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4DL_0015C8[] = dmen_room_4DL_0015C8; -#else -static const char men_room_4DL_0015C8[] __attribute__((aligned (2))) = dmen_room_4DL_0015C8; -#endif - -#define dmen_room_4DL_002F40 "__OTR__scenes/nonmq/men_scene/men_room_4DL_002F40" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4DL_002F40[] = dmen_room_4DL_002F40; -#else -static const char men_room_4DL_002F40[] __attribute__((aligned (2))) = dmen_room_4DL_002F40; -#endif - -#define dmen_room_4Tex_0089E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0089E0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4Tex_0089E0[] = dmen_room_4Tex_0089E0; -#else -static const char men_room_4Tex_0089E0[] __attribute__((aligned (2))) = dmen_room_4Tex_0089E0; -#endif - -#define dmen_room_4Tex_0059E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0059E0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_4Tex_0059E0[] = dmen_room_4Tex_0059E0; -#else -static const char men_room_4Tex_0059E0[] __attribute__((aligned (2))) = dmen_room_4Tex_0059E0; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_4DL_003EF8 "__OTR__scenes/nonmq/men_scene/men_room_4DL_003EF8" +static const ALIGN_ASSET(2) char men_room_4DL_003EF8[] = dmen_room_4DL_003EF8; + +#define dmen_room_4Tex_0099E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0099E0" +static const ALIGN_ASSET(2) char men_room_4Tex_0099E0[] = dmen_room_4Tex_0099E0; + +#define dmen_room_4DL_0046B0 "__OTR__scenes/nonmq/men_scene/men_room_4DL_0046B0" +static const ALIGN_ASSET(2) char men_room_4DL_0046B0[] = dmen_room_4DL_0046B0; + +#define dmen_room_4Tex_0071E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0071E0" +static const ALIGN_ASSET(2) char men_room_4Tex_0071E0[] = dmen_room_4Tex_0071E0; + +#define dmen_room_4Tex_0061E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0061E0" +static const ALIGN_ASSET(2) char men_room_4Tex_0061E0[] = dmen_room_4Tex_0061E0; + +#define dmen_room_4DL_004C30 "__OTR__scenes/nonmq/men_scene/men_room_4DL_004C30" +static const ALIGN_ASSET(2) char men_room_4DL_004C30[] = dmen_room_4DL_004C30; + +#define dmen_room_4DL_005068 "__OTR__scenes/nonmq/men_scene/men_room_4DL_005068" +static const ALIGN_ASSET(2) char men_room_4DL_005068[] = dmen_room_4DL_005068; + +#define dmen_room_4Tex_0051E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0051E0" +static const ALIGN_ASSET(2) char men_room_4Tex_0051E0[] = dmen_room_4Tex_0051E0; + +#define dmen_room_4DL_000B10 "__OTR__scenes/nonmq/men_scene/men_room_4DL_000B10" +static const ALIGN_ASSET(2) char men_room_4DL_000B10[] = dmen_room_4DL_000B10; + +#define dmen_room_4Tex_0081E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0081E0" +static const ALIGN_ASSET(2) char men_room_4Tex_0081E0[] = dmen_room_4Tex_0081E0; + +#define dmen_room_4DL_0015C8 "__OTR__scenes/nonmq/men_scene/men_room_4DL_0015C8" +static const ALIGN_ASSET(2) char men_room_4DL_0015C8[] = dmen_room_4DL_0015C8; + +#define dmen_room_4DL_002F40 "__OTR__scenes/nonmq/men_scene/men_room_4DL_002F40" +static const ALIGN_ASSET(2) char men_room_4DL_002F40[] = dmen_room_4DL_002F40; + +#define dmen_room_4Tex_0089E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0089E0" +static const ALIGN_ASSET(2) char men_room_4Tex_0089E0[] = dmen_room_4Tex_0089E0; + +#define dmen_room_4Tex_0059E0 "__OTR__scenes/nonmq/men_scene/men_room_4Tex_0059E0" +static const ALIGN_ASSET(2) char men_room_4Tex_0059E0[] = dmen_room_4Tex_0059E0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_5.h b/soh/assets/scenes/dungeons/men/men_room_5.h index 0ddadf032..495783e2d 100644 --- a/soh/assets/scenes/dungeons/men/men_room_5.h +++ b/soh/assets/scenes/dungeons/men/men_room_5.h @@ -1,58 +1,27 @@ #pragma once -#define dmen_room_5DL_001230 "__OTR__scenes/nonmq/men_scene/men_room_5DL_001230" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_5DL_001230[] = dmen_room_5DL_001230; -#else -static const char men_room_5DL_001230[] __attribute__((aligned (2))) = dmen_room_5DL_001230; -#endif - -#define dmen_room_5Tex_003818 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_003818" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_5Tex_003818[] = dmen_room_5Tex_003818; -#else -static const char men_room_5Tex_003818[] __attribute__((aligned (2))) = dmen_room_5Tex_003818; -#endif - -#define dmen_room_5Tex_003018 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_003018" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_5Tex_003018[] = dmen_room_5Tex_003018; -#else -static const char men_room_5Tex_003018[] __attribute__((aligned (2))) = dmen_room_5Tex_003018; -#endif - -#define dmen_room_5Tex_004018 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_004018" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_5Tex_004018[] = dmen_room_5Tex_004018; -#else -static const char men_room_5Tex_004018[] __attribute__((aligned (2))) = dmen_room_5Tex_004018; -#endif - -#define dmen_room_5Tex_004818 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_004818" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_5Tex_004818[] = dmen_room_5Tex_004818; -#else -static const char men_room_5Tex_004818[] __attribute__((aligned (2))) = dmen_room_5Tex_004818; -#endif - -#define dmen_room_5Tex_002C18 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_002C18" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_5Tex_002C18[] = dmen_room_5Tex_002C18; -#else -static const char men_room_5Tex_002C18[] __attribute__((aligned (2))) = dmen_room_5Tex_002C18; -#endif - -#define dmen_room_5DL_002128 "__OTR__scenes/nonmq/men_scene/men_room_5DL_002128" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_5DL_002128[] = dmen_room_5DL_002128; -#else -static const char men_room_5DL_002128[] __attribute__((aligned (2))) = dmen_room_5DL_002128; -#endif - -#define dmen_room_5Tex_002418 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_002418" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_5Tex_002418[] = dmen_room_5Tex_002418; -#else -static const char men_room_5Tex_002418[] __attribute__((aligned (2))) = dmen_room_5Tex_002418; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_5DL_001230 "__OTR__scenes/nonmq/men_scene/men_room_5DL_001230" +static const ALIGN_ASSET(2) char men_room_5DL_001230[] = dmen_room_5DL_001230; + +#define dmen_room_5Tex_003818 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_003818" +static const ALIGN_ASSET(2) char men_room_5Tex_003818[] = dmen_room_5Tex_003818; + +#define dmen_room_5Tex_003018 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_003018" +static const ALIGN_ASSET(2) char men_room_5Tex_003018[] = dmen_room_5Tex_003018; + +#define dmen_room_5Tex_004018 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_004018" +static const ALIGN_ASSET(2) char men_room_5Tex_004018[] = dmen_room_5Tex_004018; + +#define dmen_room_5Tex_004818 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_004818" +static const ALIGN_ASSET(2) char men_room_5Tex_004818[] = dmen_room_5Tex_004818; + +#define dmen_room_5Tex_002C18 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_002C18" +static const ALIGN_ASSET(2) char men_room_5Tex_002C18[] = dmen_room_5Tex_002C18; + +#define dmen_room_5DL_002128 "__OTR__scenes/nonmq/men_scene/men_room_5DL_002128" +static const ALIGN_ASSET(2) char men_room_5DL_002128[] = dmen_room_5DL_002128; + +#define dmen_room_5Tex_002418 "__OTR__scenes/nonmq/men_scene/men_room_5Tex_002418" +static const ALIGN_ASSET(2) char men_room_5Tex_002418[] = dmen_room_5Tex_002418; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_6.h b/soh/assets/scenes/dungeons/men/men_room_6.h index e39e25994..b2d8780ba 100644 --- a/soh/assets/scenes/dungeons/men/men_room_6.h +++ b/soh/assets/scenes/dungeons/men/men_room_6.h @@ -1,135 +1,60 @@ #pragma once -#define dmen_room_6DL_0003D0 "__OTR__scenes/nonmq/men_scene/men_room_6DL_0003D0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_0003D0[] = dmen_room_6DL_0003D0; -#else -static const char men_room_6DL_0003D0[] __attribute__((aligned (2))) = dmen_room_6DL_0003D0; -#endif - -#define dmen_room_6Tex_006378 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_006378" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_006378[] = dmen_room_6Tex_006378; -#else -static const char men_room_6Tex_006378[] __attribute__((aligned (2))) = dmen_room_6Tex_006378; -#endif - -#define dmen_room_6DL_001068 "__OTR__scenes/nonmq/men_scene/men_room_6DL_001068" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_001068[] = dmen_room_6DL_001068; -#else -static const char men_room_6DL_001068[] __attribute__((aligned (2))) = dmen_room_6DL_001068; -#endif - -#define dmen_room_6DL_000C68 "__OTR__scenes/nonmq/men_scene/men_room_6DL_000C68" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_000C68[] = dmen_room_6DL_000C68; -#else -static const char men_room_6DL_000C68[] __attribute__((aligned (2))) = dmen_room_6DL_000C68; -#endif - -#define dmen_room_6Tex_004F78 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_004F78" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_004F78[] = dmen_room_6Tex_004F78; -#else -static const char men_room_6Tex_004F78[] __attribute__((aligned (2))) = dmen_room_6Tex_004F78; -#endif - -#define dmen_room_6DL_0013D0 "__OTR__scenes/nonmq/men_scene/men_room_6DL_0013D0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_0013D0[] = dmen_room_6DL_0013D0; -#else -static const char men_room_6DL_0013D0[] __attribute__((aligned (2))) = dmen_room_6DL_0013D0; -#endif - -#define dmen_room_6Tex_007378 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_007378" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_007378[] = dmen_room_6Tex_007378; -#else -static const char men_room_6Tex_007378[] __attribute__((aligned (2))) = dmen_room_6Tex_007378; -#endif - -#define dmen_room_6DL_0017B8 "__OTR__scenes/nonmq/men_scene/men_room_6DL_0017B8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_0017B8[] = dmen_room_6DL_0017B8; -#else -static const char men_room_6DL_0017B8[] __attribute__((aligned (2))) = dmen_room_6DL_0017B8; -#endif - -#define dmen_room_6DL_003B90 "__OTR__scenes/nonmq/men_scene/men_room_6DL_003B90" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_003B90[] = dmen_room_6DL_003B90; -#else -static const char men_room_6DL_003B90[] __attribute__((aligned (2))) = dmen_room_6DL_003B90; -#endif - -#define dmen_room_6Tex_003F78 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_003F78" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_003F78[] = dmen_room_6Tex_003F78; -#else -static const char men_room_6Tex_003F78[] __attribute__((aligned (2))) = dmen_room_6Tex_003F78; -#endif - -#define dmen_room_6DL_002530 "__OTR__scenes/nonmq/men_scene/men_room_6DL_002530" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_002530[] = dmen_room_6DL_002530; -#else -static const char men_room_6DL_002530[] __attribute__((aligned (2))) = dmen_room_6DL_002530; -#endif - -#define dmen_room_6Tex_005B78 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_005B78" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_005B78[] = dmen_room_6Tex_005B78; -#else -static const char men_room_6Tex_005B78[] __attribute__((aligned (2))) = dmen_room_6Tex_005B78; -#endif - -#define dmen_room_6DL_002DE8 "__OTR__scenes/nonmq/men_scene/men_room_6DL_002DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_002DE8[] = dmen_room_6DL_002DE8; -#else -static const char men_room_6DL_002DE8[] __attribute__((aligned (2))) = dmen_room_6DL_002DE8; -#endif - -#define dmen_room_6Tex_007778 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_007778" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_007778[] = dmen_room_6Tex_007778; -#else -static const char men_room_6Tex_007778[] __attribute__((aligned (2))) = dmen_room_6Tex_007778; -#endif - -#define dmen_room_6Tex_006B78 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_006B78" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_006B78[] = dmen_room_6Tex_006B78; -#else -static const char men_room_6Tex_006B78[] __attribute__((aligned (2))) = dmen_room_6Tex_006B78; -#endif - -#define dmen_room_6DL_0034F0 "__OTR__scenes/nonmq/men_scene/men_room_6DL_0034F0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_0034F0[] = dmen_room_6DL_0034F0; -#else -static const char men_room_6DL_0034F0[] __attribute__((aligned (2))) = dmen_room_6DL_0034F0; -#endif - -#define dmen_room_6Tex_004778 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_004778" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_004778[] = dmen_room_6Tex_004778; -#else -static const char men_room_6Tex_004778[] __attribute__((aligned (2))) = dmen_room_6Tex_004778; -#endif - -#define dmen_room_6DL_003E60 "__OTR__scenes/nonmq/men_scene/men_room_6DL_003E60" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6DL_003E60[] = dmen_room_6DL_003E60; -#else -static const char men_room_6DL_003E60[] __attribute__((aligned (2))) = dmen_room_6DL_003E60; -#endif - -#define dmen_room_6Tex_005378 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_005378" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_6Tex_005378[] = dmen_room_6Tex_005378; -#else -static const char men_room_6Tex_005378[] __attribute__((aligned (2))) = dmen_room_6Tex_005378; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_6DL_0003D0 "__OTR__scenes/nonmq/men_scene/men_room_6DL_0003D0" +static const ALIGN_ASSET(2) char men_room_6DL_0003D0[] = dmen_room_6DL_0003D0; + +#define dmen_room_6Tex_006378 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_006378" +static const ALIGN_ASSET(2) char men_room_6Tex_006378[] = dmen_room_6Tex_006378; + +#define dmen_room_6DL_001068 "__OTR__scenes/nonmq/men_scene/men_room_6DL_001068" +static const ALIGN_ASSET(2) char men_room_6DL_001068[] = dmen_room_6DL_001068; + +#define dmen_room_6DL_000C68 "__OTR__scenes/nonmq/men_scene/men_room_6DL_000C68" +static const ALIGN_ASSET(2) char men_room_6DL_000C68[] = dmen_room_6DL_000C68; + +#define dmen_room_6Tex_004F78 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_004F78" +static const ALIGN_ASSET(2) char men_room_6Tex_004F78[] = dmen_room_6Tex_004F78; + +#define dmen_room_6DL_0013D0 "__OTR__scenes/nonmq/men_scene/men_room_6DL_0013D0" +static const ALIGN_ASSET(2) char men_room_6DL_0013D0[] = dmen_room_6DL_0013D0; + +#define dmen_room_6Tex_007378 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_007378" +static const ALIGN_ASSET(2) char men_room_6Tex_007378[] = dmen_room_6Tex_007378; + +#define dmen_room_6DL_0017B8 "__OTR__scenes/nonmq/men_scene/men_room_6DL_0017B8" +static const ALIGN_ASSET(2) char men_room_6DL_0017B8[] = dmen_room_6DL_0017B8; + +#define dmen_room_6DL_003B90 "__OTR__scenes/nonmq/men_scene/men_room_6DL_003B90" +static const ALIGN_ASSET(2) char men_room_6DL_003B90[] = dmen_room_6DL_003B90; + +#define dmen_room_6Tex_003F78 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_003F78" +static const ALIGN_ASSET(2) char men_room_6Tex_003F78[] = dmen_room_6Tex_003F78; + +#define dmen_room_6DL_002530 "__OTR__scenes/nonmq/men_scene/men_room_6DL_002530" +static const ALIGN_ASSET(2) char men_room_6DL_002530[] = dmen_room_6DL_002530; + +#define dmen_room_6Tex_005B78 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_005B78" +static const ALIGN_ASSET(2) char men_room_6Tex_005B78[] = dmen_room_6Tex_005B78; + +#define dmen_room_6DL_002DE8 "__OTR__scenes/nonmq/men_scene/men_room_6DL_002DE8" +static const ALIGN_ASSET(2) char men_room_6DL_002DE8[] = dmen_room_6DL_002DE8; + +#define dmen_room_6Tex_007778 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_007778" +static const ALIGN_ASSET(2) char men_room_6Tex_007778[] = dmen_room_6Tex_007778; + +#define dmen_room_6Tex_006B78 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_006B78" +static const ALIGN_ASSET(2) char men_room_6Tex_006B78[] = dmen_room_6Tex_006B78; + +#define dmen_room_6DL_0034F0 "__OTR__scenes/nonmq/men_scene/men_room_6DL_0034F0" +static const ALIGN_ASSET(2) char men_room_6DL_0034F0[] = dmen_room_6DL_0034F0; + +#define dmen_room_6Tex_004778 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_004778" +static const ALIGN_ASSET(2) char men_room_6Tex_004778[] = dmen_room_6Tex_004778; + +#define dmen_room_6DL_003E60 "__OTR__scenes/nonmq/men_scene/men_room_6DL_003E60" +static const ALIGN_ASSET(2) char men_room_6DL_003E60[] = dmen_room_6DL_003E60; + +#define dmen_room_6Tex_005378 "__OTR__scenes/nonmq/men_scene/men_room_6Tex_005378" +static const ALIGN_ASSET(2) char men_room_6Tex_005378[] = dmen_room_6Tex_005378; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_7.h b/soh/assets/scenes/dungeons/men/men_room_7.h index bcdedcb31..5b7d8b8e8 100644 --- a/soh/assets/scenes/dungeons/men/men_room_7.h +++ b/soh/assets/scenes/dungeons/men/men_room_7.h @@ -1,86 +1,39 @@ #pragma once -#define dmen_room_7DL_0035D8 "__OTR__scenes/nonmq/men_scene/men_room_7DL_0035D8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7DL_0035D8[] = dmen_room_7DL_0035D8; -#else -static const char men_room_7DL_0035D8[] __attribute__((aligned (2))) = dmen_room_7DL_0035D8; -#endif - -#define dmen_room_7Tex_004AB8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_004AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_004AB8[] = dmen_room_7Tex_004AB8; -#else -static const char men_room_7Tex_004AB8[] __attribute__((aligned (2))) = dmen_room_7Tex_004AB8; -#endif - -#define dmen_room_7DL_003348 "__OTR__scenes/nonmq/men_scene/men_room_7DL_003348" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7DL_003348[] = dmen_room_7DL_003348; -#else -static const char men_room_7DL_003348[] __attribute__((aligned (2))) = dmen_room_7DL_003348; -#endif - -#define dmen_room_7Tex_0062B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0062B8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_0062B8[] = dmen_room_7Tex_0062B8; -#else -static const char men_room_7Tex_0062B8[] __attribute__((aligned (2))) = dmen_room_7Tex_0062B8; -#endif - -#define dmen_room_7DL_001EC0 "__OTR__scenes/nonmq/men_scene/men_room_7DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7DL_001EC0[] = dmen_room_7DL_001EC0; -#else -static const char men_room_7DL_001EC0[] __attribute__((aligned (2))) = dmen_room_7DL_001EC0; -#endif - -#define dmen_room_7Tex_0052B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0052B8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_0052B8[] = dmen_room_7Tex_0052B8; -#else -static const char men_room_7Tex_0052B8[] __attribute__((aligned (2))) = dmen_room_7Tex_0052B8; -#endif - -#define dmen_room_7Tex_0072B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0072B8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_0072B8[] = dmen_room_7Tex_0072B8; -#else -static const char men_room_7Tex_0072B8[] __attribute__((aligned (2))) = dmen_room_7Tex_0072B8; -#endif - -#define dmen_room_7Tex_0042B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0042B8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_0042B8[] = dmen_room_7Tex_0042B8; -#else -static const char men_room_7Tex_0042B8[] __attribute__((aligned (2))) = dmen_room_7Tex_0042B8; -#endif - -#define dmen_room_7Tex_007AB8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_007AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_007AB8[] = dmen_room_7Tex_007AB8; -#else -static const char men_room_7Tex_007AB8[] __attribute__((aligned (2))) = dmen_room_7Tex_007AB8; -#endif - -#define dmen_room_7Tex_003AB8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_003AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_003AB8[] = dmen_room_7Tex_003AB8; -#else -static const char men_room_7Tex_003AB8[] __attribute__((aligned (2))) = dmen_room_7Tex_003AB8; -#endif - -#define dmen_room_7Tex_005AB8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_005AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_005AB8[] = dmen_room_7Tex_005AB8; -#else -static const char men_room_7Tex_005AB8[] __attribute__((aligned (2))) = dmen_room_7Tex_005AB8; -#endif - -#define dmen_room_7Tex_0036B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0036B8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_7Tex_0036B8[] = dmen_room_7Tex_0036B8; -#else -static const char men_room_7Tex_0036B8[] __attribute__((aligned (2))) = dmen_room_7Tex_0036B8; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_7DL_0035D8 "__OTR__scenes/nonmq/men_scene/men_room_7DL_0035D8" +static const ALIGN_ASSET(2) char men_room_7DL_0035D8[] = dmen_room_7DL_0035D8; + +#define dmen_room_7Tex_004AB8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_004AB8" +static const ALIGN_ASSET(2) char men_room_7Tex_004AB8[] = dmen_room_7Tex_004AB8; + +#define dmen_room_7DL_003348 "__OTR__scenes/nonmq/men_scene/men_room_7DL_003348" +static const ALIGN_ASSET(2) char men_room_7DL_003348[] = dmen_room_7DL_003348; + +#define dmen_room_7Tex_0062B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0062B8" +static const ALIGN_ASSET(2) char men_room_7Tex_0062B8[] = dmen_room_7Tex_0062B8; + +#define dmen_room_7DL_001EC0 "__OTR__scenes/nonmq/men_scene/men_room_7DL_001EC0" +static const ALIGN_ASSET(2) char men_room_7DL_001EC0[] = dmen_room_7DL_001EC0; + +#define dmen_room_7Tex_0052B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0052B8" +static const ALIGN_ASSET(2) char men_room_7Tex_0052B8[] = dmen_room_7Tex_0052B8; + +#define dmen_room_7Tex_0072B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0072B8" +static const ALIGN_ASSET(2) char men_room_7Tex_0072B8[] = dmen_room_7Tex_0072B8; + +#define dmen_room_7Tex_0042B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0042B8" +static const ALIGN_ASSET(2) char men_room_7Tex_0042B8[] = dmen_room_7Tex_0042B8; + +#define dmen_room_7Tex_007AB8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_007AB8" +static const ALIGN_ASSET(2) char men_room_7Tex_007AB8[] = dmen_room_7Tex_007AB8; + +#define dmen_room_7Tex_003AB8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_003AB8" +static const ALIGN_ASSET(2) char men_room_7Tex_003AB8[] = dmen_room_7Tex_003AB8; + +#define dmen_room_7Tex_005AB8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_005AB8" +static const ALIGN_ASSET(2) char men_room_7Tex_005AB8[] = dmen_room_7Tex_005AB8; + +#define dmen_room_7Tex_0036B8 "__OTR__scenes/nonmq/men_scene/men_room_7Tex_0036B8" +static const ALIGN_ASSET(2) char men_room_7Tex_0036B8[] = dmen_room_7Tex_0036B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_8.h b/soh/assets/scenes/dungeons/men/men_room_8.h index d460aaa6a..7bf3f7d79 100644 --- a/soh/assets/scenes/dungeons/men/men_room_8.h +++ b/soh/assets/scenes/dungeons/men/men_room_8.h @@ -1,107 +1,48 @@ #pragma once -#define dmen_room_8DL_003EB0 "__OTR__scenes/nonmq/men_scene/men_room_8DL_003EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_003EB0[] = dmen_room_8DL_003EB0; -#else -static const char men_room_8DL_003EB0[] __attribute__((aligned (2))) = dmen_room_8DL_003EB0; -#endif - -#define dmen_room_8Tex_006530 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_006530" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8Tex_006530[] = dmen_room_8Tex_006530; -#else -static const char men_room_8Tex_006530[] __attribute__((aligned (2))) = dmen_room_8Tex_006530; -#endif - -#define dmen_room_8DL_000330 "__OTR__scenes/nonmq/men_scene/men_room_8DL_000330" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_000330[] = dmen_room_8DL_000330; -#else -static const char men_room_8DL_000330[] __attribute__((aligned (2))) = dmen_room_8DL_000330; -#endif - -#define dmen_room_8DL_004E08 "__OTR__scenes/nonmq/men_scene/men_room_8DL_004E08" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_004E08[] = dmen_room_8DL_004E08; -#else -static const char men_room_8DL_004E08[] __attribute__((aligned (2))) = dmen_room_8DL_004E08; -#endif - -#define dmen_room_8Tex_005D30 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_005D30" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8Tex_005D30[] = dmen_room_8Tex_005D30; -#else -static const char men_room_8Tex_005D30[] __attribute__((aligned (2))) = dmen_room_8Tex_005D30; -#endif - -#define dmen_room_8DL_005470 "__OTR__scenes/nonmq/men_scene/men_room_8DL_005470" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_005470[] = dmen_room_8DL_005470; -#else -static const char men_room_8DL_005470[] __attribute__((aligned (2))) = dmen_room_8DL_005470; -#endif - -#define dmen_room_8DL_0055F0 "__OTR__scenes/nonmq/men_scene/men_room_8DL_0055F0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_0055F0[] = dmen_room_8DL_0055F0; -#else -static const char men_room_8DL_0055F0[] __attribute__((aligned (2))) = dmen_room_8DL_0055F0; -#endif - -#define dmen_room_8DL_005A08 "__OTR__scenes/nonmq/men_scene/men_room_8DL_005A08" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_005A08[] = dmen_room_8DL_005A08; -#else -static const char men_room_8DL_005A08[] __attribute__((aligned (2))) = dmen_room_8DL_005A08; -#endif - -#define dmen_room_8Tex_007630 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_007630" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8Tex_007630[] = dmen_room_8Tex_007630; -#else -static const char men_room_8Tex_007630[] __attribute__((aligned (2))) = dmen_room_8Tex_007630; -#endif - -#define dmen_room_8DL_005C20 "__OTR__scenes/nonmq/men_scene/men_room_8DL_005C20" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_005C20[] = dmen_room_8DL_005C20; -#else -static const char men_room_8DL_005C20[] __attribute__((aligned (2))) = dmen_room_8DL_005C20; -#endif - -#define dmen_room_8DL_002690 "__OTR__scenes/nonmq/men_scene/men_room_8DL_002690" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_002690[] = dmen_room_8DL_002690; -#else -static const char men_room_8DL_002690[] __attribute__((aligned (2))) = dmen_room_8DL_002690; -#endif - -#define dmen_room_8Tex_007530 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_007530" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8Tex_007530[] = dmen_room_8Tex_007530; -#else -static const char men_room_8Tex_007530[] __attribute__((aligned (2))) = dmen_room_8Tex_007530; -#endif - -#define dmen_room_8DL_000EC0 "__OTR__scenes/nonmq/men_scene/men_room_8DL_000EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8DL_000EC0[] = dmen_room_8DL_000EC0; -#else -static const char men_room_8DL_000EC0[] __attribute__((aligned (2))) = dmen_room_8DL_000EC0; -#endif - -#define dmen_room_8Tex_007E30 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_007E30" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8Tex_007E30[] = dmen_room_8Tex_007E30; -#else -static const char men_room_8Tex_007E30[] __attribute__((aligned (2))) = dmen_room_8Tex_007E30; -#endif - -#define dmen_room_8Tex_006D30 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_006D30" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_8Tex_006D30[] = dmen_room_8Tex_006D30; -#else -static const char men_room_8Tex_006D30[] __attribute__((aligned (2))) = dmen_room_8Tex_006D30; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_8DL_003EB0 "__OTR__scenes/nonmq/men_scene/men_room_8DL_003EB0" +static const ALIGN_ASSET(2) char men_room_8DL_003EB0[] = dmen_room_8DL_003EB0; + +#define dmen_room_8Tex_006530 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_006530" +static const ALIGN_ASSET(2) char men_room_8Tex_006530[] = dmen_room_8Tex_006530; + +#define dmen_room_8DL_000330 "__OTR__scenes/nonmq/men_scene/men_room_8DL_000330" +static const ALIGN_ASSET(2) char men_room_8DL_000330[] = dmen_room_8DL_000330; + +#define dmen_room_8DL_004E08 "__OTR__scenes/nonmq/men_scene/men_room_8DL_004E08" +static const ALIGN_ASSET(2) char men_room_8DL_004E08[] = dmen_room_8DL_004E08; + +#define dmen_room_8Tex_005D30 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_005D30" +static const ALIGN_ASSET(2) char men_room_8Tex_005D30[] = dmen_room_8Tex_005D30; + +#define dmen_room_8DL_005470 "__OTR__scenes/nonmq/men_scene/men_room_8DL_005470" +static const ALIGN_ASSET(2) char men_room_8DL_005470[] = dmen_room_8DL_005470; + +#define dmen_room_8DL_0055F0 "__OTR__scenes/nonmq/men_scene/men_room_8DL_0055F0" +static const ALIGN_ASSET(2) char men_room_8DL_0055F0[] = dmen_room_8DL_0055F0; + +#define dmen_room_8DL_005A08 "__OTR__scenes/nonmq/men_scene/men_room_8DL_005A08" +static const ALIGN_ASSET(2) char men_room_8DL_005A08[] = dmen_room_8DL_005A08; + +#define dmen_room_8Tex_007630 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_007630" +static const ALIGN_ASSET(2) char men_room_8Tex_007630[] = dmen_room_8Tex_007630; + +#define dmen_room_8DL_005C20 "__OTR__scenes/nonmq/men_scene/men_room_8DL_005C20" +static const ALIGN_ASSET(2) char men_room_8DL_005C20[] = dmen_room_8DL_005C20; + +#define dmen_room_8DL_002690 "__OTR__scenes/nonmq/men_scene/men_room_8DL_002690" +static const ALIGN_ASSET(2) char men_room_8DL_002690[] = dmen_room_8DL_002690; + +#define dmen_room_8Tex_007530 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_007530" +static const ALIGN_ASSET(2) char men_room_8Tex_007530[] = dmen_room_8Tex_007530; + +#define dmen_room_8DL_000EC0 "__OTR__scenes/nonmq/men_scene/men_room_8DL_000EC0" +static const ALIGN_ASSET(2) char men_room_8DL_000EC0[] = dmen_room_8DL_000EC0; + +#define dmen_room_8Tex_007E30 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_007E30" +static const ALIGN_ASSET(2) char men_room_8Tex_007E30[] = dmen_room_8Tex_007E30; + +#define dmen_room_8Tex_006D30 "__OTR__scenes/nonmq/men_scene/men_room_8Tex_006D30" +static const ALIGN_ASSET(2) char men_room_8Tex_006D30[] = dmen_room_8Tex_006D30; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_room_9.h b/soh/assets/scenes/dungeons/men/men_room_9.h index 76354e160..8437f9b74 100644 --- a/soh/assets/scenes/dungeons/men/men_room_9.h +++ b/soh/assets/scenes/dungeons/men/men_room_9.h @@ -1,72 +1,33 @@ #pragma once -#define dmen_room_9DL_000700 "__OTR__scenes/nonmq/men_scene/men_room_9DL_000700" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9DL_000700[] = dmen_room_9DL_000700; -#else -static const char men_room_9DL_000700[] __attribute__((aligned (2))) = dmen_room_9DL_000700; -#endif - -#define dmen_room_9Tex_0022B0 "__OTR__scenes/nonmq/men_scene/men_room_9Tex_0022B0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9Tex_0022B0[] = dmen_room_9Tex_0022B0; -#else -static const char men_room_9Tex_0022B0[] __attribute__((aligned (2))) = dmen_room_9Tex_0022B0; -#endif - -#define dmen_room_9DL_000B30 "__OTR__scenes/nonmq/men_scene/men_room_9DL_000B30" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9DL_000B30[] = dmen_room_9DL_000B30; -#else -static const char men_room_9DL_000B30[] __attribute__((aligned (2))) = dmen_room_9DL_000B30; -#endif - -#define dmen_room_9DL_000D68 "__OTR__scenes/nonmq/men_scene/men_room_9DL_000D68" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9DL_000D68[] = dmen_room_9DL_000D68; -#else -static const char men_room_9DL_000D68[] __attribute__((aligned (2))) = dmen_room_9DL_000D68; -#endif - -#define dmen_room_9DL_002F80 "__OTR__scenes/nonmq/men_scene/men_room_9DL_002F80" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9DL_002F80[] = dmen_room_9DL_002F80; -#else -static const char men_room_9DL_002F80[] __attribute__((aligned (2))) = dmen_room_9DL_002F80; -#endif - -#define dmen_room_9Tex_003070 "__OTR__scenes/nonmq/men_scene/men_room_9Tex_003070" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9Tex_003070[] = dmen_room_9Tex_003070; -#else -static const char men_room_9Tex_003070[] __attribute__((aligned (2))) = dmen_room_9Tex_003070; -#endif - -#define dmen_room_9DL_0014E8 "__OTR__scenes/nonmq/men_scene/men_room_9DL_0014E8" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9DL_0014E8[] = dmen_room_9DL_0014E8; -#else -static const char men_room_9DL_0014E8[] __attribute__((aligned (2))) = dmen_room_9DL_0014E8; -#endif - -#define dmen_room_9Tex_0026B0 "__OTR__scenes/nonmq/men_scene/men_room_9Tex_0026B0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9Tex_0026B0[] = dmen_room_9Tex_0026B0; -#else -static const char men_room_9Tex_0026B0[] __attribute__((aligned (2))) = dmen_room_9Tex_0026B0; -#endif - -#define dmen_room_9DL_0019C0 "__OTR__scenes/nonmq/men_scene/men_room_9DL_0019C0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9DL_0019C0[] = dmen_room_9DL_0019C0; -#else -static const char men_room_9DL_0019C0[] __attribute__((aligned (2))) = dmen_room_9DL_0019C0; -#endif - -#define dmen_room_9Tex_001AB0 "__OTR__scenes/nonmq/men_scene/men_room_9Tex_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_room_9Tex_001AB0[] = dmen_room_9Tex_001AB0; -#else -static const char men_room_9Tex_001AB0[] __attribute__((aligned (2))) = dmen_room_9Tex_001AB0; -#endif - +#include "align_asset_macro.h" + +#define dmen_room_9DL_000700 "__OTR__scenes/nonmq/men_scene/men_room_9DL_000700" +static const ALIGN_ASSET(2) char men_room_9DL_000700[] = dmen_room_9DL_000700; + +#define dmen_room_9Tex_0022B0 "__OTR__scenes/nonmq/men_scene/men_room_9Tex_0022B0" +static const ALIGN_ASSET(2) char men_room_9Tex_0022B0[] = dmen_room_9Tex_0022B0; + +#define dmen_room_9DL_000B30 "__OTR__scenes/nonmq/men_scene/men_room_9DL_000B30" +static const ALIGN_ASSET(2) char men_room_9DL_000B30[] = dmen_room_9DL_000B30; + +#define dmen_room_9DL_000D68 "__OTR__scenes/nonmq/men_scene/men_room_9DL_000D68" +static const ALIGN_ASSET(2) char men_room_9DL_000D68[] = dmen_room_9DL_000D68; + +#define dmen_room_9DL_002F80 "__OTR__scenes/nonmq/men_scene/men_room_9DL_002F80" +static const ALIGN_ASSET(2) char men_room_9DL_002F80[] = dmen_room_9DL_002F80; + +#define dmen_room_9Tex_003070 "__OTR__scenes/nonmq/men_scene/men_room_9Tex_003070" +static const ALIGN_ASSET(2) char men_room_9Tex_003070[] = dmen_room_9Tex_003070; + +#define dmen_room_9DL_0014E8 "__OTR__scenes/nonmq/men_scene/men_room_9DL_0014E8" +static const ALIGN_ASSET(2) char men_room_9DL_0014E8[] = dmen_room_9DL_0014E8; + +#define dmen_room_9Tex_0026B0 "__OTR__scenes/nonmq/men_scene/men_room_9Tex_0026B0" +static const ALIGN_ASSET(2) char men_room_9Tex_0026B0[] = dmen_room_9Tex_0026B0; + +#define dmen_room_9DL_0019C0 "__OTR__scenes/nonmq/men_scene/men_room_9DL_0019C0" +static const ALIGN_ASSET(2) char men_room_9DL_0019C0[] = dmen_room_9DL_0019C0; + +#define dmen_room_9Tex_001AB0 "__OTR__scenes/nonmq/men_scene/men_room_9Tex_001AB0" +static const ALIGN_ASSET(2) char men_room_9Tex_001AB0[] = dmen_room_9Tex_001AB0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/men/men_scene.h b/soh/assets/scenes/dungeons/men/men_scene.h index 9d3c44f87..eadc29cdd 100644 --- a/soh/assets/scenes/dungeons/men/men_scene.h +++ b/soh/assets/scenes/dungeons/men/men_scene.h @@ -1,44 +1,21 @@ #pragma once -#define dgGTGDayEntranceTex "__OTR__scenes/nonmq/men_scene/gGTGDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGDayEntranceTex[] = dgGTGDayEntranceTex; -#else -static const char gGTGDayEntranceTex[] __attribute__((aligned (2))) = dgGTGDayEntranceTex; -#endif - -#define dgGTGNightEntranceTex "__OTR__scenes/nonmq/men_scene/gGTGNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGTGNightEntranceTex[] = dgGTGNightEntranceTex; -#else -static const char gGTGNightEntranceTex[] __attribute__((aligned (2))) = dgGTGNightEntranceTex; -#endif - -#define dmen_sceneCollisionHeader_00F690 "__OTR__scenes/nonmq/men_scene/men_sceneCollisionHeader_00F690" -#ifdef _WIN32 -static const __declspec(align(2)) char men_sceneCollisionHeader_00F690[] = dmen_sceneCollisionHeader_00F690; -#else -static const char men_sceneCollisionHeader_00F690[] __attribute__((aligned (2))) = dmen_sceneCollisionHeader_00F690; -#endif - -#define dmen_sceneTLUT_00F6C0 "__OTR__scenes/nonmq/men_scene/men_sceneTLUT_00F6C0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_sceneTLUT_00F6C0[] = dmen_sceneTLUT_00F6C0; -#else -static const char men_sceneTLUT_00F6C0[] __attribute__((aligned (2))) = dmen_sceneTLUT_00F6C0; -#endif - -#define dmen_sceneTex_010CC0 "__OTR__scenes/nonmq/men_scene/men_sceneTex_010CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_sceneTex_010CC0[] = dmen_sceneTex_010CC0; -#else -static const char men_sceneTex_010CC0[] __attribute__((aligned (2))) = dmen_sceneTex_010CC0; -#endif - -#define dmen_sceneTex_0108C0 "__OTR__scenes/nonmq/men_scene/men_sceneTex_0108C0" -#ifdef _WIN32 -static const __declspec(align(2)) char men_sceneTex_0108C0[] = dmen_sceneTex_0108C0; -#else -static const char men_sceneTex_0108C0[] __attribute__((aligned (2))) = dmen_sceneTex_0108C0; -#endif - +#include "align_asset_macro.h" + +#define dgGTGDayEntranceTex "__OTR__scenes/nonmq/men_scene/gGTGDayEntranceTex" +static const ALIGN_ASSET(2) char gGTGDayEntranceTex[] = dgGTGDayEntranceTex; + +#define dgGTGNightEntranceTex "__OTR__scenes/nonmq/men_scene/gGTGNightEntranceTex" +static const ALIGN_ASSET(2) char gGTGNightEntranceTex[] = dgGTGNightEntranceTex; + +#define dmen_sceneCollisionHeader_00F690 "__OTR__scenes/nonmq/men_scene/men_sceneCollisionHeader_00F690" +static const ALIGN_ASSET(2) char men_sceneCollisionHeader_00F690[] = dmen_sceneCollisionHeader_00F690; + +#define dmen_sceneTLUT_00F6C0 "__OTR__scenes/nonmq/men_scene/men_sceneTLUT_00F6C0" +static const ALIGN_ASSET(2) char men_sceneTLUT_00F6C0[] = dmen_sceneTLUT_00F6C0; + +#define dmen_sceneTex_010CC0 "__OTR__scenes/nonmq/men_scene/men_sceneTex_010CC0" +static const ALIGN_ASSET(2) char men_sceneTex_010CC0[] = dmen_sceneTex_010CC0; + +#define dmen_sceneTex_0108C0 "__OTR__scenes/nonmq/men_scene/men_sceneTex_0108C0" +static const ALIGN_ASSET(2) char men_sceneTex_0108C0[] = dmen_sceneTex_0108C0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/moribossroom/moribossroom_room_0.h b/soh/assets/scenes/dungeons/moribossroom/moribossroom_room_0.h index eb7a572b0..fd40f1887 100644 --- a/soh/assets/scenes/dungeons/moribossroom/moribossroom_room_0.h +++ b/soh/assets/scenes/dungeons/moribossroom/moribossroom_room_0.h @@ -1,44 +1,21 @@ #pragma once -#define dmoribossroom_room_0DL_003888 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0DL_003888" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_0DL_003888[] = dmoribossroom_room_0DL_003888; -#else -static const char moribossroom_room_0DL_003888[] __attribute__((aligned (2))) = dmoribossroom_room_0DL_003888; -#endif - -#define dmoribossroom_room_0Tex_0038B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0038B8" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_0Tex_0038B8[] = dmoribossroom_room_0Tex_0038B8; -#else -static const char moribossroom_room_0Tex_0038B8[] __attribute__((aligned (2))) = dmoribossroom_room_0Tex_0038B8; -#endif - -#define dmoribossroom_room_0Tex_0054B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0054B8" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_0Tex_0054B8[] = dmoribossroom_room_0Tex_0054B8; -#else -static const char moribossroom_room_0Tex_0054B8[] __attribute__((aligned (2))) = dmoribossroom_room_0Tex_0054B8; -#endif - -#define dmoribossroom_room_0Tex_0044B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0044B8" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_0Tex_0044B8[] = dmoribossroom_room_0Tex_0044B8; -#else -static const char moribossroom_room_0Tex_0044B8[] __attribute__((aligned (2))) = dmoribossroom_room_0Tex_0044B8; -#endif - -#define dmoribossroom_room_0Tex_0040B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0040B8" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_0Tex_0040B8[] = dmoribossroom_room_0Tex_0040B8; -#else -static const char moribossroom_room_0Tex_0040B8[] __attribute__((aligned (2))) = dmoribossroom_room_0Tex_0040B8; -#endif - -#define dmoribossroom_room_0Tex_0056B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_0Tex_0056B8[] = dmoribossroom_room_0Tex_0056B8; -#else -static const char moribossroom_room_0Tex_0056B8[] __attribute__((aligned (2))) = dmoribossroom_room_0Tex_0056B8; -#endif - +#include "align_asset_macro.h" + +#define dmoribossroom_room_0DL_003888 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0DL_003888" +static const ALIGN_ASSET(2) char moribossroom_room_0DL_003888[] = dmoribossroom_room_0DL_003888; + +#define dmoribossroom_room_0Tex_0038B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0038B8" +static const ALIGN_ASSET(2) char moribossroom_room_0Tex_0038B8[] = dmoribossroom_room_0Tex_0038B8; + +#define dmoribossroom_room_0Tex_0054B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0054B8" +static const ALIGN_ASSET(2) char moribossroom_room_0Tex_0054B8[] = dmoribossroom_room_0Tex_0054B8; + +#define dmoribossroom_room_0Tex_0044B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0044B8" +static const ALIGN_ASSET(2) char moribossroom_room_0Tex_0044B8[] = dmoribossroom_room_0Tex_0044B8; + +#define dmoribossroom_room_0Tex_0040B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0040B8" +static const ALIGN_ASSET(2) char moribossroom_room_0Tex_0040B8[] = dmoribossroom_room_0Tex_0040B8; + +#define dmoribossroom_room_0Tex_0056B8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_0Tex_0056B8" +static const ALIGN_ASSET(2) char moribossroom_room_0Tex_0056B8[] = dmoribossroom_room_0Tex_0056B8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/moribossroom/moribossroom_room_1.h b/soh/assets/scenes/dungeons/moribossroom/moribossroom_room_1.h index ed3c11db0..36463ff12 100644 --- a/soh/assets/scenes/dungeons/moribossroom/moribossroom_room_1.h +++ b/soh/assets/scenes/dungeons/moribossroom/moribossroom_room_1.h @@ -1,114 +1,51 @@ #pragma once -#define dmoribossroom_room_1DL_0067D0 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1DL_0067D0" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1DL_0067D0[] = dmoribossroom_room_1DL_0067D0; -#else -static const char moribossroom_room_1DL_0067D0[] __attribute__((aligned (2))) = dmoribossroom_room_1DL_0067D0; -#endif - -#define dmoribossroom_room_1Tex_007A20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_007A20[] = dmoribossroom_room_1Tex_007A20; -#else -static const char moribossroom_room_1Tex_007A20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_007A20; -#endif - -#define dmoribossroom_room_1Tex_006A20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_006A20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_006A20[] = dmoribossroom_room_1Tex_006A20; -#else -static const char moribossroom_room_1Tex_006A20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_006A20; -#endif - -#define dmoribossroom_room_1Tex_009B20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_009B20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_009B20[] = dmoribossroom_room_1Tex_009B20; -#else -static const char moribossroom_room_1Tex_009B20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_009B20; -#endif - -#define dmoribossroom_room_1Tex_009A20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_009A20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_009A20[] = dmoribossroom_room_1Tex_009A20; -#else -static const char moribossroom_room_1Tex_009A20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_009A20; -#endif - -#define dmoribossroom_room_1Tex_00CD20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00CD20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_00CD20[] = dmoribossroom_room_1Tex_00CD20; -#else -static const char moribossroom_room_1Tex_00CD20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_00CD20; -#endif - -#define dmoribossroom_room_1TLUT_006828 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1TLUT_006828" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1TLUT_006828[] = dmoribossroom_room_1TLUT_006828; -#else -static const char moribossroom_room_1TLUT_006828[] __attribute__((aligned (2))) = dmoribossroom_room_1TLUT_006828; -#endif - -#define dmoribossroom_room_1Tex_00C520 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00C520" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_00C520[] = dmoribossroom_room_1Tex_00C520; -#else -static const char moribossroom_room_1Tex_00C520[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_00C520; -#endif - -#define dmoribossroom_room_1Tex_00BD20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_00BD20[] = dmoribossroom_room_1Tex_00BD20; -#else -static const char moribossroom_room_1Tex_00BD20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_00BD20; -#endif - -#define dmoribossroom_room_1Tex_00AD20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00AD20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_00AD20[] = dmoribossroom_room_1Tex_00AD20; -#else -static const char moribossroom_room_1Tex_00AD20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_00AD20; -#endif - -#define dmoribossroom_room_1Tex_00A520 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00A520" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_00A520[] = dmoribossroom_room_1Tex_00A520; -#else -static const char moribossroom_room_1Tex_00A520[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_00A520; -#endif - -#define dmoribossroom_room_1Tex_009D20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_009D20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_009D20[] = dmoribossroom_room_1Tex_009D20; -#else -static const char moribossroom_room_1Tex_009D20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_009D20; -#endif - -#define dmoribossroom_room_1Tex_008A20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_008A20" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_008A20[] = dmoribossroom_room_1Tex_008A20; -#else -static const char moribossroom_room_1Tex_008A20[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_008A20; -#endif - -#define dmoribossroom_room_1Tex_00B520 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_00B520[] = dmoribossroom_room_1Tex_00B520; -#else -static const char moribossroom_room_1Tex_00B520[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_00B520; -#endif - -#define dmoribossroom_room_1DL_00D698 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1DL_00D698" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1DL_00D698[] = dmoribossroom_room_1DL_00D698; -#else -static const char moribossroom_room_1DL_00D698[] __attribute__((aligned (2))) = dmoribossroom_room_1DL_00D698; -#endif - -#define dmoribossroom_room_1Tex_00D6A8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00D6A8" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_room_1Tex_00D6A8[] = dmoribossroom_room_1Tex_00D6A8; -#else -static const char moribossroom_room_1Tex_00D6A8[] __attribute__((aligned (2))) = dmoribossroom_room_1Tex_00D6A8; -#endif - +#include "align_asset_macro.h" + +#define dmoribossroom_room_1DL_0067D0 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1DL_0067D0" +static const ALIGN_ASSET(2) char moribossroom_room_1DL_0067D0[] = dmoribossroom_room_1DL_0067D0; + +#define dmoribossroom_room_1Tex_007A20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_007A20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_007A20[] = dmoribossroom_room_1Tex_007A20; + +#define dmoribossroom_room_1Tex_006A20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_006A20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_006A20[] = dmoribossroom_room_1Tex_006A20; + +#define dmoribossroom_room_1Tex_009B20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_009B20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_009B20[] = dmoribossroom_room_1Tex_009B20; + +#define dmoribossroom_room_1Tex_009A20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_009A20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_009A20[] = dmoribossroom_room_1Tex_009A20; + +#define dmoribossroom_room_1Tex_00CD20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00CD20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_00CD20[] = dmoribossroom_room_1Tex_00CD20; + +#define dmoribossroom_room_1TLUT_006828 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1TLUT_006828" +static const ALIGN_ASSET(2) char moribossroom_room_1TLUT_006828[] = dmoribossroom_room_1TLUT_006828; + +#define dmoribossroom_room_1Tex_00C520 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00C520" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_00C520[] = dmoribossroom_room_1Tex_00C520; + +#define dmoribossroom_room_1Tex_00BD20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00BD20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_00BD20[] = dmoribossroom_room_1Tex_00BD20; + +#define dmoribossroom_room_1Tex_00AD20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00AD20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_00AD20[] = dmoribossroom_room_1Tex_00AD20; + +#define dmoribossroom_room_1Tex_00A520 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00A520" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_00A520[] = dmoribossroom_room_1Tex_00A520; + +#define dmoribossroom_room_1Tex_009D20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_009D20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_009D20[] = dmoribossroom_room_1Tex_009D20; + +#define dmoribossroom_room_1Tex_008A20 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_008A20" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_008A20[] = dmoribossroom_room_1Tex_008A20; + +#define dmoribossroom_room_1Tex_00B520 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00B520" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_00B520[] = dmoribossroom_room_1Tex_00B520; + +#define dmoribossroom_room_1DL_00D698 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1DL_00D698" +static const ALIGN_ASSET(2) char moribossroom_room_1DL_00D698[] = dmoribossroom_room_1DL_00D698; + +#define dmoribossroom_room_1Tex_00D6A8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_room_1Tex_00D6A8" +static const ALIGN_ASSET(2) char moribossroom_room_1Tex_00D6A8[] = dmoribossroom_room_1Tex_00D6A8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/moribossroom/moribossroom_scene.h b/soh/assets/scenes/dungeons/moribossroom/moribossroom_scene.h index e3b211926..6f6707a2d 100644 --- a/soh/assets/scenes/dungeons/moribossroom/moribossroom_scene.h +++ b/soh/assets/scenes/dungeons/moribossroom/moribossroom_scene.h @@ -1,30 +1,15 @@ #pragma once -#define dmoribossroom_sceneCollisionHeader_000B1C "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_sceneCollisionHeader_000B1C" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_sceneCollisionHeader_000B1C[] = dmoribossroom_sceneCollisionHeader_000B1C; -#else -static const char moribossroom_sceneCollisionHeader_000B1C[] __attribute__((aligned (2))) = dmoribossroom_sceneCollisionHeader_000B1C; -#endif - -#define dmoribossroom_sceneTex_000CF8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_sceneTex_000CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_sceneTex_000CF8[] = dmoribossroom_sceneTex_000CF8; -#else -static const char moribossroom_sceneTex_000CF8[] __attribute__((aligned (2))) = dmoribossroom_sceneTex_000CF8; -#endif - -#define dmoribossroom_sceneTLUT_000B50 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_sceneTLUT_000B50" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_sceneTLUT_000B50[] = dmoribossroom_sceneTLUT_000B50; -#else -static const char moribossroom_sceneTLUT_000B50[] __attribute__((aligned (2))) = dmoribossroom_sceneTLUT_000B50; -#endif - -#define dmoribossroom_sceneTex_0010F8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_sceneTex_0010F8" -#ifdef _WIN32 -static const __declspec(align(2)) char moribossroom_sceneTex_0010F8[] = dmoribossroom_sceneTex_0010F8; -#else -static const char moribossroom_sceneTex_0010F8[] __attribute__((aligned (2))) = dmoribossroom_sceneTex_0010F8; -#endif - +#include "align_asset_macro.h" + +#define dmoribossroom_sceneCollisionHeader_000B1C "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_sceneCollisionHeader_000B1C" +static const ALIGN_ASSET(2) char moribossroom_sceneCollisionHeader_000B1C[] = dmoribossroom_sceneCollisionHeader_000B1C; + +#define dmoribossroom_sceneTex_000CF8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_sceneTex_000CF8" +static const ALIGN_ASSET(2) char moribossroom_sceneTex_000CF8[] = dmoribossroom_sceneTex_000CF8; + +#define dmoribossroom_sceneTLUT_000B50 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_sceneTLUT_000B50" +static const ALIGN_ASSET(2) char moribossroom_sceneTLUT_000B50[] = dmoribossroom_sceneTLUT_000B50; + +#define dmoribossroom_sceneTex_0010F8 "__OTR__scenes/nonmq/moribossroom_scene/moribossroom_sceneTex_0010F8" +static const ALIGN_ASSET(2) char moribossroom_sceneTex_0010F8[] = dmoribossroom_sceneTex_0010F8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_0.h b/soh/assets/scenes/dungeons/ydan/ydan_room_0.h index 36d6cb4cc..102afe159 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_0.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_0.h @@ -1,205 +1,90 @@ #pragma once -#define dydan_room_0DL_006D88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_006D88" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0DL_006D88[] = dydan_room_0DL_006D88; -#else -static const char ydan_room_0DL_006D88[] __attribute__((aligned (2))) = dydan_room_0DL_006D88; -#endif - -#define dydan_room_0Tex_00A5C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00A5C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00A5C0[] = dydan_room_0Tex_00A5C0; -#else -static const char ydan_room_0Tex_00A5C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00A5C0; -#endif - -#define dydan_room_0Tex_00D5C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00D5C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00D5C0[] = dydan_room_0Tex_00D5C0; -#else -static const char ydan_room_0Tex_00D5C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00D5C0; -#endif - -#define dydan_room_0Tex_00A1C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00A1C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00A1C0[] = dydan_room_0Tex_00A1C0; -#else -static const char ydan_room_0Tex_00A1C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00A1C0; -#endif - -#define dydan_room_0Tex_0099C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0099C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_0099C0[] = dydan_room_0Tex_0099C0; -#else -static const char ydan_room_0Tex_0099C0[] __attribute__((aligned (2))) = dydan_room_0Tex_0099C0; -#endif - -#define dydan_room_0DL_012E30 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_012E30" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0DL_012E30[] = dydan_room_0DL_012E30; -#else -static const char ydan_room_0DL_012E30[] __attribute__((aligned (2))) = dydan_room_0DL_012E30; -#endif - -#define dydan_room_0Tex_013F48 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_013F48" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_013F48[] = dydan_room_0Tex_013F48; -#else -static const char ydan_room_0Tex_013F48[] __attribute__((aligned (2))) = dydan_room_0Tex_013F48; -#endif - -#define dydan_room_0DL_012CA8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_012CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0DL_012CA8[] = dydan_room_0DL_012CA8; -#else -static const char ydan_room_0DL_012CA8[] __attribute__((aligned (2))) = dydan_room_0DL_012CA8; -#endif - -#define dydan_room_0Tex_012F48 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_012F48" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_012F48[] = dydan_room_0Tex_012F48; -#else -static const char ydan_room_0Tex_012F48[] __attribute__((aligned (2))) = dydan_room_0Tex_012F48; -#endif - -#define dydan_room_0DL_005E60 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_005E60" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0DL_005E60[] = dydan_room_0DL_005E60; -#else -static const char ydan_room_0DL_005E60[] __attribute__((aligned (2))) = dydan_room_0DL_005E60; -#endif - -#define dydan_room_0Tex_0071C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0071C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_0071C0[] = dydan_room_0Tex_0071C0; -#else -static const char ydan_room_0Tex_0071C0[] __attribute__((aligned (2))) = dydan_room_0Tex_0071C0; -#endif - -#define dydan_room_0Tex_0081C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0081C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_0081C0[] = dydan_room_0Tex_0081C0; -#else -static const char ydan_room_0Tex_0081C0[] __attribute__((aligned (2))) = dydan_room_0Tex_0081C0; -#endif - -#define dydan_room_0Tex_00F9C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00F9C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00F9C0[] = dydan_room_0Tex_00F9C0; -#else -static const char ydan_room_0Tex_00F9C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00F9C0; -#endif - -#define dydan_room_0DL_0124C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_0124C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0DL_0124C0[] = dydan_room_0DL_0124C0; -#else -static const char ydan_room_0DL_0124C0[] __attribute__((aligned (2))) = dydan_room_0DL_0124C0; -#endif - -#define dydan_room_0Tex_014348 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_014348" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_014348[] = dydan_room_0Tex_014348; -#else -static const char ydan_room_0Tex_014348[] __attribute__((aligned (2))) = dydan_room_0Tex_014348; -#endif - -#define dydan_room_0DL_006798 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_006798" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0DL_006798[] = dydan_room_0DL_006798; -#else -static const char ydan_room_0DL_006798[] __attribute__((aligned (2))) = dydan_room_0DL_006798; -#endif - -#define dydan_room_0DL_003450 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_003450" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0DL_003450[] = dydan_room_0DL_003450; -#else -static const char ydan_room_0DL_003450[] __attribute__((aligned (2))) = dydan_room_0DL_003450; -#endif - -#define dydan_room_0Tex_0091C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0091C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_0091C0[] = dydan_room_0Tex_0091C0; -#else -static const char ydan_room_0Tex_0091C0[] __attribute__((aligned (2))) = dydan_room_0Tex_0091C0; -#endif - -#define dydan_room_0Tex_00E1C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00E1C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00E1C0[] = dydan_room_0Tex_00E1C0; -#else -static const char ydan_room_0Tex_00E1C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00E1C0; -#endif - -#define dydan_room_0Tex_0109C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0109C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_0109C0[] = dydan_room_0Tex_0109C0; -#else -static const char ydan_room_0Tex_0109C0[] __attribute__((aligned (2))) = dydan_room_0Tex_0109C0; -#endif - -#define dydan_room_0Tex_00D9C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00D9C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00D9C0[] = dydan_room_0Tex_00D9C0; -#else -static const char ydan_room_0Tex_00D9C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00D9C0; -#endif - -#define dydan_room_0Tex_00C5C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00C5C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00C5C0[] = dydan_room_0Tex_00C5C0; -#else -static const char ydan_room_0Tex_00C5C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00C5C0; -#endif - -#define dydan_room_0Tex_00B5C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00B5C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00B5C0[] = dydan_room_0Tex_00B5C0; -#else -static const char ydan_room_0Tex_00B5C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00B5C0; -#endif - -#define dydan_room_0Tex_00F1C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00F1C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00F1C0[] = dydan_room_0Tex_00F1C0; -#else -static const char ydan_room_0Tex_00F1C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00F1C0; -#endif - -#define dydan_room_0Tex_00E9C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00E9C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00E9C0[] = dydan_room_0Tex_00E9C0; -#else -static const char ydan_room_0Tex_00E9C0[] __attribute__((aligned (2))) = dydan_room_0Tex_00E9C0; -#endif - -#define dydan_room_0Tex_00CDC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00CDC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00CDC0[] = dydan_room_0Tex_00CDC0; -#else -static const char ydan_room_0Tex_00CDC0[] __attribute__((aligned (2))) = dydan_room_0Tex_00CDC0; -#endif - -#define dydan_room_0Tex_00BDC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00BDC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00BDC0[] = dydan_room_0Tex_00BDC0; -#else -static const char ydan_room_0Tex_00BDC0[] __attribute__((aligned (2))) = dydan_room_0Tex_00BDC0; -#endif - -#define dydan_room_0Tex_00ADC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00ADC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0Tex_00ADC0[] = dydan_room_0Tex_00ADC0; -#else -static const char ydan_room_0Tex_00ADC0[] __attribute__((aligned (2))) = dydan_room_0Tex_00ADC0; -#endif - -#define dydan_room_0DL_011290 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_011290" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_0DL_011290[] = dydan_room_0DL_011290; -#else -static const char ydan_room_0DL_011290[] __attribute__((aligned (2))) = dydan_room_0DL_011290; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_0DL_006D88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_006D88" +static const ALIGN_ASSET(2) char ydan_room_0DL_006D88[] = dydan_room_0DL_006D88; + +#define dydan_room_0Tex_00A5C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00A5C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00A5C0[] = dydan_room_0Tex_00A5C0; + +#define dydan_room_0Tex_00D5C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00D5C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00D5C0[] = dydan_room_0Tex_00D5C0; + +#define dydan_room_0Tex_00A1C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00A1C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00A1C0[] = dydan_room_0Tex_00A1C0; + +#define dydan_room_0Tex_0099C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0099C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_0099C0[] = dydan_room_0Tex_0099C0; + +#define dydan_room_0DL_012E30 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_012E30" +static const ALIGN_ASSET(2) char ydan_room_0DL_012E30[] = dydan_room_0DL_012E30; + +#define dydan_room_0Tex_013F48 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_013F48" +static const ALIGN_ASSET(2) char ydan_room_0Tex_013F48[] = dydan_room_0Tex_013F48; + +#define dydan_room_0DL_012CA8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_012CA8" +static const ALIGN_ASSET(2) char ydan_room_0DL_012CA8[] = dydan_room_0DL_012CA8; + +#define dydan_room_0Tex_012F48 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_012F48" +static const ALIGN_ASSET(2) char ydan_room_0Tex_012F48[] = dydan_room_0Tex_012F48; + +#define dydan_room_0DL_005E60 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_005E60" +static const ALIGN_ASSET(2) char ydan_room_0DL_005E60[] = dydan_room_0DL_005E60; + +#define dydan_room_0Tex_0071C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0071C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_0071C0[] = dydan_room_0Tex_0071C0; + +#define dydan_room_0Tex_0081C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0081C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_0081C0[] = dydan_room_0Tex_0081C0; + +#define dydan_room_0Tex_00F9C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00F9C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00F9C0[] = dydan_room_0Tex_00F9C0; + +#define dydan_room_0DL_0124C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_0124C0" +static const ALIGN_ASSET(2) char ydan_room_0DL_0124C0[] = dydan_room_0DL_0124C0; + +#define dydan_room_0Tex_014348 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_014348" +static const ALIGN_ASSET(2) char ydan_room_0Tex_014348[] = dydan_room_0Tex_014348; + +#define dydan_room_0DL_006798 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_006798" +static const ALIGN_ASSET(2) char ydan_room_0DL_006798[] = dydan_room_0DL_006798; + +#define dydan_room_0DL_003450 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_003450" +static const ALIGN_ASSET(2) char ydan_room_0DL_003450[] = dydan_room_0DL_003450; + +#define dydan_room_0Tex_0091C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0091C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_0091C0[] = dydan_room_0Tex_0091C0; + +#define dydan_room_0Tex_00E1C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00E1C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00E1C0[] = dydan_room_0Tex_00E1C0; + +#define dydan_room_0Tex_0109C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_0109C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_0109C0[] = dydan_room_0Tex_0109C0; + +#define dydan_room_0Tex_00D9C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00D9C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00D9C0[] = dydan_room_0Tex_00D9C0; + +#define dydan_room_0Tex_00C5C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00C5C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00C5C0[] = dydan_room_0Tex_00C5C0; + +#define dydan_room_0Tex_00B5C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00B5C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00B5C0[] = dydan_room_0Tex_00B5C0; + +#define dydan_room_0Tex_00F1C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00F1C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00F1C0[] = dydan_room_0Tex_00F1C0; + +#define dydan_room_0Tex_00E9C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00E9C0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00E9C0[] = dydan_room_0Tex_00E9C0; + +#define dydan_room_0Tex_00CDC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00CDC0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00CDC0[] = dydan_room_0Tex_00CDC0; + +#define dydan_room_0Tex_00BDC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00BDC0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00BDC0[] = dydan_room_0Tex_00BDC0; + +#define dydan_room_0Tex_00ADC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0Tex_00ADC0" +static const ALIGN_ASSET(2) char ydan_room_0Tex_00ADC0[] = dydan_room_0Tex_00ADC0; + +#define dydan_room_0DL_011290 "__OTR__scenes/nonmq/ydan_scene/ydan_room_0DL_011290" +static const ALIGN_ASSET(2) char ydan_room_0DL_011290[] = dydan_room_0DL_011290; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_1.h b/soh/assets/scenes/dungeons/ydan/ydan_room_1.h index 07ba102c1..c2ceb6947 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_1.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_1.h @@ -1,51 +1,24 @@ #pragma once -#define dydan_room_1DL_000A40 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1DL_000A40" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_1DL_000A40[] = dydan_room_1DL_000A40; -#else -static const char ydan_room_1DL_000A40[] __attribute__((aligned (2))) = dydan_room_1DL_000A40; -#endif - -#define dydan_room_1Tex_001798 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_001798" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_1Tex_001798[] = dydan_room_1Tex_001798; -#else -static const char ydan_room_1Tex_001798[] __attribute__((aligned (2))) = dydan_room_1Tex_001798; -#endif - -#define dydan_room_1Tex_001F98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_001F98" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_1Tex_001F98[] = dydan_room_1Tex_001F98; -#else -static const char ydan_room_1Tex_001F98[] __attribute__((aligned (2))) = dydan_room_1Tex_001F98; -#endif - -#define dydan_room_1Tex_000F98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_000F98" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_1Tex_000F98[] = dydan_room_1Tex_000F98; -#else -static const char ydan_room_1Tex_000F98[] __attribute__((aligned (2))) = dydan_room_1Tex_000F98; -#endif - -#define dydan_room_1Tex_002798 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_002798" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_1Tex_002798[] = dydan_room_1Tex_002798; -#else -static const char ydan_room_1Tex_002798[] __attribute__((aligned (2))) = dydan_room_1Tex_002798; -#endif - -#define dydan_room_1DL_003110 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1DL_003110" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_1DL_003110[] = dydan_room_1DL_003110; -#else -static const char ydan_room_1DL_003110[] __attribute__((aligned (2))) = dydan_room_1DL_003110; -#endif - -#define dydan_room_1Tex_003200 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_003200" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_1Tex_003200[] = dydan_room_1Tex_003200; -#else -static const char ydan_room_1Tex_003200[] __attribute__((aligned (2))) = dydan_room_1Tex_003200; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_1DL_000A40 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1DL_000A40" +static const ALIGN_ASSET(2) char ydan_room_1DL_000A40[] = dydan_room_1DL_000A40; + +#define dydan_room_1Tex_001798 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_001798" +static const ALIGN_ASSET(2) char ydan_room_1Tex_001798[] = dydan_room_1Tex_001798; + +#define dydan_room_1Tex_001F98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_001F98" +static const ALIGN_ASSET(2) char ydan_room_1Tex_001F98[] = dydan_room_1Tex_001F98; + +#define dydan_room_1Tex_000F98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_000F98" +static const ALIGN_ASSET(2) char ydan_room_1Tex_000F98[] = dydan_room_1Tex_000F98; + +#define dydan_room_1Tex_002798 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_002798" +static const ALIGN_ASSET(2) char ydan_room_1Tex_002798[] = dydan_room_1Tex_002798; + +#define dydan_room_1DL_003110 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1DL_003110" +static const ALIGN_ASSET(2) char ydan_room_1DL_003110[] = dydan_room_1DL_003110; + +#define dydan_room_1Tex_003200 "__OTR__scenes/nonmq/ydan_scene/ydan_room_1Tex_003200" +static const ALIGN_ASSET(2) char ydan_room_1Tex_003200[] = dydan_room_1Tex_003200; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_10.h b/soh/assets/scenes/dungeons/ydan/ydan_room_10.h index de014b09c..77a76e1d5 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_10.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_10.h @@ -1,51 +1,24 @@ #pragma once -#define dydan_room_10DL_001370 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10DL_001370" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_10DL_001370[] = dydan_room_10DL_001370; -#else -static const char ydan_room_10DL_001370[] __attribute__((aligned (2))) = dydan_room_10DL_001370; -#endif - -#define dydan_room_10Tex_001BE0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_001BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_10Tex_001BE0[] = dydan_room_10Tex_001BE0; -#else -static const char ydan_room_10Tex_001BE0[] __attribute__((aligned (2))) = dydan_room_10Tex_001BE0; -#endif - -#define dydan_room_10Tex_0023E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_0023E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_10Tex_0023E0[] = dydan_room_10Tex_0023E0; -#else -static const char ydan_room_10Tex_0023E0[] __attribute__((aligned (2))) = dydan_room_10Tex_0023E0; -#endif - -#define dydan_room_10Tex_002BE0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_002BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_10Tex_002BE0[] = dydan_room_10Tex_002BE0; -#else -static const char ydan_room_10Tex_002BE0[] __attribute__((aligned (2))) = dydan_room_10Tex_002BE0; -#endif - -#define dydan_room_10Tex_0033E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_0033E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_10Tex_0033E0[] = dydan_room_10Tex_0033E0; -#else -static const char ydan_room_10Tex_0033E0[] __attribute__((aligned (2))) = dydan_room_10Tex_0033E0; -#endif - -#define dydan_room_10DL_003D20 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10DL_003D20" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_10DL_003D20[] = dydan_room_10DL_003D20; -#else -static const char ydan_room_10DL_003D20[] __attribute__((aligned (2))) = dydan_room_10DL_003D20; -#endif - -#define dydan_room_10Tex_003DF8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_003DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_10Tex_003DF8[] = dydan_room_10Tex_003DF8; -#else -static const char ydan_room_10Tex_003DF8[] __attribute__((aligned (2))) = dydan_room_10Tex_003DF8; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_10DL_001370 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10DL_001370" +static const ALIGN_ASSET(2) char ydan_room_10DL_001370[] = dydan_room_10DL_001370; + +#define dydan_room_10Tex_001BE0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_001BE0" +static const ALIGN_ASSET(2) char ydan_room_10Tex_001BE0[] = dydan_room_10Tex_001BE0; + +#define dydan_room_10Tex_0023E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_0023E0" +static const ALIGN_ASSET(2) char ydan_room_10Tex_0023E0[] = dydan_room_10Tex_0023E0; + +#define dydan_room_10Tex_002BE0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_002BE0" +static const ALIGN_ASSET(2) char ydan_room_10Tex_002BE0[] = dydan_room_10Tex_002BE0; + +#define dydan_room_10Tex_0033E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_0033E0" +static const ALIGN_ASSET(2) char ydan_room_10Tex_0033E0[] = dydan_room_10Tex_0033E0; + +#define dydan_room_10DL_003D20 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10DL_003D20" +static const ALIGN_ASSET(2) char ydan_room_10DL_003D20[] = dydan_room_10DL_003D20; + +#define dydan_room_10Tex_003DF8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_10Tex_003DF8" +static const ALIGN_ASSET(2) char ydan_room_10Tex_003DF8[] = dydan_room_10Tex_003DF8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_11.h b/soh/assets/scenes/dungeons/ydan/ydan_room_11.h index 671a518f1..dadff29b5 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_11.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_11.h @@ -1,51 +1,24 @@ #pragma once -#define dydan_room_11DL_002D90 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11DL_002D90" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_11DL_002D90[] = dydan_room_11DL_002D90; -#else -static const char ydan_room_11DL_002D90[] __attribute__((aligned (2))) = dydan_room_11DL_002D90; -#endif - -#define dydan_room_11Tex_0054D8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_0054D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_11Tex_0054D8[] = dydan_room_11Tex_0054D8; -#else -static const char ydan_room_11Tex_0054D8[] __attribute__((aligned (2))) = dydan_room_11Tex_0054D8; -#endif - -#define dydan_room_11Tex_0044D8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_0044D8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_11Tex_0044D8[] = dydan_room_11Tex_0044D8; -#else -static const char ydan_room_11Tex_0044D8[] __attribute__((aligned (2))) = dydan_room_11Tex_0044D8; -#endif - -#define dydan_room_11Tex_005CD8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_005CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_11Tex_005CD8[] = dydan_room_11Tex_005CD8; -#else -static const char ydan_room_11Tex_005CD8[] __attribute__((aligned (2))) = dydan_room_11Tex_005CD8; -#endif - -#define dydan_room_11Tex_003CD8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_003CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_11Tex_003CD8[] = dydan_room_11Tex_003CD8; -#else -static const char ydan_room_11Tex_003CD8[] __attribute__((aligned (2))) = dydan_room_11Tex_003CD8; -#endif - -#define dydan_room_11DL_006730 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11DL_006730" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_11DL_006730[] = dydan_room_11DL_006730; -#else -static const char ydan_room_11DL_006730[] __attribute__((aligned (2))) = dydan_room_11DL_006730; -#endif - -#define dydan_room_11Tex_006968 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_006968" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_11Tex_006968[] = dydan_room_11Tex_006968; -#else -static const char ydan_room_11Tex_006968[] __attribute__((aligned (2))) = dydan_room_11Tex_006968; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_11DL_002D90 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11DL_002D90" +static const ALIGN_ASSET(2) char ydan_room_11DL_002D90[] = dydan_room_11DL_002D90; + +#define dydan_room_11Tex_0054D8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_0054D8" +static const ALIGN_ASSET(2) char ydan_room_11Tex_0054D8[] = dydan_room_11Tex_0054D8; + +#define dydan_room_11Tex_0044D8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_0044D8" +static const ALIGN_ASSET(2) char ydan_room_11Tex_0044D8[] = dydan_room_11Tex_0044D8; + +#define dydan_room_11Tex_005CD8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_005CD8" +static const ALIGN_ASSET(2) char ydan_room_11Tex_005CD8[] = dydan_room_11Tex_005CD8; + +#define dydan_room_11Tex_003CD8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_003CD8" +static const ALIGN_ASSET(2) char ydan_room_11Tex_003CD8[] = dydan_room_11Tex_003CD8; + +#define dydan_room_11DL_006730 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11DL_006730" +static const ALIGN_ASSET(2) char ydan_room_11DL_006730[] = dydan_room_11DL_006730; + +#define dydan_room_11Tex_006968 "__OTR__scenes/nonmq/ydan_scene/ydan_room_11Tex_006968" +static const ALIGN_ASSET(2) char ydan_room_11Tex_006968[] = dydan_room_11Tex_006968; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_2.h b/soh/assets/scenes/dungeons/ydan/ydan_room_2.h index 87b1f6c50..acd5aae53 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_2.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_2.h @@ -1,65 +1,30 @@ #pragma once -#define dydan_room_2DL_001160 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2DL_001160" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2DL_001160[] = dydan_room_2DL_001160; -#else -static const char ydan_room_2DL_001160[] __attribute__((aligned (2))) = dydan_room_2DL_001160; -#endif - -#define dydan_room_2Tex_001D08 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_001D08" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2Tex_001D08[] = dydan_room_2Tex_001D08; -#else -static const char ydan_room_2Tex_001D08[] __attribute__((aligned (2))) = dydan_room_2Tex_001D08; -#endif - -#define dydan_room_2Tex_002D08 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_002D08" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2Tex_002D08[] = dydan_room_2Tex_002D08; -#else -static const char ydan_room_2Tex_002D08[] __attribute__((aligned (2))) = dydan_room_2Tex_002D08; -#endif - -#define dydan_room_2Tex_004508 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_004508" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2Tex_004508[] = dydan_room_2Tex_004508; -#else -static const char ydan_room_2Tex_004508[] __attribute__((aligned (2))) = dydan_room_2Tex_004508; -#endif - -#define dydan_room_2Tex_002508 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_002508" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2Tex_002508[] = dydan_room_2Tex_002508; -#else -static const char ydan_room_2Tex_002508[] __attribute__((aligned (2))) = dydan_room_2Tex_002508; -#endif - -#define dydan_room_2Tex_003D08 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_003D08" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2Tex_003D08[] = dydan_room_2Tex_003D08; -#else -static const char ydan_room_2Tex_003D08[] __attribute__((aligned (2))) = dydan_room_2Tex_003D08; -#endif - -#define dydan_room_2Tex_003508 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_003508" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2Tex_003508[] = dydan_room_2Tex_003508; -#else -static const char ydan_room_2Tex_003508[] __attribute__((aligned (2))) = dydan_room_2Tex_003508; -#endif - -#define dydan_room_2DL_004E50 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2DL_004E50" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2DL_004E50[] = dydan_room_2DL_004E50; -#else -static const char ydan_room_2DL_004E50[] __attribute__((aligned (2))) = dydan_room_2DL_004E50; -#endif - -#define dydan_room_2Tex_004F28 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_004F28" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_2Tex_004F28[] = dydan_room_2Tex_004F28; -#else -static const char ydan_room_2Tex_004F28[] __attribute__((aligned (2))) = dydan_room_2Tex_004F28; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_2DL_001160 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2DL_001160" +static const ALIGN_ASSET(2) char ydan_room_2DL_001160[] = dydan_room_2DL_001160; + +#define dydan_room_2Tex_001D08 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_001D08" +static const ALIGN_ASSET(2) char ydan_room_2Tex_001D08[] = dydan_room_2Tex_001D08; + +#define dydan_room_2Tex_002D08 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_002D08" +static const ALIGN_ASSET(2) char ydan_room_2Tex_002D08[] = dydan_room_2Tex_002D08; + +#define dydan_room_2Tex_004508 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_004508" +static const ALIGN_ASSET(2) char ydan_room_2Tex_004508[] = dydan_room_2Tex_004508; + +#define dydan_room_2Tex_002508 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_002508" +static const ALIGN_ASSET(2) char ydan_room_2Tex_002508[] = dydan_room_2Tex_002508; + +#define dydan_room_2Tex_003D08 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_003D08" +static const ALIGN_ASSET(2) char ydan_room_2Tex_003D08[] = dydan_room_2Tex_003D08; + +#define dydan_room_2Tex_003508 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_003508" +static const ALIGN_ASSET(2) char ydan_room_2Tex_003508[] = dydan_room_2Tex_003508; + +#define dydan_room_2DL_004E50 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2DL_004E50" +static const ALIGN_ASSET(2) char ydan_room_2DL_004E50[] = dydan_room_2DL_004E50; + +#define dydan_room_2Tex_004F28 "__OTR__scenes/nonmq/ydan_scene/ydan_room_2Tex_004F28" +static const ALIGN_ASSET(2) char ydan_room_2Tex_004F28[] = dydan_room_2Tex_004F28; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_3.h b/soh/assets/scenes/dungeons/ydan/ydan_room_3.h index b3a1506c5..3642951b0 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_3.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_3.h @@ -1,226 +1,99 @@ #pragma once -#define dydan_room_3DL_000F00 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_000F00" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_000F00[] = dydan_room_3DL_000F00; -#else -static const char ydan_room_3DL_000F00[] __attribute__((aligned (2))) = dydan_room_3DL_000F00; -#endif - -#define dydan_room_3Tex_008CC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_008CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_008CC0[] = dydan_room_3Tex_008CC0; -#else -static const char ydan_room_3Tex_008CC0[] __attribute__((aligned (2))) = dydan_room_3Tex_008CC0; -#endif - -#define dydan_room_3DL_005160 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_005160" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_005160[] = dydan_room_3DL_005160; -#else -static const char ydan_room_3DL_005160[] __attribute__((aligned (2))) = dydan_room_3DL_005160; -#endif - -#define dydan_room_3Tex_0084C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_0084C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_0084C0[] = dydan_room_3Tex_0084C0; -#else -static const char ydan_room_3Tex_0084C0[] __attribute__((aligned (2))) = dydan_room_3Tex_0084C0; -#endif - -#define dydan_room_3Tex_0094C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_0094C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_0094C0[] = dydan_room_3Tex_0094C0; -#else -static const char ydan_room_3Tex_0094C0[] __attribute__((aligned (2))) = dydan_room_3Tex_0094C0; -#endif - -#define dydan_room_3DL_0106E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_0106E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_0106E0[] = dydan_room_3DL_0106E0; -#else -static const char ydan_room_3DL_0106E0[] __attribute__((aligned (2))) = dydan_room_3DL_0106E0; -#endif - -#define dydan_room_3Tex_011DB0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_011DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_011DB0[] = dydan_room_3Tex_011DB0; -#else -static const char ydan_room_3Tex_011DB0[] __attribute__((aligned (2))) = dydan_room_3Tex_011DB0; -#endif - -#define dydan_room_3Tex_0131B0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_0131B0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_0131B0[] = dydan_room_3Tex_0131B0; -#else -static const char ydan_room_3Tex_0131B0[] __attribute__((aligned (2))) = dydan_room_3Tex_0131B0; -#endif - -#define dydan_room_3DL_005EC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_005EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_005EC0[] = dydan_room_3DL_005EC0; -#else -static const char ydan_room_3DL_005EC0[] __attribute__((aligned (2))) = dydan_room_3DL_005EC0; -#endif - -#define dydan_room_3Tex_00F8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00F8C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00F8C0[] = dydan_room_3Tex_00F8C0; -#else -static const char ydan_room_3Tex_00F8C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00F8C0; -#endif - -#define dydan_room_3Tex_00B8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00B8C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00B8C0[] = dydan_room_3Tex_00B8C0; -#else -static const char ydan_room_3Tex_00B8C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00B8C0; -#endif - -#define dydan_room_3Tex_00D8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00D8C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00D8C0[] = dydan_room_3Tex_00D8C0; -#else -static const char ydan_room_3Tex_00D8C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00D8C0; -#endif - -#define dydan_room_3DL_0116C8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_0116C8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_0116C8[] = dydan_room_3DL_0116C8; -#else -static const char ydan_room_3DL_0116C8[] __attribute__((aligned (2))) = dydan_room_3DL_0116C8; -#endif - -#define dydan_room_3DL_006B18 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_006B18[] = dydan_room_3DL_006B18; -#else -static const char ydan_room_3DL_006B18[] __attribute__((aligned (2))) = dydan_room_3DL_006B18; -#endif - -#define dydan_room_3Tex_0074C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_0074C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_0074C0[] = dydan_room_3Tex_0074C0; -#else -static const char ydan_room_3Tex_0074C0[] __attribute__((aligned (2))) = dydan_room_3Tex_0074C0; -#endif - -#define dydan_room_3Tex_00E8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00E8C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00E8C0[] = dydan_room_3Tex_00E8C0; -#else -static const char ydan_room_3Tex_00E8C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00E8C0; -#endif - -#define dydan_room_3DL_007208 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_007208" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_007208[] = dydan_room_3DL_007208; -#else -static const char ydan_room_3DL_007208[] __attribute__((aligned (2))) = dydan_room_3DL_007208; -#endif - -#define dydan_room_3Tex_00E0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00E0C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00E0C0[] = dydan_room_3Tex_00E0C0; -#else -static const char ydan_room_3Tex_00E0C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00E0C0; -#endif - -#define dydan_room_3DL_011AC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_011AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_011AC0[] = dydan_room_3DL_011AC0; -#else -static const char ydan_room_3DL_011AC0[] __attribute__((aligned (2))) = dydan_room_3DL_011AC0; -#endif - -#define dydan_room_3DL_011C68 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_011C68" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_011C68[] = dydan_room_3DL_011C68; -#else -static const char ydan_room_3DL_011C68[] __attribute__((aligned (2))) = dydan_room_3DL_011C68; -#endif - -#define dydan_room_3Tex_012DB0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_012DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_012DB0[] = dydan_room_3Tex_012DB0; -#else -static const char ydan_room_3Tex_012DB0[] __attribute__((aligned (2))) = dydan_room_3Tex_012DB0; -#endif - -#define dydan_room_3DL_010B48 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_010B48" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_010B48[] = dydan_room_3DL_010B48; -#else -static const char ydan_room_3DL_010B48[] __attribute__((aligned (2))) = dydan_room_3DL_010B48; -#endif - -#define dydan_room_3DL_003408 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_003408" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3DL_003408[] = dydan_room_3DL_003408; -#else -static const char ydan_room_3DL_003408[] __attribute__((aligned (2))) = dydan_room_3DL_003408; -#endif - -#define dydan_room_3Tex_00A0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00A0C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00A0C0[] = dydan_room_3Tex_00A0C0; -#else -static const char ydan_room_3Tex_00A0C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00A0C0; -#endif - -#define dydan_room_3Tex_00D0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00D0C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00D0C0[] = dydan_room_3Tex_00D0C0; -#else -static const char ydan_room_3Tex_00D0C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00D0C0; -#endif - -#define dydan_room_3Tex_00D4C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00D4C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00D4C0[] = dydan_room_3Tex_00D4C0; -#else -static const char ydan_room_3Tex_00D4C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00D4C0; -#endif - -#define dydan_room_3Tex_009CC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_009CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_009CC0[] = dydan_room_3Tex_009CC0; -#else -static const char ydan_room_3Tex_009CC0[] __attribute__((aligned (2))) = dydan_room_3Tex_009CC0; -#endif - -#define dydan_room_3Tex_00B4C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00B4C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00B4C0[] = dydan_room_3Tex_00B4C0; -#else -static const char ydan_room_3Tex_00B4C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00B4C0; -#endif - -#define dydan_room_3Tex_00A8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00A8C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00A8C0[] = dydan_room_3Tex_00A8C0; -#else -static const char ydan_room_3Tex_00A8C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00A8C0; -#endif - -#define dydan_room_3Tex_00C8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00C8C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00C8C0[] = dydan_room_3Tex_00C8C0; -#else -static const char ydan_room_3Tex_00C8C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00C8C0; -#endif - -#define dydan_room_3Tex_00C0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00C0C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00C0C0[] = dydan_room_3Tex_00C0C0; -#else -static const char ydan_room_3Tex_00C0C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00C0C0; -#endif - -#define dydan_room_3Tex_00B0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00B0C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_3Tex_00B0C0[] = dydan_room_3Tex_00B0C0; -#else -static const char ydan_room_3Tex_00B0C0[] __attribute__((aligned (2))) = dydan_room_3Tex_00B0C0; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_3DL_000F00 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_000F00" +static const ALIGN_ASSET(2) char ydan_room_3DL_000F00[] = dydan_room_3DL_000F00; + +#define dydan_room_3Tex_008CC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_008CC0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_008CC0[] = dydan_room_3Tex_008CC0; + +#define dydan_room_3DL_005160 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_005160" +static const ALIGN_ASSET(2) char ydan_room_3DL_005160[] = dydan_room_3DL_005160; + +#define dydan_room_3Tex_0084C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_0084C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_0084C0[] = dydan_room_3Tex_0084C0; + +#define dydan_room_3Tex_0094C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_0094C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_0094C0[] = dydan_room_3Tex_0094C0; + +#define dydan_room_3DL_0106E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_0106E0" +static const ALIGN_ASSET(2) char ydan_room_3DL_0106E0[] = dydan_room_3DL_0106E0; + +#define dydan_room_3Tex_011DB0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_011DB0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_011DB0[] = dydan_room_3Tex_011DB0; + +#define dydan_room_3Tex_0131B0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_0131B0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_0131B0[] = dydan_room_3Tex_0131B0; + +#define dydan_room_3DL_005EC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_005EC0" +static const ALIGN_ASSET(2) char ydan_room_3DL_005EC0[] = dydan_room_3DL_005EC0; + +#define dydan_room_3Tex_00F8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00F8C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00F8C0[] = dydan_room_3Tex_00F8C0; + +#define dydan_room_3Tex_00B8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00B8C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00B8C0[] = dydan_room_3Tex_00B8C0; + +#define dydan_room_3Tex_00D8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00D8C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00D8C0[] = dydan_room_3Tex_00D8C0; + +#define dydan_room_3DL_0116C8 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_0116C8" +static const ALIGN_ASSET(2) char ydan_room_3DL_0116C8[] = dydan_room_3DL_0116C8; + +#define dydan_room_3DL_006B18 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_006B18" +static const ALIGN_ASSET(2) char ydan_room_3DL_006B18[] = dydan_room_3DL_006B18; + +#define dydan_room_3Tex_0074C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_0074C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_0074C0[] = dydan_room_3Tex_0074C0; + +#define dydan_room_3Tex_00E8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00E8C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00E8C0[] = dydan_room_3Tex_00E8C0; + +#define dydan_room_3DL_007208 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_007208" +static const ALIGN_ASSET(2) char ydan_room_3DL_007208[] = dydan_room_3DL_007208; + +#define dydan_room_3Tex_00E0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00E0C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00E0C0[] = dydan_room_3Tex_00E0C0; + +#define dydan_room_3DL_011AC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_011AC0" +static const ALIGN_ASSET(2) char ydan_room_3DL_011AC0[] = dydan_room_3DL_011AC0; + +#define dydan_room_3DL_011C68 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_011C68" +static const ALIGN_ASSET(2) char ydan_room_3DL_011C68[] = dydan_room_3DL_011C68; + +#define dydan_room_3Tex_012DB0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_012DB0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_012DB0[] = dydan_room_3Tex_012DB0; + +#define dydan_room_3DL_010B48 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_010B48" +static const ALIGN_ASSET(2) char ydan_room_3DL_010B48[] = dydan_room_3DL_010B48; + +#define dydan_room_3DL_003408 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3DL_003408" +static const ALIGN_ASSET(2) char ydan_room_3DL_003408[] = dydan_room_3DL_003408; + +#define dydan_room_3Tex_00A0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00A0C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00A0C0[] = dydan_room_3Tex_00A0C0; + +#define dydan_room_3Tex_00D0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00D0C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00D0C0[] = dydan_room_3Tex_00D0C0; + +#define dydan_room_3Tex_00D4C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00D4C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00D4C0[] = dydan_room_3Tex_00D4C0; + +#define dydan_room_3Tex_009CC0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_009CC0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_009CC0[] = dydan_room_3Tex_009CC0; + +#define dydan_room_3Tex_00B4C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00B4C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00B4C0[] = dydan_room_3Tex_00B4C0; + +#define dydan_room_3Tex_00A8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00A8C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00A8C0[] = dydan_room_3Tex_00A8C0; + +#define dydan_room_3Tex_00C8C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00C8C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00C8C0[] = dydan_room_3Tex_00C8C0; + +#define dydan_room_3Tex_00C0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00C0C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00C0C0[] = dydan_room_3Tex_00C0C0; + +#define dydan_room_3Tex_00B0C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_3Tex_00B0C0" +static const ALIGN_ASSET(2) char ydan_room_3Tex_00B0C0[] = dydan_room_3Tex_00B0C0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_4.h b/soh/assets/scenes/dungeons/ydan/ydan_room_4.h index fbbc55543..05866c7ac 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_4.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_4.h @@ -1,51 +1,24 @@ #pragma once -#define dydan_room_4DL_003B20 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4DL_003B20" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_4DL_003B20[] = dydan_room_4DL_003B20; -#else -static const char ydan_room_4DL_003B20[] __attribute__((aligned (2))) = dydan_room_4DL_003B20; -#endif - -#define dydan_room_4Tex_003C28 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_003C28" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_4Tex_003C28[] = dydan_room_4Tex_003C28; -#else -static const char ydan_room_4Tex_003C28[] __attribute__((aligned (2))) = dydan_room_4Tex_003C28; -#endif - -#define dydan_room_4DL_001080 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4DL_001080" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_4DL_001080[] = dydan_room_4DL_001080; -#else -static const char ydan_room_4DL_001080[] __attribute__((aligned (2))) = dydan_room_4DL_001080; -#endif - -#define dydan_room_4Tex_002920 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_002920" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_4Tex_002920[] = dydan_room_4Tex_002920; -#else -static const char ydan_room_4Tex_002920[] __attribute__((aligned (2))) = dydan_room_4Tex_002920; -#endif - -#define dydan_room_4Tex_003120 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_003120" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_4Tex_003120[] = dydan_room_4Tex_003120; -#else -static const char ydan_room_4Tex_003120[] __attribute__((aligned (2))) = dydan_room_4Tex_003120; -#endif - -#define dydan_room_4Tex_001920 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_001920" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_4Tex_001920[] = dydan_room_4Tex_001920; -#else -static const char ydan_room_4Tex_001920[] __attribute__((aligned (2))) = dydan_room_4Tex_001920; -#endif - -#define dydan_room_4Tex_002120 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_002120" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_4Tex_002120[] = dydan_room_4Tex_002120; -#else -static const char ydan_room_4Tex_002120[] __attribute__((aligned (2))) = dydan_room_4Tex_002120; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_4DL_003B20 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4DL_003B20" +static const ALIGN_ASSET(2) char ydan_room_4DL_003B20[] = dydan_room_4DL_003B20; + +#define dydan_room_4Tex_003C28 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_003C28" +static const ALIGN_ASSET(2) char ydan_room_4Tex_003C28[] = dydan_room_4Tex_003C28; + +#define dydan_room_4DL_001080 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4DL_001080" +static const ALIGN_ASSET(2) char ydan_room_4DL_001080[] = dydan_room_4DL_001080; + +#define dydan_room_4Tex_002920 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_002920" +static const ALIGN_ASSET(2) char ydan_room_4Tex_002920[] = dydan_room_4Tex_002920; + +#define dydan_room_4Tex_003120 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_003120" +static const ALIGN_ASSET(2) char ydan_room_4Tex_003120[] = dydan_room_4Tex_003120; + +#define dydan_room_4Tex_001920 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_001920" +static const ALIGN_ASSET(2) char ydan_room_4Tex_001920[] = dydan_room_4Tex_001920; + +#define dydan_room_4Tex_002120 "__OTR__scenes/nonmq/ydan_scene/ydan_room_4Tex_002120" +static const ALIGN_ASSET(2) char ydan_room_4Tex_002120[] = dydan_room_4Tex_002120; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_5.h b/soh/assets/scenes/dungeons/ydan/ydan_room_5.h index 68e2b10bc..36d7dcd53 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_5.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_5.h @@ -1,93 +1,42 @@ #pragma once -#define dydan_room_5DL_003C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5DL_003C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5DL_003C98[] = dydan_room_5DL_003C98; -#else -static const char ydan_room_5DL_003C98[] __attribute__((aligned (2))) = dydan_room_5DL_003C98; -#endif - -#define dydan_room_5Tex_003F88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_003F88" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_003F88[] = dydan_room_5Tex_003F88; -#else -static const char ydan_room_5Tex_003F88[] __attribute__((aligned (2))) = dydan_room_5Tex_003F88; -#endif - -#define dydan_room_5DL_0022F0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5DL_0022F0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5DL_0022F0[] = dydan_room_5DL_0022F0; -#else -static const char ydan_room_5DL_0022F0[] __attribute__((aligned (2))) = dydan_room_5DL_0022F0; -#endif - -#define dydan_room_5Tex_006B88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_006B88" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_006B88[] = dydan_room_5Tex_006B88; -#else -static const char ydan_room_5Tex_006B88[] __attribute__((aligned (2))) = dydan_room_5Tex_006B88; -#endif - -#define dydan_room_5Tex_004F88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_004F88" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_004F88[] = dydan_room_5Tex_004F88; -#else -static const char ydan_room_5Tex_004F88[] __attribute__((aligned (2))) = dydan_room_5Tex_004F88; -#endif - -#define dydan_room_5Tex_007B88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_007B88" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_007B88[] = dydan_room_5Tex_007B88; -#else -static const char ydan_room_5Tex_007B88[] __attribute__((aligned (2))) = dydan_room_5Tex_007B88; -#endif - -#define dydan_room_5Tex_004788 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_004788[] = dydan_room_5Tex_004788; -#else -static const char ydan_room_5Tex_004788[] __attribute__((aligned (2))) = dydan_room_5Tex_004788; -#endif - -#define dydan_room_5Tex_005788 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_005788" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_005788[] = dydan_room_5Tex_005788; -#else -static const char ydan_room_5Tex_005788[] __attribute__((aligned (2))) = dydan_room_5Tex_005788; -#endif - -#define dydan_room_5Tex_005B88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_005B88" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_005B88[] = dydan_room_5Tex_005B88; -#else -static const char ydan_room_5Tex_005B88[] __attribute__((aligned (2))) = dydan_room_5Tex_005B88; -#endif - -#define dydan_room_5Tex_007388 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_007388" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_007388[] = dydan_room_5Tex_007388; -#else -static const char ydan_room_5Tex_007388[] __attribute__((aligned (2))) = dydan_room_5Tex_007388; -#endif - -#define dydan_room_5Tex_006F88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_006F88" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_006F88[] = dydan_room_5Tex_006F88; -#else -static const char ydan_room_5Tex_006F88[] __attribute__((aligned (2))) = dydan_room_5Tex_006F88; -#endif - -#define dydan_room_5Tex_006388 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_006388" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_006388[] = dydan_room_5Tex_006388; -#else -static const char ydan_room_5Tex_006388[] __attribute__((aligned (2))) = dydan_room_5Tex_006388; -#endif - -#define dydan_room_5Tex_007788 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_007788" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_5Tex_007788[] = dydan_room_5Tex_007788; -#else -static const char ydan_room_5Tex_007788[] __attribute__((aligned (2))) = dydan_room_5Tex_007788; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_5DL_003C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5DL_003C98" +static const ALIGN_ASSET(2) char ydan_room_5DL_003C98[] = dydan_room_5DL_003C98; + +#define dydan_room_5Tex_003F88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_003F88" +static const ALIGN_ASSET(2) char ydan_room_5Tex_003F88[] = dydan_room_5Tex_003F88; + +#define dydan_room_5DL_0022F0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5DL_0022F0" +static const ALIGN_ASSET(2) char ydan_room_5DL_0022F0[] = dydan_room_5DL_0022F0; + +#define dydan_room_5Tex_006B88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_006B88" +static const ALIGN_ASSET(2) char ydan_room_5Tex_006B88[] = dydan_room_5Tex_006B88; + +#define dydan_room_5Tex_004F88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_004F88" +static const ALIGN_ASSET(2) char ydan_room_5Tex_004F88[] = dydan_room_5Tex_004F88; + +#define dydan_room_5Tex_007B88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_007B88" +static const ALIGN_ASSET(2) char ydan_room_5Tex_007B88[] = dydan_room_5Tex_007B88; + +#define dydan_room_5Tex_004788 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_004788" +static const ALIGN_ASSET(2) char ydan_room_5Tex_004788[] = dydan_room_5Tex_004788; + +#define dydan_room_5Tex_005788 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_005788" +static const ALIGN_ASSET(2) char ydan_room_5Tex_005788[] = dydan_room_5Tex_005788; + +#define dydan_room_5Tex_005B88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_005B88" +static const ALIGN_ASSET(2) char ydan_room_5Tex_005B88[] = dydan_room_5Tex_005B88; + +#define dydan_room_5Tex_007388 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_007388" +static const ALIGN_ASSET(2) char ydan_room_5Tex_007388[] = dydan_room_5Tex_007388; + +#define dydan_room_5Tex_006F88 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_006F88" +static const ALIGN_ASSET(2) char ydan_room_5Tex_006F88[] = dydan_room_5Tex_006F88; + +#define dydan_room_5Tex_006388 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_006388" +static const ALIGN_ASSET(2) char ydan_room_5Tex_006388[] = dydan_room_5Tex_006388; + +#define dydan_room_5Tex_007788 "__OTR__scenes/nonmq/ydan_scene/ydan_room_5Tex_007788" +static const ALIGN_ASSET(2) char ydan_room_5Tex_007788[] = dydan_room_5Tex_007788; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_6.h b/soh/assets/scenes/dungeons/ydan/ydan_room_6.h index 8553f86e5..21a9fe6c3 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_6.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_6.h @@ -1,51 +1,24 @@ #pragma once -#define dydan_room_6DL_001430 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6DL_001430" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_6DL_001430[] = dydan_room_6DL_001430; -#else -static const char ydan_room_6DL_001430[] __attribute__((aligned (2))) = dydan_room_6DL_001430; -#endif - -#define dydan_room_6Tex_001F00 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_001F00" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_6Tex_001F00[] = dydan_room_6Tex_001F00; -#else -static const char ydan_room_6Tex_001F00[] __attribute__((aligned (2))) = dydan_room_6Tex_001F00; -#endif - -#define dydan_room_6Tex_003700 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_003700" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_6Tex_003700[] = dydan_room_6Tex_003700; -#else -static const char ydan_room_6Tex_003700[] __attribute__((aligned (2))) = dydan_room_6Tex_003700; -#endif - -#define dydan_room_6Tex_002F00 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_002F00" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_6Tex_002F00[] = dydan_room_6Tex_002F00; -#else -static const char ydan_room_6Tex_002F00[] __attribute__((aligned (2))) = dydan_room_6Tex_002F00; -#endif - -#define dydan_room_6Tex_004700 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_004700" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_6Tex_004700[] = dydan_room_6Tex_004700; -#else -static const char ydan_room_6Tex_004700[] __attribute__((aligned (2))) = dydan_room_6Tex_004700; -#endif - -#define dydan_room_6Tex_002700 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_002700" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_6Tex_002700[] = dydan_room_6Tex_002700; -#else -static const char ydan_room_6Tex_002700[] __attribute__((aligned (2))) = dydan_room_6Tex_002700; -#endif - -#define dydan_room_6Tex_003F00 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_003F00" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_6Tex_003F00[] = dydan_room_6Tex_003F00; -#else -static const char ydan_room_6Tex_003F00[] __attribute__((aligned (2))) = dydan_room_6Tex_003F00; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_6DL_001430 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6DL_001430" +static const ALIGN_ASSET(2) char ydan_room_6DL_001430[] = dydan_room_6DL_001430; + +#define dydan_room_6Tex_001F00 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_001F00" +static const ALIGN_ASSET(2) char ydan_room_6Tex_001F00[] = dydan_room_6Tex_001F00; + +#define dydan_room_6Tex_003700 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_003700" +static const ALIGN_ASSET(2) char ydan_room_6Tex_003700[] = dydan_room_6Tex_003700; + +#define dydan_room_6Tex_002F00 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_002F00" +static const ALIGN_ASSET(2) char ydan_room_6Tex_002F00[] = dydan_room_6Tex_002F00; + +#define dydan_room_6Tex_004700 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_004700" +static const ALIGN_ASSET(2) char ydan_room_6Tex_004700[] = dydan_room_6Tex_004700; + +#define dydan_room_6Tex_002700 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_002700" +static const ALIGN_ASSET(2) char ydan_room_6Tex_002700[] = dydan_room_6Tex_002700; + +#define dydan_room_6Tex_003F00 "__OTR__scenes/nonmq/ydan_scene/ydan_room_6Tex_003F00" +static const ALIGN_ASSET(2) char ydan_room_6Tex_003F00[] = dydan_room_6Tex_003F00; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_7.h b/soh/assets/scenes/dungeons/ydan/ydan_room_7.h index d1424dace..a751f9cae 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_7.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_7.h @@ -1,100 +1,45 @@ #pragma once -#define dydan_room_7DL_0079C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7DL_0079C0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7DL_0079C0[] = dydan_room_7DL_0079C0; -#else -static const char ydan_room_7DL_0079C0[] __attribute__((aligned (2))) = dydan_room_7DL_0079C0; -#endif - -#define dydan_room_7Tex_007A98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_007A98" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_007A98[] = dydan_room_7Tex_007A98; -#else -static const char ydan_room_7Tex_007A98[] __attribute__((aligned (2))) = dydan_room_7Tex_007A98; -#endif - -#define dydan_room_7DL_001DE0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7DL_001DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7DL_001DE0[] = dydan_room_7DL_001DE0; -#else -static const char ydan_room_7DL_001DE0[] __attribute__((aligned (2))) = dydan_room_7DL_001DE0; -#endif - -#define dydan_room_7Tex_004C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_004C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_004C98[] = dydan_room_7Tex_004C98; -#else -static const char ydan_room_7Tex_004C98[] __attribute__((aligned (2))) = dydan_room_7Tex_004C98; -#endif - -#define dydan_room_7Tex_006098 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_006098" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_006098[] = dydan_room_7Tex_006098; -#else -static const char ydan_room_7Tex_006098[] __attribute__((aligned (2))) = dydan_room_7Tex_006098; -#endif - -#define dydan_room_7Tex_005898 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_005898" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_005898[] = dydan_room_7Tex_005898; -#else -static const char ydan_room_7Tex_005898[] __attribute__((aligned (2))) = dydan_room_7Tex_005898; -#endif - -#define dydan_room_7Tex_002C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_002C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_002C98[] = dydan_room_7Tex_002C98; -#else -static const char ydan_room_7Tex_002C98[] __attribute__((aligned (2))) = dydan_room_7Tex_002C98; -#endif - -#define dydan_room_7Tex_007098 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_007098" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_007098[] = dydan_room_7Tex_007098; -#else -static const char ydan_room_7Tex_007098[] __attribute__((aligned (2))) = dydan_room_7Tex_007098; -#endif - -#define dydan_room_7Tex_003498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_003498" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_003498[] = dydan_room_7Tex_003498; -#else -static const char ydan_room_7Tex_003498[] __attribute__((aligned (2))) = dydan_room_7Tex_003498; -#endif - -#define dydan_room_7Tex_006C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_006C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_006C98[] = dydan_room_7Tex_006C98; -#else -static const char ydan_room_7Tex_006C98[] __attribute__((aligned (2))) = dydan_room_7Tex_006C98; -#endif - -#define dydan_room_7Tex_005498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_005498" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_005498[] = dydan_room_7Tex_005498; -#else -static const char ydan_room_7Tex_005498[] __attribute__((aligned (2))) = dydan_room_7Tex_005498; -#endif - -#define dydan_room_7Tex_003C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_003C98" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_003C98[] = dydan_room_7Tex_003C98; -#else -static const char ydan_room_7Tex_003C98[] __attribute__((aligned (2))) = dydan_room_7Tex_003C98; -#endif - -#define dydan_room_7Tex_006898 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_006898" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_006898[] = dydan_room_7Tex_006898; -#else -static const char ydan_room_7Tex_006898[] __attribute__((aligned (2))) = dydan_room_7Tex_006898; -#endif - -#define dydan_room_7Tex_004498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_004498" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_7Tex_004498[] = dydan_room_7Tex_004498; -#else -static const char ydan_room_7Tex_004498[] __attribute__((aligned (2))) = dydan_room_7Tex_004498; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_7DL_0079C0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7DL_0079C0" +static const ALIGN_ASSET(2) char ydan_room_7DL_0079C0[] = dydan_room_7DL_0079C0; + +#define dydan_room_7Tex_007A98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_007A98" +static const ALIGN_ASSET(2) char ydan_room_7Tex_007A98[] = dydan_room_7Tex_007A98; + +#define dydan_room_7DL_001DE0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7DL_001DE0" +static const ALIGN_ASSET(2) char ydan_room_7DL_001DE0[] = dydan_room_7DL_001DE0; + +#define dydan_room_7Tex_004C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_004C98" +static const ALIGN_ASSET(2) char ydan_room_7Tex_004C98[] = dydan_room_7Tex_004C98; + +#define dydan_room_7Tex_006098 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_006098" +static const ALIGN_ASSET(2) char ydan_room_7Tex_006098[] = dydan_room_7Tex_006098; + +#define dydan_room_7Tex_005898 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_005898" +static const ALIGN_ASSET(2) char ydan_room_7Tex_005898[] = dydan_room_7Tex_005898; + +#define dydan_room_7Tex_002C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_002C98" +static const ALIGN_ASSET(2) char ydan_room_7Tex_002C98[] = dydan_room_7Tex_002C98; + +#define dydan_room_7Tex_007098 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_007098" +static const ALIGN_ASSET(2) char ydan_room_7Tex_007098[] = dydan_room_7Tex_007098; + +#define dydan_room_7Tex_003498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_003498" +static const ALIGN_ASSET(2) char ydan_room_7Tex_003498[] = dydan_room_7Tex_003498; + +#define dydan_room_7Tex_006C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_006C98" +static const ALIGN_ASSET(2) char ydan_room_7Tex_006C98[] = dydan_room_7Tex_006C98; + +#define dydan_room_7Tex_005498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_005498" +static const ALIGN_ASSET(2) char ydan_room_7Tex_005498[] = dydan_room_7Tex_005498; + +#define dydan_room_7Tex_003C98 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_003C98" +static const ALIGN_ASSET(2) char ydan_room_7Tex_003C98[] = dydan_room_7Tex_003C98; + +#define dydan_room_7Tex_006898 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_006898" +static const ALIGN_ASSET(2) char ydan_room_7Tex_006898[] = dydan_room_7Tex_006898; + +#define dydan_room_7Tex_004498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_7Tex_004498" +static const ALIGN_ASSET(2) char ydan_room_7Tex_004498[] = dydan_room_7Tex_004498; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_8.h b/soh/assets/scenes/dungeons/ydan/ydan_room_8.h index cf19e737a..6c10f0661 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_8.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_8.h @@ -1,16 +1,9 @@ #pragma once -#define dydan_room_8DL_000760 "__OTR__scenes/nonmq/ydan_scene/ydan_room_8DL_000760" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_8DL_000760[] = dydan_room_8DL_000760; -#else -static const char ydan_room_8DL_000760[] __attribute__((aligned (2))) = dydan_room_8DL_000760; -#endif - -#define dydan_room_8Tex_000988 "__OTR__scenes/nonmq/ydan_scene/ydan_room_8Tex_000988" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_8Tex_000988[] = dydan_room_8Tex_000988; -#else -static const char ydan_room_8Tex_000988[] __attribute__((aligned (2))) = dydan_room_8Tex_000988; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_8DL_000760 "__OTR__scenes/nonmq/ydan_scene/ydan_room_8DL_000760" +static const ALIGN_ASSET(2) char ydan_room_8DL_000760[] = dydan_room_8DL_000760; + +#define dydan_room_8Tex_000988 "__OTR__scenes/nonmq/ydan_scene/ydan_room_8Tex_000988" +static const ALIGN_ASSET(2) char ydan_room_8Tex_000988[] = dydan_room_8Tex_000988; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_room_9.h b/soh/assets/scenes/dungeons/ydan/ydan_room_9.h index 44bc80455..4e7a6b319 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_room_9.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_room_9.h @@ -1,121 +1,54 @@ #pragma once -#define dydan_room_9DL_002290 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_002290" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9DL_002290[] = dydan_room_9DL_002290; -#else -static const char ydan_room_9DL_002290[] __attribute__((aligned (2))) = dydan_room_9DL_002290; -#endif - -#define dydan_room_9Tex_002C80 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_002C80" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_002C80[] = dydan_room_9Tex_002C80; -#else -static const char ydan_room_9Tex_002C80[] __attribute__((aligned (2))) = dydan_room_9Tex_002C80; -#endif - -#define dydan_room_9Tex_003480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_003480" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_003480[] = dydan_room_9Tex_003480; -#else -static const char ydan_room_9Tex_003480[] __attribute__((aligned (2))) = dydan_room_9Tex_003480; -#endif - -#define dydan_room_9DL_007368 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_007368" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9DL_007368[] = dydan_room_9DL_007368; -#else -static const char ydan_room_9DL_007368[] __attribute__((aligned (2))) = dydan_room_9DL_007368; -#endif - -#define dydan_room_9Tex_008898 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_008898" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_008898[] = dydan_room_9Tex_008898; -#else -static const char ydan_room_9Tex_008898[] __attribute__((aligned (2))) = dydan_room_9Tex_008898; -#endif - -#define dydan_room_9DL_006EA0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_006EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9DL_006EA0[] = dydan_room_9DL_006EA0; -#else -static const char ydan_room_9DL_006EA0[] __attribute__((aligned (2))) = dydan_room_9DL_006EA0; -#endif - -#define dydan_room_9Tex_007498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_007498" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_007498[] = dydan_room_9Tex_007498; -#else -static const char ydan_room_9Tex_007498[] __attribute__((aligned (2))) = dydan_room_9Tex_007498; -#endif - -#define dydan_room_9DL_0013E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_0013E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9DL_0013E0[] = dydan_room_9DL_0013E0; -#else -static const char ydan_room_9DL_0013E0[] __attribute__((aligned (2))) = dydan_room_9DL_0013E0; -#endif - -#define dydan_room_9Tex_002480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_002480" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_002480[] = dydan_room_9Tex_002480; -#else -static const char ydan_room_9Tex_002480[] __attribute__((aligned (2))) = dydan_room_9Tex_002480; -#endif - -#define dydan_room_9Tex_004C80 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_004C80" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_004C80[] = dydan_room_9Tex_004C80; -#else -static const char ydan_room_9Tex_004C80[] __attribute__((aligned (2))) = dydan_room_9Tex_004C80; -#endif - -#define dydan_room_9Tex_003C80 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_003C80" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_003C80[] = dydan_room_9Tex_003C80; -#else -static const char ydan_room_9Tex_003C80[] __attribute__((aligned (2))) = dydan_room_9Tex_003C80; -#endif - -#define dydan_room_9Tex_005C80 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_005C80" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_005C80[] = dydan_room_9Tex_005C80; -#else -static const char ydan_room_9Tex_005C80[] __attribute__((aligned (2))) = dydan_room_9Tex_005C80; -#endif - -#define dydan_room_9Tex_006480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_006480" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_006480[] = dydan_room_9Tex_006480; -#else -static const char ydan_room_9Tex_006480[] __attribute__((aligned (2))) = dydan_room_9Tex_006480; -#endif - -#define dydan_room_9Tex_005480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_005480" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_005480[] = dydan_room_9Tex_005480; -#else -static const char ydan_room_9Tex_005480[] __attribute__((aligned (2))) = dydan_room_9Tex_005480; -#endif - -#define dydan_room_9Tex_004480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_004480" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_004480[] = dydan_room_9Tex_004480; -#else -static const char ydan_room_9Tex_004480[] __attribute__((aligned (2))) = dydan_room_9Tex_004480; -#endif - -#define dydan_room_9DL_0070E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_0070E0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9DL_0070E0[] = dydan_room_9DL_0070E0; -#else -static const char ydan_room_9DL_0070E0[] __attribute__((aligned (2))) = dydan_room_9DL_0070E0; -#endif - -#define dydan_room_9Tex_008498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_008498" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_room_9Tex_008498[] = dydan_room_9Tex_008498; -#else -static const char ydan_room_9Tex_008498[] __attribute__((aligned (2))) = dydan_room_9Tex_008498; -#endif - +#include "align_asset_macro.h" + +#define dydan_room_9DL_002290 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_002290" +static const ALIGN_ASSET(2) char ydan_room_9DL_002290[] = dydan_room_9DL_002290; + +#define dydan_room_9Tex_002C80 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_002C80" +static const ALIGN_ASSET(2) char ydan_room_9Tex_002C80[] = dydan_room_9Tex_002C80; + +#define dydan_room_9Tex_003480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_003480" +static const ALIGN_ASSET(2) char ydan_room_9Tex_003480[] = dydan_room_9Tex_003480; + +#define dydan_room_9DL_007368 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_007368" +static const ALIGN_ASSET(2) char ydan_room_9DL_007368[] = dydan_room_9DL_007368; + +#define dydan_room_9Tex_008898 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_008898" +static const ALIGN_ASSET(2) char ydan_room_9Tex_008898[] = dydan_room_9Tex_008898; + +#define dydan_room_9DL_006EA0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_006EA0" +static const ALIGN_ASSET(2) char ydan_room_9DL_006EA0[] = dydan_room_9DL_006EA0; + +#define dydan_room_9Tex_007498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_007498" +static const ALIGN_ASSET(2) char ydan_room_9Tex_007498[] = dydan_room_9Tex_007498; + +#define dydan_room_9DL_0013E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_0013E0" +static const ALIGN_ASSET(2) char ydan_room_9DL_0013E0[] = dydan_room_9DL_0013E0; + +#define dydan_room_9Tex_002480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_002480" +static const ALIGN_ASSET(2) char ydan_room_9Tex_002480[] = dydan_room_9Tex_002480; + +#define dydan_room_9Tex_004C80 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_004C80" +static const ALIGN_ASSET(2) char ydan_room_9Tex_004C80[] = dydan_room_9Tex_004C80; + +#define dydan_room_9Tex_003C80 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_003C80" +static const ALIGN_ASSET(2) char ydan_room_9Tex_003C80[] = dydan_room_9Tex_003C80; + +#define dydan_room_9Tex_005C80 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_005C80" +static const ALIGN_ASSET(2) char ydan_room_9Tex_005C80[] = dydan_room_9Tex_005C80; + +#define dydan_room_9Tex_006480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_006480" +static const ALIGN_ASSET(2) char ydan_room_9Tex_006480[] = dydan_room_9Tex_006480; + +#define dydan_room_9Tex_005480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_005480" +static const ALIGN_ASSET(2) char ydan_room_9Tex_005480[] = dydan_room_9Tex_005480; + +#define dydan_room_9Tex_004480 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_004480" +static const ALIGN_ASSET(2) char ydan_room_9Tex_004480[] = dydan_room_9Tex_004480; + +#define dydan_room_9DL_0070E0 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9DL_0070E0" +static const ALIGN_ASSET(2) char ydan_room_9DL_0070E0[] = dydan_room_9DL_0070E0; + +#define dydan_room_9Tex_008498 "__OTR__scenes/nonmq/ydan_scene/ydan_room_9Tex_008498" +static const ALIGN_ASSET(2) char ydan_room_9Tex_008498[] = dydan_room_9Tex_008498; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan/ydan_scene.h b/soh/assets/scenes/dungeons/ydan/ydan_scene.h index 6d4e3b708..e89ed7b3d 100644 --- a/soh/assets/scenes/dungeons/ydan/ydan_scene.h +++ b/soh/assets/scenes/dungeons/ydan/ydan_scene.h @@ -1,37 +1,18 @@ #pragma once -#define dgDekuTreeIntroCs "__OTR__scenes/nonmq/ydan_scene/gDekuTreeIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeIntroCs[] = dgDekuTreeIntroCs; -#else -static const char gDekuTreeIntroCs[] __attribute__((aligned (2))) = dgDekuTreeIntroCs; -#endif - -#define dgYdanTex_00BA18 "__OTR__scenes/nonmq/ydan_scene/gYdanTex_00BA18" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanTex_00BA18[] = dgYdanTex_00BA18; -#else -static const char gYdanTex_00BA18[] __attribute__((aligned (2))) = dgYdanTex_00BA18; -#endif - -#define dgYdanTex_00CA18 "__OTR__scenes/nonmq/ydan_scene/gYdanTex_00CA18" -#ifdef _WIN32 -static const __declspec(align(2)) char gYdanTex_00CA18[] = dgYdanTex_00CA18; -#else -static const char gYdanTex_00CA18[] __attribute__((aligned (2))) = dgYdanTex_00CA18; -#endif - -#define dydan_sceneCollisionHeader_00B618 "__OTR__scenes/nonmq/ydan_scene/ydan_sceneCollisionHeader_00B618" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_sceneCollisionHeader_00B618[] = dydan_sceneCollisionHeader_00B618; -#else -static const char ydan_sceneCollisionHeader_00B618[] __attribute__((aligned (2))) = dydan_sceneCollisionHeader_00B618; -#endif - -#define dydan_sceneTLUT_00B810 "__OTR__scenes/nonmq/ydan_scene/ydan_sceneTLUT_00B810" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_sceneTLUT_00B810[] = dydan_sceneTLUT_00B810; -#else -static const char ydan_sceneTLUT_00B810[] __attribute__((aligned (2))) = dydan_sceneTLUT_00B810; -#endif - +#include "align_asset_macro.h" + +#define dgDekuTreeIntroCs "__OTR__scenes/nonmq/ydan_scene/gDekuTreeIntroCs" +static const ALIGN_ASSET(2) char gDekuTreeIntroCs[] = dgDekuTreeIntroCs; + +#define dgYdanTex_00BA18 "__OTR__scenes/nonmq/ydan_scene/gYdanTex_00BA18" +static const ALIGN_ASSET(2) char gYdanTex_00BA18[] = dgYdanTex_00BA18; + +#define dgYdanTex_00CA18 "__OTR__scenes/nonmq/ydan_scene/gYdanTex_00CA18" +static const ALIGN_ASSET(2) char gYdanTex_00CA18[] = dgYdanTex_00CA18; + +#define dydan_sceneCollisionHeader_00B618 "__OTR__scenes/nonmq/ydan_scene/ydan_sceneCollisionHeader_00B618" +static const ALIGN_ASSET(2) char ydan_sceneCollisionHeader_00B618[] = dydan_sceneCollisionHeader_00B618; + +#define dydan_sceneTLUT_00B810 "__OTR__scenes/nonmq/ydan_scene/ydan_sceneTLUT_00B810" +static const ALIGN_ASSET(2) char ydan_sceneTLUT_00B810[] = dydan_sceneTLUT_00B810; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_room_0.h b/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_room_0.h index 2f87926f2..4b5d7884d 100644 --- a/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_room_0.h +++ b/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_room_0.h @@ -1,79 +1,36 @@ #pragma once -#define dydan_boss_room_0DL_001780 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0DL_001780" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0DL_001780[] = dydan_boss_room_0DL_001780; -#else -static const char ydan_boss_room_0DL_001780[] __attribute__((aligned (2))) = dydan_boss_room_0DL_001780; -#endif - -#define dydan_boss_room_0Tex_002790 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_002790[] = dydan_boss_room_0Tex_002790; -#else -static const char ydan_boss_room_0Tex_002790[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_002790; -#endif - -#define dydan_boss_room_0Tex_003790 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_003790" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_003790[] = dydan_boss_room_0Tex_003790; -#else -static const char ydan_boss_room_0Tex_003790[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_003790; -#endif - -#define dydan_boss_room_0Tex_003F90 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_003F90" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_003F90[] = dydan_boss_room_0Tex_003F90; -#else -static const char ydan_boss_room_0Tex_003F90[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_003F90; -#endif - -#define dydan_boss_room_0Tex_002F90 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_002F90" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_002F90[] = dydan_boss_room_0Tex_002F90; -#else -static const char ydan_boss_room_0Tex_002F90[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_002F90; -#endif - -#define dydan_boss_room_0Tex_001F90 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_001F90" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_001F90[] = dydan_boss_room_0Tex_001F90; -#else -static const char ydan_boss_room_0Tex_001F90[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_001F90; -#endif - -#define dydan_boss_room_0Tex_001790 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_001790" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_001790[] = dydan_boss_room_0Tex_001790; -#else -static const char ydan_boss_room_0Tex_001790[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_001790; -#endif - -#define dydan_boss_room_0DL_004BE0 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0DL_004BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0DL_004BE0[] = dydan_boss_room_0DL_004BE0; -#else -static const char ydan_boss_room_0DL_004BE0[] __attribute__((aligned (2))) = dydan_boss_room_0DL_004BE0; -#endif - -#define dydan_boss_room_0Tex_005FF0 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_005FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_005FF0[] = dydan_boss_room_0Tex_005FF0; -#else -static const char ydan_boss_room_0Tex_005FF0[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_005FF0; -#endif - -#define dydan_boss_room_0Tex_004BF0 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_004BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_004BF0[] = dydan_boss_room_0Tex_004BF0; -#else -static const char ydan_boss_room_0Tex_004BF0[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_004BF0; -#endif - -#define dydan_boss_room_0Tex_005BF0 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_005BF0" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_0Tex_005BF0[] = dydan_boss_room_0Tex_005BF0; -#else -static const char ydan_boss_room_0Tex_005BF0[] __attribute__((aligned (2))) = dydan_boss_room_0Tex_005BF0; -#endif - +#include "align_asset_macro.h" + +#define dydan_boss_room_0DL_001780 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0DL_001780" +static const ALIGN_ASSET(2) char ydan_boss_room_0DL_001780[] = dydan_boss_room_0DL_001780; + +#define dydan_boss_room_0Tex_002790 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_002790" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_002790[] = dydan_boss_room_0Tex_002790; + +#define dydan_boss_room_0Tex_003790 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_003790" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_003790[] = dydan_boss_room_0Tex_003790; + +#define dydan_boss_room_0Tex_003F90 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_003F90" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_003F90[] = dydan_boss_room_0Tex_003F90; + +#define dydan_boss_room_0Tex_002F90 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_002F90" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_002F90[] = dydan_boss_room_0Tex_002F90; + +#define dydan_boss_room_0Tex_001F90 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_001F90" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_001F90[] = dydan_boss_room_0Tex_001F90; + +#define dydan_boss_room_0Tex_001790 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_001790" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_001790[] = dydan_boss_room_0Tex_001790; + +#define dydan_boss_room_0DL_004BE0 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0DL_004BE0" +static const ALIGN_ASSET(2) char ydan_boss_room_0DL_004BE0[] = dydan_boss_room_0DL_004BE0; + +#define dydan_boss_room_0Tex_005FF0 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_005FF0" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_005FF0[] = dydan_boss_room_0Tex_005FF0; + +#define dydan_boss_room_0Tex_004BF0 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_004BF0" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_004BF0[] = dydan_boss_room_0Tex_004BF0; + +#define dydan_boss_room_0Tex_005BF0 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_0Tex_005BF0" +static const ALIGN_ASSET(2) char ydan_boss_room_0Tex_005BF0[] = dydan_boss_room_0Tex_005BF0; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_room_1.h b/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_room_1.h index 4072b3883..983b1b6e6 100644 --- a/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_room_1.h +++ b/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_room_1.h @@ -1,44 +1,21 @@ #pragma once -#define dydan_boss_room_1DL_003B28 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1DL_003B28" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_1DL_003B28[] = dydan_boss_room_1DL_003B28; -#else -static const char ydan_boss_room_1DL_003B28[] __attribute__((aligned (2))) = dydan_boss_room_1DL_003B28; -#endif - -#define dydan_boss_room_1Tex_004B38 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1Tex_004B38" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_1Tex_004B38[] = dydan_boss_room_1Tex_004B38; -#else -static const char ydan_boss_room_1Tex_004B38[] __attribute__((aligned (2))) = dydan_boss_room_1Tex_004B38; -#endif - -#define dydan_boss_room_1Tex_003B38 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1Tex_003B38" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_1Tex_003B38[] = dydan_boss_room_1Tex_003B38; -#else -static const char ydan_boss_room_1Tex_003B38[] __attribute__((aligned (2))) = dydan_boss_room_1Tex_003B38; -#endif - -#define dydan_boss_room_1Tex_005338 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1Tex_005338" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_1Tex_005338[] = dydan_boss_room_1Tex_005338; -#else -static const char ydan_boss_room_1Tex_005338[] __attribute__((aligned (2))) = dydan_boss_room_1Tex_005338; -#endif - -#define dydan_boss_room_1DL_005FD8 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1DL_005FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_1DL_005FD8[] = dydan_boss_room_1DL_005FD8; -#else -static const char ydan_boss_room_1DL_005FD8[] __attribute__((aligned (2))) = dydan_boss_room_1DL_005FD8; -#endif - -#define dydan_boss_room_1Tex_005FE8 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1Tex_005FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_room_1Tex_005FE8[] = dydan_boss_room_1Tex_005FE8; -#else -static const char ydan_boss_room_1Tex_005FE8[] __attribute__((aligned (2))) = dydan_boss_room_1Tex_005FE8; -#endif - +#include "align_asset_macro.h" + +#define dydan_boss_room_1DL_003B28 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1DL_003B28" +static const ALIGN_ASSET(2) char ydan_boss_room_1DL_003B28[] = dydan_boss_room_1DL_003B28; + +#define dydan_boss_room_1Tex_004B38 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1Tex_004B38" +static const ALIGN_ASSET(2) char ydan_boss_room_1Tex_004B38[] = dydan_boss_room_1Tex_004B38; + +#define dydan_boss_room_1Tex_003B38 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1Tex_003B38" +static const ALIGN_ASSET(2) char ydan_boss_room_1Tex_003B38[] = dydan_boss_room_1Tex_003B38; + +#define dydan_boss_room_1Tex_005338 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1Tex_005338" +static const ALIGN_ASSET(2) char ydan_boss_room_1Tex_005338[] = dydan_boss_room_1Tex_005338; + +#define dydan_boss_room_1DL_005FD8 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1DL_005FD8" +static const ALIGN_ASSET(2) char ydan_boss_room_1DL_005FD8[] = dydan_boss_room_1DL_005FD8; + +#define dydan_boss_room_1Tex_005FE8 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_room_1Tex_005FE8" +static const ALIGN_ASSET(2) char ydan_boss_room_1Tex_005FE8[] = dydan_boss_room_1Tex_005FE8; \ No newline at end of file diff --git a/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_scene.h b/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_scene.h index 0972b2e4e..35a760f02 100644 --- a/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_scene.h +++ b/soh/assets/scenes/dungeons/ydan_boss/ydan_boss_scene.h @@ -1,23 +1,12 @@ #pragma once -#define dydan_boss_sceneCollisionHeader_000CFC "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_sceneCollisionHeader_000CFC" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_sceneCollisionHeader_000CFC[] = dydan_boss_sceneCollisionHeader_000CFC; -#else -static const char ydan_boss_sceneCollisionHeader_000CFC[] __attribute__((aligned (2))) = dydan_boss_sceneCollisionHeader_000CFC; -#endif - -#define dydan_boss_sceneTLUT_000D30 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_sceneTLUT_000D30" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_sceneTLUT_000D30[] = dydan_boss_sceneTLUT_000D30; -#else -static const char ydan_boss_sceneTLUT_000D30[] __attribute__((aligned (2))) = dydan_boss_sceneTLUT_000D30; -#endif - -#define dydan_boss_sceneTex_000F38 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_sceneTex_000F38" -#ifdef _WIN32 -static const __declspec(align(2)) char ydan_boss_sceneTex_000F38[] = dydan_boss_sceneTex_000F38; -#else -static const char ydan_boss_sceneTex_000F38[] __attribute__((aligned (2))) = dydan_boss_sceneTex_000F38; -#endif - +#include "align_asset_macro.h" + +#define dydan_boss_sceneCollisionHeader_000CFC "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_sceneCollisionHeader_000CFC" +static const ALIGN_ASSET(2) char ydan_boss_sceneCollisionHeader_000CFC[] = dydan_boss_sceneCollisionHeader_000CFC; + +#define dydan_boss_sceneTLUT_000D30 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_sceneTLUT_000D30" +static const ALIGN_ASSET(2) char ydan_boss_sceneTLUT_000D30[] = dydan_boss_sceneTLUT_000D30; + +#define dydan_boss_sceneTex_000F38 "__OTR__scenes/nonmq/ydan_boss_scene/ydan_boss_sceneTex_000F38" +static const ALIGN_ASSET(2) char ydan_boss_sceneTex_000F38[] = dydan_boss_sceneTex_000F38; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/bowling/bowling_room_0.h b/soh/assets/scenes/indoors/bowling/bowling_room_0.h index 35e855702..ec4fda2fd 100644 --- a/soh/assets/scenes/indoors/bowling/bowling_room_0.h +++ b/soh/assets/scenes/indoors/bowling/bowling_room_0.h @@ -1,16 +1,9 @@ #pragma once -#define dbowling_room_0DL_004D90 "__OTR__scenes/nonmq/bowling_scene/bowling_room_0DL_004D90" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_room_0DL_004D90[] = dbowling_room_0DL_004D90; -#else -static const char bowling_room_0DL_004D90[] __attribute__((aligned (2))) = dbowling_room_0DL_004D90; -#endif - -#define dbowling_room_0DL_0061A8 "__OTR__scenes/nonmq/bowling_scene/bowling_room_0DL_0061A8" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_room_0DL_0061A8[] = dbowling_room_0DL_0061A8; -#else -static const char bowling_room_0DL_0061A8[] __attribute__((aligned (2))) = dbowling_room_0DL_0061A8; -#endif - +#include "align_asset_macro.h" + +#define dbowling_room_0DL_004D90 "__OTR__scenes/nonmq/bowling_scene/bowling_room_0DL_004D90" +static const ALIGN_ASSET(2) char bowling_room_0DL_004D90[] = dbowling_room_0DL_004D90; + +#define dbowling_room_0DL_0061A8 "__OTR__scenes/nonmq/bowling_scene/bowling_room_0DL_0061A8" +static const ALIGN_ASSET(2) char bowling_room_0DL_0061A8[] = dbowling_room_0DL_0061A8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/bowling/bowling_scene.h b/soh/assets/scenes/indoors/bowling/bowling_scene.h index df8e503e9..589a86256 100644 --- a/soh/assets/scenes/indoors/bowling/bowling_scene.h +++ b/soh/assets/scenes/indoors/bowling/bowling_scene.h @@ -1,205 +1,90 @@ #pragma once -#define dbowling_sceneCollisionHeader_001A74 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneCollisionHeader_001A74" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneCollisionHeader_001A74[] = dbowling_sceneCollisionHeader_001A74; -#else -static const char bowling_sceneCollisionHeader_001A74[] __attribute__((aligned (2))) = dbowling_sceneCollisionHeader_001A74; -#endif - -#define dbowling_sceneTex_00DB20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00DB20" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00DB20[] = dbowling_sceneTex_00DB20; -#else -static const char bowling_sceneTex_00DB20[] __attribute__((aligned (2))) = dbowling_sceneTex_00DB20; -#endif - -#define dbowling_sceneTex_00BF20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00BF20" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00BF20[] = dbowling_sceneTex_00BF20; -#else -static const char bowling_sceneTex_00BF20[] __attribute__((aligned (2))) = dbowling_sceneTex_00BF20; -#endif - -#define dbowling_sceneTex_009120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_009120" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_009120[] = dbowling_sceneTex_009120; -#else -static const char bowling_sceneTex_009120[] __attribute__((aligned (2))) = dbowling_sceneTex_009120; -#endif - -#define dbowling_sceneTex_008920 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_008920" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_008920[] = dbowling_sceneTex_008920; -#else -static const char bowling_sceneTex_008920[] __attribute__((aligned (2))) = dbowling_sceneTex_008920; -#endif - -#define dbowling_sceneTex_00D720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00D720" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00D720[] = dbowling_sceneTex_00D720; -#else -static const char bowling_sceneTex_00D720[] __attribute__((aligned (2))) = dbowling_sceneTex_00D720; -#endif - -#define dbowling_sceneTex_008120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_008120" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_008120[] = dbowling_sceneTex_008120; -#else -static const char bowling_sceneTex_008120[] __attribute__((aligned (2))) = dbowling_sceneTex_008120; -#endif - -#define dbowling_sceneTex_00A120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00A120" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00A120[] = dbowling_sceneTex_00A120; -#else -static const char bowling_sceneTex_00A120[] __attribute__((aligned (2))) = dbowling_sceneTex_00A120; -#endif - -#define dbowling_sceneTex_006120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_006120" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_006120[] = dbowling_sceneTex_006120; -#else -static const char bowling_sceneTex_006120[] __attribute__((aligned (2))) = dbowling_sceneTex_006120; -#endif - -#define dbowling_sceneTex_005920 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_005920" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_005920[] = dbowling_sceneTex_005920; -#else -static const char bowling_sceneTex_005920[] __attribute__((aligned (2))) = dbowling_sceneTex_005920; -#endif - -#define dbowling_sceneTex_005320 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_005320" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_005320[] = dbowling_sceneTex_005320; -#else -static const char bowling_sceneTex_005320[] __attribute__((aligned (2))) = dbowling_sceneTex_005320; -#endif - -#define dbowling_sceneTex_005120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_005120" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_005120[] = dbowling_sceneTex_005120; -#else -static const char bowling_sceneTex_005120[] __attribute__((aligned (2))) = dbowling_sceneTex_005120; -#endif - -#define dbowling_sceneTex_003720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_003720" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_003720[] = dbowling_sceneTex_003720; -#else -static const char bowling_sceneTex_003720[] __attribute__((aligned (2))) = dbowling_sceneTex_003720; -#endif - -#define dbowling_sceneTex_004F20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_004F20" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_004F20[] = dbowling_sceneTex_004F20; -#else -static const char bowling_sceneTex_004F20[] __attribute__((aligned (2))) = dbowling_sceneTex_004F20; -#endif - -#define dbowling_sceneTex_002F20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_002F20" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_002F20[] = dbowling_sceneTex_002F20; -#else -static const char bowling_sceneTex_002F20[] __attribute__((aligned (2))) = dbowling_sceneTex_002F20; -#endif - -#define dbowling_sceneTex_002720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_002720" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_002720[] = dbowling_sceneTex_002720; -#else -static const char bowling_sceneTex_002720[] __attribute__((aligned (2))) = dbowling_sceneTex_002720; -#endif - -#define dbowling_sceneTex_0022A0 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_0022A0" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_0022A0[] = dbowling_sceneTex_0022A0; -#else -static const char bowling_sceneTex_0022A0[] __attribute__((aligned (2))) = dbowling_sceneTex_0022A0; -#endif - -#define dbowling_sceneTex_005520 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_005520" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_005520[] = dbowling_sceneTex_005520; -#else -static const char bowling_sceneTex_005520[] __attribute__((aligned (2))) = dbowling_sceneTex_005520; -#endif - -#define dbowling_sceneTex_002320 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_002320" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_002320[] = dbowling_sceneTex_002320; -#else -static const char bowling_sceneTex_002320[] __attribute__((aligned (2))) = dbowling_sceneTex_002320; -#endif - -#define dbowling_sceneTex_001AA0 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_001AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_001AA0[] = dbowling_sceneTex_001AA0; -#else -static const char bowling_sceneTex_001AA0[] __attribute__((aligned (2))) = dbowling_sceneTex_001AA0; -#endif - -#define dbowling_sceneTex_00C720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00C720" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00C720[] = dbowling_sceneTex_00C720; -#else -static const char bowling_sceneTex_00C720[] __attribute__((aligned (2))) = dbowling_sceneTex_00C720; -#endif - -#define dbowling_sceneTex_00B720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00B720" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00B720[] = dbowling_sceneTex_00B720; -#else -static const char bowling_sceneTex_00B720[] __attribute__((aligned (2))) = dbowling_sceneTex_00B720; -#endif - -#define dbowling_sceneTex_00BB20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00BB20" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00BB20[] = dbowling_sceneTex_00BB20; -#else -static const char bowling_sceneTex_00BB20[] __attribute__((aligned (2))) = dbowling_sceneTex_00BB20; -#endif - -#define dbowling_sceneTex_00AF20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00AF20" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00AF20[] = dbowling_sceneTex_00AF20; -#else -static const char bowling_sceneTex_00AF20[] __attribute__((aligned (2))) = dbowling_sceneTex_00AF20; -#endif - -#define dbowling_sceneTex_00A920 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00A920" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00A920[] = dbowling_sceneTex_00A920; -#else -static const char bowling_sceneTex_00A920[] __attribute__((aligned (2))) = dbowling_sceneTex_00A920; -#endif - -#define dbowling_sceneTex_00AB20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00AB20" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00AB20[] = dbowling_sceneTex_00AB20; -#else -static const char bowling_sceneTex_00AB20[] __attribute__((aligned (2))) = dbowling_sceneTex_00AB20; -#endif - -#define dbowling_sceneTex_004720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_004720" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_004720[] = dbowling_sceneTex_004720; -#else -static const char bowling_sceneTex_004720[] __attribute__((aligned (2))) = dbowling_sceneTex_004720; -#endif - -#define dbowling_sceneTex_007120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_007120" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_007120[] = dbowling_sceneTex_007120; -#else -static const char bowling_sceneTex_007120[] __attribute__((aligned (2))) = dbowling_sceneTex_007120; -#endif - -#define dbowling_sceneTex_00AD20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00AD20" -#ifdef _WIN32 -static const __declspec(align(2)) char bowling_sceneTex_00AD20[] = dbowling_sceneTex_00AD20; -#else -static const char bowling_sceneTex_00AD20[] __attribute__((aligned (2))) = dbowling_sceneTex_00AD20; -#endif - +#include "align_asset_macro.h" + +#define dbowling_sceneCollisionHeader_001A74 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneCollisionHeader_001A74" +static const ALIGN_ASSET(2) char bowling_sceneCollisionHeader_001A74[] = dbowling_sceneCollisionHeader_001A74; + +#define dbowling_sceneTex_00DB20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00DB20" +static const ALIGN_ASSET(2) char bowling_sceneTex_00DB20[] = dbowling_sceneTex_00DB20; + +#define dbowling_sceneTex_00BF20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00BF20" +static const ALIGN_ASSET(2) char bowling_sceneTex_00BF20[] = dbowling_sceneTex_00BF20; + +#define dbowling_sceneTex_009120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_009120" +static const ALIGN_ASSET(2) char bowling_sceneTex_009120[] = dbowling_sceneTex_009120; + +#define dbowling_sceneTex_008920 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_008920" +static const ALIGN_ASSET(2) char bowling_sceneTex_008920[] = dbowling_sceneTex_008920; + +#define dbowling_sceneTex_00D720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00D720" +static const ALIGN_ASSET(2) char bowling_sceneTex_00D720[] = dbowling_sceneTex_00D720; + +#define dbowling_sceneTex_008120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_008120" +static const ALIGN_ASSET(2) char bowling_sceneTex_008120[] = dbowling_sceneTex_008120; + +#define dbowling_sceneTex_00A120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00A120" +static const ALIGN_ASSET(2) char bowling_sceneTex_00A120[] = dbowling_sceneTex_00A120; + +#define dbowling_sceneTex_006120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_006120" +static const ALIGN_ASSET(2) char bowling_sceneTex_006120[] = dbowling_sceneTex_006120; + +#define dbowling_sceneTex_005920 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_005920" +static const ALIGN_ASSET(2) char bowling_sceneTex_005920[] = dbowling_sceneTex_005920; + +#define dbowling_sceneTex_005320 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_005320" +static const ALIGN_ASSET(2) char bowling_sceneTex_005320[] = dbowling_sceneTex_005320; + +#define dbowling_sceneTex_005120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_005120" +static const ALIGN_ASSET(2) char bowling_sceneTex_005120[] = dbowling_sceneTex_005120; + +#define dbowling_sceneTex_003720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_003720" +static const ALIGN_ASSET(2) char bowling_sceneTex_003720[] = dbowling_sceneTex_003720; + +#define dbowling_sceneTex_004F20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_004F20" +static const ALIGN_ASSET(2) char bowling_sceneTex_004F20[] = dbowling_sceneTex_004F20; + +#define dbowling_sceneTex_002F20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_002F20" +static const ALIGN_ASSET(2) char bowling_sceneTex_002F20[] = dbowling_sceneTex_002F20; + +#define dbowling_sceneTex_002720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_002720" +static const ALIGN_ASSET(2) char bowling_sceneTex_002720[] = dbowling_sceneTex_002720; + +#define dbowling_sceneTex_0022A0 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_0022A0" +static const ALIGN_ASSET(2) char bowling_sceneTex_0022A0[] = dbowling_sceneTex_0022A0; + +#define dbowling_sceneTex_005520 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_005520" +static const ALIGN_ASSET(2) char bowling_sceneTex_005520[] = dbowling_sceneTex_005520; + +#define dbowling_sceneTex_002320 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_002320" +static const ALIGN_ASSET(2) char bowling_sceneTex_002320[] = dbowling_sceneTex_002320; + +#define dbowling_sceneTex_001AA0 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_001AA0" +static const ALIGN_ASSET(2) char bowling_sceneTex_001AA0[] = dbowling_sceneTex_001AA0; + +#define dbowling_sceneTex_00C720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00C720" +static const ALIGN_ASSET(2) char bowling_sceneTex_00C720[] = dbowling_sceneTex_00C720; + +#define dbowling_sceneTex_00B720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00B720" +static const ALIGN_ASSET(2) char bowling_sceneTex_00B720[] = dbowling_sceneTex_00B720; + +#define dbowling_sceneTex_00BB20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00BB20" +static const ALIGN_ASSET(2) char bowling_sceneTex_00BB20[] = dbowling_sceneTex_00BB20; + +#define dbowling_sceneTex_00AF20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00AF20" +static const ALIGN_ASSET(2) char bowling_sceneTex_00AF20[] = dbowling_sceneTex_00AF20; + +#define dbowling_sceneTex_00A920 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00A920" +static const ALIGN_ASSET(2) char bowling_sceneTex_00A920[] = dbowling_sceneTex_00A920; + +#define dbowling_sceneTex_00AB20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00AB20" +static const ALIGN_ASSET(2) char bowling_sceneTex_00AB20[] = dbowling_sceneTex_00AB20; + +#define dbowling_sceneTex_004720 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_004720" +static const ALIGN_ASSET(2) char bowling_sceneTex_004720[] = dbowling_sceneTex_004720; + +#define dbowling_sceneTex_007120 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_007120" +static const ALIGN_ASSET(2) char bowling_sceneTex_007120[] = dbowling_sceneTex_007120; + +#define dbowling_sceneTex_00AD20 "__OTR__scenes/nonmq/bowling_scene/bowling_sceneTex_00AD20" +static const ALIGN_ASSET(2) char bowling_sceneTex_00AD20[] = dbowling_sceneTex_00AD20; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/daiyousei_izumi/daiyousei_izumi_room_0.h b/soh/assets/scenes/indoors/daiyousei_izumi/daiyousei_izumi_room_0.h index fa15928dc..e093175e2 100644 --- a/soh/assets/scenes/indoors/daiyousei_izumi/daiyousei_izumi_room_0.h +++ b/soh/assets/scenes/indoors/daiyousei_izumi/daiyousei_izumi_room_0.h @@ -1,58 +1,27 @@ #pragma once -#define ddaiyousei_izumi_room_0DL_002BB8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0DL_002BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_room_0DL_002BB8[] = ddaiyousei_izumi_room_0DL_002BB8; -#else -static const char daiyousei_izumi_room_0DL_002BB8[] __attribute__((aligned (2))) = ddaiyousei_izumi_room_0DL_002BB8; -#endif - -#define ddaiyousei_izumi_room_0DL_0038F8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0DL_0038F8" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_room_0DL_0038F8[] = ddaiyousei_izumi_room_0DL_0038F8; -#else -static const char daiyousei_izumi_room_0DL_0038F8[] __attribute__((aligned (2))) = ddaiyousei_izumi_room_0DL_0038F8; -#endif - -#define ddaiyousei_izumi_room_0Set_000160DL_002BB8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_000160DL_002BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_room_0Set_000160DL_002BB8[] = ddaiyousei_izumi_room_0Set_000160DL_002BB8; -#else -static const char daiyousei_izumi_room_0Set_000160DL_002BB8[] __attribute__((aligned (2))) = ddaiyousei_izumi_room_0Set_000160DL_002BB8; -#endif - -#define ddaiyousei_izumi_room_0Set_000160DL_0038F8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_000160DL_0038F8" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_room_0Set_000160DL_0038F8[] = ddaiyousei_izumi_room_0Set_000160DL_0038F8; -#else -static const char daiyousei_izumi_room_0Set_000160DL_0038F8[] __attribute__((aligned (2))) = ddaiyousei_izumi_room_0Set_000160DL_0038F8; -#endif - -#define ddaiyousei_izumi_room_0Set_0001E0DL_002BB8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_0001E0DL_002BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_room_0Set_0001E0DL_002BB8[] = ddaiyousei_izumi_room_0Set_0001E0DL_002BB8; -#else -static const char daiyousei_izumi_room_0Set_0001E0DL_002BB8[] __attribute__((aligned (2))) = ddaiyousei_izumi_room_0Set_0001E0DL_002BB8; -#endif - -#define ddaiyousei_izumi_room_0Set_0001E0DL_0038F8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_0001E0DL_0038F8" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_room_0Set_0001E0DL_0038F8[] = ddaiyousei_izumi_room_0Set_0001E0DL_0038F8; -#else -static const char daiyousei_izumi_room_0Set_0001E0DL_0038F8[] __attribute__((aligned (2))) = ddaiyousei_izumi_room_0Set_0001E0DL_0038F8; -#endif - -#define ddaiyousei_izumi_room_0Set_000260DL_002BB8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_000260DL_002BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_room_0Set_000260DL_002BB8[] = ddaiyousei_izumi_room_0Set_000260DL_002BB8; -#else -static const char daiyousei_izumi_room_0Set_000260DL_002BB8[] __attribute__((aligned (2))) = ddaiyousei_izumi_room_0Set_000260DL_002BB8; -#endif - -#define ddaiyousei_izumi_room_0Set_000260DL_0038F8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_000260DL_0038F8" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_room_0Set_000260DL_0038F8[] = ddaiyousei_izumi_room_0Set_000260DL_0038F8; -#else -static const char daiyousei_izumi_room_0Set_000260DL_0038F8[] __attribute__((aligned (2))) = ddaiyousei_izumi_room_0Set_000260DL_0038F8; -#endif - +#include "align_asset_macro.h" + +#define ddaiyousei_izumi_room_0DL_002BB8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0DL_002BB8" +static const ALIGN_ASSET(2) char daiyousei_izumi_room_0DL_002BB8[] = ddaiyousei_izumi_room_0DL_002BB8; + +#define ddaiyousei_izumi_room_0DL_0038F8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0DL_0038F8" +static const ALIGN_ASSET(2) char daiyousei_izumi_room_0DL_0038F8[] = ddaiyousei_izumi_room_0DL_0038F8; + +#define ddaiyousei_izumi_room_0Set_000160DL_002BB8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_000160DL_002BB8" +static const ALIGN_ASSET(2) char daiyousei_izumi_room_0Set_000160DL_002BB8[] = ddaiyousei_izumi_room_0Set_000160DL_002BB8; + +#define ddaiyousei_izumi_room_0Set_000160DL_0038F8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_000160DL_0038F8" +static const ALIGN_ASSET(2) char daiyousei_izumi_room_0Set_000160DL_0038F8[] = ddaiyousei_izumi_room_0Set_000160DL_0038F8; + +#define ddaiyousei_izumi_room_0Set_0001E0DL_002BB8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_0001E0DL_002BB8" +static const ALIGN_ASSET(2) char daiyousei_izumi_room_0Set_0001E0DL_002BB8[] = ddaiyousei_izumi_room_0Set_0001E0DL_002BB8; + +#define ddaiyousei_izumi_room_0Set_0001E0DL_0038F8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_0001E0DL_0038F8" +static const ALIGN_ASSET(2) char daiyousei_izumi_room_0Set_0001E0DL_0038F8[] = ddaiyousei_izumi_room_0Set_0001E0DL_0038F8; + +#define ddaiyousei_izumi_room_0Set_000260DL_002BB8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_000260DL_002BB8" +static const ALIGN_ASSET(2) char daiyousei_izumi_room_0Set_000260DL_002BB8[] = ddaiyousei_izumi_room_0Set_000260DL_002BB8; + +#define ddaiyousei_izumi_room_0Set_000260DL_0038F8 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_room_0Set_000260DL_0038F8" +static const ALIGN_ASSET(2) char daiyousei_izumi_room_0Set_000260DL_0038F8[] = ddaiyousei_izumi_room_0Set_000260DL_0038F8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/daiyousei_izumi/daiyousei_izumi_scene.h b/soh/assets/scenes/indoors/daiyousei_izumi/daiyousei_izumi_scene.h index fe792d291..8f264e74e 100644 --- a/soh/assets/scenes/indoors/daiyousei_izumi/daiyousei_izumi_scene.h +++ b/soh/assets/scenes/indoors/daiyousei_izumi/daiyousei_izumi_scene.h @@ -1,131 +1,63 @@ #pragma once + +#include "align_asset_macro.h" + #define dgGreatFairyMagicCs "__OTR__scenes/nonmq/daiyousei_izumi_scene/gGreatFairyMagicCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyMagicCs[] = dgGreatFairyMagicCs; -#else -static const char gGreatFairyMagicCs[] __attribute__((aligned (2))) = dgGreatFairyMagicCs; -#endif - +static const ALIGN_ASSET(2) char gGreatFairyMagicCs[] = dgGreatFairyMagicCs; + #define dgGreatFairyDoubleMagicCs "__OTR__scenes/nonmq/daiyousei_izumi_scene/gGreatFairyDoubleMagicCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyDoubleMagicCs[] = dgGreatFairyDoubleMagicCs; -#else -static const char gGreatFairyDoubleMagicCs[] __attribute__((aligned (2))) = dgGreatFairyDoubleMagicCs; -#endif - +static const ALIGN_ASSET(2) char gGreatFairyDoubleMagicCs[] = dgGreatFairyDoubleMagicCs; + #define dgGreatFairyDoubleDefenceCs "__OTR__scenes/nonmq/daiyousei_izumi_scene/gGreatFairyDoubleDefenceCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyDoubleDefenceCs[] = dgGreatFairyDoubleDefenceCs; -#else -static const char gGreatFairyDoubleDefenceCs[] __attribute__((aligned (2))) = dgGreatFairyDoubleDefenceCs; -#endif - +static const ALIGN_ASSET(2) char gGreatFairyDoubleDefenceCs[] = dgGreatFairyDoubleDefenceCs; + #define ddaiyousei_izumi_sceneCollisionHeader_0043A4 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneCollisionHeader_0043A4" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneCollisionHeader_0043A4[] = ddaiyousei_izumi_sceneCollisionHeader_0043A4; -#else -static const char daiyousei_izumi_sceneCollisionHeader_0043A4[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneCollisionHeader_0043A4; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneCollisionHeader_0043A4[] = ddaiyousei_izumi_sceneCollisionHeader_0043A4; + #define ddaiyousei_izumi_sceneTex_00D800 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_00D800" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_00D800[] = ddaiyousei_izumi_sceneTex_00D800; -#else -static const char daiyousei_izumi_sceneTex_00D800[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_00D800; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_00D800[] = ddaiyousei_izumi_sceneTex_00D800; + #define ddaiyousei_izumi_sceneTex_009000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_009000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_009000[] = ddaiyousei_izumi_sceneTex_009000; -#else -static const char daiyousei_izumi_sceneTex_009000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_009000; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_009000[] = ddaiyousei_izumi_sceneTex_009000; + #define ddaiyousei_izumi_sceneTex_008000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_008000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_008000[] = ddaiyousei_izumi_sceneTex_008000; -#else -static const char daiyousei_izumi_sceneTex_008000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_008000; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_008000[] = ddaiyousei_izumi_sceneTex_008000; + #define ddaiyousei_izumi_sceneTex_007000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_007000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_007000[] = ddaiyousei_izumi_sceneTex_007000; -#else -static const char daiyousei_izumi_sceneTex_007000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_007000; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_007000[] = ddaiyousei_izumi_sceneTex_007000; + #define ddaiyousei_izumi_sceneTex_005000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_005000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_005000[] = ddaiyousei_izumi_sceneTex_005000; -#else -static const char daiyousei_izumi_sceneTex_005000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_005000; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_005000[] = ddaiyousei_izumi_sceneTex_005000; + #define ddaiyousei_izumi_sceneTex_00B000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_00B000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_00B000[] = ddaiyousei_izumi_sceneTex_00B000; -#else -static const char daiyousei_izumi_sceneTex_00B000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_00B000; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_00B000[] = ddaiyousei_izumi_sceneTex_00B000; + #define ddaiyousei_izumi_sceneTex_00D000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_00D000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_00D000[] = ddaiyousei_izumi_sceneTex_00D000; -#else -static const char daiyousei_izumi_sceneTex_00D000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_00D000; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_00D000[] = ddaiyousei_izumi_sceneTex_00D000; + #define ddaiyousei_izumi_sceneTex_00A800 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_00A800" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_00A800[] = ddaiyousei_izumi_sceneTex_00A800; -#else -static const char daiyousei_izumi_sceneTex_00A800[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_00A800; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_00A800[] = ddaiyousei_izumi_sceneTex_00A800; + #define ddaiyousei_izumi_sceneTex_005800 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_005800" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_005800[] = ddaiyousei_izumi_sceneTex_005800; -#else -static const char daiyousei_izumi_sceneTex_005800[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_005800; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_005800[] = ddaiyousei_izumi_sceneTex_005800; + #define ddaiyousei_izumi_sceneTex_004800 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_004800" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_004800[] = ddaiyousei_izumi_sceneTex_004800; -#else -static const char daiyousei_izumi_sceneTex_004800[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_004800; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_004800[] = ddaiyousei_izumi_sceneTex_004800; + #define ddaiyousei_izumi_sceneTex_00C000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_00C000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_00C000[] = ddaiyousei_izumi_sceneTex_00C000; -#else -static const char daiyousei_izumi_sceneTex_00C000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_00C000; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_00C000[] = ddaiyousei_izumi_sceneTex_00C000; + #define ddaiyousei_izumi_sceneTex_00A000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_00A000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_00A000[] = ddaiyousei_izumi_sceneTex_00A000; -#else -static const char daiyousei_izumi_sceneTex_00A000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_00A000; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_00A000[] = ddaiyousei_izumi_sceneTex_00A000; + #define ddaiyousei_izumi_sceneTex_00C800 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_00C800" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_00C800[] = ddaiyousei_izumi_sceneTex_00C800; -#else -static const char daiyousei_izumi_sceneTex_00C800[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_00C800; -#endif - +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_00C800[] = ddaiyousei_izumi_sceneTex_00C800; + #define ddaiyousei_izumi_sceneTex_006000 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneTex_006000" -#ifdef _WIN32 -static const __declspec(align(2)) char daiyousei_izumi_sceneTex_006000[] = ddaiyousei_izumi_sceneTex_006000; -#else -static const char daiyousei_izumi_sceneTex_006000[] __attribute__((aligned (2))) = ddaiyousei_izumi_sceneTex_006000; -#endif - -#define ddaiyousei_izumi_sceneCollisionHeader_0043A4 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneCollisionHeader_0043A4" -#define ddaiyousei_izumi_sceneCollisionHeader_0043A4 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneCollisionHeader_0043A4" +static const ALIGN_ASSET(2) char daiyousei_izumi_sceneTex_006000[] = ddaiyousei_izumi_sceneTex_006000; + #define ddaiyousei_izumi_sceneCollisionHeader_0043A4 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneCollisionHeader_0043A4" +#define ddaiyousei_izumi_sceneCollisionHeader_0043A4 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneCollisionHeader_0043A4" + +#define ddaiyousei_izumi_sceneCollisionHeader_0043A4 "__OTR__scenes/nonmq/daiyousei_izumi_scene/daiyousei_izumi_sceneCollisionHeader_0043A4" \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hairal_niwa/hairal_niwa_room_0.h b/soh/assets/scenes/indoors/hairal_niwa/hairal_niwa_room_0.h index 43c682f71..b7f2740ee 100644 --- a/soh/assets/scenes/indoors/hairal_niwa/hairal_niwa_room_0.h +++ b/soh/assets/scenes/indoors/hairal_niwa/hairal_niwa_room_0.h @@ -1,93 +1,42 @@ #pragma once -#define dhairal_niwa_room_0DL_000390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_000390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_000390[] = dhairal_niwa_room_0DL_000390; -#else -static const char hairal_niwa_room_0DL_000390[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_000390; -#endif - -#define dhairal_niwa_room_0DL_0095E0 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_0095E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_0095E0[] = dhairal_niwa_room_0DL_0095E0; -#else -static const char hairal_niwa_room_0DL_0095E0[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_0095E0; -#endif - -#define dhairal_niwa_room_0DL_001D98 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_001D98" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_001D98[] = dhairal_niwa_room_0DL_001D98; -#else -static const char hairal_niwa_room_0DL_001D98[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_001D98; -#endif - -#define dhairal_niwa_room_0DL_009958 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_009958" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_009958[] = dhairal_niwa_room_0DL_009958; -#else -static const char hairal_niwa_room_0DL_009958[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_009958; -#endif - -#define dhairal_niwa_room_0DL_002DE8 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_002DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_002DE8[] = dhairal_niwa_room_0DL_002DE8; -#else -static const char hairal_niwa_room_0DL_002DE8[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_002DE8; -#endif - -#define dhairal_niwa_room_0DL_003CE0 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_003CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_003CE0[] = dhairal_niwa_room_0DL_003CE0; -#else -static const char hairal_niwa_room_0DL_003CE0[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_003CE0; -#endif - -#define dhairal_niwa_room_0DL_00A2E8 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_00A2E8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_00A2E8[] = dhairal_niwa_room_0DL_00A2E8; -#else -static const char hairal_niwa_room_0DL_00A2E8[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_00A2E8; -#endif - -#define dhairal_niwa_room_0DL_005188 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_005188" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_005188[] = dhairal_niwa_room_0DL_005188; -#else -static const char hairal_niwa_room_0DL_005188[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_005188; -#endif - -#define dhairal_niwa_room_0DL_006330 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_006330" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_006330[] = dhairal_niwa_room_0DL_006330; -#else -static const char hairal_niwa_room_0DL_006330[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_006330; -#endif - -#define dhairal_niwa_room_0DL_00A630 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_00A630" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_00A630[] = dhairal_niwa_room_0DL_00A630; -#else -static const char hairal_niwa_room_0DL_00A630[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_00A630; -#endif - -#define dhairal_niwa_room_0DL_0082C8 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_0082C8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_0082C8[] = dhairal_niwa_room_0DL_0082C8; -#else -static const char hairal_niwa_room_0DL_0082C8[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_0082C8; -#endif - -#define dhairal_niwa_room_0DL_0090A8 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_0090A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_0090A8[] = dhairal_niwa_room_0DL_0090A8; -#else -static const char hairal_niwa_room_0DL_0090A8[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_0090A8; -#endif - -#define dhairal_niwa_room_0DL_00A7E0 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_00A7E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_room_0DL_00A7E0[] = dhairal_niwa_room_0DL_00A7E0; -#else -static const char hairal_niwa_room_0DL_00A7E0[] __attribute__((aligned (2))) = dhairal_niwa_room_0DL_00A7E0; -#endif - +#include "align_asset_macro.h" + +#define dhairal_niwa_room_0DL_000390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_000390" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_000390[] = dhairal_niwa_room_0DL_000390; + +#define dhairal_niwa_room_0DL_0095E0 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_0095E0" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_0095E0[] = dhairal_niwa_room_0DL_0095E0; + +#define dhairal_niwa_room_0DL_001D98 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_001D98" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_001D98[] = dhairal_niwa_room_0DL_001D98; + +#define dhairal_niwa_room_0DL_009958 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_009958" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_009958[] = dhairal_niwa_room_0DL_009958; + +#define dhairal_niwa_room_0DL_002DE8 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_002DE8" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_002DE8[] = dhairal_niwa_room_0DL_002DE8; + +#define dhairal_niwa_room_0DL_003CE0 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_003CE0" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_003CE0[] = dhairal_niwa_room_0DL_003CE0; + +#define dhairal_niwa_room_0DL_00A2E8 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_00A2E8" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_00A2E8[] = dhairal_niwa_room_0DL_00A2E8; + +#define dhairal_niwa_room_0DL_005188 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_005188" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_005188[] = dhairal_niwa_room_0DL_005188; + +#define dhairal_niwa_room_0DL_006330 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_006330" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_006330[] = dhairal_niwa_room_0DL_006330; + +#define dhairal_niwa_room_0DL_00A630 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_00A630" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_00A630[] = dhairal_niwa_room_0DL_00A630; + +#define dhairal_niwa_room_0DL_0082C8 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_0082C8" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_0082C8[] = dhairal_niwa_room_0DL_0082C8; + +#define dhairal_niwa_room_0DL_0090A8 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_0090A8" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_0090A8[] = dhairal_niwa_room_0DL_0090A8; + +#define dhairal_niwa_room_0DL_00A7E0 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_room_0DL_00A7E0" +static const ALIGN_ASSET(2) char hairal_niwa_room_0DL_00A7E0[] = dhairal_niwa_room_0DL_00A7E0; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hairal_niwa/hairal_niwa_scene.h b/soh/assets/scenes/indoors/hairal_niwa/hairal_niwa_scene.h index c3d22d668..e049e6668 100644 --- a/soh/assets/scenes/indoors/hairal_niwa/hairal_niwa_scene.h +++ b/soh/assets/scenes/indoors/hairal_niwa/hairal_niwa_scene.h @@ -1,163 +1,72 @@ #pragma once -#define dhairal_niwa_sceneCollisionHeader_0030B0 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneCollisionHeader_0030B0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneCollisionHeader_0030B0[] = dhairal_niwa_sceneCollisionHeader_0030B0; -#else -static const char hairal_niwa_sceneCollisionHeader_0030B0[] __attribute__((aligned (2))) = dhairal_niwa_sceneCollisionHeader_0030B0; -#endif - -#define dhairal_niwa_sceneTex_007390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_007390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_007390[] = dhairal_niwa_sceneTex_007390; -#else -static const char hairal_niwa_sceneTex_007390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_007390; -#endif - -#define dhairal_niwa_sceneTex_003390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_003390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_003390[] = dhairal_niwa_sceneTex_003390; -#else -static const char hairal_niwa_sceneTex_003390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_003390; -#endif - -#define dhairal_niwa_sceneTex_008B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_008B90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_008B90[] = dhairal_niwa_sceneTex_008B90; -#else -static const char hairal_niwa_sceneTex_008B90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_008B90; -#endif - -#define dhairal_niwa_sceneTex_005390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_005390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_005390[] = dhairal_niwa_sceneTex_005390; -#else -static const char hairal_niwa_sceneTex_005390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_005390; -#endif - -#define dhairal_niwa_sceneTex_00D390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00D390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00D390[] = dhairal_niwa_sceneTex_00D390; -#else -static const char hairal_niwa_sceneTex_00D390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00D390; -#endif - -#define dhairal_niwa_sceneTex_004B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_004B90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_004B90[] = dhairal_niwa_sceneTex_004B90; -#else -static const char hairal_niwa_sceneTex_004B90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_004B90; -#endif - -#define dhairal_niwa_sceneTex_00EB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00EB90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00EB90[] = dhairal_niwa_sceneTex_00EB90; -#else -static const char hairal_niwa_sceneTex_00EB90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00EB90; -#endif - -#define dhairal_niwa_sceneTex_00F390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00F390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00F390[] = dhairal_niwa_sceneTex_00F390; -#else -static const char hairal_niwa_sceneTex_00F390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00F390; -#endif - -#define dhairal_niwa_sceneTex_010390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_010390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_010390[] = dhairal_niwa_sceneTex_010390; -#else -static const char hairal_niwa_sceneTex_010390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_010390; -#endif - -#define dhairal_niwa_sceneTex_00FB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00FB90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00FB90[] = dhairal_niwa_sceneTex_00FB90; -#else -static const char hairal_niwa_sceneTex_00FB90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00FB90; -#endif - -#define dhairal_niwa_sceneTex_009390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_009390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_009390[] = dhairal_niwa_sceneTex_009390; -#else -static const char hairal_niwa_sceneTex_009390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_009390; -#endif - -#define dhairal_niwa_sceneTex_007B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_007B90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_007B90[] = dhairal_niwa_sceneTex_007B90; -#else -static const char hairal_niwa_sceneTex_007B90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_007B90; -#endif - -#define dhairal_niwa_sceneTex_006390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_006390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_006390[] = dhairal_niwa_sceneTex_006390; -#else -static const char hairal_niwa_sceneTex_006390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_006390; -#endif - -#define dhairal_niwa_sceneTex_00CB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00CB90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00CB90[] = dhairal_niwa_sceneTex_00CB90; -#else -static const char hairal_niwa_sceneTex_00CB90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00CB90; -#endif - -#define dhairal_niwa_sceneTex_00B390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00B390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00B390[] = dhairal_niwa_sceneTex_00B390; -#else -static const char hairal_niwa_sceneTex_00B390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00B390; -#endif - -#define dhairal_niwa_sceneTex_00AB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00AB90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00AB90[] = dhairal_niwa_sceneTex_00AB90; -#else -static const char hairal_niwa_sceneTex_00AB90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00AB90; -#endif - -#define dhairal_niwa_sceneTex_00DB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00DB90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00DB90[] = dhairal_niwa_sceneTex_00DB90; -#else -static const char hairal_niwa_sceneTex_00DB90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00DB90; -#endif - -#define dhairal_niwa_sceneTex_00C390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00C390" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00C390[] = dhairal_niwa_sceneTex_00C390; -#else -static const char hairal_niwa_sceneTex_00C390[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00C390; -#endif - -#define dhairal_niwa_sceneTex_00BB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00BB90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_00BB90[] = dhairal_niwa_sceneTex_00BB90; -#else -static const char hairal_niwa_sceneTex_00BB90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_00BB90; -#endif - -#define dhairal_niwa_sceneTex_009B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_009B90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_009B90[] = dhairal_niwa_sceneTex_009B90; -#else -static const char hairal_niwa_sceneTex_009B90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_009B90; -#endif - -#define dhairal_niwa_sceneTex_005B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_005B90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_005B90[] = dhairal_niwa_sceneTex_005B90; -#else -static const char hairal_niwa_sceneTex_005B90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_005B90; -#endif - -#define dhairal_niwa_sceneTex_003B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_003B90" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_sceneTex_003B90[] = dhairal_niwa_sceneTex_003B90; -#else -static const char hairal_niwa_sceneTex_003B90[] __attribute__((aligned (2))) = dhairal_niwa_sceneTex_003B90; -#endif - +#include "align_asset_macro.h" + +#define dhairal_niwa_sceneCollisionHeader_0030B0 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneCollisionHeader_0030B0" +static const ALIGN_ASSET(2) char hairal_niwa_sceneCollisionHeader_0030B0[] = dhairal_niwa_sceneCollisionHeader_0030B0; + +#define dhairal_niwa_sceneTex_007390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_007390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_007390[] = dhairal_niwa_sceneTex_007390; + +#define dhairal_niwa_sceneTex_003390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_003390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_003390[] = dhairal_niwa_sceneTex_003390; + +#define dhairal_niwa_sceneTex_008B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_008B90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_008B90[] = dhairal_niwa_sceneTex_008B90; + +#define dhairal_niwa_sceneTex_005390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_005390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_005390[] = dhairal_niwa_sceneTex_005390; + +#define dhairal_niwa_sceneTex_00D390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00D390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00D390[] = dhairal_niwa_sceneTex_00D390; + +#define dhairal_niwa_sceneTex_004B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_004B90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_004B90[] = dhairal_niwa_sceneTex_004B90; + +#define dhairal_niwa_sceneTex_00EB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00EB90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00EB90[] = dhairal_niwa_sceneTex_00EB90; + +#define dhairal_niwa_sceneTex_00F390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00F390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00F390[] = dhairal_niwa_sceneTex_00F390; + +#define dhairal_niwa_sceneTex_010390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_010390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_010390[] = dhairal_niwa_sceneTex_010390; + +#define dhairal_niwa_sceneTex_00FB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00FB90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00FB90[] = dhairal_niwa_sceneTex_00FB90; + +#define dhairal_niwa_sceneTex_009390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_009390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_009390[] = dhairal_niwa_sceneTex_009390; + +#define dhairal_niwa_sceneTex_007B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_007B90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_007B90[] = dhairal_niwa_sceneTex_007B90; + +#define dhairal_niwa_sceneTex_006390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_006390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_006390[] = dhairal_niwa_sceneTex_006390; + +#define dhairal_niwa_sceneTex_00CB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00CB90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00CB90[] = dhairal_niwa_sceneTex_00CB90; + +#define dhairal_niwa_sceneTex_00B390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00B390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00B390[] = dhairal_niwa_sceneTex_00B390; + +#define dhairal_niwa_sceneTex_00AB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00AB90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00AB90[] = dhairal_niwa_sceneTex_00AB90; + +#define dhairal_niwa_sceneTex_00DB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00DB90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00DB90[] = dhairal_niwa_sceneTex_00DB90; + +#define dhairal_niwa_sceneTex_00C390 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00C390" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00C390[] = dhairal_niwa_sceneTex_00C390; + +#define dhairal_niwa_sceneTex_00BB90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_00BB90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_00BB90[] = dhairal_niwa_sceneTex_00BB90; + +#define dhairal_niwa_sceneTex_009B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_009B90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_009B90[] = dhairal_niwa_sceneTex_009B90; + +#define dhairal_niwa_sceneTex_005B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_005B90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_005B90[] = dhairal_niwa_sceneTex_005B90; + +#define dhairal_niwa_sceneTex_003B90 "__OTR__scenes/nonmq/hairal_niwa_scene/hairal_niwa_sceneTex_003B90" +static const ALIGN_ASSET(2) char hairal_niwa_sceneTex_003B90[] = dhairal_niwa_sceneTex_003B90; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hairal_niwa2/hairal_niwa2_room_0.h b/soh/assets/scenes/indoors/hairal_niwa2/hairal_niwa2_room_0.h index 12eb059bc..aa9a5478e 100644 --- a/soh/assets/scenes/indoors/hairal_niwa2/hairal_niwa2_room_0.h +++ b/soh/assets/scenes/indoors/hairal_niwa2/hairal_niwa2_room_0.h @@ -1,170 +1,75 @@ #pragma once -#define dhairal_niwa2_room_0DL_008708 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0DL_008708" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0DL_008708[] = dhairal_niwa2_room_0DL_008708; -#else -static const char hairal_niwa2_room_0DL_008708[] __attribute__((aligned (2))) = dhairal_niwa2_room_0DL_008708; -#endif - -#define dhairal_niwa2_room_0Tex_00AF50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00AF50" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00AF50[] = dhairal_niwa2_room_0Tex_00AF50; -#else -static const char hairal_niwa2_room_0Tex_00AF50[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00AF50; -#endif - -#define dhairal_niwa2_room_0Tex_008750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_008750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_008750[] = dhairal_niwa2_room_0Tex_008750; -#else -static const char hairal_niwa2_room_0Tex_008750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_008750; -#endif - -#define dhairal_niwa2_room_0Tex_00C750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00C750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00C750[] = dhairal_niwa2_room_0Tex_00C750; -#else -static const char hairal_niwa2_room_0Tex_00C750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00C750; -#endif - -#define dhairal_niwa2_room_0Tex_008F50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_008F50" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_008F50[] = dhairal_niwa2_room_0Tex_008F50; -#else -static const char hairal_niwa2_room_0Tex_008F50[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_008F50; -#endif - -#define dhairal_niwa2_room_0Tex_012750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_012750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_012750[] = dhairal_niwa2_room_0Tex_012750; -#else -static const char hairal_niwa2_room_0Tex_012750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_012750; -#endif - -#define dhairal_niwa2_room_0Tex_00CF50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00CF50" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00CF50[] = dhairal_niwa2_room_0Tex_00CF50; -#else -static const char hairal_niwa2_room_0Tex_00CF50[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00CF50; -#endif - -#define dhairal_niwa2_room_0Tex_00B750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00B750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00B750[] = dhairal_niwa2_room_0Tex_00B750; -#else -static const char hairal_niwa2_room_0Tex_00B750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00B750; -#endif - -#define dhairal_niwa2_room_0Tex_010F50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_010F50" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_010F50[] = dhairal_niwa2_room_0Tex_010F50; -#else -static const char hairal_niwa2_room_0Tex_010F50[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_010F50; -#endif - -#define dhairal_niwa2_room_0Tex_011750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_011750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_011750[] = dhairal_niwa2_room_0Tex_011750; -#else -static const char hairal_niwa2_room_0Tex_011750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_011750; -#endif - -#define dhairal_niwa2_room_0Tex_009F50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_009F50" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_009F50[] = dhairal_niwa2_room_0Tex_009F50; -#else -static const char hairal_niwa2_room_0Tex_009F50[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_009F50; -#endif - -#define dhairal_niwa2_room_0Tex_011F50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_011F50" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_011F50[] = dhairal_niwa2_room_0Tex_011F50; -#else -static const char hairal_niwa2_room_0Tex_011F50[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_011F50; -#endif - -#define dhairal_niwa2_room_0Tex_00EF50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00EF50" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00EF50[] = dhairal_niwa2_room_0Tex_00EF50; -#else -static const char hairal_niwa2_room_0Tex_00EF50[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00EF50; -#endif - -#define dhairal_niwa2_room_0Tex_00E750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00E750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00E750[] = dhairal_niwa2_room_0Tex_00E750; -#else -static const char hairal_niwa2_room_0Tex_00E750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00E750; -#endif - -#define dhairal_niwa2_room_0Tex_00FF50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00FF50" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00FF50[] = dhairal_niwa2_room_0Tex_00FF50; -#else -static const char hairal_niwa2_room_0Tex_00FF50[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00FF50; -#endif - -#define dhairal_niwa2_room_0Tex_00F750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00F750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00F750[] = dhairal_niwa2_room_0Tex_00F750; -#else -static const char hairal_niwa2_room_0Tex_00F750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00F750; -#endif - -#define dhairal_niwa2_room_0Tex_00D750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00D750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_00D750[] = dhairal_niwa2_room_0Tex_00D750; -#else -static const char hairal_niwa2_room_0Tex_00D750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_00D750; -#endif - -#define dhairal_niwa2_room_0Tex_009750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_009750" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_009750[] = dhairal_niwa2_room_0Tex_009750; -#else -static const char hairal_niwa2_room_0Tex_009750[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_009750; -#endif - -#define dhairal_niwa2_room_0DL_014BC8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0DL_014BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0DL_014BC8[] = dhairal_niwa2_room_0DL_014BC8; -#else -static const char hairal_niwa2_room_0DL_014BC8[] __attribute__((aligned (2))) = dhairal_niwa2_room_0DL_014BC8; -#endif - -#define dhairal_niwa2_room_0Tex_0173F8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_0173F8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_0173F8[] = dhairal_niwa2_room_0Tex_0173F8; -#else -static const char hairal_niwa2_room_0Tex_0173F8[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_0173F8; -#endif - -#define dhairal_niwa2_room_0Tex_015BF8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_015BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_015BF8[] = dhairal_niwa2_room_0Tex_015BF8; -#else -static const char hairal_niwa2_room_0Tex_015BF8[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_015BF8; -#endif - -#define dhairal_niwa2_room_0Tex_016BF8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_016BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_016BF8[] = dhairal_niwa2_room_0Tex_016BF8; -#else -static const char hairal_niwa2_room_0Tex_016BF8[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_016BF8; -#endif - -#define dhairal_niwa2_room_0Tex_0163F8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_0163F8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_0163F8[] = dhairal_niwa2_room_0Tex_0163F8; -#else -static const char hairal_niwa2_room_0Tex_0163F8[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_0163F8; -#endif - -#define dhairal_niwa2_room_0Tex_014BF8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_014BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_room_0Tex_014BF8[] = dhairal_niwa2_room_0Tex_014BF8; -#else -static const char hairal_niwa2_room_0Tex_014BF8[] __attribute__((aligned (2))) = dhairal_niwa2_room_0Tex_014BF8; -#endif - +#include "align_asset_macro.h" + +#define dhairal_niwa2_room_0DL_008708 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0DL_008708" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0DL_008708[] = dhairal_niwa2_room_0DL_008708; + +#define dhairal_niwa2_room_0Tex_00AF50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00AF50" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00AF50[] = dhairal_niwa2_room_0Tex_00AF50; + +#define dhairal_niwa2_room_0Tex_008750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_008750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_008750[] = dhairal_niwa2_room_0Tex_008750; + +#define dhairal_niwa2_room_0Tex_00C750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00C750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00C750[] = dhairal_niwa2_room_0Tex_00C750; + +#define dhairal_niwa2_room_0Tex_008F50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_008F50" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_008F50[] = dhairal_niwa2_room_0Tex_008F50; + +#define dhairal_niwa2_room_0Tex_012750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_012750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_012750[] = dhairal_niwa2_room_0Tex_012750; + +#define dhairal_niwa2_room_0Tex_00CF50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00CF50" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00CF50[] = dhairal_niwa2_room_0Tex_00CF50; + +#define dhairal_niwa2_room_0Tex_00B750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00B750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00B750[] = dhairal_niwa2_room_0Tex_00B750; + +#define dhairal_niwa2_room_0Tex_010F50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_010F50" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_010F50[] = dhairal_niwa2_room_0Tex_010F50; + +#define dhairal_niwa2_room_0Tex_011750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_011750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_011750[] = dhairal_niwa2_room_0Tex_011750; + +#define dhairal_niwa2_room_0Tex_009F50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_009F50" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_009F50[] = dhairal_niwa2_room_0Tex_009F50; + +#define dhairal_niwa2_room_0Tex_011F50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_011F50" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_011F50[] = dhairal_niwa2_room_0Tex_011F50; + +#define dhairal_niwa2_room_0Tex_00EF50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00EF50" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00EF50[] = dhairal_niwa2_room_0Tex_00EF50; + +#define dhairal_niwa2_room_0Tex_00E750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00E750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00E750[] = dhairal_niwa2_room_0Tex_00E750; + +#define dhairal_niwa2_room_0Tex_00FF50 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00FF50" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00FF50[] = dhairal_niwa2_room_0Tex_00FF50; + +#define dhairal_niwa2_room_0Tex_00F750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00F750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00F750[] = dhairal_niwa2_room_0Tex_00F750; + +#define dhairal_niwa2_room_0Tex_00D750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_00D750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_00D750[] = dhairal_niwa2_room_0Tex_00D750; + +#define dhairal_niwa2_room_0Tex_009750 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_009750" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_009750[] = dhairal_niwa2_room_0Tex_009750; + +#define dhairal_niwa2_room_0DL_014BC8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0DL_014BC8" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0DL_014BC8[] = dhairal_niwa2_room_0DL_014BC8; + +#define dhairal_niwa2_room_0Tex_0173F8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_0173F8" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_0173F8[] = dhairal_niwa2_room_0Tex_0173F8; + +#define dhairal_niwa2_room_0Tex_015BF8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_015BF8" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_015BF8[] = dhairal_niwa2_room_0Tex_015BF8; + +#define dhairal_niwa2_room_0Tex_016BF8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_016BF8" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_016BF8[] = dhairal_niwa2_room_0Tex_016BF8; + +#define dhairal_niwa2_room_0Tex_0163F8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_0163F8" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_0163F8[] = dhairal_niwa2_room_0Tex_0163F8; + +#define dhairal_niwa2_room_0Tex_014BF8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_room_0Tex_014BF8" +static const ALIGN_ASSET(2) char hairal_niwa2_room_0Tex_014BF8[] = dhairal_niwa2_room_0Tex_014BF8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hairal_niwa2/hairal_niwa2_scene.h b/soh/assets/scenes/indoors/hairal_niwa2/hairal_niwa2_scene.h index 85497f987..f8e86453f 100644 --- a/soh/assets/scenes/indoors/hairal_niwa2/hairal_niwa2_scene.h +++ b/soh/assets/scenes/indoors/hairal_niwa2/hairal_niwa2_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dhairal_niwa2_sceneCollisionHeader_002CD8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_sceneCollisionHeader_002CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa2_sceneCollisionHeader_002CD8[] = dhairal_niwa2_sceneCollisionHeader_002CD8; -#else -static const char hairal_niwa2_sceneCollisionHeader_002CD8[] __attribute__((aligned (2))) = dhairal_niwa2_sceneCollisionHeader_002CD8; -#endif - +#include "align_asset_macro.h" + +#define dhairal_niwa2_sceneCollisionHeader_002CD8 "__OTR__scenes/nonmq/hairal_niwa2_scene/hairal_niwa2_sceneCollisionHeader_002CD8" +static const ALIGN_ASSET(2) char hairal_niwa2_sceneCollisionHeader_002CD8[] = dhairal_niwa2_sceneCollisionHeader_002CD8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hairal_niwa_n/hairal_niwa_n_room_0.h b/soh/assets/scenes/indoors/hairal_niwa_n/hairal_niwa_n_room_0.h index bca7b501a..370aa158f 100644 --- a/soh/assets/scenes/indoors/hairal_niwa_n/hairal_niwa_n_room_0.h +++ b/soh/assets/scenes/indoors/hairal_niwa_n/hairal_niwa_n_room_0.h @@ -1,16 +1,9 @@ #pragma once -#define dhairal_niwa_n_room_0DL_002FE8 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_room_0DL_002FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_room_0DL_002FE8[] = dhairal_niwa_n_room_0DL_002FE8; -#else -static const char hairal_niwa_n_room_0DL_002FE8[] __attribute__((aligned (2))) = dhairal_niwa_n_room_0DL_002FE8; -#endif - -#define dhairal_niwa_n_room_0DL_003608 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_room_0DL_003608" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_room_0DL_003608[] = dhairal_niwa_n_room_0DL_003608; -#else -static const char hairal_niwa_n_room_0DL_003608[] __attribute__((aligned (2))) = dhairal_niwa_n_room_0DL_003608; -#endif - +#include "align_asset_macro.h" + +#define dhairal_niwa_n_room_0DL_002FE8 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_room_0DL_002FE8" +static const ALIGN_ASSET(2) char hairal_niwa_n_room_0DL_002FE8[] = dhairal_niwa_n_room_0DL_002FE8; + +#define dhairal_niwa_n_room_0DL_003608 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_room_0DL_003608" +static const ALIGN_ASSET(2) char hairal_niwa_n_room_0DL_003608[] = dhairal_niwa_n_room_0DL_003608; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hairal_niwa_n/hairal_niwa_n_scene.h b/soh/assets/scenes/indoors/hairal_niwa_n/hairal_niwa_n_scene.h index 3eaa85dec..72ead5606 100644 --- a/soh/assets/scenes/indoors/hairal_niwa_n/hairal_niwa_n_scene.h +++ b/soh/assets/scenes/indoors/hairal_niwa_n/hairal_niwa_n_scene.h @@ -1,100 +1,45 @@ #pragma once -#define dhairal_niwa_n_sceneCollisionHeader_0010C4 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneCollisionHeader_0010C4" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneCollisionHeader_0010C4[] = dhairal_niwa_n_sceneCollisionHeader_0010C4; -#else -static const char hairal_niwa_n_sceneCollisionHeader_0010C4[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneCollisionHeader_0010C4; -#endif - -#define dhairal_niwa_n_sceneTex_0038F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0038F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0038F0[] = dhairal_niwa_n_sceneTex_0038F0; -#else -static const char hairal_niwa_n_sceneTex_0038F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0038F0; -#endif - -#define dhairal_niwa_n_sceneTex_0010F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0010F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0010F0[] = dhairal_niwa_n_sceneTex_0010F0; -#else -static const char hairal_niwa_n_sceneTex_0010F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0010F0; -#endif - -#define dhairal_niwa_n_sceneTex_0050F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0050F0[] = dhairal_niwa_n_sceneTex_0050F0; -#else -static const char hairal_niwa_n_sceneTex_0050F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0050F0; -#endif - -#define dhairal_niwa_n_sceneTex_0020F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0020F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0020F0[] = dhairal_niwa_n_sceneTex_0020F0; -#else -static const char hairal_niwa_n_sceneTex_0020F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0020F0; -#endif - -#define dhairal_niwa_n_sceneTex_0068F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0068F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0068F0[] = dhairal_niwa_n_sceneTex_0068F0; -#else -static const char hairal_niwa_n_sceneTex_0068F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0068F0; -#endif - -#define dhairal_niwa_n_sceneTex_0070F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0070F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0070F0[] = dhairal_niwa_n_sceneTex_0070F0; -#else -static const char hairal_niwa_n_sceneTex_0070F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0070F0; -#endif - -#define dhairal_niwa_n_sceneTex_0080F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0080F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0080F0[] = dhairal_niwa_n_sceneTex_0080F0; -#else -static const char hairal_niwa_n_sceneTex_0080F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0080F0; -#endif - -#define dhairal_niwa_n_sceneTex_0078F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0078F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0078F0[] = dhairal_niwa_n_sceneTex_0078F0; -#else -static const char hairal_niwa_n_sceneTex_0078F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0078F0; -#endif - -#define dhairal_niwa_n_sceneTex_0058F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0058F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0058F0[] = dhairal_niwa_n_sceneTex_0058F0; -#else -static const char hairal_niwa_n_sceneTex_0058F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0058F0; -#endif - -#define dhairal_niwa_n_sceneTex_0040F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0040F0[] = dhairal_niwa_n_sceneTex_0040F0; -#else -static const char hairal_niwa_n_sceneTex_0040F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0040F0; -#endif - -#define dhairal_niwa_n_sceneTex_0028F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0028F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0028F0[] = dhairal_niwa_n_sceneTex_0028F0; -#else -static const char hairal_niwa_n_sceneTex_0028F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0028F0; -#endif - -#define dhairal_niwa_n_sceneTex_0060F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0060F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0060F0[] = dhairal_niwa_n_sceneTex_0060F0; -#else -static const char hairal_niwa_n_sceneTex_0060F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0060F0; -#endif - -#define dhairal_niwa_n_sceneTex_0018F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0018F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hairal_niwa_n_sceneTex_0018F0[] = dhairal_niwa_n_sceneTex_0018F0; -#else -static const char hairal_niwa_n_sceneTex_0018F0[] __attribute__((aligned (2))) = dhairal_niwa_n_sceneTex_0018F0; -#endif - +#include "align_asset_macro.h" + +#define dhairal_niwa_n_sceneCollisionHeader_0010C4 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneCollisionHeader_0010C4" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneCollisionHeader_0010C4[] = dhairal_niwa_n_sceneCollisionHeader_0010C4; + +#define dhairal_niwa_n_sceneTex_0038F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0038F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0038F0[] = dhairal_niwa_n_sceneTex_0038F0; + +#define dhairal_niwa_n_sceneTex_0010F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0010F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0010F0[] = dhairal_niwa_n_sceneTex_0010F0; + +#define dhairal_niwa_n_sceneTex_0050F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0050F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0050F0[] = dhairal_niwa_n_sceneTex_0050F0; + +#define dhairal_niwa_n_sceneTex_0020F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0020F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0020F0[] = dhairal_niwa_n_sceneTex_0020F0; + +#define dhairal_niwa_n_sceneTex_0068F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0068F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0068F0[] = dhairal_niwa_n_sceneTex_0068F0; + +#define dhairal_niwa_n_sceneTex_0070F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0070F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0070F0[] = dhairal_niwa_n_sceneTex_0070F0; + +#define dhairal_niwa_n_sceneTex_0080F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0080F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0080F0[] = dhairal_niwa_n_sceneTex_0080F0; + +#define dhairal_niwa_n_sceneTex_0078F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0078F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0078F0[] = dhairal_niwa_n_sceneTex_0078F0; + +#define dhairal_niwa_n_sceneTex_0058F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0058F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0058F0[] = dhairal_niwa_n_sceneTex_0058F0; + +#define dhairal_niwa_n_sceneTex_0040F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0040F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0040F0[] = dhairal_niwa_n_sceneTex_0040F0; + +#define dhairal_niwa_n_sceneTex_0028F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0028F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0028F0[] = dhairal_niwa_n_sceneTex_0028F0; + +#define dhairal_niwa_n_sceneTex_0060F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0060F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0060F0[] = dhairal_niwa_n_sceneTex_0060F0; + +#define dhairal_niwa_n_sceneTex_0018F0 "__OTR__scenes/nonmq/hairal_niwa_n_scene/hairal_niwa_n_sceneTex_0018F0" +static const ALIGN_ASSET(2) char hairal_niwa_n_sceneTex_0018F0[] = dhairal_niwa_n_sceneTex_0018F0; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_0.h b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_0.h index ef18294e4..26ad7ee76 100644 --- a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_0.h +++ b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_0.h @@ -1,65 +1,30 @@ #pragma once -#define dhakasitarelay_room_0DL_003218 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0DL_003218" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0DL_003218[] = dhakasitarelay_room_0DL_003218; -#else -static const char hakasitarelay_room_0DL_003218[] __attribute__((aligned (2))) = dhakasitarelay_room_0DL_003218; -#endif - -#define dhakasitarelay_room_0Tex_003248 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_003248" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0Tex_003248[] = dhakasitarelay_room_0Tex_003248; -#else -static const char hakasitarelay_room_0Tex_003248[] __attribute__((aligned (2))) = dhakasitarelay_room_0Tex_003248; -#endif - -#define dhakasitarelay_room_0Tex_004448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_004448" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0Tex_004448[] = dhakasitarelay_room_0Tex_004448; -#else -static const char hakasitarelay_room_0Tex_004448[] __attribute__((aligned (2))) = dhakasitarelay_room_0Tex_004448; -#endif - -#define dhakasitarelay_room_0Tex_005448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_005448" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0Tex_005448[] = dhakasitarelay_room_0Tex_005448; -#else -static const char hakasitarelay_room_0Tex_005448[] __attribute__((aligned (2))) = dhakasitarelay_room_0Tex_005448; -#endif - -#define dhakasitarelay_room_0Tex_005848 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_005848" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0Tex_005848[] = dhakasitarelay_room_0Tex_005848; -#else -static const char hakasitarelay_room_0Tex_005848[] __attribute__((aligned (2))) = dhakasitarelay_room_0Tex_005848; -#endif - -#define dhakasitarelay_room_0Tex_004C48 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_004C48" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0Tex_004C48[] = dhakasitarelay_room_0Tex_004C48; -#else -static const char hakasitarelay_room_0Tex_004C48[] __attribute__((aligned (2))) = dhakasitarelay_room_0Tex_004C48; -#endif - -#define dhakasitarelay_room_0Tex_003448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_003448" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0Tex_003448[] = dhakasitarelay_room_0Tex_003448; -#else -static const char hakasitarelay_room_0Tex_003448[] __attribute__((aligned (2))) = dhakasitarelay_room_0Tex_003448; -#endif - -#define dhakasitarelay_room_0DL_0062A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0DL_0062A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0DL_0062A8[] = dhakasitarelay_room_0DL_0062A8; -#else -static const char hakasitarelay_room_0DL_0062A8[] __attribute__((aligned (2))) = dhakasitarelay_room_0DL_0062A8; -#endif - -#define dhakasitarelay_room_0Tex_0062B8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_0062B8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_0Tex_0062B8[] = dhakasitarelay_room_0Tex_0062B8; -#else -static const char hakasitarelay_room_0Tex_0062B8[] __attribute__((aligned (2))) = dhakasitarelay_room_0Tex_0062B8; -#endif - +#include "align_asset_macro.h" + +#define dhakasitarelay_room_0DL_003218 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0DL_003218" +static const ALIGN_ASSET(2) char hakasitarelay_room_0DL_003218[] = dhakasitarelay_room_0DL_003218; + +#define dhakasitarelay_room_0Tex_003248 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_003248" +static const ALIGN_ASSET(2) char hakasitarelay_room_0Tex_003248[] = dhakasitarelay_room_0Tex_003248; + +#define dhakasitarelay_room_0Tex_004448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_004448" +static const ALIGN_ASSET(2) char hakasitarelay_room_0Tex_004448[] = dhakasitarelay_room_0Tex_004448; + +#define dhakasitarelay_room_0Tex_005448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_005448" +static const ALIGN_ASSET(2) char hakasitarelay_room_0Tex_005448[] = dhakasitarelay_room_0Tex_005448; + +#define dhakasitarelay_room_0Tex_005848 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_005848" +static const ALIGN_ASSET(2) char hakasitarelay_room_0Tex_005848[] = dhakasitarelay_room_0Tex_005848; + +#define dhakasitarelay_room_0Tex_004C48 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_004C48" +static const ALIGN_ASSET(2) char hakasitarelay_room_0Tex_004C48[] = dhakasitarelay_room_0Tex_004C48; + +#define dhakasitarelay_room_0Tex_003448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_003448" +static const ALIGN_ASSET(2) char hakasitarelay_room_0Tex_003448[] = dhakasitarelay_room_0Tex_003448; + +#define dhakasitarelay_room_0DL_0062A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0DL_0062A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_0DL_0062A8[] = dhakasitarelay_room_0DL_0062A8; + +#define dhakasitarelay_room_0Tex_0062B8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_0Tex_0062B8" +static const ALIGN_ASSET(2) char hakasitarelay_room_0Tex_0062B8[] = dhakasitarelay_room_0Tex_0062B8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_1.h b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_1.h index 42ffd2025..8e3642b67 100644 --- a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_1.h +++ b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_1.h @@ -1,51 +1,24 @@ #pragma once -#define dhakasitarelay_room_1DL_003F00 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1DL_003F00" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_1DL_003F00[] = dhakasitarelay_room_1DL_003F00; -#else -static const char hakasitarelay_room_1DL_003F00[] __attribute__((aligned (2))) = dhakasitarelay_room_1DL_003F00; -#endif - -#define dhakasitarelay_room_1Tex_004720 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_004720" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_1Tex_004720[] = dhakasitarelay_room_1Tex_004720; -#else -static const char hakasitarelay_room_1Tex_004720[] __attribute__((aligned (2))) = dhakasitarelay_room_1Tex_004720; -#endif - -#define dhakasitarelay_room_1Tex_003F20 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_003F20" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_1Tex_003F20[] = dhakasitarelay_room_1Tex_003F20; -#else -static const char hakasitarelay_room_1Tex_003F20[] __attribute__((aligned (2))) = dhakasitarelay_room_1Tex_003F20; -#endif - -#define dhakasitarelay_room_1Tex_004320 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_004320" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_1Tex_004320[] = dhakasitarelay_room_1Tex_004320; -#else -static const char hakasitarelay_room_1Tex_004320[] __attribute__((aligned (2))) = dhakasitarelay_room_1Tex_004320; -#endif - -#define dhakasitarelay_room_1Tex_005F20 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_005F20" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_1Tex_005F20[] = dhakasitarelay_room_1Tex_005F20; -#else -static const char hakasitarelay_room_1Tex_005F20[] __attribute__((aligned (2))) = dhakasitarelay_room_1Tex_005F20; -#endif - -#define dhakasitarelay_room_1Tex_005720 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_005720" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_1Tex_005720[] = dhakasitarelay_room_1Tex_005720; -#else -static const char hakasitarelay_room_1Tex_005720[] __attribute__((aligned (2))) = dhakasitarelay_room_1Tex_005720; -#endif - -#define dhakasitarelay_room_1Tex_006320 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_006320" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_1Tex_006320[] = dhakasitarelay_room_1Tex_006320; -#else -static const char hakasitarelay_room_1Tex_006320[] __attribute__((aligned (2))) = dhakasitarelay_room_1Tex_006320; -#endif - +#include "align_asset_macro.h" + +#define dhakasitarelay_room_1DL_003F00 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1DL_003F00" +static const ALIGN_ASSET(2) char hakasitarelay_room_1DL_003F00[] = dhakasitarelay_room_1DL_003F00; + +#define dhakasitarelay_room_1Tex_004720 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_004720" +static const ALIGN_ASSET(2) char hakasitarelay_room_1Tex_004720[] = dhakasitarelay_room_1Tex_004720; + +#define dhakasitarelay_room_1Tex_003F20 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_003F20" +static const ALIGN_ASSET(2) char hakasitarelay_room_1Tex_003F20[] = dhakasitarelay_room_1Tex_003F20; + +#define dhakasitarelay_room_1Tex_004320 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_004320" +static const ALIGN_ASSET(2) char hakasitarelay_room_1Tex_004320[] = dhakasitarelay_room_1Tex_004320; + +#define dhakasitarelay_room_1Tex_005F20 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_005F20" +static const ALIGN_ASSET(2) char hakasitarelay_room_1Tex_005F20[] = dhakasitarelay_room_1Tex_005F20; + +#define dhakasitarelay_room_1Tex_005720 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_005720" +static const ALIGN_ASSET(2) char hakasitarelay_room_1Tex_005720[] = dhakasitarelay_room_1Tex_005720; + +#define dhakasitarelay_room_1Tex_006320 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_1Tex_006320" +static const ALIGN_ASSET(2) char hakasitarelay_room_1Tex_006320[] = dhakasitarelay_room_1Tex_006320; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_2.h b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_2.h index 66b24d9c2..dac172393 100644 --- a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_2.h +++ b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_2.h @@ -1,58 +1,27 @@ #pragma once -#define dhakasitarelay_room_2DL_005478 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2DL_005478" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_2DL_005478[] = dhakasitarelay_room_2DL_005478; -#else -static const char hakasitarelay_room_2DL_005478[] __attribute__((aligned (2))) = dhakasitarelay_room_2DL_005478; -#endif - -#define dhakasitarelay_room_2Tex_005CA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_005CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_2Tex_005CA8[] = dhakasitarelay_room_2Tex_005CA8; -#else -static const char hakasitarelay_room_2Tex_005CA8[] __attribute__((aligned (2))) = dhakasitarelay_room_2Tex_005CA8; -#endif - -#define dhakasitarelay_room_2Tex_0058A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_0058A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_2Tex_0058A8[] = dhakasitarelay_room_2Tex_0058A8; -#else -static const char hakasitarelay_room_2Tex_0058A8[] __attribute__((aligned (2))) = dhakasitarelay_room_2Tex_0058A8; -#endif - -#define dhakasitarelay_room_2Tex_0054A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_0054A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_2Tex_0054A8[] = dhakasitarelay_room_2Tex_0054A8; -#else -static const char hakasitarelay_room_2Tex_0054A8[] __attribute__((aligned (2))) = dhakasitarelay_room_2Tex_0054A8; -#endif - -#define dhakasitarelay_room_2Tex_006CA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_006CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_2Tex_006CA8[] = dhakasitarelay_room_2Tex_006CA8; -#else -static const char hakasitarelay_room_2Tex_006CA8[] __attribute__((aligned (2))) = dhakasitarelay_room_2Tex_006CA8; -#endif - -#define dhakasitarelay_room_2Tex_007CA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_007CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_2Tex_007CA8[] = dhakasitarelay_room_2Tex_007CA8; -#else -static const char hakasitarelay_room_2Tex_007CA8[] __attribute__((aligned (2))) = dhakasitarelay_room_2Tex_007CA8; -#endif - -#define dhakasitarelay_room_2Tex_0074A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_0074A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_2Tex_0074A8[] = dhakasitarelay_room_2Tex_0074A8; -#else -static const char hakasitarelay_room_2Tex_0074A8[] __attribute__((aligned (2))) = dhakasitarelay_room_2Tex_0074A8; -#endif - -#define dhakasitarelay_room_2Tex_0080A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_0080A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_2Tex_0080A8[] = dhakasitarelay_room_2Tex_0080A8; -#else -static const char hakasitarelay_room_2Tex_0080A8[] __attribute__((aligned (2))) = dhakasitarelay_room_2Tex_0080A8; -#endif - +#include "align_asset_macro.h" + +#define dhakasitarelay_room_2DL_005478 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2DL_005478" +static const ALIGN_ASSET(2) char hakasitarelay_room_2DL_005478[] = dhakasitarelay_room_2DL_005478; + +#define dhakasitarelay_room_2Tex_005CA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_005CA8" +static const ALIGN_ASSET(2) char hakasitarelay_room_2Tex_005CA8[] = dhakasitarelay_room_2Tex_005CA8; + +#define dhakasitarelay_room_2Tex_0058A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_0058A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_2Tex_0058A8[] = dhakasitarelay_room_2Tex_0058A8; + +#define dhakasitarelay_room_2Tex_0054A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_0054A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_2Tex_0054A8[] = dhakasitarelay_room_2Tex_0054A8; + +#define dhakasitarelay_room_2Tex_006CA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_006CA8" +static const ALIGN_ASSET(2) char hakasitarelay_room_2Tex_006CA8[] = dhakasitarelay_room_2Tex_006CA8; + +#define dhakasitarelay_room_2Tex_007CA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_007CA8" +static const ALIGN_ASSET(2) char hakasitarelay_room_2Tex_007CA8[] = dhakasitarelay_room_2Tex_007CA8; + +#define dhakasitarelay_room_2Tex_0074A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_0074A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_2Tex_0074A8[] = dhakasitarelay_room_2Tex_0074A8; + +#define dhakasitarelay_room_2Tex_0080A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_2Tex_0080A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_2Tex_0080A8[] = dhakasitarelay_room_2Tex_0080A8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_3.h b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_3.h index 2fb0130e3..991eebc7b 100644 --- a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_3.h +++ b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_3.h @@ -1,65 +1,30 @@ #pragma once -#define dhakasitarelay_room_3DL_0056B0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3DL_0056B0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3DL_0056B0[] = dhakasitarelay_room_3DL_0056B0; -#else -static const char hakasitarelay_room_3DL_0056B0[] __attribute__((aligned (2))) = dhakasitarelay_room_3DL_0056B0; -#endif - -#define dhakasitarelay_room_3Tex_0060E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3Tex_0060E0[] = dhakasitarelay_room_3Tex_0060E0; -#else -static const char hakasitarelay_room_3Tex_0060E0[] __attribute__((aligned (2))) = dhakasitarelay_room_3Tex_0060E0; -#endif - -#define dhakasitarelay_room_3Tex_0056E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0056E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3Tex_0056E0[] = dhakasitarelay_room_3Tex_0056E0; -#else -static const char hakasitarelay_room_3Tex_0056E0[] __attribute__((aligned (2))) = dhakasitarelay_room_3Tex_0056E0; -#endif - -#define dhakasitarelay_room_3Tex_0084E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0084E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3Tex_0084E0[] = dhakasitarelay_room_3Tex_0084E0; -#else -static const char hakasitarelay_room_3Tex_0084E0[] __attribute__((aligned (2))) = dhakasitarelay_room_3Tex_0084E0; -#endif - -#define dhakasitarelay_room_3Tex_005EE0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_005EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3Tex_005EE0[] = dhakasitarelay_room_3Tex_005EE0; -#else -static const char hakasitarelay_room_3Tex_005EE0[] __attribute__((aligned (2))) = dhakasitarelay_room_3Tex_005EE0; -#endif - -#define dhakasitarelay_room_3Tex_005AE0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_005AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3Tex_005AE0[] = dhakasitarelay_room_3Tex_005AE0; -#else -static const char hakasitarelay_room_3Tex_005AE0[] __attribute__((aligned (2))) = dhakasitarelay_room_3Tex_005AE0; -#endif - -#define dhakasitarelay_room_3Tex_007CE0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_007CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3Tex_007CE0[] = dhakasitarelay_room_3Tex_007CE0; -#else -static const char hakasitarelay_room_3Tex_007CE0[] __attribute__((aligned (2))) = dhakasitarelay_room_3Tex_007CE0; -#endif - -#define dhakasitarelay_room_3Tex_0078E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0078E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3Tex_0078E0[] = dhakasitarelay_room_3Tex_0078E0; -#else -static const char hakasitarelay_room_3Tex_0078E0[] __attribute__((aligned (2))) = dhakasitarelay_room_3Tex_0078E0; -#endif - -#define dhakasitarelay_room_3Tex_0070E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0070E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_3Tex_0070E0[] = dhakasitarelay_room_3Tex_0070E0; -#else -static const char hakasitarelay_room_3Tex_0070E0[] __attribute__((aligned (2))) = dhakasitarelay_room_3Tex_0070E0; -#endif - +#include "align_asset_macro.h" + +#define dhakasitarelay_room_3DL_0056B0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3DL_0056B0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3DL_0056B0[] = dhakasitarelay_room_3DL_0056B0; + +#define dhakasitarelay_room_3Tex_0060E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0060E0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3Tex_0060E0[] = dhakasitarelay_room_3Tex_0060E0; + +#define dhakasitarelay_room_3Tex_0056E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0056E0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3Tex_0056E0[] = dhakasitarelay_room_3Tex_0056E0; + +#define dhakasitarelay_room_3Tex_0084E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0084E0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3Tex_0084E0[] = dhakasitarelay_room_3Tex_0084E0; + +#define dhakasitarelay_room_3Tex_005EE0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_005EE0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3Tex_005EE0[] = dhakasitarelay_room_3Tex_005EE0; + +#define dhakasitarelay_room_3Tex_005AE0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_005AE0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3Tex_005AE0[] = dhakasitarelay_room_3Tex_005AE0; + +#define dhakasitarelay_room_3Tex_007CE0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_007CE0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3Tex_007CE0[] = dhakasitarelay_room_3Tex_007CE0; + +#define dhakasitarelay_room_3Tex_0078E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0078E0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3Tex_0078E0[] = dhakasitarelay_room_3Tex_0078E0; + +#define dhakasitarelay_room_3Tex_0070E0 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_3Tex_0070E0" +static const ALIGN_ASSET(2) char hakasitarelay_room_3Tex_0070E0[] = dhakasitarelay_room_3Tex_0070E0; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_4.h b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_4.h index 891b4aa46..f1ffcffb9 100644 --- a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_4.h +++ b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_4.h @@ -1,51 +1,24 @@ #pragma once -#define dhakasitarelay_room_4DL_001E60 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4DL_001E60" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_4DL_001E60[] = dhakasitarelay_room_4DL_001E60; -#else -static const char hakasitarelay_room_4DL_001E60[] __attribute__((aligned (2))) = dhakasitarelay_room_4DL_001E60; -#endif - -#define dhakasitarelay_room_4Tex_003480 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_003480" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_4Tex_003480[] = dhakasitarelay_room_4Tex_003480; -#else -static const char hakasitarelay_room_4Tex_003480[] __attribute__((aligned (2))) = dhakasitarelay_room_4Tex_003480; -#endif - -#define dhakasitarelay_room_4Tex_003080 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_003080" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_4Tex_003080[] = dhakasitarelay_room_4Tex_003080; -#else -static const char hakasitarelay_room_4Tex_003080[] __attribute__((aligned (2))) = dhakasitarelay_room_4Tex_003080; -#endif - -#define dhakasitarelay_room_4Tex_003C80 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_003C80" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_4Tex_003C80[] = dhakasitarelay_room_4Tex_003C80; -#else -static const char hakasitarelay_room_4Tex_003C80[] __attribute__((aligned (2))) = dhakasitarelay_room_4Tex_003C80; -#endif - -#define dhakasitarelay_room_4Tex_002080 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_002080" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_4Tex_002080[] = dhakasitarelay_room_4Tex_002080; -#else -static const char hakasitarelay_room_4Tex_002080[] __attribute__((aligned (2))) = dhakasitarelay_room_4Tex_002080; -#endif - -#define dhakasitarelay_room_4Tex_001E80 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_001E80" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_4Tex_001E80[] = dhakasitarelay_room_4Tex_001E80; -#else -static const char hakasitarelay_room_4Tex_001E80[] __attribute__((aligned (2))) = dhakasitarelay_room_4Tex_001E80; -#endif - -#define dhakasitarelay_room_4Tex_002880 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_002880" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_4Tex_002880[] = dhakasitarelay_room_4Tex_002880; -#else -static const char hakasitarelay_room_4Tex_002880[] __attribute__((aligned (2))) = dhakasitarelay_room_4Tex_002880; -#endif - +#include "align_asset_macro.h" + +#define dhakasitarelay_room_4DL_001E60 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4DL_001E60" +static const ALIGN_ASSET(2) char hakasitarelay_room_4DL_001E60[] = dhakasitarelay_room_4DL_001E60; + +#define dhakasitarelay_room_4Tex_003480 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_003480" +static const ALIGN_ASSET(2) char hakasitarelay_room_4Tex_003480[] = dhakasitarelay_room_4Tex_003480; + +#define dhakasitarelay_room_4Tex_003080 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_003080" +static const ALIGN_ASSET(2) char hakasitarelay_room_4Tex_003080[] = dhakasitarelay_room_4Tex_003080; + +#define dhakasitarelay_room_4Tex_003C80 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_003C80" +static const ALIGN_ASSET(2) char hakasitarelay_room_4Tex_003C80[] = dhakasitarelay_room_4Tex_003C80; + +#define dhakasitarelay_room_4Tex_002080 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_002080" +static const ALIGN_ASSET(2) char hakasitarelay_room_4Tex_002080[] = dhakasitarelay_room_4Tex_002080; + +#define dhakasitarelay_room_4Tex_001E80 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_001E80" +static const ALIGN_ASSET(2) char hakasitarelay_room_4Tex_001E80[] = dhakasitarelay_room_4Tex_001E80; + +#define dhakasitarelay_room_4Tex_002880 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_4Tex_002880" +static const ALIGN_ASSET(2) char hakasitarelay_room_4Tex_002880[] = dhakasitarelay_room_4Tex_002880; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_5.h b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_5.h index 54599b776..d5b9d4693 100644 --- a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_5.h +++ b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_5.h @@ -1,51 +1,24 @@ #pragma once -#define dhakasitarelay_room_5DL_001C08 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5DL_001C08" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_5DL_001C08[] = dhakasitarelay_room_5DL_001C08; -#else -static const char hakasitarelay_room_5DL_001C08[] __attribute__((aligned (2))) = dhakasitarelay_room_5DL_001C08; -#endif - -#define dhakasitarelay_room_5Tex_003C48 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_003C48" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_5Tex_003C48[] = dhakasitarelay_room_5Tex_003C48; -#else -static const char hakasitarelay_room_5Tex_003C48[] __attribute__((aligned (2))) = dhakasitarelay_room_5Tex_003C48; -#endif - -#define dhakasitarelay_room_5Tex_002448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_002448" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_5Tex_002448[] = dhakasitarelay_room_5Tex_002448; -#else -static const char hakasitarelay_room_5Tex_002448[] __attribute__((aligned (2))) = dhakasitarelay_room_5Tex_002448; -#endif - -#define dhakasitarelay_room_5TLUT_001C28 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5TLUT_001C28" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_5TLUT_001C28[] = dhakasitarelay_room_5TLUT_001C28; -#else -static const char hakasitarelay_room_5TLUT_001C28[] __attribute__((aligned (2))) = dhakasitarelay_room_5TLUT_001C28; -#endif - -#define dhakasitarelay_room_5Tex_001C48 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_001C48" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_5Tex_001C48[] = dhakasitarelay_room_5Tex_001C48; -#else -static const char hakasitarelay_room_5Tex_001C48[] __attribute__((aligned (2))) = dhakasitarelay_room_5Tex_001C48; -#endif - -#define dhakasitarelay_room_5Tex_003448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_003448" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_5Tex_003448[] = dhakasitarelay_room_5Tex_003448; -#else -static const char hakasitarelay_room_5Tex_003448[] __attribute__((aligned (2))) = dhakasitarelay_room_5Tex_003448; -#endif - -#define dhakasitarelay_room_5Tex_002C48 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_002C48" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_5Tex_002C48[] = dhakasitarelay_room_5Tex_002C48; -#else -static const char hakasitarelay_room_5Tex_002C48[] __attribute__((aligned (2))) = dhakasitarelay_room_5Tex_002C48; -#endif - +#include "align_asset_macro.h" + +#define dhakasitarelay_room_5DL_001C08 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5DL_001C08" +static const ALIGN_ASSET(2) char hakasitarelay_room_5DL_001C08[] = dhakasitarelay_room_5DL_001C08; + +#define dhakasitarelay_room_5Tex_003C48 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_003C48" +static const ALIGN_ASSET(2) char hakasitarelay_room_5Tex_003C48[] = dhakasitarelay_room_5Tex_003C48; + +#define dhakasitarelay_room_5Tex_002448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_002448" +static const ALIGN_ASSET(2) char hakasitarelay_room_5Tex_002448[] = dhakasitarelay_room_5Tex_002448; + +#define dhakasitarelay_room_5TLUT_001C28 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5TLUT_001C28" +static const ALIGN_ASSET(2) char hakasitarelay_room_5TLUT_001C28[] = dhakasitarelay_room_5TLUT_001C28; + +#define dhakasitarelay_room_5Tex_001C48 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_001C48" +static const ALIGN_ASSET(2) char hakasitarelay_room_5Tex_001C48[] = dhakasitarelay_room_5Tex_001C48; + +#define dhakasitarelay_room_5Tex_003448 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_003448" +static const ALIGN_ASSET(2) char hakasitarelay_room_5Tex_003448[] = dhakasitarelay_room_5Tex_003448; + +#define dhakasitarelay_room_5Tex_002C48 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_5Tex_002C48" +static const ALIGN_ASSET(2) char hakasitarelay_room_5Tex_002C48[] = dhakasitarelay_room_5Tex_002C48; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_6.h b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_6.h index b30447f06..6c12089d4 100644 --- a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_6.h +++ b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_room_6.h @@ -1,79 +1,36 @@ #pragma once -#define dhakasitarelay_room_6DL_004168 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6DL_004168" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6DL_004168[] = dhakasitarelay_room_6DL_004168; -#else -static const char hakasitarelay_room_6DL_004168[] __attribute__((aligned (2))) = dhakasitarelay_room_6DL_004168; -#endif - -#define dhakasitarelay_room_6Tex_006AA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_006AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_006AA8[] = dhakasitarelay_room_6Tex_006AA8; -#else -static const char hakasitarelay_room_6Tex_006AA8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_006AA8; -#endif - -#define dhakasitarelay_room_6Tex_0042A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_0042A8[] = dhakasitarelay_room_6Tex_0042A8; -#else -static const char hakasitarelay_room_6Tex_0042A8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_0042A8; -#endif - -#define dhakasitarelay_room_6Tex_005EA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_005EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_005EA8[] = dhakasitarelay_room_6Tex_005EA8; -#else -static const char hakasitarelay_room_6Tex_005EA8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_005EA8; -#endif - -#define dhakasitarelay_room_6Tex_0056A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0056A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_0056A8[] = dhakasitarelay_room_6Tex_0056A8; -#else -static const char hakasitarelay_room_6Tex_0056A8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_0056A8; -#endif - -#define dhakasitarelay_room_6Tex_0066A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0066A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_0066A8[] = dhakasitarelay_room_6Tex_0066A8; -#else -static const char hakasitarelay_room_6Tex_0066A8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_0066A8; -#endif - -#define dhakasitarelay_room_6Tex_0072A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0072A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_0072A8[] = dhakasitarelay_room_6Tex_0072A8; -#else -static const char hakasitarelay_room_6Tex_0072A8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_0072A8; -#endif - -#define dhakasitarelay_room_6Tex_004EA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_004EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_004EA8[] = dhakasitarelay_room_6Tex_004EA8; -#else -static const char hakasitarelay_room_6Tex_004EA8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_004EA8; -#endif - -#define dhakasitarelay_room_6TLUT_004188 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6TLUT_004188" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6TLUT_004188[] = dhakasitarelay_room_6TLUT_004188; -#else -static const char hakasitarelay_room_6TLUT_004188[] __attribute__((aligned (2))) = dhakasitarelay_room_6TLUT_004188; -#endif - -#define dhakasitarelay_room_6Tex_0041A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0041A8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_0041A8[] = dhakasitarelay_room_6Tex_0041A8; -#else -static const char hakasitarelay_room_6Tex_0041A8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_0041A8; -#endif - -#define dhakasitarelay_room_6Tex_004AA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_004AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_room_6Tex_004AA8[] = dhakasitarelay_room_6Tex_004AA8; -#else -static const char hakasitarelay_room_6Tex_004AA8[] __attribute__((aligned (2))) = dhakasitarelay_room_6Tex_004AA8; -#endif - +#include "align_asset_macro.h" + +#define dhakasitarelay_room_6DL_004168 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6DL_004168" +static const ALIGN_ASSET(2) char hakasitarelay_room_6DL_004168[] = dhakasitarelay_room_6DL_004168; + +#define dhakasitarelay_room_6Tex_006AA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_006AA8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_006AA8[] = dhakasitarelay_room_6Tex_006AA8; + +#define dhakasitarelay_room_6Tex_0042A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0042A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_0042A8[] = dhakasitarelay_room_6Tex_0042A8; + +#define dhakasitarelay_room_6Tex_005EA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_005EA8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_005EA8[] = dhakasitarelay_room_6Tex_005EA8; + +#define dhakasitarelay_room_6Tex_0056A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0056A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_0056A8[] = dhakasitarelay_room_6Tex_0056A8; + +#define dhakasitarelay_room_6Tex_0066A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0066A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_0066A8[] = dhakasitarelay_room_6Tex_0066A8; + +#define dhakasitarelay_room_6Tex_0072A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0072A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_0072A8[] = dhakasitarelay_room_6Tex_0072A8; + +#define dhakasitarelay_room_6Tex_004EA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_004EA8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_004EA8[] = dhakasitarelay_room_6Tex_004EA8; + +#define dhakasitarelay_room_6TLUT_004188 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6TLUT_004188" +static const ALIGN_ASSET(2) char hakasitarelay_room_6TLUT_004188[] = dhakasitarelay_room_6TLUT_004188; + +#define dhakasitarelay_room_6Tex_0041A8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_0041A8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_0041A8[] = dhakasitarelay_room_6Tex_0041A8; + +#define dhakasitarelay_room_6Tex_004AA8 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_room_6Tex_004AA8" +static const ALIGN_ASSET(2) char hakasitarelay_room_6Tex_004AA8[] = dhakasitarelay_room_6Tex_004AA8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_scene.h b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_scene.h index d69a0f63d..e61badaa0 100644 --- a/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_scene.h +++ b/soh/assets/scenes/indoors/hakasitarelay/hakasitarelay_scene.h @@ -1,37 +1,18 @@ #pragma once -#define dhakasitarelay_sceneCollisionHeader_00C04C "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_sceneCollisionHeader_00C04C" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_sceneCollisionHeader_00C04C[] = dhakasitarelay_sceneCollisionHeader_00C04C; -#else -static const char hakasitarelay_sceneCollisionHeader_00C04C[] __attribute__((aligned (2))) = dhakasitarelay_sceneCollisionHeader_00C04C; -#endif - -#define dgSongOfStormsCs "__OTR__scenes/nonmq/hakasitarelay_scene/gSongOfStormsCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfStormsCs[] = dgSongOfStormsCs; -#else -static const char gSongOfStormsCs[] __attribute__((aligned (2))) = dgSongOfStormsCs; -#endif - -#define dhakasitarelay_sceneTex_00D880 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_sceneTex_00D880" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_sceneTex_00D880[] = dhakasitarelay_sceneTex_00D880; -#else -static const char hakasitarelay_sceneTex_00D880[] __attribute__((aligned (2))) = dhakasitarelay_sceneTex_00D880; -#endif - -#define dhakasitarelay_sceneTex_00C080 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_sceneTex_00C080" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_sceneTex_00C080[] = dhakasitarelay_sceneTex_00C080; -#else -static const char hakasitarelay_sceneTex_00C080[] __attribute__((aligned (2))) = dhakasitarelay_sceneTex_00C080; -#endif - -#define dhakasitarelay_sceneTex_00D080 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_sceneTex_00D080" -#ifdef _WIN32 -static const __declspec(align(2)) char hakasitarelay_sceneTex_00D080[] = dhakasitarelay_sceneTex_00D080; -#else -static const char hakasitarelay_sceneTex_00D080[] __attribute__((aligned (2))) = dhakasitarelay_sceneTex_00D080; -#endif - +#include "align_asset_macro.h" + +#define dhakasitarelay_sceneCollisionHeader_00C04C "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_sceneCollisionHeader_00C04C" +static const ALIGN_ASSET(2) char hakasitarelay_sceneCollisionHeader_00C04C[] = dhakasitarelay_sceneCollisionHeader_00C04C; + +#define dgSongOfStormsCs "__OTR__scenes/nonmq/hakasitarelay_scene/gSongOfStormsCs" +static const ALIGN_ASSET(2) char gSongOfStormsCs[] = dgSongOfStormsCs; + +#define dhakasitarelay_sceneTex_00D880 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_sceneTex_00D880" +static const ALIGN_ASSET(2) char hakasitarelay_sceneTex_00D880[] = dhakasitarelay_sceneTex_00D880; + +#define dhakasitarelay_sceneTex_00C080 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_sceneTex_00C080" +static const ALIGN_ASSET(2) char hakasitarelay_sceneTex_00C080[] = dhakasitarelay_sceneTex_00C080; + +#define dhakasitarelay_sceneTex_00D080 "__OTR__scenes/nonmq/hakasitarelay_scene/hakasitarelay_sceneTex_00D080" +static const ALIGN_ASSET(2) char hakasitarelay_sceneTex_00D080[] = dhakasitarelay_sceneTex_00D080; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hut/hut_room_0.h b/soh/assets/scenes/indoors/hut/hut_room_0.h index 660aac1e4..570c10d26 100644 --- a/soh/assets/scenes/indoors/hut/hut_room_0.h +++ b/soh/assets/scenes/indoors/hut/hut_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dhut_room_0DL_003D58 "__OTR__scenes/nonmq/hut_scene/hut_room_0DL_003D58" -#ifdef _WIN32 -static const __declspec(align(2)) char hut_room_0DL_003D58[] = dhut_room_0DL_003D58; -#else -static const char hut_room_0DL_003D58[] __attribute__((aligned (2))) = dhut_room_0DL_003D58; -#endif - +#include "align_asset_macro.h" + +#define dhut_room_0DL_003D58 "__OTR__scenes/nonmq/hut_scene/hut_room_0DL_003D58" +static const ALIGN_ASSET(2) char hut_room_0DL_003D58[] = dhut_room_0DL_003D58; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hut/hut_scene.h b/soh/assets/scenes/indoors/hut/hut_scene.h index f9d734efd..11e9cf5bc 100644 --- a/soh/assets/scenes/indoors/hut/hut_scene.h +++ b/soh/assets/scenes/indoors/hut/hut_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dhut_sceneCollisionHeader_0004DC "__OTR__scenes/nonmq/hut_scene/hut_sceneCollisionHeader_0004DC" -#ifdef _WIN32 -static const __declspec(align(2)) char hut_sceneCollisionHeader_0004DC[] = dhut_sceneCollisionHeader_0004DC; -#else -static const char hut_sceneCollisionHeader_0004DC[] __attribute__((aligned (2))) = dhut_sceneCollisionHeader_0004DC; -#endif - +#include "align_asset_macro.h" + +#define dhut_sceneCollisionHeader_0004DC "__OTR__scenes/nonmq/hut_scene/hut_sceneCollisionHeader_0004DC" +static const ALIGN_ASSET(2) char hut_sceneCollisionHeader_0004DC[] = dhut_sceneCollisionHeader_0004DC; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hylia_labo/hylia_labo_room_0.h b/soh/assets/scenes/indoors/hylia_labo/hylia_labo_room_0.h index 7b033b321..918ea4f80 100644 --- a/soh/assets/scenes/indoors/hylia_labo/hylia_labo_room_0.h +++ b/soh/assets/scenes/indoors/hylia_labo/hylia_labo_room_0.h @@ -1,149 +1,66 @@ #pragma once -#define dhylia_labo_room_0DL_007460 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_007460[] = dhylia_labo_room_0DL_007460; -#else -static const char hylia_labo_room_0DL_007460[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_007460; -#endif - -#define dhylia_labo_room_0DL_002318 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_002318" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_002318[] = dhylia_labo_room_0DL_002318; -#else -static const char hylia_labo_room_0DL_002318[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_002318; -#endif - -#define dhylia_labo_room_0DL_003500 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_003500" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_003500[] = dhylia_labo_room_0DL_003500; -#else -static const char hylia_labo_room_0DL_003500[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_003500; -#endif - -#define dhylia_labo_room_0DL_001E10 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_001E10" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_001E10[] = dhylia_labo_room_0DL_001E10; -#else -static const char hylia_labo_room_0DL_001E10[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_001E10; -#endif - -#define dhylia_labo_room_0DL_006CE0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_006CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_006CE0[] = dhylia_labo_room_0DL_006CE0; -#else -static const char hylia_labo_room_0DL_006CE0[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_006CE0; -#endif - -#define dhylia_labo_room_0DL_002A30 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_002A30" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_002A30[] = dhylia_labo_room_0DL_002A30; -#else -static const char hylia_labo_room_0DL_002A30[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_002A30; -#endif - -#define dhylia_labo_room_0DL_001500 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_001500" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_001500[] = dhylia_labo_room_0DL_001500; -#else -static const char hylia_labo_room_0DL_001500[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_001500; -#endif - -#define dhylia_labo_room_0DL_000AC0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_000AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_000AC0[] = dhylia_labo_room_0DL_000AC0; -#else -static const char hylia_labo_room_0DL_000AC0[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_000AC0; -#endif - -#define dhylia_labo_room_0DL_005120 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_005120" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_005120[] = dhylia_labo_room_0DL_005120; -#else -static const char hylia_labo_room_0DL_005120[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_005120; -#endif - -#define dhylia_labo_room_0DL_001318 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_001318" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_001318[] = dhylia_labo_room_0DL_001318; -#else -static const char hylia_labo_room_0DL_001318[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_001318; -#endif - -#define dhylia_labo_room_0DL_005738 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_005738" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_005738[] = dhylia_labo_room_0DL_005738; -#else -static const char hylia_labo_room_0DL_005738[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_005738; -#endif - -#define dhylia_labo_room_0DL_003C80 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_003C80" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_003C80[] = dhylia_labo_room_0DL_003C80; -#else -static const char hylia_labo_room_0DL_003C80[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_003C80; -#endif - -#define dhylia_labo_room_0DL_001AB8 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_001AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_001AB8[] = dhylia_labo_room_0DL_001AB8; -#else -static const char hylia_labo_room_0DL_001AB8[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_001AB8; -#endif - -#define dhylia_labo_room_0DL_0002C0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_0002C0" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_0002C0[] = dhylia_labo_room_0DL_0002C0; -#else -static const char hylia_labo_room_0DL_0002C0[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_0002C0; -#endif - -#define dhylia_labo_room_0DL_0039F0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_0039F0" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_0039F0[] = dhylia_labo_room_0DL_0039F0; -#else -static const char hylia_labo_room_0DL_0039F0[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_0039F0; -#endif - -#define dhylia_labo_room_0DL_005F20 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_005F20" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_005F20[] = dhylia_labo_room_0DL_005F20; -#else -static const char hylia_labo_room_0DL_005F20[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_005F20; -#endif - -#define dhylia_labo_room_0DL_004610 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_004610" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_004610[] = dhylia_labo_room_0DL_004610; -#else -static const char hylia_labo_room_0DL_004610[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_004610; -#endif - -#define dhylia_labo_room_0DL_0048B0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_0048B0[] = dhylia_labo_room_0DL_0048B0; -#else -static const char hylia_labo_room_0DL_0048B0[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_0048B0; -#endif - -#define dhylia_labo_room_0DL_004A80 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_004A80" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_004A80[] = dhylia_labo_room_0DL_004A80; -#else -static const char hylia_labo_room_0DL_004A80[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_004A80; -#endif - -#define dhylia_labo_room_0DL_005A38 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_005A38" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_005A38[] = dhylia_labo_room_0DL_005A38; -#else -static const char hylia_labo_room_0DL_005A38[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_005A38; -#endif - -#define dhylia_labo_room_0DL_0040E0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_0040E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_room_0DL_0040E0[] = dhylia_labo_room_0DL_0040E0; -#else -static const char hylia_labo_room_0DL_0040E0[] __attribute__((aligned (2))) = dhylia_labo_room_0DL_0040E0; -#endif - +#include "align_asset_macro.h" + +#define dhylia_labo_room_0DL_007460 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_007460" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_007460[] = dhylia_labo_room_0DL_007460; + +#define dhylia_labo_room_0DL_002318 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_002318" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_002318[] = dhylia_labo_room_0DL_002318; + +#define dhylia_labo_room_0DL_003500 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_003500" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_003500[] = dhylia_labo_room_0DL_003500; + +#define dhylia_labo_room_0DL_001E10 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_001E10" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_001E10[] = dhylia_labo_room_0DL_001E10; + +#define dhylia_labo_room_0DL_006CE0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_006CE0" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_006CE0[] = dhylia_labo_room_0DL_006CE0; + +#define dhylia_labo_room_0DL_002A30 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_002A30" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_002A30[] = dhylia_labo_room_0DL_002A30; + +#define dhylia_labo_room_0DL_001500 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_001500" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_001500[] = dhylia_labo_room_0DL_001500; + +#define dhylia_labo_room_0DL_000AC0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_000AC0" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_000AC0[] = dhylia_labo_room_0DL_000AC0; + +#define dhylia_labo_room_0DL_005120 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_005120" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_005120[] = dhylia_labo_room_0DL_005120; + +#define dhylia_labo_room_0DL_001318 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_001318" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_001318[] = dhylia_labo_room_0DL_001318; + +#define dhylia_labo_room_0DL_005738 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_005738" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_005738[] = dhylia_labo_room_0DL_005738; + +#define dhylia_labo_room_0DL_003C80 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_003C80" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_003C80[] = dhylia_labo_room_0DL_003C80; + +#define dhylia_labo_room_0DL_001AB8 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_001AB8" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_001AB8[] = dhylia_labo_room_0DL_001AB8; + +#define dhylia_labo_room_0DL_0002C0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_0002C0" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_0002C0[] = dhylia_labo_room_0DL_0002C0; + +#define dhylia_labo_room_0DL_0039F0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_0039F0" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_0039F0[] = dhylia_labo_room_0DL_0039F0; + +#define dhylia_labo_room_0DL_005F20 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_005F20" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_005F20[] = dhylia_labo_room_0DL_005F20; + +#define dhylia_labo_room_0DL_004610 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_004610" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_004610[] = dhylia_labo_room_0DL_004610; + +#define dhylia_labo_room_0DL_0048B0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_0048B0" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_0048B0[] = dhylia_labo_room_0DL_0048B0; + +#define dhylia_labo_room_0DL_004A80 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_004A80" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_004A80[] = dhylia_labo_room_0DL_004A80; + +#define dhylia_labo_room_0DL_005A38 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_005A38" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_005A38[] = dhylia_labo_room_0DL_005A38; + +#define dhylia_labo_room_0DL_0040E0 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_room_0DL_0040E0" +static const ALIGN_ASSET(2) char hylia_labo_room_0DL_0040E0[] = dhylia_labo_room_0DL_0040E0; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/hylia_labo/hylia_labo_scene.h b/soh/assets/scenes/indoors/hylia_labo/hylia_labo_scene.h index 73e384dba..15ce40a4a 100644 --- a/soh/assets/scenes/indoors/hylia_labo/hylia_labo_scene.h +++ b/soh/assets/scenes/indoors/hylia_labo/hylia_labo_scene.h @@ -1,226 +1,99 @@ #pragma once -#define dhylia_labo_sceneCollisionHeader_00105C "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneCollisionHeader_00105C" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneCollisionHeader_00105C[] = dhylia_labo_sceneCollisionHeader_00105C; -#else -static const char hylia_labo_sceneCollisionHeader_00105C[] __attribute__((aligned (2))) = dhylia_labo_sceneCollisionHeader_00105C; -#endif - -#define dhylia_labo_sceneTex_001090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_001090" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_001090[] = dhylia_labo_sceneTex_001090; -#else -static const char hylia_labo_sceneTex_001090[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_001090; -#endif - -#define dhylia_labo_sceneTex_00F890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00F890" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00F890[] = dhylia_labo_sceneTex_00F890; -#else -static const char hylia_labo_sceneTex_00F890[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00F890; -#endif - -#define dhylia_labo_sceneTex_00B090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00B090" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00B090[] = dhylia_labo_sceneTex_00B090; -#else -static const char hylia_labo_sceneTex_00B090[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00B090; -#endif - -#define dhylia_labo_sceneTex_006990 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_006990" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_006990[] = dhylia_labo_sceneTex_006990; -#else -static const char hylia_labo_sceneTex_006990[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_006990; -#endif - -#define dhylia_labo_sceneTex_00C890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00C890" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00C890[] = dhylia_labo_sceneTex_00C890; -#else -static const char hylia_labo_sceneTex_00C890[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00C890; -#endif - -#define dhylia_labo_sceneTex_007D90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_007D90" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_007D90[] = dhylia_labo_sceneTex_007D90; -#else -static const char hylia_labo_sceneTex_007D90[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_007D90; -#endif - -#define dhylia_labo_sceneTex_005490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_005490" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_005490[] = dhylia_labo_sceneTex_005490; -#else -static const char hylia_labo_sceneTex_005490[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_005490; -#endif - -#define dhylia_labo_sceneTex_003490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_003490" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_003490[] = dhylia_labo_sceneTex_003490; -#else -static const char hylia_labo_sceneTex_003490[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_003490; -#endif - -#define dhylia_labo_sceneTex_00C090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00C090" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00C090[] = dhylia_labo_sceneTex_00C090; -#else -static const char hylia_labo_sceneTex_00C090[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00C090; -#endif - -#define dhylia_labo_sceneTex_006190 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_006190" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_006190[] = dhylia_labo_sceneTex_006190; -#else -static const char hylia_labo_sceneTex_006190[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_006190; -#endif - -#define dhylia_labo_sceneTex_00E890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00E890" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00E890[] = dhylia_labo_sceneTex_00E890; -#else -static const char hylia_labo_sceneTex_00E890[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00E890; -#endif - -#define dhylia_labo_sceneTex_010490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_010490" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_010490[] = dhylia_labo_sceneTex_010490; -#else -static const char hylia_labo_sceneTex_010490[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_010490; -#endif - -#define dhylia_labo_sceneTex_008790 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_008790" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_008790[] = dhylia_labo_sceneTex_008790; -#else -static const char hylia_labo_sceneTex_008790[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_008790; -#endif - -#define dhylia_labo_sceneTex_010890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_010890" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_010890[] = dhylia_labo_sceneTex_010890; -#else -static const char hylia_labo_sceneTex_010890[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_010890; -#endif - -#define dhylia_labo_sceneTex_006090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_006090" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_006090[] = dhylia_labo_sceneTex_006090; -#else -static const char hylia_labo_sceneTex_006090[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_006090; -#endif - -#define dhylia_labo_sceneTex_00D890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00D890" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00D890[] = dhylia_labo_sceneTex_00D890; -#else -static const char hylia_labo_sceneTex_00D890[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00D890; -#endif - -#define dhylia_labo_sceneTex_009790 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_009790" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_009790[] = dhylia_labo_sceneTex_009790; -#else -static const char hylia_labo_sceneTex_009790[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_009790; -#endif - -#define dhylia_labo_sceneTex_00D090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00D090" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00D090[] = dhylia_labo_sceneTex_00D090; -#else -static const char hylia_labo_sceneTex_00D090[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00D090; -#endif - -#define dhylia_labo_sceneTex_003C90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_003C90" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_003C90[] = dhylia_labo_sceneTex_003C90; -#else -static const char hylia_labo_sceneTex_003C90[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_003C90; -#endif - -#define dhylia_labo_sceneTex_002490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_002490" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_002490[] = dhylia_labo_sceneTex_002490; -#else -static const char hylia_labo_sceneTex_002490[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_002490; -#endif - -#define dhylia_labo_sceneTex_008590 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_008590" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_008590[] = dhylia_labo_sceneTex_008590; -#else -static const char hylia_labo_sceneTex_008590[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_008590; -#endif - -#define dhylia_labo_sceneTex_006D90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_006D90" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_006D90[] = dhylia_labo_sceneTex_006D90; -#else -static const char hylia_labo_sceneTex_006D90[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_006D90; -#endif - -#define dhylia_labo_sceneTex_009C90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_009C90" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_009C90[] = dhylia_labo_sceneTex_009C90; -#else -static const char hylia_labo_sceneTex_009C90[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_009C90; -#endif - -#define dhylia_labo_sceneTex_005C90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_005C90" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_005C90[] = dhylia_labo_sceneTex_005C90; -#else -static const char hylia_labo_sceneTex_005C90[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_005C90; -#endif - -#define dhylia_labo_sceneTex_00A090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00A090" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00A090[] = dhylia_labo_sceneTex_00A090; -#else -static const char hylia_labo_sceneTex_00A090[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00A090; -#endif - -#define dhylia_labo_sceneTex_009A90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_009A90" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_009A90[] = dhylia_labo_sceneTex_009A90; -#else -static const char hylia_labo_sceneTex_009A90[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_009A90; -#endif - -#define dhylia_labo_sceneTex_009990 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_009990" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_009990[] = dhylia_labo_sceneTex_009990; -#else -static const char hylia_labo_sceneTex_009990[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_009990; -#endif - -#define dhylia_labo_sceneTex_001490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_001490" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_001490[] = dhylia_labo_sceneTex_001490; -#else -static const char hylia_labo_sceneTex_001490[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_001490; -#endif - -#define dhylia_labo_sceneTex_004C90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_004C90" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_004C90[] = dhylia_labo_sceneTex_004C90; -#else -static const char hylia_labo_sceneTex_004C90[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_004C90; -#endif - -#define dhylia_labo_sceneTex_010090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_010090" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_010090[] = dhylia_labo_sceneTex_010090; -#else -static const char hylia_labo_sceneTex_010090[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_010090; -#endif - -#define dhylia_labo_sceneTex_00E090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00E090" -#ifdef _WIN32 -static const __declspec(align(2)) char hylia_labo_sceneTex_00E090[] = dhylia_labo_sceneTex_00E090; -#else -static const char hylia_labo_sceneTex_00E090[] __attribute__((aligned (2))) = dhylia_labo_sceneTex_00E090; -#endif - +#include "align_asset_macro.h" + +#define dhylia_labo_sceneCollisionHeader_00105C "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneCollisionHeader_00105C" +static const ALIGN_ASSET(2) char hylia_labo_sceneCollisionHeader_00105C[] = dhylia_labo_sceneCollisionHeader_00105C; + +#define dhylia_labo_sceneTex_001090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_001090" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_001090[] = dhylia_labo_sceneTex_001090; + +#define dhylia_labo_sceneTex_00F890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00F890" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00F890[] = dhylia_labo_sceneTex_00F890; + +#define dhylia_labo_sceneTex_00B090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00B090" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00B090[] = dhylia_labo_sceneTex_00B090; + +#define dhylia_labo_sceneTex_006990 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_006990" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_006990[] = dhylia_labo_sceneTex_006990; + +#define dhylia_labo_sceneTex_00C890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00C890" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00C890[] = dhylia_labo_sceneTex_00C890; + +#define dhylia_labo_sceneTex_007D90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_007D90" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_007D90[] = dhylia_labo_sceneTex_007D90; + +#define dhylia_labo_sceneTex_005490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_005490" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_005490[] = dhylia_labo_sceneTex_005490; + +#define dhylia_labo_sceneTex_003490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_003490" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_003490[] = dhylia_labo_sceneTex_003490; + +#define dhylia_labo_sceneTex_00C090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00C090" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00C090[] = dhylia_labo_sceneTex_00C090; + +#define dhylia_labo_sceneTex_006190 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_006190" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_006190[] = dhylia_labo_sceneTex_006190; + +#define dhylia_labo_sceneTex_00E890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00E890" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00E890[] = dhylia_labo_sceneTex_00E890; + +#define dhylia_labo_sceneTex_010490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_010490" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_010490[] = dhylia_labo_sceneTex_010490; + +#define dhylia_labo_sceneTex_008790 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_008790" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_008790[] = dhylia_labo_sceneTex_008790; + +#define dhylia_labo_sceneTex_010890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_010890" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_010890[] = dhylia_labo_sceneTex_010890; + +#define dhylia_labo_sceneTex_006090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_006090" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_006090[] = dhylia_labo_sceneTex_006090; + +#define dhylia_labo_sceneTex_00D890 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00D890" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00D890[] = dhylia_labo_sceneTex_00D890; + +#define dhylia_labo_sceneTex_009790 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_009790" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_009790[] = dhylia_labo_sceneTex_009790; + +#define dhylia_labo_sceneTex_00D090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00D090" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00D090[] = dhylia_labo_sceneTex_00D090; + +#define dhylia_labo_sceneTex_003C90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_003C90" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_003C90[] = dhylia_labo_sceneTex_003C90; + +#define dhylia_labo_sceneTex_002490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_002490" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_002490[] = dhylia_labo_sceneTex_002490; + +#define dhylia_labo_sceneTex_008590 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_008590" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_008590[] = dhylia_labo_sceneTex_008590; + +#define dhylia_labo_sceneTex_006D90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_006D90" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_006D90[] = dhylia_labo_sceneTex_006D90; + +#define dhylia_labo_sceneTex_009C90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_009C90" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_009C90[] = dhylia_labo_sceneTex_009C90; + +#define dhylia_labo_sceneTex_005C90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_005C90" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_005C90[] = dhylia_labo_sceneTex_005C90; + +#define dhylia_labo_sceneTex_00A090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00A090" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00A090[] = dhylia_labo_sceneTex_00A090; + +#define dhylia_labo_sceneTex_009A90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_009A90" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_009A90[] = dhylia_labo_sceneTex_009A90; + +#define dhylia_labo_sceneTex_009990 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_009990" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_009990[] = dhylia_labo_sceneTex_009990; + +#define dhylia_labo_sceneTex_001490 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_001490" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_001490[] = dhylia_labo_sceneTex_001490; + +#define dhylia_labo_sceneTex_004C90 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_004C90" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_004C90[] = dhylia_labo_sceneTex_004C90; + +#define dhylia_labo_sceneTex_010090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_010090" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_010090[] = dhylia_labo_sceneTex_010090; + +#define dhylia_labo_sceneTex_00E090 "__OTR__scenes/nonmq/hylia_labo_scene/hylia_labo_sceneTex_00E090" +static const ALIGN_ASSET(2) char hylia_labo_sceneTex_00E090[] = dhylia_labo_sceneTex_00E090; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/impa/impa_room_0.h b/soh/assets/scenes/indoors/impa/impa_room_0.h index 63eab3a8d..3c6f69656 100644 --- a/soh/assets/scenes/indoors/impa/impa_room_0.h +++ b/soh/assets/scenes/indoors/impa/impa_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dimpa_room_0DL_001758 "__OTR__scenes/nonmq/impa_scene/impa_room_0DL_001758" -#ifdef _WIN32 -static const __declspec(align(2)) char impa_room_0DL_001758[] = dimpa_room_0DL_001758; -#else -static const char impa_room_0DL_001758[] __attribute__((aligned (2))) = dimpa_room_0DL_001758; -#endif - +#include "align_asset_macro.h" + +#define dimpa_room_0DL_001758 "__OTR__scenes/nonmq/impa_scene/impa_room_0DL_001758" +static const ALIGN_ASSET(2) char impa_room_0DL_001758[] = dimpa_room_0DL_001758; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/impa/impa_scene.h b/soh/assets/scenes/indoors/impa/impa_scene.h index 0c969c31c..77ccd8952 100644 --- a/soh/assets/scenes/indoors/impa/impa_scene.h +++ b/soh/assets/scenes/indoors/impa/impa_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dimpa_sceneCollisionHeader_000CE0 "__OTR__scenes/nonmq/impa_scene/impa_sceneCollisionHeader_000CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char impa_sceneCollisionHeader_000CE0[] = dimpa_sceneCollisionHeader_000CE0; -#else -static const char impa_sceneCollisionHeader_000CE0[] __attribute__((aligned (2))) = dimpa_sceneCollisionHeader_000CE0; -#endif - +#include "align_asset_macro.h" + +#define dimpa_sceneCollisionHeader_000CE0 "__OTR__scenes/nonmq/impa_scene/impa_sceneCollisionHeader_000CE0" +static const ALIGN_ASSET(2) char impa_sceneCollisionHeader_000CE0[] = dimpa_sceneCollisionHeader_000CE0; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kakariko/kakariko_room_0.h b/soh/assets/scenes/indoors/kakariko/kakariko_room_0.h index 9c5fd887e..cf8fa3e64 100644 --- a/soh/assets/scenes/indoors/kakariko/kakariko_room_0.h +++ b/soh/assets/scenes/indoors/kakariko/kakariko_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dkakariko_room_0DL_005760 "__OTR__scenes/nonmq/kakariko_scene/kakariko_room_0DL_005760" -#ifdef _WIN32 -static const __declspec(align(2)) char kakariko_room_0DL_005760[] = dkakariko_room_0DL_005760; -#else -static const char kakariko_room_0DL_005760[] __attribute__((aligned (2))) = dkakariko_room_0DL_005760; -#endif - +#include "align_asset_macro.h" + +#define dkakariko_room_0DL_005760 "__OTR__scenes/nonmq/kakariko_scene/kakariko_room_0DL_005760" +static const ALIGN_ASSET(2) char kakariko_room_0DL_005760[] = dkakariko_room_0DL_005760; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kakariko/kakariko_scene.h b/soh/assets/scenes/indoors/kakariko/kakariko_scene.h index c770a67b9..c747212b5 100644 --- a/soh/assets/scenes/indoors/kakariko/kakariko_scene.h +++ b/soh/assets/scenes/indoors/kakariko/kakariko_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dkakariko_sceneCollisionHeader_000E68 "__OTR__scenes/nonmq/kakariko_scene/kakariko_sceneCollisionHeader_000E68" -#ifdef _WIN32 -static const __declspec(align(2)) char kakariko_sceneCollisionHeader_000E68[] = dkakariko_sceneCollisionHeader_000E68; -#else -static const char kakariko_sceneCollisionHeader_000E68[] __attribute__((aligned (2))) = dkakariko_sceneCollisionHeader_000E68; -#endif - +#include "align_asset_macro.h" + +#define dkakariko_sceneCollisionHeader_000E68 "__OTR__scenes/nonmq/kakariko_scene/kakariko_sceneCollisionHeader_000E68" +static const ALIGN_ASSET(2) char kakariko_sceneCollisionHeader_000E68[] = dkakariko_sceneCollisionHeader_000E68; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kenjyanoma/kenjyanoma_room_0.h b/soh/assets/scenes/indoors/kenjyanoma/kenjyanoma_room_0.h index 56072ad26..0f9df6fee 100644 --- a/soh/assets/scenes/indoors/kenjyanoma/kenjyanoma_room_0.h +++ b/soh/assets/scenes/indoors/kenjyanoma/kenjyanoma_room_0.h @@ -1,191 +1,84 @@ #pragma once -#define dkenjyanoma_room_0DL_001608 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0DL_001608" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0DL_001608[] = dkenjyanoma_room_0DL_001608; -#else -static const char kenjyanoma_room_0DL_001608[] __attribute__((aligned (2))) = dkenjyanoma_room_0DL_001608; -#endif - -#define dkenjyanoma_room_0Tex_00D618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_00D618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_00D618[] = dkenjyanoma_room_0Tex_00D618; -#else -static const char kenjyanoma_room_0Tex_00D618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_00D618; -#endif - -#define dkenjyanoma_room_0Tex_00C618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_00C618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_00C618[] = dkenjyanoma_room_0Tex_00C618; -#else -static const char kenjyanoma_room_0Tex_00C618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_00C618; -#endif - -#define dkenjyanoma_room_0Tex_00B618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_00B618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_00B618[] = dkenjyanoma_room_0Tex_00B618; -#else -static const char kenjyanoma_room_0Tex_00B618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_00B618; -#endif - -#define dkenjyanoma_room_0Tex_00A618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_00A618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_00A618[] = dkenjyanoma_room_0Tex_00A618; -#else -static const char kenjyanoma_room_0Tex_00A618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_00A618; -#endif - -#define dkenjyanoma_room_0Tex_009618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_009618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_009618[] = dkenjyanoma_room_0Tex_009618; -#else -static const char kenjyanoma_room_0Tex_009618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_009618; -#endif - -#define dkenjyanoma_room_0Tex_008618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_008618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_008618[] = dkenjyanoma_room_0Tex_008618; -#else -static const char kenjyanoma_room_0Tex_008618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_008618; -#endif - -#define dkenjyanoma_room_0Tex_007618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_007618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_007618[] = dkenjyanoma_room_0Tex_007618; -#else -static const char kenjyanoma_room_0Tex_007618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_007618; -#endif - -#define dkenjyanoma_room_0Tex_006618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_006618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_006618[] = dkenjyanoma_room_0Tex_006618; -#else -static const char kenjyanoma_room_0Tex_006618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_006618; -#endif - -#define dkenjyanoma_room_0Tex_005618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_005618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_005618[] = dkenjyanoma_room_0Tex_005618; -#else -static const char kenjyanoma_room_0Tex_005618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_005618; -#endif - -#define dkenjyanoma_room_0Tex_004618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_004618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_004618[] = dkenjyanoma_room_0Tex_004618; -#else -static const char kenjyanoma_room_0Tex_004618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_004618; -#endif - -#define dkenjyanoma_room_0Tex_003618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_003618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_003618[] = dkenjyanoma_room_0Tex_003618; -#else -static const char kenjyanoma_room_0Tex_003618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_003618; -#endif - -#define dkenjyanoma_room_0Tex_002618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_002618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_002618[] = dkenjyanoma_room_0Tex_002618; -#else -static const char kenjyanoma_room_0Tex_002618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_002618; -#endif - -#define dkenjyanoma_room_0Tex_001618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_001618" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_001618[] = dkenjyanoma_room_0Tex_001618; -#else -static const char kenjyanoma_room_0Tex_001618[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_001618; -#endif - -#define dkenjyanoma_room_0DL_010CD8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0DL_010CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0DL_010CD8[] = dkenjyanoma_room_0DL_010CD8; -#else -static const char kenjyanoma_room_0DL_010CD8[] __attribute__((aligned (2))) = dkenjyanoma_room_0DL_010CD8; -#endif - -#define dkenjyanoma_room_0Tex_010CE8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_010CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_010CE8[] = dkenjyanoma_room_0Tex_010CE8; -#else -static const char kenjyanoma_room_0Tex_010CE8[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_010CE8; -#endif - -#define dkenjyanoma_room_0Tex_012D08 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_012D08" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_012D08[] = dkenjyanoma_room_0Tex_012D08; -#else -static const char kenjyanoma_room_0Tex_012D08[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_012D08; -#endif - -#define dkenjyanoma_room_0Tex_012508 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_012508" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_012508[] = dkenjyanoma_room_0Tex_012508; -#else -static const char kenjyanoma_room_0Tex_012508[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_012508; -#endif - -#define dkenjyanoma_room_0Tex_0114E8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_0114E8" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_0114E8[] = dkenjyanoma_room_0Tex_0114E8; -#else -static const char kenjyanoma_room_0Tex_0114E8[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_0114E8; -#endif - -#define dkenjyanoma_room_0Tex_011CE8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_011CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_011CE8[] = dkenjyanoma_room_0Tex_011CE8; -#else -static const char kenjyanoma_room_0Tex_011CE8[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_011CE8; -#endif - -#define dkenjyanoma_room_0Tex_011D08 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_011D08" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Tex_011D08[] = dkenjyanoma_room_0Tex_011D08; -#else -static const char kenjyanoma_room_0Tex_011D08[] __attribute__((aligned (2))) = dkenjyanoma_room_0Tex_011D08; -#endif - -#define dkenjyanoma_room_0Set_000110DL_001608 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000110DL_001608" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Set_000110DL_001608[] = dkenjyanoma_room_0Set_000110DL_001608; -#else -static const char kenjyanoma_room_0Set_000110DL_001608[] __attribute__((aligned (2))) = dkenjyanoma_room_0Set_000110DL_001608; -#endif - -#define dkenjyanoma_room_0Set_000110DL_010CD8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000110DL_010CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Set_000110DL_010CD8[] = dkenjyanoma_room_0Set_000110DL_010CD8; -#else -static const char kenjyanoma_room_0Set_000110DL_010CD8[] __attribute__((aligned (2))) = dkenjyanoma_room_0Set_000110DL_010CD8; -#endif - -#define dkenjyanoma_room_0Set_000180DL_001608 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000180DL_001608" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Set_000180DL_001608[] = dkenjyanoma_room_0Set_000180DL_001608; -#else -static const char kenjyanoma_room_0Set_000180DL_001608[] __attribute__((aligned (2))) = dkenjyanoma_room_0Set_000180DL_001608; -#endif - -#define dkenjyanoma_room_0Set_000180DL_010CD8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000180DL_010CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Set_000180DL_010CD8[] = dkenjyanoma_room_0Set_000180DL_010CD8; -#else -static const char kenjyanoma_room_0Set_000180DL_010CD8[] __attribute__((aligned (2))) = dkenjyanoma_room_0Set_000180DL_010CD8; -#endif - -#define dkenjyanoma_room_0Set_000230DL_001608 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000230DL_001608" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Set_000230DL_001608[] = dkenjyanoma_room_0Set_000230DL_001608; -#else -static const char kenjyanoma_room_0Set_000230DL_001608[] __attribute__((aligned (2))) = dkenjyanoma_room_0Set_000230DL_001608; -#endif - -#define dkenjyanoma_room_0Set_000230DL_010CD8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000230DL_010CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_room_0Set_000230DL_010CD8[] = dkenjyanoma_room_0Set_000230DL_010CD8; -#else -static const char kenjyanoma_room_0Set_000230DL_010CD8[] __attribute__((aligned (2))) = dkenjyanoma_room_0Set_000230DL_010CD8; -#endif - +#include "align_asset_macro.h" + +#define dkenjyanoma_room_0DL_001608 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0DL_001608" +static const ALIGN_ASSET(2) char kenjyanoma_room_0DL_001608[] = dkenjyanoma_room_0DL_001608; + +#define dkenjyanoma_room_0Tex_00D618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_00D618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_00D618[] = dkenjyanoma_room_0Tex_00D618; + +#define dkenjyanoma_room_0Tex_00C618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_00C618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_00C618[] = dkenjyanoma_room_0Tex_00C618; + +#define dkenjyanoma_room_0Tex_00B618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_00B618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_00B618[] = dkenjyanoma_room_0Tex_00B618; + +#define dkenjyanoma_room_0Tex_00A618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_00A618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_00A618[] = dkenjyanoma_room_0Tex_00A618; + +#define dkenjyanoma_room_0Tex_009618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_009618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_009618[] = dkenjyanoma_room_0Tex_009618; + +#define dkenjyanoma_room_0Tex_008618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_008618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_008618[] = dkenjyanoma_room_0Tex_008618; + +#define dkenjyanoma_room_0Tex_007618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_007618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_007618[] = dkenjyanoma_room_0Tex_007618; + +#define dkenjyanoma_room_0Tex_006618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_006618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_006618[] = dkenjyanoma_room_0Tex_006618; + +#define dkenjyanoma_room_0Tex_005618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_005618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_005618[] = dkenjyanoma_room_0Tex_005618; + +#define dkenjyanoma_room_0Tex_004618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_004618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_004618[] = dkenjyanoma_room_0Tex_004618; + +#define dkenjyanoma_room_0Tex_003618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_003618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_003618[] = dkenjyanoma_room_0Tex_003618; + +#define dkenjyanoma_room_0Tex_002618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_002618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_002618[] = dkenjyanoma_room_0Tex_002618; + +#define dkenjyanoma_room_0Tex_001618 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_001618" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_001618[] = dkenjyanoma_room_0Tex_001618; + +#define dkenjyanoma_room_0DL_010CD8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0DL_010CD8" +static const ALIGN_ASSET(2) char kenjyanoma_room_0DL_010CD8[] = dkenjyanoma_room_0DL_010CD8; + +#define dkenjyanoma_room_0Tex_010CE8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_010CE8" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_010CE8[] = dkenjyanoma_room_0Tex_010CE8; + +#define dkenjyanoma_room_0Tex_012D08 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_012D08" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_012D08[] = dkenjyanoma_room_0Tex_012D08; + +#define dkenjyanoma_room_0Tex_012508 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_012508" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_012508[] = dkenjyanoma_room_0Tex_012508; + +#define dkenjyanoma_room_0Tex_0114E8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_0114E8" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_0114E8[] = dkenjyanoma_room_0Tex_0114E8; + +#define dkenjyanoma_room_0Tex_011CE8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_011CE8" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_011CE8[] = dkenjyanoma_room_0Tex_011CE8; + +#define dkenjyanoma_room_0Tex_011D08 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Tex_011D08" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Tex_011D08[] = dkenjyanoma_room_0Tex_011D08; + +#define dkenjyanoma_room_0Set_000110DL_001608 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000110DL_001608" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Set_000110DL_001608[] = dkenjyanoma_room_0Set_000110DL_001608; + +#define dkenjyanoma_room_0Set_000110DL_010CD8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000110DL_010CD8" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Set_000110DL_010CD8[] = dkenjyanoma_room_0Set_000110DL_010CD8; + +#define dkenjyanoma_room_0Set_000180DL_001608 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000180DL_001608" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Set_000180DL_001608[] = dkenjyanoma_room_0Set_000180DL_001608; + +#define dkenjyanoma_room_0Set_000180DL_010CD8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000180DL_010CD8" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Set_000180DL_010CD8[] = dkenjyanoma_room_0Set_000180DL_010CD8; + +#define dkenjyanoma_room_0Set_000230DL_001608 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000230DL_001608" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Set_000230DL_001608[] = dkenjyanoma_room_0Set_000230DL_001608; + +#define dkenjyanoma_room_0Set_000230DL_010CD8 "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_room_0Set_000230DL_010CD8" +static const ALIGN_ASSET(2) char kenjyanoma_room_0Set_000230DL_010CD8[] = dkenjyanoma_room_0Set_000230DL_010CD8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kenjyanoma/kenjyanoma_scene.h b/soh/assets/scenes/indoors/kenjyanoma/kenjyanoma_scene.h index ebbd77414..80f40f618 100644 --- a/soh/assets/scenes/indoors/kenjyanoma/kenjyanoma_scene.h +++ b/soh/assets/scenes/indoors/kenjyanoma/kenjyanoma_scene.h @@ -1,12 +1,12 @@ #pragma once + +#include "align_asset_macro.h" + #define dkenjyanoma_sceneCollisionHeader_00359C "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_sceneCollisionHeader_00359C" -#ifdef _WIN32 -static const __declspec(align(2)) char kenjyanoma_sceneCollisionHeader_00359C[] = dkenjyanoma_sceneCollisionHeader_00359C; -#else -static const char kenjyanoma_sceneCollisionHeader_00359C[] __attribute__((aligned (2))) = dkenjyanoma_sceneCollisionHeader_00359C; -#endif - -#define dkenjyanoma_sceneCollisionHeader_00359C "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_sceneCollisionHeader_00359C" -#define dkenjyanoma_sceneCollisionHeader_00359C "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_sceneCollisionHeader_00359C" +static const ALIGN_ASSET(2) char kenjyanoma_sceneCollisionHeader_00359C[] = dkenjyanoma_sceneCollisionHeader_00359C; + #define dkenjyanoma_sceneCollisionHeader_00359C "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_sceneCollisionHeader_00359C" +#define dkenjyanoma_sceneCollisionHeader_00359C "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_sceneCollisionHeader_00359C" + +#define dkenjyanoma_sceneCollisionHeader_00359C "__OTR__scenes/nonmq/kenjyanoma_scene/kenjyanoma_sceneCollisionHeader_00359C" \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kokiri_home/kokiri_home_room_0.h b/soh/assets/scenes/indoors/kokiri_home/kokiri_home_room_0.h index 0369cd760..3609b4c82 100644 --- a/soh/assets/scenes/indoors/kokiri_home/kokiri_home_room_0.h +++ b/soh/assets/scenes/indoors/kokiri_home/kokiri_home_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_home_room_0DL_006398 "__OTR__scenes/nonmq/kokiri_home_scene/kokiri_home_room_0DL_006398" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_home_room_0DL_006398[] = dkokiri_home_room_0DL_006398; -#else -static const char kokiri_home_room_0DL_006398[] __attribute__((aligned (2))) = dkokiri_home_room_0DL_006398; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_home_room_0DL_006398 "__OTR__scenes/nonmq/kokiri_home_scene/kokiri_home_room_0DL_006398" +static const ALIGN_ASSET(2) char kokiri_home_room_0DL_006398[] = dkokiri_home_room_0DL_006398; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kokiri_home/kokiri_home_scene.h b/soh/assets/scenes/indoors/kokiri_home/kokiri_home_scene.h index 3d9ebca89..7fa25151f 100644 --- a/soh/assets/scenes/indoors/kokiri_home/kokiri_home_scene.h +++ b/soh/assets/scenes/indoors/kokiri_home/kokiri_home_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_home_sceneCollisionHeader_000C8C "__OTR__scenes/nonmq/kokiri_home_scene/kokiri_home_sceneCollisionHeader_000C8C" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_home_sceneCollisionHeader_000C8C[] = dkokiri_home_sceneCollisionHeader_000C8C; -#else -static const char kokiri_home_sceneCollisionHeader_000C8C[] __attribute__((aligned (2))) = dkokiri_home_sceneCollisionHeader_000C8C; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_home_sceneCollisionHeader_000C8C "__OTR__scenes/nonmq/kokiri_home_scene/kokiri_home_sceneCollisionHeader_000C8C" +static const ALIGN_ASSET(2) char kokiri_home_sceneCollisionHeader_000C8C[] = dkokiri_home_sceneCollisionHeader_000C8C; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kokiri_home3/kokiri_home3_room_0.h b/soh/assets/scenes/indoors/kokiri_home3/kokiri_home3_room_0.h index 0ecd3d6d8..27daf7dae 100644 --- a/soh/assets/scenes/indoors/kokiri_home3/kokiri_home3_room_0.h +++ b/soh/assets/scenes/indoors/kokiri_home3/kokiri_home3_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_home3_room_0DL_036590 "__OTR__scenes/nonmq/kokiri_home3_scene/kokiri_home3_room_0DL_036590" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_home3_room_0DL_036590[] = dkokiri_home3_room_0DL_036590; -#else -static const char kokiri_home3_room_0DL_036590[] __attribute__((aligned (2))) = dkokiri_home3_room_0DL_036590; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_home3_room_0DL_036590 "__OTR__scenes/nonmq/kokiri_home3_scene/kokiri_home3_room_0DL_036590" +static const ALIGN_ASSET(2) char kokiri_home3_room_0DL_036590[] = dkokiri_home3_room_0DL_036590; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kokiri_home3/kokiri_home3_scene.h b/soh/assets/scenes/indoors/kokiri_home3/kokiri_home3_scene.h index b97f963d5..353539859 100644 --- a/soh/assets/scenes/indoors/kokiri_home3/kokiri_home3_scene.h +++ b/soh/assets/scenes/indoors/kokiri_home3/kokiri_home3_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_home3_sceneCollisionHeader_001774 "__OTR__scenes/nonmq/kokiri_home3_scene/kokiri_home3_sceneCollisionHeader_001774" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_home3_sceneCollisionHeader_001774[] = dkokiri_home3_sceneCollisionHeader_001774; -#else -static const char kokiri_home3_sceneCollisionHeader_001774[] __attribute__((aligned (2))) = dkokiri_home3_sceneCollisionHeader_001774; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_home3_sceneCollisionHeader_001774 "__OTR__scenes/nonmq/kokiri_home3_scene/kokiri_home3_sceneCollisionHeader_001774" +static const ALIGN_ASSET(2) char kokiri_home3_sceneCollisionHeader_001774[] = dkokiri_home3_sceneCollisionHeader_001774; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kokiri_home4/kokiri_home4_room_0.h b/soh/assets/scenes/indoors/kokiri_home4/kokiri_home4_room_0.h index af5f75be5..df717eda0 100644 --- a/soh/assets/scenes/indoors/kokiri_home4/kokiri_home4_room_0.h +++ b/soh/assets/scenes/indoors/kokiri_home4/kokiri_home4_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_home4_room_0DL_0388B8 "__OTR__scenes/nonmq/kokiri_home4_scene/kokiri_home4_room_0DL_0388B8" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_home4_room_0DL_0388B8[] = dkokiri_home4_room_0DL_0388B8; -#else -static const char kokiri_home4_room_0DL_0388B8[] __attribute__((aligned (2))) = dkokiri_home4_room_0DL_0388B8; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_home4_room_0DL_0388B8 "__OTR__scenes/nonmq/kokiri_home4_scene/kokiri_home4_room_0DL_0388B8" +static const ALIGN_ASSET(2) char kokiri_home4_room_0DL_0388B8[] = dkokiri_home4_room_0DL_0388B8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kokiri_home4/kokiri_home4_scene.h b/soh/assets/scenes/indoors/kokiri_home4/kokiri_home4_scene.h index 77662dc3b..fb9a75f6e 100644 --- a/soh/assets/scenes/indoors/kokiri_home4/kokiri_home4_scene.h +++ b/soh/assets/scenes/indoors/kokiri_home4/kokiri_home4_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_home4_sceneCollisionHeader_001A84 "__OTR__scenes/nonmq/kokiri_home4_scene/kokiri_home4_sceneCollisionHeader_001A84" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_home4_sceneCollisionHeader_001A84[] = dkokiri_home4_sceneCollisionHeader_001A84; -#else -static const char kokiri_home4_sceneCollisionHeader_001A84[] __attribute__((aligned (2))) = dkokiri_home4_sceneCollisionHeader_001A84; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_home4_sceneCollisionHeader_001A84 "__OTR__scenes/nonmq/kokiri_home4_scene/kokiri_home4_sceneCollisionHeader_001A84" +static const ALIGN_ASSET(2) char kokiri_home4_sceneCollisionHeader_001A84[] = dkokiri_home4_sceneCollisionHeader_001A84; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kokiri_home5/kokiri_home5_room_0.h b/soh/assets/scenes/indoors/kokiri_home5/kokiri_home5_room_0.h index 76e011054..f1edb76b4 100644 --- a/soh/assets/scenes/indoors/kokiri_home5/kokiri_home5_room_0.h +++ b/soh/assets/scenes/indoors/kokiri_home5/kokiri_home5_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_home5_room_0DL_030EE8 "__OTR__scenes/nonmq/kokiri_home5_scene/kokiri_home5_room_0DL_030EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_home5_room_0DL_030EE8[] = dkokiri_home5_room_0DL_030EE8; -#else -static const char kokiri_home5_room_0DL_030EE8[] __attribute__((aligned (2))) = dkokiri_home5_room_0DL_030EE8; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_home5_room_0DL_030EE8 "__OTR__scenes/nonmq/kokiri_home5_scene/kokiri_home5_room_0DL_030EE8" +static const ALIGN_ASSET(2) char kokiri_home5_room_0DL_030EE8[] = dkokiri_home5_room_0DL_030EE8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/kokiri_home5/kokiri_home5_scene.h b/soh/assets/scenes/indoors/kokiri_home5/kokiri_home5_scene.h index f8bb88828..25222a87b 100644 --- a/soh/assets/scenes/indoors/kokiri_home5/kokiri_home5_scene.h +++ b/soh/assets/scenes/indoors/kokiri_home5/kokiri_home5_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_home5_sceneCollisionHeader_0013DC "__OTR__scenes/nonmq/kokiri_home5_scene/kokiri_home5_sceneCollisionHeader_0013DC" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_home5_sceneCollisionHeader_0013DC[] = dkokiri_home5_sceneCollisionHeader_0013DC; -#else -static const char kokiri_home5_sceneCollisionHeader_0013DC[] __attribute__((aligned (2))) = dkokiri_home5_sceneCollisionHeader_0013DC; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_home5_sceneCollisionHeader_0013DC "__OTR__scenes/nonmq/kokiri_home5_scene/kokiri_home5_sceneCollisionHeader_0013DC" +static const ALIGN_ASSET(2) char kokiri_home5_sceneCollisionHeader_0013DC[] = dkokiri_home5_sceneCollisionHeader_0013DC; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/labo/labo_room_0.h b/soh/assets/scenes/indoors/labo/labo_room_0.h index abba462c7..931445d05 100644 --- a/soh/assets/scenes/indoors/labo/labo_room_0.h +++ b/soh/assets/scenes/indoors/labo/labo_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dlabo_room_0DL_006E50 "__OTR__scenes/nonmq/labo_scene/labo_room_0DL_006E50" -#ifdef _WIN32 -static const __declspec(align(2)) char labo_room_0DL_006E50[] = dlabo_room_0DL_006E50; -#else -static const char labo_room_0DL_006E50[] __attribute__((aligned (2))) = dlabo_room_0DL_006E50; -#endif - +#include "align_asset_macro.h" + +#define dlabo_room_0DL_006E50 "__OTR__scenes/nonmq/labo_scene/labo_room_0DL_006E50" +static const ALIGN_ASSET(2) char labo_room_0DL_006E50[] = dlabo_room_0DL_006E50; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/labo/labo_scene.h b/soh/assets/scenes/indoors/labo/labo_scene.h index 3d3cd4a15..39dd372be 100644 --- a/soh/assets/scenes/indoors/labo/labo_scene.h +++ b/soh/assets/scenes/indoors/labo/labo_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dlabo_sceneCollisionHeader_000EC4 "__OTR__scenes/nonmq/labo_scene/labo_sceneCollisionHeader_000EC4" -#ifdef _WIN32 -static const __declspec(align(2)) char labo_sceneCollisionHeader_000EC4[] = dlabo_sceneCollisionHeader_000EC4; -#else -static const char labo_sceneCollisionHeader_000EC4[] __attribute__((aligned (2))) = dlabo_sceneCollisionHeader_000EC4; -#endif - +#include "align_asset_macro.h" + +#define dlabo_sceneCollisionHeader_000EC4 "__OTR__scenes/nonmq/labo_scene/labo_sceneCollisionHeader_000EC4" +static const ALIGN_ASSET(2) char labo_sceneCollisionHeader_000EC4[] = dlabo_sceneCollisionHeader_000EC4; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/link_home/link_home_room_0.h b/soh/assets/scenes/indoors/link_home/link_home_room_0.h index ce87ec012..ef0bb46c6 100644 --- a/soh/assets/scenes/indoors/link_home/link_home_room_0.h +++ b/soh/assets/scenes/indoors/link_home/link_home_room_0.h @@ -1,23 +1,12 @@ #pragma once -#define dlink_home_room_0DL_0023A8 "__OTR__scenes/nonmq/link_home_scene/link_home_room_0DL_0023A8" -#ifdef _WIN32 -static const __declspec(align(2)) char link_home_room_0DL_0023A8[] = dlink_home_room_0DL_0023A8; -#else -static const char link_home_room_0DL_0023A8[] __attribute__((aligned (2))) = dlink_home_room_0DL_0023A8; -#endif - -#define dlink_home_room_0Set_002400DL_0023A8 "__OTR__scenes/nonmq/link_home_scene/link_home_room_0Set_002400DL_0023A8" -#ifdef _WIN32 -static const __declspec(align(2)) char link_home_room_0Set_002400DL_0023A8[] = dlink_home_room_0Set_002400DL_0023A8; -#else -static const char link_home_room_0Set_002400DL_0023A8[] __attribute__((aligned (2))) = dlink_home_room_0Set_002400DL_0023A8; -#endif - -#define dlink_home_room_0Set_002440DL_0023A8 "__OTR__scenes/nonmq/link_home_scene/link_home_room_0Set_002440DL_0023A8" -#ifdef _WIN32 -static const __declspec(align(2)) char link_home_room_0Set_002440DL_0023A8[] = dlink_home_room_0Set_002440DL_0023A8; -#else -static const char link_home_room_0Set_002440DL_0023A8[] __attribute__((aligned (2))) = dlink_home_room_0Set_002440DL_0023A8; -#endif - +#include "align_asset_macro.h" + +#define dlink_home_room_0DL_0023A8 "__OTR__scenes/nonmq/link_home_scene/link_home_room_0DL_0023A8" +static const ALIGN_ASSET(2) char link_home_room_0DL_0023A8[] = dlink_home_room_0DL_0023A8; + +#define dlink_home_room_0Set_002400DL_0023A8 "__OTR__scenes/nonmq/link_home_scene/link_home_room_0Set_002400DL_0023A8" +static const ALIGN_ASSET(2) char link_home_room_0Set_002400DL_0023A8[] = dlink_home_room_0Set_002400DL_0023A8; + +#define dlink_home_room_0Set_002440DL_0023A8 "__OTR__scenes/nonmq/link_home_scene/link_home_room_0Set_002440DL_0023A8" +static const ALIGN_ASSET(2) char link_home_room_0Set_002440DL_0023A8[] = dlink_home_room_0Set_002440DL_0023A8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/link_home/link_home_scene.h b/soh/assets/scenes/indoors/link_home/link_home_scene.h index b24f7c2a7..3c51fa267 100644 --- a/soh/assets/scenes/indoors/link_home/link_home_scene.h +++ b/soh/assets/scenes/indoors/link_home/link_home_scene.h @@ -1,11 +1,10 @@ #pragma once + +#include "align_asset_macro.h" + #define dlink_home_sceneCollisionHeader_000E4C "__OTR__scenes/nonmq/link_home_scene/link_home_sceneCollisionHeader_000E4C" -#ifdef _WIN32 -static const __declspec(align(2)) char link_home_sceneCollisionHeader_000E4C[] = dlink_home_sceneCollisionHeader_000E4C; -#else -static const char link_home_sceneCollisionHeader_000E4C[] __attribute__((aligned (2))) = dlink_home_sceneCollisionHeader_000E4C; -#endif - -#define dlink_home_sceneCollisionHeader_000E4C "__OTR__scenes/nonmq/link_home_scene/link_home_sceneCollisionHeader_000E4C" +static const ALIGN_ASSET(2) char link_home_sceneCollisionHeader_000E4C[] = dlink_home_sceneCollisionHeader_000E4C; + #define dlink_home_sceneCollisionHeader_000E4C "__OTR__scenes/nonmq/link_home_scene/link_home_sceneCollisionHeader_000E4C" +#define dlink_home_sceneCollisionHeader_000E4C "__OTR__scenes/nonmq/link_home_scene/link_home_sceneCollisionHeader_000E4C" \ No newline at end of file diff --git a/soh/assets/scenes/indoors/mahouya/mahouya_room_0.h b/soh/assets/scenes/indoors/mahouya/mahouya_room_0.h index 77326df82..49769647c 100644 --- a/soh/assets/scenes/indoors/mahouya/mahouya_room_0.h +++ b/soh/assets/scenes/indoors/mahouya/mahouya_room_0.h @@ -1,16 +1,9 @@ #pragma once -#define dmahouya_room_0DL_006548 "__OTR__scenes/nonmq/mahouya_scene/mahouya_room_0DL_006548" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_room_0DL_006548[] = dmahouya_room_0DL_006548; -#else -static const char mahouya_room_0DL_006548[] __attribute__((aligned (2))) = dmahouya_room_0DL_006548; -#endif - -#define dmahouya_room_0DL_006A78 "__OTR__scenes/nonmq/mahouya_scene/mahouya_room_0DL_006A78" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_room_0DL_006A78[] = dmahouya_room_0DL_006A78; -#else -static const char mahouya_room_0DL_006A78[] __attribute__((aligned (2))) = dmahouya_room_0DL_006A78; -#endif - +#include "align_asset_macro.h" + +#define dmahouya_room_0DL_006548 "__OTR__scenes/nonmq/mahouya_scene/mahouya_room_0DL_006548" +static const ALIGN_ASSET(2) char mahouya_room_0DL_006548[] = dmahouya_room_0DL_006548; + +#define dmahouya_room_0DL_006A78 "__OTR__scenes/nonmq/mahouya_scene/mahouya_room_0DL_006A78" +static const ALIGN_ASSET(2) char mahouya_room_0DL_006A78[] = dmahouya_room_0DL_006A78; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/mahouya/mahouya_scene.h b/soh/assets/scenes/indoors/mahouya/mahouya_scene.h index a7c97d9d6..e82132302 100644 --- a/soh/assets/scenes/indoors/mahouya/mahouya_scene.h +++ b/soh/assets/scenes/indoors/mahouya/mahouya_scene.h @@ -1,100 +1,45 @@ #pragma once -#define dmahouya_sceneCollisionHeader_0009F4 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneCollisionHeader_0009F4" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneCollisionHeader_0009F4[] = dmahouya_sceneCollisionHeader_0009F4; -#else -static const char mahouya_sceneCollisionHeader_0009F4[] __attribute__((aligned (2))) = dmahouya_sceneCollisionHeader_0009F4; -#endif - -#define dmahouya_sceneTex_009A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_009A20" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_009A20[] = dmahouya_sceneTex_009A20; -#else -static const char mahouya_sceneTex_009A20[] __attribute__((aligned (2))) = dmahouya_sceneTex_009A20; -#endif - -#define dmahouya_sceneTex_007A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_007A20[] = dmahouya_sceneTex_007A20; -#else -static const char mahouya_sceneTex_007A20[] __attribute__((aligned (2))) = dmahouya_sceneTex_007A20; -#endif - -#define dmahouya_sceneTex_009220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_009220" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_009220[] = dmahouya_sceneTex_009220; -#else -static const char mahouya_sceneTex_009220[] __attribute__((aligned (2))) = dmahouya_sceneTex_009220; -#endif - -#define dmahouya_sceneTex_001A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_001A20" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_001A20[] = dmahouya_sceneTex_001A20; -#else -static const char mahouya_sceneTex_001A20[] __attribute__((aligned (2))) = dmahouya_sceneTex_001A20; -#endif - -#define dmahouya_sceneTex_001220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_001220" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_001220[] = dmahouya_sceneTex_001220; -#else -static const char mahouya_sceneTex_001220[] __attribute__((aligned (2))) = dmahouya_sceneTex_001220; -#endif - -#define dmahouya_sceneTex_006220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_006220" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_006220[] = dmahouya_sceneTex_006220; -#else -static const char mahouya_sceneTex_006220[] __attribute__((aligned (2))) = dmahouya_sceneTex_006220; -#endif - -#define dmahouya_sceneTex_007220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_007220" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_007220[] = dmahouya_sceneTex_007220; -#else -static const char mahouya_sceneTex_007220[] __attribute__((aligned (2))) = dmahouya_sceneTex_007220; -#endif - -#define dmahouya_sceneTex_005220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_005220" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_005220[] = dmahouya_sceneTex_005220; -#else -static const char mahouya_sceneTex_005220[] __attribute__((aligned (2))) = dmahouya_sceneTex_005220; -#endif - -#define dmahouya_sceneTex_004A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_004A20" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_004A20[] = dmahouya_sceneTex_004A20; -#else -static const char mahouya_sceneTex_004A20[] __attribute__((aligned (2))) = dmahouya_sceneTex_004A20; -#endif - -#define dmahouya_sceneTex_000A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_000A20" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_000A20[] = dmahouya_sceneTex_000A20; -#else -static const char mahouya_sceneTex_000A20[] __attribute__((aligned (2))) = dmahouya_sceneTex_000A20; -#endif - -#define dmahouya_sceneTex_003A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_003A20" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_003A20[] = dmahouya_sceneTex_003A20; -#else -static const char mahouya_sceneTex_003A20[] __attribute__((aligned (2))) = dmahouya_sceneTex_003A20; -#endif - -#define dmahouya_sceneTex_002A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_002A20" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_002A20[] = dmahouya_sceneTex_002A20; -#else -static const char mahouya_sceneTex_002A20[] __attribute__((aligned (2))) = dmahouya_sceneTex_002A20; -#endif - -#define dmahouya_sceneTex_008A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_008A20" -#ifdef _WIN32 -static const __declspec(align(2)) char mahouya_sceneTex_008A20[] = dmahouya_sceneTex_008A20; -#else -static const char mahouya_sceneTex_008A20[] __attribute__((aligned (2))) = dmahouya_sceneTex_008A20; -#endif - +#include "align_asset_macro.h" + +#define dmahouya_sceneCollisionHeader_0009F4 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneCollisionHeader_0009F4" +static const ALIGN_ASSET(2) char mahouya_sceneCollisionHeader_0009F4[] = dmahouya_sceneCollisionHeader_0009F4; + +#define dmahouya_sceneTex_009A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_009A20" +static const ALIGN_ASSET(2) char mahouya_sceneTex_009A20[] = dmahouya_sceneTex_009A20; + +#define dmahouya_sceneTex_007A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_007A20" +static const ALIGN_ASSET(2) char mahouya_sceneTex_007A20[] = dmahouya_sceneTex_007A20; + +#define dmahouya_sceneTex_009220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_009220" +static const ALIGN_ASSET(2) char mahouya_sceneTex_009220[] = dmahouya_sceneTex_009220; + +#define dmahouya_sceneTex_001A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_001A20" +static const ALIGN_ASSET(2) char mahouya_sceneTex_001A20[] = dmahouya_sceneTex_001A20; + +#define dmahouya_sceneTex_001220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_001220" +static const ALIGN_ASSET(2) char mahouya_sceneTex_001220[] = dmahouya_sceneTex_001220; + +#define dmahouya_sceneTex_006220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_006220" +static const ALIGN_ASSET(2) char mahouya_sceneTex_006220[] = dmahouya_sceneTex_006220; + +#define dmahouya_sceneTex_007220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_007220" +static const ALIGN_ASSET(2) char mahouya_sceneTex_007220[] = dmahouya_sceneTex_007220; + +#define dmahouya_sceneTex_005220 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_005220" +static const ALIGN_ASSET(2) char mahouya_sceneTex_005220[] = dmahouya_sceneTex_005220; + +#define dmahouya_sceneTex_004A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_004A20" +static const ALIGN_ASSET(2) char mahouya_sceneTex_004A20[] = dmahouya_sceneTex_004A20; + +#define dmahouya_sceneTex_000A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_000A20" +static const ALIGN_ASSET(2) char mahouya_sceneTex_000A20[] = dmahouya_sceneTex_000A20; + +#define dmahouya_sceneTex_003A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_003A20" +static const ALIGN_ASSET(2) char mahouya_sceneTex_003A20[] = dmahouya_sceneTex_003A20; + +#define dmahouya_sceneTex_002A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_002A20" +static const ALIGN_ASSET(2) char mahouya_sceneTex_002A20[] = dmahouya_sceneTex_002A20; + +#define dmahouya_sceneTex_008A20 "__OTR__scenes/nonmq/mahouya_scene/mahouya_sceneTex_008A20" +static const ALIGN_ASSET(2) char mahouya_sceneTex_008A20[] = dmahouya_sceneTex_008A20; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/malon_stable/malon_stable_room_0.h b/soh/assets/scenes/indoors/malon_stable/malon_stable_room_0.h index 79ffaab6a..3555bb18e 100644 --- a/soh/assets/scenes/indoors/malon_stable/malon_stable_room_0.h +++ b/soh/assets/scenes/indoors/malon_stable/malon_stable_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dmalon_stable_room_0DL_008A00 "__OTR__scenes/nonmq/malon_stable_scene/malon_stable_room_0DL_008A00" -#ifdef _WIN32 -static const __declspec(align(2)) char malon_stable_room_0DL_008A00[] = dmalon_stable_room_0DL_008A00; -#else -static const char malon_stable_room_0DL_008A00[] __attribute__((aligned (2))) = dmalon_stable_room_0DL_008A00; -#endif - +#include "align_asset_macro.h" + +#define dmalon_stable_room_0DL_008A00 "__OTR__scenes/nonmq/malon_stable_scene/malon_stable_room_0DL_008A00" +static const ALIGN_ASSET(2) char malon_stable_room_0DL_008A00[] = dmalon_stable_room_0DL_008A00; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/malon_stable/malon_stable_scene.h b/soh/assets/scenes/indoors/malon_stable/malon_stable_scene.h index 0beb6d201..9ae03f25c 100644 --- a/soh/assets/scenes/indoors/malon_stable/malon_stable_scene.h +++ b/soh/assets/scenes/indoors/malon_stable/malon_stable_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dmalon_stable_sceneCollisionHeader_000644 "__OTR__scenes/nonmq/malon_stable_scene/malon_stable_sceneCollisionHeader_000644" -#ifdef _WIN32 -static const __declspec(align(2)) char malon_stable_sceneCollisionHeader_000644[] = dmalon_stable_sceneCollisionHeader_000644; -#else -static const char malon_stable_sceneCollisionHeader_000644[] __attribute__((aligned (2))) = dmalon_stable_sceneCollisionHeader_000644; -#endif - +#include "align_asset_macro.h" + +#define dmalon_stable_sceneCollisionHeader_000644 "__OTR__scenes/nonmq/malon_stable_scene/malon_stable_sceneCollisionHeader_000644" +static const ALIGN_ASSET(2) char malon_stable_sceneCollisionHeader_000644[] = dmalon_stable_sceneCollisionHeader_000644; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/miharigoya/miharigoya_room_0.h b/soh/assets/scenes/indoors/miharigoya/miharigoya_room_0.h index 4d9e1968b..c1aed1885 100644 --- a/soh/assets/scenes/indoors/miharigoya/miharigoya_room_0.h +++ b/soh/assets/scenes/indoors/miharigoya/miharigoya_room_0.h @@ -1,198 +1,87 @@ #pragma once -#define dgMiharigoyaBlob_0038D8 "__OTR__scenes/nonmq/miharigoya_room_0/gMiharigoyaBlob_0038D8" -#ifdef _WIN32 -static const __declspec(align(2)) char gMiharigoyaBlob_0038D8[] = dgMiharigoyaBlob_0038D8; -#else -static const char gMiharigoyaBlob_0038D8[] __attribute__((aligned (2))) = dgMiharigoyaBlob_0038D8; -#endif - -#define dmiharigoya_room_0DL_003820 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_003820" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_003820[] = dmiharigoya_room_0DL_003820; -#else -static const char miharigoya_room_0DL_003820[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_003820; -#endif - -#define dmiharigoya_room_0DL_0036A8 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_0036A8" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_0036A8[] = dmiharigoya_room_0DL_0036A8; -#else -static const char miharigoya_room_0DL_0036A8[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_0036A8; -#endif - -#define dmiharigoya_room_0DL_002F30 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_002F30" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_002F30[] = dmiharigoya_room_0DL_002F30; -#else -static const char miharigoya_room_0DL_002F30[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_002F30; -#endif - -#define dmiharigoya_room_0DL_002A10 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_002A10[] = dmiharigoya_room_0DL_002A10; -#else -static const char miharigoya_room_0DL_002A10[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_002A10; -#endif - -#define dmiharigoya_room_0DL_003490 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_003490" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_003490[] = dmiharigoya_room_0DL_003490; -#else -static const char miharigoya_room_0DL_003490[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_003490; -#endif - -#define dmiharigoya_room_0DL_000FE0 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_000FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_000FE0[] = dmiharigoya_room_0DL_000FE0; -#else -static const char miharigoya_room_0DL_000FE0[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_000FE0; -#endif - -#define dmiharigoya_room_0DL_001F48 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_001F48" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_001F48[] = dmiharigoya_room_0DL_001F48; -#else -static const char miharigoya_room_0DL_001F48[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_001F48; -#endif - -#define dmiharigoya_room_0DL_002778 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_002778" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_002778[] = dmiharigoya_room_0DL_002778; -#else -static const char miharigoya_room_0DL_002778[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_002778; -#endif - -#define dmiharigoya_room_0DL_000A68 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_000A68" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_000A68[] = dmiharigoya_room_0DL_000A68; -#else -static const char miharigoya_room_0DL_000A68[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_000A68; -#endif - -#define dmiharigoya_room_0DL_003C40 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_003C40" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_003C40[] = dmiharigoya_room_0DL_003C40; -#else -static const char miharigoya_room_0DL_003C40[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_003C40; -#endif - -#define dmiharigoya_room_0DL_000E60 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_000E60" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_000E60[] = dmiharigoya_room_0DL_000E60; -#else -static const char miharigoya_room_0DL_000E60[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_000E60; -#endif - -#define dmiharigoya_room_0DL_000660 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_000660" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_000660[] = dmiharigoya_room_0DL_000660; -#else -static const char miharigoya_room_0DL_000660[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_000660; -#endif - -#define dmiharigoya_room_0DL_002C60 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_002C60" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0DL_002C60[] = dmiharigoya_room_0DL_002C60; -#else -static const char miharigoya_room_0DL_002C60[] __attribute__((aligned (2))) = dmiharigoya_room_0DL_002C60; -#endif - -#define dgMiharigoyaDL_003DA0 "__OTR__scenes/nonmq/miharigoya_scene/gMiharigoyaDL_003DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char gMiharigoyaDL_003DA0[] = dgMiharigoyaDL_003DA0; -#else -static const char gMiharigoyaDL_003DA0[] __attribute__((aligned (2))) = dgMiharigoyaDL_003DA0; -#endif - -#define dmiharigoya_room_0Set_000470DL_003820 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_003820" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_003820[] = dmiharigoya_room_0Set_000470DL_003820; -#else -static const char miharigoya_room_0Set_000470DL_003820[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_003820; -#endif - -#define dmiharigoya_room_0Set_000470DL_0036A8 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_0036A8" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_0036A8[] = dmiharigoya_room_0Set_000470DL_0036A8; -#else -static const char miharigoya_room_0Set_000470DL_0036A8[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_0036A8; -#endif - -#define dmiharigoya_room_0Set_000470DL_002F30 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_002F30" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_002F30[] = dmiharigoya_room_0Set_000470DL_002F30; -#else -static const char miharigoya_room_0Set_000470DL_002F30[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_002F30; -#endif - -#define dmiharigoya_room_0Set_000470DL_002A10 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_002A10[] = dmiharigoya_room_0Set_000470DL_002A10; -#else -static const char miharigoya_room_0Set_000470DL_002A10[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_002A10; -#endif - -#define dmiharigoya_room_0Set_000470DL_003490 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_003490" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_003490[] = dmiharigoya_room_0Set_000470DL_003490; -#else -static const char miharigoya_room_0Set_000470DL_003490[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_003490; -#endif - -#define dmiharigoya_room_0Set_000470DL_000FE0 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_000FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_000FE0[] = dmiharigoya_room_0Set_000470DL_000FE0; -#else -static const char miharigoya_room_0Set_000470DL_000FE0[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_000FE0; -#endif - -#define dmiharigoya_room_0Set_000470DL_001F48 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_001F48" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_001F48[] = dmiharigoya_room_0Set_000470DL_001F48; -#else -static const char miharigoya_room_0Set_000470DL_001F48[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_001F48; -#endif - -#define dmiharigoya_room_0Set_000470DL_002778 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_002778" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_002778[] = dmiharigoya_room_0Set_000470DL_002778; -#else -static const char miharigoya_room_0Set_000470DL_002778[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_002778; -#endif - -#define dmiharigoya_room_0Set_000470DL_000A68 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_000A68" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_000A68[] = dmiharigoya_room_0Set_000470DL_000A68; -#else -static const char miharigoya_room_0Set_000470DL_000A68[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_000A68; -#endif - -#define dmiharigoya_room_0Set_000470DL_003C40 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_003C40" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_003C40[] = dmiharigoya_room_0Set_000470DL_003C40; -#else -static const char miharigoya_room_0Set_000470DL_003C40[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_003C40; -#endif - -#define dmiharigoya_room_0Set_000470DL_000E60 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_000E60" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_000E60[] = dmiharigoya_room_0Set_000470DL_000E60; -#else -static const char miharigoya_room_0Set_000470DL_000E60[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_000E60; -#endif - -#define dmiharigoya_room_0Set_000470DL_000660 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_000660" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_000660[] = dmiharigoya_room_0Set_000470DL_000660; -#else -static const char miharigoya_room_0Set_000470DL_000660[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_000660; -#endif - -#define dmiharigoya_room_0Set_000470DL_002C60 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_002C60" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_room_0Set_000470DL_002C60[] = dmiharigoya_room_0Set_000470DL_002C60; -#else -static const char miharigoya_room_0Set_000470DL_002C60[] __attribute__((aligned (2))) = dmiharigoya_room_0Set_000470DL_002C60; -#endif - +#include "align_asset_macro.h" + +#define dgMiharigoyaBlob_0038D8 "__OTR__scenes/nonmq/miharigoya_room_0/gMiharigoyaBlob_0038D8" +static const ALIGN_ASSET(2) char gMiharigoyaBlob_0038D8[] = dgMiharigoyaBlob_0038D8; + +#define dmiharigoya_room_0DL_003820 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_003820" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_003820[] = dmiharigoya_room_0DL_003820; + +#define dmiharigoya_room_0DL_0036A8 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_0036A8" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_0036A8[] = dmiharigoya_room_0DL_0036A8; + +#define dmiharigoya_room_0DL_002F30 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_002F30" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_002F30[] = dmiharigoya_room_0DL_002F30; + +#define dmiharigoya_room_0DL_002A10 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_002A10" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_002A10[] = dmiharigoya_room_0DL_002A10; + +#define dmiharigoya_room_0DL_003490 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_003490" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_003490[] = dmiharigoya_room_0DL_003490; + +#define dmiharigoya_room_0DL_000FE0 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_000FE0" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_000FE0[] = dmiharigoya_room_0DL_000FE0; + +#define dmiharigoya_room_0DL_001F48 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_001F48" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_001F48[] = dmiharigoya_room_0DL_001F48; + +#define dmiharigoya_room_0DL_002778 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_002778" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_002778[] = dmiharigoya_room_0DL_002778; + +#define dmiharigoya_room_0DL_000A68 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_000A68" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_000A68[] = dmiharigoya_room_0DL_000A68; + +#define dmiharigoya_room_0DL_003C40 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_003C40" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_003C40[] = dmiharigoya_room_0DL_003C40; + +#define dmiharigoya_room_0DL_000E60 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_000E60" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_000E60[] = dmiharigoya_room_0DL_000E60; + +#define dmiharigoya_room_0DL_000660 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_000660" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_000660[] = dmiharigoya_room_0DL_000660; + +#define dmiharigoya_room_0DL_002C60 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0DL_002C60" +static const ALIGN_ASSET(2) char miharigoya_room_0DL_002C60[] = dmiharigoya_room_0DL_002C60; + +#define dgMiharigoyaDL_003DA0 "__OTR__scenes/nonmq/miharigoya_scene/gMiharigoyaDL_003DA0" +static const ALIGN_ASSET(2) char gMiharigoyaDL_003DA0[] = dgMiharigoyaDL_003DA0; + +#define dmiharigoya_room_0Set_000470DL_003820 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_003820" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_003820[] = dmiharigoya_room_0Set_000470DL_003820; + +#define dmiharigoya_room_0Set_000470DL_0036A8 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_0036A8" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_0036A8[] = dmiharigoya_room_0Set_000470DL_0036A8; + +#define dmiharigoya_room_0Set_000470DL_002F30 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_002F30" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_002F30[] = dmiharigoya_room_0Set_000470DL_002F30; + +#define dmiharigoya_room_0Set_000470DL_002A10 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_002A10" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_002A10[] = dmiharigoya_room_0Set_000470DL_002A10; + +#define dmiharigoya_room_0Set_000470DL_003490 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_003490" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_003490[] = dmiharigoya_room_0Set_000470DL_003490; + +#define dmiharigoya_room_0Set_000470DL_000FE0 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_000FE0" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_000FE0[] = dmiharigoya_room_0Set_000470DL_000FE0; + +#define dmiharigoya_room_0Set_000470DL_001F48 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_001F48" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_001F48[] = dmiharigoya_room_0Set_000470DL_001F48; + +#define dmiharigoya_room_0Set_000470DL_002778 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_002778" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_002778[] = dmiharigoya_room_0Set_000470DL_002778; + +#define dmiharigoya_room_0Set_000470DL_000A68 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_000A68" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_000A68[] = dmiharigoya_room_0Set_000470DL_000A68; + +#define dmiharigoya_room_0Set_000470DL_003C40 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_003C40" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_003C40[] = dmiharigoya_room_0Set_000470DL_003C40; + +#define dmiharigoya_room_0Set_000470DL_000E60 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_000E60" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_000E60[] = dmiharigoya_room_0Set_000470DL_000E60; + +#define dmiharigoya_room_0Set_000470DL_000660 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_000660" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_000660[] = dmiharigoya_room_0Set_000470DL_000660; + +#define dmiharigoya_room_0Set_000470DL_002C60 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_room_0Set_000470DL_002C60" +static const ALIGN_ASSET(2) char miharigoya_room_0Set_000470DL_002C60[] = dmiharigoya_room_0Set_000470DL_002C60; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/miharigoya/miharigoya_scene.h b/soh/assets/scenes/indoors/miharigoya/miharigoya_scene.h index 031dcc560..f23e977ca 100644 --- a/soh/assets/scenes/indoors/miharigoya/miharigoya_scene.h +++ b/soh/assets/scenes/indoors/miharigoya/miharigoya_scene.h @@ -1,136 +1,62 @@ #pragma once -#define dgGuardHouseOutSideView2NightTex "__OTR__scenes/nonmq/miharigoya_scene/gGuardHouseOutSideView2NightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuardHouseOutSideView2NightTex[] = dgGuardHouseOutSideView2NightTex; -#else -static const char gGuardHouseOutSideView2NightTex[] __attribute__((aligned (2))) = dgGuardHouseOutSideView2NightTex; -#endif - -#define dgGuardHouseOutSideView2DayTex "__OTR__scenes/nonmq/miharigoya_scene/gGuardHouseOutSideView2DayTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuardHouseOutSideView2DayTex[] = dgGuardHouseOutSideView2DayTex; -#else -static const char gGuardHouseOutSideView2DayTex[] __attribute__((aligned (2))) = dgGuardHouseOutSideView2DayTex; -#endif - -#define dgGuardHouseOutSideView1NightTex "__OTR__scenes/nonmq/miharigoya_scene/gGuardHouseOutSideView1NightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuardHouseOutSideView1NightTex[] = dgGuardHouseOutSideView1NightTex; -#else -static const char gGuardHouseOutSideView1NightTex[] __attribute__((aligned (2))) = dgGuardHouseOutSideView1NightTex; -#endif - -#define dgGuardHouseOutSideView1DayTex "__OTR__scenes/nonmq/miharigoya_scene/gGuardHouseOutSideView1DayTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGuardHouseOutSideView1DayTex[] = dgGuardHouseOutSideView1DayTex; -#else -static const char gGuardHouseOutSideView1DayTex[] __attribute__((aligned (2))) = dgGuardHouseOutSideView1DayTex; -#endif - -#define dmiharigoya_sceneCollisionHeader_000B28 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneCollisionHeader_000B28" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneCollisionHeader_000B28[] = dmiharigoya_sceneCollisionHeader_000B28; -#else -static const char miharigoya_sceneCollisionHeader_000B28[] __attribute__((aligned (2))) = dmiharigoya_sceneCollisionHeader_000B28; -#endif - -#define dmiharigoya_sceneTex_004950 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_004950" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_004950[] = dmiharigoya_sceneTex_004950; -#else -static const char miharigoya_sceneTex_004950[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_004950; -#endif - -#define dmiharigoya_sceneTex_004550 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_004550" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_004550[] = dmiharigoya_sceneTex_004550; -#else -static const char miharigoya_sceneTex_004550[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_004550; -#endif - -#define dmiharigoya_sceneTex_008550 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_008550" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_008550[] = dmiharigoya_sceneTex_008550; -#else -static const char miharigoya_sceneTex_008550[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_008550; -#endif - -#define dmiharigoya_sceneTex_008D50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_008D50" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_008D50[] = dmiharigoya_sceneTex_008D50; -#else -static const char miharigoya_sceneTex_008D50[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_008D50; -#endif - -#define dmiharigoya_sceneTex_007550 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_007550" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_007550[] = dmiharigoya_sceneTex_007550; -#else -static const char miharigoya_sceneTex_007550[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_007550; -#endif - -#define dmiharigoya_sceneTex_005950 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_005950" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_005950[] = dmiharigoya_sceneTex_005950; -#else -static const char miharigoya_sceneTex_005950[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_005950; -#endif - -#define dmiharigoya_sceneTex_00AD50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_00AD50" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_00AD50[] = dmiharigoya_sceneTex_00AD50; -#else -static const char miharigoya_sceneTex_00AD50[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_00AD50; -#endif - -#define dmiharigoya_sceneTex_003350 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_003350" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_003350[] = dmiharigoya_sceneTex_003350; -#else -static const char miharigoya_sceneTex_003350[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_003350; -#endif - -#define dmiharigoya_sceneTex_001050 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_001050" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_001050[] = dmiharigoya_sceneTex_001050; -#else -static const char miharigoya_sceneTex_001050[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_001050; -#endif - -#define dmiharigoya_sceneTex_009D50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_009D50" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_009D50[] = dmiharigoya_sceneTex_009D50; -#else -static const char miharigoya_sceneTex_009D50[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_009D50; -#endif - -#define dmiharigoya_sceneTex_005D50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_005D50" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_005D50[] = dmiharigoya_sceneTex_005D50; -#else -static const char miharigoya_sceneTex_005D50[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_005D50; -#endif - -#define dmiharigoya_sceneTex_001150 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_001150" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_001150[] = dmiharigoya_sceneTex_001150; -#else -static const char miharigoya_sceneTex_001150[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_001150; -#endif - -#define dmiharigoya_sceneTex_000C50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_000C50" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_000C50[] = dmiharigoya_sceneTex_000C50; -#else -static const char miharigoya_sceneTex_000C50[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_000C50; -#endif - -#define dmiharigoya_sceneTex_00BD50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_00BD50" -#ifdef _WIN32 -static const __declspec(align(2)) char miharigoya_sceneTex_00BD50[] = dmiharigoya_sceneTex_00BD50; -#else -static const char miharigoya_sceneTex_00BD50[] __attribute__((aligned (2))) = dmiharigoya_sceneTex_00BD50; -#endif - -#define dmiharigoya_sceneCollisionHeader_000B28 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneCollisionHeader_000B28" +#include "align_asset_macro.h" + +#define dgGuardHouseOutSideView2NightTex "__OTR__scenes/nonmq/miharigoya_scene/gGuardHouseOutSideView2NightTex" +static const ALIGN_ASSET(2) char gGuardHouseOutSideView2NightTex[] = dgGuardHouseOutSideView2NightTex; + +#define dgGuardHouseOutSideView2DayTex "__OTR__scenes/nonmq/miharigoya_scene/gGuardHouseOutSideView2DayTex" +static const ALIGN_ASSET(2) char gGuardHouseOutSideView2DayTex[] = dgGuardHouseOutSideView2DayTex; + +#define dgGuardHouseOutSideView1NightTex "__OTR__scenes/nonmq/miharigoya_scene/gGuardHouseOutSideView1NightTex" +static const ALIGN_ASSET(2) char gGuardHouseOutSideView1NightTex[] = dgGuardHouseOutSideView1NightTex; + +#define dgGuardHouseOutSideView1DayTex "__OTR__scenes/nonmq/miharigoya_scene/gGuardHouseOutSideView1DayTex" +static const ALIGN_ASSET(2) char gGuardHouseOutSideView1DayTex[] = dgGuardHouseOutSideView1DayTex; + +#define dmiharigoya_sceneCollisionHeader_000B28 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneCollisionHeader_000B28" +static const ALIGN_ASSET(2) char miharigoya_sceneCollisionHeader_000B28[] = dmiharigoya_sceneCollisionHeader_000B28; + +#define dmiharigoya_sceneTex_004950 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_004950" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_004950[] = dmiharigoya_sceneTex_004950; + +#define dmiharigoya_sceneTex_004550 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_004550" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_004550[] = dmiharigoya_sceneTex_004550; + +#define dmiharigoya_sceneTex_008550 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_008550" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_008550[] = dmiharigoya_sceneTex_008550; + +#define dmiharigoya_sceneTex_008D50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_008D50" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_008D50[] = dmiharigoya_sceneTex_008D50; + +#define dmiharigoya_sceneTex_007550 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_007550" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_007550[] = dmiharigoya_sceneTex_007550; + +#define dmiharigoya_sceneTex_005950 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_005950" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_005950[] = dmiharigoya_sceneTex_005950; + +#define dmiharigoya_sceneTex_00AD50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_00AD50" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_00AD50[] = dmiharigoya_sceneTex_00AD50; + +#define dmiharigoya_sceneTex_003350 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_003350" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_003350[] = dmiharigoya_sceneTex_003350; + +#define dmiharigoya_sceneTex_001050 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_001050" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_001050[] = dmiharigoya_sceneTex_001050; + +#define dmiharigoya_sceneTex_009D50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_009D50" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_009D50[] = dmiharigoya_sceneTex_009D50; + +#define dmiharigoya_sceneTex_005D50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_005D50" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_005D50[] = dmiharigoya_sceneTex_005D50; + +#define dmiharigoya_sceneTex_001150 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_001150" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_001150[] = dmiharigoya_sceneTex_001150; + +#define dmiharigoya_sceneTex_000C50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_000C50" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_000C50[] = dmiharigoya_sceneTex_000C50; + +#define dmiharigoya_sceneTex_00BD50 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneTex_00BD50" +static const ALIGN_ASSET(2) char miharigoya_sceneTex_00BD50[] = dmiharigoya_sceneTex_00BD50; + +#define dmiharigoya_sceneCollisionHeader_000B28 "__OTR__scenes/nonmq/miharigoya_scene/miharigoya_sceneCollisionHeader_000B28" \ No newline at end of file diff --git a/soh/assets/scenes/indoors/nakaniwa/nakaniwa_room_0.h b/soh/assets/scenes/indoors/nakaniwa/nakaniwa_room_0.h index 6ef649f24..3edbfb0cb 100644 --- a/soh/assets/scenes/indoors/nakaniwa/nakaniwa_room_0.h +++ b/soh/assets/scenes/indoors/nakaniwa/nakaniwa_room_0.h @@ -1,275 +1,120 @@ #pragma once -#define dnakaniwa_room_0DL_007178 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0DL_007178" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0DL_007178[] = dnakaniwa_room_0DL_007178; -#else -static const char nakaniwa_room_0DL_007178[] __attribute__((aligned (2))) = dnakaniwa_room_0DL_007178; -#endif - -#define dnakaniwa_room_0Tex_012618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_012618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_012618[] = dnakaniwa_room_0Tex_012618; -#else -static const char nakaniwa_room_0Tex_012618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_012618; -#endif - -#define dnakaniwa_room_0Tex_00F618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00F618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00F618[] = dnakaniwa_room_0Tex_00F618; -#else -static const char nakaniwa_room_0Tex_00F618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00F618; -#endif - -#define dnakaniwa_room_0Tex_00CE18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00CE18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00CE18[] = dnakaniwa_room_0Tex_00CE18; -#else -static const char nakaniwa_room_0Tex_00CE18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00CE18; -#endif - -#define dnakaniwa_room_0Tex_00C618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00C618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00C618[] = dnakaniwa_room_0Tex_00C618; -#else -static const char nakaniwa_room_0Tex_00C618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00C618; -#endif - -#define dnakaniwa_room_0Tex_00FE18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00FE18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00FE18[] = dnakaniwa_room_0Tex_00FE18; -#else -static const char nakaniwa_room_0Tex_00FE18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00FE18; -#endif - -#define dnakaniwa_room_0Tex_011E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_011E18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_011E18[] = dnakaniwa_room_0Tex_011E18; -#else -static const char nakaniwa_room_0Tex_011E18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_011E18; -#endif - -#define dnakaniwa_room_0Tex_010618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_010618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_010618[] = dnakaniwa_room_0Tex_010618; -#else -static const char nakaniwa_room_0Tex_010618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_010618; -#endif - -#define dnakaniwa_room_0Tex_00EE18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00EE18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00EE18[] = dnakaniwa_room_0Tex_00EE18; -#else -static const char nakaniwa_room_0Tex_00EE18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00EE18; -#endif - -#define dnakaniwa_room_0Tex_00DE18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00DE18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00DE18[] = dnakaniwa_room_0Tex_00DE18; -#else -static const char nakaniwa_room_0Tex_00DE18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00DE18; -#endif - -#define dnakaniwa_room_0Tex_008418 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_008418" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_008418[] = dnakaniwa_room_0Tex_008418; -#else -static const char nakaniwa_room_0Tex_008418[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_008418; -#endif - -#define dnakaniwa_room_0Tex_008218 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_008218" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_008218[] = dnakaniwa_room_0Tex_008218; -#else -static const char nakaniwa_room_0Tex_008218[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_008218; -#endif - -#define dnakaniwa_room_0Tex_007618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_007618[] = dnakaniwa_room_0Tex_007618; -#else -static const char nakaniwa_room_0Tex_007618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_007618; -#endif - -#define dnakaniwa_room_0Tex_007418 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_007418[] = dnakaniwa_room_0Tex_007418; -#else -static const char nakaniwa_room_0Tex_007418[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_007418; -#endif - -#define dnakaniwa_room_0Tex_007218 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007218" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_007218[] = dnakaniwa_room_0Tex_007218; -#else -static const char nakaniwa_room_0Tex_007218[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_007218; -#endif - -#define dnakaniwa_room_0Tex_007A18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007A18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_007A18[] = dnakaniwa_room_0Tex_007A18; -#else -static const char nakaniwa_room_0Tex_007A18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_007A18; -#endif - -#define dnakaniwa_room_0Tex_008618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_008618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_008618[] = dnakaniwa_room_0Tex_008618; -#else -static const char nakaniwa_room_0Tex_008618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_008618; -#endif - -#define dnakaniwa_room_0Tex_007818 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007818" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_007818[] = dnakaniwa_room_0Tex_007818; -#else -static const char nakaniwa_room_0Tex_007818[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_007818; -#endif - -#define dnakaniwa_room_0Tex_009E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_009E18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_009E18[] = dnakaniwa_room_0Tex_009E18; -#else -static const char nakaniwa_room_0Tex_009E18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_009E18; -#endif - -#define dnakaniwa_room_0Tex_00E618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00E618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00E618[] = dnakaniwa_room_0Tex_00E618; -#else -static const char nakaniwa_room_0Tex_00E618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00E618; -#endif - -#define dnakaniwa_room_0Tex_013618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_013618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_013618[] = dnakaniwa_room_0Tex_013618; -#else -static const char nakaniwa_room_0Tex_013618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_013618; -#endif - -#define dnakaniwa_room_0Tex_011618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_011618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_011618[] = dnakaniwa_room_0Tex_011618; -#else -static const char nakaniwa_room_0Tex_011618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_011618; -#endif - -#define dnakaniwa_room_0Tex_013E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_013E18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_013E18[] = dnakaniwa_room_0Tex_013E18; -#else -static const char nakaniwa_room_0Tex_013E18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_013E18; -#endif - -#define dnakaniwa_room_0Tex_010E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_010E18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_010E18[] = dnakaniwa_room_0Tex_010E18; -#else -static const char nakaniwa_room_0Tex_010E18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_010E18; -#endif - -#define dnakaniwa_room_0Tex_012E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_012E18[] = dnakaniwa_room_0Tex_012E18; -#else -static const char nakaniwa_room_0Tex_012E18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_012E18; -#endif - -#define dnakaniwa_room_0Tex_00B618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00B618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00B618[] = dnakaniwa_room_0Tex_00B618; -#else -static const char nakaniwa_room_0Tex_00B618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00B618; -#endif - -#define dnakaniwa_room_0Tex_00A618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00A618" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_00A618[] = dnakaniwa_room_0Tex_00A618; -#else -static const char nakaniwa_room_0Tex_00A618[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_00A618; -#endif - -#define dnakaniwa_room_0Tex_008E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_008E18" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_008E18[] = dnakaniwa_room_0Tex_008E18; -#else -static const char nakaniwa_room_0Tex_008E18[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_008E18; -#endif - -#define dnakaniwa_room_0DL_014E98 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0DL_014E98" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0DL_014E98[] = dnakaniwa_room_0DL_014E98; -#else -static const char nakaniwa_room_0DL_014E98[] __attribute__((aligned (2))) = dnakaniwa_room_0DL_014E98; -#endif - -#define dnakaniwa_room_0Tex_0166C0 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_0166C0" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_0166C0[] = dnakaniwa_room_0Tex_0166C0; -#else -static const char nakaniwa_room_0Tex_0166C0[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_0166C0; -#endif - -#define dnakaniwa_room_0Tex_016EC0 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_016EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_016EC0[] = dnakaniwa_room_0Tex_016EC0; -#else -static const char nakaniwa_room_0Tex_016EC0[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_016EC0; -#endif - -#define dnakaniwa_room_0Tex_0156C0 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_0156C0" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_0156C0[] = dnakaniwa_room_0Tex_0156C0; -#else -static const char nakaniwa_room_0Tex_0156C0[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_0156C0; -#endif - -#define dnakaniwa_room_0Tex_014EC0 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_014EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Tex_014EC0[] = dnakaniwa_room_0Tex_014EC0; -#else -static const char nakaniwa_room_0Tex_014EC0[] __attribute__((aligned (2))) = dnakaniwa_room_0Tex_014EC0; -#endif - -#define dnakaniwa_room_0Set_000120DL_007178 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_000120DL_007178" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Set_000120DL_007178[] = dnakaniwa_room_0Set_000120DL_007178; -#else -static const char nakaniwa_room_0Set_000120DL_007178[] __attribute__((aligned (2))) = dnakaniwa_room_0Set_000120DL_007178; -#endif - -#define dnakaniwa_room_0Set_000120DL_014E98 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_000120DL_014E98" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Set_000120DL_014E98[] = dnakaniwa_room_0Set_000120DL_014E98; -#else -static const char nakaniwa_room_0Set_000120DL_014E98[] __attribute__((aligned (2))) = dnakaniwa_room_0Set_000120DL_014E98; -#endif - -#define dnakaniwa_room_0Set_0001B0DL_007178 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_0001B0DL_007178" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Set_0001B0DL_007178[] = dnakaniwa_room_0Set_0001B0DL_007178; -#else -static const char nakaniwa_room_0Set_0001B0DL_007178[] __attribute__((aligned (2))) = dnakaniwa_room_0Set_0001B0DL_007178; -#endif - -#define dnakaniwa_room_0Set_0001B0DL_014E98 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_0001B0DL_014E98" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Set_0001B0DL_014E98[] = dnakaniwa_room_0Set_0001B0DL_014E98; -#else -static const char nakaniwa_room_0Set_0001B0DL_014E98[] __attribute__((aligned (2))) = dnakaniwa_room_0Set_0001B0DL_014E98; -#endif - -#define dnakaniwa_room_0Set_000240DL_007178 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_000240DL_007178" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Set_000240DL_007178[] = dnakaniwa_room_0Set_000240DL_007178; -#else -static const char nakaniwa_room_0Set_000240DL_007178[] __attribute__((aligned (2))) = dnakaniwa_room_0Set_000240DL_007178; -#endif - -#define dnakaniwa_room_0Set_000240DL_014E98 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_000240DL_014E98" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_room_0Set_000240DL_014E98[] = dnakaniwa_room_0Set_000240DL_014E98; -#else -static const char nakaniwa_room_0Set_000240DL_014E98[] __attribute__((aligned (2))) = dnakaniwa_room_0Set_000240DL_014E98; -#endif - +#include "align_asset_macro.h" + +#define dnakaniwa_room_0DL_007178 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0DL_007178" +static const ALIGN_ASSET(2) char nakaniwa_room_0DL_007178[] = dnakaniwa_room_0DL_007178; + +#define dnakaniwa_room_0Tex_012618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_012618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_012618[] = dnakaniwa_room_0Tex_012618; + +#define dnakaniwa_room_0Tex_00F618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00F618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00F618[] = dnakaniwa_room_0Tex_00F618; + +#define dnakaniwa_room_0Tex_00CE18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00CE18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00CE18[] = dnakaniwa_room_0Tex_00CE18; + +#define dnakaniwa_room_0Tex_00C618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00C618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00C618[] = dnakaniwa_room_0Tex_00C618; + +#define dnakaniwa_room_0Tex_00FE18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00FE18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00FE18[] = dnakaniwa_room_0Tex_00FE18; + +#define dnakaniwa_room_0Tex_011E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_011E18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_011E18[] = dnakaniwa_room_0Tex_011E18; + +#define dnakaniwa_room_0Tex_010618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_010618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_010618[] = dnakaniwa_room_0Tex_010618; + +#define dnakaniwa_room_0Tex_00EE18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00EE18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00EE18[] = dnakaniwa_room_0Tex_00EE18; + +#define dnakaniwa_room_0Tex_00DE18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00DE18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00DE18[] = dnakaniwa_room_0Tex_00DE18; + +#define dnakaniwa_room_0Tex_008418 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_008418" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_008418[] = dnakaniwa_room_0Tex_008418; + +#define dnakaniwa_room_0Tex_008218 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_008218" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_008218[] = dnakaniwa_room_0Tex_008218; + +#define dnakaniwa_room_0Tex_007618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_007618[] = dnakaniwa_room_0Tex_007618; + +#define dnakaniwa_room_0Tex_007418 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007418" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_007418[] = dnakaniwa_room_0Tex_007418; + +#define dnakaniwa_room_0Tex_007218 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007218" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_007218[] = dnakaniwa_room_0Tex_007218; + +#define dnakaniwa_room_0Tex_007A18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007A18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_007A18[] = dnakaniwa_room_0Tex_007A18; + +#define dnakaniwa_room_0Tex_008618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_008618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_008618[] = dnakaniwa_room_0Tex_008618; + +#define dnakaniwa_room_0Tex_007818 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_007818" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_007818[] = dnakaniwa_room_0Tex_007818; + +#define dnakaniwa_room_0Tex_009E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_009E18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_009E18[] = dnakaniwa_room_0Tex_009E18; + +#define dnakaniwa_room_0Tex_00E618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00E618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00E618[] = dnakaniwa_room_0Tex_00E618; + +#define dnakaniwa_room_0Tex_013618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_013618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_013618[] = dnakaniwa_room_0Tex_013618; + +#define dnakaniwa_room_0Tex_011618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_011618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_011618[] = dnakaniwa_room_0Tex_011618; + +#define dnakaniwa_room_0Tex_013E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_013E18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_013E18[] = dnakaniwa_room_0Tex_013E18; + +#define dnakaniwa_room_0Tex_010E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_010E18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_010E18[] = dnakaniwa_room_0Tex_010E18; + +#define dnakaniwa_room_0Tex_012E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_012E18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_012E18[] = dnakaniwa_room_0Tex_012E18; + +#define dnakaniwa_room_0Tex_00B618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00B618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00B618[] = dnakaniwa_room_0Tex_00B618; + +#define dnakaniwa_room_0Tex_00A618 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_00A618" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_00A618[] = dnakaniwa_room_0Tex_00A618; + +#define dnakaniwa_room_0Tex_008E18 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_008E18" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_008E18[] = dnakaniwa_room_0Tex_008E18; + +#define dnakaniwa_room_0DL_014E98 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0DL_014E98" +static const ALIGN_ASSET(2) char nakaniwa_room_0DL_014E98[] = dnakaniwa_room_0DL_014E98; + +#define dnakaniwa_room_0Tex_0166C0 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_0166C0" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_0166C0[] = dnakaniwa_room_0Tex_0166C0; + +#define dnakaniwa_room_0Tex_016EC0 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_016EC0" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_016EC0[] = dnakaniwa_room_0Tex_016EC0; + +#define dnakaniwa_room_0Tex_0156C0 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_0156C0" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_0156C0[] = dnakaniwa_room_0Tex_0156C0; + +#define dnakaniwa_room_0Tex_014EC0 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Tex_014EC0" +static const ALIGN_ASSET(2) char nakaniwa_room_0Tex_014EC0[] = dnakaniwa_room_0Tex_014EC0; + +#define dnakaniwa_room_0Set_000120DL_007178 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_000120DL_007178" +static const ALIGN_ASSET(2) char nakaniwa_room_0Set_000120DL_007178[] = dnakaniwa_room_0Set_000120DL_007178; + +#define dnakaniwa_room_0Set_000120DL_014E98 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_000120DL_014E98" +static const ALIGN_ASSET(2) char nakaniwa_room_0Set_000120DL_014E98[] = dnakaniwa_room_0Set_000120DL_014E98; + +#define dnakaniwa_room_0Set_0001B0DL_007178 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_0001B0DL_007178" +static const ALIGN_ASSET(2) char nakaniwa_room_0Set_0001B0DL_007178[] = dnakaniwa_room_0Set_0001B0DL_007178; + +#define dnakaniwa_room_0Set_0001B0DL_014E98 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_0001B0DL_014E98" +static const ALIGN_ASSET(2) char nakaniwa_room_0Set_0001B0DL_014E98[] = dnakaniwa_room_0Set_0001B0DL_014E98; + +#define dnakaniwa_room_0Set_000240DL_007178 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_000240DL_007178" +static const ALIGN_ASSET(2) char nakaniwa_room_0Set_000240DL_007178[] = dnakaniwa_room_0Set_000240DL_007178; + +#define dnakaniwa_room_0Set_000240DL_014E98 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_room_0Set_000240DL_014E98" +static const ALIGN_ASSET(2) char nakaniwa_room_0Set_000240DL_014E98[] = dnakaniwa_room_0Set_000240DL_014E98; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/nakaniwa/nakaniwa_scene.h b/soh/assets/scenes/indoors/nakaniwa/nakaniwa_scene.h index 30025b0bc..123004dbf 100644 --- a/soh/assets/scenes/indoors/nakaniwa/nakaniwa_scene.h +++ b/soh/assets/scenes/indoors/nakaniwa/nakaniwa_scene.h @@ -1,40 +1,24 @@ #pragma once + +#include "align_asset_macro.h" + #define dgZeldasCourtyardGanonCs "__OTR__scenes/nonmq/nakaniwa_scene/gZeldasCourtyardGanonCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasCourtyardGanonCs[] = dgZeldasCourtyardGanonCs; -#else -static const char gZeldasCourtyardGanonCs[] __attribute__((aligned (2))) = dgZeldasCourtyardGanonCs; -#endif - +static const ALIGN_ASSET(2) char gZeldasCourtyardGanonCs[] = dgZeldasCourtyardGanonCs; + #define dgZeldasCourtyardWindowCs "__OTR__scenes/nonmq/nakaniwa_scene/gZeldasCourtyardWindowCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasCourtyardWindowCs[] = dgZeldasCourtyardWindowCs; -#else -static const char gZeldasCourtyardWindowCs[] __attribute__((aligned (2))) = dgZeldasCourtyardWindowCs; -#endif - +static const ALIGN_ASSET(2) char gZeldasCourtyardWindowCs[] = dgZeldasCourtyardWindowCs; + #define dgZeldasCourtyardMeetCs "__OTR__scenes/nonmq/nakaniwa_scene/gZeldasCourtyardMeetCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasCourtyardMeetCs[] = dgZeldasCourtyardMeetCs; -#else -static const char gZeldasCourtyardMeetCs[] __attribute__((aligned (2))) = dgZeldasCourtyardMeetCs; -#endif - +static const ALIGN_ASSET(2) char gZeldasCourtyardMeetCs[] = dgZeldasCourtyardMeetCs; + #define dgZeldasCourtyardLullabyCs "__OTR__scenes/nonmq/nakaniwa_scene/gZeldasCourtyardLullabyCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasCourtyardLullabyCs[] = dgZeldasCourtyardLullabyCs; -#else -static const char gZeldasCourtyardLullabyCs[] __attribute__((aligned (2))) = dgZeldasCourtyardLullabyCs; -#endif - -#define dnakaniwa_sceneCollisionHeader_001BC8 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_sceneCollisionHeader_001BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char nakaniwa_sceneCollisionHeader_001BC8[] = dnakaniwa_sceneCollisionHeader_001BC8; -#else -static const char nakaniwa_sceneCollisionHeader_001BC8[] __attribute__((aligned (2))) = dnakaniwa_sceneCollisionHeader_001BC8; -#endif - -#define dnakaniwa_sceneCollisionHeader_001BC8 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_sceneCollisionHeader_001BC8" +static const ALIGN_ASSET(2) char gZeldasCourtyardLullabyCs[] = dgZeldasCourtyardLullabyCs; + #define dnakaniwa_sceneCollisionHeader_001BC8 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_sceneCollisionHeader_001BC8" +static const ALIGN_ASSET(2) char nakaniwa_sceneCollisionHeader_001BC8[] = dnakaniwa_sceneCollisionHeader_001BC8; + #define dnakaniwa_sceneCollisionHeader_001BC8 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_sceneCollisionHeader_001BC8" +#define dnakaniwa_sceneCollisionHeader_001BC8 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_sceneCollisionHeader_001BC8" + +#define dnakaniwa_sceneCollisionHeader_001BC8 "__OTR__scenes/nonmq/nakaniwa_scene/nakaniwa_sceneCollisionHeader_001BC8" \ No newline at end of file diff --git a/soh/assets/scenes/indoors/syatekijyou/syatekijyou_room_0.h b/soh/assets/scenes/indoors/syatekijyou/syatekijyou_room_0.h index 85846554b..8c287c712 100644 --- a/soh/assets/scenes/indoors/syatekijyou/syatekijyou_room_0.h +++ b/soh/assets/scenes/indoors/syatekijyou/syatekijyou_room_0.h @@ -1,58 +1,27 @@ #pragma once -#define dsyatekijyou_room_0DL_006548 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0DL_006548" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_room_0DL_006548[] = dsyatekijyou_room_0DL_006548; -#else -static const char syatekijyou_room_0DL_006548[] __attribute__((aligned (2))) = dsyatekijyou_room_0DL_006548; -#endif - -#define dsyatekijyou_room_0DL_0076D8 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0DL_0076D8" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_room_0DL_0076D8[] = dsyatekijyou_room_0DL_0076D8; -#else -static const char syatekijyou_room_0DL_0076D8[] __attribute__((aligned (2))) = dsyatekijyou_room_0DL_0076D8; -#endif - -#define dsyatekijyou_room_0Set_0000C0DL_006548 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0000C0DL_006548" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_room_0Set_0000C0DL_006548[] = dsyatekijyou_room_0Set_0000C0DL_006548; -#else -static const char syatekijyou_room_0Set_0000C0DL_006548[] __attribute__((aligned (2))) = dsyatekijyou_room_0Set_0000C0DL_006548; -#endif - -#define dsyatekijyou_room_0Set_0000C0DL_0076D8 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0000C0DL_0076D8" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_room_0Set_0000C0DL_0076D8[] = dsyatekijyou_room_0Set_0000C0DL_0076D8; -#else -static const char syatekijyou_room_0Set_0000C0DL_0076D8[] __attribute__((aligned (2))) = dsyatekijyou_room_0Set_0000C0DL_0076D8; -#endif - -#define dsyatekijyou_room_0Set_0000F0DL_006548 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0000F0DL_006548" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_room_0Set_0000F0DL_006548[] = dsyatekijyou_room_0Set_0000F0DL_006548; -#else -static const char syatekijyou_room_0Set_0000F0DL_006548[] __attribute__((aligned (2))) = dsyatekijyou_room_0Set_0000F0DL_006548; -#endif - -#define dsyatekijyou_room_0Set_0000F0DL_0076D8 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0000F0DL_0076D8" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_room_0Set_0000F0DL_0076D8[] = dsyatekijyou_room_0Set_0000F0DL_0076D8; -#else -static const char syatekijyou_room_0Set_0000F0DL_0076D8[] __attribute__((aligned (2))) = dsyatekijyou_room_0Set_0000F0DL_0076D8; -#endif - -#define dsyatekijyou_room_0Set_0001A0DL_006548 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0001A0DL_006548" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_room_0Set_0001A0DL_006548[] = dsyatekijyou_room_0Set_0001A0DL_006548; -#else -static const char syatekijyou_room_0Set_0001A0DL_006548[] __attribute__((aligned (2))) = dsyatekijyou_room_0Set_0001A0DL_006548; -#endif - -#define dsyatekijyou_room_0Set_0001A0DL_0076D8 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0001A0DL_0076D8" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_room_0Set_0001A0DL_0076D8[] = dsyatekijyou_room_0Set_0001A0DL_0076D8; -#else -static const char syatekijyou_room_0Set_0001A0DL_0076D8[] __attribute__((aligned (2))) = dsyatekijyou_room_0Set_0001A0DL_0076D8; -#endif - +#include "align_asset_macro.h" + +#define dsyatekijyou_room_0DL_006548 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0DL_006548" +static const ALIGN_ASSET(2) char syatekijyou_room_0DL_006548[] = dsyatekijyou_room_0DL_006548; + +#define dsyatekijyou_room_0DL_0076D8 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0DL_0076D8" +static const ALIGN_ASSET(2) char syatekijyou_room_0DL_0076D8[] = dsyatekijyou_room_0DL_0076D8; + +#define dsyatekijyou_room_0Set_0000C0DL_006548 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0000C0DL_006548" +static const ALIGN_ASSET(2) char syatekijyou_room_0Set_0000C0DL_006548[] = dsyatekijyou_room_0Set_0000C0DL_006548; + +#define dsyatekijyou_room_0Set_0000C0DL_0076D8 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0000C0DL_0076D8" +static const ALIGN_ASSET(2) char syatekijyou_room_0Set_0000C0DL_0076D8[] = dsyatekijyou_room_0Set_0000C0DL_0076D8; + +#define dsyatekijyou_room_0Set_0000F0DL_006548 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0000F0DL_006548" +static const ALIGN_ASSET(2) char syatekijyou_room_0Set_0000F0DL_006548[] = dsyatekijyou_room_0Set_0000F0DL_006548; + +#define dsyatekijyou_room_0Set_0000F0DL_0076D8 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0000F0DL_0076D8" +static const ALIGN_ASSET(2) char syatekijyou_room_0Set_0000F0DL_0076D8[] = dsyatekijyou_room_0Set_0000F0DL_0076D8; + +#define dsyatekijyou_room_0Set_0001A0DL_006548 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0001A0DL_006548" +static const ALIGN_ASSET(2) char syatekijyou_room_0Set_0001A0DL_006548[] = dsyatekijyou_room_0Set_0001A0DL_006548; + +#define dsyatekijyou_room_0Set_0001A0DL_0076D8 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_room_0Set_0001A0DL_0076D8" +static const ALIGN_ASSET(2) char syatekijyou_room_0Set_0001A0DL_0076D8[] = dsyatekijyou_room_0Set_0001A0DL_0076D8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/syatekijyou/syatekijyou_scene.h b/soh/assets/scenes/indoors/syatekijyou/syatekijyou_scene.h index 64fcbe574..7231bdb3e 100644 --- a/soh/assets/scenes/indoors/syatekijyou/syatekijyou_scene.h +++ b/soh/assets/scenes/indoors/syatekijyou/syatekijyou_scene.h @@ -1,166 +1,78 @@ #pragma once + +#include "align_asset_macro.h" + #define dsyatekijyou_sceneCollisionHeader_001420 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneCollisionHeader_001420" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneCollisionHeader_001420[] = dsyatekijyou_sceneCollisionHeader_001420; -#else -static const char syatekijyou_sceneCollisionHeader_001420[] __attribute__((aligned (2))) = dsyatekijyou_sceneCollisionHeader_001420; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneCollisionHeader_001420[] = dsyatekijyou_sceneCollisionHeader_001420; + #define dsyatekijyou_sceneTex_00A4C0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_00A4C0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_00A4C0[] = dsyatekijyou_sceneTex_00A4C0; -#else -static const char syatekijyou_sceneTex_00A4C0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_00A4C0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_00A4C0[] = dsyatekijyou_sceneTex_00A4C0; + #define dsyatekijyou_sceneTex_002740 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_002740" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_002740[] = dsyatekijyou_sceneTex_002740; -#else -static const char syatekijyou_sceneTex_002740[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_002740; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_002740[] = dsyatekijyou_sceneTex_002740; + #define dsyatekijyou_sceneTex_006CC0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_006CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_006CC0[] = dsyatekijyou_sceneTex_006CC0; -#else -static const char syatekijyou_sceneTex_006CC0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_006CC0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_006CC0[] = dsyatekijyou_sceneTex_006CC0; + #define dsyatekijyou_sceneTex_00B2C0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_00B2C0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_00B2C0[] = dsyatekijyou_sceneTex_00B2C0; -#else -static const char syatekijyou_sceneTex_00B2C0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_00B2C0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_00B2C0[] = dsyatekijyou_sceneTex_00B2C0; + #define dsyatekijyou_sceneTex_00B0C0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_00B0C0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_00B0C0[] = dsyatekijyou_sceneTex_00B0C0; -#else -static const char syatekijyou_sceneTex_00B0C0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_00B0C0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_00B0C0[] = dsyatekijyou_sceneTex_00B0C0; + #define dsyatekijyou_sceneTex_0054C0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_0054C0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_0054C0[] = dsyatekijyou_sceneTex_0054C0; -#else -static const char syatekijyou_sceneTex_0054C0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_0054C0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_0054C0[] = dsyatekijyou_sceneTex_0054C0; + #define dsyatekijyou_sceneTex_005CC0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_005CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_005CC0[] = dsyatekijyou_sceneTex_005CC0; -#else -static const char syatekijyou_sceneTex_005CC0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_005CC0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_005CC0[] = dsyatekijyou_sceneTex_005CC0; + #define dsyatekijyou_sceneTex_0041C0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_0041C0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_0041C0[] = dsyatekijyou_sceneTex_0041C0; -#else -static const char syatekijyou_sceneTex_0041C0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_0041C0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_0041C0[] = dsyatekijyou_sceneTex_0041C0; + #define dsyatekijyou_sceneTex_003DC0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_003DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_003DC0[] = dsyatekijyou_sceneTex_003DC0; -#else -static const char syatekijyou_sceneTex_003DC0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_003DC0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_003DC0[] = dsyatekijyou_sceneTex_003DC0; + #define dsyatekijyou_sceneTex_001D40 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_001D40" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_001D40[] = dsyatekijyou_sceneTex_001D40; -#else -static const char syatekijyou_sceneTex_001D40[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_001D40; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_001D40[] = dsyatekijyou_sceneTex_001D40; + #define dsyatekijyou_sceneTex_001C40 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_001C40" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_001C40[] = dsyatekijyou_sceneTex_001C40; -#else -static const char syatekijyou_sceneTex_001C40[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_001C40; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_001C40[] = dsyatekijyou_sceneTex_001C40; + #define dsyatekijyou_sceneTex_002140 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_002140" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_002140[] = dsyatekijyou_sceneTex_002140; -#else -static const char syatekijyou_sceneTex_002140[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_002140; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_002140[] = dsyatekijyou_sceneTex_002140; + #define dsyatekijyou_sceneTex_003940 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_003940" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_003940[] = dsyatekijyou_sceneTex_003940; -#else -static const char syatekijyou_sceneTex_003940[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_003940; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_003940[] = dsyatekijyou_sceneTex_003940; + #define dsyatekijyou_sceneTex_008CC0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_008CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_008CC0[] = dsyatekijyou_sceneTex_008CC0; -#else -static const char syatekijyou_sceneTex_008CC0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_008CC0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_008CC0[] = dsyatekijyou_sceneTex_008CC0; + #define dsyatekijyou_sceneTex_007CC0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_007CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_007CC0[] = dsyatekijyou_sceneTex_007CC0; -#else -static const char syatekijyou_sceneTex_007CC0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_007CC0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_007CC0[] = dsyatekijyou_sceneTex_007CC0; + #define dsyatekijyou_sceneTex_0051C0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_0051C0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_0051C0[] = dsyatekijyou_sceneTex_0051C0; -#else -static const char syatekijyou_sceneTex_0051C0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_0051C0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_0051C0[] = dsyatekijyou_sceneTex_0051C0; + #define dsyatekijyou_sceneTex_0052C0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_0052C0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_0052C0[] = dsyatekijyou_sceneTex_0052C0; -#else -static const char syatekijyou_sceneTex_0052C0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_0052C0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_0052C0[] = dsyatekijyou_sceneTex_0052C0; + #define dsyatekijyou_sceneTex_009CC0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_009CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_009CC0[] = dsyatekijyou_sceneTex_009CC0; -#else -static const char syatekijyou_sceneTex_009CC0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_009CC0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_009CC0[] = dsyatekijyou_sceneTex_009CC0; + #define dsyatekijyou_sceneTex_002540 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_002540" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_002540[] = dsyatekijyou_sceneTex_002540; -#else -static const char syatekijyou_sceneTex_002540[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_002540; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_002540[] = dsyatekijyou_sceneTex_002540; + #define dsyatekijyou_sceneTex_0039C0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_0039C0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_0039C0[] = dsyatekijyou_sceneTex_0039C0; -#else -static const char syatekijyou_sceneTex_0039C0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_0039C0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_0039C0[] = dsyatekijyou_sceneTex_0039C0; + #define dsyatekijyou_sceneTex_00ACC0 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_00ACC0" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_00ACC0[] = dsyatekijyou_sceneTex_00ACC0; -#else -static const char syatekijyou_sceneTex_00ACC0[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_00ACC0; -#endif - +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_00ACC0[] = dsyatekijyou_sceneTex_00ACC0; + #define dsyatekijyou_sceneTex_003740 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneTex_003740" -#ifdef _WIN32 -static const __declspec(align(2)) char syatekijyou_sceneTex_003740[] = dsyatekijyou_sceneTex_003740; -#else -static const char syatekijyou_sceneTex_003740[] __attribute__((aligned (2))) = dsyatekijyou_sceneTex_003740; -#endif - -#define dsyatekijyou_sceneCollisionHeader_001420 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneCollisionHeader_001420" -#define dsyatekijyou_sceneCollisionHeader_001420 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneCollisionHeader_001420" +static const ALIGN_ASSET(2) char syatekijyou_sceneTex_003740[] = dsyatekijyou_sceneTex_003740; + #define dsyatekijyou_sceneCollisionHeader_001420 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneCollisionHeader_001420" +#define dsyatekijyou_sceneCollisionHeader_001420 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneCollisionHeader_001420" + +#define dsyatekijyou_sceneCollisionHeader_001420 "__OTR__scenes/nonmq/syatekijyou_scene/syatekijyou_sceneCollisionHeader_001420" \ No newline at end of file diff --git a/soh/assets/scenes/indoors/takaraya/takaraya_room_0.h b/soh/assets/scenes/indoors/takaraya/takaraya_room_0.h index 7ca22ec9a..ccc14fe9d 100644 --- a/soh/assets/scenes/indoors/takaraya/takaraya_room_0.h +++ b/soh/assets/scenes/indoors/takaraya/takaraya_room_0.h @@ -1,86 +1,39 @@ #pragma once -#define dtakaraya_room_0DL_003B98 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0DL_003B98" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0DL_003B98[] = dtakaraya_room_0DL_003B98; -#else -static const char takaraya_room_0DL_003B98[] __attribute__((aligned (2))) = dtakaraya_room_0DL_003B98; -#endif - -#define dtakaraya_room_0Tex_0083E0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0083E0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_0083E0[] = dtakaraya_room_0Tex_0083E0; -#else -static const char takaraya_room_0Tex_0083E0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_0083E0; -#endif - -#define dtakaraya_room_0Tex_005BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_005BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_005BE0[] = dtakaraya_room_0Tex_005BE0; -#else -static const char takaraya_room_0Tex_005BE0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_005BE0; -#endif - -#define dtakaraya_room_0Tex_0073E0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0073E0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_0073E0[] = dtakaraya_room_0Tex_0073E0; -#else -static const char takaraya_room_0Tex_0073E0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_0073E0; -#endif - -#define dtakaraya_room_0Tex_006BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_006BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_006BE0[] = dtakaraya_room_0Tex_006BE0; -#else -static const char takaraya_room_0Tex_006BE0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_006BE0; -#endif - -#define dtakaraya_room_0Tex_004BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_004BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_004BE0[] = dtakaraya_room_0Tex_004BE0; -#else -static const char takaraya_room_0Tex_004BE0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_004BE0; -#endif - -#define dtakaraya_room_0Tex_0043E0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0043E0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_0043E0[] = dtakaraya_room_0Tex_0043E0; -#else -static const char takaraya_room_0Tex_0043E0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_0043E0; -#endif - -#define dtakaraya_room_0Tex_003BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_003BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_003BE0[] = dtakaraya_room_0Tex_003BE0; -#else -static const char takaraya_room_0Tex_003BE0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_003BE0; -#endif - -#define dtakaraya_room_0Tex_007BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_007BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_007BE0[] = dtakaraya_room_0Tex_007BE0; -#else -static const char takaraya_room_0Tex_007BE0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_007BE0; -#endif - -#define dtakaraya_room_0Tex_0063E0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0063E0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_0063E0[] = dtakaraya_room_0Tex_0063E0; -#else -static const char takaraya_room_0Tex_0063E0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_0063E0; -#endif - -#define dtakaraya_room_0DL_0095B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0DL_0095B0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0DL_0095B0[] = dtakaraya_room_0DL_0095B0; -#else -static const char takaraya_room_0DL_0095B0[] __attribute__((aligned (2))) = dtakaraya_room_0DL_0095B0; -#endif - -#define dtakaraya_room_0Tex_0095C0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0095C0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_0Tex_0095C0[] = dtakaraya_room_0Tex_0095C0; -#else -static const char takaraya_room_0Tex_0095C0[] __attribute__((aligned (2))) = dtakaraya_room_0Tex_0095C0; -#endif - +#include "align_asset_macro.h" + +#define dtakaraya_room_0DL_003B98 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0DL_003B98" +static const ALIGN_ASSET(2) char takaraya_room_0DL_003B98[] = dtakaraya_room_0DL_003B98; + +#define dtakaraya_room_0Tex_0083E0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0083E0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_0083E0[] = dtakaraya_room_0Tex_0083E0; + +#define dtakaraya_room_0Tex_005BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_005BE0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_005BE0[] = dtakaraya_room_0Tex_005BE0; + +#define dtakaraya_room_0Tex_0073E0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0073E0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_0073E0[] = dtakaraya_room_0Tex_0073E0; + +#define dtakaraya_room_0Tex_006BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_006BE0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_006BE0[] = dtakaraya_room_0Tex_006BE0; + +#define dtakaraya_room_0Tex_004BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_004BE0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_004BE0[] = dtakaraya_room_0Tex_004BE0; + +#define dtakaraya_room_0Tex_0043E0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0043E0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_0043E0[] = dtakaraya_room_0Tex_0043E0; + +#define dtakaraya_room_0Tex_003BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_003BE0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_003BE0[] = dtakaraya_room_0Tex_003BE0; + +#define dtakaraya_room_0Tex_007BE0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_007BE0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_007BE0[] = dtakaraya_room_0Tex_007BE0; + +#define dtakaraya_room_0Tex_0063E0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0063E0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_0063E0[] = dtakaraya_room_0Tex_0063E0; + +#define dtakaraya_room_0DL_0095B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0DL_0095B0" +static const ALIGN_ASSET(2) char takaraya_room_0DL_0095B0[] = dtakaraya_room_0DL_0095B0; + +#define dtakaraya_room_0Tex_0095C0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_0Tex_0095C0" +static const ALIGN_ASSET(2) char takaraya_room_0Tex_0095C0[] = dtakaraya_room_0Tex_0095C0; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/takaraya/takaraya_room_1.h b/soh/assets/scenes/indoors/takaraya/takaraya_room_1.h index e7d7c7b3a..060ff5ab5 100644 --- a/soh/assets/scenes/indoors/takaraya/takaraya_room_1.h +++ b/soh/assets/scenes/indoors/takaraya/takaraya_room_1.h @@ -1,16 +1,9 @@ #pragma once -#define dtakaraya_room_1DL_0017D0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_1DL_0017D0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_1DL_0017D0[] = dtakaraya_room_1DL_0017D0; -#else -static const char takaraya_room_1DL_0017D0[] __attribute__((aligned (2))) = dtakaraya_room_1DL_0017D0; -#endif - -#define dtakaraya_room_1Tex_0017F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_1Tex_0017F8" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_1Tex_0017F8[] = dtakaraya_room_1Tex_0017F8; -#else -static const char takaraya_room_1Tex_0017F8[] __attribute__((aligned (2))) = dtakaraya_room_1Tex_0017F8; -#endif - +#include "align_asset_macro.h" + +#define dtakaraya_room_1DL_0017D0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_1DL_0017D0" +static const ALIGN_ASSET(2) char takaraya_room_1DL_0017D0[] = dtakaraya_room_1DL_0017D0; + +#define dtakaraya_room_1Tex_0017F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_1Tex_0017F8" +static const ALIGN_ASSET(2) char takaraya_room_1Tex_0017F8[] = dtakaraya_room_1Tex_0017F8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/takaraya/takaraya_room_2.h b/soh/assets/scenes/indoors/takaraya/takaraya_room_2.h index ffcf20ea8..924053894 100644 --- a/soh/assets/scenes/indoors/takaraya/takaraya_room_2.h +++ b/soh/assets/scenes/indoors/takaraya/takaraya_room_2.h @@ -1,16 +1,9 @@ #pragma once -#define dtakaraya_room_2DL_001800 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_2DL_001800" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_2DL_001800[] = dtakaraya_room_2DL_001800; -#else -static const char takaraya_room_2DL_001800[] __attribute__((aligned (2))) = dtakaraya_room_2DL_001800; -#endif - -#define dtakaraya_room_2Tex_001828 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_2Tex_001828" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_2Tex_001828[] = dtakaraya_room_2Tex_001828; -#else -static const char takaraya_room_2Tex_001828[] __attribute__((aligned (2))) = dtakaraya_room_2Tex_001828; -#endif - +#include "align_asset_macro.h" + +#define dtakaraya_room_2DL_001800 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_2DL_001800" +static const ALIGN_ASSET(2) char takaraya_room_2DL_001800[] = dtakaraya_room_2DL_001800; + +#define dtakaraya_room_2Tex_001828 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_2Tex_001828" +static const ALIGN_ASSET(2) char takaraya_room_2Tex_001828[] = dtakaraya_room_2Tex_001828; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/takaraya/takaraya_room_3.h b/soh/assets/scenes/indoors/takaraya/takaraya_room_3.h index 04af3b7c9..40aa1ef19 100644 --- a/soh/assets/scenes/indoors/takaraya/takaraya_room_3.h +++ b/soh/assets/scenes/indoors/takaraya/takaraya_room_3.h @@ -1,23 +1,12 @@ #pragma once -#define dtakaraya_room_3DL_0017F0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_3DL_0017F0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_3DL_0017F0[] = dtakaraya_room_3DL_0017F0; -#else -static const char takaraya_room_3DL_0017F0[] __attribute__((aligned (2))) = dtakaraya_room_3DL_0017F0; -#endif - -#define dtakaraya_room_3Tex_002018 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_3Tex_002018" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_3Tex_002018[] = dtakaraya_room_3Tex_002018; -#else -static const char takaraya_room_3Tex_002018[] __attribute__((aligned (2))) = dtakaraya_room_3Tex_002018; -#endif - -#define dtakaraya_room_3Tex_001818 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_3Tex_001818" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_3Tex_001818[] = dtakaraya_room_3Tex_001818; -#else -static const char takaraya_room_3Tex_001818[] __attribute__((aligned (2))) = dtakaraya_room_3Tex_001818; -#endif - +#include "align_asset_macro.h" + +#define dtakaraya_room_3DL_0017F0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_3DL_0017F0" +static const ALIGN_ASSET(2) char takaraya_room_3DL_0017F0[] = dtakaraya_room_3DL_0017F0; + +#define dtakaraya_room_3Tex_002018 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_3Tex_002018" +static const ALIGN_ASSET(2) char takaraya_room_3Tex_002018[] = dtakaraya_room_3Tex_002018; + +#define dtakaraya_room_3Tex_001818 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_3Tex_001818" +static const ALIGN_ASSET(2) char takaraya_room_3Tex_001818[] = dtakaraya_room_3Tex_001818; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/takaraya/takaraya_room_4.h b/soh/assets/scenes/indoors/takaraya/takaraya_room_4.h index 9d350b8f0..705696054 100644 --- a/soh/assets/scenes/indoors/takaraya/takaraya_room_4.h +++ b/soh/assets/scenes/indoors/takaraya/takaraya_room_4.h @@ -1,30 +1,15 @@ #pragma once -#define dtakaraya_room_4DL_0017F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_4DL_0017F8" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_4DL_0017F8[] = dtakaraya_room_4DL_0017F8; -#else -static const char takaraya_room_4DL_0017F8[] __attribute__((aligned (2))) = dtakaraya_room_4DL_0017F8; -#endif - -#define dtakaraya_room_4Tex_002020 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_4Tex_002020" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_4Tex_002020[] = dtakaraya_room_4Tex_002020; -#else -static const char takaraya_room_4Tex_002020[] __attribute__((aligned (2))) = dtakaraya_room_4Tex_002020; -#endif - -#define dtakaraya_room_4Tex_002820 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_4Tex_002820" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_4Tex_002820[] = dtakaraya_room_4Tex_002820; -#else -static const char takaraya_room_4Tex_002820[] __attribute__((aligned (2))) = dtakaraya_room_4Tex_002820; -#endif - -#define dtakaraya_room_4Tex_001820 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_4Tex_001820" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_4Tex_001820[] = dtakaraya_room_4Tex_001820; -#else -static const char takaraya_room_4Tex_001820[] __attribute__((aligned (2))) = dtakaraya_room_4Tex_001820; -#endif - +#include "align_asset_macro.h" + +#define dtakaraya_room_4DL_0017F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_4DL_0017F8" +static const ALIGN_ASSET(2) char takaraya_room_4DL_0017F8[] = dtakaraya_room_4DL_0017F8; + +#define dtakaraya_room_4Tex_002020 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_4Tex_002020" +static const ALIGN_ASSET(2) char takaraya_room_4Tex_002020[] = dtakaraya_room_4Tex_002020; + +#define dtakaraya_room_4Tex_002820 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_4Tex_002820" +static const ALIGN_ASSET(2) char takaraya_room_4Tex_002820[] = dtakaraya_room_4Tex_002820; + +#define dtakaraya_room_4Tex_001820 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_4Tex_001820" +static const ALIGN_ASSET(2) char takaraya_room_4Tex_001820[] = dtakaraya_room_4Tex_001820; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/takaraya/takaraya_room_5.h b/soh/assets/scenes/indoors/takaraya/takaraya_room_5.h index 645cdecb0..b0695a0d0 100644 --- a/soh/assets/scenes/indoors/takaraya/takaraya_room_5.h +++ b/soh/assets/scenes/indoors/takaraya/takaraya_room_5.h @@ -1,30 +1,15 @@ #pragma once -#define dtakaraya_room_5DL_0017D0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_5DL_0017D0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_5DL_0017D0[] = dtakaraya_room_5DL_0017D0; -#else -static const char takaraya_room_5DL_0017D0[] __attribute__((aligned (2))) = dtakaraya_room_5DL_0017D0; -#endif - -#define dtakaraya_room_5Tex_001FF8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_5Tex_001FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_5Tex_001FF8[] = dtakaraya_room_5Tex_001FF8; -#else -static const char takaraya_room_5Tex_001FF8[] __attribute__((aligned (2))) = dtakaraya_room_5Tex_001FF8; -#endif - -#define dtakaraya_room_5Tex_0017F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_5Tex_0017F8" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_5Tex_0017F8[] = dtakaraya_room_5Tex_0017F8; -#else -static const char takaraya_room_5Tex_0017F8[] __attribute__((aligned (2))) = dtakaraya_room_5Tex_0017F8; -#endif - -#define dtakaraya_room_5Tex_0027F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_5Tex_0027F8" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_5Tex_0027F8[] = dtakaraya_room_5Tex_0027F8; -#else -static const char takaraya_room_5Tex_0027F8[] __attribute__((aligned (2))) = dtakaraya_room_5Tex_0027F8; -#endif - +#include "align_asset_macro.h" + +#define dtakaraya_room_5DL_0017D0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_5DL_0017D0" +static const ALIGN_ASSET(2) char takaraya_room_5DL_0017D0[] = dtakaraya_room_5DL_0017D0; + +#define dtakaraya_room_5Tex_001FF8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_5Tex_001FF8" +static const ALIGN_ASSET(2) char takaraya_room_5Tex_001FF8[] = dtakaraya_room_5Tex_001FF8; + +#define dtakaraya_room_5Tex_0017F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_5Tex_0017F8" +static const ALIGN_ASSET(2) char takaraya_room_5Tex_0017F8[] = dtakaraya_room_5Tex_0017F8; + +#define dtakaraya_room_5Tex_0027F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_5Tex_0027F8" +static const ALIGN_ASSET(2) char takaraya_room_5Tex_0027F8[] = dtakaraya_room_5Tex_0027F8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/takaraya/takaraya_room_6.h b/soh/assets/scenes/indoors/takaraya/takaraya_room_6.h index 2af02c45d..d66b6ab80 100644 --- a/soh/assets/scenes/indoors/takaraya/takaraya_room_6.h +++ b/soh/assets/scenes/indoors/takaraya/takaraya_room_6.h @@ -1,30 +1,15 @@ #pragma once -#define dtakaraya_room_6DL_0012D0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_6DL_0012D0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_6DL_0012D0[] = dtakaraya_room_6DL_0012D0; -#else -static const char takaraya_room_6DL_0012D0[] __attribute__((aligned (2))) = dtakaraya_room_6DL_0012D0; -#endif - -#define dtakaraya_room_6Tex_0022F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_6Tex_0022F8" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_6Tex_0022F8[] = dtakaraya_room_6Tex_0022F8; -#else -static const char takaraya_room_6Tex_0022F8[] __attribute__((aligned (2))) = dtakaraya_room_6Tex_0022F8; -#endif - -#define dtakaraya_room_6Tex_0012F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_6Tex_0012F8" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_6Tex_0012F8[] = dtakaraya_room_6Tex_0012F8; -#else -static const char takaraya_room_6Tex_0012F8[] __attribute__((aligned (2))) = dtakaraya_room_6Tex_0012F8; -#endif - -#define dtakaraya_room_6Tex_001AF8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_6Tex_001AF8" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_room_6Tex_001AF8[] = dtakaraya_room_6Tex_001AF8; -#else -static const char takaraya_room_6Tex_001AF8[] __attribute__((aligned (2))) = dtakaraya_room_6Tex_001AF8; -#endif - +#include "align_asset_macro.h" + +#define dtakaraya_room_6DL_0012D0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_6DL_0012D0" +static const ALIGN_ASSET(2) char takaraya_room_6DL_0012D0[] = dtakaraya_room_6DL_0012D0; + +#define dtakaraya_room_6Tex_0022F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_6Tex_0022F8" +static const ALIGN_ASSET(2) char takaraya_room_6Tex_0022F8[] = dtakaraya_room_6Tex_0022F8; + +#define dtakaraya_room_6Tex_0012F8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_6Tex_0012F8" +static const ALIGN_ASSET(2) char takaraya_room_6Tex_0012F8[] = dtakaraya_room_6Tex_0012F8; + +#define dtakaraya_room_6Tex_001AF8 "__OTR__scenes/nonmq/takaraya_scene/takaraya_room_6Tex_001AF8" +static const ALIGN_ASSET(2) char takaraya_room_6Tex_001AF8[] = dtakaraya_room_6Tex_001AF8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/takaraya/takaraya_scene.h b/soh/assets/scenes/indoors/takaraya/takaraya_scene.h index 0d40b225b..43e963c41 100644 --- a/soh/assets/scenes/indoors/takaraya/takaraya_scene.h +++ b/soh/assets/scenes/indoors/takaraya/takaraya_scene.h @@ -1,37 +1,18 @@ #pragma once -#define dtakaraya_sceneCollisionHeader_005178 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneCollisionHeader_005178" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_sceneCollisionHeader_005178[] = dtakaraya_sceneCollisionHeader_005178; -#else -static const char takaraya_sceneCollisionHeader_005178[] __attribute__((aligned (2))) = dtakaraya_sceneCollisionHeader_005178; -#endif - -#define dtakaraya_sceneTex_0059B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneTex_0059B0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_sceneTex_0059B0[] = dtakaraya_sceneTex_0059B0; -#else -static const char takaraya_sceneTex_0059B0[] __attribute__((aligned (2))) = dtakaraya_sceneTex_0059B0; -#endif - -#define dtakaraya_sceneTex_0051B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneTex_0051B0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_sceneTex_0051B0[] = dtakaraya_sceneTex_0051B0; -#else -static const char takaraya_sceneTex_0051B0[] __attribute__((aligned (2))) = dtakaraya_sceneTex_0051B0; -#endif - -#define dtakaraya_sceneTex_0069B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneTex_0069B0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_sceneTex_0069B0[] = dtakaraya_sceneTex_0069B0; -#else -static const char takaraya_sceneTex_0069B0[] __attribute__((aligned (2))) = dtakaraya_sceneTex_0069B0; -#endif - -#define dtakaraya_sceneTex_0061B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneTex_0061B0" -#ifdef _WIN32 -static const __declspec(align(2)) char takaraya_sceneTex_0061B0[] = dtakaraya_sceneTex_0061B0; -#else -static const char takaraya_sceneTex_0061B0[] __attribute__((aligned (2))) = dtakaraya_sceneTex_0061B0; -#endif - +#include "align_asset_macro.h" + +#define dtakaraya_sceneCollisionHeader_005178 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneCollisionHeader_005178" +static const ALIGN_ASSET(2) char takaraya_sceneCollisionHeader_005178[] = dtakaraya_sceneCollisionHeader_005178; + +#define dtakaraya_sceneTex_0059B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneTex_0059B0" +static const ALIGN_ASSET(2) char takaraya_sceneTex_0059B0[] = dtakaraya_sceneTex_0059B0; + +#define dtakaraya_sceneTex_0051B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneTex_0051B0" +static const ALIGN_ASSET(2) char takaraya_sceneTex_0051B0[] = dtakaraya_sceneTex_0051B0; + +#define dtakaraya_sceneTex_0069B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneTex_0069B0" +static const ALIGN_ASSET(2) char takaraya_sceneTex_0069B0[] = dtakaraya_sceneTex_0069B0; + +#define dtakaraya_sceneTex_0061B0 "__OTR__scenes/nonmq/takaraya_scene/takaraya_sceneTex_0061B0" +static const ALIGN_ASSET(2) char takaraya_sceneTex_0061B0[] = dtakaraya_sceneTex_0061B0; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/tent/tent_room_0.h b/soh/assets/scenes/indoors/tent/tent_room_0.h index 5928d1b27..d48bba9a5 100644 --- a/soh/assets/scenes/indoors/tent/tent_room_0.h +++ b/soh/assets/scenes/indoors/tent/tent_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dtent_room_0DL_00DE30 "__OTR__scenes/nonmq/tent_scene/tent_room_0DL_00DE30" -#ifdef _WIN32 -static const __declspec(align(2)) char tent_room_0DL_00DE30[] = dtent_room_0DL_00DE30; -#else -static const char tent_room_0DL_00DE30[] __attribute__((aligned (2))) = dtent_room_0DL_00DE30; -#endif - +#include "align_asset_macro.h" + +#define dtent_room_0DL_00DE30 "__OTR__scenes/nonmq/tent_scene/tent_room_0DL_00DE30" +static const ALIGN_ASSET(2) char tent_room_0DL_00DE30[] = dtent_room_0DL_00DE30; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/tent/tent_scene.h b/soh/assets/scenes/indoors/tent/tent_scene.h index 46dbb7f09..06b796296 100644 --- a/soh/assets/scenes/indoors/tent/tent_scene.h +++ b/soh/assets/scenes/indoors/tent/tent_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dtent_sceneCollisionHeader_00064C "__OTR__scenes/nonmq/tent_scene/tent_sceneCollisionHeader_00064C" -#ifdef _WIN32 -static const __declspec(align(2)) char tent_sceneCollisionHeader_00064C[] = dtent_sceneCollisionHeader_00064C; -#else -static const char tent_sceneCollisionHeader_00064C[] __attribute__((aligned (2))) = dtent_sceneCollisionHeader_00064C; -#endif - +#include "align_asset_macro.h" + +#define dtent_sceneCollisionHeader_00064C "__OTR__scenes/nonmq/tent_scene/tent_sceneCollisionHeader_00064C" +static const ALIGN_ASSET(2) char tent_sceneCollisionHeader_00064C[] = dtent_sceneCollisionHeader_00064C; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/tokinoma/tokinoma_room_0.h b/soh/assets/scenes/indoors/tokinoma/tokinoma_room_0.h index 6b483f39d..21ef5e507 100644 --- a/soh/assets/scenes/indoors/tokinoma/tokinoma_room_0.h +++ b/soh/assets/scenes/indoors/tokinoma/tokinoma_room_0.h @@ -1,212 +1,93 @@ #pragma once -#define dtokinoma_room_0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0DL_008128[] = dtokinoma_room_0DL_008128; -#else -static const char tokinoma_room_0DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0DL_008128; -#endif - -#define dtokinoma_room_0Tex_0151D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0151D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0151D8[] = dtokinoma_room_0Tex_0151D8; -#else -static const char tokinoma_room_0Tex_0151D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0151D8; -#endif - -#define dtokinoma_room_0Tex_0169D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0169D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0169D8[] = dtokinoma_room_0Tex_0169D8; -#else -static const char tokinoma_room_0Tex_0169D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0169D8; -#endif - -#define dtokinoma_room_0Tex_0149D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0149D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0149D8[] = dtokinoma_room_0Tex_0149D8; -#else -static const char tokinoma_room_0Tex_0149D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0149D8; -#endif - -#define dtokinoma_room_0Tex_0161D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0161D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0161D8[] = dtokinoma_room_0Tex_0161D8; -#else -static const char tokinoma_room_0Tex_0161D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0161D8; -#endif - -#define dtokinoma_room_0Tex_0141D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0141D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0141D8[] = dtokinoma_room_0Tex_0141D8; -#else -static const char tokinoma_room_0Tex_0141D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0141D8; -#endif - -#define dtokinoma_room_0Tex_0159D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0159D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0159D8[] = dtokinoma_room_0Tex_0159D8; -#else -static const char tokinoma_room_0Tex_0159D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0159D8; -#endif - -#define dtokinoma_room_0Tex_0131D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0131D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0131D8[] = dtokinoma_room_0Tex_0131D8; -#else -static const char tokinoma_room_0Tex_0131D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0131D8; -#endif - -#define dtokinoma_room_0Tex_0121D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0121D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0121D8[] = dtokinoma_room_0Tex_0121D8; -#else -static const char tokinoma_room_0Tex_0121D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0121D8; -#endif - -#define dtokinoma_room_0Tex_0111D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0111D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0111D8[] = dtokinoma_room_0Tex_0111D8; -#else -static const char tokinoma_room_0Tex_0111D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0111D8; -#endif - -#define dtokinoma_room_0Tex_0101D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0101D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0101D8[] = dtokinoma_room_0Tex_0101D8; -#else -static const char tokinoma_room_0Tex_0101D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0101D8; -#endif - -#define dtokinoma_room_0Tex_00F1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00F1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_00F1D8[] = dtokinoma_room_0Tex_00F1D8; -#else -static const char tokinoma_room_0Tex_00F1D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_00F1D8; -#endif - -#define dtokinoma_room_0Tex_00E1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00E1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_00E1D8[] = dtokinoma_room_0Tex_00E1D8; -#else -static const char tokinoma_room_0Tex_00E1D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_00E1D8; -#endif - -#define dtokinoma_room_0Tex_00D1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00D1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_00D1D8[] = dtokinoma_room_0Tex_00D1D8; -#else -static const char tokinoma_room_0Tex_00D1D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_00D1D8; -#endif - -#define dtokinoma_room_0Tex_00C1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00C1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_00C1D8[] = dtokinoma_room_0Tex_00C1D8; -#else -static const char tokinoma_room_0Tex_00C1D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_00C1D8; -#endif - -#define dtokinoma_room_0Tex_00B1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00B1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_00B1D8[] = dtokinoma_room_0Tex_00B1D8; -#else -static const char tokinoma_room_0Tex_00B1D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_00B1D8; -#endif - -#define dtokinoma_room_0Tex_00A1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00A1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_00A1D8[] = dtokinoma_room_0Tex_00A1D8; -#else -static const char tokinoma_room_0Tex_00A1D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_00A1D8; -#endif - -#define dtokinoma_room_0Tex_0091D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0091D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0091D8[] = dtokinoma_room_0Tex_0091D8; -#else -static const char tokinoma_room_0Tex_0091D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0091D8; -#endif - -#define dtokinoma_room_0Tex_0081D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0081D8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Tex_0081D8[] = dtokinoma_room_0Tex_0081D8; -#else -static const char tokinoma_room_0Tex_0081D8[] __attribute__((aligned (2))) = dtokinoma_room_0Tex_0081D8; -#endif - -#define dtokinoma_room_0Set_000120DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000120DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_000120DL_008128[] = dtokinoma_room_0Set_000120DL_008128; -#else -static const char tokinoma_room_0Set_000120DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_000120DL_008128; -#endif - -#define dtokinoma_room_0Set_0001E0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0001E0DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_0001E0DL_008128[] = dtokinoma_room_0Set_0001E0DL_008128; -#else -static const char tokinoma_room_0Set_0001E0DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_0001E0DL_008128; -#endif - -#define dtokinoma_room_0Set_0002F0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0002F0DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_0002F0DL_008128[] = dtokinoma_room_0Set_0002F0DL_008128; -#else -static const char tokinoma_room_0Set_0002F0DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_0002F0DL_008128; -#endif - -#define dtokinoma_room_0Set_0003B0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0003B0DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_0003B0DL_008128[] = dtokinoma_room_0Set_0003B0DL_008128; -#else -static const char tokinoma_room_0Set_0003B0DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_0003B0DL_008128; -#endif - -#define dtokinoma_room_0Set_000430DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000430DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_000430DL_008128[] = dtokinoma_room_0Set_000430DL_008128; -#else -static const char tokinoma_room_0Set_000430DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_000430DL_008128; -#endif - -#define dtokinoma_room_0Set_0004B0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0004B0DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_0004B0DL_008128[] = dtokinoma_room_0Set_0004B0DL_008128; -#else -static const char tokinoma_room_0Set_0004B0DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_0004B0DL_008128; -#endif - -#define dtokinoma_room_0Set_000530DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000530DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_000530DL_008128[] = dtokinoma_room_0Set_000530DL_008128; -#else -static const char tokinoma_room_0Set_000530DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_000530DL_008128; -#endif - -#define dtokinoma_room_0Set_0005B0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0005B0DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_0005B0DL_008128[] = dtokinoma_room_0Set_0005B0DL_008128; -#else -static const char tokinoma_room_0Set_0005B0DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_0005B0DL_008128; -#endif - -#define dtokinoma_room_0Set_000610DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000610DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_000610DL_008128[] = dtokinoma_room_0Set_000610DL_008128; -#else -static const char tokinoma_room_0Set_000610DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_000610DL_008128; -#endif - -#define dtokinoma_room_0Set_000690DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000690DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_000690DL_008128[] = dtokinoma_room_0Set_000690DL_008128; -#else -static const char tokinoma_room_0Set_000690DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_000690DL_008128; -#endif - -#define dtokinoma_room_0Set_000270DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000270DL_008128" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_0Set_000270DL_008128[] = dtokinoma_room_0Set_000270DL_008128; -#else -static const char tokinoma_room_0Set_000270DL_008128[] __attribute__((aligned (2))) = dtokinoma_room_0Set_000270DL_008128; -#endif - +#include "align_asset_macro.h" + +#define dtokinoma_room_0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0DL_008128[] = dtokinoma_room_0DL_008128; + +#define dtokinoma_room_0Tex_0151D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0151D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0151D8[] = dtokinoma_room_0Tex_0151D8; + +#define dtokinoma_room_0Tex_0169D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0169D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0169D8[] = dtokinoma_room_0Tex_0169D8; + +#define dtokinoma_room_0Tex_0149D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0149D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0149D8[] = dtokinoma_room_0Tex_0149D8; + +#define dtokinoma_room_0Tex_0161D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0161D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0161D8[] = dtokinoma_room_0Tex_0161D8; + +#define dtokinoma_room_0Tex_0141D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0141D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0141D8[] = dtokinoma_room_0Tex_0141D8; + +#define dtokinoma_room_0Tex_0159D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0159D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0159D8[] = dtokinoma_room_0Tex_0159D8; + +#define dtokinoma_room_0Tex_0131D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0131D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0131D8[] = dtokinoma_room_0Tex_0131D8; + +#define dtokinoma_room_0Tex_0121D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0121D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0121D8[] = dtokinoma_room_0Tex_0121D8; + +#define dtokinoma_room_0Tex_0111D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0111D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0111D8[] = dtokinoma_room_0Tex_0111D8; + +#define dtokinoma_room_0Tex_0101D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0101D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0101D8[] = dtokinoma_room_0Tex_0101D8; + +#define dtokinoma_room_0Tex_00F1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00F1D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_00F1D8[] = dtokinoma_room_0Tex_00F1D8; + +#define dtokinoma_room_0Tex_00E1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00E1D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_00E1D8[] = dtokinoma_room_0Tex_00E1D8; + +#define dtokinoma_room_0Tex_00D1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00D1D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_00D1D8[] = dtokinoma_room_0Tex_00D1D8; + +#define dtokinoma_room_0Tex_00C1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00C1D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_00C1D8[] = dtokinoma_room_0Tex_00C1D8; + +#define dtokinoma_room_0Tex_00B1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00B1D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_00B1D8[] = dtokinoma_room_0Tex_00B1D8; + +#define dtokinoma_room_0Tex_00A1D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_00A1D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_00A1D8[] = dtokinoma_room_0Tex_00A1D8; + +#define dtokinoma_room_0Tex_0091D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0091D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0091D8[] = dtokinoma_room_0Tex_0091D8; + +#define dtokinoma_room_0Tex_0081D8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Tex_0081D8" +static const ALIGN_ASSET(2) char tokinoma_room_0Tex_0081D8[] = dtokinoma_room_0Tex_0081D8; + +#define dtokinoma_room_0Set_000120DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000120DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_000120DL_008128[] = dtokinoma_room_0Set_000120DL_008128; + +#define dtokinoma_room_0Set_0001E0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0001E0DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_0001E0DL_008128[] = dtokinoma_room_0Set_0001E0DL_008128; + +#define dtokinoma_room_0Set_0002F0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0002F0DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_0002F0DL_008128[] = dtokinoma_room_0Set_0002F0DL_008128; + +#define dtokinoma_room_0Set_0003B0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0003B0DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_0003B0DL_008128[] = dtokinoma_room_0Set_0003B0DL_008128; + +#define dtokinoma_room_0Set_000430DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000430DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_000430DL_008128[] = dtokinoma_room_0Set_000430DL_008128; + +#define dtokinoma_room_0Set_0004B0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0004B0DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_0004B0DL_008128[] = dtokinoma_room_0Set_0004B0DL_008128; + +#define dtokinoma_room_0Set_000530DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000530DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_000530DL_008128[] = dtokinoma_room_0Set_000530DL_008128; + +#define dtokinoma_room_0Set_0005B0DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_0005B0DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_0005B0DL_008128[] = dtokinoma_room_0Set_0005B0DL_008128; + +#define dtokinoma_room_0Set_000610DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000610DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_000610DL_008128[] = dtokinoma_room_0Set_000610DL_008128; + +#define dtokinoma_room_0Set_000690DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000690DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_000690DL_008128[] = dtokinoma_room_0Set_000690DL_008128; + +#define dtokinoma_room_0Set_000270DL_008128 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_0Set_000270DL_008128" +static const ALIGN_ASSET(2) char tokinoma_room_0Set_000270DL_008128[] = dtokinoma_room_0Set_000270DL_008128; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/tokinoma/tokinoma_room_1.h b/soh/assets/scenes/indoors/tokinoma/tokinoma_room_1.h index b83104d61..81ee20fc2 100644 --- a/soh/assets/scenes/indoors/tokinoma/tokinoma_room_1.h +++ b/soh/assets/scenes/indoors/tokinoma/tokinoma_room_1.h @@ -1,212 +1,93 @@ #pragma once -#define dtokinoma_room_1DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1DL_0053E0[] = dtokinoma_room_1DL_0053E0; -#else -static const char tokinoma_room_1DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1DL_0053E0; -#endif - -#define dtokinoma_room_1Tex_005858 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_005858" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Tex_005858[] = dtokinoma_room_1Tex_005858; -#else -static const char tokinoma_room_1Tex_005858[] __attribute__((aligned (2))) = dtokinoma_room_1Tex_005858; -#endif - -#define dtokinoma_room_1Tex_005658 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_005658" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Tex_005658[] = dtokinoma_room_1Tex_005658; -#else -static const char tokinoma_room_1Tex_005658[] __attribute__((aligned (2))) = dtokinoma_room_1Tex_005658; -#endif - -#define dtokinoma_room_1Tex_005458 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_005458" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Tex_005458[] = dtokinoma_room_1Tex_005458; -#else -static const char tokinoma_room_1Tex_005458[] __attribute__((aligned (2))) = dtokinoma_room_1Tex_005458; -#endif - -#define dtokinoma_room_1DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1DL_006470[] = dtokinoma_room_1DL_006470; -#else -static const char tokinoma_room_1DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1DL_006470; -#endif - -#define dtokinoma_room_1Tex_0068C8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_0068C8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Tex_0068C8[] = dtokinoma_room_1Tex_0068C8; -#else -static const char tokinoma_room_1Tex_0068C8[] __attribute__((aligned (2))) = dtokinoma_room_1Tex_0068C8; -#endif - -#define dtokinoma_room_1Tex_0064C8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_0064C8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Tex_0064C8[] = dtokinoma_room_1Tex_0064C8; -#else -static const char tokinoma_room_1Tex_0064C8[] __attribute__((aligned (2))) = dtokinoma_room_1Tex_0064C8; -#endif - -#define dtokinoma_room_1Tex_006488 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_006488" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Tex_006488[] = dtokinoma_room_1Tex_006488; -#else -static const char tokinoma_room_1Tex_006488[] __attribute__((aligned (2))) = dtokinoma_room_1Tex_006488; -#endif - -#define dtokinoma_room_1Set_000150DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000150DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000150DL_0053E0[] = dtokinoma_room_1Set_000150DL_0053E0; -#else -static const char tokinoma_room_1Set_000150DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000150DL_0053E0; -#endif - -#define dtokinoma_room_1Set_000150DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000150DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000150DL_006470[] = dtokinoma_room_1Set_000150DL_006470; -#else -static const char tokinoma_room_1Set_000150DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000150DL_006470; -#endif - -#define dtokinoma_room_1Set_000240DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000240DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000240DL_0053E0[] = dtokinoma_room_1Set_000240DL_0053E0; -#else -static const char tokinoma_room_1Set_000240DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000240DL_0053E0; -#endif - -#define dtokinoma_room_1Set_000240DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000240DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000240DL_006470[] = dtokinoma_room_1Set_000240DL_006470; -#else -static const char tokinoma_room_1Set_000240DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000240DL_006470; -#endif - -#define dtokinoma_room_1Set_000370DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000370DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000370DL_0053E0[] = dtokinoma_room_1Set_000370DL_0053E0; -#else -static const char tokinoma_room_1Set_000370DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000370DL_0053E0; -#endif - -#define dtokinoma_room_1Set_000370DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000370DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000370DL_006470[] = dtokinoma_room_1Set_000370DL_006470; -#else -static const char tokinoma_room_1Set_000370DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000370DL_006470; -#endif - -#define dtokinoma_room_1Set_000460DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000460DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000460DL_0053E0[] = dtokinoma_room_1Set_000460DL_0053E0; -#else -static const char tokinoma_room_1Set_000460DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000460DL_0053E0; -#endif - -#define dtokinoma_room_1Set_000460DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000460DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000460DL_006470[] = dtokinoma_room_1Set_000460DL_006470; -#else -static const char tokinoma_room_1Set_000460DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000460DL_006470; -#endif - -#define dtokinoma_room_1Set_000520DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000520DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000520DL_0053E0[] = dtokinoma_room_1Set_000520DL_0053E0; -#else -static const char tokinoma_room_1Set_000520DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000520DL_0053E0; -#endif - -#define dtokinoma_room_1Set_000520DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000520DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000520DL_006470[] = dtokinoma_room_1Set_000520DL_006470; -#else -static const char tokinoma_room_1Set_000520DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000520DL_006470; -#endif - -#define dtokinoma_room_1Set_0005D0DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0005D0DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_0005D0DL_0053E0[] = dtokinoma_room_1Set_0005D0DL_0053E0; -#else -static const char tokinoma_room_1Set_0005D0DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_0005D0DL_0053E0; -#endif - -#define dtokinoma_room_1Set_0005D0DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0005D0DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_0005D0DL_006470[] = dtokinoma_room_1Set_0005D0DL_006470; -#else -static const char tokinoma_room_1Set_0005D0DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_0005D0DL_006470; -#endif - -#define dtokinoma_room_1Set_000680DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000680DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000680DL_0053E0[] = dtokinoma_room_1Set_000680DL_0053E0; -#else -static const char tokinoma_room_1Set_000680DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000680DL_0053E0; -#endif - -#define dtokinoma_room_1Set_000680DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000680DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000680DL_006470[] = dtokinoma_room_1Set_000680DL_006470; -#else -static const char tokinoma_room_1Set_000680DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000680DL_006470; -#endif - -#define dtokinoma_room_1Set_000730DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000730DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000730DL_0053E0[] = dtokinoma_room_1Set_000730DL_0053E0; -#else -static const char tokinoma_room_1Set_000730DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000730DL_0053E0; -#endif - -#define dtokinoma_room_1Set_000730DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000730DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000730DL_006470[] = dtokinoma_room_1Set_000730DL_006470; -#else -static const char tokinoma_room_1Set_000730DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000730DL_006470; -#endif - -#define dtokinoma_room_1Set_0007F0DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0007F0DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_0007F0DL_0053E0[] = dtokinoma_room_1Set_0007F0DL_0053E0; -#else -static const char tokinoma_room_1Set_0007F0DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_0007F0DL_0053E0; -#endif - -#define dtokinoma_room_1Set_0007F0DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0007F0DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_0007F0DL_006470[] = dtokinoma_room_1Set_0007F0DL_006470; -#else -static const char tokinoma_room_1Set_0007F0DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_0007F0DL_006470; -#endif - -#define dtokinoma_room_1Set_000890DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000890DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000890DL_0053E0[] = dtokinoma_room_1Set_000890DL_0053E0; -#else -static const char tokinoma_room_1Set_000890DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000890DL_0053E0; -#endif - -#define dtokinoma_room_1Set_000890DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000890DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_000890DL_006470[] = dtokinoma_room_1Set_000890DL_006470; -#else -static const char tokinoma_room_1Set_000890DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_000890DL_006470; -#endif - -#define dtokinoma_room_1Set_0002B0DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0002B0DL_0053E0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_0002B0DL_0053E0[] = dtokinoma_room_1Set_0002B0DL_0053E0; -#else -static const char tokinoma_room_1Set_0002B0DL_0053E0[] __attribute__((aligned (2))) = dtokinoma_room_1Set_0002B0DL_0053E0; -#endif - -#define dtokinoma_room_1Set_0002B0DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0002B0DL_006470" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_room_1Set_0002B0DL_006470[] = dtokinoma_room_1Set_0002B0DL_006470; -#else -static const char tokinoma_room_1Set_0002B0DL_006470[] __attribute__((aligned (2))) = dtokinoma_room_1Set_0002B0DL_006470; -#endif - +#include "align_asset_macro.h" + +#define dtokinoma_room_1DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1DL_0053E0[] = dtokinoma_room_1DL_0053E0; + +#define dtokinoma_room_1Tex_005858 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_005858" +static const ALIGN_ASSET(2) char tokinoma_room_1Tex_005858[] = dtokinoma_room_1Tex_005858; + +#define dtokinoma_room_1Tex_005658 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_005658" +static const ALIGN_ASSET(2) char tokinoma_room_1Tex_005658[] = dtokinoma_room_1Tex_005658; + +#define dtokinoma_room_1Tex_005458 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_005458" +static const ALIGN_ASSET(2) char tokinoma_room_1Tex_005458[] = dtokinoma_room_1Tex_005458; + +#define dtokinoma_room_1DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1DL_006470[] = dtokinoma_room_1DL_006470; + +#define dtokinoma_room_1Tex_0068C8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_0068C8" +static const ALIGN_ASSET(2) char tokinoma_room_1Tex_0068C8[] = dtokinoma_room_1Tex_0068C8; + +#define dtokinoma_room_1Tex_0064C8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_0064C8" +static const ALIGN_ASSET(2) char tokinoma_room_1Tex_0064C8[] = dtokinoma_room_1Tex_0064C8; + +#define dtokinoma_room_1Tex_006488 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Tex_006488" +static const ALIGN_ASSET(2) char tokinoma_room_1Tex_006488[] = dtokinoma_room_1Tex_006488; + +#define dtokinoma_room_1Set_000150DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000150DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000150DL_0053E0[] = dtokinoma_room_1Set_000150DL_0053E0; + +#define dtokinoma_room_1Set_000150DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000150DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000150DL_006470[] = dtokinoma_room_1Set_000150DL_006470; + +#define dtokinoma_room_1Set_000240DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000240DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000240DL_0053E0[] = dtokinoma_room_1Set_000240DL_0053E0; + +#define dtokinoma_room_1Set_000240DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000240DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000240DL_006470[] = dtokinoma_room_1Set_000240DL_006470; + +#define dtokinoma_room_1Set_000370DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000370DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000370DL_0053E0[] = dtokinoma_room_1Set_000370DL_0053E0; + +#define dtokinoma_room_1Set_000370DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000370DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000370DL_006470[] = dtokinoma_room_1Set_000370DL_006470; + +#define dtokinoma_room_1Set_000460DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000460DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000460DL_0053E0[] = dtokinoma_room_1Set_000460DL_0053E0; + +#define dtokinoma_room_1Set_000460DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000460DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000460DL_006470[] = dtokinoma_room_1Set_000460DL_006470; + +#define dtokinoma_room_1Set_000520DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000520DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000520DL_0053E0[] = dtokinoma_room_1Set_000520DL_0053E0; + +#define dtokinoma_room_1Set_000520DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000520DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000520DL_006470[] = dtokinoma_room_1Set_000520DL_006470; + +#define dtokinoma_room_1Set_0005D0DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0005D0DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_0005D0DL_0053E0[] = dtokinoma_room_1Set_0005D0DL_0053E0; + +#define dtokinoma_room_1Set_0005D0DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0005D0DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_0005D0DL_006470[] = dtokinoma_room_1Set_0005D0DL_006470; + +#define dtokinoma_room_1Set_000680DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000680DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000680DL_0053E0[] = dtokinoma_room_1Set_000680DL_0053E0; + +#define dtokinoma_room_1Set_000680DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000680DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000680DL_006470[] = dtokinoma_room_1Set_000680DL_006470; + +#define dtokinoma_room_1Set_000730DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000730DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000730DL_0053E0[] = dtokinoma_room_1Set_000730DL_0053E0; + +#define dtokinoma_room_1Set_000730DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000730DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000730DL_006470[] = dtokinoma_room_1Set_000730DL_006470; + +#define dtokinoma_room_1Set_0007F0DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0007F0DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_0007F0DL_0053E0[] = dtokinoma_room_1Set_0007F0DL_0053E0; + +#define dtokinoma_room_1Set_0007F0DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0007F0DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_0007F0DL_006470[] = dtokinoma_room_1Set_0007F0DL_006470; + +#define dtokinoma_room_1Set_000890DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000890DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000890DL_0053E0[] = dtokinoma_room_1Set_000890DL_0053E0; + +#define dtokinoma_room_1Set_000890DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_000890DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_000890DL_006470[] = dtokinoma_room_1Set_000890DL_006470; + +#define dtokinoma_room_1Set_0002B0DL_0053E0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0002B0DL_0053E0" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_0002B0DL_0053E0[] = dtokinoma_room_1Set_0002B0DL_0053E0; + +#define dtokinoma_room_1Set_0002B0DL_006470 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_room_1Set_0002B0DL_006470" +static const ALIGN_ASSET(2) char tokinoma_room_1Set_0002B0DL_006470[] = dtokinoma_room_1Set_0002B0DL_006470; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/tokinoma/tokinoma_scene.h b/soh/assets/scenes/indoors/tokinoma/tokinoma_scene.h index 808dd38f7..10cdd46ae 100644 --- a/soh/assets/scenes/indoors/tokinoma/tokinoma_scene.h +++ b/soh/assets/scenes/indoors/tokinoma/tokinoma_scene.h @@ -1,104 +1,64 @@ #pragma once + +#include "align_asset_macro.h" + #define dgTempleOfTimeFirstAdultCs "__OTR__scenes/nonmq/tokinoma_scene/gTempleOfTimeFirstAdultCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gTempleOfTimeFirstAdultCs[] = dgTempleOfTimeFirstAdultCs; -#else -static const char gTempleOfTimeFirstAdultCs[] __attribute__((aligned (2))) = dgTempleOfTimeFirstAdultCs; -#endif - +static const ALIGN_ASSET(2) char gTempleOfTimeFirstAdultCs[] = dgTempleOfTimeFirstAdultCs; + #define dgTempleOfTimePreludeCs "__OTR__scenes/nonmq/tokinoma_scene/gTempleOfTimePreludeCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gTempleOfTimePreludeCs[] = dgTempleOfTimePreludeCs; -#else -static const char gTempleOfTimePreludeCs[] __attribute__((aligned (2))) = dgTempleOfTimePreludeCs; -#endif - +static const ALIGN_ASSET(2) char gTempleOfTimePreludeCs[] = dgTempleOfTimePreludeCs; + #define dgTempleOfTimeIntroCs "__OTR__scenes/nonmq/tokinoma_scene/gTempleOfTimeIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gTempleOfTimeIntroCs[] = dgTempleOfTimeIntroCs; -#else -static const char gTempleOfTimeIntroCs[] __attribute__((aligned (2))) = dgTempleOfTimeIntroCs; -#endif - +static const ALIGN_ASSET(2) char gTempleOfTimeIntroCs[] = dgTempleOfTimeIntroCs; + #define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneCollisionHeader_0032F8[] = dtokinoma_sceneCollisionHeader_0032F8; -#else -static const char tokinoma_sceneCollisionHeader_0032F8[] __attribute__((aligned (2))) = dtokinoma_sceneCollisionHeader_0032F8; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneCollisionHeader_0032F8[] = dtokinoma_sceneCollisionHeader_0032F8; + #define dtokinoma_sceneTex_010FA0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_010FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_010FA0[] = dtokinoma_sceneTex_010FA0; -#else -static const char tokinoma_sceneTex_010FA0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_010FA0; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneTex_010FA0[] = dtokinoma_sceneTex_010FA0; + #define dtokinoma_sceneTex_011FA0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_011FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_011FA0[] = dtokinoma_sceneTex_011FA0; -#else -static const char tokinoma_sceneTex_011FA0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_011FA0; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneTex_011FA0[] = dtokinoma_sceneTex_011FA0; + #define dtokinoma_sceneTex_00DFA0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_00DFA0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_00DFA0[] = dtokinoma_sceneTex_00DFA0; -#else -static const char tokinoma_sceneTex_00DFA0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_00DFA0; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneTex_00DFA0[] = dtokinoma_sceneTex_00DFA0; + #define dtokinoma_sceneTex_00EFA0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_00EFA0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_00EFA0[] = dtokinoma_sceneTex_00EFA0; -#else -static const char tokinoma_sceneTex_00EFA0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_00EFA0; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneTex_00EFA0[] = dtokinoma_sceneTex_00EFA0; + #define dtokinoma_sceneTex_0107A0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_0107A0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_0107A0[] = dtokinoma_sceneTex_0107A0; -#else -static const char tokinoma_sceneTex_0107A0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_0107A0; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneTex_0107A0[] = dtokinoma_sceneTex_0107A0; + #define dtokinoma_sceneTex_00FFA0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_00FFA0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_00FFA0[] = dtokinoma_sceneTex_00FFA0; -#else -static const char tokinoma_sceneTex_00FFA0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_00FFA0; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneTex_00FFA0[] = dtokinoma_sceneTex_00FFA0; + #define dtokinoma_sceneTex_00D7A0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_00D7A0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_00D7A0[] = dtokinoma_sceneTex_00D7A0; -#else -static const char tokinoma_sceneTex_00D7A0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_00D7A0; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneTex_00D7A0[] = dtokinoma_sceneTex_00D7A0; + #define dtokinoma_sceneTex_00CFA0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_00CFA0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_00CFA0[] = dtokinoma_sceneTex_00CFA0; -#else -static const char tokinoma_sceneTex_00CFA0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_00CFA0; -#endif - +static const ALIGN_ASSET(2) char tokinoma_sceneTex_00CFA0[] = dtokinoma_sceneTex_00CFA0; + #define dtokinoma_sceneTex_0117A0 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneTex_0117A0" -#ifdef _WIN32 -static const __declspec(align(2)) char tokinoma_sceneTex_0117A0[] = dtokinoma_sceneTex_0117A0; -#else -static const char tokinoma_sceneTex_0117A0[] __attribute__((aligned (2))) = dtokinoma_sceneTex_0117A0; -#endif - -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" -#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" +static const ALIGN_ASSET(2) char tokinoma_sceneTex_0117A0[] = dtokinoma_sceneTex_0117A0; + #define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" + +#define dtokinoma_sceneCollisionHeader_0032F8 "__OTR__scenes/nonmq/tokinoma_scene/tokinoma_sceneCollisionHeader_0032F8" \ No newline at end of file diff --git a/soh/assets/scenes/indoors/yousei_izumi_tate/yousei_izumi_tate_room_0.h b/soh/assets/scenes/indoors/yousei_izumi_tate/yousei_izumi_tate_room_0.h index 2361a1d7b..18c5d3dec 100644 --- a/soh/assets/scenes/indoors/yousei_izumi_tate/yousei_izumi_tate_room_0.h +++ b/soh/assets/scenes/indoors/yousei_izumi_tate/yousei_izumi_tate_room_0.h @@ -1,16 +1,9 @@ #pragma once -#define dyousei_izumi_tate_room_0DL_002C10 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_room_0DL_002C10" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_room_0DL_002C10[] = dyousei_izumi_tate_room_0DL_002C10; -#else -static const char yousei_izumi_tate_room_0DL_002C10[] __attribute__((aligned (2))) = dyousei_izumi_tate_room_0DL_002C10; -#endif - -#define dyousei_izumi_tate_room_0DL_003FB0 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_room_0DL_003FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_room_0DL_003FB0[] = dyousei_izumi_tate_room_0DL_003FB0; -#else -static const char yousei_izumi_tate_room_0DL_003FB0[] __attribute__((aligned (2))) = dyousei_izumi_tate_room_0DL_003FB0; -#endif - +#include "align_asset_macro.h" + +#define dyousei_izumi_tate_room_0DL_002C10 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_room_0DL_002C10" +static const ALIGN_ASSET(2) char yousei_izumi_tate_room_0DL_002C10[] = dyousei_izumi_tate_room_0DL_002C10; + +#define dyousei_izumi_tate_room_0DL_003FB0 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_room_0DL_003FB0" +static const ALIGN_ASSET(2) char yousei_izumi_tate_room_0DL_003FB0[] = dyousei_izumi_tate_room_0DL_003FB0; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/yousei_izumi_tate/yousei_izumi_tate_scene.h b/soh/assets/scenes/indoors/yousei_izumi_tate/yousei_izumi_tate_scene.h index 026b01ab2..de01420dd 100644 --- a/soh/assets/scenes/indoors/yousei_izumi_tate/yousei_izumi_tate_scene.h +++ b/soh/assets/scenes/indoors/yousei_izumi_tate/yousei_izumi_tate_scene.h @@ -1,79 +1,36 @@ #pragma once -#define dyousei_izumi_tate_sceneCollisionHeader_001FDC "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneCollisionHeader_001FDC" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneCollisionHeader_001FDC[] = dyousei_izumi_tate_sceneCollisionHeader_001FDC; -#else -static const char yousei_izumi_tate_sceneCollisionHeader_001FDC[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneCollisionHeader_001FDC; -#endif - -#define dyousei_izumi_tate_sceneTex_008010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_008010" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_008010[] = dyousei_izumi_tate_sceneTex_008010; -#else -static const char yousei_izumi_tate_sceneTex_008010[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_008010; -#endif - -#define dyousei_izumi_tate_sceneTex_005010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_005010" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_005010[] = dyousei_izumi_tate_sceneTex_005010; -#else -static const char yousei_izumi_tate_sceneTex_005010[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_005010; -#endif - -#define dyousei_izumi_tate_sceneTex_004810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_004810" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_004810[] = dyousei_izumi_tate_sceneTex_004810; -#else -static const char yousei_izumi_tate_sceneTex_004810[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_004810; -#endif - -#define dyousei_izumi_tate_sceneTex_006010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_006010" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_006010[] = dyousei_izumi_tate_sceneTex_006010; -#else -static const char yousei_izumi_tate_sceneTex_006010[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_006010; -#endif - -#define dyousei_izumi_tate_sceneTex_002810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_002810" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_002810[] = dyousei_izumi_tate_sceneTex_002810; -#else -static const char yousei_izumi_tate_sceneTex_002810[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_002810; -#endif - -#define dyousei_izumi_tate_sceneTex_005810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_005810" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_005810[] = dyousei_izumi_tate_sceneTex_005810; -#else -static const char yousei_izumi_tate_sceneTex_005810[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_005810; -#endif - -#define dyousei_izumi_tate_sceneTex_007810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_007810[] = dyousei_izumi_tate_sceneTex_007810; -#else -static const char yousei_izumi_tate_sceneTex_007810[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_007810; -#endif - -#define dyousei_izumi_tate_sceneTex_007010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_007010" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_007010[] = dyousei_izumi_tate_sceneTex_007010; -#else -static const char yousei_izumi_tate_sceneTex_007010[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_007010; -#endif - -#define dyousei_izumi_tate_sceneTex_003810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_003810" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_003810[] = dyousei_izumi_tate_sceneTex_003810; -#else -static const char yousei_izumi_tate_sceneTex_003810[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_003810; -#endif - -#define dyousei_izumi_tate_sceneTex_002010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_002010" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_tate_sceneTex_002010[] = dyousei_izumi_tate_sceneTex_002010; -#else -static const char yousei_izumi_tate_sceneTex_002010[] __attribute__((aligned (2))) = dyousei_izumi_tate_sceneTex_002010; -#endif - +#include "align_asset_macro.h" + +#define dyousei_izumi_tate_sceneCollisionHeader_001FDC "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneCollisionHeader_001FDC" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneCollisionHeader_001FDC[] = dyousei_izumi_tate_sceneCollisionHeader_001FDC; + +#define dyousei_izumi_tate_sceneTex_008010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_008010" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_008010[] = dyousei_izumi_tate_sceneTex_008010; + +#define dyousei_izumi_tate_sceneTex_005010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_005010" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_005010[] = dyousei_izumi_tate_sceneTex_005010; + +#define dyousei_izumi_tate_sceneTex_004810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_004810" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_004810[] = dyousei_izumi_tate_sceneTex_004810; + +#define dyousei_izumi_tate_sceneTex_006010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_006010" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_006010[] = dyousei_izumi_tate_sceneTex_006010; + +#define dyousei_izumi_tate_sceneTex_002810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_002810" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_002810[] = dyousei_izumi_tate_sceneTex_002810; + +#define dyousei_izumi_tate_sceneTex_005810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_005810" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_005810[] = dyousei_izumi_tate_sceneTex_005810; + +#define dyousei_izumi_tate_sceneTex_007810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_007810" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_007810[] = dyousei_izumi_tate_sceneTex_007810; + +#define dyousei_izumi_tate_sceneTex_007010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_007010" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_007010[] = dyousei_izumi_tate_sceneTex_007010; + +#define dyousei_izumi_tate_sceneTex_003810 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_003810" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_003810[] = dyousei_izumi_tate_sceneTex_003810; + +#define dyousei_izumi_tate_sceneTex_002010 "__OTR__scenes/nonmq/yousei_izumi_tate_scene/yousei_izumi_tate_sceneTex_002010" +static const ALIGN_ASSET(2) char yousei_izumi_tate_sceneTex_002010[] = dyousei_izumi_tate_sceneTex_002010; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/yousei_izumi_yoko/yousei_izumi_yoko_room_0.h b/soh/assets/scenes/indoors/yousei_izumi_yoko/yousei_izumi_yoko_room_0.h index 5f18d5c59..f17deac07 100644 --- a/soh/assets/scenes/indoors/yousei_izumi_yoko/yousei_izumi_yoko_room_0.h +++ b/soh/assets/scenes/indoors/yousei_izumi_yoko/yousei_izumi_yoko_room_0.h @@ -1,58 +1,27 @@ #pragma once -#define dyousei_izumi_yoko_room_0DL_002B88 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0DL_002B88" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_room_0DL_002B88[] = dyousei_izumi_yoko_room_0DL_002B88; -#else -static const char yousei_izumi_yoko_room_0DL_002B88[] __attribute__((aligned (2))) = dyousei_izumi_yoko_room_0DL_002B88; -#endif - -#define dyousei_izumi_yoko_room_0DL_003FF8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0DL_003FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_room_0DL_003FF8[] = dyousei_izumi_yoko_room_0DL_003FF8; -#else -static const char yousei_izumi_yoko_room_0DL_003FF8[] __attribute__((aligned (2))) = dyousei_izumi_yoko_room_0DL_003FF8; -#endif - -#define dyousei_izumi_yoko_room_0Set_0000D0DL_002B88 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_0000D0DL_002B88" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_room_0Set_0000D0DL_002B88[] = dyousei_izumi_yoko_room_0Set_0000D0DL_002B88; -#else -static const char yousei_izumi_yoko_room_0Set_0000D0DL_002B88[] __attribute__((aligned (2))) = dyousei_izumi_yoko_room_0Set_0000D0DL_002B88; -#endif - -#define dyousei_izumi_yoko_room_0Set_0000D0DL_003FF8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_0000D0DL_003FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_room_0Set_0000D0DL_003FF8[] = dyousei_izumi_yoko_room_0Set_0000D0DL_003FF8; -#else -static const char yousei_izumi_yoko_room_0Set_0000D0DL_003FF8[] __attribute__((aligned (2))) = dyousei_izumi_yoko_room_0Set_0000D0DL_003FF8; -#endif - -#define dyousei_izumi_yoko_room_0Set_000170DL_002B88 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_000170DL_002B88" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_room_0Set_000170DL_002B88[] = dyousei_izumi_yoko_room_0Set_000170DL_002B88; -#else -static const char yousei_izumi_yoko_room_0Set_000170DL_002B88[] __attribute__((aligned (2))) = dyousei_izumi_yoko_room_0Set_000170DL_002B88; -#endif - -#define dyousei_izumi_yoko_room_0Set_000170DL_003FF8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_000170DL_003FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_room_0Set_000170DL_003FF8[] = dyousei_izumi_yoko_room_0Set_000170DL_003FF8; -#else -static const char yousei_izumi_yoko_room_0Set_000170DL_003FF8[] __attribute__((aligned (2))) = dyousei_izumi_yoko_room_0Set_000170DL_003FF8; -#endif - -#define dyousei_izumi_yoko_room_0Set_000210DL_002B88 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_000210DL_002B88" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_room_0Set_000210DL_002B88[] = dyousei_izumi_yoko_room_0Set_000210DL_002B88; -#else -static const char yousei_izumi_yoko_room_0Set_000210DL_002B88[] __attribute__((aligned (2))) = dyousei_izumi_yoko_room_0Set_000210DL_002B88; -#endif - -#define dyousei_izumi_yoko_room_0Set_000210DL_003FF8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_000210DL_003FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_room_0Set_000210DL_003FF8[] = dyousei_izumi_yoko_room_0Set_000210DL_003FF8; -#else -static const char yousei_izumi_yoko_room_0Set_000210DL_003FF8[] __attribute__((aligned (2))) = dyousei_izumi_yoko_room_0Set_000210DL_003FF8; -#endif - +#include "align_asset_macro.h" + +#define dyousei_izumi_yoko_room_0DL_002B88 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0DL_002B88" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_room_0DL_002B88[] = dyousei_izumi_yoko_room_0DL_002B88; + +#define dyousei_izumi_yoko_room_0DL_003FF8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0DL_003FF8" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_room_0DL_003FF8[] = dyousei_izumi_yoko_room_0DL_003FF8; + +#define dyousei_izumi_yoko_room_0Set_0000D0DL_002B88 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_0000D0DL_002B88" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_room_0Set_0000D0DL_002B88[] = dyousei_izumi_yoko_room_0Set_0000D0DL_002B88; + +#define dyousei_izumi_yoko_room_0Set_0000D0DL_003FF8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_0000D0DL_003FF8" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_room_0Set_0000D0DL_003FF8[] = dyousei_izumi_yoko_room_0Set_0000D0DL_003FF8; + +#define dyousei_izumi_yoko_room_0Set_000170DL_002B88 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_000170DL_002B88" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_room_0Set_000170DL_002B88[] = dyousei_izumi_yoko_room_0Set_000170DL_002B88; + +#define dyousei_izumi_yoko_room_0Set_000170DL_003FF8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_000170DL_003FF8" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_room_0Set_000170DL_003FF8[] = dyousei_izumi_yoko_room_0Set_000170DL_003FF8; + +#define dyousei_izumi_yoko_room_0Set_000210DL_002B88 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_000210DL_002B88" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_room_0Set_000210DL_002B88[] = dyousei_izumi_yoko_room_0Set_000210DL_002B88; + +#define dyousei_izumi_yoko_room_0Set_000210DL_003FF8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_room_0Set_000210DL_003FF8" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_room_0Set_000210DL_003FF8[] = dyousei_izumi_yoko_room_0Set_000210DL_003FF8; \ No newline at end of file diff --git a/soh/assets/scenes/indoors/yousei_izumi_yoko/yousei_izumi_yoko_scene.h b/soh/assets/scenes/indoors/yousei_izumi_yoko/yousei_izumi_yoko_scene.h index 8daf880dd..61fbcb0a0 100644 --- a/soh/assets/scenes/indoors/yousei_izumi_yoko/yousei_izumi_yoko_scene.h +++ b/soh/assets/scenes/indoors/yousei_izumi_yoko/yousei_izumi_yoko_scene.h @@ -1,124 +1,60 @@ #pragma once + +#include "align_asset_macro.h" + #define dgGreatFairyFaroresWindCs "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/gGreatFairyFaroresWindCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyFaroresWindCs[] = dgGreatFairyFaroresWindCs; -#else -static const char gGreatFairyFaroresWindCs[] __attribute__((aligned (2))) = dgGreatFairyFaroresWindCs; -#endif - +static const ALIGN_ASSET(2) char gGreatFairyFaroresWindCs[] = dgGreatFairyFaroresWindCs; + #define dgGreatFairyDinsFireCs "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/gGreatFairyDinsFireCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyDinsFireCs[] = dgGreatFairyDinsFireCs; -#else -static const char gGreatFairyDinsFireCs[] __attribute__((aligned (2))) = dgGreatFairyDinsFireCs; -#endif - +static const ALIGN_ASSET(2) char gGreatFairyDinsFireCs[] = dgGreatFairyDinsFireCs; + #define dgGreatFairyNayrusLoveCs "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/gGreatFairyNayrusLoveCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairyNayrusLoveCs[] = dgGreatFairyNayrusLoveCs; -#else -static const char gGreatFairyNayrusLoveCs[] __attribute__((aligned (2))) = dgGreatFairyNayrusLoveCs; -#endif - +static const ALIGN_ASSET(2) char gGreatFairyNayrusLoveCs[] = dgGreatFairyNayrusLoveCs; + #define dyousei_izumi_yoko_sceneCollisionHeader_0039A8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneCollisionHeader_0039A8" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneCollisionHeader_0039A8[] = dyousei_izumi_yoko_sceneCollisionHeader_0039A8; -#else -static const char yousei_izumi_yoko_sceneCollisionHeader_0039A8[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneCollisionHeader_0039A8; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneCollisionHeader_0039A8[] = dyousei_izumi_yoko_sceneCollisionHeader_0039A8; + #define dyousei_izumi_yoko_sceneTex_00C5A0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_00C5A0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_00C5A0[] = dyousei_izumi_yoko_sceneTex_00C5A0; -#else -static const char yousei_izumi_yoko_sceneTex_00C5A0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_00C5A0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_00C5A0[] = dyousei_izumi_yoko_sceneTex_00C5A0; + #define dyousei_izumi_yoko_sceneTex_0085A0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_0085A0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_0085A0[] = dyousei_izumi_yoko_sceneTex_0085A0; -#else -static const char yousei_izumi_yoko_sceneTex_0085A0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_0085A0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_0085A0[] = dyousei_izumi_yoko_sceneTex_0085A0; + #define dyousei_izumi_yoko_sceneTex_0075A0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_0075A0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_0075A0[] = dyousei_izumi_yoko_sceneTex_0075A0; -#else -static const char yousei_izumi_yoko_sceneTex_0075A0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_0075A0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_0075A0[] = dyousei_izumi_yoko_sceneTex_0075A0; + #define dyousei_izumi_yoko_sceneTex_0065A0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_0065A0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_0065A0[] = dyousei_izumi_yoko_sceneTex_0065A0; -#else -static const char yousei_izumi_yoko_sceneTex_0065A0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_0065A0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_0065A0[] = dyousei_izumi_yoko_sceneTex_0065A0; + #define dyousei_izumi_yoko_sceneTex_0045A0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_0045A0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_0045A0[] = dyousei_izumi_yoko_sceneTex_0045A0; -#else -static const char yousei_izumi_yoko_sceneTex_0045A0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_0045A0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_0045A0[] = dyousei_izumi_yoko_sceneTex_0045A0; + #define dyousei_izumi_yoko_sceneTex_009DA0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_009DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_009DA0[] = dyousei_izumi_yoko_sceneTex_009DA0; -#else -static const char yousei_izumi_yoko_sceneTex_009DA0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_009DA0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_009DA0[] = dyousei_izumi_yoko_sceneTex_009DA0; + #define dyousei_izumi_yoko_sceneTex_00BDA0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_00BDA0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_00BDA0[] = dyousei_izumi_yoko_sceneTex_00BDA0; -#else -static const char yousei_izumi_yoko_sceneTex_00BDA0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_00BDA0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_00BDA0[] = dyousei_izumi_yoko_sceneTex_00BDA0; + #define dyousei_izumi_yoko_sceneTex_0095A0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_0095A0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_0095A0[] = dyousei_izumi_yoko_sceneTex_0095A0; -#else -static const char yousei_izumi_yoko_sceneTex_0095A0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_0095A0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_0095A0[] = dyousei_izumi_yoko_sceneTex_0095A0; + #define dyousei_izumi_yoko_sceneTex_004DA0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_004DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_004DA0[] = dyousei_izumi_yoko_sceneTex_004DA0; -#else -static const char yousei_izumi_yoko_sceneTex_004DA0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_004DA0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_004DA0[] = dyousei_izumi_yoko_sceneTex_004DA0; + #define dyousei_izumi_yoko_sceneTex_003DA0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_003DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_003DA0[] = dyousei_izumi_yoko_sceneTex_003DA0; -#else -static const char yousei_izumi_yoko_sceneTex_003DA0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_003DA0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_003DA0[] = dyousei_izumi_yoko_sceneTex_003DA0; + #define dyousei_izumi_yoko_sceneTex_00ADA0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_00ADA0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_00ADA0[] = dyousei_izumi_yoko_sceneTex_00ADA0; -#else -static const char yousei_izumi_yoko_sceneTex_00ADA0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_00ADA0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_00ADA0[] = dyousei_izumi_yoko_sceneTex_00ADA0; + #define dyousei_izumi_yoko_sceneTex_00B5A0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_00B5A0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_00B5A0[] = dyousei_izumi_yoko_sceneTex_00B5A0; -#else -static const char yousei_izumi_yoko_sceneTex_00B5A0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_00B5A0; -#endif - +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_00B5A0[] = dyousei_izumi_yoko_sceneTex_00B5A0; + #define dyousei_izumi_yoko_sceneTex_0055A0 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneTex_0055A0" -#ifdef _WIN32 -static const __declspec(align(2)) char yousei_izumi_yoko_sceneTex_0055A0[] = dyousei_izumi_yoko_sceneTex_0055A0; -#else -static const char yousei_izumi_yoko_sceneTex_0055A0[] __attribute__((aligned (2))) = dyousei_izumi_yoko_sceneTex_0055A0; -#endif - -#define dyousei_izumi_yoko_sceneCollisionHeader_0039A8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneCollisionHeader_0039A8" -#define dyousei_izumi_yoko_sceneCollisionHeader_0039A8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneCollisionHeader_0039A8" +static const ALIGN_ASSET(2) char yousei_izumi_yoko_sceneTex_0055A0[] = dyousei_izumi_yoko_sceneTex_0055A0; + #define dyousei_izumi_yoko_sceneCollisionHeader_0039A8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneCollisionHeader_0039A8" +#define dyousei_izumi_yoko_sceneCollisionHeader_0039A8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneCollisionHeader_0039A8" + +#define dyousei_izumi_yoko_sceneCollisionHeader_0039A8 "__OTR__scenes/nonmq/yousei_izumi_yoko_scene/yousei_izumi_yoko_sceneCollisionHeader_0039A8" \ No newline at end of file diff --git a/soh/assets/scenes/misc/enrui/enrui_room_0.h b/soh/assets/scenes/misc/enrui/enrui_room_0.h index 0471aa6a6..ad81468bb 100644 --- a/soh/assets/scenes/misc/enrui/enrui_room_0.h +++ b/soh/assets/scenes/misc/enrui/enrui_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define denrui_room_0DL_000338 "__OTR__scenes/nonmq/enrui_scene/enrui_room_0DL_000338" -#ifdef _WIN32 -static const __declspec(align(2)) char enrui_room_0DL_000338[] = denrui_room_0DL_000338; -#else -static const char enrui_room_0DL_000338[] __attribute__((aligned (2))) = denrui_room_0DL_000338; -#endif - +#include "align_asset_macro.h" + +#define denrui_room_0DL_000338 "__OTR__scenes/nonmq/enrui_scene/enrui_room_0DL_000338" +static const ALIGN_ASSET(2) char enrui_room_0DL_000338[] = denrui_room_0DL_000338; \ No newline at end of file diff --git a/soh/assets/scenes/misc/enrui/enrui_scene.h b/soh/assets/scenes/misc/enrui/enrui_scene.h index a1ad4d866..31bab49dd 100644 --- a/soh/assets/scenes/misc/enrui/enrui_scene.h +++ b/soh/assets/scenes/misc/enrui/enrui_scene.h @@ -1,9 +1,6 @@ #pragma once -#define denrui_sceneCollisionHeader_0003B4 "__OTR__scenes/nonmq/enrui_scene/enrui_sceneCollisionHeader_0003B4" -#ifdef _WIN32 -static const __declspec(align(2)) char enrui_sceneCollisionHeader_0003B4[] = denrui_sceneCollisionHeader_0003B4; -#else -static const char enrui_sceneCollisionHeader_0003B4[] __attribute__((aligned (2))) = denrui_sceneCollisionHeader_0003B4; -#endif - +#include "align_asset_macro.h" + +#define denrui_sceneCollisionHeader_0003B4 "__OTR__scenes/nonmq/enrui_scene/enrui_sceneCollisionHeader_0003B4" +static const ALIGN_ASSET(2) char enrui_sceneCollisionHeader_0003B4[] = denrui_sceneCollisionHeader_0003B4; \ No newline at end of file diff --git a/soh/assets/scenes/misc/entra_n/entra_n_room_0.h b/soh/assets/scenes/misc/entra_n/entra_n_room_0.h index 4821803be..35911b8eb 100644 --- a/soh/assets/scenes/misc/entra_n/entra_n_room_0.h +++ b/soh/assets/scenes/misc/entra_n/entra_n_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dentra_n_room_0DL_000348 "__OTR__scenes/nonmq/entra_n_scene/entra_n_room_0DL_000348" -#ifdef _WIN32 -static const __declspec(align(2)) char entra_n_room_0DL_000348[] = dentra_n_room_0DL_000348; -#else -static const char entra_n_room_0DL_000348[] __attribute__((aligned (2))) = dentra_n_room_0DL_000348; -#endif - +#include "align_asset_macro.h" + +#define dentra_n_room_0DL_000348 "__OTR__scenes/nonmq/entra_n_scene/entra_n_room_0DL_000348" +static const ALIGN_ASSET(2) char entra_n_room_0DL_000348[] = dentra_n_room_0DL_000348; \ No newline at end of file diff --git a/soh/assets/scenes/misc/entra_n/entra_n_scene.h b/soh/assets/scenes/misc/entra_n/entra_n_scene.h index f975fbd99..d4989c045 100644 --- a/soh/assets/scenes/misc/entra_n/entra_n_scene.h +++ b/soh/assets/scenes/misc/entra_n/entra_n_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dentra_n_sceneCollisionHeader_0003F8 "__OTR__scenes/nonmq/entra_n_scene/entra_n_sceneCollisionHeader_0003F8" -#ifdef _WIN32 -static const __declspec(align(2)) char entra_n_sceneCollisionHeader_0003F8[] = dentra_n_sceneCollisionHeader_0003F8; -#else -static const char entra_n_sceneCollisionHeader_0003F8[] __attribute__((aligned (2))) = dentra_n_sceneCollisionHeader_0003F8; -#endif - +#include "align_asset_macro.h" + +#define dentra_n_sceneCollisionHeader_0003F8 "__OTR__scenes/nonmq/entra_n_scene/entra_n_sceneCollisionHeader_0003F8" +static const ALIGN_ASSET(2) char entra_n_sceneCollisionHeader_0003F8[] = dentra_n_sceneCollisionHeader_0003F8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hakaana/hakaana_room_0.h b/soh/assets/scenes/misc/hakaana/hakaana_room_0.h index 700e3b85b..723c65c48 100644 --- a/soh/assets/scenes/misc/hakaana/hakaana_room_0.h +++ b/soh/assets/scenes/misc/hakaana/hakaana_room_0.h @@ -1,86 +1,39 @@ #pragma once -#define dhakaana_room_0DL_002620 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0DL_002620" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0DL_002620[] = dhakaana_room_0DL_002620; -#else -static const char hakaana_room_0DL_002620[] __attribute__((aligned (2))) = dhakaana_room_0DL_002620; -#endif - -#define dhakaana_room_0Tex_005E58 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_005E58" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_005E58[] = dhakaana_room_0Tex_005E58; -#else -static const char hakaana_room_0Tex_005E58[] __attribute__((aligned (2))) = dhakaana_room_0Tex_005E58; -#endif - -#define dhakaana_room_0Tex_002658 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_002658" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_002658[] = dhakaana_room_0Tex_002658; -#else -static const char hakaana_room_0Tex_002658[] __attribute__((aligned (2))) = dhakaana_room_0Tex_002658; -#endif - -#define dhakaana_room_0Tex_005658 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_005658" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_005658[] = dhakaana_room_0Tex_005658; -#else -static const char hakaana_room_0Tex_005658[] __attribute__((aligned (2))) = dhakaana_room_0Tex_005658; -#endif - -#define dhakaana_room_0Tex_003E58 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_003E58" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_003E58[] = dhakaana_room_0Tex_003E58; -#else -static const char hakaana_room_0Tex_003E58[] __attribute__((aligned (2))) = dhakaana_room_0Tex_003E58; -#endif - -#define dhakaana_room_0Tex_004E58 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_004E58" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_004E58[] = dhakaana_room_0Tex_004E58; -#else -static const char hakaana_room_0Tex_004E58[] __attribute__((aligned (2))) = dhakaana_room_0Tex_004E58; -#endif - -#define dhakaana_room_0Tex_004658 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_004658" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_004658[] = dhakaana_room_0Tex_004658; -#else -static const char hakaana_room_0Tex_004658[] __attribute__((aligned (2))) = dhakaana_room_0Tex_004658; -#endif - -#define dhakaana_room_0Tex_002E58 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_002E58" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_002E58[] = dhakaana_room_0Tex_002E58; -#else -static const char hakaana_room_0Tex_002E58[] __attribute__((aligned (2))) = dhakaana_room_0Tex_002E58; -#endif - -#define dhakaana_room_0Tex_003658 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_003658" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_003658[] = dhakaana_room_0Tex_003658; -#else -static const char hakaana_room_0Tex_003658[] __attribute__((aligned (2))) = dhakaana_room_0Tex_003658; -#endif - -#define dhakaana_room_0Tex_003258 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_003258" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_003258[] = dhakaana_room_0Tex_003258; -#else -static const char hakaana_room_0Tex_003258[] __attribute__((aligned (2))) = dhakaana_room_0Tex_003258; -#endif - -#define dhakaana_room_0DL_0068B8 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0DL_0068B8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0DL_0068B8[] = dhakaana_room_0DL_0068B8; -#else -static const char hakaana_room_0DL_0068B8[] __attribute__((aligned (2))) = dhakaana_room_0DL_0068B8; -#endif - -#define dhakaana_room_0Tex_0068C8 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_0068C8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_room_0Tex_0068C8[] = dhakaana_room_0Tex_0068C8; -#else -static const char hakaana_room_0Tex_0068C8[] __attribute__((aligned (2))) = dhakaana_room_0Tex_0068C8; -#endif - +#include "align_asset_macro.h" + +#define dhakaana_room_0DL_002620 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0DL_002620" +static const ALIGN_ASSET(2) char hakaana_room_0DL_002620[] = dhakaana_room_0DL_002620; + +#define dhakaana_room_0Tex_005E58 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_005E58" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_005E58[] = dhakaana_room_0Tex_005E58; + +#define dhakaana_room_0Tex_002658 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_002658" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_002658[] = dhakaana_room_0Tex_002658; + +#define dhakaana_room_0Tex_005658 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_005658" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_005658[] = dhakaana_room_0Tex_005658; + +#define dhakaana_room_0Tex_003E58 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_003E58" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_003E58[] = dhakaana_room_0Tex_003E58; + +#define dhakaana_room_0Tex_004E58 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_004E58" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_004E58[] = dhakaana_room_0Tex_004E58; + +#define dhakaana_room_0Tex_004658 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_004658" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_004658[] = dhakaana_room_0Tex_004658; + +#define dhakaana_room_0Tex_002E58 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_002E58" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_002E58[] = dhakaana_room_0Tex_002E58; + +#define dhakaana_room_0Tex_003658 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_003658" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_003658[] = dhakaana_room_0Tex_003658; + +#define dhakaana_room_0Tex_003258 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_003258" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_003258[] = dhakaana_room_0Tex_003258; + +#define dhakaana_room_0DL_0068B8 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0DL_0068B8" +static const ALIGN_ASSET(2) char hakaana_room_0DL_0068B8[] = dhakaana_room_0DL_0068B8; + +#define dhakaana_room_0Tex_0068C8 "__OTR__scenes/nonmq/hakaana_scene/hakaana_room_0Tex_0068C8" +static const ALIGN_ASSET(2) char hakaana_room_0Tex_0068C8[] = dhakaana_room_0Tex_0068C8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hakaana/hakaana_scene.h b/soh/assets/scenes/misc/hakaana/hakaana_scene.h index 4ff0e332c..3ddc21fa8 100644 --- a/soh/assets/scenes/misc/hakaana/hakaana_scene.h +++ b/soh/assets/scenes/misc/hakaana/hakaana_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dhakaana_sceneCollisionHeader_000A60 "__OTR__scenes/nonmq/hakaana_scene/hakaana_sceneCollisionHeader_000A60" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_sceneCollisionHeader_000A60[] = dhakaana_sceneCollisionHeader_000A60; -#else -static const char hakaana_sceneCollisionHeader_000A60[] __attribute__((aligned (2))) = dhakaana_sceneCollisionHeader_000A60; -#endif - +#include "align_asset_macro.h" + +#define dhakaana_sceneCollisionHeader_000A60 "__OTR__scenes/nonmq/hakaana_scene/hakaana_sceneCollisionHeader_000A60" +static const ALIGN_ASSET(2) char hakaana_sceneCollisionHeader_000A60[] = dhakaana_sceneCollisionHeader_000A60; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hakaana2/hakaana2_room_0.h b/soh/assets/scenes/misc/hakaana2/hakaana2_room_0.h index 515d349a1..49607893a 100644 --- a/soh/assets/scenes/misc/hakaana2/hakaana2_room_0.h +++ b/soh/assets/scenes/misc/hakaana2/hakaana2_room_0.h @@ -1,16 +1,9 @@ #pragma once -#define dhakaana2_room_0DL_005DD8 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_room_0DL_005DD8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_room_0DL_005DD8[] = dhakaana2_room_0DL_005DD8; -#else -static const char hakaana2_room_0DL_005DD8[] __attribute__((aligned (2))) = dhakaana2_room_0DL_005DD8; -#endif - -#define dhakaana2_room_0DL_0067F8 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_room_0DL_0067F8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_room_0DL_0067F8[] = dhakaana2_room_0DL_0067F8; -#else -static const char hakaana2_room_0DL_0067F8[] __attribute__((aligned (2))) = dhakaana2_room_0DL_0067F8; -#endif - +#include "align_asset_macro.h" + +#define dhakaana2_room_0DL_005DD8 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_room_0DL_005DD8" +static const ALIGN_ASSET(2) char hakaana2_room_0DL_005DD8[] = dhakaana2_room_0DL_005DD8; + +#define dhakaana2_room_0DL_0067F8 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_room_0DL_0067F8" +static const ALIGN_ASSET(2) char hakaana2_room_0DL_0067F8[] = dhakaana2_room_0DL_0067F8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hakaana2/hakaana2_scene.h b/soh/assets/scenes/misc/hakaana2/hakaana2_scene.h index 83acadb84..793b37f3d 100644 --- a/soh/assets/scenes/misc/hakaana2/hakaana2_scene.h +++ b/soh/assets/scenes/misc/hakaana2/hakaana2_scene.h @@ -1,135 +1,60 @@ #pragma once -#define dhakaana2_sceneCollisionHeader_003058 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneCollisionHeader_003058" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneCollisionHeader_003058[] = dhakaana2_sceneCollisionHeader_003058; -#else -static const char hakaana2_sceneCollisionHeader_003058[] __attribute__((aligned (2))) = dhakaana2_sceneCollisionHeader_003058; -#endif - -#define dhakaana2_sceneTex_00A890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00A890" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_00A890[] = dhakaana2_sceneTex_00A890; -#else -static const char hakaana2_sceneTex_00A890[] __attribute__((aligned (2))) = dhakaana2_sceneTex_00A890; -#endif - -#define dhakaana2_sceneTex_00C890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00C890" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_00C890[] = dhakaana2_sceneTex_00C890; -#else -static const char hakaana2_sceneTex_00C890[] __attribute__((aligned (2))) = dhakaana2_sceneTex_00C890; -#endif - -#define dhakaana2_sceneTex_009890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_009890" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_009890[] = dhakaana2_sceneTex_009890; -#else -static const char hakaana2_sceneTex_009890[] __attribute__((aligned (2))) = dhakaana2_sceneTex_009890; -#endif - -#define dhakaana2_sceneTex_007090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_007090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_007090[] = dhakaana2_sceneTex_007090; -#else -static const char hakaana2_sceneTex_007090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_007090; -#endif - -#define dhakaana2_sceneTex_00A090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00A090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_00A090[] = dhakaana2_sceneTex_00A090; -#else -static const char hakaana2_sceneTex_00A090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_00A090; -#endif - -#define dhakaana2_sceneTex_009090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_009090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_009090[] = dhakaana2_sceneTex_009090; -#else -static const char hakaana2_sceneTex_009090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_009090; -#endif - -#define dhakaana2_sceneTex_00C090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00C090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_00C090[] = dhakaana2_sceneTex_00C090; -#else -static const char hakaana2_sceneTex_00C090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_00C090; -#endif - -#define dhakaana2_sceneTex_005890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_005890" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_005890[] = dhakaana2_sceneTex_005890; -#else -static const char hakaana2_sceneTex_005890[] __attribute__((aligned (2))) = dhakaana2_sceneTex_005890; -#endif - -#define dhakaana2_sceneTex_004890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_004890" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_004890[] = dhakaana2_sceneTex_004890; -#else -static const char hakaana2_sceneTex_004890[] __attribute__((aligned (2))) = dhakaana2_sceneTex_004890; -#endif - -#define dhakaana2_sceneTex_006090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_006090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_006090[] = dhakaana2_sceneTex_006090; -#else -static const char hakaana2_sceneTex_006090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_006090; -#endif - -#define dhakaana2_sceneTex_005090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_005090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_005090[] = dhakaana2_sceneTex_005090; -#else -static const char hakaana2_sceneTex_005090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_005090; -#endif - -#define dhakaana2_sceneTex_003090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_003090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_003090[] = dhakaana2_sceneTex_003090; -#else -static const char hakaana2_sceneTex_003090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_003090; -#endif - -#define dhakaana2_sceneTex_004490 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_004490" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_004490[] = dhakaana2_sceneTex_004490; -#else -static const char hakaana2_sceneTex_004490[] __attribute__((aligned (2))) = dhakaana2_sceneTex_004490; -#endif - -#define dhakaana2_sceneTex_003890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_003890" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_003890[] = dhakaana2_sceneTex_003890; -#else -static const char hakaana2_sceneTex_003890[] __attribute__((aligned (2))) = dhakaana2_sceneTex_003890; -#endif - -#define dhakaana2_sceneTex_004090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_004090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_004090[] = dhakaana2_sceneTex_004090; -#else -static const char hakaana2_sceneTex_004090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_004090; -#endif - -#define dhakaana2_sceneTex_00B890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00B890" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_00B890[] = dhakaana2_sceneTex_00B890; -#else -static const char hakaana2_sceneTex_00B890[] __attribute__((aligned (2))) = dhakaana2_sceneTex_00B890; -#endif - -#define dhakaana2_sceneTex_006890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_006890" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_006890[] = dhakaana2_sceneTex_006890; -#else -static const char hakaana2_sceneTex_006890[] __attribute__((aligned (2))) = dhakaana2_sceneTex_006890; -#endif - -#define dhakaana2_sceneTex_008090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_008090" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana2_sceneTex_008090[] = dhakaana2_sceneTex_008090; -#else -static const char hakaana2_sceneTex_008090[] __attribute__((aligned (2))) = dhakaana2_sceneTex_008090; -#endif - +#include "align_asset_macro.h" + +#define dhakaana2_sceneCollisionHeader_003058 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneCollisionHeader_003058" +static const ALIGN_ASSET(2) char hakaana2_sceneCollisionHeader_003058[] = dhakaana2_sceneCollisionHeader_003058; + +#define dhakaana2_sceneTex_00A890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00A890" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_00A890[] = dhakaana2_sceneTex_00A890; + +#define dhakaana2_sceneTex_00C890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00C890" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_00C890[] = dhakaana2_sceneTex_00C890; + +#define dhakaana2_sceneTex_009890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_009890" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_009890[] = dhakaana2_sceneTex_009890; + +#define dhakaana2_sceneTex_007090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_007090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_007090[] = dhakaana2_sceneTex_007090; + +#define dhakaana2_sceneTex_00A090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00A090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_00A090[] = dhakaana2_sceneTex_00A090; + +#define dhakaana2_sceneTex_009090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_009090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_009090[] = dhakaana2_sceneTex_009090; + +#define dhakaana2_sceneTex_00C090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00C090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_00C090[] = dhakaana2_sceneTex_00C090; + +#define dhakaana2_sceneTex_005890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_005890" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_005890[] = dhakaana2_sceneTex_005890; + +#define dhakaana2_sceneTex_004890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_004890" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_004890[] = dhakaana2_sceneTex_004890; + +#define dhakaana2_sceneTex_006090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_006090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_006090[] = dhakaana2_sceneTex_006090; + +#define dhakaana2_sceneTex_005090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_005090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_005090[] = dhakaana2_sceneTex_005090; + +#define dhakaana2_sceneTex_003090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_003090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_003090[] = dhakaana2_sceneTex_003090; + +#define dhakaana2_sceneTex_004490 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_004490" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_004490[] = dhakaana2_sceneTex_004490; + +#define dhakaana2_sceneTex_003890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_003890" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_003890[] = dhakaana2_sceneTex_003890; + +#define dhakaana2_sceneTex_004090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_004090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_004090[] = dhakaana2_sceneTex_004090; + +#define dhakaana2_sceneTex_00B890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_00B890" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_00B890[] = dhakaana2_sceneTex_00B890; + +#define dhakaana2_sceneTex_006890 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_006890" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_006890[] = dhakaana2_sceneTex_006890; + +#define dhakaana2_sceneTex_008090 "__OTR__scenes/nonmq/hakaana2_scene/hakaana2_sceneTex_008090" +static const ALIGN_ASSET(2) char hakaana2_sceneTex_008090[] = dhakaana2_sceneTex_008090; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_0.h b/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_0.h index 122a20e26..6ef9c6f1e 100644 --- a/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_0.h +++ b/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_0.h @@ -1,93 +1,42 @@ #pragma once -#define dhakaana_ouke_room_0DL_004F00 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0DL_004F00" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0DL_004F00[] = dhakaana_ouke_room_0DL_004F00; -#else -static const char hakaana_ouke_room_0DL_004F00[] __attribute__((aligned (2))) = dhakaana_ouke_room_0DL_004F00; -#endif - -#define dhakaana_ouke_room_0Tex_006F30 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_006F30" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Tex_006F30[] = dhakaana_ouke_room_0Tex_006F30; -#else -static const char hakaana_ouke_room_0Tex_006F30[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Tex_006F30; -#endif - -#define dhakaana_ouke_room_0Tex_006730 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_006730" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Tex_006730[] = dhakaana_ouke_room_0Tex_006730; -#else -static const char hakaana_ouke_room_0Tex_006730[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Tex_006730; -#endif - -#define dhakaana_ouke_room_0Tex_005730 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Tex_005730[] = dhakaana_ouke_room_0Tex_005730; -#else -static const char hakaana_ouke_room_0Tex_005730[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Tex_005730; -#endif - -#define dhakaana_ouke_room_0Tex_004F30 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_004F30" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Tex_004F30[] = dhakaana_ouke_room_0Tex_004F30; -#else -static const char hakaana_ouke_room_0Tex_004F30[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Tex_004F30; -#endif - -#define dhakaana_ouke_room_0DL_007FD8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0DL_007FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0DL_007FD8[] = dhakaana_ouke_room_0DL_007FD8; -#else -static const char hakaana_ouke_room_0DL_007FD8[] __attribute__((aligned (2))) = dhakaana_ouke_room_0DL_007FD8; -#endif - -#define dhakaana_ouke_room_0Tex_0097F8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_0097F8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Tex_0097F8[] = dhakaana_ouke_room_0Tex_0097F8; -#else -static const char hakaana_ouke_room_0Tex_0097F8[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Tex_0097F8; -#endif - -#define dhakaana_ouke_room_0Tex_007FF8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_007FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Tex_007FF8[] = dhakaana_ouke_room_0Tex_007FF8; -#else -static const char hakaana_ouke_room_0Tex_007FF8[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Tex_007FF8; -#endif - -#define dhakaana_ouke_room_0Tex_008FF8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_008FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Tex_008FF8[] = dhakaana_ouke_room_0Tex_008FF8; -#else -static const char hakaana_ouke_room_0Tex_008FF8[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Tex_008FF8; -#endif - -#define dhakaana_ouke_room_0Set_000130DL_004F00 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Set_000130DL_004F00" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Set_000130DL_004F00[] = dhakaana_ouke_room_0Set_000130DL_004F00; -#else -static const char hakaana_ouke_room_0Set_000130DL_004F00[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Set_000130DL_004F00; -#endif - -#define dhakaana_ouke_room_0Set_000130DL_007FD8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Set_000130DL_007FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Set_000130DL_007FD8[] = dhakaana_ouke_room_0Set_000130DL_007FD8; -#else -static const char hakaana_ouke_room_0Set_000130DL_007FD8[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Set_000130DL_007FD8; -#endif - -#define dhakaana_ouke_room_0Set_0001B0DL_004F00 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Set_0001B0DL_004F00" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Set_0001B0DL_004F00[] = dhakaana_ouke_room_0Set_0001B0DL_004F00; -#else -static const char hakaana_ouke_room_0Set_0001B0DL_004F00[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Set_0001B0DL_004F00; -#endif - -#define dhakaana_ouke_room_0Set_0001B0DL_007FD8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Set_0001B0DL_007FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_0Set_0001B0DL_007FD8[] = dhakaana_ouke_room_0Set_0001B0DL_007FD8; -#else -static const char hakaana_ouke_room_0Set_0001B0DL_007FD8[] __attribute__((aligned (2))) = dhakaana_ouke_room_0Set_0001B0DL_007FD8; -#endif - +#include "align_asset_macro.h" + +#define dhakaana_ouke_room_0DL_004F00 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0DL_004F00" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0DL_004F00[] = dhakaana_ouke_room_0DL_004F00; + +#define dhakaana_ouke_room_0Tex_006F30 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_006F30" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Tex_006F30[] = dhakaana_ouke_room_0Tex_006F30; + +#define dhakaana_ouke_room_0Tex_006730 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_006730" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Tex_006730[] = dhakaana_ouke_room_0Tex_006730; + +#define dhakaana_ouke_room_0Tex_005730 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_005730" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Tex_005730[] = dhakaana_ouke_room_0Tex_005730; + +#define dhakaana_ouke_room_0Tex_004F30 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_004F30" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Tex_004F30[] = dhakaana_ouke_room_0Tex_004F30; + +#define dhakaana_ouke_room_0DL_007FD8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0DL_007FD8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0DL_007FD8[] = dhakaana_ouke_room_0DL_007FD8; + +#define dhakaana_ouke_room_0Tex_0097F8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_0097F8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Tex_0097F8[] = dhakaana_ouke_room_0Tex_0097F8; + +#define dhakaana_ouke_room_0Tex_007FF8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_007FF8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Tex_007FF8[] = dhakaana_ouke_room_0Tex_007FF8; + +#define dhakaana_ouke_room_0Tex_008FF8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Tex_008FF8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Tex_008FF8[] = dhakaana_ouke_room_0Tex_008FF8; + +#define dhakaana_ouke_room_0Set_000130DL_004F00 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Set_000130DL_004F00" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Set_000130DL_004F00[] = dhakaana_ouke_room_0Set_000130DL_004F00; + +#define dhakaana_ouke_room_0Set_000130DL_007FD8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Set_000130DL_007FD8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Set_000130DL_007FD8[] = dhakaana_ouke_room_0Set_000130DL_007FD8; + +#define dhakaana_ouke_room_0Set_0001B0DL_004F00 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Set_0001B0DL_004F00" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Set_0001B0DL_004F00[] = dhakaana_ouke_room_0Set_0001B0DL_004F00; + +#define dhakaana_ouke_room_0Set_0001B0DL_007FD8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_0Set_0001B0DL_007FD8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_0Set_0001B0DL_007FD8[] = dhakaana_ouke_room_0Set_0001B0DL_007FD8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_1.h b/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_1.h index da5d95516..e991d0461 100644 --- a/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_1.h +++ b/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_1.h @@ -1,65 +1,30 @@ #pragma once -#define dhakaana_ouke_room_1DL_001FA0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1DL_001FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1DL_001FA0[] = dhakaana_ouke_room_1DL_001FA0; -#else -static const char hakaana_ouke_room_1DL_001FA0[] __attribute__((aligned (2))) = dhakaana_ouke_room_1DL_001FA0; -#endif - -#define dhakaana_ouke_room_1Tex_001FC8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Tex_001FC8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1Tex_001FC8[] = dhakaana_ouke_room_1Tex_001FC8; -#else -static const char hakaana_ouke_room_1Tex_001FC8[] __attribute__((aligned (2))) = dhakaana_ouke_room_1Tex_001FC8; -#endif - -#define dhakaana_ouke_room_1Tex_0027C8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Tex_0027C8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1Tex_0027C8[] = dhakaana_ouke_room_1Tex_0027C8; -#else -static const char hakaana_ouke_room_1Tex_0027C8[] __attribute__((aligned (2))) = dhakaana_ouke_room_1Tex_0027C8; -#endif - -#define dhakaana_ouke_room_1DL_003FF0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1DL_003FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1DL_003FF0[] = dhakaana_ouke_room_1DL_003FF0; -#else -static const char hakaana_ouke_room_1DL_003FF0[] __attribute__((aligned (2))) = dhakaana_ouke_room_1DL_003FF0; -#endif - -#define dhakaana_ouke_room_1Tex_004000 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Tex_004000" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1Tex_004000[] = dhakaana_ouke_room_1Tex_004000; -#else -static const char hakaana_ouke_room_1Tex_004000[] __attribute__((aligned (2))) = dhakaana_ouke_room_1Tex_004000; -#endif - -#define dhakaana_ouke_room_1Set_0000C0DL_001FA0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Set_0000C0DL_001FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1Set_0000C0DL_001FA0[] = dhakaana_ouke_room_1Set_0000C0DL_001FA0; -#else -static const char hakaana_ouke_room_1Set_0000C0DL_001FA0[] __attribute__((aligned (2))) = dhakaana_ouke_room_1Set_0000C0DL_001FA0; -#endif - -#define dhakaana_ouke_room_1Set_0000C0DL_003FF0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Set_0000C0DL_003FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1Set_0000C0DL_003FF0[] = dhakaana_ouke_room_1Set_0000C0DL_003FF0; -#else -static const char hakaana_ouke_room_1Set_0000C0DL_003FF0[] __attribute__((aligned (2))) = dhakaana_ouke_room_1Set_0000C0DL_003FF0; -#endif - -#define dhakaana_ouke_room_1Set_000100DL_001FA0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Set_000100DL_001FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1Set_000100DL_001FA0[] = dhakaana_ouke_room_1Set_000100DL_001FA0; -#else -static const char hakaana_ouke_room_1Set_000100DL_001FA0[] __attribute__((aligned (2))) = dhakaana_ouke_room_1Set_000100DL_001FA0; -#endif - -#define dhakaana_ouke_room_1Set_000100DL_003FF0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Set_000100DL_003FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_1Set_000100DL_003FF0[] = dhakaana_ouke_room_1Set_000100DL_003FF0; -#else -static const char hakaana_ouke_room_1Set_000100DL_003FF0[] __attribute__((aligned (2))) = dhakaana_ouke_room_1Set_000100DL_003FF0; -#endif - +#include "align_asset_macro.h" + +#define dhakaana_ouke_room_1DL_001FA0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1DL_001FA0" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1DL_001FA0[] = dhakaana_ouke_room_1DL_001FA0; + +#define dhakaana_ouke_room_1Tex_001FC8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Tex_001FC8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1Tex_001FC8[] = dhakaana_ouke_room_1Tex_001FC8; + +#define dhakaana_ouke_room_1Tex_0027C8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Tex_0027C8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1Tex_0027C8[] = dhakaana_ouke_room_1Tex_0027C8; + +#define dhakaana_ouke_room_1DL_003FF0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1DL_003FF0" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1DL_003FF0[] = dhakaana_ouke_room_1DL_003FF0; + +#define dhakaana_ouke_room_1Tex_004000 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Tex_004000" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1Tex_004000[] = dhakaana_ouke_room_1Tex_004000; + +#define dhakaana_ouke_room_1Set_0000C0DL_001FA0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Set_0000C0DL_001FA0" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1Set_0000C0DL_001FA0[] = dhakaana_ouke_room_1Set_0000C0DL_001FA0; + +#define dhakaana_ouke_room_1Set_0000C0DL_003FF0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Set_0000C0DL_003FF0" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1Set_0000C0DL_003FF0[] = dhakaana_ouke_room_1Set_0000C0DL_003FF0; + +#define dhakaana_ouke_room_1Set_000100DL_001FA0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Set_000100DL_001FA0" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1Set_000100DL_001FA0[] = dhakaana_ouke_room_1Set_000100DL_001FA0; + +#define dhakaana_ouke_room_1Set_000100DL_003FF0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_1Set_000100DL_003FF0" +static const ALIGN_ASSET(2) char hakaana_ouke_room_1Set_000100DL_003FF0[] = dhakaana_ouke_room_1Set_000100DL_003FF0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_2.h b/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_2.h index c1667a9e0..1a671aea3 100644 --- a/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_2.h +++ b/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_room_2.h @@ -1,86 +1,39 @@ #pragma once -#define dhakaana_ouke_room_2DL_002738 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2DL_002738" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2DL_002738[] = dhakaana_ouke_room_2DL_002738; -#else -static const char hakaana_ouke_room_2DL_002738[] __attribute__((aligned (2))) = dhakaana_ouke_room_2DL_002738; -#endif - -#define dhakaana_ouke_room_2Tex_003F78 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_003F78" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Tex_003F78[] = dhakaana_ouke_room_2Tex_003F78; -#else -static const char hakaana_ouke_room_2Tex_003F78[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Tex_003F78; -#endif - -#define dhakaana_ouke_room_2Tex_004778 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_004778" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Tex_004778[] = dhakaana_ouke_room_2Tex_004778; -#else -static const char hakaana_ouke_room_2Tex_004778[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Tex_004778; -#endif - -#define dhakaana_ouke_room_2Tex_002778 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_002778" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Tex_002778[] = dhakaana_ouke_room_2Tex_002778; -#else -static const char hakaana_ouke_room_2Tex_002778[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Tex_002778; -#endif - -#define dhakaana_ouke_room_2Tex_003778 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_003778" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Tex_003778[] = dhakaana_ouke_room_2Tex_003778; -#else -static const char hakaana_ouke_room_2Tex_003778[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Tex_003778; -#endif - -#define dhakaana_ouke_room_2Tex_002F78 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_002F78" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Tex_002F78[] = dhakaana_ouke_room_2Tex_002F78; -#else -static const char hakaana_ouke_room_2Tex_002F78[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Tex_002F78; -#endif - -#define dhakaana_ouke_room_2DL_0050F8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2DL_0050F8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2DL_0050F8[] = dhakaana_ouke_room_2DL_0050F8; -#else -static const char hakaana_ouke_room_2DL_0050F8[] __attribute__((aligned (2))) = dhakaana_ouke_room_2DL_0050F8; -#endif - -#define dhakaana_ouke_room_2Tex_005108 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_005108" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Tex_005108[] = dhakaana_ouke_room_2Tex_005108; -#else -static const char hakaana_ouke_room_2Tex_005108[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Tex_005108; -#endif - -#define dhakaana_ouke_room_2Set_0000C0DL_002738 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Set_0000C0DL_002738" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Set_0000C0DL_002738[] = dhakaana_ouke_room_2Set_0000C0DL_002738; -#else -static const char hakaana_ouke_room_2Set_0000C0DL_002738[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Set_0000C0DL_002738; -#endif - -#define dhakaana_ouke_room_2Set_0000C0DL_0050F8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Set_0000C0DL_0050F8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Set_0000C0DL_0050F8[] = dhakaana_ouke_room_2Set_0000C0DL_0050F8; -#else -static const char hakaana_ouke_room_2Set_0000C0DL_0050F8[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Set_0000C0DL_0050F8; -#endif - -#define dhakaana_ouke_room_2Set_000140DL_002738 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Set_000140DL_002738" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Set_000140DL_002738[] = dhakaana_ouke_room_2Set_000140DL_002738; -#else -static const char hakaana_ouke_room_2Set_000140DL_002738[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Set_000140DL_002738; -#endif - -#define dhakaana_ouke_room_2Set_000140DL_0050F8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Set_000140DL_0050F8" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_room_2Set_000140DL_0050F8[] = dhakaana_ouke_room_2Set_000140DL_0050F8; -#else -static const char hakaana_ouke_room_2Set_000140DL_0050F8[] __attribute__((aligned (2))) = dhakaana_ouke_room_2Set_000140DL_0050F8; -#endif - +#include "align_asset_macro.h" + +#define dhakaana_ouke_room_2DL_002738 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2DL_002738" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2DL_002738[] = dhakaana_ouke_room_2DL_002738; + +#define dhakaana_ouke_room_2Tex_003F78 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_003F78" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Tex_003F78[] = dhakaana_ouke_room_2Tex_003F78; + +#define dhakaana_ouke_room_2Tex_004778 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_004778" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Tex_004778[] = dhakaana_ouke_room_2Tex_004778; + +#define dhakaana_ouke_room_2Tex_002778 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_002778" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Tex_002778[] = dhakaana_ouke_room_2Tex_002778; + +#define dhakaana_ouke_room_2Tex_003778 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_003778" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Tex_003778[] = dhakaana_ouke_room_2Tex_003778; + +#define dhakaana_ouke_room_2Tex_002F78 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_002F78" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Tex_002F78[] = dhakaana_ouke_room_2Tex_002F78; + +#define dhakaana_ouke_room_2DL_0050F8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2DL_0050F8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2DL_0050F8[] = dhakaana_ouke_room_2DL_0050F8; + +#define dhakaana_ouke_room_2Tex_005108 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Tex_005108" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Tex_005108[] = dhakaana_ouke_room_2Tex_005108; + +#define dhakaana_ouke_room_2Set_0000C0DL_002738 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Set_0000C0DL_002738" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Set_0000C0DL_002738[] = dhakaana_ouke_room_2Set_0000C0DL_002738; + +#define dhakaana_ouke_room_2Set_0000C0DL_0050F8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Set_0000C0DL_0050F8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Set_0000C0DL_0050F8[] = dhakaana_ouke_room_2Set_0000C0DL_0050F8; + +#define dhakaana_ouke_room_2Set_000140DL_002738 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Set_000140DL_002738" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Set_000140DL_002738[] = dhakaana_ouke_room_2Set_000140DL_002738; + +#define dhakaana_ouke_room_2Set_000140DL_0050F8 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_room_2Set_000140DL_0050F8" +static const ALIGN_ASSET(2) char hakaana_ouke_room_2Set_000140DL_0050F8[] = dhakaana_ouke_room_2Set_000140DL_0050F8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_scene.h b/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_scene.h index ff5a8ccdb..96c431695 100644 --- a/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_scene.h +++ b/soh/assets/scenes/misc/hakaana_ouke/hakaana_ouke_scene.h @@ -1,60 +1,31 @@ #pragma once + +#include "align_asset_macro.h" + #define dgSunSongGraveSunSongTeachCs "__OTR__scenes/nonmq/hakaana_ouke_scene/gSunSongGraveSunSongTeachCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunSongGraveSunSongTeachCs[] = dgSunSongGraveSunSongTeachCs; -#else -static const char gSunSongGraveSunSongTeachCs[] __attribute__((aligned (2))) = dgSunSongGraveSunSongTeachCs; -#endif - +static const ALIGN_ASSET(2) char gSunSongGraveSunSongTeachCs[] = dgSunSongGraveSunSongTeachCs; + #define dgSunSongGraveSunSongTeachPart2Cs "__OTR__scenes/nonmq/hakaana_ouke_scene/gSunSongGraveSunSongTeachPart2Cs" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunSongGraveSunSongTeachPart2Cs[] = dgSunSongGraveSunSongTeachPart2Cs; -#else -static const char gSunSongGraveSunSongTeachPart2Cs[] __attribute__((aligned (2))) = dgSunSongGraveSunSongTeachPart2Cs; -#endif - +static const ALIGN_ASSET(2) char gSunSongGraveSunSongTeachPart2Cs[] = dgSunSongGraveSunSongTeachPart2Cs; + #define dhakaana_ouke_sceneCollisionHeader_002250 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneCollisionHeader_002250" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_sceneCollisionHeader_002250[] = dhakaana_ouke_sceneCollisionHeader_002250; -#else -static const char hakaana_ouke_sceneCollisionHeader_002250[] __attribute__((aligned (2))) = dhakaana_ouke_sceneCollisionHeader_002250; -#endif - +static const ALIGN_ASSET(2) char hakaana_ouke_sceneCollisionHeader_002250[] = dhakaana_ouke_sceneCollisionHeader_002250; + #define dhakaana_ouke_sceneTex_0042E0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneTex_0042E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_sceneTex_0042E0[] = dhakaana_ouke_sceneTex_0042E0; -#else -static const char hakaana_ouke_sceneTex_0042E0[] __attribute__((aligned (2))) = dhakaana_ouke_sceneTex_0042E0; -#endif - +static const ALIGN_ASSET(2) char hakaana_ouke_sceneTex_0042E0[] = dhakaana_ouke_sceneTex_0042E0; + #define dhakaana_ouke_sceneTex_003AE0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneTex_003AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_sceneTex_003AE0[] = dhakaana_ouke_sceneTex_003AE0; -#else -static const char hakaana_ouke_sceneTex_003AE0[] __attribute__((aligned (2))) = dhakaana_ouke_sceneTex_003AE0; -#endif - +static const ALIGN_ASSET(2) char hakaana_ouke_sceneTex_003AE0[] = dhakaana_ouke_sceneTex_003AE0; + #define dhakaana_ouke_sceneTex_002EE0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneTex_002EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_sceneTex_002EE0[] = dhakaana_ouke_sceneTex_002EE0; -#else -static const char hakaana_ouke_sceneTex_002EE0[] __attribute__((aligned (2))) = dhakaana_ouke_sceneTex_002EE0; -#endif - +static const ALIGN_ASSET(2) char hakaana_ouke_sceneTex_002EE0[] = dhakaana_ouke_sceneTex_002EE0; + #define dhakaana_ouke_sceneTex_0032E0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneTex_0032E0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_sceneTex_0032E0[] = dhakaana_ouke_sceneTex_0032E0; -#else -static const char hakaana_ouke_sceneTex_0032E0[] __attribute__((aligned (2))) = dhakaana_ouke_sceneTex_0032E0; -#endif - +static const ALIGN_ASSET(2) char hakaana_ouke_sceneTex_0032E0[] = dhakaana_ouke_sceneTex_0032E0; + #define dhakaana_ouke_sceneTex_002AE0 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneTex_002AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char hakaana_ouke_sceneTex_002AE0[] = dhakaana_ouke_sceneTex_002AE0; -#else -static const char hakaana_ouke_sceneTex_002AE0[] __attribute__((aligned (2))) = dhakaana_ouke_sceneTex_002AE0; -#endif - -#define dhakaana_ouke_sceneCollisionHeader_002250 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneCollisionHeader_002250" +static const ALIGN_ASSET(2) char hakaana_ouke_sceneTex_002AE0[] = dhakaana_ouke_sceneTex_002AE0; + #define dhakaana_ouke_sceneCollisionHeader_002250 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneCollisionHeader_002250" +#define dhakaana_ouke_sceneCollisionHeader_002250 "__OTR__scenes/nonmq/hakaana_ouke_scene/hakaana_ouke_sceneCollisionHeader_002250" \ No newline at end of file diff --git a/soh/assets/scenes/misc/hiral_demo/hiral_demo_room_0.h b/soh/assets/scenes/misc/hiral_demo/hiral_demo_room_0.h index 5efda2c5e..8f82a898b 100644 --- a/soh/assets/scenes/misc/hiral_demo/hiral_demo_room_0.h +++ b/soh/assets/scenes/misc/hiral_demo/hiral_demo_room_0.h @@ -1,72 +1,33 @@ #pragma once -#define dhiral_demo_room_0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0DL_000630[] = dhiral_demo_room_0DL_000630; -#else -static const char hiral_demo_room_0DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0DL_000630; -#endif - -#define dhiral_demo_room_0Set_0001E0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0001E0DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_0001E0DL_000630[] = dhiral_demo_room_0Set_0001E0DL_000630; -#else -static const char hiral_demo_room_0Set_0001E0DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_0001E0DL_000630; -#endif - -#define dhiral_demo_room_0Set_000270DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_000270DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_000270DL_000630[] = dhiral_demo_room_0Set_000270DL_000630; -#else -static const char hiral_demo_room_0Set_000270DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_000270DL_000630; -#endif - -#define dhiral_demo_room_0Set_0002E0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0002E0DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_0002E0DL_000630[] = dhiral_demo_room_0Set_0002E0DL_000630; -#else -static const char hiral_demo_room_0Set_0002E0DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_0002E0DL_000630; -#endif - -#define dhiral_demo_room_0Set_000380DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_000380DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_000380DL_000630[] = dhiral_demo_room_0Set_000380DL_000630; -#else -static const char hiral_demo_room_0Set_000380DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_000380DL_000630; -#endif - -#define dhiral_demo_room_0Set_0003E0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0003E0DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_0003E0DL_000630[] = dhiral_demo_room_0Set_0003E0DL_000630; -#else -static const char hiral_demo_room_0Set_0003E0DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_0003E0DL_000630; -#endif - -#define dhiral_demo_room_0Set_000450DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_000450DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_000450DL_000630[] = dhiral_demo_room_0Set_000450DL_000630; -#else -static const char hiral_demo_room_0Set_000450DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_000450DL_000630; -#endif - -#define dhiral_demo_room_0Set_0004C0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0004C0DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_0004C0DL_000630[] = dhiral_demo_room_0Set_0004C0DL_000630; -#else -static const char hiral_demo_room_0Set_0004C0DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_0004C0DL_000630; -#endif - -#define dhiral_demo_room_0Set_000530DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_000530DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_000530DL_000630[] = dhiral_demo_room_0Set_000530DL_000630; -#else -static const char hiral_demo_room_0Set_000530DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_000530DL_000630; -#endif - -#define dhiral_demo_room_0Set_0005D0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0005D0DL_000630" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_room_0Set_0005D0DL_000630[] = dhiral_demo_room_0Set_0005D0DL_000630; -#else -static const char hiral_demo_room_0Set_0005D0DL_000630[] __attribute__((aligned (2))) = dhiral_demo_room_0Set_0005D0DL_000630; -#endif - +#include "align_asset_macro.h" + +#define dhiral_demo_room_0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0DL_000630[] = dhiral_demo_room_0DL_000630; + +#define dhiral_demo_room_0Set_0001E0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0001E0DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_0001E0DL_000630[] = dhiral_demo_room_0Set_0001E0DL_000630; + +#define dhiral_demo_room_0Set_000270DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_000270DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_000270DL_000630[] = dhiral_demo_room_0Set_000270DL_000630; + +#define dhiral_demo_room_0Set_0002E0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0002E0DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_0002E0DL_000630[] = dhiral_demo_room_0Set_0002E0DL_000630; + +#define dhiral_demo_room_0Set_000380DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_000380DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_000380DL_000630[] = dhiral_demo_room_0Set_000380DL_000630; + +#define dhiral_demo_room_0Set_0003E0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0003E0DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_0003E0DL_000630[] = dhiral_demo_room_0Set_0003E0DL_000630; + +#define dhiral_demo_room_0Set_000450DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_000450DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_000450DL_000630[] = dhiral_demo_room_0Set_000450DL_000630; + +#define dhiral_demo_room_0Set_0004C0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0004C0DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_0004C0DL_000630[] = dhiral_demo_room_0Set_0004C0DL_000630; + +#define dhiral_demo_room_0Set_000530DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_000530DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_000530DL_000630[] = dhiral_demo_room_0Set_000530DL_000630; + +#define dhiral_demo_room_0Set_0005D0DL_000630 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_room_0Set_0005D0DL_000630" +static const ALIGN_ASSET(2) char hiral_demo_room_0Set_0005D0DL_000630[] = dhiral_demo_room_0Set_0005D0DL_000630; \ No newline at end of file diff --git a/soh/assets/scenes/misc/hiral_demo/hiral_demo_scene.h b/soh/assets/scenes/misc/hiral_demo/hiral_demo_scene.h index b81bd0d2d..e840befa8 100644 --- a/soh/assets/scenes/misc/hiral_demo/hiral_demo_scene.h +++ b/soh/assets/scenes/misc/hiral_demo/hiral_demo_scene.h @@ -1,18 +1,24 @@ #pragma once + +#include "align_asset_macro.h" + #define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" -#ifdef _WIN32 -static const __declspec(align(2)) char hiral_demo_sceneCollisionHeader_003548[] = dhiral_demo_sceneCollisionHeader_003548; -#else -static const char hiral_demo_sceneCollisionHeader_003548[] __attribute__((aligned (2))) = dhiral_demo_sceneCollisionHeader_003548; -#endif - -#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" -#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" -#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" -#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" -#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" -#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" -#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" -#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" +static const ALIGN_ASSET(2) char hiral_demo_sceneCollisionHeader_003548[] = dhiral_demo_sceneCollisionHeader_003548; + #define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" +#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" + +#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" + +#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" + +#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" + +#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" + +#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" + +#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" + +#define dhiral_demo_sceneCollisionHeader_003548 "__OTR__scenes/nonmq/hiral_demo_scene/hiral_demo_sceneCollisionHeader_003548" \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakariko3/kakariko3_room_0.h b/soh/assets/scenes/misc/kakariko3/kakariko3_room_0.h index ebd1394f2..e8ff242e5 100644 --- a/soh/assets/scenes/misc/kakariko3/kakariko3_room_0.h +++ b/soh/assets/scenes/misc/kakariko3/kakariko3_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dkakariko3_room_0DL_004D20 "__OTR__scenes/nonmq/kakariko3_scene/kakariko3_room_0DL_004D20" -#ifdef _WIN32 -static const __declspec(align(2)) char kakariko3_room_0DL_004D20[] = dkakariko3_room_0DL_004D20; -#else -static const char kakariko3_room_0DL_004D20[] __attribute__((aligned (2))) = dkakariko3_room_0DL_004D20; -#endif - +#include "align_asset_macro.h" + +#define dkakariko3_room_0DL_004D20 "__OTR__scenes/nonmq/kakariko3_scene/kakariko3_room_0DL_004D20" +static const ALIGN_ASSET(2) char kakariko3_room_0DL_004D20[] = dkakariko3_room_0DL_004D20; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakariko3/kakariko3_scene.h b/soh/assets/scenes/misc/kakariko3/kakariko3_scene.h index 86fcadcc5..0ba16c026 100644 --- a/soh/assets/scenes/misc/kakariko3/kakariko3_scene.h +++ b/soh/assets/scenes/misc/kakariko3/kakariko3_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dkakariko3_sceneCollisionHeader_000808 "__OTR__scenes/nonmq/kakariko3_scene/kakariko3_sceneCollisionHeader_000808" -#ifdef _WIN32 -static const __declspec(align(2)) char kakariko3_sceneCollisionHeader_000808[] = dkakariko3_sceneCollisionHeader_000808; -#else -static const char kakariko3_sceneCollisionHeader_000808[] __attribute__((aligned (2))) = dkakariko3_sceneCollisionHeader_000808; -#endif - +#include "align_asset_macro.h" + +#define dkakariko3_sceneCollisionHeader_000808 "__OTR__scenes/nonmq/kakariko3_scene/kakariko3_sceneCollisionHeader_000808" +static const ALIGN_ASSET(2) char kakariko3_sceneCollisionHeader_000808[] = dkakariko3_sceneCollisionHeader_000808; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_0.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_0.h index c2b919f64..7a28c6dc4 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_0.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_0.h @@ -1,114 +1,51 @@ #pragma once -#define dkakusiana_room_0DL_0064A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0064A0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_0064A0[] = dkakusiana_room_0DL_0064A0; -#else -static const char kakusiana_room_0DL_0064A0[] __attribute__((aligned (2))) = dkakusiana_room_0DL_0064A0; -#endif - -#define dkakusiana_room_0DL_0021C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0021C0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_0021C0[] = dkakusiana_room_0DL_0021C0; -#else -static const char kakusiana_room_0DL_0021C0[] __attribute__((aligned (2))) = dkakusiana_room_0DL_0021C0; -#endif - -#define dkakusiana_room_0DL_0069F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0069F0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_0069F0[] = dkakusiana_room_0DL_0069F0; -#else -static const char kakusiana_room_0DL_0069F0[] __attribute__((aligned (2))) = dkakusiana_room_0DL_0069F0; -#endif - -#define dkakusiana_room_0DL_000E58 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_000E58" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_000E58[] = dkakusiana_room_0DL_000E58; -#else -static const char kakusiana_room_0DL_000E58[] __attribute__((aligned (2))) = dkakusiana_room_0DL_000E58; -#endif - -#define dkakusiana_room_0Tex_005AA0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_005AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0Tex_005AA0[] = dkakusiana_room_0Tex_005AA0; -#else -static const char kakusiana_room_0Tex_005AA0[] __attribute__((aligned (2))) = dkakusiana_room_0Tex_005AA0; -#endif - -#define dkakusiana_room_0DL_0066A8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0066A8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_0066A8[] = dkakusiana_room_0DL_0066A8; -#else -static const char kakusiana_room_0DL_0066A8[] __attribute__((aligned (2))) = dkakusiana_room_0DL_0066A8; -#endif - -#define dkakusiana_room_0DL_001DC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_001DC8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_001DC8[] = dkakusiana_room_0DL_001DC8; -#else -static const char kakusiana_room_0DL_001DC8[] __attribute__((aligned (2))) = dkakusiana_room_0DL_001DC8; -#endif - -#define dkakusiana_room_0Tex_0042A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_0042A0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0Tex_0042A0[] = dkakusiana_room_0Tex_0042A0; -#else -static const char kakusiana_room_0Tex_0042A0[] __attribute__((aligned (2))) = dkakusiana_room_0Tex_0042A0; -#endif - -#define dkakusiana_room_0Tex_0032A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_0032A0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0Tex_0032A0[] = dkakusiana_room_0Tex_0032A0; -#else -static const char kakusiana_room_0Tex_0032A0[] __attribute__((aligned (2))) = dkakusiana_room_0Tex_0032A0; -#endif - -#define dkakusiana_room_0Tex_0022A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_0022A0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0Tex_0022A0[] = dkakusiana_room_0Tex_0022A0; -#else -static const char kakusiana_room_0Tex_0022A0[] __attribute__((aligned (2))) = dkakusiana_room_0Tex_0022A0; -#endif - -#define dkakusiana_room_0DL_0007D0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0007D0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_0007D0[] = dkakusiana_room_0DL_0007D0; -#else -static const char kakusiana_room_0DL_0007D0[] __attribute__((aligned (2))) = dkakusiana_room_0DL_0007D0; -#endif - -#define dkakusiana_room_0Tex_004AA0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_004AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0Tex_004AA0[] = dkakusiana_room_0Tex_004AA0; -#else -static const char kakusiana_room_0Tex_004AA0[] __attribute__((aligned (2))) = dkakusiana_room_0Tex_004AA0; -#endif - -#define dkakusiana_room_0DL_006838 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_006838" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_006838[] = dkakusiana_room_0DL_006838; -#else -static const char kakusiana_room_0DL_006838[] __attribute__((aligned (2))) = dkakusiana_room_0DL_006838; -#endif - -#define dkakusiana_room_0Tex_006AA0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_006AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0Tex_006AA0[] = dkakusiana_room_0Tex_006AA0; -#else -static const char kakusiana_room_0Tex_006AA0[] __attribute__((aligned (2))) = dkakusiana_room_0Tex_006AA0; -#endif - -#define dkakusiana_room_0DL_001600 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_001600" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_001600[] = dkakusiana_room_0DL_001600; -#else -static const char kakusiana_room_0DL_001600[] __attribute__((aligned (2))) = dkakusiana_room_0DL_001600; -#endif - -#define dkakusiana_room_0DL_0013B8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0013B8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_0DL_0013B8[] = dkakusiana_room_0DL_0013B8; -#else -static const char kakusiana_room_0DL_0013B8[] __attribute__((aligned (2))) = dkakusiana_room_0DL_0013B8; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_0DL_0064A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0064A0" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_0064A0[] = dkakusiana_room_0DL_0064A0; + +#define dkakusiana_room_0DL_0021C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0021C0" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_0021C0[] = dkakusiana_room_0DL_0021C0; + +#define dkakusiana_room_0DL_0069F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0069F0" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_0069F0[] = dkakusiana_room_0DL_0069F0; + +#define dkakusiana_room_0DL_000E58 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_000E58" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_000E58[] = dkakusiana_room_0DL_000E58; + +#define dkakusiana_room_0Tex_005AA0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_005AA0" +static const ALIGN_ASSET(2) char kakusiana_room_0Tex_005AA0[] = dkakusiana_room_0Tex_005AA0; + +#define dkakusiana_room_0DL_0066A8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0066A8" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_0066A8[] = dkakusiana_room_0DL_0066A8; + +#define dkakusiana_room_0DL_001DC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_001DC8" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_001DC8[] = dkakusiana_room_0DL_001DC8; + +#define dkakusiana_room_0Tex_0042A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_0042A0" +static const ALIGN_ASSET(2) char kakusiana_room_0Tex_0042A0[] = dkakusiana_room_0Tex_0042A0; + +#define dkakusiana_room_0Tex_0032A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_0032A0" +static const ALIGN_ASSET(2) char kakusiana_room_0Tex_0032A0[] = dkakusiana_room_0Tex_0032A0; + +#define dkakusiana_room_0Tex_0022A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_0022A0" +static const ALIGN_ASSET(2) char kakusiana_room_0Tex_0022A0[] = dkakusiana_room_0Tex_0022A0; + +#define dkakusiana_room_0DL_0007D0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0007D0" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_0007D0[] = dkakusiana_room_0DL_0007D0; + +#define dkakusiana_room_0Tex_004AA0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_004AA0" +static const ALIGN_ASSET(2) char kakusiana_room_0Tex_004AA0[] = dkakusiana_room_0Tex_004AA0; + +#define dkakusiana_room_0DL_006838 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_006838" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_006838[] = dkakusiana_room_0DL_006838; + +#define dkakusiana_room_0Tex_006AA0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0Tex_006AA0" +static const ALIGN_ASSET(2) char kakusiana_room_0Tex_006AA0[] = dkakusiana_room_0Tex_006AA0; + +#define dkakusiana_room_0DL_001600 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_001600" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_001600[] = dkakusiana_room_0DL_001600; + +#define dkakusiana_room_0DL_0013B8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_0DL_0013B8" +static const ALIGN_ASSET(2) char kakusiana_room_0DL_0013B8[] = dkakusiana_room_0DL_0013B8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_1.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_1.h index df69394c4..00cf6b808 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_1.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_1.h @@ -1,93 +1,42 @@ #pragma once -#define dkakusiana_room_1DL_004420 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_004420[] = dkakusiana_room_1DL_004420; -#else -static const char kakusiana_room_1DL_004420[] __attribute__((aligned (2))) = dkakusiana_room_1DL_004420; -#endif - -#define dkakusiana_room_1DL_001280 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_001280" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_001280[] = dkakusiana_room_1DL_001280; -#else -static const char kakusiana_room_1DL_001280[] __attribute__((aligned (2))) = dkakusiana_room_1DL_001280; -#endif - -#define dkakusiana_room_1Tex_003218 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1Tex_003218" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1Tex_003218[] = dkakusiana_room_1Tex_003218; -#else -static const char kakusiana_room_1Tex_003218[] __attribute__((aligned (2))) = dkakusiana_room_1Tex_003218; -#endif - -#define dkakusiana_room_1DL_004870 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_004870" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_004870[] = dkakusiana_room_1DL_004870; -#else -static const char kakusiana_room_1DL_004870[] __attribute__((aligned (2))) = dkakusiana_room_1DL_004870; -#endif - -#define dkakusiana_room_1Tex_004990 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1Tex_004990" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1Tex_004990[] = dkakusiana_room_1Tex_004990; -#else -static const char kakusiana_room_1Tex_004990[] __attribute__((aligned (2))) = dkakusiana_room_1Tex_004990; -#endif - -#define dkakusiana_room_1DL_0006E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_0006E0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_0006E0[] = dkakusiana_room_1DL_0006E0; -#else -static const char kakusiana_room_1DL_0006E0[] __attribute__((aligned (2))) = dkakusiana_room_1DL_0006E0; -#endif - -#define dkakusiana_room_1Tex_001A18 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1Tex_001A18" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1Tex_001A18[] = dkakusiana_room_1Tex_001A18; -#else -static const char kakusiana_room_1Tex_001A18[] __attribute__((aligned (2))) = dkakusiana_room_1Tex_001A18; -#endif - -#define dkakusiana_room_1DL_0016F8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_0016F8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_0016F8[] = dkakusiana_room_1DL_0016F8; -#else -static const char kakusiana_room_1DL_0016F8[] __attribute__((aligned (2))) = dkakusiana_room_1DL_0016F8; -#endif - -#define dkakusiana_room_1Tex_002A18 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1Tex_002A18" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1Tex_002A18[] = dkakusiana_room_1Tex_002A18; -#else -static const char kakusiana_room_1Tex_002A18[] __attribute__((aligned (2))) = dkakusiana_room_1Tex_002A18; -#endif - -#define dkakusiana_room_1DL_001560 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_001560" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_001560[] = dkakusiana_room_1DL_001560; -#else -static const char kakusiana_room_1DL_001560[] __attribute__((aligned (2))) = dkakusiana_room_1DL_001560; -#endif - -#define dkakusiana_room_1DL_001938 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_001938" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_001938[] = dkakusiana_room_1DL_001938; -#else -static const char kakusiana_room_1DL_001938[] __attribute__((aligned (2))) = dkakusiana_room_1DL_001938; -#endif - -#define dkakusiana_room_1DL_0045E8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_0045E8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_0045E8[] = dkakusiana_room_1DL_0045E8; -#else -static const char kakusiana_room_1DL_0045E8[] __attribute__((aligned (2))) = dkakusiana_room_1DL_0045E8; -#endif - -#define dkakusiana_room_1DL_000BE8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_000BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_1DL_000BE8[] = dkakusiana_room_1DL_000BE8; -#else -static const char kakusiana_room_1DL_000BE8[] __attribute__((aligned (2))) = dkakusiana_room_1DL_000BE8; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_1DL_004420 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_004420" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_004420[] = dkakusiana_room_1DL_004420; + +#define dkakusiana_room_1DL_001280 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_001280" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_001280[] = dkakusiana_room_1DL_001280; + +#define dkakusiana_room_1Tex_003218 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1Tex_003218" +static const ALIGN_ASSET(2) char kakusiana_room_1Tex_003218[] = dkakusiana_room_1Tex_003218; + +#define dkakusiana_room_1DL_004870 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_004870" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_004870[] = dkakusiana_room_1DL_004870; + +#define dkakusiana_room_1Tex_004990 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1Tex_004990" +static const ALIGN_ASSET(2) char kakusiana_room_1Tex_004990[] = dkakusiana_room_1Tex_004990; + +#define dkakusiana_room_1DL_0006E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_0006E0" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_0006E0[] = dkakusiana_room_1DL_0006E0; + +#define dkakusiana_room_1Tex_001A18 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1Tex_001A18" +static const ALIGN_ASSET(2) char kakusiana_room_1Tex_001A18[] = dkakusiana_room_1Tex_001A18; + +#define dkakusiana_room_1DL_0016F8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_0016F8" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_0016F8[] = dkakusiana_room_1DL_0016F8; + +#define dkakusiana_room_1Tex_002A18 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1Tex_002A18" +static const ALIGN_ASSET(2) char kakusiana_room_1Tex_002A18[] = dkakusiana_room_1Tex_002A18; + +#define dkakusiana_room_1DL_001560 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_001560" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_001560[] = dkakusiana_room_1DL_001560; + +#define dkakusiana_room_1DL_001938 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_001938" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_001938[] = dkakusiana_room_1DL_001938; + +#define dkakusiana_room_1DL_0045E8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_0045E8" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_0045E8[] = dkakusiana_room_1DL_0045E8; + +#define dkakusiana_room_1DL_000BE8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_1DL_000BE8" +static const ALIGN_ASSET(2) char kakusiana_room_1DL_000BE8[] = dkakusiana_room_1DL_000BE8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_10.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_10.h index ea05f8202..95c8ff450 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_10.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_10.h @@ -1,107 +1,48 @@ #pragma once -#define dkakusiana_room_10DL_004DE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_004DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_004DE0[] = dkakusiana_room_10DL_004DE0; -#else -static const char kakusiana_room_10DL_004DE0[] __attribute__((aligned (2))) = dkakusiana_room_10DL_004DE0; -#endif - -#define dkakusiana_room_10DL_001330 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_001330" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_001330[] = dkakusiana_room_10DL_001330; -#else -static const char kakusiana_room_10DL_001330[] __attribute__((aligned (2))) = dkakusiana_room_10DL_001330; -#endif - -#define dkakusiana_room_10Tex_0017E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_0017E0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10Tex_0017E0[] = dkakusiana_room_10Tex_0017E0; -#else -static const char kakusiana_room_10Tex_0017E0[] __attribute__((aligned (2))) = dkakusiana_room_10Tex_0017E0; -#endif - -#define dkakusiana_room_10Tex_0027E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_0027E0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10Tex_0027E0[] = dkakusiana_room_10Tex_0027E0; -#else -static const char kakusiana_room_10Tex_0027E0[] __attribute__((aligned (2))) = dkakusiana_room_10Tex_0027E0; -#endif - -#define dkakusiana_room_10DL_001088 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_001088" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_001088[] = dkakusiana_room_10DL_001088; -#else -static const char kakusiana_room_10DL_001088[] __attribute__((aligned (2))) = dkakusiana_room_10DL_001088; -#endif - -#define dkakusiana_room_10Tex_003BE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_003BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10Tex_003BE0[] = dkakusiana_room_10Tex_003BE0; -#else -static const char kakusiana_room_10Tex_003BE0[] __attribute__((aligned (2))) = dkakusiana_room_10Tex_003BE0; -#endif - -#define dkakusiana_room_10DL_004FB8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_004FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_004FB8[] = dkakusiana_room_10DL_004FB8; -#else -static const char kakusiana_room_10DL_004FB8[] __attribute__((aligned (2))) = dkakusiana_room_10DL_004FB8; -#endif - -#define dkakusiana_room_10Tex_005228 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_005228" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10Tex_005228[] = dkakusiana_room_10Tex_005228; -#else -static const char kakusiana_room_10Tex_005228[] __attribute__((aligned (2))) = dkakusiana_room_10Tex_005228; -#endif - -#define dkakusiana_room_10DL_001538 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_001538" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_001538[] = dkakusiana_room_10DL_001538; -#else -static const char kakusiana_room_10DL_001538[] __attribute__((aligned (2))) = dkakusiana_room_10DL_001538; -#endif - -#define dkakusiana_room_10DL_001700 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_001700" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_001700[] = dkakusiana_room_10DL_001700; -#else -static const char kakusiana_room_10DL_001700[] __attribute__((aligned (2))) = dkakusiana_room_10DL_001700; -#endif - -#define dkakusiana_room_10DL_005180 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_005180" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_005180[] = dkakusiana_room_10DL_005180; -#else -static const char kakusiana_room_10DL_005180[] __attribute__((aligned (2))) = dkakusiana_room_10DL_005180; -#endif - -#define dkakusiana_room_10DL_000D18 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_000D18" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_000D18[] = dkakusiana_room_10DL_000D18; -#else -static const char kakusiana_room_10DL_000D18[] __attribute__((aligned (2))) = dkakusiana_room_10DL_000D18; -#endif - -#define dkakusiana_room_10Tex_001FE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_001FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10Tex_001FE0[] = dkakusiana_room_10Tex_001FE0; -#else -static const char kakusiana_room_10Tex_001FE0[] __attribute__((aligned (2))) = dkakusiana_room_10Tex_001FE0; -#endif - -#define dkakusiana_room_10DL_000700 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_000700" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10DL_000700[] = dkakusiana_room_10DL_000700; -#else -static const char kakusiana_room_10DL_000700[] __attribute__((aligned (2))) = dkakusiana_room_10DL_000700; -#endif - -#define dkakusiana_room_10Tex_002BE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_002BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_10Tex_002BE0[] = dkakusiana_room_10Tex_002BE0; -#else -static const char kakusiana_room_10Tex_002BE0[] __attribute__((aligned (2))) = dkakusiana_room_10Tex_002BE0; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_10DL_004DE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_004DE0" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_004DE0[] = dkakusiana_room_10DL_004DE0; + +#define dkakusiana_room_10DL_001330 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_001330" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_001330[] = dkakusiana_room_10DL_001330; + +#define dkakusiana_room_10Tex_0017E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_0017E0" +static const ALIGN_ASSET(2) char kakusiana_room_10Tex_0017E0[] = dkakusiana_room_10Tex_0017E0; + +#define dkakusiana_room_10Tex_0027E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_0027E0" +static const ALIGN_ASSET(2) char kakusiana_room_10Tex_0027E0[] = dkakusiana_room_10Tex_0027E0; + +#define dkakusiana_room_10DL_001088 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_001088" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_001088[] = dkakusiana_room_10DL_001088; + +#define dkakusiana_room_10Tex_003BE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_003BE0" +static const ALIGN_ASSET(2) char kakusiana_room_10Tex_003BE0[] = dkakusiana_room_10Tex_003BE0; + +#define dkakusiana_room_10DL_004FB8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_004FB8" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_004FB8[] = dkakusiana_room_10DL_004FB8; + +#define dkakusiana_room_10Tex_005228 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_005228" +static const ALIGN_ASSET(2) char kakusiana_room_10Tex_005228[] = dkakusiana_room_10Tex_005228; + +#define dkakusiana_room_10DL_001538 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_001538" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_001538[] = dkakusiana_room_10DL_001538; + +#define dkakusiana_room_10DL_001700 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_001700" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_001700[] = dkakusiana_room_10DL_001700; + +#define dkakusiana_room_10DL_005180 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_005180" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_005180[] = dkakusiana_room_10DL_005180; + +#define dkakusiana_room_10DL_000D18 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_000D18" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_000D18[] = dkakusiana_room_10DL_000D18; + +#define dkakusiana_room_10Tex_001FE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_001FE0" +static const ALIGN_ASSET(2) char kakusiana_room_10Tex_001FE0[] = dkakusiana_room_10Tex_001FE0; + +#define dkakusiana_room_10DL_000700 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10DL_000700" +static const ALIGN_ASSET(2) char kakusiana_room_10DL_000700[] = dkakusiana_room_10DL_000700; + +#define dkakusiana_room_10Tex_002BE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_10Tex_002BE0" +static const ALIGN_ASSET(2) char kakusiana_room_10Tex_002BE0[] = dkakusiana_room_10Tex_002BE0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_11.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_11.h index 7c9d43b05..86ffafff6 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_11.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_11.h @@ -1,114 +1,51 @@ #pragma once -#define dkakusiana_room_11DL_008250 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_008250" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_008250[] = dkakusiana_room_11DL_008250; -#else -static const char kakusiana_room_11DL_008250[] __attribute__((aligned (2))) = dkakusiana_room_11DL_008250; -#endif - -#define dkakusiana_room_11DL_0006D0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_0006D0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_0006D0[] = dkakusiana_room_11DL_0006D0; -#else -static const char kakusiana_room_11DL_0006D0[] __attribute__((aligned (2))) = dkakusiana_room_11DL_0006D0; -#endif - -#define dkakusiana_room_11Tex_005048 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_005048" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11Tex_005048[] = dkakusiana_room_11Tex_005048; -#else -static const char kakusiana_room_11Tex_005048[] __attribute__((aligned (2))) = dkakusiana_room_11Tex_005048; -#endif - -#define dkakusiana_room_11Tex_002848 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_002848" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11Tex_002848[] = dkakusiana_room_11Tex_002848; -#else -static const char kakusiana_room_11Tex_002848[] __attribute__((aligned (2))) = dkakusiana_room_11Tex_002848; -#endif - -#define dkakusiana_room_11DL_000340 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_000340" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_000340[] = dkakusiana_room_11DL_000340; -#else -static const char kakusiana_room_11DL_000340[] __attribute__((aligned (2))) = dkakusiana_room_11DL_000340; -#endif - -#define dkakusiana_room_11DL_0023E8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_0023E8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_0023E8[] = dkakusiana_room_11DL_0023E8; -#else -static const char kakusiana_room_11DL_0023E8[] __attribute__((aligned (2))) = dkakusiana_room_11DL_0023E8; -#endif - -#define dkakusiana_room_11Tex_006848 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_006848" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11Tex_006848[] = dkakusiana_room_11Tex_006848; -#else -static const char kakusiana_room_11Tex_006848[] __attribute__((aligned (2))) = dkakusiana_room_11Tex_006848; -#endif - -#define dkakusiana_room_11Tex_005848 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_005848" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11Tex_005848[] = dkakusiana_room_11Tex_005848; -#else -static const char kakusiana_room_11Tex_005848[] __attribute__((aligned (2))) = dkakusiana_room_11Tex_005848; -#endif - -#define dkakusiana_room_11Tex_007848 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_007848" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11Tex_007848[] = dkakusiana_room_11Tex_007848; -#else -static const char kakusiana_room_11Tex_007848[] __attribute__((aligned (2))) = dkakusiana_room_11Tex_007848; -#endif - -#define dkakusiana_room_11DL_0085C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_0085C0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_0085C0[] = dkakusiana_room_11DL_0085C0; -#else -static const char kakusiana_room_11DL_0085C0[] __attribute__((aligned (2))) = dkakusiana_room_11DL_0085C0; -#endif - -#define dkakusiana_room_11DL_001430 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_001430" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_001430[] = dkakusiana_room_11DL_001430; -#else -static const char kakusiana_room_11DL_001430[] __attribute__((aligned (2))) = dkakusiana_room_11DL_001430; -#endif - -#define dkakusiana_room_11DL_008418 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_008418" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_008418[] = dkakusiana_room_11DL_008418; -#else -static const char kakusiana_room_11DL_008418[] __attribute__((aligned (2))) = dkakusiana_room_11DL_008418; -#endif - -#define dkakusiana_room_11DL_001728 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_001728" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_001728[] = dkakusiana_room_11DL_001728; -#else -static const char kakusiana_room_11DL_001728[] __attribute__((aligned (2))) = dkakusiana_room_11DL_001728; -#endif - -#define dkakusiana_room_11DL_001068 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_001068" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11DL_001068[] = dkakusiana_room_11DL_001068; -#else -static const char kakusiana_room_11DL_001068[] __attribute__((aligned (2))) = dkakusiana_room_11DL_001068; -#endif - -#define dkakusiana_room_11Tex_004048 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_004048" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11Tex_004048[] = dkakusiana_room_11Tex_004048; -#else -static const char kakusiana_room_11Tex_004048[] __attribute__((aligned (2))) = dkakusiana_room_11Tex_004048; -#endif - -#define dkakusiana_room_11Tex_003048 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_11Tex_003048[] = dkakusiana_room_11Tex_003048; -#else -static const char kakusiana_room_11Tex_003048[] __attribute__((aligned (2))) = dkakusiana_room_11Tex_003048; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_11DL_008250 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_008250" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_008250[] = dkakusiana_room_11DL_008250; + +#define dkakusiana_room_11DL_0006D0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_0006D0" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_0006D0[] = dkakusiana_room_11DL_0006D0; + +#define dkakusiana_room_11Tex_005048 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_005048" +static const ALIGN_ASSET(2) char kakusiana_room_11Tex_005048[] = dkakusiana_room_11Tex_005048; + +#define dkakusiana_room_11Tex_002848 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_002848" +static const ALIGN_ASSET(2) char kakusiana_room_11Tex_002848[] = dkakusiana_room_11Tex_002848; + +#define dkakusiana_room_11DL_000340 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_000340" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_000340[] = dkakusiana_room_11DL_000340; + +#define dkakusiana_room_11DL_0023E8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_0023E8" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_0023E8[] = dkakusiana_room_11DL_0023E8; + +#define dkakusiana_room_11Tex_006848 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_006848" +static const ALIGN_ASSET(2) char kakusiana_room_11Tex_006848[] = dkakusiana_room_11Tex_006848; + +#define dkakusiana_room_11Tex_005848 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_005848" +static const ALIGN_ASSET(2) char kakusiana_room_11Tex_005848[] = dkakusiana_room_11Tex_005848; + +#define dkakusiana_room_11Tex_007848 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_007848" +static const ALIGN_ASSET(2) char kakusiana_room_11Tex_007848[] = dkakusiana_room_11Tex_007848; + +#define dkakusiana_room_11DL_0085C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_0085C0" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_0085C0[] = dkakusiana_room_11DL_0085C0; + +#define dkakusiana_room_11DL_001430 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_001430" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_001430[] = dkakusiana_room_11DL_001430; + +#define dkakusiana_room_11DL_008418 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_008418" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_008418[] = dkakusiana_room_11DL_008418; + +#define dkakusiana_room_11DL_001728 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_001728" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_001728[] = dkakusiana_room_11DL_001728; + +#define dkakusiana_room_11DL_001068 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11DL_001068" +static const ALIGN_ASSET(2) char kakusiana_room_11DL_001068[] = dkakusiana_room_11DL_001068; + +#define dkakusiana_room_11Tex_004048 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_004048" +static const ALIGN_ASSET(2) char kakusiana_room_11Tex_004048[] = dkakusiana_room_11Tex_004048; + +#define dkakusiana_room_11Tex_003048 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_11Tex_003048" +static const ALIGN_ASSET(2) char kakusiana_room_11Tex_003048[] = dkakusiana_room_11Tex_003048; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_12.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_12.h index 132dcdf83..0b9b977bc 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_12.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_12.h @@ -1,114 +1,51 @@ #pragma once -#define dkakusiana_room_12DL_0079F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_0079F0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_0079F0[] = dkakusiana_room_12DL_0079F0; -#else -static const char kakusiana_room_12DL_0079F0[] __attribute__((aligned (2))) = dkakusiana_room_12DL_0079F0; -#endif - -#define dkakusiana_room_12DL_0004A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_0004A0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_0004A0[] = dkakusiana_room_12DL_0004A0; -#else -static const char kakusiana_room_12DL_0004A0[] __attribute__((aligned (2))) = dkakusiana_room_12DL_0004A0; -#endif - -#define dkakusiana_room_12Tex_0047F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_0047F0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12Tex_0047F0[] = dkakusiana_room_12Tex_0047F0; -#else -static const char kakusiana_room_12Tex_0047F0[] __attribute__((aligned (2))) = dkakusiana_room_12Tex_0047F0; -#endif - -#define dkakusiana_room_12Tex_001FF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_001FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12Tex_001FF0[] = dkakusiana_room_12Tex_001FF0; -#else -static const char kakusiana_room_12Tex_001FF0[] __attribute__((aligned (2))) = dkakusiana_room_12Tex_001FF0; -#endif - -#define dkakusiana_room_12DL_000270 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_000270" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_000270[] = dkakusiana_room_12DL_000270; -#else -static const char kakusiana_room_12DL_000270[] __attribute__((aligned (2))) = dkakusiana_room_12DL_000270; -#endif - -#define dkakusiana_room_12DL_001C28 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_001C28" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_001C28[] = dkakusiana_room_12DL_001C28; -#else -static const char kakusiana_room_12DL_001C28[] __attribute__((aligned (2))) = dkakusiana_room_12DL_001C28; -#endif - -#define dkakusiana_room_12Tex_004FF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_004FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12Tex_004FF0[] = dkakusiana_room_12Tex_004FF0; -#else -static const char kakusiana_room_12Tex_004FF0[] __attribute__((aligned (2))) = dkakusiana_room_12Tex_004FF0; -#endif - -#define dkakusiana_room_12Tex_005FF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_005FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12Tex_005FF0[] = dkakusiana_room_12Tex_005FF0; -#else -static const char kakusiana_room_12Tex_005FF0[] __attribute__((aligned (2))) = dkakusiana_room_12Tex_005FF0; -#endif - -#define dkakusiana_room_12Tex_006FF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_006FF0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12Tex_006FF0[] = dkakusiana_room_12Tex_006FF0; -#else -static const char kakusiana_room_12Tex_006FF0[] __attribute__((aligned (2))) = dkakusiana_room_12Tex_006FF0; -#endif - -#define dkakusiana_room_12DL_007D60 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_007D60" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_007D60[] = dkakusiana_room_12DL_007D60; -#else -static const char kakusiana_room_12DL_007D60[] __attribute__((aligned (2))) = dkakusiana_room_12DL_007D60; -#endif - -#define dkakusiana_room_12DL_000ED0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_000ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_000ED0[] = dkakusiana_room_12DL_000ED0; -#else -static const char kakusiana_room_12DL_000ED0[] __attribute__((aligned (2))) = dkakusiana_room_12DL_000ED0; -#endif - -#define dkakusiana_room_12DL_007BB8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_007BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_007BB8[] = dkakusiana_room_12DL_007BB8; -#else -static const char kakusiana_room_12DL_007BB8[] __attribute__((aligned (2))) = dkakusiana_room_12DL_007BB8; -#endif - -#define dkakusiana_room_12DL_0011C8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_0011C8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_0011C8[] = dkakusiana_room_12DL_0011C8; -#else -static const char kakusiana_room_12DL_0011C8[] __attribute__((aligned (2))) = dkakusiana_room_12DL_0011C8; -#endif - -#define dkakusiana_room_12DL_000BA8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_000BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12DL_000BA8[] = dkakusiana_room_12DL_000BA8; -#else -static const char kakusiana_room_12DL_000BA8[] __attribute__((aligned (2))) = dkakusiana_room_12DL_000BA8; -#endif - -#define dkakusiana_room_12Tex_0037F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_0037F0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12Tex_0037F0[] = dkakusiana_room_12Tex_0037F0; -#else -static const char kakusiana_room_12Tex_0037F0[] __attribute__((aligned (2))) = dkakusiana_room_12Tex_0037F0; -#endif - -#define dkakusiana_room_12Tex_0027F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_0027F0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_12Tex_0027F0[] = dkakusiana_room_12Tex_0027F0; -#else -static const char kakusiana_room_12Tex_0027F0[] __attribute__((aligned (2))) = dkakusiana_room_12Tex_0027F0; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_12DL_0079F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_0079F0" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_0079F0[] = dkakusiana_room_12DL_0079F0; + +#define dkakusiana_room_12DL_0004A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_0004A0" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_0004A0[] = dkakusiana_room_12DL_0004A0; + +#define dkakusiana_room_12Tex_0047F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_0047F0" +static const ALIGN_ASSET(2) char kakusiana_room_12Tex_0047F0[] = dkakusiana_room_12Tex_0047F0; + +#define dkakusiana_room_12Tex_001FF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_001FF0" +static const ALIGN_ASSET(2) char kakusiana_room_12Tex_001FF0[] = dkakusiana_room_12Tex_001FF0; + +#define dkakusiana_room_12DL_000270 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_000270" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_000270[] = dkakusiana_room_12DL_000270; + +#define dkakusiana_room_12DL_001C28 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_001C28" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_001C28[] = dkakusiana_room_12DL_001C28; + +#define dkakusiana_room_12Tex_004FF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_004FF0" +static const ALIGN_ASSET(2) char kakusiana_room_12Tex_004FF0[] = dkakusiana_room_12Tex_004FF0; + +#define dkakusiana_room_12Tex_005FF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_005FF0" +static const ALIGN_ASSET(2) char kakusiana_room_12Tex_005FF0[] = dkakusiana_room_12Tex_005FF0; + +#define dkakusiana_room_12Tex_006FF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_006FF0" +static const ALIGN_ASSET(2) char kakusiana_room_12Tex_006FF0[] = dkakusiana_room_12Tex_006FF0; + +#define dkakusiana_room_12DL_007D60 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_007D60" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_007D60[] = dkakusiana_room_12DL_007D60; + +#define dkakusiana_room_12DL_000ED0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_000ED0" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_000ED0[] = dkakusiana_room_12DL_000ED0; + +#define dkakusiana_room_12DL_007BB8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_007BB8" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_007BB8[] = dkakusiana_room_12DL_007BB8; + +#define dkakusiana_room_12DL_0011C8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_0011C8" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_0011C8[] = dkakusiana_room_12DL_0011C8; + +#define dkakusiana_room_12DL_000BA8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12DL_000BA8" +static const ALIGN_ASSET(2) char kakusiana_room_12DL_000BA8[] = dkakusiana_room_12DL_000BA8; + +#define dkakusiana_room_12Tex_0037F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_0037F0" +static const ALIGN_ASSET(2) char kakusiana_room_12Tex_0037F0[] = dkakusiana_room_12Tex_0037F0; + +#define dkakusiana_room_12Tex_0027F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_12Tex_0027F0" +static const ALIGN_ASSET(2) char kakusiana_room_12Tex_0027F0[] = dkakusiana_room_12Tex_0027F0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_13.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_13.h index 5b25fde8b..d22935fee 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_13.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_13.h @@ -1,100 +1,45 @@ #pragma once -#define dkakusiana_room_13DL_004350 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_004350" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_004350[] = dkakusiana_room_13DL_004350; -#else -static const char kakusiana_room_13DL_004350[] __attribute__((aligned (2))) = dkakusiana_room_13DL_004350; -#endif - -#define dkakusiana_room_13DL_000FF8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_000FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_000FF8[] = dkakusiana_room_13DL_000FF8; -#else -static const char kakusiana_room_13DL_000FF8[] __attribute__((aligned (2))) = dkakusiana_room_13DL_000FF8; -#endif - -#define dkakusiana_room_13Tex_003950 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_003950" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13Tex_003950[] = dkakusiana_room_13Tex_003950; -#else -static const char kakusiana_room_13Tex_003950[] __attribute__((aligned (2))) = dkakusiana_room_13Tex_003950; -#endif - -#define dkakusiana_room_13DL_004C50 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_004C50" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_004C50[] = dkakusiana_room_13DL_004C50; -#else -static const char kakusiana_room_13DL_004C50[] __attribute__((aligned (2))) = dkakusiana_room_13DL_004C50; -#endif - -#define dkakusiana_room_13Tex_005EC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_005EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13Tex_005EC8[] = dkakusiana_room_13Tex_005EC8; -#else -static const char kakusiana_room_13Tex_005EC8[] __attribute__((aligned (2))) = dkakusiana_room_13Tex_005EC8; -#endif - -#define dkakusiana_room_13Tex_004EC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_004EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13Tex_004EC8[] = dkakusiana_room_13Tex_004EC8; -#else -static const char kakusiana_room_13Tex_004EC8[] __attribute__((aligned (2))) = dkakusiana_room_13Tex_004EC8; -#endif - -#define dkakusiana_room_13DL_001208 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_001208" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_001208[] = dkakusiana_room_13DL_001208; -#else -static const char kakusiana_room_13DL_001208[] __attribute__((aligned (2))) = dkakusiana_room_13DL_001208; -#endif - -#define dkakusiana_room_13DL_0013D0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_0013D0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_0013D0[] = dkakusiana_room_13DL_0013D0; -#else -static const char kakusiana_room_13DL_0013D0[] __attribute__((aligned (2))) = dkakusiana_room_13DL_0013D0; -#endif - -#define dkakusiana_room_13DL_004518 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_004518" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_004518[] = dkakusiana_room_13DL_004518; -#else -static const char kakusiana_room_13DL_004518[] __attribute__((aligned (2))) = dkakusiana_room_13DL_004518; -#endif - -#define dkakusiana_room_13DL_000C08 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_000C08" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_000C08[] = dkakusiana_room_13DL_000C08; -#else -static const char kakusiana_room_13DL_000C08[] __attribute__((aligned (2))) = dkakusiana_room_13DL_000C08; -#endif - -#define dkakusiana_room_13Tex_001950 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_001950" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13Tex_001950[] = dkakusiana_room_13Tex_001950; -#else -static const char kakusiana_room_13Tex_001950[] __attribute__((aligned (2))) = dkakusiana_room_13Tex_001950; -#endif - -#define dkakusiana_room_13DL_0006F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_0006F0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_0006F0[] = dkakusiana_room_13DL_0006F0; -#else -static const char kakusiana_room_13DL_0006F0[] __attribute__((aligned (2))) = dkakusiana_room_13DL_0006F0; -#endif - -#define dkakusiana_room_13DL_0017B8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_0017B8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13DL_0017B8[] = dkakusiana_room_13DL_0017B8; -#else -static const char kakusiana_room_13DL_0017B8[] __attribute__((aligned (2))) = dkakusiana_room_13DL_0017B8; -#endif - -#define dkakusiana_room_13Tex_002950 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_002950" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_13Tex_002950[] = dkakusiana_room_13Tex_002950; -#else -static const char kakusiana_room_13Tex_002950[] __attribute__((aligned (2))) = dkakusiana_room_13Tex_002950; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_13DL_004350 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_004350" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_004350[] = dkakusiana_room_13DL_004350; + +#define dkakusiana_room_13DL_000FF8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_000FF8" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_000FF8[] = dkakusiana_room_13DL_000FF8; + +#define dkakusiana_room_13Tex_003950 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_003950" +static const ALIGN_ASSET(2) char kakusiana_room_13Tex_003950[] = dkakusiana_room_13Tex_003950; + +#define dkakusiana_room_13DL_004C50 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_004C50" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_004C50[] = dkakusiana_room_13DL_004C50; + +#define dkakusiana_room_13Tex_005EC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_005EC8" +static const ALIGN_ASSET(2) char kakusiana_room_13Tex_005EC8[] = dkakusiana_room_13Tex_005EC8; + +#define dkakusiana_room_13Tex_004EC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_004EC8" +static const ALIGN_ASSET(2) char kakusiana_room_13Tex_004EC8[] = dkakusiana_room_13Tex_004EC8; + +#define dkakusiana_room_13DL_001208 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_001208" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_001208[] = dkakusiana_room_13DL_001208; + +#define dkakusiana_room_13DL_0013D0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_0013D0" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_0013D0[] = dkakusiana_room_13DL_0013D0; + +#define dkakusiana_room_13DL_004518 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_004518" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_004518[] = dkakusiana_room_13DL_004518; + +#define dkakusiana_room_13DL_000C08 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_000C08" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_000C08[] = dkakusiana_room_13DL_000C08; + +#define dkakusiana_room_13Tex_001950 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_001950" +static const ALIGN_ASSET(2) char kakusiana_room_13Tex_001950[] = dkakusiana_room_13Tex_001950; + +#define dkakusiana_room_13DL_0006F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_0006F0" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_0006F0[] = dkakusiana_room_13DL_0006F0; + +#define dkakusiana_room_13DL_0017B8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13DL_0017B8" +static const ALIGN_ASSET(2) char kakusiana_room_13DL_0017B8[] = dkakusiana_room_13DL_0017B8; + +#define dkakusiana_room_13Tex_002950 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_13Tex_002950" +static const ALIGN_ASSET(2) char kakusiana_room_13Tex_002950[] = dkakusiana_room_13Tex_002950; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_2.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_2.h index 0d1442cb3..a06ca151a 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_2.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_2.h @@ -1,58 +1,27 @@ #pragma once -#define dkakusiana_room_2DL_002650 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_002650" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_2DL_002650[] = dkakusiana_room_2DL_002650; -#else -static const char kakusiana_room_2DL_002650[] __attribute__((aligned (2))) = dkakusiana_room_2DL_002650; -#endif - -#define dkakusiana_room_2DL_000F70 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_000F70" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_2DL_000F70[] = dkakusiana_room_2DL_000F70; -#else -static const char kakusiana_room_2DL_000F70[] __attribute__((aligned (2))) = dkakusiana_room_2DL_000F70; -#endif - -#define dkakusiana_room_2Tex_001C48 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2Tex_001C48" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_2Tex_001C48[] = dkakusiana_room_2Tex_001C48; -#else -static const char kakusiana_room_2Tex_001C48[] __attribute__((aligned (2))) = dkakusiana_room_2Tex_001C48; -#endif - -#define dkakusiana_room_2DL_0011B0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_0011B0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_2DL_0011B0[] = dkakusiana_room_2DL_0011B0; -#else -static const char kakusiana_room_2DL_0011B0[] __attribute__((aligned (2))) = dkakusiana_room_2DL_0011B0; -#endif - -#define dkakusiana_room_2DL_001378 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_2DL_001378[] = dkakusiana_room_2DL_001378; -#else -static const char kakusiana_room_2DL_001378[] __attribute__((aligned (2))) = dkakusiana_room_2DL_001378; -#endif - -#define dkakusiana_room_2DL_002818 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_002818" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_2DL_002818[] = dkakusiana_room_2DL_002818; -#else -static const char kakusiana_room_2DL_002818[] __attribute__((aligned (2))) = dkakusiana_room_2DL_002818; -#endif - -#define dkakusiana_room_2DL_000A20 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_000A20" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_2DL_000A20[] = dkakusiana_room_2DL_000A20; -#else -static const char kakusiana_room_2DL_000A20[] __attribute__((aligned (2))) = dkakusiana_room_2DL_000A20; -#endif - -#define dkakusiana_room_2Tex_001448 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2Tex_001448" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_2Tex_001448[] = dkakusiana_room_2Tex_001448; -#else -static const char kakusiana_room_2Tex_001448[] __attribute__((aligned (2))) = dkakusiana_room_2Tex_001448; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_2DL_002650 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_002650" +static const ALIGN_ASSET(2) char kakusiana_room_2DL_002650[] = dkakusiana_room_2DL_002650; + +#define dkakusiana_room_2DL_000F70 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_000F70" +static const ALIGN_ASSET(2) char kakusiana_room_2DL_000F70[] = dkakusiana_room_2DL_000F70; + +#define dkakusiana_room_2Tex_001C48 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2Tex_001C48" +static const ALIGN_ASSET(2) char kakusiana_room_2Tex_001C48[] = dkakusiana_room_2Tex_001C48; + +#define dkakusiana_room_2DL_0011B0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_0011B0" +static const ALIGN_ASSET(2) char kakusiana_room_2DL_0011B0[] = dkakusiana_room_2DL_0011B0; + +#define dkakusiana_room_2DL_001378 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_001378" +static const ALIGN_ASSET(2) char kakusiana_room_2DL_001378[] = dkakusiana_room_2DL_001378; + +#define dkakusiana_room_2DL_002818 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_002818" +static const ALIGN_ASSET(2) char kakusiana_room_2DL_002818[] = dkakusiana_room_2DL_002818; + +#define dkakusiana_room_2DL_000A20 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2DL_000A20" +static const ALIGN_ASSET(2) char kakusiana_room_2DL_000A20[] = dkakusiana_room_2DL_000A20; + +#define dkakusiana_room_2Tex_001448 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_2Tex_001448" +static const ALIGN_ASSET(2) char kakusiana_room_2Tex_001448[] = dkakusiana_room_2Tex_001448; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_3.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_3.h index e5261acba..0cd01ad4b 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_3.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_3.h @@ -1,86 +1,39 @@ #pragma once -#define dkakusiana_room_3DL_003A20 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_003A20" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3DL_003A20[] = dkakusiana_room_3DL_003A20; -#else -static const char kakusiana_room_3DL_003A20[] __attribute__((aligned (2))) = dkakusiana_room_3DL_003A20; -#endif - -#define dkakusiana_room_3DL_0012A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_0012A0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3DL_0012A0[] = dkakusiana_room_3DL_0012A0; -#else -static const char kakusiana_room_3DL_0012A0[] __attribute__((aligned (2))) = dkakusiana_room_3DL_0012A0; -#endif - -#define dkakusiana_room_3Tex_002818 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3Tex_002818" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3Tex_002818[] = dkakusiana_room_3Tex_002818; -#else -static const char kakusiana_room_3Tex_002818[] __attribute__((aligned (2))) = dkakusiana_room_3Tex_002818; -#endif - -#define dkakusiana_room_3DL_004008 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_004008" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3DL_004008[] = dkakusiana_room_3DL_004008; -#else -static const char kakusiana_room_3DL_004008[] __attribute__((aligned (2))) = dkakusiana_room_3DL_004008; -#endif - -#define dkakusiana_room_3Tex_004130 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3Tex_004130" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3Tex_004130[] = dkakusiana_room_3Tex_004130; -#else -static const char kakusiana_room_3Tex_004130[] __attribute__((aligned (2))) = dkakusiana_room_3Tex_004130; -#endif - -#define dkakusiana_room_3DL_003BC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_003BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3DL_003BC8[] = dkakusiana_room_3DL_003BC8; -#else -static const char kakusiana_room_3DL_003BC8[] __attribute__((aligned (2))) = dkakusiana_room_3DL_003BC8; -#endif - -#define dkakusiana_room_3Tex_004930 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3Tex_004930" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3Tex_004930[] = dkakusiana_room_3Tex_004930; -#else -static const char kakusiana_room_3Tex_004930[] __attribute__((aligned (2))) = dkakusiana_room_3Tex_004930; -#endif - -#define dkakusiana_room_3DL_001580 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_001580" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3DL_001580[] = dkakusiana_room_3DL_001580; -#else -static const char kakusiana_room_3DL_001580[] __attribute__((aligned (2))) = dkakusiana_room_3DL_001580; -#endif - -#define dkakusiana_room_3DL_001748 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_001748" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3DL_001748[] = dkakusiana_room_3DL_001748; -#else -static const char kakusiana_room_3DL_001748[] __attribute__((aligned (2))) = dkakusiana_room_3DL_001748; -#endif - -#define dkakusiana_room_3DL_003D80 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_003D80" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3DL_003D80[] = dkakusiana_room_3DL_003D80; -#else -static const char kakusiana_room_3DL_003D80[] __attribute__((aligned (2))) = dkakusiana_room_3DL_003D80; -#endif - -#define dkakusiana_room_3DL_000AF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_000AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3DL_000AF0[] = dkakusiana_room_3DL_000AF0; -#else -static const char kakusiana_room_3DL_000AF0[] __attribute__((aligned (2))) = dkakusiana_room_3DL_000AF0; -#endif - -#define dkakusiana_room_3Tex_001818 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3Tex_001818" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_3Tex_001818[] = dkakusiana_room_3Tex_001818; -#else -static const char kakusiana_room_3Tex_001818[] __attribute__((aligned (2))) = dkakusiana_room_3Tex_001818; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_3DL_003A20 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_003A20" +static const ALIGN_ASSET(2) char kakusiana_room_3DL_003A20[] = dkakusiana_room_3DL_003A20; + +#define dkakusiana_room_3DL_0012A0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_0012A0" +static const ALIGN_ASSET(2) char kakusiana_room_3DL_0012A0[] = dkakusiana_room_3DL_0012A0; + +#define dkakusiana_room_3Tex_002818 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3Tex_002818" +static const ALIGN_ASSET(2) char kakusiana_room_3Tex_002818[] = dkakusiana_room_3Tex_002818; + +#define dkakusiana_room_3DL_004008 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_004008" +static const ALIGN_ASSET(2) char kakusiana_room_3DL_004008[] = dkakusiana_room_3DL_004008; + +#define dkakusiana_room_3Tex_004130 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3Tex_004130" +static const ALIGN_ASSET(2) char kakusiana_room_3Tex_004130[] = dkakusiana_room_3Tex_004130; + +#define dkakusiana_room_3DL_003BC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_003BC8" +static const ALIGN_ASSET(2) char kakusiana_room_3DL_003BC8[] = dkakusiana_room_3DL_003BC8; + +#define dkakusiana_room_3Tex_004930 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3Tex_004930" +static const ALIGN_ASSET(2) char kakusiana_room_3Tex_004930[] = dkakusiana_room_3Tex_004930; + +#define dkakusiana_room_3DL_001580 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_001580" +static const ALIGN_ASSET(2) char kakusiana_room_3DL_001580[] = dkakusiana_room_3DL_001580; + +#define dkakusiana_room_3DL_001748 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_001748" +static const ALIGN_ASSET(2) char kakusiana_room_3DL_001748[] = dkakusiana_room_3DL_001748; + +#define dkakusiana_room_3DL_003D80 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_003D80" +static const ALIGN_ASSET(2) char kakusiana_room_3DL_003D80[] = dkakusiana_room_3DL_003D80; + +#define dkakusiana_room_3DL_000AF0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3DL_000AF0" +static const ALIGN_ASSET(2) char kakusiana_room_3DL_000AF0[] = dkakusiana_room_3DL_000AF0; + +#define dkakusiana_room_3Tex_001818 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_3Tex_001818" +static const ALIGN_ASSET(2) char kakusiana_room_3Tex_001818[] = dkakusiana_room_3Tex_001818; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_4.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_4.h index 562331588..f3cbe568b 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_4.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_4.h @@ -1,100 +1,45 @@ #pragma once -#define dkakusiana_room_4DL_004B40 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_004B40" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_004B40[] = dkakusiana_room_4DL_004B40; -#else -static const char kakusiana_room_4DL_004B40[] __attribute__((aligned (2))) = dkakusiana_room_4DL_004B40; -#endif - -#define dkakusiana_room_4DL_001420 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_001420" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_001420[] = dkakusiana_room_4DL_001420; -#else -static const char kakusiana_room_4DL_001420[] __attribute__((aligned (2))) = dkakusiana_room_4DL_001420; -#endif - -#define dkakusiana_room_4Tex_004138 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_004138" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4Tex_004138[] = dkakusiana_room_4Tex_004138; -#else -static const char kakusiana_room_4Tex_004138[] __attribute__((aligned (2))) = dkakusiana_room_4Tex_004138; -#endif - -#define dkakusiana_room_4DL_005690 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_005690" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_005690[] = dkakusiana_room_4DL_005690; -#else -static const char kakusiana_room_4DL_005690[] __attribute__((aligned (2))) = dkakusiana_room_4DL_005690; -#endif - -#define dkakusiana_room_4Tex_006958 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_006958" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4Tex_006958[] = dkakusiana_room_4Tex_006958; -#else -static const char kakusiana_room_4Tex_006958[] __attribute__((aligned (2))) = dkakusiana_room_4Tex_006958; -#endif - -#define dkakusiana_room_4Tex_005958 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_005958" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4Tex_005958[] = dkakusiana_room_4Tex_005958; -#else -static const char kakusiana_room_4Tex_005958[] __attribute__((aligned (2))) = dkakusiana_room_4Tex_005958; -#endif - -#define dkakusiana_room_4DL_001660 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_001660" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_001660[] = dkakusiana_room_4DL_001660; -#else -static const char kakusiana_room_4DL_001660[] __attribute__((aligned (2))) = dkakusiana_room_4DL_001660; -#endif - -#define dkakusiana_room_4DL_001828 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_001828" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_001828[] = dkakusiana_room_4DL_001828; -#else -static const char kakusiana_room_4DL_001828[] __attribute__((aligned (2))) = dkakusiana_room_4DL_001828; -#endif - -#define dkakusiana_room_4DL_004D08 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_004D08" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_004D08[] = dkakusiana_room_4DL_004D08; -#else -static const char kakusiana_room_4DL_004D08[] __attribute__((aligned (2))) = dkakusiana_room_4DL_004D08; -#endif - -#define dkakusiana_room_4DL_000FF8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_000FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_000FF8[] = dkakusiana_room_4DL_000FF8; -#else -static const char kakusiana_room_4DL_000FF8[] __attribute__((aligned (2))) = dkakusiana_room_4DL_000FF8; -#endif - -#define dkakusiana_room_4DL_000BB0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_000BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_000BB0[] = dkakusiana_room_4DL_000BB0; -#else -static const char kakusiana_room_4DL_000BB0[] __attribute__((aligned (2))) = dkakusiana_room_4DL_000BB0; -#endif - -#define dkakusiana_room_4Tex_002138 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_002138" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4Tex_002138[] = dkakusiana_room_4Tex_002138; -#else -static const char kakusiana_room_4Tex_002138[] __attribute__((aligned (2))) = dkakusiana_room_4Tex_002138; -#endif - -#define dkakusiana_room_4DL_001F10 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_001F10" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4DL_001F10[] = dkakusiana_room_4DL_001F10; -#else -static const char kakusiana_room_4DL_001F10[] __attribute__((aligned (2))) = dkakusiana_room_4DL_001F10; -#endif - -#define dkakusiana_room_4Tex_003138 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_003138" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_4Tex_003138[] = dkakusiana_room_4Tex_003138; -#else -static const char kakusiana_room_4Tex_003138[] __attribute__((aligned (2))) = dkakusiana_room_4Tex_003138; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_4DL_004B40 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_004B40" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_004B40[] = dkakusiana_room_4DL_004B40; + +#define dkakusiana_room_4DL_001420 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_001420" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_001420[] = dkakusiana_room_4DL_001420; + +#define dkakusiana_room_4Tex_004138 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_004138" +static const ALIGN_ASSET(2) char kakusiana_room_4Tex_004138[] = dkakusiana_room_4Tex_004138; + +#define dkakusiana_room_4DL_005690 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_005690" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_005690[] = dkakusiana_room_4DL_005690; + +#define dkakusiana_room_4Tex_006958 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_006958" +static const ALIGN_ASSET(2) char kakusiana_room_4Tex_006958[] = dkakusiana_room_4Tex_006958; + +#define dkakusiana_room_4Tex_005958 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_005958" +static const ALIGN_ASSET(2) char kakusiana_room_4Tex_005958[] = dkakusiana_room_4Tex_005958; + +#define dkakusiana_room_4DL_001660 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_001660" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_001660[] = dkakusiana_room_4DL_001660; + +#define dkakusiana_room_4DL_001828 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_001828" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_001828[] = dkakusiana_room_4DL_001828; + +#define dkakusiana_room_4DL_004D08 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_004D08" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_004D08[] = dkakusiana_room_4DL_004D08; + +#define dkakusiana_room_4DL_000FF8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_000FF8" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_000FF8[] = dkakusiana_room_4DL_000FF8; + +#define dkakusiana_room_4DL_000BB0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_000BB0" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_000BB0[] = dkakusiana_room_4DL_000BB0; + +#define dkakusiana_room_4Tex_002138 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_002138" +static const ALIGN_ASSET(2) char kakusiana_room_4Tex_002138[] = dkakusiana_room_4Tex_002138; + +#define dkakusiana_room_4DL_001F10 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4DL_001F10" +static const ALIGN_ASSET(2) char kakusiana_room_4DL_001F10[] = dkakusiana_room_4DL_001F10; + +#define dkakusiana_room_4Tex_003138 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_4Tex_003138" +static const ALIGN_ASSET(2) char kakusiana_room_4Tex_003138[] = dkakusiana_room_4Tex_003138; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_5.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_5.h index 7ac2e54d3..f587ca453 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_5.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_5.h @@ -1,79 +1,36 @@ #pragma once -#define dkakusiana_room_5DL_003A90 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_003A90" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5DL_003A90[] = dkakusiana_room_5DL_003A90; -#else -static const char kakusiana_room_5DL_003A90[] __attribute__((aligned (2))) = dkakusiana_room_5DL_003A90; -#endif - -#define dkakusiana_room_5DL_001320 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_001320" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5DL_001320[] = dkakusiana_room_5DL_001320; -#else -static const char kakusiana_room_5DL_001320[] __attribute__((aligned (2))) = dkakusiana_room_5DL_001320; -#endif - -#define dkakusiana_room_5Tex_001888 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5Tex_001888" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5Tex_001888[] = dkakusiana_room_5Tex_001888; -#else -static const char kakusiana_room_5Tex_001888[] __attribute__((aligned (2))) = dkakusiana_room_5Tex_001888; -#endif - -#define dkakusiana_room_5DL_003C68 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_003C68" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5DL_003C68[] = dkakusiana_room_5DL_003C68; -#else -static const char kakusiana_room_5DL_003C68[] __attribute__((aligned (2))) = dkakusiana_room_5DL_003C68; -#endif - -#define dkakusiana_room_5Tex_003ED8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5Tex_003ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5Tex_003ED8[] = dkakusiana_room_5Tex_003ED8; -#else -static const char kakusiana_room_5Tex_003ED8[] __attribute__((aligned (2))) = dkakusiana_room_5Tex_003ED8; -#endif - -#define dkakusiana_room_5DL_0015E8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_0015E8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5DL_0015E8[] = dkakusiana_room_5DL_0015E8; -#else -static const char kakusiana_room_5DL_0015E8[] __attribute__((aligned (2))) = dkakusiana_room_5DL_0015E8; -#endif - -#define dkakusiana_room_5DL_0017B0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_0017B0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5DL_0017B0[] = dkakusiana_room_5DL_0017B0; -#else -static const char kakusiana_room_5DL_0017B0[] __attribute__((aligned (2))) = dkakusiana_room_5DL_0017B0; -#endif - -#define dkakusiana_room_5DL_003E30 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_003E30" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5DL_003E30[] = dkakusiana_room_5DL_003E30; -#else -static const char kakusiana_room_5DL_003E30[] __attribute__((aligned (2))) = dkakusiana_room_5DL_003E30; -#endif - -#define dkakusiana_room_5DL_000CD8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_000CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5DL_000CD8[] = dkakusiana_room_5DL_000CD8; -#else -static const char kakusiana_room_5DL_000CD8[] __attribute__((aligned (2))) = dkakusiana_room_5DL_000CD8; -#endif - -#define dkakusiana_room_5DL_0007D0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_0007D0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5DL_0007D0[] = dkakusiana_room_5DL_0007D0; -#else -static const char kakusiana_room_5DL_0007D0[] __attribute__((aligned (2))) = dkakusiana_room_5DL_0007D0; -#endif - -#define dkakusiana_room_5Tex_002888 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5Tex_002888" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_5Tex_002888[] = dkakusiana_room_5Tex_002888; -#else -static const char kakusiana_room_5Tex_002888[] __attribute__((aligned (2))) = dkakusiana_room_5Tex_002888; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_5DL_003A90 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_003A90" +static const ALIGN_ASSET(2) char kakusiana_room_5DL_003A90[] = dkakusiana_room_5DL_003A90; + +#define dkakusiana_room_5DL_001320 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_001320" +static const ALIGN_ASSET(2) char kakusiana_room_5DL_001320[] = dkakusiana_room_5DL_001320; + +#define dkakusiana_room_5Tex_001888 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5Tex_001888" +static const ALIGN_ASSET(2) char kakusiana_room_5Tex_001888[] = dkakusiana_room_5Tex_001888; + +#define dkakusiana_room_5DL_003C68 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_003C68" +static const ALIGN_ASSET(2) char kakusiana_room_5DL_003C68[] = dkakusiana_room_5DL_003C68; + +#define dkakusiana_room_5Tex_003ED8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5Tex_003ED8" +static const ALIGN_ASSET(2) char kakusiana_room_5Tex_003ED8[] = dkakusiana_room_5Tex_003ED8; + +#define dkakusiana_room_5DL_0015E8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_0015E8" +static const ALIGN_ASSET(2) char kakusiana_room_5DL_0015E8[] = dkakusiana_room_5DL_0015E8; + +#define dkakusiana_room_5DL_0017B0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_0017B0" +static const ALIGN_ASSET(2) char kakusiana_room_5DL_0017B0[] = dkakusiana_room_5DL_0017B0; + +#define dkakusiana_room_5DL_003E30 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_003E30" +static const ALIGN_ASSET(2) char kakusiana_room_5DL_003E30[] = dkakusiana_room_5DL_003E30; + +#define dkakusiana_room_5DL_000CD8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_000CD8" +static const ALIGN_ASSET(2) char kakusiana_room_5DL_000CD8[] = dkakusiana_room_5DL_000CD8; + +#define dkakusiana_room_5DL_0007D0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5DL_0007D0" +static const ALIGN_ASSET(2) char kakusiana_room_5DL_0007D0[] = dkakusiana_room_5DL_0007D0; + +#define dkakusiana_room_5Tex_002888 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_5Tex_002888" +static const ALIGN_ASSET(2) char kakusiana_room_5Tex_002888[] = dkakusiana_room_5Tex_002888; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_6.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_6.h index d7d1b47d7..89b93d1ce 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_6.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_6.h @@ -1,93 +1,42 @@ #pragma once -#define dkakusiana_room_6DL_0055E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_0055E0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_0055E0[] = dkakusiana_room_6DL_0055E0; -#else -static const char kakusiana_room_6DL_0055E0[] __attribute__((aligned (2))) = dkakusiana_room_6DL_0055E0; -#endif - -#define dkakusiana_room_6DL_000A98 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_000A98" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_000A98[] = dkakusiana_room_6DL_000A98; -#else -static const char kakusiana_room_6DL_000A98[] __attribute__((aligned (2))) = dkakusiana_room_6DL_000A98; -#endif - -#define dkakusiana_room_6Tex_0032E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6Tex_0032E0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6Tex_0032E0[] = dkakusiana_room_6Tex_0032E0; -#else -static const char kakusiana_room_6Tex_0032E0[] __attribute__((aligned (2))) = dkakusiana_room_6Tex_0032E0; -#endif - -#define dkakusiana_room_6DL_001D78 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_001D78" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_001D78[] = dkakusiana_room_6DL_001D78; -#else -static const char kakusiana_room_6DL_001D78[] __attribute__((aligned (2))) = dkakusiana_room_6DL_001D78; -#endif - -#define dkakusiana_room_6Tex_004AE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6Tex_004AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6Tex_004AE0[] = dkakusiana_room_6Tex_004AE0; -#else -static const char kakusiana_room_6Tex_004AE0[] __attribute__((aligned (2))) = dkakusiana_room_6Tex_004AE0; -#endif - -#define dkakusiana_room_6Tex_003AE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6Tex_003AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6Tex_003AE0[] = dkakusiana_room_6Tex_003AE0; -#else -static const char kakusiana_room_6Tex_003AE0[] __attribute__((aligned (2))) = dkakusiana_room_6Tex_003AE0; -#endif - -#define dkakusiana_room_6DL_005810 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_005810" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_005810[] = dkakusiana_room_6DL_005810; -#else -static const char kakusiana_room_6DL_005810[] __attribute__((aligned (2))) = dkakusiana_room_6DL_005810; -#endif - -#define dkakusiana_room_6DL_001190 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_001190" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_001190[] = dkakusiana_room_6DL_001190; -#else -static const char kakusiana_room_6DL_001190[] __attribute__((aligned (2))) = dkakusiana_room_6DL_001190; -#endif - -#define dkakusiana_room_6DL_002200 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_002200" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_002200[] = dkakusiana_room_6DL_002200; -#else -static const char kakusiana_room_6DL_002200[] __attribute__((aligned (2))) = dkakusiana_room_6DL_002200; -#endif - -#define dkakusiana_room_6DL_0059C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_0059C0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_0059C0[] = dkakusiana_room_6DL_0059C0; -#else -static const char kakusiana_room_6DL_0059C0[] __attribute__((aligned (2))) = dkakusiana_room_6DL_0059C0; -#endif - -#define dkakusiana_room_6DL_000F48 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_000F48" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_000F48[] = dkakusiana_room_6DL_000F48; -#else -static const char kakusiana_room_6DL_000F48[] __attribute__((aligned (2))) = dkakusiana_room_6DL_000F48; -#endif - -#define dkakusiana_room_6DL_0006B0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_0006B0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6DL_0006B0[] = dkakusiana_room_6DL_0006B0; -#else -static const char kakusiana_room_6DL_0006B0[] __attribute__((aligned (2))) = dkakusiana_room_6DL_0006B0; -#endif - -#define dkakusiana_room_6Tex_0022E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6Tex_0022E0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_6Tex_0022E0[] = dkakusiana_room_6Tex_0022E0; -#else -static const char kakusiana_room_6Tex_0022E0[] __attribute__((aligned (2))) = dkakusiana_room_6Tex_0022E0; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_6DL_0055E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_0055E0" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_0055E0[] = dkakusiana_room_6DL_0055E0; + +#define dkakusiana_room_6DL_000A98 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_000A98" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_000A98[] = dkakusiana_room_6DL_000A98; + +#define dkakusiana_room_6Tex_0032E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6Tex_0032E0" +static const ALIGN_ASSET(2) char kakusiana_room_6Tex_0032E0[] = dkakusiana_room_6Tex_0032E0; + +#define dkakusiana_room_6DL_001D78 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_001D78" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_001D78[] = dkakusiana_room_6DL_001D78; + +#define dkakusiana_room_6Tex_004AE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6Tex_004AE0" +static const ALIGN_ASSET(2) char kakusiana_room_6Tex_004AE0[] = dkakusiana_room_6Tex_004AE0; + +#define dkakusiana_room_6Tex_003AE0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6Tex_003AE0" +static const ALIGN_ASSET(2) char kakusiana_room_6Tex_003AE0[] = dkakusiana_room_6Tex_003AE0; + +#define dkakusiana_room_6DL_005810 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_005810" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_005810[] = dkakusiana_room_6DL_005810; + +#define dkakusiana_room_6DL_001190 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_001190" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_001190[] = dkakusiana_room_6DL_001190; + +#define dkakusiana_room_6DL_002200 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_002200" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_002200[] = dkakusiana_room_6DL_002200; + +#define dkakusiana_room_6DL_0059C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_0059C0" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_0059C0[] = dkakusiana_room_6DL_0059C0; + +#define dkakusiana_room_6DL_000F48 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_000F48" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_000F48[] = dkakusiana_room_6DL_000F48; + +#define dkakusiana_room_6DL_0006B0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6DL_0006B0" +static const ALIGN_ASSET(2) char kakusiana_room_6DL_0006B0[] = dkakusiana_room_6DL_0006B0; + +#define dkakusiana_room_6Tex_0022E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_6Tex_0022E0" +static const ALIGN_ASSET(2) char kakusiana_room_6Tex_0022E0[] = dkakusiana_room_6Tex_0022E0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_7.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_7.h index 7b73dd195..404b40b58 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_7.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_7.h @@ -1,86 +1,39 @@ #pragma once -#define dkakusiana_room_7DL_003D60 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_003D60" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7DL_003D60[] = dkakusiana_room_7DL_003D60; -#else -static const char kakusiana_room_7DL_003D60[] __attribute__((aligned (2))) = dkakusiana_room_7DL_003D60; -#endif - -#define dkakusiana_room_7DL_0006C8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_0006C8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7DL_0006C8[] = dkakusiana_room_7DL_0006C8; -#else -static const char kakusiana_room_7DL_0006C8[] __attribute__((aligned (2))) = dkakusiana_room_7DL_0006C8; -#endif - -#define dkakusiana_room_7Tex_002B60 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7Tex_002B60" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7Tex_002B60[] = dkakusiana_room_7Tex_002B60; -#else -static const char kakusiana_room_7Tex_002B60[] __attribute__((aligned (2))) = dkakusiana_room_7Tex_002B60; -#endif - -#define dkakusiana_room_7Tex_002160 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7Tex_002160" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7Tex_002160[] = dkakusiana_room_7Tex_002160; -#else -static const char kakusiana_room_7Tex_002160[] __attribute__((aligned (2))) = dkakusiana_room_7Tex_002160; -#endif - -#define dkakusiana_room_7DL_000960 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_000960" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7DL_000960[] = dkakusiana_room_7DL_000960; -#else -static const char kakusiana_room_7DL_000960[] __attribute__((aligned (2))) = dkakusiana_room_7DL_000960; -#endif - -#define dkakusiana_room_7DL_000B28 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_000B28" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7DL_000B28[] = dkakusiana_room_7DL_000B28; -#else -static const char kakusiana_room_7DL_000B28[] __attribute__((aligned (2))) = dkakusiana_room_7DL_000B28; -#endif - -#define dkakusiana_room_7DL_003F28 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_003F28" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7DL_003F28[] = dkakusiana_room_7DL_003F28; -#else -static const char kakusiana_room_7DL_003F28[] __attribute__((aligned (2))) = dkakusiana_room_7DL_003F28; -#endif - -#define dkakusiana_room_7DL_000290 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_000290" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7DL_000290[] = dkakusiana_room_7DL_000290; -#else -static const char kakusiana_room_7DL_000290[] __attribute__((aligned (2))) = dkakusiana_room_7DL_000290; -#endif - -#define dkakusiana_room_7DL_0015C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_0015C0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7DL_0015C0[] = dkakusiana_room_7DL_0015C0; -#else -static const char kakusiana_room_7DL_0015C0[] __attribute__((aligned (2))) = dkakusiana_room_7DL_0015C0; -#endif - -#define dkakusiana_room_7Tex_002960 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7Tex_002960" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7Tex_002960[] = dkakusiana_room_7Tex_002960; -#else -static const char kakusiana_room_7Tex_002960[] __attribute__((aligned (2))) = dkakusiana_room_7Tex_002960; -#endif - -#define dkakusiana_room_7DL_001B88 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_001B88" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7DL_001B88[] = dkakusiana_room_7DL_001B88; -#else -static const char kakusiana_room_7DL_001B88[] __attribute__((aligned (2))) = dkakusiana_room_7DL_001B88; -#endif - -#define dkakusiana_room_7Tex_001D60 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7Tex_001D60" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_7Tex_001D60[] = dkakusiana_room_7Tex_001D60; -#else -static const char kakusiana_room_7Tex_001D60[] __attribute__((aligned (2))) = dkakusiana_room_7Tex_001D60; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_7DL_003D60 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_003D60" +static const ALIGN_ASSET(2) char kakusiana_room_7DL_003D60[] = dkakusiana_room_7DL_003D60; + +#define dkakusiana_room_7DL_0006C8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_0006C8" +static const ALIGN_ASSET(2) char kakusiana_room_7DL_0006C8[] = dkakusiana_room_7DL_0006C8; + +#define dkakusiana_room_7Tex_002B60 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7Tex_002B60" +static const ALIGN_ASSET(2) char kakusiana_room_7Tex_002B60[] = dkakusiana_room_7Tex_002B60; + +#define dkakusiana_room_7Tex_002160 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7Tex_002160" +static const ALIGN_ASSET(2) char kakusiana_room_7Tex_002160[] = dkakusiana_room_7Tex_002160; + +#define dkakusiana_room_7DL_000960 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_000960" +static const ALIGN_ASSET(2) char kakusiana_room_7DL_000960[] = dkakusiana_room_7DL_000960; + +#define dkakusiana_room_7DL_000B28 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_000B28" +static const ALIGN_ASSET(2) char kakusiana_room_7DL_000B28[] = dkakusiana_room_7DL_000B28; + +#define dkakusiana_room_7DL_003F28 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_003F28" +static const ALIGN_ASSET(2) char kakusiana_room_7DL_003F28[] = dkakusiana_room_7DL_003F28; + +#define dkakusiana_room_7DL_000290 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_000290" +static const ALIGN_ASSET(2) char kakusiana_room_7DL_000290[] = dkakusiana_room_7DL_000290; + +#define dkakusiana_room_7DL_0015C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_0015C0" +static const ALIGN_ASSET(2) char kakusiana_room_7DL_0015C0[] = dkakusiana_room_7DL_0015C0; + +#define dkakusiana_room_7Tex_002960 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7Tex_002960" +static const ALIGN_ASSET(2) char kakusiana_room_7Tex_002960[] = dkakusiana_room_7Tex_002960; + +#define dkakusiana_room_7DL_001B88 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7DL_001B88" +static const ALIGN_ASSET(2) char kakusiana_room_7DL_001B88[] = dkakusiana_room_7DL_001B88; + +#define dkakusiana_room_7Tex_001D60 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_7Tex_001D60" +static const ALIGN_ASSET(2) char kakusiana_room_7Tex_001D60[] = dkakusiana_room_7Tex_001D60; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_8.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_8.h index 012a79bd2..6af327318 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_8.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_8.h @@ -1,65 +1,30 @@ #pragma once -#define dkakusiana_room_8DL_0033C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_0033C0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8DL_0033C0[] = dkakusiana_room_8DL_0033C0; -#else -static const char kakusiana_room_8DL_0033C0[] __attribute__((aligned (2))) = dkakusiana_room_8DL_0033C0; -#endif - -#define dkakusiana_room_8DL_0014B8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_0014B8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8DL_0014B8[] = dkakusiana_room_8DL_0014B8; -#else -static const char kakusiana_room_8DL_0014B8[] __attribute__((aligned (2))) = dkakusiana_room_8DL_0014B8; -#endif - -#define dkakusiana_room_8Tex_0029C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8Tex_0029C0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8Tex_0029C0[] = dkakusiana_room_8Tex_0029C0; -#else -static const char kakusiana_room_8Tex_0029C0[] __attribute__((aligned (2))) = dkakusiana_room_8Tex_0029C0; -#endif - -#define dkakusiana_room_8DL_001720 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_001720" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8DL_001720[] = dkakusiana_room_8DL_001720; -#else -static const char kakusiana_room_8DL_001720[] __attribute__((aligned (2))) = dkakusiana_room_8DL_001720; -#endif - -#define dkakusiana_room_8DL_0018E8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_0018E8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8DL_0018E8[] = dkakusiana_room_8DL_0018E8; -#else -static const char kakusiana_room_8DL_0018E8[] __attribute__((aligned (2))) = dkakusiana_room_8DL_0018E8; -#endif - -#define dkakusiana_room_8DL_003588 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_003588" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8DL_003588[] = dkakusiana_room_8DL_003588; -#else -static const char kakusiana_room_8DL_003588[] __attribute__((aligned (2))) = dkakusiana_room_8DL_003588; -#endif - -#define dkakusiana_room_8DL_001048 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_001048" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8DL_001048[] = dkakusiana_room_8DL_001048; -#else -static const char kakusiana_room_8DL_001048[] __attribute__((aligned (2))) = dkakusiana_room_8DL_001048; -#endif - -#define dkakusiana_room_8DL_000B20 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_000B20" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8DL_000B20[] = dkakusiana_room_8DL_000B20; -#else -static const char kakusiana_room_8DL_000B20[] __attribute__((aligned (2))) = dkakusiana_room_8DL_000B20; -#endif - -#define dkakusiana_room_8Tex_0019C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8Tex_0019C0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_8Tex_0019C0[] = dkakusiana_room_8Tex_0019C0; -#else -static const char kakusiana_room_8Tex_0019C0[] __attribute__((aligned (2))) = dkakusiana_room_8Tex_0019C0; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_8DL_0033C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_0033C0" +static const ALIGN_ASSET(2) char kakusiana_room_8DL_0033C0[] = dkakusiana_room_8DL_0033C0; + +#define dkakusiana_room_8DL_0014B8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_0014B8" +static const ALIGN_ASSET(2) char kakusiana_room_8DL_0014B8[] = dkakusiana_room_8DL_0014B8; + +#define dkakusiana_room_8Tex_0029C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8Tex_0029C0" +static const ALIGN_ASSET(2) char kakusiana_room_8Tex_0029C0[] = dkakusiana_room_8Tex_0029C0; + +#define dkakusiana_room_8DL_001720 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_001720" +static const ALIGN_ASSET(2) char kakusiana_room_8DL_001720[] = dkakusiana_room_8DL_001720; + +#define dkakusiana_room_8DL_0018E8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_0018E8" +static const ALIGN_ASSET(2) char kakusiana_room_8DL_0018E8[] = dkakusiana_room_8DL_0018E8; + +#define dkakusiana_room_8DL_003588 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_003588" +static const ALIGN_ASSET(2) char kakusiana_room_8DL_003588[] = dkakusiana_room_8DL_003588; + +#define dkakusiana_room_8DL_001048 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_001048" +static const ALIGN_ASSET(2) char kakusiana_room_8DL_001048[] = dkakusiana_room_8DL_001048; + +#define dkakusiana_room_8DL_000B20 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8DL_000B20" +static const ALIGN_ASSET(2) char kakusiana_room_8DL_000B20[] = dkakusiana_room_8DL_000B20; + +#define dkakusiana_room_8Tex_0019C0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_8Tex_0019C0" +static const ALIGN_ASSET(2) char kakusiana_room_8Tex_0019C0[] = dkakusiana_room_8Tex_0019C0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_room_9.h b/soh/assets/scenes/misc/kakusiana/kakusiana_room_9.h index bc35a7264..0911984af 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_room_9.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_room_9.h @@ -1,93 +1,42 @@ #pragma once -#define dkakusiana_room_9DL_005640 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_005640" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_005640[] = dkakusiana_room_9DL_005640; -#else -static const char kakusiana_room_9DL_005640[] __attribute__((aligned (2))) = dkakusiana_room_9DL_005640; -#endif - -#define dkakusiana_room_9DL_000AC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_000AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_000AC8[] = dkakusiana_room_9DL_000AC8; -#else -static const char kakusiana_room_9DL_000AC8[] __attribute__((aligned (2))) = dkakusiana_room_9DL_000AC8; -#endif - -#define dkakusiana_room_9Tex_003340 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9Tex_003340" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9Tex_003340[] = dkakusiana_room_9Tex_003340; -#else -static const char kakusiana_room_9Tex_003340[] __attribute__((aligned (2))) = dkakusiana_room_9Tex_003340; -#endif - -#define dkakusiana_room_9DL_001DD0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_001DD0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_001DD0[] = dkakusiana_room_9DL_001DD0; -#else -static const char kakusiana_room_9DL_001DD0[] __attribute__((aligned (2))) = dkakusiana_room_9DL_001DD0; -#endif - -#define dkakusiana_room_9Tex_004B40 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9Tex_004B40" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9Tex_004B40[] = dkakusiana_room_9Tex_004B40; -#else -static const char kakusiana_room_9Tex_004B40[] __attribute__((aligned (2))) = dkakusiana_room_9Tex_004B40; -#endif - -#define dkakusiana_room_9Tex_003B40 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9Tex_003B40" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9Tex_003B40[] = dkakusiana_room_9Tex_003B40; -#else -static const char kakusiana_room_9Tex_003B40[] __attribute__((aligned (2))) = dkakusiana_room_9Tex_003B40; -#endif - -#define dkakusiana_room_9DL_005870 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_005870" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_005870[] = dkakusiana_room_9DL_005870; -#else -static const char kakusiana_room_9DL_005870[] __attribute__((aligned (2))) = dkakusiana_room_9DL_005870; -#endif - -#define dkakusiana_room_9DL_0011C8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_0011C8" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_0011C8[] = dkakusiana_room_9DL_0011C8; -#else -static const char kakusiana_room_9DL_0011C8[] __attribute__((aligned (2))) = dkakusiana_room_9DL_0011C8; -#endif - -#define dkakusiana_room_9DL_002260 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_002260" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_002260[] = dkakusiana_room_9DL_002260; -#else -static const char kakusiana_room_9DL_002260[] __attribute__((aligned (2))) = dkakusiana_room_9DL_002260; -#endif - -#define dkakusiana_room_9DL_005A20 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_005A20" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_005A20[] = dkakusiana_room_9DL_005A20; -#else -static const char kakusiana_room_9DL_005A20[] __attribute__((aligned (2))) = dkakusiana_room_9DL_005A20; -#endif - -#define dkakusiana_room_9DL_000F80 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_000F80" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_000F80[] = dkakusiana_room_9DL_000F80; -#else -static const char kakusiana_room_9DL_000F80[] __attribute__((aligned (2))) = dkakusiana_room_9DL_000F80; -#endif - -#define dkakusiana_room_9DL_0006E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_0006E0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9DL_0006E0[] = dkakusiana_room_9DL_0006E0; -#else -static const char kakusiana_room_9DL_0006E0[] __attribute__((aligned (2))) = dkakusiana_room_9DL_0006E0; -#endif - -#define dkakusiana_room_9Tex_002340 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9Tex_002340" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_room_9Tex_002340[] = dkakusiana_room_9Tex_002340; -#else -static const char kakusiana_room_9Tex_002340[] __attribute__((aligned (2))) = dkakusiana_room_9Tex_002340; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_room_9DL_005640 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_005640" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_005640[] = dkakusiana_room_9DL_005640; + +#define dkakusiana_room_9DL_000AC8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_000AC8" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_000AC8[] = dkakusiana_room_9DL_000AC8; + +#define dkakusiana_room_9Tex_003340 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9Tex_003340" +static const ALIGN_ASSET(2) char kakusiana_room_9Tex_003340[] = dkakusiana_room_9Tex_003340; + +#define dkakusiana_room_9DL_001DD0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_001DD0" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_001DD0[] = dkakusiana_room_9DL_001DD0; + +#define dkakusiana_room_9Tex_004B40 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9Tex_004B40" +static const ALIGN_ASSET(2) char kakusiana_room_9Tex_004B40[] = dkakusiana_room_9Tex_004B40; + +#define dkakusiana_room_9Tex_003B40 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9Tex_003B40" +static const ALIGN_ASSET(2) char kakusiana_room_9Tex_003B40[] = dkakusiana_room_9Tex_003B40; + +#define dkakusiana_room_9DL_005870 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_005870" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_005870[] = dkakusiana_room_9DL_005870; + +#define dkakusiana_room_9DL_0011C8 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_0011C8" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_0011C8[] = dkakusiana_room_9DL_0011C8; + +#define dkakusiana_room_9DL_002260 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_002260" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_002260[] = dkakusiana_room_9DL_002260; + +#define dkakusiana_room_9DL_005A20 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_005A20" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_005A20[] = dkakusiana_room_9DL_005A20; + +#define dkakusiana_room_9DL_000F80 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_000F80" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_000F80[] = dkakusiana_room_9DL_000F80; + +#define dkakusiana_room_9DL_0006E0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9DL_0006E0" +static const ALIGN_ASSET(2) char kakusiana_room_9DL_0006E0[] = dkakusiana_room_9DL_0006E0; + +#define dkakusiana_room_9Tex_002340 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_room_9Tex_002340" +static const ALIGN_ASSET(2) char kakusiana_room_9Tex_002340[] = dkakusiana_room_9Tex_002340; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kakusiana/kakusiana_scene.h b/soh/assets/scenes/misc/kakusiana/kakusiana_scene.h index d0f55c17c..bc673d8e8 100644 --- a/soh/assets/scenes/misc/kakusiana/kakusiana_scene.h +++ b/soh/assets/scenes/misc/kakusiana/kakusiana_scene.h @@ -1,30 +1,15 @@ #pragma once -#define dkakusiana_sceneCollisionHeader_00B7F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_sceneCollisionHeader_00B7F0" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_sceneCollisionHeader_00B7F0[] = dkakusiana_sceneCollisionHeader_00B7F0; -#else -static const char kakusiana_sceneCollisionHeader_00B7F0[] __attribute__((aligned (2))) = dkakusiana_sceneCollisionHeader_00B7F0; -#endif - -#define dkakusiana_sceneTex_00C020 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_sceneTex_00C020" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_sceneTex_00C020[] = dkakusiana_sceneTex_00C020; -#else -static const char kakusiana_sceneTex_00C020[] __attribute__((aligned (2))) = dkakusiana_sceneTex_00C020; -#endif - -#define dkakusiana_sceneTex_00B820 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_sceneTex_00B820" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_sceneTex_00B820[] = dkakusiana_sceneTex_00B820; -#else -static const char kakusiana_sceneTex_00B820[] __attribute__((aligned (2))) = dkakusiana_sceneTex_00B820; -#endif - -#define dkakusiana_sceneTex_00D020 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_sceneTex_00D020" -#ifdef _WIN32 -static const __declspec(align(2)) char kakusiana_sceneTex_00D020[] = dkakusiana_sceneTex_00D020; -#else -static const char kakusiana_sceneTex_00D020[] __attribute__((aligned (2))) = dkakusiana_sceneTex_00D020; -#endif - +#include "align_asset_macro.h" + +#define dkakusiana_sceneCollisionHeader_00B7F0 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_sceneCollisionHeader_00B7F0" +static const ALIGN_ASSET(2) char kakusiana_sceneCollisionHeader_00B7F0[] = dkakusiana_sceneCollisionHeader_00B7F0; + +#define dkakusiana_sceneTex_00C020 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_sceneTex_00C020" +static const ALIGN_ASSET(2) char kakusiana_sceneTex_00C020[] = dkakusiana_sceneTex_00C020; + +#define dkakusiana_sceneTex_00B820 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_sceneTex_00B820" +static const ALIGN_ASSET(2) char kakusiana_sceneTex_00B820[] = dkakusiana_sceneTex_00B820; + +#define dkakusiana_sceneTex_00D020 "__OTR__scenes/nonmq/kakusiana_scene/kakusiana_sceneTex_00D020" +static const ALIGN_ASSET(2) char kakusiana_sceneTex_00D020[] = dkakusiana_sceneTex_00D020; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kinsuta/kinsuta_room_0.h b/soh/assets/scenes/misc/kinsuta/kinsuta_room_0.h index 3a4f69fe4..44f150958 100644 --- a/soh/assets/scenes/misc/kinsuta/kinsuta_room_0.h +++ b/soh/assets/scenes/misc/kinsuta/kinsuta_room_0.h @@ -1,163 +1,72 @@ #pragma once -#define dgKinsutaDL_0030B0 "__OTR__scenes/nonmq/kinsuta_scene/gKinsutaDL_0030B0" -#ifdef _WIN32 -static const __declspec(align(2)) char gKinsutaDL_0030B0[] = dgKinsutaDL_0030B0; -#else -static const char gKinsutaDL_0030B0[] __attribute__((aligned (2))) = dgKinsutaDL_0030B0; -#endif - -#define dgKinsutaDL_00B088 "__OTR__scenes/nonmq/kinsuta_scene/gKinsutaDL_00B088" -#ifdef _WIN32 -static const __declspec(align(2)) char gKinsutaDL_00B088[] = dgKinsutaDL_00B088; -#else -static const char gKinsutaDL_00B088[] __attribute__((aligned (2))) = dgKinsutaDL_00B088; -#endif - -#define dkinsuta_room_0DL_002BC8 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_002BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0DL_002BC8[] = dkinsuta_room_0DL_002BC8; -#else -static const char kinsuta_room_0DL_002BC8[] __attribute__((aligned (2))) = dkinsuta_room_0DL_002BC8; -#endif - -#define dkinsuta_room_0Tex_009D10 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_009D10[] = dkinsuta_room_0Tex_009D10; -#else -static const char kinsuta_room_0Tex_009D10[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_009D10; -#endif - -#define dkinsuta_room_0Tex_008D10 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_008D10" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_008D10[] = dkinsuta_room_0Tex_008D10; -#else -static const char kinsuta_room_0Tex_008D10[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_008D10; -#endif - -#define dkinsuta_room_0Tex_006910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_006910" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_006910[] = dkinsuta_room_0Tex_006910; -#else -static const char kinsuta_room_0Tex_006910[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_006910; -#endif - -#define dkinsuta_room_0DL_000CF0 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_000CF0" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0DL_000CF0[] = dkinsuta_room_0DL_000CF0; -#else -static const char kinsuta_room_0DL_000CF0[] __attribute__((aligned (2))) = dkinsuta_room_0DL_000CF0; -#endif - -#define dkinsuta_room_0DL_0013E8 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_0013E8" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0DL_0013E8[] = dkinsuta_room_0DL_0013E8; -#else -static const char kinsuta_room_0DL_0013E8[] __attribute__((aligned (2))) = dkinsuta_room_0DL_0013E8; -#endif - -#define dkinsuta_room_0Tex_003110 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_003110" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_003110[] = dkinsuta_room_0Tex_003110; -#else -static const char kinsuta_room_0Tex_003110[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_003110; -#endif - -#define dkinsuta_room_0TLUT_0030F0 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0TLUT_0030F0" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0TLUT_0030F0[] = dkinsuta_room_0TLUT_0030F0; -#else -static const char kinsuta_room_0TLUT_0030F0[] __attribute__((aligned (2))) = dkinsuta_room_0TLUT_0030F0; -#endif - -#define dkinsuta_room_0DL_0002E0 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_0002E0" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0DL_0002E0[] = dkinsuta_room_0DL_0002E0; -#else -static const char kinsuta_room_0DL_0002E0[] __attribute__((aligned (2))) = dkinsuta_room_0DL_0002E0; -#endif - -#define dkinsuta_room_0Tex_008910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_008910" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_008910[] = dkinsuta_room_0Tex_008910; -#else -static const char kinsuta_room_0Tex_008910[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_008910; -#endif - -#define dkinsuta_room_0DL_00ACE0 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_00ACE0" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0DL_00ACE0[] = dkinsuta_room_0DL_00ACE0; -#else -static const char kinsuta_room_0DL_00ACE0[] __attribute__((aligned (2))) = dkinsuta_room_0DL_00ACE0; -#endif - -#define dkinsuta_room_0Tex_00D098 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_00D098" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_00D098[] = dkinsuta_room_0Tex_00D098; -#else -static const char kinsuta_room_0Tex_00D098[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_00D098; -#endif - -#define dkinsuta_room_0Tex_00C098 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_00C098" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_00C098[] = dkinsuta_room_0Tex_00C098; -#else -static const char kinsuta_room_0Tex_00C098[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_00C098; -#endif - -#define dkinsuta_room_0Tex_00B098 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_00B098" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_00B098[] = dkinsuta_room_0Tex_00B098; -#else -static const char kinsuta_room_0Tex_00B098[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_00B098; -#endif - -#define dkinsuta_room_0DL_001B38 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_001B38" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0DL_001B38[] = dkinsuta_room_0DL_001B38; -#else -static const char kinsuta_room_0DL_001B38[] __attribute__((aligned (2))) = dkinsuta_room_0DL_001B38; -#endif - -#define dkinsuta_room_0Tex_005910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_005910" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_005910[] = dkinsuta_room_0Tex_005910; -#else -static const char kinsuta_room_0Tex_005910[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_005910; -#endif - -#define dkinsuta_room_0Tex_004910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_004910" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_004910[] = dkinsuta_room_0Tex_004910; -#else -static const char kinsuta_room_0Tex_004910[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_004910; -#endif - -#define dkinsuta_room_0Tex_003910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_003910" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_003910[] = dkinsuta_room_0Tex_003910; -#else -static const char kinsuta_room_0Tex_003910[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_003910; -#endif - -#define dkinsuta_room_0DL_002FD8 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_002FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0DL_002FD8[] = dkinsuta_room_0DL_002FD8; -#else -static const char kinsuta_room_0DL_002FD8[] __attribute__((aligned (2))) = dkinsuta_room_0DL_002FD8; -#endif - -#define dkinsuta_room_0Tex_007910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_007910" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0Tex_007910[] = dkinsuta_room_0Tex_007910; -#else -static const char kinsuta_room_0Tex_007910[] __attribute__((aligned (2))) = dkinsuta_room_0Tex_007910; -#endif - -#define dkinsuta_room_0DL_001F78 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_001F78" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_room_0DL_001F78[] = dkinsuta_room_0DL_001F78; -#else -static const char kinsuta_room_0DL_001F78[] __attribute__((aligned (2))) = dkinsuta_room_0DL_001F78; -#endif - +#include "align_asset_macro.h" + +#define dgKinsutaDL_0030B0 "__OTR__scenes/nonmq/kinsuta_scene/gKinsutaDL_0030B0" +static const ALIGN_ASSET(2) char gKinsutaDL_0030B0[] = dgKinsutaDL_0030B0; + +#define dgKinsutaDL_00B088 "__OTR__scenes/nonmq/kinsuta_scene/gKinsutaDL_00B088" +static const ALIGN_ASSET(2) char gKinsutaDL_00B088[] = dgKinsutaDL_00B088; + +#define dkinsuta_room_0DL_002BC8 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_002BC8" +static const ALIGN_ASSET(2) char kinsuta_room_0DL_002BC8[] = dkinsuta_room_0DL_002BC8; + +#define dkinsuta_room_0Tex_009D10 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_009D10" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_009D10[] = dkinsuta_room_0Tex_009D10; + +#define dkinsuta_room_0Tex_008D10 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_008D10" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_008D10[] = dkinsuta_room_0Tex_008D10; + +#define dkinsuta_room_0Tex_006910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_006910" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_006910[] = dkinsuta_room_0Tex_006910; + +#define dkinsuta_room_0DL_000CF0 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_000CF0" +static const ALIGN_ASSET(2) char kinsuta_room_0DL_000CF0[] = dkinsuta_room_0DL_000CF0; + +#define dkinsuta_room_0DL_0013E8 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_0013E8" +static const ALIGN_ASSET(2) char kinsuta_room_0DL_0013E8[] = dkinsuta_room_0DL_0013E8; + +#define dkinsuta_room_0Tex_003110 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_003110" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_003110[] = dkinsuta_room_0Tex_003110; + +#define dkinsuta_room_0TLUT_0030F0 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0TLUT_0030F0" +static const ALIGN_ASSET(2) char kinsuta_room_0TLUT_0030F0[] = dkinsuta_room_0TLUT_0030F0; + +#define dkinsuta_room_0DL_0002E0 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_0002E0" +static const ALIGN_ASSET(2) char kinsuta_room_0DL_0002E0[] = dkinsuta_room_0DL_0002E0; + +#define dkinsuta_room_0Tex_008910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_008910" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_008910[] = dkinsuta_room_0Tex_008910; + +#define dkinsuta_room_0DL_00ACE0 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_00ACE0" +static const ALIGN_ASSET(2) char kinsuta_room_0DL_00ACE0[] = dkinsuta_room_0DL_00ACE0; + +#define dkinsuta_room_0Tex_00D098 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_00D098" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_00D098[] = dkinsuta_room_0Tex_00D098; + +#define dkinsuta_room_0Tex_00C098 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_00C098" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_00C098[] = dkinsuta_room_0Tex_00C098; + +#define dkinsuta_room_0Tex_00B098 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_00B098" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_00B098[] = dkinsuta_room_0Tex_00B098; + +#define dkinsuta_room_0DL_001B38 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_001B38" +static const ALIGN_ASSET(2) char kinsuta_room_0DL_001B38[] = dkinsuta_room_0DL_001B38; + +#define dkinsuta_room_0Tex_005910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_005910" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_005910[] = dkinsuta_room_0Tex_005910; + +#define dkinsuta_room_0Tex_004910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_004910" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_004910[] = dkinsuta_room_0Tex_004910; + +#define dkinsuta_room_0Tex_003910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_003910" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_003910[] = dkinsuta_room_0Tex_003910; + +#define dkinsuta_room_0DL_002FD8 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_002FD8" +static const ALIGN_ASSET(2) char kinsuta_room_0DL_002FD8[] = dkinsuta_room_0DL_002FD8; + +#define dkinsuta_room_0Tex_007910 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0Tex_007910" +static const ALIGN_ASSET(2) char kinsuta_room_0Tex_007910[] = dkinsuta_room_0Tex_007910; + +#define dkinsuta_room_0DL_001F78 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_room_0DL_001F78" +static const ALIGN_ASSET(2) char kinsuta_room_0DL_001F78[] = dkinsuta_room_0DL_001F78; \ No newline at end of file diff --git a/soh/assets/scenes/misc/kinsuta/kinsuta_scene.h b/soh/assets/scenes/misc/kinsuta/kinsuta_scene.h index c32bcf69b..cc5b3f5d6 100644 --- a/soh/assets/scenes/misc/kinsuta/kinsuta_scene.h +++ b/soh/assets/scenes/misc/kinsuta/kinsuta_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dkinsuta_sceneCollisionHeader_0015E4 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_sceneCollisionHeader_0015E4" -#ifdef _WIN32 -static const __declspec(align(2)) char kinsuta_sceneCollisionHeader_0015E4[] = dkinsuta_sceneCollisionHeader_0015E4; -#else -static const char kinsuta_sceneCollisionHeader_0015E4[] __attribute__((aligned (2))) = dkinsuta_sceneCollisionHeader_0015E4; -#endif - +#include "align_asset_macro.h" + +#define dkinsuta_sceneCollisionHeader_0015E4 "__OTR__scenes/nonmq/kinsuta_scene/kinsuta_sceneCollisionHeader_0015E4" +static const ALIGN_ASSET(2) char kinsuta_sceneCollisionHeader_0015E4[] = dkinsuta_sceneCollisionHeader_0015E4; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_alley/market_alley_room_0.h b/soh/assets/scenes/misc/market_alley/market_alley_room_0.h index 7795f47d9..5be9e6032 100644 --- a/soh/assets/scenes/misc/market_alley/market_alley_room_0.h +++ b/soh/assets/scenes/misc/market_alley/market_alley_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_alley_room_0DL_075688 "__OTR__scenes/nonmq/market_alley_scene/market_alley_room_0DL_075688" -#ifdef _WIN32 -static const __declspec(align(2)) char market_alley_room_0DL_075688[] = dmarket_alley_room_0DL_075688; -#else -static const char market_alley_room_0DL_075688[] __attribute__((aligned (2))) = dmarket_alley_room_0DL_075688; -#endif - +#include "align_asset_macro.h" + +#define dmarket_alley_room_0DL_075688 "__OTR__scenes/nonmq/market_alley_scene/market_alley_room_0DL_075688" +static const ALIGN_ASSET(2) char market_alley_room_0DL_075688[] = dmarket_alley_room_0DL_075688; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_alley/market_alley_scene.h b/soh/assets/scenes/misc/market_alley/market_alley_scene.h index 46218bda1..4fce3de20 100644 --- a/soh/assets/scenes/misc/market_alley/market_alley_scene.h +++ b/soh/assets/scenes/misc/market_alley/market_alley_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_alley_sceneCollisionHeader_001218 "__OTR__scenes/nonmq/market_alley_scene/market_alley_sceneCollisionHeader_001218" -#ifdef _WIN32 -static const __declspec(align(2)) char market_alley_sceneCollisionHeader_001218[] = dmarket_alley_sceneCollisionHeader_001218; -#else -static const char market_alley_sceneCollisionHeader_001218[] __attribute__((aligned (2))) = dmarket_alley_sceneCollisionHeader_001218; -#endif - +#include "align_asset_macro.h" + +#define dmarket_alley_sceneCollisionHeader_001218 "__OTR__scenes/nonmq/market_alley_scene/market_alley_sceneCollisionHeader_001218" +static const ALIGN_ASSET(2) char market_alley_sceneCollisionHeader_001218[] = dmarket_alley_sceneCollisionHeader_001218; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_alley_n/market_alley_n_room_0.h b/soh/assets/scenes/misc/market_alley_n/market_alley_n_room_0.h index 43211aefd..523f039dd 100644 --- a/soh/assets/scenes/misc/market_alley_n/market_alley_n_room_0.h +++ b/soh/assets/scenes/misc/market_alley_n/market_alley_n_room_0.h @@ -1,16 +1,9 @@ #pragma once -#define dmarket_alley_n_room_0DL_075678 "__OTR__scenes/nonmq/market_alley_n_scene/market_alley_n_room_0DL_075678" -#ifdef _WIN32 -static const __declspec(align(2)) char market_alley_n_room_0DL_075678[] = dmarket_alley_n_room_0DL_075678; -#else -static const char market_alley_n_room_0DL_075678[] __attribute__((aligned (2))) = dmarket_alley_n_room_0DL_075678; -#endif - -#define dmarket_alley_n_room_0DL_0756E0 "__OTR__scenes/nonmq/market_alley_n_scene/market_alley_n_room_0DL_0756E0" -#ifdef _WIN32 -static const __declspec(align(2)) char market_alley_n_room_0DL_0756E0[] = dmarket_alley_n_room_0DL_0756E0; -#else -static const char market_alley_n_room_0DL_0756E0[] __attribute__((aligned (2))) = dmarket_alley_n_room_0DL_0756E0; -#endif - +#include "align_asset_macro.h" + +#define dmarket_alley_n_room_0DL_075678 "__OTR__scenes/nonmq/market_alley_n_scene/market_alley_n_room_0DL_075678" +static const ALIGN_ASSET(2) char market_alley_n_room_0DL_075678[] = dmarket_alley_n_room_0DL_075678; + +#define dmarket_alley_n_room_0DL_0756E0 "__OTR__scenes/nonmq/market_alley_n_scene/market_alley_n_room_0DL_0756E0" +static const ALIGN_ASSET(2) char market_alley_n_room_0DL_0756E0[] = dmarket_alley_n_room_0DL_0756E0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_alley_n/market_alley_n_scene.h b/soh/assets/scenes/misc/market_alley_n/market_alley_n_scene.h index 73e60dd10..dcad1e5b4 100644 --- a/soh/assets/scenes/misc/market_alley_n/market_alley_n_scene.h +++ b/soh/assets/scenes/misc/market_alley_n/market_alley_n_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_alley_n_sceneCollisionHeader_0012C0 "__OTR__scenes/nonmq/market_alley_n_scene/market_alley_n_sceneCollisionHeader_0012C0" -#ifdef _WIN32 -static const __declspec(align(2)) char market_alley_n_sceneCollisionHeader_0012C0[] = dmarket_alley_n_sceneCollisionHeader_0012C0; -#else -static const char market_alley_n_sceneCollisionHeader_0012C0[] __attribute__((aligned (2))) = dmarket_alley_n_sceneCollisionHeader_0012C0; -#endif - +#include "align_asset_macro.h" + +#define dmarket_alley_n_sceneCollisionHeader_0012C0 "__OTR__scenes/nonmq/market_alley_n_scene/market_alley_n_sceneCollisionHeader_0012C0" +static const ALIGN_ASSET(2) char market_alley_n_sceneCollisionHeader_0012C0[] = dmarket_alley_n_sceneCollisionHeader_0012C0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_day/market_day_room_0.h b/soh/assets/scenes/misc/market_day/market_day_room_0.h index 176682cba..80d2aa0b1 100644 --- a/soh/assets/scenes/misc/market_day/market_day_room_0.h +++ b/soh/assets/scenes/misc/market_day/market_day_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_day_room_0DL_0057D8 "__OTR__scenes/nonmq/market_day_scene/market_day_room_0DL_0057D8" -#ifdef _WIN32 -static const __declspec(align(2)) char market_day_room_0DL_0057D8[] = dmarket_day_room_0DL_0057D8; -#else -static const char market_day_room_0DL_0057D8[] __attribute__((aligned (2))) = dmarket_day_room_0DL_0057D8; -#endif - +#include "align_asset_macro.h" + +#define dmarket_day_room_0DL_0057D8 "__OTR__scenes/nonmq/market_day_scene/market_day_room_0DL_0057D8" +static const ALIGN_ASSET(2) char market_day_room_0DL_0057D8[] = dmarket_day_room_0DL_0057D8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_day/market_day_scene.h b/soh/assets/scenes/misc/market_day/market_day_scene.h index 1cfade293..d9bd23a63 100644 --- a/soh/assets/scenes/misc/market_day/market_day_scene.h +++ b/soh/assets/scenes/misc/market_day/market_day_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_day_sceneCollisionHeader_002640 "__OTR__scenes/nonmq/market_day_scene/market_day_sceneCollisionHeader_002640" -#ifdef _WIN32 -static const __declspec(align(2)) char market_day_sceneCollisionHeader_002640[] = dmarket_day_sceneCollisionHeader_002640; -#else -static const char market_day_sceneCollisionHeader_002640[] __attribute__((aligned (2))) = dmarket_day_sceneCollisionHeader_002640; -#endif - +#include "align_asset_macro.h" + +#define dmarket_day_sceneCollisionHeader_002640 "__OTR__scenes/nonmq/market_day_scene/market_day_sceneCollisionHeader_002640" +static const ALIGN_ASSET(2) char market_day_sceneCollisionHeader_002640[] = dmarket_day_sceneCollisionHeader_002640; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_night/market_night_room_0.h b/soh/assets/scenes/misc/market_night/market_night_room_0.h index 4f17d022e..5c5492ea3 100644 --- a/soh/assets/scenes/misc/market_night/market_night_room_0.h +++ b/soh/assets/scenes/misc/market_night/market_night_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_night_room_0DL_005708 "__OTR__scenes/nonmq/market_night_scene/market_night_room_0DL_005708" -#ifdef _WIN32 -static const __declspec(align(2)) char market_night_room_0DL_005708[] = dmarket_night_room_0DL_005708; -#else -static const char market_night_room_0DL_005708[] __attribute__((aligned (2))) = dmarket_night_room_0DL_005708; -#endif - +#include "align_asset_macro.h" + +#define dmarket_night_room_0DL_005708 "__OTR__scenes/nonmq/market_night_scene/market_night_room_0DL_005708" +static const ALIGN_ASSET(2) char market_night_room_0DL_005708[] = dmarket_night_room_0DL_005708; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_night/market_night_scene.h b/soh/assets/scenes/misc/market_night/market_night_scene.h index b56cc50ed..d35189134 100644 --- a/soh/assets/scenes/misc/market_night/market_night_scene.h +++ b/soh/assets/scenes/misc/market_night/market_night_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_night_sceneCollisionHeader_0025F8 "__OTR__scenes/nonmq/market_night_scene/market_night_sceneCollisionHeader_0025F8" -#ifdef _WIN32 -static const __declspec(align(2)) char market_night_sceneCollisionHeader_0025F8[] = dmarket_night_sceneCollisionHeader_0025F8; -#else -static const char market_night_sceneCollisionHeader_0025F8[] __attribute__((aligned (2))) = dmarket_night_sceneCollisionHeader_0025F8; -#endif - +#include "align_asset_macro.h" + +#define dmarket_night_sceneCollisionHeader_0025F8 "__OTR__scenes/nonmq/market_night_scene/market_night_sceneCollisionHeader_0025F8" +static const ALIGN_ASSET(2) char market_night_sceneCollisionHeader_0025F8[] = dmarket_night_sceneCollisionHeader_0025F8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_ruins/market_ruins_room_0.h b/soh/assets/scenes/misc/market_ruins/market_ruins_room_0.h index d177263fe..742ad08bc 100644 --- a/soh/assets/scenes/misc/market_ruins/market_ruins_room_0.h +++ b/soh/assets/scenes/misc/market_ruins/market_ruins_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_ruins_room_0DL_0027B0 "__OTR__scenes/nonmq/market_ruins_scene/market_ruins_room_0DL_0027B0" -#ifdef _WIN32 -static const __declspec(align(2)) char market_ruins_room_0DL_0027B0[] = dmarket_ruins_room_0DL_0027B0; -#else -static const char market_ruins_room_0DL_0027B0[] __attribute__((aligned (2))) = dmarket_ruins_room_0DL_0027B0; -#endif - +#include "align_asset_macro.h" + +#define dmarket_ruins_room_0DL_0027B0 "__OTR__scenes/nonmq/market_ruins_scene/market_ruins_room_0DL_0027B0" +static const ALIGN_ASSET(2) char market_ruins_room_0DL_0027B0[] = dmarket_ruins_room_0DL_0027B0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/market_ruins/market_ruins_scene.h b/soh/assets/scenes/misc/market_ruins/market_ruins_scene.h index 7e31d601b..b31ffada8 100644 --- a/soh/assets/scenes/misc/market_ruins/market_ruins_scene.h +++ b/soh/assets/scenes/misc/market_ruins/market_ruins_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dmarket_ruins_sceneCollisionHeader_0015F8 "__OTR__scenes/nonmq/market_ruins_scene/market_ruins_sceneCollisionHeader_0015F8" -#ifdef _WIN32 -static const __declspec(align(2)) char market_ruins_sceneCollisionHeader_0015F8[] = dmarket_ruins_sceneCollisionHeader_0015F8; -#else -static const char market_ruins_sceneCollisionHeader_0015F8[] __attribute__((aligned (2))) = dmarket_ruins_sceneCollisionHeader_0015F8; -#endif - +#include "align_asset_macro.h" + +#define dmarket_ruins_sceneCollisionHeader_0015F8 "__OTR__scenes/nonmq/market_ruins_scene/market_ruins_sceneCollisionHeader_0015F8" +static const ALIGN_ASSET(2) char market_ruins_sceneCollisionHeader_0015F8[] = dmarket_ruins_sceneCollisionHeader_0015F8; \ No newline at end of file diff --git a/soh/assets/scenes/misc/shrine/shrine_room_0.h b/soh/assets/scenes/misc/shrine/shrine_room_0.h index e488b57d4..00992e9c5 100644 --- a/soh/assets/scenes/misc/shrine/shrine_room_0.h +++ b/soh/assets/scenes/misc/shrine/shrine_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dshrine_room_0DL_007AE0 "__OTR__scenes/nonmq/shrine_scene/shrine_room_0DL_007AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char shrine_room_0DL_007AE0[] = dshrine_room_0DL_007AE0; -#else -static const char shrine_room_0DL_007AE0[] __attribute__((aligned (2))) = dshrine_room_0DL_007AE0; -#endif - +#include "align_asset_macro.h" + +#define dshrine_room_0DL_007AE0 "__OTR__scenes/nonmq/shrine_scene/shrine_room_0DL_007AE0" +static const ALIGN_ASSET(2) char shrine_room_0DL_007AE0[] = dshrine_room_0DL_007AE0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/shrine/shrine_scene.h b/soh/assets/scenes/misc/shrine/shrine_scene.h index 55a27f0c7..846da28e8 100644 --- a/soh/assets/scenes/misc/shrine/shrine_scene.h +++ b/soh/assets/scenes/misc/shrine/shrine_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dshrine_sceneCollisionHeader_0014AC "__OTR__scenes/nonmq/shrine_scene/shrine_sceneCollisionHeader_0014AC" -#ifdef _WIN32 -static const __declspec(align(2)) char shrine_sceneCollisionHeader_0014AC[] = dshrine_sceneCollisionHeader_0014AC; -#else -static const char shrine_sceneCollisionHeader_0014AC[] __attribute__((aligned (2))) = dshrine_sceneCollisionHeader_0014AC; -#endif - +#include "align_asset_macro.h" + +#define dshrine_sceneCollisionHeader_0014AC "__OTR__scenes/nonmq/shrine_scene/shrine_sceneCollisionHeader_0014AC" +static const ALIGN_ASSET(2) char shrine_sceneCollisionHeader_0014AC[] = dshrine_sceneCollisionHeader_0014AC; \ No newline at end of file diff --git a/soh/assets/scenes/misc/shrine_n/shrine_n_room_0.h b/soh/assets/scenes/misc/shrine_n/shrine_n_room_0.h index d0324f4c8..80c3807ea 100644 --- a/soh/assets/scenes/misc/shrine_n/shrine_n_room_0.h +++ b/soh/assets/scenes/misc/shrine_n/shrine_n_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dshrine_n_room_0DL_007B00 "__OTR__scenes/nonmq/shrine_n_scene/shrine_n_room_0DL_007B00" -#ifdef _WIN32 -static const __declspec(align(2)) char shrine_n_room_0DL_007B00[] = dshrine_n_room_0DL_007B00; -#else -static const char shrine_n_room_0DL_007B00[] __attribute__((aligned (2))) = dshrine_n_room_0DL_007B00; -#endif - +#include "align_asset_macro.h" + +#define dshrine_n_room_0DL_007B00 "__OTR__scenes/nonmq/shrine_n_scene/shrine_n_room_0DL_007B00" +static const ALIGN_ASSET(2) char shrine_n_room_0DL_007B00[] = dshrine_n_room_0DL_007B00; \ No newline at end of file diff --git a/soh/assets/scenes/misc/shrine_n/shrine_n_scene.h b/soh/assets/scenes/misc/shrine_n/shrine_n_scene.h index 4037c5eb2..f7b36ca0a 100644 --- a/soh/assets/scenes/misc/shrine_n/shrine_n_scene.h +++ b/soh/assets/scenes/misc/shrine_n/shrine_n_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dshrine_n_sceneCollisionHeader_0014D4 "__OTR__scenes/nonmq/shrine_n_scene/shrine_n_sceneCollisionHeader_0014D4" -#ifdef _WIN32 -static const __declspec(align(2)) char shrine_n_sceneCollisionHeader_0014D4[] = dshrine_n_sceneCollisionHeader_0014D4; -#else -static const char shrine_n_sceneCollisionHeader_0014D4[] __attribute__((aligned (2))) = dshrine_n_sceneCollisionHeader_0014D4; -#endif - +#include "align_asset_macro.h" + +#define dshrine_n_sceneCollisionHeader_0014D4 "__OTR__scenes/nonmq/shrine_n_scene/shrine_n_sceneCollisionHeader_0014D4" +static const ALIGN_ASSET(2) char shrine_n_sceneCollisionHeader_0014D4[] = dshrine_n_sceneCollisionHeader_0014D4; \ No newline at end of file diff --git a/soh/assets/scenes/misc/shrine_r/shrine_r_room_0.h b/soh/assets/scenes/misc/shrine_r/shrine_r_room_0.h index c1edafc86..aeb2f4b91 100644 --- a/soh/assets/scenes/misc/shrine_r/shrine_r_room_0.h +++ b/soh/assets/scenes/misc/shrine_r/shrine_r_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dshrine_r_room_0DL_007AE0 "__OTR__scenes/nonmq/shrine_r_scene/shrine_r_room_0DL_007AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char shrine_r_room_0DL_007AE0[] = dshrine_r_room_0DL_007AE0; -#else -static const char shrine_r_room_0DL_007AE0[] __attribute__((aligned (2))) = dshrine_r_room_0DL_007AE0; -#endif - +#include "align_asset_macro.h" + +#define dshrine_r_room_0DL_007AE0 "__OTR__scenes/nonmq/shrine_r_scene/shrine_r_room_0DL_007AE0" +static const ALIGN_ASSET(2) char shrine_r_room_0DL_007AE0[] = dshrine_r_room_0DL_007AE0; \ No newline at end of file diff --git a/soh/assets/scenes/misc/shrine_r/shrine_r_scene.h b/soh/assets/scenes/misc/shrine_r/shrine_r_scene.h index 4d934f200..7a40723c5 100644 --- a/soh/assets/scenes/misc/shrine_r/shrine_r_scene.h +++ b/soh/assets/scenes/misc/shrine_r/shrine_r_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dshrine_r_sceneCollisionHeader_00145C "__OTR__scenes/nonmq/shrine_r_scene/shrine_r_sceneCollisionHeader_00145C" -#ifdef _WIN32 -static const __declspec(align(2)) char shrine_r_sceneCollisionHeader_00145C[] = dshrine_r_sceneCollisionHeader_00145C; -#else -static const char shrine_r_sceneCollisionHeader_00145C[] __attribute__((aligned (2))) = dshrine_r_sceneCollisionHeader_00145C; -#endif - +#include "align_asset_macro.h" + +#define dshrine_r_sceneCollisionHeader_00145C "__OTR__scenes/nonmq/shrine_r_scene/shrine_r_sceneCollisionHeader_00145C" +static const ALIGN_ASSET(2) char shrine_r_sceneCollisionHeader_00145C[] = dshrine_r_sceneCollisionHeader_00145C; \ No newline at end of file diff --git a/soh/assets/scenes/misc/turibori/turibori_room_0.h b/soh/assets/scenes/misc/turibori/turibori_room_0.h index 7cfedaea8..ceb8ad781 100644 --- a/soh/assets/scenes/misc/turibori/turibori_room_0.h +++ b/soh/assets/scenes/misc/turibori/turibori_room_0.h @@ -1,16 +1,9 @@ #pragma once -#define dturibori_room_0DL_0056F8 "__OTR__scenes/nonmq/turibori_scene/turibori_room_0DL_0056F8" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_room_0DL_0056F8[] = dturibori_room_0DL_0056F8; -#else -static const char turibori_room_0DL_0056F8[] __attribute__((aligned (2))) = dturibori_room_0DL_0056F8; -#endif - -#define dturibori_room_0DL_006740 "__OTR__scenes/nonmq/turibori_scene/turibori_room_0DL_006740" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_room_0DL_006740[] = dturibori_room_0DL_006740; -#else -static const char turibori_room_0DL_006740[] __attribute__((aligned (2))) = dturibori_room_0DL_006740; -#endif - +#include "align_asset_macro.h" + +#define dturibori_room_0DL_0056F8 "__OTR__scenes/nonmq/turibori_scene/turibori_room_0DL_0056F8" +static const ALIGN_ASSET(2) char turibori_room_0DL_0056F8[] = dturibori_room_0DL_0056F8; + +#define dturibori_room_0DL_006740 "__OTR__scenes/nonmq/turibori_scene/turibori_room_0DL_006740" +static const ALIGN_ASSET(2) char turibori_room_0DL_006740[] = dturibori_room_0DL_006740; \ No newline at end of file diff --git a/soh/assets/scenes/misc/turibori/turibori_scene.h b/soh/assets/scenes/misc/turibori/turibori_scene.h index f6d519d11..dec04205e 100644 --- a/soh/assets/scenes/misc/turibori/turibori_scene.h +++ b/soh/assets/scenes/misc/turibori/turibori_scene.h @@ -1,198 +1,87 @@ #pragma once -#define dturibori_sceneCollisionHeader_001CAC "__OTR__scenes/nonmq/turibori_scene/turibori_sceneCollisionHeader_001CAC" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneCollisionHeader_001CAC[] = dturibori_sceneCollisionHeader_001CAC; -#else -static const char turibori_sceneCollisionHeader_001CAC[] __attribute__((aligned (2))) = dturibori_sceneCollisionHeader_001CAC; -#endif - -#define dturibori_sceneTex_0094E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0094E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0094E0[] = dturibori_sceneTex_0094E0; -#else -static const char turibori_sceneTex_0094E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0094E0; -#endif - -#define dturibori_sceneTex_0104E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0104E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0104E0[] = dturibori_sceneTex_0104E0; -#else -static const char turibori_sceneTex_0104E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0104E0; -#endif - -#define dturibori_sceneTex_00CCE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00CCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_00CCE0[] = dturibori_sceneTex_00CCE0; -#else -static const char turibori_sceneTex_00CCE0[] __attribute__((aligned (2))) = dturibori_sceneTex_00CCE0; -#endif - -#define dturibori_sceneTex_004CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_004CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_004CE0[] = dturibori_sceneTex_004CE0; -#else -static const char turibori_sceneTex_004CE0[] __attribute__((aligned (2))) = dturibori_sceneTex_004CE0; -#endif - -#define dturibori_sceneTex_004DE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_004DE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_004DE0[] = dturibori_sceneTex_004DE0; -#else -static const char turibori_sceneTex_004DE0[] __attribute__((aligned (2))) = dturibori_sceneTex_004DE0; -#endif - -#define dturibori_sceneTex_007FE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_007FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_007FE0[] = dturibori_sceneTex_007FE0; -#else -static const char turibori_sceneTex_007FE0[] __attribute__((aligned (2))) = dturibori_sceneTex_007FE0; -#endif - -#define dturibori_sceneTex_009CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_009CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_009CE0[] = dturibori_sceneTex_009CE0; -#else -static const char turibori_sceneTex_009CE0[] __attribute__((aligned (2))) = dturibori_sceneTex_009CE0; -#endif - -#define dturibori_sceneTex_0081E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0081E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0081E0[] = dturibori_sceneTex_0081E0; -#else -static const char turibori_sceneTex_0081E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0081E0; -#endif - -#define dturibori_sceneTex_0059E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0059E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0059E0[] = dturibori_sceneTex_0059E0; -#else -static const char turibori_sceneTex_0059E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0059E0; -#endif - -#define dturibori_sceneTex_00ACE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00ACE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_00ACE0[] = dturibori_sceneTex_00ACE0; -#else -static const char turibori_sceneTex_00ACE0[] __attribute__((aligned (2))) = dturibori_sceneTex_00ACE0; -#endif - -#define dturibori_sceneTex_00FCE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00FCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_00FCE0[] = dturibori_sceneTex_00FCE0; -#else -static const char turibori_sceneTex_00FCE0[] __attribute__((aligned (2))) = dturibori_sceneTex_00FCE0; -#endif - -#define dturibori_sceneTex_006BE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_006BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_006BE0[] = dturibori_sceneTex_006BE0; -#else -static const char turibori_sceneTex_006BE0[] __attribute__((aligned (2))) = dturibori_sceneTex_006BE0; -#endif - -#define dturibori_sceneTex_001CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_001CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_001CE0[] = dturibori_sceneTex_001CE0; -#else -static const char turibori_sceneTex_001CE0[] __attribute__((aligned (2))) = dturibori_sceneTex_001CE0; -#endif - -#define dturibori_sceneTex_0116E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0116E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0116E0[] = dturibori_sceneTex_0116E0; -#else -static const char turibori_sceneTex_0116E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0116E0; -#endif - -#define dturibori_sceneTex_00ECE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00ECE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_00ECE0[] = dturibori_sceneTex_00ECE0; -#else -static const char turibori_sceneTex_00ECE0[] __attribute__((aligned (2))) = dturibori_sceneTex_00ECE0; -#endif - -#define dturibori_sceneTex_0114E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0114E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0114E0[] = dturibori_sceneTex_0114E0; -#else -static const char turibori_sceneTex_0114E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0114E0; -#endif - -#define dturibori_sceneTex_003CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_003CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_003CE0[] = dturibori_sceneTex_003CE0; -#else -static const char turibori_sceneTex_003CE0[] __attribute__((aligned (2))) = dturibori_sceneTex_003CE0; -#endif - -#define dturibori_sceneTex_002CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_002CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_002CE0[] = dturibori_sceneTex_002CE0; -#else -static const char turibori_sceneTex_002CE0[] __attribute__((aligned (2))) = dturibori_sceneTex_002CE0; -#endif - -#define dturibori_sceneTex_00DCE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00DCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_00DCE0[] = dturibori_sceneTex_00DCE0; -#else -static const char turibori_sceneTex_00DCE0[] __attribute__((aligned (2))) = dturibori_sceneTex_00DCE0; -#endif - -#define dturibori_sceneTex_00BCE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00BCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_00BCE0[] = dturibori_sceneTex_00BCE0; -#else -static const char turibori_sceneTex_00BCE0[] __attribute__((aligned (2))) = dturibori_sceneTex_00BCE0; -#endif - -#define dturibori_sceneTex_00F4E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00F4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_00F4E0[] = dturibori_sceneTex_00F4E0; -#else -static const char turibori_sceneTex_00F4E0[] __attribute__((aligned (2))) = dturibori_sceneTex_00F4E0; -#endif - -#define dturibori_sceneTex_0069E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0069E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0069E0[] = dturibori_sceneTex_0069E0; -#else -static const char turibori_sceneTex_0069E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0069E0; -#endif - -#define dturibori_sceneTex_0051E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0051E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0051E0[] = dturibori_sceneTex_0051E0; -#else -static const char turibori_sceneTex_0051E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0051E0; -#endif - -#define dturibori_sceneTex_007BE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_007BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_007BE0[] = dturibori_sceneTex_007BE0; -#else -static const char turibori_sceneTex_007BE0[] __attribute__((aligned (2))) = dturibori_sceneTex_007BE0; -#endif - -#define dturibori_sceneTex_0091E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0091E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0091E0[] = dturibori_sceneTex_0091E0; -#else -static const char turibori_sceneTex_0091E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0091E0; -#endif - -#define dturibori_sceneTex_0092E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0092E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_0092E0[] = dturibori_sceneTex_0092E0; -#else -static const char turibori_sceneTex_0092E0[] __attribute__((aligned (2))) = dturibori_sceneTex_0092E0; -#endif - -#define dturibori_sceneTex_00E4E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00E4E0" -#ifdef _WIN32 -static const __declspec(align(2)) char turibori_sceneTex_00E4E0[] = dturibori_sceneTex_00E4E0; -#else -static const char turibori_sceneTex_00E4E0[] __attribute__((aligned (2))) = dturibori_sceneTex_00E4E0; -#endif - +#include "align_asset_macro.h" + +#define dturibori_sceneCollisionHeader_001CAC "__OTR__scenes/nonmq/turibori_scene/turibori_sceneCollisionHeader_001CAC" +static const ALIGN_ASSET(2) char turibori_sceneCollisionHeader_001CAC[] = dturibori_sceneCollisionHeader_001CAC; + +#define dturibori_sceneTex_0094E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0094E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0094E0[] = dturibori_sceneTex_0094E0; + +#define dturibori_sceneTex_0104E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0104E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0104E0[] = dturibori_sceneTex_0104E0; + +#define dturibori_sceneTex_00CCE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00CCE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_00CCE0[] = dturibori_sceneTex_00CCE0; + +#define dturibori_sceneTex_004CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_004CE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_004CE0[] = dturibori_sceneTex_004CE0; + +#define dturibori_sceneTex_004DE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_004DE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_004DE0[] = dturibori_sceneTex_004DE0; + +#define dturibori_sceneTex_007FE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_007FE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_007FE0[] = dturibori_sceneTex_007FE0; + +#define dturibori_sceneTex_009CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_009CE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_009CE0[] = dturibori_sceneTex_009CE0; + +#define dturibori_sceneTex_0081E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0081E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0081E0[] = dturibori_sceneTex_0081E0; + +#define dturibori_sceneTex_0059E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0059E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0059E0[] = dturibori_sceneTex_0059E0; + +#define dturibori_sceneTex_00ACE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00ACE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_00ACE0[] = dturibori_sceneTex_00ACE0; + +#define dturibori_sceneTex_00FCE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00FCE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_00FCE0[] = dturibori_sceneTex_00FCE0; + +#define dturibori_sceneTex_006BE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_006BE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_006BE0[] = dturibori_sceneTex_006BE0; + +#define dturibori_sceneTex_001CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_001CE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_001CE0[] = dturibori_sceneTex_001CE0; + +#define dturibori_sceneTex_0116E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0116E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0116E0[] = dturibori_sceneTex_0116E0; + +#define dturibori_sceneTex_00ECE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00ECE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_00ECE0[] = dturibori_sceneTex_00ECE0; + +#define dturibori_sceneTex_0114E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0114E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0114E0[] = dturibori_sceneTex_0114E0; + +#define dturibori_sceneTex_003CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_003CE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_003CE0[] = dturibori_sceneTex_003CE0; + +#define dturibori_sceneTex_002CE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_002CE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_002CE0[] = dturibori_sceneTex_002CE0; + +#define dturibori_sceneTex_00DCE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00DCE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_00DCE0[] = dturibori_sceneTex_00DCE0; + +#define dturibori_sceneTex_00BCE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00BCE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_00BCE0[] = dturibori_sceneTex_00BCE0; + +#define dturibori_sceneTex_00F4E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00F4E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_00F4E0[] = dturibori_sceneTex_00F4E0; + +#define dturibori_sceneTex_0069E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0069E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0069E0[] = dturibori_sceneTex_0069E0; + +#define dturibori_sceneTex_0051E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0051E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0051E0[] = dturibori_sceneTex_0051E0; + +#define dturibori_sceneTex_007BE0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_007BE0" +static const ALIGN_ASSET(2) char turibori_sceneTex_007BE0[] = dturibori_sceneTex_007BE0; + +#define dturibori_sceneTex_0091E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0091E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0091E0[] = dturibori_sceneTex_0091E0; + +#define dturibori_sceneTex_0092E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_0092E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_0092E0[] = dturibori_sceneTex_0092E0; + +#define dturibori_sceneTex_00E4E0 "__OTR__scenes/nonmq/turibori_scene/turibori_sceneTex_00E4E0" +static const ALIGN_ASSET(2) char turibori_sceneTex_00E4E0[] = dturibori_sceneTex_00E4E0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/entra/entra_room_0.h b/soh/assets/scenes/overworld/entra/entra_room_0.h index 2dd888f76..837bfd396 100644 --- a/soh/assets/scenes/overworld/entra/entra_room_0.h +++ b/soh/assets/scenes/overworld/entra/entra_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dentra_room_0DL_000348 "__OTR__scenes/nonmq/entra_scene/entra_room_0DL_000348" -#ifdef _WIN32 -static const __declspec(align(2)) char entra_room_0DL_000348[] = dentra_room_0DL_000348; -#else -static const char entra_room_0DL_000348[] __attribute__((aligned (2))) = dentra_room_0DL_000348; -#endif - +#include "align_asset_macro.h" + +#define dentra_room_0DL_000348 "__OTR__scenes/nonmq/entra_scene/entra_room_0DL_000348" +static const ALIGN_ASSET(2) char entra_room_0DL_000348[] = dentra_room_0DL_000348; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/entra/entra_scene.h b/soh/assets/scenes/overworld/entra/entra_scene.h index f02c19328..edfc81bd3 100644 --- a/soh/assets/scenes/overworld/entra/entra_scene.h +++ b/soh/assets/scenes/overworld/entra/entra_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dentra_sceneCollisionHeader_0003B4 "__OTR__scenes/nonmq/entra_scene/entra_sceneCollisionHeader_0003B4" -#ifdef _WIN32 -static const __declspec(align(2)) char entra_sceneCollisionHeader_0003B4[] = dentra_sceneCollisionHeader_0003B4; -#else -static const char entra_sceneCollisionHeader_0003B4[] __attribute__((aligned (2))) = dentra_sceneCollisionHeader_0003B4; -#endif - +#include "align_asset_macro.h" + +#define dentra_sceneCollisionHeader_0003B4 "__OTR__scenes/nonmq/entra_scene/entra_sceneCollisionHeader_0003B4" +static const ALIGN_ASSET(2) char entra_sceneCollisionHeader_0003B4[] = dentra_sceneCollisionHeader_0003B4; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/souko/souko_room_0.h b/soh/assets/scenes/overworld/souko/souko_room_0.h index 967152a91..2b70a4c09 100644 --- a/soh/assets/scenes/overworld/souko/souko_room_0.h +++ b/soh/assets/scenes/overworld/souko/souko_room_0.h @@ -1,135 +1,60 @@ #pragma once -#define dsouko_room_0DL_001E30 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_001E30" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_001E30[] = dsouko_room_0DL_001E30; -#else -static const char souko_room_0DL_001E30[] __attribute__((aligned (2))) = dsouko_room_0DL_001E30; -#endif - -#define dsouko_room_0Tex_0064F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0064F8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0Tex_0064F8[] = dsouko_room_0Tex_0064F8; -#else -static const char souko_room_0Tex_0064F8[] __attribute__((aligned (2))) = dsouko_room_0Tex_0064F8; -#endif - -#define dsouko_room_0DL_003950 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_003950" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_003950[] = dsouko_room_0DL_003950; -#else -static const char souko_room_0DL_003950[] __attribute__((aligned (2))) = dsouko_room_0DL_003950; -#endif - -#define dsouko_room_0Tex_006CF8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_006CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0Tex_006CF8[] = dsouko_room_0Tex_006CF8; -#else -static const char souko_room_0Tex_006CF8[] __attribute__((aligned (2))) = dsouko_room_0Tex_006CF8; -#endif - -#define dsouko_room_0Tex_0070F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0070F8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0Tex_0070F8[] = dsouko_room_0Tex_0070F8; -#else -static const char souko_room_0Tex_0070F8[] __attribute__((aligned (2))) = dsouko_room_0Tex_0070F8; -#endif - -#define dsouko_room_0DL_009440 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_009440" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_009440[] = dsouko_room_0DL_009440; -#else -static const char souko_room_0DL_009440[] __attribute__((aligned (2))) = dsouko_room_0DL_009440; -#endif - -#define dsouko_room_0DL_000FE0 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_000FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_000FE0[] = dsouko_room_0DL_000FE0; -#else -static const char souko_room_0DL_000FE0[] __attribute__((aligned (2))) = dsouko_room_0DL_000FE0; -#endif - -#define dsouko_room_0Tex_0090F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0090F8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0Tex_0090F8[] = dsouko_room_0Tex_0090F8; -#else -static const char souko_room_0Tex_0090F8[] __attribute__((aligned (2))) = dsouko_room_0Tex_0090F8; -#endif - -#define dsouko_room_0DL_0016C0 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_0016C0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_0016C0[] = dsouko_room_0DL_0016C0; -#else -static const char souko_room_0DL_0016C0[] __attribute__((aligned (2))) = dsouko_room_0DL_0016C0; -#endif - -#define dsouko_room_0DL_004A40 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_004A40" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_004A40[] = dsouko_room_0DL_004A40; -#else -static const char souko_room_0DL_004A40[] __attribute__((aligned (2))) = dsouko_room_0DL_004A40; -#endif - -#define dsouko_room_0Tex_005CF8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_005CF8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0Tex_005CF8[] = dsouko_room_0Tex_005CF8; -#else -static const char souko_room_0Tex_005CF8[] __attribute__((aligned (2))) = dsouko_room_0Tex_005CF8; -#endif - -#define dsouko_room_0DL_001908 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_001908" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_001908[] = dsouko_room_0DL_001908; -#else -static const char souko_room_0DL_001908[] __attribute__((aligned (2))) = dsouko_room_0DL_001908; -#endif - -#define dsouko_room_0DL_0052A0 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_0052A0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_0052A0[] = dsouko_room_0DL_0052A0; -#else -static const char souko_room_0DL_0052A0[] __attribute__((aligned (2))) = dsouko_room_0DL_0052A0; -#endif - -#define dsouko_room_0DL_0008B0 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_0008B0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_0008B0[] = dsouko_room_0DL_0008B0; -#else -static const char souko_room_0DL_0008B0[] __attribute__((aligned (2))) = dsouko_room_0DL_0008B0; -#endif - -#define dsouko_room_0Tex_0054F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0054F8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0Tex_0054F8[] = dsouko_room_0Tex_0054F8; -#else -static const char souko_room_0Tex_0054F8[] __attribute__((aligned (2))) = dsouko_room_0Tex_0054F8; -#endif - -#define dsouko_room_0DL_002480 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_002480" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_002480[] = dsouko_room_0DL_002480; -#else -static const char souko_room_0DL_002480[] __attribute__((aligned (2))) = dsouko_room_0DL_002480; -#endif - -#define dsouko_room_0Tex_0080F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0080F8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0Tex_0080F8[] = dsouko_room_0Tex_0080F8; -#else -static const char souko_room_0Tex_0080F8[] __attribute__((aligned (2))) = dsouko_room_0Tex_0080F8; -#endif - -#define dsouko_room_0Tex_0078F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0078F8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0Tex_0078F8[] = dsouko_room_0Tex_0078F8; -#else -static const char souko_room_0Tex_0078F8[] __attribute__((aligned (2))) = dsouko_room_0Tex_0078F8; -#endif - -#define dsouko_room_0DL_000C58 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_000C58" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_0DL_000C58[] = dsouko_room_0DL_000C58; -#else -static const char souko_room_0DL_000C58[] __attribute__((aligned (2))) = dsouko_room_0DL_000C58; -#endif - +#include "align_asset_macro.h" + +#define dsouko_room_0DL_001E30 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_001E30" +static const ALIGN_ASSET(2) char souko_room_0DL_001E30[] = dsouko_room_0DL_001E30; + +#define dsouko_room_0Tex_0064F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0064F8" +static const ALIGN_ASSET(2) char souko_room_0Tex_0064F8[] = dsouko_room_0Tex_0064F8; + +#define dsouko_room_0DL_003950 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_003950" +static const ALIGN_ASSET(2) char souko_room_0DL_003950[] = dsouko_room_0DL_003950; + +#define dsouko_room_0Tex_006CF8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_006CF8" +static const ALIGN_ASSET(2) char souko_room_0Tex_006CF8[] = dsouko_room_0Tex_006CF8; + +#define dsouko_room_0Tex_0070F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0070F8" +static const ALIGN_ASSET(2) char souko_room_0Tex_0070F8[] = dsouko_room_0Tex_0070F8; + +#define dsouko_room_0DL_009440 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_009440" +static const ALIGN_ASSET(2) char souko_room_0DL_009440[] = dsouko_room_0DL_009440; + +#define dsouko_room_0DL_000FE0 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_000FE0" +static const ALIGN_ASSET(2) char souko_room_0DL_000FE0[] = dsouko_room_0DL_000FE0; + +#define dsouko_room_0Tex_0090F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0090F8" +static const ALIGN_ASSET(2) char souko_room_0Tex_0090F8[] = dsouko_room_0Tex_0090F8; + +#define dsouko_room_0DL_0016C0 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_0016C0" +static const ALIGN_ASSET(2) char souko_room_0DL_0016C0[] = dsouko_room_0DL_0016C0; + +#define dsouko_room_0DL_004A40 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_004A40" +static const ALIGN_ASSET(2) char souko_room_0DL_004A40[] = dsouko_room_0DL_004A40; + +#define dsouko_room_0Tex_005CF8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_005CF8" +static const ALIGN_ASSET(2) char souko_room_0Tex_005CF8[] = dsouko_room_0Tex_005CF8; + +#define dsouko_room_0DL_001908 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_001908" +static const ALIGN_ASSET(2) char souko_room_0DL_001908[] = dsouko_room_0DL_001908; + +#define dsouko_room_0DL_0052A0 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_0052A0" +static const ALIGN_ASSET(2) char souko_room_0DL_0052A0[] = dsouko_room_0DL_0052A0; + +#define dsouko_room_0DL_0008B0 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_0008B0" +static const ALIGN_ASSET(2) char souko_room_0DL_0008B0[] = dsouko_room_0DL_0008B0; + +#define dsouko_room_0Tex_0054F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0054F8" +static const ALIGN_ASSET(2) char souko_room_0Tex_0054F8[] = dsouko_room_0Tex_0054F8; + +#define dsouko_room_0DL_002480 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_002480" +static const ALIGN_ASSET(2) char souko_room_0DL_002480[] = dsouko_room_0DL_002480; + +#define dsouko_room_0Tex_0080F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0080F8" +static const ALIGN_ASSET(2) char souko_room_0Tex_0080F8[] = dsouko_room_0Tex_0080F8; + +#define dsouko_room_0Tex_0078F8 "__OTR__scenes/nonmq/souko_scene/souko_room_0Tex_0078F8" +static const ALIGN_ASSET(2) char souko_room_0Tex_0078F8[] = dsouko_room_0Tex_0078F8; + +#define dsouko_room_0DL_000C58 "__OTR__scenes/nonmq/souko_scene/souko_room_0DL_000C58" +static const ALIGN_ASSET(2) char souko_room_0DL_000C58[] = dsouko_room_0DL_000C58; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/souko/souko_room_1.h b/soh/assets/scenes/overworld/souko/souko_room_1.h index 02bf6a380..5ba1d7b33 100644 --- a/soh/assets/scenes/overworld/souko/souko_room_1.h +++ b/soh/assets/scenes/overworld/souko/souko_room_1.h @@ -1,170 +1,75 @@ #pragma once -#define dsouko_room_1DL_003A00 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_003A00" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_003A00[] = dsouko_room_1DL_003A00; -#else -static const char souko_room_1DL_003A00[] __attribute__((aligned (2))) = dsouko_room_1DL_003A00; -#endif - -#define dsouko_room_1Tex_005918 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_005918" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_005918[] = dsouko_room_1Tex_005918; -#else -static const char souko_room_1Tex_005918[] __attribute__((aligned (2))) = dsouko_room_1Tex_005918; -#endif - -#define dsouko_room_1Tex_007118 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_007118" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_007118[] = dsouko_room_1Tex_007118; -#else -static const char souko_room_1Tex_007118[] __attribute__((aligned (2))) = dsouko_room_1Tex_007118; -#endif - -#define dsouko_room_1DL_009B08 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_009B08" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_009B08[] = dsouko_room_1DL_009B08; -#else -static const char souko_room_1DL_009B08[] __attribute__((aligned (2))) = dsouko_room_1DL_009B08; -#endif - -#define dsouko_room_1Tex_009F28 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_009F28" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_009F28[] = dsouko_room_1Tex_009F28; -#else -static const char souko_room_1Tex_009F28[] __attribute__((aligned (2))) = dsouko_room_1Tex_009F28; -#endif - -#define dsouko_room_1DL_0040C8 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_0040C8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_0040C8[] = dsouko_room_1DL_0040C8; -#else -static const char souko_room_1DL_0040C8[] __attribute__((aligned (2))) = dsouko_room_1DL_0040C8; -#endif - -#define dsouko_room_1DL_009DC0 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_009DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_009DC0[] = dsouko_room_1DL_009DC0; -#else -static const char souko_room_1DL_009DC0[] __attribute__((aligned (2))) = dsouko_room_1DL_009DC0; -#endif - -#define dsouko_room_1DL_001288 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_001288" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_001288[] = dsouko_room_1DL_001288; -#else -static const char souko_room_1DL_001288[] __attribute__((aligned (2))) = dsouko_room_1DL_001288; -#endif - -#define dsouko_room_1DL_001DF0 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_001DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_001DF0[] = dsouko_room_1DL_001DF0; -#else -static const char souko_room_1DL_001DF0[] __attribute__((aligned (2))) = dsouko_room_1DL_001DF0; -#endif - -#define dsouko_room_1DL_004F50 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_004F50" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_004F50[] = dsouko_room_1DL_004F50; -#else -static const char souko_room_1DL_004F50[] __attribute__((aligned (2))) = dsouko_room_1DL_004F50; -#endif - -#define dsouko_room_1DL_0022B0 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_0022B0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_0022B0[] = dsouko_room_1DL_0022B0; -#else -static const char souko_room_1DL_0022B0[] __attribute__((aligned (2))) = dsouko_room_1DL_0022B0; -#endif - -#define dsouko_room_1Tex_006118 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_006118" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_006118[] = dsouko_room_1Tex_006118; -#else -static const char souko_room_1Tex_006118[] __attribute__((aligned (2))) = dsouko_room_1Tex_006118; -#endif - -#define dsouko_room_1DL_0097E0 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_0097E0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_0097E0[] = dsouko_room_1DL_0097E0; -#else -static const char souko_room_1DL_0097E0[] __attribute__((aligned (2))) = dsouko_room_1DL_0097E0; -#endif - -#define dsouko_room_1Tex_00A128 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_00A128" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_00A128[] = dsouko_room_1Tex_00A128; -#else -static const char souko_room_1Tex_00A128[] __attribute__((aligned (2))) = dsouko_room_1Tex_00A128; -#endif - -#define dsouko_room_1Tex_00A228 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_00A228" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_00A228[] = dsouko_room_1Tex_00A228; -#else -static const char souko_room_1Tex_00A228[] __attribute__((aligned (2))) = dsouko_room_1Tex_00A228; -#endif - -#define dsouko_room_1DL_002590 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_002590" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_002590[] = dsouko_room_1DL_002590; -#else -static const char souko_room_1DL_002590[] __attribute__((aligned (2))) = dsouko_room_1DL_002590; -#endif - -#define dsouko_room_1DL_004790 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_004790" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_004790[] = dsouko_room_1DL_004790; -#else -static const char souko_room_1DL_004790[] __attribute__((aligned (2))) = dsouko_room_1DL_004790; -#endif - -#define dsouko_room_1Tex_008D18 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_008D18" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_008D18[] = dsouko_room_1Tex_008D18; -#else -static const char souko_room_1Tex_008D18[] __attribute__((aligned (2))) = dsouko_room_1Tex_008D18; -#endif - -#define dsouko_room_1DL_000890 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_000890" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_000890[] = dsouko_room_1DL_000890; -#else -static const char souko_room_1DL_000890[] __attribute__((aligned (2))) = dsouko_room_1DL_000890; -#endif - -#define dsouko_room_1Tex_005118 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_005118" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_005118[] = dsouko_room_1Tex_005118; -#else -static const char souko_room_1Tex_005118[] __attribute__((aligned (2))) = dsouko_room_1Tex_005118; -#endif - -#define dsouko_room_1DL_0029C8 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_0029C8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_0029C8[] = dsouko_room_1DL_0029C8; -#else -static const char souko_room_1DL_0029C8[] __attribute__((aligned (2))) = dsouko_room_1DL_0029C8; -#endif - -#define dsouko_room_1Tex_007D18 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_007D18" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_007D18[] = dsouko_room_1Tex_007D18; -#else -static const char souko_room_1Tex_007D18[] __attribute__((aligned (2))) = dsouko_room_1Tex_007D18; -#endif - -#define dsouko_room_1Tex_007518 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_007518" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1Tex_007518[] = dsouko_room_1Tex_007518; -#else -static const char souko_room_1Tex_007518[] __attribute__((aligned (2))) = dsouko_room_1Tex_007518; -#endif - -#define dsouko_room_1DL_000FB8 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_000FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_1DL_000FB8[] = dsouko_room_1DL_000FB8; -#else -static const char souko_room_1DL_000FB8[] __attribute__((aligned (2))) = dsouko_room_1DL_000FB8; -#endif - +#include "align_asset_macro.h" + +#define dsouko_room_1DL_003A00 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_003A00" +static const ALIGN_ASSET(2) char souko_room_1DL_003A00[] = dsouko_room_1DL_003A00; + +#define dsouko_room_1Tex_005918 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_005918" +static const ALIGN_ASSET(2) char souko_room_1Tex_005918[] = dsouko_room_1Tex_005918; + +#define dsouko_room_1Tex_007118 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_007118" +static const ALIGN_ASSET(2) char souko_room_1Tex_007118[] = dsouko_room_1Tex_007118; + +#define dsouko_room_1DL_009B08 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_009B08" +static const ALIGN_ASSET(2) char souko_room_1DL_009B08[] = dsouko_room_1DL_009B08; + +#define dsouko_room_1Tex_009F28 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_009F28" +static const ALIGN_ASSET(2) char souko_room_1Tex_009F28[] = dsouko_room_1Tex_009F28; + +#define dsouko_room_1DL_0040C8 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_0040C8" +static const ALIGN_ASSET(2) char souko_room_1DL_0040C8[] = dsouko_room_1DL_0040C8; + +#define dsouko_room_1DL_009DC0 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_009DC0" +static const ALIGN_ASSET(2) char souko_room_1DL_009DC0[] = dsouko_room_1DL_009DC0; + +#define dsouko_room_1DL_001288 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_001288" +static const ALIGN_ASSET(2) char souko_room_1DL_001288[] = dsouko_room_1DL_001288; + +#define dsouko_room_1DL_001DF0 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_001DF0" +static const ALIGN_ASSET(2) char souko_room_1DL_001DF0[] = dsouko_room_1DL_001DF0; + +#define dsouko_room_1DL_004F50 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_004F50" +static const ALIGN_ASSET(2) char souko_room_1DL_004F50[] = dsouko_room_1DL_004F50; + +#define dsouko_room_1DL_0022B0 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_0022B0" +static const ALIGN_ASSET(2) char souko_room_1DL_0022B0[] = dsouko_room_1DL_0022B0; + +#define dsouko_room_1Tex_006118 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_006118" +static const ALIGN_ASSET(2) char souko_room_1Tex_006118[] = dsouko_room_1Tex_006118; + +#define dsouko_room_1DL_0097E0 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_0097E0" +static const ALIGN_ASSET(2) char souko_room_1DL_0097E0[] = dsouko_room_1DL_0097E0; + +#define dsouko_room_1Tex_00A128 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_00A128" +static const ALIGN_ASSET(2) char souko_room_1Tex_00A128[] = dsouko_room_1Tex_00A128; + +#define dsouko_room_1Tex_00A228 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_00A228" +static const ALIGN_ASSET(2) char souko_room_1Tex_00A228[] = dsouko_room_1Tex_00A228; + +#define dsouko_room_1DL_002590 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_002590" +static const ALIGN_ASSET(2) char souko_room_1DL_002590[] = dsouko_room_1DL_002590; + +#define dsouko_room_1DL_004790 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_004790" +static const ALIGN_ASSET(2) char souko_room_1DL_004790[] = dsouko_room_1DL_004790; + +#define dsouko_room_1Tex_008D18 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_008D18" +static const ALIGN_ASSET(2) char souko_room_1Tex_008D18[] = dsouko_room_1Tex_008D18; + +#define dsouko_room_1DL_000890 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_000890" +static const ALIGN_ASSET(2) char souko_room_1DL_000890[] = dsouko_room_1DL_000890; + +#define dsouko_room_1Tex_005118 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_005118" +static const ALIGN_ASSET(2) char souko_room_1Tex_005118[] = dsouko_room_1Tex_005118; + +#define dsouko_room_1DL_0029C8 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_0029C8" +static const ALIGN_ASSET(2) char souko_room_1DL_0029C8[] = dsouko_room_1DL_0029C8; + +#define dsouko_room_1Tex_007D18 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_007D18" +static const ALIGN_ASSET(2) char souko_room_1Tex_007D18[] = dsouko_room_1Tex_007D18; + +#define dsouko_room_1Tex_007518 "__OTR__scenes/nonmq/souko_scene/souko_room_1Tex_007518" +static const ALIGN_ASSET(2) char souko_room_1Tex_007518[] = dsouko_room_1Tex_007518; + +#define dsouko_room_1DL_000FB8 "__OTR__scenes/nonmq/souko_scene/souko_room_1DL_000FB8" +static const ALIGN_ASSET(2) char souko_room_1DL_000FB8[] = dsouko_room_1DL_000FB8; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/souko/souko_room_2.h b/soh/assets/scenes/overworld/souko/souko_room_2.h index 3ede89c9c..659d01950 100644 --- a/soh/assets/scenes/overworld/souko/souko_room_2.h +++ b/soh/assets/scenes/overworld/souko/souko_room_2.h @@ -1,107 +1,48 @@ #pragma once -#define dsouko_room_2DL_007C20 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_007C20" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_007C20[] = dsouko_room_2DL_007C20; -#else -static const char souko_room_2DL_007C20[] __attribute__((aligned (2))) = dsouko_room_2DL_007C20; -#endif - -#define dsouko_room_2DL_0009D0 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0009D0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_0009D0[] = dsouko_room_2DL_0009D0; -#else -static const char souko_room_2DL_0009D0[] __attribute__((aligned (2))) = dsouko_room_2DL_0009D0; -#endif - -#define dsouko_room_2DL_0030F8 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0030F8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_0030F8[] = dsouko_room_2DL_0030F8; -#else -static const char souko_room_2DL_0030F8[] __attribute__((aligned (2))) = dsouko_room_2DL_0030F8; -#endif - -#define dsouko_room_2Tex_0062E0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_0062E0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2Tex_0062E0[] = dsouko_room_2Tex_0062E0; -#else -static const char souko_room_2Tex_0062E0[] __attribute__((aligned (2))) = dsouko_room_2Tex_0062E0; -#endif - -#define dsouko_room_2Tex_005AE0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_005AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2Tex_005AE0[] = dsouko_room_2Tex_005AE0; -#else -static const char souko_room_2Tex_005AE0[] __attribute__((aligned (2))) = dsouko_room_2Tex_005AE0; -#endif - -#define dsouko_room_2Tex_0052E0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_0052E0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2Tex_0052E0[] = dsouko_room_2Tex_0052E0; -#else -static const char souko_room_2Tex_0052E0[] __attribute__((aligned (2))) = dsouko_room_2Tex_0052E0; -#endif - -#define dsouko_room_2Tex_006AE0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_006AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2Tex_006AE0[] = dsouko_room_2Tex_006AE0; -#else -static const char souko_room_2Tex_006AE0[] __attribute__((aligned (2))) = dsouko_room_2Tex_006AE0; -#endif - -#define dsouko_room_2Tex_004EE0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_004EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2Tex_004EE0[] = dsouko_room_2Tex_004EE0; -#else -static const char souko_room_2Tex_004EE0[] __attribute__((aligned (2))) = dsouko_room_2Tex_004EE0; -#endif - -#define dsouko_room_2DL_007E90 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_007E90" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_007E90[] = dsouko_room_2DL_007E90; -#else -static const char souko_room_2DL_007E90[] __attribute__((aligned (2))) = dsouko_room_2DL_007E90; -#endif - -#define dsouko_room_2Tex_007F78 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_007F78" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2Tex_007F78[] = dsouko_room_2Tex_007F78; -#else -static const char souko_room_2Tex_007F78[] __attribute__((aligned (2))) = dsouko_room_2Tex_007F78; -#endif - -#define dsouko_room_2DL_0044C8 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0044C8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_0044C8[] = dsouko_room_2DL_0044C8; -#else -static const char souko_room_2DL_0044C8[] __attribute__((aligned (2))) = dsouko_room_2DL_0044C8; -#endif - -#define dsouko_room_2DL_004B10 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_004B10" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_004B10[] = dsouko_room_2DL_004B10; -#else -static const char souko_room_2DL_004B10[] __attribute__((aligned (2))) = dsouko_room_2DL_004B10; -#endif - -#define dsouko_room_2DL_0002B0 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0002B0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_0002B0[] = dsouko_room_2DL_0002B0; -#else -static const char souko_room_2DL_0002B0[] __attribute__((aligned (2))) = dsouko_room_2DL_0002B0; -#endif - -#define dsouko_room_2DL_0015E0 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0015E0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_0015E0[] = dsouko_room_2DL_0015E0; -#else -static const char souko_room_2DL_0015E0[] __attribute__((aligned (2))) = dsouko_room_2DL_0015E0; -#endif - -#define dsouko_room_2DL_000EF8 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_000EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_room_2DL_000EF8[] = dsouko_room_2DL_000EF8; -#else -static const char souko_room_2DL_000EF8[] __attribute__((aligned (2))) = dsouko_room_2DL_000EF8; -#endif - +#include "align_asset_macro.h" + +#define dsouko_room_2DL_007C20 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_007C20" +static const ALIGN_ASSET(2) char souko_room_2DL_007C20[] = dsouko_room_2DL_007C20; + +#define dsouko_room_2DL_0009D0 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0009D0" +static const ALIGN_ASSET(2) char souko_room_2DL_0009D0[] = dsouko_room_2DL_0009D0; + +#define dsouko_room_2DL_0030F8 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0030F8" +static const ALIGN_ASSET(2) char souko_room_2DL_0030F8[] = dsouko_room_2DL_0030F8; + +#define dsouko_room_2Tex_0062E0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_0062E0" +static const ALIGN_ASSET(2) char souko_room_2Tex_0062E0[] = dsouko_room_2Tex_0062E0; + +#define dsouko_room_2Tex_005AE0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_005AE0" +static const ALIGN_ASSET(2) char souko_room_2Tex_005AE0[] = dsouko_room_2Tex_005AE0; + +#define dsouko_room_2Tex_0052E0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_0052E0" +static const ALIGN_ASSET(2) char souko_room_2Tex_0052E0[] = dsouko_room_2Tex_0052E0; + +#define dsouko_room_2Tex_006AE0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_006AE0" +static const ALIGN_ASSET(2) char souko_room_2Tex_006AE0[] = dsouko_room_2Tex_006AE0; + +#define dsouko_room_2Tex_004EE0 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_004EE0" +static const ALIGN_ASSET(2) char souko_room_2Tex_004EE0[] = dsouko_room_2Tex_004EE0; + +#define dsouko_room_2DL_007E90 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_007E90" +static const ALIGN_ASSET(2) char souko_room_2DL_007E90[] = dsouko_room_2DL_007E90; + +#define dsouko_room_2Tex_007F78 "__OTR__scenes/nonmq/souko_scene/souko_room_2Tex_007F78" +static const ALIGN_ASSET(2) char souko_room_2Tex_007F78[] = dsouko_room_2Tex_007F78; + +#define dsouko_room_2DL_0044C8 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0044C8" +static const ALIGN_ASSET(2) char souko_room_2DL_0044C8[] = dsouko_room_2DL_0044C8; + +#define dsouko_room_2DL_004B10 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_004B10" +static const ALIGN_ASSET(2) char souko_room_2DL_004B10[] = dsouko_room_2DL_004B10; + +#define dsouko_room_2DL_0002B0 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0002B0" +static const ALIGN_ASSET(2) char souko_room_2DL_0002B0[] = dsouko_room_2DL_0002B0; + +#define dsouko_room_2DL_0015E0 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_0015E0" +static const ALIGN_ASSET(2) char souko_room_2DL_0015E0[] = dsouko_room_2DL_0015E0; + +#define dsouko_room_2DL_000EF8 "__OTR__scenes/nonmq/souko_scene/souko_room_2DL_000EF8" +static const ALIGN_ASSET(2) char souko_room_2DL_000EF8[] = dsouko_room_2DL_000EF8; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/souko/souko_scene.h b/soh/assets/scenes/overworld/souko/souko_scene.h index b15128f29..8440632c4 100644 --- a/soh/assets/scenes/overworld/souko/souko_scene.h +++ b/soh/assets/scenes/overworld/souko/souko_scene.h @@ -1,51 +1,24 @@ #pragma once -#define dgLonLonHouseDayEntranceTex "__OTR__scenes/nonmq/souko_scene/gLonLonHouseDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonHouseDayEntranceTex[] = dgLonLonHouseDayEntranceTex; -#else -static const char gLonLonHouseDayEntranceTex[] __attribute__((aligned (2))) = dgLonLonHouseDayEntranceTex; -#endif - -#define dgLonLonHouseNightEntranceTex "__OTR__scenes/nonmq/souko_scene/gLonLonHouseNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonHouseNightEntranceTex[] = dgLonLonHouseNightEntranceTex; -#else -static const char gLonLonHouseNightEntranceTex[] __attribute__((aligned (2))) = dgLonLonHouseNightEntranceTex; -#endif - -#define dsouko_sceneCollisionHeader_0043E0 "__OTR__scenes/nonmq/souko_scene/souko_sceneCollisionHeader_0043E0" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_sceneCollisionHeader_0043E0[] = dsouko_sceneCollisionHeader_0043E0; -#else -static const char souko_sceneCollisionHeader_0043E0[] __attribute__((aligned (2))) = dsouko_sceneCollisionHeader_0043E0; -#endif - -#define dsouko_sceneTex_005C10 "__OTR__scenes/nonmq/souko_scene/souko_sceneTex_005C10" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_sceneTex_005C10[] = dsouko_sceneTex_005C10; -#else -static const char souko_sceneTex_005C10[] __attribute__((aligned (2))) = dsouko_sceneTex_005C10; -#endif - -#define dsouko_sceneTex_004C10 "__OTR__scenes/nonmq/souko_scene/souko_sceneTex_004C10" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_sceneTex_004C10[] = dsouko_sceneTex_004C10; -#else -static const char souko_sceneTex_004C10[] __attribute__((aligned (2))) = dsouko_sceneTex_004C10; -#endif - -#define dsouko_sceneTex_004410 "__OTR__scenes/nonmq/souko_scene/souko_sceneTex_004410" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_sceneTex_004410[] = dsouko_sceneTex_004410; -#else -static const char souko_sceneTex_004410[] __attribute__((aligned (2))) = dsouko_sceneTex_004410; -#endif - -#define dsouko_sceneTex_005410 "__OTR__scenes/nonmq/souko_scene/souko_sceneTex_005410" -#ifdef _WIN32 -static const __declspec(align(2)) char souko_sceneTex_005410[] = dsouko_sceneTex_005410; -#else -static const char souko_sceneTex_005410[] __attribute__((aligned (2))) = dsouko_sceneTex_005410; -#endif - +#include "align_asset_macro.h" + +#define dgLonLonHouseDayEntranceTex "__OTR__scenes/nonmq/souko_scene/gLonLonHouseDayEntranceTex" +static const ALIGN_ASSET(2) char gLonLonHouseDayEntranceTex[] = dgLonLonHouseDayEntranceTex; + +#define dgLonLonHouseNightEntranceTex "__OTR__scenes/nonmq/souko_scene/gLonLonHouseNightEntranceTex" +static const ALIGN_ASSET(2) char gLonLonHouseNightEntranceTex[] = dgLonLonHouseNightEntranceTex; + +#define dsouko_sceneCollisionHeader_0043E0 "__OTR__scenes/nonmq/souko_scene/souko_sceneCollisionHeader_0043E0" +static const ALIGN_ASSET(2) char souko_sceneCollisionHeader_0043E0[] = dsouko_sceneCollisionHeader_0043E0; + +#define dsouko_sceneTex_005C10 "__OTR__scenes/nonmq/souko_scene/souko_sceneTex_005C10" +static const ALIGN_ASSET(2) char souko_sceneTex_005C10[] = dsouko_sceneTex_005C10; + +#define dsouko_sceneTex_004C10 "__OTR__scenes/nonmq/souko_scene/souko_sceneTex_004C10" +static const ALIGN_ASSET(2) char souko_sceneTex_004C10[] = dsouko_sceneTex_004C10; + +#define dsouko_sceneTex_004410 "__OTR__scenes/nonmq/souko_scene/souko_sceneTex_004410" +static const ALIGN_ASSET(2) char souko_sceneTex_004410[] = dsouko_sceneTex_004410; + +#define dsouko_sceneTex_005410 "__OTR__scenes/nonmq/souko_scene/souko_sceneTex_005410" +static const ALIGN_ASSET(2) char souko_sceneTex_005410[] = dsouko_sceneTex_005410; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot00/spot00_room_0.h b/soh/assets/scenes/overworld/spot00/spot00_room_0.h index c6b8559fa..71d02997c 100644 --- a/soh/assets/scenes/overworld/spot00/spot00_room_0.h +++ b/soh/assets/scenes/overworld/spot00/spot00_room_0.h @@ -1,3117 +1,1338 @@ #pragma once -#define dspot00_room_0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_013250[] = dspot00_room_0DL_013250; -#else -static const char spot00_room_0DL_013250[] __attribute__((aligned (2))) = dspot00_room_0DL_013250; -#endif - -#define dspot00_room_0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_0139A8[] = dspot00_room_0DL_0139A8; -#else -static const char spot00_room_0DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0DL_0139A8; -#endif - -#define dspot00_room_0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_0143C8[] = dspot00_room_0DL_0143C8; -#else -static const char spot00_room_0DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0DL_0143C8; -#endif - -#define dspot00_room_0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_015100[] = dspot00_room_0DL_015100; -#else -static const char spot00_room_0DL_015100[] __attribute__((aligned (2))) = dspot00_room_0DL_015100; -#endif - -#define dspot00_room_0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_014E28[] = dspot00_room_0DL_014E28; -#else -static const char spot00_room_0DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0DL_014E28; -#endif - -#define dspot00_room_0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_008448[] = dspot00_room_0DL_008448; -#else -static const char spot00_room_0DL_008448[] __attribute__((aligned (2))) = dspot00_room_0DL_008448; -#endif - -#define dspot00_room_0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_012C38[] = dspot00_room_0DL_012C38; -#else -static const char spot00_room_0DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0DL_012C38; -#endif - -#define dspot00_room_0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_012E18[] = dspot00_room_0DL_012E18; -#else -static const char spot00_room_0DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0DL_012E18; -#endif - -#define dspot00_room_0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_002790[] = dspot00_room_0DL_002790; -#else -static const char spot00_room_0DL_002790[] __attribute__((aligned (2))) = dspot00_room_0DL_002790; -#endif - -#define dspot00_room_0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_003338[] = dspot00_room_0DL_003338; -#else -static const char spot00_room_0DL_003338[] __attribute__((aligned (2))) = dspot00_room_0DL_003338; -#endif - -#define dspot00_room_0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_003ED0[] = dspot00_room_0DL_003ED0; -#else -static const char spot00_room_0DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0DL_003ED0; -#endif - -#define dspot00_room_0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_005030[] = dspot00_room_0DL_005030; -#else -static const char spot00_room_0DL_005030[] __attribute__((aligned (2))) = dspot00_room_0DL_005030; -#endif - -#define dspot00_room_0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_005850[] = dspot00_room_0DL_005850; -#else -static const char spot00_room_0DL_005850[] __attribute__((aligned (2))) = dspot00_room_0DL_005850; -#endif - -#define dspot00_room_0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_005BC0[] = dspot00_room_0DL_005BC0; -#else -static const char spot00_room_0DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0DL_005BC0; -#endif - -#define dspot00_room_0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_005E78[] = dspot00_room_0DL_005E78; -#else -static const char spot00_room_0DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0DL_005E78; -#endif - -#define dspot00_room_0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_0067C8[] = dspot00_room_0DL_0067C8; -#else -static const char spot00_room_0DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0DL_0067C8; -#endif - -#define dspot00_room_0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_006ED0[] = dspot00_room_0DL_006ED0; -#else -static const char spot00_room_0DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0DL_006ED0; -#endif - -#define dspot00_room_0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_007230[] = dspot00_room_0DL_007230; -#else -static const char spot00_room_0DL_007230[] __attribute__((aligned (2))) = dspot00_room_0DL_007230; -#endif - -#define dspot00_room_0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_008ED8[] = dspot00_room_0DL_008ED8; -#else -static const char spot00_room_0DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0DL_008ED8; -#endif - -#define dspot00_room_0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_0093A0[] = dspot00_room_0DL_0093A0; -#else -static const char spot00_room_0DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0DL_0093A0; -#endif - -#define dspot00_room_0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_009D10[] = dspot00_room_0DL_009D10; -#else -static const char spot00_room_0DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0DL_009D10; -#endif - -#define dspot00_room_0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00AD00[] = dspot00_room_0DL_00AD00; -#else -static const char spot00_room_0DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0DL_00AD00; -#endif - -#define dspot00_room_0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00B520[] = dspot00_room_0DL_00B520; -#else -static const char spot00_room_0DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0DL_00B520; -#endif - -#define dspot00_room_0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00B8B0[] = dspot00_room_0DL_00B8B0; -#else -static const char spot00_room_0DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0DL_00B8B0; -#endif - -#define dspot00_room_0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00BD20[] = dspot00_room_0DL_00BD20; -#else -static const char spot00_room_0DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0DL_00BD20; -#endif - -#define dspot00_room_0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00CEB8[] = dspot00_room_0DL_00CEB8; -#else -static const char spot00_room_0DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0DL_00CEB8; -#endif - -#define dspot00_room_0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00D980[] = dspot00_room_0DL_00D980; -#else -static const char spot00_room_0DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0DL_00D980; -#endif - -#define dspot00_room_0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00DD70[] = dspot00_room_0DL_00DD70; -#else -static const char spot00_room_0DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0DL_00DD70; -#endif - -#define dspot00_room_0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00DFA8[] = dspot00_room_0DL_00DFA8; -#else -static const char spot00_room_0DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0DL_00DFA8; -#endif - -#define dspot00_room_0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00E7B0[] = dspot00_room_0DL_00E7B0; -#else -static const char spot00_room_0DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0DL_00E7B0; -#endif - -#define dspot00_room_0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00F3F8[] = dspot00_room_0DL_00F3F8; -#else -static const char spot00_room_0DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0DL_00F3F8; -#endif - -#define dspot00_room_0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00FB50[] = dspot00_room_0DL_00FB50; -#else -static const char spot00_room_0DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0DL_00FB50; -#endif - -#define dspot00_room_0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00FE98[] = dspot00_room_0DL_00FE98; -#else -static const char spot00_room_0DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0DL_00FE98; -#endif - -#define dspot00_room_0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_0127B8[] = dspot00_room_0DL_0127B8; -#else -static const char spot00_room_0DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0DL_0127B8; -#endif - -#define dspot00_room_0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_00E328[] = dspot00_room_0DL_00E328; -#else -static const char spot00_room_0DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0DL_00E328; -#endif - -#define dspot00_room_0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_0112B8[] = dspot00_room_0DL_0112B8; -#else -static const char spot00_room_0DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0DL_0112B8; -#endif - -#define dspot00_room_0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_0121D0[] = dspot00_room_0DL_0121D0; -#else -static const char spot00_room_0DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0DL_0121D0; -#endif - -#define dspot00_room_0DL_012B20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_012B20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0DL_012B20[] = dspot00_room_0DL_012B20; -#else -static const char spot00_room_0DL_012B20[] __attribute__((aligned (2))) = dspot00_room_0DL_012B20; -#endif - -#define dspot00_room_0Set_000C50DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_013250[] = dspot00_room_0Set_000C50DL_013250; -#else -static const char spot00_room_0Set_000C50DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_013250; -#endif - -#define dspot00_room_0Set_000C50DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_0139A8[] = dspot00_room_0Set_000C50DL_0139A8; -#else -static const char spot00_room_0Set_000C50DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_0139A8; -#endif - -#define dspot00_room_0Set_000C50DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_0143C8[] = dspot00_room_0Set_000C50DL_0143C8; -#else -static const char spot00_room_0Set_000C50DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_0143C8; -#endif - -#define dspot00_room_0Set_000C50DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_015100[] = dspot00_room_0Set_000C50DL_015100; -#else -static const char spot00_room_0Set_000C50DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_015100; -#endif - -#define dspot00_room_0Set_000C50DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_014E28[] = dspot00_room_0Set_000C50DL_014E28; -#else -static const char spot00_room_0Set_000C50DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_014E28; -#endif - -#define dspot00_room_0Set_000C50DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_008448[] = dspot00_room_0Set_000C50DL_008448; -#else -static const char spot00_room_0Set_000C50DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_008448; -#endif - -#define dspot00_room_0Set_000C50DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_012C38[] = dspot00_room_0Set_000C50DL_012C38; -#else -static const char spot00_room_0Set_000C50DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_012C38; -#endif - -#define dspot00_room_0Set_000C50DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_012E18[] = dspot00_room_0Set_000C50DL_012E18; -#else -static const char spot00_room_0Set_000C50DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_012E18; -#endif - -#define dspot00_room_0Set_000C50DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_002790[] = dspot00_room_0Set_000C50DL_002790; -#else -static const char spot00_room_0Set_000C50DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_002790; -#endif - -#define dspot00_room_0Set_000C50DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_003338[] = dspot00_room_0Set_000C50DL_003338; -#else -static const char spot00_room_0Set_000C50DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_003338; -#endif - -#define dspot00_room_0Set_000C50DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_003ED0[] = dspot00_room_0Set_000C50DL_003ED0; -#else -static const char spot00_room_0Set_000C50DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_003ED0; -#endif - -#define dspot00_room_0Set_000C50DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_005030[] = dspot00_room_0Set_000C50DL_005030; -#else -static const char spot00_room_0Set_000C50DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_005030; -#endif - -#define dspot00_room_0Set_000C50DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_005850[] = dspot00_room_0Set_000C50DL_005850; -#else -static const char spot00_room_0Set_000C50DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_005850; -#endif - -#define dspot00_room_0Set_000C50DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_005BC0[] = dspot00_room_0Set_000C50DL_005BC0; -#else -static const char spot00_room_0Set_000C50DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_005BC0; -#endif - -#define dspot00_room_0Set_000C50DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_005E78[] = dspot00_room_0Set_000C50DL_005E78; -#else -static const char spot00_room_0Set_000C50DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_005E78; -#endif - -#define dspot00_room_0Set_000C50DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_0067C8[] = dspot00_room_0Set_000C50DL_0067C8; -#else -static const char spot00_room_0Set_000C50DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_0067C8; -#endif - -#define dspot00_room_0Set_000C50DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_006ED0[] = dspot00_room_0Set_000C50DL_006ED0; -#else -static const char spot00_room_0Set_000C50DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_006ED0; -#endif - -#define dspot00_room_0Set_000C50DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_007230[] = dspot00_room_0Set_000C50DL_007230; -#else -static const char spot00_room_0Set_000C50DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_007230; -#endif - -#define dspot00_room_0Set_000C50DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_008ED8[] = dspot00_room_0Set_000C50DL_008ED8; -#else -static const char spot00_room_0Set_000C50DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_008ED8; -#endif - -#define dspot00_room_0Set_000C50DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_0093A0[] = dspot00_room_0Set_000C50DL_0093A0; -#else -static const char spot00_room_0Set_000C50DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_0093A0; -#endif - -#define dspot00_room_0Set_000C50DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_009D10[] = dspot00_room_0Set_000C50DL_009D10; -#else -static const char spot00_room_0Set_000C50DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_009D10; -#endif - -#define dspot00_room_0Set_000C50DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00AD00[] = dspot00_room_0Set_000C50DL_00AD00; -#else -static const char spot00_room_0Set_000C50DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00AD00; -#endif - -#define dspot00_room_0Set_000C50DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00B520[] = dspot00_room_0Set_000C50DL_00B520; -#else -static const char spot00_room_0Set_000C50DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00B520; -#endif - -#define dspot00_room_0Set_000C50DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00B8B0[] = dspot00_room_0Set_000C50DL_00B8B0; -#else -static const char spot00_room_0Set_000C50DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00B8B0; -#endif - -#define dspot00_room_0Set_000C50DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00BD20[] = dspot00_room_0Set_000C50DL_00BD20; -#else -static const char spot00_room_0Set_000C50DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00BD20; -#endif - -#define dspot00_room_0Set_000C50DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00CEB8[] = dspot00_room_0Set_000C50DL_00CEB8; -#else -static const char spot00_room_0Set_000C50DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00CEB8; -#endif - -#define dspot00_room_0Set_000C50DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00D980[] = dspot00_room_0Set_000C50DL_00D980; -#else -static const char spot00_room_0Set_000C50DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00D980; -#endif - -#define dspot00_room_0Set_000C50DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00DD70[] = dspot00_room_0Set_000C50DL_00DD70; -#else -static const char spot00_room_0Set_000C50DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00DD70; -#endif - -#define dspot00_room_0Set_000C50DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00DFA8[] = dspot00_room_0Set_000C50DL_00DFA8; -#else -static const char spot00_room_0Set_000C50DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00DFA8; -#endif - -#define dspot00_room_0Set_000C50DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00E7B0[] = dspot00_room_0Set_000C50DL_00E7B0; -#else -static const char spot00_room_0Set_000C50DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00E7B0; -#endif - -#define dspot00_room_0Set_000C50DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00F3F8[] = dspot00_room_0Set_000C50DL_00F3F8; -#else -static const char spot00_room_0Set_000C50DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00F3F8; -#endif - -#define dspot00_room_0Set_000C50DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00FB50[] = dspot00_room_0Set_000C50DL_00FB50; -#else -static const char spot00_room_0Set_000C50DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00FB50; -#endif - -#define dspot00_room_0Set_000C50DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00FE98[] = dspot00_room_0Set_000C50DL_00FE98; -#else -static const char spot00_room_0Set_000C50DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00FE98; -#endif - -#define dspot00_room_0Set_000C50DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_0127B8[] = dspot00_room_0Set_000C50DL_0127B8; -#else -static const char spot00_room_0Set_000C50DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_0127B8; -#endif - -#define dspot00_room_0Set_000C50DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_00E328[] = dspot00_room_0Set_000C50DL_00E328; -#else -static const char spot00_room_0Set_000C50DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_00E328; -#endif - -#define dspot00_room_0Set_000C50DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_0112B8[] = dspot00_room_0Set_000C50DL_0112B8; -#else -static const char spot00_room_0Set_000C50DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_0112B8; -#endif - -#define dspot00_room_0Set_000C50DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000C50DL_0121D0[] = dspot00_room_0Set_000C50DL_0121D0; -#else -static const char spot00_room_0Set_000C50DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_000C50DL_0121D0; -#endif - -#define dspot00_room_0Set_000770DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_013250[] = dspot00_room_0Set_000770DL_013250; -#else -static const char spot00_room_0Set_000770DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_013250; -#endif - -#define dspot00_room_0Set_000770DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_0139A8[] = dspot00_room_0Set_000770DL_0139A8; -#else -static const char spot00_room_0Set_000770DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_0139A8; -#endif - -#define dspot00_room_0Set_000770DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_0143C8[] = dspot00_room_0Set_000770DL_0143C8; -#else -static const char spot00_room_0Set_000770DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_0143C8; -#endif - -#define dspot00_room_0Set_000770DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_015100[] = dspot00_room_0Set_000770DL_015100; -#else -static const char spot00_room_0Set_000770DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_015100; -#endif - -#define dspot00_room_0Set_000770DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_014E28[] = dspot00_room_0Set_000770DL_014E28; -#else -static const char spot00_room_0Set_000770DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_014E28; -#endif - -#define dspot00_room_0Set_000770DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_008448[] = dspot00_room_0Set_000770DL_008448; -#else -static const char spot00_room_0Set_000770DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_008448; -#endif - -#define dspot00_room_0Set_000770DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_012C38[] = dspot00_room_0Set_000770DL_012C38; -#else -static const char spot00_room_0Set_000770DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_012C38; -#endif - -#define dspot00_room_0Set_000770DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_012E18[] = dspot00_room_0Set_000770DL_012E18; -#else -static const char spot00_room_0Set_000770DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_012E18; -#endif - -#define dspot00_room_0Set_000770DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_002790[] = dspot00_room_0Set_000770DL_002790; -#else -static const char spot00_room_0Set_000770DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_002790; -#endif - -#define dspot00_room_0Set_000770DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_003338[] = dspot00_room_0Set_000770DL_003338; -#else -static const char spot00_room_0Set_000770DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_003338; -#endif - -#define dspot00_room_0Set_000770DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_003ED0[] = dspot00_room_0Set_000770DL_003ED0; -#else -static const char spot00_room_0Set_000770DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_003ED0; -#endif - -#define dspot00_room_0Set_000770DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_005030[] = dspot00_room_0Set_000770DL_005030; -#else -static const char spot00_room_0Set_000770DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_005030; -#endif - -#define dspot00_room_0Set_000770DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_005850[] = dspot00_room_0Set_000770DL_005850; -#else -static const char spot00_room_0Set_000770DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_005850; -#endif - -#define dspot00_room_0Set_000770DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_005BC0[] = dspot00_room_0Set_000770DL_005BC0; -#else -static const char spot00_room_0Set_000770DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_005BC0; -#endif - -#define dspot00_room_0Set_000770DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_005E78[] = dspot00_room_0Set_000770DL_005E78; -#else -static const char spot00_room_0Set_000770DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_005E78; -#endif - -#define dspot00_room_0Set_000770DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_0067C8[] = dspot00_room_0Set_000770DL_0067C8; -#else -static const char spot00_room_0Set_000770DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_0067C8; -#endif - -#define dspot00_room_0Set_000770DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_006ED0[] = dspot00_room_0Set_000770DL_006ED0; -#else -static const char spot00_room_0Set_000770DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_006ED0; -#endif - -#define dspot00_room_0Set_000770DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_007230[] = dspot00_room_0Set_000770DL_007230; -#else -static const char spot00_room_0Set_000770DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_007230; -#endif - -#define dspot00_room_0Set_000770DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_008ED8[] = dspot00_room_0Set_000770DL_008ED8; -#else -static const char spot00_room_0Set_000770DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_008ED8; -#endif - -#define dspot00_room_0Set_000770DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_0093A0[] = dspot00_room_0Set_000770DL_0093A0; -#else -static const char spot00_room_0Set_000770DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_0093A0; -#endif - -#define dspot00_room_0Set_000770DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_009D10[] = dspot00_room_0Set_000770DL_009D10; -#else -static const char spot00_room_0Set_000770DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_009D10; -#endif - -#define dspot00_room_0Set_000770DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00AD00[] = dspot00_room_0Set_000770DL_00AD00; -#else -static const char spot00_room_0Set_000770DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00AD00; -#endif - -#define dspot00_room_0Set_000770DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00B520[] = dspot00_room_0Set_000770DL_00B520; -#else -static const char spot00_room_0Set_000770DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00B520; -#endif - -#define dspot00_room_0Set_000770DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00B8B0[] = dspot00_room_0Set_000770DL_00B8B0; -#else -static const char spot00_room_0Set_000770DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00B8B0; -#endif - -#define dspot00_room_0Set_000770DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00BD20[] = dspot00_room_0Set_000770DL_00BD20; -#else -static const char spot00_room_0Set_000770DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00BD20; -#endif - -#define dspot00_room_0Set_000770DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00CEB8[] = dspot00_room_0Set_000770DL_00CEB8; -#else -static const char spot00_room_0Set_000770DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00CEB8; -#endif - -#define dspot00_room_0Set_000770DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00D980[] = dspot00_room_0Set_000770DL_00D980; -#else -static const char spot00_room_0Set_000770DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00D980; -#endif - -#define dspot00_room_0Set_000770DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00DD70[] = dspot00_room_0Set_000770DL_00DD70; -#else -static const char spot00_room_0Set_000770DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00DD70; -#endif - -#define dspot00_room_0Set_000770DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00DFA8[] = dspot00_room_0Set_000770DL_00DFA8; -#else -static const char spot00_room_0Set_000770DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00DFA8; -#endif - -#define dspot00_room_0Set_000770DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00E7B0[] = dspot00_room_0Set_000770DL_00E7B0; -#else -static const char spot00_room_0Set_000770DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00E7B0; -#endif - -#define dspot00_room_0Set_000770DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00F3F8[] = dspot00_room_0Set_000770DL_00F3F8; -#else -static const char spot00_room_0Set_000770DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00F3F8; -#endif - -#define dspot00_room_0Set_000770DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00FB50[] = dspot00_room_0Set_000770DL_00FB50; -#else -static const char spot00_room_0Set_000770DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00FB50; -#endif - -#define dspot00_room_0Set_000770DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00FE98[] = dspot00_room_0Set_000770DL_00FE98; -#else -static const char spot00_room_0Set_000770DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00FE98; -#endif - -#define dspot00_room_0Set_000770DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_0127B8[] = dspot00_room_0Set_000770DL_0127B8; -#else -static const char spot00_room_0Set_000770DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_0127B8; -#endif - -#define dspot00_room_0Set_000770DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_00E328[] = dspot00_room_0Set_000770DL_00E328; -#else -static const char spot00_room_0Set_000770DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_00E328; -#endif - -#define dspot00_room_0Set_000770DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_0112B8[] = dspot00_room_0Set_000770DL_0112B8; -#else -static const char spot00_room_0Set_000770DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_0112B8; -#endif - -#define dspot00_room_0Set_000770DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_000770DL_0121D0[] = dspot00_room_0Set_000770DL_0121D0; -#else -static const char spot00_room_0Set_000770DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_000770DL_0121D0; -#endif - -#define dspot00_room_0Set_001120DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_013250[] = dspot00_room_0Set_001120DL_013250; -#else -static const char spot00_room_0Set_001120DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_013250; -#endif - -#define dspot00_room_0Set_001120DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_0139A8[] = dspot00_room_0Set_001120DL_0139A8; -#else -static const char spot00_room_0Set_001120DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_0139A8; -#endif - -#define dspot00_room_0Set_001120DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_0143C8[] = dspot00_room_0Set_001120DL_0143C8; -#else -static const char spot00_room_0Set_001120DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_0143C8; -#endif - -#define dspot00_room_0Set_001120DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_015100[] = dspot00_room_0Set_001120DL_015100; -#else -static const char spot00_room_0Set_001120DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_015100; -#endif - -#define dspot00_room_0Set_001120DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_014E28[] = dspot00_room_0Set_001120DL_014E28; -#else -static const char spot00_room_0Set_001120DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_014E28; -#endif - -#define dspot00_room_0Set_001120DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_008448[] = dspot00_room_0Set_001120DL_008448; -#else -static const char spot00_room_0Set_001120DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_008448; -#endif - -#define dspot00_room_0Set_001120DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_012C38[] = dspot00_room_0Set_001120DL_012C38; -#else -static const char spot00_room_0Set_001120DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_012C38; -#endif - -#define dspot00_room_0Set_001120DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_012E18[] = dspot00_room_0Set_001120DL_012E18; -#else -static const char spot00_room_0Set_001120DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_012E18; -#endif - -#define dspot00_room_0Set_001120DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_002790[] = dspot00_room_0Set_001120DL_002790; -#else -static const char spot00_room_0Set_001120DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_002790; -#endif - -#define dspot00_room_0Set_001120DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_003338[] = dspot00_room_0Set_001120DL_003338; -#else -static const char spot00_room_0Set_001120DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_003338; -#endif - -#define dspot00_room_0Set_001120DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_003ED0[] = dspot00_room_0Set_001120DL_003ED0; -#else -static const char spot00_room_0Set_001120DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_003ED0; -#endif - -#define dspot00_room_0Set_001120DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_005030[] = dspot00_room_0Set_001120DL_005030; -#else -static const char spot00_room_0Set_001120DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_005030; -#endif - -#define dspot00_room_0Set_001120DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_005850[] = dspot00_room_0Set_001120DL_005850; -#else -static const char spot00_room_0Set_001120DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_005850; -#endif - -#define dspot00_room_0Set_001120DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_005BC0[] = dspot00_room_0Set_001120DL_005BC0; -#else -static const char spot00_room_0Set_001120DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_005BC0; -#endif - -#define dspot00_room_0Set_001120DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_005E78[] = dspot00_room_0Set_001120DL_005E78; -#else -static const char spot00_room_0Set_001120DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_005E78; -#endif - -#define dspot00_room_0Set_001120DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_0067C8[] = dspot00_room_0Set_001120DL_0067C8; -#else -static const char spot00_room_0Set_001120DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_0067C8; -#endif - -#define dspot00_room_0Set_001120DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_006ED0[] = dspot00_room_0Set_001120DL_006ED0; -#else -static const char spot00_room_0Set_001120DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_006ED0; -#endif - -#define dspot00_room_0Set_001120DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_007230[] = dspot00_room_0Set_001120DL_007230; -#else -static const char spot00_room_0Set_001120DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_007230; -#endif - -#define dspot00_room_0Set_001120DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_008ED8[] = dspot00_room_0Set_001120DL_008ED8; -#else -static const char spot00_room_0Set_001120DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_008ED8; -#endif - -#define dspot00_room_0Set_001120DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_0093A0[] = dspot00_room_0Set_001120DL_0093A0; -#else -static const char spot00_room_0Set_001120DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_0093A0; -#endif - -#define dspot00_room_0Set_001120DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_009D10[] = dspot00_room_0Set_001120DL_009D10; -#else -static const char spot00_room_0Set_001120DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_009D10; -#endif - -#define dspot00_room_0Set_001120DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00AD00[] = dspot00_room_0Set_001120DL_00AD00; -#else -static const char spot00_room_0Set_001120DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00AD00; -#endif - -#define dspot00_room_0Set_001120DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00B520[] = dspot00_room_0Set_001120DL_00B520; -#else -static const char spot00_room_0Set_001120DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00B520; -#endif - -#define dspot00_room_0Set_001120DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00B8B0[] = dspot00_room_0Set_001120DL_00B8B0; -#else -static const char spot00_room_0Set_001120DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00B8B0; -#endif - -#define dspot00_room_0Set_001120DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00BD20[] = dspot00_room_0Set_001120DL_00BD20; -#else -static const char spot00_room_0Set_001120DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00BD20; -#endif - -#define dspot00_room_0Set_001120DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00CEB8[] = dspot00_room_0Set_001120DL_00CEB8; -#else -static const char spot00_room_0Set_001120DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00CEB8; -#endif - -#define dspot00_room_0Set_001120DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00D980[] = dspot00_room_0Set_001120DL_00D980; -#else -static const char spot00_room_0Set_001120DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00D980; -#endif - -#define dspot00_room_0Set_001120DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00DD70[] = dspot00_room_0Set_001120DL_00DD70; -#else -static const char spot00_room_0Set_001120DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00DD70; -#endif - -#define dspot00_room_0Set_001120DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00DFA8[] = dspot00_room_0Set_001120DL_00DFA8; -#else -static const char spot00_room_0Set_001120DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00DFA8; -#endif - -#define dspot00_room_0Set_001120DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00E7B0[] = dspot00_room_0Set_001120DL_00E7B0; -#else -static const char spot00_room_0Set_001120DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00E7B0; -#endif - -#define dspot00_room_0Set_001120DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00F3F8[] = dspot00_room_0Set_001120DL_00F3F8; -#else -static const char spot00_room_0Set_001120DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00F3F8; -#endif - -#define dspot00_room_0Set_001120DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00FB50[] = dspot00_room_0Set_001120DL_00FB50; -#else -static const char spot00_room_0Set_001120DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00FB50; -#endif - -#define dspot00_room_0Set_001120DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00FE98[] = dspot00_room_0Set_001120DL_00FE98; -#else -static const char spot00_room_0Set_001120DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00FE98; -#endif - -#define dspot00_room_0Set_001120DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_0127B8[] = dspot00_room_0Set_001120DL_0127B8; -#else -static const char spot00_room_0Set_001120DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_0127B8; -#endif - -#define dspot00_room_0Set_001120DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_00E328[] = dspot00_room_0Set_001120DL_00E328; -#else -static const char spot00_room_0Set_001120DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_00E328; -#endif - -#define dspot00_room_0Set_001120DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_0112B8[] = dspot00_room_0Set_001120DL_0112B8; -#else -static const char spot00_room_0Set_001120DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_0112B8; -#endif - -#define dspot00_room_0Set_001120DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001120DL_0121D0[] = dspot00_room_0Set_001120DL_0121D0; -#else -static const char spot00_room_0Set_001120DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_001120DL_0121D0; -#endif - -#define dspot00_room_0Set_0011F0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_013250[] = dspot00_room_0Set_0011F0DL_013250; -#else -static const char spot00_room_0Set_0011F0DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_013250; -#endif - -#define dspot00_room_0Set_0011F0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_0139A8[] = dspot00_room_0Set_0011F0DL_0139A8; -#else -static const char spot00_room_0Set_0011F0DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_0139A8; -#endif - -#define dspot00_room_0Set_0011F0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_0143C8[] = dspot00_room_0Set_0011F0DL_0143C8; -#else -static const char spot00_room_0Set_0011F0DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_0143C8; -#endif - -#define dspot00_room_0Set_0011F0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_015100[] = dspot00_room_0Set_0011F0DL_015100; -#else -static const char spot00_room_0Set_0011F0DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_015100; -#endif - -#define dspot00_room_0Set_0011F0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_014E28[] = dspot00_room_0Set_0011F0DL_014E28; -#else -static const char spot00_room_0Set_0011F0DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_014E28; -#endif - -#define dspot00_room_0Set_0011F0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_008448[] = dspot00_room_0Set_0011F0DL_008448; -#else -static const char spot00_room_0Set_0011F0DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_008448; -#endif - -#define dspot00_room_0Set_0011F0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_012C38[] = dspot00_room_0Set_0011F0DL_012C38; -#else -static const char spot00_room_0Set_0011F0DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_012C38; -#endif - -#define dspot00_room_0Set_0011F0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_012E18[] = dspot00_room_0Set_0011F0DL_012E18; -#else -static const char spot00_room_0Set_0011F0DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_012E18; -#endif - -#define dspot00_room_0Set_0011F0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_002790[] = dspot00_room_0Set_0011F0DL_002790; -#else -static const char spot00_room_0Set_0011F0DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_002790; -#endif - -#define dspot00_room_0Set_0011F0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_003338[] = dspot00_room_0Set_0011F0DL_003338; -#else -static const char spot00_room_0Set_0011F0DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_003338; -#endif - -#define dspot00_room_0Set_0011F0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_003ED0[] = dspot00_room_0Set_0011F0DL_003ED0; -#else -static const char spot00_room_0Set_0011F0DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_003ED0; -#endif - -#define dspot00_room_0Set_0011F0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_005030[] = dspot00_room_0Set_0011F0DL_005030; -#else -static const char spot00_room_0Set_0011F0DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_005030; -#endif - -#define dspot00_room_0Set_0011F0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_005850[] = dspot00_room_0Set_0011F0DL_005850; -#else -static const char spot00_room_0Set_0011F0DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_005850; -#endif - -#define dspot00_room_0Set_0011F0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_005BC0[] = dspot00_room_0Set_0011F0DL_005BC0; -#else -static const char spot00_room_0Set_0011F0DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_005BC0; -#endif - -#define dspot00_room_0Set_0011F0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_005E78[] = dspot00_room_0Set_0011F0DL_005E78; -#else -static const char spot00_room_0Set_0011F0DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_005E78; -#endif - -#define dspot00_room_0Set_0011F0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_0067C8[] = dspot00_room_0Set_0011F0DL_0067C8; -#else -static const char spot00_room_0Set_0011F0DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_0067C8; -#endif - -#define dspot00_room_0Set_0011F0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_006ED0[] = dspot00_room_0Set_0011F0DL_006ED0; -#else -static const char spot00_room_0Set_0011F0DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_006ED0; -#endif - -#define dspot00_room_0Set_0011F0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_007230[] = dspot00_room_0Set_0011F0DL_007230; -#else -static const char spot00_room_0Set_0011F0DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_007230; -#endif - -#define dspot00_room_0Set_0011F0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_008ED8[] = dspot00_room_0Set_0011F0DL_008ED8; -#else -static const char spot00_room_0Set_0011F0DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_008ED8; -#endif - -#define dspot00_room_0Set_0011F0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_0093A0[] = dspot00_room_0Set_0011F0DL_0093A0; -#else -static const char spot00_room_0Set_0011F0DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_0093A0; -#endif - -#define dspot00_room_0Set_0011F0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_009D10[] = dspot00_room_0Set_0011F0DL_009D10; -#else -static const char spot00_room_0Set_0011F0DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_009D10; -#endif - -#define dspot00_room_0Set_0011F0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00AD00[] = dspot00_room_0Set_0011F0DL_00AD00; -#else -static const char spot00_room_0Set_0011F0DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00AD00; -#endif - -#define dspot00_room_0Set_0011F0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00B520[] = dspot00_room_0Set_0011F0DL_00B520; -#else -static const char spot00_room_0Set_0011F0DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00B520; -#endif - -#define dspot00_room_0Set_0011F0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00B8B0[] = dspot00_room_0Set_0011F0DL_00B8B0; -#else -static const char spot00_room_0Set_0011F0DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00B8B0; -#endif - -#define dspot00_room_0Set_0011F0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00BD20[] = dspot00_room_0Set_0011F0DL_00BD20; -#else -static const char spot00_room_0Set_0011F0DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00BD20; -#endif - -#define dspot00_room_0Set_0011F0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00CEB8[] = dspot00_room_0Set_0011F0DL_00CEB8; -#else -static const char spot00_room_0Set_0011F0DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00CEB8; -#endif - -#define dspot00_room_0Set_0011F0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00D980[] = dspot00_room_0Set_0011F0DL_00D980; -#else -static const char spot00_room_0Set_0011F0DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00D980; -#endif - -#define dspot00_room_0Set_0011F0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00DD70[] = dspot00_room_0Set_0011F0DL_00DD70; -#else -static const char spot00_room_0Set_0011F0DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00DD70; -#endif - -#define dspot00_room_0Set_0011F0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00DFA8[] = dspot00_room_0Set_0011F0DL_00DFA8; -#else -static const char spot00_room_0Set_0011F0DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00DFA8; -#endif - -#define dspot00_room_0Set_0011F0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00E7B0[] = dspot00_room_0Set_0011F0DL_00E7B0; -#else -static const char spot00_room_0Set_0011F0DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00E7B0; -#endif - -#define dspot00_room_0Set_0011F0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00F3F8[] = dspot00_room_0Set_0011F0DL_00F3F8; -#else -static const char spot00_room_0Set_0011F0DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00F3F8; -#endif - -#define dspot00_room_0Set_0011F0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00FB50[] = dspot00_room_0Set_0011F0DL_00FB50; -#else -static const char spot00_room_0Set_0011F0DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00FB50; -#endif - -#define dspot00_room_0Set_0011F0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00FE98[] = dspot00_room_0Set_0011F0DL_00FE98; -#else -static const char spot00_room_0Set_0011F0DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00FE98; -#endif - -#define dspot00_room_0Set_0011F0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_0127B8[] = dspot00_room_0Set_0011F0DL_0127B8; -#else -static const char spot00_room_0Set_0011F0DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_0127B8; -#endif - -#define dspot00_room_0Set_0011F0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_00E328[] = dspot00_room_0Set_0011F0DL_00E328; -#else -static const char spot00_room_0Set_0011F0DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_00E328; -#endif - -#define dspot00_room_0Set_0011F0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_0112B8[] = dspot00_room_0Set_0011F0DL_0112B8; -#else -static const char spot00_room_0Set_0011F0DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_0112B8; -#endif - -#define dspot00_room_0Set_0011F0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0011F0DL_0121D0[] = dspot00_room_0Set_0011F0DL_0121D0; -#else -static const char spot00_room_0Set_0011F0DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_0011F0DL_0121D0; -#endif - -#define dspot00_room_0Set_0012C0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_013250[] = dspot00_room_0Set_0012C0DL_013250; -#else -static const char spot00_room_0Set_0012C0DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_013250; -#endif - -#define dspot00_room_0Set_0012C0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_0139A8[] = dspot00_room_0Set_0012C0DL_0139A8; -#else -static const char spot00_room_0Set_0012C0DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_0139A8; -#endif - -#define dspot00_room_0Set_0012C0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_0143C8[] = dspot00_room_0Set_0012C0DL_0143C8; -#else -static const char spot00_room_0Set_0012C0DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_0143C8; -#endif - -#define dspot00_room_0Set_0012C0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_015100[] = dspot00_room_0Set_0012C0DL_015100; -#else -static const char spot00_room_0Set_0012C0DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_015100; -#endif - -#define dspot00_room_0Set_0012C0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_014E28[] = dspot00_room_0Set_0012C0DL_014E28; -#else -static const char spot00_room_0Set_0012C0DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_014E28; -#endif - -#define dspot00_room_0Set_0012C0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_008448[] = dspot00_room_0Set_0012C0DL_008448; -#else -static const char spot00_room_0Set_0012C0DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_008448; -#endif - -#define dspot00_room_0Set_0012C0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_012C38[] = dspot00_room_0Set_0012C0DL_012C38; -#else -static const char spot00_room_0Set_0012C0DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_012C38; -#endif - -#define dspot00_room_0Set_0012C0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_012E18[] = dspot00_room_0Set_0012C0DL_012E18; -#else -static const char spot00_room_0Set_0012C0DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_012E18; -#endif - -#define dspot00_room_0Set_0012C0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_002790[] = dspot00_room_0Set_0012C0DL_002790; -#else -static const char spot00_room_0Set_0012C0DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_002790; -#endif - -#define dspot00_room_0Set_0012C0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_003338[] = dspot00_room_0Set_0012C0DL_003338; -#else -static const char spot00_room_0Set_0012C0DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_003338; -#endif - -#define dspot00_room_0Set_0012C0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_003ED0[] = dspot00_room_0Set_0012C0DL_003ED0; -#else -static const char spot00_room_0Set_0012C0DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_003ED0; -#endif - -#define dspot00_room_0Set_0012C0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_005030[] = dspot00_room_0Set_0012C0DL_005030; -#else -static const char spot00_room_0Set_0012C0DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_005030; -#endif - -#define dspot00_room_0Set_0012C0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_005850[] = dspot00_room_0Set_0012C0DL_005850; -#else -static const char spot00_room_0Set_0012C0DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_005850; -#endif - -#define dspot00_room_0Set_0012C0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_005BC0[] = dspot00_room_0Set_0012C0DL_005BC0; -#else -static const char spot00_room_0Set_0012C0DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_005BC0; -#endif - -#define dspot00_room_0Set_0012C0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_005E78[] = dspot00_room_0Set_0012C0DL_005E78; -#else -static const char spot00_room_0Set_0012C0DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_005E78; -#endif - -#define dspot00_room_0Set_0012C0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_0067C8[] = dspot00_room_0Set_0012C0DL_0067C8; -#else -static const char spot00_room_0Set_0012C0DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_0067C8; -#endif - -#define dspot00_room_0Set_0012C0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_006ED0[] = dspot00_room_0Set_0012C0DL_006ED0; -#else -static const char spot00_room_0Set_0012C0DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_006ED0; -#endif - -#define dspot00_room_0Set_0012C0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_007230[] = dspot00_room_0Set_0012C0DL_007230; -#else -static const char spot00_room_0Set_0012C0DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_007230; -#endif - -#define dspot00_room_0Set_0012C0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_008ED8[] = dspot00_room_0Set_0012C0DL_008ED8; -#else -static const char spot00_room_0Set_0012C0DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_008ED8; -#endif - -#define dspot00_room_0Set_0012C0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_0093A0[] = dspot00_room_0Set_0012C0DL_0093A0; -#else -static const char spot00_room_0Set_0012C0DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_0093A0; -#endif - -#define dspot00_room_0Set_0012C0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_009D10[] = dspot00_room_0Set_0012C0DL_009D10; -#else -static const char spot00_room_0Set_0012C0DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_009D10; -#endif - -#define dspot00_room_0Set_0012C0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00AD00[] = dspot00_room_0Set_0012C0DL_00AD00; -#else -static const char spot00_room_0Set_0012C0DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00AD00; -#endif - -#define dspot00_room_0Set_0012C0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00B520[] = dspot00_room_0Set_0012C0DL_00B520; -#else -static const char spot00_room_0Set_0012C0DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00B520; -#endif - -#define dspot00_room_0Set_0012C0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00B8B0[] = dspot00_room_0Set_0012C0DL_00B8B0; -#else -static const char spot00_room_0Set_0012C0DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00B8B0; -#endif - -#define dspot00_room_0Set_0012C0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00BD20[] = dspot00_room_0Set_0012C0DL_00BD20; -#else -static const char spot00_room_0Set_0012C0DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00BD20; -#endif - -#define dspot00_room_0Set_0012C0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00CEB8[] = dspot00_room_0Set_0012C0DL_00CEB8; -#else -static const char spot00_room_0Set_0012C0DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00CEB8; -#endif - -#define dspot00_room_0Set_0012C0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00D980[] = dspot00_room_0Set_0012C0DL_00D980; -#else -static const char spot00_room_0Set_0012C0DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00D980; -#endif - -#define dspot00_room_0Set_0012C0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00DD70[] = dspot00_room_0Set_0012C0DL_00DD70; -#else -static const char spot00_room_0Set_0012C0DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00DD70; -#endif - -#define dspot00_room_0Set_0012C0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00DFA8[] = dspot00_room_0Set_0012C0DL_00DFA8; -#else -static const char spot00_room_0Set_0012C0DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00DFA8; -#endif - -#define dspot00_room_0Set_0012C0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00E7B0[] = dspot00_room_0Set_0012C0DL_00E7B0; -#else -static const char spot00_room_0Set_0012C0DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00E7B0; -#endif - -#define dspot00_room_0Set_0012C0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00F3F8[] = dspot00_room_0Set_0012C0DL_00F3F8; -#else -static const char spot00_room_0Set_0012C0DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00F3F8; -#endif - -#define dspot00_room_0Set_0012C0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00FB50[] = dspot00_room_0Set_0012C0DL_00FB50; -#else -static const char spot00_room_0Set_0012C0DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00FB50; -#endif - -#define dspot00_room_0Set_0012C0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00FE98[] = dspot00_room_0Set_0012C0DL_00FE98; -#else -static const char spot00_room_0Set_0012C0DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00FE98; -#endif - -#define dspot00_room_0Set_0012C0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_0127B8[] = dspot00_room_0Set_0012C0DL_0127B8; -#else -static const char spot00_room_0Set_0012C0DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_0127B8; -#endif - -#define dspot00_room_0Set_0012C0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_00E328[] = dspot00_room_0Set_0012C0DL_00E328; -#else -static const char spot00_room_0Set_0012C0DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_00E328; -#endif - -#define dspot00_room_0Set_0012C0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_0112B8[] = dspot00_room_0Set_0012C0DL_0112B8; -#else -static const char spot00_room_0Set_0012C0DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_0112B8; -#endif - -#define dspot00_room_0Set_0012C0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0012C0DL_0121D0[] = dspot00_room_0Set_0012C0DL_0121D0; -#else -static const char spot00_room_0Set_0012C0DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_0012C0DL_0121D0; -#endif - -#define dspot00_room_0Set_001360DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_013250[] = dspot00_room_0Set_001360DL_013250; -#else -static const char spot00_room_0Set_001360DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_013250; -#endif - -#define dspot00_room_0Set_001360DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_0139A8[] = dspot00_room_0Set_001360DL_0139A8; -#else -static const char spot00_room_0Set_001360DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_0139A8; -#endif - -#define dspot00_room_0Set_001360DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_0143C8[] = dspot00_room_0Set_001360DL_0143C8; -#else -static const char spot00_room_0Set_001360DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_0143C8; -#endif - -#define dspot00_room_0Set_001360DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_015100[] = dspot00_room_0Set_001360DL_015100; -#else -static const char spot00_room_0Set_001360DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_015100; -#endif - -#define dspot00_room_0Set_001360DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_014E28[] = dspot00_room_0Set_001360DL_014E28; -#else -static const char spot00_room_0Set_001360DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_014E28; -#endif - -#define dspot00_room_0Set_001360DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_008448[] = dspot00_room_0Set_001360DL_008448; -#else -static const char spot00_room_0Set_001360DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_008448; -#endif - -#define dspot00_room_0Set_001360DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_012C38[] = dspot00_room_0Set_001360DL_012C38; -#else -static const char spot00_room_0Set_001360DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_012C38; -#endif - -#define dspot00_room_0Set_001360DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_012E18[] = dspot00_room_0Set_001360DL_012E18; -#else -static const char spot00_room_0Set_001360DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_012E18; -#endif - -#define dspot00_room_0Set_001360DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_002790[] = dspot00_room_0Set_001360DL_002790; -#else -static const char spot00_room_0Set_001360DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_002790; -#endif - -#define dspot00_room_0Set_001360DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_003338[] = dspot00_room_0Set_001360DL_003338; -#else -static const char spot00_room_0Set_001360DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_003338; -#endif - -#define dspot00_room_0Set_001360DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_003ED0[] = dspot00_room_0Set_001360DL_003ED0; -#else -static const char spot00_room_0Set_001360DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_003ED0; -#endif - -#define dspot00_room_0Set_001360DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_005030[] = dspot00_room_0Set_001360DL_005030; -#else -static const char spot00_room_0Set_001360DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_005030; -#endif - -#define dspot00_room_0Set_001360DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_005850[] = dspot00_room_0Set_001360DL_005850; -#else -static const char spot00_room_0Set_001360DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_005850; -#endif - -#define dspot00_room_0Set_001360DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_005BC0[] = dspot00_room_0Set_001360DL_005BC0; -#else -static const char spot00_room_0Set_001360DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_005BC0; -#endif - -#define dspot00_room_0Set_001360DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_005E78[] = dspot00_room_0Set_001360DL_005E78; -#else -static const char spot00_room_0Set_001360DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_005E78; -#endif - -#define dspot00_room_0Set_001360DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_0067C8[] = dspot00_room_0Set_001360DL_0067C8; -#else -static const char spot00_room_0Set_001360DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_0067C8; -#endif - -#define dspot00_room_0Set_001360DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_006ED0[] = dspot00_room_0Set_001360DL_006ED0; -#else -static const char spot00_room_0Set_001360DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_006ED0; -#endif - -#define dspot00_room_0Set_001360DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_007230[] = dspot00_room_0Set_001360DL_007230; -#else -static const char spot00_room_0Set_001360DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_007230; -#endif - -#define dspot00_room_0Set_001360DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_008ED8[] = dspot00_room_0Set_001360DL_008ED8; -#else -static const char spot00_room_0Set_001360DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_008ED8; -#endif - -#define dspot00_room_0Set_001360DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_0093A0[] = dspot00_room_0Set_001360DL_0093A0; -#else -static const char spot00_room_0Set_001360DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_0093A0; -#endif - -#define dspot00_room_0Set_001360DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_009D10[] = dspot00_room_0Set_001360DL_009D10; -#else -static const char spot00_room_0Set_001360DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_009D10; -#endif - -#define dspot00_room_0Set_001360DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00AD00[] = dspot00_room_0Set_001360DL_00AD00; -#else -static const char spot00_room_0Set_001360DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00AD00; -#endif - -#define dspot00_room_0Set_001360DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00B520[] = dspot00_room_0Set_001360DL_00B520; -#else -static const char spot00_room_0Set_001360DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00B520; -#endif - -#define dspot00_room_0Set_001360DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00B8B0[] = dspot00_room_0Set_001360DL_00B8B0; -#else -static const char spot00_room_0Set_001360DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00B8B0; -#endif - -#define dspot00_room_0Set_001360DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00BD20[] = dspot00_room_0Set_001360DL_00BD20; -#else -static const char spot00_room_0Set_001360DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00BD20; -#endif - -#define dspot00_room_0Set_001360DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00CEB8[] = dspot00_room_0Set_001360DL_00CEB8; -#else -static const char spot00_room_0Set_001360DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00CEB8; -#endif - -#define dspot00_room_0Set_001360DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00D980[] = dspot00_room_0Set_001360DL_00D980; -#else -static const char spot00_room_0Set_001360DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00D980; -#endif - -#define dspot00_room_0Set_001360DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00DD70[] = dspot00_room_0Set_001360DL_00DD70; -#else -static const char spot00_room_0Set_001360DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00DD70; -#endif - -#define dspot00_room_0Set_001360DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00DFA8[] = dspot00_room_0Set_001360DL_00DFA8; -#else -static const char spot00_room_0Set_001360DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00DFA8; -#endif - -#define dspot00_room_0Set_001360DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00E7B0[] = dspot00_room_0Set_001360DL_00E7B0; -#else -static const char spot00_room_0Set_001360DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00E7B0; -#endif - -#define dspot00_room_0Set_001360DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00F3F8[] = dspot00_room_0Set_001360DL_00F3F8; -#else -static const char spot00_room_0Set_001360DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00F3F8; -#endif - -#define dspot00_room_0Set_001360DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00FB50[] = dspot00_room_0Set_001360DL_00FB50; -#else -static const char spot00_room_0Set_001360DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00FB50; -#endif - -#define dspot00_room_0Set_001360DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00FE98[] = dspot00_room_0Set_001360DL_00FE98; -#else -static const char spot00_room_0Set_001360DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00FE98; -#endif - -#define dspot00_room_0Set_001360DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_0127B8[] = dspot00_room_0Set_001360DL_0127B8; -#else -static const char spot00_room_0Set_001360DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_0127B8; -#endif - -#define dspot00_room_0Set_001360DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_00E328[] = dspot00_room_0Set_001360DL_00E328; -#else -static const char spot00_room_0Set_001360DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_00E328; -#endif - -#define dspot00_room_0Set_001360DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_0112B8[] = dspot00_room_0Set_001360DL_0112B8; -#else -static const char spot00_room_0Set_001360DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_0112B8; -#endif - -#define dspot00_room_0Set_001360DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001360DL_0121D0[] = dspot00_room_0Set_001360DL_0121D0; -#else -static const char spot00_room_0Set_001360DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_001360DL_0121D0; -#endif - -#define dspot00_room_0Set_001570DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_013250[] = dspot00_room_0Set_001570DL_013250; -#else -static const char spot00_room_0Set_001570DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_013250; -#endif - -#define dspot00_room_0Set_001570DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_0139A8[] = dspot00_room_0Set_001570DL_0139A8; -#else -static const char spot00_room_0Set_001570DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_0139A8; -#endif - -#define dspot00_room_0Set_001570DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_0143C8[] = dspot00_room_0Set_001570DL_0143C8; -#else -static const char spot00_room_0Set_001570DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_0143C8; -#endif - -#define dspot00_room_0Set_001570DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_015100[] = dspot00_room_0Set_001570DL_015100; -#else -static const char spot00_room_0Set_001570DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_015100; -#endif - -#define dspot00_room_0Set_001570DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_014E28[] = dspot00_room_0Set_001570DL_014E28; -#else -static const char spot00_room_0Set_001570DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_014E28; -#endif - -#define dspot00_room_0Set_001570DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_008448[] = dspot00_room_0Set_001570DL_008448; -#else -static const char spot00_room_0Set_001570DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_008448; -#endif - -#define dspot00_room_0Set_001570DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_012C38[] = dspot00_room_0Set_001570DL_012C38; -#else -static const char spot00_room_0Set_001570DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_012C38; -#endif - -#define dspot00_room_0Set_001570DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_012E18[] = dspot00_room_0Set_001570DL_012E18; -#else -static const char spot00_room_0Set_001570DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_012E18; -#endif - -#define dspot00_room_0Set_001570DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_002790[] = dspot00_room_0Set_001570DL_002790; -#else -static const char spot00_room_0Set_001570DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_002790; -#endif - -#define dspot00_room_0Set_001570DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_003338[] = dspot00_room_0Set_001570DL_003338; -#else -static const char spot00_room_0Set_001570DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_003338; -#endif - -#define dspot00_room_0Set_001570DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_003ED0[] = dspot00_room_0Set_001570DL_003ED0; -#else -static const char spot00_room_0Set_001570DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_003ED0; -#endif - -#define dspot00_room_0Set_001570DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_005030[] = dspot00_room_0Set_001570DL_005030; -#else -static const char spot00_room_0Set_001570DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_005030; -#endif - -#define dspot00_room_0Set_001570DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_005850[] = dspot00_room_0Set_001570DL_005850; -#else -static const char spot00_room_0Set_001570DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_005850; -#endif - -#define dspot00_room_0Set_001570DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_005BC0[] = dspot00_room_0Set_001570DL_005BC0; -#else -static const char spot00_room_0Set_001570DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_005BC0; -#endif - -#define dspot00_room_0Set_001570DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_005E78[] = dspot00_room_0Set_001570DL_005E78; -#else -static const char spot00_room_0Set_001570DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_005E78; -#endif - -#define dspot00_room_0Set_001570DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_0067C8[] = dspot00_room_0Set_001570DL_0067C8; -#else -static const char spot00_room_0Set_001570DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_0067C8; -#endif - -#define dspot00_room_0Set_001570DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_006ED0[] = dspot00_room_0Set_001570DL_006ED0; -#else -static const char spot00_room_0Set_001570DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_006ED0; -#endif - -#define dspot00_room_0Set_001570DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_007230[] = dspot00_room_0Set_001570DL_007230; -#else -static const char spot00_room_0Set_001570DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_007230; -#endif - -#define dspot00_room_0Set_001570DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_008ED8[] = dspot00_room_0Set_001570DL_008ED8; -#else -static const char spot00_room_0Set_001570DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_008ED8; -#endif - -#define dspot00_room_0Set_001570DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_0093A0[] = dspot00_room_0Set_001570DL_0093A0; -#else -static const char spot00_room_0Set_001570DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_0093A0; -#endif - -#define dspot00_room_0Set_001570DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_009D10[] = dspot00_room_0Set_001570DL_009D10; -#else -static const char spot00_room_0Set_001570DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_009D10; -#endif - -#define dspot00_room_0Set_001570DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00AD00[] = dspot00_room_0Set_001570DL_00AD00; -#else -static const char spot00_room_0Set_001570DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00AD00; -#endif - -#define dspot00_room_0Set_001570DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00B520[] = dspot00_room_0Set_001570DL_00B520; -#else -static const char spot00_room_0Set_001570DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00B520; -#endif - -#define dspot00_room_0Set_001570DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00B8B0[] = dspot00_room_0Set_001570DL_00B8B0; -#else -static const char spot00_room_0Set_001570DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00B8B0; -#endif - -#define dspot00_room_0Set_001570DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00BD20[] = dspot00_room_0Set_001570DL_00BD20; -#else -static const char spot00_room_0Set_001570DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00BD20; -#endif - -#define dspot00_room_0Set_001570DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00CEB8[] = dspot00_room_0Set_001570DL_00CEB8; -#else -static const char spot00_room_0Set_001570DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00CEB8; -#endif - -#define dspot00_room_0Set_001570DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00D980[] = dspot00_room_0Set_001570DL_00D980; -#else -static const char spot00_room_0Set_001570DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00D980; -#endif - -#define dspot00_room_0Set_001570DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00DD70[] = dspot00_room_0Set_001570DL_00DD70; -#else -static const char spot00_room_0Set_001570DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00DD70; -#endif - -#define dspot00_room_0Set_001570DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00DFA8[] = dspot00_room_0Set_001570DL_00DFA8; -#else -static const char spot00_room_0Set_001570DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00DFA8; -#endif - -#define dspot00_room_0Set_001570DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00E7B0[] = dspot00_room_0Set_001570DL_00E7B0; -#else -static const char spot00_room_0Set_001570DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00E7B0; -#endif - -#define dspot00_room_0Set_001570DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00F3F8[] = dspot00_room_0Set_001570DL_00F3F8; -#else -static const char spot00_room_0Set_001570DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00F3F8; -#endif - -#define dspot00_room_0Set_001570DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00FB50[] = dspot00_room_0Set_001570DL_00FB50; -#else -static const char spot00_room_0Set_001570DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00FB50; -#endif - -#define dspot00_room_0Set_001570DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00FE98[] = dspot00_room_0Set_001570DL_00FE98; -#else -static const char spot00_room_0Set_001570DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00FE98; -#endif - -#define dspot00_room_0Set_001570DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_0127B8[] = dspot00_room_0Set_001570DL_0127B8; -#else -static const char spot00_room_0Set_001570DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_0127B8; -#endif - -#define dspot00_room_0Set_001570DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_00E328[] = dspot00_room_0Set_001570DL_00E328; -#else -static const char spot00_room_0Set_001570DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_00E328; -#endif - -#define dspot00_room_0Set_001570DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_0112B8[] = dspot00_room_0Set_001570DL_0112B8; -#else -static const char spot00_room_0Set_001570DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_0112B8; -#endif - -#define dspot00_room_0Set_001570DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001570DL_0121D0[] = dspot00_room_0Set_001570DL_0121D0; -#else -static const char spot00_room_0Set_001570DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_001570DL_0121D0; -#endif - -#define dspot00_room_0Set_0018D0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_013250[] = dspot00_room_0Set_0018D0DL_013250; -#else -static const char spot00_room_0Set_0018D0DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_013250; -#endif - -#define dspot00_room_0Set_0018D0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_0139A8[] = dspot00_room_0Set_0018D0DL_0139A8; -#else -static const char spot00_room_0Set_0018D0DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_0139A8; -#endif - -#define dspot00_room_0Set_0018D0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_0143C8[] = dspot00_room_0Set_0018D0DL_0143C8; -#else -static const char spot00_room_0Set_0018D0DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_0143C8; -#endif - -#define dspot00_room_0Set_0018D0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_015100[] = dspot00_room_0Set_0018D0DL_015100; -#else -static const char spot00_room_0Set_0018D0DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_015100; -#endif - -#define dspot00_room_0Set_0018D0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_014E28[] = dspot00_room_0Set_0018D0DL_014E28; -#else -static const char spot00_room_0Set_0018D0DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_014E28; -#endif - -#define dspot00_room_0Set_0018D0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_008448[] = dspot00_room_0Set_0018D0DL_008448; -#else -static const char spot00_room_0Set_0018D0DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_008448; -#endif - -#define dspot00_room_0Set_0018D0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_012C38[] = dspot00_room_0Set_0018D0DL_012C38; -#else -static const char spot00_room_0Set_0018D0DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_012C38; -#endif - -#define dspot00_room_0Set_0018D0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_012E18[] = dspot00_room_0Set_0018D0DL_012E18; -#else -static const char spot00_room_0Set_0018D0DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_012E18; -#endif - -#define dspot00_room_0Set_0018D0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_002790[] = dspot00_room_0Set_0018D0DL_002790; -#else -static const char spot00_room_0Set_0018D0DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_002790; -#endif - -#define dspot00_room_0Set_0018D0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_003338[] = dspot00_room_0Set_0018D0DL_003338; -#else -static const char spot00_room_0Set_0018D0DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_003338; -#endif - -#define dspot00_room_0Set_0018D0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_003ED0[] = dspot00_room_0Set_0018D0DL_003ED0; -#else -static const char spot00_room_0Set_0018D0DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_003ED0; -#endif - -#define dspot00_room_0Set_0018D0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_005030[] = dspot00_room_0Set_0018D0DL_005030; -#else -static const char spot00_room_0Set_0018D0DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_005030; -#endif - -#define dspot00_room_0Set_0018D0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_005850[] = dspot00_room_0Set_0018D0DL_005850; -#else -static const char spot00_room_0Set_0018D0DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_005850; -#endif - -#define dspot00_room_0Set_0018D0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_005BC0[] = dspot00_room_0Set_0018D0DL_005BC0; -#else -static const char spot00_room_0Set_0018D0DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_005BC0; -#endif - -#define dspot00_room_0Set_0018D0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_005E78[] = dspot00_room_0Set_0018D0DL_005E78; -#else -static const char spot00_room_0Set_0018D0DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_005E78; -#endif - -#define dspot00_room_0Set_0018D0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_0067C8[] = dspot00_room_0Set_0018D0DL_0067C8; -#else -static const char spot00_room_0Set_0018D0DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_0067C8; -#endif - -#define dspot00_room_0Set_0018D0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_006ED0[] = dspot00_room_0Set_0018D0DL_006ED0; -#else -static const char spot00_room_0Set_0018D0DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_006ED0; -#endif - -#define dspot00_room_0Set_0018D0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_007230[] = dspot00_room_0Set_0018D0DL_007230; -#else -static const char spot00_room_0Set_0018D0DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_007230; -#endif - -#define dspot00_room_0Set_0018D0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_008ED8[] = dspot00_room_0Set_0018D0DL_008ED8; -#else -static const char spot00_room_0Set_0018D0DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_008ED8; -#endif - -#define dspot00_room_0Set_0018D0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_0093A0[] = dspot00_room_0Set_0018D0DL_0093A0; -#else -static const char spot00_room_0Set_0018D0DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_0093A0; -#endif - -#define dspot00_room_0Set_0018D0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_009D10[] = dspot00_room_0Set_0018D0DL_009D10; -#else -static const char spot00_room_0Set_0018D0DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_009D10; -#endif - -#define dspot00_room_0Set_0018D0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00AD00[] = dspot00_room_0Set_0018D0DL_00AD00; -#else -static const char spot00_room_0Set_0018D0DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00AD00; -#endif - -#define dspot00_room_0Set_0018D0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00B520[] = dspot00_room_0Set_0018D0DL_00B520; -#else -static const char spot00_room_0Set_0018D0DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00B520; -#endif - -#define dspot00_room_0Set_0018D0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00B8B0[] = dspot00_room_0Set_0018D0DL_00B8B0; -#else -static const char spot00_room_0Set_0018D0DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00B8B0; -#endif - -#define dspot00_room_0Set_0018D0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00BD20[] = dspot00_room_0Set_0018D0DL_00BD20; -#else -static const char spot00_room_0Set_0018D0DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00BD20; -#endif - -#define dspot00_room_0Set_0018D0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00CEB8[] = dspot00_room_0Set_0018D0DL_00CEB8; -#else -static const char spot00_room_0Set_0018D0DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00CEB8; -#endif - -#define dspot00_room_0Set_0018D0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00D980[] = dspot00_room_0Set_0018D0DL_00D980; -#else -static const char spot00_room_0Set_0018D0DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00D980; -#endif - -#define dspot00_room_0Set_0018D0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00DD70[] = dspot00_room_0Set_0018D0DL_00DD70; -#else -static const char spot00_room_0Set_0018D0DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00DD70; -#endif - -#define dspot00_room_0Set_0018D0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00DFA8[] = dspot00_room_0Set_0018D0DL_00DFA8; -#else -static const char spot00_room_0Set_0018D0DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00DFA8; -#endif - -#define dspot00_room_0Set_0018D0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00E7B0[] = dspot00_room_0Set_0018D0DL_00E7B0; -#else -static const char spot00_room_0Set_0018D0DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00E7B0; -#endif - -#define dspot00_room_0Set_0018D0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00F3F8[] = dspot00_room_0Set_0018D0DL_00F3F8; -#else -static const char spot00_room_0Set_0018D0DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00F3F8; -#endif - -#define dspot00_room_0Set_0018D0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00FB50[] = dspot00_room_0Set_0018D0DL_00FB50; -#else -static const char spot00_room_0Set_0018D0DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00FB50; -#endif - -#define dspot00_room_0Set_0018D0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00FE98[] = dspot00_room_0Set_0018D0DL_00FE98; -#else -static const char spot00_room_0Set_0018D0DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00FE98; -#endif - -#define dspot00_room_0Set_0018D0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_0127B8[] = dspot00_room_0Set_0018D0DL_0127B8; -#else -static const char spot00_room_0Set_0018D0DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_0127B8; -#endif - -#define dspot00_room_0Set_0018D0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_00E328[] = dspot00_room_0Set_0018D0DL_00E328; -#else -static const char spot00_room_0Set_0018D0DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_00E328; -#endif - -#define dspot00_room_0Set_0018D0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_0112B8[] = dspot00_room_0Set_0018D0DL_0112B8; -#else -static const char spot00_room_0Set_0018D0DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_0112B8; -#endif - -#define dspot00_room_0Set_0018D0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_0018D0DL_0121D0[] = dspot00_room_0Set_0018D0DL_0121D0; -#else -static const char spot00_room_0Set_0018D0DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_0018D0DL_0121D0; -#endif - -#define dspot00_room_0Set_001920DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_013250[] = dspot00_room_0Set_001920DL_013250; -#else -static const char spot00_room_0Set_001920DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_013250; -#endif - -#define dspot00_room_0Set_001920DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_0139A8[] = dspot00_room_0Set_001920DL_0139A8; -#else -static const char spot00_room_0Set_001920DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_0139A8; -#endif - -#define dspot00_room_0Set_001920DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_0143C8[] = dspot00_room_0Set_001920DL_0143C8; -#else -static const char spot00_room_0Set_001920DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_0143C8; -#endif - -#define dspot00_room_0Set_001920DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_015100[] = dspot00_room_0Set_001920DL_015100; -#else -static const char spot00_room_0Set_001920DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_015100; -#endif - -#define dspot00_room_0Set_001920DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_014E28[] = dspot00_room_0Set_001920DL_014E28; -#else -static const char spot00_room_0Set_001920DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_014E28; -#endif - -#define dspot00_room_0Set_001920DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_008448[] = dspot00_room_0Set_001920DL_008448; -#else -static const char spot00_room_0Set_001920DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_008448; -#endif - -#define dspot00_room_0Set_001920DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_012C38[] = dspot00_room_0Set_001920DL_012C38; -#else -static const char spot00_room_0Set_001920DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_012C38; -#endif - -#define dspot00_room_0Set_001920DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_012E18[] = dspot00_room_0Set_001920DL_012E18; -#else -static const char spot00_room_0Set_001920DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_012E18; -#endif - -#define dspot00_room_0Set_001920DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_002790[] = dspot00_room_0Set_001920DL_002790; -#else -static const char spot00_room_0Set_001920DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_002790; -#endif - -#define dspot00_room_0Set_001920DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_003338[] = dspot00_room_0Set_001920DL_003338; -#else -static const char spot00_room_0Set_001920DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_003338; -#endif - -#define dspot00_room_0Set_001920DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_003ED0[] = dspot00_room_0Set_001920DL_003ED0; -#else -static const char spot00_room_0Set_001920DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_003ED0; -#endif - -#define dspot00_room_0Set_001920DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_005030[] = dspot00_room_0Set_001920DL_005030; -#else -static const char spot00_room_0Set_001920DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_005030; -#endif - -#define dspot00_room_0Set_001920DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_005850[] = dspot00_room_0Set_001920DL_005850; -#else -static const char spot00_room_0Set_001920DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_005850; -#endif - -#define dspot00_room_0Set_001920DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_005BC0[] = dspot00_room_0Set_001920DL_005BC0; -#else -static const char spot00_room_0Set_001920DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_005BC0; -#endif - -#define dspot00_room_0Set_001920DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_005E78[] = dspot00_room_0Set_001920DL_005E78; -#else -static const char spot00_room_0Set_001920DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_005E78; -#endif - -#define dspot00_room_0Set_001920DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_0067C8[] = dspot00_room_0Set_001920DL_0067C8; -#else -static const char spot00_room_0Set_001920DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_0067C8; -#endif - -#define dspot00_room_0Set_001920DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_006ED0[] = dspot00_room_0Set_001920DL_006ED0; -#else -static const char spot00_room_0Set_001920DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_006ED0; -#endif - -#define dspot00_room_0Set_001920DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_007230[] = dspot00_room_0Set_001920DL_007230; -#else -static const char spot00_room_0Set_001920DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_007230; -#endif - -#define dspot00_room_0Set_001920DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_008ED8[] = dspot00_room_0Set_001920DL_008ED8; -#else -static const char spot00_room_0Set_001920DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_008ED8; -#endif - -#define dspot00_room_0Set_001920DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_0093A0[] = dspot00_room_0Set_001920DL_0093A0; -#else -static const char spot00_room_0Set_001920DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_0093A0; -#endif - -#define dspot00_room_0Set_001920DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_009D10[] = dspot00_room_0Set_001920DL_009D10; -#else -static const char spot00_room_0Set_001920DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_009D10; -#endif - -#define dspot00_room_0Set_001920DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00AD00[] = dspot00_room_0Set_001920DL_00AD00; -#else -static const char spot00_room_0Set_001920DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00AD00; -#endif - -#define dspot00_room_0Set_001920DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00B520[] = dspot00_room_0Set_001920DL_00B520; -#else -static const char spot00_room_0Set_001920DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00B520; -#endif - -#define dspot00_room_0Set_001920DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00B8B0[] = dspot00_room_0Set_001920DL_00B8B0; -#else -static const char spot00_room_0Set_001920DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00B8B0; -#endif - -#define dspot00_room_0Set_001920DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00BD20[] = dspot00_room_0Set_001920DL_00BD20; -#else -static const char spot00_room_0Set_001920DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00BD20; -#endif - -#define dspot00_room_0Set_001920DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00CEB8[] = dspot00_room_0Set_001920DL_00CEB8; -#else -static const char spot00_room_0Set_001920DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00CEB8; -#endif - -#define dspot00_room_0Set_001920DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00D980[] = dspot00_room_0Set_001920DL_00D980; -#else -static const char spot00_room_0Set_001920DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00D980; -#endif - -#define dspot00_room_0Set_001920DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00DD70[] = dspot00_room_0Set_001920DL_00DD70; -#else -static const char spot00_room_0Set_001920DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00DD70; -#endif - -#define dspot00_room_0Set_001920DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00DFA8[] = dspot00_room_0Set_001920DL_00DFA8; -#else -static const char spot00_room_0Set_001920DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00DFA8; -#endif - -#define dspot00_room_0Set_001920DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00E7B0[] = dspot00_room_0Set_001920DL_00E7B0; -#else -static const char spot00_room_0Set_001920DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00E7B0; -#endif - -#define dspot00_room_0Set_001920DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00F3F8[] = dspot00_room_0Set_001920DL_00F3F8; -#else -static const char spot00_room_0Set_001920DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00F3F8; -#endif - -#define dspot00_room_0Set_001920DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00FB50[] = dspot00_room_0Set_001920DL_00FB50; -#else -static const char spot00_room_0Set_001920DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00FB50; -#endif - -#define dspot00_room_0Set_001920DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00FE98[] = dspot00_room_0Set_001920DL_00FE98; -#else -static const char spot00_room_0Set_001920DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00FE98; -#endif - -#define dspot00_room_0Set_001920DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_0127B8[] = dspot00_room_0Set_001920DL_0127B8; -#else -static const char spot00_room_0Set_001920DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_0127B8; -#endif - -#define dspot00_room_0Set_001920DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_00E328[] = dspot00_room_0Set_001920DL_00E328; -#else -static const char spot00_room_0Set_001920DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_00E328; -#endif - -#define dspot00_room_0Set_001920DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_0112B8[] = dspot00_room_0Set_001920DL_0112B8; -#else -static const char spot00_room_0Set_001920DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_0112B8; -#endif - -#define dspot00_room_0Set_001920DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001920DL_0121D0[] = dspot00_room_0Set_001920DL_0121D0; -#else -static const char spot00_room_0Set_001920DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_001920DL_0121D0; -#endif - -#define dspot00_room_0Set_001C80DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_013250[] = dspot00_room_0Set_001C80DL_013250; -#else -static const char spot00_room_0Set_001C80DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_013250; -#endif - -#define dspot00_room_0Set_001C80DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_0139A8[] = dspot00_room_0Set_001C80DL_0139A8; -#else -static const char spot00_room_0Set_001C80DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_0139A8; -#endif - -#define dspot00_room_0Set_001C80DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_0143C8[] = dspot00_room_0Set_001C80DL_0143C8; -#else -static const char spot00_room_0Set_001C80DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_0143C8; -#endif - -#define dspot00_room_0Set_001C80DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_015100[] = dspot00_room_0Set_001C80DL_015100; -#else -static const char spot00_room_0Set_001C80DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_015100; -#endif - -#define dspot00_room_0Set_001C80DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_014E28[] = dspot00_room_0Set_001C80DL_014E28; -#else -static const char spot00_room_0Set_001C80DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_014E28; -#endif - -#define dspot00_room_0Set_001C80DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_008448[] = dspot00_room_0Set_001C80DL_008448; -#else -static const char spot00_room_0Set_001C80DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_008448; -#endif - -#define dspot00_room_0Set_001C80DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_012C38[] = dspot00_room_0Set_001C80DL_012C38; -#else -static const char spot00_room_0Set_001C80DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_012C38; -#endif - -#define dspot00_room_0Set_001C80DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_012E18[] = dspot00_room_0Set_001C80DL_012E18; -#else -static const char spot00_room_0Set_001C80DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_012E18; -#endif - -#define dspot00_room_0Set_001C80DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_002790[] = dspot00_room_0Set_001C80DL_002790; -#else -static const char spot00_room_0Set_001C80DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_002790; -#endif - -#define dspot00_room_0Set_001C80DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_003338[] = dspot00_room_0Set_001C80DL_003338; -#else -static const char spot00_room_0Set_001C80DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_003338; -#endif - -#define dspot00_room_0Set_001C80DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_003ED0[] = dspot00_room_0Set_001C80DL_003ED0; -#else -static const char spot00_room_0Set_001C80DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_003ED0; -#endif - -#define dspot00_room_0Set_001C80DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_005030[] = dspot00_room_0Set_001C80DL_005030; -#else -static const char spot00_room_0Set_001C80DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_005030; -#endif - -#define dspot00_room_0Set_001C80DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_005850[] = dspot00_room_0Set_001C80DL_005850; -#else -static const char spot00_room_0Set_001C80DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_005850; -#endif - -#define dspot00_room_0Set_001C80DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_005BC0[] = dspot00_room_0Set_001C80DL_005BC0; -#else -static const char spot00_room_0Set_001C80DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_005BC0; -#endif - -#define dspot00_room_0Set_001C80DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_005E78[] = dspot00_room_0Set_001C80DL_005E78; -#else -static const char spot00_room_0Set_001C80DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_005E78; -#endif - -#define dspot00_room_0Set_001C80DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_0067C8[] = dspot00_room_0Set_001C80DL_0067C8; -#else -static const char spot00_room_0Set_001C80DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_0067C8; -#endif - -#define dspot00_room_0Set_001C80DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_006ED0[] = dspot00_room_0Set_001C80DL_006ED0; -#else -static const char spot00_room_0Set_001C80DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_006ED0; -#endif - -#define dspot00_room_0Set_001C80DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_007230[] = dspot00_room_0Set_001C80DL_007230; -#else -static const char spot00_room_0Set_001C80DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_007230; -#endif - -#define dspot00_room_0Set_001C80DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_008ED8[] = dspot00_room_0Set_001C80DL_008ED8; -#else -static const char spot00_room_0Set_001C80DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_008ED8; -#endif - -#define dspot00_room_0Set_001C80DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_0093A0[] = dspot00_room_0Set_001C80DL_0093A0; -#else -static const char spot00_room_0Set_001C80DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_0093A0; -#endif - -#define dspot00_room_0Set_001C80DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_009D10[] = dspot00_room_0Set_001C80DL_009D10; -#else -static const char spot00_room_0Set_001C80DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_009D10; -#endif - -#define dspot00_room_0Set_001C80DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00AD00[] = dspot00_room_0Set_001C80DL_00AD00; -#else -static const char spot00_room_0Set_001C80DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00AD00; -#endif - -#define dspot00_room_0Set_001C80DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00B520[] = dspot00_room_0Set_001C80DL_00B520; -#else -static const char spot00_room_0Set_001C80DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00B520; -#endif - -#define dspot00_room_0Set_001C80DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00B8B0[] = dspot00_room_0Set_001C80DL_00B8B0; -#else -static const char spot00_room_0Set_001C80DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00B8B0; -#endif - -#define dspot00_room_0Set_001C80DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00BD20[] = dspot00_room_0Set_001C80DL_00BD20; -#else -static const char spot00_room_0Set_001C80DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00BD20; -#endif - -#define dspot00_room_0Set_001C80DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00CEB8[] = dspot00_room_0Set_001C80DL_00CEB8; -#else -static const char spot00_room_0Set_001C80DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00CEB8; -#endif - -#define dspot00_room_0Set_001C80DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00D980[] = dspot00_room_0Set_001C80DL_00D980; -#else -static const char spot00_room_0Set_001C80DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00D980; -#endif - -#define dspot00_room_0Set_001C80DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00DD70[] = dspot00_room_0Set_001C80DL_00DD70; -#else -static const char spot00_room_0Set_001C80DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00DD70; -#endif - -#define dspot00_room_0Set_001C80DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00DFA8[] = dspot00_room_0Set_001C80DL_00DFA8; -#else -static const char spot00_room_0Set_001C80DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00DFA8; -#endif - -#define dspot00_room_0Set_001C80DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00E7B0[] = dspot00_room_0Set_001C80DL_00E7B0; -#else -static const char spot00_room_0Set_001C80DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00E7B0; -#endif - -#define dspot00_room_0Set_001C80DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00F3F8[] = dspot00_room_0Set_001C80DL_00F3F8; -#else -static const char spot00_room_0Set_001C80DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00F3F8; -#endif - -#define dspot00_room_0Set_001C80DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00FB50[] = dspot00_room_0Set_001C80DL_00FB50; -#else -static const char spot00_room_0Set_001C80DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00FB50; -#endif - -#define dspot00_room_0Set_001C80DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00FE98[] = dspot00_room_0Set_001C80DL_00FE98; -#else -static const char spot00_room_0Set_001C80DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00FE98; -#endif - -#define dspot00_room_0Set_001C80DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_0127B8[] = dspot00_room_0Set_001C80DL_0127B8; -#else -static const char spot00_room_0Set_001C80DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_0127B8; -#endif - -#define dspot00_room_0Set_001C80DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_00E328[] = dspot00_room_0Set_001C80DL_00E328; -#else -static const char spot00_room_0Set_001C80DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_00E328; -#endif - -#define dspot00_room_0Set_001C80DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_0112B8[] = dspot00_room_0Set_001C80DL_0112B8; -#else -static const char spot00_room_0Set_001C80DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_0112B8; -#endif - -#define dspot00_room_0Set_001C80DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001C80DL_0121D0[] = dspot00_room_0Set_001C80DL_0121D0; -#else -static const char spot00_room_0Set_001C80DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_001C80DL_0121D0; -#endif - -#define dspot00_room_0Set_001CF0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_013250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_013250[] = dspot00_room_0Set_001CF0DL_013250; -#else -static const char spot00_room_0Set_001CF0DL_013250[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_013250; -#endif - -#define dspot00_room_0Set_001CF0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0139A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_0139A8[] = dspot00_room_0Set_001CF0DL_0139A8; -#else -static const char spot00_room_0Set_001CF0DL_0139A8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_0139A8; -#endif - -#define dspot00_room_0Set_001CF0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0143C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_0143C8[] = dspot00_room_0Set_001CF0DL_0143C8; -#else -static const char spot00_room_0Set_001CF0DL_0143C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_0143C8; -#endif - -#define dspot00_room_0Set_001CF0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_015100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_015100[] = dspot00_room_0Set_001CF0DL_015100; -#else -static const char spot00_room_0Set_001CF0DL_015100[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_015100; -#endif - -#define dspot00_room_0Set_001CF0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_014E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_014E28[] = dspot00_room_0Set_001CF0DL_014E28; -#else -static const char spot00_room_0Set_001CF0DL_014E28[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_014E28; -#endif - -#define dspot00_room_0Set_001CF0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_008448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_008448[] = dspot00_room_0Set_001CF0DL_008448; -#else -static const char spot00_room_0Set_001CF0DL_008448[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_008448; -#endif - -#define dspot00_room_0Set_001CF0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_012C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_012C38[] = dspot00_room_0Set_001CF0DL_012C38; -#else -static const char spot00_room_0Set_001CF0DL_012C38[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_012C38; -#endif - -#define dspot00_room_0Set_001CF0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_012E18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_012E18[] = dspot00_room_0Set_001CF0DL_012E18; -#else -static const char spot00_room_0Set_001CF0DL_012E18[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_012E18; -#endif - -#define dspot00_room_0Set_001CF0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_002790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_002790[] = dspot00_room_0Set_001CF0DL_002790; -#else -static const char spot00_room_0Set_001CF0DL_002790[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_002790; -#endif - -#define dspot00_room_0Set_001CF0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_003338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_003338[] = dspot00_room_0Set_001CF0DL_003338; -#else -static const char spot00_room_0Set_001CF0DL_003338[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_003338; -#endif - -#define dspot00_room_0Set_001CF0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_003ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_003ED0[] = dspot00_room_0Set_001CF0DL_003ED0; -#else -static const char spot00_room_0Set_001CF0DL_003ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_003ED0; -#endif - -#define dspot00_room_0Set_001CF0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_005030[] = dspot00_room_0Set_001CF0DL_005030; -#else -static const char spot00_room_0Set_001CF0DL_005030[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_005030; -#endif - -#define dspot00_room_0Set_001CF0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_005850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_005850[] = dspot00_room_0Set_001CF0DL_005850; -#else -static const char spot00_room_0Set_001CF0DL_005850[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_005850; -#endif - -#define dspot00_room_0Set_001CF0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_005BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_005BC0[] = dspot00_room_0Set_001CF0DL_005BC0; -#else -static const char spot00_room_0Set_001CF0DL_005BC0[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_005BC0; -#endif - -#define dspot00_room_0Set_001CF0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_005E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_005E78[] = dspot00_room_0Set_001CF0DL_005E78; -#else -static const char spot00_room_0Set_001CF0DL_005E78[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_005E78; -#endif - -#define dspot00_room_0Set_001CF0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0067C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_0067C8[] = dspot00_room_0Set_001CF0DL_0067C8; -#else -static const char spot00_room_0Set_001CF0DL_0067C8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_0067C8; -#endif - -#define dspot00_room_0Set_001CF0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_006ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_006ED0[] = dspot00_room_0Set_001CF0DL_006ED0; -#else -static const char spot00_room_0Set_001CF0DL_006ED0[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_006ED0; -#endif - -#define dspot00_room_0Set_001CF0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_007230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_007230[] = dspot00_room_0Set_001CF0DL_007230; -#else -static const char spot00_room_0Set_001CF0DL_007230[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_007230; -#endif - -#define dspot00_room_0Set_001CF0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_008ED8[] = dspot00_room_0Set_001CF0DL_008ED8; -#else -static const char spot00_room_0Set_001CF0DL_008ED8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_008ED8; -#endif - -#define dspot00_room_0Set_001CF0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0093A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_0093A0[] = dspot00_room_0Set_001CF0DL_0093A0; -#else -static const char spot00_room_0Set_001CF0DL_0093A0[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_0093A0; -#endif - -#define dspot00_room_0Set_001CF0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_009D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_009D10[] = dspot00_room_0Set_001CF0DL_009D10; -#else -static const char spot00_room_0Set_001CF0DL_009D10[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_009D10; -#endif - -#define dspot00_room_0Set_001CF0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00AD00[] = dspot00_room_0Set_001CF0DL_00AD00; -#else -static const char spot00_room_0Set_001CF0DL_00AD00[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00AD00; -#endif - -#define dspot00_room_0Set_001CF0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00B520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00B520[] = dspot00_room_0Set_001CF0DL_00B520; -#else -static const char spot00_room_0Set_001CF0DL_00B520[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00B520; -#endif - -#define dspot00_room_0Set_001CF0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00B8B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00B8B0[] = dspot00_room_0Set_001CF0DL_00B8B0; -#else -static const char spot00_room_0Set_001CF0DL_00B8B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00B8B0; -#endif - -#define dspot00_room_0Set_001CF0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00BD20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00BD20[] = dspot00_room_0Set_001CF0DL_00BD20; -#else -static const char spot00_room_0Set_001CF0DL_00BD20[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00BD20; -#endif - -#define dspot00_room_0Set_001CF0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00CEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00CEB8[] = dspot00_room_0Set_001CF0DL_00CEB8; -#else -static const char spot00_room_0Set_001CF0DL_00CEB8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00CEB8; -#endif - -#define dspot00_room_0Set_001CF0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00D980" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00D980[] = dspot00_room_0Set_001CF0DL_00D980; -#else -static const char spot00_room_0Set_001CF0DL_00D980[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00D980; -#endif - -#define dspot00_room_0Set_001CF0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00DD70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00DD70[] = dspot00_room_0Set_001CF0DL_00DD70; -#else -static const char spot00_room_0Set_001CF0DL_00DD70[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00DD70; -#endif - -#define dspot00_room_0Set_001CF0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00DFA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00DFA8[] = dspot00_room_0Set_001CF0DL_00DFA8; -#else -static const char spot00_room_0Set_001CF0DL_00DFA8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00DFA8; -#endif - -#define dspot00_room_0Set_001CF0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00E7B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00E7B0[] = dspot00_room_0Set_001CF0DL_00E7B0; -#else -static const char spot00_room_0Set_001CF0DL_00E7B0[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00E7B0; -#endif - -#define dspot00_room_0Set_001CF0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00F3F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00F3F8[] = dspot00_room_0Set_001CF0DL_00F3F8; -#else -static const char spot00_room_0Set_001CF0DL_00F3F8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00F3F8; -#endif - -#define dspot00_room_0Set_001CF0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00FB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00FB50[] = dspot00_room_0Set_001CF0DL_00FB50; -#else -static const char spot00_room_0Set_001CF0DL_00FB50[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00FB50; -#endif - -#define dspot00_room_0Set_001CF0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00FE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00FE98[] = dspot00_room_0Set_001CF0DL_00FE98; -#else -static const char spot00_room_0Set_001CF0DL_00FE98[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00FE98; -#endif - -#define dspot00_room_0Set_001CF0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0127B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_0127B8[] = dspot00_room_0Set_001CF0DL_0127B8; -#else -static const char spot00_room_0Set_001CF0DL_0127B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_0127B8; -#endif - -#define dspot00_room_0Set_001CF0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00E328" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_00E328[] = dspot00_room_0Set_001CF0DL_00E328; -#else -static const char spot00_room_0Set_001CF0DL_00E328[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_00E328; -#endif - -#define dspot00_room_0Set_001CF0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0112B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_0112B8[] = dspot00_room_0Set_001CF0DL_0112B8; -#else -static const char spot00_room_0Set_001CF0DL_0112B8[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_0112B8; -#endif - -#define dspot00_room_0Set_001CF0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0121D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_room_0Set_001CF0DL_0121D0[] = dspot00_room_0Set_001CF0DL_0121D0; -#else -static const char spot00_room_0Set_001CF0DL_0121D0[] __attribute__((aligned (2))) = dspot00_room_0Set_001CF0DL_0121D0; -#endif - +#include "align_asset_macro.h" + +#define dspot00_room_0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0DL_013250[] = dspot00_room_0DL_013250; + +#define dspot00_room_0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0DL_0139A8[] = dspot00_room_0DL_0139A8; + +#define dspot00_room_0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0DL_0143C8[] = dspot00_room_0DL_0143C8; + +#define dspot00_room_0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0DL_015100[] = dspot00_room_0DL_015100; + +#define dspot00_room_0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0DL_014E28[] = dspot00_room_0DL_014E28; + +#define dspot00_room_0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0DL_008448[] = dspot00_room_0DL_008448; + +#define dspot00_room_0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0DL_012C38[] = dspot00_room_0DL_012C38; + +#define dspot00_room_0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0DL_012E18[] = dspot00_room_0DL_012E18; + +#define dspot00_room_0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0DL_002790[] = dspot00_room_0DL_002790; + +#define dspot00_room_0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0DL_003338[] = dspot00_room_0DL_003338; + +#define dspot00_room_0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0DL_003ED0[] = dspot00_room_0DL_003ED0; + +#define dspot00_room_0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0DL_005030[] = dspot00_room_0DL_005030; + +#define dspot00_room_0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0DL_005850[] = dspot00_room_0DL_005850; + +#define dspot00_room_0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0DL_005BC0[] = dspot00_room_0DL_005BC0; + +#define dspot00_room_0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0DL_005E78[] = dspot00_room_0DL_005E78; + +#define dspot00_room_0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0DL_0067C8[] = dspot00_room_0DL_0067C8; + +#define dspot00_room_0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0DL_006ED0[] = dspot00_room_0DL_006ED0; + +#define dspot00_room_0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0DL_007230[] = dspot00_room_0DL_007230; + +#define dspot00_room_0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0DL_008ED8[] = dspot00_room_0DL_008ED8; + +#define dspot00_room_0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0DL_0093A0[] = dspot00_room_0DL_0093A0; + +#define dspot00_room_0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0DL_009D10[] = dspot00_room_0DL_009D10; + +#define dspot00_room_0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0DL_00AD00[] = dspot00_room_0DL_00AD00; + +#define dspot00_room_0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0DL_00B520[] = dspot00_room_0DL_00B520; + +#define dspot00_room_0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0DL_00B8B0[] = dspot00_room_0DL_00B8B0; + +#define dspot00_room_0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0DL_00BD20[] = dspot00_room_0DL_00BD20; + +#define dspot00_room_0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0DL_00CEB8[] = dspot00_room_0DL_00CEB8; + +#define dspot00_room_0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0DL_00D980[] = dspot00_room_0DL_00D980; + +#define dspot00_room_0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0DL_00DD70[] = dspot00_room_0DL_00DD70; + +#define dspot00_room_0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0DL_00DFA8[] = dspot00_room_0DL_00DFA8; + +#define dspot00_room_0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0DL_00E7B0[] = dspot00_room_0DL_00E7B0; + +#define dspot00_room_0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0DL_00F3F8[] = dspot00_room_0DL_00F3F8; + +#define dspot00_room_0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0DL_00FB50[] = dspot00_room_0DL_00FB50; + +#define dspot00_room_0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0DL_00FE98[] = dspot00_room_0DL_00FE98; + +#define dspot00_room_0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0DL_0127B8[] = dspot00_room_0DL_0127B8; + +#define dspot00_room_0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0DL_00E328[] = dspot00_room_0DL_00E328; + +#define dspot00_room_0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0DL_0112B8[] = dspot00_room_0DL_0112B8; + +#define dspot00_room_0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0DL_0121D0[] = dspot00_room_0DL_0121D0; + +#define dspot00_room_0DL_012B20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0DL_012B20" +static const ALIGN_ASSET(2) char spot00_room_0DL_012B20[] = dspot00_room_0DL_012B20; + +#define dspot00_room_0Set_000C50DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_013250[] = dspot00_room_0Set_000C50DL_013250; + +#define dspot00_room_0Set_000C50DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_0139A8[] = dspot00_room_0Set_000C50DL_0139A8; + +#define dspot00_room_0Set_000C50DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_0143C8[] = dspot00_room_0Set_000C50DL_0143C8; + +#define dspot00_room_0Set_000C50DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_015100[] = dspot00_room_0Set_000C50DL_015100; + +#define dspot00_room_0Set_000C50DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_014E28[] = dspot00_room_0Set_000C50DL_014E28; + +#define dspot00_room_0Set_000C50DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_008448[] = dspot00_room_0Set_000C50DL_008448; + +#define dspot00_room_0Set_000C50DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_012C38[] = dspot00_room_0Set_000C50DL_012C38; + +#define dspot00_room_0Set_000C50DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_012E18[] = dspot00_room_0Set_000C50DL_012E18; + +#define dspot00_room_0Set_000C50DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_002790[] = dspot00_room_0Set_000C50DL_002790; + +#define dspot00_room_0Set_000C50DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_003338[] = dspot00_room_0Set_000C50DL_003338; + +#define dspot00_room_0Set_000C50DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_003ED0[] = dspot00_room_0Set_000C50DL_003ED0; + +#define dspot00_room_0Set_000C50DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_005030[] = dspot00_room_0Set_000C50DL_005030; + +#define dspot00_room_0Set_000C50DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_005850[] = dspot00_room_0Set_000C50DL_005850; + +#define dspot00_room_0Set_000C50DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_005BC0[] = dspot00_room_0Set_000C50DL_005BC0; + +#define dspot00_room_0Set_000C50DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_005E78[] = dspot00_room_0Set_000C50DL_005E78; + +#define dspot00_room_0Set_000C50DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_0067C8[] = dspot00_room_0Set_000C50DL_0067C8; + +#define dspot00_room_0Set_000C50DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_006ED0[] = dspot00_room_0Set_000C50DL_006ED0; + +#define dspot00_room_0Set_000C50DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_007230[] = dspot00_room_0Set_000C50DL_007230; + +#define dspot00_room_0Set_000C50DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_008ED8[] = dspot00_room_0Set_000C50DL_008ED8; + +#define dspot00_room_0Set_000C50DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_0093A0[] = dspot00_room_0Set_000C50DL_0093A0; + +#define dspot00_room_0Set_000C50DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_009D10[] = dspot00_room_0Set_000C50DL_009D10; + +#define dspot00_room_0Set_000C50DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00AD00[] = dspot00_room_0Set_000C50DL_00AD00; + +#define dspot00_room_0Set_000C50DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00B520[] = dspot00_room_0Set_000C50DL_00B520; + +#define dspot00_room_0Set_000C50DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00B8B0[] = dspot00_room_0Set_000C50DL_00B8B0; + +#define dspot00_room_0Set_000C50DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00BD20[] = dspot00_room_0Set_000C50DL_00BD20; + +#define dspot00_room_0Set_000C50DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00CEB8[] = dspot00_room_0Set_000C50DL_00CEB8; + +#define dspot00_room_0Set_000C50DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00D980[] = dspot00_room_0Set_000C50DL_00D980; + +#define dspot00_room_0Set_000C50DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00DD70[] = dspot00_room_0Set_000C50DL_00DD70; + +#define dspot00_room_0Set_000C50DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00DFA8[] = dspot00_room_0Set_000C50DL_00DFA8; + +#define dspot00_room_0Set_000C50DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00E7B0[] = dspot00_room_0Set_000C50DL_00E7B0; + +#define dspot00_room_0Set_000C50DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00F3F8[] = dspot00_room_0Set_000C50DL_00F3F8; + +#define dspot00_room_0Set_000C50DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00FB50[] = dspot00_room_0Set_000C50DL_00FB50; + +#define dspot00_room_0Set_000C50DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00FE98[] = dspot00_room_0Set_000C50DL_00FE98; + +#define dspot00_room_0Set_000C50DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_0127B8[] = dspot00_room_0Set_000C50DL_0127B8; + +#define dspot00_room_0Set_000C50DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_00E328[] = dspot00_room_0Set_000C50DL_00E328; + +#define dspot00_room_0Set_000C50DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_0112B8[] = dspot00_room_0Set_000C50DL_0112B8; + +#define dspot00_room_0Set_000C50DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000C50DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000C50DL_0121D0[] = dspot00_room_0Set_000C50DL_0121D0; + +#define dspot00_room_0Set_000770DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_013250[] = dspot00_room_0Set_000770DL_013250; + +#define dspot00_room_0Set_000770DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_0139A8[] = dspot00_room_0Set_000770DL_0139A8; + +#define dspot00_room_0Set_000770DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_0143C8[] = dspot00_room_0Set_000770DL_0143C8; + +#define dspot00_room_0Set_000770DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_015100[] = dspot00_room_0Set_000770DL_015100; + +#define dspot00_room_0Set_000770DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_014E28[] = dspot00_room_0Set_000770DL_014E28; + +#define dspot00_room_0Set_000770DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_008448[] = dspot00_room_0Set_000770DL_008448; + +#define dspot00_room_0Set_000770DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_012C38[] = dspot00_room_0Set_000770DL_012C38; + +#define dspot00_room_0Set_000770DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_012E18[] = dspot00_room_0Set_000770DL_012E18; + +#define dspot00_room_0Set_000770DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_002790[] = dspot00_room_0Set_000770DL_002790; + +#define dspot00_room_0Set_000770DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_003338[] = dspot00_room_0Set_000770DL_003338; + +#define dspot00_room_0Set_000770DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_003ED0[] = dspot00_room_0Set_000770DL_003ED0; + +#define dspot00_room_0Set_000770DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_005030[] = dspot00_room_0Set_000770DL_005030; + +#define dspot00_room_0Set_000770DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_005850[] = dspot00_room_0Set_000770DL_005850; + +#define dspot00_room_0Set_000770DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_005BC0[] = dspot00_room_0Set_000770DL_005BC0; + +#define dspot00_room_0Set_000770DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_005E78[] = dspot00_room_0Set_000770DL_005E78; + +#define dspot00_room_0Set_000770DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_0067C8[] = dspot00_room_0Set_000770DL_0067C8; + +#define dspot00_room_0Set_000770DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_006ED0[] = dspot00_room_0Set_000770DL_006ED0; + +#define dspot00_room_0Set_000770DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_007230[] = dspot00_room_0Set_000770DL_007230; + +#define dspot00_room_0Set_000770DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_008ED8[] = dspot00_room_0Set_000770DL_008ED8; + +#define dspot00_room_0Set_000770DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_0093A0[] = dspot00_room_0Set_000770DL_0093A0; + +#define dspot00_room_0Set_000770DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_009D10[] = dspot00_room_0Set_000770DL_009D10; + +#define dspot00_room_0Set_000770DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00AD00[] = dspot00_room_0Set_000770DL_00AD00; + +#define dspot00_room_0Set_000770DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00B520[] = dspot00_room_0Set_000770DL_00B520; + +#define dspot00_room_0Set_000770DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00B8B0[] = dspot00_room_0Set_000770DL_00B8B0; + +#define dspot00_room_0Set_000770DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00BD20[] = dspot00_room_0Set_000770DL_00BD20; + +#define dspot00_room_0Set_000770DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00CEB8[] = dspot00_room_0Set_000770DL_00CEB8; + +#define dspot00_room_0Set_000770DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00D980[] = dspot00_room_0Set_000770DL_00D980; + +#define dspot00_room_0Set_000770DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00DD70[] = dspot00_room_0Set_000770DL_00DD70; + +#define dspot00_room_0Set_000770DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00DFA8[] = dspot00_room_0Set_000770DL_00DFA8; + +#define dspot00_room_0Set_000770DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00E7B0[] = dspot00_room_0Set_000770DL_00E7B0; + +#define dspot00_room_0Set_000770DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00F3F8[] = dspot00_room_0Set_000770DL_00F3F8; + +#define dspot00_room_0Set_000770DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00FB50[] = dspot00_room_0Set_000770DL_00FB50; + +#define dspot00_room_0Set_000770DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00FE98[] = dspot00_room_0Set_000770DL_00FE98; + +#define dspot00_room_0Set_000770DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_0127B8[] = dspot00_room_0Set_000770DL_0127B8; + +#define dspot00_room_0Set_000770DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_00E328[] = dspot00_room_0Set_000770DL_00E328; + +#define dspot00_room_0Set_000770DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_0112B8[] = dspot00_room_0Set_000770DL_0112B8; + +#define dspot00_room_0Set_000770DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_000770DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_000770DL_0121D0[] = dspot00_room_0Set_000770DL_0121D0; + +#define dspot00_room_0Set_001120DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_013250[] = dspot00_room_0Set_001120DL_013250; + +#define dspot00_room_0Set_001120DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_0139A8[] = dspot00_room_0Set_001120DL_0139A8; + +#define dspot00_room_0Set_001120DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_0143C8[] = dspot00_room_0Set_001120DL_0143C8; + +#define dspot00_room_0Set_001120DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_015100[] = dspot00_room_0Set_001120DL_015100; + +#define dspot00_room_0Set_001120DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_014E28[] = dspot00_room_0Set_001120DL_014E28; + +#define dspot00_room_0Set_001120DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_008448[] = dspot00_room_0Set_001120DL_008448; + +#define dspot00_room_0Set_001120DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_012C38[] = dspot00_room_0Set_001120DL_012C38; + +#define dspot00_room_0Set_001120DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_012E18[] = dspot00_room_0Set_001120DL_012E18; + +#define dspot00_room_0Set_001120DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_002790[] = dspot00_room_0Set_001120DL_002790; + +#define dspot00_room_0Set_001120DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_003338[] = dspot00_room_0Set_001120DL_003338; + +#define dspot00_room_0Set_001120DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_003ED0[] = dspot00_room_0Set_001120DL_003ED0; + +#define dspot00_room_0Set_001120DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_005030[] = dspot00_room_0Set_001120DL_005030; + +#define dspot00_room_0Set_001120DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_005850[] = dspot00_room_0Set_001120DL_005850; + +#define dspot00_room_0Set_001120DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_005BC0[] = dspot00_room_0Set_001120DL_005BC0; + +#define dspot00_room_0Set_001120DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_005E78[] = dspot00_room_0Set_001120DL_005E78; + +#define dspot00_room_0Set_001120DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_0067C8[] = dspot00_room_0Set_001120DL_0067C8; + +#define dspot00_room_0Set_001120DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_006ED0[] = dspot00_room_0Set_001120DL_006ED0; + +#define dspot00_room_0Set_001120DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_007230[] = dspot00_room_0Set_001120DL_007230; + +#define dspot00_room_0Set_001120DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_008ED8[] = dspot00_room_0Set_001120DL_008ED8; + +#define dspot00_room_0Set_001120DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_0093A0[] = dspot00_room_0Set_001120DL_0093A0; + +#define dspot00_room_0Set_001120DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_009D10[] = dspot00_room_0Set_001120DL_009D10; + +#define dspot00_room_0Set_001120DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00AD00[] = dspot00_room_0Set_001120DL_00AD00; + +#define dspot00_room_0Set_001120DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00B520[] = dspot00_room_0Set_001120DL_00B520; + +#define dspot00_room_0Set_001120DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00B8B0[] = dspot00_room_0Set_001120DL_00B8B0; + +#define dspot00_room_0Set_001120DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00BD20[] = dspot00_room_0Set_001120DL_00BD20; + +#define dspot00_room_0Set_001120DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00CEB8[] = dspot00_room_0Set_001120DL_00CEB8; + +#define dspot00_room_0Set_001120DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00D980[] = dspot00_room_0Set_001120DL_00D980; + +#define dspot00_room_0Set_001120DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00DD70[] = dspot00_room_0Set_001120DL_00DD70; + +#define dspot00_room_0Set_001120DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00DFA8[] = dspot00_room_0Set_001120DL_00DFA8; + +#define dspot00_room_0Set_001120DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00E7B0[] = dspot00_room_0Set_001120DL_00E7B0; + +#define dspot00_room_0Set_001120DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00F3F8[] = dspot00_room_0Set_001120DL_00F3F8; + +#define dspot00_room_0Set_001120DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00FB50[] = dspot00_room_0Set_001120DL_00FB50; + +#define dspot00_room_0Set_001120DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00FE98[] = dspot00_room_0Set_001120DL_00FE98; + +#define dspot00_room_0Set_001120DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_0127B8[] = dspot00_room_0Set_001120DL_0127B8; + +#define dspot00_room_0Set_001120DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_00E328[] = dspot00_room_0Set_001120DL_00E328; + +#define dspot00_room_0Set_001120DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_0112B8[] = dspot00_room_0Set_001120DL_0112B8; + +#define dspot00_room_0Set_001120DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001120DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001120DL_0121D0[] = dspot00_room_0Set_001120DL_0121D0; + +#define dspot00_room_0Set_0011F0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_013250[] = dspot00_room_0Set_0011F0DL_013250; + +#define dspot00_room_0Set_0011F0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_0139A8[] = dspot00_room_0Set_0011F0DL_0139A8; + +#define dspot00_room_0Set_0011F0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_0143C8[] = dspot00_room_0Set_0011F0DL_0143C8; + +#define dspot00_room_0Set_0011F0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_015100[] = dspot00_room_0Set_0011F0DL_015100; + +#define dspot00_room_0Set_0011F0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_014E28[] = dspot00_room_0Set_0011F0DL_014E28; + +#define dspot00_room_0Set_0011F0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_008448[] = dspot00_room_0Set_0011F0DL_008448; + +#define dspot00_room_0Set_0011F0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_012C38[] = dspot00_room_0Set_0011F0DL_012C38; + +#define dspot00_room_0Set_0011F0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_012E18[] = dspot00_room_0Set_0011F0DL_012E18; + +#define dspot00_room_0Set_0011F0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_002790[] = dspot00_room_0Set_0011F0DL_002790; + +#define dspot00_room_0Set_0011F0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_003338[] = dspot00_room_0Set_0011F0DL_003338; + +#define dspot00_room_0Set_0011F0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_003ED0[] = dspot00_room_0Set_0011F0DL_003ED0; + +#define dspot00_room_0Set_0011F0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_005030[] = dspot00_room_0Set_0011F0DL_005030; + +#define dspot00_room_0Set_0011F0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_005850[] = dspot00_room_0Set_0011F0DL_005850; + +#define dspot00_room_0Set_0011F0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_005BC0[] = dspot00_room_0Set_0011F0DL_005BC0; + +#define dspot00_room_0Set_0011F0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_005E78[] = dspot00_room_0Set_0011F0DL_005E78; + +#define dspot00_room_0Set_0011F0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_0067C8[] = dspot00_room_0Set_0011F0DL_0067C8; + +#define dspot00_room_0Set_0011F0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_006ED0[] = dspot00_room_0Set_0011F0DL_006ED0; + +#define dspot00_room_0Set_0011F0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_007230[] = dspot00_room_0Set_0011F0DL_007230; + +#define dspot00_room_0Set_0011F0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_008ED8[] = dspot00_room_0Set_0011F0DL_008ED8; + +#define dspot00_room_0Set_0011F0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_0093A0[] = dspot00_room_0Set_0011F0DL_0093A0; + +#define dspot00_room_0Set_0011F0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_009D10[] = dspot00_room_0Set_0011F0DL_009D10; + +#define dspot00_room_0Set_0011F0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00AD00[] = dspot00_room_0Set_0011F0DL_00AD00; + +#define dspot00_room_0Set_0011F0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00B520[] = dspot00_room_0Set_0011F0DL_00B520; + +#define dspot00_room_0Set_0011F0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00B8B0[] = dspot00_room_0Set_0011F0DL_00B8B0; + +#define dspot00_room_0Set_0011F0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00BD20[] = dspot00_room_0Set_0011F0DL_00BD20; + +#define dspot00_room_0Set_0011F0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00CEB8[] = dspot00_room_0Set_0011F0DL_00CEB8; + +#define dspot00_room_0Set_0011F0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00D980[] = dspot00_room_0Set_0011F0DL_00D980; + +#define dspot00_room_0Set_0011F0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00DD70[] = dspot00_room_0Set_0011F0DL_00DD70; + +#define dspot00_room_0Set_0011F0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00DFA8[] = dspot00_room_0Set_0011F0DL_00DFA8; + +#define dspot00_room_0Set_0011F0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00E7B0[] = dspot00_room_0Set_0011F0DL_00E7B0; + +#define dspot00_room_0Set_0011F0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00F3F8[] = dspot00_room_0Set_0011F0DL_00F3F8; + +#define dspot00_room_0Set_0011F0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00FB50[] = dspot00_room_0Set_0011F0DL_00FB50; + +#define dspot00_room_0Set_0011F0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00FE98[] = dspot00_room_0Set_0011F0DL_00FE98; + +#define dspot00_room_0Set_0011F0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_0127B8[] = dspot00_room_0Set_0011F0DL_0127B8; + +#define dspot00_room_0Set_0011F0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_00E328[] = dspot00_room_0Set_0011F0DL_00E328; + +#define dspot00_room_0Set_0011F0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_0112B8[] = dspot00_room_0Set_0011F0DL_0112B8; + +#define dspot00_room_0Set_0011F0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0011F0DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0011F0DL_0121D0[] = dspot00_room_0Set_0011F0DL_0121D0; + +#define dspot00_room_0Set_0012C0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_013250[] = dspot00_room_0Set_0012C0DL_013250; + +#define dspot00_room_0Set_0012C0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_0139A8[] = dspot00_room_0Set_0012C0DL_0139A8; + +#define dspot00_room_0Set_0012C0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_0143C8[] = dspot00_room_0Set_0012C0DL_0143C8; + +#define dspot00_room_0Set_0012C0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_015100[] = dspot00_room_0Set_0012C0DL_015100; + +#define dspot00_room_0Set_0012C0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_014E28[] = dspot00_room_0Set_0012C0DL_014E28; + +#define dspot00_room_0Set_0012C0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_008448[] = dspot00_room_0Set_0012C0DL_008448; + +#define dspot00_room_0Set_0012C0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_012C38[] = dspot00_room_0Set_0012C0DL_012C38; + +#define dspot00_room_0Set_0012C0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_012E18[] = dspot00_room_0Set_0012C0DL_012E18; + +#define dspot00_room_0Set_0012C0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_002790[] = dspot00_room_0Set_0012C0DL_002790; + +#define dspot00_room_0Set_0012C0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_003338[] = dspot00_room_0Set_0012C0DL_003338; + +#define dspot00_room_0Set_0012C0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_003ED0[] = dspot00_room_0Set_0012C0DL_003ED0; + +#define dspot00_room_0Set_0012C0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_005030[] = dspot00_room_0Set_0012C0DL_005030; + +#define dspot00_room_0Set_0012C0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_005850[] = dspot00_room_0Set_0012C0DL_005850; + +#define dspot00_room_0Set_0012C0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_005BC0[] = dspot00_room_0Set_0012C0DL_005BC0; + +#define dspot00_room_0Set_0012C0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_005E78[] = dspot00_room_0Set_0012C0DL_005E78; + +#define dspot00_room_0Set_0012C0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_0067C8[] = dspot00_room_0Set_0012C0DL_0067C8; + +#define dspot00_room_0Set_0012C0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_006ED0[] = dspot00_room_0Set_0012C0DL_006ED0; + +#define dspot00_room_0Set_0012C0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_007230[] = dspot00_room_0Set_0012C0DL_007230; + +#define dspot00_room_0Set_0012C0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_008ED8[] = dspot00_room_0Set_0012C0DL_008ED8; + +#define dspot00_room_0Set_0012C0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_0093A0[] = dspot00_room_0Set_0012C0DL_0093A0; + +#define dspot00_room_0Set_0012C0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_009D10[] = dspot00_room_0Set_0012C0DL_009D10; + +#define dspot00_room_0Set_0012C0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00AD00[] = dspot00_room_0Set_0012C0DL_00AD00; + +#define dspot00_room_0Set_0012C0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00B520[] = dspot00_room_0Set_0012C0DL_00B520; + +#define dspot00_room_0Set_0012C0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00B8B0[] = dspot00_room_0Set_0012C0DL_00B8B0; + +#define dspot00_room_0Set_0012C0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00BD20[] = dspot00_room_0Set_0012C0DL_00BD20; + +#define dspot00_room_0Set_0012C0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00CEB8[] = dspot00_room_0Set_0012C0DL_00CEB8; + +#define dspot00_room_0Set_0012C0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00D980[] = dspot00_room_0Set_0012C0DL_00D980; + +#define dspot00_room_0Set_0012C0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00DD70[] = dspot00_room_0Set_0012C0DL_00DD70; + +#define dspot00_room_0Set_0012C0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00DFA8[] = dspot00_room_0Set_0012C0DL_00DFA8; + +#define dspot00_room_0Set_0012C0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00E7B0[] = dspot00_room_0Set_0012C0DL_00E7B0; + +#define dspot00_room_0Set_0012C0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00F3F8[] = dspot00_room_0Set_0012C0DL_00F3F8; + +#define dspot00_room_0Set_0012C0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00FB50[] = dspot00_room_0Set_0012C0DL_00FB50; + +#define dspot00_room_0Set_0012C0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00FE98[] = dspot00_room_0Set_0012C0DL_00FE98; + +#define dspot00_room_0Set_0012C0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_0127B8[] = dspot00_room_0Set_0012C0DL_0127B8; + +#define dspot00_room_0Set_0012C0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_00E328[] = dspot00_room_0Set_0012C0DL_00E328; + +#define dspot00_room_0Set_0012C0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_0112B8[] = dspot00_room_0Set_0012C0DL_0112B8; + +#define dspot00_room_0Set_0012C0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0012C0DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0012C0DL_0121D0[] = dspot00_room_0Set_0012C0DL_0121D0; + +#define dspot00_room_0Set_001360DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_013250[] = dspot00_room_0Set_001360DL_013250; + +#define dspot00_room_0Set_001360DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_0139A8[] = dspot00_room_0Set_001360DL_0139A8; + +#define dspot00_room_0Set_001360DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_0143C8[] = dspot00_room_0Set_001360DL_0143C8; + +#define dspot00_room_0Set_001360DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_015100[] = dspot00_room_0Set_001360DL_015100; + +#define dspot00_room_0Set_001360DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_014E28[] = dspot00_room_0Set_001360DL_014E28; + +#define dspot00_room_0Set_001360DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_008448[] = dspot00_room_0Set_001360DL_008448; + +#define dspot00_room_0Set_001360DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_012C38[] = dspot00_room_0Set_001360DL_012C38; + +#define dspot00_room_0Set_001360DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_012E18[] = dspot00_room_0Set_001360DL_012E18; + +#define dspot00_room_0Set_001360DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_002790[] = dspot00_room_0Set_001360DL_002790; + +#define dspot00_room_0Set_001360DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_003338[] = dspot00_room_0Set_001360DL_003338; + +#define dspot00_room_0Set_001360DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_003ED0[] = dspot00_room_0Set_001360DL_003ED0; + +#define dspot00_room_0Set_001360DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_005030[] = dspot00_room_0Set_001360DL_005030; + +#define dspot00_room_0Set_001360DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_005850[] = dspot00_room_0Set_001360DL_005850; + +#define dspot00_room_0Set_001360DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_005BC0[] = dspot00_room_0Set_001360DL_005BC0; + +#define dspot00_room_0Set_001360DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_005E78[] = dspot00_room_0Set_001360DL_005E78; + +#define dspot00_room_0Set_001360DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_0067C8[] = dspot00_room_0Set_001360DL_0067C8; + +#define dspot00_room_0Set_001360DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_006ED0[] = dspot00_room_0Set_001360DL_006ED0; + +#define dspot00_room_0Set_001360DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_007230[] = dspot00_room_0Set_001360DL_007230; + +#define dspot00_room_0Set_001360DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_008ED8[] = dspot00_room_0Set_001360DL_008ED8; + +#define dspot00_room_0Set_001360DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_0093A0[] = dspot00_room_0Set_001360DL_0093A0; + +#define dspot00_room_0Set_001360DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_009D10[] = dspot00_room_0Set_001360DL_009D10; + +#define dspot00_room_0Set_001360DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00AD00[] = dspot00_room_0Set_001360DL_00AD00; + +#define dspot00_room_0Set_001360DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00B520[] = dspot00_room_0Set_001360DL_00B520; + +#define dspot00_room_0Set_001360DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00B8B0[] = dspot00_room_0Set_001360DL_00B8B0; + +#define dspot00_room_0Set_001360DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00BD20[] = dspot00_room_0Set_001360DL_00BD20; + +#define dspot00_room_0Set_001360DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00CEB8[] = dspot00_room_0Set_001360DL_00CEB8; + +#define dspot00_room_0Set_001360DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00D980[] = dspot00_room_0Set_001360DL_00D980; + +#define dspot00_room_0Set_001360DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00DD70[] = dspot00_room_0Set_001360DL_00DD70; + +#define dspot00_room_0Set_001360DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00DFA8[] = dspot00_room_0Set_001360DL_00DFA8; + +#define dspot00_room_0Set_001360DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00E7B0[] = dspot00_room_0Set_001360DL_00E7B0; + +#define dspot00_room_0Set_001360DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00F3F8[] = dspot00_room_0Set_001360DL_00F3F8; + +#define dspot00_room_0Set_001360DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00FB50[] = dspot00_room_0Set_001360DL_00FB50; + +#define dspot00_room_0Set_001360DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00FE98[] = dspot00_room_0Set_001360DL_00FE98; + +#define dspot00_room_0Set_001360DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_0127B8[] = dspot00_room_0Set_001360DL_0127B8; + +#define dspot00_room_0Set_001360DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_00E328[] = dspot00_room_0Set_001360DL_00E328; + +#define dspot00_room_0Set_001360DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_0112B8[] = dspot00_room_0Set_001360DL_0112B8; + +#define dspot00_room_0Set_001360DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001360DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001360DL_0121D0[] = dspot00_room_0Set_001360DL_0121D0; + +#define dspot00_room_0Set_001570DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_013250[] = dspot00_room_0Set_001570DL_013250; + +#define dspot00_room_0Set_001570DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_0139A8[] = dspot00_room_0Set_001570DL_0139A8; + +#define dspot00_room_0Set_001570DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_0143C8[] = dspot00_room_0Set_001570DL_0143C8; + +#define dspot00_room_0Set_001570DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_015100[] = dspot00_room_0Set_001570DL_015100; + +#define dspot00_room_0Set_001570DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_014E28[] = dspot00_room_0Set_001570DL_014E28; + +#define dspot00_room_0Set_001570DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_008448[] = dspot00_room_0Set_001570DL_008448; + +#define dspot00_room_0Set_001570DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_012C38[] = dspot00_room_0Set_001570DL_012C38; + +#define dspot00_room_0Set_001570DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_012E18[] = dspot00_room_0Set_001570DL_012E18; + +#define dspot00_room_0Set_001570DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_002790[] = dspot00_room_0Set_001570DL_002790; + +#define dspot00_room_0Set_001570DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_003338[] = dspot00_room_0Set_001570DL_003338; + +#define dspot00_room_0Set_001570DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_003ED0[] = dspot00_room_0Set_001570DL_003ED0; + +#define dspot00_room_0Set_001570DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_005030[] = dspot00_room_0Set_001570DL_005030; + +#define dspot00_room_0Set_001570DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_005850[] = dspot00_room_0Set_001570DL_005850; + +#define dspot00_room_0Set_001570DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_005BC0[] = dspot00_room_0Set_001570DL_005BC0; + +#define dspot00_room_0Set_001570DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_005E78[] = dspot00_room_0Set_001570DL_005E78; + +#define dspot00_room_0Set_001570DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_0067C8[] = dspot00_room_0Set_001570DL_0067C8; + +#define dspot00_room_0Set_001570DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_006ED0[] = dspot00_room_0Set_001570DL_006ED0; + +#define dspot00_room_0Set_001570DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_007230[] = dspot00_room_0Set_001570DL_007230; + +#define dspot00_room_0Set_001570DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_008ED8[] = dspot00_room_0Set_001570DL_008ED8; + +#define dspot00_room_0Set_001570DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_0093A0[] = dspot00_room_0Set_001570DL_0093A0; + +#define dspot00_room_0Set_001570DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_009D10[] = dspot00_room_0Set_001570DL_009D10; + +#define dspot00_room_0Set_001570DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00AD00[] = dspot00_room_0Set_001570DL_00AD00; + +#define dspot00_room_0Set_001570DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00B520[] = dspot00_room_0Set_001570DL_00B520; + +#define dspot00_room_0Set_001570DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00B8B0[] = dspot00_room_0Set_001570DL_00B8B0; + +#define dspot00_room_0Set_001570DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00BD20[] = dspot00_room_0Set_001570DL_00BD20; + +#define dspot00_room_0Set_001570DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00CEB8[] = dspot00_room_0Set_001570DL_00CEB8; + +#define dspot00_room_0Set_001570DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00D980[] = dspot00_room_0Set_001570DL_00D980; + +#define dspot00_room_0Set_001570DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00DD70[] = dspot00_room_0Set_001570DL_00DD70; + +#define dspot00_room_0Set_001570DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00DFA8[] = dspot00_room_0Set_001570DL_00DFA8; + +#define dspot00_room_0Set_001570DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00E7B0[] = dspot00_room_0Set_001570DL_00E7B0; + +#define dspot00_room_0Set_001570DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00F3F8[] = dspot00_room_0Set_001570DL_00F3F8; + +#define dspot00_room_0Set_001570DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00FB50[] = dspot00_room_0Set_001570DL_00FB50; + +#define dspot00_room_0Set_001570DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00FE98[] = dspot00_room_0Set_001570DL_00FE98; + +#define dspot00_room_0Set_001570DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_0127B8[] = dspot00_room_0Set_001570DL_0127B8; + +#define dspot00_room_0Set_001570DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_00E328[] = dspot00_room_0Set_001570DL_00E328; + +#define dspot00_room_0Set_001570DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_0112B8[] = dspot00_room_0Set_001570DL_0112B8; + +#define dspot00_room_0Set_001570DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001570DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001570DL_0121D0[] = dspot00_room_0Set_001570DL_0121D0; + +#define dspot00_room_0Set_0018D0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_013250[] = dspot00_room_0Set_0018D0DL_013250; + +#define dspot00_room_0Set_0018D0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_0139A8[] = dspot00_room_0Set_0018D0DL_0139A8; + +#define dspot00_room_0Set_0018D0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_0143C8[] = dspot00_room_0Set_0018D0DL_0143C8; + +#define dspot00_room_0Set_0018D0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_015100[] = dspot00_room_0Set_0018D0DL_015100; + +#define dspot00_room_0Set_0018D0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_014E28[] = dspot00_room_0Set_0018D0DL_014E28; + +#define dspot00_room_0Set_0018D0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_008448[] = dspot00_room_0Set_0018D0DL_008448; + +#define dspot00_room_0Set_0018D0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_012C38[] = dspot00_room_0Set_0018D0DL_012C38; + +#define dspot00_room_0Set_0018D0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_012E18[] = dspot00_room_0Set_0018D0DL_012E18; + +#define dspot00_room_0Set_0018D0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_002790[] = dspot00_room_0Set_0018D0DL_002790; + +#define dspot00_room_0Set_0018D0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_003338[] = dspot00_room_0Set_0018D0DL_003338; + +#define dspot00_room_0Set_0018D0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_003ED0[] = dspot00_room_0Set_0018D0DL_003ED0; + +#define dspot00_room_0Set_0018D0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_005030[] = dspot00_room_0Set_0018D0DL_005030; + +#define dspot00_room_0Set_0018D0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_005850[] = dspot00_room_0Set_0018D0DL_005850; + +#define dspot00_room_0Set_0018D0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_005BC0[] = dspot00_room_0Set_0018D0DL_005BC0; + +#define dspot00_room_0Set_0018D0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_005E78[] = dspot00_room_0Set_0018D0DL_005E78; + +#define dspot00_room_0Set_0018D0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_0067C8[] = dspot00_room_0Set_0018D0DL_0067C8; + +#define dspot00_room_0Set_0018D0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_006ED0[] = dspot00_room_0Set_0018D0DL_006ED0; + +#define dspot00_room_0Set_0018D0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_007230[] = dspot00_room_0Set_0018D0DL_007230; + +#define dspot00_room_0Set_0018D0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_008ED8[] = dspot00_room_0Set_0018D0DL_008ED8; + +#define dspot00_room_0Set_0018D0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_0093A0[] = dspot00_room_0Set_0018D0DL_0093A0; + +#define dspot00_room_0Set_0018D0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_009D10[] = dspot00_room_0Set_0018D0DL_009D10; + +#define dspot00_room_0Set_0018D0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00AD00[] = dspot00_room_0Set_0018D0DL_00AD00; + +#define dspot00_room_0Set_0018D0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00B520[] = dspot00_room_0Set_0018D0DL_00B520; + +#define dspot00_room_0Set_0018D0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00B8B0[] = dspot00_room_0Set_0018D0DL_00B8B0; + +#define dspot00_room_0Set_0018D0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00BD20[] = dspot00_room_0Set_0018D0DL_00BD20; + +#define dspot00_room_0Set_0018D0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00CEB8[] = dspot00_room_0Set_0018D0DL_00CEB8; + +#define dspot00_room_0Set_0018D0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00D980[] = dspot00_room_0Set_0018D0DL_00D980; + +#define dspot00_room_0Set_0018D0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00DD70[] = dspot00_room_0Set_0018D0DL_00DD70; + +#define dspot00_room_0Set_0018D0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00DFA8[] = dspot00_room_0Set_0018D0DL_00DFA8; + +#define dspot00_room_0Set_0018D0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00E7B0[] = dspot00_room_0Set_0018D0DL_00E7B0; + +#define dspot00_room_0Set_0018D0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00F3F8[] = dspot00_room_0Set_0018D0DL_00F3F8; + +#define dspot00_room_0Set_0018D0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00FB50[] = dspot00_room_0Set_0018D0DL_00FB50; + +#define dspot00_room_0Set_0018D0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00FE98[] = dspot00_room_0Set_0018D0DL_00FE98; + +#define dspot00_room_0Set_0018D0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_0127B8[] = dspot00_room_0Set_0018D0DL_0127B8; + +#define dspot00_room_0Set_0018D0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_00E328[] = dspot00_room_0Set_0018D0DL_00E328; + +#define dspot00_room_0Set_0018D0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_0112B8[] = dspot00_room_0Set_0018D0DL_0112B8; + +#define dspot00_room_0Set_0018D0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_0018D0DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_0018D0DL_0121D0[] = dspot00_room_0Set_0018D0DL_0121D0; + +#define dspot00_room_0Set_001920DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_013250[] = dspot00_room_0Set_001920DL_013250; + +#define dspot00_room_0Set_001920DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_0139A8[] = dspot00_room_0Set_001920DL_0139A8; + +#define dspot00_room_0Set_001920DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_0143C8[] = dspot00_room_0Set_001920DL_0143C8; + +#define dspot00_room_0Set_001920DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_015100[] = dspot00_room_0Set_001920DL_015100; + +#define dspot00_room_0Set_001920DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_014E28[] = dspot00_room_0Set_001920DL_014E28; + +#define dspot00_room_0Set_001920DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_008448[] = dspot00_room_0Set_001920DL_008448; + +#define dspot00_room_0Set_001920DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_012C38[] = dspot00_room_0Set_001920DL_012C38; + +#define dspot00_room_0Set_001920DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_012E18[] = dspot00_room_0Set_001920DL_012E18; + +#define dspot00_room_0Set_001920DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_002790[] = dspot00_room_0Set_001920DL_002790; + +#define dspot00_room_0Set_001920DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_003338[] = dspot00_room_0Set_001920DL_003338; + +#define dspot00_room_0Set_001920DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_003ED0[] = dspot00_room_0Set_001920DL_003ED0; + +#define dspot00_room_0Set_001920DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_005030[] = dspot00_room_0Set_001920DL_005030; + +#define dspot00_room_0Set_001920DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_005850[] = dspot00_room_0Set_001920DL_005850; + +#define dspot00_room_0Set_001920DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_005BC0[] = dspot00_room_0Set_001920DL_005BC0; + +#define dspot00_room_0Set_001920DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_005E78[] = dspot00_room_0Set_001920DL_005E78; + +#define dspot00_room_0Set_001920DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_0067C8[] = dspot00_room_0Set_001920DL_0067C8; + +#define dspot00_room_0Set_001920DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_006ED0[] = dspot00_room_0Set_001920DL_006ED0; + +#define dspot00_room_0Set_001920DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_007230[] = dspot00_room_0Set_001920DL_007230; + +#define dspot00_room_0Set_001920DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_008ED8[] = dspot00_room_0Set_001920DL_008ED8; + +#define dspot00_room_0Set_001920DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_0093A0[] = dspot00_room_0Set_001920DL_0093A0; + +#define dspot00_room_0Set_001920DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_009D10[] = dspot00_room_0Set_001920DL_009D10; + +#define dspot00_room_0Set_001920DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00AD00[] = dspot00_room_0Set_001920DL_00AD00; + +#define dspot00_room_0Set_001920DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00B520[] = dspot00_room_0Set_001920DL_00B520; + +#define dspot00_room_0Set_001920DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00B8B0[] = dspot00_room_0Set_001920DL_00B8B0; + +#define dspot00_room_0Set_001920DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00BD20[] = dspot00_room_0Set_001920DL_00BD20; + +#define dspot00_room_0Set_001920DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00CEB8[] = dspot00_room_0Set_001920DL_00CEB8; + +#define dspot00_room_0Set_001920DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00D980[] = dspot00_room_0Set_001920DL_00D980; + +#define dspot00_room_0Set_001920DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00DD70[] = dspot00_room_0Set_001920DL_00DD70; + +#define dspot00_room_0Set_001920DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00DFA8[] = dspot00_room_0Set_001920DL_00DFA8; + +#define dspot00_room_0Set_001920DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00E7B0[] = dspot00_room_0Set_001920DL_00E7B0; + +#define dspot00_room_0Set_001920DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00F3F8[] = dspot00_room_0Set_001920DL_00F3F8; + +#define dspot00_room_0Set_001920DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00FB50[] = dspot00_room_0Set_001920DL_00FB50; + +#define dspot00_room_0Set_001920DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00FE98[] = dspot00_room_0Set_001920DL_00FE98; + +#define dspot00_room_0Set_001920DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_0127B8[] = dspot00_room_0Set_001920DL_0127B8; + +#define dspot00_room_0Set_001920DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_00E328[] = dspot00_room_0Set_001920DL_00E328; + +#define dspot00_room_0Set_001920DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_0112B8[] = dspot00_room_0Set_001920DL_0112B8; + +#define dspot00_room_0Set_001920DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001920DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001920DL_0121D0[] = dspot00_room_0Set_001920DL_0121D0; + +#define dspot00_room_0Set_001C80DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_013250[] = dspot00_room_0Set_001C80DL_013250; + +#define dspot00_room_0Set_001C80DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_0139A8[] = dspot00_room_0Set_001C80DL_0139A8; + +#define dspot00_room_0Set_001C80DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_0143C8[] = dspot00_room_0Set_001C80DL_0143C8; + +#define dspot00_room_0Set_001C80DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_015100[] = dspot00_room_0Set_001C80DL_015100; + +#define dspot00_room_0Set_001C80DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_014E28[] = dspot00_room_0Set_001C80DL_014E28; + +#define dspot00_room_0Set_001C80DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_008448[] = dspot00_room_0Set_001C80DL_008448; + +#define dspot00_room_0Set_001C80DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_012C38[] = dspot00_room_0Set_001C80DL_012C38; + +#define dspot00_room_0Set_001C80DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_012E18[] = dspot00_room_0Set_001C80DL_012E18; + +#define dspot00_room_0Set_001C80DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_002790[] = dspot00_room_0Set_001C80DL_002790; + +#define dspot00_room_0Set_001C80DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_003338[] = dspot00_room_0Set_001C80DL_003338; + +#define dspot00_room_0Set_001C80DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_003ED0[] = dspot00_room_0Set_001C80DL_003ED0; + +#define dspot00_room_0Set_001C80DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_005030[] = dspot00_room_0Set_001C80DL_005030; + +#define dspot00_room_0Set_001C80DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_005850[] = dspot00_room_0Set_001C80DL_005850; + +#define dspot00_room_0Set_001C80DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_005BC0[] = dspot00_room_0Set_001C80DL_005BC0; + +#define dspot00_room_0Set_001C80DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_005E78[] = dspot00_room_0Set_001C80DL_005E78; + +#define dspot00_room_0Set_001C80DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_0067C8[] = dspot00_room_0Set_001C80DL_0067C8; + +#define dspot00_room_0Set_001C80DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_006ED0[] = dspot00_room_0Set_001C80DL_006ED0; + +#define dspot00_room_0Set_001C80DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_007230[] = dspot00_room_0Set_001C80DL_007230; + +#define dspot00_room_0Set_001C80DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_008ED8[] = dspot00_room_0Set_001C80DL_008ED8; + +#define dspot00_room_0Set_001C80DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_0093A0[] = dspot00_room_0Set_001C80DL_0093A0; + +#define dspot00_room_0Set_001C80DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_009D10[] = dspot00_room_0Set_001C80DL_009D10; + +#define dspot00_room_0Set_001C80DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00AD00[] = dspot00_room_0Set_001C80DL_00AD00; + +#define dspot00_room_0Set_001C80DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00B520[] = dspot00_room_0Set_001C80DL_00B520; + +#define dspot00_room_0Set_001C80DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00B8B0[] = dspot00_room_0Set_001C80DL_00B8B0; + +#define dspot00_room_0Set_001C80DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00BD20[] = dspot00_room_0Set_001C80DL_00BD20; + +#define dspot00_room_0Set_001C80DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00CEB8[] = dspot00_room_0Set_001C80DL_00CEB8; + +#define dspot00_room_0Set_001C80DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00D980[] = dspot00_room_0Set_001C80DL_00D980; + +#define dspot00_room_0Set_001C80DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00DD70[] = dspot00_room_0Set_001C80DL_00DD70; + +#define dspot00_room_0Set_001C80DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00DFA8[] = dspot00_room_0Set_001C80DL_00DFA8; + +#define dspot00_room_0Set_001C80DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00E7B0[] = dspot00_room_0Set_001C80DL_00E7B0; + +#define dspot00_room_0Set_001C80DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00F3F8[] = dspot00_room_0Set_001C80DL_00F3F8; + +#define dspot00_room_0Set_001C80DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00FB50[] = dspot00_room_0Set_001C80DL_00FB50; + +#define dspot00_room_0Set_001C80DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00FE98[] = dspot00_room_0Set_001C80DL_00FE98; + +#define dspot00_room_0Set_001C80DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_0127B8[] = dspot00_room_0Set_001C80DL_0127B8; + +#define dspot00_room_0Set_001C80DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_00E328[] = dspot00_room_0Set_001C80DL_00E328; + +#define dspot00_room_0Set_001C80DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_0112B8[] = dspot00_room_0Set_001C80DL_0112B8; + +#define dspot00_room_0Set_001C80DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001C80DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001C80DL_0121D0[] = dspot00_room_0Set_001C80DL_0121D0; + +#define dspot00_room_0Set_001CF0DL_013250 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_013250" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_013250[] = dspot00_room_0Set_001CF0DL_013250; + +#define dspot00_room_0Set_001CF0DL_0139A8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0139A8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_0139A8[] = dspot00_room_0Set_001CF0DL_0139A8; + +#define dspot00_room_0Set_001CF0DL_0143C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0143C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_0143C8[] = dspot00_room_0Set_001CF0DL_0143C8; + +#define dspot00_room_0Set_001CF0DL_015100 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_015100" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_015100[] = dspot00_room_0Set_001CF0DL_015100; + +#define dspot00_room_0Set_001CF0DL_014E28 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_014E28" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_014E28[] = dspot00_room_0Set_001CF0DL_014E28; + +#define dspot00_room_0Set_001CF0DL_008448 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_008448" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_008448[] = dspot00_room_0Set_001CF0DL_008448; + +#define dspot00_room_0Set_001CF0DL_012C38 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_012C38" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_012C38[] = dspot00_room_0Set_001CF0DL_012C38; + +#define dspot00_room_0Set_001CF0DL_012E18 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_012E18" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_012E18[] = dspot00_room_0Set_001CF0DL_012E18; + +#define dspot00_room_0Set_001CF0DL_002790 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_002790" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_002790[] = dspot00_room_0Set_001CF0DL_002790; + +#define dspot00_room_0Set_001CF0DL_003338 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_003338" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_003338[] = dspot00_room_0Set_001CF0DL_003338; + +#define dspot00_room_0Set_001CF0DL_003ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_003ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_003ED0[] = dspot00_room_0Set_001CF0DL_003ED0; + +#define dspot00_room_0Set_001CF0DL_005030 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_005030" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_005030[] = dspot00_room_0Set_001CF0DL_005030; + +#define dspot00_room_0Set_001CF0DL_005850 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_005850" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_005850[] = dspot00_room_0Set_001CF0DL_005850; + +#define dspot00_room_0Set_001CF0DL_005BC0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_005BC0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_005BC0[] = dspot00_room_0Set_001CF0DL_005BC0; + +#define dspot00_room_0Set_001CF0DL_005E78 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_005E78" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_005E78[] = dspot00_room_0Set_001CF0DL_005E78; + +#define dspot00_room_0Set_001CF0DL_0067C8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0067C8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_0067C8[] = dspot00_room_0Set_001CF0DL_0067C8; + +#define dspot00_room_0Set_001CF0DL_006ED0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_006ED0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_006ED0[] = dspot00_room_0Set_001CF0DL_006ED0; + +#define dspot00_room_0Set_001CF0DL_007230 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_007230" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_007230[] = dspot00_room_0Set_001CF0DL_007230; + +#define dspot00_room_0Set_001CF0DL_008ED8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_008ED8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_008ED8[] = dspot00_room_0Set_001CF0DL_008ED8; + +#define dspot00_room_0Set_001CF0DL_0093A0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0093A0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_0093A0[] = dspot00_room_0Set_001CF0DL_0093A0; + +#define dspot00_room_0Set_001CF0DL_009D10 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_009D10" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_009D10[] = dspot00_room_0Set_001CF0DL_009D10; + +#define dspot00_room_0Set_001CF0DL_00AD00 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00AD00" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00AD00[] = dspot00_room_0Set_001CF0DL_00AD00; + +#define dspot00_room_0Set_001CF0DL_00B520 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00B520" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00B520[] = dspot00_room_0Set_001CF0DL_00B520; + +#define dspot00_room_0Set_001CF0DL_00B8B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00B8B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00B8B0[] = dspot00_room_0Set_001CF0DL_00B8B0; + +#define dspot00_room_0Set_001CF0DL_00BD20 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00BD20" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00BD20[] = dspot00_room_0Set_001CF0DL_00BD20; + +#define dspot00_room_0Set_001CF0DL_00CEB8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00CEB8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00CEB8[] = dspot00_room_0Set_001CF0DL_00CEB8; + +#define dspot00_room_0Set_001CF0DL_00D980 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00D980" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00D980[] = dspot00_room_0Set_001CF0DL_00D980; + +#define dspot00_room_0Set_001CF0DL_00DD70 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00DD70" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00DD70[] = dspot00_room_0Set_001CF0DL_00DD70; + +#define dspot00_room_0Set_001CF0DL_00DFA8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00DFA8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00DFA8[] = dspot00_room_0Set_001CF0DL_00DFA8; + +#define dspot00_room_0Set_001CF0DL_00E7B0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00E7B0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00E7B0[] = dspot00_room_0Set_001CF0DL_00E7B0; + +#define dspot00_room_0Set_001CF0DL_00F3F8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00F3F8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00F3F8[] = dspot00_room_0Set_001CF0DL_00F3F8; + +#define dspot00_room_0Set_001CF0DL_00FB50 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00FB50" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00FB50[] = dspot00_room_0Set_001CF0DL_00FB50; + +#define dspot00_room_0Set_001CF0DL_00FE98 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00FE98" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00FE98[] = dspot00_room_0Set_001CF0DL_00FE98; + +#define dspot00_room_0Set_001CF0DL_0127B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0127B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_0127B8[] = dspot00_room_0Set_001CF0DL_0127B8; + +#define dspot00_room_0Set_001CF0DL_00E328 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_00E328" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_00E328[] = dspot00_room_0Set_001CF0DL_00E328; + +#define dspot00_room_0Set_001CF0DL_0112B8 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0112B8" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_0112B8[] = dspot00_room_0Set_001CF0DL_0112B8; + +#define dspot00_room_0Set_001CF0DL_0121D0 "__OTR__scenes/nonmq/spot00_scene/spot00_room_0Set_001CF0DL_0121D0" +static const ALIGN_ASSET(2) char spot00_room_0Set_001CF0DL_0121D0[] = dspot00_room_0Set_001CF0DL_0121D0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot00/spot00_scene.h b/soh/assets/scenes/overworld/spot00/spot00_scene.h index 418d25df0..65fd92671 100644 --- a/soh/assets/scenes/overworld/spot00/spot00_scene.h +++ b/soh/assets/scenes/overworld/spot00/spot00_scene.h @@ -1,433 +1,205 @@ #pragma once + +#include "align_asset_macro.h" + #define dgHyruleFieldGetOoTCs "__OTR__scenes/nonmq/spot00_scene/gHyruleFieldGetOoTCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldGetOoTCs[] = dgHyruleFieldGetOoTCs; -#else -static const char gHyruleFieldGetOoTCs[] __attribute__((aligned (2))) = dgHyruleFieldGetOoTCs; -#endif - +static const ALIGN_ASSET(2) char gHyruleFieldGetOoTCs[] = dgHyruleFieldGetOoTCs; + #define dgHyruleFieldZeldaSongOfTimeCs "__OTR__scenes/nonmq/spot00_scene/gHyruleFieldZeldaSongOfTimeCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldZeldaSongOfTimeCs[] = dgHyruleFieldZeldaSongOfTimeCs; -#else -static const char gHyruleFieldZeldaSongOfTimeCs[] __attribute__((aligned (2))) = dgHyruleFieldZeldaSongOfTimeCs; -#endif - +static const ALIGN_ASSET(2) char gHyruleFieldZeldaSongOfTimeCs[] = dgHyruleFieldZeldaSongOfTimeCs; + #define dgHyruleFieldEastEponaJumpCs "__OTR__scenes/nonmq/spot00_scene/gHyruleFieldEastEponaJumpCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldEastEponaJumpCs[] = dgHyruleFieldEastEponaJumpCs; -#else -static const char gHyruleFieldEastEponaJumpCs[] __attribute__((aligned (2))) = dgHyruleFieldEastEponaJumpCs; -#endif - +static const ALIGN_ASSET(2) char gHyruleFieldEastEponaJumpCs[] = dgHyruleFieldEastEponaJumpCs; + #define dgHyruleFieldIntroCs "__OTR__scenes/nonmq/spot00_scene/gHyruleFieldIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldIntroCs[] = dgHyruleFieldIntroCs; -#else -static const char gHyruleFieldIntroCs[] __attribute__((aligned (2))) = dgHyruleFieldIntroCs; -#endif - +static const ALIGN_ASSET(2) char gHyruleFieldIntroCs[] = dgHyruleFieldIntroCs; + #define dgHyruleFieldSouthEponaJumpCs "__OTR__scenes/nonmq/spot00_scene/gHyruleFieldSouthEponaJumpCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldSouthEponaJumpCs[] = dgHyruleFieldSouthEponaJumpCs; -#else -static const char gHyruleFieldSouthEponaJumpCs[] __attribute__((aligned (2))) = dgHyruleFieldSouthEponaJumpCs; -#endif - +static const ALIGN_ASSET(2) char gHyruleFieldSouthEponaJumpCs[] = dgHyruleFieldSouthEponaJumpCs; + #define dgHyruleFieldWestEponaJumpCs "__OTR__scenes/nonmq/spot00_scene/gHyruleFieldWestEponaJumpCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldWestEponaJumpCs[] = dgHyruleFieldWestEponaJumpCs; -#else -static const char gHyruleFieldWestEponaJumpCs[] __attribute__((aligned (2))) = dgHyruleFieldWestEponaJumpCs; -#endif - +static const ALIGN_ASSET(2) char gHyruleFieldWestEponaJumpCs[] = dgHyruleFieldWestEponaJumpCs; + #define dgHyruleFieldGateEponaJumpCs "__OTR__scenes/nonmq/spot00_scene/gHyruleFieldGateEponaJumpCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldGateEponaJumpCs[] = dgHyruleFieldGateEponaJumpCs; -#else -static const char gHyruleFieldGateEponaJumpCs[] __attribute__((aligned (2))) = dgHyruleFieldGateEponaJumpCs; -#endif - +static const ALIGN_ASSET(2) char gHyruleFieldGateEponaJumpCs[] = dgHyruleFieldGateEponaJumpCs; + #define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneCollisionHeader_008464[] = dspot00_sceneCollisionHeader_008464; -#else -static const char spot00_sceneCollisionHeader_008464[] __attribute__((aligned (2))) = dspot00_sceneCollisionHeader_008464; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneCollisionHeader_008464[] = dspot00_sceneCollisionHeader_008464; + #define dspot00_scene_Tex_02A198 "__OTR__scenes/nonmq/spot00_scene/spot00_scene_Tex_02A198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_scene_Tex_02A198[] = dspot00_scene_Tex_02A198; -#else -static const char spot00_scene_Tex_02A198[] __attribute__((aligned (2))) = dspot00_scene_Tex_02A198; -#endif - +static const ALIGN_ASSET(2) char spot00_scene_Tex_02A198[] = dspot00_scene_Tex_02A198; + #define dspot00_sceneTex_025018 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_025018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_025018[] = dspot00_sceneTex_025018; -#else -static const char spot00_sceneTex_025018[] __attribute__((aligned (2))) = dspot00_sceneTex_025018; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_025018[] = dspot00_sceneTex_025018; + #define dspot00_sceneTex_023818 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_023818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_023818[] = dspot00_sceneTex_023818; -#else -static const char spot00_sceneTex_023818[] __attribute__((aligned (2))) = dspot00_sceneTex_023818; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_023818[] = dspot00_sceneTex_023818; + #define dspot00_sceneTex_024018 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_024018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_024018[] = dspot00_sceneTex_024018; -#else -static const char spot00_sceneTex_024018[] __attribute__((aligned (2))) = dspot00_sceneTex_024018; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_024018[] = dspot00_sceneTex_024018; + #define dspot00_sceneTex_022018 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_022018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_022018[] = dspot00_sceneTex_022018; -#else -static const char spot00_sceneTex_022018[] __attribute__((aligned (2))) = dspot00_sceneTex_022018; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_022018[] = dspot00_sceneTex_022018; + #define dspot00_sceneTex_020818 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_020818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_020818[] = dspot00_sceneTex_020818; -#else -static const char spot00_sceneTex_020818[] __attribute__((aligned (2))) = dspot00_sceneTex_020818; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_020818[] = dspot00_sceneTex_020818; + #define dspot00_sceneTex_024818 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_024818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_024818[] = dspot00_sceneTex_024818; -#else -static const char spot00_sceneTex_024818[] __attribute__((aligned (2))) = dspot00_sceneTex_024818; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_024818[] = dspot00_sceneTex_024818; + #define dspot00_sceneTLUT_013D70 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTLUT_013D70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTLUT_013D70[] = dspot00_sceneTLUT_013D70; -#else -static const char spot00_sceneTLUT_013D70[] __attribute__((aligned (2))) = dspot00_sceneTLUT_013D70; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTLUT_013D70[] = dspot00_sceneTLUT_013D70; + #define dspot00_sceneTex_016698 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_016698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_016698[] = dspot00_sceneTex_016698; -#else -static const char spot00_sceneTex_016698[] __attribute__((aligned (2))) = dspot00_sceneTex_016698; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_016698[] = dspot00_sceneTex_016698; + #define dspot00_sceneTex_01BD98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01BD98[] = dspot00_sceneTex_01BD98; -#else -static const char spot00_sceneTex_01BD98[] __attribute__((aligned (2))) = dspot00_sceneTex_01BD98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01BD98[] = dspot00_sceneTex_01BD98; + #define dspot00_sceneTex_025818 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_025818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_025818[] = dspot00_sceneTex_025818; -#else -static const char spot00_sceneTex_025818[] __attribute__((aligned (2))) = dspot00_sceneTex_025818; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_025818[] = dspot00_sceneTex_025818; + #define dspot00_sceneTex_01BB98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01BB98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01BB98[] = dspot00_sceneTex_01BB98; -#else -static const char spot00_sceneTex_01BB98[] __attribute__((aligned (2))) = dspot00_sceneTex_01BB98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01BB98[] = dspot00_sceneTex_01BB98; + #define dspot00_sceneTex_029F98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_029F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_029F98[] = dspot00_sceneTex_029F98; -#else -static const char spot00_sceneTex_029F98[] __attribute__((aligned (2))) = dspot00_sceneTex_029F98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_029F98[] = dspot00_sceneTex_029F98; + #define dspot00_sceneTex_01F618 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01F618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01F618[] = dspot00_sceneTex_01F618; -#else -static const char spot00_sceneTex_01F618[] __attribute__((aligned (2))) = dspot00_sceneTex_01F618; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01F618[] = dspot00_sceneTex_01F618; + #define dspot00_sceneTex_019398 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_019398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_019398[] = dspot00_sceneTex_019398; -#else -static const char spot00_sceneTex_019398[] __attribute__((aligned (2))) = dspot00_sceneTex_019398; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_019398[] = dspot00_sceneTex_019398; + #define dspot00_sceneTex_01F598 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01F598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01F598[] = dspot00_sceneTex_01F598; -#else -static const char spot00_sceneTex_01F598[] __attribute__((aligned (2))) = dspot00_sceneTex_01F598; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01F598[] = dspot00_sceneTex_01F598; + #define dspot00_sceneTex_01F198 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01F198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01F198[] = dspot00_sceneTex_01F198; -#else -static const char spot00_sceneTex_01F198[] __attribute__((aligned (2))) = dspot00_sceneTex_01F198; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01F198[] = dspot00_sceneTex_01F198; + #define dspot00_sceneTex_01E998 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01E998" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01E998[] = dspot00_sceneTex_01E998; -#else -static const char spot00_sceneTex_01E998[] __attribute__((aligned (2))) = dspot00_sceneTex_01E998; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01E998[] = dspot00_sceneTex_01E998; + #define dspot00_sceneTex_01AB98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01AB98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01AB98[] = dspot00_sceneTex_01AB98; -#else -static const char spot00_sceneTex_01AB98[] __attribute__((aligned (2))) = dspot00_sceneTex_01AB98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01AB98[] = dspot00_sceneTex_01AB98; + #define dspot00_sceneTex_01B398 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01B398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01B398[] = dspot00_sceneTex_01B398; -#else -static const char spot00_sceneTex_01B398[] __attribute__((aligned (2))) = dspot00_sceneTex_01B398; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01B398[] = dspot00_sceneTex_01B398; + #define dspot00_sceneTex_01D998 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01D998" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01D998[] = dspot00_sceneTex_01D998; -#else -static const char spot00_sceneTex_01D998[] __attribute__((aligned (2))) = dspot00_sceneTex_01D998; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01D998[] = dspot00_sceneTex_01D998; + #define dspot00_sceneTex_028198 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_028198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_028198[] = dspot00_sceneTex_028198; -#else -static const char spot00_sceneTex_028198[] __attribute__((aligned (2))) = dspot00_sceneTex_028198; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_028198[] = dspot00_sceneTex_028198; + #define dspot00_sceneTex_029598 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_029598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_029598[] = dspot00_sceneTex_029598; -#else -static const char spot00_sceneTex_029598[] __attribute__((aligned (2))) = dspot00_sceneTex_029598; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_029598[] = dspot00_sceneTex_029598; + #define dspot00_sceneTex_023018 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_023018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_023018[] = dspot00_sceneTex_023018; -#else -static const char spot00_sceneTex_023018[] __attribute__((aligned (2))) = dspot00_sceneTex_023018; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_023018[] = dspot00_sceneTex_023018; + #define dspot00_sceneTex_022818 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_022818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_022818[] = dspot00_sceneTex_022818; -#else -static const char spot00_sceneTex_022818[] __attribute__((aligned (2))) = dspot00_sceneTex_022818; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_022818[] = dspot00_sceneTex_022818; + #define dspot00_sceneTex_01C198 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01C198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01C198[] = dspot00_sceneTex_01C198; -#else -static const char spot00_sceneTex_01C198[] __attribute__((aligned (2))) = dspot00_sceneTex_01C198; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01C198[] = dspot00_sceneTex_01C198; + #define dspot00_sceneTex_026898 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_026898" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_026898[] = dspot00_sceneTex_026898; -#else -static const char spot00_sceneTex_026898[] __attribute__((aligned (2))) = dspot00_sceneTex_026898; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_026898[] = dspot00_sceneTex_026898; + #define dspot00_sceneTex_016A98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_016A98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_016A98[] = dspot00_sceneTex_016A98; -#else -static const char spot00_sceneTex_016A98[] __attribute__((aligned (2))) = dspot00_sceneTex_016A98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_016A98[] = dspot00_sceneTex_016A98; + #define dspot00_sceneTex_01D198 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01D198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01D198[] = dspot00_sceneTex_01D198; -#else -static const char spot00_sceneTex_01D198[] __attribute__((aligned (2))) = dspot00_sceneTex_01D198; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01D198[] = dspot00_sceneTex_01D198; + #define dspot00_sceneTex_029D98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_029D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_029D98[] = dspot00_sceneTex_029D98; -#else -static const char spot00_sceneTex_029D98[] __attribute__((aligned (2))) = dspot00_sceneTex_029D98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_029D98[] = dspot00_sceneTex_029D98; + #define dspot00_sceneTex_019B98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_019B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_019B98[] = dspot00_sceneTex_019B98; -#else -static const char spot00_sceneTex_019B98[] __attribute__((aligned (2))) = dspot00_sceneTex_019B98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_019B98[] = dspot00_sceneTex_019B98; + #define dspot00_sceneTex_013D98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_013D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_013D98[] = dspot00_sceneTex_013D98; -#else -static const char spot00_sceneTex_013D98[] __attribute__((aligned (2))) = dspot00_sceneTex_013D98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_013D98[] = dspot00_sceneTex_013D98; + #define dspot00_sceneTex_018B98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_018B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_018B98[] = dspot00_sceneTex_018B98; -#else -static const char spot00_sceneTex_018B98[] __attribute__((aligned (2))) = dspot00_sceneTex_018B98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_018B98[] = dspot00_sceneTex_018B98; + #define dspot00_sceneTex_017B98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_017B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_017B98[] = dspot00_sceneTex_017B98; -#else -static const char spot00_sceneTex_017B98[] __attribute__((aligned (2))) = dspot00_sceneTex_017B98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_017B98[] = dspot00_sceneTex_017B98; + #define dspot00_sceneTex_016B98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_016B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_016B98[] = dspot00_sceneTex_016B98; -#else -static const char spot00_sceneTex_016B98[] __attribute__((aligned (2))) = dspot00_sceneTex_016B98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_016B98[] = dspot00_sceneTex_016B98; + #define dspot00_sceneTex_015E98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_015E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_015E98[] = dspot00_sceneTex_015E98; -#else -static const char spot00_sceneTex_015E98[] __attribute__((aligned (2))) = dspot00_sceneTex_015E98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_015E98[] = dspot00_sceneTex_015E98; + #define dspot00_sceneTex_015D98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_015D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_015D98[] = dspot00_sceneTex_015D98; -#else -static const char spot00_sceneTex_015D98[] __attribute__((aligned (2))) = dspot00_sceneTex_015D98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_015D98[] = dspot00_sceneTex_015D98; + #define dspot00_sceneTex_017398 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_017398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_017398[] = dspot00_sceneTex_017398; -#else -static const char spot00_sceneTex_017398[] __attribute__((aligned (2))) = dspot00_sceneTex_017398; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_017398[] = dspot00_sceneTex_017398; + #define dspot00_sceneTex_021818 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_021818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_021818[] = dspot00_sceneTex_021818; -#else -static const char spot00_sceneTex_021818[] __attribute__((aligned (2))) = dspot00_sceneTex_021818; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_021818[] = dspot00_sceneTex_021818; + #define dspot00_sceneTex_026098 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_026098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_026098[] = dspot00_sceneTex_026098; -#else -static const char spot00_sceneTex_026098[] __attribute__((aligned (2))) = dspot00_sceneTex_026098; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_026098[] = dspot00_sceneTex_026098; + #define dspot00_sceneTex_025898 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_025898" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_025898[] = dspot00_sceneTex_025898; -#else -static const char spot00_sceneTex_025898[] __attribute__((aligned (2))) = dspot00_sceneTex_025898; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_025898[] = dspot00_sceneTex_025898; + #define dspot00_sceneTex_021018 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_021018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_021018[] = dspot00_sceneTex_021018; -#else -static const char spot00_sceneTex_021018[] __attribute__((aligned (2))) = dspot00_sceneTex_021018; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_021018[] = dspot00_sceneTex_021018; + #define dspot00_sceneTex_01C998 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01C998" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01C998[] = dspot00_sceneTex_01C998; -#else -static const char spot00_sceneTex_01C998[] __attribute__((aligned (2))) = dspot00_sceneTex_01C998; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01C998[] = dspot00_sceneTex_01C998; + #define dspot00_sceneTex_014998 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_014998" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_014998[] = dspot00_sceneTex_014998; -#else -static const char spot00_sceneTex_014998[] __attribute__((aligned (2))) = dspot00_sceneTex_014998; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_014998[] = dspot00_sceneTex_014998; + #define dspot00_sceneTex_014598 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_014598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_014598[] = dspot00_sceneTex_014598; -#else -static const char spot00_sceneTex_014598[] __attribute__((aligned (2))) = dspot00_sceneTex_014598; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_014598[] = dspot00_sceneTex_014598; + #define dspot00_sceneTex_020018 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_020018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_020018[] = dspot00_sceneTex_020018; -#else -static const char spot00_sceneTex_020018[] __attribute__((aligned (2))) = dspot00_sceneTex_020018; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_020018[] = dspot00_sceneTex_020018; + #define dspot00_sceneTex_01F818 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_01F818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_01F818[] = dspot00_sceneTex_01F818; -#else -static const char spot00_sceneTex_01F818[] __attribute__((aligned (2))) = dspot00_sceneTex_01F818; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_01F818[] = dspot00_sceneTex_01F818; + #define dspot00_sceneTex_027D98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_027D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_027D98[] = dspot00_sceneTex_027D98; -#else -static const char spot00_sceneTex_027D98[] __attribute__((aligned (2))) = dspot00_sceneTex_027D98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_027D98[] = dspot00_sceneTex_027D98; + #define dspot00_sceneTex_027998 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_027998" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_027998[] = dspot00_sceneTex_027998; -#else -static const char spot00_sceneTex_027998[] __attribute__((aligned (2))) = dspot00_sceneTex_027998; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_027998[] = dspot00_sceneTex_027998; + #define dspot00_sceneTex_028598 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_028598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_028598[] = dspot00_sceneTex_028598; -#else -static const char spot00_sceneTex_028598[] __attribute__((aligned (2))) = dspot00_sceneTex_028598; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_028598[] = dspot00_sceneTex_028598; + #define dspot00_sceneTex_014D98 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_014D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_014D98[] = dspot00_sceneTex_014D98; -#else -static const char spot00_sceneTex_014D98[] __attribute__((aligned (2))) = dspot00_sceneTex_014D98; -#endif - +static const ALIGN_ASSET(2) char spot00_sceneTex_014D98[] = dspot00_sceneTex_014D98; + #define dspot00_sceneTex_026998 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneTex_026998" -#ifdef _WIN32 -static const __declspec(align(2)) char spot00_sceneTex_026998[] = dspot00_sceneTex_026998; -#else -static const char spot00_sceneTex_026998[] __attribute__((aligned (2))) = dspot00_sceneTex_026998; -#endif - -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" -#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" +static const ALIGN_ASSET(2) char spot00_sceneTex_026998[] = dspot00_sceneTex_026998; + #define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" + +#define dspot00_sceneCollisionHeader_008464 "__OTR__scenes/nonmq/spot00_scene/spot00_sceneCollisionHeader_008464" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot01/spot01_room_0.h b/soh/assets/scenes/overworld/spot01/spot01_room_0.h index e8ca64a24..5f9791701 100644 --- a/soh/assets/scenes/overworld/spot01/spot01_room_0.h +++ b/soh/assets/scenes/overworld/spot01/spot01_room_0.h @@ -1,1269 +1,546 @@ #pragma once -#define dgSpot01DL_009E38 "__OTR__scenes/nonmq/spot01_scene/gSpot01DL_009E38" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot01DL_009E38[] = dgSpot01DL_009E38; -#else -static const char gSpot01DL_009E38[] __attribute__((aligned (2))) = dgSpot01DL_009E38; -#endif - -#define dspot01_room_0DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_005E48[] = dspot01_room_0DL_005E48; -#else -static const char spot01_room_0DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0DL_005E48; -#endif - -#define dspot01_room_0DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_0024E8[] = dspot01_room_0DL_0024E8; -#else -static const char spot01_room_0DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0DL_0024E8; -#endif - -#define dspot01_room_0DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_001F20[] = dspot01_room_0DL_001F20; -#else -static const char spot01_room_0DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0DL_001F20; -#endif - -#define dspot01_room_0DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_006758[] = dspot01_room_0DL_006758; -#else -static const char spot01_room_0DL_006758[] __attribute__((aligned (2))) = dspot01_room_0DL_006758; -#endif - -#define dspot01_room_0DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_006B18[] = dspot01_room_0DL_006B18; -#else -static const char spot01_room_0DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0DL_006B18; -#endif - -#define dspot01_room_0DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_006EC0[] = dspot01_room_0DL_006EC0; -#else -static const char spot01_room_0DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0DL_006EC0; -#endif - -#define dspot01_room_0DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_007418[] = dspot01_room_0DL_007418; -#else -static const char spot01_room_0DL_007418[] __attribute__((aligned (2))) = dspot01_room_0DL_007418; -#endif - -#define dspot01_room_0DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_007888[] = dspot01_room_0DL_007888; -#else -static const char spot01_room_0DL_007888[] __attribute__((aligned (2))) = dspot01_room_0DL_007888; -#endif - -#define dspot01_room_0DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_007C18[] = dspot01_room_0DL_007C18; -#else -static const char spot01_room_0DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0DL_007C18; -#endif - -#define dspot01_room_0DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_0086F0[] = dspot01_room_0DL_0086F0; -#else -static const char spot01_room_0DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0DL_0086F0; -#endif - -#define dspot01_room_0DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_003B48[] = dspot01_room_0DL_003B48; -#else -static const char spot01_room_0DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0DL_003B48; -#endif - -#define dspot01_room_0DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_009108[] = dspot01_room_0DL_009108; -#else -static const char spot01_room_0DL_009108[] __attribute__((aligned (2))) = dspot01_room_0DL_009108; -#endif - -#define dspot01_room_0DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_004DB0[] = dspot01_room_0DL_004DB0; -#else -static const char spot01_room_0DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0DL_004DB0; -#endif - -#define dspot01_room_0DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_004420[] = dspot01_room_0DL_004420; -#else -static const char spot01_room_0DL_004420[] __attribute__((aligned (2))) = dspot01_room_0DL_004420; -#endif - -#define dspot01_room_0DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_0048C8[] = dspot01_room_0DL_0048C8; -#else -static const char spot01_room_0DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0DL_0048C8; -#endif - -#define dspot01_room_0DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_005AD0[] = dspot01_room_0DL_005AD0; -#else -static const char spot01_room_0DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0DL_005AD0; -#endif - -#define dspot01_room_0DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_008EC8[] = dspot01_room_0DL_008EC8; -#else -static const char spot01_room_0DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0DL_008EC8; -#endif - -#define dspot01_room_0DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_009A70[] = dspot01_room_0DL_009A70; -#else -static const char spot01_room_0DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0DL_009A70; -#endif - -#define dspot01_room_0DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_005680[] = dspot01_room_0DL_005680; -#else -static const char spot01_room_0DL_005680[] __attribute__((aligned (2))) = dspot01_room_0DL_005680; -#endif - -#define dspot01_room_0DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0DL_0063A0[] = dspot01_room_0DL_0063A0; -#else -static const char spot01_room_0DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0DL_0063A0; -#endif - -#define dspot01_room_0Set_000C40DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_005E48[] = dspot01_room_0Set_000C40DL_005E48; -#else -static const char spot01_room_0Set_000C40DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_005E48; -#endif - -#define dspot01_room_0Set_000C40DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_0024E8[] = dspot01_room_0Set_000C40DL_0024E8; -#else -static const char spot01_room_0Set_000C40DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_0024E8; -#endif - -#define dspot01_room_0Set_000C40DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_001F20[] = dspot01_room_0Set_000C40DL_001F20; -#else -static const char spot01_room_0Set_000C40DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_001F20; -#endif - -#define dspot01_room_0Set_000C40DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_006758[] = dspot01_room_0Set_000C40DL_006758; -#else -static const char spot01_room_0Set_000C40DL_006758[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_006758; -#endif - -#define dspot01_room_0Set_000C40DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_006B18[] = dspot01_room_0Set_000C40DL_006B18; -#else -static const char spot01_room_0Set_000C40DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_006B18; -#endif - -#define dspot01_room_0Set_000C40DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_006EC0[] = dspot01_room_0Set_000C40DL_006EC0; -#else -static const char spot01_room_0Set_000C40DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_006EC0; -#endif - -#define dspot01_room_0Set_000C40DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_007418[] = dspot01_room_0Set_000C40DL_007418; -#else -static const char spot01_room_0Set_000C40DL_007418[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_007418; -#endif - -#define dspot01_room_0Set_000C40DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_007888[] = dspot01_room_0Set_000C40DL_007888; -#else -static const char spot01_room_0Set_000C40DL_007888[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_007888; -#endif - -#define dspot01_room_0Set_000C40DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_007C18[] = dspot01_room_0Set_000C40DL_007C18; -#else -static const char spot01_room_0Set_000C40DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_007C18; -#endif - -#define dspot01_room_0Set_000C40DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_0086F0[] = dspot01_room_0Set_000C40DL_0086F0; -#else -static const char spot01_room_0Set_000C40DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_0086F0; -#endif - -#define dspot01_room_0Set_000C40DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_003B48[] = dspot01_room_0Set_000C40DL_003B48; -#else -static const char spot01_room_0Set_000C40DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_003B48; -#endif - -#define dspot01_room_0Set_000C40DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_009108[] = dspot01_room_0Set_000C40DL_009108; -#else -static const char spot01_room_0Set_000C40DL_009108[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_009108; -#endif - -#define dspot01_room_0Set_000C40DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_004DB0[] = dspot01_room_0Set_000C40DL_004DB0; -#else -static const char spot01_room_0Set_000C40DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_004DB0; -#endif - -#define dspot01_room_0Set_000C40DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_004420[] = dspot01_room_0Set_000C40DL_004420; -#else -static const char spot01_room_0Set_000C40DL_004420[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_004420; -#endif - -#define dspot01_room_0Set_000C40DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_0048C8[] = dspot01_room_0Set_000C40DL_0048C8; -#else -static const char spot01_room_0Set_000C40DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_0048C8; -#endif - -#define dspot01_room_0Set_000C40DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_005AD0[] = dspot01_room_0Set_000C40DL_005AD0; -#else -static const char spot01_room_0Set_000C40DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_005AD0; -#endif - -#define dspot01_room_0Set_000C40DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_008EC8[] = dspot01_room_0Set_000C40DL_008EC8; -#else -static const char spot01_room_0Set_000C40DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_008EC8; -#endif - -#define dspot01_room_0Set_000C40DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_009A70[] = dspot01_room_0Set_000C40DL_009A70; -#else -static const char spot01_room_0Set_000C40DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_009A70; -#endif - -#define dspot01_room_0Set_000C40DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_005680[] = dspot01_room_0Set_000C40DL_005680; -#else -static const char spot01_room_0Set_000C40DL_005680[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_005680; -#endif - -#define dspot01_room_0Set_000C40DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000C40DL_0063A0[] = dspot01_room_0Set_000C40DL_0063A0; -#else -static const char spot01_room_0Set_000C40DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0Set_000C40DL_0063A0; -#endif - -#define dspot01_room_0Set_000570DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_005E48[] = dspot01_room_0Set_000570DL_005E48; -#else -static const char spot01_room_0Set_000570DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_005E48; -#endif - -#define dspot01_room_0Set_000570DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_0024E8[] = dspot01_room_0Set_000570DL_0024E8; -#else -static const char spot01_room_0Set_000570DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_0024E8; -#endif - -#define dspot01_room_0Set_000570DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_001F20[] = dspot01_room_0Set_000570DL_001F20; -#else -static const char spot01_room_0Set_000570DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_001F20; -#endif - -#define dspot01_room_0Set_000570DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_006758[] = dspot01_room_0Set_000570DL_006758; -#else -static const char spot01_room_0Set_000570DL_006758[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_006758; -#endif - -#define dspot01_room_0Set_000570DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_006B18[] = dspot01_room_0Set_000570DL_006B18; -#else -static const char spot01_room_0Set_000570DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_006B18; -#endif - -#define dspot01_room_0Set_000570DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_006EC0[] = dspot01_room_0Set_000570DL_006EC0; -#else -static const char spot01_room_0Set_000570DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_006EC0; -#endif - -#define dspot01_room_0Set_000570DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_007418[] = dspot01_room_0Set_000570DL_007418; -#else -static const char spot01_room_0Set_000570DL_007418[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_007418; -#endif - -#define dspot01_room_0Set_000570DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_007888[] = dspot01_room_0Set_000570DL_007888; -#else -static const char spot01_room_0Set_000570DL_007888[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_007888; -#endif - -#define dspot01_room_0Set_000570DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_007C18[] = dspot01_room_0Set_000570DL_007C18; -#else -static const char spot01_room_0Set_000570DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_007C18; -#endif - -#define dspot01_room_0Set_000570DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_0086F0[] = dspot01_room_0Set_000570DL_0086F0; -#else -static const char spot01_room_0Set_000570DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_0086F0; -#endif - -#define dspot01_room_0Set_000570DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_003B48[] = dspot01_room_0Set_000570DL_003B48; -#else -static const char spot01_room_0Set_000570DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_003B48; -#endif - -#define dspot01_room_0Set_000570DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_009108[] = dspot01_room_0Set_000570DL_009108; -#else -static const char spot01_room_0Set_000570DL_009108[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_009108; -#endif - -#define dspot01_room_0Set_000570DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_004DB0[] = dspot01_room_0Set_000570DL_004DB0; -#else -static const char spot01_room_0Set_000570DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_004DB0; -#endif - -#define dspot01_room_0Set_000570DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_004420[] = dspot01_room_0Set_000570DL_004420; -#else -static const char spot01_room_0Set_000570DL_004420[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_004420; -#endif - -#define dspot01_room_0Set_000570DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_0048C8[] = dspot01_room_0Set_000570DL_0048C8; -#else -static const char spot01_room_0Set_000570DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_0048C8; -#endif - -#define dspot01_room_0Set_000570DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_005AD0[] = dspot01_room_0Set_000570DL_005AD0; -#else -static const char spot01_room_0Set_000570DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_005AD0; -#endif - -#define dspot01_room_0Set_000570DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_008EC8[] = dspot01_room_0Set_000570DL_008EC8; -#else -static const char spot01_room_0Set_000570DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_008EC8; -#endif - -#define dspot01_room_0Set_000570DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_009A70[] = dspot01_room_0Set_000570DL_009A70; -#else -static const char spot01_room_0Set_000570DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_009A70; -#endif - -#define dspot01_room_0Set_000570DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_005680[] = dspot01_room_0Set_000570DL_005680; -#else -static const char spot01_room_0Set_000570DL_005680[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_005680; -#endif - -#define dspot01_room_0Set_000570DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000570DL_0063A0[] = dspot01_room_0Set_000570DL_0063A0; -#else -static const char spot01_room_0Set_000570DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0Set_000570DL_0063A0; -#endif - -#define dspot01_room_0Set_000900DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_005E48[] = dspot01_room_0Set_000900DL_005E48; -#else -static const char spot01_room_0Set_000900DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_005E48; -#endif - -#define dspot01_room_0Set_000900DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_0024E8[] = dspot01_room_0Set_000900DL_0024E8; -#else -static const char spot01_room_0Set_000900DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_0024E8; -#endif - -#define dspot01_room_0Set_000900DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_001F20[] = dspot01_room_0Set_000900DL_001F20; -#else -static const char spot01_room_0Set_000900DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_001F20; -#endif - -#define dspot01_room_0Set_000900DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_006758[] = dspot01_room_0Set_000900DL_006758; -#else -static const char spot01_room_0Set_000900DL_006758[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_006758; -#endif - -#define dspot01_room_0Set_000900DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_006B18[] = dspot01_room_0Set_000900DL_006B18; -#else -static const char spot01_room_0Set_000900DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_006B18; -#endif - -#define dspot01_room_0Set_000900DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_006EC0[] = dspot01_room_0Set_000900DL_006EC0; -#else -static const char spot01_room_0Set_000900DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_006EC0; -#endif - -#define dspot01_room_0Set_000900DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_007418[] = dspot01_room_0Set_000900DL_007418; -#else -static const char spot01_room_0Set_000900DL_007418[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_007418; -#endif - -#define dspot01_room_0Set_000900DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_007888[] = dspot01_room_0Set_000900DL_007888; -#else -static const char spot01_room_0Set_000900DL_007888[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_007888; -#endif - -#define dspot01_room_0Set_000900DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_007C18[] = dspot01_room_0Set_000900DL_007C18; -#else -static const char spot01_room_0Set_000900DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_007C18; -#endif - -#define dspot01_room_0Set_000900DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_0086F0[] = dspot01_room_0Set_000900DL_0086F0; -#else -static const char spot01_room_0Set_000900DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_0086F0; -#endif - -#define dspot01_room_0Set_000900DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_003B48[] = dspot01_room_0Set_000900DL_003B48; -#else -static const char spot01_room_0Set_000900DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_003B48; -#endif - -#define dspot01_room_0Set_000900DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_009108[] = dspot01_room_0Set_000900DL_009108; -#else -static const char spot01_room_0Set_000900DL_009108[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_009108; -#endif - -#define dspot01_room_0Set_000900DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_004DB0[] = dspot01_room_0Set_000900DL_004DB0; -#else -static const char spot01_room_0Set_000900DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_004DB0; -#endif - -#define dspot01_room_0Set_000900DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_004420[] = dspot01_room_0Set_000900DL_004420; -#else -static const char spot01_room_0Set_000900DL_004420[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_004420; -#endif - -#define dspot01_room_0Set_000900DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_0048C8[] = dspot01_room_0Set_000900DL_0048C8; -#else -static const char spot01_room_0Set_000900DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_0048C8; -#endif - -#define dspot01_room_0Set_000900DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_005AD0[] = dspot01_room_0Set_000900DL_005AD0; -#else -static const char spot01_room_0Set_000900DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_005AD0; -#endif - -#define dspot01_room_0Set_000900DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_008EC8[] = dspot01_room_0Set_000900DL_008EC8; -#else -static const char spot01_room_0Set_000900DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_008EC8; -#endif - -#define dspot01_room_0Set_000900DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_009A70[] = dspot01_room_0Set_000900DL_009A70; -#else -static const char spot01_room_0Set_000900DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_009A70; -#endif - -#define dspot01_room_0Set_000900DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_005680[] = dspot01_room_0Set_000900DL_005680; -#else -static const char spot01_room_0Set_000900DL_005680[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_005680; -#endif - -#define dspot01_room_0Set_000900DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000900DL_0063A0[] = dspot01_room_0Set_000900DL_0063A0; -#else -static const char spot01_room_0Set_000900DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0Set_000900DL_0063A0; -#endif - -#define dspot01_room_0Set_000FC0DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_005E48[] = dspot01_room_0Set_000FC0DL_005E48; -#else -static const char spot01_room_0Set_000FC0DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_005E48; -#endif - -#define dspot01_room_0Set_000FC0DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_0024E8[] = dspot01_room_0Set_000FC0DL_0024E8; -#else -static const char spot01_room_0Set_000FC0DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_0024E8; -#endif - -#define dspot01_room_0Set_000FC0DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_001F20[] = dspot01_room_0Set_000FC0DL_001F20; -#else -static const char spot01_room_0Set_000FC0DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_001F20; -#endif - -#define dspot01_room_0Set_000FC0DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_006758[] = dspot01_room_0Set_000FC0DL_006758; -#else -static const char spot01_room_0Set_000FC0DL_006758[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_006758; -#endif - -#define dspot01_room_0Set_000FC0DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_006B18[] = dspot01_room_0Set_000FC0DL_006B18; -#else -static const char spot01_room_0Set_000FC0DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_006B18; -#endif - -#define dspot01_room_0Set_000FC0DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_006EC0[] = dspot01_room_0Set_000FC0DL_006EC0; -#else -static const char spot01_room_0Set_000FC0DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_006EC0; -#endif - -#define dspot01_room_0Set_000FC0DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_007418[] = dspot01_room_0Set_000FC0DL_007418; -#else -static const char spot01_room_0Set_000FC0DL_007418[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_007418; -#endif - -#define dspot01_room_0Set_000FC0DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_007888[] = dspot01_room_0Set_000FC0DL_007888; -#else -static const char spot01_room_0Set_000FC0DL_007888[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_007888; -#endif - -#define dspot01_room_0Set_000FC0DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_007C18[] = dspot01_room_0Set_000FC0DL_007C18; -#else -static const char spot01_room_0Set_000FC0DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_007C18; -#endif - -#define dspot01_room_0Set_000FC0DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_0086F0[] = dspot01_room_0Set_000FC0DL_0086F0; -#else -static const char spot01_room_0Set_000FC0DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_0086F0; -#endif - -#define dspot01_room_0Set_000FC0DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_003B48[] = dspot01_room_0Set_000FC0DL_003B48; -#else -static const char spot01_room_0Set_000FC0DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_003B48; -#endif - -#define dspot01_room_0Set_000FC0DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_009108[] = dspot01_room_0Set_000FC0DL_009108; -#else -static const char spot01_room_0Set_000FC0DL_009108[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_009108; -#endif - -#define dspot01_room_0Set_000FC0DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_004DB0[] = dspot01_room_0Set_000FC0DL_004DB0; -#else -static const char spot01_room_0Set_000FC0DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_004DB0; -#endif - -#define dspot01_room_0Set_000FC0DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_004420[] = dspot01_room_0Set_000FC0DL_004420; -#else -static const char spot01_room_0Set_000FC0DL_004420[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_004420; -#endif - -#define dspot01_room_0Set_000FC0DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_0048C8[] = dspot01_room_0Set_000FC0DL_0048C8; -#else -static const char spot01_room_0Set_000FC0DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_0048C8; -#endif - -#define dspot01_room_0Set_000FC0DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_005AD0[] = dspot01_room_0Set_000FC0DL_005AD0; -#else -static const char spot01_room_0Set_000FC0DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_005AD0; -#endif - -#define dspot01_room_0Set_000FC0DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_008EC8[] = dspot01_room_0Set_000FC0DL_008EC8; -#else -static const char spot01_room_0Set_000FC0DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_008EC8; -#endif - -#define dspot01_room_0Set_000FC0DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_009A70[] = dspot01_room_0Set_000FC0DL_009A70; -#else -static const char spot01_room_0Set_000FC0DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_009A70; -#endif - -#define dspot01_room_0Set_000FC0DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_005680[] = dspot01_room_0Set_000FC0DL_005680; -#else -static const char spot01_room_0Set_000FC0DL_005680[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_005680; -#endif - -#define dspot01_room_0Set_000FC0DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_000FC0DL_0063A0[] = dspot01_room_0Set_000FC0DL_0063A0; -#else -static const char spot01_room_0Set_000FC0DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0Set_000FC0DL_0063A0; -#endif - -#define dspot01_room_0Set_0011F0DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_005E48[] = dspot01_room_0Set_0011F0DL_005E48; -#else -static const char spot01_room_0Set_0011F0DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_005E48; -#endif - -#define dspot01_room_0Set_0011F0DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_0024E8[] = dspot01_room_0Set_0011F0DL_0024E8; -#else -static const char spot01_room_0Set_0011F0DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_0024E8; -#endif - -#define dspot01_room_0Set_0011F0DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_001F20[] = dspot01_room_0Set_0011F0DL_001F20; -#else -static const char spot01_room_0Set_0011F0DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_001F20; -#endif - -#define dspot01_room_0Set_0011F0DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_006758[] = dspot01_room_0Set_0011F0DL_006758; -#else -static const char spot01_room_0Set_0011F0DL_006758[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_006758; -#endif - -#define dspot01_room_0Set_0011F0DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_006B18[] = dspot01_room_0Set_0011F0DL_006B18; -#else -static const char spot01_room_0Set_0011F0DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_006B18; -#endif - -#define dspot01_room_0Set_0011F0DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_006EC0[] = dspot01_room_0Set_0011F0DL_006EC0; -#else -static const char spot01_room_0Set_0011F0DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_006EC0; -#endif - -#define dspot01_room_0Set_0011F0DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_007418[] = dspot01_room_0Set_0011F0DL_007418; -#else -static const char spot01_room_0Set_0011F0DL_007418[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_007418; -#endif - -#define dspot01_room_0Set_0011F0DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_007888[] = dspot01_room_0Set_0011F0DL_007888; -#else -static const char spot01_room_0Set_0011F0DL_007888[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_007888; -#endif - -#define dspot01_room_0Set_0011F0DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_007C18[] = dspot01_room_0Set_0011F0DL_007C18; -#else -static const char spot01_room_0Set_0011F0DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_007C18; -#endif - -#define dspot01_room_0Set_0011F0DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_0086F0[] = dspot01_room_0Set_0011F0DL_0086F0; -#else -static const char spot01_room_0Set_0011F0DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_0086F0; -#endif - -#define dspot01_room_0Set_0011F0DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_003B48[] = dspot01_room_0Set_0011F0DL_003B48; -#else -static const char spot01_room_0Set_0011F0DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_003B48; -#endif - -#define dspot01_room_0Set_0011F0DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_009108[] = dspot01_room_0Set_0011F0DL_009108; -#else -static const char spot01_room_0Set_0011F0DL_009108[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_009108; -#endif - -#define dspot01_room_0Set_0011F0DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_004DB0[] = dspot01_room_0Set_0011F0DL_004DB0; -#else -static const char spot01_room_0Set_0011F0DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_004DB0; -#endif - -#define dspot01_room_0Set_0011F0DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_004420[] = dspot01_room_0Set_0011F0DL_004420; -#else -static const char spot01_room_0Set_0011F0DL_004420[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_004420; -#endif - -#define dspot01_room_0Set_0011F0DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_0048C8[] = dspot01_room_0Set_0011F0DL_0048C8; -#else -static const char spot01_room_0Set_0011F0DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_0048C8; -#endif - -#define dspot01_room_0Set_0011F0DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_005AD0[] = dspot01_room_0Set_0011F0DL_005AD0; -#else -static const char spot01_room_0Set_0011F0DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_005AD0; -#endif - -#define dspot01_room_0Set_0011F0DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_008EC8[] = dspot01_room_0Set_0011F0DL_008EC8; -#else -static const char spot01_room_0Set_0011F0DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_008EC8; -#endif - -#define dspot01_room_0Set_0011F0DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_009A70[] = dspot01_room_0Set_0011F0DL_009A70; -#else -static const char spot01_room_0Set_0011F0DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_009A70; -#endif - -#define dspot01_room_0Set_0011F0DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_005680[] = dspot01_room_0Set_0011F0DL_005680; -#else -static const char spot01_room_0Set_0011F0DL_005680[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_005680; -#endif - -#define dspot01_room_0Set_0011F0DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_0011F0DL_0063A0[] = dspot01_room_0Set_0011F0DL_0063A0; -#else -static const char spot01_room_0Set_0011F0DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0Set_0011F0DL_0063A0; -#endif - -#define dspot01_room_0Set_001390DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_005E48[] = dspot01_room_0Set_001390DL_005E48; -#else -static const char spot01_room_0Set_001390DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_005E48; -#endif - -#define dspot01_room_0Set_001390DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_0024E8[] = dspot01_room_0Set_001390DL_0024E8; -#else -static const char spot01_room_0Set_001390DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_0024E8; -#endif - -#define dspot01_room_0Set_001390DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_001F20[] = dspot01_room_0Set_001390DL_001F20; -#else -static const char spot01_room_0Set_001390DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_001F20; -#endif - -#define dspot01_room_0Set_001390DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_006758[] = dspot01_room_0Set_001390DL_006758; -#else -static const char spot01_room_0Set_001390DL_006758[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_006758; -#endif - -#define dspot01_room_0Set_001390DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_006B18[] = dspot01_room_0Set_001390DL_006B18; -#else -static const char spot01_room_0Set_001390DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_006B18; -#endif - -#define dspot01_room_0Set_001390DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_006EC0[] = dspot01_room_0Set_001390DL_006EC0; -#else -static const char spot01_room_0Set_001390DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_006EC0; -#endif - -#define dspot01_room_0Set_001390DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_007418[] = dspot01_room_0Set_001390DL_007418; -#else -static const char spot01_room_0Set_001390DL_007418[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_007418; -#endif - -#define dspot01_room_0Set_001390DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_007888[] = dspot01_room_0Set_001390DL_007888; -#else -static const char spot01_room_0Set_001390DL_007888[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_007888; -#endif - -#define dspot01_room_0Set_001390DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_007C18[] = dspot01_room_0Set_001390DL_007C18; -#else -static const char spot01_room_0Set_001390DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_007C18; -#endif - -#define dspot01_room_0Set_001390DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_0086F0[] = dspot01_room_0Set_001390DL_0086F0; -#else -static const char spot01_room_0Set_001390DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_0086F0; -#endif - -#define dspot01_room_0Set_001390DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_003B48[] = dspot01_room_0Set_001390DL_003B48; -#else -static const char spot01_room_0Set_001390DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_003B48; -#endif - -#define dspot01_room_0Set_001390DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_009108[] = dspot01_room_0Set_001390DL_009108; -#else -static const char spot01_room_0Set_001390DL_009108[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_009108; -#endif - -#define dspot01_room_0Set_001390DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_004DB0[] = dspot01_room_0Set_001390DL_004DB0; -#else -static const char spot01_room_0Set_001390DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_004DB0; -#endif - -#define dspot01_room_0Set_001390DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_004420[] = dspot01_room_0Set_001390DL_004420; -#else -static const char spot01_room_0Set_001390DL_004420[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_004420; -#endif - -#define dspot01_room_0Set_001390DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_0048C8[] = dspot01_room_0Set_001390DL_0048C8; -#else -static const char spot01_room_0Set_001390DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_0048C8; -#endif - -#define dspot01_room_0Set_001390DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_005AD0[] = dspot01_room_0Set_001390DL_005AD0; -#else -static const char spot01_room_0Set_001390DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_005AD0; -#endif - -#define dspot01_room_0Set_001390DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_008EC8[] = dspot01_room_0Set_001390DL_008EC8; -#else -static const char spot01_room_0Set_001390DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_008EC8; -#endif - -#define dspot01_room_0Set_001390DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_009A70[] = dspot01_room_0Set_001390DL_009A70; -#else -static const char spot01_room_0Set_001390DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_009A70; -#endif - -#define dspot01_room_0Set_001390DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_005680[] = dspot01_room_0Set_001390DL_005680; -#else -static const char spot01_room_0Set_001390DL_005680[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_005680; -#endif - -#define dspot01_room_0Set_001390DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001390DL_0063A0[] = dspot01_room_0Set_001390DL_0063A0; -#else -static const char spot01_room_0Set_001390DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0Set_001390DL_0063A0; -#endif - -#define dspot01_room_0Set_001480DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_005E48[] = dspot01_room_0Set_001480DL_005E48; -#else -static const char spot01_room_0Set_001480DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_005E48; -#endif - -#define dspot01_room_0Set_001480DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_0024E8[] = dspot01_room_0Set_001480DL_0024E8; -#else -static const char spot01_room_0Set_001480DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_0024E8; -#endif - -#define dspot01_room_0Set_001480DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_001F20[] = dspot01_room_0Set_001480DL_001F20; -#else -static const char spot01_room_0Set_001480DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_001F20; -#endif - -#define dspot01_room_0Set_001480DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_006758[] = dspot01_room_0Set_001480DL_006758; -#else -static const char spot01_room_0Set_001480DL_006758[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_006758; -#endif - -#define dspot01_room_0Set_001480DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_006B18[] = dspot01_room_0Set_001480DL_006B18; -#else -static const char spot01_room_0Set_001480DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_006B18; -#endif - -#define dspot01_room_0Set_001480DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_006EC0[] = dspot01_room_0Set_001480DL_006EC0; -#else -static const char spot01_room_0Set_001480DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_006EC0; -#endif - -#define dspot01_room_0Set_001480DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_007418[] = dspot01_room_0Set_001480DL_007418; -#else -static const char spot01_room_0Set_001480DL_007418[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_007418; -#endif - -#define dspot01_room_0Set_001480DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_007888[] = dspot01_room_0Set_001480DL_007888; -#else -static const char spot01_room_0Set_001480DL_007888[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_007888; -#endif - -#define dspot01_room_0Set_001480DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_007C18[] = dspot01_room_0Set_001480DL_007C18; -#else -static const char spot01_room_0Set_001480DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_007C18; -#endif - -#define dspot01_room_0Set_001480DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_0086F0[] = dspot01_room_0Set_001480DL_0086F0; -#else -static const char spot01_room_0Set_001480DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_0086F0; -#endif - -#define dspot01_room_0Set_001480DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_003B48[] = dspot01_room_0Set_001480DL_003B48; -#else -static const char spot01_room_0Set_001480DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_003B48; -#endif - -#define dspot01_room_0Set_001480DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_009108[] = dspot01_room_0Set_001480DL_009108; -#else -static const char spot01_room_0Set_001480DL_009108[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_009108; -#endif - -#define dspot01_room_0Set_001480DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_004DB0[] = dspot01_room_0Set_001480DL_004DB0; -#else -static const char spot01_room_0Set_001480DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_004DB0; -#endif - -#define dspot01_room_0Set_001480DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_004420[] = dspot01_room_0Set_001480DL_004420; -#else -static const char spot01_room_0Set_001480DL_004420[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_004420; -#endif - -#define dspot01_room_0Set_001480DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_0048C8[] = dspot01_room_0Set_001480DL_0048C8; -#else -static const char spot01_room_0Set_001480DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_0048C8; -#endif - -#define dspot01_room_0Set_001480DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_005AD0[] = dspot01_room_0Set_001480DL_005AD0; -#else -static const char spot01_room_0Set_001480DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_005AD0; -#endif - -#define dspot01_room_0Set_001480DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_008EC8[] = dspot01_room_0Set_001480DL_008EC8; -#else -static const char spot01_room_0Set_001480DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_008EC8; -#endif - -#define dspot01_room_0Set_001480DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_009A70[] = dspot01_room_0Set_001480DL_009A70; -#else -static const char spot01_room_0Set_001480DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_009A70; -#endif - -#define dspot01_room_0Set_001480DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_005680[] = dspot01_room_0Set_001480DL_005680; -#else -static const char spot01_room_0Set_001480DL_005680[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_005680; -#endif - -#define dspot01_room_0Set_001480DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001480DL_0063A0[] = dspot01_room_0Set_001480DL_0063A0; -#else -static const char spot01_room_0Set_001480DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0Set_001480DL_0063A0; -#endif - -#define dspot01_room_0Set_001630DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_005E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_005E48[] = dspot01_room_0Set_001630DL_005E48; -#else -static const char spot01_room_0Set_001630DL_005E48[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_005E48; -#endif - -#define dspot01_room_0Set_001630DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_0024E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_0024E8[] = dspot01_room_0Set_001630DL_0024E8; -#else -static const char spot01_room_0Set_001630DL_0024E8[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_0024E8; -#endif - -#define dspot01_room_0Set_001630DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_001F20[] = dspot01_room_0Set_001630DL_001F20; -#else -static const char spot01_room_0Set_001630DL_001F20[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_001F20; -#endif - -#define dspot01_room_0Set_001630DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_006758" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_006758[] = dspot01_room_0Set_001630DL_006758; -#else -static const char spot01_room_0Set_001630DL_006758[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_006758; -#endif - -#define dspot01_room_0Set_001630DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_006B18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_006B18[] = dspot01_room_0Set_001630DL_006B18; -#else -static const char spot01_room_0Set_001630DL_006B18[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_006B18; -#endif - -#define dspot01_room_0Set_001630DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_006EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_006EC0[] = dspot01_room_0Set_001630DL_006EC0; -#else -static const char spot01_room_0Set_001630DL_006EC0[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_006EC0; -#endif - -#define dspot01_room_0Set_001630DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_007418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_007418[] = dspot01_room_0Set_001630DL_007418; -#else -static const char spot01_room_0Set_001630DL_007418[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_007418; -#endif - -#define dspot01_room_0Set_001630DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_007888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_007888[] = dspot01_room_0Set_001630DL_007888; -#else -static const char spot01_room_0Set_001630DL_007888[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_007888; -#endif - -#define dspot01_room_0Set_001630DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_007C18[] = dspot01_room_0Set_001630DL_007C18; -#else -static const char spot01_room_0Set_001630DL_007C18[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_007C18; -#endif - -#define dspot01_room_0Set_001630DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_0086F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_0086F0[] = dspot01_room_0Set_001630DL_0086F0; -#else -static const char spot01_room_0Set_001630DL_0086F0[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_0086F0; -#endif - -#define dspot01_room_0Set_001630DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_003B48[] = dspot01_room_0Set_001630DL_003B48; -#else -static const char spot01_room_0Set_001630DL_003B48[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_003B48; -#endif - -#define dspot01_room_0Set_001630DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_009108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_009108[] = dspot01_room_0Set_001630DL_009108; -#else -static const char spot01_room_0Set_001630DL_009108[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_009108; -#endif - -#define dspot01_room_0Set_001630DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_004DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_004DB0[] = dspot01_room_0Set_001630DL_004DB0; -#else -static const char spot01_room_0Set_001630DL_004DB0[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_004DB0; -#endif - -#define dspot01_room_0Set_001630DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_004420" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_004420[] = dspot01_room_0Set_001630DL_004420; -#else -static const char spot01_room_0Set_001630DL_004420[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_004420; -#endif - -#define dspot01_room_0Set_001630DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_0048C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_0048C8[] = dspot01_room_0Set_001630DL_0048C8; -#else -static const char spot01_room_0Set_001630DL_0048C8[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_0048C8; -#endif - -#define dspot01_room_0Set_001630DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_005AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_005AD0[] = dspot01_room_0Set_001630DL_005AD0; -#else -static const char spot01_room_0Set_001630DL_005AD0[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_005AD0; -#endif - -#define dspot01_room_0Set_001630DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_008EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_008EC8[] = dspot01_room_0Set_001630DL_008EC8; -#else -static const char spot01_room_0Set_001630DL_008EC8[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_008EC8; -#endif - -#define dspot01_room_0Set_001630DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_009A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_009A70[] = dspot01_room_0Set_001630DL_009A70; -#else -static const char spot01_room_0Set_001630DL_009A70[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_009A70; -#endif - -#define dspot01_room_0Set_001630DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_005680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_005680[] = dspot01_room_0Set_001630DL_005680; -#else -static const char spot01_room_0Set_001630DL_005680[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_005680; -#endif - -#define dspot01_room_0Set_001630DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_0063A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_room_0Set_001630DL_0063A0[] = dspot01_room_0Set_001630DL_0063A0; -#else -static const char spot01_room_0Set_001630DL_0063A0[] __attribute__((aligned (2))) = dspot01_room_0Set_001630DL_0063A0; -#endif - +#include "align_asset_macro.h" + +#define dgSpot01DL_009E38 "__OTR__scenes/nonmq/spot01_scene/gSpot01DL_009E38" +static const ALIGN_ASSET(2) char gSpot01DL_009E38[] = dgSpot01DL_009E38; + +#define dspot01_room_0DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0DL_005E48[] = dspot01_room_0DL_005E48; + +#define dspot01_room_0DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0DL_0024E8[] = dspot01_room_0DL_0024E8; + +#define dspot01_room_0DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0DL_001F20[] = dspot01_room_0DL_001F20; + +#define dspot01_room_0DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0DL_006758[] = dspot01_room_0DL_006758; + +#define dspot01_room_0DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0DL_006B18[] = dspot01_room_0DL_006B18; + +#define dspot01_room_0DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0DL_006EC0[] = dspot01_room_0DL_006EC0; + +#define dspot01_room_0DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0DL_007418[] = dspot01_room_0DL_007418; + +#define dspot01_room_0DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0DL_007888[] = dspot01_room_0DL_007888; + +#define dspot01_room_0DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0DL_007C18[] = dspot01_room_0DL_007C18; + +#define dspot01_room_0DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0DL_0086F0[] = dspot01_room_0DL_0086F0; + +#define dspot01_room_0DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0DL_003B48[] = dspot01_room_0DL_003B48; + +#define dspot01_room_0DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0DL_009108[] = dspot01_room_0DL_009108; + +#define dspot01_room_0DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0DL_004DB0[] = dspot01_room_0DL_004DB0; + +#define dspot01_room_0DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0DL_004420[] = dspot01_room_0DL_004420; + +#define dspot01_room_0DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0DL_0048C8[] = dspot01_room_0DL_0048C8; + +#define dspot01_room_0DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0DL_005AD0[] = dspot01_room_0DL_005AD0; + +#define dspot01_room_0DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0DL_008EC8[] = dspot01_room_0DL_008EC8; + +#define dspot01_room_0DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0DL_009A70[] = dspot01_room_0DL_009A70; + +#define dspot01_room_0DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0DL_005680[] = dspot01_room_0DL_005680; + +#define dspot01_room_0DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0DL_0063A0[] = dspot01_room_0DL_0063A0; + +#define dspot01_room_0Set_000C40DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_005E48[] = dspot01_room_0Set_000C40DL_005E48; + +#define dspot01_room_0Set_000C40DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_0024E8[] = dspot01_room_0Set_000C40DL_0024E8; + +#define dspot01_room_0Set_000C40DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_001F20[] = dspot01_room_0Set_000C40DL_001F20; + +#define dspot01_room_0Set_000C40DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_006758[] = dspot01_room_0Set_000C40DL_006758; + +#define dspot01_room_0Set_000C40DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_006B18[] = dspot01_room_0Set_000C40DL_006B18; + +#define dspot01_room_0Set_000C40DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_006EC0[] = dspot01_room_0Set_000C40DL_006EC0; + +#define dspot01_room_0Set_000C40DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_007418[] = dspot01_room_0Set_000C40DL_007418; + +#define dspot01_room_0Set_000C40DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_007888[] = dspot01_room_0Set_000C40DL_007888; + +#define dspot01_room_0Set_000C40DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_007C18[] = dspot01_room_0Set_000C40DL_007C18; + +#define dspot01_room_0Set_000C40DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_0086F0[] = dspot01_room_0Set_000C40DL_0086F0; + +#define dspot01_room_0Set_000C40DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_003B48[] = dspot01_room_0Set_000C40DL_003B48; + +#define dspot01_room_0Set_000C40DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_009108[] = dspot01_room_0Set_000C40DL_009108; + +#define dspot01_room_0Set_000C40DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_004DB0[] = dspot01_room_0Set_000C40DL_004DB0; + +#define dspot01_room_0Set_000C40DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_004420[] = dspot01_room_0Set_000C40DL_004420; + +#define dspot01_room_0Set_000C40DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_0048C8[] = dspot01_room_0Set_000C40DL_0048C8; + +#define dspot01_room_0Set_000C40DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_005AD0[] = dspot01_room_0Set_000C40DL_005AD0; + +#define dspot01_room_0Set_000C40DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_008EC8[] = dspot01_room_0Set_000C40DL_008EC8; + +#define dspot01_room_0Set_000C40DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_009A70[] = dspot01_room_0Set_000C40DL_009A70; + +#define dspot01_room_0Set_000C40DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_005680[] = dspot01_room_0Set_000C40DL_005680; + +#define dspot01_room_0Set_000C40DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000C40DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000C40DL_0063A0[] = dspot01_room_0Set_000C40DL_0063A0; + +#define dspot01_room_0Set_000570DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_005E48[] = dspot01_room_0Set_000570DL_005E48; + +#define dspot01_room_0Set_000570DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_0024E8[] = dspot01_room_0Set_000570DL_0024E8; + +#define dspot01_room_0Set_000570DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_001F20[] = dspot01_room_0Set_000570DL_001F20; + +#define dspot01_room_0Set_000570DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_006758[] = dspot01_room_0Set_000570DL_006758; + +#define dspot01_room_0Set_000570DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_006B18[] = dspot01_room_0Set_000570DL_006B18; + +#define dspot01_room_0Set_000570DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_006EC0[] = dspot01_room_0Set_000570DL_006EC0; + +#define dspot01_room_0Set_000570DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_007418[] = dspot01_room_0Set_000570DL_007418; + +#define dspot01_room_0Set_000570DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_007888[] = dspot01_room_0Set_000570DL_007888; + +#define dspot01_room_0Set_000570DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_007C18[] = dspot01_room_0Set_000570DL_007C18; + +#define dspot01_room_0Set_000570DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_0086F0[] = dspot01_room_0Set_000570DL_0086F0; + +#define dspot01_room_0Set_000570DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_003B48[] = dspot01_room_0Set_000570DL_003B48; + +#define dspot01_room_0Set_000570DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_009108[] = dspot01_room_0Set_000570DL_009108; + +#define dspot01_room_0Set_000570DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_004DB0[] = dspot01_room_0Set_000570DL_004DB0; + +#define dspot01_room_0Set_000570DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_004420[] = dspot01_room_0Set_000570DL_004420; + +#define dspot01_room_0Set_000570DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_0048C8[] = dspot01_room_0Set_000570DL_0048C8; + +#define dspot01_room_0Set_000570DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_005AD0[] = dspot01_room_0Set_000570DL_005AD0; + +#define dspot01_room_0Set_000570DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_008EC8[] = dspot01_room_0Set_000570DL_008EC8; + +#define dspot01_room_0Set_000570DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_009A70[] = dspot01_room_0Set_000570DL_009A70; + +#define dspot01_room_0Set_000570DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_005680[] = dspot01_room_0Set_000570DL_005680; + +#define dspot01_room_0Set_000570DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000570DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000570DL_0063A0[] = dspot01_room_0Set_000570DL_0063A0; + +#define dspot01_room_0Set_000900DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_005E48[] = dspot01_room_0Set_000900DL_005E48; + +#define dspot01_room_0Set_000900DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_0024E8[] = dspot01_room_0Set_000900DL_0024E8; + +#define dspot01_room_0Set_000900DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_001F20[] = dspot01_room_0Set_000900DL_001F20; + +#define dspot01_room_0Set_000900DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_006758[] = dspot01_room_0Set_000900DL_006758; + +#define dspot01_room_0Set_000900DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_006B18[] = dspot01_room_0Set_000900DL_006B18; + +#define dspot01_room_0Set_000900DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_006EC0[] = dspot01_room_0Set_000900DL_006EC0; + +#define dspot01_room_0Set_000900DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_007418[] = dspot01_room_0Set_000900DL_007418; + +#define dspot01_room_0Set_000900DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_007888[] = dspot01_room_0Set_000900DL_007888; + +#define dspot01_room_0Set_000900DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_007C18[] = dspot01_room_0Set_000900DL_007C18; + +#define dspot01_room_0Set_000900DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_0086F0[] = dspot01_room_0Set_000900DL_0086F0; + +#define dspot01_room_0Set_000900DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_003B48[] = dspot01_room_0Set_000900DL_003B48; + +#define dspot01_room_0Set_000900DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_009108[] = dspot01_room_0Set_000900DL_009108; + +#define dspot01_room_0Set_000900DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_004DB0[] = dspot01_room_0Set_000900DL_004DB0; + +#define dspot01_room_0Set_000900DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_004420[] = dspot01_room_0Set_000900DL_004420; + +#define dspot01_room_0Set_000900DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_0048C8[] = dspot01_room_0Set_000900DL_0048C8; + +#define dspot01_room_0Set_000900DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_005AD0[] = dspot01_room_0Set_000900DL_005AD0; + +#define dspot01_room_0Set_000900DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_008EC8[] = dspot01_room_0Set_000900DL_008EC8; + +#define dspot01_room_0Set_000900DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_009A70[] = dspot01_room_0Set_000900DL_009A70; + +#define dspot01_room_0Set_000900DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_005680[] = dspot01_room_0Set_000900DL_005680; + +#define dspot01_room_0Set_000900DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000900DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000900DL_0063A0[] = dspot01_room_0Set_000900DL_0063A0; + +#define dspot01_room_0Set_000FC0DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_005E48[] = dspot01_room_0Set_000FC0DL_005E48; + +#define dspot01_room_0Set_000FC0DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_0024E8[] = dspot01_room_0Set_000FC0DL_0024E8; + +#define dspot01_room_0Set_000FC0DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_001F20[] = dspot01_room_0Set_000FC0DL_001F20; + +#define dspot01_room_0Set_000FC0DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_006758[] = dspot01_room_0Set_000FC0DL_006758; + +#define dspot01_room_0Set_000FC0DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_006B18[] = dspot01_room_0Set_000FC0DL_006B18; + +#define dspot01_room_0Set_000FC0DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_006EC0[] = dspot01_room_0Set_000FC0DL_006EC0; + +#define dspot01_room_0Set_000FC0DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_007418[] = dspot01_room_0Set_000FC0DL_007418; + +#define dspot01_room_0Set_000FC0DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_007888[] = dspot01_room_0Set_000FC0DL_007888; + +#define dspot01_room_0Set_000FC0DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_007C18[] = dspot01_room_0Set_000FC0DL_007C18; + +#define dspot01_room_0Set_000FC0DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_0086F0[] = dspot01_room_0Set_000FC0DL_0086F0; + +#define dspot01_room_0Set_000FC0DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_003B48[] = dspot01_room_0Set_000FC0DL_003B48; + +#define dspot01_room_0Set_000FC0DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_009108[] = dspot01_room_0Set_000FC0DL_009108; + +#define dspot01_room_0Set_000FC0DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_004DB0[] = dspot01_room_0Set_000FC0DL_004DB0; + +#define dspot01_room_0Set_000FC0DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_004420[] = dspot01_room_0Set_000FC0DL_004420; + +#define dspot01_room_0Set_000FC0DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_0048C8[] = dspot01_room_0Set_000FC0DL_0048C8; + +#define dspot01_room_0Set_000FC0DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_005AD0[] = dspot01_room_0Set_000FC0DL_005AD0; + +#define dspot01_room_0Set_000FC0DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_008EC8[] = dspot01_room_0Set_000FC0DL_008EC8; + +#define dspot01_room_0Set_000FC0DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_009A70[] = dspot01_room_0Set_000FC0DL_009A70; + +#define dspot01_room_0Set_000FC0DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_005680[] = dspot01_room_0Set_000FC0DL_005680; + +#define dspot01_room_0Set_000FC0DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_000FC0DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0Set_000FC0DL_0063A0[] = dspot01_room_0Set_000FC0DL_0063A0; + +#define dspot01_room_0Set_0011F0DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_005E48[] = dspot01_room_0Set_0011F0DL_005E48; + +#define dspot01_room_0Set_0011F0DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_0024E8[] = dspot01_room_0Set_0011F0DL_0024E8; + +#define dspot01_room_0Set_0011F0DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_001F20[] = dspot01_room_0Set_0011F0DL_001F20; + +#define dspot01_room_0Set_0011F0DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_006758[] = dspot01_room_0Set_0011F0DL_006758; + +#define dspot01_room_0Set_0011F0DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_006B18[] = dspot01_room_0Set_0011F0DL_006B18; + +#define dspot01_room_0Set_0011F0DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_006EC0[] = dspot01_room_0Set_0011F0DL_006EC0; + +#define dspot01_room_0Set_0011F0DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_007418[] = dspot01_room_0Set_0011F0DL_007418; + +#define dspot01_room_0Set_0011F0DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_007888[] = dspot01_room_0Set_0011F0DL_007888; + +#define dspot01_room_0Set_0011F0DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_007C18[] = dspot01_room_0Set_0011F0DL_007C18; + +#define dspot01_room_0Set_0011F0DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_0086F0[] = dspot01_room_0Set_0011F0DL_0086F0; + +#define dspot01_room_0Set_0011F0DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_003B48[] = dspot01_room_0Set_0011F0DL_003B48; + +#define dspot01_room_0Set_0011F0DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_009108[] = dspot01_room_0Set_0011F0DL_009108; + +#define dspot01_room_0Set_0011F0DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_004DB0[] = dspot01_room_0Set_0011F0DL_004DB0; + +#define dspot01_room_0Set_0011F0DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_004420[] = dspot01_room_0Set_0011F0DL_004420; + +#define dspot01_room_0Set_0011F0DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_0048C8[] = dspot01_room_0Set_0011F0DL_0048C8; + +#define dspot01_room_0Set_0011F0DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_005AD0[] = dspot01_room_0Set_0011F0DL_005AD0; + +#define dspot01_room_0Set_0011F0DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_008EC8[] = dspot01_room_0Set_0011F0DL_008EC8; + +#define dspot01_room_0Set_0011F0DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_009A70[] = dspot01_room_0Set_0011F0DL_009A70; + +#define dspot01_room_0Set_0011F0DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_005680[] = dspot01_room_0Set_0011F0DL_005680; + +#define dspot01_room_0Set_0011F0DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_0011F0DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0Set_0011F0DL_0063A0[] = dspot01_room_0Set_0011F0DL_0063A0; + +#define dspot01_room_0Set_001390DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_005E48[] = dspot01_room_0Set_001390DL_005E48; + +#define dspot01_room_0Set_001390DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_0024E8[] = dspot01_room_0Set_001390DL_0024E8; + +#define dspot01_room_0Set_001390DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_001F20[] = dspot01_room_0Set_001390DL_001F20; + +#define dspot01_room_0Set_001390DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_006758[] = dspot01_room_0Set_001390DL_006758; + +#define dspot01_room_0Set_001390DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_006B18[] = dspot01_room_0Set_001390DL_006B18; + +#define dspot01_room_0Set_001390DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_006EC0[] = dspot01_room_0Set_001390DL_006EC0; + +#define dspot01_room_0Set_001390DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_007418[] = dspot01_room_0Set_001390DL_007418; + +#define dspot01_room_0Set_001390DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_007888[] = dspot01_room_0Set_001390DL_007888; + +#define dspot01_room_0Set_001390DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_007C18[] = dspot01_room_0Set_001390DL_007C18; + +#define dspot01_room_0Set_001390DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_0086F0[] = dspot01_room_0Set_001390DL_0086F0; + +#define dspot01_room_0Set_001390DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_003B48[] = dspot01_room_0Set_001390DL_003B48; + +#define dspot01_room_0Set_001390DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_009108[] = dspot01_room_0Set_001390DL_009108; + +#define dspot01_room_0Set_001390DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_004DB0[] = dspot01_room_0Set_001390DL_004DB0; + +#define dspot01_room_0Set_001390DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_004420[] = dspot01_room_0Set_001390DL_004420; + +#define dspot01_room_0Set_001390DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_0048C8[] = dspot01_room_0Set_001390DL_0048C8; + +#define dspot01_room_0Set_001390DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_005AD0[] = dspot01_room_0Set_001390DL_005AD0; + +#define dspot01_room_0Set_001390DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_008EC8[] = dspot01_room_0Set_001390DL_008EC8; + +#define dspot01_room_0Set_001390DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_009A70[] = dspot01_room_0Set_001390DL_009A70; + +#define dspot01_room_0Set_001390DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_005680[] = dspot01_room_0Set_001390DL_005680; + +#define dspot01_room_0Set_001390DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001390DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001390DL_0063A0[] = dspot01_room_0Set_001390DL_0063A0; + +#define dspot01_room_0Set_001480DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_005E48[] = dspot01_room_0Set_001480DL_005E48; + +#define dspot01_room_0Set_001480DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_0024E8[] = dspot01_room_0Set_001480DL_0024E8; + +#define dspot01_room_0Set_001480DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_001F20[] = dspot01_room_0Set_001480DL_001F20; + +#define dspot01_room_0Set_001480DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_006758[] = dspot01_room_0Set_001480DL_006758; + +#define dspot01_room_0Set_001480DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_006B18[] = dspot01_room_0Set_001480DL_006B18; + +#define dspot01_room_0Set_001480DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_006EC0[] = dspot01_room_0Set_001480DL_006EC0; + +#define dspot01_room_0Set_001480DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_007418[] = dspot01_room_0Set_001480DL_007418; + +#define dspot01_room_0Set_001480DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_007888[] = dspot01_room_0Set_001480DL_007888; + +#define dspot01_room_0Set_001480DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_007C18[] = dspot01_room_0Set_001480DL_007C18; + +#define dspot01_room_0Set_001480DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_0086F0[] = dspot01_room_0Set_001480DL_0086F0; + +#define dspot01_room_0Set_001480DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_003B48[] = dspot01_room_0Set_001480DL_003B48; + +#define dspot01_room_0Set_001480DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_009108[] = dspot01_room_0Set_001480DL_009108; + +#define dspot01_room_0Set_001480DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_004DB0[] = dspot01_room_0Set_001480DL_004DB0; + +#define dspot01_room_0Set_001480DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_004420[] = dspot01_room_0Set_001480DL_004420; + +#define dspot01_room_0Set_001480DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_0048C8[] = dspot01_room_0Set_001480DL_0048C8; + +#define dspot01_room_0Set_001480DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_005AD0[] = dspot01_room_0Set_001480DL_005AD0; + +#define dspot01_room_0Set_001480DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_008EC8[] = dspot01_room_0Set_001480DL_008EC8; + +#define dspot01_room_0Set_001480DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_009A70[] = dspot01_room_0Set_001480DL_009A70; + +#define dspot01_room_0Set_001480DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_005680[] = dspot01_room_0Set_001480DL_005680; + +#define dspot01_room_0Set_001480DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001480DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001480DL_0063A0[] = dspot01_room_0Set_001480DL_0063A0; + +#define dspot01_room_0Set_001630DL_005E48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_005E48" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_005E48[] = dspot01_room_0Set_001630DL_005E48; + +#define dspot01_room_0Set_001630DL_0024E8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_0024E8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_0024E8[] = dspot01_room_0Set_001630DL_0024E8; + +#define dspot01_room_0Set_001630DL_001F20 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_001F20" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_001F20[] = dspot01_room_0Set_001630DL_001F20; + +#define dspot01_room_0Set_001630DL_006758 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_006758" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_006758[] = dspot01_room_0Set_001630DL_006758; + +#define dspot01_room_0Set_001630DL_006B18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_006B18" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_006B18[] = dspot01_room_0Set_001630DL_006B18; + +#define dspot01_room_0Set_001630DL_006EC0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_006EC0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_006EC0[] = dspot01_room_0Set_001630DL_006EC0; + +#define dspot01_room_0Set_001630DL_007418 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_007418" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_007418[] = dspot01_room_0Set_001630DL_007418; + +#define dspot01_room_0Set_001630DL_007888 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_007888" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_007888[] = dspot01_room_0Set_001630DL_007888; + +#define dspot01_room_0Set_001630DL_007C18 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_007C18" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_007C18[] = dspot01_room_0Set_001630DL_007C18; + +#define dspot01_room_0Set_001630DL_0086F0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_0086F0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_0086F0[] = dspot01_room_0Set_001630DL_0086F0; + +#define dspot01_room_0Set_001630DL_003B48 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_003B48" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_003B48[] = dspot01_room_0Set_001630DL_003B48; + +#define dspot01_room_0Set_001630DL_009108 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_009108" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_009108[] = dspot01_room_0Set_001630DL_009108; + +#define dspot01_room_0Set_001630DL_004DB0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_004DB0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_004DB0[] = dspot01_room_0Set_001630DL_004DB0; + +#define dspot01_room_0Set_001630DL_004420 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_004420" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_004420[] = dspot01_room_0Set_001630DL_004420; + +#define dspot01_room_0Set_001630DL_0048C8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_0048C8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_0048C8[] = dspot01_room_0Set_001630DL_0048C8; + +#define dspot01_room_0Set_001630DL_005AD0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_005AD0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_005AD0[] = dspot01_room_0Set_001630DL_005AD0; + +#define dspot01_room_0Set_001630DL_008EC8 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_008EC8" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_008EC8[] = dspot01_room_0Set_001630DL_008EC8; + +#define dspot01_room_0Set_001630DL_009A70 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_009A70" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_009A70[] = dspot01_room_0Set_001630DL_009A70; + +#define dspot01_room_0Set_001630DL_005680 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_005680" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_005680[] = dspot01_room_0Set_001630DL_005680; + +#define dspot01_room_0Set_001630DL_0063A0 "__OTR__scenes/nonmq/spot01_scene/spot01_room_0Set_001630DL_0063A0" +static const ALIGN_ASSET(2) char spot01_room_0Set_001630DL_0063A0[] = dspot01_room_0Set_001630DL_0063A0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot01/spot01_scene.h b/soh/assets/scenes/overworld/spot01/spot01_scene.h index ca51259b6..752c6a5df 100644 --- a/soh/assets/scenes/overworld/spot01/spot01_scene.h +++ b/soh/assets/scenes/overworld/spot01/spot01_scene.h @@ -1,304 +1,145 @@ #pragma once + +#include "align_asset_macro.h" + #define dgKakarikoVillageIntroCs "__OTR__scenes/nonmq/spot01_scene/gKakarikoVillageIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillageIntroCs[] = dgKakarikoVillageIntroCs; -#else -static const char gKakarikoVillageIntroCs[] __attribute__((aligned (2))) = dgKakarikoVillageIntroCs; -#endif - +static const ALIGN_ASSET(2) char gKakarikoVillageIntroCs[] = dgKakarikoVillageIntroCs; + #define dgKakarikoVillageDayWindowTex "__OTR__scenes/nonmq/spot01_scene/gKakarikoVillageDayWindowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillageDayWindowTex[] = dgKakarikoVillageDayWindowTex; -#else -static const char gKakarikoVillageDayWindowTex[] __attribute__((aligned (2))) = dgKakarikoVillageDayWindowTex; -#endif - +static const ALIGN_ASSET(2) char gKakarikoVillageDayWindowTex[] = dgKakarikoVillageDayWindowTex; + #define dgKakarikoVillageNightWindowTex "__OTR__scenes/nonmq/spot01_scene/gKakarikoVillageNightWindowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillageNightWindowTex[] = dgKakarikoVillageNightWindowTex; -#else -static const char gKakarikoVillageNightWindowTex[] __attribute__((aligned (2))) = dgKakarikoVillageNightWindowTex; -#endif - +static const ALIGN_ASSET(2) char gKakarikoVillageNightWindowTex[] = dgKakarikoVillageNightWindowTex; + #define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneCollisionHeader_004A1C[] = dspot01_sceneCollisionHeader_004A1C; -#else -static const char spot01_sceneCollisionHeader_004A1C[] __attribute__((aligned (2))) = dspot01_sceneCollisionHeader_004A1C; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneCollisionHeader_004A1C[] = dspot01_sceneCollisionHeader_004A1C; + #define dspot01_sceneTex_013B50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_013B50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_013B50[] = dspot01_sceneTex_013B50; -#else -static const char spot01_sceneTex_013B50[] __attribute__((aligned (2))) = dspot01_sceneTex_013B50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_013B50[] = dspot01_sceneTex_013B50; + #define dspot01_sceneTex_012B50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_012B50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_012B50[] = dspot01_sceneTex_012B50; -#else -static const char spot01_sceneTex_012B50[] __attribute__((aligned (2))) = dspot01_sceneTex_012B50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_012B50[] = dspot01_sceneTex_012B50; + #define dspot01_sceneTex_00AA50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00AA50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00AA50[] = dspot01_sceneTex_00AA50; -#else -static const char spot01_sceneTex_00AA50[] __attribute__((aligned (2))) = dspot01_sceneTex_00AA50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00AA50[] = dspot01_sceneTex_00AA50; + #define dspot01_sceneTex_018B50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_018B50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_018B50[] = dspot01_sceneTex_018B50; -#else -static const char spot01_sceneTex_018B50[] __attribute__((aligned (2))) = dspot01_sceneTex_018B50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_018B50[] = dspot01_sceneTex_018B50; + #define dspot01_sceneTex_019350 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_019350" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_019350[] = dspot01_sceneTex_019350; -#else -static const char spot01_sceneTex_019350[] __attribute__((aligned (2))) = dspot01_sceneTex_019350; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_019350[] = dspot01_sceneTex_019350; + #define dspot01_sceneTex_01B750 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_01B750" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_01B750[] = dspot01_sceneTex_01B750; -#else -static const char spot01_sceneTex_01B750[] __attribute__((aligned (2))) = dspot01_sceneTex_01B750; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_01B750[] = dspot01_sceneTex_01B750; + #define dspot01_sceneTex_017B50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_017B50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_017B50[] = dspot01_sceneTex_017B50; -#else -static const char spot01_sceneTex_017B50[] __attribute__((aligned (2))) = dspot01_sceneTex_017B50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_017B50[] = dspot01_sceneTex_017B50; + #define dspot01_sceneTLUT_00A870 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTLUT_00A870" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTLUT_00A870[] = dspot01_sceneTLUT_00A870; -#else -static const char spot01_sceneTLUT_00A870[] __attribute__((aligned (2))) = dspot01_sceneTLUT_00A870; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTLUT_00A870[] = dspot01_sceneTLUT_00A870; + #define dspot01_sceneTex_00E550 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00E550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00E550[] = dspot01_sceneTex_00E550; -#else -static const char spot01_sceneTex_00E550[] __attribute__((aligned (2))) = dspot01_sceneTex_00E550; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00E550[] = dspot01_sceneTex_00E550; + #define dspot01_sceneTex_00CD50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00CD50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00CD50[] = dspot01_sceneTex_00CD50; -#else -static const char spot01_sceneTex_00CD50[] __attribute__((aligned (2))) = dspot01_sceneTex_00CD50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00CD50[] = dspot01_sceneTex_00CD50; + #define dspot01_sceneTex_012950 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_012950" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_012950[] = dspot01_sceneTex_012950; -#else -static const char spot01_sceneTex_012950[] __attribute__((aligned (2))) = dspot01_sceneTex_012950; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_012950[] = dspot01_sceneTex_012950; + #define dspot01_sceneTex_01BF50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_01BF50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_01BF50[] = dspot01_sceneTex_01BF50; -#else -static const char spot01_sceneTex_01BF50[] __attribute__((aligned (2))) = dspot01_sceneTex_01BF50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_01BF50[] = dspot01_sceneTex_01BF50; + #define dspot01_sceneTex_00BF50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00BF50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00BF50[] = dspot01_sceneTex_00BF50; -#else -static const char spot01_sceneTex_00BF50[] __attribute__((aligned (2))) = dspot01_sceneTex_00BF50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00BF50[] = dspot01_sceneTex_00BF50; + #define dspot01_sceneTex_00C950 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00C950" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00C950[] = dspot01_sceneTex_00C950; -#else -static const char spot01_sceneTex_00C950[] __attribute__((aligned (2))) = dspot01_sceneTex_00C950; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00C950[] = dspot01_sceneTex_00C950; + #define dspot01_sceneTex_014F50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_014F50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_014F50[] = dspot01_sceneTex_014F50; -#else -static const char spot01_sceneTex_014F50[] __attribute__((aligned (2))) = dspot01_sceneTex_014F50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_014F50[] = dspot01_sceneTex_014F50; + #define dspot01_sceneTex_014B50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_014B50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_014B50[] = dspot01_sceneTex_014B50; -#else -static const char spot01_sceneTex_014B50[] __attribute__((aligned (2))) = dspot01_sceneTex_014B50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_014B50[] = dspot01_sceneTex_014B50; + #define dspot01_sceneTex_00B750 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00B750" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00B750[] = dspot01_sceneTex_00B750; -#else -static const char spot01_sceneTex_00B750[] __attribute__((aligned (2))) = dspot01_sceneTex_00B750; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00B750[] = dspot01_sceneTex_00B750; + #define dspot01_sceneTex_019B50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_019B50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_019B50[] = dspot01_sceneTex_019B50; -#else -static const char spot01_sceneTex_019B50[] __attribute__((aligned (2))) = dspot01_sceneTex_019B50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_019B50[] = dspot01_sceneTex_019B50; + #define dspot01_sceneTex_00C750 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00C750" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00C750[] = dspot01_sceneTex_00C750; -#else -static const char spot01_sceneTex_00C750[] __attribute__((aligned (2))) = dspot01_sceneTex_00C750; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00C750[] = dspot01_sceneTex_00C750; + #define dspot01_sceneTex_014750 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_014750" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_014750[] = dspot01_sceneTex_014750; -#else -static const char spot01_sceneTex_014750[] __attribute__((aligned (2))) = dspot01_sceneTex_014750; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_014750[] = dspot01_sceneTex_014750; + #define dspot01_sceneTex_014350 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_014350" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_014350[] = dspot01_sceneTex_014350; -#else -static const char spot01_sceneTex_014350[] __attribute__((aligned (2))) = dspot01_sceneTex_014350; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_014350[] = dspot01_sceneTex_014350; + #define dspot01_sceneTex_015350 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_015350" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_015350[] = dspot01_sceneTex_015350; -#else -static const char spot01_sceneTex_015350[] __attribute__((aligned (2))) = dspot01_sceneTex_015350; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_015350[] = dspot01_sceneTex_015350; + #define dspot01_sceneTex_01AF50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_01AF50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_01AF50[] = dspot01_sceneTex_01AF50; -#else -static const char spot01_sceneTex_01AF50[] __attribute__((aligned (2))) = dspot01_sceneTex_01AF50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_01AF50[] = dspot01_sceneTex_01AF50; + #define dspot01_sceneTex_00ED50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00ED50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00ED50[] = dspot01_sceneTex_00ED50; -#else -static const char spot01_sceneTex_00ED50[] __attribute__((aligned (2))) = dspot01_sceneTex_00ED50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00ED50[] = dspot01_sceneTex_00ED50; + #define dspot01_sceneTLUT_00AA28 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTLUT_00AA28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTLUT_00AA28[] = dspot01_sceneTLUT_00AA28; -#else -static const char spot01_sceneTLUT_00AA28[] __attribute__((aligned (2))) = dspot01_sceneTLUT_00AA28; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTLUT_00AA28[] = dspot01_sceneTLUT_00AA28; + #define dspot01_sceneTex_00D550 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00D550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00D550[] = dspot01_sceneTex_00D550; -#else -static const char spot01_sceneTex_00D550[] __attribute__((aligned (2))) = dspot01_sceneTex_00D550; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00D550[] = dspot01_sceneTex_00D550; + #define dspot01_sceneTex_00DD50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00DD50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00DD50[] = dspot01_sceneTex_00DD50; -#else -static const char spot01_sceneTex_00DD50[] __attribute__((aligned (2))) = dspot01_sceneTex_00DD50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00DD50[] = dspot01_sceneTex_00DD50; + #define dspot01_sceneTex_011950 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_011950" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_011950[] = dspot01_sceneTex_011950; -#else -static const char spot01_sceneTex_011950[] __attribute__((aligned (2))) = dspot01_sceneTex_011950; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_011950[] = dspot01_sceneTex_011950; + #define dspot01_sceneTex_01A750 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_01A750" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_01A750[] = dspot01_sceneTex_01A750; -#else -static const char spot01_sceneTex_01A750[] __attribute__((aligned (2))) = dspot01_sceneTex_01A750; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_01A750[] = dspot01_sceneTex_01A750; + #define dspot01_sceneTex_019F50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_019F50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_019F50[] = dspot01_sceneTex_019F50; -#else -static const char spot01_sceneTex_019F50[] __attribute__((aligned (2))) = dspot01_sceneTex_019F50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_019F50[] = dspot01_sceneTex_019F50; + #define dspot01_sceneTex_018350 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_018350" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_018350[] = dspot01_sceneTex_018350; -#else -static const char spot01_sceneTex_018350[] __attribute__((aligned (2))) = dspot01_sceneTex_018350; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_018350[] = dspot01_sceneTex_018350; + #define dspot01_sceneTex_00BB50 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00BB50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00BB50[] = dspot01_sceneTex_00BB50; -#else -static const char spot01_sceneTex_00BB50[] __attribute__((aligned (2))) = dspot01_sceneTex_00BB50; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00BB50[] = dspot01_sceneTex_00BB50; + #define dspot01_sceneTex_010950 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_010950" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_010950[] = dspot01_sceneTex_010950; -#else -static const char spot01_sceneTex_010950[] __attribute__((aligned (2))) = dspot01_sceneTex_010950; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_010950[] = dspot01_sceneTex_010950; + #define dspot01_sceneTex_010150 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_010150" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_010150[] = dspot01_sceneTex_010150; -#else -static const char spot01_sceneTex_010150[] __attribute__((aligned (2))) = dspot01_sceneTex_010150; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_010150[] = dspot01_sceneTex_010150; + #define dspot01_sceneTex_00F950 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00F950" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00F950[] = dspot01_sceneTex_00F950; -#else -static const char spot01_sceneTex_00F950[] __attribute__((aligned (2))) = dspot01_sceneTex_00F950; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00F950[] = dspot01_sceneTex_00F950; + #define dspot01_sceneTex_00F550 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00F550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00F550[] = dspot01_sceneTex_00F550; -#else -static const char spot01_sceneTex_00F550[] __attribute__((aligned (2))) = dspot01_sceneTex_00F550; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00F550[] = dspot01_sceneTex_00F550; + #define dspot01_sceneTex_00B350 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00B350" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00B350[] = dspot01_sceneTex_00B350; -#else -static const char spot01_sceneTex_00B350[] __attribute__((aligned (2))) = dspot01_sceneTex_00B350; -#endif - +static const ALIGN_ASSET(2) char spot01_sceneTex_00B350[] = dspot01_sceneTex_00B350; + #define dspot01_sceneTex_00B250 "__OTR__scenes/nonmq/spot01_scene/spot01_sceneTex_00B250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot01_sceneTex_00B250[] = dspot01_sceneTex_00B250; -#else -static const char spot01_sceneTex_00B250[] __attribute__((aligned (2))) = dspot01_sceneTex_00B250; -#endif - -#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" -#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" -#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" -#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" -#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" -#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" -#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" +static const ALIGN_ASSET(2) char spot01_sceneTex_00B250[] = dspot01_sceneTex_00B250; + #define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" +#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" + +#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" + +#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" + +#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" + +#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" + +#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" + +#define dspot01_sceneCollisionHeader_004A1C "__OTR__scenes/nonmq/spot01_scene/spot01_sceneCollisionHeader_004A1C" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot02/spot02_room_0.h b/soh/assets/scenes/overworld/spot02/spot02_room_0.h index 637400f78..827f0332c 100644 --- a/soh/assets/scenes/overworld/spot02/spot02_room_0.h +++ b/soh/assets/scenes/overworld/spot02/spot02_room_0.h @@ -1,387 +1,168 @@ #pragma once -#define dgSpot02DL_0026D0 "__OTR__scenes/nonmq/spot02_scene/gSpot02DL_0026D0" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot02DL_0026D0[] = dgSpot02DL_0026D0; -#else -static const char gSpot02DL_0026D0[] __attribute__((aligned (2))) = dgSpot02DL_0026D0; -#endif - -#define dspot02_room_0DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_0025E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_0025E0[] = dspot02_room_0DL_0025E0; -#else -static const char spot02_room_0DL_0025E0[] __attribute__((aligned (2))) = dspot02_room_0DL_0025E0; -#endif - -#define dspot02_room_0DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_001AB0[] = dspot02_room_0DL_001AB0; -#else -static const char spot02_room_0DL_001AB0[] __attribute__((aligned (2))) = dspot02_room_0DL_001AB0; -#endif - -#define dspot02_room_0DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_001D18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_001D18[] = dspot02_room_0DL_001D18; -#else -static const char spot02_room_0DL_001D18[] __attribute__((aligned (2))) = dspot02_room_0DL_001D18; -#endif - -#define dspot02_room_0DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_001480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_001480[] = dspot02_room_0DL_001480; -#else -static const char spot02_room_0DL_001480[] __attribute__((aligned (2))) = dspot02_room_0DL_001480; -#endif - -#define dspot02_room_0DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_000D70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_000D70[] = dspot02_room_0DL_000D70; -#else -static const char spot02_room_0DL_000D70[] __attribute__((aligned (2))) = dspot02_room_0DL_000D70; -#endif - -#define dspot02_room_0DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_002230[] = dspot02_room_0DL_002230; -#else -static const char spot02_room_0DL_002230[] __attribute__((aligned (2))) = dspot02_room_0DL_002230; -#endif - -#define dspot02_room_0DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_002030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_002030[] = dspot02_room_0DL_002030; -#else -static const char spot02_room_0DL_002030[] __attribute__((aligned (2))) = dspot02_room_0DL_002030; -#endif - -#define dspot02_room_0DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_000AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_000AB0[] = dspot02_room_0DL_000AB0; -#else -static const char spot02_room_0DL_000AB0[] __attribute__((aligned (2))) = dspot02_room_0DL_000AB0; -#endif - -#define dspot02_room_0DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0DL_001170[] = dspot02_room_0DL_001170; -#else -static const char spot02_room_0DL_001170[] __attribute__((aligned (2))) = dspot02_room_0DL_001170; -#endif - -#define dspot02_room_0Set_000650DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_0025E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_0025E0[] = dspot02_room_0Set_000650DL_0025E0; -#else -static const char spot02_room_0Set_000650DL_0025E0[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_0025E0; -#endif - -#define dspot02_room_0Set_000650DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_001AB0[] = dspot02_room_0Set_000650DL_001AB0; -#else -static const char spot02_room_0Set_000650DL_001AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_001AB0; -#endif - -#define dspot02_room_0Set_000650DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_001D18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_001D18[] = dspot02_room_0Set_000650DL_001D18; -#else -static const char spot02_room_0Set_000650DL_001D18[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_001D18; -#endif - -#define dspot02_room_0Set_000650DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_001480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_001480[] = dspot02_room_0Set_000650DL_001480; -#else -static const char spot02_room_0Set_000650DL_001480[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_001480; -#endif - -#define dspot02_room_0Set_000650DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_000D70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_000D70[] = dspot02_room_0Set_000650DL_000D70; -#else -static const char spot02_room_0Set_000650DL_000D70[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_000D70; -#endif - -#define dspot02_room_0Set_000650DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_002230[] = dspot02_room_0Set_000650DL_002230; -#else -static const char spot02_room_0Set_000650DL_002230[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_002230; -#endif - -#define dspot02_room_0Set_000650DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_002030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_002030[] = dspot02_room_0Set_000650DL_002030; -#else -static const char spot02_room_0Set_000650DL_002030[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_002030; -#endif - -#define dspot02_room_0Set_000650DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_000AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_000AB0[] = dspot02_room_0Set_000650DL_000AB0; -#else -static const char spot02_room_0Set_000650DL_000AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_000AB0; -#endif - -#define dspot02_room_0Set_000650DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000650DL_001170[] = dspot02_room_0Set_000650DL_001170; -#else -static const char spot02_room_0Set_000650DL_001170[] __attribute__((aligned (2))) = dspot02_room_0Set_000650DL_001170; -#endif - -#define dspot02_room_0Set_000290DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_0025E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_0025E0[] = dspot02_room_0Set_000290DL_0025E0; -#else -static const char spot02_room_0Set_000290DL_0025E0[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_0025E0; -#endif - -#define dspot02_room_0Set_000290DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_001AB0[] = dspot02_room_0Set_000290DL_001AB0; -#else -static const char spot02_room_0Set_000290DL_001AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_001AB0; -#endif - -#define dspot02_room_0Set_000290DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_001D18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_001D18[] = dspot02_room_0Set_000290DL_001D18; -#else -static const char spot02_room_0Set_000290DL_001D18[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_001D18; -#endif - -#define dspot02_room_0Set_000290DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_001480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_001480[] = dspot02_room_0Set_000290DL_001480; -#else -static const char spot02_room_0Set_000290DL_001480[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_001480; -#endif - -#define dspot02_room_0Set_000290DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_000D70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_000D70[] = dspot02_room_0Set_000290DL_000D70; -#else -static const char spot02_room_0Set_000290DL_000D70[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_000D70; -#endif - -#define dspot02_room_0Set_000290DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_002230[] = dspot02_room_0Set_000290DL_002230; -#else -static const char spot02_room_0Set_000290DL_002230[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_002230; -#endif - -#define dspot02_room_0Set_000290DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_002030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_002030[] = dspot02_room_0Set_000290DL_002030; -#else -static const char spot02_room_0Set_000290DL_002030[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_002030; -#endif - -#define dspot02_room_0Set_000290DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_000AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_000AB0[] = dspot02_room_0Set_000290DL_000AB0; -#else -static const char spot02_room_0Set_000290DL_000AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_000AB0; -#endif - -#define dspot02_room_0Set_000290DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000290DL_001170[] = dspot02_room_0Set_000290DL_001170; -#else -static const char spot02_room_0Set_000290DL_001170[] __attribute__((aligned (2))) = dspot02_room_0Set_000290DL_001170; -#endif - -#define dspot02_room_0Set_000470DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_0025E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_0025E0[] = dspot02_room_0Set_000470DL_0025E0; -#else -static const char spot02_room_0Set_000470DL_0025E0[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_0025E0; -#endif - -#define dspot02_room_0Set_000470DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_001AB0[] = dspot02_room_0Set_000470DL_001AB0; -#else -static const char spot02_room_0Set_000470DL_001AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_001AB0; -#endif - -#define dspot02_room_0Set_000470DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_001D18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_001D18[] = dspot02_room_0Set_000470DL_001D18; -#else -static const char spot02_room_0Set_000470DL_001D18[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_001D18; -#endif - -#define dspot02_room_0Set_000470DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_001480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_001480[] = dspot02_room_0Set_000470DL_001480; -#else -static const char spot02_room_0Set_000470DL_001480[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_001480; -#endif - -#define dspot02_room_0Set_000470DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_000D70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_000D70[] = dspot02_room_0Set_000470DL_000D70; -#else -static const char spot02_room_0Set_000470DL_000D70[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_000D70; -#endif - -#define dspot02_room_0Set_000470DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_002230[] = dspot02_room_0Set_000470DL_002230; -#else -static const char spot02_room_0Set_000470DL_002230[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_002230; -#endif - -#define dspot02_room_0Set_000470DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_002030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_002030[] = dspot02_room_0Set_000470DL_002030; -#else -static const char spot02_room_0Set_000470DL_002030[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_002030; -#endif - -#define dspot02_room_0Set_000470DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_000AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_000AB0[] = dspot02_room_0Set_000470DL_000AB0; -#else -static const char spot02_room_0Set_000470DL_000AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_000AB0; -#endif - -#define dspot02_room_0Set_000470DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000470DL_001170[] = dspot02_room_0Set_000470DL_001170; -#else -static const char spot02_room_0Set_000470DL_001170[] __attribute__((aligned (2))) = dspot02_room_0Set_000470DL_001170; -#endif - -#define dspot02_room_0Set_000830DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_0025E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_0025E0[] = dspot02_room_0Set_000830DL_0025E0; -#else -static const char spot02_room_0Set_000830DL_0025E0[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_0025E0; -#endif - -#define dspot02_room_0Set_000830DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_001AB0[] = dspot02_room_0Set_000830DL_001AB0; -#else -static const char spot02_room_0Set_000830DL_001AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_001AB0; -#endif - -#define dspot02_room_0Set_000830DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_001D18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_001D18[] = dspot02_room_0Set_000830DL_001D18; -#else -static const char spot02_room_0Set_000830DL_001D18[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_001D18; -#endif - -#define dspot02_room_0Set_000830DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_001480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_001480[] = dspot02_room_0Set_000830DL_001480; -#else -static const char spot02_room_0Set_000830DL_001480[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_001480; -#endif - -#define dspot02_room_0Set_000830DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_000D70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_000D70[] = dspot02_room_0Set_000830DL_000D70; -#else -static const char spot02_room_0Set_000830DL_000D70[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_000D70; -#endif - -#define dspot02_room_0Set_000830DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_002230[] = dspot02_room_0Set_000830DL_002230; -#else -static const char spot02_room_0Set_000830DL_002230[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_002230; -#endif - -#define dspot02_room_0Set_000830DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_002030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_002030[] = dspot02_room_0Set_000830DL_002030; -#else -static const char spot02_room_0Set_000830DL_002030[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_002030; -#endif - -#define dspot02_room_0Set_000830DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_000AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_000AB0[] = dspot02_room_0Set_000830DL_000AB0; -#else -static const char spot02_room_0Set_000830DL_000AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_000AB0; -#endif - -#define dspot02_room_0Set_000830DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000830DL_001170[] = dspot02_room_0Set_000830DL_001170; -#else -static const char spot02_room_0Set_000830DL_001170[] __attribute__((aligned (2))) = dspot02_room_0Set_000830DL_001170; -#endif - -#define dspot02_room_0Set_000900DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_0025E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_0025E0[] = dspot02_room_0Set_000900DL_0025E0; -#else -static const char spot02_room_0Set_000900DL_0025E0[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_0025E0; -#endif - -#define dspot02_room_0Set_000900DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_001AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_001AB0[] = dspot02_room_0Set_000900DL_001AB0; -#else -static const char spot02_room_0Set_000900DL_001AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_001AB0; -#endif - -#define dspot02_room_0Set_000900DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_001D18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_001D18[] = dspot02_room_0Set_000900DL_001D18; -#else -static const char spot02_room_0Set_000900DL_001D18[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_001D18; -#endif - -#define dspot02_room_0Set_000900DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_001480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_001480[] = dspot02_room_0Set_000900DL_001480; -#else -static const char spot02_room_0Set_000900DL_001480[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_001480; -#endif - -#define dspot02_room_0Set_000900DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_000D70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_000D70[] = dspot02_room_0Set_000900DL_000D70; -#else -static const char spot02_room_0Set_000900DL_000D70[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_000D70; -#endif - -#define dspot02_room_0Set_000900DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_002230[] = dspot02_room_0Set_000900DL_002230; -#else -static const char spot02_room_0Set_000900DL_002230[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_002230; -#endif - -#define dspot02_room_0Set_000900DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_002030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_002030[] = dspot02_room_0Set_000900DL_002030; -#else -static const char spot02_room_0Set_000900DL_002030[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_002030; -#endif - -#define dspot02_room_0Set_000900DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_000AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_000AB0[] = dspot02_room_0Set_000900DL_000AB0; -#else -static const char spot02_room_0Set_000900DL_000AB0[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_000AB0; -#endif - -#define dspot02_room_0Set_000900DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_001170" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_0Set_000900DL_001170[] = dspot02_room_0Set_000900DL_001170; -#else -static const char spot02_room_0Set_000900DL_001170[] __attribute__((aligned (2))) = dspot02_room_0Set_000900DL_001170; -#endif - +#include "align_asset_macro.h" + +#define dgSpot02DL_0026D0 "__OTR__scenes/nonmq/spot02_scene/gSpot02DL_0026D0" +static const ALIGN_ASSET(2) char gSpot02DL_0026D0[] = dgSpot02DL_0026D0; + +#define dspot02_room_0DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_0025E0" +static const ALIGN_ASSET(2) char spot02_room_0DL_0025E0[] = dspot02_room_0DL_0025E0; + +#define dspot02_room_0DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_001AB0" +static const ALIGN_ASSET(2) char spot02_room_0DL_001AB0[] = dspot02_room_0DL_001AB0; + +#define dspot02_room_0DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_001D18" +static const ALIGN_ASSET(2) char spot02_room_0DL_001D18[] = dspot02_room_0DL_001D18; + +#define dspot02_room_0DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_001480" +static const ALIGN_ASSET(2) char spot02_room_0DL_001480[] = dspot02_room_0DL_001480; + +#define dspot02_room_0DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_000D70" +static const ALIGN_ASSET(2) char spot02_room_0DL_000D70[] = dspot02_room_0DL_000D70; + +#define dspot02_room_0DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_002230" +static const ALIGN_ASSET(2) char spot02_room_0DL_002230[] = dspot02_room_0DL_002230; + +#define dspot02_room_0DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_002030" +static const ALIGN_ASSET(2) char spot02_room_0DL_002030[] = dspot02_room_0DL_002030; + +#define dspot02_room_0DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_000AB0" +static const ALIGN_ASSET(2) char spot02_room_0DL_000AB0[] = dspot02_room_0DL_000AB0; + +#define dspot02_room_0DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0DL_001170" +static const ALIGN_ASSET(2) char spot02_room_0DL_001170[] = dspot02_room_0DL_001170; + +#define dspot02_room_0Set_000650DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_0025E0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_0025E0[] = dspot02_room_0Set_000650DL_0025E0; + +#define dspot02_room_0Set_000650DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_001AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_001AB0[] = dspot02_room_0Set_000650DL_001AB0; + +#define dspot02_room_0Set_000650DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_001D18" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_001D18[] = dspot02_room_0Set_000650DL_001D18; + +#define dspot02_room_0Set_000650DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_001480" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_001480[] = dspot02_room_0Set_000650DL_001480; + +#define dspot02_room_0Set_000650DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_000D70" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_000D70[] = dspot02_room_0Set_000650DL_000D70; + +#define dspot02_room_0Set_000650DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_002230" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_002230[] = dspot02_room_0Set_000650DL_002230; + +#define dspot02_room_0Set_000650DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_002030" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_002030[] = dspot02_room_0Set_000650DL_002030; + +#define dspot02_room_0Set_000650DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_000AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_000AB0[] = dspot02_room_0Set_000650DL_000AB0; + +#define dspot02_room_0Set_000650DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000650DL_001170" +static const ALIGN_ASSET(2) char spot02_room_0Set_000650DL_001170[] = dspot02_room_0Set_000650DL_001170; + +#define dspot02_room_0Set_000290DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_0025E0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_0025E0[] = dspot02_room_0Set_000290DL_0025E0; + +#define dspot02_room_0Set_000290DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_001AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_001AB0[] = dspot02_room_0Set_000290DL_001AB0; + +#define dspot02_room_0Set_000290DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_001D18" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_001D18[] = dspot02_room_0Set_000290DL_001D18; + +#define dspot02_room_0Set_000290DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_001480" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_001480[] = dspot02_room_0Set_000290DL_001480; + +#define dspot02_room_0Set_000290DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_000D70" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_000D70[] = dspot02_room_0Set_000290DL_000D70; + +#define dspot02_room_0Set_000290DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_002230" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_002230[] = dspot02_room_0Set_000290DL_002230; + +#define dspot02_room_0Set_000290DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_002030" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_002030[] = dspot02_room_0Set_000290DL_002030; + +#define dspot02_room_0Set_000290DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_000AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_000AB0[] = dspot02_room_0Set_000290DL_000AB0; + +#define dspot02_room_0Set_000290DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000290DL_001170" +static const ALIGN_ASSET(2) char spot02_room_0Set_000290DL_001170[] = dspot02_room_0Set_000290DL_001170; + +#define dspot02_room_0Set_000470DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_0025E0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_0025E0[] = dspot02_room_0Set_000470DL_0025E0; + +#define dspot02_room_0Set_000470DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_001AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_001AB0[] = dspot02_room_0Set_000470DL_001AB0; + +#define dspot02_room_0Set_000470DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_001D18" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_001D18[] = dspot02_room_0Set_000470DL_001D18; + +#define dspot02_room_0Set_000470DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_001480" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_001480[] = dspot02_room_0Set_000470DL_001480; + +#define dspot02_room_0Set_000470DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_000D70" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_000D70[] = dspot02_room_0Set_000470DL_000D70; + +#define dspot02_room_0Set_000470DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_002230" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_002230[] = dspot02_room_0Set_000470DL_002230; + +#define dspot02_room_0Set_000470DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_002030" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_002030[] = dspot02_room_0Set_000470DL_002030; + +#define dspot02_room_0Set_000470DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_000AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_000AB0[] = dspot02_room_0Set_000470DL_000AB0; + +#define dspot02_room_0Set_000470DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000470DL_001170" +static const ALIGN_ASSET(2) char spot02_room_0Set_000470DL_001170[] = dspot02_room_0Set_000470DL_001170; + +#define dspot02_room_0Set_000830DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_0025E0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_0025E0[] = dspot02_room_0Set_000830DL_0025E0; + +#define dspot02_room_0Set_000830DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_001AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_001AB0[] = dspot02_room_0Set_000830DL_001AB0; + +#define dspot02_room_0Set_000830DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_001D18" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_001D18[] = dspot02_room_0Set_000830DL_001D18; + +#define dspot02_room_0Set_000830DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_001480" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_001480[] = dspot02_room_0Set_000830DL_001480; + +#define dspot02_room_0Set_000830DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_000D70" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_000D70[] = dspot02_room_0Set_000830DL_000D70; + +#define dspot02_room_0Set_000830DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_002230" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_002230[] = dspot02_room_0Set_000830DL_002230; + +#define dspot02_room_0Set_000830DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_002030" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_002030[] = dspot02_room_0Set_000830DL_002030; + +#define dspot02_room_0Set_000830DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_000AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_000AB0[] = dspot02_room_0Set_000830DL_000AB0; + +#define dspot02_room_0Set_000830DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000830DL_001170" +static const ALIGN_ASSET(2) char spot02_room_0Set_000830DL_001170[] = dspot02_room_0Set_000830DL_001170; + +#define dspot02_room_0Set_000900DL_0025E0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_0025E0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_0025E0[] = dspot02_room_0Set_000900DL_0025E0; + +#define dspot02_room_0Set_000900DL_001AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_001AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_001AB0[] = dspot02_room_0Set_000900DL_001AB0; + +#define dspot02_room_0Set_000900DL_001D18 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_001D18" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_001D18[] = dspot02_room_0Set_000900DL_001D18; + +#define dspot02_room_0Set_000900DL_001480 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_001480" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_001480[] = dspot02_room_0Set_000900DL_001480; + +#define dspot02_room_0Set_000900DL_000D70 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_000D70" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_000D70[] = dspot02_room_0Set_000900DL_000D70; + +#define dspot02_room_0Set_000900DL_002230 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_002230" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_002230[] = dspot02_room_0Set_000900DL_002230; + +#define dspot02_room_0Set_000900DL_002030 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_002030" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_002030[] = dspot02_room_0Set_000900DL_002030; + +#define dspot02_room_0Set_000900DL_000AB0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_000AB0" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_000AB0[] = dspot02_room_0Set_000900DL_000AB0; + +#define dspot02_room_0Set_000900DL_001170 "__OTR__scenes/nonmq/spot02_scene/spot02_room_0Set_000900DL_001170" +static const ALIGN_ASSET(2) char spot02_room_0Set_000900DL_001170[] = dspot02_room_0Set_000900DL_001170; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot02/spot02_room_1.h b/soh/assets/scenes/overworld/spot02/spot02_room_1.h index 63087c834..5cc992284 100644 --- a/soh/assets/scenes/overworld/spot02/spot02_room_1.h +++ b/soh/assets/scenes/overworld/spot02/spot02_room_1.h @@ -1,1220 +1,525 @@ #pragma once -#define dspot02_room_1DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_0071A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_0071A8[] = dspot02_room_1DL_0071A8; -#else -static const char spot02_room_1DL_0071A8[] __attribute__((aligned (2))) = dspot02_room_1DL_0071A8; -#endif - -#define dspot02_room_1Tex_016D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_016D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_016D08[] = dspot02_room_1Tex_016D08; -#else -static const char spot02_room_1Tex_016D08[] __attribute__((aligned (2))) = dspot02_room_1Tex_016D08; -#endif - -#define dspot02_room_1DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_001F20[] = dspot02_room_1DL_001F20; -#else -static const char spot02_room_1DL_001F20[] __attribute__((aligned (2))) = dspot02_room_1DL_001F20; -#endif - -#define dspot02_room_1Tex_014508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_014508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_014508[] = dspot02_room_1Tex_014508; -#else -static const char spot02_room_1Tex_014508[] __attribute__((aligned (2))) = dspot02_room_1Tex_014508; -#endif - -#define dspot02_room_1TLUT_008EE0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1TLUT_008EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1TLUT_008EE0[] = dspot02_room_1TLUT_008EE0; -#else -static const char spot02_room_1TLUT_008EE0[] __attribute__((aligned (2))) = dspot02_room_1TLUT_008EE0; -#endif - -#define dspot02_room_1Tex_013508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_013508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_013508[] = dspot02_room_1Tex_013508; -#else -static const char spot02_room_1Tex_013508[] __attribute__((aligned (2))) = dspot02_room_1Tex_013508; -#endif - -#define dspot02_room_1Tex_014D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_014D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_014D08[] = dspot02_room_1Tex_014D08; -#else -static const char spot02_room_1Tex_014D08[] __attribute__((aligned (2))) = dspot02_room_1Tex_014D08; -#endif - -#define dspot02_room_1Tex_012D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_012D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_012D08[] = dspot02_room_1Tex_012D08; -#else -static const char spot02_room_1Tex_012D08[] __attribute__((aligned (2))) = dspot02_room_1Tex_012D08; -#endif - -#define dspot02_room_1Tex_012508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_012508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_012508[] = dspot02_room_1Tex_012508; -#else -static const char spot02_room_1Tex_012508[] __attribute__((aligned (2))) = dspot02_room_1Tex_012508; -#endif - -#define dspot02_room_1DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_005A68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_005A68[] = dspot02_room_1DL_005A68; -#else -static const char spot02_room_1DL_005A68[] __attribute__((aligned (2))) = dspot02_room_1DL_005A68; -#endif - -#define dspot02_room_1Tex_00CD08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00CD08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00CD08[] = dspot02_room_1Tex_00CD08; -#else -static const char spot02_room_1Tex_00CD08[] __attribute__((aligned (2))) = dspot02_room_1Tex_00CD08; -#endif - -#define dspot02_room_1DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01A358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_01A358[] = dspot02_room_1DL_01A358; -#else -static const char spot02_room_1DL_01A358[] __attribute__((aligned (2))) = dspot02_room_1DL_01A358; -#endif - -#define dspot02_room_1Tex_01B690 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01B690" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_01B690[] = dspot02_room_1Tex_01B690; -#else -static const char spot02_room_1Tex_01B690[] __attribute__((aligned (2))) = dspot02_room_1Tex_01B690; -#endif - -#define dspot02_room_1DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_003068[] = dspot02_room_1DL_003068; -#else -static const char spot02_room_1DL_003068[] __attribute__((aligned (2))) = dspot02_room_1DL_003068; -#endif - -#define dspot02_room_1Tex_008F08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_008F08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_008F08[] = dspot02_room_1Tex_008F08; -#else -static const char spot02_room_1Tex_008F08[] __attribute__((aligned (2))) = dspot02_room_1Tex_008F08; -#endif - -#define dspot02_room_1Tex_010D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_010D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_010D08[] = dspot02_room_1Tex_010D08; -#else -static const char spot02_room_1Tex_010D08[] __attribute__((aligned (2))) = dspot02_room_1Tex_010D08; -#endif - -#define dspot02_room_1Tex_00E108 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00E108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00E108[] = dspot02_room_1Tex_00E108; -#else -static const char spot02_room_1Tex_00E108[] __attribute__((aligned (2))) = dspot02_room_1Tex_00E108; -#endif - -#define dspot02_room_1Tex_010B08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_010B08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_010B08[] = dspot02_room_1Tex_010B08; -#else -static const char spot02_room_1Tex_010B08[] __attribute__((aligned (2))) = dspot02_room_1Tex_010B08; -#endif - -#define dspot02_room_1Tex_00F308 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00F308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00F308[] = dspot02_room_1Tex_00F308; -#else -static const char spot02_room_1Tex_00F308[] __attribute__((aligned (2))) = dspot02_room_1Tex_00F308; -#endif - -#define dspot02_room_1Tex_00EB08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00EB08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00EB08[] = dspot02_room_1Tex_00EB08; -#else -static const char spot02_room_1Tex_00EB08[] __attribute__((aligned (2))) = dspot02_room_1Tex_00EB08; -#endif - -#define dspot02_room_1Tex_010308 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_010308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_010308[] = dspot02_room_1Tex_010308; -#else -static const char spot02_room_1Tex_010308[] __attribute__((aligned (2))) = dspot02_room_1Tex_010308; -#endif - -#define dspot02_room_1Tex_009708 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_009708" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_009708[] = dspot02_room_1Tex_009708; -#else -static const char spot02_room_1Tex_009708[] __attribute__((aligned (2))) = dspot02_room_1Tex_009708; -#endif - -#define dspot02_room_1DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_007770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_007770[] = dspot02_room_1DL_007770; -#else -static const char spot02_room_1DL_007770[] __attribute__((aligned (2))) = dspot02_room_1DL_007770; -#endif - -#define dspot02_room_1Tex_00C108 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00C108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00C108[] = dspot02_room_1Tex_00C108; -#else -static const char spot02_room_1Tex_00C108[] __attribute__((aligned (2))) = dspot02_room_1Tex_00C108; -#endif - -#define dspot02_room_1Tex_009908 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_009908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_009908[] = dspot02_room_1Tex_009908; -#else -static const char spot02_room_1Tex_009908[] __attribute__((aligned (2))) = dspot02_room_1Tex_009908; -#endif - -#define dspot02_room_1DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01A508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_01A508[] = dspot02_room_1DL_01A508; -#else -static const char spot02_room_1DL_01A508[] __attribute__((aligned (2))) = dspot02_room_1DL_01A508; -#endif - -#define dspot02_room_1Tex_01D790 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01D790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_01D790[] = dspot02_room_1Tex_01D790; -#else -static const char spot02_room_1Tex_01D790[] __attribute__((aligned (2))) = dspot02_room_1Tex_01D790; -#endif - -#define dspot02_room_1DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_0065B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_0065B0[] = dspot02_room_1DL_0065B0; -#else -static const char spot02_room_1DL_0065B0[] __attribute__((aligned (2))) = dspot02_room_1DL_0065B0; -#endif - -#define dspot02_room_1Tex_018988 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_018988" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_018988[] = dspot02_room_1Tex_018988; -#else -static const char spot02_room_1Tex_018988[] __attribute__((aligned (2))) = dspot02_room_1Tex_018988; -#endif - -#define dspot02_room_1Tex_017588 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_017588" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_017588[] = dspot02_room_1Tex_017588; -#else -static const char spot02_room_1Tex_017588[] __attribute__((aligned (2))) = dspot02_room_1Tex_017588; -#endif - -#define dspot02_room_1DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_0040F0[] = dspot02_room_1DL_0040F0; -#else -static const char spot02_room_1DL_0040F0[] __attribute__((aligned (2))) = dspot02_room_1DL_0040F0; -#endif - -#define dspot02_room_1DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_003F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_003F20[] = dspot02_room_1DL_003F20; -#else -static const char spot02_room_1DL_003F20[] __attribute__((aligned (2))) = dspot02_room_1DL_003F20; -#endif - -#define dspot02_room_1Tex_011508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_011508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_011508[] = dspot02_room_1Tex_011508; -#else -static const char spot02_room_1Tex_011508[] __attribute__((aligned (2))) = dspot02_room_1Tex_011508; -#endif - -#define dspot02_room_1DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_006F78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_006F78[] = dspot02_room_1DL_006F78; -#else -static const char spot02_room_1DL_006F78[] __attribute__((aligned (2))) = dspot02_room_1DL_006F78; -#endif - -#define dspot02_room_1Tex_00B108 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00B108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00B108[] = dspot02_room_1Tex_00B108; -#else -static const char spot02_room_1Tex_00B108[] __attribute__((aligned (2))) = dspot02_room_1Tex_00B108; -#endif - -#define dspot02_room_1DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_003BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_003BC0[] = dspot02_room_1DL_003BC0; -#else -static const char spot02_room_1DL_003BC0[] __attribute__((aligned (2))) = dspot02_room_1DL_003BC0; -#endif - -#define dspot02_room_1Tex_016D88 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_016D88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_016D88[] = dspot02_room_1Tex_016D88; -#else -static const char spot02_room_1Tex_016D88[] __attribute__((aligned (2))) = dspot02_room_1Tex_016D88; -#endif - -#define dspot02_room_1Tex_00E308 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00E308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00E308[] = dspot02_room_1Tex_00E308; -#else -static const char spot02_room_1Tex_00E308[] __attribute__((aligned (2))) = dspot02_room_1Tex_00E308; -#endif - -#define dspot02_room_1DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_008DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_008DE8[] = dspot02_room_1DL_008DE8; -#else -static const char spot02_room_1DL_008DE8[] __attribute__((aligned (2))) = dspot02_room_1DL_008DE8; -#endif - -#define dspot02_room_1DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01B618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_01B618[] = dspot02_room_1DL_01B618; -#else -static const char spot02_room_1DL_01B618[] __attribute__((aligned (2))) = dspot02_room_1DL_01B618; -#endif - -#define dspot02_room_1DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_019F60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_019F60[] = dspot02_room_1DL_019F60; -#else -static const char spot02_room_1DL_019F60[] __attribute__((aligned (2))) = dspot02_room_1DL_019F60; -#endif - -#define dspot02_room_1Tex_01C790 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01C790" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_01C790[] = dspot02_room_1Tex_01C790; -#else -static const char spot02_room_1Tex_01C790[] __attribute__((aligned (2))) = dspot02_room_1Tex_01C790; -#endif - -#define dspot02_room_1DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_007460[] = dspot02_room_1DL_007460; -#else -static const char spot02_room_1DL_007460[] __attribute__((aligned (2))) = dspot02_room_1DL_007460; -#endif - -#define dspot02_room_1Tex_00A908 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00A908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00A908[] = dspot02_room_1Tex_00A908; -#else -static const char spot02_room_1Tex_00A908[] __attribute__((aligned (2))) = dspot02_room_1Tex_00A908; -#endif - -#define dspot02_room_1DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_0042A8[] = dspot02_room_1DL_0042A8; -#else -static const char spot02_room_1DL_0042A8[] __attribute__((aligned (2))) = dspot02_room_1DL_0042A8; -#endif - -#define dspot02_room_1DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01AA80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_01AA80[] = dspot02_room_1DL_01AA80; -#else -static const char spot02_room_1DL_01AA80[] __attribute__((aligned (2))) = dspot02_room_1DL_01AA80; -#endif - -#define dspot02_room_1Tex_01C290 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01C290" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_01C290[] = dspot02_room_1Tex_01C290; -#else -static const char spot02_room_1Tex_01C290[] __attribute__((aligned (2))) = dspot02_room_1Tex_01C290; -#endif - -#define dspot02_room_1Tex_01BE90 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01BE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_01BE90[] = dspot02_room_1Tex_01BE90; -#else -static const char spot02_room_1Tex_01BE90[] __attribute__((aligned (2))) = dspot02_room_1Tex_01BE90; -#endif - -#define dspot02_room_1DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_005250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_005250[] = dspot02_room_1DL_005250; -#else -static const char spot02_room_1DL_005250[] __attribute__((aligned (2))) = dspot02_room_1DL_005250; -#endif - -#define dspot02_room_1Tex_00DD08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00DD08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00DD08[] = dspot02_room_1Tex_00DD08; -#else -static const char spot02_room_1Tex_00DD08[] __attribute__((aligned (2))) = dspot02_room_1Tex_00DD08; -#endif - -#define dspot02_room_1DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01B178" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_01B178[] = dspot02_room_1DL_01B178; -#else -static const char spot02_room_1DL_01B178[] __attribute__((aligned (2))) = dspot02_room_1DL_01B178; -#endif - -#define dspot02_room_1Tex_01C690 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01C690" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_01C690[] = dspot02_room_1Tex_01C690; -#else -static const char spot02_room_1Tex_01C690[] __attribute__((aligned (2))) = dspot02_room_1Tex_01C690; -#endif - -#define dspot02_room_1DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_005730[] = dspot02_room_1DL_005730; -#else -static const char spot02_room_1DL_005730[] __attribute__((aligned (2))) = dspot02_room_1DL_005730; -#endif - -#define dspot02_room_1Tex_015D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_015D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_015D08[] = dspot02_room_1Tex_015D08; -#else -static const char spot02_room_1Tex_015D08[] __attribute__((aligned (2))) = dspot02_room_1Tex_015D08; -#endif - -#define dspot02_room_1DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_006C48[] = dspot02_room_1DL_006C48; -#else -static const char spot02_room_1DL_006C48[] __attribute__((aligned (2))) = dspot02_room_1DL_006C48; -#endif - -#define dspot02_room_1Tex_00C508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00C508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_00C508[] = dspot02_room_1Tex_00C508; -#else -static const char spot02_room_1Tex_00C508[] __attribute__((aligned (2))) = dspot02_room_1Tex_00C508; -#endif - -#define dspot02_room_1TLUT_008EB8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1TLUT_008EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1TLUT_008EB8[] = dspot02_room_1TLUT_008EB8; -#else -static const char spot02_room_1TLUT_008EB8[] __attribute__((aligned (2))) = dspot02_room_1TLUT_008EB8; -#endif - -#define dspot02_room_1DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_007990" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1DL_007990[] = dspot02_room_1DL_007990; -#else -static const char spot02_room_1DL_007990[] __attribute__((aligned (2))) = dspot02_room_1DL_007990; -#endif - -#define dspot02_room_1Tex_017988 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_017988" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Tex_017988[] = dspot02_room_1Tex_017988; -#else -static const char spot02_room_1Tex_017988[] __attribute__((aligned (2))) = dspot02_room_1Tex_017988; -#endif - -#define dspot02_room_1Set_000C70DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_0071A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_0071A8[] = dspot02_room_1Set_000C70DL_0071A8; -#else -static const char spot02_room_1Set_000C70DL_0071A8[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_0071A8; -#endif - -#define dspot02_room_1Set_000C70DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_001F20[] = dspot02_room_1Set_000C70DL_001F20; -#else -static const char spot02_room_1Set_000C70DL_001F20[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_001F20; -#endif - -#define dspot02_room_1Set_000C70DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_005A68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_005A68[] = dspot02_room_1Set_000C70DL_005A68; -#else -static const char spot02_room_1Set_000C70DL_005A68[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_005A68; -#endif - -#define dspot02_room_1Set_000C70DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01A358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_01A358[] = dspot02_room_1Set_000C70DL_01A358; -#else -static const char spot02_room_1Set_000C70DL_01A358[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_01A358; -#endif - -#define dspot02_room_1Set_000C70DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_003068[] = dspot02_room_1Set_000C70DL_003068; -#else -static const char spot02_room_1Set_000C70DL_003068[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_003068; -#endif - -#define dspot02_room_1Set_000C70DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_007770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_007770[] = dspot02_room_1Set_000C70DL_007770; -#else -static const char spot02_room_1Set_000C70DL_007770[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_007770; -#endif - -#define dspot02_room_1Set_000C70DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01A508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_01A508[] = dspot02_room_1Set_000C70DL_01A508; -#else -static const char spot02_room_1Set_000C70DL_01A508[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_01A508; -#endif - -#define dspot02_room_1Set_000C70DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_0065B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_0065B0[] = dspot02_room_1Set_000C70DL_0065B0; -#else -static const char spot02_room_1Set_000C70DL_0065B0[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_0065B0; -#endif - -#define dspot02_room_1Set_000C70DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_0040F0[] = dspot02_room_1Set_000C70DL_0040F0; -#else -static const char spot02_room_1Set_000C70DL_0040F0[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_0040F0; -#endif - -#define dspot02_room_1Set_000C70DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_003F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_003F20[] = dspot02_room_1Set_000C70DL_003F20; -#else -static const char spot02_room_1Set_000C70DL_003F20[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_003F20; -#endif - -#define dspot02_room_1Set_000C70DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_006F78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_006F78[] = dspot02_room_1Set_000C70DL_006F78; -#else -static const char spot02_room_1Set_000C70DL_006F78[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_006F78; -#endif - -#define dspot02_room_1Set_000C70DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_003BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_003BC0[] = dspot02_room_1Set_000C70DL_003BC0; -#else -static const char spot02_room_1Set_000C70DL_003BC0[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_003BC0; -#endif - -#define dspot02_room_1Set_000C70DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_008DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_008DE8[] = dspot02_room_1Set_000C70DL_008DE8; -#else -static const char spot02_room_1Set_000C70DL_008DE8[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_008DE8; -#endif - -#define dspot02_room_1Set_000C70DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01B618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_01B618[] = dspot02_room_1Set_000C70DL_01B618; -#else -static const char spot02_room_1Set_000C70DL_01B618[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_01B618; -#endif - -#define dspot02_room_1Set_000C70DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_019F60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_019F60[] = dspot02_room_1Set_000C70DL_019F60; -#else -static const char spot02_room_1Set_000C70DL_019F60[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_019F60; -#endif - -#define dspot02_room_1Set_000C70DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_007460[] = dspot02_room_1Set_000C70DL_007460; -#else -static const char spot02_room_1Set_000C70DL_007460[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_007460; -#endif - -#define dspot02_room_1Set_000C70DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_0042A8[] = dspot02_room_1Set_000C70DL_0042A8; -#else -static const char spot02_room_1Set_000C70DL_0042A8[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_0042A8; -#endif - -#define dspot02_room_1Set_000C70DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01AA80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_01AA80[] = dspot02_room_1Set_000C70DL_01AA80; -#else -static const char spot02_room_1Set_000C70DL_01AA80[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_01AA80; -#endif - -#define dspot02_room_1Set_000C70DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_005250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_005250[] = dspot02_room_1Set_000C70DL_005250; -#else -static const char spot02_room_1Set_000C70DL_005250[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_005250; -#endif - -#define dspot02_room_1Set_000C70DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01B178" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_01B178[] = dspot02_room_1Set_000C70DL_01B178; -#else -static const char spot02_room_1Set_000C70DL_01B178[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_01B178; -#endif - -#define dspot02_room_1Set_000C70DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_005730[] = dspot02_room_1Set_000C70DL_005730; -#else -static const char spot02_room_1Set_000C70DL_005730[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_005730; -#endif - -#define dspot02_room_1Set_000C70DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_006C48[] = dspot02_room_1Set_000C70DL_006C48; -#else -static const char spot02_room_1Set_000C70DL_006C48[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_006C48; -#endif - -#define dspot02_room_1Set_000C70DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_007990" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000C70DL_007990[] = dspot02_room_1Set_000C70DL_007990; -#else -static const char spot02_room_1Set_000C70DL_007990[] __attribute__((aligned (2))) = dspot02_room_1Set_000C70DL_007990; -#endif - -#define dspot02_room_1Set_000490DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_0071A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_0071A8[] = dspot02_room_1Set_000490DL_0071A8; -#else -static const char spot02_room_1Set_000490DL_0071A8[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_0071A8; -#endif - -#define dspot02_room_1Set_000490DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_001F20[] = dspot02_room_1Set_000490DL_001F20; -#else -static const char spot02_room_1Set_000490DL_001F20[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_001F20; -#endif - -#define dspot02_room_1Set_000490DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_005A68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_005A68[] = dspot02_room_1Set_000490DL_005A68; -#else -static const char spot02_room_1Set_000490DL_005A68[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_005A68; -#endif - -#define dspot02_room_1Set_000490DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01A358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_01A358[] = dspot02_room_1Set_000490DL_01A358; -#else -static const char spot02_room_1Set_000490DL_01A358[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_01A358; -#endif - -#define dspot02_room_1Set_000490DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_003068[] = dspot02_room_1Set_000490DL_003068; -#else -static const char spot02_room_1Set_000490DL_003068[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_003068; -#endif - -#define dspot02_room_1Set_000490DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_007770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_007770[] = dspot02_room_1Set_000490DL_007770; -#else -static const char spot02_room_1Set_000490DL_007770[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_007770; -#endif - -#define dspot02_room_1Set_000490DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01A508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_01A508[] = dspot02_room_1Set_000490DL_01A508; -#else -static const char spot02_room_1Set_000490DL_01A508[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_01A508; -#endif - -#define dspot02_room_1Set_000490DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_0065B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_0065B0[] = dspot02_room_1Set_000490DL_0065B0; -#else -static const char spot02_room_1Set_000490DL_0065B0[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_0065B0; -#endif - -#define dspot02_room_1Set_000490DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_0040F0[] = dspot02_room_1Set_000490DL_0040F0; -#else -static const char spot02_room_1Set_000490DL_0040F0[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_0040F0; -#endif - -#define dspot02_room_1Set_000490DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_003F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_003F20[] = dspot02_room_1Set_000490DL_003F20; -#else -static const char spot02_room_1Set_000490DL_003F20[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_003F20; -#endif - -#define dspot02_room_1Set_000490DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_006F78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_006F78[] = dspot02_room_1Set_000490DL_006F78; -#else -static const char spot02_room_1Set_000490DL_006F78[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_006F78; -#endif - -#define dspot02_room_1Set_000490DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_003BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_003BC0[] = dspot02_room_1Set_000490DL_003BC0; -#else -static const char spot02_room_1Set_000490DL_003BC0[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_003BC0; -#endif - -#define dspot02_room_1Set_000490DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_008DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_008DE8[] = dspot02_room_1Set_000490DL_008DE8; -#else -static const char spot02_room_1Set_000490DL_008DE8[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_008DE8; -#endif - -#define dspot02_room_1Set_000490DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01B618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_01B618[] = dspot02_room_1Set_000490DL_01B618; -#else -static const char spot02_room_1Set_000490DL_01B618[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_01B618; -#endif - -#define dspot02_room_1Set_000490DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_019F60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_019F60[] = dspot02_room_1Set_000490DL_019F60; -#else -static const char spot02_room_1Set_000490DL_019F60[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_019F60; -#endif - -#define dspot02_room_1Set_000490DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_007460[] = dspot02_room_1Set_000490DL_007460; -#else -static const char spot02_room_1Set_000490DL_007460[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_007460; -#endif - -#define dspot02_room_1Set_000490DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_0042A8[] = dspot02_room_1Set_000490DL_0042A8; -#else -static const char spot02_room_1Set_000490DL_0042A8[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_0042A8; -#endif - -#define dspot02_room_1Set_000490DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01AA80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_01AA80[] = dspot02_room_1Set_000490DL_01AA80; -#else -static const char spot02_room_1Set_000490DL_01AA80[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_01AA80; -#endif - -#define dspot02_room_1Set_000490DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_005250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_005250[] = dspot02_room_1Set_000490DL_005250; -#else -static const char spot02_room_1Set_000490DL_005250[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_005250; -#endif - -#define dspot02_room_1Set_000490DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01B178" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_01B178[] = dspot02_room_1Set_000490DL_01B178; -#else -static const char spot02_room_1Set_000490DL_01B178[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_01B178; -#endif - -#define dspot02_room_1Set_000490DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_005730[] = dspot02_room_1Set_000490DL_005730; -#else -static const char spot02_room_1Set_000490DL_005730[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_005730; -#endif - -#define dspot02_room_1Set_000490DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_006C48[] = dspot02_room_1Set_000490DL_006C48; -#else -static const char spot02_room_1Set_000490DL_006C48[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_006C48; -#endif - -#define dspot02_room_1Set_000490DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_007990" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000490DL_007990[] = dspot02_room_1Set_000490DL_007990; -#else -static const char spot02_room_1Set_000490DL_007990[] __attribute__((aligned (2))) = dspot02_room_1Set_000490DL_007990; -#endif - -#define dspot02_room_1Set_000880DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_0071A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_0071A8[] = dspot02_room_1Set_000880DL_0071A8; -#else -static const char spot02_room_1Set_000880DL_0071A8[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_0071A8; -#endif - -#define dspot02_room_1Set_000880DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_001F20[] = dspot02_room_1Set_000880DL_001F20; -#else -static const char spot02_room_1Set_000880DL_001F20[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_001F20; -#endif - -#define dspot02_room_1Set_000880DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_005A68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_005A68[] = dspot02_room_1Set_000880DL_005A68; -#else -static const char spot02_room_1Set_000880DL_005A68[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_005A68; -#endif - -#define dspot02_room_1Set_000880DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01A358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_01A358[] = dspot02_room_1Set_000880DL_01A358; -#else -static const char spot02_room_1Set_000880DL_01A358[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_01A358; -#endif - -#define dspot02_room_1Set_000880DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_003068[] = dspot02_room_1Set_000880DL_003068; -#else -static const char spot02_room_1Set_000880DL_003068[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_003068; -#endif - -#define dspot02_room_1Set_000880DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_007770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_007770[] = dspot02_room_1Set_000880DL_007770; -#else -static const char spot02_room_1Set_000880DL_007770[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_007770; -#endif - -#define dspot02_room_1Set_000880DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01A508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_01A508[] = dspot02_room_1Set_000880DL_01A508; -#else -static const char spot02_room_1Set_000880DL_01A508[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_01A508; -#endif - -#define dspot02_room_1Set_000880DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_0065B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_0065B0[] = dspot02_room_1Set_000880DL_0065B0; -#else -static const char spot02_room_1Set_000880DL_0065B0[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_0065B0; -#endif - -#define dspot02_room_1Set_000880DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_0040F0[] = dspot02_room_1Set_000880DL_0040F0; -#else -static const char spot02_room_1Set_000880DL_0040F0[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_0040F0; -#endif - -#define dspot02_room_1Set_000880DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_003F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_003F20[] = dspot02_room_1Set_000880DL_003F20; -#else -static const char spot02_room_1Set_000880DL_003F20[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_003F20; -#endif - -#define dspot02_room_1Set_000880DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_006F78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_006F78[] = dspot02_room_1Set_000880DL_006F78; -#else -static const char spot02_room_1Set_000880DL_006F78[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_006F78; -#endif - -#define dspot02_room_1Set_000880DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_003BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_003BC0[] = dspot02_room_1Set_000880DL_003BC0; -#else -static const char spot02_room_1Set_000880DL_003BC0[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_003BC0; -#endif - -#define dspot02_room_1Set_000880DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_008DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_008DE8[] = dspot02_room_1Set_000880DL_008DE8; -#else -static const char spot02_room_1Set_000880DL_008DE8[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_008DE8; -#endif - -#define dspot02_room_1Set_000880DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01B618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_01B618[] = dspot02_room_1Set_000880DL_01B618; -#else -static const char spot02_room_1Set_000880DL_01B618[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_01B618; -#endif - -#define dspot02_room_1Set_000880DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_019F60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_019F60[] = dspot02_room_1Set_000880DL_019F60; -#else -static const char spot02_room_1Set_000880DL_019F60[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_019F60; -#endif - -#define dspot02_room_1Set_000880DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_007460[] = dspot02_room_1Set_000880DL_007460; -#else -static const char spot02_room_1Set_000880DL_007460[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_007460; -#endif - -#define dspot02_room_1Set_000880DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_0042A8[] = dspot02_room_1Set_000880DL_0042A8; -#else -static const char spot02_room_1Set_000880DL_0042A8[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_0042A8; -#endif - -#define dspot02_room_1Set_000880DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01AA80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_01AA80[] = dspot02_room_1Set_000880DL_01AA80; -#else -static const char spot02_room_1Set_000880DL_01AA80[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_01AA80; -#endif - -#define dspot02_room_1Set_000880DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_005250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_005250[] = dspot02_room_1Set_000880DL_005250; -#else -static const char spot02_room_1Set_000880DL_005250[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_005250; -#endif - -#define dspot02_room_1Set_000880DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01B178" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_01B178[] = dspot02_room_1Set_000880DL_01B178; -#else -static const char spot02_room_1Set_000880DL_01B178[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_01B178; -#endif - -#define dspot02_room_1Set_000880DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_005730[] = dspot02_room_1Set_000880DL_005730; -#else -static const char spot02_room_1Set_000880DL_005730[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_005730; -#endif - -#define dspot02_room_1Set_000880DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_006C48[] = dspot02_room_1Set_000880DL_006C48; -#else -static const char spot02_room_1Set_000880DL_006C48[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_006C48; -#endif - -#define dspot02_room_1Set_000880DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_007990" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_000880DL_007990[] = dspot02_room_1Set_000880DL_007990; -#else -static const char spot02_room_1Set_000880DL_007990[] __attribute__((aligned (2))) = dspot02_room_1Set_000880DL_007990; -#endif - -#define dspot02_room_1Set_001010DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_0071A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_0071A8[] = dspot02_room_1Set_001010DL_0071A8; -#else -static const char spot02_room_1Set_001010DL_0071A8[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_0071A8; -#endif - -#define dspot02_room_1Set_001010DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_001F20[] = dspot02_room_1Set_001010DL_001F20; -#else -static const char spot02_room_1Set_001010DL_001F20[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_001F20; -#endif - -#define dspot02_room_1Set_001010DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_005A68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_005A68[] = dspot02_room_1Set_001010DL_005A68; -#else -static const char spot02_room_1Set_001010DL_005A68[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_005A68; -#endif - -#define dspot02_room_1Set_001010DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01A358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_01A358[] = dspot02_room_1Set_001010DL_01A358; -#else -static const char spot02_room_1Set_001010DL_01A358[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_01A358; -#endif - -#define dspot02_room_1Set_001010DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_003068[] = dspot02_room_1Set_001010DL_003068; -#else -static const char spot02_room_1Set_001010DL_003068[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_003068; -#endif - -#define dspot02_room_1Set_001010DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_007770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_007770[] = dspot02_room_1Set_001010DL_007770; -#else -static const char spot02_room_1Set_001010DL_007770[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_007770; -#endif - -#define dspot02_room_1Set_001010DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01A508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_01A508[] = dspot02_room_1Set_001010DL_01A508; -#else -static const char spot02_room_1Set_001010DL_01A508[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_01A508; -#endif - -#define dspot02_room_1Set_001010DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_0065B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_0065B0[] = dspot02_room_1Set_001010DL_0065B0; -#else -static const char spot02_room_1Set_001010DL_0065B0[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_0065B0; -#endif - -#define dspot02_room_1Set_001010DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_0040F0[] = dspot02_room_1Set_001010DL_0040F0; -#else -static const char spot02_room_1Set_001010DL_0040F0[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_0040F0; -#endif - -#define dspot02_room_1Set_001010DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_003F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_003F20[] = dspot02_room_1Set_001010DL_003F20; -#else -static const char spot02_room_1Set_001010DL_003F20[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_003F20; -#endif - -#define dspot02_room_1Set_001010DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_006F78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_006F78[] = dspot02_room_1Set_001010DL_006F78; -#else -static const char spot02_room_1Set_001010DL_006F78[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_006F78; -#endif - -#define dspot02_room_1Set_001010DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_003BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_003BC0[] = dspot02_room_1Set_001010DL_003BC0; -#else -static const char spot02_room_1Set_001010DL_003BC0[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_003BC0; -#endif - -#define dspot02_room_1Set_001010DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_008DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_008DE8[] = dspot02_room_1Set_001010DL_008DE8; -#else -static const char spot02_room_1Set_001010DL_008DE8[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_008DE8; -#endif - -#define dspot02_room_1Set_001010DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01B618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_01B618[] = dspot02_room_1Set_001010DL_01B618; -#else -static const char spot02_room_1Set_001010DL_01B618[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_01B618; -#endif - -#define dspot02_room_1Set_001010DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_019F60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_019F60[] = dspot02_room_1Set_001010DL_019F60; -#else -static const char spot02_room_1Set_001010DL_019F60[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_019F60; -#endif - -#define dspot02_room_1Set_001010DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_007460[] = dspot02_room_1Set_001010DL_007460; -#else -static const char spot02_room_1Set_001010DL_007460[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_007460; -#endif - -#define dspot02_room_1Set_001010DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_0042A8[] = dspot02_room_1Set_001010DL_0042A8; -#else -static const char spot02_room_1Set_001010DL_0042A8[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_0042A8; -#endif - -#define dspot02_room_1Set_001010DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01AA80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_01AA80[] = dspot02_room_1Set_001010DL_01AA80; -#else -static const char spot02_room_1Set_001010DL_01AA80[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_01AA80; -#endif - -#define dspot02_room_1Set_001010DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_005250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_005250[] = dspot02_room_1Set_001010DL_005250; -#else -static const char spot02_room_1Set_001010DL_005250[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_005250; -#endif - -#define dspot02_room_1Set_001010DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01B178" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_01B178[] = dspot02_room_1Set_001010DL_01B178; -#else -static const char spot02_room_1Set_001010DL_01B178[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_01B178; -#endif - -#define dspot02_room_1Set_001010DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_005730[] = dspot02_room_1Set_001010DL_005730; -#else -static const char spot02_room_1Set_001010DL_005730[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_005730; -#endif - -#define dspot02_room_1Set_001010DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_006C48[] = dspot02_room_1Set_001010DL_006C48; -#else -static const char spot02_room_1Set_001010DL_006C48[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_006C48; -#endif - -#define dspot02_room_1Set_001010DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_007990" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001010DL_007990[] = dspot02_room_1Set_001010DL_007990; -#else -static const char spot02_room_1Set_001010DL_007990[] __attribute__((aligned (2))) = dspot02_room_1Set_001010DL_007990; -#endif - -#define dspot02_room_1Set_001260DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_0071A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_0071A8[] = dspot02_room_1Set_001260DL_0071A8; -#else -static const char spot02_room_1Set_001260DL_0071A8[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_0071A8; -#endif - -#define dspot02_room_1Set_001260DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_001F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_001F20[] = dspot02_room_1Set_001260DL_001F20; -#else -static const char spot02_room_1Set_001260DL_001F20[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_001F20; -#endif - -#define dspot02_room_1Set_001260DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_005A68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_005A68[] = dspot02_room_1Set_001260DL_005A68; -#else -static const char spot02_room_1Set_001260DL_005A68[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_005A68; -#endif - -#define dspot02_room_1Set_001260DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01A358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_01A358[] = dspot02_room_1Set_001260DL_01A358; -#else -static const char spot02_room_1Set_001260DL_01A358[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_01A358; -#endif - -#define dspot02_room_1Set_001260DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_003068[] = dspot02_room_1Set_001260DL_003068; -#else -static const char spot02_room_1Set_001260DL_003068[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_003068; -#endif - -#define dspot02_room_1Set_001260DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_007770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_007770[] = dspot02_room_1Set_001260DL_007770; -#else -static const char spot02_room_1Set_001260DL_007770[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_007770; -#endif - -#define dspot02_room_1Set_001260DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01A508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_01A508[] = dspot02_room_1Set_001260DL_01A508; -#else -static const char spot02_room_1Set_001260DL_01A508[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_01A508; -#endif - -#define dspot02_room_1Set_001260DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_0065B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_0065B0[] = dspot02_room_1Set_001260DL_0065B0; -#else -static const char spot02_room_1Set_001260DL_0065B0[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_0065B0; -#endif - -#define dspot02_room_1Set_001260DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_0040F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_0040F0[] = dspot02_room_1Set_001260DL_0040F0; -#else -static const char spot02_room_1Set_001260DL_0040F0[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_0040F0; -#endif - -#define dspot02_room_1Set_001260DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_003F20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_003F20[] = dspot02_room_1Set_001260DL_003F20; -#else -static const char spot02_room_1Set_001260DL_003F20[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_003F20; -#endif - -#define dspot02_room_1Set_001260DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_006F78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_006F78[] = dspot02_room_1Set_001260DL_006F78; -#else -static const char spot02_room_1Set_001260DL_006F78[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_006F78; -#endif - -#define dspot02_room_1Set_001260DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_003BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_003BC0[] = dspot02_room_1Set_001260DL_003BC0; -#else -static const char spot02_room_1Set_001260DL_003BC0[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_003BC0; -#endif - -#define dspot02_room_1Set_001260DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_008DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_008DE8[] = dspot02_room_1Set_001260DL_008DE8; -#else -static const char spot02_room_1Set_001260DL_008DE8[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_008DE8; -#endif - -#define dspot02_room_1Set_001260DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01B618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_01B618[] = dspot02_room_1Set_001260DL_01B618; -#else -static const char spot02_room_1Set_001260DL_01B618[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_01B618; -#endif - -#define dspot02_room_1Set_001260DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_019F60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_019F60[] = dspot02_room_1Set_001260DL_019F60; -#else -static const char spot02_room_1Set_001260DL_019F60[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_019F60; -#endif - -#define dspot02_room_1Set_001260DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_007460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_007460[] = dspot02_room_1Set_001260DL_007460; -#else -static const char spot02_room_1Set_001260DL_007460[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_007460; -#endif - -#define dspot02_room_1Set_001260DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_0042A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_0042A8[] = dspot02_room_1Set_001260DL_0042A8; -#else -static const char spot02_room_1Set_001260DL_0042A8[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_0042A8; -#endif - -#define dspot02_room_1Set_001260DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01AA80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_01AA80[] = dspot02_room_1Set_001260DL_01AA80; -#else -static const char spot02_room_1Set_001260DL_01AA80[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_01AA80; -#endif - -#define dspot02_room_1Set_001260DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_005250" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_005250[] = dspot02_room_1Set_001260DL_005250; -#else -static const char spot02_room_1Set_001260DL_005250[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_005250; -#endif - -#define dspot02_room_1Set_001260DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01B178" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_01B178[] = dspot02_room_1Set_001260DL_01B178; -#else -static const char spot02_room_1Set_001260DL_01B178[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_01B178; -#endif - -#define dspot02_room_1Set_001260DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_005730[] = dspot02_room_1Set_001260DL_005730; -#else -static const char spot02_room_1Set_001260DL_005730[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_005730; -#endif - -#define dspot02_room_1Set_001260DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_006C48[] = dspot02_room_1Set_001260DL_006C48; -#else -static const char spot02_room_1Set_001260DL_006C48[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_006C48; -#endif - -#define dspot02_room_1Set_001260DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_007990" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_room_1Set_001260DL_007990[] = dspot02_room_1Set_001260DL_007990; -#else -static const char spot02_room_1Set_001260DL_007990[] __attribute__((aligned (2))) = dspot02_room_1Set_001260DL_007990; -#endif - +#include "align_asset_macro.h" + +#define dspot02_room_1DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_0071A8" +static const ALIGN_ASSET(2) char spot02_room_1DL_0071A8[] = dspot02_room_1DL_0071A8; + +#define dspot02_room_1Tex_016D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_016D08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_016D08[] = dspot02_room_1Tex_016D08; + +#define dspot02_room_1DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_001F20" +static const ALIGN_ASSET(2) char spot02_room_1DL_001F20[] = dspot02_room_1DL_001F20; + +#define dspot02_room_1Tex_014508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_014508" +static const ALIGN_ASSET(2) char spot02_room_1Tex_014508[] = dspot02_room_1Tex_014508; + +#define dspot02_room_1TLUT_008EE0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1TLUT_008EE0" +static const ALIGN_ASSET(2) char spot02_room_1TLUT_008EE0[] = dspot02_room_1TLUT_008EE0; + +#define dspot02_room_1Tex_013508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_013508" +static const ALIGN_ASSET(2) char spot02_room_1Tex_013508[] = dspot02_room_1Tex_013508; + +#define dspot02_room_1Tex_014D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_014D08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_014D08[] = dspot02_room_1Tex_014D08; + +#define dspot02_room_1Tex_012D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_012D08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_012D08[] = dspot02_room_1Tex_012D08; + +#define dspot02_room_1Tex_012508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_012508" +static const ALIGN_ASSET(2) char spot02_room_1Tex_012508[] = dspot02_room_1Tex_012508; + +#define dspot02_room_1DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_005A68" +static const ALIGN_ASSET(2) char spot02_room_1DL_005A68[] = dspot02_room_1DL_005A68; + +#define dspot02_room_1Tex_00CD08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00CD08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00CD08[] = dspot02_room_1Tex_00CD08; + +#define dspot02_room_1DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01A358" +static const ALIGN_ASSET(2) char spot02_room_1DL_01A358[] = dspot02_room_1DL_01A358; + +#define dspot02_room_1Tex_01B690 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01B690" +static const ALIGN_ASSET(2) char spot02_room_1Tex_01B690[] = dspot02_room_1Tex_01B690; + +#define dspot02_room_1DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_003068" +static const ALIGN_ASSET(2) char spot02_room_1DL_003068[] = dspot02_room_1DL_003068; + +#define dspot02_room_1Tex_008F08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_008F08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_008F08[] = dspot02_room_1Tex_008F08; + +#define dspot02_room_1Tex_010D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_010D08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_010D08[] = dspot02_room_1Tex_010D08; + +#define dspot02_room_1Tex_00E108 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00E108" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00E108[] = dspot02_room_1Tex_00E108; + +#define dspot02_room_1Tex_010B08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_010B08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_010B08[] = dspot02_room_1Tex_010B08; + +#define dspot02_room_1Tex_00F308 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00F308" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00F308[] = dspot02_room_1Tex_00F308; + +#define dspot02_room_1Tex_00EB08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00EB08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00EB08[] = dspot02_room_1Tex_00EB08; + +#define dspot02_room_1Tex_010308 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_010308" +static const ALIGN_ASSET(2) char spot02_room_1Tex_010308[] = dspot02_room_1Tex_010308; + +#define dspot02_room_1Tex_009708 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_009708" +static const ALIGN_ASSET(2) char spot02_room_1Tex_009708[] = dspot02_room_1Tex_009708; + +#define dspot02_room_1DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_007770" +static const ALIGN_ASSET(2) char spot02_room_1DL_007770[] = dspot02_room_1DL_007770; + +#define dspot02_room_1Tex_00C108 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00C108" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00C108[] = dspot02_room_1Tex_00C108; + +#define dspot02_room_1Tex_009908 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_009908" +static const ALIGN_ASSET(2) char spot02_room_1Tex_009908[] = dspot02_room_1Tex_009908; + +#define dspot02_room_1DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01A508" +static const ALIGN_ASSET(2) char spot02_room_1DL_01A508[] = dspot02_room_1DL_01A508; + +#define dspot02_room_1Tex_01D790 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01D790" +static const ALIGN_ASSET(2) char spot02_room_1Tex_01D790[] = dspot02_room_1Tex_01D790; + +#define dspot02_room_1DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_0065B0" +static const ALIGN_ASSET(2) char spot02_room_1DL_0065B0[] = dspot02_room_1DL_0065B0; + +#define dspot02_room_1Tex_018988 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_018988" +static const ALIGN_ASSET(2) char spot02_room_1Tex_018988[] = dspot02_room_1Tex_018988; + +#define dspot02_room_1Tex_017588 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_017588" +static const ALIGN_ASSET(2) char spot02_room_1Tex_017588[] = dspot02_room_1Tex_017588; + +#define dspot02_room_1DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_0040F0" +static const ALIGN_ASSET(2) char spot02_room_1DL_0040F0[] = dspot02_room_1DL_0040F0; + +#define dspot02_room_1DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_003F20" +static const ALIGN_ASSET(2) char spot02_room_1DL_003F20[] = dspot02_room_1DL_003F20; + +#define dspot02_room_1Tex_011508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_011508" +static const ALIGN_ASSET(2) char spot02_room_1Tex_011508[] = dspot02_room_1Tex_011508; + +#define dspot02_room_1DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_006F78" +static const ALIGN_ASSET(2) char spot02_room_1DL_006F78[] = dspot02_room_1DL_006F78; + +#define dspot02_room_1Tex_00B108 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00B108" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00B108[] = dspot02_room_1Tex_00B108; + +#define dspot02_room_1DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_003BC0" +static const ALIGN_ASSET(2) char spot02_room_1DL_003BC0[] = dspot02_room_1DL_003BC0; + +#define dspot02_room_1Tex_016D88 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_016D88" +static const ALIGN_ASSET(2) char spot02_room_1Tex_016D88[] = dspot02_room_1Tex_016D88; + +#define dspot02_room_1Tex_00E308 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00E308" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00E308[] = dspot02_room_1Tex_00E308; + +#define dspot02_room_1DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_008DE8" +static const ALIGN_ASSET(2) char spot02_room_1DL_008DE8[] = dspot02_room_1DL_008DE8; + +#define dspot02_room_1DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01B618" +static const ALIGN_ASSET(2) char spot02_room_1DL_01B618[] = dspot02_room_1DL_01B618; + +#define dspot02_room_1DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_019F60" +static const ALIGN_ASSET(2) char spot02_room_1DL_019F60[] = dspot02_room_1DL_019F60; + +#define dspot02_room_1Tex_01C790 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01C790" +static const ALIGN_ASSET(2) char spot02_room_1Tex_01C790[] = dspot02_room_1Tex_01C790; + +#define dspot02_room_1DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_007460" +static const ALIGN_ASSET(2) char spot02_room_1DL_007460[] = dspot02_room_1DL_007460; + +#define dspot02_room_1Tex_00A908 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00A908" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00A908[] = dspot02_room_1Tex_00A908; + +#define dspot02_room_1DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_0042A8" +static const ALIGN_ASSET(2) char spot02_room_1DL_0042A8[] = dspot02_room_1DL_0042A8; + +#define dspot02_room_1DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01AA80" +static const ALIGN_ASSET(2) char spot02_room_1DL_01AA80[] = dspot02_room_1DL_01AA80; + +#define dspot02_room_1Tex_01C290 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01C290" +static const ALIGN_ASSET(2) char spot02_room_1Tex_01C290[] = dspot02_room_1Tex_01C290; + +#define dspot02_room_1Tex_01BE90 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01BE90" +static const ALIGN_ASSET(2) char spot02_room_1Tex_01BE90[] = dspot02_room_1Tex_01BE90; + +#define dspot02_room_1DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_005250" +static const ALIGN_ASSET(2) char spot02_room_1DL_005250[] = dspot02_room_1DL_005250; + +#define dspot02_room_1Tex_00DD08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00DD08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00DD08[] = dspot02_room_1Tex_00DD08; + +#define dspot02_room_1DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_01B178" +static const ALIGN_ASSET(2) char spot02_room_1DL_01B178[] = dspot02_room_1DL_01B178; + +#define dspot02_room_1Tex_01C690 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_01C690" +static const ALIGN_ASSET(2) char spot02_room_1Tex_01C690[] = dspot02_room_1Tex_01C690; + +#define dspot02_room_1DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_005730" +static const ALIGN_ASSET(2) char spot02_room_1DL_005730[] = dspot02_room_1DL_005730; + +#define dspot02_room_1Tex_015D08 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_015D08" +static const ALIGN_ASSET(2) char spot02_room_1Tex_015D08[] = dspot02_room_1Tex_015D08; + +#define dspot02_room_1DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_006C48" +static const ALIGN_ASSET(2) char spot02_room_1DL_006C48[] = dspot02_room_1DL_006C48; + +#define dspot02_room_1Tex_00C508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_00C508" +static const ALIGN_ASSET(2) char spot02_room_1Tex_00C508[] = dspot02_room_1Tex_00C508; + +#define dspot02_room_1TLUT_008EB8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1TLUT_008EB8" +static const ALIGN_ASSET(2) char spot02_room_1TLUT_008EB8[] = dspot02_room_1TLUT_008EB8; + +#define dspot02_room_1DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1DL_007990" +static const ALIGN_ASSET(2) char spot02_room_1DL_007990[] = dspot02_room_1DL_007990; + +#define dspot02_room_1Tex_017988 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Tex_017988" +static const ALIGN_ASSET(2) char spot02_room_1Tex_017988[] = dspot02_room_1Tex_017988; + +#define dspot02_room_1Set_000C70DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_0071A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_0071A8[] = dspot02_room_1Set_000C70DL_0071A8; + +#define dspot02_room_1Set_000C70DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_001F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_001F20[] = dspot02_room_1Set_000C70DL_001F20; + +#define dspot02_room_1Set_000C70DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_005A68" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_005A68[] = dspot02_room_1Set_000C70DL_005A68; + +#define dspot02_room_1Set_000C70DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01A358" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_01A358[] = dspot02_room_1Set_000C70DL_01A358; + +#define dspot02_room_1Set_000C70DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_003068" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_003068[] = dspot02_room_1Set_000C70DL_003068; + +#define dspot02_room_1Set_000C70DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_007770" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_007770[] = dspot02_room_1Set_000C70DL_007770; + +#define dspot02_room_1Set_000C70DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01A508" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_01A508[] = dspot02_room_1Set_000C70DL_01A508; + +#define dspot02_room_1Set_000C70DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_0065B0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_0065B0[] = dspot02_room_1Set_000C70DL_0065B0; + +#define dspot02_room_1Set_000C70DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_0040F0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_0040F0[] = dspot02_room_1Set_000C70DL_0040F0; + +#define dspot02_room_1Set_000C70DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_003F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_003F20[] = dspot02_room_1Set_000C70DL_003F20; + +#define dspot02_room_1Set_000C70DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_006F78" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_006F78[] = dspot02_room_1Set_000C70DL_006F78; + +#define dspot02_room_1Set_000C70DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_003BC0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_003BC0[] = dspot02_room_1Set_000C70DL_003BC0; + +#define dspot02_room_1Set_000C70DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_008DE8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_008DE8[] = dspot02_room_1Set_000C70DL_008DE8; + +#define dspot02_room_1Set_000C70DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01B618" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_01B618[] = dspot02_room_1Set_000C70DL_01B618; + +#define dspot02_room_1Set_000C70DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_019F60" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_019F60[] = dspot02_room_1Set_000C70DL_019F60; + +#define dspot02_room_1Set_000C70DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_007460" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_007460[] = dspot02_room_1Set_000C70DL_007460; + +#define dspot02_room_1Set_000C70DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_0042A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_0042A8[] = dspot02_room_1Set_000C70DL_0042A8; + +#define dspot02_room_1Set_000C70DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01AA80" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_01AA80[] = dspot02_room_1Set_000C70DL_01AA80; + +#define dspot02_room_1Set_000C70DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_005250" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_005250[] = dspot02_room_1Set_000C70DL_005250; + +#define dspot02_room_1Set_000C70DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_01B178" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_01B178[] = dspot02_room_1Set_000C70DL_01B178; + +#define dspot02_room_1Set_000C70DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_005730" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_005730[] = dspot02_room_1Set_000C70DL_005730; + +#define dspot02_room_1Set_000C70DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_006C48" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_006C48[] = dspot02_room_1Set_000C70DL_006C48; + +#define dspot02_room_1Set_000C70DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000C70DL_007990" +static const ALIGN_ASSET(2) char spot02_room_1Set_000C70DL_007990[] = dspot02_room_1Set_000C70DL_007990; + +#define dspot02_room_1Set_000490DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_0071A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_0071A8[] = dspot02_room_1Set_000490DL_0071A8; + +#define dspot02_room_1Set_000490DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_001F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_001F20[] = dspot02_room_1Set_000490DL_001F20; + +#define dspot02_room_1Set_000490DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_005A68" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_005A68[] = dspot02_room_1Set_000490DL_005A68; + +#define dspot02_room_1Set_000490DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01A358" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_01A358[] = dspot02_room_1Set_000490DL_01A358; + +#define dspot02_room_1Set_000490DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_003068" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_003068[] = dspot02_room_1Set_000490DL_003068; + +#define dspot02_room_1Set_000490DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_007770" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_007770[] = dspot02_room_1Set_000490DL_007770; + +#define dspot02_room_1Set_000490DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01A508" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_01A508[] = dspot02_room_1Set_000490DL_01A508; + +#define dspot02_room_1Set_000490DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_0065B0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_0065B0[] = dspot02_room_1Set_000490DL_0065B0; + +#define dspot02_room_1Set_000490DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_0040F0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_0040F0[] = dspot02_room_1Set_000490DL_0040F0; + +#define dspot02_room_1Set_000490DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_003F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_003F20[] = dspot02_room_1Set_000490DL_003F20; + +#define dspot02_room_1Set_000490DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_006F78" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_006F78[] = dspot02_room_1Set_000490DL_006F78; + +#define dspot02_room_1Set_000490DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_003BC0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_003BC0[] = dspot02_room_1Set_000490DL_003BC0; + +#define dspot02_room_1Set_000490DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_008DE8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_008DE8[] = dspot02_room_1Set_000490DL_008DE8; + +#define dspot02_room_1Set_000490DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01B618" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_01B618[] = dspot02_room_1Set_000490DL_01B618; + +#define dspot02_room_1Set_000490DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_019F60" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_019F60[] = dspot02_room_1Set_000490DL_019F60; + +#define dspot02_room_1Set_000490DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_007460" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_007460[] = dspot02_room_1Set_000490DL_007460; + +#define dspot02_room_1Set_000490DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_0042A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_0042A8[] = dspot02_room_1Set_000490DL_0042A8; + +#define dspot02_room_1Set_000490DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01AA80" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_01AA80[] = dspot02_room_1Set_000490DL_01AA80; + +#define dspot02_room_1Set_000490DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_005250" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_005250[] = dspot02_room_1Set_000490DL_005250; + +#define dspot02_room_1Set_000490DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_01B178" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_01B178[] = dspot02_room_1Set_000490DL_01B178; + +#define dspot02_room_1Set_000490DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_005730" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_005730[] = dspot02_room_1Set_000490DL_005730; + +#define dspot02_room_1Set_000490DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_006C48" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_006C48[] = dspot02_room_1Set_000490DL_006C48; + +#define dspot02_room_1Set_000490DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000490DL_007990" +static const ALIGN_ASSET(2) char spot02_room_1Set_000490DL_007990[] = dspot02_room_1Set_000490DL_007990; + +#define dspot02_room_1Set_000880DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_0071A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_0071A8[] = dspot02_room_1Set_000880DL_0071A8; + +#define dspot02_room_1Set_000880DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_001F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_001F20[] = dspot02_room_1Set_000880DL_001F20; + +#define dspot02_room_1Set_000880DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_005A68" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_005A68[] = dspot02_room_1Set_000880DL_005A68; + +#define dspot02_room_1Set_000880DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01A358" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_01A358[] = dspot02_room_1Set_000880DL_01A358; + +#define dspot02_room_1Set_000880DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_003068" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_003068[] = dspot02_room_1Set_000880DL_003068; + +#define dspot02_room_1Set_000880DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_007770" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_007770[] = dspot02_room_1Set_000880DL_007770; + +#define dspot02_room_1Set_000880DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01A508" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_01A508[] = dspot02_room_1Set_000880DL_01A508; + +#define dspot02_room_1Set_000880DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_0065B0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_0065B0[] = dspot02_room_1Set_000880DL_0065B0; + +#define dspot02_room_1Set_000880DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_0040F0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_0040F0[] = dspot02_room_1Set_000880DL_0040F0; + +#define dspot02_room_1Set_000880DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_003F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_003F20[] = dspot02_room_1Set_000880DL_003F20; + +#define dspot02_room_1Set_000880DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_006F78" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_006F78[] = dspot02_room_1Set_000880DL_006F78; + +#define dspot02_room_1Set_000880DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_003BC0" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_003BC0[] = dspot02_room_1Set_000880DL_003BC0; + +#define dspot02_room_1Set_000880DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_008DE8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_008DE8[] = dspot02_room_1Set_000880DL_008DE8; + +#define dspot02_room_1Set_000880DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01B618" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_01B618[] = dspot02_room_1Set_000880DL_01B618; + +#define dspot02_room_1Set_000880DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_019F60" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_019F60[] = dspot02_room_1Set_000880DL_019F60; + +#define dspot02_room_1Set_000880DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_007460" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_007460[] = dspot02_room_1Set_000880DL_007460; + +#define dspot02_room_1Set_000880DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_0042A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_0042A8[] = dspot02_room_1Set_000880DL_0042A8; + +#define dspot02_room_1Set_000880DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01AA80" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_01AA80[] = dspot02_room_1Set_000880DL_01AA80; + +#define dspot02_room_1Set_000880DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_005250" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_005250[] = dspot02_room_1Set_000880DL_005250; + +#define dspot02_room_1Set_000880DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_01B178" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_01B178[] = dspot02_room_1Set_000880DL_01B178; + +#define dspot02_room_1Set_000880DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_005730" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_005730[] = dspot02_room_1Set_000880DL_005730; + +#define dspot02_room_1Set_000880DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_006C48" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_006C48[] = dspot02_room_1Set_000880DL_006C48; + +#define dspot02_room_1Set_000880DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_000880DL_007990" +static const ALIGN_ASSET(2) char spot02_room_1Set_000880DL_007990[] = dspot02_room_1Set_000880DL_007990; + +#define dspot02_room_1Set_001010DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_0071A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_0071A8[] = dspot02_room_1Set_001010DL_0071A8; + +#define dspot02_room_1Set_001010DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_001F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_001F20[] = dspot02_room_1Set_001010DL_001F20; + +#define dspot02_room_1Set_001010DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_005A68" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_005A68[] = dspot02_room_1Set_001010DL_005A68; + +#define dspot02_room_1Set_001010DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01A358" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_01A358[] = dspot02_room_1Set_001010DL_01A358; + +#define dspot02_room_1Set_001010DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_003068" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_003068[] = dspot02_room_1Set_001010DL_003068; + +#define dspot02_room_1Set_001010DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_007770" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_007770[] = dspot02_room_1Set_001010DL_007770; + +#define dspot02_room_1Set_001010DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01A508" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_01A508[] = dspot02_room_1Set_001010DL_01A508; + +#define dspot02_room_1Set_001010DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_0065B0" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_0065B0[] = dspot02_room_1Set_001010DL_0065B0; + +#define dspot02_room_1Set_001010DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_0040F0" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_0040F0[] = dspot02_room_1Set_001010DL_0040F0; + +#define dspot02_room_1Set_001010DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_003F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_003F20[] = dspot02_room_1Set_001010DL_003F20; + +#define dspot02_room_1Set_001010DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_006F78" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_006F78[] = dspot02_room_1Set_001010DL_006F78; + +#define dspot02_room_1Set_001010DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_003BC0" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_003BC0[] = dspot02_room_1Set_001010DL_003BC0; + +#define dspot02_room_1Set_001010DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_008DE8" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_008DE8[] = dspot02_room_1Set_001010DL_008DE8; + +#define dspot02_room_1Set_001010DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01B618" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_01B618[] = dspot02_room_1Set_001010DL_01B618; + +#define dspot02_room_1Set_001010DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_019F60" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_019F60[] = dspot02_room_1Set_001010DL_019F60; + +#define dspot02_room_1Set_001010DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_007460" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_007460[] = dspot02_room_1Set_001010DL_007460; + +#define dspot02_room_1Set_001010DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_0042A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_0042A8[] = dspot02_room_1Set_001010DL_0042A8; + +#define dspot02_room_1Set_001010DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01AA80" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_01AA80[] = dspot02_room_1Set_001010DL_01AA80; + +#define dspot02_room_1Set_001010DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_005250" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_005250[] = dspot02_room_1Set_001010DL_005250; + +#define dspot02_room_1Set_001010DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_01B178" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_01B178[] = dspot02_room_1Set_001010DL_01B178; + +#define dspot02_room_1Set_001010DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_005730" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_005730[] = dspot02_room_1Set_001010DL_005730; + +#define dspot02_room_1Set_001010DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_006C48" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_006C48[] = dspot02_room_1Set_001010DL_006C48; + +#define dspot02_room_1Set_001010DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001010DL_007990" +static const ALIGN_ASSET(2) char spot02_room_1Set_001010DL_007990[] = dspot02_room_1Set_001010DL_007990; + +#define dspot02_room_1Set_001260DL_0071A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_0071A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_0071A8[] = dspot02_room_1Set_001260DL_0071A8; + +#define dspot02_room_1Set_001260DL_001F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_001F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_001F20[] = dspot02_room_1Set_001260DL_001F20; + +#define dspot02_room_1Set_001260DL_005A68 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_005A68" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_005A68[] = dspot02_room_1Set_001260DL_005A68; + +#define dspot02_room_1Set_001260DL_01A358 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01A358" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_01A358[] = dspot02_room_1Set_001260DL_01A358; + +#define dspot02_room_1Set_001260DL_003068 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_003068" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_003068[] = dspot02_room_1Set_001260DL_003068; + +#define dspot02_room_1Set_001260DL_007770 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_007770" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_007770[] = dspot02_room_1Set_001260DL_007770; + +#define dspot02_room_1Set_001260DL_01A508 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01A508" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_01A508[] = dspot02_room_1Set_001260DL_01A508; + +#define dspot02_room_1Set_001260DL_0065B0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_0065B0" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_0065B0[] = dspot02_room_1Set_001260DL_0065B0; + +#define dspot02_room_1Set_001260DL_0040F0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_0040F0" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_0040F0[] = dspot02_room_1Set_001260DL_0040F0; + +#define dspot02_room_1Set_001260DL_003F20 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_003F20" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_003F20[] = dspot02_room_1Set_001260DL_003F20; + +#define dspot02_room_1Set_001260DL_006F78 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_006F78" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_006F78[] = dspot02_room_1Set_001260DL_006F78; + +#define dspot02_room_1Set_001260DL_003BC0 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_003BC0" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_003BC0[] = dspot02_room_1Set_001260DL_003BC0; + +#define dspot02_room_1Set_001260DL_008DE8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_008DE8" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_008DE8[] = dspot02_room_1Set_001260DL_008DE8; + +#define dspot02_room_1Set_001260DL_01B618 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01B618" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_01B618[] = dspot02_room_1Set_001260DL_01B618; + +#define dspot02_room_1Set_001260DL_019F60 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_019F60" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_019F60[] = dspot02_room_1Set_001260DL_019F60; + +#define dspot02_room_1Set_001260DL_007460 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_007460" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_007460[] = dspot02_room_1Set_001260DL_007460; + +#define dspot02_room_1Set_001260DL_0042A8 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_0042A8" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_0042A8[] = dspot02_room_1Set_001260DL_0042A8; + +#define dspot02_room_1Set_001260DL_01AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01AA80" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_01AA80[] = dspot02_room_1Set_001260DL_01AA80; + +#define dspot02_room_1Set_001260DL_005250 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_005250" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_005250[] = dspot02_room_1Set_001260DL_005250; + +#define dspot02_room_1Set_001260DL_01B178 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_01B178" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_01B178[] = dspot02_room_1Set_001260DL_01B178; + +#define dspot02_room_1Set_001260DL_005730 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_005730" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_005730[] = dspot02_room_1Set_001260DL_005730; + +#define dspot02_room_1Set_001260DL_006C48 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_006C48" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_006C48[] = dspot02_room_1Set_001260DL_006C48; + +#define dspot02_room_1Set_001260DL_007990 "__OTR__scenes/nonmq/spot02_scene/spot02_room_1Set_001260DL_007990" +static const ALIGN_ASSET(2) char spot02_room_1Set_001260DL_007990[] = dspot02_room_1Set_001260DL_007990; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot02/spot02_scene.h b/soh/assets/scenes/overworld/spot02/spot02_scene.h index 51f8ab1e2..b1b64227d 100644 --- a/soh/assets/scenes/overworld/spot02/spot02_scene.h +++ b/soh/assets/scenes/overworld/spot02/spot02_scene.h @@ -1,112 +1,58 @@ #pragma once + +#include "align_asset_macro.h" + #define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneCollisionHeader_003C54[] = dspot02_sceneCollisionHeader_003C54; -#else -static const char spot02_sceneCollisionHeader_003C54[] __attribute__((aligned (2))) = dspot02_sceneCollisionHeader_003C54; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneCollisionHeader_003C54[] = dspot02_sceneCollisionHeader_003C54; + #define dspot02_scene_Cs_003C80 "__OTR__scenes/nonmq/spot02_scene/spot02_scene_Cs_003C80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_scene_Cs_003C80[] = dspot02_scene_Cs_003C80; -#else -static const char spot02_scene_Cs_003C80[] __attribute__((aligned (2))) = dspot02_scene_Cs_003C80; -#endif - +static const ALIGN_ASSET(2) char spot02_scene_Cs_003C80[] = dspot02_scene_Cs_003C80; + #define dspot02_scene_Cs_005020 "__OTR__scenes/nonmq/spot02_scene/spot02_scene_Cs_005020" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_scene_Cs_005020[] = dspot02_scene_Cs_005020; -#else -static const char spot02_scene_Cs_005020[] __attribute__((aligned (2))) = dspot02_scene_Cs_005020; -#endif - +static const ALIGN_ASSET(2) char spot02_scene_Cs_005020[] = dspot02_scene_Cs_005020; + #define dgGraveyardIntroCs "__OTR__scenes/nonmq/spot02_scene/gGraveyardIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardIntroCs[] = dgGraveyardIntroCs; -#else -static const char gGraveyardIntroCs[] __attribute__((aligned (2))) = dgGraveyardIntroCs; -#endif - +static const ALIGN_ASSET(2) char gGraveyardIntroCs[] = dgGraveyardIntroCs; + #define dspot02_sceneTex_009E80 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_009E80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_009E80[] = dspot02_sceneTex_009E80; -#else -static const char spot02_sceneTex_009E80[] __attribute__((aligned (2))) = dspot02_sceneTex_009E80; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_009E80[] = dspot02_sceneTex_009E80; + #define dspot02_sceneTex_007E80 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_007E80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_007E80[] = dspot02_sceneTex_007E80; -#else -static const char spot02_sceneTex_007E80[] __attribute__((aligned (2))) = dspot02_sceneTex_007E80; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_007E80[] = dspot02_sceneTex_007E80; + #define dspot02_sceneTex_007280 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_007280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_007280[] = dspot02_sceneTex_007280; -#else -static const char spot02_sceneTex_007280[] __attribute__((aligned (2))) = dspot02_sceneTex_007280; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_007280[] = dspot02_sceneTex_007280; + #define dspot02_sceneTex_007A80 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_007A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_007A80[] = dspot02_sceneTex_007A80; -#else -static const char spot02_sceneTex_007A80[] __attribute__((aligned (2))) = dspot02_sceneTex_007A80; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_007A80[] = dspot02_sceneTex_007A80; + #define dspot02_sceneTex_00B080 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_00B080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_00B080[] = dspot02_sceneTex_00B080; -#else -static const char spot02_sceneTex_00B080[] __attribute__((aligned (2))) = dspot02_sceneTex_00B080; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_00B080[] = dspot02_sceneTex_00B080; + #define dspot02_sceneTex_00AE80 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_00AE80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_00AE80[] = dspot02_sceneTex_00AE80; -#else -static const char spot02_sceneTex_00AE80[] __attribute__((aligned (2))) = dspot02_sceneTex_00AE80; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_00AE80[] = dspot02_sceneTex_00AE80; + #define dspot02_sceneTex_008E80 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_008E80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_008E80[] = dspot02_sceneTex_008E80; -#else -static const char spot02_sceneTex_008E80[] __attribute__((aligned (2))) = dspot02_sceneTex_008E80; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_008E80[] = dspot02_sceneTex_008E80; + #define dspot02_sceneTex_008680 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_008680" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_008680[] = dspot02_sceneTex_008680; -#else -static const char spot02_sceneTex_008680[] __attribute__((aligned (2))) = dspot02_sceneTex_008680; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_008680[] = dspot02_sceneTex_008680; + #define dspot02_sceneTex_00A280 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_00A280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_00A280[] = dspot02_sceneTex_00A280; -#else -static const char spot02_sceneTex_00A280[] __attribute__((aligned (2))) = dspot02_sceneTex_00A280; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_00A280[] = dspot02_sceneTex_00A280; + #define dspot02_sceneTex_00AA80 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_00AA80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_00AA80[] = dspot02_sceneTex_00AA80; -#else -static const char spot02_sceneTex_00AA80[] __attribute__((aligned (2))) = dspot02_sceneTex_00AA80; -#endif - +static const ALIGN_ASSET(2) char spot02_sceneTex_00AA80[] = dspot02_sceneTex_00AA80; + #define dspot02_sceneTex_00B880 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneTex_00B880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot02_sceneTex_00B880[] = dspot02_sceneTex_00B880; -#else -static const char spot02_sceneTex_00B880[] __attribute__((aligned (2))) = dspot02_sceneTex_00B880; -#endif - -#define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" -#define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" -#define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" -#define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" +static const ALIGN_ASSET(2) char spot02_sceneTex_00B880[] = dspot02_sceneTex_00B880; + #define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" +#define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" + +#define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" + +#define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" + +#define dspot02_sceneCollisionHeader_003C54 "__OTR__scenes/nonmq/spot02_scene/spot02_sceneCollisionHeader_003C54" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot03/spot03_room_0.h b/soh/assets/scenes/overworld/spot03/spot03_room_0.h index 5abeccf1e..4e4097ac3 100644 --- a/soh/assets/scenes/overworld/spot03/spot03_room_0.h +++ b/soh/assets/scenes/overworld/spot03/spot03_room_0.h @@ -1,247 +1,108 @@ #pragma once -#define dspot03_room_0DL_009660 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_009660" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_009660[] = dspot03_room_0DL_009660; -#else -static const char spot03_room_0DL_009660[] __attribute__((aligned (2))) = dspot03_room_0DL_009660; -#endif - -#define dspot03_room_0DL_001460 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_001460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_001460[] = dspot03_room_0DL_001460; -#else -static const char spot03_room_0DL_001460[] __attribute__((aligned (2))) = dspot03_room_0DL_001460; -#endif - -#define dspot03_room_0DL_00C4B0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_00C4B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_00C4B0[] = dspot03_room_0DL_00C4B0; -#else -static const char spot03_room_0DL_00C4B0[] __attribute__((aligned (2))) = dspot03_room_0DL_00C4B0; -#endif - -#define dspot03_room_0Tex_00D180 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00D180" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Tex_00D180[] = dspot03_room_0Tex_00D180; -#else -static const char spot03_room_0Tex_00D180[] __attribute__((aligned (2))) = dspot03_room_0Tex_00D180; -#endif - -#define dspot03_room_0DL_008248 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_008248" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_008248[] = dspot03_room_0DL_008248; -#else -static const char spot03_room_0DL_008248[] __attribute__((aligned (2))) = dspot03_room_0DL_008248; -#endif - -#define dspot03_room_0Tex_00A3B0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00A3B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Tex_00A3B0[] = dspot03_room_0Tex_00A3B0; -#else -static const char spot03_room_0Tex_00A3B0[] __attribute__((aligned (2))) = dspot03_room_0Tex_00A3B0; -#endif - -#define dspot03_room_0DL_007A80 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_007A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_007A80[] = dspot03_room_0DL_007A80; -#else -static const char spot03_room_0DL_007A80[] __attribute__((aligned (2))) = dspot03_room_0DL_007A80; -#endif - -#define dspot03_room_0Tex_00ABB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00ABB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Tex_00ABB0[] = dspot03_room_0Tex_00ABB0; -#else -static const char spot03_room_0Tex_00ABB0[] __attribute__((aligned (2))) = dspot03_room_0Tex_00ABB0; -#endif - -#define dspot03_room_0Tex_00BBB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00BBB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Tex_00BBB0[] = dspot03_room_0Tex_00BBB0; -#else -static const char spot03_room_0Tex_00BBB0[] __attribute__((aligned (2))) = dspot03_room_0Tex_00BBB0; -#endif - -#define dspot03_room_0DL_0022F0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_0022F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_0022F0[] = dspot03_room_0DL_0022F0; -#else -static const char spot03_room_0DL_0022F0[] __attribute__((aligned (2))) = dspot03_room_0DL_0022F0; -#endif - -#define dspot03_room_0Tex_0097B0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_0097B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Tex_0097B0[] = dspot03_room_0Tex_0097B0; -#else -static const char spot03_room_0Tex_0097B0[] __attribute__((aligned (2))) = dspot03_room_0Tex_0097B0; -#endif - -#define dspot03_room_0DL_003298 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_003298" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_003298[] = dspot03_room_0DL_003298; -#else -static const char spot03_room_0DL_003298[] __attribute__((aligned (2))) = dspot03_room_0DL_003298; -#endif - -#define dspot03_room_0Tex_009BB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_009BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Tex_009BB0[] = dspot03_room_0Tex_009BB0; -#else -static const char spot03_room_0Tex_009BB0[] __attribute__((aligned (2))) = dspot03_room_0Tex_009BB0; -#endif - -#define dspot03_room_0DL_004658 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_004658" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_004658[] = dspot03_room_0DL_004658; -#else -static const char spot03_room_0DL_004658[] __attribute__((aligned (2))) = dspot03_room_0DL_004658; -#endif - -#define dspot03_room_0DL_0054D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_0054D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_0054D8[] = dspot03_room_0DL_0054D8; -#else -static const char spot03_room_0DL_0054D8[] __attribute__((aligned (2))) = dspot03_room_0DL_0054D8; -#endif - -#define dspot03_room_0DL_006508 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_006508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_006508[] = dspot03_room_0DL_006508; -#else -static const char spot03_room_0DL_006508[] __attribute__((aligned (2))) = dspot03_room_0DL_006508; -#endif - -#define dspot03_room_0DL_007478 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_007478[] = dspot03_room_0DL_007478; -#else -static const char spot03_room_0DL_007478[] __attribute__((aligned (2))) = dspot03_room_0DL_007478; -#endif - -#define dspot03_room_0DL_008B88 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_008B88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_008B88[] = dspot03_room_0DL_008B88; -#else -static const char spot03_room_0DL_008B88[] __attribute__((aligned (2))) = dspot03_room_0DL_008B88; -#endif - -#define dspot03_room_0Tex_00BFB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00BFB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Tex_00BFB0[] = dspot03_room_0Tex_00BFB0; -#else -static const char spot03_room_0Tex_00BFB0[] __attribute__((aligned (2))) = dspot03_room_0Tex_00BFB0; -#endif - -#define dspot03_room_0DL_009330 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_009330" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_009330[] = dspot03_room_0DL_009330; -#else -static const char spot03_room_0DL_009330[] __attribute__((aligned (2))) = dspot03_room_0DL_009330; -#endif - -#define dspot03_room_0DL_00CEB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_00CEB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0DL_00CEB0[] = dspot03_room_0DL_00CEB0; -#else -static const char spot03_room_0DL_00CEB0[] __attribute__((aligned (2))) = dspot03_room_0DL_00CEB0; -#endif - -#define dspot03_room_0Set_000580DL_009660 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_009660" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_009660[] = dspot03_room_0Set_000580DL_009660; -#else -static const char spot03_room_0Set_000580DL_009660[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_009660; -#endif - -#define dspot03_room_0Set_000580DL_001460 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_001460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_001460[] = dspot03_room_0Set_000580DL_001460; -#else -static const char spot03_room_0Set_000580DL_001460[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_001460; -#endif - -#define dspot03_room_0Set_000580DL_00C4B0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_00C4B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_00C4B0[] = dspot03_room_0Set_000580DL_00C4B0; -#else -static const char spot03_room_0Set_000580DL_00C4B0[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_00C4B0; -#endif - -#define dspot03_room_0Set_000580DL_008248 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_008248" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_008248[] = dspot03_room_0Set_000580DL_008248; -#else -static const char spot03_room_0Set_000580DL_008248[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_008248; -#endif - -#define dspot03_room_0Set_000580DL_007A80 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_007A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_007A80[] = dspot03_room_0Set_000580DL_007A80; -#else -static const char spot03_room_0Set_000580DL_007A80[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_007A80; -#endif - -#define dspot03_room_0Set_000580DL_0022F0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_0022F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_0022F0[] = dspot03_room_0Set_000580DL_0022F0; -#else -static const char spot03_room_0Set_000580DL_0022F0[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_0022F0; -#endif - -#define dspot03_room_0Set_000580DL_003298 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_003298" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_003298[] = dspot03_room_0Set_000580DL_003298; -#else -static const char spot03_room_0Set_000580DL_003298[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_003298; -#endif - -#define dspot03_room_0Set_000580DL_004658 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_004658" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_004658[] = dspot03_room_0Set_000580DL_004658; -#else -static const char spot03_room_0Set_000580DL_004658[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_004658; -#endif - -#define dspot03_room_0Set_000580DL_0054D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_0054D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_0054D8[] = dspot03_room_0Set_000580DL_0054D8; -#else -static const char spot03_room_0Set_000580DL_0054D8[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_0054D8; -#endif - -#define dspot03_room_0Set_000580DL_006508 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_006508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_006508[] = dspot03_room_0Set_000580DL_006508; -#else -static const char spot03_room_0Set_000580DL_006508[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_006508; -#endif - -#define dspot03_room_0Set_000580DL_007478 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_007478[] = dspot03_room_0Set_000580DL_007478; -#else -static const char spot03_room_0Set_000580DL_007478[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_007478; -#endif - -#define dspot03_room_0Set_000580DL_008B88 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_008B88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_008B88[] = dspot03_room_0Set_000580DL_008B88; -#else -static const char spot03_room_0Set_000580DL_008B88[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_008B88; -#endif - -#define dspot03_room_0Set_000580DL_009330 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_009330" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_009330[] = dspot03_room_0Set_000580DL_009330; -#else -static const char spot03_room_0Set_000580DL_009330[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_009330; -#endif - -#define dspot03_room_0Set_000580DL_00CEB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_00CEB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_0Set_000580DL_00CEB0[] = dspot03_room_0Set_000580DL_00CEB0; -#else -static const char spot03_room_0Set_000580DL_00CEB0[] __attribute__((aligned (2))) = dspot03_room_0Set_000580DL_00CEB0; -#endif - +#include "align_asset_macro.h" + +#define dspot03_room_0DL_009660 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_009660" +static const ALIGN_ASSET(2) char spot03_room_0DL_009660[] = dspot03_room_0DL_009660; + +#define dspot03_room_0DL_001460 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_001460" +static const ALIGN_ASSET(2) char spot03_room_0DL_001460[] = dspot03_room_0DL_001460; + +#define dspot03_room_0DL_00C4B0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_00C4B0" +static const ALIGN_ASSET(2) char spot03_room_0DL_00C4B0[] = dspot03_room_0DL_00C4B0; + +#define dspot03_room_0Tex_00D180 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00D180" +static const ALIGN_ASSET(2) char spot03_room_0Tex_00D180[] = dspot03_room_0Tex_00D180; + +#define dspot03_room_0DL_008248 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_008248" +static const ALIGN_ASSET(2) char spot03_room_0DL_008248[] = dspot03_room_0DL_008248; + +#define dspot03_room_0Tex_00A3B0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00A3B0" +static const ALIGN_ASSET(2) char spot03_room_0Tex_00A3B0[] = dspot03_room_0Tex_00A3B0; + +#define dspot03_room_0DL_007A80 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_007A80" +static const ALIGN_ASSET(2) char spot03_room_0DL_007A80[] = dspot03_room_0DL_007A80; + +#define dspot03_room_0Tex_00ABB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00ABB0" +static const ALIGN_ASSET(2) char spot03_room_0Tex_00ABB0[] = dspot03_room_0Tex_00ABB0; + +#define dspot03_room_0Tex_00BBB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00BBB0" +static const ALIGN_ASSET(2) char spot03_room_0Tex_00BBB0[] = dspot03_room_0Tex_00BBB0; + +#define dspot03_room_0DL_0022F0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_0022F0" +static const ALIGN_ASSET(2) char spot03_room_0DL_0022F0[] = dspot03_room_0DL_0022F0; + +#define dspot03_room_0Tex_0097B0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_0097B0" +static const ALIGN_ASSET(2) char spot03_room_0Tex_0097B0[] = dspot03_room_0Tex_0097B0; + +#define dspot03_room_0DL_003298 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_003298" +static const ALIGN_ASSET(2) char spot03_room_0DL_003298[] = dspot03_room_0DL_003298; + +#define dspot03_room_0Tex_009BB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_009BB0" +static const ALIGN_ASSET(2) char spot03_room_0Tex_009BB0[] = dspot03_room_0Tex_009BB0; + +#define dspot03_room_0DL_004658 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_004658" +static const ALIGN_ASSET(2) char spot03_room_0DL_004658[] = dspot03_room_0DL_004658; + +#define dspot03_room_0DL_0054D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_0054D8" +static const ALIGN_ASSET(2) char spot03_room_0DL_0054D8[] = dspot03_room_0DL_0054D8; + +#define dspot03_room_0DL_006508 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_006508" +static const ALIGN_ASSET(2) char spot03_room_0DL_006508[] = dspot03_room_0DL_006508; + +#define dspot03_room_0DL_007478 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_007478" +static const ALIGN_ASSET(2) char spot03_room_0DL_007478[] = dspot03_room_0DL_007478; + +#define dspot03_room_0DL_008B88 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_008B88" +static const ALIGN_ASSET(2) char spot03_room_0DL_008B88[] = dspot03_room_0DL_008B88; + +#define dspot03_room_0Tex_00BFB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Tex_00BFB0" +static const ALIGN_ASSET(2) char spot03_room_0Tex_00BFB0[] = dspot03_room_0Tex_00BFB0; + +#define dspot03_room_0DL_009330 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_009330" +static const ALIGN_ASSET(2) char spot03_room_0DL_009330[] = dspot03_room_0DL_009330; + +#define dspot03_room_0DL_00CEB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0DL_00CEB0" +static const ALIGN_ASSET(2) char spot03_room_0DL_00CEB0[] = dspot03_room_0DL_00CEB0; + +#define dspot03_room_0Set_000580DL_009660 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_009660" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_009660[] = dspot03_room_0Set_000580DL_009660; + +#define dspot03_room_0Set_000580DL_001460 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_001460" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_001460[] = dspot03_room_0Set_000580DL_001460; + +#define dspot03_room_0Set_000580DL_00C4B0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_00C4B0" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_00C4B0[] = dspot03_room_0Set_000580DL_00C4B0; + +#define dspot03_room_0Set_000580DL_008248 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_008248" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_008248[] = dspot03_room_0Set_000580DL_008248; + +#define dspot03_room_0Set_000580DL_007A80 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_007A80" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_007A80[] = dspot03_room_0Set_000580DL_007A80; + +#define dspot03_room_0Set_000580DL_0022F0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_0022F0" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_0022F0[] = dspot03_room_0Set_000580DL_0022F0; + +#define dspot03_room_0Set_000580DL_003298 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_003298" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_003298[] = dspot03_room_0Set_000580DL_003298; + +#define dspot03_room_0Set_000580DL_004658 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_004658" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_004658[] = dspot03_room_0Set_000580DL_004658; + +#define dspot03_room_0Set_000580DL_0054D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_0054D8" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_0054D8[] = dspot03_room_0Set_000580DL_0054D8; + +#define dspot03_room_0Set_000580DL_006508 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_006508" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_006508[] = dspot03_room_0Set_000580DL_006508; + +#define dspot03_room_0Set_000580DL_007478 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_007478" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_007478[] = dspot03_room_0Set_000580DL_007478; + +#define dspot03_room_0Set_000580DL_008B88 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_008B88" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_008B88[] = dspot03_room_0Set_000580DL_008B88; + +#define dspot03_room_0Set_000580DL_009330 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_009330" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_009330[] = dspot03_room_0Set_000580DL_009330; + +#define dspot03_room_0Set_000580DL_00CEB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_0Set_000580DL_00CEB0" +static const ALIGN_ASSET(2) char spot03_room_0Set_000580DL_00CEB0[] = dspot03_room_0Set_000580DL_00CEB0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot03/spot03_room_1.h b/soh/assets/scenes/overworld/spot03/spot03_room_1.h index 6f1b63fdf..3cb2b0072 100644 --- a/soh/assets/scenes/overworld/spot03/spot03_room_1.h +++ b/soh/assets/scenes/overworld/spot03/spot03_room_1.h @@ -1,198 +1,87 @@ #pragma once -#define dgSpot03DL_0074E8 "__OTR__scenes/nonmq/spot03_scene/gSpot03DL_0074E8" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot03DL_0074E8[] = dgSpot03DL_0074E8; -#else -static const char gSpot03DL_0074E8[] __attribute__((aligned (2))) = dgSpot03DL_0074E8; -#endif - -#define dspot03_room_1DL_004F98 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_004F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_004F98[] = dspot03_room_1DL_004F98; -#else -static const char spot03_room_1DL_004F98[] __attribute__((aligned (2))) = dspot03_room_1DL_004F98; -#endif - -#define dspot03_room_1DL_000750 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_000750" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_000750[] = dspot03_room_1DL_000750; -#else -static const char spot03_room_1DL_000750[] __attribute__((aligned (2))) = dspot03_room_1DL_000750; -#endif - -#define dspot03_room_1DL_001078 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_001078" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_001078[] = dspot03_room_1DL_001078; -#else -static const char spot03_room_1DL_001078[] __attribute__((aligned (2))) = dspot03_room_1DL_001078; -#endif - -#define dspot03_room_1DL_001AA8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_001AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_001AA8[] = dspot03_room_1DL_001AA8; -#else -static const char spot03_room_1DL_001AA8[] __attribute__((aligned (2))) = dspot03_room_1DL_001AA8; -#endif - -#define dspot03_room_1DL_003658 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_003658" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_003658[] = dspot03_room_1DL_003658; -#else -static const char spot03_room_1DL_003658[] __attribute__((aligned (2))) = dspot03_room_1DL_003658; -#endif - -#define dspot03_room_1DL_0023E0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_0023E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_0023E0[] = dspot03_room_1DL_0023E0; -#else -static const char spot03_room_1DL_0023E0[] __attribute__((aligned (2))) = dspot03_room_1DL_0023E0; -#endif - -#define dspot03_room_1Tex_0058D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_0058D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Tex_0058D8[] = dspot03_room_1Tex_0058D8; -#else -static const char spot03_room_1Tex_0058D8[] __attribute__((aligned (2))) = dspot03_room_1Tex_0058D8; -#endif - -#define dspot03_room_1Tex_0050D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_0050D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Tex_0050D8[] = dspot03_room_1Tex_0050D8; -#else -static const char spot03_room_1Tex_0050D8[] __attribute__((aligned (2))) = dspot03_room_1Tex_0050D8; -#endif - -#define dspot03_room_1Tex_0062D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_0062D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Tex_0062D8[] = dspot03_room_1Tex_0062D8; -#else -static const char spot03_room_1Tex_0062D8[] __attribute__((aligned (2))) = dspot03_room_1Tex_0062D8; -#endif - -#define dspot03_room_1DL_0043D0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_0043D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_0043D0[] = dspot03_room_1DL_0043D0; -#else -static const char spot03_room_1DL_0043D0[] __attribute__((aligned (2))) = dspot03_room_1DL_0043D0; -#endif - -#define dspot03_room_1DL_002CB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_002CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_002CB0[] = dspot03_room_1DL_002CB0; -#else -static const char spot03_room_1DL_002CB0[] __attribute__((aligned (2))) = dspot03_room_1DL_002CB0; -#endif - -#define dspot03_room_1Tex_005ED8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_005ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Tex_005ED8[] = dspot03_room_1Tex_005ED8; -#else -static const char spot03_room_1Tex_005ED8[] __attribute__((aligned (2))) = dspot03_room_1Tex_005ED8; -#endif - -#define dspot03_room_1Tex_005CD8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_005CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Tex_005CD8[] = dspot03_room_1Tex_005CD8; -#else -static const char spot03_room_1Tex_005CD8[] __attribute__((aligned (2))) = dspot03_room_1Tex_005CD8; -#endif - -#define dspot03_room_1DL_0047C0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_0047C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_0047C0[] = dspot03_room_1DL_0047C0; -#else -static const char spot03_room_1DL_0047C0[] __attribute__((aligned (2))) = dspot03_room_1DL_0047C0; -#endif - -#define dspot03_room_1DL_004C88 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_004C88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_004C88[] = dspot03_room_1DL_004C88; -#else -static const char spot03_room_1DL_004C88[] __attribute__((aligned (2))) = dspot03_room_1DL_004C88; -#endif - -#define dspot03_room_1DL_007210 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_007210" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1DL_007210[] = dspot03_room_1DL_007210; -#else -static const char spot03_room_1DL_007210[] __attribute__((aligned (2))) = dspot03_room_1DL_007210; -#endif - -#define dspot03_room_1Set_0001E0DL_004F98 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_004F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_004F98[] = dspot03_room_1Set_0001E0DL_004F98; -#else -static const char spot03_room_1Set_0001E0DL_004F98[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_004F98; -#endif - -#define dspot03_room_1Set_0001E0DL_000750 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_000750" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_000750[] = dspot03_room_1Set_0001E0DL_000750; -#else -static const char spot03_room_1Set_0001E0DL_000750[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_000750; -#endif - -#define dspot03_room_1Set_0001E0DL_001078 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_001078" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_001078[] = dspot03_room_1Set_0001E0DL_001078; -#else -static const char spot03_room_1Set_0001E0DL_001078[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_001078; -#endif - -#define dspot03_room_1Set_0001E0DL_001AA8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_001AA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_001AA8[] = dspot03_room_1Set_0001E0DL_001AA8; -#else -static const char spot03_room_1Set_0001E0DL_001AA8[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_001AA8; -#endif - -#define dspot03_room_1Set_0001E0DL_003658 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_003658" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_003658[] = dspot03_room_1Set_0001E0DL_003658; -#else -static const char spot03_room_1Set_0001E0DL_003658[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_003658; -#endif - -#define dspot03_room_1Set_0001E0DL_0023E0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_0023E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_0023E0[] = dspot03_room_1Set_0001E0DL_0023E0; -#else -static const char spot03_room_1Set_0001E0DL_0023E0[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_0023E0; -#endif - -#define dspot03_room_1Set_0001E0DL_0043D0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_0043D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_0043D0[] = dspot03_room_1Set_0001E0DL_0043D0; -#else -static const char spot03_room_1Set_0001E0DL_0043D0[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_0043D0; -#endif - -#define dspot03_room_1Set_0001E0DL_002CB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_002CB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_002CB0[] = dspot03_room_1Set_0001E0DL_002CB0; -#else -static const char spot03_room_1Set_0001E0DL_002CB0[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_002CB0; -#endif - -#define dspot03_room_1Set_0001E0DL_0047C0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_0047C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_0047C0[] = dspot03_room_1Set_0001E0DL_0047C0; -#else -static const char spot03_room_1Set_0001E0DL_0047C0[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_0047C0; -#endif - -#define dspot03_room_1Set_0001E0DL_004C88 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_004C88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_004C88[] = dspot03_room_1Set_0001E0DL_004C88; -#else -static const char spot03_room_1Set_0001E0DL_004C88[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_004C88; -#endif - -#define dspot03_room_1Set_0001E0DL_007210 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_007210" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_room_1Set_0001E0DL_007210[] = dspot03_room_1Set_0001E0DL_007210; -#else -static const char spot03_room_1Set_0001E0DL_007210[] __attribute__((aligned (2))) = dspot03_room_1Set_0001E0DL_007210; -#endif - +#include "align_asset_macro.h" + +#define dgSpot03DL_0074E8 "__OTR__scenes/nonmq/spot03_scene/gSpot03DL_0074E8" +static const ALIGN_ASSET(2) char gSpot03DL_0074E8[] = dgSpot03DL_0074E8; + +#define dspot03_room_1DL_004F98 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_004F98" +static const ALIGN_ASSET(2) char spot03_room_1DL_004F98[] = dspot03_room_1DL_004F98; + +#define dspot03_room_1DL_000750 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_000750" +static const ALIGN_ASSET(2) char spot03_room_1DL_000750[] = dspot03_room_1DL_000750; + +#define dspot03_room_1DL_001078 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_001078" +static const ALIGN_ASSET(2) char spot03_room_1DL_001078[] = dspot03_room_1DL_001078; + +#define dspot03_room_1DL_001AA8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_001AA8" +static const ALIGN_ASSET(2) char spot03_room_1DL_001AA8[] = dspot03_room_1DL_001AA8; + +#define dspot03_room_1DL_003658 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_003658" +static const ALIGN_ASSET(2) char spot03_room_1DL_003658[] = dspot03_room_1DL_003658; + +#define dspot03_room_1DL_0023E0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_0023E0" +static const ALIGN_ASSET(2) char spot03_room_1DL_0023E0[] = dspot03_room_1DL_0023E0; + +#define dspot03_room_1Tex_0058D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_0058D8" +static const ALIGN_ASSET(2) char spot03_room_1Tex_0058D8[] = dspot03_room_1Tex_0058D8; + +#define dspot03_room_1Tex_0050D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_0050D8" +static const ALIGN_ASSET(2) char spot03_room_1Tex_0050D8[] = dspot03_room_1Tex_0050D8; + +#define dspot03_room_1Tex_0062D8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_0062D8" +static const ALIGN_ASSET(2) char spot03_room_1Tex_0062D8[] = dspot03_room_1Tex_0062D8; + +#define dspot03_room_1DL_0043D0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_0043D0" +static const ALIGN_ASSET(2) char spot03_room_1DL_0043D0[] = dspot03_room_1DL_0043D0; + +#define dspot03_room_1DL_002CB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_002CB0" +static const ALIGN_ASSET(2) char spot03_room_1DL_002CB0[] = dspot03_room_1DL_002CB0; + +#define dspot03_room_1Tex_005ED8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_005ED8" +static const ALIGN_ASSET(2) char spot03_room_1Tex_005ED8[] = dspot03_room_1Tex_005ED8; + +#define dspot03_room_1Tex_005CD8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Tex_005CD8" +static const ALIGN_ASSET(2) char spot03_room_1Tex_005CD8[] = dspot03_room_1Tex_005CD8; + +#define dspot03_room_1DL_0047C0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_0047C0" +static const ALIGN_ASSET(2) char spot03_room_1DL_0047C0[] = dspot03_room_1DL_0047C0; + +#define dspot03_room_1DL_004C88 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_004C88" +static const ALIGN_ASSET(2) char spot03_room_1DL_004C88[] = dspot03_room_1DL_004C88; + +#define dspot03_room_1DL_007210 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1DL_007210" +static const ALIGN_ASSET(2) char spot03_room_1DL_007210[] = dspot03_room_1DL_007210; + +#define dspot03_room_1Set_0001E0DL_004F98 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_004F98" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_004F98[] = dspot03_room_1Set_0001E0DL_004F98; + +#define dspot03_room_1Set_0001E0DL_000750 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_000750" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_000750[] = dspot03_room_1Set_0001E0DL_000750; + +#define dspot03_room_1Set_0001E0DL_001078 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_001078" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_001078[] = dspot03_room_1Set_0001E0DL_001078; + +#define dspot03_room_1Set_0001E0DL_001AA8 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_001AA8" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_001AA8[] = dspot03_room_1Set_0001E0DL_001AA8; + +#define dspot03_room_1Set_0001E0DL_003658 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_003658" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_003658[] = dspot03_room_1Set_0001E0DL_003658; + +#define dspot03_room_1Set_0001E0DL_0023E0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_0023E0" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_0023E0[] = dspot03_room_1Set_0001E0DL_0023E0; + +#define dspot03_room_1Set_0001E0DL_0043D0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_0043D0" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_0043D0[] = dspot03_room_1Set_0001E0DL_0043D0; + +#define dspot03_room_1Set_0001E0DL_002CB0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_002CB0" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_002CB0[] = dspot03_room_1Set_0001E0DL_002CB0; + +#define dspot03_room_1Set_0001E0DL_0047C0 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_0047C0" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_0047C0[] = dspot03_room_1Set_0001E0DL_0047C0; + +#define dspot03_room_1Set_0001E0DL_004C88 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_004C88" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_004C88[] = dspot03_room_1Set_0001E0DL_004C88; + +#define dspot03_room_1Set_0001E0DL_007210 "__OTR__scenes/nonmq/spot03_scene/spot03_room_1Set_0001E0DL_007210" +static const ALIGN_ASSET(2) char spot03_room_1Set_0001E0DL_007210[] = dspot03_room_1Set_0001E0DL_007210; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot03/spot03_scene.h b/soh/assets/scenes/overworld/spot03/spot03_scene.h index f505e0eba..8df9de90c 100644 --- a/soh/assets/scenes/overworld/spot03/spot03_scene.h +++ b/soh/assets/scenes/overworld/spot03/spot03_scene.h @@ -1,108 +1,50 @@ #pragma once -#define dspot03_sceneCollisionHeader_006580 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneCollisionHeader_006580" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneCollisionHeader_006580[] = dspot03_sceneCollisionHeader_006580; -#else -static const char spot03_sceneCollisionHeader_006580[] __attribute__((aligned (2))) = dspot03_sceneCollisionHeader_006580; -#endif - -#define dspot03_sceneTex_007D58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_007D58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_007D58[] = dspot03_sceneTex_007D58; -#else -static const char spot03_sceneTex_007D58[] __attribute__((aligned (2))) = dspot03_sceneTex_007D58; -#endif - -#define dspot03_sceneTex_00A558 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_00A558" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_00A558[] = dspot03_sceneTex_00A558; -#else -static const char spot03_sceneTex_00A558[] __attribute__((aligned (2))) = dspot03_sceneTex_00A558; -#endif - -#define dspot03_sceneTex_009D58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_009D58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_009D58[] = dspot03_sceneTex_009D58; -#else -static const char spot03_sceneTex_009D58[] __attribute__((aligned (2))) = dspot03_sceneTex_009D58; -#endif - -#define dspot03_sceneTex_006D58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_006D58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_006D58[] = dspot03_sceneTex_006D58; -#else -static const char spot03_sceneTex_006D58[] __attribute__((aligned (2))) = dspot03_sceneTex_006D58; -#endif - -#define dspot03_sceneTLUT_006920 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTLUT_006920" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTLUT_006920[] = dspot03_sceneTLUT_006920; -#else -static const char spot03_sceneTLUT_006920[] __attribute__((aligned (2))) = dspot03_sceneTLUT_006920; -#endif - -#define dspot03_sceneTLUT_006B28 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTLUT_006B28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTLUT_006B28[] = dspot03_sceneTLUT_006B28; -#else -static const char spot03_sceneTLUT_006B28[] __attribute__((aligned (2))) = dspot03_sceneTLUT_006B28; -#endif - -#define dspot03_sceneTex_00AD58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_00AD58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_00AD58[] = dspot03_sceneTex_00AD58; -#else -static const char spot03_sceneTex_00AD58[] __attribute__((aligned (2))) = dspot03_sceneTex_00AD58; -#endif - -#define dspot03_sceneTex_008558 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_008558" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_008558[] = dspot03_sceneTex_008558; -#else -static const char spot03_sceneTex_008558[] __attribute__((aligned (2))) = dspot03_sceneTex_008558; -#endif - -#define dspot03_sceneTex_009558 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_009558" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_009558[] = dspot03_sceneTex_009558; -#else -static const char spot03_sceneTex_009558[] __attribute__((aligned (2))) = dspot03_sceneTex_009558; -#endif - -#define dspot03_sceneTLUT_006D30 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTLUT_006D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTLUT_006D30[] = dspot03_sceneTLUT_006D30; -#else -static const char spot03_sceneTLUT_006D30[] __attribute__((aligned (2))) = dspot03_sceneTLUT_006D30; -#endif - -#define dspot03_sceneTex_007958 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_007958" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_007958[] = dspot03_sceneTex_007958; -#else -static const char spot03_sceneTex_007958[] __attribute__((aligned (2))) = dspot03_sceneTex_007958; -#endif - -#define dspot03_sceneTex_007158 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_007158" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_007158[] = dspot03_sceneTex_007158; -#else -static const char spot03_sceneTex_007158[] __attribute__((aligned (2))) = dspot03_sceneTex_007158; -#endif - -#define dspot03_sceneTex_007558 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_007558" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_007558[] = dspot03_sceneTex_007558; -#else -static const char spot03_sceneTex_007558[] __attribute__((aligned (2))) = dspot03_sceneTex_007558; -#endif - -#define dspot03_sceneTex_008D58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_008D58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot03_sceneTex_008D58[] = dspot03_sceneTex_008D58; -#else -static const char spot03_sceneTex_008D58[] __attribute__((aligned (2))) = dspot03_sceneTex_008D58; -#endif - -#define dspot03_sceneCollisionHeader_006580 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneCollisionHeader_006580" +#include "align_asset_macro.h" + +#define dspot03_sceneCollisionHeader_006580 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneCollisionHeader_006580" +static const ALIGN_ASSET(2) char spot03_sceneCollisionHeader_006580[] = dspot03_sceneCollisionHeader_006580; + +#define dspot03_sceneTex_007D58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_007D58" +static const ALIGN_ASSET(2) char spot03_sceneTex_007D58[] = dspot03_sceneTex_007D58; + +#define dspot03_sceneTex_00A558 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_00A558" +static const ALIGN_ASSET(2) char spot03_sceneTex_00A558[] = dspot03_sceneTex_00A558; + +#define dspot03_sceneTex_009D58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_009D58" +static const ALIGN_ASSET(2) char spot03_sceneTex_009D58[] = dspot03_sceneTex_009D58; + +#define dspot03_sceneTex_006D58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_006D58" +static const ALIGN_ASSET(2) char spot03_sceneTex_006D58[] = dspot03_sceneTex_006D58; + +#define dspot03_sceneTLUT_006920 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTLUT_006920" +static const ALIGN_ASSET(2) char spot03_sceneTLUT_006920[] = dspot03_sceneTLUT_006920; + +#define dspot03_sceneTLUT_006B28 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTLUT_006B28" +static const ALIGN_ASSET(2) char spot03_sceneTLUT_006B28[] = dspot03_sceneTLUT_006B28; + +#define dspot03_sceneTex_00AD58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_00AD58" +static const ALIGN_ASSET(2) char spot03_sceneTex_00AD58[] = dspot03_sceneTex_00AD58; + +#define dspot03_sceneTex_008558 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_008558" +static const ALIGN_ASSET(2) char spot03_sceneTex_008558[] = dspot03_sceneTex_008558; + +#define dspot03_sceneTex_009558 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_009558" +static const ALIGN_ASSET(2) char spot03_sceneTex_009558[] = dspot03_sceneTex_009558; + +#define dspot03_sceneTLUT_006D30 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTLUT_006D30" +static const ALIGN_ASSET(2) char spot03_sceneTLUT_006D30[] = dspot03_sceneTLUT_006D30; + +#define dspot03_sceneTex_007958 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_007958" +static const ALIGN_ASSET(2) char spot03_sceneTex_007958[] = dspot03_sceneTex_007958; + +#define dspot03_sceneTex_007158 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_007158" +static const ALIGN_ASSET(2) char spot03_sceneTex_007158[] = dspot03_sceneTex_007158; + +#define dspot03_sceneTex_007558 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_007558" +static const ALIGN_ASSET(2) char spot03_sceneTex_007558[] = dspot03_sceneTex_007558; + +#define dspot03_sceneTex_008D58 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneTex_008D58" +static const ALIGN_ASSET(2) char spot03_sceneTex_008D58[] = dspot03_sceneTex_008D58; + +#define dspot03_sceneCollisionHeader_006580 "__OTR__scenes/nonmq/spot03_scene/spot03_sceneCollisionHeader_006580" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot04/spot04_room_0.h b/soh/assets/scenes/overworld/spot04/spot04_room_0.h index a83c67899..7b1c837f7 100644 --- a/soh/assets/scenes/overworld/spot04/spot04_room_0.h +++ b/soh/assets/scenes/overworld/spot04/spot04_room_0.h @@ -1,2186 +1,939 @@ #pragma once -#define dspot04_room_0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_008ED8[] = dspot04_room_0DL_008ED8; -#else -static const char spot04_room_0DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0DL_008ED8; -#endif - -#define dspot04_room_0Tex_013F08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_013F08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_013F08[] = dspot04_room_0Tex_013F08; -#else -static const char spot04_room_0Tex_013F08[] __attribute__((aligned (2))) = dspot04_room_0Tex_013F08; -#endif - -#define dspot04_room_0Tex_011D08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_011D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_011D08[] = dspot04_room_0Tex_011D08; -#else -static const char spot04_room_0Tex_011D08[] __attribute__((aligned (2))) = dspot04_room_0Tex_011D08; -#endif - -#define dspot04_room_0Tex_015B08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_015B08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_015B08[] = dspot04_room_0Tex_015B08; -#else -static const char spot04_room_0Tex_015B08[] __attribute__((aligned (2))) = dspot04_room_0Tex_015B08; -#endif - -#define dspot04_room_0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_0187F0[] = dspot04_room_0DL_0187F0; -#else -static const char spot04_room_0DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0DL_0187F0; -#endif - -#define dspot04_room_0Tex_01A290 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01A290" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_01A290[] = dspot04_room_0Tex_01A290; -#else -static const char spot04_room_0Tex_01A290[] __attribute__((aligned (2))) = dspot04_room_0Tex_01A290; -#endif - -#define dspot04_room_0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_007A20[] = dspot04_room_0DL_007A20; -#else -static const char spot04_room_0DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0DL_007A20; -#endif - -#define dspot04_room_0Tex_00FD08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00FD08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00FD08[] = dspot04_room_0Tex_00FD08; -#else -static const char spot04_room_0Tex_00FD08[] __attribute__((aligned (2))) = dspot04_room_0Tex_00FD08; -#endif - -#define dspot04_room_0Tex_00F508 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00F508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00F508[] = dspot04_room_0Tex_00F508; -#else -static const char spot04_room_0Tex_00F508[] __attribute__((aligned (2))) = dspot04_room_0Tex_00F508; -#endif - -#define dspot04_room_0Tex_00F108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00F108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00F108[] = dspot04_room_0Tex_00F108; -#else -static const char spot04_room_0Tex_00F108[] __attribute__((aligned (2))) = dspot04_room_0Tex_00F108; -#endif - -#define dspot04_room_0Tex_010D08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_010D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_010D08[] = dspot04_room_0Tex_010D08; -#else -static const char spot04_room_0Tex_010D08[] __attribute__((aligned (2))) = dspot04_room_0Tex_010D08; -#endif - -#define dspot04_room_0Tex_00E108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00E108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00E108[] = dspot04_room_0Tex_00E108; -#else -static const char spot04_room_0Tex_00E108[] __attribute__((aligned (2))) = dspot04_room_0Tex_00E108; -#endif - -#define dspot04_room_0Tex_00BF08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00BF08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00BF08[] = dspot04_room_0Tex_00BF08; -#else -static const char spot04_room_0Tex_00BF08[] __attribute__((aligned (2))) = dspot04_room_0Tex_00BF08; -#endif - -#define dspot04_room_0Tex_00E908 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00E908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00E908[] = dspot04_room_0Tex_00E908; -#else -static const char spot04_room_0Tex_00E908[] __attribute__((aligned (2))) = dspot04_room_0Tex_00E908; -#endif - -#define dspot04_room_0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_018490[] = dspot04_room_0DL_018490; -#else -static const char spot04_room_0DL_018490[] __attribute__((aligned (2))) = dspot04_room_0DL_018490; -#endif - -#define dspot04_room_0Tex_01A490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01A490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_01A490[] = dspot04_room_0Tex_01A490; -#else -static const char spot04_room_0Tex_01A490[] __attribute__((aligned (2))) = dspot04_room_0Tex_01A490; -#endif - -#define dspot04_room_0Tex_01AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_01AE90[] = dspot04_room_0Tex_01AE90; -#else -static const char spot04_room_0Tex_01AE90[] __attribute__((aligned (2))) = dspot04_room_0Tex_01AE90; -#endif - -#define dspot04_room_0Tex_01AC90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01AC90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_01AC90[] = dspot04_room_0Tex_01AC90; -#else -static const char spot04_room_0Tex_01AC90[] __attribute__((aligned (2))) = dspot04_room_0Tex_01AC90; -#endif - -#define dspot04_room_0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_008638[] = dspot04_room_0DL_008638; -#else -static const char spot04_room_0DL_008638[] __attribute__((aligned (2))) = dspot04_room_0DL_008638; -#endif - -#define dspot04_room_0Tex_016908 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_016908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_016908[] = dspot04_room_0Tex_016908; -#else -static const char spot04_room_0Tex_016908[] __attribute__((aligned (2))) = dspot04_room_0Tex_016908; -#endif - -#define dspot04_room_0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_00A080[] = dspot04_room_0DL_00A080; -#else -static const char spot04_room_0DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0DL_00A080; -#endif - -#define dspot04_room_0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_017BD0[] = dspot04_room_0DL_017BD0; -#else -static const char spot04_room_0DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0DL_017BD0; -#endif - -#define dspot04_room_0Tex_018A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_018A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_018A90[] = dspot04_room_0Tex_018A90; -#else -static const char spot04_room_0Tex_018A90[] __attribute__((aligned (2))) = dspot04_room_0Tex_018A90; -#endif - -#define dspot04_room_0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_004860[] = dspot04_room_0DL_004860; -#else -static const char spot04_room_0DL_004860[] __attribute__((aligned (2))) = dspot04_room_0DL_004860; -#endif - -#define dspot04_room_0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_018048[] = dspot04_room_0DL_018048; -#else -static const char spot04_room_0DL_018048[] __attribute__((aligned (2))) = dspot04_room_0DL_018048; -#endif - -#define dspot04_room_0Tex_019A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_019A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_019A90[] = dspot04_room_0Tex_019A90; -#else -static const char spot04_room_0Tex_019A90[] __attribute__((aligned (2))) = dspot04_room_0Tex_019A90; -#endif - -#define dspot04_room_0Tex_019290 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_019290" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_019290[] = dspot04_room_0Tex_019290; -#else -static const char spot04_room_0Tex_019290[] __attribute__((aligned (2))) = dspot04_room_0Tex_019290; -#endif - -#define dspot04_room_0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_00AE90[] = dspot04_room_0DL_00AE90; -#else -static const char spot04_room_0DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0DL_00AE90; -#endif - -#define dspot04_room_0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_002A10[] = dspot04_room_0DL_002A10; -#else -static const char spot04_room_0DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0DL_002A10; -#endif - -#define dspot04_room_0Tex_013108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_013108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_013108[] = dspot04_room_0Tex_013108; -#else -static const char spot04_room_0Tex_013108[] __attribute__((aligned (2))) = dspot04_room_0Tex_013108; -#endif - -#define dspot04_room_0Tex_012F08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_012F08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_012F08[] = dspot04_room_0Tex_012F08; -#else -static const char spot04_room_0Tex_012F08[] __attribute__((aligned (2))) = dspot04_room_0Tex_012F08; -#endif - -#define dspot04_room_0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_005A80[] = dspot04_room_0DL_005A80; -#else -static const char spot04_room_0DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0DL_005A80; -#endif - -#define dspot04_room_0Tex_015308 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_015308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_015308[] = dspot04_room_0Tex_015308; -#else -static const char spot04_room_0Tex_015308[] __attribute__((aligned (2))) = dspot04_room_0Tex_015308; -#endif - -#define dspot04_room_0Tex_014B08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_014B08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_014B08[] = dspot04_room_0Tex_014B08; -#else -static const char spot04_room_0Tex_014B08[] __attribute__((aligned (2))) = dspot04_room_0Tex_014B08; -#endif - -#define dspot04_room_0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_00B280[] = dspot04_room_0DL_00B280; -#else -static const char spot04_room_0DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0DL_00B280; -#endif - -#define dspot04_room_0Tex_017108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_017108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_017108[] = dspot04_room_0Tex_017108; -#else -static const char spot04_room_0Tex_017108[] __attribute__((aligned (2))) = dspot04_room_0Tex_017108; -#endif - -#define dspot04_room_0Tex_00D908 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00D908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00D908[] = dspot04_room_0Tex_00D908; -#else -static const char spot04_room_0Tex_00D908[] __attribute__((aligned (2))) = dspot04_room_0Tex_00D908; -#endif - -#define dspot04_room_0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_00B8F8[] = dspot04_room_0DL_00B8F8; -#else -static const char spot04_room_0DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0DL_00B8F8; -#endif - -#define dspot04_room_0Tex_016D08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_016D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_016D08[] = dspot04_room_0Tex_016D08; -#else -static const char spot04_room_0Tex_016D08[] __attribute__((aligned (2))) = dspot04_room_0Tex_016D08; -#endif - -#define dspot04_room_0Tex_013308 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_013308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_013308[] = dspot04_room_0Tex_013308; -#else -static const char spot04_room_0Tex_013308[] __attribute__((aligned (2))) = dspot04_room_0Tex_013308; -#endif - -#define dspot04_room_0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_0189A8[] = dspot04_room_0DL_0189A8; -#else -static const char spot04_room_0DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0DL_0189A8; -#endif - -#define dspot04_room_0Tex_01B090 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01B090" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_01B090[] = dspot04_room_0Tex_01B090; -#else -static const char spot04_room_0Tex_01B090[] __attribute__((aligned (2))) = dspot04_room_0Tex_01B090; -#endif - -#define dspot04_room_0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_00BD98[] = dspot04_room_0DL_00BD98; -#else -static const char spot04_room_0DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0DL_00BD98; -#endif - -#define dspot04_room_0Tex_011F08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_011F08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_011F08[] = dspot04_room_0Tex_011F08; -#else -static const char spot04_room_0Tex_011F08[] __attribute__((aligned (2))) = dspot04_room_0Tex_011F08; -#endif - -#define dspot04_room_0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_006280[] = dspot04_room_0DL_006280; -#else -static const char spot04_room_0DL_006280[] __attribute__((aligned (2))) = dspot04_room_0DL_006280; -#endif - -#define dspot04_room_0Tex_00CF08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00CF08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00CF08[] = dspot04_room_0Tex_00CF08; -#else -static const char spot04_room_0Tex_00CF08[] __attribute__((aligned (2))) = dspot04_room_0Tex_00CF08; -#endif - -#define dspot04_room_0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_006C10[] = dspot04_room_0DL_006C10; -#else -static const char spot04_room_0DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0DL_006C10; -#endif - -#define dspot04_room_0Tex_00D408 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00D408" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00D408[] = dspot04_room_0Tex_00D408; -#else -static const char spot04_room_0Tex_00D408[] __attribute__((aligned (2))) = dspot04_room_0Tex_00D408; -#endif - -#define dspot04_room_0Tex_00D308 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00D308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00D308[] = dspot04_room_0Tex_00D308; -#else -static const char spot04_room_0Tex_00D308[] __attribute__((aligned (2))) = dspot04_room_0Tex_00D308; -#endif - -#define dspot04_room_0Tex_015D08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_015D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_015D08[] = dspot04_room_0Tex_015D08; -#else -static const char spot04_room_0Tex_015D08[] __attribute__((aligned (2))) = dspot04_room_0Tex_015D08; -#endif - -#define dspot04_room_0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_009740[] = dspot04_room_0DL_009740; -#else -static const char spot04_room_0DL_009740[] __attribute__((aligned (2))) = dspot04_room_0DL_009740; -#endif - -#define dspot04_room_0Tex_016508 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_016508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_016508[] = dspot04_room_0Tex_016508; -#else -static const char spot04_room_0Tex_016508[] __attribute__((aligned (2))) = dspot04_room_0Tex_016508; -#endif - -#define dspot04_room_0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_00A808[] = dspot04_room_0DL_00A808; -#else -static const char spot04_room_0DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0DL_00A808; -#endif - -#define dspot04_room_0Tex_016108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_016108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_016108[] = dspot04_room_0Tex_016108; -#else -static const char spot04_room_0Tex_016108[] __attribute__((aligned (2))) = dspot04_room_0Tex_016108; -#endif - -#define dspot04_room_0Tex_00D508 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00D508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00D508[] = dspot04_room_0Tex_00D508; -#else -static const char spot04_room_0Tex_00D508[] __attribute__((aligned (2))) = dspot04_room_0Tex_00D508; -#endif - -#define dspot04_room_0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0DL_0055C0[] = dspot04_room_0DL_0055C0; -#else -static const char spot04_room_0DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0DL_0055C0; -#endif - -#define dspot04_room_0Tex_00C708 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00C708" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00C708[] = dspot04_room_0Tex_00C708; -#else -static const char spot04_room_0Tex_00C708[] __attribute__((aligned (2))) = dspot04_room_0Tex_00C708; -#endif - -#define dspot04_room_0Tex_00CB08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00CB08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_00CB08[] = dspot04_room_0Tex_00CB08; -#else -static const char spot04_room_0Tex_00CB08[] __attribute__((aligned (2))) = dspot04_room_0Tex_00CB08; -#endif - -#define dspot04_room_0Tex_013708 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_013708" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_013708[] = dspot04_room_0Tex_013708; -#else -static const char spot04_room_0Tex_013708[] __attribute__((aligned (2))) = dspot04_room_0Tex_013708; -#endif - -#define dspot04_room_0Tex_014308 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_014308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Tex_014308[] = dspot04_room_0Tex_014308; -#else -static const char spot04_room_0Tex_014308[] __attribute__((aligned (2))) = dspot04_room_0Tex_014308; -#endif - -#define dspot04_room_0Set_0006B0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_008ED8[] = dspot04_room_0Set_0006B0DL_008ED8; -#else -static const char spot04_room_0Set_0006B0DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_008ED8; -#endif - -#define dspot04_room_0Set_0006B0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_0187F0[] = dspot04_room_0Set_0006B0DL_0187F0; -#else -static const char spot04_room_0Set_0006B0DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_0187F0; -#endif - -#define dspot04_room_0Set_0006B0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_007A20[] = dspot04_room_0Set_0006B0DL_007A20; -#else -static const char spot04_room_0Set_0006B0DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_007A20; -#endif - -#define dspot04_room_0Set_0006B0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_018490[] = dspot04_room_0Set_0006B0DL_018490; -#else -static const char spot04_room_0Set_0006B0DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_018490; -#endif - -#define dspot04_room_0Set_0006B0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_008638[] = dspot04_room_0Set_0006B0DL_008638; -#else -static const char spot04_room_0Set_0006B0DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_008638; -#endif - -#define dspot04_room_0Set_0006B0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_00A080[] = dspot04_room_0Set_0006B0DL_00A080; -#else -static const char spot04_room_0Set_0006B0DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_00A080; -#endif - -#define dspot04_room_0Set_0006B0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_017BD0[] = dspot04_room_0Set_0006B0DL_017BD0; -#else -static const char spot04_room_0Set_0006B0DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_017BD0; -#endif - -#define dspot04_room_0Set_0006B0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_004860[] = dspot04_room_0Set_0006B0DL_004860; -#else -static const char spot04_room_0Set_0006B0DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_004860; -#endif - -#define dspot04_room_0Set_0006B0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_018048[] = dspot04_room_0Set_0006B0DL_018048; -#else -static const char spot04_room_0Set_0006B0DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_018048; -#endif - -#define dspot04_room_0Set_0006B0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_00AE90[] = dspot04_room_0Set_0006B0DL_00AE90; -#else -static const char spot04_room_0Set_0006B0DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_00AE90; -#endif - -#define dspot04_room_0Set_0006B0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_002A10[] = dspot04_room_0Set_0006B0DL_002A10; -#else -static const char spot04_room_0Set_0006B0DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_002A10; -#endif - -#define dspot04_room_0Set_0006B0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_005A80[] = dspot04_room_0Set_0006B0DL_005A80; -#else -static const char spot04_room_0Set_0006B0DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_005A80; -#endif - -#define dspot04_room_0Set_0006B0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_00B280[] = dspot04_room_0Set_0006B0DL_00B280; -#else -static const char spot04_room_0Set_0006B0DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_00B280; -#endif - -#define dspot04_room_0Set_0006B0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_00B8F8[] = dspot04_room_0Set_0006B0DL_00B8F8; -#else -static const char spot04_room_0Set_0006B0DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_00B8F8; -#endif - -#define dspot04_room_0Set_0006B0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_0189A8[] = dspot04_room_0Set_0006B0DL_0189A8; -#else -static const char spot04_room_0Set_0006B0DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_0189A8; -#endif - -#define dspot04_room_0Set_0006B0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_00BD98[] = dspot04_room_0Set_0006B0DL_00BD98; -#else -static const char spot04_room_0Set_0006B0DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_00BD98; -#endif - -#define dspot04_room_0Set_0006B0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_006280[] = dspot04_room_0Set_0006B0DL_006280; -#else -static const char spot04_room_0Set_0006B0DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_006280; -#endif - -#define dspot04_room_0Set_0006B0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_006C10[] = dspot04_room_0Set_0006B0DL_006C10; -#else -static const char spot04_room_0Set_0006B0DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_006C10; -#endif - -#define dspot04_room_0Set_0006B0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_009740[] = dspot04_room_0Set_0006B0DL_009740; -#else -static const char spot04_room_0Set_0006B0DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_009740; -#endif - -#define dspot04_room_0Set_0006B0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_00A808[] = dspot04_room_0Set_0006B0DL_00A808; -#else -static const char spot04_room_0Set_0006B0DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_00A808; -#endif - -#define dspot04_room_0Set_0006B0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0006B0DL_0055C0[] = dspot04_room_0Set_0006B0DL_0055C0; -#else -static const char spot04_room_0Set_0006B0DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_0006B0DL_0055C0; -#endif - -#define dspot04_room_0Set_000940DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_008ED8[] = dspot04_room_0Set_000940DL_008ED8; -#else -static const char spot04_room_0Set_000940DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_008ED8; -#endif - -#define dspot04_room_0Set_000940DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_0187F0[] = dspot04_room_0Set_000940DL_0187F0; -#else -static const char spot04_room_0Set_000940DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_0187F0; -#endif - -#define dspot04_room_0Set_000940DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_007A20[] = dspot04_room_0Set_000940DL_007A20; -#else -static const char spot04_room_0Set_000940DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_007A20; -#endif - -#define dspot04_room_0Set_000940DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_018490[] = dspot04_room_0Set_000940DL_018490; -#else -static const char spot04_room_0Set_000940DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_018490; -#endif - -#define dspot04_room_0Set_000940DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_008638[] = dspot04_room_0Set_000940DL_008638; -#else -static const char spot04_room_0Set_000940DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_008638; -#endif - -#define dspot04_room_0Set_000940DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_00A080[] = dspot04_room_0Set_000940DL_00A080; -#else -static const char spot04_room_0Set_000940DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_00A080; -#endif - -#define dspot04_room_0Set_000940DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_017BD0[] = dspot04_room_0Set_000940DL_017BD0; -#else -static const char spot04_room_0Set_000940DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_017BD0; -#endif - -#define dspot04_room_0Set_000940DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_004860[] = dspot04_room_0Set_000940DL_004860; -#else -static const char spot04_room_0Set_000940DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_004860; -#endif - -#define dspot04_room_0Set_000940DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_018048[] = dspot04_room_0Set_000940DL_018048; -#else -static const char spot04_room_0Set_000940DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_018048; -#endif - -#define dspot04_room_0Set_000940DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_00AE90[] = dspot04_room_0Set_000940DL_00AE90; -#else -static const char spot04_room_0Set_000940DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_00AE90; -#endif - -#define dspot04_room_0Set_000940DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_002A10[] = dspot04_room_0Set_000940DL_002A10; -#else -static const char spot04_room_0Set_000940DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_002A10; -#endif - -#define dspot04_room_0Set_000940DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_005A80[] = dspot04_room_0Set_000940DL_005A80; -#else -static const char spot04_room_0Set_000940DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_005A80; -#endif - -#define dspot04_room_0Set_000940DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_00B280[] = dspot04_room_0Set_000940DL_00B280; -#else -static const char spot04_room_0Set_000940DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_00B280; -#endif - -#define dspot04_room_0Set_000940DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_00B8F8[] = dspot04_room_0Set_000940DL_00B8F8; -#else -static const char spot04_room_0Set_000940DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_00B8F8; -#endif - -#define dspot04_room_0Set_000940DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_0189A8[] = dspot04_room_0Set_000940DL_0189A8; -#else -static const char spot04_room_0Set_000940DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_0189A8; -#endif - -#define dspot04_room_0Set_000940DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_00BD98[] = dspot04_room_0Set_000940DL_00BD98; -#else -static const char spot04_room_0Set_000940DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_00BD98; -#endif - -#define dspot04_room_0Set_000940DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_006280[] = dspot04_room_0Set_000940DL_006280; -#else -static const char spot04_room_0Set_000940DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_006280; -#endif - -#define dspot04_room_0Set_000940DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_006C10[] = dspot04_room_0Set_000940DL_006C10; -#else -static const char spot04_room_0Set_000940DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_006C10; -#endif - -#define dspot04_room_0Set_000940DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_009740[] = dspot04_room_0Set_000940DL_009740; -#else -static const char spot04_room_0Set_000940DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_009740; -#endif - -#define dspot04_room_0Set_000940DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_00A808[] = dspot04_room_0Set_000940DL_00A808; -#else -static const char spot04_room_0Set_000940DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_00A808; -#endif - -#define dspot04_room_0Set_000940DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000940DL_0055C0[] = dspot04_room_0Set_000940DL_0055C0; -#else -static const char spot04_room_0Set_000940DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000940DL_0055C0; -#endif - -#define dspot04_room_0Set_000BA0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_008ED8[] = dspot04_room_0Set_000BA0DL_008ED8; -#else -static const char spot04_room_0Set_000BA0DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_008ED8; -#endif - -#define dspot04_room_0Set_000BA0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_0187F0[] = dspot04_room_0Set_000BA0DL_0187F0; -#else -static const char spot04_room_0Set_000BA0DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_0187F0; -#endif - -#define dspot04_room_0Set_000BA0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_007A20[] = dspot04_room_0Set_000BA0DL_007A20; -#else -static const char spot04_room_0Set_000BA0DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_007A20; -#endif - -#define dspot04_room_0Set_000BA0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_018490[] = dspot04_room_0Set_000BA0DL_018490; -#else -static const char spot04_room_0Set_000BA0DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_018490; -#endif - -#define dspot04_room_0Set_000BA0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_008638[] = dspot04_room_0Set_000BA0DL_008638; -#else -static const char spot04_room_0Set_000BA0DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_008638; -#endif - -#define dspot04_room_0Set_000BA0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_00A080[] = dspot04_room_0Set_000BA0DL_00A080; -#else -static const char spot04_room_0Set_000BA0DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_00A080; -#endif - -#define dspot04_room_0Set_000BA0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_017BD0[] = dspot04_room_0Set_000BA0DL_017BD0; -#else -static const char spot04_room_0Set_000BA0DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_017BD0; -#endif - -#define dspot04_room_0Set_000BA0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_004860[] = dspot04_room_0Set_000BA0DL_004860; -#else -static const char spot04_room_0Set_000BA0DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_004860; -#endif - -#define dspot04_room_0Set_000BA0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_018048[] = dspot04_room_0Set_000BA0DL_018048; -#else -static const char spot04_room_0Set_000BA0DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_018048; -#endif - -#define dspot04_room_0Set_000BA0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_00AE90[] = dspot04_room_0Set_000BA0DL_00AE90; -#else -static const char spot04_room_0Set_000BA0DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_00AE90; -#endif - -#define dspot04_room_0Set_000BA0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_002A10[] = dspot04_room_0Set_000BA0DL_002A10; -#else -static const char spot04_room_0Set_000BA0DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_002A10; -#endif - -#define dspot04_room_0Set_000BA0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_005A80[] = dspot04_room_0Set_000BA0DL_005A80; -#else -static const char spot04_room_0Set_000BA0DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_005A80; -#endif - -#define dspot04_room_0Set_000BA0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_00B280[] = dspot04_room_0Set_000BA0DL_00B280; -#else -static const char spot04_room_0Set_000BA0DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_00B280; -#endif - -#define dspot04_room_0Set_000BA0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_00B8F8[] = dspot04_room_0Set_000BA0DL_00B8F8; -#else -static const char spot04_room_0Set_000BA0DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_00B8F8; -#endif - -#define dspot04_room_0Set_000BA0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_0189A8[] = dspot04_room_0Set_000BA0DL_0189A8; -#else -static const char spot04_room_0Set_000BA0DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_0189A8; -#endif - -#define dspot04_room_0Set_000BA0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_00BD98[] = dspot04_room_0Set_000BA0DL_00BD98; -#else -static const char spot04_room_0Set_000BA0DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_00BD98; -#endif - -#define dspot04_room_0Set_000BA0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_006280[] = dspot04_room_0Set_000BA0DL_006280; -#else -static const char spot04_room_0Set_000BA0DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_006280; -#endif - -#define dspot04_room_0Set_000BA0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_006C10[] = dspot04_room_0Set_000BA0DL_006C10; -#else -static const char spot04_room_0Set_000BA0DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_006C10; -#endif - -#define dspot04_room_0Set_000BA0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_009740[] = dspot04_room_0Set_000BA0DL_009740; -#else -static const char spot04_room_0Set_000BA0DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_009740; -#endif - -#define dspot04_room_0Set_000BA0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_00A808[] = dspot04_room_0Set_000BA0DL_00A808; -#else -static const char spot04_room_0Set_000BA0DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_00A808; -#endif - -#define dspot04_room_0Set_000BA0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BA0DL_0055C0[] = dspot04_room_0Set_000BA0DL_0055C0; -#else -static const char spot04_room_0Set_000BA0DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000BA0DL_0055C0; -#endif - -#define dspot04_room_0Set_000BD0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_008ED8[] = dspot04_room_0Set_000BD0DL_008ED8; -#else -static const char spot04_room_0Set_000BD0DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_008ED8; -#endif - -#define dspot04_room_0Set_000BD0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_0187F0[] = dspot04_room_0Set_000BD0DL_0187F0; -#else -static const char spot04_room_0Set_000BD0DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_0187F0; -#endif - -#define dspot04_room_0Set_000BD0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_007A20[] = dspot04_room_0Set_000BD0DL_007A20; -#else -static const char spot04_room_0Set_000BD0DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_007A20; -#endif - -#define dspot04_room_0Set_000BD0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_018490[] = dspot04_room_0Set_000BD0DL_018490; -#else -static const char spot04_room_0Set_000BD0DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_018490; -#endif - -#define dspot04_room_0Set_000BD0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_008638[] = dspot04_room_0Set_000BD0DL_008638; -#else -static const char spot04_room_0Set_000BD0DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_008638; -#endif - -#define dspot04_room_0Set_000BD0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_00A080[] = dspot04_room_0Set_000BD0DL_00A080; -#else -static const char spot04_room_0Set_000BD0DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_00A080; -#endif - -#define dspot04_room_0Set_000BD0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_017BD0[] = dspot04_room_0Set_000BD0DL_017BD0; -#else -static const char spot04_room_0Set_000BD0DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_017BD0; -#endif - -#define dspot04_room_0Set_000BD0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_004860[] = dspot04_room_0Set_000BD0DL_004860; -#else -static const char spot04_room_0Set_000BD0DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_004860; -#endif - -#define dspot04_room_0Set_000BD0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_018048[] = dspot04_room_0Set_000BD0DL_018048; -#else -static const char spot04_room_0Set_000BD0DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_018048; -#endif - -#define dspot04_room_0Set_000BD0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_00AE90[] = dspot04_room_0Set_000BD0DL_00AE90; -#else -static const char spot04_room_0Set_000BD0DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_00AE90; -#endif - -#define dspot04_room_0Set_000BD0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_002A10[] = dspot04_room_0Set_000BD0DL_002A10; -#else -static const char spot04_room_0Set_000BD0DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_002A10; -#endif - -#define dspot04_room_0Set_000BD0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_005A80[] = dspot04_room_0Set_000BD0DL_005A80; -#else -static const char spot04_room_0Set_000BD0DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_005A80; -#endif - -#define dspot04_room_0Set_000BD0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_00B280[] = dspot04_room_0Set_000BD0DL_00B280; -#else -static const char spot04_room_0Set_000BD0DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_00B280; -#endif - -#define dspot04_room_0Set_000BD0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_00B8F8[] = dspot04_room_0Set_000BD0DL_00B8F8; -#else -static const char spot04_room_0Set_000BD0DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_00B8F8; -#endif - -#define dspot04_room_0Set_000BD0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_0189A8[] = dspot04_room_0Set_000BD0DL_0189A8; -#else -static const char spot04_room_0Set_000BD0DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_0189A8; -#endif - -#define dspot04_room_0Set_000BD0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_00BD98[] = dspot04_room_0Set_000BD0DL_00BD98; -#else -static const char spot04_room_0Set_000BD0DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_00BD98; -#endif - -#define dspot04_room_0Set_000BD0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_006280[] = dspot04_room_0Set_000BD0DL_006280; -#else -static const char spot04_room_0Set_000BD0DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_006280; -#endif - -#define dspot04_room_0Set_000BD0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_006C10[] = dspot04_room_0Set_000BD0DL_006C10; -#else -static const char spot04_room_0Set_000BD0DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_006C10; -#endif - -#define dspot04_room_0Set_000BD0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_009740[] = dspot04_room_0Set_000BD0DL_009740; -#else -static const char spot04_room_0Set_000BD0DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_009740; -#endif - -#define dspot04_room_0Set_000BD0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_00A808[] = dspot04_room_0Set_000BD0DL_00A808; -#else -static const char spot04_room_0Set_000BD0DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_00A808; -#endif - -#define dspot04_room_0Set_000BD0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000BD0DL_0055C0[] = dspot04_room_0Set_000BD0DL_0055C0; -#else -static const char spot04_room_0Set_000BD0DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000BD0DL_0055C0; -#endif - -#define dspot04_room_0Set_000C00DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_008ED8[] = dspot04_room_0Set_000C00DL_008ED8; -#else -static const char spot04_room_0Set_000C00DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_008ED8; -#endif - -#define dspot04_room_0Set_000C00DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_0187F0[] = dspot04_room_0Set_000C00DL_0187F0; -#else -static const char spot04_room_0Set_000C00DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_0187F0; -#endif - -#define dspot04_room_0Set_000C00DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_007A20[] = dspot04_room_0Set_000C00DL_007A20; -#else -static const char spot04_room_0Set_000C00DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_007A20; -#endif - -#define dspot04_room_0Set_000C00DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_018490[] = dspot04_room_0Set_000C00DL_018490; -#else -static const char spot04_room_0Set_000C00DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_018490; -#endif - -#define dspot04_room_0Set_000C00DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_008638[] = dspot04_room_0Set_000C00DL_008638; -#else -static const char spot04_room_0Set_000C00DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_008638; -#endif - -#define dspot04_room_0Set_000C00DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_00A080[] = dspot04_room_0Set_000C00DL_00A080; -#else -static const char spot04_room_0Set_000C00DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_00A080; -#endif - -#define dspot04_room_0Set_000C00DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_017BD0[] = dspot04_room_0Set_000C00DL_017BD0; -#else -static const char spot04_room_0Set_000C00DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_017BD0; -#endif - -#define dspot04_room_0Set_000C00DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_004860[] = dspot04_room_0Set_000C00DL_004860; -#else -static const char spot04_room_0Set_000C00DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_004860; -#endif - -#define dspot04_room_0Set_000C00DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_018048[] = dspot04_room_0Set_000C00DL_018048; -#else -static const char spot04_room_0Set_000C00DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_018048; -#endif - -#define dspot04_room_0Set_000C00DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_00AE90[] = dspot04_room_0Set_000C00DL_00AE90; -#else -static const char spot04_room_0Set_000C00DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_00AE90; -#endif - -#define dspot04_room_0Set_000C00DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_002A10[] = dspot04_room_0Set_000C00DL_002A10; -#else -static const char spot04_room_0Set_000C00DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_002A10; -#endif - -#define dspot04_room_0Set_000C00DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_005A80[] = dspot04_room_0Set_000C00DL_005A80; -#else -static const char spot04_room_0Set_000C00DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_005A80; -#endif - -#define dspot04_room_0Set_000C00DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_00B280[] = dspot04_room_0Set_000C00DL_00B280; -#else -static const char spot04_room_0Set_000C00DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_00B280; -#endif - -#define dspot04_room_0Set_000C00DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_00B8F8[] = dspot04_room_0Set_000C00DL_00B8F8; -#else -static const char spot04_room_0Set_000C00DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_00B8F8; -#endif - -#define dspot04_room_0Set_000C00DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_0189A8[] = dspot04_room_0Set_000C00DL_0189A8; -#else -static const char spot04_room_0Set_000C00DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_0189A8; -#endif - -#define dspot04_room_0Set_000C00DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_00BD98[] = dspot04_room_0Set_000C00DL_00BD98; -#else -static const char spot04_room_0Set_000C00DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_00BD98; -#endif - -#define dspot04_room_0Set_000C00DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_006280[] = dspot04_room_0Set_000C00DL_006280; -#else -static const char spot04_room_0Set_000C00DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_006280; -#endif - -#define dspot04_room_0Set_000C00DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_006C10[] = dspot04_room_0Set_000C00DL_006C10; -#else -static const char spot04_room_0Set_000C00DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_006C10; -#endif - -#define dspot04_room_0Set_000C00DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_009740[] = dspot04_room_0Set_000C00DL_009740; -#else -static const char spot04_room_0Set_000C00DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_009740; -#endif - -#define dspot04_room_0Set_000C00DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_00A808[] = dspot04_room_0Set_000C00DL_00A808; -#else -static const char spot04_room_0Set_000C00DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_00A808; -#endif - -#define dspot04_room_0Set_000C00DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C00DL_0055C0[] = dspot04_room_0Set_000C00DL_0055C0; -#else -static const char spot04_room_0Set_000C00DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000C00DL_0055C0; -#endif - -#define dspot04_room_0Set_000C30DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_008ED8[] = dspot04_room_0Set_000C30DL_008ED8; -#else -static const char spot04_room_0Set_000C30DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_008ED8; -#endif - -#define dspot04_room_0Set_000C30DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_0187F0[] = dspot04_room_0Set_000C30DL_0187F0; -#else -static const char spot04_room_0Set_000C30DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_0187F0; -#endif - -#define dspot04_room_0Set_000C30DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_007A20[] = dspot04_room_0Set_000C30DL_007A20; -#else -static const char spot04_room_0Set_000C30DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_007A20; -#endif - -#define dspot04_room_0Set_000C30DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_018490[] = dspot04_room_0Set_000C30DL_018490; -#else -static const char spot04_room_0Set_000C30DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_018490; -#endif - -#define dspot04_room_0Set_000C30DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_008638[] = dspot04_room_0Set_000C30DL_008638; -#else -static const char spot04_room_0Set_000C30DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_008638; -#endif - -#define dspot04_room_0Set_000C30DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_00A080[] = dspot04_room_0Set_000C30DL_00A080; -#else -static const char spot04_room_0Set_000C30DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_00A080; -#endif - -#define dspot04_room_0Set_000C30DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_017BD0[] = dspot04_room_0Set_000C30DL_017BD0; -#else -static const char spot04_room_0Set_000C30DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_017BD0; -#endif - -#define dspot04_room_0Set_000C30DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_004860[] = dspot04_room_0Set_000C30DL_004860; -#else -static const char spot04_room_0Set_000C30DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_004860; -#endif - -#define dspot04_room_0Set_000C30DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_018048[] = dspot04_room_0Set_000C30DL_018048; -#else -static const char spot04_room_0Set_000C30DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_018048; -#endif - -#define dspot04_room_0Set_000C30DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_00AE90[] = dspot04_room_0Set_000C30DL_00AE90; -#else -static const char spot04_room_0Set_000C30DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_00AE90; -#endif - -#define dspot04_room_0Set_000C30DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_002A10[] = dspot04_room_0Set_000C30DL_002A10; -#else -static const char spot04_room_0Set_000C30DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_002A10; -#endif - -#define dspot04_room_0Set_000C30DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_005A80[] = dspot04_room_0Set_000C30DL_005A80; -#else -static const char spot04_room_0Set_000C30DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_005A80; -#endif - -#define dspot04_room_0Set_000C30DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_00B280[] = dspot04_room_0Set_000C30DL_00B280; -#else -static const char spot04_room_0Set_000C30DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_00B280; -#endif - -#define dspot04_room_0Set_000C30DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_00B8F8[] = dspot04_room_0Set_000C30DL_00B8F8; -#else -static const char spot04_room_0Set_000C30DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_00B8F8; -#endif - -#define dspot04_room_0Set_000C30DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_0189A8[] = dspot04_room_0Set_000C30DL_0189A8; -#else -static const char spot04_room_0Set_000C30DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_0189A8; -#endif - -#define dspot04_room_0Set_000C30DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_00BD98[] = dspot04_room_0Set_000C30DL_00BD98; -#else -static const char spot04_room_0Set_000C30DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_00BD98; -#endif - -#define dspot04_room_0Set_000C30DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_006280[] = dspot04_room_0Set_000C30DL_006280; -#else -static const char spot04_room_0Set_000C30DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_006280; -#endif - -#define dspot04_room_0Set_000C30DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_006C10[] = dspot04_room_0Set_000C30DL_006C10; -#else -static const char spot04_room_0Set_000C30DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_006C10; -#endif - -#define dspot04_room_0Set_000C30DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_009740[] = dspot04_room_0Set_000C30DL_009740; -#else -static const char spot04_room_0Set_000C30DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_009740; -#endif - -#define dspot04_room_0Set_000C30DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_00A808[] = dspot04_room_0Set_000C30DL_00A808; -#else -static const char spot04_room_0Set_000C30DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_00A808; -#endif - -#define dspot04_room_0Set_000C30DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000C30DL_0055C0[] = dspot04_room_0Set_000C30DL_0055C0; -#else -static const char spot04_room_0Set_000C30DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000C30DL_0055C0; -#endif - -#define dspot04_room_0Set_000E60DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_008ED8[] = dspot04_room_0Set_000E60DL_008ED8; -#else -static const char spot04_room_0Set_000E60DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_008ED8; -#endif - -#define dspot04_room_0Set_000E60DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_0187F0[] = dspot04_room_0Set_000E60DL_0187F0; -#else -static const char spot04_room_0Set_000E60DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_0187F0; -#endif - -#define dspot04_room_0Set_000E60DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_007A20[] = dspot04_room_0Set_000E60DL_007A20; -#else -static const char spot04_room_0Set_000E60DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_007A20; -#endif - -#define dspot04_room_0Set_000E60DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_018490[] = dspot04_room_0Set_000E60DL_018490; -#else -static const char spot04_room_0Set_000E60DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_018490; -#endif - -#define dspot04_room_0Set_000E60DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_008638[] = dspot04_room_0Set_000E60DL_008638; -#else -static const char spot04_room_0Set_000E60DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_008638; -#endif - -#define dspot04_room_0Set_000E60DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_00A080[] = dspot04_room_0Set_000E60DL_00A080; -#else -static const char spot04_room_0Set_000E60DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_00A080; -#endif - -#define dspot04_room_0Set_000E60DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_017BD0[] = dspot04_room_0Set_000E60DL_017BD0; -#else -static const char spot04_room_0Set_000E60DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_017BD0; -#endif - -#define dspot04_room_0Set_000E60DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_004860[] = dspot04_room_0Set_000E60DL_004860; -#else -static const char spot04_room_0Set_000E60DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_004860; -#endif - -#define dspot04_room_0Set_000E60DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_018048[] = dspot04_room_0Set_000E60DL_018048; -#else -static const char spot04_room_0Set_000E60DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_018048; -#endif - -#define dspot04_room_0Set_000E60DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_00AE90[] = dspot04_room_0Set_000E60DL_00AE90; -#else -static const char spot04_room_0Set_000E60DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_00AE90; -#endif - -#define dspot04_room_0Set_000E60DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_002A10[] = dspot04_room_0Set_000E60DL_002A10; -#else -static const char spot04_room_0Set_000E60DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_002A10; -#endif - -#define dspot04_room_0Set_000E60DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_005A80[] = dspot04_room_0Set_000E60DL_005A80; -#else -static const char spot04_room_0Set_000E60DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_005A80; -#endif - -#define dspot04_room_0Set_000E60DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_00B280[] = dspot04_room_0Set_000E60DL_00B280; -#else -static const char spot04_room_0Set_000E60DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_00B280; -#endif - -#define dspot04_room_0Set_000E60DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_00B8F8[] = dspot04_room_0Set_000E60DL_00B8F8; -#else -static const char spot04_room_0Set_000E60DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_00B8F8; -#endif - -#define dspot04_room_0Set_000E60DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_0189A8[] = dspot04_room_0Set_000E60DL_0189A8; -#else -static const char spot04_room_0Set_000E60DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_0189A8; -#endif - -#define dspot04_room_0Set_000E60DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_00BD98[] = dspot04_room_0Set_000E60DL_00BD98; -#else -static const char spot04_room_0Set_000E60DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_00BD98; -#endif - -#define dspot04_room_0Set_000E60DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_006280[] = dspot04_room_0Set_000E60DL_006280; -#else -static const char spot04_room_0Set_000E60DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_006280; -#endif - -#define dspot04_room_0Set_000E60DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_006C10[] = dspot04_room_0Set_000E60DL_006C10; -#else -static const char spot04_room_0Set_000E60DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_006C10; -#endif - -#define dspot04_room_0Set_000E60DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_009740[] = dspot04_room_0Set_000E60DL_009740; -#else -static const char spot04_room_0Set_000E60DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_009740; -#endif - -#define dspot04_room_0Set_000E60DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_00A808[] = dspot04_room_0Set_000E60DL_00A808; -#else -static const char spot04_room_0Set_000E60DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_00A808; -#endif - -#define dspot04_room_0Set_000E60DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000E60DL_0055C0[] = dspot04_room_0Set_000E60DL_0055C0; -#else -static const char spot04_room_0Set_000E60DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000E60DL_0055C0; -#endif - -#define dspot04_room_0Set_000ED0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_008ED8[] = dspot04_room_0Set_000ED0DL_008ED8; -#else -static const char spot04_room_0Set_000ED0DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_008ED8; -#endif - -#define dspot04_room_0Set_000ED0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_0187F0[] = dspot04_room_0Set_000ED0DL_0187F0; -#else -static const char spot04_room_0Set_000ED0DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_0187F0; -#endif - -#define dspot04_room_0Set_000ED0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_007A20[] = dspot04_room_0Set_000ED0DL_007A20; -#else -static const char spot04_room_0Set_000ED0DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_007A20; -#endif - -#define dspot04_room_0Set_000ED0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_018490[] = dspot04_room_0Set_000ED0DL_018490; -#else -static const char spot04_room_0Set_000ED0DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_018490; -#endif - -#define dspot04_room_0Set_000ED0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_008638[] = dspot04_room_0Set_000ED0DL_008638; -#else -static const char spot04_room_0Set_000ED0DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_008638; -#endif - -#define dspot04_room_0Set_000ED0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_00A080[] = dspot04_room_0Set_000ED0DL_00A080; -#else -static const char spot04_room_0Set_000ED0DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_00A080; -#endif - -#define dspot04_room_0Set_000ED0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_017BD0[] = dspot04_room_0Set_000ED0DL_017BD0; -#else -static const char spot04_room_0Set_000ED0DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_017BD0; -#endif - -#define dspot04_room_0Set_000ED0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_004860[] = dspot04_room_0Set_000ED0DL_004860; -#else -static const char spot04_room_0Set_000ED0DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_004860; -#endif - -#define dspot04_room_0Set_000ED0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_018048[] = dspot04_room_0Set_000ED0DL_018048; -#else -static const char spot04_room_0Set_000ED0DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_018048; -#endif - -#define dspot04_room_0Set_000ED0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_00AE90[] = dspot04_room_0Set_000ED0DL_00AE90; -#else -static const char spot04_room_0Set_000ED0DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_00AE90; -#endif - -#define dspot04_room_0Set_000ED0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_002A10[] = dspot04_room_0Set_000ED0DL_002A10; -#else -static const char spot04_room_0Set_000ED0DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_002A10; -#endif - -#define dspot04_room_0Set_000ED0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_005A80[] = dspot04_room_0Set_000ED0DL_005A80; -#else -static const char spot04_room_0Set_000ED0DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_005A80; -#endif - -#define dspot04_room_0Set_000ED0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_00B280[] = dspot04_room_0Set_000ED0DL_00B280; -#else -static const char spot04_room_0Set_000ED0DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_00B280; -#endif - -#define dspot04_room_0Set_000ED0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_00B8F8[] = dspot04_room_0Set_000ED0DL_00B8F8; -#else -static const char spot04_room_0Set_000ED0DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_00B8F8; -#endif - -#define dspot04_room_0Set_000ED0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_0189A8[] = dspot04_room_0Set_000ED0DL_0189A8; -#else -static const char spot04_room_0Set_000ED0DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_0189A8; -#endif - -#define dspot04_room_0Set_000ED0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_00BD98[] = dspot04_room_0Set_000ED0DL_00BD98; -#else -static const char spot04_room_0Set_000ED0DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_00BD98; -#endif - -#define dspot04_room_0Set_000ED0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_006280[] = dspot04_room_0Set_000ED0DL_006280; -#else -static const char spot04_room_0Set_000ED0DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_006280; -#endif - -#define dspot04_room_0Set_000ED0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_006C10[] = dspot04_room_0Set_000ED0DL_006C10; -#else -static const char spot04_room_0Set_000ED0DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_006C10; -#endif - -#define dspot04_room_0Set_000ED0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_009740[] = dspot04_room_0Set_000ED0DL_009740; -#else -static const char spot04_room_0Set_000ED0DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_009740; -#endif - -#define dspot04_room_0Set_000ED0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_00A808[] = dspot04_room_0Set_000ED0DL_00A808; -#else -static const char spot04_room_0Set_000ED0DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_00A808; -#endif - -#define dspot04_room_0Set_000ED0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000ED0DL_0055C0[] = dspot04_room_0Set_000ED0DL_0055C0; -#else -static const char spot04_room_0Set_000ED0DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000ED0DL_0055C0; -#endif - -#define dspot04_room_0Set_000F40DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_008ED8[] = dspot04_room_0Set_000F40DL_008ED8; -#else -static const char spot04_room_0Set_000F40DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_008ED8; -#endif - -#define dspot04_room_0Set_000F40DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_0187F0[] = dspot04_room_0Set_000F40DL_0187F0; -#else -static const char spot04_room_0Set_000F40DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_0187F0; -#endif - -#define dspot04_room_0Set_000F40DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_007A20[] = dspot04_room_0Set_000F40DL_007A20; -#else -static const char spot04_room_0Set_000F40DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_007A20; -#endif - -#define dspot04_room_0Set_000F40DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_018490[] = dspot04_room_0Set_000F40DL_018490; -#else -static const char spot04_room_0Set_000F40DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_018490; -#endif - -#define dspot04_room_0Set_000F40DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_008638[] = dspot04_room_0Set_000F40DL_008638; -#else -static const char spot04_room_0Set_000F40DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_008638; -#endif - -#define dspot04_room_0Set_000F40DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_00A080[] = dspot04_room_0Set_000F40DL_00A080; -#else -static const char spot04_room_0Set_000F40DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_00A080; -#endif - -#define dspot04_room_0Set_000F40DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_017BD0[] = dspot04_room_0Set_000F40DL_017BD0; -#else -static const char spot04_room_0Set_000F40DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_017BD0; -#endif - -#define dspot04_room_0Set_000F40DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_004860[] = dspot04_room_0Set_000F40DL_004860; -#else -static const char spot04_room_0Set_000F40DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_004860; -#endif - -#define dspot04_room_0Set_000F40DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_018048[] = dspot04_room_0Set_000F40DL_018048; -#else -static const char spot04_room_0Set_000F40DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_018048; -#endif - -#define dspot04_room_0Set_000F40DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_00AE90[] = dspot04_room_0Set_000F40DL_00AE90; -#else -static const char spot04_room_0Set_000F40DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_00AE90; -#endif - -#define dspot04_room_0Set_000F40DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_002A10[] = dspot04_room_0Set_000F40DL_002A10; -#else -static const char spot04_room_0Set_000F40DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_002A10; -#endif - -#define dspot04_room_0Set_000F40DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_005A80[] = dspot04_room_0Set_000F40DL_005A80; -#else -static const char spot04_room_0Set_000F40DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_005A80; -#endif - -#define dspot04_room_0Set_000F40DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_00B280[] = dspot04_room_0Set_000F40DL_00B280; -#else -static const char spot04_room_0Set_000F40DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_00B280; -#endif - -#define dspot04_room_0Set_000F40DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_00B8F8[] = dspot04_room_0Set_000F40DL_00B8F8; -#else -static const char spot04_room_0Set_000F40DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_00B8F8; -#endif - -#define dspot04_room_0Set_000F40DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_0189A8[] = dspot04_room_0Set_000F40DL_0189A8; -#else -static const char spot04_room_0Set_000F40DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_0189A8; -#endif - -#define dspot04_room_0Set_000F40DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_00BD98[] = dspot04_room_0Set_000F40DL_00BD98; -#else -static const char spot04_room_0Set_000F40DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_00BD98; -#endif - -#define dspot04_room_0Set_000F40DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_006280[] = dspot04_room_0Set_000F40DL_006280; -#else -static const char spot04_room_0Set_000F40DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_006280; -#endif - -#define dspot04_room_0Set_000F40DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_006C10[] = dspot04_room_0Set_000F40DL_006C10; -#else -static const char spot04_room_0Set_000F40DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_006C10; -#endif - -#define dspot04_room_0Set_000F40DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_009740[] = dspot04_room_0Set_000F40DL_009740; -#else -static const char spot04_room_0Set_000F40DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_009740; -#endif - -#define dspot04_room_0Set_000F40DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_00A808[] = dspot04_room_0Set_000F40DL_00A808; -#else -static const char spot04_room_0Set_000F40DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_00A808; -#endif - -#define dspot04_room_0Set_000F40DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F40DL_0055C0[] = dspot04_room_0Set_000F40DL_0055C0; -#else -static const char spot04_room_0Set_000F40DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000F40DL_0055C0; -#endif - -#define dspot04_room_0Set_000F80DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_008ED8[] = dspot04_room_0Set_000F80DL_008ED8; -#else -static const char spot04_room_0Set_000F80DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_008ED8; -#endif - -#define dspot04_room_0Set_000F80DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_0187F0[] = dspot04_room_0Set_000F80DL_0187F0; -#else -static const char spot04_room_0Set_000F80DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_0187F0; -#endif - -#define dspot04_room_0Set_000F80DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_007A20[] = dspot04_room_0Set_000F80DL_007A20; -#else -static const char spot04_room_0Set_000F80DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_007A20; -#endif - -#define dspot04_room_0Set_000F80DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_018490[] = dspot04_room_0Set_000F80DL_018490; -#else -static const char spot04_room_0Set_000F80DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_018490; -#endif - -#define dspot04_room_0Set_000F80DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_008638[] = dspot04_room_0Set_000F80DL_008638; -#else -static const char spot04_room_0Set_000F80DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_008638; -#endif - -#define dspot04_room_0Set_000F80DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_00A080[] = dspot04_room_0Set_000F80DL_00A080; -#else -static const char spot04_room_0Set_000F80DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_00A080; -#endif - -#define dspot04_room_0Set_000F80DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_017BD0[] = dspot04_room_0Set_000F80DL_017BD0; -#else -static const char spot04_room_0Set_000F80DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_017BD0; -#endif - -#define dspot04_room_0Set_000F80DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_004860[] = dspot04_room_0Set_000F80DL_004860; -#else -static const char spot04_room_0Set_000F80DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_004860; -#endif - -#define dspot04_room_0Set_000F80DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_018048[] = dspot04_room_0Set_000F80DL_018048; -#else -static const char spot04_room_0Set_000F80DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_018048; -#endif - -#define dspot04_room_0Set_000F80DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_00AE90[] = dspot04_room_0Set_000F80DL_00AE90; -#else -static const char spot04_room_0Set_000F80DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_00AE90; -#endif - -#define dspot04_room_0Set_000F80DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_002A10[] = dspot04_room_0Set_000F80DL_002A10; -#else -static const char spot04_room_0Set_000F80DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_002A10; -#endif - -#define dspot04_room_0Set_000F80DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_005A80[] = dspot04_room_0Set_000F80DL_005A80; -#else -static const char spot04_room_0Set_000F80DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_005A80; -#endif - -#define dspot04_room_0Set_000F80DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_00B280[] = dspot04_room_0Set_000F80DL_00B280; -#else -static const char spot04_room_0Set_000F80DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_00B280; -#endif - -#define dspot04_room_0Set_000F80DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_00B8F8[] = dspot04_room_0Set_000F80DL_00B8F8; -#else -static const char spot04_room_0Set_000F80DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_00B8F8; -#endif - -#define dspot04_room_0Set_000F80DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_0189A8[] = dspot04_room_0Set_000F80DL_0189A8; -#else -static const char spot04_room_0Set_000F80DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_0189A8; -#endif - -#define dspot04_room_0Set_000F80DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_00BD98[] = dspot04_room_0Set_000F80DL_00BD98; -#else -static const char spot04_room_0Set_000F80DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_00BD98; -#endif - -#define dspot04_room_0Set_000F80DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_006280[] = dspot04_room_0Set_000F80DL_006280; -#else -static const char spot04_room_0Set_000F80DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_006280; -#endif - -#define dspot04_room_0Set_000F80DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_006C10[] = dspot04_room_0Set_000F80DL_006C10; -#else -static const char spot04_room_0Set_000F80DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_006C10; -#endif - -#define dspot04_room_0Set_000F80DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_009740[] = dspot04_room_0Set_000F80DL_009740; -#else -static const char spot04_room_0Set_000F80DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_009740; -#endif - -#define dspot04_room_0Set_000F80DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_00A808[] = dspot04_room_0Set_000F80DL_00A808; -#else -static const char spot04_room_0Set_000F80DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_00A808; -#endif - -#define dspot04_room_0Set_000F80DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_000F80DL_0055C0[] = dspot04_room_0Set_000F80DL_0055C0; -#else -static const char spot04_room_0Set_000F80DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_000F80DL_0055C0; -#endif - -#define dspot04_room_0Set_0011F0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_008ED8[] = dspot04_room_0Set_0011F0DL_008ED8; -#else -static const char spot04_room_0Set_0011F0DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_008ED8; -#endif - -#define dspot04_room_0Set_0011F0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_0187F0[] = dspot04_room_0Set_0011F0DL_0187F0; -#else -static const char spot04_room_0Set_0011F0DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_0187F0; -#endif - -#define dspot04_room_0Set_0011F0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_007A20[] = dspot04_room_0Set_0011F0DL_007A20; -#else -static const char spot04_room_0Set_0011F0DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_007A20; -#endif - -#define dspot04_room_0Set_0011F0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_018490[] = dspot04_room_0Set_0011F0DL_018490; -#else -static const char spot04_room_0Set_0011F0DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_018490; -#endif - -#define dspot04_room_0Set_0011F0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_008638[] = dspot04_room_0Set_0011F0DL_008638; -#else -static const char spot04_room_0Set_0011F0DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_008638; -#endif - -#define dspot04_room_0Set_0011F0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_00A080[] = dspot04_room_0Set_0011F0DL_00A080; -#else -static const char spot04_room_0Set_0011F0DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_00A080; -#endif - -#define dspot04_room_0Set_0011F0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_017BD0[] = dspot04_room_0Set_0011F0DL_017BD0; -#else -static const char spot04_room_0Set_0011F0DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_017BD0; -#endif - -#define dspot04_room_0Set_0011F0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_004860[] = dspot04_room_0Set_0011F0DL_004860; -#else -static const char spot04_room_0Set_0011F0DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_004860; -#endif - -#define dspot04_room_0Set_0011F0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_018048[] = dspot04_room_0Set_0011F0DL_018048; -#else -static const char spot04_room_0Set_0011F0DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_018048; -#endif - -#define dspot04_room_0Set_0011F0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_00AE90[] = dspot04_room_0Set_0011F0DL_00AE90; -#else -static const char spot04_room_0Set_0011F0DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_00AE90; -#endif - -#define dspot04_room_0Set_0011F0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_002A10[] = dspot04_room_0Set_0011F0DL_002A10; -#else -static const char spot04_room_0Set_0011F0DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_002A10; -#endif - -#define dspot04_room_0Set_0011F0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_005A80[] = dspot04_room_0Set_0011F0DL_005A80; -#else -static const char spot04_room_0Set_0011F0DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_005A80; -#endif - -#define dspot04_room_0Set_0011F0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_00B280[] = dspot04_room_0Set_0011F0DL_00B280; -#else -static const char spot04_room_0Set_0011F0DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_00B280; -#endif - -#define dspot04_room_0Set_0011F0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_00B8F8[] = dspot04_room_0Set_0011F0DL_00B8F8; -#else -static const char spot04_room_0Set_0011F0DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_00B8F8; -#endif - -#define dspot04_room_0Set_0011F0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_0189A8[] = dspot04_room_0Set_0011F0DL_0189A8; -#else -static const char spot04_room_0Set_0011F0DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_0189A8; -#endif - -#define dspot04_room_0Set_0011F0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_00BD98[] = dspot04_room_0Set_0011F0DL_00BD98; -#else -static const char spot04_room_0Set_0011F0DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_00BD98; -#endif - -#define dspot04_room_0Set_0011F0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_006280[] = dspot04_room_0Set_0011F0DL_006280; -#else -static const char spot04_room_0Set_0011F0DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_006280; -#endif - -#define dspot04_room_0Set_0011F0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_006C10[] = dspot04_room_0Set_0011F0DL_006C10; -#else -static const char spot04_room_0Set_0011F0DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_006C10; -#endif - -#define dspot04_room_0Set_0011F0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_009740[] = dspot04_room_0Set_0011F0DL_009740; -#else -static const char spot04_room_0Set_0011F0DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_009740; -#endif - -#define dspot04_room_0Set_0011F0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_00A808[] = dspot04_room_0Set_0011F0DL_00A808; -#else -static const char spot04_room_0Set_0011F0DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_00A808; -#endif - -#define dspot04_room_0Set_0011F0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_0011F0DL_0055C0[] = dspot04_room_0Set_0011F0DL_0055C0; -#else -static const char spot04_room_0Set_0011F0DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_0011F0DL_0055C0; -#endif - -#define dspot04_room_0Set_001240DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_008ED8[] = dspot04_room_0Set_001240DL_008ED8; -#else -static const char spot04_room_0Set_001240DL_008ED8[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_008ED8; -#endif - -#define dspot04_room_0Set_001240DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_0187F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_0187F0[] = dspot04_room_0Set_001240DL_0187F0; -#else -static const char spot04_room_0Set_001240DL_0187F0[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_0187F0; -#endif - -#define dspot04_room_0Set_001240DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_007A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_007A20[] = dspot04_room_0Set_001240DL_007A20; -#else -static const char spot04_room_0Set_001240DL_007A20[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_007A20; -#endif - -#define dspot04_room_0Set_001240DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_018490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_018490[] = dspot04_room_0Set_001240DL_018490; -#else -static const char spot04_room_0Set_001240DL_018490[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_018490; -#endif - -#define dspot04_room_0Set_001240DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_008638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_008638[] = dspot04_room_0Set_001240DL_008638; -#else -static const char spot04_room_0Set_001240DL_008638[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_008638; -#endif - -#define dspot04_room_0Set_001240DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00A080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_00A080[] = dspot04_room_0Set_001240DL_00A080; -#else -static const char spot04_room_0Set_001240DL_00A080[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_00A080; -#endif - -#define dspot04_room_0Set_001240DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_017BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_017BD0[] = dspot04_room_0Set_001240DL_017BD0; -#else -static const char spot04_room_0Set_001240DL_017BD0[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_017BD0; -#endif - -#define dspot04_room_0Set_001240DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_004860[] = dspot04_room_0Set_001240DL_004860; -#else -static const char spot04_room_0Set_001240DL_004860[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_004860; -#endif - -#define dspot04_room_0Set_001240DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_018048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_018048[] = dspot04_room_0Set_001240DL_018048; -#else -static const char spot04_room_0Set_001240DL_018048[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_018048; -#endif - -#define dspot04_room_0Set_001240DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00AE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_00AE90[] = dspot04_room_0Set_001240DL_00AE90; -#else -static const char spot04_room_0Set_001240DL_00AE90[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_00AE90; -#endif - -#define dspot04_room_0Set_001240DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_002A10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_002A10[] = dspot04_room_0Set_001240DL_002A10; -#else -static const char spot04_room_0Set_001240DL_002A10[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_002A10; -#endif - -#define dspot04_room_0Set_001240DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_005A80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_005A80[] = dspot04_room_0Set_001240DL_005A80; -#else -static const char spot04_room_0Set_001240DL_005A80[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_005A80; -#endif - -#define dspot04_room_0Set_001240DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00B280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_00B280[] = dspot04_room_0Set_001240DL_00B280; -#else -static const char spot04_room_0Set_001240DL_00B280[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_00B280; -#endif - -#define dspot04_room_0Set_001240DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00B8F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_00B8F8[] = dspot04_room_0Set_001240DL_00B8F8; -#else -static const char spot04_room_0Set_001240DL_00B8F8[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_00B8F8; -#endif - -#define dspot04_room_0Set_001240DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_0189A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_0189A8[] = dspot04_room_0Set_001240DL_0189A8; -#else -static const char spot04_room_0Set_001240DL_0189A8[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_0189A8; -#endif - -#define dspot04_room_0Set_001240DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_00BD98[] = dspot04_room_0Set_001240DL_00BD98; -#else -static const char spot04_room_0Set_001240DL_00BD98[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_00BD98; -#endif - -#define dspot04_room_0Set_001240DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_006280" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_006280[] = dspot04_room_0Set_001240DL_006280; -#else -static const char spot04_room_0Set_001240DL_006280[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_006280; -#endif - -#define dspot04_room_0Set_001240DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_006C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_006C10[] = dspot04_room_0Set_001240DL_006C10; -#else -static const char spot04_room_0Set_001240DL_006C10[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_006C10; -#endif - -#define dspot04_room_0Set_001240DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_009740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_009740[] = dspot04_room_0Set_001240DL_009740; -#else -static const char spot04_room_0Set_001240DL_009740[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_009740; -#endif - -#define dspot04_room_0Set_001240DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00A808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_00A808[] = dspot04_room_0Set_001240DL_00A808; -#else -static const char spot04_room_0Set_001240DL_00A808[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_00A808; -#endif - -#define dspot04_room_0Set_001240DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_0055C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_0Set_001240DL_0055C0[] = dspot04_room_0Set_001240DL_0055C0; -#else -static const char spot04_room_0Set_001240DL_0055C0[] __attribute__((aligned (2))) = dspot04_room_0Set_001240DL_0055C0; -#endif - +#include "align_asset_macro.h" + +#define dspot04_room_0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0DL_008ED8[] = dspot04_room_0DL_008ED8; + +#define dspot04_room_0Tex_013F08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_013F08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_013F08[] = dspot04_room_0Tex_013F08; + +#define dspot04_room_0Tex_011D08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_011D08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_011D08[] = dspot04_room_0Tex_011D08; + +#define dspot04_room_0Tex_015B08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_015B08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_015B08[] = dspot04_room_0Tex_015B08; + +#define dspot04_room_0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0DL_0187F0[] = dspot04_room_0DL_0187F0; + +#define dspot04_room_0Tex_01A290 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01A290" +static const ALIGN_ASSET(2) char spot04_room_0Tex_01A290[] = dspot04_room_0Tex_01A290; + +#define dspot04_room_0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0DL_007A20[] = dspot04_room_0DL_007A20; + +#define dspot04_room_0Tex_00FD08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00FD08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00FD08[] = dspot04_room_0Tex_00FD08; + +#define dspot04_room_0Tex_00F508 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00F508" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00F508[] = dspot04_room_0Tex_00F508; + +#define dspot04_room_0Tex_00F108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00F108" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00F108[] = dspot04_room_0Tex_00F108; + +#define dspot04_room_0Tex_010D08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_010D08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_010D08[] = dspot04_room_0Tex_010D08; + +#define dspot04_room_0Tex_00E108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00E108" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00E108[] = dspot04_room_0Tex_00E108; + +#define dspot04_room_0Tex_00BF08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00BF08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00BF08[] = dspot04_room_0Tex_00BF08; + +#define dspot04_room_0Tex_00E908 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00E908" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00E908[] = dspot04_room_0Tex_00E908; + +#define dspot04_room_0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0DL_018490[] = dspot04_room_0DL_018490; + +#define dspot04_room_0Tex_01A490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01A490" +static const ALIGN_ASSET(2) char spot04_room_0Tex_01A490[] = dspot04_room_0Tex_01A490; + +#define dspot04_room_0Tex_01AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01AE90" +static const ALIGN_ASSET(2) char spot04_room_0Tex_01AE90[] = dspot04_room_0Tex_01AE90; + +#define dspot04_room_0Tex_01AC90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01AC90" +static const ALIGN_ASSET(2) char spot04_room_0Tex_01AC90[] = dspot04_room_0Tex_01AC90; + +#define dspot04_room_0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0DL_008638[] = dspot04_room_0DL_008638; + +#define dspot04_room_0Tex_016908 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_016908" +static const ALIGN_ASSET(2) char spot04_room_0Tex_016908[] = dspot04_room_0Tex_016908; + +#define dspot04_room_0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0DL_00A080[] = dspot04_room_0DL_00A080; + +#define dspot04_room_0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0DL_017BD0[] = dspot04_room_0DL_017BD0; + +#define dspot04_room_0Tex_018A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_018A90" +static const ALIGN_ASSET(2) char spot04_room_0Tex_018A90[] = dspot04_room_0Tex_018A90; + +#define dspot04_room_0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0DL_004860[] = dspot04_room_0DL_004860; + +#define dspot04_room_0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0DL_018048[] = dspot04_room_0DL_018048; + +#define dspot04_room_0Tex_019A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_019A90" +static const ALIGN_ASSET(2) char spot04_room_0Tex_019A90[] = dspot04_room_0Tex_019A90; + +#define dspot04_room_0Tex_019290 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_019290" +static const ALIGN_ASSET(2) char spot04_room_0Tex_019290[] = dspot04_room_0Tex_019290; + +#define dspot04_room_0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0DL_00AE90[] = dspot04_room_0DL_00AE90; + +#define dspot04_room_0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0DL_002A10[] = dspot04_room_0DL_002A10; + +#define dspot04_room_0Tex_013108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_013108" +static const ALIGN_ASSET(2) char spot04_room_0Tex_013108[] = dspot04_room_0Tex_013108; + +#define dspot04_room_0Tex_012F08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_012F08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_012F08[] = dspot04_room_0Tex_012F08; + +#define dspot04_room_0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0DL_005A80[] = dspot04_room_0DL_005A80; + +#define dspot04_room_0Tex_015308 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_015308" +static const ALIGN_ASSET(2) char spot04_room_0Tex_015308[] = dspot04_room_0Tex_015308; + +#define dspot04_room_0Tex_014B08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_014B08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_014B08[] = dspot04_room_0Tex_014B08; + +#define dspot04_room_0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0DL_00B280[] = dspot04_room_0DL_00B280; + +#define dspot04_room_0Tex_017108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_017108" +static const ALIGN_ASSET(2) char spot04_room_0Tex_017108[] = dspot04_room_0Tex_017108; + +#define dspot04_room_0Tex_00D908 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00D908" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00D908[] = dspot04_room_0Tex_00D908; + +#define dspot04_room_0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0DL_00B8F8[] = dspot04_room_0DL_00B8F8; + +#define dspot04_room_0Tex_016D08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_016D08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_016D08[] = dspot04_room_0Tex_016D08; + +#define dspot04_room_0Tex_013308 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_013308" +static const ALIGN_ASSET(2) char spot04_room_0Tex_013308[] = dspot04_room_0Tex_013308; + +#define dspot04_room_0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0DL_0189A8[] = dspot04_room_0DL_0189A8; + +#define dspot04_room_0Tex_01B090 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_01B090" +static const ALIGN_ASSET(2) char spot04_room_0Tex_01B090[] = dspot04_room_0Tex_01B090; + +#define dspot04_room_0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0DL_00BD98[] = dspot04_room_0DL_00BD98; + +#define dspot04_room_0Tex_011F08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_011F08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_011F08[] = dspot04_room_0Tex_011F08; + +#define dspot04_room_0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0DL_006280[] = dspot04_room_0DL_006280; + +#define dspot04_room_0Tex_00CF08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00CF08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00CF08[] = dspot04_room_0Tex_00CF08; + +#define dspot04_room_0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0DL_006C10[] = dspot04_room_0DL_006C10; + +#define dspot04_room_0Tex_00D408 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00D408" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00D408[] = dspot04_room_0Tex_00D408; + +#define dspot04_room_0Tex_00D308 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00D308" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00D308[] = dspot04_room_0Tex_00D308; + +#define dspot04_room_0Tex_015D08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_015D08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_015D08[] = dspot04_room_0Tex_015D08; + +#define dspot04_room_0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0DL_009740[] = dspot04_room_0DL_009740; + +#define dspot04_room_0Tex_016508 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_016508" +static const ALIGN_ASSET(2) char spot04_room_0Tex_016508[] = dspot04_room_0Tex_016508; + +#define dspot04_room_0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0DL_00A808[] = dspot04_room_0DL_00A808; + +#define dspot04_room_0Tex_016108 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_016108" +static const ALIGN_ASSET(2) char spot04_room_0Tex_016108[] = dspot04_room_0Tex_016108; + +#define dspot04_room_0Tex_00D508 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00D508" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00D508[] = dspot04_room_0Tex_00D508; + +#define dspot04_room_0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0DL_0055C0[] = dspot04_room_0DL_0055C0; + +#define dspot04_room_0Tex_00C708 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00C708" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00C708[] = dspot04_room_0Tex_00C708; + +#define dspot04_room_0Tex_00CB08 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_00CB08" +static const ALIGN_ASSET(2) char spot04_room_0Tex_00CB08[] = dspot04_room_0Tex_00CB08; + +#define dspot04_room_0Tex_013708 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_013708" +static const ALIGN_ASSET(2) char spot04_room_0Tex_013708[] = dspot04_room_0Tex_013708; + +#define dspot04_room_0Tex_014308 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Tex_014308" +static const ALIGN_ASSET(2) char spot04_room_0Tex_014308[] = dspot04_room_0Tex_014308; + +#define dspot04_room_0Set_0006B0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_008ED8[] = dspot04_room_0Set_0006B0DL_008ED8; + +#define dspot04_room_0Set_0006B0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_0187F0[] = dspot04_room_0Set_0006B0DL_0187F0; + +#define dspot04_room_0Set_0006B0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_007A20[] = dspot04_room_0Set_0006B0DL_007A20; + +#define dspot04_room_0Set_0006B0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_018490[] = dspot04_room_0Set_0006B0DL_018490; + +#define dspot04_room_0Set_0006B0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_008638[] = dspot04_room_0Set_0006B0DL_008638; + +#define dspot04_room_0Set_0006B0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_00A080[] = dspot04_room_0Set_0006B0DL_00A080; + +#define dspot04_room_0Set_0006B0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_017BD0[] = dspot04_room_0Set_0006B0DL_017BD0; + +#define dspot04_room_0Set_0006B0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_004860[] = dspot04_room_0Set_0006B0DL_004860; + +#define dspot04_room_0Set_0006B0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_018048[] = dspot04_room_0Set_0006B0DL_018048; + +#define dspot04_room_0Set_0006B0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_00AE90[] = dspot04_room_0Set_0006B0DL_00AE90; + +#define dspot04_room_0Set_0006B0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_002A10[] = dspot04_room_0Set_0006B0DL_002A10; + +#define dspot04_room_0Set_0006B0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_005A80[] = dspot04_room_0Set_0006B0DL_005A80; + +#define dspot04_room_0Set_0006B0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_00B280[] = dspot04_room_0Set_0006B0DL_00B280; + +#define dspot04_room_0Set_0006B0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_00B8F8[] = dspot04_room_0Set_0006B0DL_00B8F8; + +#define dspot04_room_0Set_0006B0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_0189A8[] = dspot04_room_0Set_0006B0DL_0189A8; + +#define dspot04_room_0Set_0006B0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_00BD98[] = dspot04_room_0Set_0006B0DL_00BD98; + +#define dspot04_room_0Set_0006B0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_006280[] = dspot04_room_0Set_0006B0DL_006280; + +#define dspot04_room_0Set_0006B0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_006C10[] = dspot04_room_0Set_0006B0DL_006C10; + +#define dspot04_room_0Set_0006B0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_009740[] = dspot04_room_0Set_0006B0DL_009740; + +#define dspot04_room_0Set_0006B0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_00A808[] = dspot04_room_0Set_0006B0DL_00A808; + +#define dspot04_room_0Set_0006B0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0006B0DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_0006B0DL_0055C0[] = dspot04_room_0Set_0006B0DL_0055C0; + +#define dspot04_room_0Set_000940DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_008ED8[] = dspot04_room_0Set_000940DL_008ED8; + +#define dspot04_room_0Set_000940DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_0187F0[] = dspot04_room_0Set_000940DL_0187F0; + +#define dspot04_room_0Set_000940DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_007A20[] = dspot04_room_0Set_000940DL_007A20; + +#define dspot04_room_0Set_000940DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_018490[] = dspot04_room_0Set_000940DL_018490; + +#define dspot04_room_0Set_000940DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_008638[] = dspot04_room_0Set_000940DL_008638; + +#define dspot04_room_0Set_000940DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_00A080[] = dspot04_room_0Set_000940DL_00A080; + +#define dspot04_room_0Set_000940DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_017BD0[] = dspot04_room_0Set_000940DL_017BD0; + +#define dspot04_room_0Set_000940DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_004860[] = dspot04_room_0Set_000940DL_004860; + +#define dspot04_room_0Set_000940DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_018048[] = dspot04_room_0Set_000940DL_018048; + +#define dspot04_room_0Set_000940DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_00AE90[] = dspot04_room_0Set_000940DL_00AE90; + +#define dspot04_room_0Set_000940DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_002A10[] = dspot04_room_0Set_000940DL_002A10; + +#define dspot04_room_0Set_000940DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_005A80[] = dspot04_room_0Set_000940DL_005A80; + +#define dspot04_room_0Set_000940DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_00B280[] = dspot04_room_0Set_000940DL_00B280; + +#define dspot04_room_0Set_000940DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_00B8F8[] = dspot04_room_0Set_000940DL_00B8F8; + +#define dspot04_room_0Set_000940DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_0189A8[] = dspot04_room_0Set_000940DL_0189A8; + +#define dspot04_room_0Set_000940DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_00BD98[] = dspot04_room_0Set_000940DL_00BD98; + +#define dspot04_room_0Set_000940DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_006280[] = dspot04_room_0Set_000940DL_006280; + +#define dspot04_room_0Set_000940DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_006C10[] = dspot04_room_0Set_000940DL_006C10; + +#define dspot04_room_0Set_000940DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_009740[] = dspot04_room_0Set_000940DL_009740; + +#define dspot04_room_0Set_000940DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_00A808[] = dspot04_room_0Set_000940DL_00A808; + +#define dspot04_room_0Set_000940DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000940DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000940DL_0055C0[] = dspot04_room_0Set_000940DL_0055C0; + +#define dspot04_room_0Set_000BA0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_008ED8[] = dspot04_room_0Set_000BA0DL_008ED8; + +#define dspot04_room_0Set_000BA0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_0187F0[] = dspot04_room_0Set_000BA0DL_0187F0; + +#define dspot04_room_0Set_000BA0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_007A20[] = dspot04_room_0Set_000BA0DL_007A20; + +#define dspot04_room_0Set_000BA0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_018490[] = dspot04_room_0Set_000BA0DL_018490; + +#define dspot04_room_0Set_000BA0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_008638[] = dspot04_room_0Set_000BA0DL_008638; + +#define dspot04_room_0Set_000BA0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_00A080[] = dspot04_room_0Set_000BA0DL_00A080; + +#define dspot04_room_0Set_000BA0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_017BD0[] = dspot04_room_0Set_000BA0DL_017BD0; + +#define dspot04_room_0Set_000BA0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_004860[] = dspot04_room_0Set_000BA0DL_004860; + +#define dspot04_room_0Set_000BA0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_018048[] = dspot04_room_0Set_000BA0DL_018048; + +#define dspot04_room_0Set_000BA0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_00AE90[] = dspot04_room_0Set_000BA0DL_00AE90; + +#define dspot04_room_0Set_000BA0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_002A10[] = dspot04_room_0Set_000BA0DL_002A10; + +#define dspot04_room_0Set_000BA0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_005A80[] = dspot04_room_0Set_000BA0DL_005A80; + +#define dspot04_room_0Set_000BA0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_00B280[] = dspot04_room_0Set_000BA0DL_00B280; + +#define dspot04_room_0Set_000BA0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_00B8F8[] = dspot04_room_0Set_000BA0DL_00B8F8; + +#define dspot04_room_0Set_000BA0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_0189A8[] = dspot04_room_0Set_000BA0DL_0189A8; + +#define dspot04_room_0Set_000BA0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_00BD98[] = dspot04_room_0Set_000BA0DL_00BD98; + +#define dspot04_room_0Set_000BA0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_006280[] = dspot04_room_0Set_000BA0DL_006280; + +#define dspot04_room_0Set_000BA0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_006C10[] = dspot04_room_0Set_000BA0DL_006C10; + +#define dspot04_room_0Set_000BA0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_009740[] = dspot04_room_0Set_000BA0DL_009740; + +#define dspot04_room_0Set_000BA0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_00A808[] = dspot04_room_0Set_000BA0DL_00A808; + +#define dspot04_room_0Set_000BA0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BA0DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BA0DL_0055C0[] = dspot04_room_0Set_000BA0DL_0055C0; + +#define dspot04_room_0Set_000BD0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_008ED8[] = dspot04_room_0Set_000BD0DL_008ED8; + +#define dspot04_room_0Set_000BD0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_0187F0[] = dspot04_room_0Set_000BD0DL_0187F0; + +#define dspot04_room_0Set_000BD0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_007A20[] = dspot04_room_0Set_000BD0DL_007A20; + +#define dspot04_room_0Set_000BD0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_018490[] = dspot04_room_0Set_000BD0DL_018490; + +#define dspot04_room_0Set_000BD0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_008638[] = dspot04_room_0Set_000BD0DL_008638; + +#define dspot04_room_0Set_000BD0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_00A080[] = dspot04_room_0Set_000BD0DL_00A080; + +#define dspot04_room_0Set_000BD0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_017BD0[] = dspot04_room_0Set_000BD0DL_017BD0; + +#define dspot04_room_0Set_000BD0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_004860[] = dspot04_room_0Set_000BD0DL_004860; + +#define dspot04_room_0Set_000BD0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_018048[] = dspot04_room_0Set_000BD0DL_018048; + +#define dspot04_room_0Set_000BD0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_00AE90[] = dspot04_room_0Set_000BD0DL_00AE90; + +#define dspot04_room_0Set_000BD0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_002A10[] = dspot04_room_0Set_000BD0DL_002A10; + +#define dspot04_room_0Set_000BD0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_005A80[] = dspot04_room_0Set_000BD0DL_005A80; + +#define dspot04_room_0Set_000BD0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_00B280[] = dspot04_room_0Set_000BD0DL_00B280; + +#define dspot04_room_0Set_000BD0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_00B8F8[] = dspot04_room_0Set_000BD0DL_00B8F8; + +#define dspot04_room_0Set_000BD0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_0189A8[] = dspot04_room_0Set_000BD0DL_0189A8; + +#define dspot04_room_0Set_000BD0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_00BD98[] = dspot04_room_0Set_000BD0DL_00BD98; + +#define dspot04_room_0Set_000BD0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_006280[] = dspot04_room_0Set_000BD0DL_006280; + +#define dspot04_room_0Set_000BD0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_006C10[] = dspot04_room_0Set_000BD0DL_006C10; + +#define dspot04_room_0Set_000BD0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_009740[] = dspot04_room_0Set_000BD0DL_009740; + +#define dspot04_room_0Set_000BD0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_00A808[] = dspot04_room_0Set_000BD0DL_00A808; + +#define dspot04_room_0Set_000BD0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000BD0DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000BD0DL_0055C0[] = dspot04_room_0Set_000BD0DL_0055C0; + +#define dspot04_room_0Set_000C00DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_008ED8[] = dspot04_room_0Set_000C00DL_008ED8; + +#define dspot04_room_0Set_000C00DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_0187F0[] = dspot04_room_0Set_000C00DL_0187F0; + +#define dspot04_room_0Set_000C00DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_007A20[] = dspot04_room_0Set_000C00DL_007A20; + +#define dspot04_room_0Set_000C00DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_018490[] = dspot04_room_0Set_000C00DL_018490; + +#define dspot04_room_0Set_000C00DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_008638[] = dspot04_room_0Set_000C00DL_008638; + +#define dspot04_room_0Set_000C00DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_00A080[] = dspot04_room_0Set_000C00DL_00A080; + +#define dspot04_room_0Set_000C00DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_017BD0[] = dspot04_room_0Set_000C00DL_017BD0; + +#define dspot04_room_0Set_000C00DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_004860[] = dspot04_room_0Set_000C00DL_004860; + +#define dspot04_room_0Set_000C00DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_018048[] = dspot04_room_0Set_000C00DL_018048; + +#define dspot04_room_0Set_000C00DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_00AE90[] = dspot04_room_0Set_000C00DL_00AE90; + +#define dspot04_room_0Set_000C00DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_002A10[] = dspot04_room_0Set_000C00DL_002A10; + +#define dspot04_room_0Set_000C00DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_005A80[] = dspot04_room_0Set_000C00DL_005A80; + +#define dspot04_room_0Set_000C00DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_00B280[] = dspot04_room_0Set_000C00DL_00B280; + +#define dspot04_room_0Set_000C00DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_00B8F8[] = dspot04_room_0Set_000C00DL_00B8F8; + +#define dspot04_room_0Set_000C00DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_0189A8[] = dspot04_room_0Set_000C00DL_0189A8; + +#define dspot04_room_0Set_000C00DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_00BD98[] = dspot04_room_0Set_000C00DL_00BD98; + +#define dspot04_room_0Set_000C00DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_006280[] = dspot04_room_0Set_000C00DL_006280; + +#define dspot04_room_0Set_000C00DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_006C10[] = dspot04_room_0Set_000C00DL_006C10; + +#define dspot04_room_0Set_000C00DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_009740[] = dspot04_room_0Set_000C00DL_009740; + +#define dspot04_room_0Set_000C00DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_00A808[] = dspot04_room_0Set_000C00DL_00A808; + +#define dspot04_room_0Set_000C00DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C00DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C00DL_0055C0[] = dspot04_room_0Set_000C00DL_0055C0; + +#define dspot04_room_0Set_000C30DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_008ED8[] = dspot04_room_0Set_000C30DL_008ED8; + +#define dspot04_room_0Set_000C30DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_0187F0[] = dspot04_room_0Set_000C30DL_0187F0; + +#define dspot04_room_0Set_000C30DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_007A20[] = dspot04_room_0Set_000C30DL_007A20; + +#define dspot04_room_0Set_000C30DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_018490[] = dspot04_room_0Set_000C30DL_018490; + +#define dspot04_room_0Set_000C30DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_008638[] = dspot04_room_0Set_000C30DL_008638; + +#define dspot04_room_0Set_000C30DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_00A080[] = dspot04_room_0Set_000C30DL_00A080; + +#define dspot04_room_0Set_000C30DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_017BD0[] = dspot04_room_0Set_000C30DL_017BD0; + +#define dspot04_room_0Set_000C30DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_004860[] = dspot04_room_0Set_000C30DL_004860; + +#define dspot04_room_0Set_000C30DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_018048[] = dspot04_room_0Set_000C30DL_018048; + +#define dspot04_room_0Set_000C30DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_00AE90[] = dspot04_room_0Set_000C30DL_00AE90; + +#define dspot04_room_0Set_000C30DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_002A10[] = dspot04_room_0Set_000C30DL_002A10; + +#define dspot04_room_0Set_000C30DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_005A80[] = dspot04_room_0Set_000C30DL_005A80; + +#define dspot04_room_0Set_000C30DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_00B280[] = dspot04_room_0Set_000C30DL_00B280; + +#define dspot04_room_0Set_000C30DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_00B8F8[] = dspot04_room_0Set_000C30DL_00B8F8; + +#define dspot04_room_0Set_000C30DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_0189A8[] = dspot04_room_0Set_000C30DL_0189A8; + +#define dspot04_room_0Set_000C30DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_00BD98[] = dspot04_room_0Set_000C30DL_00BD98; + +#define dspot04_room_0Set_000C30DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_006280[] = dspot04_room_0Set_000C30DL_006280; + +#define dspot04_room_0Set_000C30DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_006C10[] = dspot04_room_0Set_000C30DL_006C10; + +#define dspot04_room_0Set_000C30DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_009740[] = dspot04_room_0Set_000C30DL_009740; + +#define dspot04_room_0Set_000C30DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_00A808[] = dspot04_room_0Set_000C30DL_00A808; + +#define dspot04_room_0Set_000C30DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000C30DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000C30DL_0055C0[] = dspot04_room_0Set_000C30DL_0055C0; + +#define dspot04_room_0Set_000E60DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_008ED8[] = dspot04_room_0Set_000E60DL_008ED8; + +#define dspot04_room_0Set_000E60DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_0187F0[] = dspot04_room_0Set_000E60DL_0187F0; + +#define dspot04_room_0Set_000E60DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_007A20[] = dspot04_room_0Set_000E60DL_007A20; + +#define dspot04_room_0Set_000E60DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_018490[] = dspot04_room_0Set_000E60DL_018490; + +#define dspot04_room_0Set_000E60DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_008638[] = dspot04_room_0Set_000E60DL_008638; + +#define dspot04_room_0Set_000E60DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_00A080[] = dspot04_room_0Set_000E60DL_00A080; + +#define dspot04_room_0Set_000E60DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_017BD0[] = dspot04_room_0Set_000E60DL_017BD0; + +#define dspot04_room_0Set_000E60DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_004860[] = dspot04_room_0Set_000E60DL_004860; + +#define dspot04_room_0Set_000E60DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_018048[] = dspot04_room_0Set_000E60DL_018048; + +#define dspot04_room_0Set_000E60DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_00AE90[] = dspot04_room_0Set_000E60DL_00AE90; + +#define dspot04_room_0Set_000E60DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_002A10[] = dspot04_room_0Set_000E60DL_002A10; + +#define dspot04_room_0Set_000E60DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_005A80[] = dspot04_room_0Set_000E60DL_005A80; + +#define dspot04_room_0Set_000E60DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_00B280[] = dspot04_room_0Set_000E60DL_00B280; + +#define dspot04_room_0Set_000E60DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_00B8F8[] = dspot04_room_0Set_000E60DL_00B8F8; + +#define dspot04_room_0Set_000E60DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_0189A8[] = dspot04_room_0Set_000E60DL_0189A8; + +#define dspot04_room_0Set_000E60DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_00BD98[] = dspot04_room_0Set_000E60DL_00BD98; + +#define dspot04_room_0Set_000E60DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_006280[] = dspot04_room_0Set_000E60DL_006280; + +#define dspot04_room_0Set_000E60DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_006C10[] = dspot04_room_0Set_000E60DL_006C10; + +#define dspot04_room_0Set_000E60DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_009740[] = dspot04_room_0Set_000E60DL_009740; + +#define dspot04_room_0Set_000E60DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_00A808[] = dspot04_room_0Set_000E60DL_00A808; + +#define dspot04_room_0Set_000E60DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000E60DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000E60DL_0055C0[] = dspot04_room_0Set_000E60DL_0055C0; + +#define dspot04_room_0Set_000ED0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_008ED8[] = dspot04_room_0Set_000ED0DL_008ED8; + +#define dspot04_room_0Set_000ED0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_0187F0[] = dspot04_room_0Set_000ED0DL_0187F0; + +#define dspot04_room_0Set_000ED0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_007A20[] = dspot04_room_0Set_000ED0DL_007A20; + +#define dspot04_room_0Set_000ED0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_018490[] = dspot04_room_0Set_000ED0DL_018490; + +#define dspot04_room_0Set_000ED0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_008638[] = dspot04_room_0Set_000ED0DL_008638; + +#define dspot04_room_0Set_000ED0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_00A080[] = dspot04_room_0Set_000ED0DL_00A080; + +#define dspot04_room_0Set_000ED0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_017BD0[] = dspot04_room_0Set_000ED0DL_017BD0; + +#define dspot04_room_0Set_000ED0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_004860[] = dspot04_room_0Set_000ED0DL_004860; + +#define dspot04_room_0Set_000ED0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_018048[] = dspot04_room_0Set_000ED0DL_018048; + +#define dspot04_room_0Set_000ED0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_00AE90[] = dspot04_room_0Set_000ED0DL_00AE90; + +#define dspot04_room_0Set_000ED0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_002A10[] = dspot04_room_0Set_000ED0DL_002A10; + +#define dspot04_room_0Set_000ED0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_005A80[] = dspot04_room_0Set_000ED0DL_005A80; + +#define dspot04_room_0Set_000ED0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_00B280[] = dspot04_room_0Set_000ED0DL_00B280; + +#define dspot04_room_0Set_000ED0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_00B8F8[] = dspot04_room_0Set_000ED0DL_00B8F8; + +#define dspot04_room_0Set_000ED0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_0189A8[] = dspot04_room_0Set_000ED0DL_0189A8; + +#define dspot04_room_0Set_000ED0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_00BD98[] = dspot04_room_0Set_000ED0DL_00BD98; + +#define dspot04_room_0Set_000ED0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_006280[] = dspot04_room_0Set_000ED0DL_006280; + +#define dspot04_room_0Set_000ED0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_006C10[] = dspot04_room_0Set_000ED0DL_006C10; + +#define dspot04_room_0Set_000ED0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_009740[] = dspot04_room_0Set_000ED0DL_009740; + +#define dspot04_room_0Set_000ED0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_00A808[] = dspot04_room_0Set_000ED0DL_00A808; + +#define dspot04_room_0Set_000ED0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000ED0DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000ED0DL_0055C0[] = dspot04_room_0Set_000ED0DL_0055C0; + +#define dspot04_room_0Set_000F40DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_008ED8[] = dspot04_room_0Set_000F40DL_008ED8; + +#define dspot04_room_0Set_000F40DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_0187F0[] = dspot04_room_0Set_000F40DL_0187F0; + +#define dspot04_room_0Set_000F40DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_007A20[] = dspot04_room_0Set_000F40DL_007A20; + +#define dspot04_room_0Set_000F40DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_018490[] = dspot04_room_0Set_000F40DL_018490; + +#define dspot04_room_0Set_000F40DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_008638[] = dspot04_room_0Set_000F40DL_008638; + +#define dspot04_room_0Set_000F40DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_00A080[] = dspot04_room_0Set_000F40DL_00A080; + +#define dspot04_room_0Set_000F40DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_017BD0[] = dspot04_room_0Set_000F40DL_017BD0; + +#define dspot04_room_0Set_000F40DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_004860[] = dspot04_room_0Set_000F40DL_004860; + +#define dspot04_room_0Set_000F40DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_018048[] = dspot04_room_0Set_000F40DL_018048; + +#define dspot04_room_0Set_000F40DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_00AE90[] = dspot04_room_0Set_000F40DL_00AE90; + +#define dspot04_room_0Set_000F40DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_002A10[] = dspot04_room_0Set_000F40DL_002A10; + +#define dspot04_room_0Set_000F40DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_005A80[] = dspot04_room_0Set_000F40DL_005A80; + +#define dspot04_room_0Set_000F40DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_00B280[] = dspot04_room_0Set_000F40DL_00B280; + +#define dspot04_room_0Set_000F40DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_00B8F8[] = dspot04_room_0Set_000F40DL_00B8F8; + +#define dspot04_room_0Set_000F40DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_0189A8[] = dspot04_room_0Set_000F40DL_0189A8; + +#define dspot04_room_0Set_000F40DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_00BD98[] = dspot04_room_0Set_000F40DL_00BD98; + +#define dspot04_room_0Set_000F40DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_006280[] = dspot04_room_0Set_000F40DL_006280; + +#define dspot04_room_0Set_000F40DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_006C10[] = dspot04_room_0Set_000F40DL_006C10; + +#define dspot04_room_0Set_000F40DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_009740[] = dspot04_room_0Set_000F40DL_009740; + +#define dspot04_room_0Set_000F40DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_00A808[] = dspot04_room_0Set_000F40DL_00A808; + +#define dspot04_room_0Set_000F40DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F40DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F40DL_0055C0[] = dspot04_room_0Set_000F40DL_0055C0; + +#define dspot04_room_0Set_000F80DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_008ED8[] = dspot04_room_0Set_000F80DL_008ED8; + +#define dspot04_room_0Set_000F80DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_0187F0[] = dspot04_room_0Set_000F80DL_0187F0; + +#define dspot04_room_0Set_000F80DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_007A20[] = dspot04_room_0Set_000F80DL_007A20; + +#define dspot04_room_0Set_000F80DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_018490[] = dspot04_room_0Set_000F80DL_018490; + +#define dspot04_room_0Set_000F80DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_008638[] = dspot04_room_0Set_000F80DL_008638; + +#define dspot04_room_0Set_000F80DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_00A080[] = dspot04_room_0Set_000F80DL_00A080; + +#define dspot04_room_0Set_000F80DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_017BD0[] = dspot04_room_0Set_000F80DL_017BD0; + +#define dspot04_room_0Set_000F80DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_004860[] = dspot04_room_0Set_000F80DL_004860; + +#define dspot04_room_0Set_000F80DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_018048[] = dspot04_room_0Set_000F80DL_018048; + +#define dspot04_room_0Set_000F80DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_00AE90[] = dspot04_room_0Set_000F80DL_00AE90; + +#define dspot04_room_0Set_000F80DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_002A10[] = dspot04_room_0Set_000F80DL_002A10; + +#define dspot04_room_0Set_000F80DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_005A80[] = dspot04_room_0Set_000F80DL_005A80; + +#define dspot04_room_0Set_000F80DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_00B280[] = dspot04_room_0Set_000F80DL_00B280; + +#define dspot04_room_0Set_000F80DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_00B8F8[] = dspot04_room_0Set_000F80DL_00B8F8; + +#define dspot04_room_0Set_000F80DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_0189A8[] = dspot04_room_0Set_000F80DL_0189A8; + +#define dspot04_room_0Set_000F80DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_00BD98[] = dspot04_room_0Set_000F80DL_00BD98; + +#define dspot04_room_0Set_000F80DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_006280[] = dspot04_room_0Set_000F80DL_006280; + +#define dspot04_room_0Set_000F80DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_006C10[] = dspot04_room_0Set_000F80DL_006C10; + +#define dspot04_room_0Set_000F80DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_009740[] = dspot04_room_0Set_000F80DL_009740; + +#define dspot04_room_0Set_000F80DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_00A808[] = dspot04_room_0Set_000F80DL_00A808; + +#define dspot04_room_0Set_000F80DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_000F80DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_000F80DL_0055C0[] = dspot04_room_0Set_000F80DL_0055C0; + +#define dspot04_room_0Set_0011F0DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_008ED8[] = dspot04_room_0Set_0011F0DL_008ED8; + +#define dspot04_room_0Set_0011F0DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_0187F0[] = dspot04_room_0Set_0011F0DL_0187F0; + +#define dspot04_room_0Set_0011F0DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_007A20[] = dspot04_room_0Set_0011F0DL_007A20; + +#define dspot04_room_0Set_0011F0DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_018490[] = dspot04_room_0Set_0011F0DL_018490; + +#define dspot04_room_0Set_0011F0DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_008638[] = dspot04_room_0Set_0011F0DL_008638; + +#define dspot04_room_0Set_0011F0DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_00A080[] = dspot04_room_0Set_0011F0DL_00A080; + +#define dspot04_room_0Set_0011F0DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_017BD0[] = dspot04_room_0Set_0011F0DL_017BD0; + +#define dspot04_room_0Set_0011F0DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_004860[] = dspot04_room_0Set_0011F0DL_004860; + +#define dspot04_room_0Set_0011F0DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_018048[] = dspot04_room_0Set_0011F0DL_018048; + +#define dspot04_room_0Set_0011F0DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_00AE90[] = dspot04_room_0Set_0011F0DL_00AE90; + +#define dspot04_room_0Set_0011F0DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_002A10[] = dspot04_room_0Set_0011F0DL_002A10; + +#define dspot04_room_0Set_0011F0DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_005A80[] = dspot04_room_0Set_0011F0DL_005A80; + +#define dspot04_room_0Set_0011F0DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_00B280[] = dspot04_room_0Set_0011F0DL_00B280; + +#define dspot04_room_0Set_0011F0DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_00B8F8[] = dspot04_room_0Set_0011F0DL_00B8F8; + +#define dspot04_room_0Set_0011F0DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_0189A8[] = dspot04_room_0Set_0011F0DL_0189A8; + +#define dspot04_room_0Set_0011F0DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_00BD98[] = dspot04_room_0Set_0011F0DL_00BD98; + +#define dspot04_room_0Set_0011F0DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_006280[] = dspot04_room_0Set_0011F0DL_006280; + +#define dspot04_room_0Set_0011F0DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_006C10[] = dspot04_room_0Set_0011F0DL_006C10; + +#define dspot04_room_0Set_0011F0DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_009740[] = dspot04_room_0Set_0011F0DL_009740; + +#define dspot04_room_0Set_0011F0DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_00A808[] = dspot04_room_0Set_0011F0DL_00A808; + +#define dspot04_room_0Set_0011F0DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_0011F0DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_0011F0DL_0055C0[] = dspot04_room_0Set_0011F0DL_0055C0; + +#define dspot04_room_0Set_001240DL_008ED8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_008ED8" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_008ED8[] = dspot04_room_0Set_001240DL_008ED8; + +#define dspot04_room_0Set_001240DL_0187F0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_0187F0" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_0187F0[] = dspot04_room_0Set_001240DL_0187F0; + +#define dspot04_room_0Set_001240DL_007A20 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_007A20" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_007A20[] = dspot04_room_0Set_001240DL_007A20; + +#define dspot04_room_0Set_001240DL_018490 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_018490" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_018490[] = dspot04_room_0Set_001240DL_018490; + +#define dspot04_room_0Set_001240DL_008638 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_008638" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_008638[] = dspot04_room_0Set_001240DL_008638; + +#define dspot04_room_0Set_001240DL_00A080 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00A080" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_00A080[] = dspot04_room_0Set_001240DL_00A080; + +#define dspot04_room_0Set_001240DL_017BD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_017BD0" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_017BD0[] = dspot04_room_0Set_001240DL_017BD0; + +#define dspot04_room_0Set_001240DL_004860 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_004860" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_004860[] = dspot04_room_0Set_001240DL_004860; + +#define dspot04_room_0Set_001240DL_018048 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_018048" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_018048[] = dspot04_room_0Set_001240DL_018048; + +#define dspot04_room_0Set_001240DL_00AE90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00AE90" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_00AE90[] = dspot04_room_0Set_001240DL_00AE90; + +#define dspot04_room_0Set_001240DL_002A10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_002A10" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_002A10[] = dspot04_room_0Set_001240DL_002A10; + +#define dspot04_room_0Set_001240DL_005A80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_005A80" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_005A80[] = dspot04_room_0Set_001240DL_005A80; + +#define dspot04_room_0Set_001240DL_00B280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00B280" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_00B280[] = dspot04_room_0Set_001240DL_00B280; + +#define dspot04_room_0Set_001240DL_00B8F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00B8F8" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_00B8F8[] = dspot04_room_0Set_001240DL_00B8F8; + +#define dspot04_room_0Set_001240DL_0189A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_0189A8" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_0189A8[] = dspot04_room_0Set_001240DL_0189A8; + +#define dspot04_room_0Set_001240DL_00BD98 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00BD98" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_00BD98[] = dspot04_room_0Set_001240DL_00BD98; + +#define dspot04_room_0Set_001240DL_006280 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_006280" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_006280[] = dspot04_room_0Set_001240DL_006280; + +#define dspot04_room_0Set_001240DL_006C10 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_006C10" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_006C10[] = dspot04_room_0Set_001240DL_006C10; + +#define dspot04_room_0Set_001240DL_009740 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_009740" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_009740[] = dspot04_room_0Set_001240DL_009740; + +#define dspot04_room_0Set_001240DL_00A808 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_00A808" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_00A808[] = dspot04_room_0Set_001240DL_00A808; + +#define dspot04_room_0Set_001240DL_0055C0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_0Set_001240DL_0055C0" +static const ALIGN_ASSET(2) char spot04_room_0Set_001240DL_0055C0[] = dspot04_room_0Set_001240DL_0055C0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot04/spot04_room_1.h b/soh/assets/scenes/overworld/spot04/spot04_room_1.h index fce965d82..cb6eca324 100644 --- a/soh/assets/scenes/overworld/spot04/spot04_room_1.h +++ b/soh/assets/scenes/overworld/spot04/spot04_room_1.h @@ -1,506 +1,219 @@ #pragma once -#define dspot04_room_1DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1DL_0018D0[] = dspot04_room_1DL_0018D0; -#else -static const char spot04_room_1DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1DL_0018D0; -#endif - -#define dspot04_room_1Tex_0056A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_0056A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Tex_0056A8[] = dspot04_room_1Tex_0056A8; -#else -static const char spot04_room_1Tex_0056A8[] __attribute__((aligned (2))) = dspot04_room_1Tex_0056A8; -#endif - -#define dspot04_room_1DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1DL_007810[] = dspot04_room_1DL_007810; -#else -static const char spot04_room_1DL_007810[] __attribute__((aligned (2))) = dspot04_room_1DL_007810; -#endif - -#define dspot04_room_1Tex_007D78 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_007D78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Tex_007D78[] = dspot04_room_1Tex_007D78; -#else -static const char spot04_room_1Tex_007D78[] __attribute__((aligned (2))) = dspot04_room_1Tex_007D78; -#endif - -#define dspot04_room_1DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1DL_004D48[] = dspot04_room_1DL_004D48; -#else -static const char spot04_room_1DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1DL_004D48; -#endif - -#define dspot04_room_1DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1DL_004218[] = dspot04_room_1DL_004218; -#else -static const char spot04_room_1DL_004218[] __attribute__((aligned (2))) = dspot04_room_1DL_004218; -#endif - -#define dspot04_room_1Tex_004EA8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_004EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Tex_004EA8[] = dspot04_room_1Tex_004EA8; -#else -static const char spot04_room_1Tex_004EA8[] __attribute__((aligned (2))) = dspot04_room_1Tex_004EA8; -#endif - -#define dspot04_room_1Tex_0052A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_0052A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Tex_0052A8[] = dspot04_room_1Tex_0052A8; -#else -static const char spot04_room_1Tex_0052A8[] __attribute__((aligned (2))) = dspot04_room_1Tex_0052A8; -#endif - -#define dspot04_room_1Tex_0066A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_0066A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Tex_0066A8[] = dspot04_room_1Tex_0066A8; -#else -static const char spot04_room_1Tex_0066A8[] __attribute__((aligned (2))) = dspot04_room_1Tex_0066A8; -#endif - -#define dspot04_room_1Tex_006EA8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_006EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Tex_006EA8[] = dspot04_room_1Tex_006EA8; -#else -static const char spot04_room_1Tex_006EA8[] __attribute__((aligned (2))) = dspot04_room_1Tex_006EA8; -#endif - -#define dspot04_room_1DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1DL_007A90[] = dspot04_room_1DL_007A90; -#else -static const char spot04_room_1DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1DL_007A90; -#endif - -#define dspot04_room_1Tex_007B78 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_007B78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Tex_007B78[] = dspot04_room_1Tex_007B78; -#else -static const char spot04_room_1Tex_007B78[] __attribute__((aligned (2))) = dspot04_room_1Tex_007B78; -#endif - -#define dspot04_room_1Set_000160DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000160DL_0018D0[] = dspot04_room_1Set_000160DL_0018D0; -#else -static const char spot04_room_1Set_000160DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000160DL_0018D0; -#endif - -#define dspot04_room_1Set_000160DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000160DL_007810[] = dspot04_room_1Set_000160DL_007810; -#else -static const char spot04_room_1Set_000160DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000160DL_007810; -#endif - -#define dspot04_room_1Set_000160DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000160DL_004D48[] = dspot04_room_1Set_000160DL_004D48; -#else -static const char spot04_room_1Set_000160DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000160DL_004D48; -#endif - -#define dspot04_room_1Set_000160DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000160DL_004218[] = dspot04_room_1Set_000160DL_004218; -#else -static const char spot04_room_1Set_000160DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000160DL_004218; -#endif - -#define dspot04_room_1Set_000160DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000160DL_007A90[] = dspot04_room_1Set_000160DL_007A90; -#else -static const char spot04_room_1Set_000160DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000160DL_007A90; -#endif - -#define dspot04_room_1Set_000250DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000250DL_0018D0[] = dspot04_room_1Set_000250DL_0018D0; -#else -static const char spot04_room_1Set_000250DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000250DL_0018D0; -#endif - -#define dspot04_room_1Set_000250DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000250DL_007810[] = dspot04_room_1Set_000250DL_007810; -#else -static const char spot04_room_1Set_000250DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000250DL_007810; -#endif - -#define dspot04_room_1Set_000250DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000250DL_004D48[] = dspot04_room_1Set_000250DL_004D48; -#else -static const char spot04_room_1Set_000250DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000250DL_004D48; -#endif - -#define dspot04_room_1Set_000250DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000250DL_004218[] = dspot04_room_1Set_000250DL_004218; -#else -static const char spot04_room_1Set_000250DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000250DL_004218; -#endif - -#define dspot04_room_1Set_000250DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000250DL_007A90[] = dspot04_room_1Set_000250DL_007A90; -#else -static const char spot04_room_1Set_000250DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000250DL_007A90; -#endif - -#define dspot04_room_1Set_0002F0DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0002F0DL_0018D0[] = dspot04_room_1Set_0002F0DL_0018D0; -#else -static const char spot04_room_1Set_0002F0DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_0002F0DL_0018D0; -#endif - -#define dspot04_room_1Set_0002F0DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0002F0DL_007810[] = dspot04_room_1Set_0002F0DL_007810; -#else -static const char spot04_room_1Set_0002F0DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_0002F0DL_007810; -#endif - -#define dspot04_room_1Set_0002F0DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0002F0DL_004D48[] = dspot04_room_1Set_0002F0DL_004D48; -#else -static const char spot04_room_1Set_0002F0DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_0002F0DL_004D48; -#endif - -#define dspot04_room_1Set_0002F0DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0002F0DL_004218[] = dspot04_room_1Set_0002F0DL_004218; -#else -static const char spot04_room_1Set_0002F0DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_0002F0DL_004218; -#endif - -#define dspot04_room_1Set_0002F0DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0002F0DL_007A90[] = dspot04_room_1Set_0002F0DL_007A90; -#else -static const char spot04_room_1Set_0002F0DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_0002F0DL_007A90; -#endif - -#define dspot04_room_1Set_000370DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000370DL_0018D0[] = dspot04_room_1Set_000370DL_0018D0; -#else -static const char spot04_room_1Set_000370DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000370DL_0018D0; -#endif - -#define dspot04_room_1Set_000370DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000370DL_007810[] = dspot04_room_1Set_000370DL_007810; -#else -static const char spot04_room_1Set_000370DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000370DL_007810; -#endif - -#define dspot04_room_1Set_000370DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000370DL_004D48[] = dspot04_room_1Set_000370DL_004D48; -#else -static const char spot04_room_1Set_000370DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000370DL_004D48; -#endif - -#define dspot04_room_1Set_000370DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000370DL_004218[] = dspot04_room_1Set_000370DL_004218; -#else -static const char spot04_room_1Set_000370DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000370DL_004218; -#endif - -#define dspot04_room_1Set_000370DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000370DL_007A90[] = dspot04_room_1Set_000370DL_007A90; -#else -static const char spot04_room_1Set_000370DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000370DL_007A90; -#endif - -#define dspot04_room_1Set_000400DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000400DL_0018D0[] = dspot04_room_1Set_000400DL_0018D0; -#else -static const char spot04_room_1Set_000400DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000400DL_0018D0; -#endif - -#define dspot04_room_1Set_000400DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000400DL_007810[] = dspot04_room_1Set_000400DL_007810; -#else -static const char spot04_room_1Set_000400DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000400DL_007810; -#endif - -#define dspot04_room_1Set_000400DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000400DL_004D48[] = dspot04_room_1Set_000400DL_004D48; -#else -static const char spot04_room_1Set_000400DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000400DL_004D48; -#endif - -#define dspot04_room_1Set_000400DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000400DL_004218[] = dspot04_room_1Set_000400DL_004218; -#else -static const char spot04_room_1Set_000400DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000400DL_004218; -#endif - -#define dspot04_room_1Set_000400DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000400DL_007A90[] = dspot04_room_1Set_000400DL_007A90; -#else -static const char spot04_room_1Set_000400DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000400DL_007A90; -#endif - -#define dspot04_room_1Set_0004A0DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0004A0DL_0018D0[] = dspot04_room_1Set_0004A0DL_0018D0; -#else -static const char spot04_room_1Set_0004A0DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_0004A0DL_0018D0; -#endif - -#define dspot04_room_1Set_0004A0DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0004A0DL_007810[] = dspot04_room_1Set_0004A0DL_007810; -#else -static const char spot04_room_1Set_0004A0DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_0004A0DL_007810; -#endif - -#define dspot04_room_1Set_0004A0DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0004A0DL_004D48[] = dspot04_room_1Set_0004A0DL_004D48; -#else -static const char spot04_room_1Set_0004A0DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_0004A0DL_004D48; -#endif - -#define dspot04_room_1Set_0004A0DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0004A0DL_004218[] = dspot04_room_1Set_0004A0DL_004218; -#else -static const char spot04_room_1Set_0004A0DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_0004A0DL_004218; -#endif - -#define dspot04_room_1Set_0004A0DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_0004A0DL_007A90[] = dspot04_room_1Set_0004A0DL_007A90; -#else -static const char spot04_room_1Set_0004A0DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_0004A0DL_007A90; -#endif - -#define dspot04_room_1Set_000510DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000510DL_0018D0[] = dspot04_room_1Set_000510DL_0018D0; -#else -static const char spot04_room_1Set_000510DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000510DL_0018D0; -#endif - -#define dspot04_room_1Set_000510DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000510DL_007810[] = dspot04_room_1Set_000510DL_007810; -#else -static const char spot04_room_1Set_000510DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000510DL_007810; -#endif - -#define dspot04_room_1Set_000510DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000510DL_004D48[] = dspot04_room_1Set_000510DL_004D48; -#else -static const char spot04_room_1Set_000510DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000510DL_004D48; -#endif - -#define dspot04_room_1Set_000510DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000510DL_004218[] = dspot04_room_1Set_000510DL_004218; -#else -static const char spot04_room_1Set_000510DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000510DL_004218; -#endif - -#define dspot04_room_1Set_000510DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000510DL_007A90[] = dspot04_room_1Set_000510DL_007A90; -#else -static const char spot04_room_1Set_000510DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000510DL_007A90; -#endif - -#define dspot04_room_1Set_000640DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000640DL_0018D0[] = dspot04_room_1Set_000640DL_0018D0; -#else -static const char spot04_room_1Set_000640DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000640DL_0018D0; -#endif - -#define dspot04_room_1Set_000640DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000640DL_007810[] = dspot04_room_1Set_000640DL_007810; -#else -static const char spot04_room_1Set_000640DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000640DL_007810; -#endif - -#define dspot04_room_1Set_000640DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000640DL_004D48[] = dspot04_room_1Set_000640DL_004D48; -#else -static const char spot04_room_1Set_000640DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000640DL_004D48; -#endif - -#define dspot04_room_1Set_000640DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000640DL_004218[] = dspot04_room_1Set_000640DL_004218; -#else -static const char spot04_room_1Set_000640DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000640DL_004218; -#endif - -#define dspot04_room_1Set_000640DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000640DL_007A90[] = dspot04_room_1Set_000640DL_007A90; -#else -static const char spot04_room_1Set_000640DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000640DL_007A90; -#endif - -#define dspot04_room_1Set_000770DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000770DL_0018D0[] = dspot04_room_1Set_000770DL_0018D0; -#else -static const char spot04_room_1Set_000770DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000770DL_0018D0; -#endif - -#define dspot04_room_1Set_000770DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000770DL_007810[] = dspot04_room_1Set_000770DL_007810; -#else -static const char spot04_room_1Set_000770DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000770DL_007810; -#endif - -#define dspot04_room_1Set_000770DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000770DL_004D48[] = dspot04_room_1Set_000770DL_004D48; -#else -static const char spot04_room_1Set_000770DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000770DL_004D48; -#endif - -#define dspot04_room_1Set_000770DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000770DL_004218[] = dspot04_room_1Set_000770DL_004218; -#else -static const char spot04_room_1Set_000770DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000770DL_004218; -#endif - -#define dspot04_room_1Set_000770DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000770DL_007A90[] = dspot04_room_1Set_000770DL_007A90; -#else -static const char spot04_room_1Set_000770DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000770DL_007A90; -#endif - -#define dspot04_room_1Set_000800DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000800DL_0018D0[] = dspot04_room_1Set_000800DL_0018D0; -#else -static const char spot04_room_1Set_000800DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000800DL_0018D0; -#endif - -#define dspot04_room_1Set_000800DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000800DL_007810[] = dspot04_room_1Set_000800DL_007810; -#else -static const char spot04_room_1Set_000800DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000800DL_007810; -#endif - -#define dspot04_room_1Set_000800DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000800DL_004D48[] = dspot04_room_1Set_000800DL_004D48; -#else -static const char spot04_room_1Set_000800DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000800DL_004D48; -#endif - -#define dspot04_room_1Set_000800DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000800DL_004218[] = dspot04_room_1Set_000800DL_004218; -#else -static const char spot04_room_1Set_000800DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000800DL_004218; -#endif - -#define dspot04_room_1Set_000800DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000800DL_007A90[] = dspot04_room_1Set_000800DL_007A90; -#else -static const char spot04_room_1Set_000800DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000800DL_007A90; -#endif - -#define dspot04_room_1Set_000860DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000860DL_0018D0[] = dspot04_room_1Set_000860DL_0018D0; -#else -static const char spot04_room_1Set_000860DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000860DL_0018D0; -#endif - -#define dspot04_room_1Set_000860DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000860DL_007810[] = dspot04_room_1Set_000860DL_007810; -#else -static const char spot04_room_1Set_000860DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000860DL_007810; -#endif - -#define dspot04_room_1Set_000860DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000860DL_004D48[] = dspot04_room_1Set_000860DL_004D48; -#else -static const char spot04_room_1Set_000860DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000860DL_004D48; -#endif - -#define dspot04_room_1Set_000860DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000860DL_004218[] = dspot04_room_1Set_000860DL_004218; -#else -static const char spot04_room_1Set_000860DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000860DL_004218; -#endif - -#define dspot04_room_1Set_000860DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000860DL_007A90[] = dspot04_room_1Set_000860DL_007A90; -#else -static const char spot04_room_1Set_000860DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000860DL_007A90; -#endif - -#define dspot04_room_1Set_000900DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_0018D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000900DL_0018D0[] = dspot04_room_1Set_000900DL_0018D0; -#else -static const char spot04_room_1Set_000900DL_0018D0[] __attribute__((aligned (2))) = dspot04_room_1Set_000900DL_0018D0; -#endif - -#define dspot04_room_1Set_000900DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_007810" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000900DL_007810[] = dspot04_room_1Set_000900DL_007810; -#else -static const char spot04_room_1Set_000900DL_007810[] __attribute__((aligned (2))) = dspot04_room_1Set_000900DL_007810; -#endif - -#define dspot04_room_1Set_000900DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_004D48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000900DL_004D48[] = dspot04_room_1Set_000900DL_004D48; -#else -static const char spot04_room_1Set_000900DL_004D48[] __attribute__((aligned (2))) = dspot04_room_1Set_000900DL_004D48; -#endif - -#define dspot04_room_1Set_000900DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_004218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000900DL_004218[] = dspot04_room_1Set_000900DL_004218; -#else -static const char spot04_room_1Set_000900DL_004218[] __attribute__((aligned (2))) = dspot04_room_1Set_000900DL_004218; -#endif - -#define dspot04_room_1Set_000900DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_007A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_1Set_000900DL_007A90[] = dspot04_room_1Set_000900DL_007A90; -#else -static const char spot04_room_1Set_000900DL_007A90[] __attribute__((aligned (2))) = dspot04_room_1Set_000900DL_007A90; -#endif - +#include "align_asset_macro.h" + +#define dspot04_room_1DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1DL_0018D0[] = dspot04_room_1DL_0018D0; + +#define dspot04_room_1Tex_0056A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_0056A8" +static const ALIGN_ASSET(2) char spot04_room_1Tex_0056A8[] = dspot04_room_1Tex_0056A8; + +#define dspot04_room_1DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1DL_007810[] = dspot04_room_1DL_007810; + +#define dspot04_room_1Tex_007D78 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_007D78" +static const ALIGN_ASSET(2) char spot04_room_1Tex_007D78[] = dspot04_room_1Tex_007D78; + +#define dspot04_room_1DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1DL_004D48[] = dspot04_room_1DL_004D48; + +#define dspot04_room_1DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1DL_004218[] = dspot04_room_1DL_004218; + +#define dspot04_room_1Tex_004EA8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_004EA8" +static const ALIGN_ASSET(2) char spot04_room_1Tex_004EA8[] = dspot04_room_1Tex_004EA8; + +#define dspot04_room_1Tex_0052A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_0052A8" +static const ALIGN_ASSET(2) char spot04_room_1Tex_0052A8[] = dspot04_room_1Tex_0052A8; + +#define dspot04_room_1Tex_0066A8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_0066A8" +static const ALIGN_ASSET(2) char spot04_room_1Tex_0066A8[] = dspot04_room_1Tex_0066A8; + +#define dspot04_room_1Tex_006EA8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_006EA8" +static const ALIGN_ASSET(2) char spot04_room_1Tex_006EA8[] = dspot04_room_1Tex_006EA8; + +#define dspot04_room_1DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1DL_007A90[] = dspot04_room_1DL_007A90; + +#define dspot04_room_1Tex_007B78 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Tex_007B78" +static const ALIGN_ASSET(2) char spot04_room_1Tex_007B78[] = dspot04_room_1Tex_007B78; + +#define dspot04_room_1Set_000160DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000160DL_0018D0[] = dspot04_room_1Set_000160DL_0018D0; + +#define dspot04_room_1Set_000160DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000160DL_007810[] = dspot04_room_1Set_000160DL_007810; + +#define dspot04_room_1Set_000160DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000160DL_004D48[] = dspot04_room_1Set_000160DL_004D48; + +#define dspot04_room_1Set_000160DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000160DL_004218[] = dspot04_room_1Set_000160DL_004218; + +#define dspot04_room_1Set_000160DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000160DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000160DL_007A90[] = dspot04_room_1Set_000160DL_007A90; + +#define dspot04_room_1Set_000250DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000250DL_0018D0[] = dspot04_room_1Set_000250DL_0018D0; + +#define dspot04_room_1Set_000250DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000250DL_007810[] = dspot04_room_1Set_000250DL_007810; + +#define dspot04_room_1Set_000250DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000250DL_004D48[] = dspot04_room_1Set_000250DL_004D48; + +#define dspot04_room_1Set_000250DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000250DL_004218[] = dspot04_room_1Set_000250DL_004218; + +#define dspot04_room_1Set_000250DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000250DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000250DL_007A90[] = dspot04_room_1Set_000250DL_007A90; + +#define dspot04_room_1Set_0002F0DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_0002F0DL_0018D0[] = dspot04_room_1Set_0002F0DL_0018D0; + +#define dspot04_room_1Set_0002F0DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_0002F0DL_007810[] = dspot04_room_1Set_0002F0DL_007810; + +#define dspot04_room_1Set_0002F0DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_0002F0DL_004D48[] = dspot04_room_1Set_0002F0DL_004D48; + +#define dspot04_room_1Set_0002F0DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_0002F0DL_004218[] = dspot04_room_1Set_0002F0DL_004218; + +#define dspot04_room_1Set_0002F0DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0002F0DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_0002F0DL_007A90[] = dspot04_room_1Set_0002F0DL_007A90; + +#define dspot04_room_1Set_000370DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000370DL_0018D0[] = dspot04_room_1Set_000370DL_0018D0; + +#define dspot04_room_1Set_000370DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000370DL_007810[] = dspot04_room_1Set_000370DL_007810; + +#define dspot04_room_1Set_000370DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000370DL_004D48[] = dspot04_room_1Set_000370DL_004D48; + +#define dspot04_room_1Set_000370DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000370DL_004218[] = dspot04_room_1Set_000370DL_004218; + +#define dspot04_room_1Set_000370DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000370DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000370DL_007A90[] = dspot04_room_1Set_000370DL_007A90; + +#define dspot04_room_1Set_000400DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000400DL_0018D0[] = dspot04_room_1Set_000400DL_0018D0; + +#define dspot04_room_1Set_000400DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000400DL_007810[] = dspot04_room_1Set_000400DL_007810; + +#define dspot04_room_1Set_000400DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000400DL_004D48[] = dspot04_room_1Set_000400DL_004D48; + +#define dspot04_room_1Set_000400DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000400DL_004218[] = dspot04_room_1Set_000400DL_004218; + +#define dspot04_room_1Set_000400DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000400DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000400DL_007A90[] = dspot04_room_1Set_000400DL_007A90; + +#define dspot04_room_1Set_0004A0DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_0004A0DL_0018D0[] = dspot04_room_1Set_0004A0DL_0018D0; + +#define dspot04_room_1Set_0004A0DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_0004A0DL_007810[] = dspot04_room_1Set_0004A0DL_007810; + +#define dspot04_room_1Set_0004A0DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_0004A0DL_004D48[] = dspot04_room_1Set_0004A0DL_004D48; + +#define dspot04_room_1Set_0004A0DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_0004A0DL_004218[] = dspot04_room_1Set_0004A0DL_004218; + +#define dspot04_room_1Set_0004A0DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_0004A0DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_0004A0DL_007A90[] = dspot04_room_1Set_0004A0DL_007A90; + +#define dspot04_room_1Set_000510DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000510DL_0018D0[] = dspot04_room_1Set_000510DL_0018D0; + +#define dspot04_room_1Set_000510DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000510DL_007810[] = dspot04_room_1Set_000510DL_007810; + +#define dspot04_room_1Set_000510DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000510DL_004D48[] = dspot04_room_1Set_000510DL_004D48; + +#define dspot04_room_1Set_000510DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000510DL_004218[] = dspot04_room_1Set_000510DL_004218; + +#define dspot04_room_1Set_000510DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000510DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000510DL_007A90[] = dspot04_room_1Set_000510DL_007A90; + +#define dspot04_room_1Set_000640DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000640DL_0018D0[] = dspot04_room_1Set_000640DL_0018D0; + +#define dspot04_room_1Set_000640DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000640DL_007810[] = dspot04_room_1Set_000640DL_007810; + +#define dspot04_room_1Set_000640DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000640DL_004D48[] = dspot04_room_1Set_000640DL_004D48; + +#define dspot04_room_1Set_000640DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000640DL_004218[] = dspot04_room_1Set_000640DL_004218; + +#define dspot04_room_1Set_000640DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000640DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000640DL_007A90[] = dspot04_room_1Set_000640DL_007A90; + +#define dspot04_room_1Set_000770DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000770DL_0018D0[] = dspot04_room_1Set_000770DL_0018D0; + +#define dspot04_room_1Set_000770DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000770DL_007810[] = dspot04_room_1Set_000770DL_007810; + +#define dspot04_room_1Set_000770DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000770DL_004D48[] = dspot04_room_1Set_000770DL_004D48; + +#define dspot04_room_1Set_000770DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000770DL_004218[] = dspot04_room_1Set_000770DL_004218; + +#define dspot04_room_1Set_000770DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000770DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000770DL_007A90[] = dspot04_room_1Set_000770DL_007A90; + +#define dspot04_room_1Set_000800DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000800DL_0018D0[] = dspot04_room_1Set_000800DL_0018D0; + +#define dspot04_room_1Set_000800DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000800DL_007810[] = dspot04_room_1Set_000800DL_007810; + +#define dspot04_room_1Set_000800DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000800DL_004D48[] = dspot04_room_1Set_000800DL_004D48; + +#define dspot04_room_1Set_000800DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000800DL_004218[] = dspot04_room_1Set_000800DL_004218; + +#define dspot04_room_1Set_000800DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000800DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000800DL_007A90[] = dspot04_room_1Set_000800DL_007A90; + +#define dspot04_room_1Set_000860DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000860DL_0018D0[] = dspot04_room_1Set_000860DL_0018D0; + +#define dspot04_room_1Set_000860DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000860DL_007810[] = dspot04_room_1Set_000860DL_007810; + +#define dspot04_room_1Set_000860DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000860DL_004D48[] = dspot04_room_1Set_000860DL_004D48; + +#define dspot04_room_1Set_000860DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000860DL_004218[] = dspot04_room_1Set_000860DL_004218; + +#define dspot04_room_1Set_000860DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000860DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000860DL_007A90[] = dspot04_room_1Set_000860DL_007A90; + +#define dspot04_room_1Set_000900DL_0018D0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_0018D0" +static const ALIGN_ASSET(2) char spot04_room_1Set_000900DL_0018D0[] = dspot04_room_1Set_000900DL_0018D0; + +#define dspot04_room_1Set_000900DL_007810 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_007810" +static const ALIGN_ASSET(2) char spot04_room_1Set_000900DL_007810[] = dspot04_room_1Set_000900DL_007810; + +#define dspot04_room_1Set_000900DL_004D48 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_004D48" +static const ALIGN_ASSET(2) char spot04_room_1Set_000900DL_004D48[] = dspot04_room_1Set_000900DL_004D48; + +#define dspot04_room_1Set_000900DL_004218 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_004218" +static const ALIGN_ASSET(2) char spot04_room_1Set_000900DL_004218[] = dspot04_room_1Set_000900DL_004218; + +#define dspot04_room_1Set_000900DL_007A90 "__OTR__scenes/nonmq/spot04_scene/spot04_room_1Set_000900DL_007A90" +static const ALIGN_ASSET(2) char spot04_room_1Set_000900DL_007A90[] = dspot04_room_1Set_000900DL_007A90; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot04/spot04_room_2.h b/soh/assets/scenes/overworld/spot04/spot04_room_2.h index c17a92b87..dfe126e43 100644 --- a/soh/assets/scenes/overworld/spot04/spot04_room_2.h +++ b/soh/assets/scenes/overworld/spot04/spot04_room_2.h @@ -1,793 +1,342 @@ #pragma once -#define dgSpot04DL_002BB8 "__OTR__scenes/nonmq/spot04_scene/gSpot04DL_002BB8" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot04DL_002BB8[] = dgSpot04DL_002BB8; -#else -static const char gSpot04DL_002BB8[] __attribute__((aligned (2))) = dgSpot04DL_002BB8; -#endif - -#define dgSpot04DL_005058 "__OTR__scenes/nonmq/spot04_scene/gSpot04DL_005058" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot04DL_005058[] = dgSpot04DL_005058; -#else -static const char gSpot04DL_005058[] __attribute__((aligned (2))) = dgSpot04DL_005058; -#endif - -#define dspot04_room_2DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2DL_000840[] = dspot04_room_2DL_000840; -#else -static const char spot04_room_2DL_000840[] __attribute__((aligned (2))) = dspot04_room_2DL_000840; -#endif - -#define dspot04_room_2DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2DL_004F80[] = dspot04_room_2DL_004F80; -#else -static const char spot04_room_2DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2DL_004F80; -#endif - -#define dspot04_room_2DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2DL_001AC0[] = dspot04_room_2DL_001AC0; -#else -static const char spot04_room_2DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2DL_001AC0; -#endif - -#define dspot04_room_2DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2DL_001378[] = dspot04_room_2DL_001378; -#else -static const char spot04_room_2DL_001378[] __attribute__((aligned (2))) = dspot04_room_2DL_001378; -#endif - -#define dspot04_room_2Tex_002BF8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_002BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Tex_002BF8[] = dspot04_room_2Tex_002BF8; -#else -static const char spot04_room_2Tex_002BF8[] __attribute__((aligned (2))) = dspot04_room_2Tex_002BF8; -#endif - -#define dspot04_room_2Tex_002DF8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_002DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Tex_002DF8[] = dspot04_room_2Tex_002DF8; -#else -static const char spot04_room_2Tex_002DF8[] __attribute__((aligned (2))) = dspot04_room_2Tex_002DF8; -#endif - -#define dspot04_room_2DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2DL_002730[] = dspot04_room_2DL_002730; -#else -static const char spot04_room_2DL_002730[] __attribute__((aligned (2))) = dspot04_room_2DL_002730; -#endif - -#define dspot04_room_2Tex_0033F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_0033F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Tex_0033F8[] = dspot04_room_2Tex_0033F8; -#else -static const char spot04_room_2Tex_0033F8[] __attribute__((aligned (2))) = dspot04_room_2Tex_0033F8; -#endif - -#define dspot04_room_2Tex_003BF8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_003BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Tex_003BF8[] = dspot04_room_2Tex_003BF8; -#else -static const char spot04_room_2Tex_003BF8[] __attribute__((aligned (2))) = dspot04_room_2Tex_003BF8; -#endif - -#define dspot04_room_2DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2DL_002AD0[] = dspot04_room_2DL_002AD0; -#else -static const char spot04_room_2DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2DL_002AD0; -#endif - -#define dspot04_room_2Tex_0045F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_0045F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Tex_0045F8[] = dspot04_room_2Tex_0045F8; -#else -static const char spot04_room_2Tex_0045F8[] __attribute__((aligned (2))) = dspot04_room_2Tex_0045F8; -#endif - -#define dspot04_room_2DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2DL_001EC0[] = dspot04_room_2DL_001EC0; -#else -static const char spot04_room_2DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2DL_001EC0; -#endif - -#define dspot04_room_2Tex_0043F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_0043F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Tex_0043F8[] = dspot04_room_2Tex_0043F8; -#else -static const char spot04_room_2Tex_0043F8[] __attribute__((aligned (2))) = dspot04_room_2Tex_0043F8; -#endif - -#define dspot04_room_2DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2DL_002338[] = dspot04_room_2DL_002338; -#else -static const char spot04_room_2DL_002338[] __attribute__((aligned (2))) = dspot04_room_2DL_002338; -#endif - -#define dspot04_room_2Tex_002FF8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_002FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Tex_002FF8[] = dspot04_room_2Tex_002FF8; -#else -static const char spot04_room_2Tex_002FF8[] __attribute__((aligned (2))) = dspot04_room_2Tex_002FF8; -#endif - -#define dspot04_room_2Set_0001D0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0001D0DL_000840[] = dspot04_room_2Set_0001D0DL_000840; -#else -static const char spot04_room_2Set_0001D0DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_0001D0DL_000840; -#endif - -#define dspot04_room_2Set_0001D0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0001D0DL_004F80[] = dspot04_room_2Set_0001D0DL_004F80; -#else -static const char spot04_room_2Set_0001D0DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_0001D0DL_004F80; -#endif - -#define dspot04_room_2Set_0001D0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0001D0DL_001AC0[] = dspot04_room_2Set_0001D0DL_001AC0; -#else -static const char spot04_room_2Set_0001D0DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0001D0DL_001AC0; -#endif - -#define dspot04_room_2Set_0001D0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0001D0DL_001378[] = dspot04_room_2Set_0001D0DL_001378; -#else -static const char spot04_room_2Set_0001D0DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_0001D0DL_001378; -#endif - -#define dspot04_room_2Set_0001D0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0001D0DL_002730[] = dspot04_room_2Set_0001D0DL_002730; -#else -static const char spot04_room_2Set_0001D0DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_0001D0DL_002730; -#endif - -#define dspot04_room_2Set_0001D0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0001D0DL_002AD0[] = dspot04_room_2Set_0001D0DL_002AD0; -#else -static const char spot04_room_2Set_0001D0DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_0001D0DL_002AD0; -#endif - -#define dspot04_room_2Set_0001D0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0001D0DL_001EC0[] = dspot04_room_2Set_0001D0DL_001EC0; -#else -static const char spot04_room_2Set_0001D0DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0001D0DL_001EC0; -#endif - -#define dspot04_room_2Set_0001D0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0001D0DL_002338[] = dspot04_room_2Set_0001D0DL_002338; -#else -static const char spot04_room_2Set_0001D0DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_0001D0DL_002338; -#endif - -#define dspot04_room_2Set_000200DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000200DL_000840[] = dspot04_room_2Set_000200DL_000840; -#else -static const char spot04_room_2Set_000200DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_000200DL_000840; -#endif - -#define dspot04_room_2Set_000200DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000200DL_004F80[] = dspot04_room_2Set_000200DL_004F80; -#else -static const char spot04_room_2Set_000200DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_000200DL_004F80; -#endif - -#define dspot04_room_2Set_000200DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000200DL_001AC0[] = dspot04_room_2Set_000200DL_001AC0; -#else -static const char spot04_room_2Set_000200DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000200DL_001AC0; -#endif - -#define dspot04_room_2Set_000200DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000200DL_001378[] = dspot04_room_2Set_000200DL_001378; -#else -static const char spot04_room_2Set_000200DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_000200DL_001378; -#endif - -#define dspot04_room_2Set_000200DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000200DL_002730[] = dspot04_room_2Set_000200DL_002730; -#else -static const char spot04_room_2Set_000200DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_000200DL_002730; -#endif - -#define dspot04_room_2Set_000200DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000200DL_002AD0[] = dspot04_room_2Set_000200DL_002AD0; -#else -static const char spot04_room_2Set_000200DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_000200DL_002AD0; -#endif - -#define dspot04_room_2Set_000200DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000200DL_001EC0[] = dspot04_room_2Set_000200DL_001EC0; -#else -static const char spot04_room_2Set_000200DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000200DL_001EC0; -#endif - -#define dspot04_room_2Set_000200DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000200DL_002338[] = dspot04_room_2Set_000200DL_002338; -#else -static const char spot04_room_2Set_000200DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_000200DL_002338; -#endif - -#define dspot04_room_2Set_000230DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000230DL_000840[] = dspot04_room_2Set_000230DL_000840; -#else -static const char spot04_room_2Set_000230DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_000230DL_000840; -#endif - -#define dspot04_room_2Set_000230DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000230DL_004F80[] = dspot04_room_2Set_000230DL_004F80; -#else -static const char spot04_room_2Set_000230DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_000230DL_004F80; -#endif - -#define dspot04_room_2Set_000230DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000230DL_001AC0[] = dspot04_room_2Set_000230DL_001AC0; -#else -static const char spot04_room_2Set_000230DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000230DL_001AC0; -#endif - -#define dspot04_room_2Set_000230DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000230DL_001378[] = dspot04_room_2Set_000230DL_001378; -#else -static const char spot04_room_2Set_000230DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_000230DL_001378; -#endif - -#define dspot04_room_2Set_000230DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000230DL_002730[] = dspot04_room_2Set_000230DL_002730; -#else -static const char spot04_room_2Set_000230DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_000230DL_002730; -#endif - -#define dspot04_room_2Set_000230DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000230DL_002AD0[] = dspot04_room_2Set_000230DL_002AD0; -#else -static const char spot04_room_2Set_000230DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_000230DL_002AD0; -#endif - -#define dspot04_room_2Set_000230DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000230DL_001EC0[] = dspot04_room_2Set_000230DL_001EC0; -#else -static const char spot04_room_2Set_000230DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000230DL_001EC0; -#endif - -#define dspot04_room_2Set_000230DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000230DL_002338[] = dspot04_room_2Set_000230DL_002338; -#else -static const char spot04_room_2Set_000230DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_000230DL_002338; -#endif - -#define dspot04_room_2Set_000260DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000260DL_000840[] = dspot04_room_2Set_000260DL_000840; -#else -static const char spot04_room_2Set_000260DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_000260DL_000840; -#endif - -#define dspot04_room_2Set_000260DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000260DL_004F80[] = dspot04_room_2Set_000260DL_004F80; -#else -static const char spot04_room_2Set_000260DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_000260DL_004F80; -#endif - -#define dspot04_room_2Set_000260DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000260DL_001AC0[] = dspot04_room_2Set_000260DL_001AC0; -#else -static const char spot04_room_2Set_000260DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000260DL_001AC0; -#endif - -#define dspot04_room_2Set_000260DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000260DL_001378[] = dspot04_room_2Set_000260DL_001378; -#else -static const char spot04_room_2Set_000260DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_000260DL_001378; -#endif - -#define dspot04_room_2Set_000260DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000260DL_002730[] = dspot04_room_2Set_000260DL_002730; -#else -static const char spot04_room_2Set_000260DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_000260DL_002730; -#endif - -#define dspot04_room_2Set_000260DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000260DL_002AD0[] = dspot04_room_2Set_000260DL_002AD0; -#else -static const char spot04_room_2Set_000260DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_000260DL_002AD0; -#endif - -#define dspot04_room_2Set_000260DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000260DL_001EC0[] = dspot04_room_2Set_000260DL_001EC0; -#else -static const char spot04_room_2Set_000260DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000260DL_001EC0; -#endif - -#define dspot04_room_2Set_000260DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000260DL_002338[] = dspot04_room_2Set_000260DL_002338; -#else -static const char spot04_room_2Set_000260DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_000260DL_002338; -#endif - -#define dspot04_room_2Set_000290DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000290DL_000840[] = dspot04_room_2Set_000290DL_000840; -#else -static const char spot04_room_2Set_000290DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_000290DL_000840; -#endif - -#define dspot04_room_2Set_000290DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000290DL_004F80[] = dspot04_room_2Set_000290DL_004F80; -#else -static const char spot04_room_2Set_000290DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_000290DL_004F80; -#endif - -#define dspot04_room_2Set_000290DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000290DL_001AC0[] = dspot04_room_2Set_000290DL_001AC0; -#else -static const char spot04_room_2Set_000290DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000290DL_001AC0; -#endif - -#define dspot04_room_2Set_000290DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000290DL_001378[] = dspot04_room_2Set_000290DL_001378; -#else -static const char spot04_room_2Set_000290DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_000290DL_001378; -#endif - -#define dspot04_room_2Set_000290DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000290DL_002730[] = dspot04_room_2Set_000290DL_002730; -#else -static const char spot04_room_2Set_000290DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_000290DL_002730; -#endif - -#define dspot04_room_2Set_000290DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000290DL_002AD0[] = dspot04_room_2Set_000290DL_002AD0; -#else -static const char spot04_room_2Set_000290DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_000290DL_002AD0; -#endif - -#define dspot04_room_2Set_000290DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000290DL_001EC0[] = dspot04_room_2Set_000290DL_001EC0; -#else -static const char spot04_room_2Set_000290DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000290DL_001EC0; -#endif - -#define dspot04_room_2Set_000290DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000290DL_002338[] = dspot04_room_2Set_000290DL_002338; -#else -static const char spot04_room_2Set_000290DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_000290DL_002338; -#endif - -#define dspot04_room_2Set_0002C0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002C0DL_000840[] = dspot04_room_2Set_0002C0DL_000840; -#else -static const char spot04_room_2Set_0002C0DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_0002C0DL_000840; -#endif - -#define dspot04_room_2Set_0002C0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002C0DL_004F80[] = dspot04_room_2Set_0002C0DL_004F80; -#else -static const char spot04_room_2Set_0002C0DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_0002C0DL_004F80; -#endif - -#define dspot04_room_2Set_0002C0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002C0DL_001AC0[] = dspot04_room_2Set_0002C0DL_001AC0; -#else -static const char spot04_room_2Set_0002C0DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0002C0DL_001AC0; -#endif - -#define dspot04_room_2Set_0002C0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002C0DL_001378[] = dspot04_room_2Set_0002C0DL_001378; -#else -static const char spot04_room_2Set_0002C0DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_0002C0DL_001378; -#endif - -#define dspot04_room_2Set_0002C0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002C0DL_002730[] = dspot04_room_2Set_0002C0DL_002730; -#else -static const char spot04_room_2Set_0002C0DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_0002C0DL_002730; -#endif - -#define dspot04_room_2Set_0002C0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002C0DL_002AD0[] = dspot04_room_2Set_0002C0DL_002AD0; -#else -static const char spot04_room_2Set_0002C0DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_0002C0DL_002AD0; -#endif - -#define dspot04_room_2Set_0002C0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002C0DL_001EC0[] = dspot04_room_2Set_0002C0DL_001EC0; -#else -static const char spot04_room_2Set_0002C0DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0002C0DL_001EC0; -#endif - -#define dspot04_room_2Set_0002C0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002C0DL_002338[] = dspot04_room_2Set_0002C0DL_002338; -#else -static const char spot04_room_2Set_0002C0DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_0002C0DL_002338; -#endif - -#define dspot04_room_2Set_0002F0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002F0DL_000840[] = dspot04_room_2Set_0002F0DL_000840; -#else -static const char spot04_room_2Set_0002F0DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_0002F0DL_000840; -#endif - -#define dspot04_room_2Set_0002F0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002F0DL_004F80[] = dspot04_room_2Set_0002F0DL_004F80; -#else -static const char spot04_room_2Set_0002F0DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_0002F0DL_004F80; -#endif - -#define dspot04_room_2Set_0002F0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002F0DL_001AC0[] = dspot04_room_2Set_0002F0DL_001AC0; -#else -static const char spot04_room_2Set_0002F0DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0002F0DL_001AC0; -#endif - -#define dspot04_room_2Set_0002F0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002F0DL_001378[] = dspot04_room_2Set_0002F0DL_001378; -#else -static const char spot04_room_2Set_0002F0DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_0002F0DL_001378; -#endif - -#define dspot04_room_2Set_0002F0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002F0DL_002730[] = dspot04_room_2Set_0002F0DL_002730; -#else -static const char spot04_room_2Set_0002F0DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_0002F0DL_002730; -#endif - -#define dspot04_room_2Set_0002F0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002F0DL_002AD0[] = dspot04_room_2Set_0002F0DL_002AD0; -#else -static const char spot04_room_2Set_0002F0DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_0002F0DL_002AD0; -#endif - -#define dspot04_room_2Set_0002F0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002F0DL_001EC0[] = dspot04_room_2Set_0002F0DL_001EC0; -#else -static const char spot04_room_2Set_0002F0DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0002F0DL_001EC0; -#endif - -#define dspot04_room_2Set_0002F0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0002F0DL_002338[] = dspot04_room_2Set_0002F0DL_002338; -#else -static const char spot04_room_2Set_0002F0DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_0002F0DL_002338; -#endif - -#define dspot04_room_2Set_000320DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000320DL_000840[] = dspot04_room_2Set_000320DL_000840; -#else -static const char spot04_room_2Set_000320DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_000320DL_000840; -#endif - -#define dspot04_room_2Set_000320DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000320DL_004F80[] = dspot04_room_2Set_000320DL_004F80; -#else -static const char spot04_room_2Set_000320DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_000320DL_004F80; -#endif - -#define dspot04_room_2Set_000320DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000320DL_001AC0[] = dspot04_room_2Set_000320DL_001AC0; -#else -static const char spot04_room_2Set_000320DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000320DL_001AC0; -#endif - -#define dspot04_room_2Set_000320DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000320DL_001378[] = dspot04_room_2Set_000320DL_001378; -#else -static const char spot04_room_2Set_000320DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_000320DL_001378; -#endif - -#define dspot04_room_2Set_000320DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000320DL_002730[] = dspot04_room_2Set_000320DL_002730; -#else -static const char spot04_room_2Set_000320DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_000320DL_002730; -#endif - -#define dspot04_room_2Set_000320DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000320DL_002AD0[] = dspot04_room_2Set_000320DL_002AD0; -#else -static const char spot04_room_2Set_000320DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_000320DL_002AD0; -#endif - -#define dspot04_room_2Set_000320DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000320DL_001EC0[] = dspot04_room_2Set_000320DL_001EC0; -#else -static const char spot04_room_2Set_000320DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000320DL_001EC0; -#endif - -#define dspot04_room_2Set_000320DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000320DL_002338[] = dspot04_room_2Set_000320DL_002338; -#else -static const char spot04_room_2Set_000320DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_000320DL_002338; -#endif - -#define dspot04_room_2Set_000350DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000350DL_000840[] = dspot04_room_2Set_000350DL_000840; -#else -static const char spot04_room_2Set_000350DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_000350DL_000840; -#endif - -#define dspot04_room_2Set_000350DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000350DL_004F80[] = dspot04_room_2Set_000350DL_004F80; -#else -static const char spot04_room_2Set_000350DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_000350DL_004F80; -#endif - -#define dspot04_room_2Set_000350DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000350DL_001AC0[] = dspot04_room_2Set_000350DL_001AC0; -#else -static const char spot04_room_2Set_000350DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000350DL_001AC0; -#endif - -#define dspot04_room_2Set_000350DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000350DL_001378[] = dspot04_room_2Set_000350DL_001378; -#else -static const char spot04_room_2Set_000350DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_000350DL_001378; -#endif - -#define dspot04_room_2Set_000350DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000350DL_002730[] = dspot04_room_2Set_000350DL_002730; -#else -static const char spot04_room_2Set_000350DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_000350DL_002730; -#endif - -#define dspot04_room_2Set_000350DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000350DL_002AD0[] = dspot04_room_2Set_000350DL_002AD0; -#else -static const char spot04_room_2Set_000350DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_000350DL_002AD0; -#endif - -#define dspot04_room_2Set_000350DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000350DL_001EC0[] = dspot04_room_2Set_000350DL_001EC0; -#else -static const char spot04_room_2Set_000350DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000350DL_001EC0; -#endif - -#define dspot04_room_2Set_000350DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000350DL_002338[] = dspot04_room_2Set_000350DL_002338; -#else -static const char spot04_room_2Set_000350DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_000350DL_002338; -#endif - -#define dspot04_room_2Set_000380DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000380DL_000840[] = dspot04_room_2Set_000380DL_000840; -#else -static const char spot04_room_2Set_000380DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_000380DL_000840; -#endif - -#define dspot04_room_2Set_000380DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000380DL_004F80[] = dspot04_room_2Set_000380DL_004F80; -#else -static const char spot04_room_2Set_000380DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_000380DL_004F80; -#endif - -#define dspot04_room_2Set_000380DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000380DL_001AC0[] = dspot04_room_2Set_000380DL_001AC0; -#else -static const char spot04_room_2Set_000380DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000380DL_001AC0; -#endif - -#define dspot04_room_2Set_000380DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000380DL_001378[] = dspot04_room_2Set_000380DL_001378; -#else -static const char spot04_room_2Set_000380DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_000380DL_001378; -#endif - -#define dspot04_room_2Set_000380DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000380DL_002730[] = dspot04_room_2Set_000380DL_002730; -#else -static const char spot04_room_2Set_000380DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_000380DL_002730; -#endif - -#define dspot04_room_2Set_000380DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000380DL_002AD0[] = dspot04_room_2Set_000380DL_002AD0; -#else -static const char spot04_room_2Set_000380DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_000380DL_002AD0; -#endif - -#define dspot04_room_2Set_000380DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000380DL_001EC0[] = dspot04_room_2Set_000380DL_001EC0; -#else -static const char spot04_room_2Set_000380DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_000380DL_001EC0; -#endif - -#define dspot04_room_2Set_000380DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_000380DL_002338[] = dspot04_room_2Set_000380DL_002338; -#else -static const char spot04_room_2Set_000380DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_000380DL_002338; -#endif - -#define dspot04_room_2Set_0003B0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003B0DL_000840[] = dspot04_room_2Set_0003B0DL_000840; -#else -static const char spot04_room_2Set_0003B0DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_0003B0DL_000840; -#endif - -#define dspot04_room_2Set_0003B0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003B0DL_004F80[] = dspot04_room_2Set_0003B0DL_004F80; -#else -static const char spot04_room_2Set_0003B0DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_0003B0DL_004F80; -#endif - -#define dspot04_room_2Set_0003B0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003B0DL_001AC0[] = dspot04_room_2Set_0003B0DL_001AC0; -#else -static const char spot04_room_2Set_0003B0DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0003B0DL_001AC0; -#endif - -#define dspot04_room_2Set_0003B0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003B0DL_001378[] = dspot04_room_2Set_0003B0DL_001378; -#else -static const char spot04_room_2Set_0003B0DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_0003B0DL_001378; -#endif - -#define dspot04_room_2Set_0003B0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003B0DL_002730[] = dspot04_room_2Set_0003B0DL_002730; -#else -static const char spot04_room_2Set_0003B0DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_0003B0DL_002730; -#endif - -#define dspot04_room_2Set_0003B0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003B0DL_002AD0[] = dspot04_room_2Set_0003B0DL_002AD0; -#else -static const char spot04_room_2Set_0003B0DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_0003B0DL_002AD0; -#endif - -#define dspot04_room_2Set_0003B0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003B0DL_001EC0[] = dspot04_room_2Set_0003B0DL_001EC0; -#else -static const char spot04_room_2Set_0003B0DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0003B0DL_001EC0; -#endif - -#define dspot04_room_2Set_0003B0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003B0DL_002338[] = dspot04_room_2Set_0003B0DL_002338; -#else -static const char spot04_room_2Set_0003B0DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_0003B0DL_002338; -#endif - -#define dspot04_room_2Set_0003E0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_000840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003E0DL_000840[] = dspot04_room_2Set_0003E0DL_000840; -#else -static const char spot04_room_2Set_0003E0DL_000840[] __attribute__((aligned (2))) = dspot04_room_2Set_0003E0DL_000840; -#endif - -#define dspot04_room_2Set_0003E0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_004F80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003E0DL_004F80[] = dspot04_room_2Set_0003E0DL_004F80; -#else -static const char spot04_room_2Set_0003E0DL_004F80[] __attribute__((aligned (2))) = dspot04_room_2Set_0003E0DL_004F80; -#endif - -#define dspot04_room_2Set_0003E0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_001AC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003E0DL_001AC0[] = dspot04_room_2Set_0003E0DL_001AC0; -#else -static const char spot04_room_2Set_0003E0DL_001AC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0003E0DL_001AC0; -#endif - -#define dspot04_room_2Set_0003E0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_001378" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003E0DL_001378[] = dspot04_room_2Set_0003E0DL_001378; -#else -static const char spot04_room_2Set_0003E0DL_001378[] __attribute__((aligned (2))) = dspot04_room_2Set_0003E0DL_001378; -#endif - -#define dspot04_room_2Set_0003E0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003E0DL_002730[] = dspot04_room_2Set_0003E0DL_002730; -#else -static const char spot04_room_2Set_0003E0DL_002730[] __attribute__((aligned (2))) = dspot04_room_2Set_0003E0DL_002730; -#endif - -#define dspot04_room_2Set_0003E0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_002AD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003E0DL_002AD0[] = dspot04_room_2Set_0003E0DL_002AD0; -#else -static const char spot04_room_2Set_0003E0DL_002AD0[] __attribute__((aligned (2))) = dspot04_room_2Set_0003E0DL_002AD0; -#endif - -#define dspot04_room_2Set_0003E0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003E0DL_001EC0[] = dspot04_room_2Set_0003E0DL_001EC0; -#else -static const char spot04_room_2Set_0003E0DL_001EC0[] __attribute__((aligned (2))) = dspot04_room_2Set_0003E0DL_001EC0; -#endif - -#define dspot04_room_2Set_0003E0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_002338" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_room_2Set_0003E0DL_002338[] = dspot04_room_2Set_0003E0DL_002338; -#else -static const char spot04_room_2Set_0003E0DL_002338[] __attribute__((aligned (2))) = dspot04_room_2Set_0003E0DL_002338; -#endif - +#include "align_asset_macro.h" + +#define dgSpot04DL_002BB8 "__OTR__scenes/nonmq/spot04_scene/gSpot04DL_002BB8" +static const ALIGN_ASSET(2) char gSpot04DL_002BB8[] = dgSpot04DL_002BB8; + +#define dgSpot04DL_005058 "__OTR__scenes/nonmq/spot04_scene/gSpot04DL_005058" +static const ALIGN_ASSET(2) char gSpot04DL_005058[] = dgSpot04DL_005058; + +#define dspot04_room_2DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2DL_000840[] = dspot04_room_2DL_000840; + +#define dspot04_room_2DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2DL_004F80[] = dspot04_room_2DL_004F80; + +#define dspot04_room_2DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2DL_001AC0[] = dspot04_room_2DL_001AC0; + +#define dspot04_room_2DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2DL_001378[] = dspot04_room_2DL_001378; + +#define dspot04_room_2Tex_002BF8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_002BF8" +static const ALIGN_ASSET(2) char spot04_room_2Tex_002BF8[] = dspot04_room_2Tex_002BF8; + +#define dspot04_room_2Tex_002DF8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_002DF8" +static const ALIGN_ASSET(2) char spot04_room_2Tex_002DF8[] = dspot04_room_2Tex_002DF8; + +#define dspot04_room_2DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2DL_002730[] = dspot04_room_2DL_002730; + +#define dspot04_room_2Tex_0033F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_0033F8" +static const ALIGN_ASSET(2) char spot04_room_2Tex_0033F8[] = dspot04_room_2Tex_0033F8; + +#define dspot04_room_2Tex_003BF8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_003BF8" +static const ALIGN_ASSET(2) char spot04_room_2Tex_003BF8[] = dspot04_room_2Tex_003BF8; + +#define dspot04_room_2DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2DL_002AD0[] = dspot04_room_2DL_002AD0; + +#define dspot04_room_2Tex_0045F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_0045F8" +static const ALIGN_ASSET(2) char spot04_room_2Tex_0045F8[] = dspot04_room_2Tex_0045F8; + +#define dspot04_room_2DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2DL_001EC0[] = dspot04_room_2DL_001EC0; + +#define dspot04_room_2Tex_0043F8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_0043F8" +static const ALIGN_ASSET(2) char spot04_room_2Tex_0043F8[] = dspot04_room_2Tex_0043F8; + +#define dspot04_room_2DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2DL_002338[] = dspot04_room_2DL_002338; + +#define dspot04_room_2Tex_002FF8 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Tex_002FF8" +static const ALIGN_ASSET(2) char spot04_room_2Tex_002FF8[] = dspot04_room_2Tex_002FF8; + +#define dspot04_room_2Set_0001D0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_0001D0DL_000840[] = dspot04_room_2Set_0001D0DL_000840; + +#define dspot04_room_2Set_0001D0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_0001D0DL_004F80[] = dspot04_room_2Set_0001D0DL_004F80; + +#define dspot04_room_2Set_0001D0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0001D0DL_001AC0[] = dspot04_room_2Set_0001D0DL_001AC0; + +#define dspot04_room_2Set_0001D0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_0001D0DL_001378[] = dspot04_room_2Set_0001D0DL_001378; + +#define dspot04_room_2Set_0001D0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_0001D0DL_002730[] = dspot04_room_2Set_0001D0DL_002730; + +#define dspot04_room_2Set_0001D0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0001D0DL_002AD0[] = dspot04_room_2Set_0001D0DL_002AD0; + +#define dspot04_room_2Set_0001D0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0001D0DL_001EC0[] = dspot04_room_2Set_0001D0DL_001EC0; + +#define dspot04_room_2Set_0001D0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0001D0DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_0001D0DL_002338[] = dspot04_room_2Set_0001D0DL_002338; + +#define dspot04_room_2Set_000200DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_000200DL_000840[] = dspot04_room_2Set_000200DL_000840; + +#define dspot04_room_2Set_000200DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_000200DL_004F80[] = dspot04_room_2Set_000200DL_004F80; + +#define dspot04_room_2Set_000200DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000200DL_001AC0[] = dspot04_room_2Set_000200DL_001AC0; + +#define dspot04_room_2Set_000200DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_000200DL_001378[] = dspot04_room_2Set_000200DL_001378; + +#define dspot04_room_2Set_000200DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_000200DL_002730[] = dspot04_room_2Set_000200DL_002730; + +#define dspot04_room_2Set_000200DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000200DL_002AD0[] = dspot04_room_2Set_000200DL_002AD0; + +#define dspot04_room_2Set_000200DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000200DL_001EC0[] = dspot04_room_2Set_000200DL_001EC0; + +#define dspot04_room_2Set_000200DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000200DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_000200DL_002338[] = dspot04_room_2Set_000200DL_002338; + +#define dspot04_room_2Set_000230DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_000230DL_000840[] = dspot04_room_2Set_000230DL_000840; + +#define dspot04_room_2Set_000230DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_000230DL_004F80[] = dspot04_room_2Set_000230DL_004F80; + +#define dspot04_room_2Set_000230DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000230DL_001AC0[] = dspot04_room_2Set_000230DL_001AC0; + +#define dspot04_room_2Set_000230DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_000230DL_001378[] = dspot04_room_2Set_000230DL_001378; + +#define dspot04_room_2Set_000230DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_000230DL_002730[] = dspot04_room_2Set_000230DL_002730; + +#define dspot04_room_2Set_000230DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000230DL_002AD0[] = dspot04_room_2Set_000230DL_002AD0; + +#define dspot04_room_2Set_000230DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000230DL_001EC0[] = dspot04_room_2Set_000230DL_001EC0; + +#define dspot04_room_2Set_000230DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000230DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_000230DL_002338[] = dspot04_room_2Set_000230DL_002338; + +#define dspot04_room_2Set_000260DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_000260DL_000840[] = dspot04_room_2Set_000260DL_000840; + +#define dspot04_room_2Set_000260DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_000260DL_004F80[] = dspot04_room_2Set_000260DL_004F80; + +#define dspot04_room_2Set_000260DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000260DL_001AC0[] = dspot04_room_2Set_000260DL_001AC0; + +#define dspot04_room_2Set_000260DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_000260DL_001378[] = dspot04_room_2Set_000260DL_001378; + +#define dspot04_room_2Set_000260DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_000260DL_002730[] = dspot04_room_2Set_000260DL_002730; + +#define dspot04_room_2Set_000260DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000260DL_002AD0[] = dspot04_room_2Set_000260DL_002AD0; + +#define dspot04_room_2Set_000260DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000260DL_001EC0[] = dspot04_room_2Set_000260DL_001EC0; + +#define dspot04_room_2Set_000260DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000260DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_000260DL_002338[] = dspot04_room_2Set_000260DL_002338; + +#define dspot04_room_2Set_000290DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_000290DL_000840[] = dspot04_room_2Set_000290DL_000840; + +#define dspot04_room_2Set_000290DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_000290DL_004F80[] = dspot04_room_2Set_000290DL_004F80; + +#define dspot04_room_2Set_000290DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000290DL_001AC0[] = dspot04_room_2Set_000290DL_001AC0; + +#define dspot04_room_2Set_000290DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_000290DL_001378[] = dspot04_room_2Set_000290DL_001378; + +#define dspot04_room_2Set_000290DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_000290DL_002730[] = dspot04_room_2Set_000290DL_002730; + +#define dspot04_room_2Set_000290DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000290DL_002AD0[] = dspot04_room_2Set_000290DL_002AD0; + +#define dspot04_room_2Set_000290DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000290DL_001EC0[] = dspot04_room_2Set_000290DL_001EC0; + +#define dspot04_room_2Set_000290DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000290DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_000290DL_002338[] = dspot04_room_2Set_000290DL_002338; + +#define dspot04_room_2Set_0002C0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002C0DL_000840[] = dspot04_room_2Set_0002C0DL_000840; + +#define dspot04_room_2Set_0002C0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002C0DL_004F80[] = dspot04_room_2Set_0002C0DL_004F80; + +#define dspot04_room_2Set_0002C0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002C0DL_001AC0[] = dspot04_room_2Set_0002C0DL_001AC0; + +#define dspot04_room_2Set_0002C0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002C0DL_001378[] = dspot04_room_2Set_0002C0DL_001378; + +#define dspot04_room_2Set_0002C0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002C0DL_002730[] = dspot04_room_2Set_0002C0DL_002730; + +#define dspot04_room_2Set_0002C0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002C0DL_002AD0[] = dspot04_room_2Set_0002C0DL_002AD0; + +#define dspot04_room_2Set_0002C0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002C0DL_001EC0[] = dspot04_room_2Set_0002C0DL_001EC0; + +#define dspot04_room_2Set_0002C0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002C0DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002C0DL_002338[] = dspot04_room_2Set_0002C0DL_002338; + +#define dspot04_room_2Set_0002F0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002F0DL_000840[] = dspot04_room_2Set_0002F0DL_000840; + +#define dspot04_room_2Set_0002F0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002F0DL_004F80[] = dspot04_room_2Set_0002F0DL_004F80; + +#define dspot04_room_2Set_0002F0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002F0DL_001AC0[] = dspot04_room_2Set_0002F0DL_001AC0; + +#define dspot04_room_2Set_0002F0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002F0DL_001378[] = dspot04_room_2Set_0002F0DL_001378; + +#define dspot04_room_2Set_0002F0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002F0DL_002730[] = dspot04_room_2Set_0002F0DL_002730; + +#define dspot04_room_2Set_0002F0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002F0DL_002AD0[] = dspot04_room_2Set_0002F0DL_002AD0; + +#define dspot04_room_2Set_0002F0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002F0DL_001EC0[] = dspot04_room_2Set_0002F0DL_001EC0; + +#define dspot04_room_2Set_0002F0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0002F0DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_0002F0DL_002338[] = dspot04_room_2Set_0002F0DL_002338; + +#define dspot04_room_2Set_000320DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_000320DL_000840[] = dspot04_room_2Set_000320DL_000840; + +#define dspot04_room_2Set_000320DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_000320DL_004F80[] = dspot04_room_2Set_000320DL_004F80; + +#define dspot04_room_2Set_000320DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000320DL_001AC0[] = dspot04_room_2Set_000320DL_001AC0; + +#define dspot04_room_2Set_000320DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_000320DL_001378[] = dspot04_room_2Set_000320DL_001378; + +#define dspot04_room_2Set_000320DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_000320DL_002730[] = dspot04_room_2Set_000320DL_002730; + +#define dspot04_room_2Set_000320DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000320DL_002AD0[] = dspot04_room_2Set_000320DL_002AD0; + +#define dspot04_room_2Set_000320DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000320DL_001EC0[] = dspot04_room_2Set_000320DL_001EC0; + +#define dspot04_room_2Set_000320DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000320DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_000320DL_002338[] = dspot04_room_2Set_000320DL_002338; + +#define dspot04_room_2Set_000350DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_000350DL_000840[] = dspot04_room_2Set_000350DL_000840; + +#define dspot04_room_2Set_000350DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_000350DL_004F80[] = dspot04_room_2Set_000350DL_004F80; + +#define dspot04_room_2Set_000350DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000350DL_001AC0[] = dspot04_room_2Set_000350DL_001AC0; + +#define dspot04_room_2Set_000350DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_000350DL_001378[] = dspot04_room_2Set_000350DL_001378; + +#define dspot04_room_2Set_000350DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_000350DL_002730[] = dspot04_room_2Set_000350DL_002730; + +#define dspot04_room_2Set_000350DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000350DL_002AD0[] = dspot04_room_2Set_000350DL_002AD0; + +#define dspot04_room_2Set_000350DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000350DL_001EC0[] = dspot04_room_2Set_000350DL_001EC0; + +#define dspot04_room_2Set_000350DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000350DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_000350DL_002338[] = dspot04_room_2Set_000350DL_002338; + +#define dspot04_room_2Set_000380DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_000380DL_000840[] = dspot04_room_2Set_000380DL_000840; + +#define dspot04_room_2Set_000380DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_000380DL_004F80[] = dspot04_room_2Set_000380DL_004F80; + +#define dspot04_room_2Set_000380DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000380DL_001AC0[] = dspot04_room_2Set_000380DL_001AC0; + +#define dspot04_room_2Set_000380DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_000380DL_001378[] = dspot04_room_2Set_000380DL_001378; + +#define dspot04_room_2Set_000380DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_000380DL_002730[] = dspot04_room_2Set_000380DL_002730; + +#define dspot04_room_2Set_000380DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000380DL_002AD0[] = dspot04_room_2Set_000380DL_002AD0; + +#define dspot04_room_2Set_000380DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_000380DL_001EC0[] = dspot04_room_2Set_000380DL_001EC0; + +#define dspot04_room_2Set_000380DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_000380DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_000380DL_002338[] = dspot04_room_2Set_000380DL_002338; + +#define dspot04_room_2Set_0003B0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003B0DL_000840[] = dspot04_room_2Set_0003B0DL_000840; + +#define dspot04_room_2Set_0003B0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003B0DL_004F80[] = dspot04_room_2Set_0003B0DL_004F80; + +#define dspot04_room_2Set_0003B0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003B0DL_001AC0[] = dspot04_room_2Set_0003B0DL_001AC0; + +#define dspot04_room_2Set_0003B0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003B0DL_001378[] = dspot04_room_2Set_0003B0DL_001378; + +#define dspot04_room_2Set_0003B0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003B0DL_002730[] = dspot04_room_2Set_0003B0DL_002730; + +#define dspot04_room_2Set_0003B0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003B0DL_002AD0[] = dspot04_room_2Set_0003B0DL_002AD0; + +#define dspot04_room_2Set_0003B0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003B0DL_001EC0[] = dspot04_room_2Set_0003B0DL_001EC0; + +#define dspot04_room_2Set_0003B0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003B0DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003B0DL_002338[] = dspot04_room_2Set_0003B0DL_002338; + +#define dspot04_room_2Set_0003E0DL_000840 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_000840" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003E0DL_000840[] = dspot04_room_2Set_0003E0DL_000840; + +#define dspot04_room_2Set_0003E0DL_004F80 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_004F80" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003E0DL_004F80[] = dspot04_room_2Set_0003E0DL_004F80; + +#define dspot04_room_2Set_0003E0DL_001AC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_001AC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003E0DL_001AC0[] = dspot04_room_2Set_0003E0DL_001AC0; + +#define dspot04_room_2Set_0003E0DL_001378 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_001378" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003E0DL_001378[] = dspot04_room_2Set_0003E0DL_001378; + +#define dspot04_room_2Set_0003E0DL_002730 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_002730" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003E0DL_002730[] = dspot04_room_2Set_0003E0DL_002730; + +#define dspot04_room_2Set_0003E0DL_002AD0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_002AD0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003E0DL_002AD0[] = dspot04_room_2Set_0003E0DL_002AD0; + +#define dspot04_room_2Set_0003E0DL_001EC0 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_001EC0" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003E0DL_001EC0[] = dspot04_room_2Set_0003E0DL_001EC0; + +#define dspot04_room_2Set_0003E0DL_002338 "__OTR__scenes/nonmq/spot04_scene/spot04_room_2Set_0003E0DL_002338" +static const ALIGN_ASSET(2) char spot04_room_2Set_0003E0DL_002338[] = dspot04_room_2Set_0003E0DL_002338; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot04/spot04_scene.h b/soh/assets/scenes/overworld/spot04/spot04_scene.h index f4066c1a8..6ca7c8cab 100644 --- a/soh/assets/scenes/overworld/spot04/spot04_scene.h +++ b/soh/assets/scenes/overworld/spot04/spot04_scene.h @@ -1,84 +1,57 @@ #pragma once + +#include "align_asset_macro.h" + #define dgKokiriForestDekuSproutCs "__OTR__scenes/nonmq/spot04_scene/gKokiriForestDekuSproutCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestDekuSproutCs[] = dgKokiriForestDekuSproutCs; -#else -static const char gKokiriForestDekuSproutCs[] __attribute__((aligned (2))) = dgKokiriForestDekuSproutCs; -#endif - +static const ALIGN_ASSET(2) char gKokiriForestDekuSproutCs[] = dgKokiriForestDekuSproutCs; + #define dgSpot04Cs_10E20 "__OTR__scenes/nonmq/spot04_scene/gSpot04Cs_10E20" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot04Cs_10E20[] = dgSpot04Cs_10E20; -#else -static const char gSpot04Cs_10E20[] __attribute__((aligned (2))) = dgSpot04Cs_10E20; -#endif - +static const ALIGN_ASSET(2) char gSpot04Cs_10E20[] = dgSpot04Cs_10E20; + #define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_sceneCollisionHeader_008918[] = dspot04_sceneCollisionHeader_008918; -#else -static const char spot04_sceneCollisionHeader_008918[] __attribute__((aligned (2))) = dspot04_sceneCollisionHeader_008918; -#endif - +static const ALIGN_ASSET(2) char spot04_sceneCollisionHeader_008918[] = dspot04_sceneCollisionHeader_008918; + #define dspot04_sceneTLUT_00E010 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneTLUT_00E010" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_sceneTLUT_00E010[] = dspot04_sceneTLUT_00E010; -#else -static const char spot04_sceneTLUT_00E010[] __attribute__((aligned (2))) = dspot04_sceneTLUT_00E010; -#endif - +static const ALIGN_ASSET(2) char spot04_sceneTLUT_00E010[] = dspot04_sceneTLUT_00E010; + #define dspot04_sceneTex_010618 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneTex_010618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_sceneTex_010618[] = dspot04_sceneTex_010618; -#else -static const char spot04_sceneTex_010618[] __attribute__((aligned (2))) = dspot04_sceneTex_010618; -#endif - +static const ALIGN_ASSET(2) char spot04_sceneTex_010618[] = dspot04_sceneTex_010618; + #define dspot04_sceneTex_00FE18 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneTex_00FE18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_sceneTex_00FE18[] = dspot04_sceneTex_00FE18; -#else -static const char spot04_sceneTex_00FE18[] __attribute__((aligned (2))) = dspot04_sceneTex_00FE18; -#endif - +static const ALIGN_ASSET(2) char spot04_sceneTex_00FE18[] = dspot04_sceneTex_00FE18; + #define dspot04_sceneTex_00F218 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneTex_00F218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_sceneTex_00F218[] = dspot04_sceneTex_00F218; -#else -static const char spot04_sceneTex_00F218[] __attribute__((aligned (2))) = dspot04_sceneTex_00F218; -#endif - +static const ALIGN_ASSET(2) char spot04_sceneTex_00F218[] = dspot04_sceneTex_00F218; + #define dspot04_sceneTex_00EA18 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneTex_00EA18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_sceneTex_00EA18[] = dspot04_sceneTex_00EA18; -#else -static const char spot04_sceneTex_00EA18[] __attribute__((aligned (2))) = dspot04_sceneTex_00EA18; -#endif - +static const ALIGN_ASSET(2) char spot04_sceneTex_00EA18[] = dspot04_sceneTex_00EA18; + #define dspot04_sceneTex_00E218 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneTex_00E218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_sceneTex_00E218[] = dspot04_sceneTex_00E218; -#else -static const char spot04_sceneTex_00E218[] __attribute__((aligned (2))) = dspot04_sceneTex_00E218; -#endif - +static const ALIGN_ASSET(2) char spot04_sceneTex_00E218[] = dspot04_sceneTex_00E218; + #define dspot04_sceneTex_00FA18 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneTex_00FA18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot04_sceneTex_00FA18[] = dspot04_sceneTex_00FA18; -#else -static const char spot04_sceneTex_00FA18[] __attribute__((aligned (2))) = dspot04_sceneTex_00FA18; -#endif - -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" -#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" +static const ALIGN_ASSET(2) char spot04_sceneTex_00FA18[] = dspot04_sceneTex_00FA18; + #define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" + +#define dspot04_sceneCollisionHeader_008918 "__OTR__scenes/nonmq/spot04_scene/spot04_sceneCollisionHeader_008918" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot05/spot05_room_0.h b/soh/assets/scenes/overworld/spot05/spot05_room_0.h index 50aed94d8..27ea469cf 100644 --- a/soh/assets/scenes/overworld/spot05/spot05_room_0.h +++ b/soh/assets/scenes/overworld/spot05/spot05_room_0.h @@ -1,520 +1,225 @@ #pragma once -#define dgSpot05DL_009A60 "__OTR__scenes/nonmq/spot05_scene/gSpot05DL_009A60" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot05DL_009A60[] = dgSpot05DL_009A60; -#else -static const char gSpot05DL_009A60[] __attribute__((aligned (2))) = dgSpot05DL_009A60; -#endif - -#define dgSpot05DL_009EE0 "__OTR__scenes/nonmq/spot05_scene/gSpot05DL_009EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot05DL_009EE0[] = dgSpot05DL_009EE0; -#else -static const char gSpot05DL_009EE0[] __attribute__((aligned (2))) = dgSpot05DL_009EE0; -#endif - -#define dspot05_room_0DL_009928 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_009928" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_009928[] = dspot05_room_0DL_009928; -#else -static const char spot05_room_0DL_009928[] __attribute__((aligned (2))) = dspot05_room_0DL_009928; -#endif - -#define dspot05_room_0DL_005670 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_005670" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_005670[] = dspot05_room_0DL_005670; -#else -static const char spot05_room_0DL_005670[] __attribute__((aligned (2))) = dspot05_room_0DL_005670; -#endif - -#define dspot05_room_0DL_009BB0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_009BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_009BB0[] = dspot05_room_0DL_009BB0; -#else -static const char spot05_room_0DL_009BB0[] __attribute__((aligned (2))) = dspot05_room_0DL_009BB0; -#endif - -#define dspot05_room_0DL_0084C8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_0084C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_0084C8[] = dspot05_room_0DL_0084C8; -#else -static const char spot05_room_0DL_0084C8[] __attribute__((aligned (2))) = dspot05_room_0DL_0084C8; -#endif - -#define dspot05_room_0DL_0095D8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_0095D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_0095D8[] = dspot05_room_0DL_0095D8; -#else -static const char spot05_room_0DL_0095D8[] __attribute__((aligned (2))) = dspot05_room_0DL_0095D8; -#endif - -#define dspot05_room_0DL_009098 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_009098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_009098[] = dspot05_room_0DL_009098; -#else -static const char spot05_room_0DL_009098[] __attribute__((aligned (2))) = dspot05_room_0DL_009098; -#endif - -#define dspot05_room_0DL_008970 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_008970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_008970[] = dspot05_room_0DL_008970; -#else -static const char spot05_room_0DL_008970[] __attribute__((aligned (2))) = dspot05_room_0DL_008970; -#endif - -#define dspot05_room_0DL_0015B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_0015B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_0015B0[] = dspot05_room_0DL_0015B0; -#else -static const char spot05_room_0DL_0015B0[] __attribute__((aligned (2))) = dspot05_room_0DL_0015B0; -#endif - -#define dspot05_room_0DL_001CD8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_001CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_001CD8[] = dspot05_room_0DL_001CD8; -#else -static const char spot05_room_0DL_001CD8[] __attribute__((aligned (2))) = dspot05_room_0DL_001CD8; -#endif - -#define dspot05_room_0DL_002200 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_002200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_002200[] = dspot05_room_0DL_002200; -#else -static const char spot05_room_0DL_002200[] __attribute__((aligned (2))) = dspot05_room_0DL_002200; -#endif - -#define dspot05_room_0DL_0026B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_0026B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_0026B0[] = dspot05_room_0DL_0026B0; -#else -static const char spot05_room_0DL_0026B0[] __attribute__((aligned (2))) = dspot05_room_0DL_0026B0; -#endif - -#define dspot05_room_0DL_002BC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_002BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_002BC8[] = dspot05_room_0DL_002BC8; -#else -static const char spot05_room_0DL_002BC8[] __attribute__((aligned (2))) = dspot05_room_0DL_002BC8; -#endif - -#define dspot05_room_0DL_003618 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_003618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_003618[] = dspot05_room_0DL_003618; -#else -static const char spot05_room_0DL_003618[] __attribute__((aligned (2))) = dspot05_room_0DL_003618; -#endif - -#define dspot05_room_0DL_003D88 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_003D88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_003D88[] = dspot05_room_0DL_003D88; -#else -static const char spot05_room_0DL_003D88[] __attribute__((aligned (2))) = dspot05_room_0DL_003D88; -#endif - -#define dspot05_room_0DL_007F00 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_007F00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_007F00[] = dspot05_room_0DL_007F00; -#else -static const char spot05_room_0DL_007F00[] __attribute__((aligned (2))) = dspot05_room_0DL_007F00; -#endif - -#define dspot05_room_0DL_007620 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_007620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_007620[] = dspot05_room_0DL_007620; -#else -static const char spot05_room_0DL_007620[] __attribute__((aligned (2))) = dspot05_room_0DL_007620; -#endif - -#define dspot05_room_0DL_006EC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_006EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_006EC8[] = dspot05_room_0DL_006EC8; -#else -static const char spot05_room_0DL_006EC8[] __attribute__((aligned (2))) = dspot05_room_0DL_006EC8; -#endif - -#define dspot05_room_0DL_009DF0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_009DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0DL_009DF0[] = dspot05_room_0DL_009DF0; -#else -static const char spot05_room_0DL_009DF0[] __attribute__((aligned (2))) = dspot05_room_0DL_009DF0; -#endif - -#define dspot05_room_0Set_000340DL_009928 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_009928" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_009928[] = dspot05_room_0Set_000340DL_009928; -#else -static const char spot05_room_0Set_000340DL_009928[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_009928; -#endif - -#define dspot05_room_0Set_000340DL_005670 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_005670" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_005670[] = dspot05_room_0Set_000340DL_005670; -#else -static const char spot05_room_0Set_000340DL_005670[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_005670; -#endif - -#define dspot05_room_0Set_000340DL_009BB0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_009BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_009BB0[] = dspot05_room_0Set_000340DL_009BB0; -#else -static const char spot05_room_0Set_000340DL_009BB0[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_009BB0; -#endif - -#define dspot05_room_0Set_000340DL_0084C8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_0084C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_0084C8[] = dspot05_room_0Set_000340DL_0084C8; -#else -static const char spot05_room_0Set_000340DL_0084C8[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_0084C8; -#endif - -#define dspot05_room_0Set_000340DL_0095D8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_0095D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_0095D8[] = dspot05_room_0Set_000340DL_0095D8; -#else -static const char spot05_room_0Set_000340DL_0095D8[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_0095D8; -#endif - -#define dspot05_room_0Set_000340DL_009098 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_009098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_009098[] = dspot05_room_0Set_000340DL_009098; -#else -static const char spot05_room_0Set_000340DL_009098[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_009098; -#endif - -#define dspot05_room_0Set_000340DL_008970 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_008970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_008970[] = dspot05_room_0Set_000340DL_008970; -#else -static const char spot05_room_0Set_000340DL_008970[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_008970; -#endif - -#define dspot05_room_0Set_000340DL_0015B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_0015B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_0015B0[] = dspot05_room_0Set_000340DL_0015B0; -#else -static const char spot05_room_0Set_000340DL_0015B0[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_0015B0; -#endif - -#define dspot05_room_0Set_000340DL_001CD8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_001CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_001CD8[] = dspot05_room_0Set_000340DL_001CD8; -#else -static const char spot05_room_0Set_000340DL_001CD8[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_001CD8; -#endif - -#define dspot05_room_0Set_000340DL_002200 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_002200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_002200[] = dspot05_room_0Set_000340DL_002200; -#else -static const char spot05_room_0Set_000340DL_002200[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_002200; -#endif - -#define dspot05_room_0Set_000340DL_0026B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_0026B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_0026B0[] = dspot05_room_0Set_000340DL_0026B0; -#else -static const char spot05_room_0Set_000340DL_0026B0[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_0026B0; -#endif - -#define dspot05_room_0Set_000340DL_002BC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_002BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_002BC8[] = dspot05_room_0Set_000340DL_002BC8; -#else -static const char spot05_room_0Set_000340DL_002BC8[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_002BC8; -#endif - -#define dspot05_room_0Set_000340DL_003618 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_003618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_003618[] = dspot05_room_0Set_000340DL_003618; -#else -static const char spot05_room_0Set_000340DL_003618[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_003618; -#endif - -#define dspot05_room_0Set_000340DL_003D88 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_003D88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_003D88[] = dspot05_room_0Set_000340DL_003D88; -#else -static const char spot05_room_0Set_000340DL_003D88[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_003D88; -#endif - -#define dspot05_room_0Set_000340DL_007F00 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_007F00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_007F00[] = dspot05_room_0Set_000340DL_007F00; -#else -static const char spot05_room_0Set_000340DL_007F00[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_007F00; -#endif - -#define dspot05_room_0Set_000340DL_007620 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_007620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_007620[] = dspot05_room_0Set_000340DL_007620; -#else -static const char spot05_room_0Set_000340DL_007620[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_007620; -#endif - -#define dspot05_room_0Set_000340DL_006EC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_006EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_006EC8[] = dspot05_room_0Set_000340DL_006EC8; -#else -static const char spot05_room_0Set_000340DL_006EC8[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_006EC8; -#endif - -#define dspot05_room_0Set_000340DL_009DF0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_009DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000340DL_009DF0[] = dspot05_room_0Set_000340DL_009DF0; -#else -static const char spot05_room_0Set_000340DL_009DF0[] __attribute__((aligned (2))) = dspot05_room_0Set_000340DL_009DF0; -#endif - -#define dspot05_room_0Set_000530DL_009928 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_009928" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_009928[] = dspot05_room_0Set_000530DL_009928; -#else -static const char spot05_room_0Set_000530DL_009928[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_009928; -#endif - -#define dspot05_room_0Set_000530DL_005670 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_005670" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_005670[] = dspot05_room_0Set_000530DL_005670; -#else -static const char spot05_room_0Set_000530DL_005670[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_005670; -#endif - -#define dspot05_room_0Set_000530DL_009BB0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_009BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_009BB0[] = dspot05_room_0Set_000530DL_009BB0; -#else -static const char spot05_room_0Set_000530DL_009BB0[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_009BB0; -#endif - -#define dspot05_room_0Set_000530DL_0084C8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_0084C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_0084C8[] = dspot05_room_0Set_000530DL_0084C8; -#else -static const char spot05_room_0Set_000530DL_0084C8[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_0084C8; -#endif - -#define dspot05_room_0Set_000530DL_0095D8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_0095D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_0095D8[] = dspot05_room_0Set_000530DL_0095D8; -#else -static const char spot05_room_0Set_000530DL_0095D8[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_0095D8; -#endif - -#define dspot05_room_0Set_000530DL_009098 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_009098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_009098[] = dspot05_room_0Set_000530DL_009098; -#else -static const char spot05_room_0Set_000530DL_009098[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_009098; -#endif - -#define dspot05_room_0Set_000530DL_008970 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_008970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_008970[] = dspot05_room_0Set_000530DL_008970; -#else -static const char spot05_room_0Set_000530DL_008970[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_008970; -#endif - -#define dspot05_room_0Set_000530DL_0015B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_0015B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_0015B0[] = dspot05_room_0Set_000530DL_0015B0; -#else -static const char spot05_room_0Set_000530DL_0015B0[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_0015B0; -#endif - -#define dspot05_room_0Set_000530DL_001CD8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_001CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_001CD8[] = dspot05_room_0Set_000530DL_001CD8; -#else -static const char spot05_room_0Set_000530DL_001CD8[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_001CD8; -#endif - -#define dspot05_room_0Set_000530DL_002200 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_002200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_002200[] = dspot05_room_0Set_000530DL_002200; -#else -static const char spot05_room_0Set_000530DL_002200[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_002200; -#endif - -#define dspot05_room_0Set_000530DL_0026B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_0026B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_0026B0[] = dspot05_room_0Set_000530DL_0026B0; -#else -static const char spot05_room_0Set_000530DL_0026B0[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_0026B0; -#endif - -#define dspot05_room_0Set_000530DL_002BC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_002BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_002BC8[] = dspot05_room_0Set_000530DL_002BC8; -#else -static const char spot05_room_0Set_000530DL_002BC8[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_002BC8; -#endif - -#define dspot05_room_0Set_000530DL_003618 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_003618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_003618[] = dspot05_room_0Set_000530DL_003618; -#else -static const char spot05_room_0Set_000530DL_003618[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_003618; -#endif - -#define dspot05_room_0Set_000530DL_003D88 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_003D88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_003D88[] = dspot05_room_0Set_000530DL_003D88; -#else -static const char spot05_room_0Set_000530DL_003D88[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_003D88; -#endif - -#define dspot05_room_0Set_000530DL_007F00 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_007F00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_007F00[] = dspot05_room_0Set_000530DL_007F00; -#else -static const char spot05_room_0Set_000530DL_007F00[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_007F00; -#endif - -#define dspot05_room_0Set_000530DL_007620 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_007620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_007620[] = dspot05_room_0Set_000530DL_007620; -#else -static const char spot05_room_0Set_000530DL_007620[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_007620; -#endif - -#define dspot05_room_0Set_000530DL_006EC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_006EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_006EC8[] = dspot05_room_0Set_000530DL_006EC8; -#else -static const char spot05_room_0Set_000530DL_006EC8[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_006EC8; -#endif - -#define dspot05_room_0Set_000530DL_009DF0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_009DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_000530DL_009DF0[] = dspot05_room_0Set_000530DL_009DF0; -#else -static const char spot05_room_0Set_000530DL_009DF0[] __attribute__((aligned (2))) = dspot05_room_0Set_000530DL_009DF0; -#endif - -#define dspot05_room_0Set_0005D0DL_009928 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_009928" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_009928[] = dspot05_room_0Set_0005D0DL_009928; -#else -static const char spot05_room_0Set_0005D0DL_009928[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_009928; -#endif - -#define dspot05_room_0Set_0005D0DL_005670 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_005670" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_005670[] = dspot05_room_0Set_0005D0DL_005670; -#else -static const char spot05_room_0Set_0005D0DL_005670[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_005670; -#endif - -#define dspot05_room_0Set_0005D0DL_009BB0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_009BB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_009BB0[] = dspot05_room_0Set_0005D0DL_009BB0; -#else -static const char spot05_room_0Set_0005D0DL_009BB0[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_009BB0; -#endif - -#define dspot05_room_0Set_0005D0DL_0084C8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_0084C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_0084C8[] = dspot05_room_0Set_0005D0DL_0084C8; -#else -static const char spot05_room_0Set_0005D0DL_0084C8[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_0084C8; -#endif - -#define dspot05_room_0Set_0005D0DL_0095D8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_0095D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_0095D8[] = dspot05_room_0Set_0005D0DL_0095D8; -#else -static const char spot05_room_0Set_0005D0DL_0095D8[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_0095D8; -#endif - -#define dspot05_room_0Set_0005D0DL_009098 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_009098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_009098[] = dspot05_room_0Set_0005D0DL_009098; -#else -static const char spot05_room_0Set_0005D0DL_009098[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_009098; -#endif - -#define dspot05_room_0Set_0005D0DL_008970 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_008970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_008970[] = dspot05_room_0Set_0005D0DL_008970; -#else -static const char spot05_room_0Set_0005D0DL_008970[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_008970; -#endif - -#define dspot05_room_0Set_0005D0DL_0015B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_0015B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_0015B0[] = dspot05_room_0Set_0005D0DL_0015B0; -#else -static const char spot05_room_0Set_0005D0DL_0015B0[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_0015B0; -#endif - -#define dspot05_room_0Set_0005D0DL_001CD8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_001CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_001CD8[] = dspot05_room_0Set_0005D0DL_001CD8; -#else -static const char spot05_room_0Set_0005D0DL_001CD8[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_001CD8; -#endif - -#define dspot05_room_0Set_0005D0DL_002200 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_002200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_002200[] = dspot05_room_0Set_0005D0DL_002200; -#else -static const char spot05_room_0Set_0005D0DL_002200[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_002200; -#endif - -#define dspot05_room_0Set_0005D0DL_0026B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_0026B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_0026B0[] = dspot05_room_0Set_0005D0DL_0026B0; -#else -static const char spot05_room_0Set_0005D0DL_0026B0[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_0026B0; -#endif - -#define dspot05_room_0Set_0005D0DL_002BC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_002BC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_002BC8[] = dspot05_room_0Set_0005D0DL_002BC8; -#else -static const char spot05_room_0Set_0005D0DL_002BC8[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_002BC8; -#endif - -#define dspot05_room_0Set_0005D0DL_003618 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_003618" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_003618[] = dspot05_room_0Set_0005D0DL_003618; -#else -static const char spot05_room_0Set_0005D0DL_003618[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_003618; -#endif - -#define dspot05_room_0Set_0005D0DL_003D88 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_003D88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_003D88[] = dspot05_room_0Set_0005D0DL_003D88; -#else -static const char spot05_room_0Set_0005D0DL_003D88[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_003D88; -#endif - -#define dspot05_room_0Set_0005D0DL_007F00 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_007F00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_007F00[] = dspot05_room_0Set_0005D0DL_007F00; -#else -static const char spot05_room_0Set_0005D0DL_007F00[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_007F00; -#endif - -#define dspot05_room_0Set_0005D0DL_007620 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_007620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_007620[] = dspot05_room_0Set_0005D0DL_007620; -#else -static const char spot05_room_0Set_0005D0DL_007620[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_007620; -#endif - -#define dspot05_room_0Set_0005D0DL_006EC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_006EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_006EC8[] = dspot05_room_0Set_0005D0DL_006EC8; -#else -static const char spot05_room_0Set_0005D0DL_006EC8[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_006EC8; -#endif - -#define dspot05_room_0Set_0005D0DL_009DF0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_009DF0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_room_0Set_0005D0DL_009DF0[] = dspot05_room_0Set_0005D0DL_009DF0; -#else -static const char spot05_room_0Set_0005D0DL_009DF0[] __attribute__((aligned (2))) = dspot05_room_0Set_0005D0DL_009DF0; -#endif - +#include "align_asset_macro.h" + +#define dgSpot05DL_009A60 "__OTR__scenes/nonmq/spot05_scene/gSpot05DL_009A60" +static const ALIGN_ASSET(2) char gSpot05DL_009A60[] = dgSpot05DL_009A60; + +#define dgSpot05DL_009EE0 "__OTR__scenes/nonmq/spot05_scene/gSpot05DL_009EE0" +static const ALIGN_ASSET(2) char gSpot05DL_009EE0[] = dgSpot05DL_009EE0; + +#define dspot05_room_0DL_009928 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_009928" +static const ALIGN_ASSET(2) char spot05_room_0DL_009928[] = dspot05_room_0DL_009928; + +#define dspot05_room_0DL_005670 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_005670" +static const ALIGN_ASSET(2) char spot05_room_0DL_005670[] = dspot05_room_0DL_005670; + +#define dspot05_room_0DL_009BB0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_009BB0" +static const ALIGN_ASSET(2) char spot05_room_0DL_009BB0[] = dspot05_room_0DL_009BB0; + +#define dspot05_room_0DL_0084C8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_0084C8" +static const ALIGN_ASSET(2) char spot05_room_0DL_0084C8[] = dspot05_room_0DL_0084C8; + +#define dspot05_room_0DL_0095D8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_0095D8" +static const ALIGN_ASSET(2) char spot05_room_0DL_0095D8[] = dspot05_room_0DL_0095D8; + +#define dspot05_room_0DL_009098 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_009098" +static const ALIGN_ASSET(2) char spot05_room_0DL_009098[] = dspot05_room_0DL_009098; + +#define dspot05_room_0DL_008970 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_008970" +static const ALIGN_ASSET(2) char spot05_room_0DL_008970[] = dspot05_room_0DL_008970; + +#define dspot05_room_0DL_0015B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_0015B0" +static const ALIGN_ASSET(2) char spot05_room_0DL_0015B0[] = dspot05_room_0DL_0015B0; + +#define dspot05_room_0DL_001CD8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_001CD8" +static const ALIGN_ASSET(2) char spot05_room_0DL_001CD8[] = dspot05_room_0DL_001CD8; + +#define dspot05_room_0DL_002200 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_002200" +static const ALIGN_ASSET(2) char spot05_room_0DL_002200[] = dspot05_room_0DL_002200; + +#define dspot05_room_0DL_0026B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_0026B0" +static const ALIGN_ASSET(2) char spot05_room_0DL_0026B0[] = dspot05_room_0DL_0026B0; + +#define dspot05_room_0DL_002BC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_002BC8" +static const ALIGN_ASSET(2) char spot05_room_0DL_002BC8[] = dspot05_room_0DL_002BC8; + +#define dspot05_room_0DL_003618 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_003618" +static const ALIGN_ASSET(2) char spot05_room_0DL_003618[] = dspot05_room_0DL_003618; + +#define dspot05_room_0DL_003D88 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_003D88" +static const ALIGN_ASSET(2) char spot05_room_0DL_003D88[] = dspot05_room_0DL_003D88; + +#define dspot05_room_0DL_007F00 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_007F00" +static const ALIGN_ASSET(2) char spot05_room_0DL_007F00[] = dspot05_room_0DL_007F00; + +#define dspot05_room_0DL_007620 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_007620" +static const ALIGN_ASSET(2) char spot05_room_0DL_007620[] = dspot05_room_0DL_007620; + +#define dspot05_room_0DL_006EC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_006EC8" +static const ALIGN_ASSET(2) char spot05_room_0DL_006EC8[] = dspot05_room_0DL_006EC8; + +#define dspot05_room_0DL_009DF0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0DL_009DF0" +static const ALIGN_ASSET(2) char spot05_room_0DL_009DF0[] = dspot05_room_0DL_009DF0; + +#define dspot05_room_0Set_000340DL_009928 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_009928" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_009928[] = dspot05_room_0Set_000340DL_009928; + +#define dspot05_room_0Set_000340DL_005670 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_005670" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_005670[] = dspot05_room_0Set_000340DL_005670; + +#define dspot05_room_0Set_000340DL_009BB0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_009BB0" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_009BB0[] = dspot05_room_0Set_000340DL_009BB0; + +#define dspot05_room_0Set_000340DL_0084C8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_0084C8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_0084C8[] = dspot05_room_0Set_000340DL_0084C8; + +#define dspot05_room_0Set_000340DL_0095D8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_0095D8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_0095D8[] = dspot05_room_0Set_000340DL_0095D8; + +#define dspot05_room_0Set_000340DL_009098 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_009098" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_009098[] = dspot05_room_0Set_000340DL_009098; + +#define dspot05_room_0Set_000340DL_008970 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_008970" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_008970[] = dspot05_room_0Set_000340DL_008970; + +#define dspot05_room_0Set_000340DL_0015B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_0015B0" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_0015B0[] = dspot05_room_0Set_000340DL_0015B0; + +#define dspot05_room_0Set_000340DL_001CD8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_001CD8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_001CD8[] = dspot05_room_0Set_000340DL_001CD8; + +#define dspot05_room_0Set_000340DL_002200 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_002200" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_002200[] = dspot05_room_0Set_000340DL_002200; + +#define dspot05_room_0Set_000340DL_0026B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_0026B0" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_0026B0[] = dspot05_room_0Set_000340DL_0026B0; + +#define dspot05_room_0Set_000340DL_002BC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_002BC8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_002BC8[] = dspot05_room_0Set_000340DL_002BC8; + +#define dspot05_room_0Set_000340DL_003618 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_003618" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_003618[] = dspot05_room_0Set_000340DL_003618; + +#define dspot05_room_0Set_000340DL_003D88 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_003D88" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_003D88[] = dspot05_room_0Set_000340DL_003D88; + +#define dspot05_room_0Set_000340DL_007F00 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_007F00" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_007F00[] = dspot05_room_0Set_000340DL_007F00; + +#define dspot05_room_0Set_000340DL_007620 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_007620" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_007620[] = dspot05_room_0Set_000340DL_007620; + +#define dspot05_room_0Set_000340DL_006EC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_006EC8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_006EC8[] = dspot05_room_0Set_000340DL_006EC8; + +#define dspot05_room_0Set_000340DL_009DF0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000340DL_009DF0" +static const ALIGN_ASSET(2) char spot05_room_0Set_000340DL_009DF0[] = dspot05_room_0Set_000340DL_009DF0; + +#define dspot05_room_0Set_000530DL_009928 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_009928" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_009928[] = dspot05_room_0Set_000530DL_009928; + +#define dspot05_room_0Set_000530DL_005670 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_005670" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_005670[] = dspot05_room_0Set_000530DL_005670; + +#define dspot05_room_0Set_000530DL_009BB0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_009BB0" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_009BB0[] = dspot05_room_0Set_000530DL_009BB0; + +#define dspot05_room_0Set_000530DL_0084C8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_0084C8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_0084C8[] = dspot05_room_0Set_000530DL_0084C8; + +#define dspot05_room_0Set_000530DL_0095D8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_0095D8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_0095D8[] = dspot05_room_0Set_000530DL_0095D8; + +#define dspot05_room_0Set_000530DL_009098 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_009098" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_009098[] = dspot05_room_0Set_000530DL_009098; + +#define dspot05_room_0Set_000530DL_008970 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_008970" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_008970[] = dspot05_room_0Set_000530DL_008970; + +#define dspot05_room_0Set_000530DL_0015B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_0015B0" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_0015B0[] = dspot05_room_0Set_000530DL_0015B0; + +#define dspot05_room_0Set_000530DL_001CD8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_001CD8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_001CD8[] = dspot05_room_0Set_000530DL_001CD8; + +#define dspot05_room_0Set_000530DL_002200 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_002200" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_002200[] = dspot05_room_0Set_000530DL_002200; + +#define dspot05_room_0Set_000530DL_0026B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_0026B0" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_0026B0[] = dspot05_room_0Set_000530DL_0026B0; + +#define dspot05_room_0Set_000530DL_002BC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_002BC8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_002BC8[] = dspot05_room_0Set_000530DL_002BC8; + +#define dspot05_room_0Set_000530DL_003618 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_003618" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_003618[] = dspot05_room_0Set_000530DL_003618; + +#define dspot05_room_0Set_000530DL_003D88 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_003D88" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_003D88[] = dspot05_room_0Set_000530DL_003D88; + +#define dspot05_room_0Set_000530DL_007F00 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_007F00" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_007F00[] = dspot05_room_0Set_000530DL_007F00; + +#define dspot05_room_0Set_000530DL_007620 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_007620" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_007620[] = dspot05_room_0Set_000530DL_007620; + +#define dspot05_room_0Set_000530DL_006EC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_006EC8" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_006EC8[] = dspot05_room_0Set_000530DL_006EC8; + +#define dspot05_room_0Set_000530DL_009DF0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_000530DL_009DF0" +static const ALIGN_ASSET(2) char spot05_room_0Set_000530DL_009DF0[] = dspot05_room_0Set_000530DL_009DF0; + +#define dspot05_room_0Set_0005D0DL_009928 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_009928" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_009928[] = dspot05_room_0Set_0005D0DL_009928; + +#define dspot05_room_0Set_0005D0DL_005670 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_005670" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_005670[] = dspot05_room_0Set_0005D0DL_005670; + +#define dspot05_room_0Set_0005D0DL_009BB0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_009BB0" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_009BB0[] = dspot05_room_0Set_0005D0DL_009BB0; + +#define dspot05_room_0Set_0005D0DL_0084C8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_0084C8" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_0084C8[] = dspot05_room_0Set_0005D0DL_0084C8; + +#define dspot05_room_0Set_0005D0DL_0095D8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_0095D8" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_0095D8[] = dspot05_room_0Set_0005D0DL_0095D8; + +#define dspot05_room_0Set_0005D0DL_009098 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_009098" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_009098[] = dspot05_room_0Set_0005D0DL_009098; + +#define dspot05_room_0Set_0005D0DL_008970 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_008970" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_008970[] = dspot05_room_0Set_0005D0DL_008970; + +#define dspot05_room_0Set_0005D0DL_0015B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_0015B0" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_0015B0[] = dspot05_room_0Set_0005D0DL_0015B0; + +#define dspot05_room_0Set_0005D0DL_001CD8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_001CD8" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_001CD8[] = dspot05_room_0Set_0005D0DL_001CD8; + +#define dspot05_room_0Set_0005D0DL_002200 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_002200" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_002200[] = dspot05_room_0Set_0005D0DL_002200; + +#define dspot05_room_0Set_0005D0DL_0026B0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_0026B0" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_0026B0[] = dspot05_room_0Set_0005D0DL_0026B0; + +#define dspot05_room_0Set_0005D0DL_002BC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_002BC8" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_002BC8[] = dspot05_room_0Set_0005D0DL_002BC8; + +#define dspot05_room_0Set_0005D0DL_003618 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_003618" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_003618[] = dspot05_room_0Set_0005D0DL_003618; + +#define dspot05_room_0Set_0005D0DL_003D88 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_003D88" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_003D88[] = dspot05_room_0Set_0005D0DL_003D88; + +#define dspot05_room_0Set_0005D0DL_007F00 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_007F00" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_007F00[] = dspot05_room_0Set_0005D0DL_007F00; + +#define dspot05_room_0Set_0005D0DL_007620 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_007620" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_007620[] = dspot05_room_0Set_0005D0DL_007620; + +#define dspot05_room_0Set_0005D0DL_006EC8 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_006EC8" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_006EC8[] = dspot05_room_0Set_0005D0DL_006EC8; + +#define dspot05_room_0Set_0005D0DL_009DF0 "__OTR__scenes/nonmq/spot05_scene/spot05_room_0Set_0005D0DL_009DF0" +static const ALIGN_ASSET(2) char spot05_room_0Set_0005D0DL_009DF0[] = dspot05_room_0Set_0005D0DL_009DF0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot05/spot05_scene.h b/soh/assets/scenes/overworld/spot05/spot05_scene.h index e3156dfd3..bf79f8bcd 100644 --- a/soh/assets/scenes/overworld/spot05/spot05_scene.h +++ b/soh/assets/scenes/overworld/spot05/spot05_scene.h @@ -1,215 +1,99 @@ #pragma once + +#include "align_asset_macro.h" + #define dgMinuetCs "__OTR__scenes/nonmq/spot05_scene/gMinuetCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gMinuetCs[] = dgMinuetCs; -#else -static const char gMinuetCs[] __attribute__((aligned (2))) = dgMinuetCs; -#endif - +static const ALIGN_ASSET(2) char gMinuetCs[] = dgMinuetCs; + #define dspot05_scene_Cs_005730 "__OTR__scenes/nonmq/spot05_scene/spot05_scene_Cs_005730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_scene_Cs_005730[] = dspot05_scene_Cs_005730; -#else -static const char spot05_scene_Cs_005730[] __attribute__((aligned (2))) = dspot05_scene_Cs_005730; -#endif - +static const ALIGN_ASSET(2) char spot05_scene_Cs_005730[] = dspot05_scene_Cs_005730; + #define dspot05_sceneCollisionHeader_003F4C "__OTR__scenes/nonmq/spot05_scene/spot05_sceneCollisionHeader_003F4C" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneCollisionHeader_003F4C[] = dspot05_sceneCollisionHeader_003F4C; -#else -static const char spot05_sceneCollisionHeader_003F4C[] __attribute__((aligned (2))) = dspot05_sceneCollisionHeader_003F4C; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneCollisionHeader_003F4C[] = dspot05_sceneCollisionHeader_003F4C; + #define dspot05_sceneTex_010B60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_010B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_010B60[] = dspot05_sceneTex_010B60; -#else -static const char spot05_sceneTex_010B60[] __attribute__((aligned (2))) = dspot05_sceneTex_010B60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_010B60[] = dspot05_sceneTex_010B60; + #define dspot05_sceneTex_00E360 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00E360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00E360[] = dspot05_sceneTex_00E360; -#else -static const char spot05_sceneTex_00E360[] __attribute__((aligned (2))) = dspot05_sceneTex_00E360; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00E360[] = dspot05_sceneTex_00E360; + #define dspot05_sceneTex_00D360 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00D360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00D360[] = dspot05_sceneTex_00D360; -#else -static const char spot05_sceneTex_00D360[] __attribute__((aligned (2))) = dspot05_sceneTex_00D360; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00D360[] = dspot05_sceneTex_00D360; + #define dspot05_sceneTex_00A160 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00A160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00A160[] = dspot05_sceneTex_00A160; -#else -static const char spot05_sceneTex_00A160[] __attribute__((aligned (2))) = dspot05_sceneTex_00A160; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00A160[] = dspot05_sceneTex_00A160; + #define dspot05_sceneTex_009160 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_009160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_009160[] = dspot05_sceneTex_009160; -#else -static const char spot05_sceneTex_009160[] __attribute__((aligned (2))) = dspot05_sceneTex_009160; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_009160[] = dspot05_sceneTex_009160; + #define dspot05_sceneTLUT_006BC0 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTLUT_006BC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTLUT_006BC0[] = dspot05_sceneTLUT_006BC0; -#else -static const char spot05_sceneTLUT_006BC0[] __attribute__((aligned (2))) = dspot05_sceneTLUT_006BC0; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTLUT_006BC0[] = dspot05_sceneTLUT_006BC0; + #define dspot05_sceneTex_008D60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_008D60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_008D60[] = dspot05_sceneTex_008D60; -#else -static const char spot05_sceneTex_008D60[] __attribute__((aligned (2))) = dspot05_sceneTex_008D60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_008D60[] = dspot05_sceneTex_008D60; + #define dspot05_sceneTex_009960 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_009960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_009960[] = dspot05_sceneTex_009960; -#else -static const char spot05_sceneTex_009960[] __attribute__((aligned (2))) = dspot05_sceneTex_009960; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_009960[] = dspot05_sceneTex_009960; + #define dspot05_sceneTex_009560 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_009560" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_009560[] = dspot05_sceneTex_009560; -#else -static const char spot05_sceneTex_009560[] __attribute__((aligned (2))) = dspot05_sceneTex_009560; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_009560[] = dspot05_sceneTex_009560; + #define dspot05_sceneTex_00F360 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00F360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00F360[] = dspot05_sceneTex_00F360; -#else -static const char spot05_sceneTex_00F360[] __attribute__((aligned (2))) = dspot05_sceneTex_00F360; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00F360[] = dspot05_sceneTex_00F360; + #define dspot05_sceneTex_00EB60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00EB60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00EB60[] = dspot05_sceneTex_00EB60; -#else -static const char spot05_sceneTex_00EB60[] __attribute__((aligned (2))) = dspot05_sceneTex_00EB60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00EB60[] = dspot05_sceneTex_00EB60; + #define dspot05_sceneTex_014B60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_014B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_014B60[] = dspot05_sceneTex_014B60; -#else -static const char spot05_sceneTex_014B60[] __attribute__((aligned (2))) = dspot05_sceneTex_014B60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_014B60[] = dspot05_sceneTex_014B60; + #define dspot05_sceneTex_00CB60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00CB60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00CB60[] = dspot05_sceneTex_00CB60; -#else -static const char spot05_sceneTex_00CB60[] __attribute__((aligned (2))) = dspot05_sceneTex_00CB60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00CB60[] = dspot05_sceneTex_00CB60; + #define dspot05_sceneTex_012B60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_012B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_012B60[] = dspot05_sceneTex_012B60; -#else -static const char spot05_sceneTex_012B60[] __attribute__((aligned (2))) = dspot05_sceneTex_012B60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_012B60[] = dspot05_sceneTex_012B60; + #define dspot05_sceneTex_007D60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_007D60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_007D60[] = dspot05_sceneTex_007D60; -#else -static const char spot05_sceneTex_007D60[] __attribute__((aligned (2))) = dspot05_sceneTex_007D60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_007D60[] = dspot05_sceneTex_007D60; + #define dspot05_sceneTex_00B160 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00B160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00B160[] = dspot05_sceneTex_00B160; -#else -static const char spot05_sceneTex_00B160[] __attribute__((aligned (2))) = dspot05_sceneTex_00B160; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00B160[] = dspot05_sceneTex_00B160; + #define dspot05_sceneTex_006D60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_006D60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_006D60[] = dspot05_sceneTex_006D60; -#else -static const char spot05_sceneTex_006D60[] __attribute__((aligned (2))) = dspot05_sceneTex_006D60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_006D60[] = dspot05_sceneTex_006D60; + #define dspot05_sceneTex_00BB60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00BB60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00BB60[] = dspot05_sceneTex_00BB60; -#else -static const char spot05_sceneTex_00BB60[] __attribute__((aligned (2))) = dspot05_sceneTex_00BB60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00BB60[] = dspot05_sceneTex_00BB60; + #define dspot05_sceneTex_00B960 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00B960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00B960[] = dspot05_sceneTex_00B960; -#else -static const char spot05_sceneTex_00B960[] __attribute__((aligned (2))) = dspot05_sceneTex_00B960; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00B960[] = dspot05_sceneTex_00B960; + #define dspot05_sceneTex_014360 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_014360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_014360[] = dspot05_sceneTex_014360; -#else -static const char spot05_sceneTex_014360[] __attribute__((aligned (2))) = dspot05_sceneTex_014360; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_014360[] = dspot05_sceneTex_014360; + #define dspot05_sceneTex_012360 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_012360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_012360[] = dspot05_sceneTex_012360; -#else -static const char spot05_sceneTex_012360[] __attribute__((aligned (2))) = dspot05_sceneTex_012360; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_012360[] = dspot05_sceneTex_012360; + #define dspot05_sceneTex_011360 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_011360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_011360[] = dspot05_sceneTex_011360; -#else -static const char spot05_sceneTex_011360[] __attribute__((aligned (2))) = dspot05_sceneTex_011360; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_011360[] = dspot05_sceneTex_011360; + #define dspot05_sceneTex_013B60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_013B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_013B60[] = dspot05_sceneTex_013B60; -#else -static const char spot05_sceneTex_013B60[] __attribute__((aligned (2))) = dspot05_sceneTex_013B60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_013B60[] = dspot05_sceneTex_013B60; + #define dspot05_sceneTex_013360 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_013360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_013360[] = dspot05_sceneTex_013360; -#else -static const char spot05_sceneTex_013360[] __attribute__((aligned (2))) = dspot05_sceneTex_013360; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_013360[] = dspot05_sceneTex_013360; + #define dspot05_sceneTex_00DB60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00DB60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00DB60[] = dspot05_sceneTex_00DB60; -#else -static const char spot05_sceneTex_00DB60[] __attribute__((aligned (2))) = dspot05_sceneTex_00DB60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00DB60[] = dspot05_sceneTex_00DB60; + #define dspot05_sceneTex_00FB60 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_00FB60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_00FB60[] = dspot05_sceneTex_00FB60; -#else -static const char spot05_sceneTex_00FB60[] __attribute__((aligned (2))) = dspot05_sceneTex_00FB60; -#endif - +static const ALIGN_ASSET(2) char spot05_sceneTex_00FB60[] = dspot05_sceneTex_00FB60; + #define dspot05_sceneTex_010360 "__OTR__scenes/nonmq/spot05_scene/spot05_sceneTex_010360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot05_sceneTex_010360[] = dspot05_sceneTex_010360; -#else -static const char spot05_sceneTex_010360[] __attribute__((aligned (2))) = dspot05_sceneTex_010360; -#endif - -#define dspot05_sceneCollisionHeader_003F4C "__OTR__scenes/nonmq/spot05_scene/spot05_sceneCollisionHeader_003F4C" -#define dspot05_sceneCollisionHeader_003F4C "__OTR__scenes/nonmq/spot05_scene/spot05_sceneCollisionHeader_003F4C" +static const ALIGN_ASSET(2) char spot05_sceneTex_010360[] = dspot05_sceneTex_010360; + #define dspot05_sceneCollisionHeader_003F4C "__OTR__scenes/nonmq/spot05_scene/spot05_sceneCollisionHeader_003F4C" +#define dspot05_sceneCollisionHeader_003F4C "__OTR__scenes/nonmq/spot05_scene/spot05_sceneCollisionHeader_003F4C" + +#define dspot05_sceneCollisionHeader_003F4C "__OTR__scenes/nonmq/spot05_scene/spot05_sceneCollisionHeader_003F4C" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot06/spot06_room_0.h b/soh/assets/scenes/overworld/spot06/spot06_room_0.h index 34fcd2473..0d0c0c135 100644 --- a/soh/assets/scenes/overworld/spot06/spot06_room_0.h +++ b/soh/assets/scenes/overworld/spot06/spot06_room_0.h @@ -1,520 +1,225 @@ #pragma once -#define dgSpot06DL_00A400 "__OTR__scenes/nonmq/spot06_scene/gSpot06DL_00A400" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot06DL_00A400[] = dgSpot06DL_00A400; -#else -static const char gSpot06DL_00A400[] __attribute__((aligned (2))) = dgSpot06DL_00A400; -#endif - -#define dgSpot06DL_00A608 "__OTR__scenes/nonmq/spot06_scene/gSpot06DL_00A608" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot06DL_00A608[] = dgSpot06DL_00A608; -#else -static const char gSpot06DL_00A608[] __attribute__((aligned (2))) = dgSpot06DL_00A608; -#endif - -#define dspot06_room_0DL_003270 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_003270" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_003270[] = dspot06_room_0DL_003270; -#else -static const char spot06_room_0DL_003270[] __attribute__((aligned (2))) = dspot06_room_0DL_003270; -#endif - -#define dspot06_room_0DL_001240 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_001240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_001240[] = dspot06_room_0DL_001240; -#else -static const char spot06_room_0DL_001240[] __attribute__((aligned (2))) = dspot06_room_0DL_001240; -#endif - -#define dspot06_room_0DL_009CA8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_009CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_009CA8[] = dspot06_room_0DL_009CA8; -#else -static const char spot06_room_0DL_009CA8[] __attribute__((aligned (2))) = dspot06_room_0DL_009CA8; -#endif - -#define dspot06_room_0DL_006358 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_006358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_006358[] = dspot06_room_0DL_006358; -#else -static const char spot06_room_0DL_006358[] __attribute__((aligned (2))) = dspot06_room_0DL_006358; -#endif - -#define dspot06_room_0DL_006C80 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_006C80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_006C80[] = dspot06_room_0DL_006C80; -#else -static const char spot06_room_0DL_006C80[] __attribute__((aligned (2))) = dspot06_room_0DL_006C80; -#endif - -#define dspot06_room_0DL_007DF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_007DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_007DF8[] = dspot06_room_0DL_007DF8; -#else -static const char spot06_room_0DL_007DF8[] __attribute__((aligned (2))) = dspot06_room_0DL_007DF8; -#endif - -#define dspot06_room_0DL_003EF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_003EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_003EF8[] = dspot06_room_0DL_003EF8; -#else -static const char spot06_room_0DL_003EF8[] __attribute__((aligned (2))) = dspot06_room_0DL_003EF8; -#endif - -#define dspot06_room_0DL_004AF0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_004AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_004AF0[] = dspot06_room_0DL_004AF0; -#else -static const char spot06_room_0DL_004AF0[] __attribute__((aligned (2))) = dspot06_room_0DL_004AF0; -#endif - -#define dspot06_room_0DL_004EC8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_004EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_004EC8[] = dspot06_room_0DL_004EC8; -#else -static const char spot06_room_0DL_004EC8[] __attribute__((aligned (2))) = dspot06_room_0DL_004EC8; -#endif - -#define dspot06_room_0DL_0059C0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_0059C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_0059C0[] = dspot06_room_0DL_0059C0; -#else -static const char spot06_room_0DL_0059C0[] __attribute__((aligned (2))) = dspot06_room_0DL_0059C0; -#endif - -#define dspot06_room_0DL_001628 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_001628" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_001628[] = dspot06_room_0DL_001628; -#else -static const char spot06_room_0DL_001628[] __attribute__((aligned (2))) = dspot06_room_0DL_001628; -#endif - -#define dspot06_room_0DL_002040 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_002040" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_002040[] = dspot06_room_0DL_002040; -#else -static const char spot06_room_0DL_002040[] __attribute__((aligned (2))) = dspot06_room_0DL_002040; -#endif - -#define dspot06_room_0DL_0098C8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_0098C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_0098C8[] = dspot06_room_0DL_0098C8; -#else -static const char spot06_room_0DL_0098C8[] __attribute__((aligned (2))) = dspot06_room_0DL_0098C8; -#endif - -#define dspot06_room_0DL_008ED0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_008ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_008ED0[] = dspot06_room_0DL_008ED0; -#else -static const char spot06_room_0DL_008ED0[] __attribute__((aligned (2))) = dspot06_room_0DL_008ED0; -#endif - -#define dspot06_room_0DL_008858 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_008858" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_008858[] = dspot06_room_0DL_008858; -#else -static const char spot06_room_0DL_008858[] __attribute__((aligned (2))) = dspot06_room_0DL_008858; -#endif - -#define dspot06_room_0DL_00A148 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_00A148" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_00A148[] = dspot06_room_0DL_00A148; -#else -static const char spot06_room_0DL_00A148[] __attribute__((aligned (2))) = dspot06_room_0DL_00A148; -#endif - -#define dspot06_room_0DL_009510 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_009510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_009510[] = dspot06_room_0DL_009510; -#else -static const char spot06_room_0DL_009510[] __attribute__((aligned (2))) = dspot06_room_0DL_009510; -#endif - -#define dspot06_room_0DL_00A550 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_00A550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0DL_00A550[] = dspot06_room_0DL_00A550; -#else -static const char spot06_room_0DL_00A550[] __attribute__((aligned (2))) = dspot06_room_0DL_00A550; -#endif - -#define dspot06_room_0Set_000520DL_003270 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_003270" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_003270[] = dspot06_room_0Set_000520DL_003270; -#else -static const char spot06_room_0Set_000520DL_003270[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_003270; -#endif - -#define dspot06_room_0Set_000520DL_001240 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_001240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_001240[] = dspot06_room_0Set_000520DL_001240; -#else -static const char spot06_room_0Set_000520DL_001240[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_001240; -#endif - -#define dspot06_room_0Set_000520DL_009CA8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_009CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_009CA8[] = dspot06_room_0Set_000520DL_009CA8; -#else -static const char spot06_room_0Set_000520DL_009CA8[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_009CA8; -#endif - -#define dspot06_room_0Set_000520DL_006358 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_006358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_006358[] = dspot06_room_0Set_000520DL_006358; -#else -static const char spot06_room_0Set_000520DL_006358[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_006358; -#endif - -#define dspot06_room_0Set_000520DL_006C80 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_006C80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_006C80[] = dspot06_room_0Set_000520DL_006C80; -#else -static const char spot06_room_0Set_000520DL_006C80[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_006C80; -#endif - -#define dspot06_room_0Set_000520DL_007DF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_007DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_007DF8[] = dspot06_room_0Set_000520DL_007DF8; -#else -static const char spot06_room_0Set_000520DL_007DF8[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_007DF8; -#endif - -#define dspot06_room_0Set_000520DL_003EF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_003EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_003EF8[] = dspot06_room_0Set_000520DL_003EF8; -#else -static const char spot06_room_0Set_000520DL_003EF8[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_003EF8; -#endif - -#define dspot06_room_0Set_000520DL_004AF0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_004AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_004AF0[] = dspot06_room_0Set_000520DL_004AF0; -#else -static const char spot06_room_0Set_000520DL_004AF0[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_004AF0; -#endif - -#define dspot06_room_0Set_000520DL_004EC8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_004EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_004EC8[] = dspot06_room_0Set_000520DL_004EC8; -#else -static const char spot06_room_0Set_000520DL_004EC8[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_004EC8; -#endif - -#define dspot06_room_0Set_000520DL_0059C0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_0059C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_0059C0[] = dspot06_room_0Set_000520DL_0059C0; -#else -static const char spot06_room_0Set_000520DL_0059C0[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_0059C0; -#endif - -#define dspot06_room_0Set_000520DL_001628 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_001628" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_001628[] = dspot06_room_0Set_000520DL_001628; -#else -static const char spot06_room_0Set_000520DL_001628[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_001628; -#endif - -#define dspot06_room_0Set_000520DL_002040 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_002040" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_002040[] = dspot06_room_0Set_000520DL_002040; -#else -static const char spot06_room_0Set_000520DL_002040[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_002040; -#endif - -#define dspot06_room_0Set_000520DL_0098C8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_0098C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_0098C8[] = dspot06_room_0Set_000520DL_0098C8; -#else -static const char spot06_room_0Set_000520DL_0098C8[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_0098C8; -#endif - -#define dspot06_room_0Set_000520DL_008ED0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_008ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_008ED0[] = dspot06_room_0Set_000520DL_008ED0; -#else -static const char spot06_room_0Set_000520DL_008ED0[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_008ED0; -#endif - -#define dspot06_room_0Set_000520DL_008858 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_008858" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_008858[] = dspot06_room_0Set_000520DL_008858; -#else -static const char spot06_room_0Set_000520DL_008858[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_008858; -#endif - -#define dspot06_room_0Set_000520DL_00A148 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_00A148" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_00A148[] = dspot06_room_0Set_000520DL_00A148; -#else -static const char spot06_room_0Set_000520DL_00A148[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_00A148; -#endif - -#define dspot06_room_0Set_000520DL_009510 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_009510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_009510[] = dspot06_room_0Set_000520DL_009510; -#else -static const char spot06_room_0Set_000520DL_009510[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_009510; -#endif - -#define dspot06_room_0Set_000520DL_00A550 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_00A550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000520DL_00A550[] = dspot06_room_0Set_000520DL_00A550; -#else -static const char spot06_room_0Set_000520DL_00A550[] __attribute__((aligned (2))) = dspot06_room_0Set_000520DL_00A550; -#endif - -#define dspot06_room_0Set_000840DL_003270 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_003270" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_003270[] = dspot06_room_0Set_000840DL_003270; -#else -static const char spot06_room_0Set_000840DL_003270[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_003270; -#endif - -#define dspot06_room_0Set_000840DL_001240 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_001240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_001240[] = dspot06_room_0Set_000840DL_001240; -#else -static const char spot06_room_0Set_000840DL_001240[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_001240; -#endif - -#define dspot06_room_0Set_000840DL_009CA8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_009CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_009CA8[] = dspot06_room_0Set_000840DL_009CA8; -#else -static const char spot06_room_0Set_000840DL_009CA8[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_009CA8; -#endif - -#define dspot06_room_0Set_000840DL_006358 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_006358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_006358[] = dspot06_room_0Set_000840DL_006358; -#else -static const char spot06_room_0Set_000840DL_006358[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_006358; -#endif - -#define dspot06_room_0Set_000840DL_006C80 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_006C80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_006C80[] = dspot06_room_0Set_000840DL_006C80; -#else -static const char spot06_room_0Set_000840DL_006C80[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_006C80; -#endif - -#define dspot06_room_0Set_000840DL_007DF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_007DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_007DF8[] = dspot06_room_0Set_000840DL_007DF8; -#else -static const char spot06_room_0Set_000840DL_007DF8[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_007DF8; -#endif - -#define dspot06_room_0Set_000840DL_003EF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_003EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_003EF8[] = dspot06_room_0Set_000840DL_003EF8; -#else -static const char spot06_room_0Set_000840DL_003EF8[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_003EF8; -#endif - -#define dspot06_room_0Set_000840DL_004AF0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_004AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_004AF0[] = dspot06_room_0Set_000840DL_004AF0; -#else -static const char spot06_room_0Set_000840DL_004AF0[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_004AF0; -#endif - -#define dspot06_room_0Set_000840DL_004EC8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_004EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_004EC8[] = dspot06_room_0Set_000840DL_004EC8; -#else -static const char spot06_room_0Set_000840DL_004EC8[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_004EC8; -#endif - -#define dspot06_room_0Set_000840DL_0059C0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_0059C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_0059C0[] = dspot06_room_0Set_000840DL_0059C0; -#else -static const char spot06_room_0Set_000840DL_0059C0[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_0059C0; -#endif - -#define dspot06_room_0Set_000840DL_001628 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_001628" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_001628[] = dspot06_room_0Set_000840DL_001628; -#else -static const char spot06_room_0Set_000840DL_001628[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_001628; -#endif - -#define dspot06_room_0Set_000840DL_002040 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_002040" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_002040[] = dspot06_room_0Set_000840DL_002040; -#else -static const char spot06_room_0Set_000840DL_002040[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_002040; -#endif - -#define dspot06_room_0Set_000840DL_0098C8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_0098C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_0098C8[] = dspot06_room_0Set_000840DL_0098C8; -#else -static const char spot06_room_0Set_000840DL_0098C8[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_0098C8; -#endif - -#define dspot06_room_0Set_000840DL_008ED0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_008ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_008ED0[] = dspot06_room_0Set_000840DL_008ED0; -#else -static const char spot06_room_0Set_000840DL_008ED0[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_008ED0; -#endif - -#define dspot06_room_0Set_000840DL_008858 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_008858" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_008858[] = dspot06_room_0Set_000840DL_008858; -#else -static const char spot06_room_0Set_000840DL_008858[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_008858; -#endif - -#define dspot06_room_0Set_000840DL_00A148 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_00A148" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_00A148[] = dspot06_room_0Set_000840DL_00A148; -#else -static const char spot06_room_0Set_000840DL_00A148[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_00A148; -#endif - -#define dspot06_room_0Set_000840DL_009510 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_009510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_009510[] = dspot06_room_0Set_000840DL_009510; -#else -static const char spot06_room_0Set_000840DL_009510[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_009510; -#endif - -#define dspot06_room_0Set_000840DL_00A550 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_00A550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000840DL_00A550[] = dspot06_room_0Set_000840DL_00A550; -#else -static const char spot06_room_0Set_000840DL_00A550[] __attribute__((aligned (2))) = dspot06_room_0Set_000840DL_00A550; -#endif - -#define dspot06_room_0Set_000920DL_003270 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_003270" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_003270[] = dspot06_room_0Set_000920DL_003270; -#else -static const char spot06_room_0Set_000920DL_003270[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_003270; -#endif - -#define dspot06_room_0Set_000920DL_001240 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_001240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_001240[] = dspot06_room_0Set_000920DL_001240; -#else -static const char spot06_room_0Set_000920DL_001240[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_001240; -#endif - -#define dspot06_room_0Set_000920DL_009CA8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_009CA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_009CA8[] = dspot06_room_0Set_000920DL_009CA8; -#else -static const char spot06_room_0Set_000920DL_009CA8[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_009CA8; -#endif - -#define dspot06_room_0Set_000920DL_006358 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_006358" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_006358[] = dspot06_room_0Set_000920DL_006358; -#else -static const char spot06_room_0Set_000920DL_006358[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_006358; -#endif - -#define dspot06_room_0Set_000920DL_006C80 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_006C80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_006C80[] = dspot06_room_0Set_000920DL_006C80; -#else -static const char spot06_room_0Set_000920DL_006C80[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_006C80; -#endif - -#define dspot06_room_0Set_000920DL_007DF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_007DF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_007DF8[] = dspot06_room_0Set_000920DL_007DF8; -#else -static const char spot06_room_0Set_000920DL_007DF8[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_007DF8; -#endif - -#define dspot06_room_0Set_000920DL_003EF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_003EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_003EF8[] = dspot06_room_0Set_000920DL_003EF8; -#else -static const char spot06_room_0Set_000920DL_003EF8[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_003EF8; -#endif - -#define dspot06_room_0Set_000920DL_004AF0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_004AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_004AF0[] = dspot06_room_0Set_000920DL_004AF0; -#else -static const char spot06_room_0Set_000920DL_004AF0[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_004AF0; -#endif - -#define dspot06_room_0Set_000920DL_004EC8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_004EC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_004EC8[] = dspot06_room_0Set_000920DL_004EC8; -#else -static const char spot06_room_0Set_000920DL_004EC8[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_004EC8; -#endif - -#define dspot06_room_0Set_000920DL_0059C0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_0059C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_0059C0[] = dspot06_room_0Set_000920DL_0059C0; -#else -static const char spot06_room_0Set_000920DL_0059C0[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_0059C0; -#endif - -#define dspot06_room_0Set_000920DL_001628 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_001628" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_001628[] = dspot06_room_0Set_000920DL_001628; -#else -static const char spot06_room_0Set_000920DL_001628[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_001628; -#endif - -#define dspot06_room_0Set_000920DL_002040 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_002040" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_002040[] = dspot06_room_0Set_000920DL_002040; -#else -static const char spot06_room_0Set_000920DL_002040[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_002040; -#endif - -#define dspot06_room_0Set_000920DL_0098C8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_0098C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_0098C8[] = dspot06_room_0Set_000920DL_0098C8; -#else -static const char spot06_room_0Set_000920DL_0098C8[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_0098C8; -#endif - -#define dspot06_room_0Set_000920DL_008ED0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_008ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_008ED0[] = dspot06_room_0Set_000920DL_008ED0; -#else -static const char spot06_room_0Set_000920DL_008ED0[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_008ED0; -#endif - -#define dspot06_room_0Set_000920DL_008858 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_008858" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_008858[] = dspot06_room_0Set_000920DL_008858; -#else -static const char spot06_room_0Set_000920DL_008858[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_008858; -#endif - -#define dspot06_room_0Set_000920DL_00A148 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_00A148" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_00A148[] = dspot06_room_0Set_000920DL_00A148; -#else -static const char spot06_room_0Set_000920DL_00A148[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_00A148; -#endif - -#define dspot06_room_0Set_000920DL_009510 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_009510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_009510[] = dspot06_room_0Set_000920DL_009510; -#else -static const char spot06_room_0Set_000920DL_009510[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_009510; -#endif - -#define dspot06_room_0Set_000920DL_00A550 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_00A550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_room_0Set_000920DL_00A550[] = dspot06_room_0Set_000920DL_00A550; -#else -static const char spot06_room_0Set_000920DL_00A550[] __attribute__((aligned (2))) = dspot06_room_0Set_000920DL_00A550; -#endif - +#include "align_asset_macro.h" + +#define dgSpot06DL_00A400 "__OTR__scenes/nonmq/spot06_scene/gSpot06DL_00A400" +static const ALIGN_ASSET(2) char gSpot06DL_00A400[] = dgSpot06DL_00A400; + +#define dgSpot06DL_00A608 "__OTR__scenes/nonmq/spot06_scene/gSpot06DL_00A608" +static const ALIGN_ASSET(2) char gSpot06DL_00A608[] = dgSpot06DL_00A608; + +#define dspot06_room_0DL_003270 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_003270" +static const ALIGN_ASSET(2) char spot06_room_0DL_003270[] = dspot06_room_0DL_003270; + +#define dspot06_room_0DL_001240 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_001240" +static const ALIGN_ASSET(2) char spot06_room_0DL_001240[] = dspot06_room_0DL_001240; + +#define dspot06_room_0DL_009CA8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_009CA8" +static const ALIGN_ASSET(2) char spot06_room_0DL_009CA8[] = dspot06_room_0DL_009CA8; + +#define dspot06_room_0DL_006358 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_006358" +static const ALIGN_ASSET(2) char spot06_room_0DL_006358[] = dspot06_room_0DL_006358; + +#define dspot06_room_0DL_006C80 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_006C80" +static const ALIGN_ASSET(2) char spot06_room_0DL_006C80[] = dspot06_room_0DL_006C80; + +#define dspot06_room_0DL_007DF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_007DF8" +static const ALIGN_ASSET(2) char spot06_room_0DL_007DF8[] = dspot06_room_0DL_007DF8; + +#define dspot06_room_0DL_003EF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_003EF8" +static const ALIGN_ASSET(2) char spot06_room_0DL_003EF8[] = dspot06_room_0DL_003EF8; + +#define dspot06_room_0DL_004AF0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_004AF0" +static const ALIGN_ASSET(2) char spot06_room_0DL_004AF0[] = dspot06_room_0DL_004AF0; + +#define dspot06_room_0DL_004EC8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_004EC8" +static const ALIGN_ASSET(2) char spot06_room_0DL_004EC8[] = dspot06_room_0DL_004EC8; + +#define dspot06_room_0DL_0059C0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_0059C0" +static const ALIGN_ASSET(2) char spot06_room_0DL_0059C0[] = dspot06_room_0DL_0059C0; + +#define dspot06_room_0DL_001628 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_001628" +static const ALIGN_ASSET(2) char spot06_room_0DL_001628[] = dspot06_room_0DL_001628; + +#define dspot06_room_0DL_002040 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_002040" +static const ALIGN_ASSET(2) char spot06_room_0DL_002040[] = dspot06_room_0DL_002040; + +#define dspot06_room_0DL_0098C8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_0098C8" +static const ALIGN_ASSET(2) char spot06_room_0DL_0098C8[] = dspot06_room_0DL_0098C8; + +#define dspot06_room_0DL_008ED0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_008ED0" +static const ALIGN_ASSET(2) char spot06_room_0DL_008ED0[] = dspot06_room_0DL_008ED0; + +#define dspot06_room_0DL_008858 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_008858" +static const ALIGN_ASSET(2) char spot06_room_0DL_008858[] = dspot06_room_0DL_008858; + +#define dspot06_room_0DL_00A148 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_00A148" +static const ALIGN_ASSET(2) char spot06_room_0DL_00A148[] = dspot06_room_0DL_00A148; + +#define dspot06_room_0DL_009510 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_009510" +static const ALIGN_ASSET(2) char spot06_room_0DL_009510[] = dspot06_room_0DL_009510; + +#define dspot06_room_0DL_00A550 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0DL_00A550" +static const ALIGN_ASSET(2) char spot06_room_0DL_00A550[] = dspot06_room_0DL_00A550; + +#define dspot06_room_0Set_000520DL_003270 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_003270" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_003270[] = dspot06_room_0Set_000520DL_003270; + +#define dspot06_room_0Set_000520DL_001240 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_001240" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_001240[] = dspot06_room_0Set_000520DL_001240; + +#define dspot06_room_0Set_000520DL_009CA8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_009CA8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_009CA8[] = dspot06_room_0Set_000520DL_009CA8; + +#define dspot06_room_0Set_000520DL_006358 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_006358" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_006358[] = dspot06_room_0Set_000520DL_006358; + +#define dspot06_room_0Set_000520DL_006C80 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_006C80" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_006C80[] = dspot06_room_0Set_000520DL_006C80; + +#define dspot06_room_0Set_000520DL_007DF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_007DF8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_007DF8[] = dspot06_room_0Set_000520DL_007DF8; + +#define dspot06_room_0Set_000520DL_003EF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_003EF8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_003EF8[] = dspot06_room_0Set_000520DL_003EF8; + +#define dspot06_room_0Set_000520DL_004AF0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_004AF0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_004AF0[] = dspot06_room_0Set_000520DL_004AF0; + +#define dspot06_room_0Set_000520DL_004EC8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_004EC8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_004EC8[] = dspot06_room_0Set_000520DL_004EC8; + +#define dspot06_room_0Set_000520DL_0059C0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_0059C0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_0059C0[] = dspot06_room_0Set_000520DL_0059C0; + +#define dspot06_room_0Set_000520DL_001628 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_001628" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_001628[] = dspot06_room_0Set_000520DL_001628; + +#define dspot06_room_0Set_000520DL_002040 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_002040" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_002040[] = dspot06_room_0Set_000520DL_002040; + +#define dspot06_room_0Set_000520DL_0098C8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_0098C8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_0098C8[] = dspot06_room_0Set_000520DL_0098C8; + +#define dspot06_room_0Set_000520DL_008ED0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_008ED0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_008ED0[] = dspot06_room_0Set_000520DL_008ED0; + +#define dspot06_room_0Set_000520DL_008858 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_008858" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_008858[] = dspot06_room_0Set_000520DL_008858; + +#define dspot06_room_0Set_000520DL_00A148 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_00A148" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_00A148[] = dspot06_room_0Set_000520DL_00A148; + +#define dspot06_room_0Set_000520DL_009510 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_009510" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_009510[] = dspot06_room_0Set_000520DL_009510; + +#define dspot06_room_0Set_000520DL_00A550 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000520DL_00A550" +static const ALIGN_ASSET(2) char spot06_room_0Set_000520DL_00A550[] = dspot06_room_0Set_000520DL_00A550; + +#define dspot06_room_0Set_000840DL_003270 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_003270" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_003270[] = dspot06_room_0Set_000840DL_003270; + +#define dspot06_room_0Set_000840DL_001240 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_001240" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_001240[] = dspot06_room_0Set_000840DL_001240; + +#define dspot06_room_0Set_000840DL_009CA8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_009CA8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_009CA8[] = dspot06_room_0Set_000840DL_009CA8; + +#define dspot06_room_0Set_000840DL_006358 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_006358" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_006358[] = dspot06_room_0Set_000840DL_006358; + +#define dspot06_room_0Set_000840DL_006C80 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_006C80" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_006C80[] = dspot06_room_0Set_000840DL_006C80; + +#define dspot06_room_0Set_000840DL_007DF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_007DF8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_007DF8[] = dspot06_room_0Set_000840DL_007DF8; + +#define dspot06_room_0Set_000840DL_003EF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_003EF8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_003EF8[] = dspot06_room_0Set_000840DL_003EF8; + +#define dspot06_room_0Set_000840DL_004AF0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_004AF0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_004AF0[] = dspot06_room_0Set_000840DL_004AF0; + +#define dspot06_room_0Set_000840DL_004EC8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_004EC8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_004EC8[] = dspot06_room_0Set_000840DL_004EC8; + +#define dspot06_room_0Set_000840DL_0059C0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_0059C0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_0059C0[] = dspot06_room_0Set_000840DL_0059C0; + +#define dspot06_room_0Set_000840DL_001628 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_001628" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_001628[] = dspot06_room_0Set_000840DL_001628; + +#define dspot06_room_0Set_000840DL_002040 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_002040" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_002040[] = dspot06_room_0Set_000840DL_002040; + +#define dspot06_room_0Set_000840DL_0098C8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_0098C8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_0098C8[] = dspot06_room_0Set_000840DL_0098C8; + +#define dspot06_room_0Set_000840DL_008ED0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_008ED0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_008ED0[] = dspot06_room_0Set_000840DL_008ED0; + +#define dspot06_room_0Set_000840DL_008858 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_008858" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_008858[] = dspot06_room_0Set_000840DL_008858; + +#define dspot06_room_0Set_000840DL_00A148 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_00A148" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_00A148[] = dspot06_room_0Set_000840DL_00A148; + +#define dspot06_room_0Set_000840DL_009510 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_009510" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_009510[] = dspot06_room_0Set_000840DL_009510; + +#define dspot06_room_0Set_000840DL_00A550 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000840DL_00A550" +static const ALIGN_ASSET(2) char spot06_room_0Set_000840DL_00A550[] = dspot06_room_0Set_000840DL_00A550; + +#define dspot06_room_0Set_000920DL_003270 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_003270" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_003270[] = dspot06_room_0Set_000920DL_003270; + +#define dspot06_room_0Set_000920DL_001240 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_001240" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_001240[] = dspot06_room_0Set_000920DL_001240; + +#define dspot06_room_0Set_000920DL_009CA8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_009CA8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_009CA8[] = dspot06_room_0Set_000920DL_009CA8; + +#define dspot06_room_0Set_000920DL_006358 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_006358" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_006358[] = dspot06_room_0Set_000920DL_006358; + +#define dspot06_room_0Set_000920DL_006C80 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_006C80" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_006C80[] = dspot06_room_0Set_000920DL_006C80; + +#define dspot06_room_0Set_000920DL_007DF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_007DF8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_007DF8[] = dspot06_room_0Set_000920DL_007DF8; + +#define dspot06_room_0Set_000920DL_003EF8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_003EF8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_003EF8[] = dspot06_room_0Set_000920DL_003EF8; + +#define dspot06_room_0Set_000920DL_004AF0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_004AF0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_004AF0[] = dspot06_room_0Set_000920DL_004AF0; + +#define dspot06_room_0Set_000920DL_004EC8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_004EC8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_004EC8[] = dspot06_room_0Set_000920DL_004EC8; + +#define dspot06_room_0Set_000920DL_0059C0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_0059C0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_0059C0[] = dspot06_room_0Set_000920DL_0059C0; + +#define dspot06_room_0Set_000920DL_001628 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_001628" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_001628[] = dspot06_room_0Set_000920DL_001628; + +#define dspot06_room_0Set_000920DL_002040 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_002040" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_002040[] = dspot06_room_0Set_000920DL_002040; + +#define dspot06_room_0Set_000920DL_0098C8 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_0098C8" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_0098C8[] = dspot06_room_0Set_000920DL_0098C8; + +#define dspot06_room_0Set_000920DL_008ED0 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_008ED0" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_008ED0[] = dspot06_room_0Set_000920DL_008ED0; + +#define dspot06_room_0Set_000920DL_008858 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_008858" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_008858[] = dspot06_room_0Set_000920DL_008858; + +#define dspot06_room_0Set_000920DL_00A148 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_00A148" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_00A148[] = dspot06_room_0Set_000920DL_00A148; + +#define dspot06_room_0Set_000920DL_009510 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_009510" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_009510[] = dspot06_room_0Set_000920DL_009510; + +#define dspot06_room_0Set_000920DL_00A550 "__OTR__scenes/nonmq/spot06_scene/spot06_room_0Set_000920DL_00A550" +static const ALIGN_ASSET(2) char spot06_room_0Set_000920DL_00A550[] = dspot06_room_0Set_000920DL_00A550; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot06/spot06_scene.h b/soh/assets/scenes/overworld/spot06/spot06_scene.h index d1b383fcd..a9caeb6ed 100644 --- a/soh/assets/scenes/overworld/spot06/spot06_scene.h +++ b/soh/assets/scenes/overworld/spot06/spot06_scene.h @@ -1,334 +1,150 @@ #pragma once + +#include "align_asset_macro.h" + #define dgLakeHyliaFireArrowsCS "__OTR__scenes/nonmq/spot06_scene/gLakeHyliaFireArrowsCS" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaFireArrowsCS[] = dgLakeHyliaFireArrowsCS; -#else -static const char gLakeHyliaFireArrowsCS[] __attribute__((aligned (2))) = dgLakeHyliaFireArrowsCS; -#endif - +static const ALIGN_ASSET(2) char gLakeHyliaFireArrowsCS[] = dgLakeHyliaFireArrowsCS; + #define dgLakeHyliaOwlCs "__OTR__scenes/nonmq/spot06_scene/gLakeHyliaOwlCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaOwlCs[] = dgLakeHyliaOwlCs; -#else -static const char gLakeHyliaOwlCs[] __attribute__((aligned (2))) = dgLakeHyliaOwlCs; -#endif - +static const ALIGN_ASSET(2) char gLakeHyliaOwlCs[] = dgLakeHyliaOwlCs; + #define dgLakeHyliaIntroCs "__OTR__scenes/nonmq/spot06_scene/gLakeHyliaIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaIntroCs[] = dgLakeHyliaIntroCs; -#else -static const char gLakeHyliaIntroCs[] __attribute__((aligned (2))) = dgLakeHyliaIntroCs; -#endif - +static const ALIGN_ASSET(2) char gLakeHyliaIntroCs[] = dgLakeHyliaIntroCs; + #define dspot06_sceneCollisionHeader_0055AC "__OTR__scenes/nonmq/spot06_scene/spot06_sceneCollisionHeader_0055AC" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneCollisionHeader_0055AC[] = dspot06_sceneCollisionHeader_0055AC; -#else -static const char spot06_sceneCollisionHeader_0055AC[] __attribute__((aligned (2))) = dspot06_sceneCollisionHeader_0055AC; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneCollisionHeader_0055AC[] = dspot06_sceneCollisionHeader_0055AC; + #define dspot06_sceneTex_0170B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0170B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0170B8[] = dspot06_sceneTex_0170B8; -#else -static const char spot06_sceneTex_0170B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0170B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0170B8[] = dspot06_sceneTex_0170B8; + #define dspot06_sceneTex_010EB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_010EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_010EB8[] = dspot06_sceneTex_010EB8; -#else -static const char spot06_sceneTex_010EB8[] __attribute__((aligned (2))) = dspot06_sceneTex_010EB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_010EB8[] = dspot06_sceneTex_010EB8; + #define dspot06_sceneTex_018CB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_018CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_018CB8[] = dspot06_sceneTex_018CB8; -#else -static const char spot06_sceneTex_018CB8[] __attribute__((aligned (2))) = dspot06_sceneTex_018CB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_018CB8[] = dspot06_sceneTex_018CB8; + #define dspot06_sceneTex_0184B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0184B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0184B8[] = dspot06_sceneTex_0184B8; -#else -static const char spot06_sceneTex_0184B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0184B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0184B8[] = dspot06_sceneTex_0184B8; + #define dspot06_sceneTex_016CB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_016CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_016CB8[] = dspot06_sceneTex_016CB8; -#else -static const char spot06_sceneTex_016CB8[] __attribute__((aligned (2))) = dspot06_sceneTex_016CB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_016CB8[] = dspot06_sceneTex_016CB8; + #define dspot06_sceneTex_00AAB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00AAB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00AAB8[] = dspot06_sceneTex_00AAB8; -#else -static const char spot06_sceneTex_00AAB8[] __attribute__((aligned (2))) = dspot06_sceneTex_00AAB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00AAB8[] = dspot06_sceneTex_00AAB8; + #define dspot06_sceneTex_014CB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_014CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_014CB8[] = dspot06_sceneTex_014CB8; -#else -static const char spot06_sceneTex_014CB8[] __attribute__((aligned (2))) = dspot06_sceneTex_014CB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_014CB8[] = dspot06_sceneTex_014CB8; + #define dspot06_sceneTex_0122B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0122B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0122B8[] = dspot06_sceneTex_0122B8; -#else -static const char spot06_sceneTex_0122B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0122B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0122B8[] = dspot06_sceneTex_0122B8; + #define dspot06_sceneTex_0126B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0126B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0126B8[] = dspot06_sceneTex_0126B8; -#else -static const char spot06_sceneTex_0126B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0126B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0126B8[] = dspot06_sceneTex_0126B8; + #define dspot06_sceneTex_011EB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_011EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_011EB8[] = dspot06_sceneTex_011EB8; -#else -static const char spot06_sceneTex_011EB8[] __attribute__((aligned (2))) = dspot06_sceneTex_011EB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_011EB8[] = dspot06_sceneTex_011EB8; + #define dspot06_sceneTex_0130B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0130B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0130B8[] = dspot06_sceneTex_0130B8; -#else -static const char spot06_sceneTex_0130B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0130B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0130B8[] = dspot06_sceneTex_0130B8; + #define dspot06_sceneTex_012EB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_012EB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_012EB8[] = dspot06_sceneTex_012EB8; -#else -static const char spot06_sceneTex_012EB8[] __attribute__((aligned (2))) = dspot06_sceneTex_012EB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_012EB8[] = dspot06_sceneTex_012EB8; + #define dspot06_sceneTex_008438 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_008438" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_008438[] = dspot06_sceneTex_008438; -#else -static const char spot06_sceneTex_008438[] __attribute__((aligned (2))) = dspot06_sceneTex_008438; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_008438[] = dspot06_sceneTex_008438; + #define dspot06_sceneTex_0140B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0140B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0140B8[] = dspot06_sceneTex_0140B8; -#else -static const char spot06_sceneTex_0140B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0140B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0140B8[] = dspot06_sceneTex_0140B8; + #define dspot06_sceneTex_01A4B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_01A4B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_01A4B8[] = dspot06_sceneTex_01A4B8; -#else -static const char spot06_sceneTex_01A4B8[] __attribute__((aligned (2))) = dspot06_sceneTex_01A4B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_01A4B8[] = dspot06_sceneTex_01A4B8; + #define dspot06_sceneTex_0178B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0178B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0178B8[] = dspot06_sceneTex_0178B8; -#else -static const char spot06_sceneTex_0178B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0178B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0178B8[] = dspot06_sceneTex_0178B8; + #define dspot06_sceneTex_00B6B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00B6B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00B6B8[] = dspot06_sceneTex_00B6B8; -#else -static const char spot06_sceneTex_00B6B8[] __attribute__((aligned (2))) = dspot06_sceneTex_00B6B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00B6B8[] = dspot06_sceneTex_00B6B8; + #define dspot06_sceneTex_0164B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0164B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0164B8[] = dspot06_sceneTex_0164B8; -#else -static const char spot06_sceneTex_0164B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0164B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0164B8[] = dspot06_sceneTex_0164B8; + #define dspot06_sceneTex_0148B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0148B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0148B8[] = dspot06_sceneTex_0148B8; -#else -static const char spot06_sceneTex_0148B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0148B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0148B8[] = dspot06_sceneTex_0148B8; + #define dspot06_sceneTex_00FEB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00FEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00FEB8[] = dspot06_sceneTex_00FEB8; -#else -static const char spot06_sceneTex_00FEB8[] __attribute__((aligned (2))) = dspot06_sceneTex_00FEB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00FEB8[] = dspot06_sceneTex_00FEB8; + #define dspot06_sceneTex_0116B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0116B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0116B8[] = dspot06_sceneTex_0116B8; -#else -static const char spot06_sceneTex_0116B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0116B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0116B8[] = dspot06_sceneTex_0116B8; + #define dspot06_sceneTex_00BEB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00BEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00BEB8[] = dspot06_sceneTex_00BEB8; -#else -static const char spot06_sceneTex_00BEB8[] __attribute__((aligned (2))) = dspot06_sceneTex_00BEB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00BEB8[] = dspot06_sceneTex_00BEB8; + #define dspot06_sceneTex_017CB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_017CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_017CB8[] = dspot06_sceneTex_017CB8; -#else -static const char spot06_sceneTex_017CB8[] __attribute__((aligned (2))) = dspot06_sceneTex_017CB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_017CB8[] = dspot06_sceneTex_017CB8; + #define dspot06_sceneTLUT_007C10 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTLUT_007C10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTLUT_007C10[] = dspot06_sceneTLUT_007C10; -#else -static const char spot06_sceneTLUT_007C10[] __attribute__((aligned (2))) = dspot06_sceneTLUT_007C10; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTLUT_007C10[] = dspot06_sceneTLUT_007C10; + #define dspot06_sceneTex_0154B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0154B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0154B8[] = dspot06_sceneTex_0154B8; -#else -static const char spot06_sceneTex_0154B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0154B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0154B8[] = dspot06_sceneTex_0154B8; + #define dspot06_sceneTex_015CB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_015CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_015CB8[] = dspot06_sceneTex_015CB8; -#else -static const char spot06_sceneTex_015CB8[] __attribute__((aligned (2))) = dspot06_sceneTex_015CB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_015CB8[] = dspot06_sceneTex_015CB8; + #define dspot06_sceneTex_0194B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0194B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0194B8[] = dspot06_sceneTex_0194B8; -#else -static const char spot06_sceneTex_0194B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0194B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0194B8[] = dspot06_sceneTex_0194B8; + #define dspot06_sceneTex_00F4B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00F4B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00F4B8[] = dspot06_sceneTex_00F4B8; -#else -static const char spot06_sceneTex_00F4B8[] __attribute__((aligned (2))) = dspot06_sceneTex_00F4B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00F4B8[] = dspot06_sceneTex_00F4B8; + #define dspot06_sceneTex_00F6B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00F6B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00F6B8[] = dspot06_sceneTex_00F6B8; -#else -static const char spot06_sceneTex_00F6B8[] __attribute__((aligned (2))) = dspot06_sceneTex_00F6B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00F6B8[] = dspot06_sceneTex_00F6B8; + #define dspot06_sceneTex_00DCB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00DCB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00DCB8[] = dspot06_sceneTex_00DCB8; -#else -static const char spot06_sceneTex_00DCB8[] __attribute__((aligned (2))) = dspot06_sceneTex_00DCB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00DCB8[] = dspot06_sceneTex_00DCB8; + #define dspot06_sceneTex_008038 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_008038" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_008038[] = dspot06_sceneTex_008038; -#else -static const char spot06_sceneTex_008038[] __attribute__((aligned (2))) = dspot06_sceneTex_008038; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_008038[] = dspot06_sceneTex_008038; + #define dspot06_sceneTex_007C38 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_007C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_007C38[] = dspot06_sceneTex_007C38; -#else -static const char spot06_sceneTex_007C38[] __attribute__((aligned (2))) = dspot06_sceneTex_007C38; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_007C38[] = dspot06_sceneTex_007C38; + #define dspot06_sceneTex_01ACB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_01ACB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_01ACB8[] = dspot06_sceneTex_01ACB8; -#else -static const char spot06_sceneTex_01ACB8[] __attribute__((aligned (2))) = dspot06_sceneTex_01ACB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_01ACB8[] = dspot06_sceneTex_01ACB8; + #define dspot06_sceneTex_00CCB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00CCB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00CCB8[] = dspot06_sceneTex_00CCB8; -#else -static const char spot06_sceneTex_00CCB8[] __attribute__((aligned (2))) = dspot06_sceneTex_00CCB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00CCB8[] = dspot06_sceneTex_00CCB8; + #define dspot06_sceneTex_00ECB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00ECB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00ECB8[] = dspot06_sceneTex_00ECB8; -#else -static const char spot06_sceneTex_00ECB8[] __attribute__((aligned (2))) = dspot06_sceneTex_00ECB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00ECB8[] = dspot06_sceneTex_00ECB8; + #define dspot06_sceneTex_00AEB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00AEB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00AEB8[] = dspot06_sceneTex_00AEB8; -#else -static const char spot06_sceneTex_00AEB8[] __attribute__((aligned (2))) = dspot06_sceneTex_00AEB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00AEB8[] = dspot06_sceneTex_00AEB8; + #define dspot06_sceneTex_0098B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_0098B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_0098B8[] = dspot06_sceneTex_0098B8; -#else -static const char spot06_sceneTex_0098B8[] __attribute__((aligned (2))) = dspot06_sceneTex_0098B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_0098B8[] = dspot06_sceneTex_0098B8; + #define dspot06_sceneTex_009AB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_009AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_009AB8[] = dspot06_sceneTex_009AB8; -#else -static const char spot06_sceneTex_009AB8[] __attribute__((aligned (2))) = dspot06_sceneTex_009AB8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_009AB8[] = dspot06_sceneTex_009AB8; + #define dspot06_sceneTex_009838 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_009838" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_009838[] = dspot06_sceneTex_009838; -#else -static const char spot06_sceneTex_009838[] __attribute__((aligned (2))) = dspot06_sceneTex_009838; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_009838[] = dspot06_sceneTex_009838; + #define dspot06_sceneTex_008838 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_008838" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_008838[] = dspot06_sceneTex_008838; -#else -static const char spot06_sceneTex_008838[] __attribute__((aligned (2))) = dspot06_sceneTex_008838; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_008838[] = dspot06_sceneTex_008838; + #define dspot06_sceneTex_00C4B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00C4B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00C4B8[] = dspot06_sceneTex_00C4B8; -#else -static const char spot06_sceneTex_00C4B8[] __attribute__((aligned (2))) = dspot06_sceneTex_00C4B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00C4B8[] = dspot06_sceneTex_00C4B8; + #define dspot06_sceneTex_00C2B8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00C2B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00C2B8[] = dspot06_sceneTex_00C2B8; -#else -static const char spot06_sceneTex_00C2B8[] __attribute__((aligned (2))) = dspot06_sceneTex_00C2B8; -#endif - +static const ALIGN_ASSET(2) char spot06_sceneTex_00C2B8[] = dspot06_sceneTex_00C2B8; + #define dspot06_sceneTex_00BAB8 "__OTR__scenes/nonmq/spot06_scene/spot06_sceneTex_00BAB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot06_sceneTex_00BAB8[] = dspot06_sceneTex_00BAB8; -#else -static const char spot06_sceneTex_00BAB8[] __attribute__((aligned (2))) = dspot06_sceneTex_00BAB8; -#endif - -#define dspot06_sceneCollisionHeader_0055AC "__OTR__scenes/nonmq/spot06_scene/spot06_sceneCollisionHeader_0055AC" -#define dspot06_sceneCollisionHeader_0055AC "__OTR__scenes/nonmq/spot06_scene/spot06_sceneCollisionHeader_0055AC" +static const ALIGN_ASSET(2) char spot06_sceneTex_00BAB8[] = dspot06_sceneTex_00BAB8; + #define dspot06_sceneCollisionHeader_0055AC "__OTR__scenes/nonmq/spot06_scene/spot06_sceneCollisionHeader_0055AC" +#define dspot06_sceneCollisionHeader_0055AC "__OTR__scenes/nonmq/spot06_scene/spot06_sceneCollisionHeader_0055AC" + +#define dspot06_sceneCollisionHeader_0055AC "__OTR__scenes/nonmq/spot06_scene/spot06_sceneCollisionHeader_0055AC" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot07/spot07_room_0.h b/soh/assets/scenes/overworld/spot07/spot07_room_0.h index eb4f994e9..78538c8e4 100644 --- a/soh/assets/scenes/overworld/spot07/spot07_room_0.h +++ b/soh/assets/scenes/overworld/spot07/spot07_room_0.h @@ -1,296 +1,129 @@ #pragma once -#define dspot07_room_0DL_0034B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_0034B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_0034B0[] = dspot07_room_0DL_0034B0; -#else -static const char spot07_room_0DL_0034B0[] __attribute__((aligned (2))) = dspot07_room_0DL_0034B0; -#endif - -#define dspot07_room_0DL_002A28 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_002A28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_002A28[] = dspot07_room_0DL_002A28; -#else -static const char spot07_room_0DL_002A28[] __attribute__((aligned (2))) = dspot07_room_0DL_002A28; -#endif - -#define dspot07_room_0DL_002100 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_002100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_002100[] = dspot07_room_0DL_002100; -#else -static const char spot07_room_0DL_002100[] __attribute__((aligned (2))) = dspot07_room_0DL_002100; -#endif - -#define dspot07_room_0DL_0004D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_0004D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_0004D0[] = dspot07_room_0DL_0004D0; -#else -static const char spot07_room_0DL_0004D0[] __attribute__((aligned (2))) = dspot07_room_0DL_0004D0; -#endif - -#define dspot07_room_0DL_0026F0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_0026F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_0026F0[] = dspot07_room_0DL_0026F0; -#else -static const char spot07_room_0DL_0026F0[] __attribute__((aligned (2))) = dspot07_room_0DL_0026F0; -#endif - -#define dspot07_room_0DL_002E48 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_002E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_002E48[] = dspot07_room_0DL_002E48; -#else -static const char spot07_room_0DL_002E48[] __attribute__((aligned (2))) = dspot07_room_0DL_002E48; -#endif - -#define dspot07_room_0DL_001260 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_001260" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_001260[] = dspot07_room_0DL_001260; -#else -static const char spot07_room_0DL_001260[] __attribute__((aligned (2))) = dspot07_room_0DL_001260; -#endif - -#define dspot07_room_0DL_001870 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_001870" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_001870[] = dspot07_room_0DL_001870; -#else -static const char spot07_room_0DL_001870[] __attribute__((aligned (2))) = dspot07_room_0DL_001870; -#endif - -#define dspot07_room_0DL_0061E8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_0061E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_0061E8[] = dspot07_room_0DL_0061E8; -#else -static const char spot07_room_0DL_0061E8[] __attribute__((aligned (2))) = dspot07_room_0DL_0061E8; -#endif - -#define dspot07_room_0DL_000BA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_000BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_000BA8[] = dspot07_room_0DL_000BA8; -#else -static const char spot07_room_0DL_000BA8[] __attribute__((aligned (2))) = dspot07_room_0DL_000BA8; -#endif - -#define dspot07_room_0Tex_005748 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Tex_005748" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Tex_005748[] = dspot07_room_0Tex_005748; -#else -static const char spot07_room_0Tex_005748[] __attribute__((aligned (2))) = dspot07_room_0Tex_005748; -#endif - -#define dspot07_room_0DL_006010 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_006010" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_006010[] = dspot07_room_0DL_006010; -#else -static const char spot07_room_0DL_006010[] __attribute__((aligned (2))) = dspot07_room_0DL_006010; -#endif - -#define dspot07_room_0DL_000838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_000838" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_000838[] = dspot07_room_0DL_000838; -#else -static const char spot07_room_0DL_000838[] __attribute__((aligned (2))) = dspot07_room_0DL_000838; -#endif - -#define dspot07_room_0Tex_004F48 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Tex_004F48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Tex_004F48[] = dspot07_room_0Tex_004F48; -#else -static const char spot07_room_0Tex_004F48[] __attribute__((aligned (2))) = dspot07_room_0Tex_004F48; -#endif - -#define dspot07_room_0Tex_004748 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Tex_004748" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Tex_004748[] = dspot07_room_0Tex_004748; -#else -static const char spot07_room_0Tex_004748[] __attribute__((aligned (2))) = dspot07_room_0Tex_004748; -#endif - -#define dspot07_room_0DL_003EA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_003EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0DL_003EA8[] = dspot07_room_0DL_003EA8; -#else -static const char spot07_room_0DL_003EA8[] __attribute__((aligned (2))) = dspot07_room_0DL_003EA8; -#endif - -#define dspot07_room_0Set_000220DL_0034B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_0034B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_0034B0[] = dspot07_room_0Set_000220DL_0034B0; -#else -static const char spot07_room_0Set_000220DL_0034B0[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_0034B0; -#endif - -#define dspot07_room_0Set_000220DL_002A28 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_002A28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_002A28[] = dspot07_room_0Set_000220DL_002A28; -#else -static const char spot07_room_0Set_000220DL_002A28[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_002A28; -#endif - -#define dspot07_room_0Set_000220DL_002100 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_002100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_002100[] = dspot07_room_0Set_000220DL_002100; -#else -static const char spot07_room_0Set_000220DL_002100[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_002100; -#endif - -#define dspot07_room_0Set_000220DL_0004D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_0004D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_0004D0[] = dspot07_room_0Set_000220DL_0004D0; -#else -static const char spot07_room_0Set_000220DL_0004D0[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_0004D0; -#endif - -#define dspot07_room_0Set_000220DL_0026F0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_0026F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_0026F0[] = dspot07_room_0Set_000220DL_0026F0; -#else -static const char spot07_room_0Set_000220DL_0026F0[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_0026F0; -#endif - -#define dspot07_room_0Set_000220DL_002E48 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_002E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_002E48[] = dspot07_room_0Set_000220DL_002E48; -#else -static const char spot07_room_0Set_000220DL_002E48[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_002E48; -#endif - -#define dspot07_room_0Set_000220DL_001260 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_001260" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_001260[] = dspot07_room_0Set_000220DL_001260; -#else -static const char spot07_room_0Set_000220DL_001260[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_001260; -#endif - -#define dspot07_room_0Set_000220DL_001870 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_001870" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_001870[] = dspot07_room_0Set_000220DL_001870; -#else -static const char spot07_room_0Set_000220DL_001870[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_001870; -#endif - -#define dspot07_room_0Set_000220DL_0061E8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_0061E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_0061E8[] = dspot07_room_0Set_000220DL_0061E8; -#else -static const char spot07_room_0Set_000220DL_0061E8[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_0061E8; -#endif - -#define dspot07_room_0Set_000220DL_000BA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_000BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_000BA8[] = dspot07_room_0Set_000220DL_000BA8; -#else -static const char spot07_room_0Set_000220DL_000BA8[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_000BA8; -#endif - -#define dspot07_room_0Set_000220DL_006010 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_006010" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_006010[] = dspot07_room_0Set_000220DL_006010; -#else -static const char spot07_room_0Set_000220DL_006010[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_006010; -#endif - -#define dspot07_room_0Set_000220DL_000838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_000838" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_000838[] = dspot07_room_0Set_000220DL_000838; -#else -static const char spot07_room_0Set_000220DL_000838[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_000838; -#endif - -#define dspot07_room_0Set_000220DL_003EA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_003EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000220DL_003EA8[] = dspot07_room_0Set_000220DL_003EA8; -#else -static const char spot07_room_0Set_000220DL_003EA8[] __attribute__((aligned (2))) = dspot07_room_0Set_000220DL_003EA8; -#endif - -#define dspot07_room_0Set_000300DL_0034B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_0034B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_0034B0[] = dspot07_room_0Set_000300DL_0034B0; -#else -static const char spot07_room_0Set_000300DL_0034B0[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_0034B0; -#endif - -#define dspot07_room_0Set_000300DL_002A28 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_002A28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_002A28[] = dspot07_room_0Set_000300DL_002A28; -#else -static const char spot07_room_0Set_000300DL_002A28[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_002A28; -#endif - -#define dspot07_room_0Set_000300DL_002100 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_002100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_002100[] = dspot07_room_0Set_000300DL_002100; -#else -static const char spot07_room_0Set_000300DL_002100[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_002100; -#endif - -#define dspot07_room_0Set_000300DL_0004D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_0004D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_0004D0[] = dspot07_room_0Set_000300DL_0004D0; -#else -static const char spot07_room_0Set_000300DL_0004D0[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_0004D0; -#endif - -#define dspot07_room_0Set_000300DL_0026F0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_0026F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_0026F0[] = dspot07_room_0Set_000300DL_0026F0; -#else -static const char spot07_room_0Set_000300DL_0026F0[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_0026F0; -#endif - -#define dspot07_room_0Set_000300DL_002E48 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_002E48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_002E48[] = dspot07_room_0Set_000300DL_002E48; -#else -static const char spot07_room_0Set_000300DL_002E48[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_002E48; -#endif - -#define dspot07_room_0Set_000300DL_001260 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_001260" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_001260[] = dspot07_room_0Set_000300DL_001260; -#else -static const char spot07_room_0Set_000300DL_001260[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_001260; -#endif - -#define dspot07_room_0Set_000300DL_001870 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_001870" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_001870[] = dspot07_room_0Set_000300DL_001870; -#else -static const char spot07_room_0Set_000300DL_001870[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_001870; -#endif - -#define dspot07_room_0Set_000300DL_0061E8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_0061E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_0061E8[] = dspot07_room_0Set_000300DL_0061E8; -#else -static const char spot07_room_0Set_000300DL_0061E8[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_0061E8; -#endif - -#define dspot07_room_0Set_000300DL_000BA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_000BA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_000BA8[] = dspot07_room_0Set_000300DL_000BA8; -#else -static const char spot07_room_0Set_000300DL_000BA8[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_000BA8; -#endif - -#define dspot07_room_0Set_000300DL_006010 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_006010" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_006010[] = dspot07_room_0Set_000300DL_006010; -#else -static const char spot07_room_0Set_000300DL_006010[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_006010; -#endif - -#define dspot07_room_0Set_000300DL_000838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_000838" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_000838[] = dspot07_room_0Set_000300DL_000838; -#else -static const char spot07_room_0Set_000300DL_000838[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_000838; -#endif - -#define dspot07_room_0Set_000300DL_003EA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_003EA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_0Set_000300DL_003EA8[] = dspot07_room_0Set_000300DL_003EA8; -#else -static const char spot07_room_0Set_000300DL_003EA8[] __attribute__((aligned (2))) = dspot07_room_0Set_000300DL_003EA8; -#endif - +#include "align_asset_macro.h" + +#define dspot07_room_0DL_0034B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_0034B0" +static const ALIGN_ASSET(2) char spot07_room_0DL_0034B0[] = dspot07_room_0DL_0034B0; + +#define dspot07_room_0DL_002A28 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_002A28" +static const ALIGN_ASSET(2) char spot07_room_0DL_002A28[] = dspot07_room_0DL_002A28; + +#define dspot07_room_0DL_002100 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_002100" +static const ALIGN_ASSET(2) char spot07_room_0DL_002100[] = dspot07_room_0DL_002100; + +#define dspot07_room_0DL_0004D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_0004D0" +static const ALIGN_ASSET(2) char spot07_room_0DL_0004D0[] = dspot07_room_0DL_0004D0; + +#define dspot07_room_0DL_0026F0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_0026F0" +static const ALIGN_ASSET(2) char spot07_room_0DL_0026F0[] = dspot07_room_0DL_0026F0; + +#define dspot07_room_0DL_002E48 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_002E48" +static const ALIGN_ASSET(2) char spot07_room_0DL_002E48[] = dspot07_room_0DL_002E48; + +#define dspot07_room_0DL_001260 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_001260" +static const ALIGN_ASSET(2) char spot07_room_0DL_001260[] = dspot07_room_0DL_001260; + +#define dspot07_room_0DL_001870 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_001870" +static const ALIGN_ASSET(2) char spot07_room_0DL_001870[] = dspot07_room_0DL_001870; + +#define dspot07_room_0DL_0061E8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_0061E8" +static const ALIGN_ASSET(2) char spot07_room_0DL_0061E8[] = dspot07_room_0DL_0061E8; + +#define dspot07_room_0DL_000BA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_000BA8" +static const ALIGN_ASSET(2) char spot07_room_0DL_000BA8[] = dspot07_room_0DL_000BA8; + +#define dspot07_room_0Tex_005748 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Tex_005748" +static const ALIGN_ASSET(2) char spot07_room_0Tex_005748[] = dspot07_room_0Tex_005748; + +#define dspot07_room_0DL_006010 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_006010" +static const ALIGN_ASSET(2) char spot07_room_0DL_006010[] = dspot07_room_0DL_006010; + +#define dspot07_room_0DL_000838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_000838" +static const ALIGN_ASSET(2) char spot07_room_0DL_000838[] = dspot07_room_0DL_000838; + +#define dspot07_room_0Tex_004F48 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Tex_004F48" +static const ALIGN_ASSET(2) char spot07_room_0Tex_004F48[] = dspot07_room_0Tex_004F48; + +#define dspot07_room_0Tex_004748 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Tex_004748" +static const ALIGN_ASSET(2) char spot07_room_0Tex_004748[] = dspot07_room_0Tex_004748; + +#define dspot07_room_0DL_003EA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0DL_003EA8" +static const ALIGN_ASSET(2) char spot07_room_0DL_003EA8[] = dspot07_room_0DL_003EA8; + +#define dspot07_room_0Set_000220DL_0034B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_0034B0" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_0034B0[] = dspot07_room_0Set_000220DL_0034B0; + +#define dspot07_room_0Set_000220DL_002A28 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_002A28" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_002A28[] = dspot07_room_0Set_000220DL_002A28; + +#define dspot07_room_0Set_000220DL_002100 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_002100" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_002100[] = dspot07_room_0Set_000220DL_002100; + +#define dspot07_room_0Set_000220DL_0004D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_0004D0" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_0004D0[] = dspot07_room_0Set_000220DL_0004D0; + +#define dspot07_room_0Set_000220DL_0026F0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_0026F0" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_0026F0[] = dspot07_room_0Set_000220DL_0026F0; + +#define dspot07_room_0Set_000220DL_002E48 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_002E48" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_002E48[] = dspot07_room_0Set_000220DL_002E48; + +#define dspot07_room_0Set_000220DL_001260 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_001260" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_001260[] = dspot07_room_0Set_000220DL_001260; + +#define dspot07_room_0Set_000220DL_001870 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_001870" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_001870[] = dspot07_room_0Set_000220DL_001870; + +#define dspot07_room_0Set_000220DL_0061E8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_0061E8" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_0061E8[] = dspot07_room_0Set_000220DL_0061E8; + +#define dspot07_room_0Set_000220DL_000BA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_000BA8" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_000BA8[] = dspot07_room_0Set_000220DL_000BA8; + +#define dspot07_room_0Set_000220DL_006010 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_006010" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_006010[] = dspot07_room_0Set_000220DL_006010; + +#define dspot07_room_0Set_000220DL_000838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_000838" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_000838[] = dspot07_room_0Set_000220DL_000838; + +#define dspot07_room_0Set_000220DL_003EA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000220DL_003EA8" +static const ALIGN_ASSET(2) char spot07_room_0Set_000220DL_003EA8[] = dspot07_room_0Set_000220DL_003EA8; + +#define dspot07_room_0Set_000300DL_0034B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_0034B0" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_0034B0[] = dspot07_room_0Set_000300DL_0034B0; + +#define dspot07_room_0Set_000300DL_002A28 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_002A28" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_002A28[] = dspot07_room_0Set_000300DL_002A28; + +#define dspot07_room_0Set_000300DL_002100 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_002100" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_002100[] = dspot07_room_0Set_000300DL_002100; + +#define dspot07_room_0Set_000300DL_0004D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_0004D0" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_0004D0[] = dspot07_room_0Set_000300DL_0004D0; + +#define dspot07_room_0Set_000300DL_0026F0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_0026F0" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_0026F0[] = dspot07_room_0Set_000300DL_0026F0; + +#define dspot07_room_0Set_000300DL_002E48 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_002E48" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_002E48[] = dspot07_room_0Set_000300DL_002E48; + +#define dspot07_room_0Set_000300DL_001260 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_001260" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_001260[] = dspot07_room_0Set_000300DL_001260; + +#define dspot07_room_0Set_000300DL_001870 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_001870" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_001870[] = dspot07_room_0Set_000300DL_001870; + +#define dspot07_room_0Set_000300DL_0061E8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_0061E8" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_0061E8[] = dspot07_room_0Set_000300DL_0061E8; + +#define dspot07_room_0Set_000300DL_000BA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_000BA8" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_000BA8[] = dspot07_room_0Set_000300DL_000BA8; + +#define dspot07_room_0Set_000300DL_006010 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_006010" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_006010[] = dspot07_room_0Set_000300DL_006010; + +#define dspot07_room_0Set_000300DL_000838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_000838" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_000838[] = dspot07_room_0Set_000300DL_000838; + +#define dspot07_room_0Set_000300DL_003EA8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_0Set_000300DL_003EA8" +static const ALIGN_ASSET(2) char spot07_room_0Set_000300DL_003EA8[] = dspot07_room_0Set_000300DL_003EA8; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot07/spot07_room_1.h b/soh/assets/scenes/overworld/spot07/spot07_room_1.h index 060ad1e9a..e591d3129 100644 --- a/soh/assets/scenes/overworld/spot07/spot07_room_1.h +++ b/soh/assets/scenes/overworld/spot07/spot07_room_1.h @@ -1,548 +1,237 @@ #pragma once -#define dspot07_room_1DL_004860 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_004860[] = dspot07_room_1DL_004860; -#else -static const char spot07_room_1DL_004860[] __attribute__((aligned (2))) = dspot07_room_1DL_004860; -#endif - -#define dspot07_room_1DL_001838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_001838" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_001838[] = dspot07_room_1DL_001838; -#else -static const char spot07_room_1DL_001838[] __attribute__((aligned (2))) = dspot07_room_1DL_001838; -#endif - -#define dspot07_room_1Tex_00A3D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_00A3D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_00A3D8[] = dspot07_room_1Tex_00A3D8; -#else -static const char spot07_room_1Tex_00A3D8[] __attribute__((aligned (2))) = dspot07_room_1Tex_00A3D8; -#endif - -#define dspot07_room_1Tex_009BD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_009BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_009BD8[] = dspot07_room_1Tex_009BD8; -#else -static const char spot07_room_1Tex_009BD8[] __attribute__((aligned (2))) = dspot07_room_1Tex_009BD8; -#endif - -#define dspot07_room_1DL_0068E0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0068E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_0068E0[] = dspot07_room_1DL_0068E0; -#else -static const char spot07_room_1DL_0068E0[] __attribute__((aligned (2))) = dspot07_room_1DL_0068E0; -#endif - -#define dspot07_room_1DL_00BEC0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_00BEC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_00BEC0[] = dspot07_room_1DL_00BEC0; -#else -static const char spot07_room_1DL_00BEC0[] __attribute__((aligned (2))) = dspot07_room_1DL_00BEC0; -#endif - -#define dspot07_room_1DL_00C0A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_00C0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_00C0A0[] = dspot07_room_1DL_00C0A0; -#else -static const char spot07_room_1DL_00C0A0[] __attribute__((aligned (2))) = dspot07_room_1DL_00C0A0; -#endif - -#define dspot07_room_1DL_0038A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0038A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_0038A0[] = dspot07_room_1DL_0038A0; -#else -static const char spot07_room_1DL_0038A0[] __attribute__((aligned (2))) = dspot07_room_1DL_0038A0; -#endif - -#define dspot07_room_1DL_003BE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_003BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_003BE0[] = dspot07_room_1DL_003BE0; -#else -static const char spot07_room_1DL_003BE0[] __attribute__((aligned (2))) = dspot07_room_1DL_003BE0; -#endif - -#define dspot07_room_1DL_003EE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_003EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_003EE0[] = dspot07_room_1DL_003EE0; -#else -static const char spot07_room_1DL_003EE0[] __attribute__((aligned (2))) = dspot07_room_1DL_003EE0; -#endif - -#define dspot07_room_1DL_004200 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_004200[] = dspot07_room_1DL_004200; -#else -static const char spot07_room_1DL_004200[] __attribute__((aligned (2))) = dspot07_room_1DL_004200; -#endif - -#define dspot07_room_1DL_004508 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_004508[] = dspot07_room_1DL_004508; -#else -static const char spot07_room_1DL_004508[] __attribute__((aligned (2))) = dspot07_room_1DL_004508; -#endif - -#define dspot07_room_1Tex_0097D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_0097D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_0097D8[] = dspot07_room_1Tex_0097D8; -#else -static const char spot07_room_1Tex_0097D8[] __attribute__((aligned (2))) = dspot07_room_1Tex_0097D8; -#endif - -#define dspot07_room_1DL_004B98 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_004B98[] = dspot07_room_1DL_004B98; -#else -static const char spot07_room_1DL_004B98[] __attribute__((aligned (2))) = dspot07_room_1DL_004B98; -#endif - -#define dspot07_room_1Tex_0093D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_0093D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_0093D8[] = dspot07_room_1Tex_0093D8; -#else -static const char spot07_room_1Tex_0093D8[] __attribute__((aligned (2))) = dspot07_room_1Tex_0093D8; -#endif - -#define dspot07_room_1DL_004E70 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004E70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_004E70[] = dspot07_room_1DL_004E70; -#else -static const char spot07_room_1DL_004E70[] __attribute__((aligned (2))) = dspot07_room_1DL_004E70; -#endif - -#define dspot07_room_1Tex_008FD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_008FD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_008FD8[] = dspot07_room_1Tex_008FD8; -#else -static const char spot07_room_1Tex_008FD8[] __attribute__((aligned (2))) = dspot07_room_1Tex_008FD8; -#endif - -#define dspot07_room_1DL_005160 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_005160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_005160[] = dspot07_room_1DL_005160; -#else -static const char spot07_room_1DL_005160[] __attribute__((aligned (2))) = dspot07_room_1DL_005160; -#endif - -#define dspot07_room_1DL_0053D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0053D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_0053D0[] = dspot07_room_1DL_0053D0; -#else -static const char spot07_room_1DL_0053D0[] __attribute__((aligned (2))) = dspot07_room_1DL_0053D0; -#endif - -#define dspot07_room_1Tex_008BD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_008BD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_008BD8[] = dspot07_room_1Tex_008BD8; -#else -static const char spot07_room_1Tex_008BD8[] __attribute__((aligned (2))) = dspot07_room_1Tex_008BD8; -#endif - -#define dspot07_room_1DL_0035B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0035B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_0035B0[] = dspot07_room_1DL_0035B0; -#else -static const char spot07_room_1DL_0035B0[] __attribute__((aligned (2))) = dspot07_room_1DL_0035B0; -#endif - -#define dspot07_room_1DL_005D08 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_005D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_005D08[] = dspot07_room_1DL_005D08; -#else -static const char spot07_room_1DL_005D08[] __attribute__((aligned (2))) = dspot07_room_1DL_005D08; -#endif - -#define dspot07_room_1DL_005AB8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_005AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_005AB8[] = dspot07_room_1DL_005AB8; -#else -static const char spot07_room_1DL_005AB8[] __attribute__((aligned (2))) = dspot07_room_1DL_005AB8; -#endif - -#define dspot07_room_1DL_002710 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_002710" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_002710[] = dspot07_room_1DL_002710; -#else -static const char spot07_room_1DL_002710[] __attribute__((aligned (2))) = dspot07_room_1DL_002710; -#endif - -#define dspot07_room_1Tex_007ED8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_007ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_007ED8[] = dspot07_room_1Tex_007ED8; -#else -static const char spot07_room_1Tex_007ED8[] __attribute__((aligned (2))) = dspot07_room_1Tex_007ED8; -#endif - -#define dspot07_room_1Tex_0076D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_0076D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_0076D8[] = dspot07_room_1Tex_0076D8; -#else -static const char spot07_room_1Tex_0076D8[] __attribute__((aligned (2))) = dspot07_room_1Tex_0076D8; -#endif - -#define dspot07_room_1Tex_008AD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_008AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_008AD8[] = dspot07_room_1Tex_008AD8; -#else -static const char spot07_room_1Tex_008AD8[] __attribute__((aligned (2))) = dspot07_room_1Tex_008AD8; -#endif - -#define dspot07_room_1Tex_0086D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_0086D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_0086D8[] = dspot07_room_1Tex_0086D8; -#else -static const char spot07_room_1Tex_0086D8[] __attribute__((aligned (2))) = dspot07_room_1Tex_0086D8; -#endif - -#define dspot07_room_1DL_00BCE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_00BCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_00BCE0[] = dspot07_room_1DL_00BCE0; -#else -static const char spot07_room_1DL_00BCE0[] __attribute__((aligned (2))) = dspot07_room_1DL_00BCE0; -#endif - -#define dspot07_room_1Tex_00C1A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_00C1A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_00C1A0[] = dspot07_room_1Tex_00C1A0; -#else -static const char spot07_room_1Tex_00C1A0[] __attribute__((aligned (2))) = dspot07_room_1Tex_00C1A0; -#endif - -#define dspot07_room_1DL_005798 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_005798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_005798[] = dspot07_room_1DL_005798; -#else -static const char spot07_room_1DL_005798[] __attribute__((aligned (2))) = dspot07_room_1DL_005798; -#endif - -#define dspot07_room_1DL_0012C0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0012C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_0012C0[] = dspot07_room_1DL_0012C0; -#else -static const char spot07_room_1DL_0012C0[] __attribute__((aligned (2))) = dspot07_room_1DL_0012C0; -#endif - -#define dspot07_room_1DL_007488 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_007488" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1DL_007488[] = dspot07_room_1DL_007488; -#else -static const char spot07_room_1DL_007488[] __attribute__((aligned (2))) = dspot07_room_1DL_007488; -#endif - -#define dspot07_room_1Tex_00ABD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_00ABD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Tex_00ABD8[] = dspot07_room_1Tex_00ABD8; -#else -static const char spot07_room_1Tex_00ABD8[] __attribute__((aligned (2))) = dspot07_room_1Tex_00ABD8; -#endif - -#define dspot07_room_1Set_000360DL_004860 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_004860[] = dspot07_room_1Set_000360DL_004860; -#else -static const char spot07_room_1Set_000360DL_004860[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_004860; -#endif - -#define dspot07_room_1Set_000360DL_001838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_001838" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_001838[] = dspot07_room_1Set_000360DL_001838; -#else -static const char spot07_room_1Set_000360DL_001838[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_001838; -#endif - -#define dspot07_room_1Set_000360DL_0068E0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0068E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_0068E0[] = dspot07_room_1Set_000360DL_0068E0; -#else -static const char spot07_room_1Set_000360DL_0068E0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_0068E0; -#endif - -#define dspot07_room_1Set_000360DL_00BEC0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_00BEC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_00BEC0[] = dspot07_room_1Set_000360DL_00BEC0; -#else -static const char spot07_room_1Set_000360DL_00BEC0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_00BEC0; -#endif - -#define dspot07_room_1Set_000360DL_00C0A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_00C0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_00C0A0[] = dspot07_room_1Set_000360DL_00C0A0; -#else -static const char spot07_room_1Set_000360DL_00C0A0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_00C0A0; -#endif - -#define dspot07_room_1Set_000360DL_0038A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0038A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_0038A0[] = dspot07_room_1Set_000360DL_0038A0; -#else -static const char spot07_room_1Set_000360DL_0038A0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_0038A0; -#endif - -#define dspot07_room_1Set_000360DL_003BE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_003BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_003BE0[] = dspot07_room_1Set_000360DL_003BE0; -#else -static const char spot07_room_1Set_000360DL_003BE0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_003BE0; -#endif - -#define dspot07_room_1Set_000360DL_003EE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_003EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_003EE0[] = dspot07_room_1Set_000360DL_003EE0; -#else -static const char spot07_room_1Set_000360DL_003EE0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_003EE0; -#endif - -#define dspot07_room_1Set_000360DL_004200 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_004200[] = dspot07_room_1Set_000360DL_004200; -#else -static const char spot07_room_1Set_000360DL_004200[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_004200; -#endif - -#define dspot07_room_1Set_000360DL_004508 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_004508[] = dspot07_room_1Set_000360DL_004508; -#else -static const char spot07_room_1Set_000360DL_004508[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_004508; -#endif - -#define dspot07_room_1Set_000360DL_004B98 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_004B98[] = dspot07_room_1Set_000360DL_004B98; -#else -static const char spot07_room_1Set_000360DL_004B98[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_004B98; -#endif - -#define dspot07_room_1Set_000360DL_004E70 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004E70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_004E70[] = dspot07_room_1Set_000360DL_004E70; -#else -static const char spot07_room_1Set_000360DL_004E70[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_004E70; -#endif - -#define dspot07_room_1Set_000360DL_005160 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_005160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_005160[] = dspot07_room_1Set_000360DL_005160; -#else -static const char spot07_room_1Set_000360DL_005160[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_005160; -#endif - -#define dspot07_room_1Set_000360DL_0053D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0053D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_0053D0[] = dspot07_room_1Set_000360DL_0053D0; -#else -static const char spot07_room_1Set_000360DL_0053D0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_0053D0; -#endif - -#define dspot07_room_1Set_000360DL_0035B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0035B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_0035B0[] = dspot07_room_1Set_000360DL_0035B0; -#else -static const char spot07_room_1Set_000360DL_0035B0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_0035B0; -#endif - -#define dspot07_room_1Set_000360DL_005D08 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_005D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_005D08[] = dspot07_room_1Set_000360DL_005D08; -#else -static const char spot07_room_1Set_000360DL_005D08[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_005D08; -#endif - -#define dspot07_room_1Set_000360DL_005AB8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_005AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_005AB8[] = dspot07_room_1Set_000360DL_005AB8; -#else -static const char spot07_room_1Set_000360DL_005AB8[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_005AB8; -#endif - -#define dspot07_room_1Set_000360DL_002710 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_002710" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_002710[] = dspot07_room_1Set_000360DL_002710; -#else -static const char spot07_room_1Set_000360DL_002710[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_002710; -#endif - -#define dspot07_room_1Set_000360DL_00BCE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_00BCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_00BCE0[] = dspot07_room_1Set_000360DL_00BCE0; -#else -static const char spot07_room_1Set_000360DL_00BCE0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_00BCE0; -#endif - -#define dspot07_room_1Set_000360DL_005798 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_005798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_005798[] = dspot07_room_1Set_000360DL_005798; -#else -static const char spot07_room_1Set_000360DL_005798[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_005798; -#endif - -#define dspot07_room_1Set_000360DL_0012C0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0012C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_0012C0[] = dspot07_room_1Set_000360DL_0012C0; -#else -static const char spot07_room_1Set_000360DL_0012C0[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_0012C0; -#endif - -#define dspot07_room_1Set_000360DL_007488 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_007488" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_000360DL_007488[] = dspot07_room_1Set_000360DL_007488; -#else -static const char spot07_room_1Set_000360DL_007488[] __attribute__((aligned (2))) = dspot07_room_1Set_000360DL_007488; -#endif - -#define dspot07_room_1Set_0004C0DL_004860 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004860" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_004860[] = dspot07_room_1Set_0004C0DL_004860; -#else -static const char spot07_room_1Set_0004C0DL_004860[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_004860; -#endif - -#define dspot07_room_1Set_0004C0DL_001838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_001838" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_001838[] = dspot07_room_1Set_0004C0DL_001838; -#else -static const char spot07_room_1Set_0004C0DL_001838[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_001838; -#endif - -#define dspot07_room_1Set_0004C0DL_0068E0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0068E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_0068E0[] = dspot07_room_1Set_0004C0DL_0068E0; -#else -static const char spot07_room_1Set_0004C0DL_0068E0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_0068E0; -#endif - -#define dspot07_room_1Set_0004C0DL_00BEC0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_00BEC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_00BEC0[] = dspot07_room_1Set_0004C0DL_00BEC0; -#else -static const char spot07_room_1Set_0004C0DL_00BEC0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_00BEC0; -#endif - -#define dspot07_room_1Set_0004C0DL_00C0A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_00C0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_00C0A0[] = dspot07_room_1Set_0004C0DL_00C0A0; -#else -static const char spot07_room_1Set_0004C0DL_00C0A0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_00C0A0; -#endif - -#define dspot07_room_1Set_0004C0DL_0038A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0038A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_0038A0[] = dspot07_room_1Set_0004C0DL_0038A0; -#else -static const char spot07_room_1Set_0004C0DL_0038A0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_0038A0; -#endif - -#define dspot07_room_1Set_0004C0DL_003BE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_003BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_003BE0[] = dspot07_room_1Set_0004C0DL_003BE0; -#else -static const char spot07_room_1Set_0004C0DL_003BE0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_003BE0; -#endif - -#define dspot07_room_1Set_0004C0DL_003EE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_003EE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_003EE0[] = dspot07_room_1Set_0004C0DL_003EE0; -#else -static const char spot07_room_1Set_0004C0DL_003EE0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_003EE0; -#endif - -#define dspot07_room_1Set_0004C0DL_004200 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_004200[] = dspot07_room_1Set_0004C0DL_004200; -#else -static const char spot07_room_1Set_0004C0DL_004200[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_004200; -#endif - -#define dspot07_room_1Set_0004C0DL_004508 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004508" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_004508[] = dspot07_room_1Set_0004C0DL_004508; -#else -static const char spot07_room_1Set_0004C0DL_004508[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_004508; -#endif - -#define dspot07_room_1Set_0004C0DL_004B98 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_004B98[] = dspot07_room_1Set_0004C0DL_004B98; -#else -static const char spot07_room_1Set_0004C0DL_004B98[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_004B98; -#endif - -#define dspot07_room_1Set_0004C0DL_004E70 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004E70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_004E70[] = dspot07_room_1Set_0004C0DL_004E70; -#else -static const char spot07_room_1Set_0004C0DL_004E70[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_004E70; -#endif - -#define dspot07_room_1Set_0004C0DL_005160 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_005160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_005160[] = dspot07_room_1Set_0004C0DL_005160; -#else -static const char spot07_room_1Set_0004C0DL_005160[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_005160; -#endif - -#define dspot07_room_1Set_0004C0DL_0053D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0053D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_0053D0[] = dspot07_room_1Set_0004C0DL_0053D0; -#else -static const char spot07_room_1Set_0004C0DL_0053D0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_0053D0; -#endif - -#define dspot07_room_1Set_0004C0DL_0035B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0035B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_0035B0[] = dspot07_room_1Set_0004C0DL_0035B0; -#else -static const char spot07_room_1Set_0004C0DL_0035B0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_0035B0; -#endif - -#define dspot07_room_1Set_0004C0DL_005D08 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_005D08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_005D08[] = dspot07_room_1Set_0004C0DL_005D08; -#else -static const char spot07_room_1Set_0004C0DL_005D08[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_005D08; -#endif - -#define dspot07_room_1Set_0004C0DL_005AB8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_005AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_005AB8[] = dspot07_room_1Set_0004C0DL_005AB8; -#else -static const char spot07_room_1Set_0004C0DL_005AB8[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_005AB8; -#endif - -#define dspot07_room_1Set_0004C0DL_002710 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_002710" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_002710[] = dspot07_room_1Set_0004C0DL_002710; -#else -static const char spot07_room_1Set_0004C0DL_002710[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_002710; -#endif - -#define dspot07_room_1Set_0004C0DL_00BCE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_00BCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_00BCE0[] = dspot07_room_1Set_0004C0DL_00BCE0; -#else -static const char spot07_room_1Set_0004C0DL_00BCE0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_00BCE0; -#endif - -#define dspot07_room_1Set_0004C0DL_005798 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_005798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_005798[] = dspot07_room_1Set_0004C0DL_005798; -#else -static const char spot07_room_1Set_0004C0DL_005798[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_005798; -#endif - -#define dspot07_room_1Set_0004C0DL_0012C0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0012C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_0012C0[] = dspot07_room_1Set_0004C0DL_0012C0; -#else -static const char spot07_room_1Set_0004C0DL_0012C0[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_0012C0; -#endif - -#define dspot07_room_1Set_0004C0DL_007488 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_007488" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_room_1Set_0004C0DL_007488[] = dspot07_room_1Set_0004C0DL_007488; -#else -static const char spot07_room_1Set_0004C0DL_007488[] __attribute__((aligned (2))) = dspot07_room_1Set_0004C0DL_007488; -#endif - +#include "align_asset_macro.h" + +#define dspot07_room_1DL_004860 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004860" +static const ALIGN_ASSET(2) char spot07_room_1DL_004860[] = dspot07_room_1DL_004860; + +#define dspot07_room_1DL_001838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_001838" +static const ALIGN_ASSET(2) char spot07_room_1DL_001838[] = dspot07_room_1DL_001838; + +#define dspot07_room_1Tex_00A3D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_00A3D8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_00A3D8[] = dspot07_room_1Tex_00A3D8; + +#define dspot07_room_1Tex_009BD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_009BD8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_009BD8[] = dspot07_room_1Tex_009BD8; + +#define dspot07_room_1DL_0068E0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0068E0" +static const ALIGN_ASSET(2) char spot07_room_1DL_0068E0[] = dspot07_room_1DL_0068E0; + +#define dspot07_room_1DL_00BEC0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_00BEC0" +static const ALIGN_ASSET(2) char spot07_room_1DL_00BEC0[] = dspot07_room_1DL_00BEC0; + +#define dspot07_room_1DL_00C0A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_00C0A0" +static const ALIGN_ASSET(2) char spot07_room_1DL_00C0A0[] = dspot07_room_1DL_00C0A0; + +#define dspot07_room_1DL_0038A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0038A0" +static const ALIGN_ASSET(2) char spot07_room_1DL_0038A0[] = dspot07_room_1DL_0038A0; + +#define dspot07_room_1DL_003BE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_003BE0" +static const ALIGN_ASSET(2) char spot07_room_1DL_003BE0[] = dspot07_room_1DL_003BE0; + +#define dspot07_room_1DL_003EE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_003EE0" +static const ALIGN_ASSET(2) char spot07_room_1DL_003EE0[] = dspot07_room_1DL_003EE0; + +#define dspot07_room_1DL_004200 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004200" +static const ALIGN_ASSET(2) char spot07_room_1DL_004200[] = dspot07_room_1DL_004200; + +#define dspot07_room_1DL_004508 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004508" +static const ALIGN_ASSET(2) char spot07_room_1DL_004508[] = dspot07_room_1DL_004508; + +#define dspot07_room_1Tex_0097D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_0097D8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_0097D8[] = dspot07_room_1Tex_0097D8; + +#define dspot07_room_1DL_004B98 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004B98" +static const ALIGN_ASSET(2) char spot07_room_1DL_004B98[] = dspot07_room_1DL_004B98; + +#define dspot07_room_1Tex_0093D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_0093D8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_0093D8[] = dspot07_room_1Tex_0093D8; + +#define dspot07_room_1DL_004E70 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_004E70" +static const ALIGN_ASSET(2) char spot07_room_1DL_004E70[] = dspot07_room_1DL_004E70; + +#define dspot07_room_1Tex_008FD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_008FD8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_008FD8[] = dspot07_room_1Tex_008FD8; + +#define dspot07_room_1DL_005160 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_005160" +static const ALIGN_ASSET(2) char spot07_room_1DL_005160[] = dspot07_room_1DL_005160; + +#define dspot07_room_1DL_0053D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0053D0" +static const ALIGN_ASSET(2) char spot07_room_1DL_0053D0[] = dspot07_room_1DL_0053D0; + +#define dspot07_room_1Tex_008BD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_008BD8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_008BD8[] = dspot07_room_1Tex_008BD8; + +#define dspot07_room_1DL_0035B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0035B0" +static const ALIGN_ASSET(2) char spot07_room_1DL_0035B0[] = dspot07_room_1DL_0035B0; + +#define dspot07_room_1DL_005D08 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_005D08" +static const ALIGN_ASSET(2) char spot07_room_1DL_005D08[] = dspot07_room_1DL_005D08; + +#define dspot07_room_1DL_005AB8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_005AB8" +static const ALIGN_ASSET(2) char spot07_room_1DL_005AB8[] = dspot07_room_1DL_005AB8; + +#define dspot07_room_1DL_002710 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_002710" +static const ALIGN_ASSET(2) char spot07_room_1DL_002710[] = dspot07_room_1DL_002710; + +#define dspot07_room_1Tex_007ED8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_007ED8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_007ED8[] = dspot07_room_1Tex_007ED8; + +#define dspot07_room_1Tex_0076D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_0076D8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_0076D8[] = dspot07_room_1Tex_0076D8; + +#define dspot07_room_1Tex_008AD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_008AD8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_008AD8[] = dspot07_room_1Tex_008AD8; + +#define dspot07_room_1Tex_0086D8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_0086D8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_0086D8[] = dspot07_room_1Tex_0086D8; + +#define dspot07_room_1DL_00BCE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_00BCE0" +static const ALIGN_ASSET(2) char spot07_room_1DL_00BCE0[] = dspot07_room_1DL_00BCE0; + +#define dspot07_room_1Tex_00C1A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_00C1A0" +static const ALIGN_ASSET(2) char spot07_room_1Tex_00C1A0[] = dspot07_room_1Tex_00C1A0; + +#define dspot07_room_1DL_005798 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_005798" +static const ALIGN_ASSET(2) char spot07_room_1DL_005798[] = dspot07_room_1DL_005798; + +#define dspot07_room_1DL_0012C0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_0012C0" +static const ALIGN_ASSET(2) char spot07_room_1DL_0012C0[] = dspot07_room_1DL_0012C0; + +#define dspot07_room_1DL_007488 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1DL_007488" +static const ALIGN_ASSET(2) char spot07_room_1DL_007488[] = dspot07_room_1DL_007488; + +#define dspot07_room_1Tex_00ABD8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Tex_00ABD8" +static const ALIGN_ASSET(2) char spot07_room_1Tex_00ABD8[] = dspot07_room_1Tex_00ABD8; + +#define dspot07_room_1Set_000360DL_004860 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004860" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_004860[] = dspot07_room_1Set_000360DL_004860; + +#define dspot07_room_1Set_000360DL_001838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_001838" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_001838[] = dspot07_room_1Set_000360DL_001838; + +#define dspot07_room_1Set_000360DL_0068E0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0068E0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_0068E0[] = dspot07_room_1Set_000360DL_0068E0; + +#define dspot07_room_1Set_000360DL_00BEC0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_00BEC0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_00BEC0[] = dspot07_room_1Set_000360DL_00BEC0; + +#define dspot07_room_1Set_000360DL_00C0A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_00C0A0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_00C0A0[] = dspot07_room_1Set_000360DL_00C0A0; + +#define dspot07_room_1Set_000360DL_0038A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0038A0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_0038A0[] = dspot07_room_1Set_000360DL_0038A0; + +#define dspot07_room_1Set_000360DL_003BE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_003BE0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_003BE0[] = dspot07_room_1Set_000360DL_003BE0; + +#define dspot07_room_1Set_000360DL_003EE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_003EE0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_003EE0[] = dspot07_room_1Set_000360DL_003EE0; + +#define dspot07_room_1Set_000360DL_004200 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004200" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_004200[] = dspot07_room_1Set_000360DL_004200; + +#define dspot07_room_1Set_000360DL_004508 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004508" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_004508[] = dspot07_room_1Set_000360DL_004508; + +#define dspot07_room_1Set_000360DL_004B98 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004B98" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_004B98[] = dspot07_room_1Set_000360DL_004B98; + +#define dspot07_room_1Set_000360DL_004E70 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_004E70" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_004E70[] = dspot07_room_1Set_000360DL_004E70; + +#define dspot07_room_1Set_000360DL_005160 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_005160" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_005160[] = dspot07_room_1Set_000360DL_005160; + +#define dspot07_room_1Set_000360DL_0053D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0053D0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_0053D0[] = dspot07_room_1Set_000360DL_0053D0; + +#define dspot07_room_1Set_000360DL_0035B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0035B0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_0035B0[] = dspot07_room_1Set_000360DL_0035B0; + +#define dspot07_room_1Set_000360DL_005D08 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_005D08" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_005D08[] = dspot07_room_1Set_000360DL_005D08; + +#define dspot07_room_1Set_000360DL_005AB8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_005AB8" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_005AB8[] = dspot07_room_1Set_000360DL_005AB8; + +#define dspot07_room_1Set_000360DL_002710 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_002710" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_002710[] = dspot07_room_1Set_000360DL_002710; + +#define dspot07_room_1Set_000360DL_00BCE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_00BCE0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_00BCE0[] = dspot07_room_1Set_000360DL_00BCE0; + +#define dspot07_room_1Set_000360DL_005798 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_005798" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_005798[] = dspot07_room_1Set_000360DL_005798; + +#define dspot07_room_1Set_000360DL_0012C0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_0012C0" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_0012C0[] = dspot07_room_1Set_000360DL_0012C0; + +#define dspot07_room_1Set_000360DL_007488 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_000360DL_007488" +static const ALIGN_ASSET(2) char spot07_room_1Set_000360DL_007488[] = dspot07_room_1Set_000360DL_007488; + +#define dspot07_room_1Set_0004C0DL_004860 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004860" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_004860[] = dspot07_room_1Set_0004C0DL_004860; + +#define dspot07_room_1Set_0004C0DL_001838 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_001838" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_001838[] = dspot07_room_1Set_0004C0DL_001838; + +#define dspot07_room_1Set_0004C0DL_0068E0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0068E0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_0068E0[] = dspot07_room_1Set_0004C0DL_0068E0; + +#define dspot07_room_1Set_0004C0DL_00BEC0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_00BEC0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_00BEC0[] = dspot07_room_1Set_0004C0DL_00BEC0; + +#define dspot07_room_1Set_0004C0DL_00C0A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_00C0A0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_00C0A0[] = dspot07_room_1Set_0004C0DL_00C0A0; + +#define dspot07_room_1Set_0004C0DL_0038A0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0038A0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_0038A0[] = dspot07_room_1Set_0004C0DL_0038A0; + +#define dspot07_room_1Set_0004C0DL_003BE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_003BE0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_003BE0[] = dspot07_room_1Set_0004C0DL_003BE0; + +#define dspot07_room_1Set_0004C0DL_003EE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_003EE0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_003EE0[] = dspot07_room_1Set_0004C0DL_003EE0; + +#define dspot07_room_1Set_0004C0DL_004200 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004200" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_004200[] = dspot07_room_1Set_0004C0DL_004200; + +#define dspot07_room_1Set_0004C0DL_004508 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004508" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_004508[] = dspot07_room_1Set_0004C0DL_004508; + +#define dspot07_room_1Set_0004C0DL_004B98 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004B98" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_004B98[] = dspot07_room_1Set_0004C0DL_004B98; + +#define dspot07_room_1Set_0004C0DL_004E70 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_004E70" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_004E70[] = dspot07_room_1Set_0004C0DL_004E70; + +#define dspot07_room_1Set_0004C0DL_005160 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_005160" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_005160[] = dspot07_room_1Set_0004C0DL_005160; + +#define dspot07_room_1Set_0004C0DL_0053D0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0053D0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_0053D0[] = dspot07_room_1Set_0004C0DL_0053D0; + +#define dspot07_room_1Set_0004C0DL_0035B0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0035B0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_0035B0[] = dspot07_room_1Set_0004C0DL_0035B0; + +#define dspot07_room_1Set_0004C0DL_005D08 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_005D08" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_005D08[] = dspot07_room_1Set_0004C0DL_005D08; + +#define dspot07_room_1Set_0004C0DL_005AB8 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_005AB8" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_005AB8[] = dspot07_room_1Set_0004C0DL_005AB8; + +#define dspot07_room_1Set_0004C0DL_002710 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_002710" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_002710[] = dspot07_room_1Set_0004C0DL_002710; + +#define dspot07_room_1Set_0004C0DL_00BCE0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_00BCE0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_00BCE0[] = dspot07_room_1Set_0004C0DL_00BCE0; + +#define dspot07_room_1Set_0004C0DL_005798 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_005798" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_005798[] = dspot07_room_1Set_0004C0DL_005798; + +#define dspot07_room_1Set_0004C0DL_0012C0 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_0012C0" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_0012C0[] = dspot07_room_1Set_0004C0DL_0012C0; + +#define dspot07_room_1Set_0004C0DL_007488 "__OTR__scenes/nonmq/spot07_scene/spot07_room_1Set_0004C0DL_007488" +static const ALIGN_ASSET(2) char spot07_room_1Set_0004C0DL_007488[] = dspot07_room_1Set_0004C0DL_007488; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot07/spot07_scene.h b/soh/assets/scenes/overworld/spot07/spot07_scene.h index 719f13787..11c07bf0a 100644 --- a/soh/assets/scenes/overworld/spot07/spot07_scene.h +++ b/soh/assets/scenes/overworld/spot07/spot07_scene.h @@ -1,151 +1,70 @@ #pragma once + +#include "align_asset_macro.h" + #define dgZorasDomainIntroCs "__OTR__scenes/nonmq/spot07_scene/gZorasDomainIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainIntroCs[] = dgZorasDomainIntroCs; -#else -static const char gZorasDomainIntroCs[] __attribute__((aligned (2))) = dgZorasDomainIntroCs; -#endif - +static const ALIGN_ASSET(2) char gZorasDomainIntroCs[] = dgZorasDomainIntroCs; + #define dgZorasDomainDayEntranceTex "__OTR__scenes/nonmq/spot07_scene/gZorasDomainDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainDayEntranceTex[] = dgZorasDomainDayEntranceTex; -#else -static const char gZorasDomainDayEntranceTex[] __attribute__((aligned (2))) = dgZorasDomainDayEntranceTex; -#endif - +static const ALIGN_ASSET(2) char gZorasDomainDayEntranceTex[] = dgZorasDomainDayEntranceTex; + #define dgZorasDomainNightEntranceTex "__OTR__scenes/nonmq/spot07_scene/gZorasDomainNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainNightEntranceTex[] = dgZorasDomainNightEntranceTex; -#else -static const char gZorasDomainNightEntranceTex[] __attribute__((aligned (2))) = dgZorasDomainNightEntranceTex; -#endif - +static const ALIGN_ASSET(2) char gZorasDomainNightEntranceTex[] = dgZorasDomainNightEntranceTex; + #define dspot07_sceneCollisionHeader_003824 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneCollisionHeader_003824" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneCollisionHeader_003824[] = dspot07_sceneCollisionHeader_003824; -#else -static const char spot07_sceneCollisionHeader_003824[] __attribute__((aligned (2))) = dspot07_sceneCollisionHeader_003824; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneCollisionHeader_003824[] = dspot07_sceneCollisionHeader_003824; + #define dspot07_sceneTex_009418 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_009418" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_009418[] = dspot07_sceneTex_009418; -#else -static const char spot07_sceneTex_009418[] __attribute__((aligned (2))) = dspot07_sceneTex_009418; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_009418[] = dspot07_sceneTex_009418; + #define dspot07_sceneTex_009018 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_009018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_009018[] = dspot07_sceneTex_009018; -#else -static const char spot07_sceneTex_009018[] __attribute__((aligned (2))) = dspot07_sceneTex_009018; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_009018[] = dspot07_sceneTex_009018; + #define dspot07_sceneTLUT_003F70 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTLUT_003F70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTLUT_003F70[] = dspot07_sceneTLUT_003F70; -#else -static const char spot07_sceneTLUT_003F70[] __attribute__((aligned (2))) = dspot07_sceneTLUT_003F70; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTLUT_003F70[] = dspot07_sceneTLUT_003F70; + #define dspot07_sceneTex_006398 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_006398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_006398[] = dspot07_sceneTex_006398; -#else -static const char spot07_sceneTex_006398[] __attribute__((aligned (2))) = dspot07_sceneTex_006398; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_006398[] = dspot07_sceneTex_006398; + #define dspot07_sceneTex_005798 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_005798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_005798[] = dspot07_sceneTex_005798; -#else -static const char spot07_sceneTex_005798[] __attribute__((aligned (2))) = dspot07_sceneTex_005798; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_005798[] = dspot07_sceneTex_005798; + #define dspot07_sceneTex_005398 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_005398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_005398[] = dspot07_sceneTex_005398; -#else -static const char spot07_sceneTex_005398[] __attribute__((aligned (2))) = dspot07_sceneTex_005398; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_005398[] = dspot07_sceneTex_005398; + #define dspot07_sceneTex_004F98 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_004F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_004F98[] = dspot07_sceneTex_004F98; -#else -static const char spot07_sceneTex_004F98[] __attribute__((aligned (2))) = dspot07_sceneTex_004F98; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_004F98[] = dspot07_sceneTex_004F98; + #define dspot07_sceneTex_007798 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_007798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_007798[] = dspot07_sceneTex_007798; -#else -static const char spot07_sceneTex_007798[] __attribute__((aligned (2))) = dspot07_sceneTex_007798; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_007798[] = dspot07_sceneTex_007798; + #define dspot07_sceneTex_006F98 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_006F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_006F98[] = dspot07_sceneTex_006F98; -#else -static const char spot07_sceneTex_006F98[] __attribute__((aligned (2))) = dspot07_sceneTex_006F98; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_006F98[] = dspot07_sceneTex_006F98; + #define dspot07_sceneTex_006798 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_006798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_006798[] = dspot07_sceneTex_006798; -#else -static const char spot07_sceneTex_006798[] __attribute__((aligned (2))) = dspot07_sceneTex_006798; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_006798[] = dspot07_sceneTex_006798; + #define dspot07_sceneTex_003F98 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_003F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_003F98[] = dspot07_sceneTex_003F98; -#else -static const char spot07_sceneTex_003F98[] __attribute__((aligned (2))) = dspot07_sceneTex_003F98; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_003F98[] = dspot07_sceneTex_003F98; + #define dspot07_sceneTex_007F98 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_007F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_007F98[] = dspot07_sceneTex_007F98; -#else -static const char spot07_sceneTex_007F98[] __attribute__((aligned (2))) = dspot07_sceneTex_007F98; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_007F98[] = dspot07_sceneTex_007F98; + #define dspot07_sceneTex_008798 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_008798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_008798[] = dspot07_sceneTex_008798; -#else -static const char spot07_sceneTex_008798[] __attribute__((aligned (2))) = dspot07_sceneTex_008798; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_008798[] = dspot07_sceneTex_008798; + #define dspot07_sceneTex_007B98 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_007B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_007B98[] = dspot07_sceneTex_007B98; -#else -static const char spot07_sceneTex_007B98[] __attribute__((aligned (2))) = dspot07_sceneTex_007B98; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_007B98[] = dspot07_sceneTex_007B98; + #define dspot07_sceneTex_006B98 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_006B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_006B98[] = dspot07_sceneTex_006B98; -#else -static const char spot07_sceneTex_006B98[] __attribute__((aligned (2))) = dspot07_sceneTex_006B98; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_006B98[] = dspot07_sceneTex_006B98; + #define dspot07_sceneTex_005F98 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_005F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_005F98[] = dspot07_sceneTex_005F98; -#else -static const char spot07_sceneTex_005F98[] __attribute__((aligned (2))) = dspot07_sceneTex_005F98; -#endif - +static const ALIGN_ASSET(2) char spot07_sceneTex_005F98[] = dspot07_sceneTex_005F98; + #define dspot07_sceneTex_005B98 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneTex_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot07_sceneTex_005B98[] = dspot07_sceneTex_005B98; -#else -static const char spot07_sceneTex_005B98[] __attribute__((aligned (2))) = dspot07_sceneTex_005B98; -#endif - -#define dspot07_sceneCollisionHeader_003824 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneCollisionHeader_003824" +static const ALIGN_ASSET(2) char spot07_sceneTex_005B98[] = dspot07_sceneTex_005B98; + #define dspot07_sceneCollisionHeader_003824 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneCollisionHeader_003824" +#define dspot07_sceneCollisionHeader_003824 "__OTR__scenes/nonmq/spot07_scene/spot07_sceneCollisionHeader_003824" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot08/spot08_room_0.h b/soh/assets/scenes/overworld/spot08/spot08_room_0.h index 96e43c0f0..8464cc01d 100644 --- a/soh/assets/scenes/overworld/spot08/spot08_room_0.h +++ b/soh/assets/scenes/overworld/spot08/spot08_room_0.h @@ -1,884 +1,381 @@ #pragma once -#define dspot08_room_0DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0051E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_0051E8[] = dspot08_room_0DL_0051E8; -#else -static const char spot08_room_0DL_0051E8[] __attribute__((aligned (2))) = dspot08_room_0DL_0051E8; -#endif - -#define dspot08_room_0DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_000DC0[] = dspot08_room_0DL_000DC0; -#else -static const char spot08_room_0DL_000DC0[] __attribute__((aligned (2))) = dspot08_room_0DL_000DC0; -#endif - -#define dspot08_room_0DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_007840[] = dspot08_room_0DL_007840; -#else -static const char spot08_room_0DL_007840[] __attribute__((aligned (2))) = dspot08_room_0DL_007840; -#endif - -#define dspot08_room_0DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_001068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_001068[] = dspot08_room_0DL_001068; -#else -static const char spot08_room_0DL_001068[] __attribute__((aligned (2))) = dspot08_room_0DL_001068; -#endif - -#define dspot08_room_0DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0079F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_0079F0[] = dspot08_room_0DL_0079F0; -#else -static const char spot08_room_0DL_0079F0[] __attribute__((aligned (2))) = dspot08_room_0DL_0079F0; -#endif - -#define dspot08_room_0DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0013B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_0013B8[] = dspot08_room_0DL_0013B8; -#else -static const char spot08_room_0DL_0013B8[] __attribute__((aligned (2))) = dspot08_room_0DL_0013B8; -#endif - -#define dspot08_room_0DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_007BA0[] = dspot08_room_0DL_007BA0; -#else -static const char spot08_room_0DL_007BA0[] __attribute__((aligned (2))) = dspot08_room_0DL_007BA0; -#endif - -#define dspot08_room_0DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_005B00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_005B00[] = dspot08_room_0DL_005B00; -#else -static const char spot08_room_0DL_005B00[] __attribute__((aligned (2))) = dspot08_room_0DL_005B00; -#endif - -#define dspot08_room_0DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_007478[] = dspot08_room_0DL_007478; -#else -static const char spot08_room_0DL_007478[] __attribute__((aligned (2))) = dspot08_room_0DL_007478; -#endif - -#define dspot08_room_0DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_001978" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_001978[] = dspot08_room_0DL_001978; -#else -static const char spot08_room_0DL_001978[] __attribute__((aligned (2))) = dspot08_room_0DL_001978; -#endif - -#define dspot08_room_0DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_002120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_002120[] = dspot08_room_0DL_002120; -#else -static const char spot08_room_0DL_002120[] __attribute__((aligned (2))) = dspot08_room_0DL_002120; -#endif - -#define dspot08_room_0DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_002538" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_002538[] = dspot08_room_0DL_002538; -#else -static const char spot08_room_0DL_002538[] __attribute__((aligned (2))) = dspot08_room_0DL_002538; -#endif - -#define dspot08_room_0DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_006120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_006120[] = dspot08_room_0DL_006120; -#else -static const char spot08_room_0DL_006120[] __attribute__((aligned (2))) = dspot08_room_0DL_006120; -#endif - -#define dspot08_room_0DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0066F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_0066F8[] = dspot08_room_0DL_0066F8; -#else -static const char spot08_room_0DL_0066F8[] __attribute__((aligned (2))) = dspot08_room_0DL_0066F8; -#endif - -#define dspot08_room_0DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_006C48[] = dspot08_room_0DL_006C48; -#else -static const char spot08_room_0DL_006C48[] __attribute__((aligned (2))) = dspot08_room_0DL_006C48; -#endif - -#define dspot08_room_0DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_003048[] = dspot08_room_0DL_003048; -#else -static const char spot08_room_0DL_003048[] __attribute__((aligned (2))) = dspot08_room_0DL_003048; -#endif - -#define dspot08_room_0DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0015F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_0015F0[] = dspot08_room_0DL_0015F0; -#else -static const char spot08_room_0DL_0015F0[] __attribute__((aligned (2))) = dspot08_room_0DL_0015F0; -#endif - -#define dspot08_room_0DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_007D30[] = dspot08_room_0DL_007D30; -#else -static const char spot08_room_0DL_007D30[] __attribute__((aligned (2))) = dspot08_room_0DL_007D30; -#endif - -#define dspot08_room_0DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_007FE8[] = dspot08_room_0DL_007FE8; -#else -static const char spot08_room_0DL_007FE8[] __attribute__((aligned (2))) = dspot08_room_0DL_007FE8; -#endif - -#define dspot08_room_0DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_0048B0[] = dspot08_room_0DL_0048B0; -#else -static const char spot08_room_0DL_0048B0[] __attribute__((aligned (2))) = dspot08_room_0DL_0048B0; -#endif - -#define dspot08_room_0DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0069C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0DL_0069C0[] = dspot08_room_0DL_0069C0; -#else -static const char spot08_room_0DL_0069C0[] __attribute__((aligned (2))) = dspot08_room_0DL_0069C0; -#endif - -#define dspot08_room_0Set_000700DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0051E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_0051E8[] = dspot08_room_0Set_000700DL_0051E8; -#else -static const char spot08_room_0Set_000700DL_0051E8[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_0051E8; -#endif - -#define dspot08_room_0Set_000700DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_000DC0[] = dspot08_room_0Set_000700DL_000DC0; -#else -static const char spot08_room_0Set_000700DL_000DC0[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_000DC0; -#endif - -#define dspot08_room_0Set_000700DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_007840[] = dspot08_room_0Set_000700DL_007840; -#else -static const char spot08_room_0Set_000700DL_007840[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_007840; -#endif - -#define dspot08_room_0Set_000700DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_001068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_001068[] = dspot08_room_0Set_000700DL_001068; -#else -static const char spot08_room_0Set_000700DL_001068[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_001068; -#endif - -#define dspot08_room_0Set_000700DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0079F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_0079F0[] = dspot08_room_0Set_000700DL_0079F0; -#else -static const char spot08_room_0Set_000700DL_0079F0[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_0079F0; -#endif - -#define dspot08_room_0Set_000700DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0013B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_0013B8[] = dspot08_room_0Set_000700DL_0013B8; -#else -static const char spot08_room_0Set_000700DL_0013B8[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_0013B8; -#endif - -#define dspot08_room_0Set_000700DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_007BA0[] = dspot08_room_0Set_000700DL_007BA0; -#else -static const char spot08_room_0Set_000700DL_007BA0[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_007BA0; -#endif - -#define dspot08_room_0Set_000700DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_005B00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_005B00[] = dspot08_room_0Set_000700DL_005B00; -#else -static const char spot08_room_0Set_000700DL_005B00[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_005B00; -#endif - -#define dspot08_room_0Set_000700DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_007478[] = dspot08_room_0Set_000700DL_007478; -#else -static const char spot08_room_0Set_000700DL_007478[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_007478; -#endif - -#define dspot08_room_0Set_000700DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_001978" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_001978[] = dspot08_room_0Set_000700DL_001978; -#else -static const char spot08_room_0Set_000700DL_001978[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_001978; -#endif - -#define dspot08_room_0Set_000700DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_002120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_002120[] = dspot08_room_0Set_000700DL_002120; -#else -static const char spot08_room_0Set_000700DL_002120[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_002120; -#endif - -#define dspot08_room_0Set_000700DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_002538" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_002538[] = dspot08_room_0Set_000700DL_002538; -#else -static const char spot08_room_0Set_000700DL_002538[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_002538; -#endif - -#define dspot08_room_0Set_000700DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_006120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_006120[] = dspot08_room_0Set_000700DL_006120; -#else -static const char spot08_room_0Set_000700DL_006120[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_006120; -#endif - -#define dspot08_room_0Set_000700DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0066F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_0066F8[] = dspot08_room_0Set_000700DL_0066F8; -#else -static const char spot08_room_0Set_000700DL_0066F8[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_0066F8; -#endif - -#define dspot08_room_0Set_000700DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_006C48[] = dspot08_room_0Set_000700DL_006C48; -#else -static const char spot08_room_0Set_000700DL_006C48[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_006C48; -#endif - -#define dspot08_room_0Set_000700DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_003048[] = dspot08_room_0Set_000700DL_003048; -#else -static const char spot08_room_0Set_000700DL_003048[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_003048; -#endif - -#define dspot08_room_0Set_000700DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0015F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_0015F0[] = dspot08_room_0Set_000700DL_0015F0; -#else -static const char spot08_room_0Set_000700DL_0015F0[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_0015F0; -#endif - -#define dspot08_room_0Set_000700DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_007D30[] = dspot08_room_0Set_000700DL_007D30; -#else -static const char spot08_room_0Set_000700DL_007D30[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_007D30; -#endif - -#define dspot08_room_0Set_000700DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_007FE8[] = dspot08_room_0Set_000700DL_007FE8; -#else -static const char spot08_room_0Set_000700DL_007FE8[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_007FE8; -#endif - -#define dspot08_room_0Set_000700DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_0048B0[] = dspot08_room_0Set_000700DL_0048B0; -#else -static const char spot08_room_0Set_000700DL_0048B0[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_0048B0; -#endif - -#define dspot08_room_0Set_000700DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0069C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000700DL_0069C0[] = dspot08_room_0Set_000700DL_0069C0; -#else -static const char spot08_room_0Set_000700DL_0069C0[] __attribute__((aligned (2))) = dspot08_room_0Set_000700DL_0069C0; -#endif - -#define dspot08_room_0Set_000330DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0051E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_0051E8[] = dspot08_room_0Set_000330DL_0051E8; -#else -static const char spot08_room_0Set_000330DL_0051E8[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_0051E8; -#endif - -#define dspot08_room_0Set_000330DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_000DC0[] = dspot08_room_0Set_000330DL_000DC0; -#else -static const char spot08_room_0Set_000330DL_000DC0[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_000DC0; -#endif - -#define dspot08_room_0Set_000330DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_007840[] = dspot08_room_0Set_000330DL_007840; -#else -static const char spot08_room_0Set_000330DL_007840[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_007840; -#endif - -#define dspot08_room_0Set_000330DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_001068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_001068[] = dspot08_room_0Set_000330DL_001068; -#else -static const char spot08_room_0Set_000330DL_001068[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_001068; -#endif - -#define dspot08_room_0Set_000330DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0079F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_0079F0[] = dspot08_room_0Set_000330DL_0079F0; -#else -static const char spot08_room_0Set_000330DL_0079F0[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_0079F0; -#endif - -#define dspot08_room_0Set_000330DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0013B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_0013B8[] = dspot08_room_0Set_000330DL_0013B8; -#else -static const char spot08_room_0Set_000330DL_0013B8[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_0013B8; -#endif - -#define dspot08_room_0Set_000330DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_007BA0[] = dspot08_room_0Set_000330DL_007BA0; -#else -static const char spot08_room_0Set_000330DL_007BA0[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_007BA0; -#endif - -#define dspot08_room_0Set_000330DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_005B00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_005B00[] = dspot08_room_0Set_000330DL_005B00; -#else -static const char spot08_room_0Set_000330DL_005B00[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_005B00; -#endif - -#define dspot08_room_0Set_000330DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_007478[] = dspot08_room_0Set_000330DL_007478; -#else -static const char spot08_room_0Set_000330DL_007478[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_007478; -#endif - -#define dspot08_room_0Set_000330DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_001978" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_001978[] = dspot08_room_0Set_000330DL_001978; -#else -static const char spot08_room_0Set_000330DL_001978[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_001978; -#endif - -#define dspot08_room_0Set_000330DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_002120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_002120[] = dspot08_room_0Set_000330DL_002120; -#else -static const char spot08_room_0Set_000330DL_002120[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_002120; -#endif - -#define dspot08_room_0Set_000330DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_002538" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_002538[] = dspot08_room_0Set_000330DL_002538; -#else -static const char spot08_room_0Set_000330DL_002538[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_002538; -#endif - -#define dspot08_room_0Set_000330DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_006120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_006120[] = dspot08_room_0Set_000330DL_006120; -#else -static const char spot08_room_0Set_000330DL_006120[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_006120; -#endif - -#define dspot08_room_0Set_000330DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0066F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_0066F8[] = dspot08_room_0Set_000330DL_0066F8; -#else -static const char spot08_room_0Set_000330DL_0066F8[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_0066F8; -#endif - -#define dspot08_room_0Set_000330DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_006C48[] = dspot08_room_0Set_000330DL_006C48; -#else -static const char spot08_room_0Set_000330DL_006C48[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_006C48; -#endif - -#define dspot08_room_0Set_000330DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_003048[] = dspot08_room_0Set_000330DL_003048; -#else -static const char spot08_room_0Set_000330DL_003048[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_003048; -#endif - -#define dspot08_room_0Set_000330DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0015F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_0015F0[] = dspot08_room_0Set_000330DL_0015F0; -#else -static const char spot08_room_0Set_000330DL_0015F0[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_0015F0; -#endif - -#define dspot08_room_0Set_000330DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_007D30[] = dspot08_room_0Set_000330DL_007D30; -#else -static const char spot08_room_0Set_000330DL_007D30[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_007D30; -#endif - -#define dspot08_room_0Set_000330DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_007FE8[] = dspot08_room_0Set_000330DL_007FE8; -#else -static const char spot08_room_0Set_000330DL_007FE8[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_007FE8; -#endif - -#define dspot08_room_0Set_000330DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_0048B0[] = dspot08_room_0Set_000330DL_0048B0; -#else -static const char spot08_room_0Set_000330DL_0048B0[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_0048B0; -#endif - -#define dspot08_room_0Set_000330DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0069C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000330DL_0069C0[] = dspot08_room_0Set_000330DL_0069C0; -#else -static const char spot08_room_0Set_000330DL_0069C0[] __attribute__((aligned (2))) = dspot08_room_0Set_000330DL_0069C0; -#endif - -#define dspot08_room_0Set_0008E0DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0051E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_0051E8[] = dspot08_room_0Set_0008E0DL_0051E8; -#else -static const char spot08_room_0Set_0008E0DL_0051E8[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_0051E8; -#endif - -#define dspot08_room_0Set_0008E0DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_000DC0[] = dspot08_room_0Set_0008E0DL_000DC0; -#else -static const char spot08_room_0Set_0008E0DL_000DC0[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_000DC0; -#endif - -#define dspot08_room_0Set_0008E0DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_007840[] = dspot08_room_0Set_0008E0DL_007840; -#else -static const char spot08_room_0Set_0008E0DL_007840[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_007840; -#endif - -#define dspot08_room_0Set_0008E0DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_001068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_001068[] = dspot08_room_0Set_0008E0DL_001068; -#else -static const char spot08_room_0Set_0008E0DL_001068[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_001068; -#endif - -#define dspot08_room_0Set_0008E0DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0079F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_0079F0[] = dspot08_room_0Set_0008E0DL_0079F0; -#else -static const char spot08_room_0Set_0008E0DL_0079F0[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_0079F0; -#endif - -#define dspot08_room_0Set_0008E0DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0013B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_0013B8[] = dspot08_room_0Set_0008E0DL_0013B8; -#else -static const char spot08_room_0Set_0008E0DL_0013B8[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_0013B8; -#endif - -#define dspot08_room_0Set_0008E0DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_007BA0[] = dspot08_room_0Set_0008E0DL_007BA0; -#else -static const char spot08_room_0Set_0008E0DL_007BA0[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_007BA0; -#endif - -#define dspot08_room_0Set_0008E0DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_005B00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_005B00[] = dspot08_room_0Set_0008E0DL_005B00; -#else -static const char spot08_room_0Set_0008E0DL_005B00[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_005B00; -#endif - -#define dspot08_room_0Set_0008E0DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_007478[] = dspot08_room_0Set_0008E0DL_007478; -#else -static const char spot08_room_0Set_0008E0DL_007478[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_007478; -#endif - -#define dspot08_room_0Set_0008E0DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_001978" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_001978[] = dspot08_room_0Set_0008E0DL_001978; -#else -static const char spot08_room_0Set_0008E0DL_001978[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_001978; -#endif - -#define dspot08_room_0Set_0008E0DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_002120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_002120[] = dspot08_room_0Set_0008E0DL_002120; -#else -static const char spot08_room_0Set_0008E0DL_002120[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_002120; -#endif - -#define dspot08_room_0Set_0008E0DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_002538" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_002538[] = dspot08_room_0Set_0008E0DL_002538; -#else -static const char spot08_room_0Set_0008E0DL_002538[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_002538; -#endif - -#define dspot08_room_0Set_0008E0DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_006120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_006120[] = dspot08_room_0Set_0008E0DL_006120; -#else -static const char spot08_room_0Set_0008E0DL_006120[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_006120; -#endif - -#define dspot08_room_0Set_0008E0DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0066F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_0066F8[] = dspot08_room_0Set_0008E0DL_0066F8; -#else -static const char spot08_room_0Set_0008E0DL_0066F8[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_0066F8; -#endif - -#define dspot08_room_0Set_0008E0DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_006C48[] = dspot08_room_0Set_0008E0DL_006C48; -#else -static const char spot08_room_0Set_0008E0DL_006C48[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_006C48; -#endif - -#define dspot08_room_0Set_0008E0DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_003048[] = dspot08_room_0Set_0008E0DL_003048; -#else -static const char spot08_room_0Set_0008E0DL_003048[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_003048; -#endif - -#define dspot08_room_0Set_0008E0DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0015F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_0015F0[] = dspot08_room_0Set_0008E0DL_0015F0; -#else -static const char spot08_room_0Set_0008E0DL_0015F0[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_0015F0; -#endif - -#define dspot08_room_0Set_0008E0DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_007D30[] = dspot08_room_0Set_0008E0DL_007D30; -#else -static const char spot08_room_0Set_0008E0DL_007D30[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_007D30; -#endif - -#define dspot08_room_0Set_0008E0DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_007FE8[] = dspot08_room_0Set_0008E0DL_007FE8; -#else -static const char spot08_room_0Set_0008E0DL_007FE8[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_007FE8; -#endif - -#define dspot08_room_0Set_0008E0DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_0048B0[] = dspot08_room_0Set_0008E0DL_0048B0; -#else -static const char spot08_room_0Set_0008E0DL_0048B0[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_0048B0; -#endif - -#define dspot08_room_0Set_0008E0DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0069C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0008E0DL_0069C0[] = dspot08_room_0Set_0008E0DL_0069C0; -#else -static const char spot08_room_0Set_0008E0DL_0069C0[] __attribute__((aligned (2))) = dspot08_room_0Set_0008E0DL_0069C0; -#endif - -#define dspot08_room_0Set_0009A0DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0051E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_0051E8[] = dspot08_room_0Set_0009A0DL_0051E8; -#else -static const char spot08_room_0Set_0009A0DL_0051E8[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_0051E8; -#endif - -#define dspot08_room_0Set_0009A0DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_000DC0[] = dspot08_room_0Set_0009A0DL_000DC0; -#else -static const char spot08_room_0Set_0009A0DL_000DC0[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_000DC0; -#endif - -#define dspot08_room_0Set_0009A0DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_007840[] = dspot08_room_0Set_0009A0DL_007840; -#else -static const char spot08_room_0Set_0009A0DL_007840[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_007840; -#endif - -#define dspot08_room_0Set_0009A0DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_001068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_001068[] = dspot08_room_0Set_0009A0DL_001068; -#else -static const char spot08_room_0Set_0009A0DL_001068[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_001068; -#endif - -#define dspot08_room_0Set_0009A0DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0079F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_0079F0[] = dspot08_room_0Set_0009A0DL_0079F0; -#else -static const char spot08_room_0Set_0009A0DL_0079F0[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_0079F0; -#endif - -#define dspot08_room_0Set_0009A0DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0013B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_0013B8[] = dspot08_room_0Set_0009A0DL_0013B8; -#else -static const char spot08_room_0Set_0009A0DL_0013B8[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_0013B8; -#endif - -#define dspot08_room_0Set_0009A0DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_007BA0[] = dspot08_room_0Set_0009A0DL_007BA0; -#else -static const char spot08_room_0Set_0009A0DL_007BA0[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_007BA0; -#endif - -#define dspot08_room_0Set_0009A0DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_005B00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_005B00[] = dspot08_room_0Set_0009A0DL_005B00; -#else -static const char spot08_room_0Set_0009A0DL_005B00[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_005B00; -#endif - -#define dspot08_room_0Set_0009A0DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_007478[] = dspot08_room_0Set_0009A0DL_007478; -#else -static const char spot08_room_0Set_0009A0DL_007478[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_007478; -#endif - -#define dspot08_room_0Set_0009A0DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_001978" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_001978[] = dspot08_room_0Set_0009A0DL_001978; -#else -static const char spot08_room_0Set_0009A0DL_001978[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_001978; -#endif - -#define dspot08_room_0Set_0009A0DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_002120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_002120[] = dspot08_room_0Set_0009A0DL_002120; -#else -static const char spot08_room_0Set_0009A0DL_002120[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_002120; -#endif - -#define dspot08_room_0Set_0009A0DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_002538" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_002538[] = dspot08_room_0Set_0009A0DL_002538; -#else -static const char spot08_room_0Set_0009A0DL_002538[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_002538; -#endif - -#define dspot08_room_0Set_0009A0DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_006120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_006120[] = dspot08_room_0Set_0009A0DL_006120; -#else -static const char spot08_room_0Set_0009A0DL_006120[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_006120; -#endif - -#define dspot08_room_0Set_0009A0DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0066F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_0066F8[] = dspot08_room_0Set_0009A0DL_0066F8; -#else -static const char spot08_room_0Set_0009A0DL_0066F8[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_0066F8; -#endif - -#define dspot08_room_0Set_0009A0DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_006C48[] = dspot08_room_0Set_0009A0DL_006C48; -#else -static const char spot08_room_0Set_0009A0DL_006C48[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_006C48; -#endif - -#define dspot08_room_0Set_0009A0DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_003048[] = dspot08_room_0Set_0009A0DL_003048; -#else -static const char spot08_room_0Set_0009A0DL_003048[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_003048; -#endif - -#define dspot08_room_0Set_0009A0DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0015F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_0015F0[] = dspot08_room_0Set_0009A0DL_0015F0; -#else -static const char spot08_room_0Set_0009A0DL_0015F0[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_0015F0; -#endif - -#define dspot08_room_0Set_0009A0DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_007D30[] = dspot08_room_0Set_0009A0DL_007D30; -#else -static const char spot08_room_0Set_0009A0DL_007D30[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_007D30; -#endif - -#define dspot08_room_0Set_0009A0DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_007FE8[] = dspot08_room_0Set_0009A0DL_007FE8; -#else -static const char spot08_room_0Set_0009A0DL_007FE8[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_007FE8; -#endif - -#define dspot08_room_0Set_0009A0DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_0048B0[] = dspot08_room_0Set_0009A0DL_0048B0; -#else -static const char spot08_room_0Set_0009A0DL_0048B0[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_0048B0; -#endif - -#define dspot08_room_0Set_0009A0DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0069C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_0009A0DL_0069C0[] = dspot08_room_0Set_0009A0DL_0069C0; -#else -static const char spot08_room_0Set_0009A0DL_0069C0[] __attribute__((aligned (2))) = dspot08_room_0Set_0009A0DL_0069C0; -#endif - -#define dspot08_room_0Set_000AD0DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0051E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_0051E8[] = dspot08_room_0Set_000AD0DL_0051E8; -#else -static const char spot08_room_0Set_000AD0DL_0051E8[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_0051E8; -#endif - -#define dspot08_room_0Set_000AD0DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_000DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_000DC0[] = dspot08_room_0Set_000AD0DL_000DC0; -#else -static const char spot08_room_0Set_000AD0DL_000DC0[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_000DC0; -#endif - -#define dspot08_room_0Set_000AD0DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007840" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_007840[] = dspot08_room_0Set_000AD0DL_007840; -#else -static const char spot08_room_0Set_000AD0DL_007840[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_007840; -#endif - -#define dspot08_room_0Set_000AD0DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_001068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_001068[] = dspot08_room_0Set_000AD0DL_001068; -#else -static const char spot08_room_0Set_000AD0DL_001068[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_001068; -#endif - -#define dspot08_room_0Set_000AD0DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0079F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_0079F0[] = dspot08_room_0Set_000AD0DL_0079F0; -#else -static const char spot08_room_0Set_000AD0DL_0079F0[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_0079F0; -#endif - -#define dspot08_room_0Set_000AD0DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0013B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_0013B8[] = dspot08_room_0Set_000AD0DL_0013B8; -#else -static const char spot08_room_0Set_000AD0DL_0013B8[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_0013B8; -#endif - -#define dspot08_room_0Set_000AD0DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_007BA0[] = dspot08_room_0Set_000AD0DL_007BA0; -#else -static const char spot08_room_0Set_000AD0DL_007BA0[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_007BA0; -#endif - -#define dspot08_room_0Set_000AD0DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_005B00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_005B00[] = dspot08_room_0Set_000AD0DL_005B00; -#else -static const char spot08_room_0Set_000AD0DL_005B00[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_005B00; -#endif - -#define dspot08_room_0Set_000AD0DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_007478[] = dspot08_room_0Set_000AD0DL_007478; -#else -static const char spot08_room_0Set_000AD0DL_007478[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_007478; -#endif - -#define dspot08_room_0Set_000AD0DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_001978" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_001978[] = dspot08_room_0Set_000AD0DL_001978; -#else -static const char spot08_room_0Set_000AD0DL_001978[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_001978; -#endif - -#define dspot08_room_0Set_000AD0DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_002120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_002120[] = dspot08_room_0Set_000AD0DL_002120; -#else -static const char spot08_room_0Set_000AD0DL_002120[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_002120; -#endif - -#define dspot08_room_0Set_000AD0DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_002538" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_002538[] = dspot08_room_0Set_000AD0DL_002538; -#else -static const char spot08_room_0Set_000AD0DL_002538[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_002538; -#endif - -#define dspot08_room_0Set_000AD0DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_006120" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_006120[] = dspot08_room_0Set_000AD0DL_006120; -#else -static const char spot08_room_0Set_000AD0DL_006120[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_006120; -#endif - -#define dspot08_room_0Set_000AD0DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0066F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_0066F8[] = dspot08_room_0Set_000AD0DL_0066F8; -#else -static const char spot08_room_0Set_000AD0DL_0066F8[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_0066F8; -#endif - -#define dspot08_room_0Set_000AD0DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_006C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_006C48[] = dspot08_room_0Set_000AD0DL_006C48; -#else -static const char spot08_room_0Set_000AD0DL_006C48[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_006C48; -#endif - -#define dspot08_room_0Set_000AD0DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_003048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_003048[] = dspot08_room_0Set_000AD0DL_003048; -#else -static const char spot08_room_0Set_000AD0DL_003048[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_003048; -#endif - -#define dspot08_room_0Set_000AD0DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0015F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_0015F0[] = dspot08_room_0Set_000AD0DL_0015F0; -#else -static const char spot08_room_0Set_000AD0DL_0015F0[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_0015F0; -#endif - -#define dspot08_room_0Set_000AD0DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_007D30[] = dspot08_room_0Set_000AD0DL_007D30; -#else -static const char spot08_room_0Set_000AD0DL_007D30[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_007D30; -#endif - -#define dspot08_room_0Set_000AD0DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_007FE8[] = dspot08_room_0Set_000AD0DL_007FE8; -#else -static const char spot08_room_0Set_000AD0DL_007FE8[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_007FE8; -#endif - -#define dspot08_room_0Set_000AD0DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0048B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_0048B0[] = dspot08_room_0Set_000AD0DL_0048B0; -#else -static const char spot08_room_0Set_000AD0DL_0048B0[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_0048B0; -#endif - -#define dspot08_room_0Set_000AD0DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0069C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_room_0Set_000AD0DL_0069C0[] = dspot08_room_0Set_000AD0DL_0069C0; -#else -static const char spot08_room_0Set_000AD0DL_0069C0[] __attribute__((aligned (2))) = dspot08_room_0Set_000AD0DL_0069C0; -#endif - +#include "align_asset_macro.h" + +#define dspot08_room_0DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0051E8" +static const ALIGN_ASSET(2) char spot08_room_0DL_0051E8[] = dspot08_room_0DL_0051E8; + +#define dspot08_room_0DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_000DC0" +static const ALIGN_ASSET(2) char spot08_room_0DL_000DC0[] = dspot08_room_0DL_000DC0; + +#define dspot08_room_0DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007840" +static const ALIGN_ASSET(2) char spot08_room_0DL_007840[] = dspot08_room_0DL_007840; + +#define dspot08_room_0DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_001068" +static const ALIGN_ASSET(2) char spot08_room_0DL_001068[] = dspot08_room_0DL_001068; + +#define dspot08_room_0DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0079F0" +static const ALIGN_ASSET(2) char spot08_room_0DL_0079F0[] = dspot08_room_0DL_0079F0; + +#define dspot08_room_0DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0013B8" +static const ALIGN_ASSET(2) char spot08_room_0DL_0013B8[] = dspot08_room_0DL_0013B8; + +#define dspot08_room_0DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007BA0" +static const ALIGN_ASSET(2) char spot08_room_0DL_007BA0[] = dspot08_room_0DL_007BA0; + +#define dspot08_room_0DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_005B00" +static const ALIGN_ASSET(2) char spot08_room_0DL_005B00[] = dspot08_room_0DL_005B00; + +#define dspot08_room_0DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007478" +static const ALIGN_ASSET(2) char spot08_room_0DL_007478[] = dspot08_room_0DL_007478; + +#define dspot08_room_0DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_001978" +static const ALIGN_ASSET(2) char spot08_room_0DL_001978[] = dspot08_room_0DL_001978; + +#define dspot08_room_0DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_002120" +static const ALIGN_ASSET(2) char spot08_room_0DL_002120[] = dspot08_room_0DL_002120; + +#define dspot08_room_0DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_002538" +static const ALIGN_ASSET(2) char spot08_room_0DL_002538[] = dspot08_room_0DL_002538; + +#define dspot08_room_0DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_006120" +static const ALIGN_ASSET(2) char spot08_room_0DL_006120[] = dspot08_room_0DL_006120; + +#define dspot08_room_0DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0066F8" +static const ALIGN_ASSET(2) char spot08_room_0DL_0066F8[] = dspot08_room_0DL_0066F8; + +#define dspot08_room_0DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_006C48" +static const ALIGN_ASSET(2) char spot08_room_0DL_006C48[] = dspot08_room_0DL_006C48; + +#define dspot08_room_0DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_003048" +static const ALIGN_ASSET(2) char spot08_room_0DL_003048[] = dspot08_room_0DL_003048; + +#define dspot08_room_0DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0015F0" +static const ALIGN_ASSET(2) char spot08_room_0DL_0015F0[] = dspot08_room_0DL_0015F0; + +#define dspot08_room_0DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007D30" +static const ALIGN_ASSET(2) char spot08_room_0DL_007D30[] = dspot08_room_0DL_007D30; + +#define dspot08_room_0DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_007FE8" +static const ALIGN_ASSET(2) char spot08_room_0DL_007FE8[] = dspot08_room_0DL_007FE8; + +#define dspot08_room_0DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0048B0" +static const ALIGN_ASSET(2) char spot08_room_0DL_0048B0[] = dspot08_room_0DL_0048B0; + +#define dspot08_room_0DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0DL_0069C0" +static const ALIGN_ASSET(2) char spot08_room_0DL_0069C0[] = dspot08_room_0DL_0069C0; + +#define dspot08_room_0Set_000700DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0051E8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_0051E8[] = dspot08_room_0Set_000700DL_0051E8; + +#define dspot08_room_0Set_000700DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_000DC0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_000DC0[] = dspot08_room_0Set_000700DL_000DC0; + +#define dspot08_room_0Set_000700DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007840" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_007840[] = dspot08_room_0Set_000700DL_007840; + +#define dspot08_room_0Set_000700DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_001068" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_001068[] = dspot08_room_0Set_000700DL_001068; + +#define dspot08_room_0Set_000700DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0079F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_0079F0[] = dspot08_room_0Set_000700DL_0079F0; + +#define dspot08_room_0Set_000700DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0013B8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_0013B8[] = dspot08_room_0Set_000700DL_0013B8; + +#define dspot08_room_0Set_000700DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007BA0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_007BA0[] = dspot08_room_0Set_000700DL_007BA0; + +#define dspot08_room_0Set_000700DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_005B00" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_005B00[] = dspot08_room_0Set_000700DL_005B00; + +#define dspot08_room_0Set_000700DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007478" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_007478[] = dspot08_room_0Set_000700DL_007478; + +#define dspot08_room_0Set_000700DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_001978" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_001978[] = dspot08_room_0Set_000700DL_001978; + +#define dspot08_room_0Set_000700DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_002120" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_002120[] = dspot08_room_0Set_000700DL_002120; + +#define dspot08_room_0Set_000700DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_002538" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_002538[] = dspot08_room_0Set_000700DL_002538; + +#define dspot08_room_0Set_000700DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_006120" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_006120[] = dspot08_room_0Set_000700DL_006120; + +#define dspot08_room_0Set_000700DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0066F8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_0066F8[] = dspot08_room_0Set_000700DL_0066F8; + +#define dspot08_room_0Set_000700DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_006C48" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_006C48[] = dspot08_room_0Set_000700DL_006C48; + +#define dspot08_room_0Set_000700DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_003048" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_003048[] = dspot08_room_0Set_000700DL_003048; + +#define dspot08_room_0Set_000700DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0015F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_0015F0[] = dspot08_room_0Set_000700DL_0015F0; + +#define dspot08_room_0Set_000700DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007D30" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_007D30[] = dspot08_room_0Set_000700DL_007D30; + +#define dspot08_room_0Set_000700DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_007FE8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_007FE8[] = dspot08_room_0Set_000700DL_007FE8; + +#define dspot08_room_0Set_000700DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0048B0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_0048B0[] = dspot08_room_0Set_000700DL_0048B0; + +#define dspot08_room_0Set_000700DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000700DL_0069C0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000700DL_0069C0[] = dspot08_room_0Set_000700DL_0069C0; + +#define dspot08_room_0Set_000330DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0051E8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_0051E8[] = dspot08_room_0Set_000330DL_0051E8; + +#define dspot08_room_0Set_000330DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_000DC0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_000DC0[] = dspot08_room_0Set_000330DL_000DC0; + +#define dspot08_room_0Set_000330DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007840" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_007840[] = dspot08_room_0Set_000330DL_007840; + +#define dspot08_room_0Set_000330DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_001068" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_001068[] = dspot08_room_0Set_000330DL_001068; + +#define dspot08_room_0Set_000330DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0079F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_0079F0[] = dspot08_room_0Set_000330DL_0079F0; + +#define dspot08_room_0Set_000330DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0013B8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_0013B8[] = dspot08_room_0Set_000330DL_0013B8; + +#define dspot08_room_0Set_000330DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007BA0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_007BA0[] = dspot08_room_0Set_000330DL_007BA0; + +#define dspot08_room_0Set_000330DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_005B00" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_005B00[] = dspot08_room_0Set_000330DL_005B00; + +#define dspot08_room_0Set_000330DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007478" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_007478[] = dspot08_room_0Set_000330DL_007478; + +#define dspot08_room_0Set_000330DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_001978" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_001978[] = dspot08_room_0Set_000330DL_001978; + +#define dspot08_room_0Set_000330DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_002120" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_002120[] = dspot08_room_0Set_000330DL_002120; + +#define dspot08_room_0Set_000330DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_002538" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_002538[] = dspot08_room_0Set_000330DL_002538; + +#define dspot08_room_0Set_000330DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_006120" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_006120[] = dspot08_room_0Set_000330DL_006120; + +#define dspot08_room_0Set_000330DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0066F8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_0066F8[] = dspot08_room_0Set_000330DL_0066F8; + +#define dspot08_room_0Set_000330DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_006C48" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_006C48[] = dspot08_room_0Set_000330DL_006C48; + +#define dspot08_room_0Set_000330DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_003048" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_003048[] = dspot08_room_0Set_000330DL_003048; + +#define dspot08_room_0Set_000330DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0015F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_0015F0[] = dspot08_room_0Set_000330DL_0015F0; + +#define dspot08_room_0Set_000330DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007D30" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_007D30[] = dspot08_room_0Set_000330DL_007D30; + +#define dspot08_room_0Set_000330DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_007FE8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_007FE8[] = dspot08_room_0Set_000330DL_007FE8; + +#define dspot08_room_0Set_000330DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0048B0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_0048B0[] = dspot08_room_0Set_000330DL_0048B0; + +#define dspot08_room_0Set_000330DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000330DL_0069C0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000330DL_0069C0[] = dspot08_room_0Set_000330DL_0069C0; + +#define dspot08_room_0Set_0008E0DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0051E8" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_0051E8[] = dspot08_room_0Set_0008E0DL_0051E8; + +#define dspot08_room_0Set_0008E0DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_000DC0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_000DC0[] = dspot08_room_0Set_0008E0DL_000DC0; + +#define dspot08_room_0Set_0008E0DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007840" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_007840[] = dspot08_room_0Set_0008E0DL_007840; + +#define dspot08_room_0Set_0008E0DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_001068" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_001068[] = dspot08_room_0Set_0008E0DL_001068; + +#define dspot08_room_0Set_0008E0DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0079F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_0079F0[] = dspot08_room_0Set_0008E0DL_0079F0; + +#define dspot08_room_0Set_0008E0DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0013B8" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_0013B8[] = dspot08_room_0Set_0008E0DL_0013B8; + +#define dspot08_room_0Set_0008E0DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007BA0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_007BA0[] = dspot08_room_0Set_0008E0DL_007BA0; + +#define dspot08_room_0Set_0008E0DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_005B00" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_005B00[] = dspot08_room_0Set_0008E0DL_005B00; + +#define dspot08_room_0Set_0008E0DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007478" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_007478[] = dspot08_room_0Set_0008E0DL_007478; + +#define dspot08_room_0Set_0008E0DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_001978" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_001978[] = dspot08_room_0Set_0008E0DL_001978; + +#define dspot08_room_0Set_0008E0DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_002120" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_002120[] = dspot08_room_0Set_0008E0DL_002120; + +#define dspot08_room_0Set_0008E0DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_002538" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_002538[] = dspot08_room_0Set_0008E0DL_002538; + +#define dspot08_room_0Set_0008E0DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_006120" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_006120[] = dspot08_room_0Set_0008E0DL_006120; + +#define dspot08_room_0Set_0008E0DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0066F8" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_0066F8[] = dspot08_room_0Set_0008E0DL_0066F8; + +#define dspot08_room_0Set_0008E0DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_006C48" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_006C48[] = dspot08_room_0Set_0008E0DL_006C48; + +#define dspot08_room_0Set_0008E0DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_003048" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_003048[] = dspot08_room_0Set_0008E0DL_003048; + +#define dspot08_room_0Set_0008E0DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0015F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_0015F0[] = dspot08_room_0Set_0008E0DL_0015F0; + +#define dspot08_room_0Set_0008E0DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007D30" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_007D30[] = dspot08_room_0Set_0008E0DL_007D30; + +#define dspot08_room_0Set_0008E0DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_007FE8" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_007FE8[] = dspot08_room_0Set_0008E0DL_007FE8; + +#define dspot08_room_0Set_0008E0DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0048B0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_0048B0[] = dspot08_room_0Set_0008E0DL_0048B0; + +#define dspot08_room_0Set_0008E0DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0008E0DL_0069C0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0008E0DL_0069C0[] = dspot08_room_0Set_0008E0DL_0069C0; + +#define dspot08_room_0Set_0009A0DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0051E8" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_0051E8[] = dspot08_room_0Set_0009A0DL_0051E8; + +#define dspot08_room_0Set_0009A0DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_000DC0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_000DC0[] = dspot08_room_0Set_0009A0DL_000DC0; + +#define dspot08_room_0Set_0009A0DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007840" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_007840[] = dspot08_room_0Set_0009A0DL_007840; + +#define dspot08_room_0Set_0009A0DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_001068" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_001068[] = dspot08_room_0Set_0009A0DL_001068; + +#define dspot08_room_0Set_0009A0DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0079F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_0079F0[] = dspot08_room_0Set_0009A0DL_0079F0; + +#define dspot08_room_0Set_0009A0DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0013B8" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_0013B8[] = dspot08_room_0Set_0009A0DL_0013B8; + +#define dspot08_room_0Set_0009A0DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007BA0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_007BA0[] = dspot08_room_0Set_0009A0DL_007BA0; + +#define dspot08_room_0Set_0009A0DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_005B00" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_005B00[] = dspot08_room_0Set_0009A0DL_005B00; + +#define dspot08_room_0Set_0009A0DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007478" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_007478[] = dspot08_room_0Set_0009A0DL_007478; + +#define dspot08_room_0Set_0009A0DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_001978" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_001978[] = dspot08_room_0Set_0009A0DL_001978; + +#define dspot08_room_0Set_0009A0DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_002120" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_002120[] = dspot08_room_0Set_0009A0DL_002120; + +#define dspot08_room_0Set_0009A0DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_002538" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_002538[] = dspot08_room_0Set_0009A0DL_002538; + +#define dspot08_room_0Set_0009A0DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_006120" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_006120[] = dspot08_room_0Set_0009A0DL_006120; + +#define dspot08_room_0Set_0009A0DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0066F8" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_0066F8[] = dspot08_room_0Set_0009A0DL_0066F8; + +#define dspot08_room_0Set_0009A0DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_006C48" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_006C48[] = dspot08_room_0Set_0009A0DL_006C48; + +#define dspot08_room_0Set_0009A0DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_003048" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_003048[] = dspot08_room_0Set_0009A0DL_003048; + +#define dspot08_room_0Set_0009A0DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0015F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_0015F0[] = dspot08_room_0Set_0009A0DL_0015F0; + +#define dspot08_room_0Set_0009A0DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007D30" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_007D30[] = dspot08_room_0Set_0009A0DL_007D30; + +#define dspot08_room_0Set_0009A0DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_007FE8" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_007FE8[] = dspot08_room_0Set_0009A0DL_007FE8; + +#define dspot08_room_0Set_0009A0DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0048B0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_0048B0[] = dspot08_room_0Set_0009A0DL_0048B0; + +#define dspot08_room_0Set_0009A0DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_0009A0DL_0069C0" +static const ALIGN_ASSET(2) char spot08_room_0Set_0009A0DL_0069C0[] = dspot08_room_0Set_0009A0DL_0069C0; + +#define dspot08_room_0Set_000AD0DL_0051E8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0051E8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_0051E8[] = dspot08_room_0Set_000AD0DL_0051E8; + +#define dspot08_room_0Set_000AD0DL_000DC0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_000DC0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_000DC0[] = dspot08_room_0Set_000AD0DL_000DC0; + +#define dspot08_room_0Set_000AD0DL_007840 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007840" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_007840[] = dspot08_room_0Set_000AD0DL_007840; + +#define dspot08_room_0Set_000AD0DL_001068 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_001068" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_001068[] = dspot08_room_0Set_000AD0DL_001068; + +#define dspot08_room_0Set_000AD0DL_0079F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0079F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_0079F0[] = dspot08_room_0Set_000AD0DL_0079F0; + +#define dspot08_room_0Set_000AD0DL_0013B8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0013B8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_0013B8[] = dspot08_room_0Set_000AD0DL_0013B8; + +#define dspot08_room_0Set_000AD0DL_007BA0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007BA0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_007BA0[] = dspot08_room_0Set_000AD0DL_007BA0; + +#define dspot08_room_0Set_000AD0DL_005B00 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_005B00" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_005B00[] = dspot08_room_0Set_000AD0DL_005B00; + +#define dspot08_room_0Set_000AD0DL_007478 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007478" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_007478[] = dspot08_room_0Set_000AD0DL_007478; + +#define dspot08_room_0Set_000AD0DL_001978 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_001978" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_001978[] = dspot08_room_0Set_000AD0DL_001978; + +#define dspot08_room_0Set_000AD0DL_002120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_002120" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_002120[] = dspot08_room_0Set_000AD0DL_002120; + +#define dspot08_room_0Set_000AD0DL_002538 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_002538" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_002538[] = dspot08_room_0Set_000AD0DL_002538; + +#define dspot08_room_0Set_000AD0DL_006120 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_006120" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_006120[] = dspot08_room_0Set_000AD0DL_006120; + +#define dspot08_room_0Set_000AD0DL_0066F8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0066F8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_0066F8[] = dspot08_room_0Set_000AD0DL_0066F8; + +#define dspot08_room_0Set_000AD0DL_006C48 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_006C48" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_006C48[] = dspot08_room_0Set_000AD0DL_006C48; + +#define dspot08_room_0Set_000AD0DL_003048 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_003048" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_003048[] = dspot08_room_0Set_000AD0DL_003048; + +#define dspot08_room_0Set_000AD0DL_0015F0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0015F0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_0015F0[] = dspot08_room_0Set_000AD0DL_0015F0; + +#define dspot08_room_0Set_000AD0DL_007D30 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007D30" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_007D30[] = dspot08_room_0Set_000AD0DL_007D30; + +#define dspot08_room_0Set_000AD0DL_007FE8 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_007FE8" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_007FE8[] = dspot08_room_0Set_000AD0DL_007FE8; + +#define dspot08_room_0Set_000AD0DL_0048B0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0048B0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_0048B0[] = dspot08_room_0Set_000AD0DL_0048B0; + +#define dspot08_room_0Set_000AD0DL_0069C0 "__OTR__scenes/nonmq/spot08_scene/spot08_room_0Set_000AD0DL_0069C0" +static const ALIGN_ASSET(2) char spot08_room_0Set_000AD0DL_0069C0[] = dspot08_room_0Set_000AD0DL_0069C0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot08/spot08_scene.h b/soh/assets/scenes/overworld/spot08/spot08_scene.h index 530caf143..f5d17dbfd 100644 --- a/soh/assets/scenes/overworld/spot08/spot08_scene.h +++ b/soh/assets/scenes/overworld/spot08/spot08_scene.h @@ -1,210 +1,100 @@ #pragma once + +#include "align_asset_macro.h" + #define dgZorasFountainIntroCs "__OTR__scenes/nonmq/spot08_scene/gZorasFountainIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainIntroCs[] = dgZorasFountainIntroCs; -#else -static const char gZorasFountainIntroCs[] __attribute__((aligned (2))) = dgZorasFountainIntroCs; -#endif - +static const ALIGN_ASSET(2) char gZorasFountainIntroCs[] = dgZorasFountainIntroCs; + #define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneCollisionHeader_002CE0[] = dspot08_sceneCollisionHeader_002CE0; -#else -static const char spot08_sceneCollisionHeader_002CE0[] __attribute__((aligned (2))) = dspot08_sceneCollisionHeader_002CE0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneCollisionHeader_002CE0[] = dspot08_sceneCollisionHeader_002CE0; + #define dspot08_sceneTex_0081A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_0081A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_0081A0[] = dspot08_sceneTex_0081A0; -#else -static const char spot08_sceneTex_0081A0[] __attribute__((aligned (2))) = dspot08_sceneTex_0081A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_0081A0[] = dspot08_sceneTex_0081A0; + #define dspot08_sceneTLUT_004CC0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTLUT_004CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTLUT_004CC0[] = dspot08_sceneTLUT_004CC0; -#else -static const char spot08_sceneTLUT_004CC0[] __attribute__((aligned (2))) = dspot08_sceneTLUT_004CC0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTLUT_004CC0[] = dspot08_sceneTLUT_004CC0; + #define dspot08_sceneTex_0069A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_0069A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_0069A0[] = dspot08_sceneTex_0069A0; -#else -static const char spot08_sceneTex_0069A0[] __attribute__((aligned (2))) = dspot08_sceneTex_0069A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_0069A0[] = dspot08_sceneTex_0069A0; + #define dspot08_sceneTex_0109A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_0109A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_0109A0[] = dspot08_sceneTex_0109A0; -#else -static const char spot08_sceneTex_0109A0[] __attribute__((aligned (2))) = dspot08_sceneTex_0109A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_0109A0[] = dspot08_sceneTex_0109A0; + #define dspot08_sceneTex_004DA0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_004DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_004DA0[] = dspot08_sceneTex_004DA0; -#else -static const char spot08_sceneTex_004DA0[] __attribute__((aligned (2))) = dspot08_sceneTex_004DA0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_004DA0[] = dspot08_sceneTex_004DA0; + #define dspot08_sceneTex_00B9A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00B9A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00B9A0[] = dspot08_sceneTex_00B9A0; -#else -static const char spot08_sceneTex_00B9A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00B9A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00B9A0[] = dspot08_sceneTex_00B9A0; + #define dspot08_sceneTLUT_004D38 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTLUT_004D38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTLUT_004D38[] = dspot08_sceneTLUT_004D38; -#else -static const char spot08_sceneTLUT_004D38[] __attribute__((aligned (2))) = dspot08_sceneTLUT_004D38; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTLUT_004D38[] = dspot08_sceneTLUT_004D38; + #define dspot08_sceneTex_00A9A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00A9A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00A9A0[] = dspot08_sceneTex_00A9A0; -#else -static const char spot08_sceneTex_00A9A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00A9A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00A9A0[] = dspot08_sceneTex_00A9A0; + #define dspot08_sceneTex_005DA0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_005DA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_005DA0[] = dspot08_sceneTex_005DA0; -#else -static const char spot08_sceneTex_005DA0[] __attribute__((aligned (2))) = dspot08_sceneTex_005DA0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_005DA0[] = dspot08_sceneTex_005DA0; + #define dspot08_sceneTex_00D1A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00D1A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00D1A0[] = dspot08_sceneTex_00D1A0; -#else -static const char spot08_sceneTex_00D1A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00D1A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00D1A0[] = dspot08_sceneTex_00D1A0; + #define dspot08_sceneTex_00C1A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00C1A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00C1A0[] = dspot08_sceneTex_00C1A0; -#else -static const char spot08_sceneTex_00C1A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00C1A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00C1A0[] = dspot08_sceneTex_00C1A0; + #define dspot08_sceneTex_010AA0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_010AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_010AA0[] = dspot08_sceneTex_010AA0; -#else -static const char spot08_sceneTex_010AA0[] __attribute__((aligned (2))) = dspot08_sceneTex_010AA0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_010AA0[] = dspot08_sceneTex_010AA0; + #define dspot08_sceneTex_0061A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_0061A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_0061A0[] = dspot08_sceneTex_0061A0; -#else -static const char spot08_sceneTex_0061A0[] __attribute__((aligned (2))) = dspot08_sceneTex_0061A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_0061A0[] = dspot08_sceneTex_0061A0; + #define dspot08_sceneTex_010EA0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_010EA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_010EA0[] = dspot08_sceneTex_010EA0; -#else -static const char spot08_sceneTex_010EA0[] __attribute__((aligned (2))) = dspot08_sceneTex_010EA0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_010EA0[] = dspot08_sceneTex_010EA0; + #define dspot08_sceneTex_00B1A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00B1A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00B1A0[] = dspot08_sceneTex_00B1A0; -#else -static const char spot08_sceneTex_00B1A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00B1A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00B1A0[] = dspot08_sceneTex_00B1A0; + #define dspot08_sceneTLUT_004D10 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTLUT_004D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTLUT_004D10[] = dspot08_sceneTLUT_004D10; -#else -static const char spot08_sceneTLUT_004D10[] __attribute__((aligned (2))) = dspot08_sceneTLUT_004D10; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTLUT_004D10[] = dspot08_sceneTLUT_004D10; + #define dspot08_sceneTex_00F1A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00F1A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00F1A0[] = dspot08_sceneTex_00F1A0; -#else -static const char spot08_sceneTex_00F1A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00F1A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00F1A0[] = dspot08_sceneTex_00F1A0; + #define dspot08_sceneTLUT_004D60 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTLUT_004D60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTLUT_004D60[] = dspot08_sceneTLUT_004D60; -#else -static const char spot08_sceneTLUT_004D60[] __attribute__((aligned (2))) = dspot08_sceneTLUT_004D60; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTLUT_004D60[] = dspot08_sceneTLUT_004D60; + #define dspot08_sceneTex_00A1A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00A1A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00A1A0[] = dspot08_sceneTex_00A1A0; -#else -static const char spot08_sceneTex_00A1A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00A1A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00A1A0[] = dspot08_sceneTex_00A1A0; + #define dspot08_sceneTLUT_004CE8 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTLUT_004CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTLUT_004CE8[] = dspot08_sceneTLUT_004CE8; -#else -static const char spot08_sceneTLUT_004CE8[] __attribute__((aligned (2))) = dspot08_sceneTLUT_004CE8; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTLUT_004CE8[] = dspot08_sceneTLUT_004CE8; + #define dspot08_sceneTex_00E1A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00E1A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00E1A0[] = dspot08_sceneTex_00E1A0; -#else -static const char spot08_sceneTex_00E1A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00E1A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00E1A0[] = dspot08_sceneTex_00E1A0; + #define dspot08_sceneTex_0091A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_0091A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_0091A0[] = dspot08_sceneTex_0091A0; -#else -static const char spot08_sceneTex_0091A0[] __attribute__((aligned (2))) = dspot08_sceneTex_0091A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_0091A0[] = dspot08_sceneTex_0091A0; + #define dspot08_sceneTex_0101A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_0101A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_0101A0[] = dspot08_sceneTex_0101A0; -#else -static const char spot08_sceneTex_0101A0[] __attribute__((aligned (2))) = dspot08_sceneTex_0101A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_0101A0[] = dspot08_sceneTex_0101A0; + #define dspot08_sceneTex_00F9A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_00F9A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_00F9A0[] = dspot08_sceneTex_00F9A0; -#else -static const char spot08_sceneTex_00F9A0[] __attribute__((aligned (2))) = dspot08_sceneTex_00F9A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_00F9A0[] = dspot08_sceneTex_00F9A0; + #define dspot08_sceneTLUT_004D80 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTLUT_004D80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTLUT_004D80[] = dspot08_sceneTLUT_004D80; -#else -static const char spot08_sceneTLUT_004D80[] __attribute__((aligned (2))) = dspot08_sceneTLUT_004D80; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTLUT_004D80[] = dspot08_sceneTLUT_004D80; + #define dspot08_sceneTex_0089A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_0089A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_0089A0[] = dspot08_sceneTex_0089A0; -#else -static const char spot08_sceneTex_0089A0[] __attribute__((aligned (2))) = dspot08_sceneTex_0089A0; -#endif - +static const ALIGN_ASSET(2) char spot08_sceneTex_0089A0[] = dspot08_sceneTex_0089A0; + #define dspot08_sceneTex_0071A0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneTex_0071A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot08_sceneTex_0071A0[] = dspot08_sceneTex_0071A0; -#else -static const char spot08_sceneTex_0071A0[] __attribute__((aligned (2))) = dspot08_sceneTex_0071A0; -#endif - -#define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" -#define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" -#define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" -#define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" +static const ALIGN_ASSET(2) char spot08_sceneTex_0071A0[] = dspot08_sceneTex_0071A0; + #define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" +#define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" + +#define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" + +#define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" + +#define dspot08_sceneCollisionHeader_002CE0 "__OTR__scenes/nonmq/spot08_scene/spot08_sceneCollisionHeader_002CE0" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot09/spot09_room_0.h b/soh/assets/scenes/overworld/spot09/spot09_room_0.h index fcfd58b67..b8e240fc2 100644 --- a/soh/assets/scenes/overworld/spot09/spot09_room_0.h +++ b/soh/assets/scenes/overworld/spot09/spot09_room_0.h @@ -1,1136 +1,489 @@ #pragma once -#define dgSpot09DL_007108 "__OTR__scenes/nonmq/spot09_scene/gSpot09DL_007108" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot09DL_007108[] = dgSpot09DL_007108; -#else -static const char gSpot09DL_007108[] __attribute__((aligned (2))) = dgSpot09DL_007108; -#endif - -#define dgSpot09DL_008780 "__OTR__scenes/nonmq/spot09_scene/gSpot09DL_008780" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot09DL_008780[] = dgSpot09DL_008780; -#else -static const char gSpot09DL_008780[] __attribute__((aligned (2))) = dgSpot09DL_008780; -#endif - -#define dspot09_room_0DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0084C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_0084C0[] = dspot09_room_0DL_0084C0; -#else -static const char spot09_room_0DL_0084C0[] __attribute__((aligned (2))) = dspot09_room_0DL_0084C0; -#endif - -#define dspot09_room_0DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_002158" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_002158[] = dspot09_room_0DL_002158; -#else -static const char spot09_room_0DL_002158[] __attribute__((aligned (2))) = dspot09_room_0DL_002158; -#endif - -#define dspot09_room_0DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_002698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_002698[] = dspot09_room_0DL_002698; -#else -static const char spot09_room_0DL_002698[] __attribute__((aligned (2))) = dspot09_room_0DL_002698; -#endif - -#define dspot09_room_0DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_008108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_008108[] = dspot09_room_0DL_008108; -#else -static const char spot09_room_0DL_008108[] __attribute__((aligned (2))) = dspot09_room_0DL_008108; -#endif - -#define dspot09_room_0DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_002A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_002A70[] = dspot09_room_0DL_002A70; -#else -static const char spot09_room_0DL_002A70[] __attribute__((aligned (2))) = dspot09_room_0DL_002A70; -#endif - -#define dspot09_room_0DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_002DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_002DA8[] = dspot09_room_0DL_002DA8; -#else -static const char spot09_room_0DL_002DA8[] __attribute__((aligned (2))) = dspot09_room_0DL_002DA8; -#endif - -#define dspot09_room_0DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0030D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_0030D0[] = dspot09_room_0DL_0030D0; -#else -static const char spot09_room_0DL_0030D0[] __attribute__((aligned (2))) = dspot09_room_0DL_0030D0; -#endif - -#define dspot09_room_0DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_001550[] = dspot09_room_0DL_001550; -#else -static const char spot09_room_0DL_001550[] __attribute__((aligned (2))) = dspot09_room_0DL_001550; -#endif - -#define dspot09_room_0DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_003308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_003308[] = dspot09_room_0DL_003308; -#else -static const char spot09_room_0DL_003308[] __attribute__((aligned (2))) = dspot09_room_0DL_003308; -#endif - -#define dspot09_room_0DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_003630" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_003630[] = dspot09_room_0DL_003630; -#else -static const char spot09_room_0DL_003630[] __attribute__((aligned (2))) = dspot09_room_0DL_003630; -#endif - -#define dspot09_room_0DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0017A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_0017A0[] = dspot09_room_0DL_0017A0; -#else -static const char spot09_room_0DL_0017A0[] __attribute__((aligned (2))) = dspot09_room_0DL_0017A0; -#endif - -#define dspot09_room_0DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_001A40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_001A40[] = dspot09_room_0DL_001A40; -#else -static const char spot09_room_0DL_001A40[] __attribute__((aligned (2))) = dspot09_room_0DL_001A40; -#endif - -#define dspot09_room_0DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_006F88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_006F88[] = dspot09_room_0DL_006F88; -#else -static const char spot09_room_0DL_006F88[] __attribute__((aligned (2))) = dspot09_room_0DL_006F88; -#endif - -#define dspot09_room_0DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_001E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_001E98[] = dspot09_room_0DL_001E98; -#else -static const char spot09_room_0DL_001E98[] __attribute__((aligned (2))) = dspot09_room_0DL_001E98; -#endif - -#define dspot09_room_0DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_001330" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_001330[] = dspot09_room_0DL_001330; -#else -static const char spot09_room_0DL_001330[] __attribute__((aligned (2))) = dspot09_room_0DL_001330; -#endif - -#define dspot09_room_0DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_007FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_007FF8[] = dspot09_room_0DL_007FF8; -#else -static const char spot09_room_0DL_007FF8[] __attribute__((aligned (2))) = dspot09_room_0DL_007FF8; -#endif - -#define dspot09_room_0DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_008318" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_008318[] = dspot09_room_0DL_008318; -#else -static const char spot09_room_0DL_008318[] __attribute__((aligned (2))) = dspot09_room_0DL_008318; -#endif - -#define dspot09_room_0DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005C68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_005C68[] = dspot09_room_0DL_005C68; -#else -static const char spot09_room_0DL_005C68[] __attribute__((aligned (2))) = dspot09_room_0DL_005C68; -#endif - -#define dspot09_room_0DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005E80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_005E80[] = dspot09_room_0DL_005E80; -#else -static const char spot09_room_0DL_005E80[] __attribute__((aligned (2))) = dspot09_room_0DL_005E80; -#endif - -#define dspot09_room_0DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0060C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_0060C8[] = dspot09_room_0DL_0060C8; -#else -static const char spot09_room_0DL_0060C8[] __attribute__((aligned (2))) = dspot09_room_0DL_0060C8; -#endif - -#define dspot09_room_0DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_006360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_006360[] = dspot09_room_0DL_006360; -#else -static const char spot09_room_0DL_006360[] __attribute__((aligned (2))) = dspot09_room_0DL_006360; -#endif - -#define dspot09_room_0DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0065C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_0065C0[] = dspot09_room_0DL_0065C0; -#else -static const char spot09_room_0DL_0065C0[] __attribute__((aligned (2))) = dspot09_room_0DL_0065C0; -#endif - -#define dspot09_room_0DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_006888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_006888[] = dspot09_room_0DL_006888; -#else -static const char spot09_room_0DL_006888[] __attribute__((aligned (2))) = dspot09_room_0DL_006888; -#endif - -#define dspot09_room_0DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_006C40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_006C40[] = dspot09_room_0DL_006C40; -#else -static const char spot09_room_0DL_006C40[] __attribute__((aligned (2))) = dspot09_room_0DL_006C40; -#endif - -#define dspot09_room_0DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_007530" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_007530[] = dspot09_room_0DL_007530; -#else -static const char spot09_room_0DL_007530[] __attribute__((aligned (2))) = dspot09_room_0DL_007530; -#endif - -#define dspot09_room_0DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_008698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_008698[] = dspot09_room_0DL_008698; -#else -static const char spot09_room_0DL_008698[] __attribute__((aligned (2))) = dspot09_room_0DL_008698; -#endif - -#define dspot09_room_0DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_003C98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_003C98[] = dspot09_room_0DL_003C98; -#else -static const char spot09_room_0DL_003C98[] __attribute__((aligned (2))) = dspot09_room_0DL_003C98; -#endif - -#define dspot09_room_0DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_004540" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_004540[] = dspot09_room_0DL_004540; -#else -static const char spot09_room_0DL_004540[] __attribute__((aligned (2))) = dspot09_room_0DL_004540; -#endif - -#define dspot09_room_0DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_004C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_004C00[] = dspot09_room_0DL_004C00; -#else -static const char spot09_room_0DL_004C00[] __attribute__((aligned (2))) = dspot09_room_0DL_004C00; -#endif - -#define dspot09_room_0DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005128" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_005128[] = dspot09_room_0DL_005128; -#else -static const char spot09_room_0DL_005128[] __attribute__((aligned (2))) = dspot09_room_0DL_005128; -#endif - -#define dspot09_room_0DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_005598[] = dspot09_room_0DL_005598; -#else -static const char spot09_room_0DL_005598[] __attribute__((aligned (2))) = dspot09_room_0DL_005598; -#endif - -#define dspot09_room_0DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005A08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0DL_005A08[] = dspot09_room_0DL_005A08; -#else -static const char spot09_room_0DL_005A08[] __attribute__((aligned (2))) = dspot09_room_0DL_005A08; -#endif - -#define dspot09_room_0Set_000500DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0084C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_0084C0[] = dspot09_room_0Set_000500DL_0084C0; -#else -static const char spot09_room_0Set_000500DL_0084C0[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_0084C0; -#endif - -#define dspot09_room_0Set_000500DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_002158" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_002158[] = dspot09_room_0Set_000500DL_002158; -#else -static const char spot09_room_0Set_000500DL_002158[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_002158; -#endif - -#define dspot09_room_0Set_000500DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_002698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_002698[] = dspot09_room_0Set_000500DL_002698; -#else -static const char spot09_room_0Set_000500DL_002698[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_002698; -#endif - -#define dspot09_room_0Set_000500DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_008108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_008108[] = dspot09_room_0Set_000500DL_008108; -#else -static const char spot09_room_0Set_000500DL_008108[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_008108; -#endif - -#define dspot09_room_0Set_000500DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_002A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_002A70[] = dspot09_room_0Set_000500DL_002A70; -#else -static const char spot09_room_0Set_000500DL_002A70[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_002A70; -#endif - -#define dspot09_room_0Set_000500DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_002DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_002DA8[] = dspot09_room_0Set_000500DL_002DA8; -#else -static const char spot09_room_0Set_000500DL_002DA8[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_002DA8; -#endif - -#define dspot09_room_0Set_000500DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0030D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_0030D0[] = dspot09_room_0Set_000500DL_0030D0; -#else -static const char spot09_room_0Set_000500DL_0030D0[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_0030D0; -#endif - -#define dspot09_room_0Set_000500DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_001550[] = dspot09_room_0Set_000500DL_001550; -#else -static const char spot09_room_0Set_000500DL_001550[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_001550; -#endif - -#define dspot09_room_0Set_000500DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_003308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_003308[] = dspot09_room_0Set_000500DL_003308; -#else -static const char spot09_room_0Set_000500DL_003308[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_003308; -#endif - -#define dspot09_room_0Set_000500DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_003630" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_003630[] = dspot09_room_0Set_000500DL_003630; -#else -static const char spot09_room_0Set_000500DL_003630[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_003630; -#endif - -#define dspot09_room_0Set_000500DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0017A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_0017A0[] = dspot09_room_0Set_000500DL_0017A0; -#else -static const char spot09_room_0Set_000500DL_0017A0[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_0017A0; -#endif - -#define dspot09_room_0Set_000500DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_001A40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_001A40[] = dspot09_room_0Set_000500DL_001A40; -#else -static const char spot09_room_0Set_000500DL_001A40[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_001A40; -#endif - -#define dspot09_room_0Set_000500DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_006F88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_006F88[] = dspot09_room_0Set_000500DL_006F88; -#else -static const char spot09_room_0Set_000500DL_006F88[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_006F88; -#endif - -#define dspot09_room_0Set_000500DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_001E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_001E98[] = dspot09_room_0Set_000500DL_001E98; -#else -static const char spot09_room_0Set_000500DL_001E98[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_001E98; -#endif - -#define dspot09_room_0Set_000500DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_001330" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_001330[] = dspot09_room_0Set_000500DL_001330; -#else -static const char spot09_room_0Set_000500DL_001330[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_001330; -#endif - -#define dspot09_room_0Set_000500DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_007FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_007FF8[] = dspot09_room_0Set_000500DL_007FF8; -#else -static const char spot09_room_0Set_000500DL_007FF8[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_007FF8; -#endif - -#define dspot09_room_0Set_000500DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_008318" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_008318[] = dspot09_room_0Set_000500DL_008318; -#else -static const char spot09_room_0Set_000500DL_008318[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_008318; -#endif - -#define dspot09_room_0Set_000500DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005C68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_005C68[] = dspot09_room_0Set_000500DL_005C68; -#else -static const char spot09_room_0Set_000500DL_005C68[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_005C68; -#endif - -#define dspot09_room_0Set_000500DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005E80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_005E80[] = dspot09_room_0Set_000500DL_005E80; -#else -static const char spot09_room_0Set_000500DL_005E80[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_005E80; -#endif - -#define dspot09_room_0Set_000500DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0060C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_0060C8[] = dspot09_room_0Set_000500DL_0060C8; -#else -static const char spot09_room_0Set_000500DL_0060C8[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_0060C8; -#endif - -#define dspot09_room_0Set_000500DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_006360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_006360[] = dspot09_room_0Set_000500DL_006360; -#else -static const char spot09_room_0Set_000500DL_006360[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_006360; -#endif - -#define dspot09_room_0Set_000500DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0065C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_0065C0[] = dspot09_room_0Set_000500DL_0065C0; -#else -static const char spot09_room_0Set_000500DL_0065C0[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_0065C0; -#endif - -#define dspot09_room_0Set_000500DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_006888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_006888[] = dspot09_room_0Set_000500DL_006888; -#else -static const char spot09_room_0Set_000500DL_006888[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_006888; -#endif - -#define dspot09_room_0Set_000500DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_006C40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_006C40[] = dspot09_room_0Set_000500DL_006C40; -#else -static const char spot09_room_0Set_000500DL_006C40[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_006C40; -#endif - -#define dspot09_room_0Set_000500DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_007530" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_007530[] = dspot09_room_0Set_000500DL_007530; -#else -static const char spot09_room_0Set_000500DL_007530[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_007530; -#endif - -#define dspot09_room_0Set_000500DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_008698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_008698[] = dspot09_room_0Set_000500DL_008698; -#else -static const char spot09_room_0Set_000500DL_008698[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_008698; -#endif - -#define dspot09_room_0Set_000500DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_003C98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_003C98[] = dspot09_room_0Set_000500DL_003C98; -#else -static const char spot09_room_0Set_000500DL_003C98[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_003C98; -#endif - -#define dspot09_room_0Set_000500DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_004540" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_004540[] = dspot09_room_0Set_000500DL_004540; -#else -static const char spot09_room_0Set_000500DL_004540[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_004540; -#endif - -#define dspot09_room_0Set_000500DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_004C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_004C00[] = dspot09_room_0Set_000500DL_004C00; -#else -static const char spot09_room_0Set_000500DL_004C00[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_004C00; -#endif - -#define dspot09_room_0Set_000500DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005128" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_005128[] = dspot09_room_0Set_000500DL_005128; -#else -static const char spot09_room_0Set_000500DL_005128[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_005128; -#endif - -#define dspot09_room_0Set_000500DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_005598[] = dspot09_room_0Set_000500DL_005598; -#else -static const char spot09_room_0Set_000500DL_005598[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_005598; -#endif - -#define dspot09_room_0Set_000500DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005A08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000500DL_005A08[] = dspot09_room_0Set_000500DL_005A08; -#else -static const char spot09_room_0Set_000500DL_005A08[] __attribute__((aligned (2))) = dspot09_room_0Set_000500DL_005A08; -#endif - -#define dspot09_room_0Set_000890DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0084C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_0084C0[] = dspot09_room_0Set_000890DL_0084C0; -#else -static const char spot09_room_0Set_000890DL_0084C0[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_0084C0; -#endif - -#define dspot09_room_0Set_000890DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_002158" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_002158[] = dspot09_room_0Set_000890DL_002158; -#else -static const char spot09_room_0Set_000890DL_002158[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_002158; -#endif - -#define dspot09_room_0Set_000890DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_002698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_002698[] = dspot09_room_0Set_000890DL_002698; -#else -static const char spot09_room_0Set_000890DL_002698[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_002698; -#endif - -#define dspot09_room_0Set_000890DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_008108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_008108[] = dspot09_room_0Set_000890DL_008108; -#else -static const char spot09_room_0Set_000890DL_008108[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_008108; -#endif - -#define dspot09_room_0Set_000890DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_002A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_002A70[] = dspot09_room_0Set_000890DL_002A70; -#else -static const char spot09_room_0Set_000890DL_002A70[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_002A70; -#endif - -#define dspot09_room_0Set_000890DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_002DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_002DA8[] = dspot09_room_0Set_000890DL_002DA8; -#else -static const char spot09_room_0Set_000890DL_002DA8[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_002DA8; -#endif - -#define dspot09_room_0Set_000890DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0030D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_0030D0[] = dspot09_room_0Set_000890DL_0030D0; -#else -static const char spot09_room_0Set_000890DL_0030D0[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_0030D0; -#endif - -#define dspot09_room_0Set_000890DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_001550[] = dspot09_room_0Set_000890DL_001550; -#else -static const char spot09_room_0Set_000890DL_001550[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_001550; -#endif - -#define dspot09_room_0Set_000890DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_003308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_003308[] = dspot09_room_0Set_000890DL_003308; -#else -static const char spot09_room_0Set_000890DL_003308[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_003308; -#endif - -#define dspot09_room_0Set_000890DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_003630" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_003630[] = dspot09_room_0Set_000890DL_003630; -#else -static const char spot09_room_0Set_000890DL_003630[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_003630; -#endif - -#define dspot09_room_0Set_000890DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0017A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_0017A0[] = dspot09_room_0Set_000890DL_0017A0; -#else -static const char spot09_room_0Set_000890DL_0017A0[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_0017A0; -#endif - -#define dspot09_room_0Set_000890DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_001A40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_001A40[] = dspot09_room_0Set_000890DL_001A40; -#else -static const char spot09_room_0Set_000890DL_001A40[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_001A40; -#endif - -#define dspot09_room_0Set_000890DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_006F88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_006F88[] = dspot09_room_0Set_000890DL_006F88; -#else -static const char spot09_room_0Set_000890DL_006F88[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_006F88; -#endif - -#define dspot09_room_0Set_000890DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_001E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_001E98[] = dspot09_room_0Set_000890DL_001E98; -#else -static const char spot09_room_0Set_000890DL_001E98[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_001E98; -#endif - -#define dspot09_room_0Set_000890DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_001330" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_001330[] = dspot09_room_0Set_000890DL_001330; -#else -static const char spot09_room_0Set_000890DL_001330[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_001330; -#endif - -#define dspot09_room_0Set_000890DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_007FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_007FF8[] = dspot09_room_0Set_000890DL_007FF8; -#else -static const char spot09_room_0Set_000890DL_007FF8[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_007FF8; -#endif - -#define dspot09_room_0Set_000890DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_008318" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_008318[] = dspot09_room_0Set_000890DL_008318; -#else -static const char spot09_room_0Set_000890DL_008318[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_008318; -#endif - -#define dspot09_room_0Set_000890DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005C68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_005C68[] = dspot09_room_0Set_000890DL_005C68; -#else -static const char spot09_room_0Set_000890DL_005C68[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_005C68; -#endif - -#define dspot09_room_0Set_000890DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005E80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_005E80[] = dspot09_room_0Set_000890DL_005E80; -#else -static const char spot09_room_0Set_000890DL_005E80[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_005E80; -#endif - -#define dspot09_room_0Set_000890DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0060C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_0060C8[] = dspot09_room_0Set_000890DL_0060C8; -#else -static const char spot09_room_0Set_000890DL_0060C8[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_0060C8; -#endif - -#define dspot09_room_0Set_000890DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_006360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_006360[] = dspot09_room_0Set_000890DL_006360; -#else -static const char spot09_room_0Set_000890DL_006360[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_006360; -#endif - -#define dspot09_room_0Set_000890DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0065C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_0065C0[] = dspot09_room_0Set_000890DL_0065C0; -#else -static const char spot09_room_0Set_000890DL_0065C0[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_0065C0; -#endif - -#define dspot09_room_0Set_000890DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_006888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_006888[] = dspot09_room_0Set_000890DL_006888; -#else -static const char spot09_room_0Set_000890DL_006888[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_006888; -#endif - -#define dspot09_room_0Set_000890DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_006C40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_006C40[] = dspot09_room_0Set_000890DL_006C40; -#else -static const char spot09_room_0Set_000890DL_006C40[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_006C40; -#endif - -#define dspot09_room_0Set_000890DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_007530" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_007530[] = dspot09_room_0Set_000890DL_007530; -#else -static const char spot09_room_0Set_000890DL_007530[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_007530; -#endif - -#define dspot09_room_0Set_000890DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_008698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_008698[] = dspot09_room_0Set_000890DL_008698; -#else -static const char spot09_room_0Set_000890DL_008698[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_008698; -#endif - -#define dspot09_room_0Set_000890DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_003C98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_003C98[] = dspot09_room_0Set_000890DL_003C98; -#else -static const char spot09_room_0Set_000890DL_003C98[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_003C98; -#endif - -#define dspot09_room_0Set_000890DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_004540" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_004540[] = dspot09_room_0Set_000890DL_004540; -#else -static const char spot09_room_0Set_000890DL_004540[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_004540; -#endif - -#define dspot09_room_0Set_000890DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_004C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_004C00[] = dspot09_room_0Set_000890DL_004C00; -#else -static const char spot09_room_0Set_000890DL_004C00[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_004C00; -#endif - -#define dspot09_room_0Set_000890DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005128" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_005128[] = dspot09_room_0Set_000890DL_005128; -#else -static const char spot09_room_0Set_000890DL_005128[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_005128; -#endif - -#define dspot09_room_0Set_000890DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_005598[] = dspot09_room_0Set_000890DL_005598; -#else -static const char spot09_room_0Set_000890DL_005598[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_005598; -#endif - -#define dspot09_room_0Set_000890DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005A08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000890DL_005A08[] = dspot09_room_0Set_000890DL_005A08; -#else -static const char spot09_room_0Set_000890DL_005A08[] __attribute__((aligned (2))) = dspot09_room_0Set_000890DL_005A08; -#endif - -#define dspot09_room_0Set_000960DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0084C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_0084C0[] = dspot09_room_0Set_000960DL_0084C0; -#else -static const char spot09_room_0Set_000960DL_0084C0[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_0084C0; -#endif - -#define dspot09_room_0Set_000960DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_002158" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_002158[] = dspot09_room_0Set_000960DL_002158; -#else -static const char spot09_room_0Set_000960DL_002158[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_002158; -#endif - -#define dspot09_room_0Set_000960DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_002698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_002698[] = dspot09_room_0Set_000960DL_002698; -#else -static const char spot09_room_0Set_000960DL_002698[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_002698; -#endif - -#define dspot09_room_0Set_000960DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_008108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_008108[] = dspot09_room_0Set_000960DL_008108; -#else -static const char spot09_room_0Set_000960DL_008108[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_008108; -#endif - -#define dspot09_room_0Set_000960DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_002A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_002A70[] = dspot09_room_0Set_000960DL_002A70; -#else -static const char spot09_room_0Set_000960DL_002A70[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_002A70; -#endif - -#define dspot09_room_0Set_000960DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_002DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_002DA8[] = dspot09_room_0Set_000960DL_002DA8; -#else -static const char spot09_room_0Set_000960DL_002DA8[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_002DA8; -#endif - -#define dspot09_room_0Set_000960DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0030D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_0030D0[] = dspot09_room_0Set_000960DL_0030D0; -#else -static const char spot09_room_0Set_000960DL_0030D0[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_0030D0; -#endif - -#define dspot09_room_0Set_000960DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_001550[] = dspot09_room_0Set_000960DL_001550; -#else -static const char spot09_room_0Set_000960DL_001550[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_001550; -#endif - -#define dspot09_room_0Set_000960DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_003308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_003308[] = dspot09_room_0Set_000960DL_003308; -#else -static const char spot09_room_0Set_000960DL_003308[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_003308; -#endif - -#define dspot09_room_0Set_000960DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_003630" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_003630[] = dspot09_room_0Set_000960DL_003630; -#else -static const char spot09_room_0Set_000960DL_003630[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_003630; -#endif - -#define dspot09_room_0Set_000960DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0017A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_0017A0[] = dspot09_room_0Set_000960DL_0017A0; -#else -static const char spot09_room_0Set_000960DL_0017A0[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_0017A0; -#endif - -#define dspot09_room_0Set_000960DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_001A40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_001A40[] = dspot09_room_0Set_000960DL_001A40; -#else -static const char spot09_room_0Set_000960DL_001A40[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_001A40; -#endif - -#define dspot09_room_0Set_000960DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_006F88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_006F88[] = dspot09_room_0Set_000960DL_006F88; -#else -static const char spot09_room_0Set_000960DL_006F88[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_006F88; -#endif - -#define dspot09_room_0Set_000960DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_001E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_001E98[] = dspot09_room_0Set_000960DL_001E98; -#else -static const char spot09_room_0Set_000960DL_001E98[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_001E98; -#endif - -#define dspot09_room_0Set_000960DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_001330" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_001330[] = dspot09_room_0Set_000960DL_001330; -#else -static const char spot09_room_0Set_000960DL_001330[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_001330; -#endif - -#define dspot09_room_0Set_000960DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_007FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_007FF8[] = dspot09_room_0Set_000960DL_007FF8; -#else -static const char spot09_room_0Set_000960DL_007FF8[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_007FF8; -#endif - -#define dspot09_room_0Set_000960DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_008318" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_008318[] = dspot09_room_0Set_000960DL_008318; -#else -static const char spot09_room_0Set_000960DL_008318[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_008318; -#endif - -#define dspot09_room_0Set_000960DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005C68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_005C68[] = dspot09_room_0Set_000960DL_005C68; -#else -static const char spot09_room_0Set_000960DL_005C68[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_005C68; -#endif - -#define dspot09_room_0Set_000960DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005E80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_005E80[] = dspot09_room_0Set_000960DL_005E80; -#else -static const char spot09_room_0Set_000960DL_005E80[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_005E80; -#endif - -#define dspot09_room_0Set_000960DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0060C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_0060C8[] = dspot09_room_0Set_000960DL_0060C8; -#else -static const char spot09_room_0Set_000960DL_0060C8[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_0060C8; -#endif - -#define dspot09_room_0Set_000960DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_006360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_006360[] = dspot09_room_0Set_000960DL_006360; -#else -static const char spot09_room_0Set_000960DL_006360[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_006360; -#endif - -#define dspot09_room_0Set_000960DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0065C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_0065C0[] = dspot09_room_0Set_000960DL_0065C0; -#else -static const char spot09_room_0Set_000960DL_0065C0[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_0065C0; -#endif - -#define dspot09_room_0Set_000960DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_006888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_006888[] = dspot09_room_0Set_000960DL_006888; -#else -static const char spot09_room_0Set_000960DL_006888[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_006888; -#endif - -#define dspot09_room_0Set_000960DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_006C40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_006C40[] = dspot09_room_0Set_000960DL_006C40; -#else -static const char spot09_room_0Set_000960DL_006C40[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_006C40; -#endif - -#define dspot09_room_0Set_000960DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_007530" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_007530[] = dspot09_room_0Set_000960DL_007530; -#else -static const char spot09_room_0Set_000960DL_007530[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_007530; -#endif - -#define dspot09_room_0Set_000960DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_008698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_008698[] = dspot09_room_0Set_000960DL_008698; -#else -static const char spot09_room_0Set_000960DL_008698[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_008698; -#endif - -#define dspot09_room_0Set_000960DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_003C98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_003C98[] = dspot09_room_0Set_000960DL_003C98; -#else -static const char spot09_room_0Set_000960DL_003C98[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_003C98; -#endif - -#define dspot09_room_0Set_000960DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_004540" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_004540[] = dspot09_room_0Set_000960DL_004540; -#else -static const char spot09_room_0Set_000960DL_004540[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_004540; -#endif - -#define dspot09_room_0Set_000960DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_004C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_004C00[] = dspot09_room_0Set_000960DL_004C00; -#else -static const char spot09_room_0Set_000960DL_004C00[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_004C00; -#endif - -#define dspot09_room_0Set_000960DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005128" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_005128[] = dspot09_room_0Set_000960DL_005128; -#else -static const char spot09_room_0Set_000960DL_005128[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_005128; -#endif - -#define dspot09_room_0Set_000960DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_005598[] = dspot09_room_0Set_000960DL_005598; -#else -static const char spot09_room_0Set_000960DL_005598[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_005598; -#endif - -#define dspot09_room_0Set_000960DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005A08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000960DL_005A08[] = dspot09_room_0Set_000960DL_005A08; -#else -static const char spot09_room_0Set_000960DL_005A08[] __attribute__((aligned (2))) = dspot09_room_0Set_000960DL_005A08; -#endif - -#define dspot09_room_0Set_000A80DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0084C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_0084C0[] = dspot09_room_0Set_000A80DL_0084C0; -#else -static const char spot09_room_0Set_000A80DL_0084C0[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_0084C0; -#endif - -#define dspot09_room_0Set_000A80DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_002158" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_002158[] = dspot09_room_0Set_000A80DL_002158; -#else -static const char spot09_room_0Set_000A80DL_002158[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_002158; -#endif - -#define dspot09_room_0Set_000A80DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_002698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_002698[] = dspot09_room_0Set_000A80DL_002698; -#else -static const char spot09_room_0Set_000A80DL_002698[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_002698; -#endif - -#define dspot09_room_0Set_000A80DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_008108" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_008108[] = dspot09_room_0Set_000A80DL_008108; -#else -static const char spot09_room_0Set_000A80DL_008108[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_008108; -#endif - -#define dspot09_room_0Set_000A80DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_002A70" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_002A70[] = dspot09_room_0Set_000A80DL_002A70; -#else -static const char spot09_room_0Set_000A80DL_002A70[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_002A70; -#endif - -#define dspot09_room_0Set_000A80DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_002DA8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_002DA8[] = dspot09_room_0Set_000A80DL_002DA8; -#else -static const char spot09_room_0Set_000A80DL_002DA8[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_002DA8; -#endif - -#define dspot09_room_0Set_000A80DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0030D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_0030D0[] = dspot09_room_0Set_000A80DL_0030D0; -#else -static const char spot09_room_0Set_000A80DL_0030D0[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_0030D0; -#endif - -#define dspot09_room_0Set_000A80DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_001550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_001550[] = dspot09_room_0Set_000A80DL_001550; -#else -static const char spot09_room_0Set_000A80DL_001550[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_001550; -#endif - -#define dspot09_room_0Set_000A80DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_003308" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_003308[] = dspot09_room_0Set_000A80DL_003308; -#else -static const char spot09_room_0Set_000A80DL_003308[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_003308; -#endif - -#define dspot09_room_0Set_000A80DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_003630" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_003630[] = dspot09_room_0Set_000A80DL_003630; -#else -static const char spot09_room_0Set_000A80DL_003630[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_003630; -#endif - -#define dspot09_room_0Set_000A80DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0017A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_0017A0[] = dspot09_room_0Set_000A80DL_0017A0; -#else -static const char spot09_room_0Set_000A80DL_0017A0[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_0017A0; -#endif - -#define dspot09_room_0Set_000A80DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_001A40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_001A40[] = dspot09_room_0Set_000A80DL_001A40; -#else -static const char spot09_room_0Set_000A80DL_001A40[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_001A40; -#endif - -#define dspot09_room_0Set_000A80DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_006F88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_006F88[] = dspot09_room_0Set_000A80DL_006F88; -#else -static const char spot09_room_0Set_000A80DL_006F88[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_006F88; -#endif - -#define dspot09_room_0Set_000A80DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_001E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_001E98[] = dspot09_room_0Set_000A80DL_001E98; -#else -static const char spot09_room_0Set_000A80DL_001E98[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_001E98; -#endif - -#define dspot09_room_0Set_000A80DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_001330" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_001330[] = dspot09_room_0Set_000A80DL_001330; -#else -static const char spot09_room_0Set_000A80DL_001330[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_001330; -#endif - -#define dspot09_room_0Set_000A80DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_007FF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_007FF8[] = dspot09_room_0Set_000A80DL_007FF8; -#else -static const char spot09_room_0Set_000A80DL_007FF8[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_007FF8; -#endif - -#define dspot09_room_0Set_000A80DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_008318" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_008318[] = dspot09_room_0Set_000A80DL_008318; -#else -static const char spot09_room_0Set_000A80DL_008318[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_008318; -#endif - -#define dspot09_room_0Set_000A80DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005C68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_005C68[] = dspot09_room_0Set_000A80DL_005C68; -#else -static const char spot09_room_0Set_000A80DL_005C68[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_005C68; -#endif - -#define dspot09_room_0Set_000A80DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005E80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_005E80[] = dspot09_room_0Set_000A80DL_005E80; -#else -static const char spot09_room_0Set_000A80DL_005E80[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_005E80; -#endif - -#define dspot09_room_0Set_000A80DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0060C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_0060C8[] = dspot09_room_0Set_000A80DL_0060C8; -#else -static const char spot09_room_0Set_000A80DL_0060C8[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_0060C8; -#endif - -#define dspot09_room_0Set_000A80DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_006360" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_006360[] = dspot09_room_0Set_000A80DL_006360; -#else -static const char spot09_room_0Set_000A80DL_006360[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_006360; -#endif - -#define dspot09_room_0Set_000A80DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0065C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_0065C0[] = dspot09_room_0Set_000A80DL_0065C0; -#else -static const char spot09_room_0Set_000A80DL_0065C0[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_0065C0; -#endif - -#define dspot09_room_0Set_000A80DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_006888" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_006888[] = dspot09_room_0Set_000A80DL_006888; -#else -static const char spot09_room_0Set_000A80DL_006888[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_006888; -#endif - -#define dspot09_room_0Set_000A80DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_006C40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_006C40[] = dspot09_room_0Set_000A80DL_006C40; -#else -static const char spot09_room_0Set_000A80DL_006C40[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_006C40; -#endif - -#define dspot09_room_0Set_000A80DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_007530" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_007530[] = dspot09_room_0Set_000A80DL_007530; -#else -static const char spot09_room_0Set_000A80DL_007530[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_007530; -#endif - -#define dspot09_room_0Set_000A80DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_008698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_008698[] = dspot09_room_0Set_000A80DL_008698; -#else -static const char spot09_room_0Set_000A80DL_008698[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_008698; -#endif - -#define dspot09_room_0Set_000A80DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_003C98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_003C98[] = dspot09_room_0Set_000A80DL_003C98; -#else -static const char spot09_room_0Set_000A80DL_003C98[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_003C98; -#endif - -#define dspot09_room_0Set_000A80DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_004540" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_004540[] = dspot09_room_0Set_000A80DL_004540; -#else -static const char spot09_room_0Set_000A80DL_004540[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_004540; -#endif - -#define dspot09_room_0Set_000A80DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_004C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_004C00[] = dspot09_room_0Set_000A80DL_004C00; -#else -static const char spot09_room_0Set_000A80DL_004C00[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_004C00; -#endif - -#define dspot09_room_0Set_000A80DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005128" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_005128[] = dspot09_room_0Set_000A80DL_005128; -#else -static const char spot09_room_0Set_000A80DL_005128[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_005128; -#endif - -#define dspot09_room_0Set_000A80DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_005598[] = dspot09_room_0Set_000A80DL_005598; -#else -static const char spot09_room_0Set_000A80DL_005598[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_005598; -#endif - -#define dspot09_room_0Set_000A80DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005A08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_room_0Set_000A80DL_005A08[] = dspot09_room_0Set_000A80DL_005A08; -#else -static const char spot09_room_0Set_000A80DL_005A08[] __attribute__((aligned (2))) = dspot09_room_0Set_000A80DL_005A08; -#endif - +#include "align_asset_macro.h" + +#define dgSpot09DL_007108 "__OTR__scenes/nonmq/spot09_scene/gSpot09DL_007108" +static const ALIGN_ASSET(2) char gSpot09DL_007108[] = dgSpot09DL_007108; + +#define dgSpot09DL_008780 "__OTR__scenes/nonmq/spot09_scene/gSpot09DL_008780" +static const ALIGN_ASSET(2) char gSpot09DL_008780[] = dgSpot09DL_008780; + +#define dspot09_room_0DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0084C0" +static const ALIGN_ASSET(2) char spot09_room_0DL_0084C0[] = dspot09_room_0DL_0084C0; + +#define dspot09_room_0DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_002158" +static const ALIGN_ASSET(2) char spot09_room_0DL_002158[] = dspot09_room_0DL_002158; + +#define dspot09_room_0DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_002698" +static const ALIGN_ASSET(2) char spot09_room_0DL_002698[] = dspot09_room_0DL_002698; + +#define dspot09_room_0DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_008108" +static const ALIGN_ASSET(2) char spot09_room_0DL_008108[] = dspot09_room_0DL_008108; + +#define dspot09_room_0DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_002A70" +static const ALIGN_ASSET(2) char spot09_room_0DL_002A70[] = dspot09_room_0DL_002A70; + +#define dspot09_room_0DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_002DA8" +static const ALIGN_ASSET(2) char spot09_room_0DL_002DA8[] = dspot09_room_0DL_002DA8; + +#define dspot09_room_0DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0030D0" +static const ALIGN_ASSET(2) char spot09_room_0DL_0030D0[] = dspot09_room_0DL_0030D0; + +#define dspot09_room_0DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_001550" +static const ALIGN_ASSET(2) char spot09_room_0DL_001550[] = dspot09_room_0DL_001550; + +#define dspot09_room_0DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_003308" +static const ALIGN_ASSET(2) char spot09_room_0DL_003308[] = dspot09_room_0DL_003308; + +#define dspot09_room_0DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_003630" +static const ALIGN_ASSET(2) char spot09_room_0DL_003630[] = dspot09_room_0DL_003630; + +#define dspot09_room_0DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0017A0" +static const ALIGN_ASSET(2) char spot09_room_0DL_0017A0[] = dspot09_room_0DL_0017A0; + +#define dspot09_room_0DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_001A40" +static const ALIGN_ASSET(2) char spot09_room_0DL_001A40[] = dspot09_room_0DL_001A40; + +#define dspot09_room_0DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_006F88" +static const ALIGN_ASSET(2) char spot09_room_0DL_006F88[] = dspot09_room_0DL_006F88; + +#define dspot09_room_0DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_001E98" +static const ALIGN_ASSET(2) char spot09_room_0DL_001E98[] = dspot09_room_0DL_001E98; + +#define dspot09_room_0DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_001330" +static const ALIGN_ASSET(2) char spot09_room_0DL_001330[] = dspot09_room_0DL_001330; + +#define dspot09_room_0DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_007FF8" +static const ALIGN_ASSET(2) char spot09_room_0DL_007FF8[] = dspot09_room_0DL_007FF8; + +#define dspot09_room_0DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_008318" +static const ALIGN_ASSET(2) char spot09_room_0DL_008318[] = dspot09_room_0DL_008318; + +#define dspot09_room_0DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005C68" +static const ALIGN_ASSET(2) char spot09_room_0DL_005C68[] = dspot09_room_0DL_005C68; + +#define dspot09_room_0DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005E80" +static const ALIGN_ASSET(2) char spot09_room_0DL_005E80[] = dspot09_room_0DL_005E80; + +#define dspot09_room_0DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0060C8" +static const ALIGN_ASSET(2) char spot09_room_0DL_0060C8[] = dspot09_room_0DL_0060C8; + +#define dspot09_room_0DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_006360" +static const ALIGN_ASSET(2) char spot09_room_0DL_006360[] = dspot09_room_0DL_006360; + +#define dspot09_room_0DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_0065C0" +static const ALIGN_ASSET(2) char spot09_room_0DL_0065C0[] = dspot09_room_0DL_0065C0; + +#define dspot09_room_0DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_006888" +static const ALIGN_ASSET(2) char spot09_room_0DL_006888[] = dspot09_room_0DL_006888; + +#define dspot09_room_0DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_006C40" +static const ALIGN_ASSET(2) char spot09_room_0DL_006C40[] = dspot09_room_0DL_006C40; + +#define dspot09_room_0DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_007530" +static const ALIGN_ASSET(2) char spot09_room_0DL_007530[] = dspot09_room_0DL_007530; + +#define dspot09_room_0DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_008698" +static const ALIGN_ASSET(2) char spot09_room_0DL_008698[] = dspot09_room_0DL_008698; + +#define dspot09_room_0DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_003C98" +static const ALIGN_ASSET(2) char spot09_room_0DL_003C98[] = dspot09_room_0DL_003C98; + +#define dspot09_room_0DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_004540" +static const ALIGN_ASSET(2) char spot09_room_0DL_004540[] = dspot09_room_0DL_004540; + +#define dspot09_room_0DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_004C00" +static const ALIGN_ASSET(2) char spot09_room_0DL_004C00[] = dspot09_room_0DL_004C00; + +#define dspot09_room_0DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005128" +static const ALIGN_ASSET(2) char spot09_room_0DL_005128[] = dspot09_room_0DL_005128; + +#define dspot09_room_0DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005598" +static const ALIGN_ASSET(2) char spot09_room_0DL_005598[] = dspot09_room_0DL_005598; + +#define dspot09_room_0DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0DL_005A08" +static const ALIGN_ASSET(2) char spot09_room_0DL_005A08[] = dspot09_room_0DL_005A08; + +#define dspot09_room_0Set_000500DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0084C0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_0084C0[] = dspot09_room_0Set_000500DL_0084C0; + +#define dspot09_room_0Set_000500DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_002158" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_002158[] = dspot09_room_0Set_000500DL_002158; + +#define dspot09_room_0Set_000500DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_002698" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_002698[] = dspot09_room_0Set_000500DL_002698; + +#define dspot09_room_0Set_000500DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_008108" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_008108[] = dspot09_room_0Set_000500DL_008108; + +#define dspot09_room_0Set_000500DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_002A70" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_002A70[] = dspot09_room_0Set_000500DL_002A70; + +#define dspot09_room_0Set_000500DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_002DA8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_002DA8[] = dspot09_room_0Set_000500DL_002DA8; + +#define dspot09_room_0Set_000500DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0030D0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_0030D0[] = dspot09_room_0Set_000500DL_0030D0; + +#define dspot09_room_0Set_000500DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_001550" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_001550[] = dspot09_room_0Set_000500DL_001550; + +#define dspot09_room_0Set_000500DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_003308" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_003308[] = dspot09_room_0Set_000500DL_003308; + +#define dspot09_room_0Set_000500DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_003630" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_003630[] = dspot09_room_0Set_000500DL_003630; + +#define dspot09_room_0Set_000500DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0017A0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_0017A0[] = dspot09_room_0Set_000500DL_0017A0; + +#define dspot09_room_0Set_000500DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_001A40" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_001A40[] = dspot09_room_0Set_000500DL_001A40; + +#define dspot09_room_0Set_000500DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_006F88" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_006F88[] = dspot09_room_0Set_000500DL_006F88; + +#define dspot09_room_0Set_000500DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_001E98" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_001E98[] = dspot09_room_0Set_000500DL_001E98; + +#define dspot09_room_0Set_000500DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_001330" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_001330[] = dspot09_room_0Set_000500DL_001330; + +#define dspot09_room_0Set_000500DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_007FF8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_007FF8[] = dspot09_room_0Set_000500DL_007FF8; + +#define dspot09_room_0Set_000500DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_008318" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_008318[] = dspot09_room_0Set_000500DL_008318; + +#define dspot09_room_0Set_000500DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005C68" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_005C68[] = dspot09_room_0Set_000500DL_005C68; + +#define dspot09_room_0Set_000500DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005E80" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_005E80[] = dspot09_room_0Set_000500DL_005E80; + +#define dspot09_room_0Set_000500DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0060C8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_0060C8[] = dspot09_room_0Set_000500DL_0060C8; + +#define dspot09_room_0Set_000500DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_006360" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_006360[] = dspot09_room_0Set_000500DL_006360; + +#define dspot09_room_0Set_000500DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_0065C0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_0065C0[] = dspot09_room_0Set_000500DL_0065C0; + +#define dspot09_room_0Set_000500DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_006888" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_006888[] = dspot09_room_0Set_000500DL_006888; + +#define dspot09_room_0Set_000500DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_006C40" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_006C40[] = dspot09_room_0Set_000500DL_006C40; + +#define dspot09_room_0Set_000500DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_007530" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_007530[] = dspot09_room_0Set_000500DL_007530; + +#define dspot09_room_0Set_000500DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_008698" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_008698[] = dspot09_room_0Set_000500DL_008698; + +#define dspot09_room_0Set_000500DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_003C98" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_003C98[] = dspot09_room_0Set_000500DL_003C98; + +#define dspot09_room_0Set_000500DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_004540" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_004540[] = dspot09_room_0Set_000500DL_004540; + +#define dspot09_room_0Set_000500DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_004C00" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_004C00[] = dspot09_room_0Set_000500DL_004C00; + +#define dspot09_room_0Set_000500DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005128" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_005128[] = dspot09_room_0Set_000500DL_005128; + +#define dspot09_room_0Set_000500DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005598" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_005598[] = dspot09_room_0Set_000500DL_005598; + +#define dspot09_room_0Set_000500DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000500DL_005A08" +static const ALIGN_ASSET(2) char spot09_room_0Set_000500DL_005A08[] = dspot09_room_0Set_000500DL_005A08; + +#define dspot09_room_0Set_000890DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0084C0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_0084C0[] = dspot09_room_0Set_000890DL_0084C0; + +#define dspot09_room_0Set_000890DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_002158" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_002158[] = dspot09_room_0Set_000890DL_002158; + +#define dspot09_room_0Set_000890DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_002698" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_002698[] = dspot09_room_0Set_000890DL_002698; + +#define dspot09_room_0Set_000890DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_008108" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_008108[] = dspot09_room_0Set_000890DL_008108; + +#define dspot09_room_0Set_000890DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_002A70" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_002A70[] = dspot09_room_0Set_000890DL_002A70; + +#define dspot09_room_0Set_000890DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_002DA8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_002DA8[] = dspot09_room_0Set_000890DL_002DA8; + +#define dspot09_room_0Set_000890DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0030D0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_0030D0[] = dspot09_room_0Set_000890DL_0030D0; + +#define dspot09_room_0Set_000890DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_001550" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_001550[] = dspot09_room_0Set_000890DL_001550; + +#define dspot09_room_0Set_000890DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_003308" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_003308[] = dspot09_room_0Set_000890DL_003308; + +#define dspot09_room_0Set_000890DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_003630" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_003630[] = dspot09_room_0Set_000890DL_003630; + +#define dspot09_room_0Set_000890DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0017A0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_0017A0[] = dspot09_room_0Set_000890DL_0017A0; + +#define dspot09_room_0Set_000890DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_001A40" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_001A40[] = dspot09_room_0Set_000890DL_001A40; + +#define dspot09_room_0Set_000890DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_006F88" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_006F88[] = dspot09_room_0Set_000890DL_006F88; + +#define dspot09_room_0Set_000890DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_001E98" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_001E98[] = dspot09_room_0Set_000890DL_001E98; + +#define dspot09_room_0Set_000890DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_001330" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_001330[] = dspot09_room_0Set_000890DL_001330; + +#define dspot09_room_0Set_000890DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_007FF8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_007FF8[] = dspot09_room_0Set_000890DL_007FF8; + +#define dspot09_room_0Set_000890DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_008318" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_008318[] = dspot09_room_0Set_000890DL_008318; + +#define dspot09_room_0Set_000890DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005C68" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_005C68[] = dspot09_room_0Set_000890DL_005C68; + +#define dspot09_room_0Set_000890DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005E80" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_005E80[] = dspot09_room_0Set_000890DL_005E80; + +#define dspot09_room_0Set_000890DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0060C8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_0060C8[] = dspot09_room_0Set_000890DL_0060C8; + +#define dspot09_room_0Set_000890DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_006360" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_006360[] = dspot09_room_0Set_000890DL_006360; + +#define dspot09_room_0Set_000890DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_0065C0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_0065C0[] = dspot09_room_0Set_000890DL_0065C0; + +#define dspot09_room_0Set_000890DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_006888" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_006888[] = dspot09_room_0Set_000890DL_006888; + +#define dspot09_room_0Set_000890DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_006C40" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_006C40[] = dspot09_room_0Set_000890DL_006C40; + +#define dspot09_room_0Set_000890DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_007530" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_007530[] = dspot09_room_0Set_000890DL_007530; + +#define dspot09_room_0Set_000890DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_008698" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_008698[] = dspot09_room_0Set_000890DL_008698; + +#define dspot09_room_0Set_000890DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_003C98" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_003C98[] = dspot09_room_0Set_000890DL_003C98; + +#define dspot09_room_0Set_000890DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_004540" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_004540[] = dspot09_room_0Set_000890DL_004540; + +#define dspot09_room_0Set_000890DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_004C00" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_004C00[] = dspot09_room_0Set_000890DL_004C00; + +#define dspot09_room_0Set_000890DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005128" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_005128[] = dspot09_room_0Set_000890DL_005128; + +#define dspot09_room_0Set_000890DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005598" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_005598[] = dspot09_room_0Set_000890DL_005598; + +#define dspot09_room_0Set_000890DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000890DL_005A08" +static const ALIGN_ASSET(2) char spot09_room_0Set_000890DL_005A08[] = dspot09_room_0Set_000890DL_005A08; + +#define dspot09_room_0Set_000960DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0084C0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_0084C0[] = dspot09_room_0Set_000960DL_0084C0; + +#define dspot09_room_0Set_000960DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_002158" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_002158[] = dspot09_room_0Set_000960DL_002158; + +#define dspot09_room_0Set_000960DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_002698" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_002698[] = dspot09_room_0Set_000960DL_002698; + +#define dspot09_room_0Set_000960DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_008108" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_008108[] = dspot09_room_0Set_000960DL_008108; + +#define dspot09_room_0Set_000960DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_002A70" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_002A70[] = dspot09_room_0Set_000960DL_002A70; + +#define dspot09_room_0Set_000960DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_002DA8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_002DA8[] = dspot09_room_0Set_000960DL_002DA8; + +#define dspot09_room_0Set_000960DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0030D0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_0030D0[] = dspot09_room_0Set_000960DL_0030D0; + +#define dspot09_room_0Set_000960DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_001550" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_001550[] = dspot09_room_0Set_000960DL_001550; + +#define dspot09_room_0Set_000960DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_003308" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_003308[] = dspot09_room_0Set_000960DL_003308; + +#define dspot09_room_0Set_000960DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_003630" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_003630[] = dspot09_room_0Set_000960DL_003630; + +#define dspot09_room_0Set_000960DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0017A0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_0017A0[] = dspot09_room_0Set_000960DL_0017A0; + +#define dspot09_room_0Set_000960DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_001A40" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_001A40[] = dspot09_room_0Set_000960DL_001A40; + +#define dspot09_room_0Set_000960DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_006F88" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_006F88[] = dspot09_room_0Set_000960DL_006F88; + +#define dspot09_room_0Set_000960DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_001E98" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_001E98[] = dspot09_room_0Set_000960DL_001E98; + +#define dspot09_room_0Set_000960DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_001330" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_001330[] = dspot09_room_0Set_000960DL_001330; + +#define dspot09_room_0Set_000960DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_007FF8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_007FF8[] = dspot09_room_0Set_000960DL_007FF8; + +#define dspot09_room_0Set_000960DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_008318" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_008318[] = dspot09_room_0Set_000960DL_008318; + +#define dspot09_room_0Set_000960DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005C68" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_005C68[] = dspot09_room_0Set_000960DL_005C68; + +#define dspot09_room_0Set_000960DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005E80" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_005E80[] = dspot09_room_0Set_000960DL_005E80; + +#define dspot09_room_0Set_000960DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0060C8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_0060C8[] = dspot09_room_0Set_000960DL_0060C8; + +#define dspot09_room_0Set_000960DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_006360" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_006360[] = dspot09_room_0Set_000960DL_006360; + +#define dspot09_room_0Set_000960DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_0065C0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_0065C0[] = dspot09_room_0Set_000960DL_0065C0; + +#define dspot09_room_0Set_000960DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_006888" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_006888[] = dspot09_room_0Set_000960DL_006888; + +#define dspot09_room_0Set_000960DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_006C40" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_006C40[] = dspot09_room_0Set_000960DL_006C40; + +#define dspot09_room_0Set_000960DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_007530" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_007530[] = dspot09_room_0Set_000960DL_007530; + +#define dspot09_room_0Set_000960DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_008698" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_008698[] = dspot09_room_0Set_000960DL_008698; + +#define dspot09_room_0Set_000960DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_003C98" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_003C98[] = dspot09_room_0Set_000960DL_003C98; + +#define dspot09_room_0Set_000960DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_004540" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_004540[] = dspot09_room_0Set_000960DL_004540; + +#define dspot09_room_0Set_000960DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_004C00" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_004C00[] = dspot09_room_0Set_000960DL_004C00; + +#define dspot09_room_0Set_000960DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005128" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_005128[] = dspot09_room_0Set_000960DL_005128; + +#define dspot09_room_0Set_000960DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005598" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_005598[] = dspot09_room_0Set_000960DL_005598; + +#define dspot09_room_0Set_000960DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000960DL_005A08" +static const ALIGN_ASSET(2) char spot09_room_0Set_000960DL_005A08[] = dspot09_room_0Set_000960DL_005A08; + +#define dspot09_room_0Set_000A80DL_0084C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0084C0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_0084C0[] = dspot09_room_0Set_000A80DL_0084C0; + +#define dspot09_room_0Set_000A80DL_002158 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_002158" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_002158[] = dspot09_room_0Set_000A80DL_002158; + +#define dspot09_room_0Set_000A80DL_002698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_002698" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_002698[] = dspot09_room_0Set_000A80DL_002698; + +#define dspot09_room_0Set_000A80DL_008108 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_008108" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_008108[] = dspot09_room_0Set_000A80DL_008108; + +#define dspot09_room_0Set_000A80DL_002A70 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_002A70" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_002A70[] = dspot09_room_0Set_000A80DL_002A70; + +#define dspot09_room_0Set_000A80DL_002DA8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_002DA8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_002DA8[] = dspot09_room_0Set_000A80DL_002DA8; + +#define dspot09_room_0Set_000A80DL_0030D0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0030D0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_0030D0[] = dspot09_room_0Set_000A80DL_0030D0; + +#define dspot09_room_0Set_000A80DL_001550 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_001550" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_001550[] = dspot09_room_0Set_000A80DL_001550; + +#define dspot09_room_0Set_000A80DL_003308 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_003308" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_003308[] = dspot09_room_0Set_000A80DL_003308; + +#define dspot09_room_0Set_000A80DL_003630 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_003630" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_003630[] = dspot09_room_0Set_000A80DL_003630; + +#define dspot09_room_0Set_000A80DL_0017A0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0017A0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_0017A0[] = dspot09_room_0Set_000A80DL_0017A0; + +#define dspot09_room_0Set_000A80DL_001A40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_001A40" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_001A40[] = dspot09_room_0Set_000A80DL_001A40; + +#define dspot09_room_0Set_000A80DL_006F88 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_006F88" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_006F88[] = dspot09_room_0Set_000A80DL_006F88; + +#define dspot09_room_0Set_000A80DL_001E98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_001E98" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_001E98[] = dspot09_room_0Set_000A80DL_001E98; + +#define dspot09_room_0Set_000A80DL_001330 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_001330" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_001330[] = dspot09_room_0Set_000A80DL_001330; + +#define dspot09_room_0Set_000A80DL_007FF8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_007FF8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_007FF8[] = dspot09_room_0Set_000A80DL_007FF8; + +#define dspot09_room_0Set_000A80DL_008318 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_008318" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_008318[] = dspot09_room_0Set_000A80DL_008318; + +#define dspot09_room_0Set_000A80DL_005C68 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005C68" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_005C68[] = dspot09_room_0Set_000A80DL_005C68; + +#define dspot09_room_0Set_000A80DL_005E80 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005E80" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_005E80[] = dspot09_room_0Set_000A80DL_005E80; + +#define dspot09_room_0Set_000A80DL_0060C8 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0060C8" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_0060C8[] = dspot09_room_0Set_000A80DL_0060C8; + +#define dspot09_room_0Set_000A80DL_006360 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_006360" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_006360[] = dspot09_room_0Set_000A80DL_006360; + +#define dspot09_room_0Set_000A80DL_0065C0 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_0065C0" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_0065C0[] = dspot09_room_0Set_000A80DL_0065C0; + +#define dspot09_room_0Set_000A80DL_006888 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_006888" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_006888[] = dspot09_room_0Set_000A80DL_006888; + +#define dspot09_room_0Set_000A80DL_006C40 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_006C40" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_006C40[] = dspot09_room_0Set_000A80DL_006C40; + +#define dspot09_room_0Set_000A80DL_007530 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_007530" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_007530[] = dspot09_room_0Set_000A80DL_007530; + +#define dspot09_room_0Set_000A80DL_008698 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_008698" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_008698[] = dspot09_room_0Set_000A80DL_008698; + +#define dspot09_room_0Set_000A80DL_003C98 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_003C98" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_003C98[] = dspot09_room_0Set_000A80DL_003C98; + +#define dspot09_room_0Set_000A80DL_004540 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_004540" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_004540[] = dspot09_room_0Set_000A80DL_004540; + +#define dspot09_room_0Set_000A80DL_004C00 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_004C00" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_004C00[] = dspot09_room_0Set_000A80DL_004C00; + +#define dspot09_room_0Set_000A80DL_005128 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005128" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_005128[] = dspot09_room_0Set_000A80DL_005128; + +#define dspot09_room_0Set_000A80DL_005598 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005598" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_005598[] = dspot09_room_0Set_000A80DL_005598; + +#define dspot09_room_0Set_000A80DL_005A08 "__OTR__scenes/nonmq/spot09_scene/spot09_room_0Set_000A80DL_005A08" +static const ALIGN_ASSET(2) char spot09_room_0Set_000A80DL_005A08[] = dspot09_room_0Set_000A80DL_005A08; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot09/spot09_scene.h b/soh/assets/scenes/overworld/spot09/spot09_scene.h index c49a784eb..cf0e0debc 100644 --- a/soh/assets/scenes/overworld/spot09/spot09_scene.h +++ b/soh/assets/scenes/overworld/spot09/spot09_scene.h @@ -1,181 +1,86 @@ #pragma once + +#include "align_asset_macro.h" + #define dgGerudoValleyBridgeJumpFieldFortressCs "__OTR__scenes/nonmq/spot09_scene/gGerudoValleyBridgeJumpFieldFortressCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyBridgeJumpFieldFortressCs[] = dgGerudoValleyBridgeJumpFieldFortressCs; -#else -static const char gGerudoValleyBridgeJumpFieldFortressCs[] __attribute__((aligned (2))) = dgGerudoValleyBridgeJumpFieldFortressCs; -#endif - +static const ALIGN_ASSET(2) char gGerudoValleyBridgeJumpFieldFortressCs[] = dgGerudoValleyBridgeJumpFieldFortressCs; + #define dgGerudoValleyBridgeJumpFortressToFieldCs "__OTR__scenes/nonmq/spot09_scene/gGerudoValleyBridgeJumpFortressToFieldCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyBridgeJumpFortressToFieldCs[] = dgGerudoValleyBridgeJumpFortressToFieldCs; -#else -static const char gGerudoValleyBridgeJumpFortressToFieldCs[] __attribute__((aligned (2))) = dgGerudoValleyBridgeJumpFortressToFieldCs; -#endif - +static const ALIGN_ASSET(2) char gGerudoValleyBridgeJumpFortressToFieldCs[] = dgGerudoValleyBridgeJumpFortressToFieldCs; + #define dgGerudoValleyIntroCs "__OTR__scenes/nonmq/spot09_scene/gGerudoValleyIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyIntroCs[] = dgGerudoValleyIntroCs; -#else -static const char gGerudoValleyIntroCs[] __attribute__((aligned (2))) = dgGerudoValleyIntroCs; -#endif - +static const ALIGN_ASSET(2) char gGerudoValleyIntroCs[] = dgGerudoValleyIntroCs; + #define dspot09_sceneCollisionHeader_002128 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneCollisionHeader_002128" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneCollisionHeader_002128[] = dspot09_sceneCollisionHeader_002128; -#else -static const char spot09_sceneCollisionHeader_002128[] __attribute__((aligned (2))) = dspot09_sceneCollisionHeader_002128; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneCollisionHeader_002128[] = dspot09_sceneCollisionHeader_002128; + #define dspot09_sceneTex_006D60 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_006D60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_006D60[] = dspot09_sceneTex_006D60; -#else -static const char spot09_sceneTex_006D60[] __attribute__((aligned (2))) = dspot09_sceneTex_006D60; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_006D60[] = dspot09_sceneTex_006D60; + #define dspot09_sceneTex_009160 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_009160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_009160[] = dspot09_sceneTex_009160; -#else -static const char spot09_sceneTex_009160[] __attribute__((aligned (2))) = dspot09_sceneTex_009160; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_009160[] = dspot09_sceneTex_009160; + #define dspot09_sceneTex_00F960 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00F960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00F960[] = dspot09_sceneTex_00F960; -#else -static const char spot09_sceneTex_00F960[] __attribute__((aligned (2))) = dspot09_sceneTex_00F960; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00F960[] = dspot09_sceneTex_00F960; + #define dspot09_sceneTex_00D160 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00D160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00D160[] = dspot09_sceneTex_00D160; -#else -static const char spot09_sceneTex_00D160[] __attribute__((aligned (2))) = dspot09_sceneTex_00D160; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00D160[] = dspot09_sceneTex_00D160; + #define dspot09_sceneTex_006C60 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_006C60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_006C60[] = dspot09_sceneTex_006C60; -#else -static const char spot09_sceneTex_006C60[] __attribute__((aligned (2))) = dspot09_sceneTex_006C60; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_006C60[] = dspot09_sceneTex_006C60; + #define dspot09_sceneTex_007160 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_007160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_007160[] = dspot09_sceneTex_007160; -#else -static const char spot09_sceneTex_007160[] __attribute__((aligned (2))) = dspot09_sceneTex_007160; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_007160[] = dspot09_sceneTex_007160; + #define dspot09_sceneTex_00A960 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00A960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00A960[] = dspot09_sceneTex_00A960; -#else -static const char spot09_sceneTex_00A960[] __attribute__((aligned (2))) = dspot09_sceneTex_00A960; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00A960[] = dspot09_sceneTex_00A960; + #define dspot09_sceneTex_004460 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_004460[] = dspot09_sceneTex_004460; -#else -static const char spot09_sceneTex_004460[] __attribute__((aligned (2))) = dspot09_sceneTex_004460; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_004460[] = dspot09_sceneTex_004460; + #define dspot09_sceneTex_008160 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_008160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_008160[] = dspot09_sceneTex_008160; -#else -static const char spot09_sceneTex_008160[] __attribute__((aligned (2))) = dspot09_sceneTex_008160; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_008160[] = dspot09_sceneTex_008160; + #define dspot09_sceneTex_00C160 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00C160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00C160[] = dspot09_sceneTex_00C160; -#else -static const char spot09_sceneTex_00C160[] __attribute__((aligned (2))) = dspot09_sceneTex_00C160; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00C160[] = dspot09_sceneTex_00C160; + #define dspot09_sceneTex_005C60 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_005C60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_005C60[] = dspot09_sceneTex_005C60; -#else -static const char spot09_sceneTex_005C60[] __attribute__((aligned (2))) = dspot09_sceneTex_005C60; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_005C60[] = dspot09_sceneTex_005C60; + #define dspot09_sceneTex_006460 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_006460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_006460[] = dspot09_sceneTex_006460; -#else -static const char spot09_sceneTex_006460[] __attribute__((aligned (2))) = dspot09_sceneTex_006460; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_006460[] = dspot09_sceneTex_006460; + #define dspot09_sceneTex_00B960 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00B960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00B960[] = dspot09_sceneTex_00B960; -#else -static const char spot09_sceneTex_00B960[] __attribute__((aligned (2))) = dspot09_sceneTex_00B960; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00B960[] = dspot09_sceneTex_00B960; + #define dspot09_sceneTex_010960 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_010960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_010960[] = dspot09_sceneTex_010960; -#else -static const char spot09_sceneTex_010960[] __attribute__((aligned (2))) = dspot09_sceneTex_010960; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_010960[] = dspot09_sceneTex_010960; + #define dspot09_sceneTex_00A160 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00A160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00A160[] = dspot09_sceneTex_00A160; -#else -static const char spot09_sceneTex_00A160[] __attribute__((aligned (2))) = dspot09_sceneTex_00A160; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00A160[] = dspot09_sceneTex_00A160; + #define dspot09_sceneTex_00E160 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00E160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00E160[] = dspot09_sceneTex_00E160; -#else -static const char spot09_sceneTex_00E160[] __attribute__((aligned (2))) = dspot09_sceneTex_00E160; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00E160[] = dspot09_sceneTex_00E160; + #define dspot09_sceneTex_00F160 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00F160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00F160[] = dspot09_sceneTex_00F160; -#else -static const char spot09_sceneTex_00F160[] __attribute__((aligned (2))) = dspot09_sceneTex_00F160; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00F160[] = dspot09_sceneTex_00F160; + #define dspot09_sceneTex_00E960 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_00E960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_00E960[] = dspot09_sceneTex_00E960; -#else -static const char spot09_sceneTex_00E960[] __attribute__((aligned (2))) = dspot09_sceneTex_00E960; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_00E960[] = dspot09_sceneTex_00E960; + #define dspot09_sceneTex_005460 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_005460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_005460[] = dspot09_sceneTex_005460; -#else -static const char spot09_sceneTex_005460[] __attribute__((aligned (2))) = dspot09_sceneTex_005460; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTex_005460[] = dspot09_sceneTex_005460; + #define dspot09_sceneTLUT_003440 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTLUT_003440" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTLUT_003440[] = dspot09_sceneTLUT_003440; -#else -static const char spot09_sceneTLUT_003440[] __attribute__((aligned (2))) = dspot09_sceneTLUT_003440; -#endif - +static const ALIGN_ASSET(2) char spot09_sceneTLUT_003440[] = dspot09_sceneTLUT_003440; + #define dspot09_sceneTex_003460 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneTex_003460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot09_sceneTex_003460[] = dspot09_sceneTex_003460; -#else -static const char spot09_sceneTex_003460[] __attribute__((aligned (2))) = dspot09_sceneTex_003460; -#endif - -#define dspot09_sceneCollisionHeader_002128 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneCollisionHeader_002128" -#define dspot09_sceneCollisionHeader_002128 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneCollisionHeader_002128" -#define dspot09_sceneCollisionHeader_002128 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneCollisionHeader_002128" +static const ALIGN_ASSET(2) char spot09_sceneTex_003460[] = dspot09_sceneTex_003460; + #define dspot09_sceneCollisionHeader_002128 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneCollisionHeader_002128" +#define dspot09_sceneCollisionHeader_002128 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneCollisionHeader_002128" + +#define dspot09_sceneCollisionHeader_002128 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneCollisionHeader_002128" + +#define dspot09_sceneCollisionHeader_002128 "__OTR__scenes/nonmq/spot09_scene/spot09_sceneCollisionHeader_002128" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_0.h b/soh/assets/scenes/overworld/spot10/spot10_room_0.h index 0fc03f8d6..3607cb74f 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_0.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_0.h @@ -1,23 +1,12 @@ #pragma once -#define dspot10_room_0DL_0025B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_0DL_0025B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_0DL_0025B0[] = dspot10_room_0DL_0025B0; -#else -static const char spot10_room_0DL_0025B0[] __attribute__((aligned (2))) = dspot10_room_0DL_0025B0; -#endif - -#define dspot10_room_0Set_0000B0DL_0025B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_0Set_0000B0DL_0025B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_0Set_0000B0DL_0025B0[] = dspot10_room_0Set_0000B0DL_0025B0; -#else -static const char spot10_room_0Set_0000B0DL_0025B0[] __attribute__((aligned (2))) = dspot10_room_0Set_0000B0DL_0025B0; -#endif - -#define dspot10_room_0Set_000130DL_0025B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_0Set_000130DL_0025B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_0Set_000130DL_0025B0[] = dspot10_room_0Set_000130DL_0025B0; -#else -static const char spot10_room_0Set_000130DL_0025B0[] __attribute__((aligned (2))) = dspot10_room_0Set_000130DL_0025B0; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_0DL_0025B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_0DL_0025B0" +static const ALIGN_ASSET(2) char spot10_room_0DL_0025B0[] = dspot10_room_0DL_0025B0; + +#define dspot10_room_0Set_0000B0DL_0025B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_0Set_0000B0DL_0025B0" +static const ALIGN_ASSET(2) char spot10_room_0Set_0000B0DL_0025B0[] = dspot10_room_0Set_0000B0DL_0025B0; + +#define dspot10_room_0Set_000130DL_0025B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_0Set_000130DL_0025B0" +static const ALIGN_ASSET(2) char spot10_room_0Set_000130DL_0025B0[] = dspot10_room_0Set_000130DL_0025B0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_1.h b/soh/assets/scenes/overworld/spot10/spot10_room_1.h index c627afca1..ce2fc3597 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_1.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_1.h @@ -1,107 +1,48 @@ #pragma once -#define dspot10_room_1DL_003B48 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1DL_003B48[] = dspot10_room_1DL_003B48; -#else -static const char spot10_room_1DL_003B48[] __attribute__((aligned (2))) = dspot10_room_1DL_003B48; -#endif - -#define dspot10_room_1Tex_003FA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_003FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_003FA0[] = dspot10_room_1Tex_003FA0; -#else -static const char spot10_room_1Tex_003FA0[] __attribute__((aligned (2))) = dspot10_room_1Tex_003FA0; -#endif - -#define dspot10_room_1Tex_003BA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_003BA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_003BA0[] = dspot10_room_1Tex_003BA0; -#else -static const char spot10_room_1Tex_003BA0[] __attribute__((aligned (2))) = dspot10_room_1Tex_003BA0; -#endif - -#define dspot10_room_1Tex_005FA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_005FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_005FA0[] = dspot10_room_1Tex_005FA0; -#else -static const char spot10_room_1Tex_005FA0[] __attribute__((aligned (2))) = dspot10_room_1Tex_005FA0; -#endif - -#define dspot10_room_1Tex_0067A0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_0067A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_0067A0[] = dspot10_room_1Tex_0067A0; -#else -static const char spot10_room_1Tex_0067A0[] __attribute__((aligned (2))) = dspot10_room_1Tex_0067A0; -#endif - -#define dspot10_room_1Tex_006FA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_006FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_006FA0[] = dspot10_room_1Tex_006FA0; -#else -static const char spot10_room_1Tex_006FA0[] __attribute__((aligned (2))) = dspot10_room_1Tex_006FA0; -#endif - -#define dspot10_room_1Tex_004FA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_004FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_004FA0[] = dspot10_room_1Tex_004FA0; -#else -static const char spot10_room_1Tex_004FA0[] __attribute__((aligned (2))) = dspot10_room_1Tex_004FA0; -#endif - -#define dspot10_room_1Tex_0047A0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_0047A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_0047A0[] = dspot10_room_1Tex_0047A0; -#else -static const char spot10_room_1Tex_0047A0[] __attribute__((aligned (2))) = dspot10_room_1Tex_0047A0; -#endif - -#define dspot10_room_1DL_007C18 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1DL_007C18[] = dspot10_room_1DL_007C18; -#else -static const char spot10_room_1DL_007C18[] __attribute__((aligned (2))) = dspot10_room_1DL_007C18; -#endif - -#define dspot10_room_1Tex_008030 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_008030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_008030[] = dspot10_room_1Tex_008030; -#else -static const char spot10_room_1Tex_008030[] __attribute__((aligned (2))) = dspot10_room_1Tex_008030; -#endif - -#define dspot10_room_1Tex_007C30 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_007C30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Tex_007C30[] = dspot10_room_1Tex_007C30; -#else -static const char spot10_room_1Tex_007C30[] __attribute__((aligned (2))) = dspot10_room_1Tex_007C30; -#endif - -#define dspot10_room_1Set_000110DL_003B48 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Set_000110DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Set_000110DL_003B48[] = dspot10_room_1Set_000110DL_003B48; -#else -static const char spot10_room_1Set_000110DL_003B48[] __attribute__((aligned (2))) = dspot10_room_1Set_000110DL_003B48; -#endif - -#define dspot10_room_1Set_000110DL_007C18 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Set_000110DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Set_000110DL_007C18[] = dspot10_room_1Set_000110DL_007C18; -#else -static const char spot10_room_1Set_000110DL_007C18[] __attribute__((aligned (2))) = dspot10_room_1Set_000110DL_007C18; -#endif - -#define dspot10_room_1Set_0001A0DL_003B48 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Set_0001A0DL_003B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Set_0001A0DL_003B48[] = dspot10_room_1Set_0001A0DL_003B48; -#else -static const char spot10_room_1Set_0001A0DL_003B48[] __attribute__((aligned (2))) = dspot10_room_1Set_0001A0DL_003B48; -#endif - -#define dspot10_room_1Set_0001A0DL_007C18 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Set_0001A0DL_007C18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_1Set_0001A0DL_007C18[] = dspot10_room_1Set_0001A0DL_007C18; -#else -static const char spot10_room_1Set_0001A0DL_007C18[] __attribute__((aligned (2))) = dspot10_room_1Set_0001A0DL_007C18; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_1DL_003B48 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1DL_003B48" +static const ALIGN_ASSET(2) char spot10_room_1DL_003B48[] = dspot10_room_1DL_003B48; + +#define dspot10_room_1Tex_003FA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_003FA0" +static const ALIGN_ASSET(2) char spot10_room_1Tex_003FA0[] = dspot10_room_1Tex_003FA0; + +#define dspot10_room_1Tex_003BA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_003BA0" +static const ALIGN_ASSET(2) char spot10_room_1Tex_003BA0[] = dspot10_room_1Tex_003BA0; + +#define dspot10_room_1Tex_005FA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_005FA0" +static const ALIGN_ASSET(2) char spot10_room_1Tex_005FA0[] = dspot10_room_1Tex_005FA0; + +#define dspot10_room_1Tex_0067A0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_0067A0" +static const ALIGN_ASSET(2) char spot10_room_1Tex_0067A0[] = dspot10_room_1Tex_0067A0; + +#define dspot10_room_1Tex_006FA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_006FA0" +static const ALIGN_ASSET(2) char spot10_room_1Tex_006FA0[] = dspot10_room_1Tex_006FA0; + +#define dspot10_room_1Tex_004FA0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_004FA0" +static const ALIGN_ASSET(2) char spot10_room_1Tex_004FA0[] = dspot10_room_1Tex_004FA0; + +#define dspot10_room_1Tex_0047A0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_0047A0" +static const ALIGN_ASSET(2) char spot10_room_1Tex_0047A0[] = dspot10_room_1Tex_0047A0; + +#define dspot10_room_1DL_007C18 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1DL_007C18" +static const ALIGN_ASSET(2) char spot10_room_1DL_007C18[] = dspot10_room_1DL_007C18; + +#define dspot10_room_1Tex_008030 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_008030" +static const ALIGN_ASSET(2) char spot10_room_1Tex_008030[] = dspot10_room_1Tex_008030; + +#define dspot10_room_1Tex_007C30 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Tex_007C30" +static const ALIGN_ASSET(2) char spot10_room_1Tex_007C30[] = dspot10_room_1Tex_007C30; + +#define dspot10_room_1Set_000110DL_003B48 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Set_000110DL_003B48" +static const ALIGN_ASSET(2) char spot10_room_1Set_000110DL_003B48[] = dspot10_room_1Set_000110DL_003B48; + +#define dspot10_room_1Set_000110DL_007C18 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Set_000110DL_007C18" +static const ALIGN_ASSET(2) char spot10_room_1Set_000110DL_007C18[] = dspot10_room_1Set_000110DL_007C18; + +#define dspot10_room_1Set_0001A0DL_003B48 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Set_0001A0DL_003B48" +static const ALIGN_ASSET(2) char spot10_room_1Set_0001A0DL_003B48[] = dspot10_room_1Set_0001A0DL_003B48; + +#define dspot10_room_1Set_0001A0DL_007C18 "__OTR__scenes/nonmq/spot10_scene/spot10_room_1Set_0001A0DL_007C18" +static const ALIGN_ASSET(2) char spot10_room_1Set_0001A0DL_007C18[] = dspot10_room_1Set_0001A0DL_007C18; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_2.h b/soh/assets/scenes/overworld/spot10/spot10_room_2.h index c21fb88bd..84384e78d 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_2.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_2.h @@ -1,44 +1,21 @@ #pragma once -#define dspot10_room_2DL_0023B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2DL_0023B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_2DL_0023B0[] = dspot10_room_2DL_0023B0; -#else -static const char spot10_room_2DL_0023B0[] __attribute__((aligned (2))) = dspot10_room_2DL_0023B0; -#endif - -#define dspot10_room_2Tex_0043E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Tex_0043E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_2Tex_0043E8[] = dspot10_room_2Tex_0043E8; -#else -static const char spot10_room_2Tex_0043E8[] __attribute__((aligned (2))) = dspot10_room_2Tex_0043E8; -#endif - -#define dspot10_room_2Tex_0023E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Tex_0023E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_2Tex_0023E8[] = dspot10_room_2Tex_0023E8; -#else -static const char spot10_room_2Tex_0023E8[] __attribute__((aligned (2))) = dspot10_room_2Tex_0023E8; -#endif - -#define dspot10_room_2Tex_0033E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Tex_0033E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_2Tex_0033E8[] = dspot10_room_2Tex_0033E8; -#else -static const char spot10_room_2Tex_0033E8[] __attribute__((aligned (2))) = dspot10_room_2Tex_0033E8; -#endif - -#define dspot10_room_2Set_000110DL_0023B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Set_000110DL_0023B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_2Set_000110DL_0023B0[] = dspot10_room_2Set_000110DL_0023B0; -#else -static const char spot10_room_2Set_000110DL_0023B0[] __attribute__((aligned (2))) = dspot10_room_2Set_000110DL_0023B0; -#endif - -#define dspot10_room_2Set_0001F0DL_0023B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Set_0001F0DL_0023B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_2Set_0001F0DL_0023B0[] = dspot10_room_2Set_0001F0DL_0023B0; -#else -static const char spot10_room_2Set_0001F0DL_0023B0[] __attribute__((aligned (2))) = dspot10_room_2Set_0001F0DL_0023B0; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_2DL_0023B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2DL_0023B0" +static const ALIGN_ASSET(2) char spot10_room_2DL_0023B0[] = dspot10_room_2DL_0023B0; + +#define dspot10_room_2Tex_0043E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Tex_0043E8" +static const ALIGN_ASSET(2) char spot10_room_2Tex_0043E8[] = dspot10_room_2Tex_0043E8; + +#define dspot10_room_2Tex_0023E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Tex_0023E8" +static const ALIGN_ASSET(2) char spot10_room_2Tex_0023E8[] = dspot10_room_2Tex_0023E8; + +#define dspot10_room_2Tex_0033E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Tex_0033E8" +static const ALIGN_ASSET(2) char spot10_room_2Tex_0033E8[] = dspot10_room_2Tex_0033E8; + +#define dspot10_room_2Set_000110DL_0023B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Set_000110DL_0023B0" +static const ALIGN_ASSET(2) char spot10_room_2Set_000110DL_0023B0[] = dspot10_room_2Set_000110DL_0023B0; + +#define dspot10_room_2Set_0001F0DL_0023B0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_2Set_0001F0DL_0023B0" +static const ALIGN_ASSET(2) char spot10_room_2Set_0001F0DL_0023B0[] = dspot10_room_2Set_0001F0DL_0023B0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_3.h b/soh/assets/scenes/overworld/spot10/spot10_room_3.h index dd92165fc..14787644b 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_3.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_3.h @@ -1,72 +1,33 @@ #pragma once -#define dspot10_room_3DL_0028C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3DL_0028C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3DL_0028C0[] = dspot10_room_3DL_0028C0; -#else -static const char spot10_room_3DL_0028C0[] __attribute__((aligned (2))) = dspot10_room_3DL_0028C0; -#endif - -#define dspot10_room_3Tex_0038F8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Tex_0038F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3Tex_0038F8[] = dspot10_room_3Tex_0038F8; -#else -static const char spot10_room_3Tex_0038F8[] __attribute__((aligned (2))) = dspot10_room_3Tex_0038F8; -#endif - -#define dspot10_room_3Tex_0028F8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Tex_0028F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3Tex_0028F8[] = dspot10_room_3Tex_0028F8; -#else -static const char spot10_room_3Tex_0028F8[] __attribute__((aligned (2))) = dspot10_room_3Tex_0028F8; -#endif - -#define dspot10_room_3Tex_0048F8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Tex_0048F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3Tex_0048F8[] = dspot10_room_3Tex_0048F8; -#else -static const char spot10_room_3Tex_0048F8[] __attribute__((aligned (2))) = dspot10_room_3Tex_0048F8; -#endif - -#define dspot10_room_3DL_005298 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3DL_005298" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3DL_005298[] = dspot10_room_3DL_005298; -#else -static const char spot10_room_3DL_005298[] __attribute__((aligned (2))) = dspot10_room_3DL_005298; -#endif - -#define dspot10_room_3Tex_0052A8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Tex_0052A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3Tex_0052A8[] = dspot10_room_3Tex_0052A8; -#else -static const char spot10_room_3Tex_0052A8[] __attribute__((aligned (2))) = dspot10_room_3Tex_0052A8; -#endif - -#define dspot10_room_3Set_000150DL_0028C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Set_000150DL_0028C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3Set_000150DL_0028C0[] = dspot10_room_3Set_000150DL_0028C0; -#else -static const char spot10_room_3Set_000150DL_0028C0[] __attribute__((aligned (2))) = dspot10_room_3Set_000150DL_0028C0; -#endif - -#define dspot10_room_3Set_000150DL_005298 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Set_000150DL_005298" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3Set_000150DL_005298[] = dspot10_room_3Set_000150DL_005298; -#else -static const char spot10_room_3Set_000150DL_005298[] __attribute__((aligned (2))) = dspot10_room_3Set_000150DL_005298; -#endif - -#define dspot10_room_3Set_000210DL_0028C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Set_000210DL_0028C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3Set_000210DL_0028C0[] = dspot10_room_3Set_000210DL_0028C0; -#else -static const char spot10_room_3Set_000210DL_0028C0[] __attribute__((aligned (2))) = dspot10_room_3Set_000210DL_0028C0; -#endif - -#define dspot10_room_3Set_000210DL_005298 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Set_000210DL_005298" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_3Set_000210DL_005298[] = dspot10_room_3Set_000210DL_005298; -#else -static const char spot10_room_3Set_000210DL_005298[] __attribute__((aligned (2))) = dspot10_room_3Set_000210DL_005298; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_3DL_0028C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3DL_0028C0" +static const ALIGN_ASSET(2) char spot10_room_3DL_0028C0[] = dspot10_room_3DL_0028C0; + +#define dspot10_room_3Tex_0038F8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Tex_0038F8" +static const ALIGN_ASSET(2) char spot10_room_3Tex_0038F8[] = dspot10_room_3Tex_0038F8; + +#define dspot10_room_3Tex_0028F8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Tex_0028F8" +static const ALIGN_ASSET(2) char spot10_room_3Tex_0028F8[] = dspot10_room_3Tex_0028F8; + +#define dspot10_room_3Tex_0048F8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Tex_0048F8" +static const ALIGN_ASSET(2) char spot10_room_3Tex_0048F8[] = dspot10_room_3Tex_0048F8; + +#define dspot10_room_3DL_005298 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3DL_005298" +static const ALIGN_ASSET(2) char spot10_room_3DL_005298[] = dspot10_room_3DL_005298; + +#define dspot10_room_3Tex_0052A8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Tex_0052A8" +static const ALIGN_ASSET(2) char spot10_room_3Tex_0052A8[] = dspot10_room_3Tex_0052A8; + +#define dspot10_room_3Set_000150DL_0028C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Set_000150DL_0028C0" +static const ALIGN_ASSET(2) char spot10_room_3Set_000150DL_0028C0[] = dspot10_room_3Set_000150DL_0028C0; + +#define dspot10_room_3Set_000150DL_005298 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Set_000150DL_005298" +static const ALIGN_ASSET(2) char spot10_room_3Set_000150DL_005298[] = dspot10_room_3Set_000150DL_005298; + +#define dspot10_room_3Set_000210DL_0028C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Set_000210DL_0028C0" +static const ALIGN_ASSET(2) char spot10_room_3Set_000210DL_0028C0[] = dspot10_room_3Set_000210DL_0028C0; + +#define dspot10_room_3Set_000210DL_005298 "__OTR__scenes/nonmq/spot10_scene/spot10_room_3Set_000210DL_005298" +static const ALIGN_ASSET(2) char spot10_room_3Set_000210DL_005298[] = dspot10_room_3Set_000210DL_005298; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_4.h b/soh/assets/scenes/overworld/spot10/spot10_room_4.h index 1e2317114..ff377fa1a 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_4.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_4.h @@ -1,23 +1,12 @@ #pragma once -#define dspot10_room_4DL_002490 "__OTR__scenes/nonmq/spot10_scene/spot10_room_4DL_002490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_4DL_002490[] = dspot10_room_4DL_002490; -#else -static const char spot10_room_4DL_002490[] __attribute__((aligned (2))) = dspot10_room_4DL_002490; -#endif - -#define dspot10_room_4Set_0000B0DL_002490 "__OTR__scenes/nonmq/spot10_scene/spot10_room_4Set_0000B0DL_002490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_4Set_0000B0DL_002490[] = dspot10_room_4Set_0000B0DL_002490; -#else -static const char spot10_room_4Set_0000B0DL_002490[] __attribute__((aligned (2))) = dspot10_room_4Set_0000B0DL_002490; -#endif - -#define dspot10_room_4Set_000130DL_002490 "__OTR__scenes/nonmq/spot10_scene/spot10_room_4Set_000130DL_002490" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_4Set_000130DL_002490[] = dspot10_room_4Set_000130DL_002490; -#else -static const char spot10_room_4Set_000130DL_002490[] __attribute__((aligned (2))) = dspot10_room_4Set_000130DL_002490; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_4DL_002490 "__OTR__scenes/nonmq/spot10_scene/spot10_room_4DL_002490" +static const ALIGN_ASSET(2) char spot10_room_4DL_002490[] = dspot10_room_4DL_002490; + +#define dspot10_room_4Set_0000B0DL_002490 "__OTR__scenes/nonmq/spot10_scene/spot10_room_4Set_0000B0DL_002490" +static const ALIGN_ASSET(2) char spot10_room_4Set_0000B0DL_002490[] = dspot10_room_4Set_0000B0DL_002490; + +#define dspot10_room_4Set_000130DL_002490 "__OTR__scenes/nonmq/spot10_scene/spot10_room_4Set_000130DL_002490" +static const ALIGN_ASSET(2) char spot10_room_4Set_000130DL_002490[] = dspot10_room_4Set_000130DL_002490; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_5.h b/soh/assets/scenes/overworld/spot10/spot10_room_5.h index 0457dd54c..9067f6b4c 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_5.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_5.h @@ -1,51 +1,24 @@ #pragma once -#define dspot10_room_5DL_003780 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5DL_003780" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_5DL_003780[] = dspot10_room_5DL_003780; -#else -static const char spot10_room_5DL_003780[] __attribute__((aligned (2))) = dspot10_room_5DL_003780; -#endif - -#define dspot10_room_5Tex_0067F0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Tex_0067F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_5Tex_0067F0[] = dspot10_room_5Tex_0067F0; -#else -static const char spot10_room_5Tex_0067F0[] __attribute__((aligned (2))) = dspot10_room_5Tex_0067F0; -#endif - -#define dspot10_room_5Tex_0047F0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Tex_0047F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_5Tex_0047F0[] = dspot10_room_5Tex_0047F0; -#else -static const char spot10_room_5Tex_0047F0[] __attribute__((aligned (2))) = dspot10_room_5Tex_0047F0; -#endif - -#define dspot10_room_5Tex_0057F0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Tex_0057F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_5Tex_0057F0[] = dspot10_room_5Tex_0057F0; -#else -static const char spot10_room_5Tex_0057F0[] __attribute__((aligned (2))) = dspot10_room_5Tex_0057F0; -#endif - -#define dspot10_room_5Tex_0037F0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Tex_0037F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_5Tex_0037F0[] = dspot10_room_5Tex_0037F0; -#else -static const char spot10_room_5Tex_0037F0[] __attribute__((aligned (2))) = dspot10_room_5Tex_0037F0; -#endif - -#define dspot10_room_5Set_0000E0DL_003780 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Set_0000E0DL_003780" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_5Set_0000E0DL_003780[] = dspot10_room_5Set_0000E0DL_003780; -#else -static const char spot10_room_5Set_0000E0DL_003780[] __attribute__((aligned (2))) = dspot10_room_5Set_0000E0DL_003780; -#endif - -#define dspot10_room_5Set_000180DL_003780 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Set_000180DL_003780" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_5Set_000180DL_003780[] = dspot10_room_5Set_000180DL_003780; -#else -static const char spot10_room_5Set_000180DL_003780[] __attribute__((aligned (2))) = dspot10_room_5Set_000180DL_003780; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_5DL_003780 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5DL_003780" +static const ALIGN_ASSET(2) char spot10_room_5DL_003780[] = dspot10_room_5DL_003780; + +#define dspot10_room_5Tex_0067F0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Tex_0067F0" +static const ALIGN_ASSET(2) char spot10_room_5Tex_0067F0[] = dspot10_room_5Tex_0067F0; + +#define dspot10_room_5Tex_0047F0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Tex_0047F0" +static const ALIGN_ASSET(2) char spot10_room_5Tex_0047F0[] = dspot10_room_5Tex_0047F0; + +#define dspot10_room_5Tex_0057F0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Tex_0057F0" +static const ALIGN_ASSET(2) char spot10_room_5Tex_0057F0[] = dspot10_room_5Tex_0057F0; + +#define dspot10_room_5Tex_0037F0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Tex_0037F0" +static const ALIGN_ASSET(2) char spot10_room_5Tex_0037F0[] = dspot10_room_5Tex_0037F0; + +#define dspot10_room_5Set_0000E0DL_003780 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Set_0000E0DL_003780" +static const ALIGN_ASSET(2) char spot10_room_5Set_0000E0DL_003780[] = dspot10_room_5Set_0000E0DL_003780; + +#define dspot10_room_5Set_000180DL_003780 "__OTR__scenes/nonmq/spot10_scene/spot10_room_5Set_000180DL_003780" +static const ALIGN_ASSET(2) char spot10_room_5Set_000180DL_003780[] = dspot10_room_5Set_000180DL_003780; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_6.h b/soh/assets/scenes/overworld/spot10/spot10_room_6.h index ad23f63a4..e6b3d543f 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_6.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_6.h @@ -1,44 +1,21 @@ #pragma once -#define dspot10_room_6DL_0022B8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6DL_0022B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_6DL_0022B8[] = dspot10_room_6DL_0022B8; -#else -static const char spot10_room_6DL_0022B8[] __attribute__((aligned (2))) = dspot10_room_6DL_0022B8; -#endif - -#define dspot10_room_6Tex_0022E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Tex_0022E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_6Tex_0022E8[] = dspot10_room_6Tex_0022E8; -#else -static const char spot10_room_6Tex_0022E8[] __attribute__((aligned (2))) = dspot10_room_6Tex_0022E8; -#endif - -#define dspot10_room_6Tex_002AE8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Tex_002AE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_6Tex_002AE8[] = dspot10_room_6Tex_002AE8; -#else -static const char spot10_room_6Tex_002AE8[] __attribute__((aligned (2))) = dspot10_room_6Tex_002AE8; -#endif - -#define dspot10_room_6Tex_0032E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Tex_0032E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_6Tex_0032E8[] = dspot10_room_6Tex_0032E8; -#else -static const char spot10_room_6Tex_0032E8[] __attribute__((aligned (2))) = dspot10_room_6Tex_0032E8; -#endif - -#define dspot10_room_6Set_000100DL_0022B8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Set_000100DL_0022B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_6Set_000100DL_0022B8[] = dspot10_room_6Set_000100DL_0022B8; -#else -static const char spot10_room_6Set_000100DL_0022B8[] __attribute__((aligned (2))) = dspot10_room_6Set_000100DL_0022B8; -#endif - -#define dspot10_room_6Set_000190DL_0022B8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Set_000190DL_0022B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_6Set_000190DL_0022B8[] = dspot10_room_6Set_000190DL_0022B8; -#else -static const char spot10_room_6Set_000190DL_0022B8[] __attribute__((aligned (2))) = dspot10_room_6Set_000190DL_0022B8; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_6DL_0022B8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6DL_0022B8" +static const ALIGN_ASSET(2) char spot10_room_6DL_0022B8[] = dspot10_room_6DL_0022B8; + +#define dspot10_room_6Tex_0022E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Tex_0022E8" +static const ALIGN_ASSET(2) char spot10_room_6Tex_0022E8[] = dspot10_room_6Tex_0022E8; + +#define dspot10_room_6Tex_002AE8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Tex_002AE8" +static const ALIGN_ASSET(2) char spot10_room_6Tex_002AE8[] = dspot10_room_6Tex_002AE8; + +#define dspot10_room_6Tex_0032E8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Tex_0032E8" +static const ALIGN_ASSET(2) char spot10_room_6Tex_0032E8[] = dspot10_room_6Tex_0032E8; + +#define dspot10_room_6Set_000100DL_0022B8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Set_000100DL_0022B8" +static const ALIGN_ASSET(2) char spot10_room_6Set_000100DL_0022B8[] = dspot10_room_6Set_000100DL_0022B8; + +#define dspot10_room_6Set_000190DL_0022B8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_6Set_000190DL_0022B8" +static const ALIGN_ASSET(2) char spot10_room_6Set_000190DL_0022B8[] = dspot10_room_6Set_000190DL_0022B8; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_7.h b/soh/assets/scenes/overworld/spot10/spot10_room_7.h index 4d67e99c1..f027004e4 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_7.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_7.h @@ -1,23 +1,12 @@ #pragma once -#define dspot10_room_7DL_002588 "__OTR__scenes/nonmq/spot10_scene/spot10_room_7DL_002588" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_7DL_002588[] = dspot10_room_7DL_002588; -#else -static const char spot10_room_7DL_002588[] __attribute__((aligned (2))) = dspot10_room_7DL_002588; -#endif - -#define dspot10_room_7Set_0000F0DL_002588 "__OTR__scenes/nonmq/spot10_scene/spot10_room_7Set_0000F0DL_002588" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_7Set_0000F0DL_002588[] = dspot10_room_7Set_0000F0DL_002588; -#else -static const char spot10_room_7Set_0000F0DL_002588[] __attribute__((aligned (2))) = dspot10_room_7Set_0000F0DL_002588; -#endif - -#define dspot10_room_7Set_0001B0DL_002588 "__OTR__scenes/nonmq/spot10_scene/spot10_room_7Set_0001B0DL_002588" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_7Set_0001B0DL_002588[] = dspot10_room_7Set_0001B0DL_002588; -#else -static const char spot10_room_7Set_0001B0DL_002588[] __attribute__((aligned (2))) = dspot10_room_7Set_0001B0DL_002588; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_7DL_002588 "__OTR__scenes/nonmq/spot10_scene/spot10_room_7DL_002588" +static const ALIGN_ASSET(2) char spot10_room_7DL_002588[] = dspot10_room_7DL_002588; + +#define dspot10_room_7Set_0000F0DL_002588 "__OTR__scenes/nonmq/spot10_scene/spot10_room_7Set_0000F0DL_002588" +static const ALIGN_ASSET(2) char spot10_room_7Set_0000F0DL_002588[] = dspot10_room_7Set_0000F0DL_002588; + +#define dspot10_room_7Set_0001B0DL_002588 "__OTR__scenes/nonmq/spot10_scene/spot10_room_7Set_0001B0DL_002588" +static const ALIGN_ASSET(2) char spot10_room_7Set_0001B0DL_002588[] = dspot10_room_7Set_0001B0DL_002588; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_8.h b/soh/assets/scenes/overworld/spot10/spot10_room_8.h index 2b0cf4cae..214006897 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_8.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_8.h @@ -1,23 +1,12 @@ #pragma once -#define dspot10_room_8DL_002630 "__OTR__scenes/nonmq/spot10_scene/spot10_room_8DL_002630" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_8DL_002630[] = dspot10_room_8DL_002630; -#else -static const char spot10_room_8DL_002630[] __attribute__((aligned (2))) = dspot10_room_8DL_002630; -#endif - -#define dspot10_room_8Set_000120DL_002630 "__OTR__scenes/nonmq/spot10_scene/spot10_room_8Set_000120DL_002630" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_8Set_000120DL_002630[] = dspot10_room_8Set_000120DL_002630; -#else -static const char spot10_room_8Set_000120DL_002630[] __attribute__((aligned (2))) = dspot10_room_8Set_000120DL_002630; -#endif - -#define dspot10_room_8Set_000200DL_002630 "__OTR__scenes/nonmq/spot10_scene/spot10_room_8Set_000200DL_002630" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_8Set_000200DL_002630[] = dspot10_room_8Set_000200DL_002630; -#else -static const char spot10_room_8Set_000200DL_002630[] __attribute__((aligned (2))) = dspot10_room_8Set_000200DL_002630; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_8DL_002630 "__OTR__scenes/nonmq/spot10_scene/spot10_room_8DL_002630" +static const ALIGN_ASSET(2) char spot10_room_8DL_002630[] = dspot10_room_8DL_002630; + +#define dspot10_room_8Set_000120DL_002630 "__OTR__scenes/nonmq/spot10_scene/spot10_room_8Set_000120DL_002630" +static const ALIGN_ASSET(2) char spot10_room_8Set_000120DL_002630[] = dspot10_room_8Set_000120DL_002630; + +#define dspot10_room_8Set_000200DL_002630 "__OTR__scenes/nonmq/spot10_scene/spot10_room_8Set_000200DL_002630" +static const ALIGN_ASSET(2) char spot10_room_8Set_000200DL_002630[] = dspot10_room_8Set_000200DL_002630; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_room_9.h b/soh/assets/scenes/overworld/spot10/spot10_room_9.h index 27acc952e..e66adddae 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_room_9.h +++ b/soh/assets/scenes/overworld/spot10/spot10_room_9.h @@ -1,72 +1,33 @@ #pragma once -#define dspot10_room_9DL_001EC0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9DL_001EC0[] = dspot10_room_9DL_001EC0; -#else -static const char spot10_room_9DL_001EC0[] __attribute__((aligned (2))) = dspot10_room_9DL_001EC0; -#endif - -#define dspot10_room_9Tex_0026F8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Tex_0026F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9Tex_0026F8[] = dspot10_room_9Tex_0026F8; -#else -static const char spot10_room_9Tex_0026F8[] __attribute__((aligned (2))) = dspot10_room_9Tex_0026F8; -#endif - -#define dspot10_room_9Tex_001EF8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Tex_001EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9Tex_001EF8[] = dspot10_room_9Tex_001EF8; -#else -static const char spot10_room_9Tex_001EF8[] __attribute__((aligned (2))) = dspot10_room_9Tex_001EF8; -#endif - -#define dspot10_room_9DL_0033C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9DL_0033C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9DL_0033C0[] = dspot10_room_9DL_0033C0; -#else -static const char spot10_room_9DL_0033C0[] __attribute__((aligned (2))) = dspot10_room_9DL_0033C0; -#endif - -#define dspot10_room_9Tex_0037D8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Tex_0037D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9Tex_0037D8[] = dspot10_room_9Tex_0037D8; -#else -static const char spot10_room_9Tex_0037D8[] __attribute__((aligned (2))) = dspot10_room_9Tex_0037D8; -#endif - -#define dspot10_room_9Tex_0033D8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Tex_0033D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9Tex_0033D8[] = dspot10_room_9Tex_0033D8; -#else -static const char spot10_room_9Tex_0033D8[] __attribute__((aligned (2))) = dspot10_room_9Tex_0033D8; -#endif - -#define dspot10_room_9Set_0000B0DL_001EC0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Set_0000B0DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9Set_0000B0DL_001EC0[] = dspot10_room_9Set_0000B0DL_001EC0; -#else -static const char spot10_room_9Set_0000B0DL_001EC0[] __attribute__((aligned (2))) = dspot10_room_9Set_0000B0DL_001EC0; -#endif - -#define dspot10_room_9Set_0000B0DL_0033C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Set_0000B0DL_0033C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9Set_0000B0DL_0033C0[] = dspot10_room_9Set_0000B0DL_0033C0; -#else -static const char spot10_room_9Set_0000B0DL_0033C0[] __attribute__((aligned (2))) = dspot10_room_9Set_0000B0DL_0033C0; -#endif - -#define dspot10_room_9Set_000140DL_001EC0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Set_000140DL_001EC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9Set_000140DL_001EC0[] = dspot10_room_9Set_000140DL_001EC0; -#else -static const char spot10_room_9Set_000140DL_001EC0[] __attribute__((aligned (2))) = dspot10_room_9Set_000140DL_001EC0; -#endif - -#define dspot10_room_9Set_000140DL_0033C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Set_000140DL_0033C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_room_9Set_000140DL_0033C0[] = dspot10_room_9Set_000140DL_0033C0; -#else -static const char spot10_room_9Set_000140DL_0033C0[] __attribute__((aligned (2))) = dspot10_room_9Set_000140DL_0033C0; -#endif - +#include "align_asset_macro.h" + +#define dspot10_room_9DL_001EC0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9DL_001EC0" +static const ALIGN_ASSET(2) char spot10_room_9DL_001EC0[] = dspot10_room_9DL_001EC0; + +#define dspot10_room_9Tex_0026F8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Tex_0026F8" +static const ALIGN_ASSET(2) char spot10_room_9Tex_0026F8[] = dspot10_room_9Tex_0026F8; + +#define dspot10_room_9Tex_001EF8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Tex_001EF8" +static const ALIGN_ASSET(2) char spot10_room_9Tex_001EF8[] = dspot10_room_9Tex_001EF8; + +#define dspot10_room_9DL_0033C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9DL_0033C0" +static const ALIGN_ASSET(2) char spot10_room_9DL_0033C0[] = dspot10_room_9DL_0033C0; + +#define dspot10_room_9Tex_0037D8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Tex_0037D8" +static const ALIGN_ASSET(2) char spot10_room_9Tex_0037D8[] = dspot10_room_9Tex_0037D8; + +#define dspot10_room_9Tex_0033D8 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Tex_0033D8" +static const ALIGN_ASSET(2) char spot10_room_9Tex_0033D8[] = dspot10_room_9Tex_0033D8; + +#define dspot10_room_9Set_0000B0DL_001EC0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Set_0000B0DL_001EC0" +static const ALIGN_ASSET(2) char spot10_room_9Set_0000B0DL_001EC0[] = dspot10_room_9Set_0000B0DL_001EC0; + +#define dspot10_room_9Set_0000B0DL_0033C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Set_0000B0DL_0033C0" +static const ALIGN_ASSET(2) char spot10_room_9Set_0000B0DL_0033C0[] = dspot10_room_9Set_0000B0DL_0033C0; + +#define dspot10_room_9Set_000140DL_001EC0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Set_000140DL_001EC0" +static const ALIGN_ASSET(2) char spot10_room_9Set_000140DL_001EC0[] = dspot10_room_9Set_000140DL_001EC0; + +#define dspot10_room_9Set_000140DL_0033C0 "__OTR__scenes/nonmq/spot10_scene/spot10_room_9Set_000140DL_0033C0" +static const ALIGN_ASSET(2) char spot10_room_9Set_000140DL_0033C0[] = dspot10_room_9Set_000140DL_0033C0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot10/spot10_scene.h b/soh/assets/scenes/overworld/spot10/spot10_scene.h index 626d5d602..3eb042356 100644 --- a/soh/assets/scenes/overworld/spot10/spot10_scene.h +++ b/soh/assets/scenes/overworld/spot10/spot10_scene.h @@ -1,67 +1,34 @@ #pragma once + +#include "align_asset_macro.h" + #define dspot10_sceneCollisionHeader_00AC98 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneCollisionHeader_00AC98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneCollisionHeader_00AC98[] = dspot10_sceneCollisionHeader_00AC98; -#else -static const char spot10_sceneCollisionHeader_00AC98[] __attribute__((aligned (2))) = dspot10_sceneCollisionHeader_00AC98; -#endif - +static const ALIGN_ASSET(2) char spot10_sceneCollisionHeader_00AC98[] = dspot10_sceneCollisionHeader_00AC98; + #define dspot10_sceneTex_00FC30 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneTex_00FC30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneTex_00FC30[] = dspot10_sceneTex_00FC30; -#else -static const char spot10_sceneTex_00FC30[] __attribute__((aligned (2))) = dspot10_sceneTex_00FC30; -#endif - +static const ALIGN_ASSET(2) char spot10_sceneTex_00FC30[] = dspot10_sceneTex_00FC30; + #define dspot10_sceneTex_00EA30 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneTex_00EA30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneTex_00EA30[] = dspot10_sceneTex_00EA30; -#else -static const char spot10_sceneTex_00EA30[] __attribute__((aligned (2))) = dspot10_sceneTex_00EA30; -#endif - +static const ALIGN_ASSET(2) char spot10_sceneTex_00EA30[] = dspot10_sceneTex_00EA30; + #define dspot10_sceneTex_00DA30 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneTex_00DA30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneTex_00DA30[] = dspot10_sceneTex_00DA30; -#else -static const char spot10_sceneTex_00DA30[] __attribute__((aligned (2))) = dspot10_sceneTex_00DA30; -#endif - +static const ALIGN_ASSET(2) char spot10_sceneTex_00DA30[] = dspot10_sceneTex_00DA30; + #define dspot10_sceneTex_00F430 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneTex_00F430" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneTex_00F430[] = dspot10_sceneTex_00F430; -#else -static const char spot10_sceneTex_00F430[] __attribute__((aligned (2))) = dspot10_sceneTex_00F430; -#endif - +static const ALIGN_ASSET(2) char spot10_sceneTex_00F430[] = dspot10_sceneTex_00F430; + #define dspot10_sceneTex_00F230 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneTex_00F230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneTex_00F230[] = dspot10_sceneTex_00F230; -#else -static const char spot10_sceneTex_00F230[] __attribute__((aligned (2))) = dspot10_sceneTex_00F230; -#endif - +static const ALIGN_ASSET(2) char spot10_sceneTex_00F230[] = dspot10_sceneTex_00F230; + #define dspot10_sceneTex_00C230 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneTex_00C230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneTex_00C230[] = dspot10_sceneTex_00C230; -#else -static const char spot10_sceneTex_00C230[] __attribute__((aligned (2))) = dspot10_sceneTex_00C230; -#endif - +static const ALIGN_ASSET(2) char spot10_sceneTex_00C230[] = dspot10_sceneTex_00C230; + #define dspot10_sceneTex_00CA30 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneTex_00CA30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneTex_00CA30[] = dspot10_sceneTex_00CA30; -#else -static const char spot10_sceneTex_00CA30[] __attribute__((aligned (2))) = dspot10_sceneTex_00CA30; -#endif - +static const ALIGN_ASSET(2) char spot10_sceneTex_00CA30[] = dspot10_sceneTex_00CA30; + #define dspot10_sceneTex_00D230 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneTex_00D230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot10_sceneTex_00D230[] = dspot10_sceneTex_00D230; -#else -static const char spot10_sceneTex_00D230[] __attribute__((aligned (2))) = dspot10_sceneTex_00D230; -#endif - -#define dspot10_sceneCollisionHeader_00AC98 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneCollisionHeader_00AC98" +static const ALIGN_ASSET(2) char spot10_sceneTex_00D230[] = dspot10_sceneTex_00D230; + #define dspot10_sceneCollisionHeader_00AC98 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneCollisionHeader_00AC98" +#define dspot10_sceneCollisionHeader_00AC98 "__OTR__scenes/nonmq/spot10_scene/spot10_sceneCollisionHeader_00AC98" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot11/spot11_room_0.h b/soh/assets/scenes/overworld/spot11/spot11_room_0.h index 3d4d7598b..22c1090d6 100644 --- a/soh/assets/scenes/overworld/spot11/spot11_room_0.h +++ b/soh/assets/scenes/overworld/spot11/spot11_room_0.h @@ -1,534 +1,231 @@ #pragma once -#define dspot11_room_0DL_0037A8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_0037A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_0037A8[] = dspot11_room_0DL_0037A8; -#else -static const char spot11_room_0DL_0037A8[] __attribute__((aligned (2))) = dspot11_room_0DL_0037A8; -#endif - -#define dspot11_room_0DL_002548 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_002548" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_002548[] = dspot11_room_0DL_002548; -#else -static const char spot11_room_0DL_002548[] __attribute__((aligned (2))) = dspot11_room_0DL_002548; -#endif - -#define dspot11_room_0DL_0029F0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_0029F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_0029F0[] = dspot11_room_0DL_0029F0; -#else -static const char spot11_room_0DL_0029F0[] __attribute__((aligned (2))) = dspot11_room_0DL_0029F0; -#endif - -#define dspot11_room_0DL_002D68 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_002D68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_002D68[] = dspot11_room_0DL_002D68; -#else -static const char spot11_room_0DL_002D68[] __attribute__((aligned (2))) = dspot11_room_0DL_002D68; -#endif - -#define dspot11_room_0DL_008520 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_008520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_008520[] = dspot11_room_0DL_008520; -#else -static const char spot11_room_0DL_008520[] __attribute__((aligned (2))) = dspot11_room_0DL_008520; -#endif - -#define dspot11_room_0DL_00A238 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00A238" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_00A238[] = dspot11_room_0DL_00A238; -#else -static const char spot11_room_0DL_00A238[] __attribute__((aligned (2))) = dspot11_room_0DL_00A238; -#endif - -#define dspot11_room_0DL_00A478 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00A478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_00A478[] = dspot11_room_0DL_00A478; -#else -static const char spot11_room_0DL_00A478[] __attribute__((aligned (2))) = dspot11_room_0DL_00A478; -#endif - -#define dspot11_room_0DL_00A6D8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00A6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_00A6D8[] = dspot11_room_0DL_00A6D8; -#else -static const char spot11_room_0DL_00A6D8[] __attribute__((aligned (2))) = dspot11_room_0DL_00A6D8; -#endif - -#define dspot11_room_0DL_00A900 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00A900" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_00A900[] = dspot11_room_0DL_00A900; -#else -static const char spot11_room_0DL_00A900[] __attribute__((aligned (2))) = dspot11_room_0DL_00A900; -#endif - -#define dspot11_room_0DL_00AB78 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00AB78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_00AB78[] = dspot11_room_0DL_00AB78; -#else -static const char spot11_room_0DL_00AB78[] __attribute__((aligned (2))) = dspot11_room_0DL_00AB78; -#endif - -#define dspot11_room_0DL_00ADB0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00ADB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_00ADB0[] = dspot11_room_0DL_00ADB0; -#else -static const char spot11_room_0DL_00ADB0[] __attribute__((aligned (2))) = dspot11_room_0DL_00ADB0; -#endif - -#define dspot11_room_0DL_000E40 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_000E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_000E40[] = dspot11_room_0DL_000E40; -#else -static const char spot11_room_0DL_000E40[] __attribute__((aligned (2))) = dspot11_room_0DL_000E40; -#endif - -#define dspot11_room_0DL_001ED0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_001ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_001ED0[] = dspot11_room_0DL_001ED0; -#else -static const char spot11_room_0DL_001ED0[] __attribute__((aligned (2))) = dspot11_room_0DL_001ED0; -#endif - -#define dspot11_room_0DL_00C3C0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00C3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_00C3C0[] = dspot11_room_0DL_00C3C0; -#else -static const char spot11_room_0DL_00C3C0[] __attribute__((aligned (2))) = dspot11_room_0DL_00C3C0; -#endif - -#define dspot11_room_0DL_002FA0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_002FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_002FA0[] = dspot11_room_0DL_002FA0; -#else -static const char spot11_room_0DL_002FA0[] __attribute__((aligned (2))) = dspot11_room_0DL_002FA0; -#endif - -#define dspot11_room_0DL_003510 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_003510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_003510[] = dspot11_room_0DL_003510; -#else -static const char spot11_room_0DL_003510[] __attribute__((aligned (2))) = dspot11_room_0DL_003510; -#endif - -#define dspot11_room_0DL_001578 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_001578" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_001578[] = dspot11_room_0DL_001578; -#else -static const char spot11_room_0DL_001578[] __attribute__((aligned (2))) = dspot11_room_0DL_001578; -#endif - -#define dspot11_room_0DL_00B5B0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00B5B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_00B5B0[] = dspot11_room_0DL_00B5B0; -#else -static const char spot11_room_0DL_00B5B0[] __attribute__((aligned (2))) = dspot11_room_0DL_00B5B0; -#endif - -#define dspot11_room_0DL_001138 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_001138" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0DL_001138[] = dspot11_room_0DL_001138; -#else -static const char spot11_room_0DL_001138[] __attribute__((aligned (2))) = dspot11_room_0DL_001138; -#endif - -#define dspot11_room_0Set_000410DL_0037A8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_0037A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_0037A8[] = dspot11_room_0Set_000410DL_0037A8; -#else -static const char spot11_room_0Set_000410DL_0037A8[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_0037A8; -#endif - -#define dspot11_room_0Set_000410DL_002548 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_002548" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_002548[] = dspot11_room_0Set_000410DL_002548; -#else -static const char spot11_room_0Set_000410DL_002548[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_002548; -#endif - -#define dspot11_room_0Set_000410DL_0029F0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_0029F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_0029F0[] = dspot11_room_0Set_000410DL_0029F0; -#else -static const char spot11_room_0Set_000410DL_0029F0[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_0029F0; -#endif - -#define dspot11_room_0Set_000410DL_002D68 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_002D68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_002D68[] = dspot11_room_0Set_000410DL_002D68; -#else -static const char spot11_room_0Set_000410DL_002D68[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_002D68; -#endif - -#define dspot11_room_0Set_000410DL_008520 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_008520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_008520[] = dspot11_room_0Set_000410DL_008520; -#else -static const char spot11_room_0Set_000410DL_008520[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_008520; -#endif - -#define dspot11_room_0Set_000410DL_00A238 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00A238" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_00A238[] = dspot11_room_0Set_000410DL_00A238; -#else -static const char spot11_room_0Set_000410DL_00A238[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_00A238; -#endif - -#define dspot11_room_0Set_000410DL_00A478 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00A478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_00A478[] = dspot11_room_0Set_000410DL_00A478; -#else -static const char spot11_room_0Set_000410DL_00A478[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_00A478; -#endif - -#define dspot11_room_0Set_000410DL_00A6D8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00A6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_00A6D8[] = dspot11_room_0Set_000410DL_00A6D8; -#else -static const char spot11_room_0Set_000410DL_00A6D8[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_00A6D8; -#endif - -#define dspot11_room_0Set_000410DL_00A900 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00A900" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_00A900[] = dspot11_room_0Set_000410DL_00A900; -#else -static const char spot11_room_0Set_000410DL_00A900[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_00A900; -#endif - -#define dspot11_room_0Set_000410DL_00AB78 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00AB78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_00AB78[] = dspot11_room_0Set_000410DL_00AB78; -#else -static const char spot11_room_0Set_000410DL_00AB78[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_00AB78; -#endif - -#define dspot11_room_0Set_000410DL_00ADB0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00ADB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_00ADB0[] = dspot11_room_0Set_000410DL_00ADB0; -#else -static const char spot11_room_0Set_000410DL_00ADB0[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_00ADB0; -#endif - -#define dspot11_room_0Set_000410DL_000E40 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_000E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_000E40[] = dspot11_room_0Set_000410DL_000E40; -#else -static const char spot11_room_0Set_000410DL_000E40[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_000E40; -#endif - -#define dspot11_room_0Set_000410DL_001ED0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_001ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_001ED0[] = dspot11_room_0Set_000410DL_001ED0; -#else -static const char spot11_room_0Set_000410DL_001ED0[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_001ED0; -#endif - -#define dspot11_room_0Set_000410DL_00C3C0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00C3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_00C3C0[] = dspot11_room_0Set_000410DL_00C3C0; -#else -static const char spot11_room_0Set_000410DL_00C3C0[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_00C3C0; -#endif - -#define dspot11_room_0Set_000410DL_002FA0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_002FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_002FA0[] = dspot11_room_0Set_000410DL_002FA0; -#else -static const char spot11_room_0Set_000410DL_002FA0[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_002FA0; -#endif - -#define dspot11_room_0Set_000410DL_003510 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_003510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_003510[] = dspot11_room_0Set_000410DL_003510; -#else -static const char spot11_room_0Set_000410DL_003510[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_003510; -#endif - -#define dspot11_room_0Set_000410DL_001578 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_001578" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_001578[] = dspot11_room_0Set_000410DL_001578; -#else -static const char spot11_room_0Set_000410DL_001578[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_001578; -#endif - -#define dspot11_room_0Set_000410DL_00B5B0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00B5B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_00B5B0[] = dspot11_room_0Set_000410DL_00B5B0; -#else -static const char spot11_room_0Set_000410DL_00B5B0[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_00B5B0; -#endif - -#define dspot11_room_0Set_000410DL_001138 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_001138" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000410DL_001138[] = dspot11_room_0Set_000410DL_001138; -#else -static const char spot11_room_0Set_000410DL_001138[] __attribute__((aligned (2))) = dspot11_room_0Set_000410DL_001138; -#endif - -#define dspot11_room_0Set_000710DL_0037A8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_0037A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_0037A8[] = dspot11_room_0Set_000710DL_0037A8; -#else -static const char spot11_room_0Set_000710DL_0037A8[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_0037A8; -#endif - -#define dspot11_room_0Set_000710DL_002548 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_002548" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_002548[] = dspot11_room_0Set_000710DL_002548; -#else -static const char spot11_room_0Set_000710DL_002548[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_002548; -#endif - -#define dspot11_room_0Set_000710DL_0029F0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_0029F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_0029F0[] = dspot11_room_0Set_000710DL_0029F0; -#else -static const char spot11_room_0Set_000710DL_0029F0[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_0029F0; -#endif - -#define dspot11_room_0Set_000710DL_002D68 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_002D68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_002D68[] = dspot11_room_0Set_000710DL_002D68; -#else -static const char spot11_room_0Set_000710DL_002D68[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_002D68; -#endif - -#define dspot11_room_0Set_000710DL_008520 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_008520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_008520[] = dspot11_room_0Set_000710DL_008520; -#else -static const char spot11_room_0Set_000710DL_008520[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_008520; -#endif - -#define dspot11_room_0Set_000710DL_00A238 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00A238" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_00A238[] = dspot11_room_0Set_000710DL_00A238; -#else -static const char spot11_room_0Set_000710DL_00A238[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_00A238; -#endif - -#define dspot11_room_0Set_000710DL_00A478 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00A478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_00A478[] = dspot11_room_0Set_000710DL_00A478; -#else -static const char spot11_room_0Set_000710DL_00A478[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_00A478; -#endif - -#define dspot11_room_0Set_000710DL_00A6D8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00A6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_00A6D8[] = dspot11_room_0Set_000710DL_00A6D8; -#else -static const char spot11_room_0Set_000710DL_00A6D8[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_00A6D8; -#endif - -#define dspot11_room_0Set_000710DL_00A900 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00A900" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_00A900[] = dspot11_room_0Set_000710DL_00A900; -#else -static const char spot11_room_0Set_000710DL_00A900[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_00A900; -#endif - -#define dspot11_room_0Set_000710DL_00AB78 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00AB78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_00AB78[] = dspot11_room_0Set_000710DL_00AB78; -#else -static const char spot11_room_0Set_000710DL_00AB78[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_00AB78; -#endif - -#define dspot11_room_0Set_000710DL_00ADB0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00ADB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_00ADB0[] = dspot11_room_0Set_000710DL_00ADB0; -#else -static const char spot11_room_0Set_000710DL_00ADB0[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_00ADB0; -#endif - -#define dspot11_room_0Set_000710DL_000E40 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_000E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_000E40[] = dspot11_room_0Set_000710DL_000E40; -#else -static const char spot11_room_0Set_000710DL_000E40[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_000E40; -#endif - -#define dspot11_room_0Set_000710DL_001ED0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_001ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_001ED0[] = dspot11_room_0Set_000710DL_001ED0; -#else -static const char spot11_room_0Set_000710DL_001ED0[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_001ED0; -#endif - -#define dspot11_room_0Set_000710DL_00C3C0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00C3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_00C3C0[] = dspot11_room_0Set_000710DL_00C3C0; -#else -static const char spot11_room_0Set_000710DL_00C3C0[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_00C3C0; -#endif - -#define dspot11_room_0Set_000710DL_002FA0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_002FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_002FA0[] = dspot11_room_0Set_000710DL_002FA0; -#else -static const char spot11_room_0Set_000710DL_002FA0[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_002FA0; -#endif - -#define dspot11_room_0Set_000710DL_003510 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_003510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_003510[] = dspot11_room_0Set_000710DL_003510; -#else -static const char spot11_room_0Set_000710DL_003510[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_003510; -#endif - -#define dspot11_room_0Set_000710DL_001578 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_001578" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_001578[] = dspot11_room_0Set_000710DL_001578; -#else -static const char spot11_room_0Set_000710DL_001578[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_001578; -#endif - -#define dspot11_room_0Set_000710DL_00B5B0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00B5B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_00B5B0[] = dspot11_room_0Set_000710DL_00B5B0; -#else -static const char spot11_room_0Set_000710DL_00B5B0[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_00B5B0; -#endif - -#define dspot11_room_0Set_000710DL_001138 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_001138" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_000710DL_001138[] = dspot11_room_0Set_000710DL_001138; -#else -static const char spot11_room_0Set_000710DL_001138[] __attribute__((aligned (2))) = dspot11_room_0Set_000710DL_001138; -#endif - -#define dspot11_room_0Set_0007F0DL_0037A8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_0037A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_0037A8[] = dspot11_room_0Set_0007F0DL_0037A8; -#else -static const char spot11_room_0Set_0007F0DL_0037A8[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_0037A8; -#endif - -#define dspot11_room_0Set_0007F0DL_002548 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_002548" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_002548[] = dspot11_room_0Set_0007F0DL_002548; -#else -static const char spot11_room_0Set_0007F0DL_002548[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_002548; -#endif - -#define dspot11_room_0Set_0007F0DL_0029F0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_0029F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_0029F0[] = dspot11_room_0Set_0007F0DL_0029F0; -#else -static const char spot11_room_0Set_0007F0DL_0029F0[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_0029F0; -#endif - -#define dspot11_room_0Set_0007F0DL_002D68 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_002D68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_002D68[] = dspot11_room_0Set_0007F0DL_002D68; -#else -static const char spot11_room_0Set_0007F0DL_002D68[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_002D68; -#endif - -#define dspot11_room_0Set_0007F0DL_008520 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_008520" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_008520[] = dspot11_room_0Set_0007F0DL_008520; -#else -static const char spot11_room_0Set_0007F0DL_008520[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_008520; -#endif - -#define dspot11_room_0Set_0007F0DL_00A238 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00A238" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_00A238[] = dspot11_room_0Set_0007F0DL_00A238; -#else -static const char spot11_room_0Set_0007F0DL_00A238[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_00A238; -#endif - -#define dspot11_room_0Set_0007F0DL_00A478 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00A478" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_00A478[] = dspot11_room_0Set_0007F0DL_00A478; -#else -static const char spot11_room_0Set_0007F0DL_00A478[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_00A478; -#endif - -#define dspot11_room_0Set_0007F0DL_00A6D8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00A6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_00A6D8[] = dspot11_room_0Set_0007F0DL_00A6D8; -#else -static const char spot11_room_0Set_0007F0DL_00A6D8[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_00A6D8; -#endif - -#define dspot11_room_0Set_0007F0DL_00A900 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00A900" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_00A900[] = dspot11_room_0Set_0007F0DL_00A900; -#else -static const char spot11_room_0Set_0007F0DL_00A900[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_00A900; -#endif - -#define dspot11_room_0Set_0007F0DL_00AB78 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00AB78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_00AB78[] = dspot11_room_0Set_0007F0DL_00AB78; -#else -static const char spot11_room_0Set_0007F0DL_00AB78[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_00AB78; -#endif - -#define dspot11_room_0Set_0007F0DL_00ADB0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00ADB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_00ADB0[] = dspot11_room_0Set_0007F0DL_00ADB0; -#else -static const char spot11_room_0Set_0007F0DL_00ADB0[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_00ADB0; -#endif - -#define dspot11_room_0Set_0007F0DL_000E40 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_000E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_000E40[] = dspot11_room_0Set_0007F0DL_000E40; -#else -static const char spot11_room_0Set_0007F0DL_000E40[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_000E40; -#endif - -#define dspot11_room_0Set_0007F0DL_001ED0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_001ED0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_001ED0[] = dspot11_room_0Set_0007F0DL_001ED0; -#else -static const char spot11_room_0Set_0007F0DL_001ED0[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_001ED0; -#endif - -#define dspot11_room_0Set_0007F0DL_00C3C0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00C3C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_00C3C0[] = dspot11_room_0Set_0007F0DL_00C3C0; -#else -static const char spot11_room_0Set_0007F0DL_00C3C0[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_00C3C0; -#endif - -#define dspot11_room_0Set_0007F0DL_002FA0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_002FA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_002FA0[] = dspot11_room_0Set_0007F0DL_002FA0; -#else -static const char spot11_room_0Set_0007F0DL_002FA0[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_002FA0; -#endif - -#define dspot11_room_0Set_0007F0DL_003510 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_003510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_003510[] = dspot11_room_0Set_0007F0DL_003510; -#else -static const char spot11_room_0Set_0007F0DL_003510[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_003510; -#endif - -#define dspot11_room_0Set_0007F0DL_001578 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_001578" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_001578[] = dspot11_room_0Set_0007F0DL_001578; -#else -static const char spot11_room_0Set_0007F0DL_001578[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_001578; -#endif - -#define dspot11_room_0Set_0007F0DL_00B5B0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00B5B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_00B5B0[] = dspot11_room_0Set_0007F0DL_00B5B0; -#else -static const char spot11_room_0Set_0007F0DL_00B5B0[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_00B5B0; -#endif - -#define dspot11_room_0Set_0007F0DL_001138 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_001138" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_room_0Set_0007F0DL_001138[] = dspot11_room_0Set_0007F0DL_001138; -#else -static const char spot11_room_0Set_0007F0DL_001138[] __attribute__((aligned (2))) = dspot11_room_0Set_0007F0DL_001138; -#endif - +#include "align_asset_macro.h" + +#define dspot11_room_0DL_0037A8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_0037A8" +static const ALIGN_ASSET(2) char spot11_room_0DL_0037A8[] = dspot11_room_0DL_0037A8; + +#define dspot11_room_0DL_002548 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_002548" +static const ALIGN_ASSET(2) char spot11_room_0DL_002548[] = dspot11_room_0DL_002548; + +#define dspot11_room_0DL_0029F0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_0029F0" +static const ALIGN_ASSET(2) char spot11_room_0DL_0029F0[] = dspot11_room_0DL_0029F0; + +#define dspot11_room_0DL_002D68 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_002D68" +static const ALIGN_ASSET(2) char spot11_room_0DL_002D68[] = dspot11_room_0DL_002D68; + +#define dspot11_room_0DL_008520 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_008520" +static const ALIGN_ASSET(2) char spot11_room_0DL_008520[] = dspot11_room_0DL_008520; + +#define dspot11_room_0DL_00A238 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00A238" +static const ALIGN_ASSET(2) char spot11_room_0DL_00A238[] = dspot11_room_0DL_00A238; + +#define dspot11_room_0DL_00A478 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00A478" +static const ALIGN_ASSET(2) char spot11_room_0DL_00A478[] = dspot11_room_0DL_00A478; + +#define dspot11_room_0DL_00A6D8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00A6D8" +static const ALIGN_ASSET(2) char spot11_room_0DL_00A6D8[] = dspot11_room_0DL_00A6D8; + +#define dspot11_room_0DL_00A900 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00A900" +static const ALIGN_ASSET(2) char spot11_room_0DL_00A900[] = dspot11_room_0DL_00A900; + +#define dspot11_room_0DL_00AB78 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00AB78" +static const ALIGN_ASSET(2) char spot11_room_0DL_00AB78[] = dspot11_room_0DL_00AB78; + +#define dspot11_room_0DL_00ADB0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00ADB0" +static const ALIGN_ASSET(2) char spot11_room_0DL_00ADB0[] = dspot11_room_0DL_00ADB0; + +#define dspot11_room_0DL_000E40 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_000E40" +static const ALIGN_ASSET(2) char spot11_room_0DL_000E40[] = dspot11_room_0DL_000E40; + +#define dspot11_room_0DL_001ED0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_001ED0" +static const ALIGN_ASSET(2) char spot11_room_0DL_001ED0[] = dspot11_room_0DL_001ED0; + +#define dspot11_room_0DL_00C3C0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00C3C0" +static const ALIGN_ASSET(2) char spot11_room_0DL_00C3C0[] = dspot11_room_0DL_00C3C0; + +#define dspot11_room_0DL_002FA0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_002FA0" +static const ALIGN_ASSET(2) char spot11_room_0DL_002FA0[] = dspot11_room_0DL_002FA0; + +#define dspot11_room_0DL_003510 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_003510" +static const ALIGN_ASSET(2) char spot11_room_0DL_003510[] = dspot11_room_0DL_003510; + +#define dspot11_room_0DL_001578 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_001578" +static const ALIGN_ASSET(2) char spot11_room_0DL_001578[] = dspot11_room_0DL_001578; + +#define dspot11_room_0DL_00B5B0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_00B5B0" +static const ALIGN_ASSET(2) char spot11_room_0DL_00B5B0[] = dspot11_room_0DL_00B5B0; + +#define dspot11_room_0DL_001138 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0DL_001138" +static const ALIGN_ASSET(2) char spot11_room_0DL_001138[] = dspot11_room_0DL_001138; + +#define dspot11_room_0Set_000410DL_0037A8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_0037A8" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_0037A8[] = dspot11_room_0Set_000410DL_0037A8; + +#define dspot11_room_0Set_000410DL_002548 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_002548" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_002548[] = dspot11_room_0Set_000410DL_002548; + +#define dspot11_room_0Set_000410DL_0029F0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_0029F0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_0029F0[] = dspot11_room_0Set_000410DL_0029F0; + +#define dspot11_room_0Set_000410DL_002D68 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_002D68" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_002D68[] = dspot11_room_0Set_000410DL_002D68; + +#define dspot11_room_0Set_000410DL_008520 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_008520" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_008520[] = dspot11_room_0Set_000410DL_008520; + +#define dspot11_room_0Set_000410DL_00A238 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00A238" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_00A238[] = dspot11_room_0Set_000410DL_00A238; + +#define dspot11_room_0Set_000410DL_00A478 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00A478" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_00A478[] = dspot11_room_0Set_000410DL_00A478; + +#define dspot11_room_0Set_000410DL_00A6D8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00A6D8" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_00A6D8[] = dspot11_room_0Set_000410DL_00A6D8; + +#define dspot11_room_0Set_000410DL_00A900 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00A900" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_00A900[] = dspot11_room_0Set_000410DL_00A900; + +#define dspot11_room_0Set_000410DL_00AB78 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00AB78" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_00AB78[] = dspot11_room_0Set_000410DL_00AB78; + +#define dspot11_room_0Set_000410DL_00ADB0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00ADB0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_00ADB0[] = dspot11_room_0Set_000410DL_00ADB0; + +#define dspot11_room_0Set_000410DL_000E40 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_000E40" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_000E40[] = dspot11_room_0Set_000410DL_000E40; + +#define dspot11_room_0Set_000410DL_001ED0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_001ED0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_001ED0[] = dspot11_room_0Set_000410DL_001ED0; + +#define dspot11_room_0Set_000410DL_00C3C0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00C3C0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_00C3C0[] = dspot11_room_0Set_000410DL_00C3C0; + +#define dspot11_room_0Set_000410DL_002FA0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_002FA0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_002FA0[] = dspot11_room_0Set_000410DL_002FA0; + +#define dspot11_room_0Set_000410DL_003510 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_003510" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_003510[] = dspot11_room_0Set_000410DL_003510; + +#define dspot11_room_0Set_000410DL_001578 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_001578" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_001578[] = dspot11_room_0Set_000410DL_001578; + +#define dspot11_room_0Set_000410DL_00B5B0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_00B5B0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_00B5B0[] = dspot11_room_0Set_000410DL_00B5B0; + +#define dspot11_room_0Set_000410DL_001138 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000410DL_001138" +static const ALIGN_ASSET(2) char spot11_room_0Set_000410DL_001138[] = dspot11_room_0Set_000410DL_001138; + +#define dspot11_room_0Set_000710DL_0037A8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_0037A8" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_0037A8[] = dspot11_room_0Set_000710DL_0037A8; + +#define dspot11_room_0Set_000710DL_002548 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_002548" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_002548[] = dspot11_room_0Set_000710DL_002548; + +#define dspot11_room_0Set_000710DL_0029F0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_0029F0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_0029F0[] = dspot11_room_0Set_000710DL_0029F0; + +#define dspot11_room_0Set_000710DL_002D68 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_002D68" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_002D68[] = dspot11_room_0Set_000710DL_002D68; + +#define dspot11_room_0Set_000710DL_008520 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_008520" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_008520[] = dspot11_room_0Set_000710DL_008520; + +#define dspot11_room_0Set_000710DL_00A238 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00A238" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_00A238[] = dspot11_room_0Set_000710DL_00A238; + +#define dspot11_room_0Set_000710DL_00A478 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00A478" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_00A478[] = dspot11_room_0Set_000710DL_00A478; + +#define dspot11_room_0Set_000710DL_00A6D8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00A6D8" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_00A6D8[] = dspot11_room_0Set_000710DL_00A6D8; + +#define dspot11_room_0Set_000710DL_00A900 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00A900" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_00A900[] = dspot11_room_0Set_000710DL_00A900; + +#define dspot11_room_0Set_000710DL_00AB78 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00AB78" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_00AB78[] = dspot11_room_0Set_000710DL_00AB78; + +#define dspot11_room_0Set_000710DL_00ADB0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00ADB0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_00ADB0[] = dspot11_room_0Set_000710DL_00ADB0; + +#define dspot11_room_0Set_000710DL_000E40 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_000E40" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_000E40[] = dspot11_room_0Set_000710DL_000E40; + +#define dspot11_room_0Set_000710DL_001ED0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_001ED0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_001ED0[] = dspot11_room_0Set_000710DL_001ED0; + +#define dspot11_room_0Set_000710DL_00C3C0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00C3C0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_00C3C0[] = dspot11_room_0Set_000710DL_00C3C0; + +#define dspot11_room_0Set_000710DL_002FA0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_002FA0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_002FA0[] = dspot11_room_0Set_000710DL_002FA0; + +#define dspot11_room_0Set_000710DL_003510 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_003510" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_003510[] = dspot11_room_0Set_000710DL_003510; + +#define dspot11_room_0Set_000710DL_001578 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_001578" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_001578[] = dspot11_room_0Set_000710DL_001578; + +#define dspot11_room_0Set_000710DL_00B5B0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_00B5B0" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_00B5B0[] = dspot11_room_0Set_000710DL_00B5B0; + +#define dspot11_room_0Set_000710DL_001138 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_000710DL_001138" +static const ALIGN_ASSET(2) char spot11_room_0Set_000710DL_001138[] = dspot11_room_0Set_000710DL_001138; + +#define dspot11_room_0Set_0007F0DL_0037A8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_0037A8" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_0037A8[] = dspot11_room_0Set_0007F0DL_0037A8; + +#define dspot11_room_0Set_0007F0DL_002548 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_002548" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_002548[] = dspot11_room_0Set_0007F0DL_002548; + +#define dspot11_room_0Set_0007F0DL_0029F0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_0029F0" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_0029F0[] = dspot11_room_0Set_0007F0DL_0029F0; + +#define dspot11_room_0Set_0007F0DL_002D68 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_002D68" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_002D68[] = dspot11_room_0Set_0007F0DL_002D68; + +#define dspot11_room_0Set_0007F0DL_008520 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_008520" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_008520[] = dspot11_room_0Set_0007F0DL_008520; + +#define dspot11_room_0Set_0007F0DL_00A238 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00A238" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_00A238[] = dspot11_room_0Set_0007F0DL_00A238; + +#define dspot11_room_0Set_0007F0DL_00A478 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00A478" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_00A478[] = dspot11_room_0Set_0007F0DL_00A478; + +#define dspot11_room_0Set_0007F0DL_00A6D8 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00A6D8" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_00A6D8[] = dspot11_room_0Set_0007F0DL_00A6D8; + +#define dspot11_room_0Set_0007F0DL_00A900 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00A900" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_00A900[] = dspot11_room_0Set_0007F0DL_00A900; + +#define dspot11_room_0Set_0007F0DL_00AB78 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00AB78" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_00AB78[] = dspot11_room_0Set_0007F0DL_00AB78; + +#define dspot11_room_0Set_0007F0DL_00ADB0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00ADB0" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_00ADB0[] = dspot11_room_0Set_0007F0DL_00ADB0; + +#define dspot11_room_0Set_0007F0DL_000E40 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_000E40" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_000E40[] = dspot11_room_0Set_0007F0DL_000E40; + +#define dspot11_room_0Set_0007F0DL_001ED0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_001ED0" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_001ED0[] = dspot11_room_0Set_0007F0DL_001ED0; + +#define dspot11_room_0Set_0007F0DL_00C3C0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00C3C0" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_00C3C0[] = dspot11_room_0Set_0007F0DL_00C3C0; + +#define dspot11_room_0Set_0007F0DL_002FA0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_002FA0" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_002FA0[] = dspot11_room_0Set_0007F0DL_002FA0; + +#define dspot11_room_0Set_0007F0DL_003510 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_003510" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_003510[] = dspot11_room_0Set_0007F0DL_003510; + +#define dspot11_room_0Set_0007F0DL_001578 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_001578" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_001578[] = dspot11_room_0Set_0007F0DL_001578; + +#define dspot11_room_0Set_0007F0DL_00B5B0 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_00B5B0" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_00B5B0[] = dspot11_room_0Set_0007F0DL_00B5B0; + +#define dspot11_room_0Set_0007F0DL_001138 "__OTR__scenes/nonmq/spot11_scene/spot11_room_0Set_0007F0DL_001138" +static const ALIGN_ASSET(2) char spot11_room_0Set_0007F0DL_001138[] = dspot11_room_0Set_0007F0DL_001138; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot11/spot11_scene.h b/soh/assets/scenes/overworld/spot11/spot11_scene.h index 5b79fdddb..51d627922 100644 --- a/soh/assets/scenes/overworld/spot11/spot11_scene.h +++ b/soh/assets/scenes/overworld/spot11/spot11_scene.h @@ -1,243 +1,111 @@ #pragma once + +#include "align_asset_macro.h" + #define dgDesertColossusIntroCs "__OTR__scenes/nonmq/spot11_scene/gDesertColossusIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusIntroCs[] = dgDesertColossusIntroCs; -#else -static const char gDesertColossusIntroCs[] __attribute__((aligned (2))) = dgDesertColossusIntroCs; -#endif - +static const ALIGN_ASSET(2) char gDesertColossusIntroCs[] = dgDesertColossusIntroCs; + #define dspot11_sceneCollisionHeader_004EE4 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneCollisionHeader_004EE4" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneCollisionHeader_004EE4[] = dspot11_sceneCollisionHeader_004EE4; -#else -static const char spot11_sceneCollisionHeader_004EE4[] __attribute__((aligned (2))) = dspot11_sceneCollisionHeader_004EE4; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneCollisionHeader_004EE4[] = dspot11_sceneCollisionHeader_004EE4; + #define dspot11_sceneTex_017CE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_017CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_017CE0[] = dspot11_sceneTex_017CE0; -#else -static const char spot11_sceneTex_017CE0[] __attribute__((aligned (2))) = dspot11_sceneTex_017CE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_017CE0[] = dspot11_sceneTex_017CE0; + #define dspot11_sceneTex_0184E0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0184E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0184E0[] = dspot11_sceneTex_0184E0; -#else -static const char spot11_sceneTex_0184E0[] __attribute__((aligned (2))) = dspot11_sceneTex_0184E0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0184E0[] = dspot11_sceneTex_0184E0; + #define dspot11_sceneTex_0104E0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0104E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0104E0[] = dspot11_sceneTex_0104E0; -#else -static const char spot11_sceneTex_0104E0[] __attribute__((aligned (2))) = dspot11_sceneTex_0104E0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0104E0[] = dspot11_sceneTex_0104E0; + #define dspot11_sceneTex_0174E0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0174E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0174E0[] = dspot11_sceneTex_0174E0; -#else -static const char spot11_sceneTex_0174E0[] __attribute__((aligned (2))) = dspot11_sceneTex_0174E0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0174E0[] = dspot11_sceneTex_0174E0; + #define dspot11_sceneTex_0124E0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0124E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0124E0[] = dspot11_sceneTex_0124E0; -#else -static const char spot11_sceneTex_0124E0[] __attribute__((aligned (2))) = dspot11_sceneTex_0124E0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0124E0[] = dspot11_sceneTex_0124E0; + #define dspot11_sceneTex_013CE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_013CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_013CE0[] = dspot11_sceneTex_013CE0; -#else -static const char spot11_sceneTex_013CE0[] __attribute__((aligned (2))) = dspot11_sceneTex_013CE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_013CE0[] = dspot11_sceneTex_013CE0; + #define dspot11_sceneTex_00F4A0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00F4A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00F4A0[] = dspot11_sceneTex_00F4A0; -#else -static const char spot11_sceneTex_00F4A0[] __attribute__((aligned (2))) = dspot11_sceneTex_00F4A0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00F4A0[] = dspot11_sceneTex_00F4A0; + #define dspot11_sceneTex_0154E0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0154E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0154E0[] = dspot11_sceneTex_0154E0; -#else -static const char spot11_sceneTex_0154E0[] __attribute__((aligned (2))) = dspot11_sceneTex_0154E0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0154E0[] = dspot11_sceneTex_0154E0; + #define dspot11_sceneTex_012CE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_012CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_012CE0[] = dspot11_sceneTex_012CE0; -#else -static const char spot11_sceneTex_012CE0[] __attribute__((aligned (2))) = dspot11_sceneTex_012CE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_012CE0[] = dspot11_sceneTex_012CE0; + #define dspot11_sceneTex_011CE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_011CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_011CE0[] = dspot11_sceneTex_011CE0; -#else -static const char spot11_sceneTex_011CE0[] __attribute__((aligned (2))) = dspot11_sceneTex_011CE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_011CE0[] = dspot11_sceneTex_011CE0; + #define dspot11_sceneTex_00ECA0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00ECA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00ECA0[] = dspot11_sceneTex_00ECA0; -#else -static const char spot11_sceneTex_00ECA0[] __attribute__((aligned (2))) = dspot11_sceneTex_00ECA0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00ECA0[] = dspot11_sceneTex_00ECA0; + #define dspot11_sceneTex_00BCA0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00BCA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00BCA0[] = dspot11_sceneTex_00BCA0; -#else -static const char spot11_sceneTex_00BCA0[] __attribute__((aligned (2))) = dspot11_sceneTex_00BCA0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00BCA0[] = dspot11_sceneTex_00BCA0; + #define dspot11_sceneTex_0134E0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0134E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0134E0[] = dspot11_sceneTex_0134E0; -#else -static const char spot11_sceneTex_0134E0[] __attribute__((aligned (2))) = dspot11_sceneTex_0134E0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0134E0[] = dspot11_sceneTex_0134E0; + #define dspot11_sceneTex_00FCE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00FCE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00FCE0[] = dspot11_sceneTex_00FCE0; -#else -static const char spot11_sceneTex_00FCE0[] __attribute__((aligned (2))) = dspot11_sceneTex_00FCE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00FCE0[] = dspot11_sceneTex_00FCE0; + #define dspot11_sceneTex_00B8A0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00B8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00B8A0[] = dspot11_sceneTex_00B8A0; -#else -static const char spot11_sceneTex_00B8A0[] __attribute__((aligned (2))) = dspot11_sceneTex_00B8A0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00B8A0[] = dspot11_sceneTex_00B8A0; + #define dspot11_sceneTex_008CA0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_008CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_008CA0[] = dspot11_sceneTex_008CA0; -#else -static const char spot11_sceneTex_008CA0[] __attribute__((aligned (2))) = dspot11_sceneTex_008CA0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_008CA0[] = dspot11_sceneTex_008CA0; + #define dspot11_sceneTex_00D4A0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00D4A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00D4A0[] = dspot11_sceneTex_00D4A0; -#else -static const char spot11_sceneTex_00D4A0[] __attribute__((aligned (2))) = dspot11_sceneTex_00D4A0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00D4A0[] = dspot11_sceneTex_00D4A0; + #define dspot11_sceneTex_00A0A0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00A0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00A0A0[] = dspot11_sceneTex_00A0A0; -#else -static const char spot11_sceneTex_00A0A0[] __attribute__((aligned (2))) = dspot11_sceneTex_00A0A0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00A0A0[] = dspot11_sceneTex_00A0A0; + #define dspot11_sceneTex_0084A0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0084A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0084A0[] = dspot11_sceneTex_0084A0; -#else -static const char spot11_sceneTex_0084A0[] __attribute__((aligned (2))) = dspot11_sceneTex_0084A0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0084A0[] = dspot11_sceneTex_0084A0; + #define dspot11_sceneTex_00CCA0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00CCA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00CCA0[] = dspot11_sceneTex_00CCA0; -#else -static const char spot11_sceneTex_00CCA0[] __attribute__((aligned (2))) = dspot11_sceneTex_00CCA0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00CCA0[] = dspot11_sceneTex_00CCA0; + #define dspot11_sceneTex_00A8A0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00A8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00A8A0[] = dspot11_sceneTex_00A8A0; -#else -static const char spot11_sceneTex_00A8A0[] __attribute__((aligned (2))) = dspot11_sceneTex_00A8A0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00A8A0[] = dspot11_sceneTex_00A8A0; + #define dspot11_sceneTex_007CA0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_007CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_007CA0[] = dspot11_sceneTex_007CA0; -#else -static const char spot11_sceneTex_007CA0[] __attribute__((aligned (2))) = dspot11_sceneTex_007CA0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_007CA0[] = dspot11_sceneTex_007CA0; + #define dspot11_sceneTex_0090A0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0090A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0090A0[] = dspot11_sceneTex_0090A0; -#else -static const char spot11_sceneTex_0090A0[] __attribute__((aligned (2))) = dspot11_sceneTex_0090A0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0090A0[] = dspot11_sceneTex_0090A0; + #define dspot11_sceneTex_00C4A0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00C4A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00C4A0[] = dspot11_sceneTex_00C4A0; -#else -static const char spot11_sceneTex_00C4A0[] __attribute__((aligned (2))) = dspot11_sceneTex_00C4A0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00C4A0[] = dspot11_sceneTex_00C4A0; + #define dspot11_sceneTex_016CE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_016CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_016CE0[] = dspot11_sceneTex_016CE0; -#else -static const char spot11_sceneTex_016CE0[] __attribute__((aligned (2))) = dspot11_sceneTex_016CE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_016CE0[] = dspot11_sceneTex_016CE0; + #define dspot11_sceneTex_010CE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_010CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_010CE0[] = dspot11_sceneTex_010CE0; -#else -static const char spot11_sceneTex_010CE0[] __attribute__((aligned (2))) = dspot11_sceneTex_010CE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_010CE0[] = dspot11_sceneTex_010CE0; + #define dspot11_sceneTex_00FCA0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00FCA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00FCA0[] = dspot11_sceneTex_00FCA0; -#else -static const char spot11_sceneTex_00FCA0[] __attribute__((aligned (2))) = dspot11_sceneTex_00FCA0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_00FCA0[] = dspot11_sceneTex_00FCA0; + #define dspot11_sceneTex_0144E0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0144E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0144E0[] = dspot11_sceneTex_0144E0; -#else -static const char spot11_sceneTex_0144E0[] __attribute__((aligned (2))) = dspot11_sceneTex_0144E0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0144E0[] = dspot11_sceneTex_0144E0; + #define dspot11_sceneTex_015CE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_015CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_015CE0[] = dspot11_sceneTex_015CE0; -#else -static const char spot11_sceneTex_015CE0[] __attribute__((aligned (2))) = dspot11_sceneTex_015CE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_015CE0[] = dspot11_sceneTex_015CE0; + #define dspot11_sceneTex_018CE0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_018CE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_018CE0[] = dspot11_sceneTex_018CE0; -#else -static const char spot11_sceneTex_018CE0[] __attribute__((aligned (2))) = dspot11_sceneTex_018CE0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_018CE0[] = dspot11_sceneTex_018CE0; + #define dspot11_sceneTex_0164E0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_0164E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_0164E0[] = dspot11_sceneTex_0164E0; -#else -static const char spot11_sceneTex_0164E0[] __attribute__((aligned (2))) = dspot11_sceneTex_0164E0; -#endif - +static const ALIGN_ASSET(2) char spot11_sceneTex_0164E0[] = dspot11_sceneTex_0164E0; + #define dspot11_sceneTex_00DCA0 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneTex_00DCA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot11_sceneTex_00DCA0[] = dspot11_sceneTex_00DCA0; -#else -static const char spot11_sceneTex_00DCA0[] __attribute__((aligned (2))) = dspot11_sceneTex_00DCA0; -#endif - -#define dspot11_sceneCollisionHeader_004EE4 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneCollisionHeader_004EE4" -#define dspot11_sceneCollisionHeader_004EE4 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneCollisionHeader_004EE4" +static const ALIGN_ASSET(2) char spot11_sceneTex_00DCA0[] = dspot11_sceneTex_00DCA0; + #define dspot11_sceneCollisionHeader_004EE4 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneCollisionHeader_004EE4" +#define dspot11_sceneCollisionHeader_004EE4 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneCollisionHeader_004EE4" + +#define dspot11_sceneCollisionHeader_004EE4 "__OTR__scenes/nonmq/spot11_scene/spot11_sceneCollisionHeader_004EE4" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot12/spot12_room_0.h b/soh/assets/scenes/overworld/spot12/spot12_room_0.h index 41ea9c497..46318f7cd 100644 --- a/soh/assets/scenes/overworld/spot12/spot12_room_0.h +++ b/soh/assets/scenes/overworld/spot12/spot12_room_0.h @@ -1,996 +1,429 @@ #pragma once -#define dspot12_room_0DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0048A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_0048A8[] = dspot12_room_0DL_0048A8; -#else -static const char spot12_room_0DL_0048A8[] __attribute__((aligned (2))) = dspot12_room_0DL_0048A8; -#endif - -#define dspot12_room_0Tex_00C6B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00C6B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00C6B0[] = dspot12_room_0Tex_00C6B0; -#else -static const char spot12_room_0Tex_00C6B0[] __attribute__((aligned (2))) = dspot12_room_0Tex_00C6B0; -#endif - -#define dspot12_room_0TLUT_008A90 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0TLUT_008A90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0TLUT_008A90[] = dspot12_room_0TLUT_008A90; -#else -static const char spot12_room_0TLUT_008A90[] __attribute__((aligned (2))) = dspot12_room_0TLUT_008A90; -#endif - -#define dspot12_room_0DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_0050F0[] = dspot12_room_0DL_0050F0; -#else -static const char spot12_room_0DL_0050F0[] __attribute__((aligned (2))) = dspot12_room_0DL_0050F0; -#endif - -#define dspot12_room_0DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0055D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_0055D0[] = dspot12_room_0DL_0055D0; -#else -static const char spot12_room_0DL_0055D0[] __attribute__((aligned (2))) = dspot12_room_0DL_0055D0; -#endif - -#define dspot12_room_0DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_005B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_005B48[] = dspot12_room_0DL_005B48; -#else -static const char spot12_room_0DL_005B48[] __attribute__((aligned (2))) = dspot12_room_0DL_005B48; -#endif - -#define dspot12_room_0Tex_00EAB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00EAB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00EAB0[] = dspot12_room_0Tex_00EAB0; -#else -static const char spot12_room_0Tex_00EAB0[] __attribute__((aligned (2))) = dspot12_room_0Tex_00EAB0; -#endif - -#define dspot12_room_0DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0065C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_0065C8[] = dspot12_room_0DL_0065C8; -#else -static const char spot12_room_0DL_0065C8[] __attribute__((aligned (2))) = dspot12_room_0DL_0065C8; -#endif - -#define dspot12_room_0Tex_00A6B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00A6B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00A6B0[] = dspot12_room_0Tex_00A6B0; -#else -static const char spot12_room_0Tex_00A6B0[] __attribute__((aligned (2))) = dspot12_room_0Tex_00A6B0; -#endif - -#define dspot12_room_0DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_006F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_006F10[] = dspot12_room_0DL_006F10; -#else -static const char spot12_room_0DL_006F10[] __attribute__((aligned (2))) = dspot12_room_0DL_006F10; -#endif - -#define dspot12_room_0DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_00FA10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_00FA10[] = dspot12_room_0DL_00FA10; -#else -static const char spot12_room_0DL_00FA10[] __attribute__((aligned (2))) = dspot12_room_0DL_00FA10; -#endif - -#define dspot12_room_0DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_004CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_004CC8[] = dspot12_room_0DL_004CC8; -#else -static const char spot12_room_0DL_004CC8[] __attribute__((aligned (2))) = dspot12_room_0DL_004CC8; -#endif - -#define dspot12_room_0DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_008000" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_008000[] = dspot12_room_0DL_008000; -#else -static const char spot12_room_0DL_008000[] __attribute__((aligned (2))) = dspot12_room_0DL_008000; -#endif - -#define dspot12_room_0Tex_008AB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_008AB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_008AB0[] = dspot12_room_0Tex_008AB0; -#else -static const char spot12_room_0Tex_008AB0[] __attribute__((aligned (2))) = dspot12_room_0Tex_008AB0; -#endif - -#define dspot12_room_0Tex_0096B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_0096B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_0096B0[] = dspot12_room_0Tex_0096B0; -#else -static const char spot12_room_0Tex_0096B0[] __attribute__((aligned (2))) = dspot12_room_0Tex_0096B0; -#endif - -#define dspot12_room_0Tex_00CAB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00CAB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00CAB0[] = dspot12_room_0Tex_00CAB0; -#else -static const char spot12_room_0Tex_00CAB0[] __attribute__((aligned (2))) = dspot12_room_0Tex_00CAB0; -#endif - -#define dspot12_room_0Tex_00B6B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00B6B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00B6B0[] = dspot12_room_0Tex_00B6B0; -#else -static const char spot12_room_0Tex_00B6B0[] __attribute__((aligned (2))) = dspot12_room_0Tex_00B6B0; -#endif - -#define dspot12_room_0Tex_009EB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_009EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_009EB0[] = dspot12_room_0Tex_009EB0; -#else -static const char spot12_room_0Tex_009EB0[] __attribute__((aligned (2))) = dspot12_room_0Tex_009EB0; -#endif - -#define dspot12_room_0DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_00F740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_00F740[] = dspot12_room_0DL_00F740; -#else -static const char spot12_room_0DL_00F740[] __attribute__((aligned (2))) = dspot12_room_0DL_00F740; -#endif - -#define dspot12_room_0Tex_00FDB8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00FDB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00FDB8[] = dspot12_room_0Tex_00FDB8; -#else -static const char spot12_room_0Tex_00FDB8[] __attribute__((aligned (2))) = dspot12_room_0Tex_00FDB8; -#endif - -#define dspot12_room_0Tex_00FD78 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00FD78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00FD78[] = dspot12_room_0Tex_00FD78; -#else -static const char spot12_room_0Tex_00FD78[] __attribute__((aligned (2))) = dspot12_room_0Tex_00FD78; -#endif - -#define dspot12_room_0DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_001F40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_001F40[] = dspot12_room_0DL_001F40; -#else -static const char spot12_room_0DL_001F40[] __attribute__((aligned (2))) = dspot12_room_0DL_001F40; -#endif - -#define dspot12_room_0DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_001AE0[] = dspot12_room_0DL_001AE0; -#else -static const char spot12_room_0DL_001AE0[] __attribute__((aligned (2))) = dspot12_room_0DL_001AE0; -#endif - -#define dspot12_room_0DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_001D30[] = dspot12_room_0DL_001D30; -#else -static const char spot12_room_0DL_001D30[] __attribute__((aligned (2))) = dspot12_room_0DL_001D30; -#endif - -#define dspot12_room_0DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0014F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_0014F0[] = dspot12_room_0DL_0014F0; -#else -static const char spot12_room_0DL_0014F0[] __attribute__((aligned (2))) = dspot12_room_0DL_0014F0; -#endif - -#define dspot12_room_0Tex_00BEB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00BEB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00BEB0[] = dspot12_room_0Tex_00BEB0; -#else -static const char spot12_room_0Tex_00BEB0[] __attribute__((aligned (2))) = dspot12_room_0Tex_00BEB0; -#endif - -#define dspot12_room_0Tex_00D2B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00D2B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00D2B0[] = dspot12_room_0Tex_00D2B0; -#else -static const char spot12_room_0Tex_00D2B0[] __attribute__((aligned (2))) = dspot12_room_0Tex_00D2B0; -#endif - -#define dspot12_room_0DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_003970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_003970[] = dspot12_room_0DL_003970; -#else -static const char spot12_room_0DL_003970[] __attribute__((aligned (2))) = dspot12_room_0DL_003970; -#endif - -#define dspot12_room_0Tex_00E2B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00E2B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_00E2B0[] = dspot12_room_0Tex_00E2B0; -#else -static const char spot12_room_0Tex_00E2B0[] __attribute__((aligned (2))) = dspot12_room_0Tex_00E2B0; -#endif - -#define dspot12_room_0Tex_0092B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_0092B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_0092B0[] = dspot12_room_0Tex_0092B0; -#else -static const char spot12_room_0Tex_0092B0[] __attribute__((aligned (2))) = dspot12_room_0Tex_0092B0; -#endif - -#define dspot12_room_0DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_00F430" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_00F430[] = dspot12_room_0DL_00F430; -#else -static const char spot12_room_0DL_00F430[] __attribute__((aligned (2))) = dspot12_room_0DL_00F430; -#endif - -#define dspot12_room_0Tex_0105B8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_0105B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Tex_0105B8[] = dspot12_room_0Tex_0105B8; -#else -static const char spot12_room_0Tex_0105B8[] __attribute__((aligned (2))) = dspot12_room_0Tex_0105B8; -#endif - -#define dspot12_room_0DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_008620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_008620[] = dspot12_room_0DL_008620; -#else -static const char spot12_room_0DL_008620[] __attribute__((aligned (2))) = dspot12_room_0DL_008620; -#endif - -#define dspot12_room_0DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_000B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_000B60[] = dspot12_room_0DL_000B60; -#else -static const char spot12_room_0DL_000B60[] __attribute__((aligned (2))) = dspot12_room_0DL_000B60; -#endif - -#define dspot12_room_0DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0088C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_0088C8[] = dspot12_room_0DL_0088C8; -#else -static const char spot12_room_0DL_0088C8[] __attribute__((aligned (2))) = dspot12_room_0DL_0088C8; -#endif - -#define dspot12_room_0DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_00FC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_00FC80[] = dspot12_room_0DL_00FC80; -#else -static const char spot12_room_0DL_00FC80[] __attribute__((aligned (2))) = dspot12_room_0DL_00FC80; -#endif - -#define dspot12_room_0DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_007640" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0DL_007640[] = dspot12_room_0DL_007640; -#else -static const char spot12_room_0DL_007640[] __attribute__((aligned (2))) = dspot12_room_0DL_007640; -#endif - -#define dspot12_room_0Set_000300DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0048A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_0048A8[] = dspot12_room_0Set_000300DL_0048A8; -#else -static const char spot12_room_0Set_000300DL_0048A8[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_0048A8; -#endif - -#define dspot12_room_0Set_000300DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_0050F0[] = dspot12_room_0Set_000300DL_0050F0; -#else -static const char spot12_room_0Set_000300DL_0050F0[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_0050F0; -#endif - -#define dspot12_room_0Set_000300DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0055D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_0055D0[] = dspot12_room_0Set_000300DL_0055D0; -#else -static const char spot12_room_0Set_000300DL_0055D0[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_0055D0; -#endif - -#define dspot12_room_0Set_000300DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_005B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_005B48[] = dspot12_room_0Set_000300DL_005B48; -#else -static const char spot12_room_0Set_000300DL_005B48[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_005B48; -#endif - -#define dspot12_room_0Set_000300DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0065C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_0065C8[] = dspot12_room_0Set_000300DL_0065C8; -#else -static const char spot12_room_0Set_000300DL_0065C8[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_0065C8; -#endif - -#define dspot12_room_0Set_000300DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_006F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_006F10[] = dspot12_room_0Set_000300DL_006F10; -#else -static const char spot12_room_0Set_000300DL_006F10[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_006F10; -#endif - -#define dspot12_room_0Set_000300DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_00FA10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_00FA10[] = dspot12_room_0Set_000300DL_00FA10; -#else -static const char spot12_room_0Set_000300DL_00FA10[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_00FA10; -#endif - -#define dspot12_room_0Set_000300DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_004CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_004CC8[] = dspot12_room_0Set_000300DL_004CC8; -#else -static const char spot12_room_0Set_000300DL_004CC8[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_004CC8; -#endif - -#define dspot12_room_0Set_000300DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_008000" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_008000[] = dspot12_room_0Set_000300DL_008000; -#else -static const char spot12_room_0Set_000300DL_008000[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_008000; -#endif - -#define dspot12_room_0Set_000300DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_00F740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_00F740[] = dspot12_room_0Set_000300DL_00F740; -#else -static const char spot12_room_0Set_000300DL_00F740[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_00F740; -#endif - -#define dspot12_room_0Set_000300DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_001F40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_001F40[] = dspot12_room_0Set_000300DL_001F40; -#else -static const char spot12_room_0Set_000300DL_001F40[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_001F40; -#endif - -#define dspot12_room_0Set_000300DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_001AE0[] = dspot12_room_0Set_000300DL_001AE0; -#else -static const char spot12_room_0Set_000300DL_001AE0[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_001AE0; -#endif - -#define dspot12_room_0Set_000300DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_001D30[] = dspot12_room_0Set_000300DL_001D30; -#else -static const char spot12_room_0Set_000300DL_001D30[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_001D30; -#endif - -#define dspot12_room_0Set_000300DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0014F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_0014F0[] = dspot12_room_0Set_000300DL_0014F0; -#else -static const char spot12_room_0Set_000300DL_0014F0[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_0014F0; -#endif - -#define dspot12_room_0Set_000300DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_003970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_003970[] = dspot12_room_0Set_000300DL_003970; -#else -static const char spot12_room_0Set_000300DL_003970[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_003970; -#endif - -#define dspot12_room_0Set_000300DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_00F430" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_00F430[] = dspot12_room_0Set_000300DL_00F430; -#else -static const char spot12_room_0Set_000300DL_00F430[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_00F430; -#endif - -#define dspot12_room_0Set_000300DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_008620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_008620[] = dspot12_room_0Set_000300DL_008620; -#else -static const char spot12_room_0Set_000300DL_008620[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_008620; -#endif - -#define dspot12_room_0Set_000300DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_000B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_000B60[] = dspot12_room_0Set_000300DL_000B60; -#else -static const char spot12_room_0Set_000300DL_000B60[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_000B60; -#endif - -#define dspot12_room_0Set_000300DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0088C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_0088C8[] = dspot12_room_0Set_000300DL_0088C8; -#else -static const char spot12_room_0Set_000300DL_0088C8[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_0088C8; -#endif - -#define dspot12_room_0Set_000300DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_00FC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_00FC80[] = dspot12_room_0Set_000300DL_00FC80; -#else -static const char spot12_room_0Set_000300DL_00FC80[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_00FC80; -#endif - -#define dspot12_room_0Set_000300DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_007640" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000300DL_007640[] = dspot12_room_0Set_000300DL_007640; -#else -static const char spot12_room_0Set_000300DL_007640[] __attribute__((aligned (2))) = dspot12_room_0Set_000300DL_007640; -#endif - -#define dspot12_room_0Set_000540DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0048A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_0048A8[] = dspot12_room_0Set_000540DL_0048A8; -#else -static const char spot12_room_0Set_000540DL_0048A8[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_0048A8; -#endif - -#define dspot12_room_0Set_000540DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_0050F0[] = dspot12_room_0Set_000540DL_0050F0; -#else -static const char spot12_room_0Set_000540DL_0050F0[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_0050F0; -#endif - -#define dspot12_room_0Set_000540DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0055D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_0055D0[] = dspot12_room_0Set_000540DL_0055D0; -#else -static const char spot12_room_0Set_000540DL_0055D0[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_0055D0; -#endif - -#define dspot12_room_0Set_000540DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_005B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_005B48[] = dspot12_room_0Set_000540DL_005B48; -#else -static const char spot12_room_0Set_000540DL_005B48[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_005B48; -#endif - -#define dspot12_room_0Set_000540DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0065C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_0065C8[] = dspot12_room_0Set_000540DL_0065C8; -#else -static const char spot12_room_0Set_000540DL_0065C8[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_0065C8; -#endif - -#define dspot12_room_0Set_000540DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_006F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_006F10[] = dspot12_room_0Set_000540DL_006F10; -#else -static const char spot12_room_0Set_000540DL_006F10[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_006F10; -#endif - -#define dspot12_room_0Set_000540DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_00FA10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_00FA10[] = dspot12_room_0Set_000540DL_00FA10; -#else -static const char spot12_room_0Set_000540DL_00FA10[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_00FA10; -#endif - -#define dspot12_room_0Set_000540DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_004CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_004CC8[] = dspot12_room_0Set_000540DL_004CC8; -#else -static const char spot12_room_0Set_000540DL_004CC8[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_004CC8; -#endif - -#define dspot12_room_0Set_000540DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_008000" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_008000[] = dspot12_room_0Set_000540DL_008000; -#else -static const char spot12_room_0Set_000540DL_008000[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_008000; -#endif - -#define dspot12_room_0Set_000540DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_00F740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_00F740[] = dspot12_room_0Set_000540DL_00F740; -#else -static const char spot12_room_0Set_000540DL_00F740[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_00F740; -#endif - -#define dspot12_room_0Set_000540DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_001F40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_001F40[] = dspot12_room_0Set_000540DL_001F40; -#else -static const char spot12_room_0Set_000540DL_001F40[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_001F40; -#endif - -#define dspot12_room_0Set_000540DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_001AE0[] = dspot12_room_0Set_000540DL_001AE0; -#else -static const char spot12_room_0Set_000540DL_001AE0[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_001AE0; -#endif - -#define dspot12_room_0Set_000540DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_001D30[] = dspot12_room_0Set_000540DL_001D30; -#else -static const char spot12_room_0Set_000540DL_001D30[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_001D30; -#endif - -#define dspot12_room_0Set_000540DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0014F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_0014F0[] = dspot12_room_0Set_000540DL_0014F0; -#else -static const char spot12_room_0Set_000540DL_0014F0[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_0014F0; -#endif - -#define dspot12_room_0Set_000540DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_003970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_003970[] = dspot12_room_0Set_000540DL_003970; -#else -static const char spot12_room_0Set_000540DL_003970[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_003970; -#endif - -#define dspot12_room_0Set_000540DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_00F430" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_00F430[] = dspot12_room_0Set_000540DL_00F430; -#else -static const char spot12_room_0Set_000540DL_00F430[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_00F430; -#endif - -#define dspot12_room_0Set_000540DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_008620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_008620[] = dspot12_room_0Set_000540DL_008620; -#else -static const char spot12_room_0Set_000540DL_008620[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_008620; -#endif - -#define dspot12_room_0Set_000540DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_000B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_000B60[] = dspot12_room_0Set_000540DL_000B60; -#else -static const char spot12_room_0Set_000540DL_000B60[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_000B60; -#endif - -#define dspot12_room_0Set_000540DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0088C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_0088C8[] = dspot12_room_0Set_000540DL_0088C8; -#else -static const char spot12_room_0Set_000540DL_0088C8[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_0088C8; -#endif - -#define dspot12_room_0Set_000540DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_00FC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_00FC80[] = dspot12_room_0Set_000540DL_00FC80; -#else -static const char spot12_room_0Set_000540DL_00FC80[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_00FC80; -#endif - -#define dspot12_room_0Set_000540DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_007640" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000540DL_007640[] = dspot12_room_0Set_000540DL_007640; -#else -static const char spot12_room_0Set_000540DL_007640[] __attribute__((aligned (2))) = dspot12_room_0Set_000540DL_007640; -#endif - -#define dspot12_room_0Set_000790DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0048A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_0048A8[] = dspot12_room_0Set_000790DL_0048A8; -#else -static const char spot12_room_0Set_000790DL_0048A8[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_0048A8; -#endif - -#define dspot12_room_0Set_000790DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_0050F0[] = dspot12_room_0Set_000790DL_0050F0; -#else -static const char spot12_room_0Set_000790DL_0050F0[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_0050F0; -#endif - -#define dspot12_room_0Set_000790DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0055D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_0055D0[] = dspot12_room_0Set_000790DL_0055D0; -#else -static const char spot12_room_0Set_000790DL_0055D0[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_0055D0; -#endif - -#define dspot12_room_0Set_000790DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_005B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_005B48[] = dspot12_room_0Set_000790DL_005B48; -#else -static const char spot12_room_0Set_000790DL_005B48[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_005B48; -#endif - -#define dspot12_room_0Set_000790DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0065C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_0065C8[] = dspot12_room_0Set_000790DL_0065C8; -#else -static const char spot12_room_0Set_000790DL_0065C8[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_0065C8; -#endif - -#define dspot12_room_0Set_000790DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_006F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_006F10[] = dspot12_room_0Set_000790DL_006F10; -#else -static const char spot12_room_0Set_000790DL_006F10[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_006F10; -#endif - -#define dspot12_room_0Set_000790DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_00FA10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_00FA10[] = dspot12_room_0Set_000790DL_00FA10; -#else -static const char spot12_room_0Set_000790DL_00FA10[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_00FA10; -#endif - -#define dspot12_room_0Set_000790DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_004CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_004CC8[] = dspot12_room_0Set_000790DL_004CC8; -#else -static const char spot12_room_0Set_000790DL_004CC8[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_004CC8; -#endif - -#define dspot12_room_0Set_000790DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_008000" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_008000[] = dspot12_room_0Set_000790DL_008000; -#else -static const char spot12_room_0Set_000790DL_008000[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_008000; -#endif - -#define dspot12_room_0Set_000790DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_00F740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_00F740[] = dspot12_room_0Set_000790DL_00F740; -#else -static const char spot12_room_0Set_000790DL_00F740[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_00F740; -#endif - -#define dspot12_room_0Set_000790DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_001F40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_001F40[] = dspot12_room_0Set_000790DL_001F40; -#else -static const char spot12_room_0Set_000790DL_001F40[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_001F40; -#endif - -#define dspot12_room_0Set_000790DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_001AE0[] = dspot12_room_0Set_000790DL_001AE0; -#else -static const char spot12_room_0Set_000790DL_001AE0[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_001AE0; -#endif - -#define dspot12_room_0Set_000790DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_001D30[] = dspot12_room_0Set_000790DL_001D30; -#else -static const char spot12_room_0Set_000790DL_001D30[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_001D30; -#endif - -#define dspot12_room_0Set_000790DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0014F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_0014F0[] = dspot12_room_0Set_000790DL_0014F0; -#else -static const char spot12_room_0Set_000790DL_0014F0[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_0014F0; -#endif - -#define dspot12_room_0Set_000790DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_003970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_003970[] = dspot12_room_0Set_000790DL_003970; -#else -static const char spot12_room_0Set_000790DL_003970[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_003970; -#endif - -#define dspot12_room_0Set_000790DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_00F430" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_00F430[] = dspot12_room_0Set_000790DL_00F430; -#else -static const char spot12_room_0Set_000790DL_00F430[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_00F430; -#endif - -#define dspot12_room_0Set_000790DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_008620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_008620[] = dspot12_room_0Set_000790DL_008620; -#else -static const char spot12_room_0Set_000790DL_008620[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_008620; -#endif - -#define dspot12_room_0Set_000790DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_000B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_000B60[] = dspot12_room_0Set_000790DL_000B60; -#else -static const char spot12_room_0Set_000790DL_000B60[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_000B60; -#endif - -#define dspot12_room_0Set_000790DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0088C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_0088C8[] = dspot12_room_0Set_000790DL_0088C8; -#else -static const char spot12_room_0Set_000790DL_0088C8[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_0088C8; -#endif - -#define dspot12_room_0Set_000790DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_00FC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_00FC80[] = dspot12_room_0Set_000790DL_00FC80; -#else -static const char spot12_room_0Set_000790DL_00FC80[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_00FC80; -#endif - -#define dspot12_room_0Set_000790DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_007640" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000790DL_007640[] = dspot12_room_0Set_000790DL_007640; -#else -static const char spot12_room_0Set_000790DL_007640[] __attribute__((aligned (2))) = dspot12_room_0Set_000790DL_007640; -#endif - -#define dspot12_room_0Set_000860DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0048A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_0048A8[] = dspot12_room_0Set_000860DL_0048A8; -#else -static const char spot12_room_0Set_000860DL_0048A8[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_0048A8; -#endif - -#define dspot12_room_0Set_000860DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_0050F0[] = dspot12_room_0Set_000860DL_0050F0; -#else -static const char spot12_room_0Set_000860DL_0050F0[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_0050F0; -#endif - -#define dspot12_room_0Set_000860DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0055D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_0055D0[] = dspot12_room_0Set_000860DL_0055D0; -#else -static const char spot12_room_0Set_000860DL_0055D0[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_0055D0; -#endif - -#define dspot12_room_0Set_000860DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_005B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_005B48[] = dspot12_room_0Set_000860DL_005B48; -#else -static const char spot12_room_0Set_000860DL_005B48[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_005B48; -#endif - -#define dspot12_room_0Set_000860DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0065C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_0065C8[] = dspot12_room_0Set_000860DL_0065C8; -#else -static const char spot12_room_0Set_000860DL_0065C8[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_0065C8; -#endif - -#define dspot12_room_0Set_000860DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_006F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_006F10[] = dspot12_room_0Set_000860DL_006F10; -#else -static const char spot12_room_0Set_000860DL_006F10[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_006F10; -#endif - -#define dspot12_room_0Set_000860DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_00FA10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_00FA10[] = dspot12_room_0Set_000860DL_00FA10; -#else -static const char spot12_room_0Set_000860DL_00FA10[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_00FA10; -#endif - -#define dspot12_room_0Set_000860DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_004CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_004CC8[] = dspot12_room_0Set_000860DL_004CC8; -#else -static const char spot12_room_0Set_000860DL_004CC8[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_004CC8; -#endif - -#define dspot12_room_0Set_000860DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_008000" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_008000[] = dspot12_room_0Set_000860DL_008000; -#else -static const char spot12_room_0Set_000860DL_008000[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_008000; -#endif - -#define dspot12_room_0Set_000860DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_00F740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_00F740[] = dspot12_room_0Set_000860DL_00F740; -#else -static const char spot12_room_0Set_000860DL_00F740[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_00F740; -#endif - -#define dspot12_room_0Set_000860DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_001F40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_001F40[] = dspot12_room_0Set_000860DL_001F40; -#else -static const char spot12_room_0Set_000860DL_001F40[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_001F40; -#endif - -#define dspot12_room_0Set_000860DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_001AE0[] = dspot12_room_0Set_000860DL_001AE0; -#else -static const char spot12_room_0Set_000860DL_001AE0[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_001AE0; -#endif - -#define dspot12_room_0Set_000860DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_001D30[] = dspot12_room_0Set_000860DL_001D30; -#else -static const char spot12_room_0Set_000860DL_001D30[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_001D30; -#endif - -#define dspot12_room_0Set_000860DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0014F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_0014F0[] = dspot12_room_0Set_000860DL_0014F0; -#else -static const char spot12_room_0Set_000860DL_0014F0[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_0014F0; -#endif - -#define dspot12_room_0Set_000860DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_003970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_003970[] = dspot12_room_0Set_000860DL_003970; -#else -static const char spot12_room_0Set_000860DL_003970[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_003970; -#endif - -#define dspot12_room_0Set_000860DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_00F430" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_00F430[] = dspot12_room_0Set_000860DL_00F430; -#else -static const char spot12_room_0Set_000860DL_00F430[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_00F430; -#endif - -#define dspot12_room_0Set_000860DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_008620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_008620[] = dspot12_room_0Set_000860DL_008620; -#else -static const char spot12_room_0Set_000860DL_008620[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_008620; -#endif - -#define dspot12_room_0Set_000860DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_000B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_000B60[] = dspot12_room_0Set_000860DL_000B60; -#else -static const char spot12_room_0Set_000860DL_000B60[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_000B60; -#endif - -#define dspot12_room_0Set_000860DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0088C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_0088C8[] = dspot12_room_0Set_000860DL_0088C8; -#else -static const char spot12_room_0Set_000860DL_0088C8[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_0088C8; -#endif - -#define dspot12_room_0Set_000860DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_00FC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_00FC80[] = dspot12_room_0Set_000860DL_00FC80; -#else -static const char spot12_room_0Set_000860DL_00FC80[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_00FC80; -#endif - -#define dspot12_room_0Set_000860DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_007640" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_000860DL_007640[] = dspot12_room_0Set_000860DL_007640; -#else -static const char spot12_room_0Set_000860DL_007640[] __attribute__((aligned (2))) = dspot12_room_0Set_000860DL_007640; -#endif - -#define dspot12_room_0Set_0008C0DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0048A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_0048A8[] = dspot12_room_0Set_0008C0DL_0048A8; -#else -static const char spot12_room_0Set_0008C0DL_0048A8[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_0048A8; -#endif - -#define dspot12_room_0Set_0008C0DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0050F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_0050F0[] = dspot12_room_0Set_0008C0DL_0050F0; -#else -static const char spot12_room_0Set_0008C0DL_0050F0[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_0050F0; -#endif - -#define dspot12_room_0Set_0008C0DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0055D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_0055D0[] = dspot12_room_0Set_0008C0DL_0055D0; -#else -static const char spot12_room_0Set_0008C0DL_0055D0[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_0055D0; -#endif - -#define dspot12_room_0Set_0008C0DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_005B48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_005B48[] = dspot12_room_0Set_0008C0DL_005B48; -#else -static const char spot12_room_0Set_0008C0DL_005B48[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_005B48; -#endif - -#define dspot12_room_0Set_0008C0DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0065C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_0065C8[] = dspot12_room_0Set_0008C0DL_0065C8; -#else -static const char spot12_room_0Set_0008C0DL_0065C8[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_0065C8; -#endif - -#define dspot12_room_0Set_0008C0DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_006F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_006F10[] = dspot12_room_0Set_0008C0DL_006F10; -#else -static const char spot12_room_0Set_0008C0DL_006F10[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_006F10; -#endif - -#define dspot12_room_0Set_0008C0DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_00FA10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_00FA10[] = dspot12_room_0Set_0008C0DL_00FA10; -#else -static const char spot12_room_0Set_0008C0DL_00FA10[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_00FA10; -#endif - -#define dspot12_room_0Set_0008C0DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_004CC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_004CC8[] = dspot12_room_0Set_0008C0DL_004CC8; -#else -static const char spot12_room_0Set_0008C0DL_004CC8[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_004CC8; -#endif - -#define dspot12_room_0Set_0008C0DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_008000" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_008000[] = dspot12_room_0Set_0008C0DL_008000; -#else -static const char spot12_room_0Set_0008C0DL_008000[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_008000; -#endif - -#define dspot12_room_0Set_0008C0DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_00F740" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_00F740[] = dspot12_room_0Set_0008C0DL_00F740; -#else -static const char spot12_room_0Set_0008C0DL_00F740[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_00F740; -#endif - -#define dspot12_room_0Set_0008C0DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_001F40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_001F40[] = dspot12_room_0Set_0008C0DL_001F40; -#else -static const char spot12_room_0Set_0008C0DL_001F40[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_001F40; -#endif - -#define dspot12_room_0Set_0008C0DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_001AE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_001AE0[] = dspot12_room_0Set_0008C0DL_001AE0; -#else -static const char spot12_room_0Set_0008C0DL_001AE0[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_001AE0; -#endif - -#define dspot12_room_0Set_0008C0DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_001D30[] = dspot12_room_0Set_0008C0DL_001D30; -#else -static const char spot12_room_0Set_0008C0DL_001D30[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_001D30; -#endif - -#define dspot12_room_0Set_0008C0DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0014F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_0014F0[] = dspot12_room_0Set_0008C0DL_0014F0; -#else -static const char spot12_room_0Set_0008C0DL_0014F0[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_0014F0; -#endif - -#define dspot12_room_0Set_0008C0DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_003970" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_003970[] = dspot12_room_0Set_0008C0DL_003970; -#else -static const char spot12_room_0Set_0008C0DL_003970[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_003970; -#endif - -#define dspot12_room_0Set_0008C0DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_00F430" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_00F430[] = dspot12_room_0Set_0008C0DL_00F430; -#else -static const char spot12_room_0Set_0008C0DL_00F430[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_00F430; -#endif - -#define dspot12_room_0Set_0008C0DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_008620" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_008620[] = dspot12_room_0Set_0008C0DL_008620; -#else -static const char spot12_room_0Set_0008C0DL_008620[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_008620; -#endif - -#define dspot12_room_0Set_0008C0DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_000B60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_000B60[] = dspot12_room_0Set_0008C0DL_000B60; -#else -static const char spot12_room_0Set_0008C0DL_000B60[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_000B60; -#endif - -#define dspot12_room_0Set_0008C0DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0088C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_0088C8[] = dspot12_room_0Set_0008C0DL_0088C8; -#else -static const char spot12_room_0Set_0008C0DL_0088C8[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_0088C8; -#endif - -#define dspot12_room_0Set_0008C0DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_00FC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_00FC80[] = dspot12_room_0Set_0008C0DL_00FC80; -#else -static const char spot12_room_0Set_0008C0DL_00FC80[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_00FC80; -#endif - -#define dspot12_room_0Set_0008C0DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_007640" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_0Set_0008C0DL_007640[] = dspot12_room_0Set_0008C0DL_007640; -#else -static const char spot12_room_0Set_0008C0DL_007640[] __attribute__((aligned (2))) = dspot12_room_0Set_0008C0DL_007640; -#endif - +#include "align_asset_macro.h" + +#define dspot12_room_0DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0048A8" +static const ALIGN_ASSET(2) char spot12_room_0DL_0048A8[] = dspot12_room_0DL_0048A8; + +#define dspot12_room_0Tex_00C6B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00C6B0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00C6B0[] = dspot12_room_0Tex_00C6B0; + +#define dspot12_room_0TLUT_008A90 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0TLUT_008A90" +static const ALIGN_ASSET(2) char spot12_room_0TLUT_008A90[] = dspot12_room_0TLUT_008A90; + +#define dspot12_room_0DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0050F0" +static const ALIGN_ASSET(2) char spot12_room_0DL_0050F0[] = dspot12_room_0DL_0050F0; + +#define dspot12_room_0DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0055D0" +static const ALIGN_ASSET(2) char spot12_room_0DL_0055D0[] = dspot12_room_0DL_0055D0; + +#define dspot12_room_0DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_005B48" +static const ALIGN_ASSET(2) char spot12_room_0DL_005B48[] = dspot12_room_0DL_005B48; + +#define dspot12_room_0Tex_00EAB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00EAB0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00EAB0[] = dspot12_room_0Tex_00EAB0; + +#define dspot12_room_0DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0065C8" +static const ALIGN_ASSET(2) char spot12_room_0DL_0065C8[] = dspot12_room_0DL_0065C8; + +#define dspot12_room_0Tex_00A6B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00A6B0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00A6B0[] = dspot12_room_0Tex_00A6B0; + +#define dspot12_room_0DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_006F10" +static const ALIGN_ASSET(2) char spot12_room_0DL_006F10[] = dspot12_room_0DL_006F10; + +#define dspot12_room_0DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_00FA10" +static const ALIGN_ASSET(2) char spot12_room_0DL_00FA10[] = dspot12_room_0DL_00FA10; + +#define dspot12_room_0DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_004CC8" +static const ALIGN_ASSET(2) char spot12_room_0DL_004CC8[] = dspot12_room_0DL_004CC8; + +#define dspot12_room_0DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_008000" +static const ALIGN_ASSET(2) char spot12_room_0DL_008000[] = dspot12_room_0DL_008000; + +#define dspot12_room_0Tex_008AB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_008AB0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_008AB0[] = dspot12_room_0Tex_008AB0; + +#define dspot12_room_0Tex_0096B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_0096B0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_0096B0[] = dspot12_room_0Tex_0096B0; + +#define dspot12_room_0Tex_00CAB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00CAB0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00CAB0[] = dspot12_room_0Tex_00CAB0; + +#define dspot12_room_0Tex_00B6B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00B6B0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00B6B0[] = dspot12_room_0Tex_00B6B0; + +#define dspot12_room_0Tex_009EB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_009EB0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_009EB0[] = dspot12_room_0Tex_009EB0; + +#define dspot12_room_0DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_00F740" +static const ALIGN_ASSET(2) char spot12_room_0DL_00F740[] = dspot12_room_0DL_00F740; + +#define dspot12_room_0Tex_00FDB8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00FDB8" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00FDB8[] = dspot12_room_0Tex_00FDB8; + +#define dspot12_room_0Tex_00FD78 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00FD78" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00FD78[] = dspot12_room_0Tex_00FD78; + +#define dspot12_room_0DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_001F40" +static const ALIGN_ASSET(2) char spot12_room_0DL_001F40[] = dspot12_room_0DL_001F40; + +#define dspot12_room_0DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_001AE0" +static const ALIGN_ASSET(2) char spot12_room_0DL_001AE0[] = dspot12_room_0DL_001AE0; + +#define dspot12_room_0DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_001D30" +static const ALIGN_ASSET(2) char spot12_room_0DL_001D30[] = dspot12_room_0DL_001D30; + +#define dspot12_room_0DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0014F0" +static const ALIGN_ASSET(2) char spot12_room_0DL_0014F0[] = dspot12_room_0DL_0014F0; + +#define dspot12_room_0Tex_00BEB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00BEB0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00BEB0[] = dspot12_room_0Tex_00BEB0; + +#define dspot12_room_0Tex_00D2B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00D2B0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00D2B0[] = dspot12_room_0Tex_00D2B0; + +#define dspot12_room_0DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_003970" +static const ALIGN_ASSET(2) char spot12_room_0DL_003970[] = dspot12_room_0DL_003970; + +#define dspot12_room_0Tex_00E2B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_00E2B0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_00E2B0[] = dspot12_room_0Tex_00E2B0; + +#define dspot12_room_0Tex_0092B0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_0092B0" +static const ALIGN_ASSET(2) char spot12_room_0Tex_0092B0[] = dspot12_room_0Tex_0092B0; + +#define dspot12_room_0DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_00F430" +static const ALIGN_ASSET(2) char spot12_room_0DL_00F430[] = dspot12_room_0DL_00F430; + +#define dspot12_room_0Tex_0105B8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Tex_0105B8" +static const ALIGN_ASSET(2) char spot12_room_0Tex_0105B8[] = dspot12_room_0Tex_0105B8; + +#define dspot12_room_0DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_008620" +static const ALIGN_ASSET(2) char spot12_room_0DL_008620[] = dspot12_room_0DL_008620; + +#define dspot12_room_0DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_000B60" +static const ALIGN_ASSET(2) char spot12_room_0DL_000B60[] = dspot12_room_0DL_000B60; + +#define dspot12_room_0DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_0088C8" +static const ALIGN_ASSET(2) char spot12_room_0DL_0088C8[] = dspot12_room_0DL_0088C8; + +#define dspot12_room_0DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_00FC80" +static const ALIGN_ASSET(2) char spot12_room_0DL_00FC80[] = dspot12_room_0DL_00FC80; + +#define dspot12_room_0DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0DL_007640" +static const ALIGN_ASSET(2) char spot12_room_0DL_007640[] = dspot12_room_0DL_007640; + +#define dspot12_room_0Set_000300DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0048A8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_0048A8[] = dspot12_room_0Set_000300DL_0048A8; + +#define dspot12_room_0Set_000300DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0050F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_0050F0[] = dspot12_room_0Set_000300DL_0050F0; + +#define dspot12_room_0Set_000300DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0055D0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_0055D0[] = dspot12_room_0Set_000300DL_0055D0; + +#define dspot12_room_0Set_000300DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_005B48" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_005B48[] = dspot12_room_0Set_000300DL_005B48; + +#define dspot12_room_0Set_000300DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0065C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_0065C8[] = dspot12_room_0Set_000300DL_0065C8; + +#define dspot12_room_0Set_000300DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_006F10" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_006F10[] = dspot12_room_0Set_000300DL_006F10; + +#define dspot12_room_0Set_000300DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_00FA10" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_00FA10[] = dspot12_room_0Set_000300DL_00FA10; + +#define dspot12_room_0Set_000300DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_004CC8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_004CC8[] = dspot12_room_0Set_000300DL_004CC8; + +#define dspot12_room_0Set_000300DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_008000" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_008000[] = dspot12_room_0Set_000300DL_008000; + +#define dspot12_room_0Set_000300DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_00F740" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_00F740[] = dspot12_room_0Set_000300DL_00F740; + +#define dspot12_room_0Set_000300DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_001F40" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_001F40[] = dspot12_room_0Set_000300DL_001F40; + +#define dspot12_room_0Set_000300DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_001AE0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_001AE0[] = dspot12_room_0Set_000300DL_001AE0; + +#define dspot12_room_0Set_000300DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_001D30" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_001D30[] = dspot12_room_0Set_000300DL_001D30; + +#define dspot12_room_0Set_000300DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0014F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_0014F0[] = dspot12_room_0Set_000300DL_0014F0; + +#define dspot12_room_0Set_000300DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_003970" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_003970[] = dspot12_room_0Set_000300DL_003970; + +#define dspot12_room_0Set_000300DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_00F430" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_00F430[] = dspot12_room_0Set_000300DL_00F430; + +#define dspot12_room_0Set_000300DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_008620" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_008620[] = dspot12_room_0Set_000300DL_008620; + +#define dspot12_room_0Set_000300DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_000B60" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_000B60[] = dspot12_room_0Set_000300DL_000B60; + +#define dspot12_room_0Set_000300DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_0088C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_0088C8[] = dspot12_room_0Set_000300DL_0088C8; + +#define dspot12_room_0Set_000300DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_00FC80" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_00FC80[] = dspot12_room_0Set_000300DL_00FC80; + +#define dspot12_room_0Set_000300DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000300DL_007640" +static const ALIGN_ASSET(2) char spot12_room_0Set_000300DL_007640[] = dspot12_room_0Set_000300DL_007640; + +#define dspot12_room_0Set_000540DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0048A8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_0048A8[] = dspot12_room_0Set_000540DL_0048A8; + +#define dspot12_room_0Set_000540DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0050F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_0050F0[] = dspot12_room_0Set_000540DL_0050F0; + +#define dspot12_room_0Set_000540DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0055D0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_0055D0[] = dspot12_room_0Set_000540DL_0055D0; + +#define dspot12_room_0Set_000540DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_005B48" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_005B48[] = dspot12_room_0Set_000540DL_005B48; + +#define dspot12_room_0Set_000540DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0065C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_0065C8[] = dspot12_room_0Set_000540DL_0065C8; + +#define dspot12_room_0Set_000540DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_006F10" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_006F10[] = dspot12_room_0Set_000540DL_006F10; + +#define dspot12_room_0Set_000540DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_00FA10" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_00FA10[] = dspot12_room_0Set_000540DL_00FA10; + +#define dspot12_room_0Set_000540DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_004CC8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_004CC8[] = dspot12_room_0Set_000540DL_004CC8; + +#define dspot12_room_0Set_000540DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_008000" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_008000[] = dspot12_room_0Set_000540DL_008000; + +#define dspot12_room_0Set_000540DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_00F740" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_00F740[] = dspot12_room_0Set_000540DL_00F740; + +#define dspot12_room_0Set_000540DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_001F40" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_001F40[] = dspot12_room_0Set_000540DL_001F40; + +#define dspot12_room_0Set_000540DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_001AE0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_001AE0[] = dspot12_room_0Set_000540DL_001AE0; + +#define dspot12_room_0Set_000540DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_001D30" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_001D30[] = dspot12_room_0Set_000540DL_001D30; + +#define dspot12_room_0Set_000540DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0014F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_0014F0[] = dspot12_room_0Set_000540DL_0014F0; + +#define dspot12_room_0Set_000540DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_003970" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_003970[] = dspot12_room_0Set_000540DL_003970; + +#define dspot12_room_0Set_000540DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_00F430" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_00F430[] = dspot12_room_0Set_000540DL_00F430; + +#define dspot12_room_0Set_000540DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_008620" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_008620[] = dspot12_room_0Set_000540DL_008620; + +#define dspot12_room_0Set_000540DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_000B60" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_000B60[] = dspot12_room_0Set_000540DL_000B60; + +#define dspot12_room_0Set_000540DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_0088C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_0088C8[] = dspot12_room_0Set_000540DL_0088C8; + +#define dspot12_room_0Set_000540DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_00FC80" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_00FC80[] = dspot12_room_0Set_000540DL_00FC80; + +#define dspot12_room_0Set_000540DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000540DL_007640" +static const ALIGN_ASSET(2) char spot12_room_0Set_000540DL_007640[] = dspot12_room_0Set_000540DL_007640; + +#define dspot12_room_0Set_000790DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0048A8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_0048A8[] = dspot12_room_0Set_000790DL_0048A8; + +#define dspot12_room_0Set_000790DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0050F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_0050F0[] = dspot12_room_0Set_000790DL_0050F0; + +#define dspot12_room_0Set_000790DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0055D0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_0055D0[] = dspot12_room_0Set_000790DL_0055D0; + +#define dspot12_room_0Set_000790DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_005B48" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_005B48[] = dspot12_room_0Set_000790DL_005B48; + +#define dspot12_room_0Set_000790DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0065C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_0065C8[] = dspot12_room_0Set_000790DL_0065C8; + +#define dspot12_room_0Set_000790DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_006F10" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_006F10[] = dspot12_room_0Set_000790DL_006F10; + +#define dspot12_room_0Set_000790DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_00FA10" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_00FA10[] = dspot12_room_0Set_000790DL_00FA10; + +#define dspot12_room_0Set_000790DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_004CC8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_004CC8[] = dspot12_room_0Set_000790DL_004CC8; + +#define dspot12_room_0Set_000790DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_008000" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_008000[] = dspot12_room_0Set_000790DL_008000; + +#define dspot12_room_0Set_000790DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_00F740" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_00F740[] = dspot12_room_0Set_000790DL_00F740; + +#define dspot12_room_0Set_000790DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_001F40" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_001F40[] = dspot12_room_0Set_000790DL_001F40; + +#define dspot12_room_0Set_000790DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_001AE0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_001AE0[] = dspot12_room_0Set_000790DL_001AE0; + +#define dspot12_room_0Set_000790DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_001D30" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_001D30[] = dspot12_room_0Set_000790DL_001D30; + +#define dspot12_room_0Set_000790DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0014F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_0014F0[] = dspot12_room_0Set_000790DL_0014F0; + +#define dspot12_room_0Set_000790DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_003970" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_003970[] = dspot12_room_0Set_000790DL_003970; + +#define dspot12_room_0Set_000790DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_00F430" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_00F430[] = dspot12_room_0Set_000790DL_00F430; + +#define dspot12_room_0Set_000790DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_008620" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_008620[] = dspot12_room_0Set_000790DL_008620; + +#define dspot12_room_0Set_000790DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_000B60" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_000B60[] = dspot12_room_0Set_000790DL_000B60; + +#define dspot12_room_0Set_000790DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_0088C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_0088C8[] = dspot12_room_0Set_000790DL_0088C8; + +#define dspot12_room_0Set_000790DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_00FC80" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_00FC80[] = dspot12_room_0Set_000790DL_00FC80; + +#define dspot12_room_0Set_000790DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000790DL_007640" +static const ALIGN_ASSET(2) char spot12_room_0Set_000790DL_007640[] = dspot12_room_0Set_000790DL_007640; + +#define dspot12_room_0Set_000860DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0048A8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_0048A8[] = dspot12_room_0Set_000860DL_0048A8; + +#define dspot12_room_0Set_000860DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0050F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_0050F0[] = dspot12_room_0Set_000860DL_0050F0; + +#define dspot12_room_0Set_000860DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0055D0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_0055D0[] = dspot12_room_0Set_000860DL_0055D0; + +#define dspot12_room_0Set_000860DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_005B48" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_005B48[] = dspot12_room_0Set_000860DL_005B48; + +#define dspot12_room_0Set_000860DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0065C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_0065C8[] = dspot12_room_0Set_000860DL_0065C8; + +#define dspot12_room_0Set_000860DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_006F10" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_006F10[] = dspot12_room_0Set_000860DL_006F10; + +#define dspot12_room_0Set_000860DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_00FA10" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_00FA10[] = dspot12_room_0Set_000860DL_00FA10; + +#define dspot12_room_0Set_000860DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_004CC8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_004CC8[] = dspot12_room_0Set_000860DL_004CC8; + +#define dspot12_room_0Set_000860DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_008000" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_008000[] = dspot12_room_0Set_000860DL_008000; + +#define dspot12_room_0Set_000860DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_00F740" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_00F740[] = dspot12_room_0Set_000860DL_00F740; + +#define dspot12_room_0Set_000860DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_001F40" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_001F40[] = dspot12_room_0Set_000860DL_001F40; + +#define dspot12_room_0Set_000860DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_001AE0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_001AE0[] = dspot12_room_0Set_000860DL_001AE0; + +#define dspot12_room_0Set_000860DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_001D30" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_001D30[] = dspot12_room_0Set_000860DL_001D30; + +#define dspot12_room_0Set_000860DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0014F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_0014F0[] = dspot12_room_0Set_000860DL_0014F0; + +#define dspot12_room_0Set_000860DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_003970" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_003970[] = dspot12_room_0Set_000860DL_003970; + +#define dspot12_room_0Set_000860DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_00F430" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_00F430[] = dspot12_room_0Set_000860DL_00F430; + +#define dspot12_room_0Set_000860DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_008620" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_008620[] = dspot12_room_0Set_000860DL_008620; + +#define dspot12_room_0Set_000860DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_000B60" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_000B60[] = dspot12_room_0Set_000860DL_000B60; + +#define dspot12_room_0Set_000860DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_0088C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_0088C8[] = dspot12_room_0Set_000860DL_0088C8; + +#define dspot12_room_0Set_000860DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_00FC80" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_00FC80[] = dspot12_room_0Set_000860DL_00FC80; + +#define dspot12_room_0Set_000860DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_000860DL_007640" +static const ALIGN_ASSET(2) char spot12_room_0Set_000860DL_007640[] = dspot12_room_0Set_000860DL_007640; + +#define dspot12_room_0Set_0008C0DL_0048A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0048A8" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_0048A8[] = dspot12_room_0Set_0008C0DL_0048A8; + +#define dspot12_room_0Set_0008C0DL_0050F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0050F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_0050F0[] = dspot12_room_0Set_0008C0DL_0050F0; + +#define dspot12_room_0Set_0008C0DL_0055D0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0055D0" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_0055D0[] = dspot12_room_0Set_0008C0DL_0055D0; + +#define dspot12_room_0Set_0008C0DL_005B48 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_005B48" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_005B48[] = dspot12_room_0Set_0008C0DL_005B48; + +#define dspot12_room_0Set_0008C0DL_0065C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0065C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_0065C8[] = dspot12_room_0Set_0008C0DL_0065C8; + +#define dspot12_room_0Set_0008C0DL_006F10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_006F10" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_006F10[] = dspot12_room_0Set_0008C0DL_006F10; + +#define dspot12_room_0Set_0008C0DL_00FA10 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_00FA10" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_00FA10[] = dspot12_room_0Set_0008C0DL_00FA10; + +#define dspot12_room_0Set_0008C0DL_004CC8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_004CC8" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_004CC8[] = dspot12_room_0Set_0008C0DL_004CC8; + +#define dspot12_room_0Set_0008C0DL_008000 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_008000" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_008000[] = dspot12_room_0Set_0008C0DL_008000; + +#define dspot12_room_0Set_0008C0DL_00F740 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_00F740" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_00F740[] = dspot12_room_0Set_0008C0DL_00F740; + +#define dspot12_room_0Set_0008C0DL_001F40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_001F40" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_001F40[] = dspot12_room_0Set_0008C0DL_001F40; + +#define dspot12_room_0Set_0008C0DL_001AE0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_001AE0" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_001AE0[] = dspot12_room_0Set_0008C0DL_001AE0; + +#define dspot12_room_0Set_0008C0DL_001D30 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_001D30" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_001D30[] = dspot12_room_0Set_0008C0DL_001D30; + +#define dspot12_room_0Set_0008C0DL_0014F0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0014F0" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_0014F0[] = dspot12_room_0Set_0008C0DL_0014F0; + +#define dspot12_room_0Set_0008C0DL_003970 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_003970" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_003970[] = dspot12_room_0Set_0008C0DL_003970; + +#define dspot12_room_0Set_0008C0DL_00F430 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_00F430" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_00F430[] = dspot12_room_0Set_0008C0DL_00F430; + +#define dspot12_room_0Set_0008C0DL_008620 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_008620" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_008620[] = dspot12_room_0Set_0008C0DL_008620; + +#define dspot12_room_0Set_0008C0DL_000B60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_000B60" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_000B60[] = dspot12_room_0Set_0008C0DL_000B60; + +#define dspot12_room_0Set_0008C0DL_0088C8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_0088C8" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_0088C8[] = dspot12_room_0Set_0008C0DL_0088C8; + +#define dspot12_room_0Set_0008C0DL_00FC80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_00FC80" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_00FC80[] = dspot12_room_0Set_0008C0DL_00FC80; + +#define dspot12_room_0Set_0008C0DL_007640 "__OTR__scenes/nonmq/spot12_scene/spot12_room_0Set_0008C0DL_007640" +static const ALIGN_ASSET(2) char spot12_room_0Set_0008C0DL_007640[] = dspot12_room_0Set_0008C0DL_007640; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot12/spot12_room_1.h b/soh/assets/scenes/overworld/spot12/spot12_room_1.h index f65028eaf..1dea4bc26 100644 --- a/soh/assets/scenes/overworld/spot12/spot12_room_1.h +++ b/soh/assets/scenes/overworld/spot12/spot12_room_1.h @@ -1,485 +1,210 @@ #pragma once -#define dspot12_room_1DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_0050A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_0050A0[] = dspot12_room_1DL_0050A0; -#else -static const char spot12_room_1DL_0050A0[] __attribute__((aligned (2))) = dspot12_room_1DL_0050A0; -#endif - -#define dspot12_room_1DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_0026A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_0026A8[] = dspot12_room_1DL_0026A8; -#else -static const char spot12_room_1DL_0026A8[] __attribute__((aligned (2))) = dspot12_room_1DL_0026A8; -#endif - -#define dspot12_room_1DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_002DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_002DB0[] = dspot12_room_1DL_002DB0; -#else -static const char spot12_room_1DL_002DB0[] __attribute__((aligned (2))) = dspot12_room_1DL_002DB0; -#endif - -#define dspot12_room_1Tex_009E38 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_009E38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_009E38[] = dspot12_room_1Tex_009E38; -#else -static const char spot12_room_1Tex_009E38[] __attribute__((aligned (2))) = dspot12_room_1Tex_009E38; -#endif - -#define dspot12_room_1Tex_00A638 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_00A638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_00A638[] = dspot12_room_1Tex_00A638; -#else -static const char spot12_room_1Tex_00A638[] __attribute__((aligned (2))) = dspot12_room_1Tex_00A638; -#endif - -#define dspot12_room_1DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_001180[] = dspot12_room_1DL_001180; -#else -static const char spot12_room_1DL_001180[] __attribute__((aligned (2))) = dspot12_room_1DL_001180; -#endif - -#define dspot12_room_1Tex_008E38 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_008E38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_008E38[] = dspot12_room_1Tex_008E38; -#else -static const char spot12_room_1Tex_008E38[] __attribute__((aligned (2))) = dspot12_room_1Tex_008E38; -#endif - -#define dspot12_room_1Tex_007638 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_007638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_007638[] = dspot12_room_1Tex_007638; -#else -static const char spot12_room_1Tex_007638[] __attribute__((aligned (2))) = dspot12_room_1Tex_007638; -#endif - -#define dspot12_room_1Tex_006638 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_006638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_006638[] = dspot12_room_1Tex_006638; -#else -static const char spot12_room_1Tex_006638[] __attribute__((aligned (2))) = dspot12_room_1Tex_006638; -#endif - -#define dspot12_room_1DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_0034E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_0034E8[] = dspot12_room_1DL_0034E8; -#else -static const char spot12_room_1DL_0034E8[] __attribute__((aligned (2))) = dspot12_room_1DL_0034E8; -#endif - -#define dspot12_room_1Tex_007E38 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_007E38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_007E38[] = dspot12_room_1Tex_007E38; -#else -static const char spot12_room_1Tex_007E38[] __attribute__((aligned (2))) = dspot12_room_1Tex_007E38; -#endif - -#define dspot12_room_1DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_004798[] = dspot12_room_1DL_004798; -#else -static const char spot12_room_1DL_004798[] __attribute__((aligned (2))) = dspot12_room_1DL_004798; -#endif - -#define dspot12_room_1DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_003E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_003E40[] = dspot12_room_1DL_003E40; -#else -static const char spot12_room_1DL_003E40[] __attribute__((aligned (2))) = dspot12_room_1DL_003E40; -#endif - -#define dspot12_room_1DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_00AF80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_00AF80[] = dspot12_room_1DL_00AF80; -#else -static const char spot12_room_1DL_00AF80[] __attribute__((aligned (2))) = dspot12_room_1DL_00AF80; -#endif - -#define dspot12_room_1Tex_00B8A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_00B8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_00B8A0[] = dspot12_room_1Tex_00B8A0; -#else -static const char spot12_room_1Tex_00B8A0[] __attribute__((aligned (2))) = dspot12_room_1Tex_00B8A0; -#endif - -#define dspot12_room_1Tex_00B0A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_00B0A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_00B0A0[] = dspot12_room_1Tex_00B0A0; -#else -static const char spot12_room_1Tex_00B0A0[] __attribute__((aligned (2))) = dspot12_room_1Tex_00B0A0; -#endif - -#define dspot12_room_1DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_001E58[] = dspot12_room_1DL_001E58; -#else -static const char spot12_room_1DL_001E58[] __attribute__((aligned (2))) = dspot12_room_1DL_001E58; -#endif - -#define dspot12_room_1DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_002A60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1DL_002A60[] = dspot12_room_1DL_002A60; -#else -static const char spot12_room_1DL_002A60[] __attribute__((aligned (2))) = dspot12_room_1DL_002A60; -#endif - -#define dspot12_room_1Tex_005638 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_005638" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Tex_005638[] = dspot12_room_1Tex_005638; -#else -static const char spot12_room_1Tex_005638[] __attribute__((aligned (2))) = dspot12_room_1Tex_005638; -#endif - -#define dspot12_room_1Set_000200DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_0050A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_0050A0[] = dspot12_room_1Set_000200DL_0050A0; -#else -static const char spot12_room_1Set_000200DL_0050A0[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_0050A0; -#endif - -#define dspot12_room_1Set_000200DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_0026A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_0026A8[] = dspot12_room_1Set_000200DL_0026A8; -#else -static const char spot12_room_1Set_000200DL_0026A8[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_0026A8; -#endif - -#define dspot12_room_1Set_000200DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_002DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_002DB0[] = dspot12_room_1Set_000200DL_002DB0; -#else -static const char spot12_room_1Set_000200DL_002DB0[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_002DB0; -#endif - -#define dspot12_room_1Set_000200DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_001180[] = dspot12_room_1Set_000200DL_001180; -#else -static const char spot12_room_1Set_000200DL_001180[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_001180; -#endif - -#define dspot12_room_1Set_000200DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_0034E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_0034E8[] = dspot12_room_1Set_000200DL_0034E8; -#else -static const char spot12_room_1Set_000200DL_0034E8[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_0034E8; -#endif - -#define dspot12_room_1Set_000200DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_004798[] = dspot12_room_1Set_000200DL_004798; -#else -static const char spot12_room_1Set_000200DL_004798[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_004798; -#endif - -#define dspot12_room_1Set_000200DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_003E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_003E40[] = dspot12_room_1Set_000200DL_003E40; -#else -static const char spot12_room_1Set_000200DL_003E40[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_003E40; -#endif - -#define dspot12_room_1Set_000200DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_00AF80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_00AF80[] = dspot12_room_1Set_000200DL_00AF80; -#else -static const char spot12_room_1Set_000200DL_00AF80[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_00AF80; -#endif - -#define dspot12_room_1Set_000200DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_001E58[] = dspot12_room_1Set_000200DL_001E58; -#else -static const char spot12_room_1Set_000200DL_001E58[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_001E58; -#endif - -#define dspot12_room_1Set_000200DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_002A60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000200DL_002A60[] = dspot12_room_1Set_000200DL_002A60; -#else -static const char spot12_room_1Set_000200DL_002A60[] __attribute__((aligned (2))) = dspot12_room_1Set_000200DL_002A60; -#endif - -#define dspot12_room_1Set_0003B0DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_0050A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_0050A0[] = dspot12_room_1Set_0003B0DL_0050A0; -#else -static const char spot12_room_1Set_0003B0DL_0050A0[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_0050A0; -#endif - -#define dspot12_room_1Set_0003B0DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_0026A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_0026A8[] = dspot12_room_1Set_0003B0DL_0026A8; -#else -static const char spot12_room_1Set_0003B0DL_0026A8[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_0026A8; -#endif - -#define dspot12_room_1Set_0003B0DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_002DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_002DB0[] = dspot12_room_1Set_0003B0DL_002DB0; -#else -static const char spot12_room_1Set_0003B0DL_002DB0[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_002DB0; -#endif - -#define dspot12_room_1Set_0003B0DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_001180[] = dspot12_room_1Set_0003B0DL_001180; -#else -static const char spot12_room_1Set_0003B0DL_001180[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_001180; -#endif - -#define dspot12_room_1Set_0003B0DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_0034E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_0034E8[] = dspot12_room_1Set_0003B0DL_0034E8; -#else -static const char spot12_room_1Set_0003B0DL_0034E8[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_0034E8; -#endif - -#define dspot12_room_1Set_0003B0DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_004798[] = dspot12_room_1Set_0003B0DL_004798; -#else -static const char spot12_room_1Set_0003B0DL_004798[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_004798; -#endif - -#define dspot12_room_1Set_0003B0DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_003E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_003E40[] = dspot12_room_1Set_0003B0DL_003E40; -#else -static const char spot12_room_1Set_0003B0DL_003E40[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_003E40; -#endif - -#define dspot12_room_1Set_0003B0DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_00AF80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_00AF80[] = dspot12_room_1Set_0003B0DL_00AF80; -#else -static const char spot12_room_1Set_0003B0DL_00AF80[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_00AF80; -#endif - -#define dspot12_room_1Set_0003B0DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_001E58[] = dspot12_room_1Set_0003B0DL_001E58; -#else -static const char spot12_room_1Set_0003B0DL_001E58[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_001E58; -#endif - -#define dspot12_room_1Set_0003B0DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_002A60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0003B0DL_002A60[] = dspot12_room_1Set_0003B0DL_002A60; -#else -static const char spot12_room_1Set_0003B0DL_002A60[] __attribute__((aligned (2))) = dspot12_room_1Set_0003B0DL_002A60; -#endif - -#define dspot12_room_1Set_000500DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_0050A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_0050A0[] = dspot12_room_1Set_000500DL_0050A0; -#else -static const char spot12_room_1Set_000500DL_0050A0[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_0050A0; -#endif - -#define dspot12_room_1Set_000500DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_0026A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_0026A8[] = dspot12_room_1Set_000500DL_0026A8; -#else -static const char spot12_room_1Set_000500DL_0026A8[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_0026A8; -#endif - -#define dspot12_room_1Set_000500DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_002DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_002DB0[] = dspot12_room_1Set_000500DL_002DB0; -#else -static const char spot12_room_1Set_000500DL_002DB0[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_002DB0; -#endif - -#define dspot12_room_1Set_000500DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_001180[] = dspot12_room_1Set_000500DL_001180; -#else -static const char spot12_room_1Set_000500DL_001180[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_001180; -#endif - -#define dspot12_room_1Set_000500DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_0034E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_0034E8[] = dspot12_room_1Set_000500DL_0034E8; -#else -static const char spot12_room_1Set_000500DL_0034E8[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_0034E8; -#endif - -#define dspot12_room_1Set_000500DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_004798[] = dspot12_room_1Set_000500DL_004798; -#else -static const char spot12_room_1Set_000500DL_004798[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_004798; -#endif - -#define dspot12_room_1Set_000500DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_003E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_003E40[] = dspot12_room_1Set_000500DL_003E40; -#else -static const char spot12_room_1Set_000500DL_003E40[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_003E40; -#endif - -#define dspot12_room_1Set_000500DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_00AF80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_00AF80[] = dspot12_room_1Set_000500DL_00AF80; -#else -static const char spot12_room_1Set_000500DL_00AF80[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_00AF80; -#endif - -#define dspot12_room_1Set_000500DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_001E58[] = dspot12_room_1Set_000500DL_001E58; -#else -static const char spot12_room_1Set_000500DL_001E58[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_001E58; -#endif - -#define dspot12_room_1Set_000500DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_002A60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000500DL_002A60[] = dspot12_room_1Set_000500DL_002A60; -#else -static const char spot12_room_1Set_000500DL_002A60[] __attribute__((aligned (2))) = dspot12_room_1Set_000500DL_002A60; -#endif - -#define dspot12_room_1Set_000720DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_0050A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_0050A0[] = dspot12_room_1Set_000720DL_0050A0; -#else -static const char spot12_room_1Set_000720DL_0050A0[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_0050A0; -#endif - -#define dspot12_room_1Set_000720DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_0026A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_0026A8[] = dspot12_room_1Set_000720DL_0026A8; -#else -static const char spot12_room_1Set_000720DL_0026A8[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_0026A8; -#endif - -#define dspot12_room_1Set_000720DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_002DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_002DB0[] = dspot12_room_1Set_000720DL_002DB0; -#else -static const char spot12_room_1Set_000720DL_002DB0[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_002DB0; -#endif - -#define dspot12_room_1Set_000720DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_001180[] = dspot12_room_1Set_000720DL_001180; -#else -static const char spot12_room_1Set_000720DL_001180[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_001180; -#endif - -#define dspot12_room_1Set_000720DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_0034E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_0034E8[] = dspot12_room_1Set_000720DL_0034E8; -#else -static const char spot12_room_1Set_000720DL_0034E8[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_0034E8; -#endif - -#define dspot12_room_1Set_000720DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_004798[] = dspot12_room_1Set_000720DL_004798; -#else -static const char spot12_room_1Set_000720DL_004798[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_004798; -#endif - -#define dspot12_room_1Set_000720DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_003E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_003E40[] = dspot12_room_1Set_000720DL_003E40; -#else -static const char spot12_room_1Set_000720DL_003E40[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_003E40; -#endif - -#define dspot12_room_1Set_000720DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_00AF80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_00AF80[] = dspot12_room_1Set_000720DL_00AF80; -#else -static const char spot12_room_1Set_000720DL_00AF80[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_00AF80; -#endif - -#define dspot12_room_1Set_000720DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_001E58[] = dspot12_room_1Set_000720DL_001E58; -#else -static const char spot12_room_1Set_000720DL_001E58[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_001E58; -#endif - -#define dspot12_room_1Set_000720DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_002A60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_000720DL_002A60[] = dspot12_room_1Set_000720DL_002A60; -#else -static const char spot12_room_1Set_000720DL_002A60[] __attribute__((aligned (2))) = dspot12_room_1Set_000720DL_002A60; -#endif - -#define dspot12_room_1Set_0007F0DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_0050A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_0050A0[] = dspot12_room_1Set_0007F0DL_0050A0; -#else -static const char spot12_room_1Set_0007F0DL_0050A0[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_0050A0; -#endif - -#define dspot12_room_1Set_0007F0DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_0026A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_0026A8[] = dspot12_room_1Set_0007F0DL_0026A8; -#else -static const char spot12_room_1Set_0007F0DL_0026A8[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_0026A8; -#endif - -#define dspot12_room_1Set_0007F0DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_002DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_002DB0[] = dspot12_room_1Set_0007F0DL_002DB0; -#else -static const char spot12_room_1Set_0007F0DL_002DB0[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_002DB0; -#endif - -#define dspot12_room_1Set_0007F0DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_001180" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_001180[] = dspot12_room_1Set_0007F0DL_001180; -#else -static const char spot12_room_1Set_0007F0DL_001180[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_001180; -#endif - -#define dspot12_room_1Set_0007F0DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_0034E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_0034E8[] = dspot12_room_1Set_0007F0DL_0034E8; -#else -static const char spot12_room_1Set_0007F0DL_0034E8[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_0034E8; -#endif - -#define dspot12_room_1Set_0007F0DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_004798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_004798[] = dspot12_room_1Set_0007F0DL_004798; -#else -static const char spot12_room_1Set_0007F0DL_004798[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_004798; -#endif - -#define dspot12_room_1Set_0007F0DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_003E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_003E40[] = dspot12_room_1Set_0007F0DL_003E40; -#else -static const char spot12_room_1Set_0007F0DL_003E40[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_003E40; -#endif - -#define dspot12_room_1Set_0007F0DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_00AF80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_00AF80[] = dspot12_room_1Set_0007F0DL_00AF80; -#else -static const char spot12_room_1Set_0007F0DL_00AF80[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_00AF80; -#endif - -#define dspot12_room_1Set_0007F0DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_001E58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_001E58[] = dspot12_room_1Set_0007F0DL_001E58; -#else -static const char spot12_room_1Set_0007F0DL_001E58[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_001E58; -#endif - -#define dspot12_room_1Set_0007F0DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_002A60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_room_1Set_0007F0DL_002A60[] = dspot12_room_1Set_0007F0DL_002A60; -#else -static const char spot12_room_1Set_0007F0DL_002A60[] __attribute__((aligned (2))) = dspot12_room_1Set_0007F0DL_002A60; -#endif - +#include "align_asset_macro.h" + +#define dspot12_room_1DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_0050A0" +static const ALIGN_ASSET(2) char spot12_room_1DL_0050A0[] = dspot12_room_1DL_0050A0; + +#define dspot12_room_1DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_0026A8" +static const ALIGN_ASSET(2) char spot12_room_1DL_0026A8[] = dspot12_room_1DL_0026A8; + +#define dspot12_room_1DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_002DB0" +static const ALIGN_ASSET(2) char spot12_room_1DL_002DB0[] = dspot12_room_1DL_002DB0; + +#define dspot12_room_1Tex_009E38 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_009E38" +static const ALIGN_ASSET(2) char spot12_room_1Tex_009E38[] = dspot12_room_1Tex_009E38; + +#define dspot12_room_1Tex_00A638 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_00A638" +static const ALIGN_ASSET(2) char spot12_room_1Tex_00A638[] = dspot12_room_1Tex_00A638; + +#define dspot12_room_1DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_001180" +static const ALIGN_ASSET(2) char spot12_room_1DL_001180[] = dspot12_room_1DL_001180; + +#define dspot12_room_1Tex_008E38 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_008E38" +static const ALIGN_ASSET(2) char spot12_room_1Tex_008E38[] = dspot12_room_1Tex_008E38; + +#define dspot12_room_1Tex_007638 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_007638" +static const ALIGN_ASSET(2) char spot12_room_1Tex_007638[] = dspot12_room_1Tex_007638; + +#define dspot12_room_1Tex_006638 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_006638" +static const ALIGN_ASSET(2) char spot12_room_1Tex_006638[] = dspot12_room_1Tex_006638; + +#define dspot12_room_1DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_0034E8" +static const ALIGN_ASSET(2) char spot12_room_1DL_0034E8[] = dspot12_room_1DL_0034E8; + +#define dspot12_room_1Tex_007E38 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_007E38" +static const ALIGN_ASSET(2) char spot12_room_1Tex_007E38[] = dspot12_room_1Tex_007E38; + +#define dspot12_room_1DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_004798" +static const ALIGN_ASSET(2) char spot12_room_1DL_004798[] = dspot12_room_1DL_004798; + +#define dspot12_room_1DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_003E40" +static const ALIGN_ASSET(2) char spot12_room_1DL_003E40[] = dspot12_room_1DL_003E40; + +#define dspot12_room_1DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_00AF80" +static const ALIGN_ASSET(2) char spot12_room_1DL_00AF80[] = dspot12_room_1DL_00AF80; + +#define dspot12_room_1Tex_00B8A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_00B8A0" +static const ALIGN_ASSET(2) char spot12_room_1Tex_00B8A0[] = dspot12_room_1Tex_00B8A0; + +#define dspot12_room_1Tex_00B0A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_00B0A0" +static const ALIGN_ASSET(2) char spot12_room_1Tex_00B0A0[] = dspot12_room_1Tex_00B0A0; + +#define dspot12_room_1DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_001E58" +static const ALIGN_ASSET(2) char spot12_room_1DL_001E58[] = dspot12_room_1DL_001E58; + +#define dspot12_room_1DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1DL_002A60" +static const ALIGN_ASSET(2) char spot12_room_1DL_002A60[] = dspot12_room_1DL_002A60; + +#define dspot12_room_1Tex_005638 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Tex_005638" +static const ALIGN_ASSET(2) char spot12_room_1Tex_005638[] = dspot12_room_1Tex_005638; + +#define dspot12_room_1Set_000200DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_0050A0" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_0050A0[] = dspot12_room_1Set_000200DL_0050A0; + +#define dspot12_room_1Set_000200DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_0026A8" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_0026A8[] = dspot12_room_1Set_000200DL_0026A8; + +#define dspot12_room_1Set_000200DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_002DB0" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_002DB0[] = dspot12_room_1Set_000200DL_002DB0; + +#define dspot12_room_1Set_000200DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_001180" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_001180[] = dspot12_room_1Set_000200DL_001180; + +#define dspot12_room_1Set_000200DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_0034E8" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_0034E8[] = dspot12_room_1Set_000200DL_0034E8; + +#define dspot12_room_1Set_000200DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_004798" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_004798[] = dspot12_room_1Set_000200DL_004798; + +#define dspot12_room_1Set_000200DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_003E40" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_003E40[] = dspot12_room_1Set_000200DL_003E40; + +#define dspot12_room_1Set_000200DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_00AF80" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_00AF80[] = dspot12_room_1Set_000200DL_00AF80; + +#define dspot12_room_1Set_000200DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_001E58" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_001E58[] = dspot12_room_1Set_000200DL_001E58; + +#define dspot12_room_1Set_000200DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000200DL_002A60" +static const ALIGN_ASSET(2) char spot12_room_1Set_000200DL_002A60[] = dspot12_room_1Set_000200DL_002A60; + +#define dspot12_room_1Set_0003B0DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_0050A0" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_0050A0[] = dspot12_room_1Set_0003B0DL_0050A0; + +#define dspot12_room_1Set_0003B0DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_0026A8" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_0026A8[] = dspot12_room_1Set_0003B0DL_0026A8; + +#define dspot12_room_1Set_0003B0DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_002DB0" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_002DB0[] = dspot12_room_1Set_0003B0DL_002DB0; + +#define dspot12_room_1Set_0003B0DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_001180" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_001180[] = dspot12_room_1Set_0003B0DL_001180; + +#define dspot12_room_1Set_0003B0DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_0034E8" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_0034E8[] = dspot12_room_1Set_0003B0DL_0034E8; + +#define dspot12_room_1Set_0003B0DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_004798" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_004798[] = dspot12_room_1Set_0003B0DL_004798; + +#define dspot12_room_1Set_0003B0DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_003E40" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_003E40[] = dspot12_room_1Set_0003B0DL_003E40; + +#define dspot12_room_1Set_0003B0DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_00AF80" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_00AF80[] = dspot12_room_1Set_0003B0DL_00AF80; + +#define dspot12_room_1Set_0003B0DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_001E58" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_001E58[] = dspot12_room_1Set_0003B0DL_001E58; + +#define dspot12_room_1Set_0003B0DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0003B0DL_002A60" +static const ALIGN_ASSET(2) char spot12_room_1Set_0003B0DL_002A60[] = dspot12_room_1Set_0003B0DL_002A60; + +#define dspot12_room_1Set_000500DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_0050A0" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_0050A0[] = dspot12_room_1Set_000500DL_0050A0; + +#define dspot12_room_1Set_000500DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_0026A8" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_0026A8[] = dspot12_room_1Set_000500DL_0026A8; + +#define dspot12_room_1Set_000500DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_002DB0" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_002DB0[] = dspot12_room_1Set_000500DL_002DB0; + +#define dspot12_room_1Set_000500DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_001180" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_001180[] = dspot12_room_1Set_000500DL_001180; + +#define dspot12_room_1Set_000500DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_0034E8" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_0034E8[] = dspot12_room_1Set_000500DL_0034E8; + +#define dspot12_room_1Set_000500DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_004798" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_004798[] = dspot12_room_1Set_000500DL_004798; + +#define dspot12_room_1Set_000500DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_003E40" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_003E40[] = dspot12_room_1Set_000500DL_003E40; + +#define dspot12_room_1Set_000500DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_00AF80" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_00AF80[] = dspot12_room_1Set_000500DL_00AF80; + +#define dspot12_room_1Set_000500DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_001E58" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_001E58[] = dspot12_room_1Set_000500DL_001E58; + +#define dspot12_room_1Set_000500DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000500DL_002A60" +static const ALIGN_ASSET(2) char spot12_room_1Set_000500DL_002A60[] = dspot12_room_1Set_000500DL_002A60; + +#define dspot12_room_1Set_000720DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_0050A0" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_0050A0[] = dspot12_room_1Set_000720DL_0050A0; + +#define dspot12_room_1Set_000720DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_0026A8" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_0026A8[] = dspot12_room_1Set_000720DL_0026A8; + +#define dspot12_room_1Set_000720DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_002DB0" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_002DB0[] = dspot12_room_1Set_000720DL_002DB0; + +#define dspot12_room_1Set_000720DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_001180" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_001180[] = dspot12_room_1Set_000720DL_001180; + +#define dspot12_room_1Set_000720DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_0034E8" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_0034E8[] = dspot12_room_1Set_000720DL_0034E8; + +#define dspot12_room_1Set_000720DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_004798" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_004798[] = dspot12_room_1Set_000720DL_004798; + +#define dspot12_room_1Set_000720DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_003E40" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_003E40[] = dspot12_room_1Set_000720DL_003E40; + +#define dspot12_room_1Set_000720DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_00AF80" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_00AF80[] = dspot12_room_1Set_000720DL_00AF80; + +#define dspot12_room_1Set_000720DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_001E58" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_001E58[] = dspot12_room_1Set_000720DL_001E58; + +#define dspot12_room_1Set_000720DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_000720DL_002A60" +static const ALIGN_ASSET(2) char spot12_room_1Set_000720DL_002A60[] = dspot12_room_1Set_000720DL_002A60; + +#define dspot12_room_1Set_0007F0DL_0050A0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_0050A0" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_0050A0[] = dspot12_room_1Set_0007F0DL_0050A0; + +#define dspot12_room_1Set_0007F0DL_0026A8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_0026A8" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_0026A8[] = dspot12_room_1Set_0007F0DL_0026A8; + +#define dspot12_room_1Set_0007F0DL_002DB0 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_002DB0" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_002DB0[] = dspot12_room_1Set_0007F0DL_002DB0; + +#define dspot12_room_1Set_0007F0DL_001180 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_001180" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_001180[] = dspot12_room_1Set_0007F0DL_001180; + +#define dspot12_room_1Set_0007F0DL_0034E8 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_0034E8" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_0034E8[] = dspot12_room_1Set_0007F0DL_0034E8; + +#define dspot12_room_1Set_0007F0DL_004798 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_004798" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_004798[] = dspot12_room_1Set_0007F0DL_004798; + +#define dspot12_room_1Set_0007F0DL_003E40 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_003E40" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_003E40[] = dspot12_room_1Set_0007F0DL_003E40; + +#define dspot12_room_1Set_0007F0DL_00AF80 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_00AF80" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_00AF80[] = dspot12_room_1Set_0007F0DL_00AF80; + +#define dspot12_room_1Set_0007F0DL_001E58 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_001E58" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_001E58[] = dspot12_room_1Set_0007F0DL_001E58; + +#define dspot12_room_1Set_0007F0DL_002A60 "__OTR__scenes/nonmq/spot12_scene/spot12_room_1Set_0007F0DL_002A60" +static const ALIGN_ASSET(2) char spot12_room_1Set_0007F0DL_002A60[] = dspot12_room_1Set_0007F0DL_002A60; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot12/spot12_scene.h b/soh/assets/scenes/overworld/spot12/spot12_scene.h index e7104279a..c2f15b365 100644 --- a/soh/assets/scenes/overworld/spot12/spot12_scene.h +++ b/soh/assets/scenes/overworld/spot12/spot12_scene.h @@ -1,126 +1,64 @@ #pragma once + +#include "align_asset_macro.h" + #define dgGerudoFortressFirstCaptureCs "__OTR__scenes/nonmq/spot12_scene/gGerudoFortressFirstCaptureCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoFortressFirstCaptureCs[] = dgGerudoFortressFirstCaptureCs; -#else -static const char gGerudoFortressFirstCaptureCs[] __attribute__((aligned (2))) = dgGerudoFortressFirstCaptureCs; -#endif - +static const ALIGN_ASSET(2) char gGerudoFortressFirstCaptureCs[] = dgGerudoFortressFirstCaptureCs; + #define dgGerudoFortressIntroCs "__OTR__scenes/nonmq/spot12_scene/gGerudoFortressIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoFortressIntroCs[] = dgGerudoFortressIntroCs; -#else -static const char gGerudoFortressIntroCs[] __attribute__((aligned (2))) = dgGerudoFortressIntroCs; -#endif - +static const ALIGN_ASSET(2) char gGerudoFortressIntroCs[] = dgGerudoFortressIntroCs; + #define dgSpot12_009678Tex "__OTR__scenes/nonmq/spot12_scene/gSpot12_009678Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot12_009678Tex[] = dgSpot12_009678Tex; -#else -static const char gSpot12_009678Tex[] __attribute__((aligned (2))) = dgSpot12_009678Tex; -#endif - +static const ALIGN_ASSET(2) char gSpot12_009678Tex[] = dgSpot12_009678Tex; + #define dgSpot12_00DE78Tex "__OTR__scenes/nonmq/spot12_scene/gSpot12_00DE78Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot12_00DE78Tex[] = dgSpot12_00DE78Tex; -#else -static const char gSpot12_00DE78Tex[] __attribute__((aligned (2))) = dgSpot12_00DE78Tex; -#endif - +static const ALIGN_ASSET(2) char gSpot12_00DE78Tex[] = dgSpot12_00DE78Tex; + #define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneCollisionHeader_005030[] = dspot12_sceneCollisionHeader_005030; -#else -static const char spot12_sceneCollisionHeader_005030[] __attribute__((aligned (2))) = dspot12_sceneCollisionHeader_005030; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneCollisionHeader_005030[] = dspot12_sceneCollisionHeader_005030; + #define dspot12_sceneTex_008E78 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_008E78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_008E78[] = dspot12_sceneTex_008E78; -#else -static const char spot12_sceneTex_008E78[] __attribute__((aligned (2))) = dspot12_sceneTex_008E78; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_008E78[] = dspot12_sceneTex_008E78; + #define dspot12_sceneTLUT_006650 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTLUT_006650" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTLUT_006650[] = dspot12_sceneTLUT_006650; -#else -static const char spot12_sceneTLUT_006650[] __attribute__((aligned (2))) = dspot12_sceneTLUT_006650; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTLUT_006650[] = dspot12_sceneTLUT_006650; + #define dspot12_sceneTex_00EE78 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_00EE78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_00EE78[] = dspot12_sceneTex_00EE78; -#else -static const char spot12_sceneTex_00EE78[] __attribute__((aligned (2))) = dspot12_sceneTex_00EE78; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_00EE78[] = dspot12_sceneTex_00EE78; + #define dspot12_sceneTex_007678 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_007678" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_007678[] = dspot12_sceneTex_007678; -#else -static const char spot12_sceneTex_007678[] __attribute__((aligned (2))) = dspot12_sceneTex_007678; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_007678[] = dspot12_sceneTex_007678; + #define dspot12_sceneTex_006678 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_006678" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_006678[] = dspot12_sceneTex_006678; -#else -static const char spot12_sceneTex_006678[] __attribute__((aligned (2))) = dspot12_sceneTex_006678; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_006678[] = dspot12_sceneTex_006678; + #define dspot12_sceneTex_00C678 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_00C678" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_00C678[] = dspot12_sceneTex_00C678; -#else -static const char spot12_sceneTex_00C678[] __attribute__((aligned (2))) = dspot12_sceneTex_00C678; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_00C678[] = dspot12_sceneTex_00C678; + #define dspot12_sceneTex_00B678 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_00B678" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_00B678[] = dspot12_sceneTex_00B678; -#else -static const char spot12_sceneTex_00B678[] __attribute__((aligned (2))) = dspot12_sceneTex_00B678; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_00B678[] = dspot12_sceneTex_00B678; + #define dspot12_sceneTex_00BE78 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_00BE78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_00BE78[] = dspot12_sceneTex_00BE78; -#else -static const char spot12_sceneTex_00BE78[] __attribute__((aligned (2))) = dspot12_sceneTex_00BE78; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_00BE78[] = dspot12_sceneTex_00BE78; + #define dspot12_sceneTex_00CE78 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_00CE78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_00CE78[] = dspot12_sceneTex_00CE78; -#else -static const char spot12_sceneTex_00CE78[] __attribute__((aligned (2))) = dspot12_sceneTex_00CE78; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_00CE78[] = dspot12_sceneTex_00CE78; + #define dspot12_sceneTex_00A678 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_00A678" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_00A678[] = dspot12_sceneTex_00A678; -#else -static const char spot12_sceneTex_00A678[] __attribute__((aligned (2))) = dspot12_sceneTex_00A678; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_00A678[] = dspot12_sceneTex_00A678; + #define dspot12_sceneTex_00D678 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_00D678" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_00D678[] = dspot12_sceneTex_00D678; -#else -static const char spot12_sceneTex_00D678[] __attribute__((aligned (2))) = dspot12_sceneTex_00D678; -#endif - +static const ALIGN_ASSET(2) char spot12_sceneTex_00D678[] = dspot12_sceneTex_00D678; + #define dspot12_sceneTex_008678 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneTex_008678" -#ifdef _WIN32 -static const __declspec(align(2)) char spot12_sceneTex_008678[] = dspot12_sceneTex_008678; -#else -static const char spot12_sceneTex_008678[] __attribute__((aligned (2))) = dspot12_sceneTex_008678; -#endif - -#define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" -#define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" -#define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" -#define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" +static const ALIGN_ASSET(2) char spot12_sceneTex_008678[] = dspot12_sceneTex_008678; + #define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" +#define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" + +#define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" + +#define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" + +#define dspot12_sceneCollisionHeader_005030 "__OTR__scenes/nonmq/spot12_scene/spot12_sceneCollisionHeader_005030" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot13/spot13_room_0.h b/soh/assets/scenes/overworld/spot13/spot13_room_0.h index b3313e393..114605493 100644 --- a/soh/assets/scenes/overworld/spot13/spot13_room_0.h +++ b/soh/assets/scenes/overworld/spot13/spot13_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dspot13_room_0DL_0008F8 "__OTR__scenes/nonmq/spot13_scene/spot13_room_0DL_0008F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_0DL_0008F8[] = dspot13_room_0DL_0008F8; -#else -static const char spot13_room_0DL_0008F8[] __attribute__((aligned (2))) = dspot13_room_0DL_0008F8; -#endif - +#include "align_asset_macro.h" + +#define dspot13_room_0DL_0008F8 "__OTR__scenes/nonmq/spot13_scene/spot13_room_0DL_0008F8" +static const ALIGN_ASSET(2) char spot13_room_0DL_0008F8[] = dspot13_room_0DL_0008F8; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot13/spot13_room_1.h b/soh/assets/scenes/overworld/spot13/spot13_room_1.h index 65d72878b..d8d2e928f 100644 --- a/soh/assets/scenes/overworld/spot13/spot13_room_1.h +++ b/soh/assets/scenes/overworld/spot13/spot13_room_1.h @@ -1,191 +1,84 @@ #pragma once -#define dspot13_room_1DL_007D68 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1DL_007D68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1DL_007D68[] = dspot13_room_1DL_007D68; -#else -static const char spot13_room_1DL_007D68[] __attribute__((aligned (2))) = dspot13_room_1DL_007D68; -#endif - -#define dspot13_room_1Tex_00EE08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00EE08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00EE08[] = dspot13_room_1Tex_00EE08; -#else -static const char spot13_room_1Tex_00EE08[] __attribute__((aligned (2))) = dspot13_room_1Tex_00EE08; -#endif - -#define dspot13_room_1Tex_008608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_008608" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_008608[] = dspot13_room_1Tex_008608; -#else -static const char spot13_room_1Tex_008608[] __attribute__((aligned (2))) = dspot13_room_1Tex_008608; -#endif - -#define dspot13_room_1Tex_00C408 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00C408" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00C408[] = dspot13_room_1Tex_00C408; -#else -static const char spot13_room_1Tex_00C408[] __attribute__((aligned (2))) = dspot13_room_1Tex_00C408; -#endif - -#define dspot13_room_1Tex_00AE08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00AE08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00AE08[] = dspot13_room_1Tex_00AE08; -#else -static const char spot13_room_1Tex_00AE08[] __attribute__((aligned (2))) = dspot13_room_1Tex_00AE08; -#endif - -#define dspot13_room_1TLUT_007DC0 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1TLUT_007DC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1TLUT_007DC0[] = dspot13_room_1TLUT_007DC0; -#else -static const char spot13_room_1TLUT_007DC0[] __attribute__((aligned (2))) = dspot13_room_1TLUT_007DC0; -#endif - -#define dspot13_room_1Tex_00B808 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00B808" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00B808[] = dspot13_room_1Tex_00B808; -#else -static const char spot13_room_1Tex_00B808[] __attribute__((aligned (2))) = dspot13_room_1Tex_00B808; -#endif - -#define dspot13_room_1TLUT_007DE8 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1TLUT_007DE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1TLUT_007DE8[] = dspot13_room_1TLUT_007DE8; -#else -static const char spot13_room_1TLUT_007DE8[] __attribute__((aligned (2))) = dspot13_room_1TLUT_007DE8; -#endif - -#define dspot13_room_1Tex_008A08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_008A08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_008A08[] = dspot13_room_1Tex_008A08; -#else -static const char spot13_room_1Tex_008A08[] __attribute__((aligned (2))) = dspot13_room_1Tex_008A08; -#endif - -#define dspot13_room_1Tex_007E08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_007E08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_007E08[] = dspot13_room_1Tex_007E08; -#else -static const char spot13_room_1Tex_007E08[] __attribute__((aligned (2))) = dspot13_room_1Tex_007E08; -#endif - -#define dspot13_room_1Tex_009A08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_009A08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_009A08[] = dspot13_room_1Tex_009A08; -#else -static const char spot13_room_1Tex_009A08[] __attribute__((aligned (2))) = dspot13_room_1Tex_009A08; -#endif - -#define dspot13_room_1Tex_009C08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_009C08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_009C08[] = dspot13_room_1Tex_009C08; -#else -static const char spot13_room_1Tex_009C08[] __attribute__((aligned (2))) = dspot13_room_1Tex_009C08; -#endif - -#define dspot13_room_1Tex_010E08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_010E08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_010E08[] = dspot13_room_1Tex_010E08; -#else -static const char spot13_room_1Tex_010E08[] __attribute__((aligned (2))) = dspot13_room_1Tex_010E08; -#endif - -#define dspot13_room_1Tex_00A608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00A608" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00A608[] = dspot13_room_1Tex_00A608; -#else -static const char spot13_room_1Tex_00A608[] __attribute__((aligned (2))) = dspot13_room_1Tex_00A608; -#endif - -#define dspot13_room_1Tex_00FE08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00FE08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00FE08[] = dspot13_room_1Tex_00FE08; -#else -static const char spot13_room_1Tex_00FE08[] __attribute__((aligned (2))) = dspot13_room_1Tex_00FE08; -#endif - -#define dspot13_room_1Tex_009E08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_009E08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_009E08[] = dspot13_room_1Tex_009E08; -#else -static const char spot13_room_1Tex_009E08[] __attribute__((aligned (2))) = dspot13_room_1Tex_009E08; -#endif - -#define dspot13_room_1Tex_010608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_010608" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_010608[] = dspot13_room_1Tex_010608; -#else -static const char spot13_room_1Tex_010608[] __attribute__((aligned (2))) = dspot13_room_1Tex_010608; -#endif - -#define dspot13_room_1Tex_00B608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00B608" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00B608[] = dspot13_room_1Tex_00B608; -#else -static const char spot13_room_1Tex_00B608[] __attribute__((aligned (2))) = dspot13_room_1Tex_00B608; -#endif - -#define dspot13_room_1Tex_011208 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_011208" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_011208[] = dspot13_room_1Tex_011208; -#else -static const char spot13_room_1Tex_011208[] __attribute__((aligned (2))) = dspot13_room_1Tex_011208; -#endif - -#define dspot13_room_1Tex_00C608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00C608" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00C608[] = dspot13_room_1Tex_00C608; -#else -static const char spot13_room_1Tex_00C608[] __attribute__((aligned (2))) = dspot13_room_1Tex_00C608; -#endif - -#define dspot13_room_1Tex_00AA08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00AA08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00AA08[] = dspot13_room_1Tex_00AA08; -#else -static const char spot13_room_1Tex_00AA08[] __attribute__((aligned (2))) = dspot13_room_1Tex_00AA08; -#endif - -#define dspot13_room_1Tex_00BC08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00BC08" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00BC08[] = dspot13_room_1Tex_00BC08; -#else -static const char spot13_room_1Tex_00BC08[] __attribute__((aligned (2))) = dspot13_room_1Tex_00BC08; -#endif - -#define dspot13_room_1Tex_00E608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00E608" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00E608[] = dspot13_room_1Tex_00E608; -#else -static const char spot13_room_1Tex_00E608[] __attribute__((aligned (2))) = dspot13_room_1Tex_00E608; -#endif - -#define dspot13_room_1Tex_00D608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00D608" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_00D608[] = dspot13_room_1Tex_00D608; -#else -static const char spot13_room_1Tex_00D608[] __attribute__((aligned (2))) = dspot13_room_1Tex_00D608; -#endif - -#define dspot13_room_1DL_011E28 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1DL_011E28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1DL_011E28[] = dspot13_room_1DL_011E28; -#else -static const char spot13_room_1DL_011E28[] __attribute__((aligned (2))) = dspot13_room_1DL_011E28; -#endif - -#define dspot13_room_1Tex_012240 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_012240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_012240[] = dspot13_room_1Tex_012240; -#else -static const char spot13_room_1Tex_012240[] __attribute__((aligned (2))) = dspot13_room_1Tex_012240; -#endif - -#define dspot13_room_1Tex_011E40 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_011E40" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_room_1Tex_011E40[] = dspot13_room_1Tex_011E40; -#else -static const char spot13_room_1Tex_011E40[] __attribute__((aligned (2))) = dspot13_room_1Tex_011E40; -#endif - +#include "align_asset_macro.h" + +#define dspot13_room_1DL_007D68 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1DL_007D68" +static const ALIGN_ASSET(2) char spot13_room_1DL_007D68[] = dspot13_room_1DL_007D68; + +#define dspot13_room_1Tex_00EE08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00EE08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00EE08[] = dspot13_room_1Tex_00EE08; + +#define dspot13_room_1Tex_008608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_008608" +static const ALIGN_ASSET(2) char spot13_room_1Tex_008608[] = dspot13_room_1Tex_008608; + +#define dspot13_room_1Tex_00C408 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00C408" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00C408[] = dspot13_room_1Tex_00C408; + +#define dspot13_room_1Tex_00AE08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00AE08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00AE08[] = dspot13_room_1Tex_00AE08; + +#define dspot13_room_1TLUT_007DC0 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1TLUT_007DC0" +static const ALIGN_ASSET(2) char spot13_room_1TLUT_007DC0[] = dspot13_room_1TLUT_007DC0; + +#define dspot13_room_1Tex_00B808 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00B808" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00B808[] = dspot13_room_1Tex_00B808; + +#define dspot13_room_1TLUT_007DE8 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1TLUT_007DE8" +static const ALIGN_ASSET(2) char spot13_room_1TLUT_007DE8[] = dspot13_room_1TLUT_007DE8; + +#define dspot13_room_1Tex_008A08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_008A08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_008A08[] = dspot13_room_1Tex_008A08; + +#define dspot13_room_1Tex_007E08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_007E08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_007E08[] = dspot13_room_1Tex_007E08; + +#define dspot13_room_1Tex_009A08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_009A08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_009A08[] = dspot13_room_1Tex_009A08; + +#define dspot13_room_1Tex_009C08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_009C08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_009C08[] = dspot13_room_1Tex_009C08; + +#define dspot13_room_1Tex_010E08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_010E08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_010E08[] = dspot13_room_1Tex_010E08; + +#define dspot13_room_1Tex_00A608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00A608" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00A608[] = dspot13_room_1Tex_00A608; + +#define dspot13_room_1Tex_00FE08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00FE08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00FE08[] = dspot13_room_1Tex_00FE08; + +#define dspot13_room_1Tex_009E08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_009E08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_009E08[] = dspot13_room_1Tex_009E08; + +#define dspot13_room_1Tex_010608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_010608" +static const ALIGN_ASSET(2) char spot13_room_1Tex_010608[] = dspot13_room_1Tex_010608; + +#define dspot13_room_1Tex_00B608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00B608" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00B608[] = dspot13_room_1Tex_00B608; + +#define dspot13_room_1Tex_011208 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_011208" +static const ALIGN_ASSET(2) char spot13_room_1Tex_011208[] = dspot13_room_1Tex_011208; + +#define dspot13_room_1Tex_00C608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00C608" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00C608[] = dspot13_room_1Tex_00C608; + +#define dspot13_room_1Tex_00AA08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00AA08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00AA08[] = dspot13_room_1Tex_00AA08; + +#define dspot13_room_1Tex_00BC08 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00BC08" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00BC08[] = dspot13_room_1Tex_00BC08; + +#define dspot13_room_1Tex_00E608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00E608" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00E608[] = dspot13_room_1Tex_00E608; + +#define dspot13_room_1Tex_00D608 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_00D608" +static const ALIGN_ASSET(2) char spot13_room_1Tex_00D608[] = dspot13_room_1Tex_00D608; + +#define dspot13_room_1DL_011E28 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1DL_011E28" +static const ALIGN_ASSET(2) char spot13_room_1DL_011E28[] = dspot13_room_1DL_011E28; + +#define dspot13_room_1Tex_012240 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_012240" +static const ALIGN_ASSET(2) char spot13_room_1Tex_012240[] = dspot13_room_1Tex_012240; + +#define dspot13_room_1Tex_011E40 "__OTR__scenes/nonmq/spot13_scene/spot13_room_1Tex_011E40" +static const ALIGN_ASSET(2) char spot13_room_1Tex_011E40[] = dspot13_room_1Tex_011E40; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot13/spot13_scene.h b/soh/assets/scenes/overworld/spot13/spot13_scene.h index ea39ad465..f2518d28a 100644 --- a/soh/assets/scenes/overworld/spot13/spot13_scene.h +++ b/soh/assets/scenes/overworld/spot13/spot13_scene.h @@ -1,30 +1,15 @@ #pragma once -#define dspot13_sceneCollisionHeader_003A00 "__OTR__scenes/nonmq/spot13_scene/spot13_sceneCollisionHeader_003A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_sceneCollisionHeader_003A00[] = dspot13_sceneCollisionHeader_003A00; -#else -static const char spot13_sceneCollisionHeader_003A00[] __attribute__((aligned (2))) = dspot13_sceneCollisionHeader_003A00; -#endif - -#define dspot13_sceneTex_004E30 "__OTR__scenes/nonmq/spot13_scene/spot13_sceneTex_004E30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_sceneTex_004E30[] = dspot13_sceneTex_004E30; -#else -static const char spot13_sceneTex_004E30[] __attribute__((aligned (2))) = dspot13_sceneTex_004E30; -#endif - -#define dspot13_sceneTex_003E30 "__OTR__scenes/nonmq/spot13_scene/spot13_sceneTex_003E30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_sceneTex_003E30[] = dspot13_sceneTex_003E30; -#else -static const char spot13_sceneTex_003E30[] __attribute__((aligned (2))) = dspot13_sceneTex_003E30; -#endif - -#define dspot13_sceneTex_003A30 "__OTR__scenes/nonmq/spot13_scene/spot13_sceneTex_003A30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot13_sceneTex_003A30[] = dspot13_sceneTex_003A30; -#else -static const char spot13_sceneTex_003A30[] __attribute__((aligned (2))) = dspot13_sceneTex_003A30; -#endif - +#include "align_asset_macro.h" + +#define dspot13_sceneCollisionHeader_003A00 "__OTR__scenes/nonmq/spot13_scene/spot13_sceneCollisionHeader_003A00" +static const ALIGN_ASSET(2) char spot13_sceneCollisionHeader_003A00[] = dspot13_sceneCollisionHeader_003A00; + +#define dspot13_sceneTex_004E30 "__OTR__scenes/nonmq/spot13_scene/spot13_sceneTex_004E30" +static const ALIGN_ASSET(2) char spot13_sceneTex_004E30[] = dspot13_sceneTex_004E30; + +#define dspot13_sceneTex_003E30 "__OTR__scenes/nonmq/spot13_scene/spot13_sceneTex_003E30" +static const ALIGN_ASSET(2) char spot13_sceneTex_003E30[] = dspot13_sceneTex_003E30; + +#define dspot13_sceneTex_003A30 "__OTR__scenes/nonmq/spot13_scene/spot13_sceneTex_003A30" +static const ALIGN_ASSET(2) char spot13_sceneTex_003A30[] = dspot13_sceneTex_003A30; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot15/spot15_room_0.h b/soh/assets/scenes/overworld/spot15/spot15_room_0.h index d815555d3..2c1a91715 100644 --- a/soh/assets/scenes/overworld/spot15/spot15_room_0.h +++ b/soh/assets/scenes/overworld/spot15/spot15_room_0.h @@ -1,261 +1,114 @@ #pragma once -#define dspot15_room_0DL_0093C0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0093C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_0093C0[] = dspot15_room_0DL_0093C0; -#else -static const char spot15_room_0DL_0093C0[] __attribute__((aligned (2))) = dspot15_room_0DL_0093C0; -#endif - -#define dspot15_room_0DL_00CBD8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00CBD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00CBD8[] = dspot15_room_0DL_00CBD8; -#else -static const char spot15_room_0DL_00CBD8[] __attribute__((aligned (2))) = dspot15_room_0DL_00CBD8; -#endif - -#define dspot15_room_0DL_00B1D8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00B1D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00B1D8[] = dspot15_room_0DL_00B1D8; -#else -static const char spot15_room_0DL_00B1D8[] __attribute__((aligned (2))) = dspot15_room_0DL_00B1D8; -#endif - -#define dspot15_room_0DL_00AB18 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00AB18" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00AB18[] = dspot15_room_0DL_00AB18; -#else -static const char spot15_room_0DL_00AB18[] __attribute__((aligned (2))) = dspot15_room_0DL_00AB18; -#endif - -#define dspot15_room_0DL_007EE8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_007EE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_007EE8[] = dspot15_room_0DL_007EE8; -#else -static const char spot15_room_0DL_007EE8[] __attribute__((aligned (2))) = dspot15_room_0DL_007EE8; -#endif - -#define dspot15_room_0DL_0082A0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0082A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_0082A0[] = dspot15_room_0DL_0082A0; -#else -static const char spot15_room_0DL_0082A0[] __attribute__((aligned (2))) = dspot15_room_0DL_0082A0; -#endif - -#define dspot15_room_0DL_008728 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_008728" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_008728[] = dspot15_room_0DL_008728; -#else -static const char spot15_room_0DL_008728[] __attribute__((aligned (2))) = dspot15_room_0DL_008728; -#endif - -#define dspot15_room_0DL_00C0F8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00C0F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00C0F8[] = dspot15_room_0DL_00C0F8; -#else -static const char spot15_room_0DL_00C0F8[] __attribute__((aligned (2))) = dspot15_room_0DL_00C0F8; -#endif - -#define dspot15_room_0DL_004A78 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_004A78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_004A78[] = dspot15_room_0DL_004A78; -#else -static const char spot15_room_0DL_004A78[] __attribute__((aligned (2))) = dspot15_room_0DL_004A78; -#endif - -#define dspot15_room_0DL_00B8A0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00B8A0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00B8A0[] = dspot15_room_0DL_00B8A0; -#else -static const char spot15_room_0DL_00B8A0[] __attribute__((aligned (2))) = dspot15_room_0DL_00B8A0; -#endif - -#define dspot15_room_0DL_001160 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_001160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_001160[] = dspot15_room_0DL_001160; -#else -static const char spot15_room_0DL_001160[] __attribute__((aligned (2))) = dspot15_room_0DL_001160; -#endif - -#define dspot15_room_0DL_0019E0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0019E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_0019E0[] = dspot15_room_0DL_0019E0; -#else -static const char spot15_room_0DL_0019E0[] __attribute__((aligned (2))) = dspot15_room_0DL_0019E0; -#endif - -#define dspot15_room_0DL_0020E8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0020E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_0020E8[] = dspot15_room_0DL_0020E8; -#else -static const char spot15_room_0DL_0020E8[] __attribute__((aligned (2))) = dspot15_room_0DL_0020E8; -#endif - -#define dspot15_room_0DL_0047C0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0047C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_0047C0[] = dspot15_room_0DL_0047C0; -#else -static const char spot15_room_0DL_0047C0[] __attribute__((aligned (2))) = dspot15_room_0DL_0047C0; -#endif - -#define dspot15_room_0DL_005550 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_005550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_005550[] = dspot15_room_0DL_005550; -#else -static const char spot15_room_0DL_005550[] __attribute__((aligned (2))) = dspot15_room_0DL_005550; -#endif - -#define dspot15_room_0DL_008EF8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_008EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_008EF8[] = dspot15_room_0DL_008EF8; -#else -static const char spot15_room_0DL_008EF8[] __attribute__((aligned (2))) = dspot15_room_0DL_008EF8; -#endif - -#define dspot15_room_0DL_00C270 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00C270" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00C270[] = dspot15_room_0DL_00C270; -#else -static const char spot15_room_0DL_00C270[] __attribute__((aligned (2))) = dspot15_room_0DL_00C270; -#endif - -#define dspot15_room_0DL_003C58 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_003C58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_003C58[] = dspot15_room_0DL_003C58; -#else -static const char spot15_room_0DL_003C58[] __attribute__((aligned (2))) = dspot15_room_0DL_003C58; -#endif - -#define dspot15_room_0DL_00BEC0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00BEC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00BEC0[] = dspot15_room_0DL_00BEC0; -#else -static const char spot15_room_0DL_00BEC0[] __attribute__((aligned (2))) = dspot15_room_0DL_00BEC0; -#endif - -#define dspot15_room_0DL_004588 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_004588" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_004588[] = dspot15_room_0DL_004588; -#else -static const char spot15_room_0DL_004588[] __attribute__((aligned (2))) = dspot15_room_0DL_004588; -#endif - -#define dspot15_room_0DL_00A118 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00A118" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00A118[] = dspot15_room_0DL_00A118; -#else -static const char spot15_room_0DL_00A118[] __attribute__((aligned (2))) = dspot15_room_0DL_00A118; -#endif - -#define dspot15_room_0DL_00A5C0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00A5C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00A5C0[] = dspot15_room_0DL_00A5C0; -#else -static const char spot15_room_0DL_00A5C0[] __attribute__((aligned (2))) = dspot15_room_0DL_00A5C0; -#endif - -#define dspot15_room_0DL_00C748 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00C748" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00C748[] = dspot15_room_0DL_00C748; -#else -static const char spot15_room_0DL_00C748[] __attribute__((aligned (2))) = dspot15_room_0DL_00C748; -#endif - -#define dspot15_room_0DL_005EB0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_005EB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_005EB0[] = dspot15_room_0DL_005EB0; -#else -static const char spot15_room_0DL_005EB0[] __attribute__((aligned (2))) = dspot15_room_0DL_005EB0; -#endif - -#define dspot15_room_0DL_006510 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_006510" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_006510[] = dspot15_room_0DL_006510; -#else -static const char spot15_room_0DL_006510[] __attribute__((aligned (2))) = dspot15_room_0DL_006510; -#endif - -#define dspot15_room_0DL_006A20 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_006A20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_006A20[] = dspot15_room_0DL_006A20; -#else -static const char spot15_room_0DL_006A20[] __attribute__((aligned (2))) = dspot15_room_0DL_006A20; -#endif - -#define dspot15_room_0DL_007278 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_007278" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_007278[] = dspot15_room_0DL_007278; -#else -static const char spot15_room_0DL_007278[] __attribute__((aligned (2))) = dspot15_room_0DL_007278; -#endif - -#define dspot15_room_0DL_007B38 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_007B38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_007B38[] = dspot15_room_0DL_007B38; -#else -static const char spot15_room_0DL_007B38[] __attribute__((aligned (2))) = dspot15_room_0DL_007B38; -#endif - -#define dspot15_room_0DL_004E88 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_004E88" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_004E88[] = dspot15_room_0DL_004E88; -#else -static const char spot15_room_0DL_004E88[] __attribute__((aligned (2))) = dspot15_room_0DL_004E88; -#endif - -#define dspot15_room_0DL_00D098 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00D098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00D098[] = dspot15_room_0DL_00D098; -#else -static const char spot15_room_0DL_00D098[] __attribute__((aligned (2))) = dspot15_room_0DL_00D098; -#endif - -#define dspot15_room_0DL_00CE90 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00CE90" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00CE90[] = dspot15_room_0DL_00CE90; -#else -static const char spot15_room_0DL_00CE90[] __attribute__((aligned (2))) = dspot15_room_0DL_00CE90; -#endif - -#define dspot15_room_0DL_0036D0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0036D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_0036D0[] = dspot15_room_0DL_0036D0; -#else -static const char spot15_room_0DL_0036D0[] __attribute__((aligned (2))) = dspot15_room_0DL_0036D0; -#endif - -#define dspot15_room_0DL_0091D8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0091D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_0091D8[] = dspot15_room_0DL_0091D8; -#else -static const char spot15_room_0DL_0091D8[] __attribute__((aligned (2))) = dspot15_room_0DL_0091D8; -#endif - -#define dspot15_room_0DL_002C50 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_002C50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_002C50[] = dspot15_room_0DL_002C50; -#else -static const char spot15_room_0DL_002C50[] __attribute__((aligned (2))) = dspot15_room_0DL_002C50; -#endif - -#define dspot15_room_0DL_00BBC0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00BBC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00BBC0[] = dspot15_room_0DL_00BBC0; -#else -static const char spot15_room_0DL_00BBC0[] __attribute__((aligned (2))) = dspot15_room_0DL_00BBC0; -#endif - -#define dspot15_room_0DL_00B628 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00B628" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_00B628[] = dspot15_room_0DL_00B628; -#else -static const char spot15_room_0DL_00B628[] __attribute__((aligned (2))) = dspot15_room_0DL_00B628; -#endif - -#define dspot15_room_0DL_0041F0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0041F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_room_0DL_0041F0[] = dspot15_room_0DL_0041F0; -#else -static const char spot15_room_0DL_0041F0[] __attribute__((aligned (2))) = dspot15_room_0DL_0041F0; -#endif - +#include "align_asset_macro.h" + +#define dspot15_room_0DL_0093C0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0093C0" +static const ALIGN_ASSET(2) char spot15_room_0DL_0093C0[] = dspot15_room_0DL_0093C0; + +#define dspot15_room_0DL_00CBD8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00CBD8" +static const ALIGN_ASSET(2) char spot15_room_0DL_00CBD8[] = dspot15_room_0DL_00CBD8; + +#define dspot15_room_0DL_00B1D8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00B1D8" +static const ALIGN_ASSET(2) char spot15_room_0DL_00B1D8[] = dspot15_room_0DL_00B1D8; + +#define dspot15_room_0DL_00AB18 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00AB18" +static const ALIGN_ASSET(2) char spot15_room_0DL_00AB18[] = dspot15_room_0DL_00AB18; + +#define dspot15_room_0DL_007EE8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_007EE8" +static const ALIGN_ASSET(2) char spot15_room_0DL_007EE8[] = dspot15_room_0DL_007EE8; + +#define dspot15_room_0DL_0082A0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0082A0" +static const ALIGN_ASSET(2) char spot15_room_0DL_0082A0[] = dspot15_room_0DL_0082A0; + +#define dspot15_room_0DL_008728 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_008728" +static const ALIGN_ASSET(2) char spot15_room_0DL_008728[] = dspot15_room_0DL_008728; + +#define dspot15_room_0DL_00C0F8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00C0F8" +static const ALIGN_ASSET(2) char spot15_room_0DL_00C0F8[] = dspot15_room_0DL_00C0F8; + +#define dspot15_room_0DL_004A78 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_004A78" +static const ALIGN_ASSET(2) char spot15_room_0DL_004A78[] = dspot15_room_0DL_004A78; + +#define dspot15_room_0DL_00B8A0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00B8A0" +static const ALIGN_ASSET(2) char spot15_room_0DL_00B8A0[] = dspot15_room_0DL_00B8A0; + +#define dspot15_room_0DL_001160 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_001160" +static const ALIGN_ASSET(2) char spot15_room_0DL_001160[] = dspot15_room_0DL_001160; + +#define dspot15_room_0DL_0019E0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0019E0" +static const ALIGN_ASSET(2) char spot15_room_0DL_0019E0[] = dspot15_room_0DL_0019E0; + +#define dspot15_room_0DL_0020E8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0020E8" +static const ALIGN_ASSET(2) char spot15_room_0DL_0020E8[] = dspot15_room_0DL_0020E8; + +#define dspot15_room_0DL_0047C0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0047C0" +static const ALIGN_ASSET(2) char spot15_room_0DL_0047C0[] = dspot15_room_0DL_0047C0; + +#define dspot15_room_0DL_005550 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_005550" +static const ALIGN_ASSET(2) char spot15_room_0DL_005550[] = dspot15_room_0DL_005550; + +#define dspot15_room_0DL_008EF8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_008EF8" +static const ALIGN_ASSET(2) char spot15_room_0DL_008EF8[] = dspot15_room_0DL_008EF8; + +#define dspot15_room_0DL_00C270 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00C270" +static const ALIGN_ASSET(2) char spot15_room_0DL_00C270[] = dspot15_room_0DL_00C270; + +#define dspot15_room_0DL_003C58 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_003C58" +static const ALIGN_ASSET(2) char spot15_room_0DL_003C58[] = dspot15_room_0DL_003C58; + +#define dspot15_room_0DL_00BEC0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00BEC0" +static const ALIGN_ASSET(2) char spot15_room_0DL_00BEC0[] = dspot15_room_0DL_00BEC0; + +#define dspot15_room_0DL_004588 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_004588" +static const ALIGN_ASSET(2) char spot15_room_0DL_004588[] = dspot15_room_0DL_004588; + +#define dspot15_room_0DL_00A118 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00A118" +static const ALIGN_ASSET(2) char spot15_room_0DL_00A118[] = dspot15_room_0DL_00A118; + +#define dspot15_room_0DL_00A5C0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00A5C0" +static const ALIGN_ASSET(2) char spot15_room_0DL_00A5C0[] = dspot15_room_0DL_00A5C0; + +#define dspot15_room_0DL_00C748 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00C748" +static const ALIGN_ASSET(2) char spot15_room_0DL_00C748[] = dspot15_room_0DL_00C748; + +#define dspot15_room_0DL_005EB0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_005EB0" +static const ALIGN_ASSET(2) char spot15_room_0DL_005EB0[] = dspot15_room_0DL_005EB0; + +#define dspot15_room_0DL_006510 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_006510" +static const ALIGN_ASSET(2) char spot15_room_0DL_006510[] = dspot15_room_0DL_006510; + +#define dspot15_room_0DL_006A20 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_006A20" +static const ALIGN_ASSET(2) char spot15_room_0DL_006A20[] = dspot15_room_0DL_006A20; + +#define dspot15_room_0DL_007278 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_007278" +static const ALIGN_ASSET(2) char spot15_room_0DL_007278[] = dspot15_room_0DL_007278; + +#define dspot15_room_0DL_007B38 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_007B38" +static const ALIGN_ASSET(2) char spot15_room_0DL_007B38[] = dspot15_room_0DL_007B38; + +#define dspot15_room_0DL_004E88 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_004E88" +static const ALIGN_ASSET(2) char spot15_room_0DL_004E88[] = dspot15_room_0DL_004E88; + +#define dspot15_room_0DL_00D098 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00D098" +static const ALIGN_ASSET(2) char spot15_room_0DL_00D098[] = dspot15_room_0DL_00D098; + +#define dspot15_room_0DL_00CE90 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00CE90" +static const ALIGN_ASSET(2) char spot15_room_0DL_00CE90[] = dspot15_room_0DL_00CE90; + +#define dspot15_room_0DL_0036D0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0036D0" +static const ALIGN_ASSET(2) char spot15_room_0DL_0036D0[] = dspot15_room_0DL_0036D0; + +#define dspot15_room_0DL_0091D8 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0091D8" +static const ALIGN_ASSET(2) char spot15_room_0DL_0091D8[] = dspot15_room_0DL_0091D8; + +#define dspot15_room_0DL_002C50 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_002C50" +static const ALIGN_ASSET(2) char spot15_room_0DL_002C50[] = dspot15_room_0DL_002C50; + +#define dspot15_room_0DL_00BBC0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00BBC0" +static const ALIGN_ASSET(2) char spot15_room_0DL_00BBC0[] = dspot15_room_0DL_00BBC0; + +#define dspot15_room_0DL_00B628 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_00B628" +static const ALIGN_ASSET(2) char spot15_room_0DL_00B628[] = dspot15_room_0DL_00B628; + +#define dspot15_room_0DL_0041F0 "__OTR__scenes/nonmq/spot15_scene/spot15_room_0DL_0041F0" +static const ALIGN_ASSET(2) char spot15_room_0DL_0041F0[] = dspot15_room_0DL_0041F0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot15/spot15_scene.h b/soh/assets/scenes/overworld/spot15/spot15_scene.h index 09c543ee8..cbfa29a88 100644 --- a/soh/assets/scenes/overworld/spot15/spot15_scene.h +++ b/soh/assets/scenes/overworld/spot15/spot15_scene.h @@ -1,317 +1,138 @@ #pragma once -#define dgHyruleCastleIntroCs "__OTR__scenes/nonmq/spot15_scene/gHyruleCastleIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleCastleIntroCs[] = dgHyruleCastleIntroCs; -#else -static const char gHyruleCastleIntroCs[] __attribute__((aligned (2))) = dgHyruleCastleIntroCs; -#endif - -#define dspot15_sceneCollisionHeader_003CE8 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneCollisionHeader_003CE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneCollisionHeader_003CE8[] = dspot15_sceneCollisionHeader_003CE8; -#else -static const char spot15_sceneCollisionHeader_003CE8[] __attribute__((aligned (2))) = dspot15_sceneCollisionHeader_003CE8; -#endif - -#define dspot15_sceneTex_013400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_013400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_013400[] = dspot15_sceneTex_013400; -#else -static const char spot15_sceneTex_013400[] __attribute__((aligned (2))) = dspot15_sceneTex_013400; -#endif - -#define dspot15_sceneTex_004900 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_004900" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_004900[] = dspot15_sceneTex_004900; -#else -static const char spot15_sceneTex_004900[] __attribute__((aligned (2))) = dspot15_sceneTex_004900; -#endif - -#define dspot15_sceneTex_004A00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_004A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_004A00[] = dspot15_sceneTex_004A00; -#else -static const char spot15_sceneTex_004A00[] __attribute__((aligned (2))) = dspot15_sceneTex_004A00; -#endif - -#define dspot15_sceneTex_006400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_006400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_006400[] = dspot15_sceneTex_006400; -#else -static const char spot15_sceneTex_006400[] __attribute__((aligned (2))) = dspot15_sceneTex_006400; -#endif - -#define dspot15_sceneTex_010400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_010400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_010400[] = dspot15_sceneTex_010400; -#else -static const char spot15_sceneTex_010400[] __attribute__((aligned (2))) = dspot15_sceneTex_010400; -#endif - -#define dspot15_sceneTex_011400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_011400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_011400[] = dspot15_sceneTex_011400; -#else -static const char spot15_sceneTex_011400[] __attribute__((aligned (2))) = dspot15_sceneTex_011400; -#endif - -#define dspot15_sceneTex_007300 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_007300" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_007300[] = dspot15_sceneTex_007300; -#else -static const char spot15_sceneTex_007300[] __attribute__((aligned (2))) = dspot15_sceneTex_007300; -#endif - -#define dspot15_sceneTex_006F00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_006F00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_006F00[] = dspot15_sceneTex_006F00; -#else -static const char spot15_sceneTex_006F00[] __attribute__((aligned (2))) = dspot15_sceneTex_006F00; -#endif - -#define dspot15_sceneTex_007B00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_007B00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_007B00[] = dspot15_sceneTex_007B00; -#else -static const char spot15_sceneTex_007B00[] __attribute__((aligned (2))) = dspot15_sceneTex_007B00; -#endif - -#define dspot15_sceneTex_014400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_014400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_014400[] = dspot15_sceneTex_014400; -#else -static const char spot15_sceneTex_014400[] __attribute__((aligned (2))) = dspot15_sceneTex_014400; -#endif - -#define dspot15_sceneTex_00FC00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00FC00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00FC00[] = dspot15_sceneTex_00FC00; -#else -static const char spot15_sceneTex_00FC00[] __attribute__((aligned (2))) = dspot15_sceneTex_00FC00; -#endif - -#define dspot15_sceneTex_011C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_011C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_011C00[] = dspot15_sceneTex_011C00; -#else -static const char spot15_sceneTex_011C00[] __attribute__((aligned (2))) = dspot15_sceneTex_011C00; -#endif - -#define dspot15_sceneTex_014C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_014C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_014C00[] = dspot15_sceneTex_014C00; -#else -static const char spot15_sceneTex_014C00[] __attribute__((aligned (2))) = dspot15_sceneTex_014C00; -#endif - -#define dspot15_sceneTex_00DA00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00DA00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00DA00[] = dspot15_sceneTex_00DA00; -#else -static const char spot15_sceneTex_00DA00[] __attribute__((aligned (2))) = dspot15_sceneTex_00DA00; -#endif - -#define dspot15_sceneTex_007C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_007C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_007C00[] = dspot15_sceneTex_007C00; -#else -static const char spot15_sceneTex_007C00[] __attribute__((aligned (2))) = dspot15_sceneTex_007C00; -#endif - -#define dspot15_sceneTex_009900 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_009900" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_009900[] = dspot15_sceneTex_009900; -#else -static const char spot15_sceneTex_009900[] __attribute__((aligned (2))) = dspot15_sceneTex_009900; -#endif - -#define dspot15_sceneTex_00A900 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00A900" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00A900[] = dspot15_sceneTex_00A900; -#else -static const char spot15_sceneTex_00A900[] __attribute__((aligned (2))) = dspot15_sceneTex_00A900; -#endif - -#define dspot15_sceneTex_010C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_010C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_010C00[] = dspot15_sceneTex_010C00; -#else -static const char spot15_sceneTex_010C00[] __attribute__((aligned (2))) = dspot15_sceneTex_010C00; -#endif - -#define dspot15_sceneTex_016C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_016C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_016C00[] = dspot15_sceneTex_016C00; -#else -static const char spot15_sceneTex_016C00[] __attribute__((aligned (2))) = dspot15_sceneTex_016C00; -#endif - -#define dspot15_sceneTex_00A100 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00A100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00A100[] = dspot15_sceneTex_00A100; -#else -static const char spot15_sceneTex_00A100[] __attribute__((aligned (2))) = dspot15_sceneTex_00A100; -#endif - -#define dspot15_sceneTex_017400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_017400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_017400[] = dspot15_sceneTex_017400; -#else -static const char spot15_sceneTex_017400[] __attribute__((aligned (2))) = dspot15_sceneTex_017400; -#endif - -#define dspot15_sceneTex_00EC00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00EC00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00EC00[] = dspot15_sceneTex_00EC00; -#else -static const char spot15_sceneTex_00EC00[] __attribute__((aligned (2))) = dspot15_sceneTex_00EC00; -#endif - -#define dspot15_sceneTex_008E00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_008E00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_008E00[] = dspot15_sceneTex_008E00; -#else -static const char spot15_sceneTex_008E00[] __attribute__((aligned (2))) = dspot15_sceneTex_008E00; -#endif - -#define dspot15_sceneTex_015E00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_015E00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_015E00[] = dspot15_sceneTex_015E00; -#else -static const char spot15_sceneTex_015E00[] __attribute__((aligned (2))) = dspot15_sceneTex_015E00; -#endif - -#define dspot15_sceneTex_00CA00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00CA00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00CA00[] = dspot15_sceneTex_00CA00; -#else -static const char spot15_sceneTex_00CA00[] __attribute__((aligned (2))) = dspot15_sceneTex_00CA00; -#endif - -#define dspot15_sceneTex_004100 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_004100" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_004100[] = dspot15_sceneTex_004100; -#else -static const char spot15_sceneTex_004100[] __attribute__((aligned (2))) = dspot15_sceneTex_004100; -#endif - -#define dspot15_sceneTex_00BA00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00BA00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00BA00[] = dspot15_sceneTex_00BA00; -#else -static const char spot15_sceneTex_00BA00[] __attribute__((aligned (2))) = dspot15_sceneTex_00BA00; -#endif - -#define dspot15_sceneTex_009800 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_009800" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_009800[] = dspot15_sceneTex_009800; -#else -static const char spot15_sceneTex_009800[] __attribute__((aligned (2))) = dspot15_sceneTex_009800; -#endif - -#define dspot15_sceneTex_015C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_015C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_015C00[] = dspot15_sceneTex_015C00; -#else -static const char spot15_sceneTex_015C00[] __attribute__((aligned (2))) = dspot15_sceneTex_015C00; -#endif - -#define dspot15_sceneTex_018400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_018400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_018400[] = dspot15_sceneTex_018400; -#else -static const char spot15_sceneTex_018400[] __attribute__((aligned (2))) = dspot15_sceneTex_018400; -#endif - -#define dspot15_sceneTex_00B900 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00B900" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00B900[] = dspot15_sceneTex_00B900; -#else -static const char spot15_sceneTex_00B900[] __attribute__((aligned (2))) = dspot15_sceneTex_00B900; -#endif - -#define dspot15_sceneTex_00C200 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00C200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00C200[] = dspot15_sceneTex_00C200; -#else -static const char spot15_sceneTex_00C200[] __attribute__((aligned (2))) = dspot15_sceneTex_00C200; -#endif - -#define dspot15_sceneTex_016600 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_016600" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_016600[] = dspot15_sceneTex_016600; -#else -static const char spot15_sceneTex_016600[] __attribute__((aligned (2))) = dspot15_sceneTex_016600; -#endif - -#define dspot15_sceneTex_006D00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_006D00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_006D00[] = dspot15_sceneTex_006D00; -#else -static const char spot15_sceneTex_006D00[] __attribute__((aligned (2))) = dspot15_sceneTex_006D00; -#endif - -#define dspot15_sceneTex_00EA00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00EA00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_00EA00[] = dspot15_sceneTex_00EA00; -#else -static const char spot15_sceneTex_00EA00[] __attribute__((aligned (2))) = dspot15_sceneTex_00EA00; -#endif - -#define dspot15_sceneTex_012400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_012400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_012400[] = dspot15_sceneTex_012400; -#else -static const char spot15_sceneTex_012400[] __attribute__((aligned (2))) = dspot15_sceneTex_012400; -#endif - -#define dspot15_sceneTex_005400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_005400" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_005400[] = dspot15_sceneTex_005400; -#else -static const char spot15_sceneTex_005400[] __attribute__((aligned (2))) = dspot15_sceneTex_005400; -#endif - -#define dspot15_sceneTex_007E00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_007E00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_007E00[] = dspot15_sceneTex_007E00; -#else -static const char spot15_sceneTex_007E00[] __attribute__((aligned (2))) = dspot15_sceneTex_007E00; -#endif - -#define dspot15_sceneTex_017C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_017C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_017C00[] = dspot15_sceneTex_017C00; -#else -static const char spot15_sceneTex_017C00[] __attribute__((aligned (2))) = dspot15_sceneTex_017C00; -#endif - -#define dspot15_sceneTex_006500 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_006500" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_006500[] = dspot15_sceneTex_006500; -#else -static const char spot15_sceneTex_006500[] __attribute__((aligned (2))) = dspot15_sceneTex_006500; -#endif - -#define dspot15_sceneTex_009600 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_009600" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_009600[] = dspot15_sceneTex_009600; -#else -static const char spot15_sceneTex_009600[] __attribute__((aligned (2))) = dspot15_sceneTex_009600; -#endif - -#define dspot15_sceneTex_004C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_004C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_004C00[] = dspot15_sceneTex_004C00; -#else -static const char spot15_sceneTex_004C00[] __attribute__((aligned (2))) = dspot15_sceneTex_004C00; -#endif - -#define dspot15_sceneTex_016800 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_016800" -#ifdef _WIN32 -static const __declspec(align(2)) char spot15_sceneTex_016800[] = dspot15_sceneTex_016800; -#else -static const char spot15_sceneTex_016800[] __attribute__((aligned (2))) = dspot15_sceneTex_016800; -#endif - +#include "align_asset_macro.h" + +#define dgHyruleCastleIntroCs "__OTR__scenes/nonmq/spot15_scene/gHyruleCastleIntroCs" +static const ALIGN_ASSET(2) char gHyruleCastleIntroCs[] = dgHyruleCastleIntroCs; + +#define dspot15_sceneCollisionHeader_003CE8 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneCollisionHeader_003CE8" +static const ALIGN_ASSET(2) char spot15_sceneCollisionHeader_003CE8[] = dspot15_sceneCollisionHeader_003CE8; + +#define dspot15_sceneTex_013400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_013400" +static const ALIGN_ASSET(2) char spot15_sceneTex_013400[] = dspot15_sceneTex_013400; + +#define dspot15_sceneTex_004900 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_004900" +static const ALIGN_ASSET(2) char spot15_sceneTex_004900[] = dspot15_sceneTex_004900; + +#define dspot15_sceneTex_004A00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_004A00" +static const ALIGN_ASSET(2) char spot15_sceneTex_004A00[] = dspot15_sceneTex_004A00; + +#define dspot15_sceneTex_006400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_006400" +static const ALIGN_ASSET(2) char spot15_sceneTex_006400[] = dspot15_sceneTex_006400; + +#define dspot15_sceneTex_010400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_010400" +static const ALIGN_ASSET(2) char spot15_sceneTex_010400[] = dspot15_sceneTex_010400; + +#define dspot15_sceneTex_011400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_011400" +static const ALIGN_ASSET(2) char spot15_sceneTex_011400[] = dspot15_sceneTex_011400; + +#define dspot15_sceneTex_007300 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_007300" +static const ALIGN_ASSET(2) char spot15_sceneTex_007300[] = dspot15_sceneTex_007300; + +#define dspot15_sceneTex_006F00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_006F00" +static const ALIGN_ASSET(2) char spot15_sceneTex_006F00[] = dspot15_sceneTex_006F00; + +#define dspot15_sceneTex_007B00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_007B00" +static const ALIGN_ASSET(2) char spot15_sceneTex_007B00[] = dspot15_sceneTex_007B00; + +#define dspot15_sceneTex_014400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_014400" +static const ALIGN_ASSET(2) char spot15_sceneTex_014400[] = dspot15_sceneTex_014400; + +#define dspot15_sceneTex_00FC00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00FC00" +static const ALIGN_ASSET(2) char spot15_sceneTex_00FC00[] = dspot15_sceneTex_00FC00; + +#define dspot15_sceneTex_011C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_011C00" +static const ALIGN_ASSET(2) char spot15_sceneTex_011C00[] = dspot15_sceneTex_011C00; + +#define dspot15_sceneTex_014C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_014C00" +static const ALIGN_ASSET(2) char spot15_sceneTex_014C00[] = dspot15_sceneTex_014C00; + +#define dspot15_sceneTex_00DA00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00DA00" +static const ALIGN_ASSET(2) char spot15_sceneTex_00DA00[] = dspot15_sceneTex_00DA00; + +#define dspot15_sceneTex_007C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_007C00" +static const ALIGN_ASSET(2) char spot15_sceneTex_007C00[] = dspot15_sceneTex_007C00; + +#define dspot15_sceneTex_009900 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_009900" +static const ALIGN_ASSET(2) char spot15_sceneTex_009900[] = dspot15_sceneTex_009900; + +#define dspot15_sceneTex_00A900 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00A900" +static const ALIGN_ASSET(2) char spot15_sceneTex_00A900[] = dspot15_sceneTex_00A900; + +#define dspot15_sceneTex_010C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_010C00" +static const ALIGN_ASSET(2) char spot15_sceneTex_010C00[] = dspot15_sceneTex_010C00; + +#define dspot15_sceneTex_016C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_016C00" +static const ALIGN_ASSET(2) char spot15_sceneTex_016C00[] = dspot15_sceneTex_016C00; + +#define dspot15_sceneTex_00A100 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00A100" +static const ALIGN_ASSET(2) char spot15_sceneTex_00A100[] = dspot15_sceneTex_00A100; + +#define dspot15_sceneTex_017400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_017400" +static const ALIGN_ASSET(2) char spot15_sceneTex_017400[] = dspot15_sceneTex_017400; + +#define dspot15_sceneTex_00EC00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00EC00" +static const ALIGN_ASSET(2) char spot15_sceneTex_00EC00[] = dspot15_sceneTex_00EC00; + +#define dspot15_sceneTex_008E00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_008E00" +static const ALIGN_ASSET(2) char spot15_sceneTex_008E00[] = dspot15_sceneTex_008E00; + +#define dspot15_sceneTex_015E00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_015E00" +static const ALIGN_ASSET(2) char spot15_sceneTex_015E00[] = dspot15_sceneTex_015E00; + +#define dspot15_sceneTex_00CA00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00CA00" +static const ALIGN_ASSET(2) char spot15_sceneTex_00CA00[] = dspot15_sceneTex_00CA00; + +#define dspot15_sceneTex_004100 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_004100" +static const ALIGN_ASSET(2) char spot15_sceneTex_004100[] = dspot15_sceneTex_004100; + +#define dspot15_sceneTex_00BA00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00BA00" +static const ALIGN_ASSET(2) char spot15_sceneTex_00BA00[] = dspot15_sceneTex_00BA00; + +#define dspot15_sceneTex_009800 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_009800" +static const ALIGN_ASSET(2) char spot15_sceneTex_009800[] = dspot15_sceneTex_009800; + +#define dspot15_sceneTex_015C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_015C00" +static const ALIGN_ASSET(2) char spot15_sceneTex_015C00[] = dspot15_sceneTex_015C00; + +#define dspot15_sceneTex_018400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_018400" +static const ALIGN_ASSET(2) char spot15_sceneTex_018400[] = dspot15_sceneTex_018400; + +#define dspot15_sceneTex_00B900 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00B900" +static const ALIGN_ASSET(2) char spot15_sceneTex_00B900[] = dspot15_sceneTex_00B900; + +#define dspot15_sceneTex_00C200 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00C200" +static const ALIGN_ASSET(2) char spot15_sceneTex_00C200[] = dspot15_sceneTex_00C200; + +#define dspot15_sceneTex_016600 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_016600" +static const ALIGN_ASSET(2) char spot15_sceneTex_016600[] = dspot15_sceneTex_016600; + +#define dspot15_sceneTex_006D00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_006D00" +static const ALIGN_ASSET(2) char spot15_sceneTex_006D00[] = dspot15_sceneTex_006D00; + +#define dspot15_sceneTex_00EA00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_00EA00" +static const ALIGN_ASSET(2) char spot15_sceneTex_00EA00[] = dspot15_sceneTex_00EA00; + +#define dspot15_sceneTex_012400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_012400" +static const ALIGN_ASSET(2) char spot15_sceneTex_012400[] = dspot15_sceneTex_012400; + +#define dspot15_sceneTex_005400 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_005400" +static const ALIGN_ASSET(2) char spot15_sceneTex_005400[] = dspot15_sceneTex_005400; + +#define dspot15_sceneTex_007E00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_007E00" +static const ALIGN_ASSET(2) char spot15_sceneTex_007E00[] = dspot15_sceneTex_007E00; + +#define dspot15_sceneTex_017C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_017C00" +static const ALIGN_ASSET(2) char spot15_sceneTex_017C00[] = dspot15_sceneTex_017C00; + +#define dspot15_sceneTex_006500 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_006500" +static const ALIGN_ASSET(2) char spot15_sceneTex_006500[] = dspot15_sceneTex_006500; + +#define dspot15_sceneTex_009600 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_009600" +static const ALIGN_ASSET(2) char spot15_sceneTex_009600[] = dspot15_sceneTex_009600; + +#define dspot15_sceneTex_004C00 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_004C00" +static const ALIGN_ASSET(2) char spot15_sceneTex_004C00[] = dspot15_sceneTex_004C00; + +#define dspot15_sceneTex_016800 "__OTR__scenes/nonmq/spot15_scene/spot15_sceneTex_016800" +static const ALIGN_ASSET(2) char spot15_sceneTex_016800[] = dspot15_sceneTex_016800; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot16/spot16_room_0.h b/soh/assets/scenes/overworld/spot16/spot16_room_0.h index ca00d76cc..d0b51d82e 100644 --- a/soh/assets/scenes/overworld/spot16/spot16_room_0.h +++ b/soh/assets/scenes/overworld/spot16/spot16_room_0.h @@ -1,646 +1,279 @@ #pragma once -#define dspot16_room_0DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_002A78[] = dspot16_room_0DL_002A78; -#else -static const char spot16_room_0DL_002A78[] __attribute__((aligned (2))) = dspot16_room_0DL_002A78; -#endif - -#define dspot16_room_0DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00A5A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_00A5A8[] = dspot16_room_0DL_00A5A8; -#else -static const char spot16_room_0DL_00A5A8[] __attribute__((aligned (2))) = dspot16_room_0DL_00A5A8; -#endif - -#define dspot16_room_0DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_004788[] = dspot16_room_0DL_004788; -#else -static const char spot16_room_0DL_004788[] __attribute__((aligned (2))) = dspot16_room_0DL_004788; -#endif - -#define dspot16_room_0DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00A6F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_00A6F8[] = dspot16_room_0DL_00A6F8; -#else -static const char spot16_room_0DL_00A6F8[] __attribute__((aligned (2))) = dspot16_room_0DL_00A6F8; -#endif - -#define dspot16_room_0DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_005B98[] = dspot16_room_0DL_005B98; -#else -static const char spot16_room_0DL_005B98[] __attribute__((aligned (2))) = dspot16_room_0DL_005B98; -#endif - -#define dspot16_room_0DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_009BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_009BD0[] = dspot16_room_0DL_009BD0; -#else -static const char spot16_room_0DL_009BD0[] __attribute__((aligned (2))) = dspot16_room_0DL_009BD0; -#endif - -#define dspot16_room_0DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_007200[] = dspot16_room_0DL_007200; -#else -static const char spot16_room_0DL_007200[] __attribute__((aligned (2))) = dspot16_room_0DL_007200; -#endif - -#define dspot16_room_0DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00A8E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_00A8E8[] = dspot16_room_0DL_00A8E8; -#else -static const char spot16_room_0DL_00A8E8[] __attribute__((aligned (2))) = dspot16_room_0DL_00A8E8; -#endif - -#define dspot16_room_0DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_0060E0[] = dspot16_room_0DL_0060E0; -#else -static const char spot16_room_0DL_0060E0[] __attribute__((aligned (2))) = dspot16_room_0DL_0060E0; -#endif - -#define dspot16_room_0DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00A240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_00A240[] = dspot16_room_0DL_00A240; -#else -static const char spot16_room_0DL_00A240[] __attribute__((aligned (2))) = dspot16_room_0DL_00A240; -#endif - -#define dspot16_room_0DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00ABC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_00ABC8[] = dspot16_room_0DL_00ABC8; -#else -static const char spot16_room_0DL_00ABC8[] __attribute__((aligned (2))) = dspot16_room_0DL_00ABC8; -#endif - -#define dspot16_room_0DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_0066D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_0066D0[] = dspot16_room_0DL_0066D0; -#else -static const char spot16_room_0DL_0066D0[] __attribute__((aligned (2))) = dspot16_room_0DL_0066D0; -#endif - -#define dspot16_room_0DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_007C78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_007C78[] = dspot16_room_0DL_007C78; -#else -static const char spot16_room_0DL_007C78[] __attribute__((aligned (2))) = dspot16_room_0DL_007C78; -#endif - -#define dspot16_room_0DL_00AA48 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00AA48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0DL_00AA48[] = dspot16_room_0DL_00AA48; -#else -static const char spot16_room_0DL_00AA48[] __attribute__((aligned (2))) = dspot16_room_0DL_00AA48; -#endif - -#define dspot16_room_0Set_000470DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_002A78[] = dspot16_room_0Set_000470DL_002A78; -#else -static const char spot16_room_0Set_000470DL_002A78[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_002A78; -#endif - -#define dspot16_room_0Set_000470DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00A5A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_00A5A8[] = dspot16_room_0Set_000470DL_00A5A8; -#else -static const char spot16_room_0Set_000470DL_00A5A8[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_00A5A8; -#endif - -#define dspot16_room_0Set_000470DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_004788[] = dspot16_room_0Set_000470DL_004788; -#else -static const char spot16_room_0Set_000470DL_004788[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_004788; -#endif - -#define dspot16_room_0Set_000470DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00A6F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_00A6F8[] = dspot16_room_0Set_000470DL_00A6F8; -#else -static const char spot16_room_0Set_000470DL_00A6F8[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_00A6F8; -#endif - -#define dspot16_room_0Set_000470DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_005B98[] = dspot16_room_0Set_000470DL_005B98; -#else -static const char spot16_room_0Set_000470DL_005B98[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_005B98; -#endif - -#define dspot16_room_0Set_000470DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_009BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_009BD0[] = dspot16_room_0Set_000470DL_009BD0; -#else -static const char spot16_room_0Set_000470DL_009BD0[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_009BD0; -#endif - -#define dspot16_room_0Set_000470DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_007200[] = dspot16_room_0Set_000470DL_007200; -#else -static const char spot16_room_0Set_000470DL_007200[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_007200; -#endif - -#define dspot16_room_0Set_000470DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00A8E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_00A8E8[] = dspot16_room_0Set_000470DL_00A8E8; -#else -static const char spot16_room_0Set_000470DL_00A8E8[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_00A8E8; -#endif - -#define dspot16_room_0Set_000470DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_0060E0[] = dspot16_room_0Set_000470DL_0060E0; -#else -static const char spot16_room_0Set_000470DL_0060E0[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_0060E0; -#endif - -#define dspot16_room_0Set_000470DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00A240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_00A240[] = dspot16_room_0Set_000470DL_00A240; -#else -static const char spot16_room_0Set_000470DL_00A240[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_00A240; -#endif - -#define dspot16_room_0Set_000470DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00ABC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_00ABC8[] = dspot16_room_0Set_000470DL_00ABC8; -#else -static const char spot16_room_0Set_000470DL_00ABC8[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_00ABC8; -#endif - -#define dspot16_room_0Set_000470DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_0066D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_0066D0[] = dspot16_room_0Set_000470DL_0066D0; -#else -static const char spot16_room_0Set_000470DL_0066D0[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_0066D0; -#endif - -#define dspot16_room_0Set_000470DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_007C78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000470DL_007C78[] = dspot16_room_0Set_000470DL_007C78; -#else -static const char spot16_room_0Set_000470DL_007C78[] __attribute__((aligned (2))) = dspot16_room_0Set_000470DL_007C78; -#endif - -#define dspot16_room_0Set_000940DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_002A78[] = dspot16_room_0Set_000940DL_002A78; -#else -static const char spot16_room_0Set_000940DL_002A78[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_002A78; -#endif - -#define dspot16_room_0Set_000940DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00A5A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_00A5A8[] = dspot16_room_0Set_000940DL_00A5A8; -#else -static const char spot16_room_0Set_000940DL_00A5A8[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_00A5A8; -#endif - -#define dspot16_room_0Set_000940DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_004788[] = dspot16_room_0Set_000940DL_004788; -#else -static const char spot16_room_0Set_000940DL_004788[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_004788; -#endif - -#define dspot16_room_0Set_000940DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00A6F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_00A6F8[] = dspot16_room_0Set_000940DL_00A6F8; -#else -static const char spot16_room_0Set_000940DL_00A6F8[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_00A6F8; -#endif - -#define dspot16_room_0Set_000940DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_005B98[] = dspot16_room_0Set_000940DL_005B98; -#else -static const char spot16_room_0Set_000940DL_005B98[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_005B98; -#endif - -#define dspot16_room_0Set_000940DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_009BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_009BD0[] = dspot16_room_0Set_000940DL_009BD0; -#else -static const char spot16_room_0Set_000940DL_009BD0[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_009BD0; -#endif - -#define dspot16_room_0Set_000940DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_007200[] = dspot16_room_0Set_000940DL_007200; -#else -static const char spot16_room_0Set_000940DL_007200[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_007200; -#endif - -#define dspot16_room_0Set_000940DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00A8E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_00A8E8[] = dspot16_room_0Set_000940DL_00A8E8; -#else -static const char spot16_room_0Set_000940DL_00A8E8[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_00A8E8; -#endif - -#define dspot16_room_0Set_000940DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_0060E0[] = dspot16_room_0Set_000940DL_0060E0; -#else -static const char spot16_room_0Set_000940DL_0060E0[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_0060E0; -#endif - -#define dspot16_room_0Set_000940DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00A240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_00A240[] = dspot16_room_0Set_000940DL_00A240; -#else -static const char spot16_room_0Set_000940DL_00A240[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_00A240; -#endif - -#define dspot16_room_0Set_000940DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00ABC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_00ABC8[] = dspot16_room_0Set_000940DL_00ABC8; -#else -static const char spot16_room_0Set_000940DL_00ABC8[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_00ABC8; -#endif - -#define dspot16_room_0Set_000940DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_0066D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_0066D0[] = dspot16_room_0Set_000940DL_0066D0; -#else -static const char spot16_room_0Set_000940DL_0066D0[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_0066D0; -#endif - -#define dspot16_room_0Set_000940DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_007C78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000940DL_007C78[] = dspot16_room_0Set_000940DL_007C78; -#else -static const char spot16_room_0Set_000940DL_007C78[] __attribute__((aligned (2))) = dspot16_room_0Set_000940DL_007C78; -#endif - -#define dspot16_room_0Set_0009B0DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_002A78[] = dspot16_room_0Set_0009B0DL_002A78; -#else -static const char spot16_room_0Set_0009B0DL_002A78[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_002A78; -#endif - -#define dspot16_room_0Set_0009B0DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00A5A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_00A5A8[] = dspot16_room_0Set_0009B0DL_00A5A8; -#else -static const char spot16_room_0Set_0009B0DL_00A5A8[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_00A5A8; -#endif - -#define dspot16_room_0Set_0009B0DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_004788[] = dspot16_room_0Set_0009B0DL_004788; -#else -static const char spot16_room_0Set_0009B0DL_004788[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_004788; -#endif - -#define dspot16_room_0Set_0009B0DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00A6F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_00A6F8[] = dspot16_room_0Set_0009B0DL_00A6F8; -#else -static const char spot16_room_0Set_0009B0DL_00A6F8[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_00A6F8; -#endif - -#define dspot16_room_0Set_0009B0DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_005B98[] = dspot16_room_0Set_0009B0DL_005B98; -#else -static const char spot16_room_0Set_0009B0DL_005B98[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_005B98; -#endif - -#define dspot16_room_0Set_0009B0DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_009BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_009BD0[] = dspot16_room_0Set_0009B0DL_009BD0; -#else -static const char spot16_room_0Set_0009B0DL_009BD0[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_009BD0; -#endif - -#define dspot16_room_0Set_0009B0DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_007200[] = dspot16_room_0Set_0009B0DL_007200; -#else -static const char spot16_room_0Set_0009B0DL_007200[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_007200; -#endif - -#define dspot16_room_0Set_0009B0DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00A8E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_00A8E8[] = dspot16_room_0Set_0009B0DL_00A8E8; -#else -static const char spot16_room_0Set_0009B0DL_00A8E8[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_00A8E8; -#endif - -#define dspot16_room_0Set_0009B0DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_0060E0[] = dspot16_room_0Set_0009B0DL_0060E0; -#else -static const char spot16_room_0Set_0009B0DL_0060E0[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_0060E0; -#endif - -#define dspot16_room_0Set_0009B0DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00A240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_00A240[] = dspot16_room_0Set_0009B0DL_00A240; -#else -static const char spot16_room_0Set_0009B0DL_00A240[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_00A240; -#endif - -#define dspot16_room_0Set_0009B0DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00ABC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_00ABC8[] = dspot16_room_0Set_0009B0DL_00ABC8; -#else -static const char spot16_room_0Set_0009B0DL_00ABC8[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_00ABC8; -#endif - -#define dspot16_room_0Set_0009B0DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_0066D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_0066D0[] = dspot16_room_0Set_0009B0DL_0066D0; -#else -static const char spot16_room_0Set_0009B0DL_0066D0[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_0066D0; -#endif - -#define dspot16_room_0Set_0009B0DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_007C78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_0009B0DL_007C78[] = dspot16_room_0Set_0009B0DL_007C78; -#else -static const char spot16_room_0Set_0009B0DL_007C78[] __attribute__((aligned (2))) = dspot16_room_0Set_0009B0DL_007C78; -#endif - -#define dspot16_room_0Set_000A90DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_002A78[] = dspot16_room_0Set_000A90DL_002A78; -#else -static const char spot16_room_0Set_000A90DL_002A78[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_002A78; -#endif - -#define dspot16_room_0Set_000A90DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00A5A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_00A5A8[] = dspot16_room_0Set_000A90DL_00A5A8; -#else -static const char spot16_room_0Set_000A90DL_00A5A8[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_00A5A8; -#endif - -#define dspot16_room_0Set_000A90DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_004788[] = dspot16_room_0Set_000A90DL_004788; -#else -static const char spot16_room_0Set_000A90DL_004788[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_004788; -#endif - -#define dspot16_room_0Set_000A90DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00A6F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_00A6F8[] = dspot16_room_0Set_000A90DL_00A6F8; -#else -static const char spot16_room_0Set_000A90DL_00A6F8[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_00A6F8; -#endif - -#define dspot16_room_0Set_000A90DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_005B98[] = dspot16_room_0Set_000A90DL_005B98; -#else -static const char spot16_room_0Set_000A90DL_005B98[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_005B98; -#endif - -#define dspot16_room_0Set_000A90DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_009BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_009BD0[] = dspot16_room_0Set_000A90DL_009BD0; -#else -static const char spot16_room_0Set_000A90DL_009BD0[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_009BD0; -#endif - -#define dspot16_room_0Set_000A90DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_007200[] = dspot16_room_0Set_000A90DL_007200; -#else -static const char spot16_room_0Set_000A90DL_007200[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_007200; -#endif - -#define dspot16_room_0Set_000A90DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00A8E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_00A8E8[] = dspot16_room_0Set_000A90DL_00A8E8; -#else -static const char spot16_room_0Set_000A90DL_00A8E8[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_00A8E8; -#endif - -#define dspot16_room_0Set_000A90DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_0060E0[] = dspot16_room_0Set_000A90DL_0060E0; -#else -static const char spot16_room_0Set_000A90DL_0060E0[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_0060E0; -#endif - -#define dspot16_room_0Set_000A90DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00A240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_00A240[] = dspot16_room_0Set_000A90DL_00A240; -#else -static const char spot16_room_0Set_000A90DL_00A240[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_00A240; -#endif - -#define dspot16_room_0Set_000A90DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00ABC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_00ABC8[] = dspot16_room_0Set_000A90DL_00ABC8; -#else -static const char spot16_room_0Set_000A90DL_00ABC8[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_00ABC8; -#endif - -#define dspot16_room_0Set_000A90DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_0066D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_0066D0[] = dspot16_room_0Set_000A90DL_0066D0; -#else -static const char spot16_room_0Set_000A90DL_0066D0[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_0066D0; -#endif - -#define dspot16_room_0Set_000A90DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_007C78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000A90DL_007C78[] = dspot16_room_0Set_000A90DL_007C78; -#else -static const char spot16_room_0Set_000A90DL_007C78[] __attribute__((aligned (2))) = dspot16_room_0Set_000A90DL_007C78; -#endif - -#define dspot16_room_0Set_000B70DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_002A78[] = dspot16_room_0Set_000B70DL_002A78; -#else -static const char spot16_room_0Set_000B70DL_002A78[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_002A78; -#endif - -#define dspot16_room_0Set_000B70DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00A5A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_00A5A8[] = dspot16_room_0Set_000B70DL_00A5A8; -#else -static const char spot16_room_0Set_000B70DL_00A5A8[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_00A5A8; -#endif - -#define dspot16_room_0Set_000B70DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_004788[] = dspot16_room_0Set_000B70DL_004788; -#else -static const char spot16_room_0Set_000B70DL_004788[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_004788; -#endif - -#define dspot16_room_0Set_000B70DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00A6F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_00A6F8[] = dspot16_room_0Set_000B70DL_00A6F8; -#else -static const char spot16_room_0Set_000B70DL_00A6F8[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_00A6F8; -#endif - -#define dspot16_room_0Set_000B70DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_005B98[] = dspot16_room_0Set_000B70DL_005B98; -#else -static const char spot16_room_0Set_000B70DL_005B98[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_005B98; -#endif - -#define dspot16_room_0Set_000B70DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_009BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_009BD0[] = dspot16_room_0Set_000B70DL_009BD0; -#else -static const char spot16_room_0Set_000B70DL_009BD0[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_009BD0; -#endif - -#define dspot16_room_0Set_000B70DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_007200[] = dspot16_room_0Set_000B70DL_007200; -#else -static const char spot16_room_0Set_000B70DL_007200[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_007200; -#endif - -#define dspot16_room_0Set_000B70DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00A8E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_00A8E8[] = dspot16_room_0Set_000B70DL_00A8E8; -#else -static const char spot16_room_0Set_000B70DL_00A8E8[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_00A8E8; -#endif - -#define dspot16_room_0Set_000B70DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_0060E0[] = dspot16_room_0Set_000B70DL_0060E0; -#else -static const char spot16_room_0Set_000B70DL_0060E0[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_0060E0; -#endif - -#define dspot16_room_0Set_000B70DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00A240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_00A240[] = dspot16_room_0Set_000B70DL_00A240; -#else -static const char spot16_room_0Set_000B70DL_00A240[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_00A240; -#endif - -#define dspot16_room_0Set_000B70DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00ABC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_00ABC8[] = dspot16_room_0Set_000B70DL_00ABC8; -#else -static const char spot16_room_0Set_000B70DL_00ABC8[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_00ABC8; -#endif - -#define dspot16_room_0Set_000B70DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_0066D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_0066D0[] = dspot16_room_0Set_000B70DL_0066D0; -#else -static const char spot16_room_0Set_000B70DL_0066D0[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_0066D0; -#endif - -#define dspot16_room_0Set_000B70DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_007C78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000B70DL_007C78[] = dspot16_room_0Set_000B70DL_007C78; -#else -static const char spot16_room_0Set_000B70DL_007C78[] __attribute__((aligned (2))) = dspot16_room_0Set_000B70DL_007C78; -#endif - -#define dspot16_room_0Set_000C00DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_002A78[] = dspot16_room_0Set_000C00DL_002A78; -#else -static const char spot16_room_0Set_000C00DL_002A78[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_002A78; -#endif - -#define dspot16_room_0Set_000C00DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00A5A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_00A5A8[] = dspot16_room_0Set_000C00DL_00A5A8; -#else -static const char spot16_room_0Set_000C00DL_00A5A8[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_00A5A8; -#endif - -#define dspot16_room_0Set_000C00DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_004788" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_004788[] = dspot16_room_0Set_000C00DL_004788; -#else -static const char spot16_room_0Set_000C00DL_004788[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_004788; -#endif - -#define dspot16_room_0Set_000C00DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00A6F8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_00A6F8[] = dspot16_room_0Set_000C00DL_00A6F8; -#else -static const char spot16_room_0Set_000C00DL_00A6F8[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_00A6F8; -#endif - -#define dspot16_room_0Set_000C00DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_005B98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_005B98[] = dspot16_room_0Set_000C00DL_005B98; -#else -static const char spot16_room_0Set_000C00DL_005B98[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_005B98; -#endif - -#define dspot16_room_0Set_000C00DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_009BD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_009BD0[] = dspot16_room_0Set_000C00DL_009BD0; -#else -static const char spot16_room_0Set_000C00DL_009BD0[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_009BD0; -#endif - -#define dspot16_room_0Set_000C00DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_007200" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_007200[] = dspot16_room_0Set_000C00DL_007200; -#else -static const char spot16_room_0Set_000C00DL_007200[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_007200; -#endif - -#define dspot16_room_0Set_000C00DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00A8E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_00A8E8[] = dspot16_room_0Set_000C00DL_00A8E8; -#else -static const char spot16_room_0Set_000C00DL_00A8E8[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_00A8E8; -#endif - -#define dspot16_room_0Set_000C00DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_0060E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_0060E0[] = dspot16_room_0Set_000C00DL_0060E0; -#else -static const char spot16_room_0Set_000C00DL_0060E0[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_0060E0; -#endif - -#define dspot16_room_0Set_000C00DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00A240" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_00A240[] = dspot16_room_0Set_000C00DL_00A240; -#else -static const char spot16_room_0Set_000C00DL_00A240[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_00A240; -#endif - -#define dspot16_room_0Set_000C00DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00ABC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_00ABC8[] = dspot16_room_0Set_000C00DL_00ABC8; -#else -static const char spot16_room_0Set_000C00DL_00ABC8[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_00ABC8; -#endif - -#define dspot16_room_0Set_000C00DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_0066D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_0066D0[] = dspot16_room_0Set_000C00DL_0066D0; -#else -static const char spot16_room_0Set_000C00DL_0066D0[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_0066D0; -#endif - -#define dspot16_room_0Set_000C00DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_007C78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_room_0Set_000C00DL_007C78[] = dspot16_room_0Set_000C00DL_007C78; -#else -static const char spot16_room_0Set_000C00DL_007C78[] __attribute__((aligned (2))) = dspot16_room_0Set_000C00DL_007C78; -#endif - +#include "align_asset_macro.h" + +#define dspot16_room_0DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_002A78" +static const ALIGN_ASSET(2) char spot16_room_0DL_002A78[] = dspot16_room_0DL_002A78; + +#define dspot16_room_0DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00A5A8" +static const ALIGN_ASSET(2) char spot16_room_0DL_00A5A8[] = dspot16_room_0DL_00A5A8; + +#define dspot16_room_0DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_004788" +static const ALIGN_ASSET(2) char spot16_room_0DL_004788[] = dspot16_room_0DL_004788; + +#define dspot16_room_0DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00A6F8" +static const ALIGN_ASSET(2) char spot16_room_0DL_00A6F8[] = dspot16_room_0DL_00A6F8; + +#define dspot16_room_0DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_005B98" +static const ALIGN_ASSET(2) char spot16_room_0DL_005B98[] = dspot16_room_0DL_005B98; + +#define dspot16_room_0DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_009BD0" +static const ALIGN_ASSET(2) char spot16_room_0DL_009BD0[] = dspot16_room_0DL_009BD0; + +#define dspot16_room_0DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_007200" +static const ALIGN_ASSET(2) char spot16_room_0DL_007200[] = dspot16_room_0DL_007200; + +#define dspot16_room_0DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00A8E8" +static const ALIGN_ASSET(2) char spot16_room_0DL_00A8E8[] = dspot16_room_0DL_00A8E8; + +#define dspot16_room_0DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_0060E0" +static const ALIGN_ASSET(2) char spot16_room_0DL_0060E0[] = dspot16_room_0DL_0060E0; + +#define dspot16_room_0DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00A240" +static const ALIGN_ASSET(2) char spot16_room_0DL_00A240[] = dspot16_room_0DL_00A240; + +#define dspot16_room_0DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00ABC8" +static const ALIGN_ASSET(2) char spot16_room_0DL_00ABC8[] = dspot16_room_0DL_00ABC8; + +#define dspot16_room_0DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_0066D0" +static const ALIGN_ASSET(2) char spot16_room_0DL_0066D0[] = dspot16_room_0DL_0066D0; + +#define dspot16_room_0DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_007C78" +static const ALIGN_ASSET(2) char spot16_room_0DL_007C78[] = dspot16_room_0DL_007C78; + +#define dspot16_room_0DL_00AA48 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0DL_00AA48" +static const ALIGN_ASSET(2) char spot16_room_0DL_00AA48[] = dspot16_room_0DL_00AA48; + +#define dspot16_room_0Set_000470DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_002A78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_002A78[] = dspot16_room_0Set_000470DL_002A78; + +#define dspot16_room_0Set_000470DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00A5A8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_00A5A8[] = dspot16_room_0Set_000470DL_00A5A8; + +#define dspot16_room_0Set_000470DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_004788" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_004788[] = dspot16_room_0Set_000470DL_004788; + +#define dspot16_room_0Set_000470DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00A6F8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_00A6F8[] = dspot16_room_0Set_000470DL_00A6F8; + +#define dspot16_room_0Set_000470DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_005B98" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_005B98[] = dspot16_room_0Set_000470DL_005B98; + +#define dspot16_room_0Set_000470DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_009BD0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_009BD0[] = dspot16_room_0Set_000470DL_009BD0; + +#define dspot16_room_0Set_000470DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_007200" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_007200[] = dspot16_room_0Set_000470DL_007200; + +#define dspot16_room_0Set_000470DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00A8E8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_00A8E8[] = dspot16_room_0Set_000470DL_00A8E8; + +#define dspot16_room_0Set_000470DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_0060E0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_0060E0[] = dspot16_room_0Set_000470DL_0060E0; + +#define dspot16_room_0Set_000470DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00A240" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_00A240[] = dspot16_room_0Set_000470DL_00A240; + +#define dspot16_room_0Set_000470DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_00ABC8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_00ABC8[] = dspot16_room_0Set_000470DL_00ABC8; + +#define dspot16_room_0Set_000470DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_0066D0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_0066D0[] = dspot16_room_0Set_000470DL_0066D0; + +#define dspot16_room_0Set_000470DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000470DL_007C78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000470DL_007C78[] = dspot16_room_0Set_000470DL_007C78; + +#define dspot16_room_0Set_000940DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_002A78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_002A78[] = dspot16_room_0Set_000940DL_002A78; + +#define dspot16_room_0Set_000940DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00A5A8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_00A5A8[] = dspot16_room_0Set_000940DL_00A5A8; + +#define dspot16_room_0Set_000940DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_004788" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_004788[] = dspot16_room_0Set_000940DL_004788; + +#define dspot16_room_0Set_000940DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00A6F8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_00A6F8[] = dspot16_room_0Set_000940DL_00A6F8; + +#define dspot16_room_0Set_000940DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_005B98" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_005B98[] = dspot16_room_0Set_000940DL_005B98; + +#define dspot16_room_0Set_000940DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_009BD0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_009BD0[] = dspot16_room_0Set_000940DL_009BD0; + +#define dspot16_room_0Set_000940DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_007200" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_007200[] = dspot16_room_0Set_000940DL_007200; + +#define dspot16_room_0Set_000940DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00A8E8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_00A8E8[] = dspot16_room_0Set_000940DL_00A8E8; + +#define dspot16_room_0Set_000940DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_0060E0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_0060E0[] = dspot16_room_0Set_000940DL_0060E0; + +#define dspot16_room_0Set_000940DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00A240" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_00A240[] = dspot16_room_0Set_000940DL_00A240; + +#define dspot16_room_0Set_000940DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_00ABC8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_00ABC8[] = dspot16_room_0Set_000940DL_00ABC8; + +#define dspot16_room_0Set_000940DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_0066D0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_0066D0[] = dspot16_room_0Set_000940DL_0066D0; + +#define dspot16_room_0Set_000940DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000940DL_007C78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000940DL_007C78[] = dspot16_room_0Set_000940DL_007C78; + +#define dspot16_room_0Set_0009B0DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_002A78" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_002A78[] = dspot16_room_0Set_0009B0DL_002A78; + +#define dspot16_room_0Set_0009B0DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00A5A8" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_00A5A8[] = dspot16_room_0Set_0009B0DL_00A5A8; + +#define dspot16_room_0Set_0009B0DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_004788" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_004788[] = dspot16_room_0Set_0009B0DL_004788; + +#define dspot16_room_0Set_0009B0DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00A6F8" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_00A6F8[] = dspot16_room_0Set_0009B0DL_00A6F8; + +#define dspot16_room_0Set_0009B0DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_005B98" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_005B98[] = dspot16_room_0Set_0009B0DL_005B98; + +#define dspot16_room_0Set_0009B0DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_009BD0" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_009BD0[] = dspot16_room_0Set_0009B0DL_009BD0; + +#define dspot16_room_0Set_0009B0DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_007200" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_007200[] = dspot16_room_0Set_0009B0DL_007200; + +#define dspot16_room_0Set_0009B0DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00A8E8" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_00A8E8[] = dspot16_room_0Set_0009B0DL_00A8E8; + +#define dspot16_room_0Set_0009B0DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_0060E0" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_0060E0[] = dspot16_room_0Set_0009B0DL_0060E0; + +#define dspot16_room_0Set_0009B0DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00A240" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_00A240[] = dspot16_room_0Set_0009B0DL_00A240; + +#define dspot16_room_0Set_0009B0DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_00ABC8" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_00ABC8[] = dspot16_room_0Set_0009B0DL_00ABC8; + +#define dspot16_room_0Set_0009B0DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_0066D0" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_0066D0[] = dspot16_room_0Set_0009B0DL_0066D0; + +#define dspot16_room_0Set_0009B0DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_0009B0DL_007C78" +static const ALIGN_ASSET(2) char spot16_room_0Set_0009B0DL_007C78[] = dspot16_room_0Set_0009B0DL_007C78; + +#define dspot16_room_0Set_000A90DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_002A78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_002A78[] = dspot16_room_0Set_000A90DL_002A78; + +#define dspot16_room_0Set_000A90DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00A5A8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_00A5A8[] = dspot16_room_0Set_000A90DL_00A5A8; + +#define dspot16_room_0Set_000A90DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_004788" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_004788[] = dspot16_room_0Set_000A90DL_004788; + +#define dspot16_room_0Set_000A90DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00A6F8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_00A6F8[] = dspot16_room_0Set_000A90DL_00A6F8; + +#define dspot16_room_0Set_000A90DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_005B98" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_005B98[] = dspot16_room_0Set_000A90DL_005B98; + +#define dspot16_room_0Set_000A90DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_009BD0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_009BD0[] = dspot16_room_0Set_000A90DL_009BD0; + +#define dspot16_room_0Set_000A90DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_007200" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_007200[] = dspot16_room_0Set_000A90DL_007200; + +#define dspot16_room_0Set_000A90DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00A8E8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_00A8E8[] = dspot16_room_0Set_000A90DL_00A8E8; + +#define dspot16_room_0Set_000A90DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_0060E0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_0060E0[] = dspot16_room_0Set_000A90DL_0060E0; + +#define dspot16_room_0Set_000A90DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00A240" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_00A240[] = dspot16_room_0Set_000A90DL_00A240; + +#define dspot16_room_0Set_000A90DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_00ABC8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_00ABC8[] = dspot16_room_0Set_000A90DL_00ABC8; + +#define dspot16_room_0Set_000A90DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_0066D0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_0066D0[] = dspot16_room_0Set_000A90DL_0066D0; + +#define dspot16_room_0Set_000A90DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000A90DL_007C78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000A90DL_007C78[] = dspot16_room_0Set_000A90DL_007C78; + +#define dspot16_room_0Set_000B70DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_002A78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_002A78[] = dspot16_room_0Set_000B70DL_002A78; + +#define dspot16_room_0Set_000B70DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00A5A8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_00A5A8[] = dspot16_room_0Set_000B70DL_00A5A8; + +#define dspot16_room_0Set_000B70DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_004788" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_004788[] = dspot16_room_0Set_000B70DL_004788; + +#define dspot16_room_0Set_000B70DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00A6F8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_00A6F8[] = dspot16_room_0Set_000B70DL_00A6F8; + +#define dspot16_room_0Set_000B70DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_005B98" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_005B98[] = dspot16_room_0Set_000B70DL_005B98; + +#define dspot16_room_0Set_000B70DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_009BD0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_009BD0[] = dspot16_room_0Set_000B70DL_009BD0; + +#define dspot16_room_0Set_000B70DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_007200" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_007200[] = dspot16_room_0Set_000B70DL_007200; + +#define dspot16_room_0Set_000B70DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00A8E8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_00A8E8[] = dspot16_room_0Set_000B70DL_00A8E8; + +#define dspot16_room_0Set_000B70DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_0060E0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_0060E0[] = dspot16_room_0Set_000B70DL_0060E0; + +#define dspot16_room_0Set_000B70DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00A240" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_00A240[] = dspot16_room_0Set_000B70DL_00A240; + +#define dspot16_room_0Set_000B70DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_00ABC8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_00ABC8[] = dspot16_room_0Set_000B70DL_00ABC8; + +#define dspot16_room_0Set_000B70DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_0066D0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_0066D0[] = dspot16_room_0Set_000B70DL_0066D0; + +#define dspot16_room_0Set_000B70DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000B70DL_007C78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000B70DL_007C78[] = dspot16_room_0Set_000B70DL_007C78; + +#define dspot16_room_0Set_000C00DL_002A78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_002A78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_002A78[] = dspot16_room_0Set_000C00DL_002A78; + +#define dspot16_room_0Set_000C00DL_00A5A8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00A5A8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_00A5A8[] = dspot16_room_0Set_000C00DL_00A5A8; + +#define dspot16_room_0Set_000C00DL_004788 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_004788" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_004788[] = dspot16_room_0Set_000C00DL_004788; + +#define dspot16_room_0Set_000C00DL_00A6F8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00A6F8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_00A6F8[] = dspot16_room_0Set_000C00DL_00A6F8; + +#define dspot16_room_0Set_000C00DL_005B98 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_005B98" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_005B98[] = dspot16_room_0Set_000C00DL_005B98; + +#define dspot16_room_0Set_000C00DL_009BD0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_009BD0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_009BD0[] = dspot16_room_0Set_000C00DL_009BD0; + +#define dspot16_room_0Set_000C00DL_007200 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_007200" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_007200[] = dspot16_room_0Set_000C00DL_007200; + +#define dspot16_room_0Set_000C00DL_00A8E8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00A8E8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_00A8E8[] = dspot16_room_0Set_000C00DL_00A8E8; + +#define dspot16_room_0Set_000C00DL_0060E0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_0060E0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_0060E0[] = dspot16_room_0Set_000C00DL_0060E0; + +#define dspot16_room_0Set_000C00DL_00A240 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00A240" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_00A240[] = dspot16_room_0Set_000C00DL_00A240; + +#define dspot16_room_0Set_000C00DL_00ABC8 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_00ABC8" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_00ABC8[] = dspot16_room_0Set_000C00DL_00ABC8; + +#define dspot16_room_0Set_000C00DL_0066D0 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_0066D0" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_0066D0[] = dspot16_room_0Set_000C00DL_0066D0; + +#define dspot16_room_0Set_000C00DL_007C78 "__OTR__scenes/nonmq/spot16_scene/spot16_room_0Set_000C00DL_007C78" +static const ALIGN_ASSET(2) char spot16_room_0Set_000C00DL_007C78[] = dspot16_room_0Set_000C00DL_007C78; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot16/spot16_scene.h b/soh/assets/scenes/overworld/spot16/spot16_scene.h index a6d03373f..9ec3c71e8 100644 --- a/soh/assets/scenes/overworld/spot16/spot16_scene.h +++ b/soh/assets/scenes/overworld/spot16/spot16_scene.h @@ -1,288 +1,135 @@ #pragma once + +#include "align_asset_macro.h" + #define dgDMTOwlCs "__OTR__scenes/nonmq/spot16_scene/gDMTOwlCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gDMTOwlCs[] = dgDMTOwlCs; -#else -static const char gDMTOwlCs[] __attribute__((aligned (2))) = dgDMTOwlCs; -#endif - +static const ALIGN_ASSET(2) char gDMTOwlCs[] = dgDMTOwlCs; + #define dgDMTIntroCs "__OTR__scenes/nonmq/spot16_scene/gDMTIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gDMTIntroCs[] = dgDMTIntroCs; -#else -static const char gDMTIntroCs[] __attribute__((aligned (2))) = dgDMTIntroCs; -#endif - +static const ALIGN_ASSET(2) char gDMTIntroCs[] = dgDMTIntroCs; + #define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneCollisionHeader_003D10[] = dspot16_sceneCollisionHeader_003D10; -#else -static const char spot16_sceneCollisionHeader_003D10[] __attribute__((aligned (2))) = dspot16_sceneCollisionHeader_003D10; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneCollisionHeader_003D10[] = dspot16_sceneCollisionHeader_003D10; + #define dspot16_scene_Tex_01AE98 "__OTR__scenes/nonmq/spot16_scene/spot16_scene_Tex_01AE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_scene_Tex_01AE98[] = dspot16_scene_Tex_01AE98; -#else -static const char spot16_scene_Tex_01AE98[] __attribute__((aligned (2))) = dspot16_scene_Tex_01AE98; -#endif - +static const ALIGN_ASSET(2) char spot16_scene_Tex_01AE98[] = dspot16_scene_Tex_01AE98; + #define dspot16_sceneTex_019698 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_019698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_019698[] = dspot16_sceneTex_019698; -#else -static const char spot16_sceneTex_019698[] __attribute__((aligned (2))) = dspot16_sceneTex_019698; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_019698[] = dspot16_sceneTex_019698; + #define dspot16_sceneTex_00CD98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00CD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00CD98[] = dspot16_sceneTex_00CD98; -#else -static const char spot16_sceneTex_00CD98[] __attribute__((aligned (2))) = dspot16_sceneTex_00CD98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00CD98[] = dspot16_sceneTex_00CD98; + #define dspot16_sceneTex_015598 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_015598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_015598[] = dspot16_sceneTex_015598; -#else -static const char spot16_sceneTex_015598[] __attribute__((aligned (2))) = dspot16_sceneTex_015598; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_015598[] = dspot16_sceneTex_015598; + #define dspot16_sceneTex_016E98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_016E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_016E98[] = dspot16_sceneTex_016E98; -#else -static const char spot16_sceneTex_016E98[] __attribute__((aligned (2))) = dspot16_sceneTex_016E98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_016E98[] = dspot16_sceneTex_016E98; + #define dspot16_sceneTex_008198 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_008198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_008198[] = dspot16_sceneTex_008198; -#else -static const char spot16_sceneTex_008198[] __attribute__((aligned (2))) = dspot16_sceneTex_008198; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_008198[] = dspot16_sceneTex_008198; + #define dspot16_sceneTex_00AD98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00AD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00AD98[] = dspot16_sceneTex_00AD98; -#else -static const char spot16_sceneTex_00AD98[] __attribute__((aligned (2))) = dspot16_sceneTex_00AD98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00AD98[] = dspot16_sceneTex_00AD98; + #define dspot16_sceneTex_009D98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_009D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_009D98[] = dspot16_sceneTex_009D98; -#else -static const char spot16_sceneTex_009D98[] __attribute__((aligned (2))) = dspot16_sceneTex_009D98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_009D98[] = dspot16_sceneTex_009D98; + #define dspot16_sceneTex_00BD98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00BD98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00BD98[] = dspot16_sceneTex_00BD98; -#else -static const char spot16_sceneTex_00BD98[] __attribute__((aligned (2))) = dspot16_sceneTex_00BD98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00BD98[] = dspot16_sceneTex_00BD98; + #define dspot16_sceneTex_015D98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_015D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_015D98[] = dspot16_sceneTex_015D98; -#else -static const char spot16_sceneTex_015D98[] __attribute__((aligned (2))) = dspot16_sceneTex_015D98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_015D98[] = dspot16_sceneTex_015D98; + #define dspot16_sceneTex_01D698 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_01D698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_01D698[] = dspot16_sceneTex_01D698; -#else -static const char spot16_sceneTex_01D698[] __attribute__((aligned (2))) = dspot16_sceneTex_01D698; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_01D698[] = dspot16_sceneTex_01D698; + #define dspot16_sceneTex_009198 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_009198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_009198[] = dspot16_sceneTex_009198; -#else -static const char spot16_sceneTex_009198[] __attribute__((aligned (2))) = dspot16_sceneTex_009198; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_009198[] = dspot16_sceneTex_009198; + #define dspot16_sceneTex_009998 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_009998" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_009998[] = dspot16_sceneTex_009998; -#else -static const char spot16_sceneTex_009998[] __attribute__((aligned (2))) = dspot16_sceneTex_009998; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_009998[] = dspot16_sceneTex_009998; + #define dspot16_sceneTex_01DE98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_01DE98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_01DE98[] = dspot16_sceneTex_01DE98; -#else -static const char spot16_sceneTex_01DE98[] __attribute__((aligned (2))) = dspot16_sceneTex_01DE98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_01DE98[] = dspot16_sceneTex_01DE98; + #define dspot16_sceneTex_018E98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_018E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_018E98[] = dspot16_sceneTex_018E98; -#else -static const char spot16_sceneTex_018E98[] __attribute__((aligned (2))) = dspot16_sceneTex_018E98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_018E98[] = dspot16_sceneTex_018E98; + #define dspot16_sceneTex_018698 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_018698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_018698[] = dspot16_sceneTex_018698; -#else -static const char spot16_sceneTex_018698[] __attribute__((aligned (2))) = dspot16_sceneTex_018698; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_018698[] = dspot16_sceneTex_018698; + #define dspot16_sceneTex_014D98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_014D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_014D98[] = dspot16_sceneTex_014D98; -#else -static const char spot16_sceneTex_014D98[] __attribute__((aligned (2))) = dspot16_sceneTex_014D98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_014D98[] = dspot16_sceneTex_014D98; + #define dspot16_sceneTex_00E198 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00E198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00E198[] = dspot16_sceneTex_00E198; -#else -static const char spot16_sceneTex_00E198[] __attribute__((aligned (2))) = dspot16_sceneTex_00E198; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00E198[] = dspot16_sceneTex_00E198; + #define dspot16_sceneTex_015E98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_015E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_015E98[] = dspot16_sceneTex_015E98; -#else -static const char spot16_sceneTex_015E98[] __attribute__((aligned (2))) = dspot16_sceneTex_015E98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_015E98[] = dspot16_sceneTex_015E98; + #define dspot16_sceneTex_011198 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_011198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_011198[] = dspot16_sceneTex_011198; -#else -static const char spot16_sceneTex_011198[] __attribute__((aligned (2))) = dspot16_sceneTex_011198; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_011198[] = dspot16_sceneTex_011198; + #define dspot16_sceneTex_011598 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_011598" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_011598[] = dspot16_sceneTex_011598; -#else -static const char spot16_sceneTex_011598[] __attribute__((aligned (2))) = dspot16_sceneTex_011598; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_011598[] = dspot16_sceneTex_011598; + #define dspot16_sceneTex_013798 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_013798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_013798[] = dspot16_sceneTex_013798; -#else -static const char spot16_sceneTex_013798[] __attribute__((aligned (2))) = dspot16_sceneTex_013798; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_013798[] = dspot16_sceneTex_013798; + #define dspot16_sceneTex_00DF98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00DF98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00DF98[] = dspot16_sceneTex_00DF98; -#else -static const char spot16_sceneTex_00DF98[] __attribute__((aligned (2))) = dspot16_sceneTex_00DF98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00DF98[] = dspot16_sceneTex_00DF98; + #define dspot16_sceneTex_00D398 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00D398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00D398[] = dspot16_sceneTex_00D398; -#else -static const char spot16_sceneTex_00D398[] __attribute__((aligned (2))) = dspot16_sceneTex_00D398; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00D398[] = dspot16_sceneTex_00D398; + #define dspot16_sceneTex_00CF98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00CF98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00CF98[] = dspot16_sceneTex_00CF98; -#else -static const char spot16_sceneTex_00CF98[] __attribute__((aligned (2))) = dspot16_sceneTex_00CF98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00CF98[] = dspot16_sceneTex_00CF98; + #define dspot16_sceneTex_012798 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_012798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_012798[] = dspot16_sceneTex_012798; -#else -static const char spot16_sceneTex_012798[] __attribute__((aligned (2))) = dspot16_sceneTex_012798; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_012798[] = dspot16_sceneTex_012798; + #define dspot16_sceneTex_011798 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_011798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_011798[] = dspot16_sceneTex_011798; -#else -static const char spot16_sceneTex_011798[] __attribute__((aligned (2))) = dspot16_sceneTex_011798; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_011798[] = dspot16_sceneTex_011798; + #define dspot16_sceneTex_010198 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_010198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_010198[] = dspot16_sceneTex_010198; -#else -static const char spot16_sceneTex_010198[] __attribute__((aligned (2))) = dspot16_sceneTex_010198; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_010198[] = dspot16_sceneTex_010198; + #define dspot16_sceneTex_00F198 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00F198" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00F198[] = dspot16_sceneTex_00F198; -#else -static const char spot16_sceneTex_00F198[] __attribute__((aligned (2))) = dspot16_sceneTex_00F198; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00F198[] = dspot16_sceneTex_00F198; + #define dspot16_sceneTex_01B698 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_01B698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_01B698[] = dspot16_sceneTex_01B698; -#else -static const char spot16_sceneTex_01B698[] __attribute__((aligned (2))) = dspot16_sceneTex_01B698; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_01B698[] = dspot16_sceneTex_01B698; + #define dspot16_sceneTex_017E98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_017E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_017E98[] = dspot16_sceneTex_017E98; -#else -static const char spot16_sceneTex_017E98[] __attribute__((aligned (2))) = dspot16_sceneTex_017E98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_017E98[] = dspot16_sceneTex_017E98; + #define dspot16_sceneTex_019E98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_019E98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_019E98[] = dspot16_sceneTex_019E98; -#else -static const char spot16_sceneTex_019E98[] __attribute__((aligned (2))) = dspot16_sceneTex_019E98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_019E98[] = dspot16_sceneTex_019E98; + #define dspot16_sceneTex_01C698 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_01C698" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_01C698[] = dspot16_sceneTex_01C698; -#else -static const char spot16_sceneTex_01C698[] __attribute__((aligned (2))) = dspot16_sceneTex_01C698; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_01C698[] = dspot16_sceneTex_01C698; + #define dspot16_sceneTex_00D798 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_00D798" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_00D798[] = dspot16_sceneTex_00D798; -#else -static const char spot16_sceneTex_00D798[] __attribute__((aligned (2))) = dspot16_sceneTex_00D798; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_00D798[] = dspot16_sceneTex_00D798; + #define dspot16_sceneTLUT_008170 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTLUT_008170" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTLUT_008170[] = dspot16_sceneTLUT_008170; -#else -static const char spot16_sceneTLUT_008170[] __attribute__((aligned (2))) = dspot16_sceneTLUT_008170; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTLUT_008170[] = dspot16_sceneTLUT_008170; + #define dspot16_sceneTex_013D98 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_013D98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_013D98[] = dspot16_sceneTex_013D98; -#else -static const char spot16_sceneTex_013D98[] __attribute__((aligned (2))) = dspot16_sceneTex_013D98; -#endif - +static const ALIGN_ASSET(2) char spot16_sceneTex_013D98[] = dspot16_sceneTex_013D98; + #define dspot16_sceneTex_013998 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneTex_013998" -#ifdef _WIN32 -static const __declspec(align(2)) char spot16_sceneTex_013998[] = dspot16_sceneTex_013998; -#else -static const char spot16_sceneTex_013998[] __attribute__((aligned (2))) = dspot16_sceneTex_013998; -#endif - -#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" -#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" -#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" -#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" -#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" +static const ALIGN_ASSET(2) char spot16_sceneTex_013998[] = dspot16_sceneTex_013998; + #define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" +#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" + +#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" + +#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" + +#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" + +#define dspot16_sceneCollisionHeader_003D10 "__OTR__scenes/nonmq/spot16_scene/spot16_sceneCollisionHeader_003D10" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot17/spot17_room_0.h b/soh/assets/scenes/overworld/spot17/spot17_room_0.h index 85edd85ca..877a0b8b6 100644 --- a/soh/assets/scenes/overworld/spot17/spot17_room_0.h +++ b/soh/assets/scenes/overworld/spot17/spot17_room_0.h @@ -1,142 +1,63 @@ #pragma once -#define dspot17_room_0DL_001D30 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0DL_001D30[] = dspot17_room_0DL_001D30; -#else -static const char spot17_room_0DL_001D30[] __attribute__((aligned (2))) = dspot17_room_0DL_001D30; -#endif - -#define dspot17_room_0DL_001110 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0DL_001110" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0DL_001110[] = dspot17_room_0DL_001110; -#else -static const char spot17_room_0DL_001110[] __attribute__((aligned (2))) = dspot17_room_0DL_001110; -#endif - -#define dspot17_room_0Tex_005080 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Tex_005080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Tex_005080[] = dspot17_room_0Tex_005080; -#else -static const char spot17_room_0Tex_005080[] __attribute__((aligned (2))) = dspot17_room_0Tex_005080; -#endif - -#define dspot17_room_0Tex_003880 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Tex_003880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Tex_003880[] = dspot17_room_0Tex_003880; -#else -static const char spot17_room_0Tex_003880[] __attribute__((aligned (2))) = dspot17_room_0Tex_003880; -#endif - -#define dspot17_room_0Tex_004880 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Tex_004880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Tex_004880[] = dspot17_room_0Tex_004880; -#else -static const char spot17_room_0Tex_004880[] __attribute__((aligned (2))) = dspot17_room_0Tex_004880; -#endif - -#define dspot17_room_0Tex_005880 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Tex_005880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Tex_005880[] = dspot17_room_0Tex_005880; -#else -static const char spot17_room_0Tex_005880[] __attribute__((aligned (2))) = dspot17_room_0Tex_005880; -#endif - -#define dspot17_room_0DL_0027C8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0DL_0027C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0DL_0027C8[] = dspot17_room_0DL_0027C8; -#else -static const char spot17_room_0DL_0027C8[] __attribute__((aligned (2))) = dspot17_room_0DL_0027C8; -#endif - -#define dspot17_room_0DL_003480 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0DL_003480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0DL_003480[] = dspot17_room_0DL_003480; -#else -static const char spot17_room_0DL_003480[] __attribute__((aligned (2))) = dspot17_room_0DL_003480; -#endif - -#define dspot17_room_0Set_0000C0DL_001D30 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_0000C0DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_0000C0DL_001D30[] = dspot17_room_0Set_0000C0DL_001D30; -#else -static const char spot17_room_0Set_0000C0DL_001D30[] __attribute__((aligned (2))) = dspot17_room_0Set_0000C0DL_001D30; -#endif - -#define dspot17_room_0Set_0000C0DL_001110 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_0000C0DL_001110" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_0000C0DL_001110[] = dspot17_room_0Set_0000C0DL_001110; -#else -static const char spot17_room_0Set_0000C0DL_001110[] __attribute__((aligned (2))) = dspot17_room_0Set_0000C0DL_001110; -#endif - -#define dspot17_room_0Set_0000C0DL_0027C8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_0000C0DL_0027C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_0000C0DL_0027C8[] = dspot17_room_0Set_0000C0DL_0027C8; -#else -static const char spot17_room_0Set_0000C0DL_0027C8[] __attribute__((aligned (2))) = dspot17_room_0Set_0000C0DL_0027C8; -#endif - -#define dspot17_room_0Set_0000C0DL_003480 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_0000C0DL_003480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_0000C0DL_003480[] = dspot17_room_0Set_0000C0DL_003480; -#else -static const char spot17_room_0Set_0000C0DL_003480[] __attribute__((aligned (2))) = dspot17_room_0Set_0000C0DL_003480; -#endif - -#define dspot17_room_0Set_000120DL_001D30 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000120DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_000120DL_001D30[] = dspot17_room_0Set_000120DL_001D30; -#else -static const char spot17_room_0Set_000120DL_001D30[] __attribute__((aligned (2))) = dspot17_room_0Set_000120DL_001D30; -#endif - -#define dspot17_room_0Set_000120DL_001110 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000120DL_001110" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_000120DL_001110[] = dspot17_room_0Set_000120DL_001110; -#else -static const char spot17_room_0Set_000120DL_001110[] __attribute__((aligned (2))) = dspot17_room_0Set_000120DL_001110; -#endif - -#define dspot17_room_0Set_000120DL_0027C8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000120DL_0027C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_000120DL_0027C8[] = dspot17_room_0Set_000120DL_0027C8; -#else -static const char spot17_room_0Set_000120DL_0027C8[] __attribute__((aligned (2))) = dspot17_room_0Set_000120DL_0027C8; -#endif - -#define dspot17_room_0Set_000120DL_003480 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000120DL_003480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_000120DL_003480[] = dspot17_room_0Set_000120DL_003480; -#else -static const char spot17_room_0Set_000120DL_003480[] __attribute__((aligned (2))) = dspot17_room_0Set_000120DL_003480; -#endif - -#define dspot17_room_0Set_000170DL_001D30 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000170DL_001D30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_000170DL_001D30[] = dspot17_room_0Set_000170DL_001D30; -#else -static const char spot17_room_0Set_000170DL_001D30[] __attribute__((aligned (2))) = dspot17_room_0Set_000170DL_001D30; -#endif - -#define dspot17_room_0Set_000170DL_001110 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000170DL_001110" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_000170DL_001110[] = dspot17_room_0Set_000170DL_001110; -#else -static const char spot17_room_0Set_000170DL_001110[] __attribute__((aligned (2))) = dspot17_room_0Set_000170DL_001110; -#endif - -#define dspot17_room_0Set_000170DL_0027C8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000170DL_0027C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_000170DL_0027C8[] = dspot17_room_0Set_000170DL_0027C8; -#else -static const char spot17_room_0Set_000170DL_0027C8[] __attribute__((aligned (2))) = dspot17_room_0Set_000170DL_0027C8; -#endif - -#define dspot17_room_0Set_000170DL_003480 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000170DL_003480" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_0Set_000170DL_003480[] = dspot17_room_0Set_000170DL_003480; -#else -static const char spot17_room_0Set_000170DL_003480[] __attribute__((aligned (2))) = dspot17_room_0Set_000170DL_003480; -#endif - +#include "align_asset_macro.h" + +#define dspot17_room_0DL_001D30 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0DL_001D30" +static const ALIGN_ASSET(2) char spot17_room_0DL_001D30[] = dspot17_room_0DL_001D30; + +#define dspot17_room_0DL_001110 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0DL_001110" +static const ALIGN_ASSET(2) char spot17_room_0DL_001110[] = dspot17_room_0DL_001110; + +#define dspot17_room_0Tex_005080 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Tex_005080" +static const ALIGN_ASSET(2) char spot17_room_0Tex_005080[] = dspot17_room_0Tex_005080; + +#define dspot17_room_0Tex_003880 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Tex_003880" +static const ALIGN_ASSET(2) char spot17_room_0Tex_003880[] = dspot17_room_0Tex_003880; + +#define dspot17_room_0Tex_004880 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Tex_004880" +static const ALIGN_ASSET(2) char spot17_room_0Tex_004880[] = dspot17_room_0Tex_004880; + +#define dspot17_room_0Tex_005880 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Tex_005880" +static const ALIGN_ASSET(2) char spot17_room_0Tex_005880[] = dspot17_room_0Tex_005880; + +#define dspot17_room_0DL_0027C8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0DL_0027C8" +static const ALIGN_ASSET(2) char spot17_room_0DL_0027C8[] = dspot17_room_0DL_0027C8; + +#define dspot17_room_0DL_003480 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0DL_003480" +static const ALIGN_ASSET(2) char spot17_room_0DL_003480[] = dspot17_room_0DL_003480; + +#define dspot17_room_0Set_0000C0DL_001D30 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_0000C0DL_001D30" +static const ALIGN_ASSET(2) char spot17_room_0Set_0000C0DL_001D30[] = dspot17_room_0Set_0000C0DL_001D30; + +#define dspot17_room_0Set_0000C0DL_001110 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_0000C0DL_001110" +static const ALIGN_ASSET(2) char spot17_room_0Set_0000C0DL_001110[] = dspot17_room_0Set_0000C0DL_001110; + +#define dspot17_room_0Set_0000C0DL_0027C8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_0000C0DL_0027C8" +static const ALIGN_ASSET(2) char spot17_room_0Set_0000C0DL_0027C8[] = dspot17_room_0Set_0000C0DL_0027C8; + +#define dspot17_room_0Set_0000C0DL_003480 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_0000C0DL_003480" +static const ALIGN_ASSET(2) char spot17_room_0Set_0000C0DL_003480[] = dspot17_room_0Set_0000C0DL_003480; + +#define dspot17_room_0Set_000120DL_001D30 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000120DL_001D30" +static const ALIGN_ASSET(2) char spot17_room_0Set_000120DL_001D30[] = dspot17_room_0Set_000120DL_001D30; + +#define dspot17_room_0Set_000120DL_001110 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000120DL_001110" +static const ALIGN_ASSET(2) char spot17_room_0Set_000120DL_001110[] = dspot17_room_0Set_000120DL_001110; + +#define dspot17_room_0Set_000120DL_0027C8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000120DL_0027C8" +static const ALIGN_ASSET(2) char spot17_room_0Set_000120DL_0027C8[] = dspot17_room_0Set_000120DL_0027C8; + +#define dspot17_room_0Set_000120DL_003480 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000120DL_003480" +static const ALIGN_ASSET(2) char spot17_room_0Set_000120DL_003480[] = dspot17_room_0Set_000120DL_003480; + +#define dspot17_room_0Set_000170DL_001D30 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000170DL_001D30" +static const ALIGN_ASSET(2) char spot17_room_0Set_000170DL_001D30[] = dspot17_room_0Set_000170DL_001D30; + +#define dspot17_room_0Set_000170DL_001110 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000170DL_001110" +static const ALIGN_ASSET(2) char spot17_room_0Set_000170DL_001110[] = dspot17_room_0Set_000170DL_001110; + +#define dspot17_room_0Set_000170DL_0027C8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000170DL_0027C8" +static const ALIGN_ASSET(2) char spot17_room_0Set_000170DL_0027C8[] = dspot17_room_0Set_000170DL_0027C8; + +#define dspot17_room_0Set_000170DL_003480 "__OTR__scenes/nonmq/spot17_scene/spot17_room_0Set_000170DL_003480" +static const ALIGN_ASSET(2) char spot17_room_0Set_000170DL_003480[] = dspot17_room_0Set_000170DL_003480; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot17/spot17_room_1.h b/soh/assets/scenes/overworld/spot17/spot17_room_1.h index e0cc4d820..7b98a65fe 100644 --- a/soh/assets/scenes/overworld/spot17/spot17_room_1.h +++ b/soh/assets/scenes/overworld/spot17/spot17_room_1.h @@ -1,870 +1,375 @@ #pragma once -#define dspot17_room_1DL_010A50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_010A50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_010A50[] = dspot17_room_1DL_010A50; -#else -static const char spot17_room_1DL_010A50[] __attribute__((aligned (2))) = dspot17_room_1DL_010A50; -#endif - -#define dspot17_room_1Tex_010E58 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_010E58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_010E58[] = dspot17_room_1Tex_010E58; -#else -static const char spot17_room_1Tex_010E58[] __attribute__((aligned (2))) = dspot17_room_1Tex_010E58; -#endif - -#define dspot17_room_1Tex_011258 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_011258" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_011258[] = dspot17_room_1Tex_011258; -#else -static const char spot17_room_1Tex_011258[] __attribute__((aligned (2))) = dspot17_room_1Tex_011258; -#endif - -#define dspot17_room_1Tex_011658 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_011658" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_011658[] = dspot17_room_1Tex_011658; -#else -static const char spot17_room_1Tex_011658[] __attribute__((aligned (2))) = dspot17_room_1Tex_011658; -#endif - -#define dspot17_room_1Tex_011A58 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_011A58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_011A58[] = dspot17_room_1Tex_011A58; -#else -static const char spot17_room_1Tex_011A58[] __attribute__((aligned (2))) = dspot17_room_1Tex_011A58; -#endif - -#define dspot17_room_1DL_00A438 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_00A438" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_00A438[] = dspot17_room_1DL_00A438; -#else -static const char spot17_room_1DL_00A438[] __attribute__((aligned (2))) = dspot17_room_1DL_00A438; -#endif - -#define dspot17_room_1Tex_00F4D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00F4D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00F4D8[] = dspot17_room_1Tex_00F4D8; -#else -static const char spot17_room_1Tex_00F4D8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00F4D8; -#endif - -#define dspot17_room_1DL_007010 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_007010" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_007010[] = dspot17_room_1DL_007010; -#else -static const char spot17_room_1DL_007010[] __attribute__((aligned (2))) = dspot17_room_1DL_007010; -#endif - -#define dspot17_room_1DL_0072B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_0072B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_0072B0[] = dspot17_room_1DL_0072B0; -#else -static const char spot17_room_1DL_0072B0[] __attribute__((aligned (2))) = dspot17_room_1DL_0072B0; -#endif - -#define dspot17_room_1DL_005290 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_005290" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_005290[] = dspot17_room_1DL_005290; -#else -static const char spot17_room_1DL_005290[] __attribute__((aligned (2))) = dspot17_room_1DL_005290; -#endif - -#define dspot17_room_1DL_010D10 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_010D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_010D10[] = dspot17_room_1DL_010D10; -#else -static const char spot17_room_1DL_010D10[] __attribute__((aligned (2))) = dspot17_room_1DL_010D10; -#endif - -#define dspot17_room_1DL_005E68 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_005E68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_005E68[] = dspot17_room_1DL_005E68; -#else -static const char spot17_room_1DL_005E68[] __attribute__((aligned (2))) = dspot17_room_1DL_005E68; -#endif - -#define dspot17_room_1DL_002098 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_002098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_002098[] = dspot17_room_1DL_002098; -#else -static const char spot17_room_1DL_002098[] __attribute__((aligned (2))) = dspot17_room_1DL_002098; -#endif - -#define dspot17_room_1Tex_00E8D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00E8D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00E8D8[] = dspot17_room_1Tex_00E8D8; -#else -static const char spot17_room_1Tex_00E8D8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00E8D8; -#endif - -#define dspot17_room_1Tex_00D7D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00D7D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00D7D8[] = dspot17_room_1Tex_00D7D8; -#else -static const char spot17_room_1Tex_00D7D8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00D7D8; -#endif - -#define dspot17_room_1DL_0096B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_0096B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_0096B0[] = dspot17_room_1DL_0096B0; -#else -static const char spot17_room_1DL_0096B0[] __attribute__((aligned (2))) = dspot17_room_1DL_0096B0; -#endif - -#define dspot17_room_1DL_008868 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_008868" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_008868[] = dspot17_room_1DL_008868; -#else -static const char spot17_room_1DL_008868[] __attribute__((aligned (2))) = dspot17_room_1DL_008868; -#endif - -#define dspot17_room_1Tex_00FCD8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00FCD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00FCD8[] = dspot17_room_1Tex_00FCD8; -#else -static const char spot17_room_1Tex_00FCD8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00FCD8; -#endif - -#define dspot17_room_1DL_006A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_006A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_006A00[] = dspot17_room_1DL_006A00; -#else -static const char spot17_room_1DL_006A00[] __attribute__((aligned (2))) = dspot17_room_1DL_006A00; -#endif - -#define dspot17_room_1Tex_00BBD8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00BBD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00BBD8[] = dspot17_room_1Tex_00BBD8; -#else -static const char spot17_room_1Tex_00BBD8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00BBD8; -#endif - -#define dspot17_room_1Tex_00D3D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00D3D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00D3D8[] = dspot17_room_1Tex_00D3D8; -#else -static const char spot17_room_1Tex_00D3D8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00D3D8; -#endif - -#define dspot17_room_1Tex_00C3D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00C3D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00C3D8[] = dspot17_room_1Tex_00C3D8; -#else -static const char spot17_room_1Tex_00C3D8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00C3D8; -#endif - -#define dspot17_room_1DL_009FB0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_009FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_009FB0[] = dspot17_room_1DL_009FB0; -#else -static const char spot17_room_1DL_009FB0[] __attribute__((aligned (2))) = dspot17_room_1DL_009FB0; -#endif - -#define dspot17_room_1Tex_00F0D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00F0D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00F0D8[] = dspot17_room_1Tex_00F0D8; -#else -static const char spot17_room_1Tex_00F0D8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00F0D8; -#endif - -#define dspot17_room_1DL_010060 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_010060" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_010060[] = dspot17_room_1DL_010060; -#else -static const char spot17_room_1DL_010060[] __attribute__((aligned (2))) = dspot17_room_1DL_010060; -#endif - -#define dspot17_room_1Tex_012258 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_012258" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_012258[] = dspot17_room_1Tex_012258; -#else -static const char spot17_room_1Tex_012258[] __attribute__((aligned (2))) = dspot17_room_1Tex_012258; -#endif - -#define dspot17_room_1DL_010300 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_010300" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_010300[] = dspot17_room_1DL_010300; -#else -static const char spot17_room_1DL_010300[] __attribute__((aligned (2))) = dspot17_room_1DL_010300; -#endif - -#define dspot17_room_1DL_0012E8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_0012E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_0012E8[] = dspot17_room_1DL_0012E8; -#else -static const char spot17_room_1DL_0012E8[] __attribute__((aligned (2))) = dspot17_room_1DL_0012E8; -#endif - -#define dspot17_room_1Tex_00ECD8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00ECD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00ECD8[] = dspot17_room_1Tex_00ECD8; -#else -static const char spot17_room_1Tex_00ECD8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00ECD8; -#endif - -#define dspot17_room_1DL_000E50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_000E50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_000E50[] = dspot17_room_1DL_000E50; -#else -static const char spot17_room_1DL_000E50[] __attribute__((aligned (2))) = dspot17_room_1DL_000E50; -#endif - -#define dspot17_room_1Tex_00CBD8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00CBD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00CBD8[] = dspot17_room_1Tex_00CBD8; -#else -static const char spot17_room_1Tex_00CBD8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00CBD8; -#endif - -#define dspot17_room_1DL_007B78 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_007B78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_007B78[] = dspot17_room_1DL_007B78; -#else -static const char spot17_room_1DL_007B78[] __attribute__((aligned (2))) = dspot17_room_1DL_007B78; -#endif - -#define dspot17_room_1Tex_00E7D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00E7D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Tex_00E7D8[] = dspot17_room_1Tex_00E7D8; -#else -static const char spot17_room_1Tex_00E7D8[] __attribute__((aligned (2))) = dspot17_room_1Tex_00E7D8; -#endif - -#define dspot17_room_1DL_005550 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_005550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_005550[] = dspot17_room_1DL_005550; -#else -static const char spot17_room_1DL_005550[] __attribute__((aligned (2))) = dspot17_room_1DL_005550; -#endif - -#define dspot17_room_1DL_00AD00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_00AD00[] = dspot17_room_1DL_00AD00; -#else -static const char spot17_room_1DL_00AD00[] __attribute__((aligned (2))) = dspot17_room_1DL_00AD00; -#endif - -#define dspot17_room_1DL_00B4A8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_00B4A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_00B4A8[] = dspot17_room_1DL_00B4A8; -#else -static const char spot17_room_1DL_00B4A8[] __attribute__((aligned (2))) = dspot17_room_1DL_00B4A8; -#endif - -#define dspot17_room_1DL_002938 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_002938" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_002938[] = dspot17_room_1DL_002938; -#else -static const char spot17_room_1DL_002938[] __attribute__((aligned (2))) = dspot17_room_1DL_002938; -#endif - -#define dspot17_room_1DL_003850 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_003850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_003850[] = dspot17_room_1DL_003850; -#else -static const char spot17_room_1DL_003850[] __attribute__((aligned (2))) = dspot17_room_1DL_003850; -#endif - -#define dspot17_room_1DL_001A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_001A00[] = dspot17_room_1DL_001A00; -#else -static const char spot17_room_1DL_001A00[] __attribute__((aligned (2))) = dspot17_room_1DL_001A00; -#endif - -#define dspot17_room_1DL_00A908 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_00A908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_00A908[] = dspot17_room_1DL_00A908; -#else -static const char spot17_room_1DL_00A908[] __attribute__((aligned (2))) = dspot17_room_1DL_00A908; -#endif - -#define dspot17_room_1DL_008F98 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_008F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_008F98[] = dspot17_room_1DL_008F98; -#else -static const char spot17_room_1DL_008F98[] __attribute__((aligned (2))) = dspot17_room_1DL_008F98; -#endif - -#define dspot17_room_1DL_009AA0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_009AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_009AA0[] = dspot17_room_1DL_009AA0; -#else -static const char spot17_room_1DL_009AA0[] __attribute__((aligned (2))) = dspot17_room_1DL_009AA0; -#endif - -#define dspot17_room_1DL_004AC8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_004AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1DL_004AC8[] = dspot17_room_1DL_004AC8; -#else -static const char spot17_room_1DL_004AC8[] __attribute__((aligned (2))) = dspot17_room_1DL_004AC8; -#endif - -#define dspot17_room_1Set_0004C0DL_010A50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_010A50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_010A50[] = dspot17_room_1Set_0004C0DL_010A50; -#else -static const char spot17_room_1Set_0004C0DL_010A50[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_010A50; -#endif - -#define dspot17_room_1Set_0004C0DL_00A438 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_00A438" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_00A438[] = dspot17_room_1Set_0004C0DL_00A438; -#else -static const char spot17_room_1Set_0004C0DL_00A438[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_00A438; -#endif - -#define dspot17_room_1Set_0004C0DL_007010 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_007010" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_007010[] = dspot17_room_1Set_0004C0DL_007010; -#else -static const char spot17_room_1Set_0004C0DL_007010[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_007010; -#endif - -#define dspot17_room_1Set_0004C0DL_0072B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_0072B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_0072B0[] = dspot17_room_1Set_0004C0DL_0072B0; -#else -static const char spot17_room_1Set_0004C0DL_0072B0[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_0072B0; -#endif - -#define dspot17_room_1Set_0004C0DL_005290 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_005290" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_005290[] = dspot17_room_1Set_0004C0DL_005290; -#else -static const char spot17_room_1Set_0004C0DL_005290[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_005290; -#endif - -#define dspot17_room_1Set_0004C0DL_010D10 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_010D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_010D10[] = dspot17_room_1Set_0004C0DL_010D10; -#else -static const char spot17_room_1Set_0004C0DL_010D10[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_010D10; -#endif - -#define dspot17_room_1Set_0004C0DL_005E68 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_005E68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_005E68[] = dspot17_room_1Set_0004C0DL_005E68; -#else -static const char spot17_room_1Set_0004C0DL_005E68[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_005E68; -#endif - -#define dspot17_room_1Set_0004C0DL_002098 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_002098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_002098[] = dspot17_room_1Set_0004C0DL_002098; -#else -static const char spot17_room_1Set_0004C0DL_002098[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_002098; -#endif - -#define dspot17_room_1Set_0004C0DL_0096B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_0096B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_0096B0[] = dspot17_room_1Set_0004C0DL_0096B0; -#else -static const char spot17_room_1Set_0004C0DL_0096B0[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_0096B0; -#endif - -#define dspot17_room_1Set_0004C0DL_008868 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_008868" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_008868[] = dspot17_room_1Set_0004C0DL_008868; -#else -static const char spot17_room_1Set_0004C0DL_008868[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_008868; -#endif - -#define dspot17_room_1Set_0004C0DL_006A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_006A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_006A00[] = dspot17_room_1Set_0004C0DL_006A00; -#else -static const char spot17_room_1Set_0004C0DL_006A00[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_006A00; -#endif - -#define dspot17_room_1Set_0004C0DL_009FB0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_009FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_009FB0[] = dspot17_room_1Set_0004C0DL_009FB0; -#else -static const char spot17_room_1Set_0004C0DL_009FB0[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_009FB0; -#endif - -#define dspot17_room_1Set_0004C0DL_010060 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_010060" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_010060[] = dspot17_room_1Set_0004C0DL_010060; -#else -static const char spot17_room_1Set_0004C0DL_010060[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_010060; -#endif - -#define dspot17_room_1Set_0004C0DL_010300 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_010300" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_010300[] = dspot17_room_1Set_0004C0DL_010300; -#else -static const char spot17_room_1Set_0004C0DL_010300[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_010300; -#endif - -#define dspot17_room_1Set_0004C0DL_0012E8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_0012E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_0012E8[] = dspot17_room_1Set_0004C0DL_0012E8; -#else -static const char spot17_room_1Set_0004C0DL_0012E8[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_0012E8; -#endif - -#define dspot17_room_1Set_0004C0DL_000E50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_000E50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_000E50[] = dspot17_room_1Set_0004C0DL_000E50; -#else -static const char spot17_room_1Set_0004C0DL_000E50[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_000E50; -#endif - -#define dspot17_room_1Set_0004C0DL_007B78 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_007B78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_007B78[] = dspot17_room_1Set_0004C0DL_007B78; -#else -static const char spot17_room_1Set_0004C0DL_007B78[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_007B78; -#endif - -#define dspot17_room_1Set_0004C0DL_005550 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_005550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_005550[] = dspot17_room_1Set_0004C0DL_005550; -#else -static const char spot17_room_1Set_0004C0DL_005550[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_005550; -#endif - -#define dspot17_room_1Set_0004C0DL_00AD00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_00AD00[] = dspot17_room_1Set_0004C0DL_00AD00; -#else -static const char spot17_room_1Set_0004C0DL_00AD00[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_00AD00; -#endif - -#define dspot17_room_1Set_0004C0DL_00B4A8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_00B4A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_00B4A8[] = dspot17_room_1Set_0004C0DL_00B4A8; -#else -static const char spot17_room_1Set_0004C0DL_00B4A8[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_00B4A8; -#endif - -#define dspot17_room_1Set_0004C0DL_002938 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_002938" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_002938[] = dspot17_room_1Set_0004C0DL_002938; -#else -static const char spot17_room_1Set_0004C0DL_002938[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_002938; -#endif - -#define dspot17_room_1Set_0004C0DL_003850 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_003850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_003850[] = dspot17_room_1Set_0004C0DL_003850; -#else -static const char spot17_room_1Set_0004C0DL_003850[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_003850; -#endif - -#define dspot17_room_1Set_0004C0DL_001A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_001A00[] = dspot17_room_1Set_0004C0DL_001A00; -#else -static const char spot17_room_1Set_0004C0DL_001A00[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_001A00; -#endif - -#define dspot17_room_1Set_0004C0DL_00A908 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_00A908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_00A908[] = dspot17_room_1Set_0004C0DL_00A908; -#else -static const char spot17_room_1Set_0004C0DL_00A908[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_00A908; -#endif - -#define dspot17_room_1Set_0004C0DL_008F98 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_008F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_008F98[] = dspot17_room_1Set_0004C0DL_008F98; -#else -static const char spot17_room_1Set_0004C0DL_008F98[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_008F98; -#endif - -#define dspot17_room_1Set_0004C0DL_009AA0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_009AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_009AA0[] = dspot17_room_1Set_0004C0DL_009AA0; -#else -static const char spot17_room_1Set_0004C0DL_009AA0[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_009AA0; -#endif - -#define dspot17_room_1Set_0004C0DL_004AC8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_004AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_0004C0DL_004AC8[] = dspot17_room_1Set_0004C0DL_004AC8; -#else -static const char spot17_room_1Set_0004C0DL_004AC8[] __attribute__((aligned (2))) = dspot17_room_1Set_0004C0DL_004AC8; -#endif - -#define dspot17_room_1Set_000830DL_010A50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_010A50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_010A50[] = dspot17_room_1Set_000830DL_010A50; -#else -static const char spot17_room_1Set_000830DL_010A50[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_010A50; -#endif - -#define dspot17_room_1Set_000830DL_00A438 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_00A438" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_00A438[] = dspot17_room_1Set_000830DL_00A438; -#else -static const char spot17_room_1Set_000830DL_00A438[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_00A438; -#endif - -#define dspot17_room_1Set_000830DL_007010 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_007010" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_007010[] = dspot17_room_1Set_000830DL_007010; -#else -static const char spot17_room_1Set_000830DL_007010[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_007010; -#endif - -#define dspot17_room_1Set_000830DL_0072B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_0072B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_0072B0[] = dspot17_room_1Set_000830DL_0072B0; -#else -static const char spot17_room_1Set_000830DL_0072B0[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_0072B0; -#endif - -#define dspot17_room_1Set_000830DL_005290 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_005290" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_005290[] = dspot17_room_1Set_000830DL_005290; -#else -static const char spot17_room_1Set_000830DL_005290[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_005290; -#endif - -#define dspot17_room_1Set_000830DL_010D10 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_010D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_010D10[] = dspot17_room_1Set_000830DL_010D10; -#else -static const char spot17_room_1Set_000830DL_010D10[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_010D10; -#endif - -#define dspot17_room_1Set_000830DL_005E68 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_005E68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_005E68[] = dspot17_room_1Set_000830DL_005E68; -#else -static const char spot17_room_1Set_000830DL_005E68[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_005E68; -#endif - -#define dspot17_room_1Set_000830DL_002098 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_002098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_002098[] = dspot17_room_1Set_000830DL_002098; -#else -static const char spot17_room_1Set_000830DL_002098[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_002098; -#endif - -#define dspot17_room_1Set_000830DL_0096B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_0096B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_0096B0[] = dspot17_room_1Set_000830DL_0096B0; -#else -static const char spot17_room_1Set_000830DL_0096B0[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_0096B0; -#endif - -#define dspot17_room_1Set_000830DL_008868 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_008868" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_008868[] = dspot17_room_1Set_000830DL_008868; -#else -static const char spot17_room_1Set_000830DL_008868[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_008868; -#endif - -#define dspot17_room_1Set_000830DL_006A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_006A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_006A00[] = dspot17_room_1Set_000830DL_006A00; -#else -static const char spot17_room_1Set_000830DL_006A00[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_006A00; -#endif - -#define dspot17_room_1Set_000830DL_009FB0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_009FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_009FB0[] = dspot17_room_1Set_000830DL_009FB0; -#else -static const char spot17_room_1Set_000830DL_009FB0[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_009FB0; -#endif - -#define dspot17_room_1Set_000830DL_010060 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_010060" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_010060[] = dspot17_room_1Set_000830DL_010060; -#else -static const char spot17_room_1Set_000830DL_010060[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_010060; -#endif - -#define dspot17_room_1Set_000830DL_010300 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_010300" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_010300[] = dspot17_room_1Set_000830DL_010300; -#else -static const char spot17_room_1Set_000830DL_010300[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_010300; -#endif - -#define dspot17_room_1Set_000830DL_0012E8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_0012E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_0012E8[] = dspot17_room_1Set_000830DL_0012E8; -#else -static const char spot17_room_1Set_000830DL_0012E8[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_0012E8; -#endif - -#define dspot17_room_1Set_000830DL_000E50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_000E50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_000E50[] = dspot17_room_1Set_000830DL_000E50; -#else -static const char spot17_room_1Set_000830DL_000E50[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_000E50; -#endif - -#define dspot17_room_1Set_000830DL_007B78 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_007B78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_007B78[] = dspot17_room_1Set_000830DL_007B78; -#else -static const char spot17_room_1Set_000830DL_007B78[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_007B78; -#endif - -#define dspot17_room_1Set_000830DL_005550 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_005550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_005550[] = dspot17_room_1Set_000830DL_005550; -#else -static const char spot17_room_1Set_000830DL_005550[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_005550; -#endif - -#define dspot17_room_1Set_000830DL_00AD00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_00AD00[] = dspot17_room_1Set_000830DL_00AD00; -#else -static const char spot17_room_1Set_000830DL_00AD00[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_00AD00; -#endif - -#define dspot17_room_1Set_000830DL_00B4A8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_00B4A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_00B4A8[] = dspot17_room_1Set_000830DL_00B4A8; -#else -static const char spot17_room_1Set_000830DL_00B4A8[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_00B4A8; -#endif - -#define dspot17_room_1Set_000830DL_002938 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_002938" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_002938[] = dspot17_room_1Set_000830DL_002938; -#else -static const char spot17_room_1Set_000830DL_002938[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_002938; -#endif - -#define dspot17_room_1Set_000830DL_003850 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_003850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_003850[] = dspot17_room_1Set_000830DL_003850; -#else -static const char spot17_room_1Set_000830DL_003850[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_003850; -#endif - -#define dspot17_room_1Set_000830DL_001A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_001A00[] = dspot17_room_1Set_000830DL_001A00; -#else -static const char spot17_room_1Set_000830DL_001A00[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_001A00; -#endif - -#define dspot17_room_1Set_000830DL_00A908 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_00A908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_00A908[] = dspot17_room_1Set_000830DL_00A908; -#else -static const char spot17_room_1Set_000830DL_00A908[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_00A908; -#endif - -#define dspot17_room_1Set_000830DL_008F98 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_008F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_008F98[] = dspot17_room_1Set_000830DL_008F98; -#else -static const char spot17_room_1Set_000830DL_008F98[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_008F98; -#endif - -#define dspot17_room_1Set_000830DL_009AA0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_009AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_009AA0[] = dspot17_room_1Set_000830DL_009AA0; -#else -static const char spot17_room_1Set_000830DL_009AA0[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_009AA0; -#endif - -#define dspot17_room_1Set_000830DL_004AC8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_004AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000830DL_004AC8[] = dspot17_room_1Set_000830DL_004AC8; -#else -static const char spot17_room_1Set_000830DL_004AC8[] __attribute__((aligned (2))) = dspot17_room_1Set_000830DL_004AC8; -#endif - -#define dspot17_room_1Set_000940DL_010A50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_010A50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_010A50[] = dspot17_room_1Set_000940DL_010A50; -#else -static const char spot17_room_1Set_000940DL_010A50[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_010A50; -#endif - -#define dspot17_room_1Set_000940DL_00A438 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_00A438" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_00A438[] = dspot17_room_1Set_000940DL_00A438; -#else -static const char spot17_room_1Set_000940DL_00A438[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_00A438; -#endif - -#define dspot17_room_1Set_000940DL_007010 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_007010" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_007010[] = dspot17_room_1Set_000940DL_007010; -#else -static const char spot17_room_1Set_000940DL_007010[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_007010; -#endif - -#define dspot17_room_1Set_000940DL_0072B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_0072B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_0072B0[] = dspot17_room_1Set_000940DL_0072B0; -#else -static const char spot17_room_1Set_000940DL_0072B0[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_0072B0; -#endif - -#define dspot17_room_1Set_000940DL_005290 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_005290" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_005290[] = dspot17_room_1Set_000940DL_005290; -#else -static const char spot17_room_1Set_000940DL_005290[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_005290; -#endif - -#define dspot17_room_1Set_000940DL_010D10 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_010D10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_010D10[] = dspot17_room_1Set_000940DL_010D10; -#else -static const char spot17_room_1Set_000940DL_010D10[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_010D10; -#endif - -#define dspot17_room_1Set_000940DL_005E68 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_005E68" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_005E68[] = dspot17_room_1Set_000940DL_005E68; -#else -static const char spot17_room_1Set_000940DL_005E68[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_005E68; -#endif - -#define dspot17_room_1Set_000940DL_002098 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_002098" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_002098[] = dspot17_room_1Set_000940DL_002098; -#else -static const char spot17_room_1Set_000940DL_002098[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_002098; -#endif - -#define dspot17_room_1Set_000940DL_0096B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_0096B0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_0096B0[] = dspot17_room_1Set_000940DL_0096B0; -#else -static const char spot17_room_1Set_000940DL_0096B0[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_0096B0; -#endif - -#define dspot17_room_1Set_000940DL_008868 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_008868" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_008868[] = dspot17_room_1Set_000940DL_008868; -#else -static const char spot17_room_1Set_000940DL_008868[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_008868; -#endif - -#define dspot17_room_1Set_000940DL_006A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_006A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_006A00[] = dspot17_room_1Set_000940DL_006A00; -#else -static const char spot17_room_1Set_000940DL_006A00[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_006A00; -#endif - -#define dspot17_room_1Set_000940DL_009FB0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_009FB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_009FB0[] = dspot17_room_1Set_000940DL_009FB0; -#else -static const char spot17_room_1Set_000940DL_009FB0[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_009FB0; -#endif - -#define dspot17_room_1Set_000940DL_010060 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_010060" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_010060[] = dspot17_room_1Set_000940DL_010060; -#else -static const char spot17_room_1Set_000940DL_010060[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_010060; -#endif - -#define dspot17_room_1Set_000940DL_010300 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_010300" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_010300[] = dspot17_room_1Set_000940DL_010300; -#else -static const char spot17_room_1Set_000940DL_010300[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_010300; -#endif - -#define dspot17_room_1Set_000940DL_0012E8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_0012E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_0012E8[] = dspot17_room_1Set_000940DL_0012E8; -#else -static const char spot17_room_1Set_000940DL_0012E8[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_0012E8; -#endif - -#define dspot17_room_1Set_000940DL_000E50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_000E50" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_000E50[] = dspot17_room_1Set_000940DL_000E50; -#else -static const char spot17_room_1Set_000940DL_000E50[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_000E50; -#endif - -#define dspot17_room_1Set_000940DL_007B78 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_007B78" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_007B78[] = dspot17_room_1Set_000940DL_007B78; -#else -static const char spot17_room_1Set_000940DL_007B78[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_007B78; -#endif - -#define dspot17_room_1Set_000940DL_005550 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_005550" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_005550[] = dspot17_room_1Set_000940DL_005550; -#else -static const char spot17_room_1Set_000940DL_005550[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_005550; -#endif - -#define dspot17_room_1Set_000940DL_00AD00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_00AD00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_00AD00[] = dspot17_room_1Set_000940DL_00AD00; -#else -static const char spot17_room_1Set_000940DL_00AD00[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_00AD00; -#endif - -#define dspot17_room_1Set_000940DL_00B4A8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_00B4A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_00B4A8[] = dspot17_room_1Set_000940DL_00B4A8; -#else -static const char spot17_room_1Set_000940DL_00B4A8[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_00B4A8; -#endif - -#define dspot17_room_1Set_000940DL_002938 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_002938" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_002938[] = dspot17_room_1Set_000940DL_002938; -#else -static const char spot17_room_1Set_000940DL_002938[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_002938; -#endif - -#define dspot17_room_1Set_000940DL_003850 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_003850" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_003850[] = dspot17_room_1Set_000940DL_003850; -#else -static const char spot17_room_1Set_000940DL_003850[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_003850; -#endif - -#define dspot17_room_1Set_000940DL_001A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_001A00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_001A00[] = dspot17_room_1Set_000940DL_001A00; -#else -static const char spot17_room_1Set_000940DL_001A00[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_001A00; -#endif - -#define dspot17_room_1Set_000940DL_00A908 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_00A908" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_00A908[] = dspot17_room_1Set_000940DL_00A908; -#else -static const char spot17_room_1Set_000940DL_00A908[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_00A908; -#endif - -#define dspot17_room_1Set_000940DL_008F98 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_008F98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_008F98[] = dspot17_room_1Set_000940DL_008F98; -#else -static const char spot17_room_1Set_000940DL_008F98[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_008F98; -#endif - -#define dspot17_room_1Set_000940DL_009AA0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_009AA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_009AA0[] = dspot17_room_1Set_000940DL_009AA0; -#else -static const char spot17_room_1Set_000940DL_009AA0[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_009AA0; -#endif - -#define dspot17_room_1Set_000940DL_004AC8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_004AC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_room_1Set_000940DL_004AC8[] = dspot17_room_1Set_000940DL_004AC8; -#else -static const char spot17_room_1Set_000940DL_004AC8[] __attribute__((aligned (2))) = dspot17_room_1Set_000940DL_004AC8; -#endif - +#include "align_asset_macro.h" + +#define dspot17_room_1DL_010A50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_010A50" +static const ALIGN_ASSET(2) char spot17_room_1DL_010A50[] = dspot17_room_1DL_010A50; + +#define dspot17_room_1Tex_010E58 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_010E58" +static const ALIGN_ASSET(2) char spot17_room_1Tex_010E58[] = dspot17_room_1Tex_010E58; + +#define dspot17_room_1Tex_011258 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_011258" +static const ALIGN_ASSET(2) char spot17_room_1Tex_011258[] = dspot17_room_1Tex_011258; + +#define dspot17_room_1Tex_011658 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_011658" +static const ALIGN_ASSET(2) char spot17_room_1Tex_011658[] = dspot17_room_1Tex_011658; + +#define dspot17_room_1Tex_011A58 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_011A58" +static const ALIGN_ASSET(2) char spot17_room_1Tex_011A58[] = dspot17_room_1Tex_011A58; + +#define dspot17_room_1DL_00A438 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_00A438" +static const ALIGN_ASSET(2) char spot17_room_1DL_00A438[] = dspot17_room_1DL_00A438; + +#define dspot17_room_1Tex_00F4D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00F4D8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00F4D8[] = dspot17_room_1Tex_00F4D8; + +#define dspot17_room_1DL_007010 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_007010" +static const ALIGN_ASSET(2) char spot17_room_1DL_007010[] = dspot17_room_1DL_007010; + +#define dspot17_room_1DL_0072B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_0072B0" +static const ALIGN_ASSET(2) char spot17_room_1DL_0072B0[] = dspot17_room_1DL_0072B0; + +#define dspot17_room_1DL_005290 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_005290" +static const ALIGN_ASSET(2) char spot17_room_1DL_005290[] = dspot17_room_1DL_005290; + +#define dspot17_room_1DL_010D10 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_010D10" +static const ALIGN_ASSET(2) char spot17_room_1DL_010D10[] = dspot17_room_1DL_010D10; + +#define dspot17_room_1DL_005E68 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_005E68" +static const ALIGN_ASSET(2) char spot17_room_1DL_005E68[] = dspot17_room_1DL_005E68; + +#define dspot17_room_1DL_002098 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_002098" +static const ALIGN_ASSET(2) char spot17_room_1DL_002098[] = dspot17_room_1DL_002098; + +#define dspot17_room_1Tex_00E8D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00E8D8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00E8D8[] = dspot17_room_1Tex_00E8D8; + +#define dspot17_room_1Tex_00D7D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00D7D8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00D7D8[] = dspot17_room_1Tex_00D7D8; + +#define dspot17_room_1DL_0096B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_0096B0" +static const ALIGN_ASSET(2) char spot17_room_1DL_0096B0[] = dspot17_room_1DL_0096B0; + +#define dspot17_room_1DL_008868 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_008868" +static const ALIGN_ASSET(2) char spot17_room_1DL_008868[] = dspot17_room_1DL_008868; + +#define dspot17_room_1Tex_00FCD8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00FCD8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00FCD8[] = dspot17_room_1Tex_00FCD8; + +#define dspot17_room_1DL_006A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_006A00" +static const ALIGN_ASSET(2) char spot17_room_1DL_006A00[] = dspot17_room_1DL_006A00; + +#define dspot17_room_1Tex_00BBD8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00BBD8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00BBD8[] = dspot17_room_1Tex_00BBD8; + +#define dspot17_room_1Tex_00D3D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00D3D8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00D3D8[] = dspot17_room_1Tex_00D3D8; + +#define dspot17_room_1Tex_00C3D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00C3D8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00C3D8[] = dspot17_room_1Tex_00C3D8; + +#define dspot17_room_1DL_009FB0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_009FB0" +static const ALIGN_ASSET(2) char spot17_room_1DL_009FB0[] = dspot17_room_1DL_009FB0; + +#define dspot17_room_1Tex_00F0D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00F0D8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00F0D8[] = dspot17_room_1Tex_00F0D8; + +#define dspot17_room_1DL_010060 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_010060" +static const ALIGN_ASSET(2) char spot17_room_1DL_010060[] = dspot17_room_1DL_010060; + +#define dspot17_room_1Tex_012258 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_012258" +static const ALIGN_ASSET(2) char spot17_room_1Tex_012258[] = dspot17_room_1Tex_012258; + +#define dspot17_room_1DL_010300 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_010300" +static const ALIGN_ASSET(2) char spot17_room_1DL_010300[] = dspot17_room_1DL_010300; + +#define dspot17_room_1DL_0012E8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_0012E8" +static const ALIGN_ASSET(2) char spot17_room_1DL_0012E8[] = dspot17_room_1DL_0012E8; + +#define dspot17_room_1Tex_00ECD8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00ECD8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00ECD8[] = dspot17_room_1Tex_00ECD8; + +#define dspot17_room_1DL_000E50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_000E50" +static const ALIGN_ASSET(2) char spot17_room_1DL_000E50[] = dspot17_room_1DL_000E50; + +#define dspot17_room_1Tex_00CBD8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00CBD8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00CBD8[] = dspot17_room_1Tex_00CBD8; + +#define dspot17_room_1DL_007B78 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_007B78" +static const ALIGN_ASSET(2) char spot17_room_1DL_007B78[] = dspot17_room_1DL_007B78; + +#define dspot17_room_1Tex_00E7D8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Tex_00E7D8" +static const ALIGN_ASSET(2) char spot17_room_1Tex_00E7D8[] = dspot17_room_1Tex_00E7D8; + +#define dspot17_room_1DL_005550 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_005550" +static const ALIGN_ASSET(2) char spot17_room_1DL_005550[] = dspot17_room_1DL_005550; + +#define dspot17_room_1DL_00AD00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_00AD00" +static const ALIGN_ASSET(2) char spot17_room_1DL_00AD00[] = dspot17_room_1DL_00AD00; + +#define dspot17_room_1DL_00B4A8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_00B4A8" +static const ALIGN_ASSET(2) char spot17_room_1DL_00B4A8[] = dspot17_room_1DL_00B4A8; + +#define dspot17_room_1DL_002938 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_002938" +static const ALIGN_ASSET(2) char spot17_room_1DL_002938[] = dspot17_room_1DL_002938; + +#define dspot17_room_1DL_003850 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_003850" +static const ALIGN_ASSET(2) char spot17_room_1DL_003850[] = dspot17_room_1DL_003850; + +#define dspot17_room_1DL_001A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_001A00" +static const ALIGN_ASSET(2) char spot17_room_1DL_001A00[] = dspot17_room_1DL_001A00; + +#define dspot17_room_1DL_00A908 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_00A908" +static const ALIGN_ASSET(2) char spot17_room_1DL_00A908[] = dspot17_room_1DL_00A908; + +#define dspot17_room_1DL_008F98 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_008F98" +static const ALIGN_ASSET(2) char spot17_room_1DL_008F98[] = dspot17_room_1DL_008F98; + +#define dspot17_room_1DL_009AA0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_009AA0" +static const ALIGN_ASSET(2) char spot17_room_1DL_009AA0[] = dspot17_room_1DL_009AA0; + +#define dspot17_room_1DL_004AC8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1DL_004AC8" +static const ALIGN_ASSET(2) char spot17_room_1DL_004AC8[] = dspot17_room_1DL_004AC8; + +#define dspot17_room_1Set_0004C0DL_010A50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_010A50" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_010A50[] = dspot17_room_1Set_0004C0DL_010A50; + +#define dspot17_room_1Set_0004C0DL_00A438 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_00A438" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_00A438[] = dspot17_room_1Set_0004C0DL_00A438; + +#define dspot17_room_1Set_0004C0DL_007010 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_007010" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_007010[] = dspot17_room_1Set_0004C0DL_007010; + +#define dspot17_room_1Set_0004C0DL_0072B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_0072B0" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_0072B0[] = dspot17_room_1Set_0004C0DL_0072B0; + +#define dspot17_room_1Set_0004C0DL_005290 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_005290" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_005290[] = dspot17_room_1Set_0004C0DL_005290; + +#define dspot17_room_1Set_0004C0DL_010D10 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_010D10" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_010D10[] = dspot17_room_1Set_0004C0DL_010D10; + +#define dspot17_room_1Set_0004C0DL_005E68 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_005E68" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_005E68[] = dspot17_room_1Set_0004C0DL_005E68; + +#define dspot17_room_1Set_0004C0DL_002098 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_002098" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_002098[] = dspot17_room_1Set_0004C0DL_002098; + +#define dspot17_room_1Set_0004C0DL_0096B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_0096B0" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_0096B0[] = dspot17_room_1Set_0004C0DL_0096B0; + +#define dspot17_room_1Set_0004C0DL_008868 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_008868" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_008868[] = dspot17_room_1Set_0004C0DL_008868; + +#define dspot17_room_1Set_0004C0DL_006A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_006A00" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_006A00[] = dspot17_room_1Set_0004C0DL_006A00; + +#define dspot17_room_1Set_0004C0DL_009FB0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_009FB0" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_009FB0[] = dspot17_room_1Set_0004C0DL_009FB0; + +#define dspot17_room_1Set_0004C0DL_010060 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_010060" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_010060[] = dspot17_room_1Set_0004C0DL_010060; + +#define dspot17_room_1Set_0004C0DL_010300 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_010300" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_010300[] = dspot17_room_1Set_0004C0DL_010300; + +#define dspot17_room_1Set_0004C0DL_0012E8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_0012E8" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_0012E8[] = dspot17_room_1Set_0004C0DL_0012E8; + +#define dspot17_room_1Set_0004C0DL_000E50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_000E50" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_000E50[] = dspot17_room_1Set_0004C0DL_000E50; + +#define dspot17_room_1Set_0004C0DL_007B78 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_007B78" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_007B78[] = dspot17_room_1Set_0004C0DL_007B78; + +#define dspot17_room_1Set_0004C0DL_005550 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_005550" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_005550[] = dspot17_room_1Set_0004C0DL_005550; + +#define dspot17_room_1Set_0004C0DL_00AD00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_00AD00" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_00AD00[] = dspot17_room_1Set_0004C0DL_00AD00; + +#define dspot17_room_1Set_0004C0DL_00B4A8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_00B4A8" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_00B4A8[] = dspot17_room_1Set_0004C0DL_00B4A8; + +#define dspot17_room_1Set_0004C0DL_002938 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_002938" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_002938[] = dspot17_room_1Set_0004C0DL_002938; + +#define dspot17_room_1Set_0004C0DL_003850 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_003850" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_003850[] = dspot17_room_1Set_0004C0DL_003850; + +#define dspot17_room_1Set_0004C0DL_001A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_001A00" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_001A00[] = dspot17_room_1Set_0004C0DL_001A00; + +#define dspot17_room_1Set_0004C0DL_00A908 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_00A908" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_00A908[] = dspot17_room_1Set_0004C0DL_00A908; + +#define dspot17_room_1Set_0004C0DL_008F98 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_008F98" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_008F98[] = dspot17_room_1Set_0004C0DL_008F98; + +#define dspot17_room_1Set_0004C0DL_009AA0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_009AA0" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_009AA0[] = dspot17_room_1Set_0004C0DL_009AA0; + +#define dspot17_room_1Set_0004C0DL_004AC8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_0004C0DL_004AC8" +static const ALIGN_ASSET(2) char spot17_room_1Set_0004C0DL_004AC8[] = dspot17_room_1Set_0004C0DL_004AC8; + +#define dspot17_room_1Set_000830DL_010A50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_010A50" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_010A50[] = dspot17_room_1Set_000830DL_010A50; + +#define dspot17_room_1Set_000830DL_00A438 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_00A438" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_00A438[] = dspot17_room_1Set_000830DL_00A438; + +#define dspot17_room_1Set_000830DL_007010 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_007010" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_007010[] = dspot17_room_1Set_000830DL_007010; + +#define dspot17_room_1Set_000830DL_0072B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_0072B0" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_0072B0[] = dspot17_room_1Set_000830DL_0072B0; + +#define dspot17_room_1Set_000830DL_005290 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_005290" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_005290[] = dspot17_room_1Set_000830DL_005290; + +#define dspot17_room_1Set_000830DL_010D10 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_010D10" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_010D10[] = dspot17_room_1Set_000830DL_010D10; + +#define dspot17_room_1Set_000830DL_005E68 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_005E68" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_005E68[] = dspot17_room_1Set_000830DL_005E68; + +#define dspot17_room_1Set_000830DL_002098 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_002098" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_002098[] = dspot17_room_1Set_000830DL_002098; + +#define dspot17_room_1Set_000830DL_0096B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_0096B0" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_0096B0[] = dspot17_room_1Set_000830DL_0096B0; + +#define dspot17_room_1Set_000830DL_008868 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_008868" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_008868[] = dspot17_room_1Set_000830DL_008868; + +#define dspot17_room_1Set_000830DL_006A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_006A00" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_006A00[] = dspot17_room_1Set_000830DL_006A00; + +#define dspot17_room_1Set_000830DL_009FB0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_009FB0" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_009FB0[] = dspot17_room_1Set_000830DL_009FB0; + +#define dspot17_room_1Set_000830DL_010060 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_010060" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_010060[] = dspot17_room_1Set_000830DL_010060; + +#define dspot17_room_1Set_000830DL_010300 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_010300" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_010300[] = dspot17_room_1Set_000830DL_010300; + +#define dspot17_room_1Set_000830DL_0012E8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_0012E8" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_0012E8[] = dspot17_room_1Set_000830DL_0012E8; + +#define dspot17_room_1Set_000830DL_000E50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_000E50" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_000E50[] = dspot17_room_1Set_000830DL_000E50; + +#define dspot17_room_1Set_000830DL_007B78 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_007B78" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_007B78[] = dspot17_room_1Set_000830DL_007B78; + +#define dspot17_room_1Set_000830DL_005550 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_005550" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_005550[] = dspot17_room_1Set_000830DL_005550; + +#define dspot17_room_1Set_000830DL_00AD00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_00AD00" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_00AD00[] = dspot17_room_1Set_000830DL_00AD00; + +#define dspot17_room_1Set_000830DL_00B4A8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_00B4A8" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_00B4A8[] = dspot17_room_1Set_000830DL_00B4A8; + +#define dspot17_room_1Set_000830DL_002938 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_002938" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_002938[] = dspot17_room_1Set_000830DL_002938; + +#define dspot17_room_1Set_000830DL_003850 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_003850" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_003850[] = dspot17_room_1Set_000830DL_003850; + +#define dspot17_room_1Set_000830DL_001A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_001A00" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_001A00[] = dspot17_room_1Set_000830DL_001A00; + +#define dspot17_room_1Set_000830DL_00A908 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_00A908" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_00A908[] = dspot17_room_1Set_000830DL_00A908; + +#define dspot17_room_1Set_000830DL_008F98 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_008F98" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_008F98[] = dspot17_room_1Set_000830DL_008F98; + +#define dspot17_room_1Set_000830DL_009AA0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_009AA0" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_009AA0[] = dspot17_room_1Set_000830DL_009AA0; + +#define dspot17_room_1Set_000830DL_004AC8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000830DL_004AC8" +static const ALIGN_ASSET(2) char spot17_room_1Set_000830DL_004AC8[] = dspot17_room_1Set_000830DL_004AC8; + +#define dspot17_room_1Set_000940DL_010A50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_010A50" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_010A50[] = dspot17_room_1Set_000940DL_010A50; + +#define dspot17_room_1Set_000940DL_00A438 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_00A438" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_00A438[] = dspot17_room_1Set_000940DL_00A438; + +#define dspot17_room_1Set_000940DL_007010 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_007010" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_007010[] = dspot17_room_1Set_000940DL_007010; + +#define dspot17_room_1Set_000940DL_0072B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_0072B0" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_0072B0[] = dspot17_room_1Set_000940DL_0072B0; + +#define dspot17_room_1Set_000940DL_005290 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_005290" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_005290[] = dspot17_room_1Set_000940DL_005290; + +#define dspot17_room_1Set_000940DL_010D10 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_010D10" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_010D10[] = dspot17_room_1Set_000940DL_010D10; + +#define dspot17_room_1Set_000940DL_005E68 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_005E68" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_005E68[] = dspot17_room_1Set_000940DL_005E68; + +#define dspot17_room_1Set_000940DL_002098 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_002098" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_002098[] = dspot17_room_1Set_000940DL_002098; + +#define dspot17_room_1Set_000940DL_0096B0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_0096B0" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_0096B0[] = dspot17_room_1Set_000940DL_0096B0; + +#define dspot17_room_1Set_000940DL_008868 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_008868" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_008868[] = dspot17_room_1Set_000940DL_008868; + +#define dspot17_room_1Set_000940DL_006A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_006A00" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_006A00[] = dspot17_room_1Set_000940DL_006A00; + +#define dspot17_room_1Set_000940DL_009FB0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_009FB0" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_009FB0[] = dspot17_room_1Set_000940DL_009FB0; + +#define dspot17_room_1Set_000940DL_010060 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_010060" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_010060[] = dspot17_room_1Set_000940DL_010060; + +#define dspot17_room_1Set_000940DL_010300 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_010300" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_010300[] = dspot17_room_1Set_000940DL_010300; + +#define dspot17_room_1Set_000940DL_0012E8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_0012E8" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_0012E8[] = dspot17_room_1Set_000940DL_0012E8; + +#define dspot17_room_1Set_000940DL_000E50 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_000E50" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_000E50[] = dspot17_room_1Set_000940DL_000E50; + +#define dspot17_room_1Set_000940DL_007B78 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_007B78" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_007B78[] = dspot17_room_1Set_000940DL_007B78; + +#define dspot17_room_1Set_000940DL_005550 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_005550" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_005550[] = dspot17_room_1Set_000940DL_005550; + +#define dspot17_room_1Set_000940DL_00AD00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_00AD00" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_00AD00[] = dspot17_room_1Set_000940DL_00AD00; + +#define dspot17_room_1Set_000940DL_00B4A8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_00B4A8" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_00B4A8[] = dspot17_room_1Set_000940DL_00B4A8; + +#define dspot17_room_1Set_000940DL_002938 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_002938" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_002938[] = dspot17_room_1Set_000940DL_002938; + +#define dspot17_room_1Set_000940DL_003850 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_003850" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_003850[] = dspot17_room_1Set_000940DL_003850; + +#define dspot17_room_1Set_000940DL_001A00 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_001A00" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_001A00[] = dspot17_room_1Set_000940DL_001A00; + +#define dspot17_room_1Set_000940DL_00A908 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_00A908" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_00A908[] = dspot17_room_1Set_000940DL_00A908; + +#define dspot17_room_1Set_000940DL_008F98 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_008F98" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_008F98[] = dspot17_room_1Set_000940DL_008F98; + +#define dspot17_room_1Set_000940DL_009AA0 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_009AA0" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_009AA0[] = dspot17_room_1Set_000940DL_009AA0; + +#define dspot17_room_1Set_000940DL_004AC8 "__OTR__scenes/nonmq/spot17_scene/spot17_room_1Set_000940DL_004AC8" +static const ALIGN_ASSET(2) char spot17_room_1Set_000940DL_004AC8[] = dspot17_room_1Set_000940DL_004AC8; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot17/spot17_scene.h b/soh/assets/scenes/overworld/spot17/spot17_scene.h index fd8b1f2fb..0429910ce 100644 --- a/soh/assets/scenes/overworld/spot17/spot17_scene.h +++ b/soh/assets/scenes/overworld/spot17/spot17_scene.h @@ -1,173 +1,81 @@ #pragma once + +#include "align_asset_macro.h" + #define dgDeathMountainCraterBoleroCs "__OTR__scenes/nonmq/spot17_scene/gDeathMountainCraterBoleroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterBoleroCs[] = dgDeathMountainCraterBoleroCs; -#else -static const char gDeathMountainCraterBoleroCs[] __attribute__((aligned (2))) = dgDeathMountainCraterBoleroCs; -#endif - +static const ALIGN_ASSET(2) char gDeathMountainCraterBoleroCs[] = dgDeathMountainCraterBoleroCs; + #define dgDeathMountainCraterIntroCs "__OTR__scenes/nonmq/spot17_scene/gDeathMountainCraterIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterIntroCs[] = dgDeathMountainCraterIntroCs; -#else -static const char gDeathMountainCraterIntroCs[] __attribute__((aligned (2))) = dgDeathMountainCraterIntroCs; -#endif - +static const ALIGN_ASSET(2) char gDeathMountainCraterIntroCs[] = dgDeathMountainCraterIntroCs; + #define dspot17_sceneCollisionHeader_0045A4 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneCollisionHeader_0045A4" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneCollisionHeader_0045A4[] = dspot17_sceneCollisionHeader_0045A4; -#else -static const char spot17_sceneCollisionHeader_0045A4[] __attribute__((aligned (2))) = dspot17_sceneCollisionHeader_0045A4; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneCollisionHeader_0045A4[] = dspot17_sceneCollisionHeader_0045A4; + #define dspot17_sceneTex_007AD8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_007AD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_007AD8[] = dspot17_sceneTex_007AD8; -#else -static const char spot17_sceneTex_007AD8[] __attribute__((aligned (2))) = dspot17_sceneTex_007AD8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_007AD8[] = dspot17_sceneTex_007AD8; + #define dspot17_sceneTLUT_007890 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTLUT_007890" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTLUT_007890[] = dspot17_sceneTLUT_007890; -#else -static const char spot17_sceneTLUT_007890[] __attribute__((aligned (2))) = dspot17_sceneTLUT_007890; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTLUT_007890[] = dspot17_sceneTLUT_007890; + #define dspot17_sceneTex_00D6D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00D6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00D6D8[] = dspot17_sceneTex_00D6D8; -#else -static const char spot17_sceneTex_00D6D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00D6D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00D6D8[] = dspot17_sceneTex_00D6D8; + #define dspot17_sceneTex_00F8D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00F8D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00F8D8[] = dspot17_sceneTex_00F8D8; -#else -static const char spot17_sceneTex_00F8D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00F8D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00F8D8[] = dspot17_sceneTex_00F8D8; + #define dspot17_sceneTex_00F0D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00F0D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00F0D8[] = dspot17_sceneTex_00F0D8; -#else -static const char spot17_sceneTex_00F0D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00F0D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00F0D8[] = dspot17_sceneTex_00F0D8; + #define dspot17_sceneTex_00BED8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00BED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00BED8[] = dspot17_sceneTex_00BED8; -#else -static const char spot17_sceneTex_00BED8[] __attribute__((aligned (2))) = dspot17_sceneTex_00BED8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00BED8[] = dspot17_sceneTex_00BED8; + #define dspot17_sceneTex_00A6D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00A6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00A6D8[] = dspot17_sceneTex_00A6D8; -#else -static const char spot17_sceneTex_00A6D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00A6D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00A6D8[] = dspot17_sceneTex_00A6D8; + #define dspot17_sceneTex_009ED8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_009ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_009ED8[] = dspot17_sceneTex_009ED8; -#else -static const char spot17_sceneTex_009ED8[] __attribute__((aligned (2))) = dspot17_sceneTex_009ED8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_009ED8[] = dspot17_sceneTex_009ED8; + #define dspot17_sceneTex_00FCD8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00FCD8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00FCD8[] = dspot17_sceneTex_00FCD8; -#else -static const char spot17_sceneTex_00FCD8[] __attribute__((aligned (2))) = dspot17_sceneTex_00FCD8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00FCD8[] = dspot17_sceneTex_00FCD8; + #define dspot17_sceneTex_00D8D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00D8D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00D8D8[] = dspot17_sceneTex_00D8D8; -#else -static const char spot17_sceneTex_00D8D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00D8D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00D8D8[] = dspot17_sceneTex_00D8D8; + #define dspot17_sceneTex_008ED8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_008ED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_008ED8[] = dspot17_sceneTex_008ED8; -#else -static const char spot17_sceneTex_008ED8[] __attribute__((aligned (2))) = dspot17_sceneTex_008ED8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_008ED8[] = dspot17_sceneTex_008ED8; + #define dspot17_sceneTex_00E0D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00E0D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00E0D8[] = dspot17_sceneTex_00E0D8; -#else -static const char spot17_sceneTex_00E0D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00E0D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00E0D8[] = dspot17_sceneTex_00E0D8; + #define dspot17_sceneTLUT_007AB8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTLUT_007AB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTLUT_007AB8[] = dspot17_sceneTLUT_007AB8; -#else -static const char spot17_sceneTLUT_007AB8[] __attribute__((aligned (2))) = dspot17_sceneTLUT_007AB8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTLUT_007AB8[] = dspot17_sceneTLUT_007AB8; + #define dspot17_sceneTex_00B6D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00B6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00B6D8[] = dspot17_sceneTex_00B6D8; -#else -static const char spot17_sceneTex_00B6D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00B6D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00B6D8[] = dspot17_sceneTex_00B6D8; + #define dspot17_sceneTex_00E8D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00E8D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00E8D8[] = dspot17_sceneTex_00E8D8; -#else -static const char spot17_sceneTex_00E8D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00E8D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00E8D8[] = dspot17_sceneTex_00E8D8; + #define dspot17_sceneTex_00AED8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00AED8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00AED8[] = dspot17_sceneTex_00AED8; -#else -static const char spot17_sceneTex_00AED8[] __attribute__((aligned (2))) = dspot17_sceneTex_00AED8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_00AED8[] = dspot17_sceneTex_00AED8; + #define dspot17_sceneTLUT_007A98 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTLUT_007A98" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTLUT_007A98[] = dspot17_sceneTLUT_007A98; -#else -static const char spot17_sceneTLUT_007A98[] __attribute__((aligned (2))) = dspot17_sceneTLUT_007A98; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTLUT_007A98[] = dspot17_sceneTLUT_007A98; + #define dspot17_sceneTex_0096D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_0096D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_0096D8[] = dspot17_sceneTex_0096D8; -#else -static const char spot17_sceneTex_0096D8[] __attribute__((aligned (2))) = dspot17_sceneTex_0096D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_0096D8[] = dspot17_sceneTex_0096D8; + #define dspot17_sceneTex_0082D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_0082D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_0082D8[] = dspot17_sceneTex_0082D8; -#else -static const char spot17_sceneTex_0082D8[] __attribute__((aligned (2))) = dspot17_sceneTex_0082D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_0082D8[] = dspot17_sceneTex_0082D8; + #define dspot17_sceneTex_0086D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_0086D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_0086D8[] = dspot17_sceneTex_0086D8; -#else -static const char spot17_sceneTex_0086D8[] __attribute__((aligned (2))) = dspot17_sceneTex_0086D8; -#endif - +static const ALIGN_ASSET(2) char spot17_sceneTex_0086D8[] = dspot17_sceneTex_0086D8; + #define dspot17_sceneTex_00C6D8 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneTex_00C6D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot17_sceneTex_00C6D8[] = dspot17_sceneTex_00C6D8; -#else -static const char spot17_sceneTex_00C6D8[] __attribute__((aligned (2))) = dspot17_sceneTex_00C6D8; -#endif - -#define dspot17_sceneCollisionHeader_0045A4 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneCollisionHeader_0045A4" -#define dspot17_sceneCollisionHeader_0045A4 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneCollisionHeader_0045A4" +static const ALIGN_ASSET(2) char spot17_sceneTex_00C6D8[] = dspot17_sceneTex_00C6D8; + #define dspot17_sceneCollisionHeader_0045A4 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneCollisionHeader_0045A4" +#define dspot17_sceneCollisionHeader_0045A4 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneCollisionHeader_0045A4" + +#define dspot17_sceneCollisionHeader_0045A4 "__OTR__scenes/nonmq/spot17_scene/spot17_sceneCollisionHeader_0045A4" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot18/spot18_room_0.h b/soh/assets/scenes/overworld/spot18/spot18_room_0.h index f3a9cfe35..b86782686 100644 --- a/soh/assets/scenes/overworld/spot18/spot18_room_0.h +++ b/soh/assets/scenes/overworld/spot18/spot18_room_0.h @@ -1,240 +1,105 @@ #pragma once -#define dspot18_room_0DL_003238 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0DL_003238" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0DL_003238[] = dspot18_room_0DL_003238; -#else -static const char spot18_room_0DL_003238[] __attribute__((aligned (2))) = dspot18_room_0DL_003238; -#endif - -#define dspot18_room_0Tex_009960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_009960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_009960[] = dspot18_room_0Tex_009960; -#else -static const char spot18_room_0Tex_009960[] __attribute__((aligned (2))) = dspot18_room_0Tex_009960; -#endif - -#define dspot18_room_0Tex_00C160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00C160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00C160[] = dspot18_room_0Tex_00C160; -#else -static const char spot18_room_0Tex_00C160[] __attribute__((aligned (2))) = dspot18_room_0Tex_00C160; -#endif - -#define dspot18_room_0Tex_00A960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00A960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00A960[] = dspot18_room_0Tex_00A960; -#else -static const char spot18_room_0Tex_00A960[] __attribute__((aligned (2))) = dspot18_room_0Tex_00A960; -#endif - -#define dspot18_room_0Tex_009160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_009160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_009160[] = dspot18_room_0Tex_009160; -#else -static const char spot18_room_0Tex_009160[] __attribute__((aligned (2))) = dspot18_room_0Tex_009160; -#endif - -#define dspot18_room_0Tex_00B960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00B960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00B960[] = dspot18_room_0Tex_00B960; -#else -static const char spot18_room_0Tex_00B960[] __attribute__((aligned (2))) = dspot18_room_0Tex_00B960; -#endif - -#define dspot18_room_0Tex_006960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_006960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_006960[] = dspot18_room_0Tex_006960; -#else -static const char spot18_room_0Tex_006960[] __attribute__((aligned (2))) = dspot18_room_0Tex_006960; -#endif - -#define dspot18_room_0Tex_008960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_008960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_008960[] = dspot18_room_0Tex_008960; -#else -static const char spot18_room_0Tex_008960[] __attribute__((aligned (2))) = dspot18_room_0Tex_008960; -#endif - -#define dspot18_room_0Tex_005960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_005960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_005960[] = dspot18_room_0Tex_005960; -#else -static const char spot18_room_0Tex_005960[] __attribute__((aligned (2))) = dspot18_room_0Tex_005960; -#endif - -#define dspot18_room_0Tex_00B160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00B160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00B160[] = dspot18_room_0Tex_00B160; -#else -static const char spot18_room_0Tex_00B160[] __attribute__((aligned (2))) = dspot18_room_0Tex_00B160; -#endif - -#define dspot18_room_0Tex_007960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_007960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_007960[] = dspot18_room_0Tex_007960; -#else -static const char spot18_room_0Tex_007960[] __attribute__((aligned (2))) = dspot18_room_0Tex_007960; -#endif - -#define dspot18_room_0Tex_008160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_008160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_008160[] = dspot18_room_0Tex_008160; -#else -static const char spot18_room_0Tex_008160[] __attribute__((aligned (2))) = dspot18_room_0Tex_008160; -#endif - -#define dspot18_room_0Tex_00A160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00A160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00A160[] = dspot18_room_0Tex_00A160; -#else -static const char spot18_room_0Tex_00A160[] __attribute__((aligned (2))) = dspot18_room_0Tex_00A160; -#endif - -#define dspot18_room_0Tex_00C960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00C960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00C960[] = dspot18_room_0Tex_00C960; -#else -static const char spot18_room_0Tex_00C960[] __attribute__((aligned (2))) = dspot18_room_0Tex_00C960; -#endif - -#define dspot18_room_0Tex_007160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_007160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_007160[] = dspot18_room_0Tex_007160; -#else -static const char spot18_room_0Tex_007160[] __attribute__((aligned (2))) = dspot18_room_0Tex_007160; -#endif - -#define dspot18_room_0Tex_004960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_004960" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_004960[] = dspot18_room_0Tex_004960; -#else -static const char spot18_room_0Tex_004960[] __attribute__((aligned (2))) = dspot18_room_0Tex_004960; -#endif - -#define dspot18_room_0Tex_005560 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_005560" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_005560[] = dspot18_room_0Tex_005560; -#else -static const char spot18_room_0Tex_005560[] __attribute__((aligned (2))) = dspot18_room_0Tex_005560; -#endif - -#define dspot18_room_0Tex_005160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_005160" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_005160[] = dspot18_room_0Tex_005160; -#else -static const char spot18_room_0Tex_005160[] __attribute__((aligned (2))) = dspot18_room_0Tex_005160; -#endif - -#define dspot18_room_0DL_00DC80 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0DL_00DC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0DL_00DC80[] = dspot18_room_0DL_00DC80; -#else -static const char spot18_room_0DL_00DC80[] __attribute__((aligned (2))) = dspot18_room_0DL_00DC80; -#endif - -#define dspot18_room_0Tex_00EFC8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00EFC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00EFC8[] = dspot18_room_0Tex_00EFC8; -#else -static const char spot18_room_0Tex_00EFC8[] __attribute__((aligned (2))) = dspot18_room_0Tex_00EFC8; -#endif - -#define dspot18_room_0Tex_00FFC8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00FFC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00FFC8[] = dspot18_room_0Tex_00FFC8; -#else -static const char spot18_room_0Tex_00FFC8[] __attribute__((aligned (2))) = dspot18_room_0Tex_00FFC8; -#endif - -#define dspot18_room_0Tex_0117C8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_0117C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_0117C8[] = dspot18_room_0Tex_0117C8; -#else -static const char spot18_room_0Tex_0117C8[] __attribute__((aligned (2))) = dspot18_room_0Tex_0117C8; -#endif - -#define dspot18_room_0Tex_0107C8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_0107C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_0107C8[] = dspot18_room_0Tex_0107C8; -#else -static const char spot18_room_0Tex_0107C8[] __attribute__((aligned (2))) = dspot18_room_0Tex_0107C8; -#endif - -#define dspot18_room_0Tex_00DFC8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00DFC8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Tex_00DFC8[] = dspot18_room_0Tex_00DFC8; -#else -static const char spot18_room_0Tex_00DFC8[] __attribute__((aligned (2))) = dspot18_room_0Tex_00DFC8; -#endif - -#define dspot18_room_0DL_0013E0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0DL_0013E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0DL_0013E0[] = dspot18_room_0DL_0013E0; -#else -static const char spot18_room_0DL_0013E0[] __attribute__((aligned (2))) = dspot18_room_0DL_0013E0; -#endif - -#define dspot18_room_0Set_0003C0DL_003238 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_0003C0DL_003238" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_0003C0DL_003238[] = dspot18_room_0Set_0003C0DL_003238; -#else -static const char spot18_room_0Set_0003C0DL_003238[] __attribute__((aligned (2))) = dspot18_room_0Set_0003C0DL_003238; -#endif - -#define dspot18_room_0Set_0003C0DL_00DC80 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_0003C0DL_00DC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_0003C0DL_00DC80[] = dspot18_room_0Set_0003C0DL_00DC80; -#else -static const char spot18_room_0Set_0003C0DL_00DC80[] __attribute__((aligned (2))) = dspot18_room_0Set_0003C0DL_00DC80; -#endif - -#define dspot18_room_0Set_0003C0DL_0013E0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_0003C0DL_0013E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_0003C0DL_0013E0[] = dspot18_room_0Set_0003C0DL_0013E0; -#else -static const char spot18_room_0Set_0003C0DL_0013E0[] __attribute__((aligned (2))) = dspot18_room_0Set_0003C0DL_0013E0; -#endif - -#define dspot18_room_0Set_000730DL_003238 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000730DL_003238" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_000730DL_003238[] = dspot18_room_0Set_000730DL_003238; -#else -static const char spot18_room_0Set_000730DL_003238[] __attribute__((aligned (2))) = dspot18_room_0Set_000730DL_003238; -#endif - -#define dspot18_room_0Set_000730DL_00DC80 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000730DL_00DC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_000730DL_00DC80[] = dspot18_room_0Set_000730DL_00DC80; -#else -static const char spot18_room_0Set_000730DL_00DC80[] __attribute__((aligned (2))) = dspot18_room_0Set_000730DL_00DC80; -#endif - -#define dspot18_room_0Set_000730DL_0013E0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000730DL_0013E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_000730DL_0013E0[] = dspot18_room_0Set_000730DL_0013E0; -#else -static const char spot18_room_0Set_000730DL_0013E0[] __attribute__((aligned (2))) = dspot18_room_0Set_000730DL_0013E0; -#endif - -#define dspot18_room_0Set_000D10DL_003238 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000D10DL_003238" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_000D10DL_003238[] = dspot18_room_0Set_000D10DL_003238; -#else -static const char spot18_room_0Set_000D10DL_003238[] __attribute__((aligned (2))) = dspot18_room_0Set_000D10DL_003238; -#endif - -#define dspot18_room_0Set_000D10DL_00DC80 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000D10DL_00DC80" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_000D10DL_00DC80[] = dspot18_room_0Set_000D10DL_00DC80; -#else -static const char spot18_room_0Set_000D10DL_00DC80[] __attribute__((aligned (2))) = dspot18_room_0Set_000D10DL_00DC80; -#endif - -#define dspot18_room_0Set_000D10DL_0013E0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000D10DL_0013E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_0Set_000D10DL_0013E0[] = dspot18_room_0Set_000D10DL_0013E0; -#else -static const char spot18_room_0Set_000D10DL_0013E0[] __attribute__((aligned (2))) = dspot18_room_0Set_000D10DL_0013E0; -#endif - +#include "align_asset_macro.h" + +#define dspot18_room_0DL_003238 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0DL_003238" +static const ALIGN_ASSET(2) char spot18_room_0DL_003238[] = dspot18_room_0DL_003238; + +#define dspot18_room_0Tex_009960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_009960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_009960[] = dspot18_room_0Tex_009960; + +#define dspot18_room_0Tex_00C160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00C160" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00C160[] = dspot18_room_0Tex_00C160; + +#define dspot18_room_0Tex_00A960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00A960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00A960[] = dspot18_room_0Tex_00A960; + +#define dspot18_room_0Tex_009160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_009160" +static const ALIGN_ASSET(2) char spot18_room_0Tex_009160[] = dspot18_room_0Tex_009160; + +#define dspot18_room_0Tex_00B960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00B960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00B960[] = dspot18_room_0Tex_00B960; + +#define dspot18_room_0Tex_006960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_006960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_006960[] = dspot18_room_0Tex_006960; + +#define dspot18_room_0Tex_008960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_008960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_008960[] = dspot18_room_0Tex_008960; + +#define dspot18_room_0Tex_005960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_005960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_005960[] = dspot18_room_0Tex_005960; + +#define dspot18_room_0Tex_00B160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00B160" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00B160[] = dspot18_room_0Tex_00B160; + +#define dspot18_room_0Tex_007960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_007960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_007960[] = dspot18_room_0Tex_007960; + +#define dspot18_room_0Tex_008160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_008160" +static const ALIGN_ASSET(2) char spot18_room_0Tex_008160[] = dspot18_room_0Tex_008160; + +#define dspot18_room_0Tex_00A160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00A160" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00A160[] = dspot18_room_0Tex_00A160; + +#define dspot18_room_0Tex_00C960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00C960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00C960[] = dspot18_room_0Tex_00C960; + +#define dspot18_room_0Tex_007160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_007160" +static const ALIGN_ASSET(2) char spot18_room_0Tex_007160[] = dspot18_room_0Tex_007160; + +#define dspot18_room_0Tex_004960 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_004960" +static const ALIGN_ASSET(2) char spot18_room_0Tex_004960[] = dspot18_room_0Tex_004960; + +#define dspot18_room_0Tex_005560 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_005560" +static const ALIGN_ASSET(2) char spot18_room_0Tex_005560[] = dspot18_room_0Tex_005560; + +#define dspot18_room_0Tex_005160 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_005160" +static const ALIGN_ASSET(2) char spot18_room_0Tex_005160[] = dspot18_room_0Tex_005160; + +#define dspot18_room_0DL_00DC80 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0DL_00DC80" +static const ALIGN_ASSET(2) char spot18_room_0DL_00DC80[] = dspot18_room_0DL_00DC80; + +#define dspot18_room_0Tex_00EFC8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00EFC8" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00EFC8[] = dspot18_room_0Tex_00EFC8; + +#define dspot18_room_0Tex_00FFC8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00FFC8" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00FFC8[] = dspot18_room_0Tex_00FFC8; + +#define dspot18_room_0Tex_0117C8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_0117C8" +static const ALIGN_ASSET(2) char spot18_room_0Tex_0117C8[] = dspot18_room_0Tex_0117C8; + +#define dspot18_room_0Tex_0107C8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_0107C8" +static const ALIGN_ASSET(2) char spot18_room_0Tex_0107C8[] = dspot18_room_0Tex_0107C8; + +#define dspot18_room_0Tex_00DFC8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Tex_00DFC8" +static const ALIGN_ASSET(2) char spot18_room_0Tex_00DFC8[] = dspot18_room_0Tex_00DFC8; + +#define dspot18_room_0DL_0013E0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0DL_0013E0" +static const ALIGN_ASSET(2) char spot18_room_0DL_0013E0[] = dspot18_room_0DL_0013E0; + +#define dspot18_room_0Set_0003C0DL_003238 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_0003C0DL_003238" +static const ALIGN_ASSET(2) char spot18_room_0Set_0003C0DL_003238[] = dspot18_room_0Set_0003C0DL_003238; + +#define dspot18_room_0Set_0003C0DL_00DC80 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_0003C0DL_00DC80" +static const ALIGN_ASSET(2) char spot18_room_0Set_0003C0DL_00DC80[] = dspot18_room_0Set_0003C0DL_00DC80; + +#define dspot18_room_0Set_0003C0DL_0013E0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_0003C0DL_0013E0" +static const ALIGN_ASSET(2) char spot18_room_0Set_0003C0DL_0013E0[] = dspot18_room_0Set_0003C0DL_0013E0; + +#define dspot18_room_0Set_000730DL_003238 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000730DL_003238" +static const ALIGN_ASSET(2) char spot18_room_0Set_000730DL_003238[] = dspot18_room_0Set_000730DL_003238; + +#define dspot18_room_0Set_000730DL_00DC80 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000730DL_00DC80" +static const ALIGN_ASSET(2) char spot18_room_0Set_000730DL_00DC80[] = dspot18_room_0Set_000730DL_00DC80; + +#define dspot18_room_0Set_000730DL_0013E0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000730DL_0013E0" +static const ALIGN_ASSET(2) char spot18_room_0Set_000730DL_0013E0[] = dspot18_room_0Set_000730DL_0013E0; + +#define dspot18_room_0Set_000D10DL_003238 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000D10DL_003238" +static const ALIGN_ASSET(2) char spot18_room_0Set_000D10DL_003238[] = dspot18_room_0Set_000D10DL_003238; + +#define dspot18_room_0Set_000D10DL_00DC80 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000D10DL_00DC80" +static const ALIGN_ASSET(2) char spot18_room_0Set_000D10DL_00DC80[] = dspot18_room_0Set_000D10DL_00DC80; + +#define dspot18_room_0Set_000D10DL_0013E0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_0Set_000D10DL_0013E0" +static const ALIGN_ASSET(2) char spot18_room_0Set_000D10DL_0013E0[] = dspot18_room_0Set_000D10DL_0013E0; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot18/spot18_room_1.h b/soh/assets/scenes/overworld/spot18/spot18_room_1.h index fd4ffab7b..a2222c807 100644 --- a/soh/assets/scenes/overworld/spot18/spot18_room_1.h +++ b/soh/assets/scenes/overworld/spot18/spot18_room_1.h @@ -1,261 +1,114 @@ #pragma once -#define dspot18_room_1DL_001A38 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_001A38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1DL_001A38[] = dspot18_room_1DL_001A38; -#else -static const char spot18_room_1DL_001A38[] __attribute__((aligned (2))) = dspot18_room_1DL_001A38; -#endif - -#define dspot18_room_1DL_0059F0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_0059F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1DL_0059F0[] = dspot18_room_1DL_0059F0; -#else -static const char spot18_room_1DL_0059F0[] __attribute__((aligned (2))) = dspot18_room_1DL_0059F0; -#endif - -#define dspot18_room_1DL_001770 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_001770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1DL_001770[] = dspot18_room_1DL_001770; -#else -static const char spot18_room_1DL_001770[] __attribute__((aligned (2))) = dspot18_room_1DL_001770; -#endif - -#define dspot18_room_1Tex_003068 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_003068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Tex_003068[] = dspot18_room_1Tex_003068; -#else -static const char spot18_room_1Tex_003068[] __attribute__((aligned (2))) = dspot18_room_1Tex_003068; -#endif - -#define dspot18_room_1DL_001E60 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_001E60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1DL_001E60[] = dspot18_room_1DL_001E60; -#else -static const char spot18_room_1DL_001E60[] __attribute__((aligned (2))) = dspot18_room_1DL_001E60; -#endif - -#define dspot18_room_1Tex_004868 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_004868" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Tex_004868[] = dspot18_room_1Tex_004868; -#else -static const char spot18_room_1Tex_004868[] __attribute__((aligned (2))) = dspot18_room_1Tex_004868; -#endif - -#define dspot18_room_1DL_005CC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_005CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1DL_005CC0[] = dspot18_room_1DL_005CC0; -#else -static const char spot18_room_1DL_005CC0[] __attribute__((aligned (2))) = dspot18_room_1DL_005CC0; -#endif - -#define dspot18_room_1Tex_005E00 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_005E00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Tex_005E00[] = dspot18_room_1Tex_005E00; -#else -static const char spot18_room_1Tex_005E00[] __attribute__((aligned (2))) = dspot18_room_1Tex_005E00; -#endif - -#define dspot18_room_1DL_0007D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_0007D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1DL_0007D0[] = dspot18_room_1DL_0007D0; -#else -static const char spot18_room_1DL_0007D0[] __attribute__((aligned (2))) = dspot18_room_1DL_0007D0; -#endif - -#define dspot18_room_1Tex_004068 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_004068" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Tex_004068[] = dspot18_room_1Tex_004068; -#else -static const char spot18_room_1Tex_004068[] __attribute__((aligned (2))) = dspot18_room_1Tex_004068; -#endif - -#define dspot18_room_1DL_001398 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_001398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1DL_001398[] = dspot18_room_1DL_001398; -#else -static const char spot18_room_1DL_001398[] __attribute__((aligned (2))) = dspot18_room_1DL_001398; -#endif - -#define dspot18_room_1DL_002660 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_002660" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1DL_002660[] = dspot18_room_1DL_002660; -#else -static const char spot18_room_1DL_002660[] __attribute__((aligned (2))) = dspot18_room_1DL_002660; -#endif - -#define dspot18_room_1Tex_002868 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_002868" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Tex_002868[] = dspot18_room_1Tex_002868; -#else -static const char spot18_room_1Tex_002868[] __attribute__((aligned (2))) = dspot18_room_1Tex_002868; -#endif - -#define dspot18_room_1Set_000170DL_001A38 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_001A38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000170DL_001A38[] = dspot18_room_1Set_000170DL_001A38; -#else -static const char spot18_room_1Set_000170DL_001A38[] __attribute__((aligned (2))) = dspot18_room_1Set_000170DL_001A38; -#endif - -#define dspot18_room_1Set_000170DL_0059F0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_0059F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000170DL_0059F0[] = dspot18_room_1Set_000170DL_0059F0; -#else -static const char spot18_room_1Set_000170DL_0059F0[] __attribute__((aligned (2))) = dspot18_room_1Set_000170DL_0059F0; -#endif - -#define dspot18_room_1Set_000170DL_001770 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_001770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000170DL_001770[] = dspot18_room_1Set_000170DL_001770; -#else -static const char spot18_room_1Set_000170DL_001770[] __attribute__((aligned (2))) = dspot18_room_1Set_000170DL_001770; -#endif - -#define dspot18_room_1Set_000170DL_001E60 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_001E60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000170DL_001E60[] = dspot18_room_1Set_000170DL_001E60; -#else -static const char spot18_room_1Set_000170DL_001E60[] __attribute__((aligned (2))) = dspot18_room_1Set_000170DL_001E60; -#endif - -#define dspot18_room_1Set_000170DL_005CC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_005CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000170DL_005CC0[] = dspot18_room_1Set_000170DL_005CC0; -#else -static const char spot18_room_1Set_000170DL_005CC0[] __attribute__((aligned (2))) = dspot18_room_1Set_000170DL_005CC0; -#endif - -#define dspot18_room_1Set_000170DL_0007D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_0007D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000170DL_0007D0[] = dspot18_room_1Set_000170DL_0007D0; -#else -static const char spot18_room_1Set_000170DL_0007D0[] __attribute__((aligned (2))) = dspot18_room_1Set_000170DL_0007D0; -#endif - -#define dspot18_room_1Set_000170DL_001398 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_001398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000170DL_001398[] = dspot18_room_1Set_000170DL_001398; -#else -static const char spot18_room_1Set_000170DL_001398[] __attribute__((aligned (2))) = dspot18_room_1Set_000170DL_001398; -#endif - -#define dspot18_room_1Set_000170DL_002660 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_002660" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000170DL_002660[] = dspot18_room_1Set_000170DL_002660; -#else -static const char spot18_room_1Set_000170DL_002660[] __attribute__((aligned (2))) = dspot18_room_1Set_000170DL_002660; -#endif - -#define dspot18_room_1Set_000230DL_001A38 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_001A38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000230DL_001A38[] = dspot18_room_1Set_000230DL_001A38; -#else -static const char spot18_room_1Set_000230DL_001A38[] __attribute__((aligned (2))) = dspot18_room_1Set_000230DL_001A38; -#endif - -#define dspot18_room_1Set_000230DL_0059F0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_0059F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000230DL_0059F0[] = dspot18_room_1Set_000230DL_0059F0; -#else -static const char spot18_room_1Set_000230DL_0059F0[] __attribute__((aligned (2))) = dspot18_room_1Set_000230DL_0059F0; -#endif - -#define dspot18_room_1Set_000230DL_001770 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_001770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000230DL_001770[] = dspot18_room_1Set_000230DL_001770; -#else -static const char spot18_room_1Set_000230DL_001770[] __attribute__((aligned (2))) = dspot18_room_1Set_000230DL_001770; -#endif - -#define dspot18_room_1Set_000230DL_001E60 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_001E60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000230DL_001E60[] = dspot18_room_1Set_000230DL_001E60; -#else -static const char spot18_room_1Set_000230DL_001E60[] __attribute__((aligned (2))) = dspot18_room_1Set_000230DL_001E60; -#endif - -#define dspot18_room_1Set_000230DL_005CC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_005CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000230DL_005CC0[] = dspot18_room_1Set_000230DL_005CC0; -#else -static const char spot18_room_1Set_000230DL_005CC0[] __attribute__((aligned (2))) = dspot18_room_1Set_000230DL_005CC0; -#endif - -#define dspot18_room_1Set_000230DL_0007D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_0007D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000230DL_0007D0[] = dspot18_room_1Set_000230DL_0007D0; -#else -static const char spot18_room_1Set_000230DL_0007D0[] __attribute__((aligned (2))) = dspot18_room_1Set_000230DL_0007D0; -#endif - -#define dspot18_room_1Set_000230DL_001398 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_001398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000230DL_001398[] = dspot18_room_1Set_000230DL_001398; -#else -static const char spot18_room_1Set_000230DL_001398[] __attribute__((aligned (2))) = dspot18_room_1Set_000230DL_001398; -#endif - -#define dspot18_room_1Set_000230DL_002660 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_002660" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000230DL_002660[] = dspot18_room_1Set_000230DL_002660; -#else -static const char spot18_room_1Set_000230DL_002660[] __attribute__((aligned (2))) = dspot18_room_1Set_000230DL_002660; -#endif - -#define dspot18_room_1Set_000300DL_001A38 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_001A38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000300DL_001A38[] = dspot18_room_1Set_000300DL_001A38; -#else -static const char spot18_room_1Set_000300DL_001A38[] __attribute__((aligned (2))) = dspot18_room_1Set_000300DL_001A38; -#endif - -#define dspot18_room_1Set_000300DL_0059F0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_0059F0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000300DL_0059F0[] = dspot18_room_1Set_000300DL_0059F0; -#else -static const char spot18_room_1Set_000300DL_0059F0[] __attribute__((aligned (2))) = dspot18_room_1Set_000300DL_0059F0; -#endif - -#define dspot18_room_1Set_000300DL_001770 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_001770" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000300DL_001770[] = dspot18_room_1Set_000300DL_001770; -#else -static const char spot18_room_1Set_000300DL_001770[] __attribute__((aligned (2))) = dspot18_room_1Set_000300DL_001770; -#endif - -#define dspot18_room_1Set_000300DL_001E60 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_001E60" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000300DL_001E60[] = dspot18_room_1Set_000300DL_001E60; -#else -static const char spot18_room_1Set_000300DL_001E60[] __attribute__((aligned (2))) = dspot18_room_1Set_000300DL_001E60; -#endif - -#define dspot18_room_1Set_000300DL_005CC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_005CC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000300DL_005CC0[] = dspot18_room_1Set_000300DL_005CC0; -#else -static const char spot18_room_1Set_000300DL_005CC0[] __attribute__((aligned (2))) = dspot18_room_1Set_000300DL_005CC0; -#endif - -#define dspot18_room_1Set_000300DL_0007D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_0007D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000300DL_0007D0[] = dspot18_room_1Set_000300DL_0007D0; -#else -static const char spot18_room_1Set_000300DL_0007D0[] __attribute__((aligned (2))) = dspot18_room_1Set_000300DL_0007D0; -#endif - -#define dspot18_room_1Set_000300DL_001398 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_001398" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000300DL_001398[] = dspot18_room_1Set_000300DL_001398; -#else -static const char spot18_room_1Set_000300DL_001398[] __attribute__((aligned (2))) = dspot18_room_1Set_000300DL_001398; -#endif - -#define dspot18_room_1Set_000300DL_002660 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_002660" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_1Set_000300DL_002660[] = dspot18_room_1Set_000300DL_002660; -#else -static const char spot18_room_1Set_000300DL_002660[] __attribute__((aligned (2))) = dspot18_room_1Set_000300DL_002660; -#endif - +#include "align_asset_macro.h" + +#define dspot18_room_1DL_001A38 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_001A38" +static const ALIGN_ASSET(2) char spot18_room_1DL_001A38[] = dspot18_room_1DL_001A38; + +#define dspot18_room_1DL_0059F0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_0059F0" +static const ALIGN_ASSET(2) char spot18_room_1DL_0059F0[] = dspot18_room_1DL_0059F0; + +#define dspot18_room_1DL_001770 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_001770" +static const ALIGN_ASSET(2) char spot18_room_1DL_001770[] = dspot18_room_1DL_001770; + +#define dspot18_room_1Tex_003068 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_003068" +static const ALIGN_ASSET(2) char spot18_room_1Tex_003068[] = dspot18_room_1Tex_003068; + +#define dspot18_room_1DL_001E60 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_001E60" +static const ALIGN_ASSET(2) char spot18_room_1DL_001E60[] = dspot18_room_1DL_001E60; + +#define dspot18_room_1Tex_004868 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_004868" +static const ALIGN_ASSET(2) char spot18_room_1Tex_004868[] = dspot18_room_1Tex_004868; + +#define dspot18_room_1DL_005CC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_005CC0" +static const ALIGN_ASSET(2) char spot18_room_1DL_005CC0[] = dspot18_room_1DL_005CC0; + +#define dspot18_room_1Tex_005E00 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_005E00" +static const ALIGN_ASSET(2) char spot18_room_1Tex_005E00[] = dspot18_room_1Tex_005E00; + +#define dspot18_room_1DL_0007D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_0007D0" +static const ALIGN_ASSET(2) char spot18_room_1DL_0007D0[] = dspot18_room_1DL_0007D0; + +#define dspot18_room_1Tex_004068 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_004068" +static const ALIGN_ASSET(2) char spot18_room_1Tex_004068[] = dspot18_room_1Tex_004068; + +#define dspot18_room_1DL_001398 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_001398" +static const ALIGN_ASSET(2) char spot18_room_1DL_001398[] = dspot18_room_1DL_001398; + +#define dspot18_room_1DL_002660 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1DL_002660" +static const ALIGN_ASSET(2) char spot18_room_1DL_002660[] = dspot18_room_1DL_002660; + +#define dspot18_room_1Tex_002868 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Tex_002868" +static const ALIGN_ASSET(2) char spot18_room_1Tex_002868[] = dspot18_room_1Tex_002868; + +#define dspot18_room_1Set_000170DL_001A38 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_001A38" +static const ALIGN_ASSET(2) char spot18_room_1Set_000170DL_001A38[] = dspot18_room_1Set_000170DL_001A38; + +#define dspot18_room_1Set_000170DL_0059F0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_0059F0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000170DL_0059F0[] = dspot18_room_1Set_000170DL_0059F0; + +#define dspot18_room_1Set_000170DL_001770 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_001770" +static const ALIGN_ASSET(2) char spot18_room_1Set_000170DL_001770[] = dspot18_room_1Set_000170DL_001770; + +#define dspot18_room_1Set_000170DL_001E60 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_001E60" +static const ALIGN_ASSET(2) char spot18_room_1Set_000170DL_001E60[] = dspot18_room_1Set_000170DL_001E60; + +#define dspot18_room_1Set_000170DL_005CC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_005CC0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000170DL_005CC0[] = dspot18_room_1Set_000170DL_005CC0; + +#define dspot18_room_1Set_000170DL_0007D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_0007D0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000170DL_0007D0[] = dspot18_room_1Set_000170DL_0007D0; + +#define dspot18_room_1Set_000170DL_001398 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_001398" +static const ALIGN_ASSET(2) char spot18_room_1Set_000170DL_001398[] = dspot18_room_1Set_000170DL_001398; + +#define dspot18_room_1Set_000170DL_002660 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000170DL_002660" +static const ALIGN_ASSET(2) char spot18_room_1Set_000170DL_002660[] = dspot18_room_1Set_000170DL_002660; + +#define dspot18_room_1Set_000230DL_001A38 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_001A38" +static const ALIGN_ASSET(2) char spot18_room_1Set_000230DL_001A38[] = dspot18_room_1Set_000230DL_001A38; + +#define dspot18_room_1Set_000230DL_0059F0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_0059F0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000230DL_0059F0[] = dspot18_room_1Set_000230DL_0059F0; + +#define dspot18_room_1Set_000230DL_001770 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_001770" +static const ALIGN_ASSET(2) char spot18_room_1Set_000230DL_001770[] = dspot18_room_1Set_000230DL_001770; + +#define dspot18_room_1Set_000230DL_001E60 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_001E60" +static const ALIGN_ASSET(2) char spot18_room_1Set_000230DL_001E60[] = dspot18_room_1Set_000230DL_001E60; + +#define dspot18_room_1Set_000230DL_005CC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_005CC0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000230DL_005CC0[] = dspot18_room_1Set_000230DL_005CC0; + +#define dspot18_room_1Set_000230DL_0007D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_0007D0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000230DL_0007D0[] = dspot18_room_1Set_000230DL_0007D0; + +#define dspot18_room_1Set_000230DL_001398 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_001398" +static const ALIGN_ASSET(2) char spot18_room_1Set_000230DL_001398[] = dspot18_room_1Set_000230DL_001398; + +#define dspot18_room_1Set_000230DL_002660 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000230DL_002660" +static const ALIGN_ASSET(2) char spot18_room_1Set_000230DL_002660[] = dspot18_room_1Set_000230DL_002660; + +#define dspot18_room_1Set_000300DL_001A38 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_001A38" +static const ALIGN_ASSET(2) char spot18_room_1Set_000300DL_001A38[] = dspot18_room_1Set_000300DL_001A38; + +#define dspot18_room_1Set_000300DL_0059F0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_0059F0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000300DL_0059F0[] = dspot18_room_1Set_000300DL_0059F0; + +#define dspot18_room_1Set_000300DL_001770 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_001770" +static const ALIGN_ASSET(2) char spot18_room_1Set_000300DL_001770[] = dspot18_room_1Set_000300DL_001770; + +#define dspot18_room_1Set_000300DL_001E60 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_001E60" +static const ALIGN_ASSET(2) char spot18_room_1Set_000300DL_001E60[] = dspot18_room_1Set_000300DL_001E60; + +#define dspot18_room_1Set_000300DL_005CC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_005CC0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000300DL_005CC0[] = dspot18_room_1Set_000300DL_005CC0; + +#define dspot18_room_1Set_000300DL_0007D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_0007D0" +static const ALIGN_ASSET(2) char spot18_room_1Set_000300DL_0007D0[] = dspot18_room_1Set_000300DL_0007D0; + +#define dspot18_room_1Set_000300DL_001398 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_001398" +static const ALIGN_ASSET(2) char spot18_room_1Set_000300DL_001398[] = dspot18_room_1Set_000300DL_001398; + +#define dspot18_room_1Set_000300DL_002660 "__OTR__scenes/nonmq/spot18_scene/spot18_room_1Set_000300DL_002660" +static const ALIGN_ASSET(2) char spot18_room_1Set_000300DL_002660[] = dspot18_room_1Set_000300DL_002660; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot18/spot18_room_2.h b/soh/assets/scenes/overworld/spot18/spot18_room_2.h index 328255dd8..d678e24e7 100644 --- a/soh/assets/scenes/overworld/spot18/spot18_room_2.h +++ b/soh/assets/scenes/overworld/spot18/spot18_room_2.h @@ -1,415 +1,180 @@ #pragma once -#define dspot18_room_2DL_003F10 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_003F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_003F10[] = dspot18_room_2DL_003F10; -#else -static const char spot18_room_2DL_003F10[] __attribute__((aligned (2))) = dspot18_room_2DL_003F10; -#endif - -#define dspot18_room_2Tex_009018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_009018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_009018[] = dspot18_room_2Tex_009018; -#else -static const char spot18_room_2Tex_009018[] __attribute__((aligned (2))) = dspot18_room_2Tex_009018; -#endif - -#define dspot18_room_2DL_00CF58 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_00CF58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_00CF58[] = dspot18_room_2DL_00CF58; -#else -static const char spot18_room_2DL_00CF58[] __attribute__((aligned (2))) = dspot18_room_2DL_00CF58; -#endif - -#define dspot18_room_2Tex_00E1A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00E1A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_00E1A8[] = dspot18_room_2Tex_00E1A8; -#else -static const char spot18_room_2Tex_00E1A8[] __attribute__((aligned (2))) = dspot18_room_2Tex_00E1A8; -#endif - -#define dspot18_room_2DL_004320 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_004320" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_004320[] = dspot18_room_2DL_004320; -#else -static const char spot18_room_2DL_004320[] __attribute__((aligned (2))) = dspot18_room_2DL_004320; -#endif - -#define dspot18_room_2Tex_007818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_007818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_007818[] = dspot18_room_2Tex_007818; -#else -static const char spot18_room_2Tex_007818[] __attribute__((aligned (2))) = dspot18_room_2Tex_007818; -#endif - -#define dspot18_room_2DL_004690 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_004690" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_004690[] = dspot18_room_2DL_004690; -#else -static const char spot18_room_2DL_004690[] __attribute__((aligned (2))) = dspot18_room_2DL_004690; -#endif - -#define dspot18_room_2Tex_008018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_008018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_008018[] = dspot18_room_2Tex_008018; -#else -static const char spot18_room_2Tex_008018[] __attribute__((aligned (2))) = dspot18_room_2Tex_008018; -#endif - -#define dspot18_room_2DL_00D0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_00D0D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_00D0D0[] = dspot18_room_2DL_00D0D0; -#else -static const char spot18_room_2DL_00D0D0[] __attribute__((aligned (2))) = dspot18_room_2DL_00D0D0; -#endif - -#define dspot18_room_2DL_001FE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_001FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_001FE8[] = dspot18_room_2DL_001FE8; -#else -static const char spot18_room_2DL_001FE8[] __attribute__((aligned (2))) = dspot18_room_2DL_001FE8; -#endif - -#define dspot18_room_2Tex_006018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_006018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_006018[] = dspot18_room_2Tex_006018; -#else -static const char spot18_room_2Tex_006018[] __attribute__((aligned (2))) = dspot18_room_2Tex_006018; -#endif - -#define dspot18_room_2Tex_006818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_006818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_006818[] = dspot18_room_2Tex_006818; -#else -static const char spot18_room_2Tex_006818[] __attribute__((aligned (2))) = dspot18_room_2Tex_006818; -#endif - -#define dspot18_room_2DL_003090 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_003090" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_003090[] = dspot18_room_2DL_003090; -#else -static const char spot18_room_2DL_003090[] __attribute__((aligned (2))) = dspot18_room_2DL_003090; -#endif - -#define dspot18_room_2Tex_009818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_009818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_009818[] = dspot18_room_2Tex_009818; -#else -static const char spot18_room_2Tex_009818[] __attribute__((aligned (2))) = dspot18_room_2Tex_009818; -#endif - -#define dspot18_room_2Tex_00A818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00A818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_00A818[] = dspot18_room_2Tex_00A818; -#else -static const char spot18_room_2Tex_00A818[] __attribute__((aligned (2))) = dspot18_room_2Tex_00A818; -#endif - -#define dspot18_room_2Tex_00B018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00B018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_00B018[] = dspot18_room_2Tex_00B018; -#else -static const char spot18_room_2Tex_00B018[] __attribute__((aligned (2))) = dspot18_room_2Tex_00B018; -#endif - -#define dspot18_room_2Tex_008818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_008818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_008818[] = dspot18_room_2Tex_008818; -#else -static const char spot18_room_2Tex_008818[] __attribute__((aligned (2))) = dspot18_room_2Tex_008818; -#endif - -#define dspot18_room_2Tex_004818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_004818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_004818[] = dspot18_room_2Tex_004818; -#else -static const char spot18_room_2Tex_004818[] __attribute__((aligned (2))) = dspot18_room_2Tex_004818; -#endif - -#define dspot18_room_2Tex_007018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_007018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_007018[] = dspot18_room_2Tex_007018; -#else -static const char spot18_room_2Tex_007018[] __attribute__((aligned (2))) = dspot18_room_2Tex_007018; -#endif - -#define dspot18_room_2Tex_00A018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00A018" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_00A018[] = dspot18_room_2Tex_00A018; -#else -static const char spot18_room_2Tex_00A018[] __attribute__((aligned (2))) = dspot18_room_2Tex_00A018; -#endif - -#define dspot18_room_2Tex_00B818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00B818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_00B818[] = dspot18_room_2Tex_00B818; -#else -static const char spot18_room_2Tex_00B818[] __attribute__((aligned (2))) = dspot18_room_2Tex_00B818; -#endif - -#define dspot18_room_2DL_00CBC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_00CBC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_00CBC0[] = dspot18_room_2DL_00CBC0; -#else -static const char spot18_room_2DL_00CBC0[] __attribute__((aligned (2))) = dspot18_room_2DL_00CBC0; -#endif - -#define dspot18_room_2Tex_00F1A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00F1A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_00F1A8[] = dspot18_room_2Tex_00F1A8; -#else -static const char spot18_room_2Tex_00F1A8[] __attribute__((aligned (2))) = dspot18_room_2Tex_00F1A8; -#endif - -#define dspot18_room_2Tex_0109A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_0109A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_0109A8[] = dspot18_room_2Tex_0109A8; -#else -static const char spot18_room_2Tex_0109A8[] __attribute__((aligned (2))) = dspot18_room_2Tex_0109A8; -#endif - -#define dspot18_room_2Tex_00F9A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00F9A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_00F9A8[] = dspot18_room_2Tex_00F9A8; -#else -static const char spot18_room_2Tex_00F9A8[] __attribute__((aligned (2))) = dspot18_room_2Tex_00F9A8; -#endif - -#define dspot18_room_2Tex_00D1A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00D1A8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_00D1A8[] = dspot18_room_2Tex_00D1A8; -#else -static const char spot18_room_2Tex_00D1A8[] __attribute__((aligned (2))) = dspot18_room_2Tex_00D1A8; -#endif - -#define dspot18_room_2DL_0019D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_0019D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_0019D0[] = dspot18_room_2DL_0019D0; -#else -static const char spot18_room_2DL_0019D0[] __attribute__((aligned (2))) = dspot18_room_2DL_0019D0; -#endif - -#define dspot18_room_2Tex_005818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_005818" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Tex_005818[] = dspot18_room_2Tex_005818; -#else -static const char spot18_room_2Tex_005818[] __attribute__((aligned (2))) = dspot18_room_2Tex_005818; -#endif - -#define dspot18_room_2DL_000E30 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_000E30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2DL_000E30[] = dspot18_room_2DL_000E30; -#else -static const char spot18_room_2DL_000E30[] __attribute__((aligned (2))) = dspot18_room_2DL_000E30; -#endif - -#define dspot18_room_2Set_000150DL_003F10 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_003F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_003F10[] = dspot18_room_2Set_000150DL_003F10; -#else -static const char spot18_room_2Set_000150DL_003F10[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_003F10; -#endif - -#define dspot18_room_2Set_000150DL_00CF58 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_00CF58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_00CF58[] = dspot18_room_2Set_000150DL_00CF58; -#else -static const char spot18_room_2Set_000150DL_00CF58[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_00CF58; -#endif - -#define dspot18_room_2Set_000150DL_004320 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_004320" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_004320[] = dspot18_room_2Set_000150DL_004320; -#else -static const char spot18_room_2Set_000150DL_004320[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_004320; -#endif - -#define dspot18_room_2Set_000150DL_004690 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_004690" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_004690[] = dspot18_room_2Set_000150DL_004690; -#else -static const char spot18_room_2Set_000150DL_004690[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_004690; -#endif - -#define dspot18_room_2Set_000150DL_00D0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_00D0D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_00D0D0[] = dspot18_room_2Set_000150DL_00D0D0; -#else -static const char spot18_room_2Set_000150DL_00D0D0[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_00D0D0; -#endif - -#define dspot18_room_2Set_000150DL_001FE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_001FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_001FE8[] = dspot18_room_2Set_000150DL_001FE8; -#else -static const char spot18_room_2Set_000150DL_001FE8[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_001FE8; -#endif - -#define dspot18_room_2Set_000150DL_003090 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_003090" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_003090[] = dspot18_room_2Set_000150DL_003090; -#else -static const char spot18_room_2Set_000150DL_003090[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_003090; -#endif - -#define dspot18_room_2Set_000150DL_00CBC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_00CBC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_00CBC0[] = dspot18_room_2Set_000150DL_00CBC0; -#else -static const char spot18_room_2Set_000150DL_00CBC0[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_00CBC0; -#endif - -#define dspot18_room_2Set_000150DL_0019D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_0019D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_0019D0[] = dspot18_room_2Set_000150DL_0019D0; -#else -static const char spot18_room_2Set_000150DL_0019D0[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_0019D0; -#endif - -#define dspot18_room_2Set_000150DL_000E30 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_000E30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000150DL_000E30[] = dspot18_room_2Set_000150DL_000E30; -#else -static const char spot18_room_2Set_000150DL_000E30[] __attribute__((aligned (2))) = dspot18_room_2Set_000150DL_000E30; -#endif - -#define dspot18_room_2Set_000200DL_003F10 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_003F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_003F10[] = dspot18_room_2Set_000200DL_003F10; -#else -static const char spot18_room_2Set_000200DL_003F10[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_003F10; -#endif - -#define dspot18_room_2Set_000200DL_00CF58 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_00CF58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_00CF58[] = dspot18_room_2Set_000200DL_00CF58; -#else -static const char spot18_room_2Set_000200DL_00CF58[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_00CF58; -#endif - -#define dspot18_room_2Set_000200DL_004320 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_004320" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_004320[] = dspot18_room_2Set_000200DL_004320; -#else -static const char spot18_room_2Set_000200DL_004320[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_004320; -#endif - -#define dspot18_room_2Set_000200DL_004690 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_004690" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_004690[] = dspot18_room_2Set_000200DL_004690; -#else -static const char spot18_room_2Set_000200DL_004690[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_004690; -#endif - -#define dspot18_room_2Set_000200DL_00D0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_00D0D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_00D0D0[] = dspot18_room_2Set_000200DL_00D0D0; -#else -static const char spot18_room_2Set_000200DL_00D0D0[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_00D0D0; -#endif - -#define dspot18_room_2Set_000200DL_001FE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_001FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_001FE8[] = dspot18_room_2Set_000200DL_001FE8; -#else -static const char spot18_room_2Set_000200DL_001FE8[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_001FE8; -#endif - -#define dspot18_room_2Set_000200DL_003090 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_003090" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_003090[] = dspot18_room_2Set_000200DL_003090; -#else -static const char spot18_room_2Set_000200DL_003090[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_003090; -#endif - -#define dspot18_room_2Set_000200DL_00CBC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_00CBC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_00CBC0[] = dspot18_room_2Set_000200DL_00CBC0; -#else -static const char spot18_room_2Set_000200DL_00CBC0[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_00CBC0; -#endif - -#define dspot18_room_2Set_000200DL_0019D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_0019D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_0019D0[] = dspot18_room_2Set_000200DL_0019D0; -#else -static const char spot18_room_2Set_000200DL_0019D0[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_0019D0; -#endif - -#define dspot18_room_2Set_000200DL_000E30 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_000E30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_000200DL_000E30[] = dspot18_room_2Set_000200DL_000E30; -#else -static const char spot18_room_2Set_000200DL_000E30[] __attribute__((aligned (2))) = dspot18_room_2Set_000200DL_000E30; -#endif - -#define dspot18_room_2Set_0002E0DL_003F10 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_003F10" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_003F10[] = dspot18_room_2Set_0002E0DL_003F10; -#else -static const char spot18_room_2Set_0002E0DL_003F10[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_003F10; -#endif - -#define dspot18_room_2Set_0002E0DL_00CF58 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_00CF58" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_00CF58[] = dspot18_room_2Set_0002E0DL_00CF58; -#else -static const char spot18_room_2Set_0002E0DL_00CF58[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_00CF58; -#endif - -#define dspot18_room_2Set_0002E0DL_004320 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_004320" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_004320[] = dspot18_room_2Set_0002E0DL_004320; -#else -static const char spot18_room_2Set_0002E0DL_004320[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_004320; -#endif - -#define dspot18_room_2Set_0002E0DL_004690 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_004690" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_004690[] = dspot18_room_2Set_0002E0DL_004690; -#else -static const char spot18_room_2Set_0002E0DL_004690[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_004690; -#endif - -#define dspot18_room_2Set_0002E0DL_00D0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_00D0D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_00D0D0[] = dspot18_room_2Set_0002E0DL_00D0D0; -#else -static const char spot18_room_2Set_0002E0DL_00D0D0[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_00D0D0; -#endif - -#define dspot18_room_2Set_0002E0DL_001FE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_001FE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_001FE8[] = dspot18_room_2Set_0002E0DL_001FE8; -#else -static const char spot18_room_2Set_0002E0DL_001FE8[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_001FE8; -#endif - -#define dspot18_room_2Set_0002E0DL_003090 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_003090" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_003090[] = dspot18_room_2Set_0002E0DL_003090; -#else -static const char spot18_room_2Set_0002E0DL_003090[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_003090; -#endif - -#define dspot18_room_2Set_0002E0DL_00CBC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_00CBC0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_00CBC0[] = dspot18_room_2Set_0002E0DL_00CBC0; -#else -static const char spot18_room_2Set_0002E0DL_00CBC0[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_00CBC0; -#endif - -#define dspot18_room_2Set_0002E0DL_0019D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_0019D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_0019D0[] = dspot18_room_2Set_0002E0DL_0019D0; -#else -static const char spot18_room_2Set_0002E0DL_0019D0[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_0019D0; -#endif - -#define dspot18_room_2Set_0002E0DL_000E30 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_000E30" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_2Set_0002E0DL_000E30[] = dspot18_room_2Set_0002E0DL_000E30; -#else -static const char spot18_room_2Set_0002E0DL_000E30[] __attribute__((aligned (2))) = dspot18_room_2Set_0002E0DL_000E30; -#endif - +#include "align_asset_macro.h" + +#define dspot18_room_2DL_003F10 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_003F10" +static const ALIGN_ASSET(2) char spot18_room_2DL_003F10[] = dspot18_room_2DL_003F10; + +#define dspot18_room_2Tex_009018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_009018" +static const ALIGN_ASSET(2) char spot18_room_2Tex_009018[] = dspot18_room_2Tex_009018; + +#define dspot18_room_2DL_00CF58 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_00CF58" +static const ALIGN_ASSET(2) char spot18_room_2DL_00CF58[] = dspot18_room_2DL_00CF58; + +#define dspot18_room_2Tex_00E1A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00E1A8" +static const ALIGN_ASSET(2) char spot18_room_2Tex_00E1A8[] = dspot18_room_2Tex_00E1A8; + +#define dspot18_room_2DL_004320 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_004320" +static const ALIGN_ASSET(2) char spot18_room_2DL_004320[] = dspot18_room_2DL_004320; + +#define dspot18_room_2Tex_007818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_007818" +static const ALIGN_ASSET(2) char spot18_room_2Tex_007818[] = dspot18_room_2Tex_007818; + +#define dspot18_room_2DL_004690 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_004690" +static const ALIGN_ASSET(2) char spot18_room_2DL_004690[] = dspot18_room_2DL_004690; + +#define dspot18_room_2Tex_008018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_008018" +static const ALIGN_ASSET(2) char spot18_room_2Tex_008018[] = dspot18_room_2Tex_008018; + +#define dspot18_room_2DL_00D0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_00D0D0" +static const ALIGN_ASSET(2) char spot18_room_2DL_00D0D0[] = dspot18_room_2DL_00D0D0; + +#define dspot18_room_2DL_001FE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_001FE8" +static const ALIGN_ASSET(2) char spot18_room_2DL_001FE8[] = dspot18_room_2DL_001FE8; + +#define dspot18_room_2Tex_006018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_006018" +static const ALIGN_ASSET(2) char spot18_room_2Tex_006018[] = dspot18_room_2Tex_006018; + +#define dspot18_room_2Tex_006818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_006818" +static const ALIGN_ASSET(2) char spot18_room_2Tex_006818[] = dspot18_room_2Tex_006818; + +#define dspot18_room_2DL_003090 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_003090" +static const ALIGN_ASSET(2) char spot18_room_2DL_003090[] = dspot18_room_2DL_003090; + +#define dspot18_room_2Tex_009818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_009818" +static const ALIGN_ASSET(2) char spot18_room_2Tex_009818[] = dspot18_room_2Tex_009818; + +#define dspot18_room_2Tex_00A818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00A818" +static const ALIGN_ASSET(2) char spot18_room_2Tex_00A818[] = dspot18_room_2Tex_00A818; + +#define dspot18_room_2Tex_00B018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00B018" +static const ALIGN_ASSET(2) char spot18_room_2Tex_00B018[] = dspot18_room_2Tex_00B018; + +#define dspot18_room_2Tex_008818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_008818" +static const ALIGN_ASSET(2) char spot18_room_2Tex_008818[] = dspot18_room_2Tex_008818; + +#define dspot18_room_2Tex_004818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_004818" +static const ALIGN_ASSET(2) char spot18_room_2Tex_004818[] = dspot18_room_2Tex_004818; + +#define dspot18_room_2Tex_007018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_007018" +static const ALIGN_ASSET(2) char spot18_room_2Tex_007018[] = dspot18_room_2Tex_007018; + +#define dspot18_room_2Tex_00A018 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00A018" +static const ALIGN_ASSET(2) char spot18_room_2Tex_00A018[] = dspot18_room_2Tex_00A018; + +#define dspot18_room_2Tex_00B818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00B818" +static const ALIGN_ASSET(2) char spot18_room_2Tex_00B818[] = dspot18_room_2Tex_00B818; + +#define dspot18_room_2DL_00CBC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_00CBC0" +static const ALIGN_ASSET(2) char spot18_room_2DL_00CBC0[] = dspot18_room_2DL_00CBC0; + +#define dspot18_room_2Tex_00F1A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00F1A8" +static const ALIGN_ASSET(2) char spot18_room_2Tex_00F1A8[] = dspot18_room_2Tex_00F1A8; + +#define dspot18_room_2Tex_0109A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_0109A8" +static const ALIGN_ASSET(2) char spot18_room_2Tex_0109A8[] = dspot18_room_2Tex_0109A8; + +#define dspot18_room_2Tex_00F9A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00F9A8" +static const ALIGN_ASSET(2) char spot18_room_2Tex_00F9A8[] = dspot18_room_2Tex_00F9A8; + +#define dspot18_room_2Tex_00D1A8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_00D1A8" +static const ALIGN_ASSET(2) char spot18_room_2Tex_00D1A8[] = dspot18_room_2Tex_00D1A8; + +#define dspot18_room_2DL_0019D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_0019D0" +static const ALIGN_ASSET(2) char spot18_room_2DL_0019D0[] = dspot18_room_2DL_0019D0; + +#define dspot18_room_2Tex_005818 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Tex_005818" +static const ALIGN_ASSET(2) char spot18_room_2Tex_005818[] = dspot18_room_2Tex_005818; + +#define dspot18_room_2DL_000E30 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2DL_000E30" +static const ALIGN_ASSET(2) char spot18_room_2DL_000E30[] = dspot18_room_2DL_000E30; + +#define dspot18_room_2Set_000150DL_003F10 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_003F10" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_003F10[] = dspot18_room_2Set_000150DL_003F10; + +#define dspot18_room_2Set_000150DL_00CF58 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_00CF58" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_00CF58[] = dspot18_room_2Set_000150DL_00CF58; + +#define dspot18_room_2Set_000150DL_004320 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_004320" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_004320[] = dspot18_room_2Set_000150DL_004320; + +#define dspot18_room_2Set_000150DL_004690 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_004690" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_004690[] = dspot18_room_2Set_000150DL_004690; + +#define dspot18_room_2Set_000150DL_00D0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_00D0D0" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_00D0D0[] = dspot18_room_2Set_000150DL_00D0D0; + +#define dspot18_room_2Set_000150DL_001FE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_001FE8" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_001FE8[] = dspot18_room_2Set_000150DL_001FE8; + +#define dspot18_room_2Set_000150DL_003090 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_003090" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_003090[] = dspot18_room_2Set_000150DL_003090; + +#define dspot18_room_2Set_000150DL_00CBC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_00CBC0" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_00CBC0[] = dspot18_room_2Set_000150DL_00CBC0; + +#define dspot18_room_2Set_000150DL_0019D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_0019D0" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_0019D0[] = dspot18_room_2Set_000150DL_0019D0; + +#define dspot18_room_2Set_000150DL_000E30 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000150DL_000E30" +static const ALIGN_ASSET(2) char spot18_room_2Set_000150DL_000E30[] = dspot18_room_2Set_000150DL_000E30; + +#define dspot18_room_2Set_000200DL_003F10 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_003F10" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_003F10[] = dspot18_room_2Set_000200DL_003F10; + +#define dspot18_room_2Set_000200DL_00CF58 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_00CF58" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_00CF58[] = dspot18_room_2Set_000200DL_00CF58; + +#define dspot18_room_2Set_000200DL_004320 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_004320" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_004320[] = dspot18_room_2Set_000200DL_004320; + +#define dspot18_room_2Set_000200DL_004690 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_004690" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_004690[] = dspot18_room_2Set_000200DL_004690; + +#define dspot18_room_2Set_000200DL_00D0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_00D0D0" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_00D0D0[] = dspot18_room_2Set_000200DL_00D0D0; + +#define dspot18_room_2Set_000200DL_001FE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_001FE8" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_001FE8[] = dspot18_room_2Set_000200DL_001FE8; + +#define dspot18_room_2Set_000200DL_003090 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_003090" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_003090[] = dspot18_room_2Set_000200DL_003090; + +#define dspot18_room_2Set_000200DL_00CBC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_00CBC0" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_00CBC0[] = dspot18_room_2Set_000200DL_00CBC0; + +#define dspot18_room_2Set_000200DL_0019D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_0019D0" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_0019D0[] = dspot18_room_2Set_000200DL_0019D0; + +#define dspot18_room_2Set_000200DL_000E30 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_000200DL_000E30" +static const ALIGN_ASSET(2) char spot18_room_2Set_000200DL_000E30[] = dspot18_room_2Set_000200DL_000E30; + +#define dspot18_room_2Set_0002E0DL_003F10 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_003F10" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_003F10[] = dspot18_room_2Set_0002E0DL_003F10; + +#define dspot18_room_2Set_0002E0DL_00CF58 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_00CF58" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_00CF58[] = dspot18_room_2Set_0002E0DL_00CF58; + +#define dspot18_room_2Set_0002E0DL_004320 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_004320" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_004320[] = dspot18_room_2Set_0002E0DL_004320; + +#define dspot18_room_2Set_0002E0DL_004690 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_004690" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_004690[] = dspot18_room_2Set_0002E0DL_004690; + +#define dspot18_room_2Set_0002E0DL_00D0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_00D0D0" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_00D0D0[] = dspot18_room_2Set_0002E0DL_00D0D0; + +#define dspot18_room_2Set_0002E0DL_001FE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_001FE8" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_001FE8[] = dspot18_room_2Set_0002E0DL_001FE8; + +#define dspot18_room_2Set_0002E0DL_003090 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_003090" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_003090[] = dspot18_room_2Set_0002E0DL_003090; + +#define dspot18_room_2Set_0002E0DL_00CBC0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_00CBC0" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_00CBC0[] = dspot18_room_2Set_0002E0DL_00CBC0; + +#define dspot18_room_2Set_0002E0DL_0019D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_0019D0" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_0019D0[] = dspot18_room_2Set_0002E0DL_0019D0; + +#define dspot18_room_2Set_0002E0DL_000E30 "__OTR__scenes/nonmq/spot18_scene/spot18_room_2Set_0002E0DL_000E30" +static const ALIGN_ASSET(2) char spot18_room_2Set_0002E0DL_000E30[] = dspot18_room_2Set_0002E0DL_000E30; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot18/spot18_room_3.h b/soh/assets/scenes/overworld/spot18/spot18_room_3.h index 0646aa904..c4f77e12e 100644 --- a/soh/assets/scenes/overworld/spot18/spot18_room_3.h +++ b/soh/assets/scenes/overworld/spot18/spot18_room_3.h @@ -1,611 +1,264 @@ #pragma once -#define dspot18_room_3DL_0014C0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_0014C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_0014C0[] = dspot18_room_3DL_0014C0; -#else -static const char spot18_room_3DL_0014C0[] __attribute__((aligned (2))) = dspot18_room_3DL_0014C0; -#endif - -#define dspot18_room_3Tex_014848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_014848" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_014848[] = dspot18_room_3Tex_014848; -#else -static const char spot18_room_3Tex_014848[] __attribute__((aligned (2))) = dspot18_room_3Tex_014848; -#endif - -#define dspot18_room_3Tex_013848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_013848" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_013848[] = dspot18_room_3Tex_013848; -#else -static const char spot18_room_3Tex_013848[] __attribute__((aligned (2))) = dspot18_room_3Tex_013848; -#endif - -#define dspot18_room_3Tex_015848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_015848" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_015848[] = dspot18_room_3Tex_015848; -#else -static const char spot18_room_3Tex_015848[] __attribute__((aligned (2))) = dspot18_room_3Tex_015848; -#endif - -#define dspot18_room_3Tex_016048 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_016048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_016048[] = dspot18_room_3Tex_016048; -#else -static const char spot18_room_3Tex_016048[] __attribute__((aligned (2))) = dspot18_room_3Tex_016048; -#endif - -#define dspot18_room_3Tex_011C48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_011C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_011C48[] = dspot18_room_3Tex_011C48; -#else -static const char spot18_room_3Tex_011C48[] __attribute__((aligned (2))) = dspot18_room_3Tex_011C48; -#endif - -#define dspot18_room_3Tex_014048 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_014048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_014048[] = dspot18_room_3Tex_014048; -#else -static const char spot18_room_3Tex_014048[] __attribute__((aligned (2))) = dspot18_room_3Tex_014048; -#endif - -#define dspot18_room_3Tex_016C48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_016C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_016C48[] = dspot18_room_3Tex_016C48; -#else -static const char spot18_room_3Tex_016C48[] __attribute__((aligned (2))) = dspot18_room_3Tex_016C48; -#endif - -#define dspot18_room_3Tex_012448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_012448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_012448[] = dspot18_room_3Tex_012448; -#else -static const char spot18_room_3Tex_012448[] __attribute__((aligned (2))) = dspot18_room_3Tex_012448; -#endif - -#define dspot18_room_3Tex_012648 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_012648" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_012648[] = dspot18_room_3Tex_012648; -#else -static const char spot18_room_3Tex_012648[] __attribute__((aligned (2))) = dspot18_room_3Tex_012648; -#endif - -#define dspot18_room_3DL_002B28 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_002B28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_002B28[] = dspot18_room_3DL_002B28; -#else -static const char spot18_room_3DL_002B28[] __attribute__((aligned (2))) = dspot18_room_3DL_002B28; -#endif - -#define dspot18_room_3Tex_00C048 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00C048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00C048[] = dspot18_room_3Tex_00C048; -#else -static const char spot18_room_3Tex_00C048[] __attribute__((aligned (2))) = dspot18_room_3Tex_00C048; -#endif - -#define dspot18_room_3Tex_00C448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00C448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00C448[] = dspot18_room_3Tex_00C448; -#else -static const char spot18_room_3Tex_00C448[] __attribute__((aligned (2))) = dspot18_room_3Tex_00C448; -#endif - -#define dspot18_room_3Tex_00DC48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00DC48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00DC48[] = dspot18_room_3Tex_00DC48; -#else -static const char spot18_room_3Tex_00DC48[] __attribute__((aligned (2))) = dspot18_room_3Tex_00DC48; -#endif - -#define dspot18_room_3Tex_011448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_011448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_011448[] = dspot18_room_3Tex_011448; -#else -static const char spot18_room_3Tex_011448[] __attribute__((aligned (2))) = dspot18_room_3Tex_011448; -#endif - -#define dspot18_room_3Tex_00E448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00E448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00E448[] = dspot18_room_3Tex_00E448; -#else -static const char spot18_room_3Tex_00E448[] __attribute__((aligned (2))) = dspot18_room_3Tex_00E448; -#endif - -#define dspot18_room_3Tex_015048 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_015048" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_015048[] = dspot18_room_3Tex_015048; -#else -static const char spot18_room_3Tex_015048[] __attribute__((aligned (2))) = dspot18_room_3Tex_015048; -#endif - -#define dspot18_room_3Tex_017448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_017448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_017448[] = dspot18_room_3Tex_017448; -#else -static const char spot18_room_3Tex_017448[] __attribute__((aligned (2))) = dspot18_room_3Tex_017448; -#endif - -#define dspot18_room_3DL_018610 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_018610" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_018610[] = dspot18_room_3DL_018610; -#else -static const char spot18_room_3DL_018610[] __attribute__((aligned (2))) = dspot18_room_3DL_018610; -#endif - -#define dspot18_room_3Tex_0194E8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_0194E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_0194E8[] = dspot18_room_3Tex_0194E8; -#else -static const char spot18_room_3Tex_0194E8[] __attribute__((aligned (2))) = dspot18_room_3Tex_0194E8; -#endif - -#define dspot18_room_3Tex_01B4E8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_01B4E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_01B4E8[] = dspot18_room_3Tex_01B4E8; -#else -static const char spot18_room_3Tex_01B4E8[] __attribute__((aligned (2))) = dspot18_room_3Tex_01B4E8; -#endif - -#define dspot18_room_3Tex_01A4E8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_01A4E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_01A4E8[] = dspot18_room_3Tex_01A4E8; -#else -static const char spot18_room_3Tex_01A4E8[] __attribute__((aligned (2))) = dspot18_room_3Tex_01A4E8; -#endif - -#define dspot18_room_3DL_00A0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_00A0D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_00A0D0[] = dspot18_room_3DL_00A0D0; -#else -static const char spot18_room_3DL_00A0D0[] __attribute__((aligned (2))) = dspot18_room_3DL_00A0D0; -#endif - -#define dspot18_room_3DL_018F48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_018F48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_018F48[] = dspot18_room_3DL_018F48; -#else -static const char spot18_room_3DL_018F48[] __attribute__((aligned (2))) = dspot18_room_3DL_018F48; -#endif - -#define dspot18_room_3Tex_01CCE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_01CCE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_01CCE8[] = dspot18_room_3Tex_01CCE8; -#else -static const char spot18_room_3Tex_01CCE8[] __attribute__((aligned (2))) = dspot18_room_3Tex_01CCE8; -#endif - -#define dspot18_room_3Tex_01BCE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_01BCE8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_01BCE8[] = dspot18_room_3Tex_01BCE8; -#else -static const char spot18_room_3Tex_01BCE8[] __attribute__((aligned (2))) = dspot18_room_3Tex_01BCE8; -#endif - -#define dspot18_room_3DL_005080 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_005080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_005080[] = dspot18_room_3DL_005080; -#else -static const char spot18_room_3DL_005080[] __attribute__((aligned (2))) = dspot18_room_3DL_005080; -#endif - -#define dspot18_room_3Tex_00BC48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00BC48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00BC48[] = dspot18_room_3Tex_00BC48; -#else -static const char spot18_room_3Tex_00BC48[] __attribute__((aligned (2))) = dspot18_room_3Tex_00BC48; -#endif - -#define dspot18_room_3Tex_00D848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00D848" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00D848[] = dspot18_room_3Tex_00D848; -#else -static const char spot18_room_3Tex_00D848[] __attribute__((aligned (2))) = dspot18_room_3Tex_00D848; -#endif - -#define dspot18_room_3Tex_00C848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00C848" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00C848[] = dspot18_room_3Tex_00C848; -#else -static const char spot18_room_3Tex_00C848[] __attribute__((aligned (2))) = dspot18_room_3Tex_00C848; -#endif - -#define dspot18_room_3Tex_010C48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_010C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_010C48[] = dspot18_room_3Tex_010C48; -#else -static const char spot18_room_3Tex_010C48[] __attribute__((aligned (2))) = dspot18_room_3Tex_010C48; -#endif - -#define dspot18_room_3Tex_010448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_010448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_010448[] = dspot18_room_3Tex_010448; -#else -static const char spot18_room_3Tex_010448[] __attribute__((aligned (2))) = dspot18_room_3Tex_010448; -#endif - -#define dspot18_room_3Tex_00F448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00F448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00F448[] = dspot18_room_3Tex_00F448; -#else -static const char spot18_room_3Tex_00F448[] __attribute__((aligned (2))) = dspot18_room_3Tex_00F448; -#endif - -#define dspot18_room_3Tex_016848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_016848" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_016848[] = dspot18_room_3Tex_016848; -#else -static const char spot18_room_3Tex_016848[] __attribute__((aligned (2))) = dspot18_room_3Tex_016848; -#endif - -#define dspot18_room_3DL_018948 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_018948" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_018948[] = dspot18_room_3DL_018948; -#else -static const char spot18_room_3DL_018948[] __attribute__((aligned (2))) = dspot18_room_3DL_018948; -#endif - -#define dspot18_room_3DL_0193D8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_0193D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_0193D8[] = dspot18_room_3DL_0193D8; -#else -static const char spot18_room_3DL_0193D8[] __attribute__((aligned (2))) = dspot18_room_3DL_0193D8; -#endif - -#define dspot18_room_3DL_00ADD0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_00ADD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_00ADD0[] = dspot18_room_3DL_00ADD0; -#else -static const char spot18_room_3DL_00ADD0[] __attribute__((aligned (2))) = dspot18_room_3DL_00ADD0; -#endif - -#define dspot18_room_3Tex_00B448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00B448" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00B448[] = dspot18_room_3Tex_00B448; -#else -static const char spot18_room_3Tex_00B448[] __attribute__((aligned (2))) = dspot18_room_3Tex_00B448; -#endif - -#define dspot18_room_3Tex_00EC48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00EC48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_00EC48[] = dspot18_room_3Tex_00EC48; -#else -static const char spot18_room_3Tex_00EC48[] __attribute__((aligned (2))) = dspot18_room_3Tex_00EC48; -#endif - -#define dspot18_room_3DL_019218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_019218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_019218[] = dspot18_room_3DL_019218; -#else -static const char spot18_room_3DL_019218[] __attribute__((aligned (2))) = dspot18_room_3DL_019218; -#endif - -#define dspot18_room_3DL_00B288 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_00B288" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_00B288[] = dspot18_room_3DL_00B288; -#else -static const char spot18_room_3DL_00B288[] __attribute__((aligned (2))) = dspot18_room_3DL_00B288; -#endif - -#define dspot18_room_3Tex_012848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_012848" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Tex_012848[] = dspot18_room_3Tex_012848; -#else -static const char spot18_room_3Tex_012848[] __attribute__((aligned (2))) = dspot18_room_3Tex_012848; -#endif - -#define dspot18_room_3DL_002230 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_002230[] = dspot18_room_3DL_002230; -#else -static const char spot18_room_3DL_002230[] __attribute__((aligned (2))) = dspot18_room_3DL_002230; -#endif - -#define dspot18_room_3DL_008218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_008218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_008218[] = dspot18_room_3DL_008218; -#else -static const char spot18_room_3DL_008218[] __attribute__((aligned (2))) = dspot18_room_3DL_008218; -#endif - -#define dspot18_room_3DL_018BF8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_018BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3DL_018BF8[] = dspot18_room_3DL_018BF8; -#else -static const char spot18_room_3DL_018BF8[] __attribute__((aligned (2))) = dspot18_room_3DL_018BF8; -#endif - -#define dspot18_room_3Set_000400DL_0014C0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_0014C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_0014C0[] = dspot18_room_3Set_000400DL_0014C0; -#else -static const char spot18_room_3Set_000400DL_0014C0[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_0014C0; -#endif - -#define dspot18_room_3Set_000400DL_002B28 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_002B28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_002B28[] = dspot18_room_3Set_000400DL_002B28; -#else -static const char spot18_room_3Set_000400DL_002B28[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_002B28; -#endif - -#define dspot18_room_3Set_000400DL_018610 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_018610" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_018610[] = dspot18_room_3Set_000400DL_018610; -#else -static const char spot18_room_3Set_000400DL_018610[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_018610; -#endif - -#define dspot18_room_3Set_000400DL_00A0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_00A0D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_00A0D0[] = dspot18_room_3Set_000400DL_00A0D0; -#else -static const char spot18_room_3Set_000400DL_00A0D0[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_00A0D0; -#endif - -#define dspot18_room_3Set_000400DL_018F48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_018F48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_018F48[] = dspot18_room_3Set_000400DL_018F48; -#else -static const char spot18_room_3Set_000400DL_018F48[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_018F48; -#endif - -#define dspot18_room_3Set_000400DL_005080 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_005080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_005080[] = dspot18_room_3Set_000400DL_005080; -#else -static const char spot18_room_3Set_000400DL_005080[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_005080; -#endif - -#define dspot18_room_3Set_000400DL_018948 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_018948" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_018948[] = dspot18_room_3Set_000400DL_018948; -#else -static const char spot18_room_3Set_000400DL_018948[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_018948; -#endif - -#define dspot18_room_3Set_000400DL_0193D8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_0193D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_0193D8[] = dspot18_room_3Set_000400DL_0193D8; -#else -static const char spot18_room_3Set_000400DL_0193D8[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_0193D8; -#endif - -#define dspot18_room_3Set_000400DL_00ADD0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_00ADD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_00ADD0[] = dspot18_room_3Set_000400DL_00ADD0; -#else -static const char spot18_room_3Set_000400DL_00ADD0[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_00ADD0; -#endif - -#define dspot18_room_3Set_000400DL_019218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_019218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_019218[] = dspot18_room_3Set_000400DL_019218; -#else -static const char spot18_room_3Set_000400DL_019218[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_019218; -#endif - -#define dspot18_room_3Set_000400DL_00B288 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_00B288" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_00B288[] = dspot18_room_3Set_000400DL_00B288; -#else -static const char spot18_room_3Set_000400DL_00B288[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_00B288; -#endif - -#define dspot18_room_3Set_000400DL_002230 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_002230[] = dspot18_room_3Set_000400DL_002230; -#else -static const char spot18_room_3Set_000400DL_002230[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_002230; -#endif - -#define dspot18_room_3Set_000400DL_008218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_008218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_008218[] = dspot18_room_3Set_000400DL_008218; -#else -static const char spot18_room_3Set_000400DL_008218[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_008218; -#endif - -#define dspot18_room_3Set_000400DL_018BF8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_018BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000400DL_018BF8[] = dspot18_room_3Set_000400DL_018BF8; -#else -static const char spot18_room_3Set_000400DL_018BF8[] __attribute__((aligned (2))) = dspot18_room_3Set_000400DL_018BF8; -#endif - -#define dspot18_room_3Set_0006C0DL_0014C0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_0014C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_0014C0[] = dspot18_room_3Set_0006C0DL_0014C0; -#else -static const char spot18_room_3Set_0006C0DL_0014C0[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_0014C0; -#endif - -#define dspot18_room_3Set_0006C0DL_002B28 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_002B28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_002B28[] = dspot18_room_3Set_0006C0DL_002B28; -#else -static const char spot18_room_3Set_0006C0DL_002B28[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_002B28; -#endif - -#define dspot18_room_3Set_0006C0DL_018610 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_018610" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_018610[] = dspot18_room_3Set_0006C0DL_018610; -#else -static const char spot18_room_3Set_0006C0DL_018610[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_018610; -#endif - -#define dspot18_room_3Set_0006C0DL_00A0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_00A0D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_00A0D0[] = dspot18_room_3Set_0006C0DL_00A0D0; -#else -static const char spot18_room_3Set_0006C0DL_00A0D0[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_00A0D0; -#endif - -#define dspot18_room_3Set_0006C0DL_018F48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_018F48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_018F48[] = dspot18_room_3Set_0006C0DL_018F48; -#else -static const char spot18_room_3Set_0006C0DL_018F48[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_018F48; -#endif - -#define dspot18_room_3Set_0006C0DL_005080 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_005080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_005080[] = dspot18_room_3Set_0006C0DL_005080; -#else -static const char spot18_room_3Set_0006C0DL_005080[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_005080; -#endif - -#define dspot18_room_3Set_0006C0DL_018948 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_018948" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_018948[] = dspot18_room_3Set_0006C0DL_018948; -#else -static const char spot18_room_3Set_0006C0DL_018948[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_018948; -#endif - -#define dspot18_room_3Set_0006C0DL_0193D8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_0193D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_0193D8[] = dspot18_room_3Set_0006C0DL_0193D8; -#else -static const char spot18_room_3Set_0006C0DL_0193D8[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_0193D8; -#endif - -#define dspot18_room_3Set_0006C0DL_00ADD0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_00ADD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_00ADD0[] = dspot18_room_3Set_0006C0DL_00ADD0; -#else -static const char spot18_room_3Set_0006C0DL_00ADD0[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_00ADD0; -#endif - -#define dspot18_room_3Set_0006C0DL_019218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_019218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_019218[] = dspot18_room_3Set_0006C0DL_019218; -#else -static const char spot18_room_3Set_0006C0DL_019218[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_019218; -#endif - -#define dspot18_room_3Set_0006C0DL_00B288 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_00B288" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_00B288[] = dspot18_room_3Set_0006C0DL_00B288; -#else -static const char spot18_room_3Set_0006C0DL_00B288[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_00B288; -#endif - -#define dspot18_room_3Set_0006C0DL_002230 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_002230[] = dspot18_room_3Set_0006C0DL_002230; -#else -static const char spot18_room_3Set_0006C0DL_002230[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_002230; -#endif - -#define dspot18_room_3Set_0006C0DL_008218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_008218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_008218[] = dspot18_room_3Set_0006C0DL_008218; -#else -static const char spot18_room_3Set_0006C0DL_008218[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_008218; -#endif - -#define dspot18_room_3Set_0006C0DL_018BF8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_018BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_0006C0DL_018BF8[] = dspot18_room_3Set_0006C0DL_018BF8; -#else -static const char spot18_room_3Set_0006C0DL_018BF8[] __attribute__((aligned (2))) = dspot18_room_3Set_0006C0DL_018BF8; -#endif - -#define dspot18_room_3Set_000800DL_0014C0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_0014C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_0014C0[] = dspot18_room_3Set_000800DL_0014C0; -#else -static const char spot18_room_3Set_000800DL_0014C0[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_0014C0; -#endif - -#define dspot18_room_3Set_000800DL_002B28 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_002B28" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_002B28[] = dspot18_room_3Set_000800DL_002B28; -#else -static const char spot18_room_3Set_000800DL_002B28[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_002B28; -#endif - -#define dspot18_room_3Set_000800DL_018610 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_018610" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_018610[] = dspot18_room_3Set_000800DL_018610; -#else -static const char spot18_room_3Set_000800DL_018610[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_018610; -#endif - -#define dspot18_room_3Set_000800DL_00A0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_00A0D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_00A0D0[] = dspot18_room_3Set_000800DL_00A0D0; -#else -static const char spot18_room_3Set_000800DL_00A0D0[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_00A0D0; -#endif - -#define dspot18_room_3Set_000800DL_018F48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_018F48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_018F48[] = dspot18_room_3Set_000800DL_018F48; -#else -static const char spot18_room_3Set_000800DL_018F48[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_018F48; -#endif - -#define dspot18_room_3Set_000800DL_005080 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_005080" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_005080[] = dspot18_room_3Set_000800DL_005080; -#else -static const char spot18_room_3Set_000800DL_005080[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_005080; -#endif - -#define dspot18_room_3Set_000800DL_018948 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_018948" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_018948[] = dspot18_room_3Set_000800DL_018948; -#else -static const char spot18_room_3Set_000800DL_018948[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_018948; -#endif - -#define dspot18_room_3Set_000800DL_0193D8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_0193D8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_0193D8[] = dspot18_room_3Set_000800DL_0193D8; -#else -static const char spot18_room_3Set_000800DL_0193D8[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_0193D8; -#endif - -#define dspot18_room_3Set_000800DL_00ADD0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_00ADD0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_00ADD0[] = dspot18_room_3Set_000800DL_00ADD0; -#else -static const char spot18_room_3Set_000800DL_00ADD0[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_00ADD0; -#endif - -#define dspot18_room_3Set_000800DL_019218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_019218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_019218[] = dspot18_room_3Set_000800DL_019218; -#else -static const char spot18_room_3Set_000800DL_019218[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_019218; -#endif - -#define dspot18_room_3Set_000800DL_00B288 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_00B288" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_00B288[] = dspot18_room_3Set_000800DL_00B288; -#else -static const char spot18_room_3Set_000800DL_00B288[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_00B288; -#endif - -#define dspot18_room_3Set_000800DL_002230 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_002230" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_002230[] = dspot18_room_3Set_000800DL_002230; -#else -static const char spot18_room_3Set_000800DL_002230[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_002230; -#endif - -#define dspot18_room_3Set_000800DL_008218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_008218" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_008218[] = dspot18_room_3Set_000800DL_008218; -#else -static const char spot18_room_3Set_000800DL_008218[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_008218; -#endif - -#define dspot18_room_3Set_000800DL_018BF8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_018BF8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_room_3Set_000800DL_018BF8[] = dspot18_room_3Set_000800DL_018BF8; -#else -static const char spot18_room_3Set_000800DL_018BF8[] __attribute__((aligned (2))) = dspot18_room_3Set_000800DL_018BF8; -#endif - +#include "align_asset_macro.h" + +#define dspot18_room_3DL_0014C0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_0014C0" +static const ALIGN_ASSET(2) char spot18_room_3DL_0014C0[] = dspot18_room_3DL_0014C0; + +#define dspot18_room_3Tex_014848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_014848" +static const ALIGN_ASSET(2) char spot18_room_3Tex_014848[] = dspot18_room_3Tex_014848; + +#define dspot18_room_3Tex_013848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_013848" +static const ALIGN_ASSET(2) char spot18_room_3Tex_013848[] = dspot18_room_3Tex_013848; + +#define dspot18_room_3Tex_015848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_015848" +static const ALIGN_ASSET(2) char spot18_room_3Tex_015848[] = dspot18_room_3Tex_015848; + +#define dspot18_room_3Tex_016048 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_016048" +static const ALIGN_ASSET(2) char spot18_room_3Tex_016048[] = dspot18_room_3Tex_016048; + +#define dspot18_room_3Tex_011C48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_011C48" +static const ALIGN_ASSET(2) char spot18_room_3Tex_011C48[] = dspot18_room_3Tex_011C48; + +#define dspot18_room_3Tex_014048 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_014048" +static const ALIGN_ASSET(2) char spot18_room_3Tex_014048[] = dspot18_room_3Tex_014048; + +#define dspot18_room_3Tex_016C48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_016C48" +static const ALIGN_ASSET(2) char spot18_room_3Tex_016C48[] = dspot18_room_3Tex_016C48; + +#define dspot18_room_3Tex_012448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_012448" +static const ALIGN_ASSET(2) char spot18_room_3Tex_012448[] = dspot18_room_3Tex_012448; + +#define dspot18_room_3Tex_012648 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_012648" +static const ALIGN_ASSET(2) char spot18_room_3Tex_012648[] = dspot18_room_3Tex_012648; + +#define dspot18_room_3DL_002B28 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_002B28" +static const ALIGN_ASSET(2) char spot18_room_3DL_002B28[] = dspot18_room_3DL_002B28; + +#define dspot18_room_3Tex_00C048 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00C048" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00C048[] = dspot18_room_3Tex_00C048; + +#define dspot18_room_3Tex_00C448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00C448" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00C448[] = dspot18_room_3Tex_00C448; + +#define dspot18_room_3Tex_00DC48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00DC48" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00DC48[] = dspot18_room_3Tex_00DC48; + +#define dspot18_room_3Tex_011448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_011448" +static const ALIGN_ASSET(2) char spot18_room_3Tex_011448[] = dspot18_room_3Tex_011448; + +#define dspot18_room_3Tex_00E448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00E448" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00E448[] = dspot18_room_3Tex_00E448; + +#define dspot18_room_3Tex_015048 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_015048" +static const ALIGN_ASSET(2) char spot18_room_3Tex_015048[] = dspot18_room_3Tex_015048; + +#define dspot18_room_3Tex_017448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_017448" +static const ALIGN_ASSET(2) char spot18_room_3Tex_017448[] = dspot18_room_3Tex_017448; + +#define dspot18_room_3DL_018610 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_018610" +static const ALIGN_ASSET(2) char spot18_room_3DL_018610[] = dspot18_room_3DL_018610; + +#define dspot18_room_3Tex_0194E8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_0194E8" +static const ALIGN_ASSET(2) char spot18_room_3Tex_0194E8[] = dspot18_room_3Tex_0194E8; + +#define dspot18_room_3Tex_01B4E8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_01B4E8" +static const ALIGN_ASSET(2) char spot18_room_3Tex_01B4E8[] = dspot18_room_3Tex_01B4E8; + +#define dspot18_room_3Tex_01A4E8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_01A4E8" +static const ALIGN_ASSET(2) char spot18_room_3Tex_01A4E8[] = dspot18_room_3Tex_01A4E8; + +#define dspot18_room_3DL_00A0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_00A0D0" +static const ALIGN_ASSET(2) char spot18_room_3DL_00A0D0[] = dspot18_room_3DL_00A0D0; + +#define dspot18_room_3DL_018F48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_018F48" +static const ALIGN_ASSET(2) char spot18_room_3DL_018F48[] = dspot18_room_3DL_018F48; + +#define dspot18_room_3Tex_01CCE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_01CCE8" +static const ALIGN_ASSET(2) char spot18_room_3Tex_01CCE8[] = dspot18_room_3Tex_01CCE8; + +#define dspot18_room_3Tex_01BCE8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_01BCE8" +static const ALIGN_ASSET(2) char spot18_room_3Tex_01BCE8[] = dspot18_room_3Tex_01BCE8; + +#define dspot18_room_3DL_005080 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_005080" +static const ALIGN_ASSET(2) char spot18_room_3DL_005080[] = dspot18_room_3DL_005080; + +#define dspot18_room_3Tex_00BC48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00BC48" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00BC48[] = dspot18_room_3Tex_00BC48; + +#define dspot18_room_3Tex_00D848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00D848" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00D848[] = dspot18_room_3Tex_00D848; + +#define dspot18_room_3Tex_00C848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00C848" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00C848[] = dspot18_room_3Tex_00C848; + +#define dspot18_room_3Tex_010C48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_010C48" +static const ALIGN_ASSET(2) char spot18_room_3Tex_010C48[] = dspot18_room_3Tex_010C48; + +#define dspot18_room_3Tex_010448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_010448" +static const ALIGN_ASSET(2) char spot18_room_3Tex_010448[] = dspot18_room_3Tex_010448; + +#define dspot18_room_3Tex_00F448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00F448" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00F448[] = dspot18_room_3Tex_00F448; + +#define dspot18_room_3Tex_016848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_016848" +static const ALIGN_ASSET(2) char spot18_room_3Tex_016848[] = dspot18_room_3Tex_016848; + +#define dspot18_room_3DL_018948 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_018948" +static const ALIGN_ASSET(2) char spot18_room_3DL_018948[] = dspot18_room_3DL_018948; + +#define dspot18_room_3DL_0193D8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_0193D8" +static const ALIGN_ASSET(2) char spot18_room_3DL_0193D8[] = dspot18_room_3DL_0193D8; + +#define dspot18_room_3DL_00ADD0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_00ADD0" +static const ALIGN_ASSET(2) char spot18_room_3DL_00ADD0[] = dspot18_room_3DL_00ADD0; + +#define dspot18_room_3Tex_00B448 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00B448" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00B448[] = dspot18_room_3Tex_00B448; + +#define dspot18_room_3Tex_00EC48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_00EC48" +static const ALIGN_ASSET(2) char spot18_room_3Tex_00EC48[] = dspot18_room_3Tex_00EC48; + +#define dspot18_room_3DL_019218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_019218" +static const ALIGN_ASSET(2) char spot18_room_3DL_019218[] = dspot18_room_3DL_019218; + +#define dspot18_room_3DL_00B288 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_00B288" +static const ALIGN_ASSET(2) char spot18_room_3DL_00B288[] = dspot18_room_3DL_00B288; + +#define dspot18_room_3Tex_012848 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Tex_012848" +static const ALIGN_ASSET(2) char spot18_room_3Tex_012848[] = dspot18_room_3Tex_012848; + +#define dspot18_room_3DL_002230 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_002230" +static const ALIGN_ASSET(2) char spot18_room_3DL_002230[] = dspot18_room_3DL_002230; + +#define dspot18_room_3DL_008218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_008218" +static const ALIGN_ASSET(2) char spot18_room_3DL_008218[] = dspot18_room_3DL_008218; + +#define dspot18_room_3DL_018BF8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3DL_018BF8" +static const ALIGN_ASSET(2) char spot18_room_3DL_018BF8[] = dspot18_room_3DL_018BF8; + +#define dspot18_room_3Set_000400DL_0014C0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_0014C0" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_0014C0[] = dspot18_room_3Set_000400DL_0014C0; + +#define dspot18_room_3Set_000400DL_002B28 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_002B28" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_002B28[] = dspot18_room_3Set_000400DL_002B28; + +#define dspot18_room_3Set_000400DL_018610 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_018610" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_018610[] = dspot18_room_3Set_000400DL_018610; + +#define dspot18_room_3Set_000400DL_00A0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_00A0D0" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_00A0D0[] = dspot18_room_3Set_000400DL_00A0D0; + +#define dspot18_room_3Set_000400DL_018F48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_018F48" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_018F48[] = dspot18_room_3Set_000400DL_018F48; + +#define dspot18_room_3Set_000400DL_005080 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_005080" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_005080[] = dspot18_room_3Set_000400DL_005080; + +#define dspot18_room_3Set_000400DL_018948 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_018948" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_018948[] = dspot18_room_3Set_000400DL_018948; + +#define dspot18_room_3Set_000400DL_0193D8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_0193D8" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_0193D8[] = dspot18_room_3Set_000400DL_0193D8; + +#define dspot18_room_3Set_000400DL_00ADD0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_00ADD0" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_00ADD0[] = dspot18_room_3Set_000400DL_00ADD0; + +#define dspot18_room_3Set_000400DL_019218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_019218" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_019218[] = dspot18_room_3Set_000400DL_019218; + +#define dspot18_room_3Set_000400DL_00B288 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_00B288" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_00B288[] = dspot18_room_3Set_000400DL_00B288; + +#define dspot18_room_3Set_000400DL_002230 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_002230" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_002230[] = dspot18_room_3Set_000400DL_002230; + +#define dspot18_room_3Set_000400DL_008218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_008218" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_008218[] = dspot18_room_3Set_000400DL_008218; + +#define dspot18_room_3Set_000400DL_018BF8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000400DL_018BF8" +static const ALIGN_ASSET(2) char spot18_room_3Set_000400DL_018BF8[] = dspot18_room_3Set_000400DL_018BF8; + +#define dspot18_room_3Set_0006C0DL_0014C0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_0014C0" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_0014C0[] = dspot18_room_3Set_0006C0DL_0014C0; + +#define dspot18_room_3Set_0006C0DL_002B28 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_002B28" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_002B28[] = dspot18_room_3Set_0006C0DL_002B28; + +#define dspot18_room_3Set_0006C0DL_018610 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_018610" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_018610[] = dspot18_room_3Set_0006C0DL_018610; + +#define dspot18_room_3Set_0006C0DL_00A0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_00A0D0" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_00A0D0[] = dspot18_room_3Set_0006C0DL_00A0D0; + +#define dspot18_room_3Set_0006C0DL_018F48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_018F48" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_018F48[] = dspot18_room_3Set_0006C0DL_018F48; + +#define dspot18_room_3Set_0006C0DL_005080 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_005080" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_005080[] = dspot18_room_3Set_0006C0DL_005080; + +#define dspot18_room_3Set_0006C0DL_018948 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_018948" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_018948[] = dspot18_room_3Set_0006C0DL_018948; + +#define dspot18_room_3Set_0006C0DL_0193D8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_0193D8" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_0193D8[] = dspot18_room_3Set_0006C0DL_0193D8; + +#define dspot18_room_3Set_0006C0DL_00ADD0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_00ADD0" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_00ADD0[] = dspot18_room_3Set_0006C0DL_00ADD0; + +#define dspot18_room_3Set_0006C0DL_019218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_019218" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_019218[] = dspot18_room_3Set_0006C0DL_019218; + +#define dspot18_room_3Set_0006C0DL_00B288 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_00B288" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_00B288[] = dspot18_room_3Set_0006C0DL_00B288; + +#define dspot18_room_3Set_0006C0DL_002230 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_002230" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_002230[] = dspot18_room_3Set_0006C0DL_002230; + +#define dspot18_room_3Set_0006C0DL_008218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_008218" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_008218[] = dspot18_room_3Set_0006C0DL_008218; + +#define dspot18_room_3Set_0006C0DL_018BF8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_0006C0DL_018BF8" +static const ALIGN_ASSET(2) char spot18_room_3Set_0006C0DL_018BF8[] = dspot18_room_3Set_0006C0DL_018BF8; + +#define dspot18_room_3Set_000800DL_0014C0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_0014C0" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_0014C0[] = dspot18_room_3Set_000800DL_0014C0; + +#define dspot18_room_3Set_000800DL_002B28 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_002B28" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_002B28[] = dspot18_room_3Set_000800DL_002B28; + +#define dspot18_room_3Set_000800DL_018610 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_018610" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_018610[] = dspot18_room_3Set_000800DL_018610; + +#define dspot18_room_3Set_000800DL_00A0D0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_00A0D0" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_00A0D0[] = dspot18_room_3Set_000800DL_00A0D0; + +#define dspot18_room_3Set_000800DL_018F48 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_018F48" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_018F48[] = dspot18_room_3Set_000800DL_018F48; + +#define dspot18_room_3Set_000800DL_005080 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_005080" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_005080[] = dspot18_room_3Set_000800DL_005080; + +#define dspot18_room_3Set_000800DL_018948 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_018948" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_018948[] = dspot18_room_3Set_000800DL_018948; + +#define dspot18_room_3Set_000800DL_0193D8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_0193D8" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_0193D8[] = dspot18_room_3Set_000800DL_0193D8; + +#define dspot18_room_3Set_000800DL_00ADD0 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_00ADD0" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_00ADD0[] = dspot18_room_3Set_000800DL_00ADD0; + +#define dspot18_room_3Set_000800DL_019218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_019218" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_019218[] = dspot18_room_3Set_000800DL_019218; + +#define dspot18_room_3Set_000800DL_00B288 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_00B288" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_00B288[] = dspot18_room_3Set_000800DL_00B288; + +#define dspot18_room_3Set_000800DL_002230 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_002230" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_002230[] = dspot18_room_3Set_000800DL_002230; + +#define dspot18_room_3Set_000800DL_008218 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_008218" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_008218[] = dspot18_room_3Set_000800DL_008218; + +#define dspot18_room_3Set_000800DL_018BF8 "__OTR__scenes/nonmq/spot18_scene/spot18_room_3Set_000800DL_018BF8" +static const ALIGN_ASSET(2) char spot18_room_3Set_000800DL_018BF8[] = dspot18_room_3Set_000800DL_018BF8; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot18/spot18_scene.h b/soh/assets/scenes/overworld/spot18/spot18_scene.h index 09207ee60..7e6de44f2 100644 --- a/soh/assets/scenes/overworld/spot18/spot18_scene.h +++ b/soh/assets/scenes/overworld/spot18/spot18_scene.h @@ -1,89 +1,45 @@ #pragma once + +#include "align_asset_macro.h" + #define dgGoronCityDaruniaCorrectCs "__OTR__scenes/nonmq/spot18_scene/gGoronCityDaruniaCorrectCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityDaruniaCorrectCs[] = dgGoronCityDaruniaCorrectCs; -#else -static const char gGoronCityDaruniaCorrectCs[] __attribute__((aligned (2))) = dgGoronCityDaruniaCorrectCs; -#endif - +static const ALIGN_ASSET(2) char gGoronCityDaruniaCorrectCs[] = dgGoronCityDaruniaCorrectCs; + #define dgGoronCityDarunia01Cs "__OTR__scenes/nonmq/spot18_scene/gGoronCityDarunia01Cs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityDarunia01Cs[] = dgGoronCityDarunia01Cs; -#else -static const char gGoronCityDarunia01Cs[] __attribute__((aligned (2))) = dgGoronCityDarunia01Cs; -#endif - +static const ALIGN_ASSET(2) char gGoronCityDarunia01Cs[] = dgGoronCityDarunia01Cs; + #define dgGoronCityDaruniaWrongCs "__OTR__scenes/nonmq/spot18_scene/gGoronCityDaruniaWrongCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityDaruniaWrongCs[] = dgGoronCityDaruniaWrongCs; -#else -static const char gGoronCityDaruniaWrongCs[] __attribute__((aligned (2))) = dgGoronCityDaruniaWrongCs; -#endif - +static const ALIGN_ASSET(2) char gGoronCityDaruniaWrongCs[] = dgGoronCityDaruniaWrongCs; + #define dgGoronCityIntroCs "__OTR__scenes/nonmq/spot18_scene/gGoronCityIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityIntroCs[] = dgGoronCityIntroCs; -#else -static const char gGoronCityIntroCs[] __attribute__((aligned (2))) = dgGoronCityIntroCs; -#endif - +static const ALIGN_ASSET(2) char gGoronCityIntroCs[] = dgGoronCityIntroCs; + #define dgGoronCityNightEntranceTex "__OTR__scenes/nonmq/spot18_scene/gGoronCityNightEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityNightEntranceTex[] = dgGoronCityNightEntranceTex; -#else -static const char gGoronCityNightEntranceTex[] __attribute__((aligned (2))) = dgGoronCityNightEntranceTex; -#endif - +static const ALIGN_ASSET(2) char gGoronCityNightEntranceTex[] = dgGoronCityNightEntranceTex; + #define dgGoronCityDayEntranceTex "__OTR__scenes/nonmq/spot18_scene/gGoronCityDayEntranceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityDayEntranceTex[] = dgGoronCityDayEntranceTex; -#else -static const char gGoronCityDayEntranceTex[] __attribute__((aligned (2))) = dgGoronCityDayEntranceTex; -#endif - +static const ALIGN_ASSET(2) char gGoronCityDayEntranceTex[] = dgGoronCityDayEntranceTex; + #define dspot18_sceneCollisionHeader_0059AC "__OTR__scenes/nonmq/spot18_scene/spot18_sceneCollisionHeader_0059AC" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_sceneCollisionHeader_0059AC[] = dspot18_sceneCollisionHeader_0059AC; -#else -static const char spot18_sceneCollisionHeader_0059AC[] __attribute__((aligned (2))) = dspot18_sceneCollisionHeader_0059AC; -#endif - +static const ALIGN_ASSET(2) char spot18_sceneCollisionHeader_0059AC[] = dspot18_sceneCollisionHeader_0059AC; + #define dspot18_sceneTLUT_0085C0 "__OTR__scenes/nonmq/spot18_scene/spot18_sceneTLUT_0085C0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_sceneTLUT_0085C0[] = dspot18_sceneTLUT_0085C0; -#else -static const char spot18_sceneTLUT_0085C0[] __attribute__((aligned (2))) = dspot18_sceneTLUT_0085C0; -#endif - +static const ALIGN_ASSET(2) char spot18_sceneTLUT_0085C0[] = dspot18_sceneTLUT_0085C0; + #define dspot18_sceneTex_009C48 "__OTR__scenes/nonmq/spot18_scene/spot18_sceneTex_009C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_sceneTex_009C48[] = dspot18_sceneTex_009C48; -#else -static const char spot18_sceneTex_009C48[] __attribute__((aligned (2))) = dspot18_sceneTex_009C48; -#endif - +static const ALIGN_ASSET(2) char spot18_sceneTex_009C48[] = dspot18_sceneTex_009C48; + #define dspot18_sceneTex_009008 "__OTR__scenes/nonmq/spot18_scene/spot18_sceneTex_009008" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_sceneTex_009008[] = dspot18_sceneTex_009008; -#else -static const char spot18_sceneTex_009008[] __attribute__((aligned (2))) = dspot18_sceneTex_009008; -#endif - +static const ALIGN_ASSET(2) char spot18_sceneTex_009008[] = dspot18_sceneTex_009008; + #define dspot18_sceneTex_0087C8 "__OTR__scenes/nonmq/spot18_scene/spot18_sceneTex_0087C8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_sceneTex_0087C8[] = dspot18_sceneTex_0087C8; -#else -static const char spot18_sceneTex_0087C8[] __attribute__((aligned (2))) = dspot18_sceneTex_0087C8; -#endif - +static const ALIGN_ASSET(2) char spot18_sceneTex_0087C8[] = dspot18_sceneTex_0087C8; + #define dspot18_sceneTex_009848 "__OTR__scenes/nonmq/spot18_scene/spot18_sceneTex_009848" -#ifdef _WIN32 -static const __declspec(align(2)) char spot18_sceneTex_009848[] = dspot18_sceneTex_009848; -#else -static const char spot18_sceneTex_009848[] __attribute__((aligned (2))) = dspot18_sceneTex_009848; -#endif - -#define dspot18_sceneCollisionHeader_0059AC "__OTR__scenes/nonmq/spot18_scene/spot18_sceneCollisionHeader_0059AC" -#define dspot18_sceneCollisionHeader_0059AC "__OTR__scenes/nonmq/spot18_scene/spot18_sceneCollisionHeader_0059AC" +static const ALIGN_ASSET(2) char spot18_sceneTex_009848[] = dspot18_sceneTex_009848; + #define dspot18_sceneCollisionHeader_0059AC "__OTR__scenes/nonmq/spot18_scene/spot18_sceneCollisionHeader_0059AC" +#define dspot18_sceneCollisionHeader_0059AC "__OTR__scenes/nonmq/spot18_scene/spot18_sceneCollisionHeader_0059AC" + +#define dspot18_sceneCollisionHeader_0059AC "__OTR__scenes/nonmq/spot18_scene/spot18_sceneCollisionHeader_0059AC" \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot20/spot20_room_0.h b/soh/assets/scenes/overworld/spot20/spot20_room_0.h index a0276a59e..0bb45dad0 100644 --- a/soh/assets/scenes/overworld/spot20/spot20_room_0.h +++ b/soh/assets/scenes/overworld/spot20/spot20_room_0.h @@ -1,1108 +1,477 @@ #pragma once -#define dgSpot20DL_005E50 "__OTR__scenes/nonmq/spot20_scene/gSpot20DL_005E50" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot20DL_005E50[] = dgSpot20DL_005E50; -#else -static const char gSpot20DL_005E50[] __attribute__((aligned (2))) = dgSpot20DL_005E50; -#endif - -#define dgSpot20DL_0066B8 "__OTR__scenes/nonmq/spot20_scene/gSpot20DL_0066B8" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpot20DL_0066B8[] = dgSpot20DL_0066B8; -#else -static const char gSpot20DL_0066B8[] __attribute__((aligned (2))) = dgSpot20DL_0066B8; -#endif - -#define dspot20_room_0DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_001880[] = dspot20_room_0DL_001880; -#else -static const char spot20_room_0DL_001880[] __attribute__((aligned (2))) = dspot20_room_0DL_001880; -#endif - -#define dspot20_room_0DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_0056B8[] = dspot20_room_0DL_0056B8; -#else -static const char spot20_room_0DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0DL_0056B8; -#endif - -#define dspot20_room_0DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_005C48[] = dspot20_room_0DL_005C48; -#else -static const char spot20_room_0DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0DL_005C48; -#endif - -#define dspot20_room_0DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_003CA0[] = dspot20_room_0DL_003CA0; -#else -static const char spot20_room_0DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0DL_003CA0; -#endif - -#define dspot20_room_0DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_0033B8[] = dspot20_room_0DL_0033B8; -#else -static const char spot20_room_0DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0DL_0033B8; -#endif - -#define dspot20_room_0DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_004460[] = dspot20_room_0DL_004460; -#else -static const char spot20_room_0DL_004460[] __attribute__((aligned (2))) = dspot20_room_0DL_004460; -#endif - -#define dspot20_room_0DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_0065E8[] = dspot20_room_0DL_0065E8; -#else -static const char spot20_room_0DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0DL_0065E8; -#endif - -#define dspot20_room_0DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_004C38[] = dspot20_room_0DL_004C38; -#else -static const char spot20_room_0DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0DL_004C38; -#endif - -#define dspot20_room_0DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_005140[] = dspot20_room_0DL_005140; -#else -static const char spot20_room_0DL_005140[] __attribute__((aligned (2))) = dspot20_room_0DL_005140; -#endif - -#define dspot20_room_0DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_001FB8[] = dspot20_room_0DL_001FB8; -#else -static const char spot20_room_0DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0DL_001FB8; -#endif - -#define dspot20_room_0DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_002730[] = dspot20_room_0DL_002730; -#else -static const char spot20_room_0DL_002730[] __attribute__((aligned (2))) = dspot20_room_0DL_002730; -#endif - -#define dspot20_room_0DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_0062D0[] = dspot20_room_0DL_0062D0; -#else -static const char spot20_room_0DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0DL_0062D0; -#endif - -#define dspot20_room_0DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0DL_002C00[] = dspot20_room_0DL_002C00; -#else -static const char spot20_room_0DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0DL_002C00; -#endif - -#define dspot20_room_0Set_000630DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_001880[] = dspot20_room_0Set_000630DL_001880; -#else -static const char spot20_room_0Set_000630DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_001880; -#endif - -#define dspot20_room_0Set_000630DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_0056B8[] = dspot20_room_0Set_000630DL_0056B8; -#else -static const char spot20_room_0Set_000630DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_0056B8; -#endif - -#define dspot20_room_0Set_000630DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_005C48[] = dspot20_room_0Set_000630DL_005C48; -#else -static const char spot20_room_0Set_000630DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_005C48; -#endif - -#define dspot20_room_0Set_000630DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_003CA0[] = dspot20_room_0Set_000630DL_003CA0; -#else -static const char spot20_room_0Set_000630DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_003CA0; -#endif - -#define dspot20_room_0Set_000630DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_0033B8[] = dspot20_room_0Set_000630DL_0033B8; -#else -static const char spot20_room_0Set_000630DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_0033B8; -#endif - -#define dspot20_room_0Set_000630DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_004460[] = dspot20_room_0Set_000630DL_004460; -#else -static const char spot20_room_0Set_000630DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_004460; -#endif - -#define dspot20_room_0Set_000630DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_0065E8[] = dspot20_room_0Set_000630DL_0065E8; -#else -static const char spot20_room_0Set_000630DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_0065E8; -#endif - -#define dspot20_room_0Set_000630DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_004C38[] = dspot20_room_0Set_000630DL_004C38; -#else -static const char spot20_room_0Set_000630DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_004C38; -#endif - -#define dspot20_room_0Set_000630DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_005140[] = dspot20_room_0Set_000630DL_005140; -#else -static const char spot20_room_0Set_000630DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_005140; -#endif - -#define dspot20_room_0Set_000630DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_001FB8[] = dspot20_room_0Set_000630DL_001FB8; -#else -static const char spot20_room_0Set_000630DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_001FB8; -#endif - -#define dspot20_room_0Set_000630DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_002730[] = dspot20_room_0Set_000630DL_002730; -#else -static const char spot20_room_0Set_000630DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_002730; -#endif - -#define dspot20_room_0Set_000630DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_0062D0[] = dspot20_room_0Set_000630DL_0062D0; -#else -static const char spot20_room_0Set_000630DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_0062D0; -#endif - -#define dspot20_room_0Set_000630DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000630DL_002C00[] = dspot20_room_0Set_000630DL_002C00; -#else -static const char spot20_room_0Set_000630DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_000630DL_002C00; -#endif - -#define dspot20_room_0Set_0002F0DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_001880[] = dspot20_room_0Set_0002F0DL_001880; -#else -static const char spot20_room_0Set_0002F0DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_001880; -#endif - -#define dspot20_room_0Set_0002F0DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_0056B8[] = dspot20_room_0Set_0002F0DL_0056B8; -#else -static const char spot20_room_0Set_0002F0DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_0056B8; -#endif - -#define dspot20_room_0Set_0002F0DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_005C48[] = dspot20_room_0Set_0002F0DL_005C48; -#else -static const char spot20_room_0Set_0002F0DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_005C48; -#endif - -#define dspot20_room_0Set_0002F0DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_003CA0[] = dspot20_room_0Set_0002F0DL_003CA0; -#else -static const char spot20_room_0Set_0002F0DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_003CA0; -#endif - -#define dspot20_room_0Set_0002F0DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_0033B8[] = dspot20_room_0Set_0002F0DL_0033B8; -#else -static const char spot20_room_0Set_0002F0DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_0033B8; -#endif - -#define dspot20_room_0Set_0002F0DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_004460[] = dspot20_room_0Set_0002F0DL_004460; -#else -static const char spot20_room_0Set_0002F0DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_004460; -#endif - -#define dspot20_room_0Set_0002F0DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_0065E8[] = dspot20_room_0Set_0002F0DL_0065E8; -#else -static const char spot20_room_0Set_0002F0DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_0065E8; -#endif - -#define dspot20_room_0Set_0002F0DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_004C38[] = dspot20_room_0Set_0002F0DL_004C38; -#else -static const char spot20_room_0Set_0002F0DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_004C38; -#endif - -#define dspot20_room_0Set_0002F0DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_005140[] = dspot20_room_0Set_0002F0DL_005140; -#else -static const char spot20_room_0Set_0002F0DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_005140; -#endif - -#define dspot20_room_0Set_0002F0DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_001FB8[] = dspot20_room_0Set_0002F0DL_001FB8; -#else -static const char spot20_room_0Set_0002F0DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_001FB8; -#endif - -#define dspot20_room_0Set_0002F0DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_002730[] = dspot20_room_0Set_0002F0DL_002730; -#else -static const char spot20_room_0Set_0002F0DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_002730; -#endif - -#define dspot20_room_0Set_0002F0DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_0062D0[] = dspot20_room_0Set_0002F0DL_0062D0; -#else -static const char spot20_room_0Set_0002F0DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_0062D0; -#endif - -#define dspot20_room_0Set_0002F0DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0002F0DL_002C00[] = dspot20_room_0Set_0002F0DL_002C00; -#else -static const char spot20_room_0Set_0002F0DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_0002F0DL_002C00; -#endif - -#define dspot20_room_0Set_000500DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_001880[] = dspot20_room_0Set_000500DL_001880; -#else -static const char spot20_room_0Set_000500DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_001880; -#endif - -#define dspot20_room_0Set_000500DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_0056B8[] = dspot20_room_0Set_000500DL_0056B8; -#else -static const char spot20_room_0Set_000500DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_0056B8; -#endif - -#define dspot20_room_0Set_000500DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_005C48[] = dspot20_room_0Set_000500DL_005C48; -#else -static const char spot20_room_0Set_000500DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_005C48; -#endif - -#define dspot20_room_0Set_000500DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_003CA0[] = dspot20_room_0Set_000500DL_003CA0; -#else -static const char spot20_room_0Set_000500DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_003CA0; -#endif - -#define dspot20_room_0Set_000500DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_0033B8[] = dspot20_room_0Set_000500DL_0033B8; -#else -static const char spot20_room_0Set_000500DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_0033B8; -#endif - -#define dspot20_room_0Set_000500DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_004460[] = dspot20_room_0Set_000500DL_004460; -#else -static const char spot20_room_0Set_000500DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_004460; -#endif - -#define dspot20_room_0Set_000500DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_0065E8[] = dspot20_room_0Set_000500DL_0065E8; -#else -static const char spot20_room_0Set_000500DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_0065E8; -#endif - -#define dspot20_room_0Set_000500DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_004C38[] = dspot20_room_0Set_000500DL_004C38; -#else -static const char spot20_room_0Set_000500DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_004C38; -#endif - -#define dspot20_room_0Set_000500DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_005140[] = dspot20_room_0Set_000500DL_005140; -#else -static const char spot20_room_0Set_000500DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_005140; -#endif - -#define dspot20_room_0Set_000500DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_001FB8[] = dspot20_room_0Set_000500DL_001FB8; -#else -static const char spot20_room_0Set_000500DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_001FB8; -#endif - -#define dspot20_room_0Set_000500DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_002730[] = dspot20_room_0Set_000500DL_002730; -#else -static const char spot20_room_0Set_000500DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_002730; -#endif - -#define dspot20_room_0Set_000500DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_0062D0[] = dspot20_room_0Set_000500DL_0062D0; -#else -static const char spot20_room_0Set_000500DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_0062D0; -#endif - -#define dspot20_room_0Set_000500DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000500DL_002C00[] = dspot20_room_0Set_000500DL_002C00; -#else -static const char spot20_room_0Set_000500DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_000500DL_002C00; -#endif - -#define dspot20_room_0Set_000860DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_001880[] = dspot20_room_0Set_000860DL_001880; -#else -static const char spot20_room_0Set_000860DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_001880; -#endif - -#define dspot20_room_0Set_000860DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_0056B8[] = dspot20_room_0Set_000860DL_0056B8; -#else -static const char spot20_room_0Set_000860DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_0056B8; -#endif - -#define dspot20_room_0Set_000860DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_005C48[] = dspot20_room_0Set_000860DL_005C48; -#else -static const char spot20_room_0Set_000860DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_005C48; -#endif - -#define dspot20_room_0Set_000860DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_003CA0[] = dspot20_room_0Set_000860DL_003CA0; -#else -static const char spot20_room_0Set_000860DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_003CA0; -#endif - -#define dspot20_room_0Set_000860DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_0033B8[] = dspot20_room_0Set_000860DL_0033B8; -#else -static const char spot20_room_0Set_000860DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_0033B8; -#endif - -#define dspot20_room_0Set_000860DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_004460[] = dspot20_room_0Set_000860DL_004460; -#else -static const char spot20_room_0Set_000860DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_004460; -#endif - -#define dspot20_room_0Set_000860DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_0065E8[] = dspot20_room_0Set_000860DL_0065E8; -#else -static const char spot20_room_0Set_000860DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_0065E8; -#endif - -#define dspot20_room_0Set_000860DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_004C38[] = dspot20_room_0Set_000860DL_004C38; -#else -static const char spot20_room_0Set_000860DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_004C38; -#endif - -#define dspot20_room_0Set_000860DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_005140[] = dspot20_room_0Set_000860DL_005140; -#else -static const char spot20_room_0Set_000860DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_005140; -#endif - -#define dspot20_room_0Set_000860DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_001FB8[] = dspot20_room_0Set_000860DL_001FB8; -#else -static const char spot20_room_0Set_000860DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_001FB8; -#endif - -#define dspot20_room_0Set_000860DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_002730[] = dspot20_room_0Set_000860DL_002730; -#else -static const char spot20_room_0Set_000860DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_002730; -#endif - -#define dspot20_room_0Set_000860DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_0062D0[] = dspot20_room_0Set_000860DL_0062D0; -#else -static const char spot20_room_0Set_000860DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_0062D0; -#endif - -#define dspot20_room_0Set_000860DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000860DL_002C00[] = dspot20_room_0Set_000860DL_002C00; -#else -static const char spot20_room_0Set_000860DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_000860DL_002C00; -#endif - -#define dspot20_room_0Set_000980DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_001880[] = dspot20_room_0Set_000980DL_001880; -#else -static const char spot20_room_0Set_000980DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_001880; -#endif - -#define dspot20_room_0Set_000980DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_0056B8[] = dspot20_room_0Set_000980DL_0056B8; -#else -static const char spot20_room_0Set_000980DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_0056B8; -#endif - -#define dspot20_room_0Set_000980DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_005C48[] = dspot20_room_0Set_000980DL_005C48; -#else -static const char spot20_room_0Set_000980DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_005C48; -#endif - -#define dspot20_room_0Set_000980DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_003CA0[] = dspot20_room_0Set_000980DL_003CA0; -#else -static const char spot20_room_0Set_000980DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_003CA0; -#endif - -#define dspot20_room_0Set_000980DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_0033B8[] = dspot20_room_0Set_000980DL_0033B8; -#else -static const char spot20_room_0Set_000980DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_0033B8; -#endif - -#define dspot20_room_0Set_000980DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_004460[] = dspot20_room_0Set_000980DL_004460; -#else -static const char spot20_room_0Set_000980DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_004460; -#endif - -#define dspot20_room_0Set_000980DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_0065E8[] = dspot20_room_0Set_000980DL_0065E8; -#else -static const char spot20_room_0Set_000980DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_0065E8; -#endif - -#define dspot20_room_0Set_000980DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_004C38[] = dspot20_room_0Set_000980DL_004C38; -#else -static const char spot20_room_0Set_000980DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_004C38; -#endif - -#define dspot20_room_0Set_000980DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_005140[] = dspot20_room_0Set_000980DL_005140; -#else -static const char spot20_room_0Set_000980DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_005140; -#endif - -#define dspot20_room_0Set_000980DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_001FB8[] = dspot20_room_0Set_000980DL_001FB8; -#else -static const char spot20_room_0Set_000980DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_001FB8; -#endif - -#define dspot20_room_0Set_000980DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_002730[] = dspot20_room_0Set_000980DL_002730; -#else -static const char spot20_room_0Set_000980DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_002730; -#endif - -#define dspot20_room_0Set_000980DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_0062D0[] = dspot20_room_0Set_000980DL_0062D0; -#else -static const char spot20_room_0Set_000980DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_0062D0; -#endif - -#define dspot20_room_0Set_000980DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000980DL_002C00[] = dspot20_room_0Set_000980DL_002C00; -#else -static const char spot20_room_0Set_000980DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_000980DL_002C00; -#endif - -#define dspot20_room_0Set_000AA0DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_001880[] = dspot20_room_0Set_000AA0DL_001880; -#else -static const char spot20_room_0Set_000AA0DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_001880; -#endif - -#define dspot20_room_0Set_000AA0DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_0056B8[] = dspot20_room_0Set_000AA0DL_0056B8; -#else -static const char spot20_room_0Set_000AA0DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_0056B8; -#endif - -#define dspot20_room_0Set_000AA0DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_005C48[] = dspot20_room_0Set_000AA0DL_005C48; -#else -static const char spot20_room_0Set_000AA0DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_005C48; -#endif - -#define dspot20_room_0Set_000AA0DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_003CA0[] = dspot20_room_0Set_000AA0DL_003CA0; -#else -static const char spot20_room_0Set_000AA0DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_003CA0; -#endif - -#define dspot20_room_0Set_000AA0DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_0033B8[] = dspot20_room_0Set_000AA0DL_0033B8; -#else -static const char spot20_room_0Set_000AA0DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_0033B8; -#endif - -#define dspot20_room_0Set_000AA0DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_004460[] = dspot20_room_0Set_000AA0DL_004460; -#else -static const char spot20_room_0Set_000AA0DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_004460; -#endif - -#define dspot20_room_0Set_000AA0DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_0065E8[] = dspot20_room_0Set_000AA0DL_0065E8; -#else -static const char spot20_room_0Set_000AA0DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_0065E8; -#endif - -#define dspot20_room_0Set_000AA0DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_004C38[] = dspot20_room_0Set_000AA0DL_004C38; -#else -static const char spot20_room_0Set_000AA0DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_004C38; -#endif - -#define dspot20_room_0Set_000AA0DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_005140[] = dspot20_room_0Set_000AA0DL_005140; -#else -static const char spot20_room_0Set_000AA0DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_005140; -#endif - -#define dspot20_room_0Set_000AA0DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_001FB8[] = dspot20_room_0Set_000AA0DL_001FB8; -#else -static const char spot20_room_0Set_000AA0DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_001FB8; -#endif - -#define dspot20_room_0Set_000AA0DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_002730[] = dspot20_room_0Set_000AA0DL_002730; -#else -static const char spot20_room_0Set_000AA0DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_002730; -#endif - -#define dspot20_room_0Set_000AA0DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_0062D0[] = dspot20_room_0Set_000AA0DL_0062D0; -#else -static const char spot20_room_0Set_000AA0DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_0062D0; -#endif - -#define dspot20_room_0Set_000AA0DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000AA0DL_002C00[] = dspot20_room_0Set_000AA0DL_002C00; -#else -static const char spot20_room_0Set_000AA0DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_000AA0DL_002C00; -#endif - -#define dspot20_room_0Set_000C60DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_001880[] = dspot20_room_0Set_000C60DL_001880; -#else -static const char spot20_room_0Set_000C60DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_001880; -#endif - -#define dspot20_room_0Set_000C60DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_0056B8[] = dspot20_room_0Set_000C60DL_0056B8; -#else -static const char spot20_room_0Set_000C60DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_0056B8; -#endif - -#define dspot20_room_0Set_000C60DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_005C48[] = dspot20_room_0Set_000C60DL_005C48; -#else -static const char spot20_room_0Set_000C60DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_005C48; -#endif - -#define dspot20_room_0Set_000C60DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_003CA0[] = dspot20_room_0Set_000C60DL_003CA0; -#else -static const char spot20_room_0Set_000C60DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_003CA0; -#endif - -#define dspot20_room_0Set_000C60DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_0033B8[] = dspot20_room_0Set_000C60DL_0033B8; -#else -static const char spot20_room_0Set_000C60DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_0033B8; -#endif - -#define dspot20_room_0Set_000C60DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_004460[] = dspot20_room_0Set_000C60DL_004460; -#else -static const char spot20_room_0Set_000C60DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_004460; -#endif - -#define dspot20_room_0Set_000C60DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_0065E8[] = dspot20_room_0Set_000C60DL_0065E8; -#else -static const char spot20_room_0Set_000C60DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_0065E8; -#endif - -#define dspot20_room_0Set_000C60DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_004C38[] = dspot20_room_0Set_000C60DL_004C38; -#else -static const char spot20_room_0Set_000C60DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_004C38; -#endif - -#define dspot20_room_0Set_000C60DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_005140[] = dspot20_room_0Set_000C60DL_005140; -#else -static const char spot20_room_0Set_000C60DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_005140; -#endif - -#define dspot20_room_0Set_000C60DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_001FB8[] = dspot20_room_0Set_000C60DL_001FB8; -#else -static const char spot20_room_0Set_000C60DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_001FB8; -#endif - -#define dspot20_room_0Set_000C60DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_002730[] = dspot20_room_0Set_000C60DL_002730; -#else -static const char spot20_room_0Set_000C60DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_002730; -#endif - -#define dspot20_room_0Set_000C60DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_0062D0[] = dspot20_room_0Set_000C60DL_0062D0; -#else -static const char spot20_room_0Set_000C60DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_0062D0; -#endif - -#define dspot20_room_0Set_000C60DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000C60DL_002C00[] = dspot20_room_0Set_000C60DL_002C00; -#else -static const char spot20_room_0Set_000C60DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_000C60DL_002C00; -#endif - -#define dspot20_room_0Set_000E50DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_001880[] = dspot20_room_0Set_000E50DL_001880; -#else -static const char spot20_room_0Set_000E50DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_001880; -#endif - -#define dspot20_room_0Set_000E50DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_0056B8[] = dspot20_room_0Set_000E50DL_0056B8; -#else -static const char spot20_room_0Set_000E50DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_0056B8; -#endif - -#define dspot20_room_0Set_000E50DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_005C48[] = dspot20_room_0Set_000E50DL_005C48; -#else -static const char spot20_room_0Set_000E50DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_005C48; -#endif - -#define dspot20_room_0Set_000E50DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_003CA0[] = dspot20_room_0Set_000E50DL_003CA0; -#else -static const char spot20_room_0Set_000E50DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_003CA0; -#endif - -#define dspot20_room_0Set_000E50DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_0033B8[] = dspot20_room_0Set_000E50DL_0033B8; -#else -static const char spot20_room_0Set_000E50DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_0033B8; -#endif - -#define dspot20_room_0Set_000E50DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_004460[] = dspot20_room_0Set_000E50DL_004460; -#else -static const char spot20_room_0Set_000E50DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_004460; -#endif - -#define dspot20_room_0Set_000E50DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_0065E8[] = dspot20_room_0Set_000E50DL_0065E8; -#else -static const char spot20_room_0Set_000E50DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_0065E8; -#endif - -#define dspot20_room_0Set_000E50DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_004C38[] = dspot20_room_0Set_000E50DL_004C38; -#else -static const char spot20_room_0Set_000E50DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_004C38; -#endif - -#define dspot20_room_0Set_000E50DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_005140[] = dspot20_room_0Set_000E50DL_005140; -#else -static const char spot20_room_0Set_000E50DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_005140; -#endif - -#define dspot20_room_0Set_000E50DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_001FB8[] = dspot20_room_0Set_000E50DL_001FB8; -#else -static const char spot20_room_0Set_000E50DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_001FB8; -#endif - -#define dspot20_room_0Set_000E50DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_002730[] = dspot20_room_0Set_000E50DL_002730; -#else -static const char spot20_room_0Set_000E50DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_002730; -#endif - -#define dspot20_room_0Set_000E50DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_0062D0[] = dspot20_room_0Set_000E50DL_0062D0; -#else -static const char spot20_room_0Set_000E50DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_0062D0; -#endif - -#define dspot20_room_0Set_000E50DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_000E50DL_002C00[] = dspot20_room_0Set_000E50DL_002C00; -#else -static const char spot20_room_0Set_000E50DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_000E50DL_002C00; -#endif - -#define dspot20_room_0Set_001040DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_001880[] = dspot20_room_0Set_001040DL_001880; -#else -static const char spot20_room_0Set_001040DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_001880; -#endif - -#define dspot20_room_0Set_001040DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_0056B8[] = dspot20_room_0Set_001040DL_0056B8; -#else -static const char spot20_room_0Set_001040DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_0056B8; -#endif - -#define dspot20_room_0Set_001040DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_005C48[] = dspot20_room_0Set_001040DL_005C48; -#else -static const char spot20_room_0Set_001040DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_005C48; -#endif - -#define dspot20_room_0Set_001040DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_003CA0[] = dspot20_room_0Set_001040DL_003CA0; -#else -static const char spot20_room_0Set_001040DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_003CA0; -#endif - -#define dspot20_room_0Set_001040DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_0033B8[] = dspot20_room_0Set_001040DL_0033B8; -#else -static const char spot20_room_0Set_001040DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_0033B8; -#endif - -#define dspot20_room_0Set_001040DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_004460[] = dspot20_room_0Set_001040DL_004460; -#else -static const char spot20_room_0Set_001040DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_004460; -#endif - -#define dspot20_room_0Set_001040DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_0065E8[] = dspot20_room_0Set_001040DL_0065E8; -#else -static const char spot20_room_0Set_001040DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_0065E8; -#endif - -#define dspot20_room_0Set_001040DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_004C38[] = dspot20_room_0Set_001040DL_004C38; -#else -static const char spot20_room_0Set_001040DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_004C38; -#endif - -#define dspot20_room_0Set_001040DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_005140[] = dspot20_room_0Set_001040DL_005140; -#else -static const char spot20_room_0Set_001040DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_005140; -#endif - -#define dspot20_room_0Set_001040DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_001FB8[] = dspot20_room_0Set_001040DL_001FB8; -#else -static const char spot20_room_0Set_001040DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_001FB8; -#endif - -#define dspot20_room_0Set_001040DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_002730[] = dspot20_room_0Set_001040DL_002730; -#else -static const char spot20_room_0Set_001040DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_002730; -#endif - -#define dspot20_room_0Set_001040DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_0062D0[] = dspot20_room_0Set_001040DL_0062D0; -#else -static const char spot20_room_0Set_001040DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_0062D0; -#endif - -#define dspot20_room_0Set_001040DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001040DL_002C00[] = dspot20_room_0Set_001040DL_002C00; -#else -static const char spot20_room_0Set_001040DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_001040DL_002C00; -#endif - -#define dspot20_room_0Set_001170DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_001880[] = dspot20_room_0Set_001170DL_001880; -#else -static const char spot20_room_0Set_001170DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_001880; -#endif - -#define dspot20_room_0Set_001170DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_0056B8[] = dspot20_room_0Set_001170DL_0056B8; -#else -static const char spot20_room_0Set_001170DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_0056B8; -#endif - -#define dspot20_room_0Set_001170DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_005C48[] = dspot20_room_0Set_001170DL_005C48; -#else -static const char spot20_room_0Set_001170DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_005C48; -#endif - -#define dspot20_room_0Set_001170DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_003CA0[] = dspot20_room_0Set_001170DL_003CA0; -#else -static const char spot20_room_0Set_001170DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_003CA0; -#endif - -#define dspot20_room_0Set_001170DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_0033B8[] = dspot20_room_0Set_001170DL_0033B8; -#else -static const char spot20_room_0Set_001170DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_0033B8; -#endif - -#define dspot20_room_0Set_001170DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_004460[] = dspot20_room_0Set_001170DL_004460; -#else -static const char spot20_room_0Set_001170DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_004460; -#endif - -#define dspot20_room_0Set_001170DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_0065E8[] = dspot20_room_0Set_001170DL_0065E8; -#else -static const char spot20_room_0Set_001170DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_0065E8; -#endif - -#define dspot20_room_0Set_001170DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_004C38[] = dspot20_room_0Set_001170DL_004C38; -#else -static const char spot20_room_0Set_001170DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_004C38; -#endif - -#define dspot20_room_0Set_001170DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_005140[] = dspot20_room_0Set_001170DL_005140; -#else -static const char spot20_room_0Set_001170DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_005140; -#endif - -#define dspot20_room_0Set_001170DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_001FB8[] = dspot20_room_0Set_001170DL_001FB8; -#else -static const char spot20_room_0Set_001170DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_001FB8; -#endif - -#define dspot20_room_0Set_001170DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_002730[] = dspot20_room_0Set_001170DL_002730; -#else -static const char spot20_room_0Set_001170DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_002730; -#endif - -#define dspot20_room_0Set_001170DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_0062D0[] = dspot20_room_0Set_001170DL_0062D0; -#else -static const char spot20_room_0Set_001170DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_0062D0; -#endif - -#define dspot20_room_0Set_001170DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_001170DL_002C00[] = dspot20_room_0Set_001170DL_002C00; -#else -static const char spot20_room_0Set_001170DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_001170DL_002C00; -#endif - -#define dspot20_room_0Set_0013A0DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_001880" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_001880[] = dspot20_room_0Set_0013A0DL_001880; -#else -static const char spot20_room_0Set_0013A0DL_001880[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_001880; -#endif - -#define dspot20_room_0Set_0013A0DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_0056B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_0056B8[] = dspot20_room_0Set_0013A0DL_0056B8; -#else -static const char spot20_room_0Set_0013A0DL_0056B8[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_0056B8; -#endif - -#define dspot20_room_0Set_0013A0DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_005C48" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_005C48[] = dspot20_room_0Set_0013A0DL_005C48; -#else -static const char spot20_room_0Set_0013A0DL_005C48[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_005C48; -#endif - -#define dspot20_room_0Set_0013A0DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_003CA0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_003CA0[] = dspot20_room_0Set_0013A0DL_003CA0; -#else -static const char spot20_room_0Set_0013A0DL_003CA0[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_003CA0; -#endif - -#define dspot20_room_0Set_0013A0DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_0033B8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_0033B8[] = dspot20_room_0Set_0013A0DL_0033B8; -#else -static const char spot20_room_0Set_0013A0DL_0033B8[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_0033B8; -#endif - -#define dspot20_room_0Set_0013A0DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_004460" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_004460[] = dspot20_room_0Set_0013A0DL_004460; -#else -static const char spot20_room_0Set_0013A0DL_004460[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_004460; -#endif - -#define dspot20_room_0Set_0013A0DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_0065E8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_0065E8[] = dspot20_room_0Set_0013A0DL_0065E8; -#else -static const char spot20_room_0Set_0013A0DL_0065E8[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_0065E8; -#endif - -#define dspot20_room_0Set_0013A0DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_004C38" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_004C38[] = dspot20_room_0Set_0013A0DL_004C38; -#else -static const char spot20_room_0Set_0013A0DL_004C38[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_004C38; -#endif - -#define dspot20_room_0Set_0013A0DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_005140" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_005140[] = dspot20_room_0Set_0013A0DL_005140; -#else -static const char spot20_room_0Set_0013A0DL_005140[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_005140; -#endif - -#define dspot20_room_0Set_0013A0DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_001FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_001FB8[] = dspot20_room_0Set_0013A0DL_001FB8; -#else -static const char spot20_room_0Set_0013A0DL_001FB8[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_001FB8; -#endif - -#define dspot20_room_0Set_0013A0DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_002730" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_002730[] = dspot20_room_0Set_0013A0DL_002730; -#else -static const char spot20_room_0Set_0013A0DL_002730[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_002730; -#endif - -#define dspot20_room_0Set_0013A0DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_0062D0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_0062D0[] = dspot20_room_0Set_0013A0DL_0062D0; -#else -static const char spot20_room_0Set_0013A0DL_0062D0[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_0062D0; -#endif - -#define dspot20_room_0Set_0013A0DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_002C00" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_room_0Set_0013A0DL_002C00[] = dspot20_room_0Set_0013A0DL_002C00; -#else -static const char spot20_room_0Set_0013A0DL_002C00[] __attribute__((aligned (2))) = dspot20_room_0Set_0013A0DL_002C00; -#endif - +#include "align_asset_macro.h" + +#define dgSpot20DL_005E50 "__OTR__scenes/nonmq/spot20_scene/gSpot20DL_005E50" +static const ALIGN_ASSET(2) char gSpot20DL_005E50[] = dgSpot20DL_005E50; + +#define dgSpot20DL_0066B8 "__OTR__scenes/nonmq/spot20_scene/gSpot20DL_0066B8" +static const ALIGN_ASSET(2) char gSpot20DL_0066B8[] = dgSpot20DL_0066B8; + +#define dspot20_room_0DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0DL_001880[] = dspot20_room_0DL_001880; + +#define dspot20_room_0DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0DL_0056B8[] = dspot20_room_0DL_0056B8; + +#define dspot20_room_0DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0DL_005C48[] = dspot20_room_0DL_005C48; + +#define dspot20_room_0DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0DL_003CA0[] = dspot20_room_0DL_003CA0; + +#define dspot20_room_0DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0DL_0033B8[] = dspot20_room_0DL_0033B8; + +#define dspot20_room_0DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0DL_004460[] = dspot20_room_0DL_004460; + +#define dspot20_room_0DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0DL_0065E8[] = dspot20_room_0DL_0065E8; + +#define dspot20_room_0DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0DL_004C38[] = dspot20_room_0DL_004C38; + +#define dspot20_room_0DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0DL_005140[] = dspot20_room_0DL_005140; + +#define dspot20_room_0DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0DL_001FB8[] = dspot20_room_0DL_001FB8; + +#define dspot20_room_0DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0DL_002730[] = dspot20_room_0DL_002730; + +#define dspot20_room_0DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0DL_0062D0[] = dspot20_room_0DL_0062D0; + +#define dspot20_room_0DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0DL_002C00[] = dspot20_room_0DL_002C00; + +#define dspot20_room_0Set_000630DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_001880[] = dspot20_room_0Set_000630DL_001880; + +#define dspot20_room_0Set_000630DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_0056B8[] = dspot20_room_0Set_000630DL_0056B8; + +#define dspot20_room_0Set_000630DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_005C48[] = dspot20_room_0Set_000630DL_005C48; + +#define dspot20_room_0Set_000630DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_003CA0[] = dspot20_room_0Set_000630DL_003CA0; + +#define dspot20_room_0Set_000630DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_0033B8[] = dspot20_room_0Set_000630DL_0033B8; + +#define dspot20_room_0Set_000630DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_004460[] = dspot20_room_0Set_000630DL_004460; + +#define dspot20_room_0Set_000630DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_0065E8[] = dspot20_room_0Set_000630DL_0065E8; + +#define dspot20_room_0Set_000630DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_004C38[] = dspot20_room_0Set_000630DL_004C38; + +#define dspot20_room_0Set_000630DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_005140[] = dspot20_room_0Set_000630DL_005140; + +#define dspot20_room_0Set_000630DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_001FB8[] = dspot20_room_0Set_000630DL_001FB8; + +#define dspot20_room_0Set_000630DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_002730[] = dspot20_room_0Set_000630DL_002730; + +#define dspot20_room_0Set_000630DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_0062D0[] = dspot20_room_0Set_000630DL_0062D0; + +#define dspot20_room_0Set_000630DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000630DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_000630DL_002C00[] = dspot20_room_0Set_000630DL_002C00; + +#define dspot20_room_0Set_0002F0DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_001880[] = dspot20_room_0Set_0002F0DL_001880; + +#define dspot20_room_0Set_0002F0DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_0056B8[] = dspot20_room_0Set_0002F0DL_0056B8; + +#define dspot20_room_0Set_0002F0DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_005C48[] = dspot20_room_0Set_0002F0DL_005C48; + +#define dspot20_room_0Set_0002F0DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_003CA0[] = dspot20_room_0Set_0002F0DL_003CA0; + +#define dspot20_room_0Set_0002F0DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_0033B8[] = dspot20_room_0Set_0002F0DL_0033B8; + +#define dspot20_room_0Set_0002F0DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_004460[] = dspot20_room_0Set_0002F0DL_004460; + +#define dspot20_room_0Set_0002F0DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_0065E8[] = dspot20_room_0Set_0002F0DL_0065E8; + +#define dspot20_room_0Set_0002F0DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_004C38[] = dspot20_room_0Set_0002F0DL_004C38; + +#define dspot20_room_0Set_0002F0DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_005140[] = dspot20_room_0Set_0002F0DL_005140; + +#define dspot20_room_0Set_0002F0DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_001FB8[] = dspot20_room_0Set_0002F0DL_001FB8; + +#define dspot20_room_0Set_0002F0DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_002730[] = dspot20_room_0Set_0002F0DL_002730; + +#define dspot20_room_0Set_0002F0DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_0062D0[] = dspot20_room_0Set_0002F0DL_0062D0; + +#define dspot20_room_0Set_0002F0DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0002F0DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_0002F0DL_002C00[] = dspot20_room_0Set_0002F0DL_002C00; + +#define dspot20_room_0Set_000500DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_001880[] = dspot20_room_0Set_000500DL_001880; + +#define dspot20_room_0Set_000500DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_0056B8[] = dspot20_room_0Set_000500DL_0056B8; + +#define dspot20_room_0Set_000500DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_005C48[] = dspot20_room_0Set_000500DL_005C48; + +#define dspot20_room_0Set_000500DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_003CA0[] = dspot20_room_0Set_000500DL_003CA0; + +#define dspot20_room_0Set_000500DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_0033B8[] = dspot20_room_0Set_000500DL_0033B8; + +#define dspot20_room_0Set_000500DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_004460[] = dspot20_room_0Set_000500DL_004460; + +#define dspot20_room_0Set_000500DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_0065E8[] = dspot20_room_0Set_000500DL_0065E8; + +#define dspot20_room_0Set_000500DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_004C38[] = dspot20_room_0Set_000500DL_004C38; + +#define dspot20_room_0Set_000500DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_005140[] = dspot20_room_0Set_000500DL_005140; + +#define dspot20_room_0Set_000500DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_001FB8[] = dspot20_room_0Set_000500DL_001FB8; + +#define dspot20_room_0Set_000500DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_002730[] = dspot20_room_0Set_000500DL_002730; + +#define dspot20_room_0Set_000500DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_0062D0[] = dspot20_room_0Set_000500DL_0062D0; + +#define dspot20_room_0Set_000500DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000500DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_000500DL_002C00[] = dspot20_room_0Set_000500DL_002C00; + +#define dspot20_room_0Set_000860DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_001880[] = dspot20_room_0Set_000860DL_001880; + +#define dspot20_room_0Set_000860DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_0056B8[] = dspot20_room_0Set_000860DL_0056B8; + +#define dspot20_room_0Set_000860DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_005C48[] = dspot20_room_0Set_000860DL_005C48; + +#define dspot20_room_0Set_000860DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_003CA0[] = dspot20_room_0Set_000860DL_003CA0; + +#define dspot20_room_0Set_000860DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_0033B8[] = dspot20_room_0Set_000860DL_0033B8; + +#define dspot20_room_0Set_000860DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_004460[] = dspot20_room_0Set_000860DL_004460; + +#define dspot20_room_0Set_000860DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_0065E8[] = dspot20_room_0Set_000860DL_0065E8; + +#define dspot20_room_0Set_000860DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_004C38[] = dspot20_room_0Set_000860DL_004C38; + +#define dspot20_room_0Set_000860DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_005140[] = dspot20_room_0Set_000860DL_005140; + +#define dspot20_room_0Set_000860DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_001FB8[] = dspot20_room_0Set_000860DL_001FB8; + +#define dspot20_room_0Set_000860DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_002730[] = dspot20_room_0Set_000860DL_002730; + +#define dspot20_room_0Set_000860DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_0062D0[] = dspot20_room_0Set_000860DL_0062D0; + +#define dspot20_room_0Set_000860DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000860DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_000860DL_002C00[] = dspot20_room_0Set_000860DL_002C00; + +#define dspot20_room_0Set_000980DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_001880[] = dspot20_room_0Set_000980DL_001880; + +#define dspot20_room_0Set_000980DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_0056B8[] = dspot20_room_0Set_000980DL_0056B8; + +#define dspot20_room_0Set_000980DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_005C48[] = dspot20_room_0Set_000980DL_005C48; + +#define dspot20_room_0Set_000980DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_003CA0[] = dspot20_room_0Set_000980DL_003CA0; + +#define dspot20_room_0Set_000980DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_0033B8[] = dspot20_room_0Set_000980DL_0033B8; + +#define dspot20_room_0Set_000980DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_004460[] = dspot20_room_0Set_000980DL_004460; + +#define dspot20_room_0Set_000980DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_0065E8[] = dspot20_room_0Set_000980DL_0065E8; + +#define dspot20_room_0Set_000980DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_004C38[] = dspot20_room_0Set_000980DL_004C38; + +#define dspot20_room_0Set_000980DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_005140[] = dspot20_room_0Set_000980DL_005140; + +#define dspot20_room_0Set_000980DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_001FB8[] = dspot20_room_0Set_000980DL_001FB8; + +#define dspot20_room_0Set_000980DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_002730[] = dspot20_room_0Set_000980DL_002730; + +#define dspot20_room_0Set_000980DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_0062D0[] = dspot20_room_0Set_000980DL_0062D0; + +#define dspot20_room_0Set_000980DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000980DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_000980DL_002C00[] = dspot20_room_0Set_000980DL_002C00; + +#define dspot20_room_0Set_000AA0DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_001880[] = dspot20_room_0Set_000AA0DL_001880; + +#define dspot20_room_0Set_000AA0DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_0056B8[] = dspot20_room_0Set_000AA0DL_0056B8; + +#define dspot20_room_0Set_000AA0DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_005C48[] = dspot20_room_0Set_000AA0DL_005C48; + +#define dspot20_room_0Set_000AA0DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_003CA0[] = dspot20_room_0Set_000AA0DL_003CA0; + +#define dspot20_room_0Set_000AA0DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_0033B8[] = dspot20_room_0Set_000AA0DL_0033B8; + +#define dspot20_room_0Set_000AA0DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_004460[] = dspot20_room_0Set_000AA0DL_004460; + +#define dspot20_room_0Set_000AA0DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_0065E8[] = dspot20_room_0Set_000AA0DL_0065E8; + +#define dspot20_room_0Set_000AA0DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_004C38[] = dspot20_room_0Set_000AA0DL_004C38; + +#define dspot20_room_0Set_000AA0DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_005140[] = dspot20_room_0Set_000AA0DL_005140; + +#define dspot20_room_0Set_000AA0DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_001FB8[] = dspot20_room_0Set_000AA0DL_001FB8; + +#define dspot20_room_0Set_000AA0DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_002730[] = dspot20_room_0Set_000AA0DL_002730; + +#define dspot20_room_0Set_000AA0DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_0062D0[] = dspot20_room_0Set_000AA0DL_0062D0; + +#define dspot20_room_0Set_000AA0DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000AA0DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_000AA0DL_002C00[] = dspot20_room_0Set_000AA0DL_002C00; + +#define dspot20_room_0Set_000C60DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_001880[] = dspot20_room_0Set_000C60DL_001880; + +#define dspot20_room_0Set_000C60DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_0056B8[] = dspot20_room_0Set_000C60DL_0056B8; + +#define dspot20_room_0Set_000C60DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_005C48[] = dspot20_room_0Set_000C60DL_005C48; + +#define dspot20_room_0Set_000C60DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_003CA0[] = dspot20_room_0Set_000C60DL_003CA0; + +#define dspot20_room_0Set_000C60DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_0033B8[] = dspot20_room_0Set_000C60DL_0033B8; + +#define dspot20_room_0Set_000C60DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_004460[] = dspot20_room_0Set_000C60DL_004460; + +#define dspot20_room_0Set_000C60DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_0065E8[] = dspot20_room_0Set_000C60DL_0065E8; + +#define dspot20_room_0Set_000C60DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_004C38[] = dspot20_room_0Set_000C60DL_004C38; + +#define dspot20_room_0Set_000C60DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_005140[] = dspot20_room_0Set_000C60DL_005140; + +#define dspot20_room_0Set_000C60DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_001FB8[] = dspot20_room_0Set_000C60DL_001FB8; + +#define dspot20_room_0Set_000C60DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_002730[] = dspot20_room_0Set_000C60DL_002730; + +#define dspot20_room_0Set_000C60DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_0062D0[] = dspot20_room_0Set_000C60DL_0062D0; + +#define dspot20_room_0Set_000C60DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000C60DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_000C60DL_002C00[] = dspot20_room_0Set_000C60DL_002C00; + +#define dspot20_room_0Set_000E50DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_001880[] = dspot20_room_0Set_000E50DL_001880; + +#define dspot20_room_0Set_000E50DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_0056B8[] = dspot20_room_0Set_000E50DL_0056B8; + +#define dspot20_room_0Set_000E50DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_005C48[] = dspot20_room_0Set_000E50DL_005C48; + +#define dspot20_room_0Set_000E50DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_003CA0[] = dspot20_room_0Set_000E50DL_003CA0; + +#define dspot20_room_0Set_000E50DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_0033B8[] = dspot20_room_0Set_000E50DL_0033B8; + +#define dspot20_room_0Set_000E50DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_004460[] = dspot20_room_0Set_000E50DL_004460; + +#define dspot20_room_0Set_000E50DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_0065E8[] = dspot20_room_0Set_000E50DL_0065E8; + +#define dspot20_room_0Set_000E50DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_004C38[] = dspot20_room_0Set_000E50DL_004C38; + +#define dspot20_room_0Set_000E50DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_005140[] = dspot20_room_0Set_000E50DL_005140; + +#define dspot20_room_0Set_000E50DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_001FB8[] = dspot20_room_0Set_000E50DL_001FB8; + +#define dspot20_room_0Set_000E50DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_002730[] = dspot20_room_0Set_000E50DL_002730; + +#define dspot20_room_0Set_000E50DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_0062D0[] = dspot20_room_0Set_000E50DL_0062D0; + +#define dspot20_room_0Set_000E50DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_000E50DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_000E50DL_002C00[] = dspot20_room_0Set_000E50DL_002C00; + +#define dspot20_room_0Set_001040DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_001880[] = dspot20_room_0Set_001040DL_001880; + +#define dspot20_room_0Set_001040DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_0056B8[] = dspot20_room_0Set_001040DL_0056B8; + +#define dspot20_room_0Set_001040DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_005C48[] = dspot20_room_0Set_001040DL_005C48; + +#define dspot20_room_0Set_001040DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_003CA0[] = dspot20_room_0Set_001040DL_003CA0; + +#define dspot20_room_0Set_001040DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_0033B8[] = dspot20_room_0Set_001040DL_0033B8; + +#define dspot20_room_0Set_001040DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_004460[] = dspot20_room_0Set_001040DL_004460; + +#define dspot20_room_0Set_001040DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_0065E8[] = dspot20_room_0Set_001040DL_0065E8; + +#define dspot20_room_0Set_001040DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_004C38[] = dspot20_room_0Set_001040DL_004C38; + +#define dspot20_room_0Set_001040DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_005140[] = dspot20_room_0Set_001040DL_005140; + +#define dspot20_room_0Set_001040DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_001FB8[] = dspot20_room_0Set_001040DL_001FB8; + +#define dspot20_room_0Set_001040DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_002730[] = dspot20_room_0Set_001040DL_002730; + +#define dspot20_room_0Set_001040DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_0062D0[] = dspot20_room_0Set_001040DL_0062D0; + +#define dspot20_room_0Set_001040DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001040DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_001040DL_002C00[] = dspot20_room_0Set_001040DL_002C00; + +#define dspot20_room_0Set_001170DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_001880[] = dspot20_room_0Set_001170DL_001880; + +#define dspot20_room_0Set_001170DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_0056B8[] = dspot20_room_0Set_001170DL_0056B8; + +#define dspot20_room_0Set_001170DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_005C48[] = dspot20_room_0Set_001170DL_005C48; + +#define dspot20_room_0Set_001170DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_003CA0[] = dspot20_room_0Set_001170DL_003CA0; + +#define dspot20_room_0Set_001170DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_0033B8[] = dspot20_room_0Set_001170DL_0033B8; + +#define dspot20_room_0Set_001170DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_004460[] = dspot20_room_0Set_001170DL_004460; + +#define dspot20_room_0Set_001170DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_0065E8[] = dspot20_room_0Set_001170DL_0065E8; + +#define dspot20_room_0Set_001170DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_004C38[] = dspot20_room_0Set_001170DL_004C38; + +#define dspot20_room_0Set_001170DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_005140[] = dspot20_room_0Set_001170DL_005140; + +#define dspot20_room_0Set_001170DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_001FB8[] = dspot20_room_0Set_001170DL_001FB8; + +#define dspot20_room_0Set_001170DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_002730[] = dspot20_room_0Set_001170DL_002730; + +#define dspot20_room_0Set_001170DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_0062D0[] = dspot20_room_0Set_001170DL_0062D0; + +#define dspot20_room_0Set_001170DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_001170DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_001170DL_002C00[] = dspot20_room_0Set_001170DL_002C00; + +#define dspot20_room_0Set_0013A0DL_001880 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_001880" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_001880[] = dspot20_room_0Set_0013A0DL_001880; + +#define dspot20_room_0Set_0013A0DL_0056B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_0056B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_0056B8[] = dspot20_room_0Set_0013A0DL_0056B8; + +#define dspot20_room_0Set_0013A0DL_005C48 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_005C48" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_005C48[] = dspot20_room_0Set_0013A0DL_005C48; + +#define dspot20_room_0Set_0013A0DL_003CA0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_003CA0" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_003CA0[] = dspot20_room_0Set_0013A0DL_003CA0; + +#define dspot20_room_0Set_0013A0DL_0033B8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_0033B8" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_0033B8[] = dspot20_room_0Set_0013A0DL_0033B8; + +#define dspot20_room_0Set_0013A0DL_004460 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_004460" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_004460[] = dspot20_room_0Set_0013A0DL_004460; + +#define dspot20_room_0Set_0013A0DL_0065E8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_0065E8" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_0065E8[] = dspot20_room_0Set_0013A0DL_0065E8; + +#define dspot20_room_0Set_0013A0DL_004C38 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_004C38" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_004C38[] = dspot20_room_0Set_0013A0DL_004C38; + +#define dspot20_room_0Set_0013A0DL_005140 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_005140" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_005140[] = dspot20_room_0Set_0013A0DL_005140; + +#define dspot20_room_0Set_0013A0DL_001FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_001FB8" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_001FB8[] = dspot20_room_0Set_0013A0DL_001FB8; + +#define dspot20_room_0Set_0013A0DL_002730 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_002730" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_002730[] = dspot20_room_0Set_0013A0DL_002730; + +#define dspot20_room_0Set_0013A0DL_0062D0 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_0062D0" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_0062D0[] = dspot20_room_0Set_0013A0DL_0062D0; + +#define dspot20_room_0Set_0013A0DL_002C00 "__OTR__scenes/nonmq/spot20_scene/spot20_room_0Set_0013A0DL_002C00" +static const ALIGN_ASSET(2) char spot20_room_0Set_0013A0DL_002C00[] = dspot20_room_0Set_0013A0DL_002C00; \ No newline at end of file diff --git a/soh/assets/scenes/overworld/spot20/spot20_scene.h b/soh/assets/scenes/overworld/spot20/spot20_scene.h index ac2cec6c8..b9035e90f 100644 --- a/soh/assets/scenes/overworld/spot20/spot20_scene.h +++ b/soh/assets/scenes/overworld/spot20/spot20_scene.h @@ -1,195 +1,103 @@ #pragma once + +#include "align_asset_macro.h" + #define dgLonLonRanchIntroCs "__OTR__scenes/nonmq/spot20_scene/gLonLonRanchIntroCs" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchIntroCs[] = dgLonLonRanchIntroCs; -#else -static const char gLonLonRanchIntroCs[] __attribute__((aligned (2))) = dgLonLonRanchIntroCs; -#endif - +static const ALIGN_ASSET(2) char gLonLonRanchIntroCs[] = dgLonLonRanchIntroCs; + #define dgLonLonRanchDayWindowTex "__OTR__scenes/nonmq/spot20_scene/gLonLonRanchDayWindowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchDayWindowTex[] = dgLonLonRanchDayWindowTex; -#else -static const char gLonLonRanchDayWindowTex[] __attribute__((aligned (2))) = dgLonLonRanchDayWindowTex; -#endif - +static const ALIGN_ASSET(2) char gLonLonRanchDayWindowTex[] = dgLonLonRanchDayWindowTex; + #define dgLonLonRangeNightWindowsTex "__OTR__scenes/nonmq/spot20_scene/gLonLonRangeNightWindowsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRangeNightWindowsTex[] = dgLonLonRangeNightWindowsTex; -#else -static const char gLonLonRangeNightWindowsTex[] __attribute__((aligned (2))) = dgLonLonRangeNightWindowsTex; -#endif - +static const ALIGN_ASSET(2) char gLonLonRangeNightWindowsTex[] = dgLonLonRangeNightWindowsTex; + #define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneCollisionHeader_002948[] = dspot20_sceneCollisionHeader_002948; -#else -static const char spot20_sceneCollisionHeader_002948[] __attribute__((aligned (2))) = dspot20_sceneCollisionHeader_002948; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneCollisionHeader_002948[] = dspot20_sceneCollisionHeader_002948; + #define dspot20_sceneTex_00D9E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00D9E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00D9E0[] = dspot20_sceneTex_00D9E0; -#else -static const char spot20_sceneTex_00D9E0[] __attribute__((aligned (2))) = dspot20_sceneTex_00D9E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00D9E0[] = dspot20_sceneTex_00D9E0; + #define dspot20_sceneTex_00D1E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00D1E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00D1E0[] = dspot20_sceneTex_00D1E0; -#else -static const char spot20_sceneTex_00D1E0[] __attribute__((aligned (2))) = dspot20_sceneTex_00D1E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00D1E0[] = dspot20_sceneTex_00D1E0; + #define dspot20_sceneTex_0069E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_0069E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_0069E0[] = dspot20_sceneTex_0069E0; -#else -static const char spot20_sceneTex_0069E0[] __attribute__((aligned (2))) = dspot20_sceneTex_0069E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_0069E0[] = dspot20_sceneTex_0069E0; + #define dspot20_sceneTLUT_005DB0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTLUT_005DB0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTLUT_005DB0[] = dspot20_sceneTLUT_005DB0; -#else -static const char spot20_sceneTLUT_005DB0[] __attribute__((aligned (2))) = dspot20_sceneTLUT_005DB0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTLUT_005DB0[] = dspot20_sceneTLUT_005DB0; + #define dspot20_sceneTex_0067E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_0067E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_0067E0[] = dspot20_sceneTex_0067E0; -#else -static const char spot20_sceneTex_0067E0[] __attribute__((aligned (2))) = dspot20_sceneTex_0067E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_0067E0[] = dspot20_sceneTex_0067E0; + #define dspot20_sceneTex_00F9E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00F9E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00F9E0[] = dspot20_sceneTex_00F9E0; -#else -static const char spot20_sceneTex_00F9E0[] __attribute__((aligned (2))) = dspot20_sceneTex_00F9E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00F9E0[] = dspot20_sceneTex_00F9E0; + #define dspot20_sceneTex_00C9E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00C9E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00C9E0[] = dspot20_sceneTex_00C9E0; -#else -static const char spot20_sceneTex_00C9E0[] __attribute__((aligned (2))) = dspot20_sceneTex_00C9E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00C9E0[] = dspot20_sceneTex_00C9E0; + #define dspot20_sceneTex_00BBE0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00BBE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00BBE0[] = dspot20_sceneTex_00BBE0; -#else -static const char spot20_sceneTex_00BBE0[] __attribute__((aligned (2))) = dspot20_sceneTex_00BBE0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00BBE0[] = dspot20_sceneTex_00BBE0; + #define dspot20_sceneTex_00BDE0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00BDE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00BDE0[] = dspot20_sceneTex_00BDE0; -#else -static const char spot20_sceneTex_00BDE0[] __attribute__((aligned (2))) = dspot20_sceneTex_00BDE0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00BDE0[] = dspot20_sceneTex_00BDE0; + #define dspot20_sceneTex_0091E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_0091E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_0091E0[] = dspot20_sceneTex_0091E0; -#else -static const char spot20_sceneTex_0091E0[] __attribute__((aligned (2))) = dspot20_sceneTex_0091E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_0091E0[] = dspot20_sceneTex_0091E0; + #define dspot20_sceneTex_0071E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_0071E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_0071E0[] = dspot20_sceneTex_0071E0; -#else -static const char spot20_sceneTex_0071E0[] __attribute__((aligned (2))) = dspot20_sceneTex_0071E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_0071E0[] = dspot20_sceneTex_0071E0; + #define dspot20_sceneTex_005FE0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_005FE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_005FE0[] = dspot20_sceneTex_005FE0; -#else -static const char spot20_sceneTex_005FE0[] __attribute__((aligned (2))) = dspot20_sceneTex_005FE0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_005FE0[] = dspot20_sceneTex_005FE0; + #define dspot20_sceneTex_00ABE0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00ABE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00ABE0[] = dspot20_sceneTex_00ABE0; -#else -static const char spot20_sceneTex_00ABE0[] __attribute__((aligned (2))) = dspot20_sceneTex_00ABE0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00ABE0[] = dspot20_sceneTex_00ABE0; + #define dspot20_sceneTex_009BE0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_009BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_009BE0[] = dspot20_sceneTex_009BE0; -#else -static const char spot20_sceneTex_009BE0[] __attribute__((aligned (2))) = dspot20_sceneTex_009BE0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_009BE0[] = dspot20_sceneTex_009BE0; + #define dspot20_sceneTex_00E9E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00E9E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00E9E0[] = dspot20_sceneTex_00E9E0; -#else -static const char spot20_sceneTex_00E9E0[] __attribute__((aligned (2))) = dspot20_sceneTex_00E9E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00E9E0[] = dspot20_sceneTex_00E9E0; + #define dspot20_sceneTex_00E1E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00E1E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00E1E0[] = dspot20_sceneTex_00E1E0; -#else -static const char spot20_sceneTex_00E1E0[] __attribute__((aligned (2))) = dspot20_sceneTex_00E1E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00E1E0[] = dspot20_sceneTex_00E1E0; + #define dspot20_sceneTex_00C1E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00C1E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00C1E0[] = dspot20_sceneTex_00C1E0; -#else -static const char spot20_sceneTex_00C1E0[] __attribute__((aligned (2))) = dspot20_sceneTex_00C1E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00C1E0[] = dspot20_sceneTex_00C1E0; + #define dspot20_sceneTLUT_005FB8 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTLUT_005FB8" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTLUT_005FB8[] = dspot20_sceneTLUT_005FB8; -#else -static const char spot20_sceneTLUT_005FB8[] __attribute__((aligned (2))) = dspot20_sceneTLUT_005FB8; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTLUT_005FB8[] = dspot20_sceneTLUT_005FB8; + #define dspot20_sceneTex_0093E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_0093E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_0093E0[] = dspot20_sceneTex_0093E0; -#else -static const char spot20_sceneTex_0093E0[] __attribute__((aligned (2))) = dspot20_sceneTex_0093E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_0093E0[] = dspot20_sceneTex_0093E0; + #define dspot20_sceneTex_00F1E0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_00F1E0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_00F1E0[] = dspot20_sceneTex_00F1E0; -#else -static const char spot20_sceneTex_00F1E0[] __attribute__((aligned (2))) = dspot20_sceneTex_00F1E0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_00F1E0[] = dspot20_sceneTex_00F1E0; + #define dspot20_sceneTex_010BE0 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_010BE0" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_010BE0[] = dspot20_sceneTex_010BE0; -#else -static const char spot20_sceneTex_010BE0[] __attribute__((aligned (2))) = dspot20_sceneTex_010BE0; -#endif - +static const ALIGN_ASSET(2) char spot20_sceneTex_010BE0[] = dspot20_sceneTex_010BE0; + #define dspot20_sceneTex_010E20 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneTex_010E20" -#ifdef _WIN32 -static const __declspec(align(2)) char spot20_sceneTex_010E20[] = dspot20_sceneTex_010E20; -#else -static const char spot20_sceneTex_010E20[] __attribute__((aligned (2))) = dspot20_sceneTex_010E20; -#endif - -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" -#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" +static const ALIGN_ASSET(2) char spot20_sceneTex_010E20[] = dspot20_sceneTex_010E20; + #define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" + +#define dspot20_sceneCollisionHeader_002948 "__OTR__scenes/nonmq/spot20_scene/spot20_sceneCollisionHeader_002948" \ No newline at end of file diff --git a/soh/assets/scenes/shops/alley_shop/alley_shop_room_0.h b/soh/assets/scenes/shops/alley_shop/alley_shop_room_0.h index f8ff96ad7..798d7c662 100644 --- a/soh/assets/scenes/shops/alley_shop/alley_shop_room_0.h +++ b/soh/assets/scenes/shops/alley_shop/alley_shop_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dalley_shop_room_0DL_0013E0 "__OTR__scenes/nonmq/alley_shop_scene/alley_shop_room_0DL_0013E0" -#ifdef _WIN32 -static const __declspec(align(2)) char alley_shop_room_0DL_0013E0[] = dalley_shop_room_0DL_0013E0; -#else -static const char alley_shop_room_0DL_0013E0[] __attribute__((aligned (2))) = dalley_shop_room_0DL_0013E0; -#endif - +#include "align_asset_macro.h" + +#define dalley_shop_room_0DL_0013E0 "__OTR__scenes/nonmq/alley_shop_scene/alley_shop_room_0DL_0013E0" +static const ALIGN_ASSET(2) char alley_shop_room_0DL_0013E0[] = dalley_shop_room_0DL_0013E0; \ No newline at end of file diff --git a/soh/assets/scenes/shops/alley_shop/alley_shop_scene.h b/soh/assets/scenes/shops/alley_shop/alley_shop_scene.h index f053183e3..afe1639ff 100644 --- a/soh/assets/scenes/shops/alley_shop/alley_shop_scene.h +++ b/soh/assets/scenes/shops/alley_shop/alley_shop_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dalley_shop_sceneCollisionHeader_000584 "__OTR__scenes/nonmq/alley_shop_scene/alley_shop_sceneCollisionHeader_000584" -#ifdef _WIN32 -static const __declspec(align(2)) char alley_shop_sceneCollisionHeader_000584[] = dalley_shop_sceneCollisionHeader_000584; -#else -static const char alley_shop_sceneCollisionHeader_000584[] __attribute__((aligned (2))) = dalley_shop_sceneCollisionHeader_000584; -#endif - +#include "align_asset_macro.h" + +#define dalley_shop_sceneCollisionHeader_000584 "__OTR__scenes/nonmq/alley_shop_scene/alley_shop_sceneCollisionHeader_000584" +static const ALIGN_ASSET(2) char alley_shop_sceneCollisionHeader_000584[] = dalley_shop_sceneCollisionHeader_000584; \ No newline at end of file diff --git a/soh/assets/scenes/shops/drag/drag_room_0.h b/soh/assets/scenes/shops/drag/drag_room_0.h index 90032b65f..8dc5824b8 100644 --- a/soh/assets/scenes/shops/drag/drag_room_0.h +++ b/soh/assets/scenes/shops/drag/drag_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define ddrag_room_0DL_006618 "__OTR__scenes/nonmq/drag_scene/drag_room_0DL_006618" -#ifdef _WIN32 -static const __declspec(align(2)) char drag_room_0DL_006618[] = ddrag_room_0DL_006618; -#else -static const char drag_room_0DL_006618[] __attribute__((aligned (2))) = ddrag_room_0DL_006618; -#endif - +#include "align_asset_macro.h" + +#define ddrag_room_0DL_006618 "__OTR__scenes/nonmq/drag_scene/drag_room_0DL_006618" +static const ALIGN_ASSET(2) char drag_room_0DL_006618[] = ddrag_room_0DL_006618; \ No newline at end of file diff --git a/soh/assets/scenes/shops/drag/drag_scene.h b/soh/assets/scenes/shops/drag/drag_scene.h index bfcd2fe12..3c43c558c 100644 --- a/soh/assets/scenes/shops/drag/drag_scene.h +++ b/soh/assets/scenes/shops/drag/drag_scene.h @@ -1,9 +1,6 @@ #pragma once -#define ddrag_sceneCollisionHeader_0003C0 "__OTR__scenes/nonmq/drag_scene/drag_sceneCollisionHeader_0003C0" -#ifdef _WIN32 -static const __declspec(align(2)) char drag_sceneCollisionHeader_0003C0[] = ddrag_sceneCollisionHeader_0003C0; -#else -static const char drag_sceneCollisionHeader_0003C0[] __attribute__((aligned (2))) = ddrag_sceneCollisionHeader_0003C0; -#endif - +#include "align_asset_macro.h" + +#define ddrag_sceneCollisionHeader_0003C0 "__OTR__scenes/nonmq/drag_scene/drag_sceneCollisionHeader_0003C0" +static const ALIGN_ASSET(2) char drag_sceneCollisionHeader_0003C0[] = ddrag_sceneCollisionHeader_0003C0; \ No newline at end of file diff --git a/soh/assets/scenes/shops/face_shop/face_shop_room_0.h b/soh/assets/scenes/shops/face_shop/face_shop_room_0.h index 5419fbc69..c07ad05a5 100644 --- a/soh/assets/scenes/shops/face_shop/face_shop_room_0.h +++ b/soh/assets/scenes/shops/face_shop/face_shop_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dface_shop_room_0DL_008E08 "__OTR__scenes/nonmq/face_shop_scene/face_shop_room_0DL_008E08" -#ifdef _WIN32 -static const __declspec(align(2)) char face_shop_room_0DL_008E08[] = dface_shop_room_0DL_008E08; -#else -static const char face_shop_room_0DL_008E08[] __attribute__((aligned (2))) = dface_shop_room_0DL_008E08; -#endif - +#include "align_asset_macro.h" + +#define dface_shop_room_0DL_008E08 "__OTR__scenes/nonmq/face_shop_scene/face_shop_room_0DL_008E08" +static const ALIGN_ASSET(2) char face_shop_room_0DL_008E08[] = dface_shop_room_0DL_008E08; \ No newline at end of file diff --git a/soh/assets/scenes/shops/face_shop/face_shop_scene.h b/soh/assets/scenes/shops/face_shop/face_shop_scene.h index 2b982eb5b..6f24f14b7 100644 --- a/soh/assets/scenes/shops/face_shop/face_shop_scene.h +++ b/soh/assets/scenes/shops/face_shop/face_shop_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dface_shop_sceneCollisionHeader_000338 "__OTR__scenes/nonmq/face_shop_scene/face_shop_sceneCollisionHeader_000338" -#ifdef _WIN32 -static const __declspec(align(2)) char face_shop_sceneCollisionHeader_000338[] = dface_shop_sceneCollisionHeader_000338; -#else -static const char face_shop_sceneCollisionHeader_000338[] __attribute__((aligned (2))) = dface_shop_sceneCollisionHeader_000338; -#endif - +#include "align_asset_macro.h" + +#define dface_shop_sceneCollisionHeader_000338 "__OTR__scenes/nonmq/face_shop_scene/face_shop_sceneCollisionHeader_000338" +static const ALIGN_ASSET(2) char face_shop_sceneCollisionHeader_000338[] = dface_shop_sceneCollisionHeader_000338; \ No newline at end of file diff --git a/soh/assets/scenes/shops/golon/golon_room_0.h b/soh/assets/scenes/shops/golon/golon_room_0.h index 52c07845b..6cfdd1d24 100644 --- a/soh/assets/scenes/shops/golon/golon_room_0.h +++ b/soh/assets/scenes/shops/golon/golon_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dgolon_room_0DL_0009B0 "__OTR__scenes/nonmq/golon_scene/golon_room_0DL_0009B0" -#ifdef _WIN32 -static const __declspec(align(2)) char golon_room_0DL_0009B0[] = dgolon_room_0DL_0009B0; -#else -static const char golon_room_0DL_0009B0[] __attribute__((aligned (2))) = dgolon_room_0DL_0009B0; -#endif - +#include "align_asset_macro.h" + +#define dgolon_room_0DL_0009B0 "__OTR__scenes/nonmq/golon_scene/golon_room_0DL_0009B0" +static const ALIGN_ASSET(2) char golon_room_0DL_0009B0[] = dgolon_room_0DL_0009B0; \ No newline at end of file diff --git a/soh/assets/scenes/shops/golon/golon_scene.h b/soh/assets/scenes/shops/golon/golon_scene.h index 7d92d000d..5a3e24091 100644 --- a/soh/assets/scenes/shops/golon/golon_scene.h +++ b/soh/assets/scenes/shops/golon/golon_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dgolon_sceneCollisionHeader_000368 "__OTR__scenes/nonmq/golon_scene/golon_sceneCollisionHeader_000368" -#ifdef _WIN32 -static const __declspec(align(2)) char golon_sceneCollisionHeader_000368[] = dgolon_sceneCollisionHeader_000368; -#else -static const char golon_sceneCollisionHeader_000368[] __attribute__((aligned (2))) = dgolon_sceneCollisionHeader_000368; -#endif - +#include "align_asset_macro.h" + +#define dgolon_sceneCollisionHeader_000368 "__OTR__scenes/nonmq/golon_scene/golon_sceneCollisionHeader_000368" +static const ALIGN_ASSET(2) char golon_sceneCollisionHeader_000368[] = dgolon_sceneCollisionHeader_000368; \ No newline at end of file diff --git a/soh/assets/scenes/shops/kokiri_shop/kokiri_shop_room_0.h b/soh/assets/scenes/shops/kokiri_shop/kokiri_shop_room_0.h index fee31e2b1..c3ae420bb 100644 --- a/soh/assets/scenes/shops/kokiri_shop/kokiri_shop_room_0.h +++ b/soh/assets/scenes/shops/kokiri_shop/kokiri_shop_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_shop_room_0DL_00B428 "__OTR__scenes/nonmq/kokiri_shop_scene/kokiri_shop_room_0DL_00B428" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_shop_room_0DL_00B428[] = dkokiri_shop_room_0DL_00B428; -#else -static const char kokiri_shop_room_0DL_00B428[] __attribute__((aligned (2))) = dkokiri_shop_room_0DL_00B428; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_shop_room_0DL_00B428 "__OTR__scenes/nonmq/kokiri_shop_scene/kokiri_shop_room_0DL_00B428" +static const ALIGN_ASSET(2) char kokiri_shop_room_0DL_00B428[] = dkokiri_shop_room_0DL_00B428; \ No newline at end of file diff --git a/soh/assets/scenes/shops/kokiri_shop/kokiri_shop_scene.h b/soh/assets/scenes/shops/kokiri_shop/kokiri_shop_scene.h index 860bbdf7a..fb86be02f 100644 --- a/soh/assets/scenes/shops/kokiri_shop/kokiri_shop_scene.h +++ b/soh/assets/scenes/shops/kokiri_shop/kokiri_shop_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dkokiri_shop_sceneCollisionHeader_000950 "__OTR__scenes/nonmq/kokiri_shop_scene/kokiri_shop_sceneCollisionHeader_000950" -#ifdef _WIN32 -static const __declspec(align(2)) char kokiri_shop_sceneCollisionHeader_000950[] = dkokiri_shop_sceneCollisionHeader_000950; -#else -static const char kokiri_shop_sceneCollisionHeader_000950[] __attribute__((aligned (2))) = dkokiri_shop_sceneCollisionHeader_000950; -#endif - +#include "align_asset_macro.h" + +#define dkokiri_shop_sceneCollisionHeader_000950 "__OTR__scenes/nonmq/kokiri_shop_scene/kokiri_shop_sceneCollisionHeader_000950" +static const ALIGN_ASSET(2) char kokiri_shop_sceneCollisionHeader_000950[] = dkokiri_shop_sceneCollisionHeader_000950; \ No newline at end of file diff --git a/soh/assets/scenes/shops/night_shop/night_shop_room_0.h b/soh/assets/scenes/shops/night_shop/night_shop_room_0.h index 1ed54507e..1aa0374f4 100644 --- a/soh/assets/scenes/shops/night_shop/night_shop_room_0.h +++ b/soh/assets/scenes/shops/night_shop/night_shop_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dnight_shop_room_0DL_003100 "__OTR__scenes/nonmq/night_shop_scene/night_shop_room_0DL_003100" -#ifdef _WIN32 -static const __declspec(align(2)) char night_shop_room_0DL_003100[] = dnight_shop_room_0DL_003100; -#else -static const char night_shop_room_0DL_003100[] __attribute__((aligned (2))) = dnight_shop_room_0DL_003100; -#endif - +#include "align_asset_macro.h" + +#define dnight_shop_room_0DL_003100 "__OTR__scenes/nonmq/night_shop_scene/night_shop_room_0DL_003100" +static const ALIGN_ASSET(2) char night_shop_room_0DL_003100[] = dnight_shop_room_0DL_003100; \ No newline at end of file diff --git a/soh/assets/scenes/shops/night_shop/night_shop_scene.h b/soh/assets/scenes/shops/night_shop/night_shop_scene.h index 8eac4ef12..f1df6ce6f 100644 --- a/soh/assets/scenes/shops/night_shop/night_shop_scene.h +++ b/soh/assets/scenes/shops/night_shop/night_shop_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dnight_shop_sceneCollisionHeader_000644 "__OTR__scenes/nonmq/night_shop_scene/night_shop_sceneCollisionHeader_000644" -#ifdef _WIN32 -static const __declspec(align(2)) char night_shop_sceneCollisionHeader_000644[] = dnight_shop_sceneCollisionHeader_000644; -#else -static const char night_shop_sceneCollisionHeader_000644[] __attribute__((aligned (2))) = dnight_shop_sceneCollisionHeader_000644; -#endif - +#include "align_asset_macro.h" + +#define dnight_shop_sceneCollisionHeader_000644 "__OTR__scenes/nonmq/night_shop_scene/night_shop_sceneCollisionHeader_000644" +static const ALIGN_ASSET(2) char night_shop_sceneCollisionHeader_000644[] = dnight_shop_sceneCollisionHeader_000644; \ No newline at end of file diff --git a/soh/assets/scenes/shops/shop1/shop1_room_0.h b/soh/assets/scenes/shops/shop1/shop1_room_0.h index 7f3c5c733..3b3b0e261 100644 --- a/soh/assets/scenes/shops/shop1/shop1_room_0.h +++ b/soh/assets/scenes/shops/shop1/shop1_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dshop1_room_0DL_003F18 "__OTR__scenes/nonmq/shop1_scene/shop1_room_0DL_003F18" -#ifdef _WIN32 -static const __declspec(align(2)) char shop1_room_0DL_003F18[] = dshop1_room_0DL_003F18; -#else -static const char shop1_room_0DL_003F18[] __attribute__((aligned (2))) = dshop1_room_0DL_003F18; -#endif - +#include "align_asset_macro.h" + +#define dshop1_room_0DL_003F18 "__OTR__scenes/nonmq/shop1_scene/shop1_room_0DL_003F18" +static const ALIGN_ASSET(2) char shop1_room_0DL_003F18[] = dshop1_room_0DL_003F18; \ No newline at end of file diff --git a/soh/assets/scenes/shops/shop1/shop1_scene.h b/soh/assets/scenes/shops/shop1/shop1_scene.h index da356758c..8fc45d1f9 100644 --- a/soh/assets/scenes/shops/shop1/shop1_scene.h +++ b/soh/assets/scenes/shops/shop1/shop1_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dshop1_sceneCollisionHeader_0002B8 "__OTR__scenes/nonmq/shop1_scene/shop1_sceneCollisionHeader_0002B8" -#ifdef _WIN32 -static const __declspec(align(2)) char shop1_sceneCollisionHeader_0002B8[] = dshop1_sceneCollisionHeader_0002B8; -#else -static const char shop1_sceneCollisionHeader_0002B8[] __attribute__((aligned (2))) = dshop1_sceneCollisionHeader_0002B8; -#endif - +#include "align_asset_macro.h" + +#define dshop1_sceneCollisionHeader_0002B8 "__OTR__scenes/nonmq/shop1_scene/shop1_sceneCollisionHeader_0002B8" +static const ALIGN_ASSET(2) char shop1_sceneCollisionHeader_0002B8[] = dshop1_sceneCollisionHeader_0002B8; \ No newline at end of file diff --git a/soh/assets/scenes/shops/zoora/zoora_room_0.h b/soh/assets/scenes/shops/zoora/zoora_room_0.h index 7cfe39ba3..5ada3db86 100644 --- a/soh/assets/scenes/shops/zoora/zoora_room_0.h +++ b/soh/assets/scenes/shops/zoora/zoora_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define dzoora_room_0DL_0009C0 "__OTR__scenes/nonmq/zoora_scene/zoora_room_0DL_0009C0" -#ifdef _WIN32 -static const __declspec(align(2)) char zoora_room_0DL_0009C0[] = dzoora_room_0DL_0009C0; -#else -static const char zoora_room_0DL_0009C0[] __attribute__((aligned (2))) = dzoora_room_0DL_0009C0; -#endif - +#include "align_asset_macro.h" + +#define dzoora_room_0DL_0009C0 "__OTR__scenes/nonmq/zoora_scene/zoora_room_0DL_0009C0" +static const ALIGN_ASSET(2) char zoora_room_0DL_0009C0[] = dzoora_room_0DL_0009C0; \ No newline at end of file diff --git a/soh/assets/scenes/shops/zoora/zoora_scene.h b/soh/assets/scenes/shops/zoora/zoora_scene.h index cca86ec6a..9f576d075 100644 --- a/soh/assets/scenes/shops/zoora/zoora_scene.h +++ b/soh/assets/scenes/shops/zoora/zoora_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dzoora_sceneCollisionHeader_000360 "__OTR__scenes/nonmq/zoora_scene/zoora_sceneCollisionHeader_000360" -#ifdef _WIN32 -static const __declspec(align(2)) char zoora_sceneCollisionHeader_000360[] = dzoora_sceneCollisionHeader_000360; -#else -static const char zoora_sceneCollisionHeader_000360[] __attribute__((aligned (2))) = dzoora_sceneCollisionHeader_000360; -#endif - +#include "align_asset_macro.h" + +#define dzoora_sceneCollisionHeader_000360 "__OTR__scenes/nonmq/zoora_scene/zoora_sceneCollisionHeader_000360" +static const ALIGN_ASSET(2) char zoora_sceneCollisionHeader_000360[] = dzoora_sceneCollisionHeader_000360; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/besitu/besitu_room_0.h b/soh/assets/scenes/test_levels/besitu/besitu_room_0.h index 73646376f..2d5f00f12 100644 --- a/soh/assets/scenes/test_levels/besitu/besitu_room_0.h +++ b/soh/assets/scenes/test_levels/besitu/besitu_room_0.h @@ -1,58 +1,27 @@ #pragma once -#define dbesitu_room_0DL_001C80 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0DL_001C80" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_room_0DL_001C80[] = dbesitu_room_0DL_001C80; -#else -static const char besitu_room_0DL_001C80[] __attribute__((aligned (2))) = dbesitu_room_0DL_001C80; -#endif - -#define dbesitu_room_0Tex_001CD8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_001CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_room_0Tex_001CD8[] = dbesitu_room_0Tex_001CD8; -#else -static const char besitu_room_0Tex_001CD8[] __attribute__((aligned (2))) = dbesitu_room_0Tex_001CD8; -#endif - -#define dbesitu_room_0Tex_004CD8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_004CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_room_0Tex_004CD8[] = dbesitu_room_0Tex_004CD8; -#else -static const char besitu_room_0Tex_004CD8[] __attribute__((aligned (2))) = dbesitu_room_0Tex_004CD8; -#endif - -#define dbesitu_room_0TLUT_001CB8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0TLUT_001CB8" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_room_0TLUT_001CB8[] = dbesitu_room_0TLUT_001CB8; -#else -static const char besitu_room_0TLUT_001CB8[] __attribute__((aligned (2))) = dbesitu_room_0TLUT_001CB8; -#endif - -#define dbesitu_room_0Tex_003CD8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_003CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_room_0Tex_003CD8[] = dbesitu_room_0Tex_003CD8; -#else -static const char besitu_room_0Tex_003CD8[] __attribute__((aligned (2))) = dbesitu_room_0Tex_003CD8; -#endif - -#define dbesitu_room_0Tex_0034D8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_0034D8" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_room_0Tex_0034D8[] = dbesitu_room_0Tex_0034D8; -#else -static const char besitu_room_0Tex_0034D8[] __attribute__((aligned (2))) = dbesitu_room_0Tex_0034D8; -#endif - -#define dbesitu_room_0Tex_0044D8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_0044D8" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_room_0Tex_0044D8[] = dbesitu_room_0Tex_0044D8; -#else -static const char besitu_room_0Tex_0044D8[] __attribute__((aligned (2))) = dbesitu_room_0Tex_0044D8; -#endif - -#define dbesitu_room_0Tex_002CD8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_002CD8" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_room_0Tex_002CD8[] = dbesitu_room_0Tex_002CD8; -#else -static const char besitu_room_0Tex_002CD8[] __attribute__((aligned (2))) = dbesitu_room_0Tex_002CD8; -#endif - +#include "align_asset_macro.h" + +#define dbesitu_room_0DL_001C80 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0DL_001C80" +static const ALIGN_ASSET(2) char besitu_room_0DL_001C80[] = dbesitu_room_0DL_001C80; + +#define dbesitu_room_0Tex_001CD8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_001CD8" +static const ALIGN_ASSET(2) char besitu_room_0Tex_001CD8[] = dbesitu_room_0Tex_001CD8; + +#define dbesitu_room_0Tex_004CD8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_004CD8" +static const ALIGN_ASSET(2) char besitu_room_0Tex_004CD8[] = dbesitu_room_0Tex_004CD8; + +#define dbesitu_room_0TLUT_001CB8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0TLUT_001CB8" +static const ALIGN_ASSET(2) char besitu_room_0TLUT_001CB8[] = dbesitu_room_0TLUT_001CB8; + +#define dbesitu_room_0Tex_003CD8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_003CD8" +static const ALIGN_ASSET(2) char besitu_room_0Tex_003CD8[] = dbesitu_room_0Tex_003CD8; + +#define dbesitu_room_0Tex_0034D8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_0034D8" +static const ALIGN_ASSET(2) char besitu_room_0Tex_0034D8[] = dbesitu_room_0Tex_0034D8; + +#define dbesitu_room_0Tex_0044D8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_0044D8" +static const ALIGN_ASSET(2) char besitu_room_0Tex_0044D8[] = dbesitu_room_0Tex_0044D8; + +#define dbesitu_room_0Tex_002CD8 "__OTR__scenes/nonmq/besitu_scene/besitu_room_0Tex_002CD8" +static const ALIGN_ASSET(2) char besitu_room_0Tex_002CD8[] = dbesitu_room_0Tex_002CD8; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/besitu/besitu_scene.h b/soh/assets/scenes/test_levels/besitu/besitu_scene.h index f5529fca6..1d840a01f 100644 --- a/soh/assets/scenes/test_levels/besitu/besitu_scene.h +++ b/soh/assets/scenes/test_levels/besitu/besitu_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dbesitu_sceneCollisionHeader_000478 "__OTR__scenes/nonmq/besitu_scene/besitu_sceneCollisionHeader_000478" -#ifdef _WIN32 -static const __declspec(align(2)) char besitu_sceneCollisionHeader_000478[] = dbesitu_sceneCollisionHeader_000478; -#else -static const char besitu_sceneCollisionHeader_000478[] __attribute__((aligned (2))) = dbesitu_sceneCollisionHeader_000478; -#endif - +#include "align_asset_macro.h" + +#define dbesitu_sceneCollisionHeader_000478 "__OTR__scenes/nonmq/besitu_scene/besitu_sceneCollisionHeader_000478" +static const ALIGN_ASSET(2) char besitu_sceneCollisionHeader_000478[] = dbesitu_sceneCollisionHeader_000478; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/depth_test/depth_test_room_0.h b/soh/assets/scenes/test_levels/depth_test/depth_test_room_0.h index 62df18124..3ede3cfee 100644 --- a/soh/assets/scenes/test_levels/depth_test/depth_test_room_0.h +++ b/soh/assets/scenes/test_levels/depth_test/depth_test_room_0.h @@ -1,9 +1,6 @@ #pragma once -#define ddepth_test_room_0DL_0004A0 "__OTR__scenes/nonmq/depth_test_scene/depth_test_room_0DL_0004A0" -#ifdef _WIN32 -static const __declspec(align(2)) char depth_test_room_0DL_0004A0[] = ddepth_test_room_0DL_0004A0; -#else -static const char depth_test_room_0DL_0004A0[] __attribute__((aligned (2))) = ddepth_test_room_0DL_0004A0; -#endif - +#include "align_asset_macro.h" + +#define ddepth_test_room_0DL_0004A0 "__OTR__scenes/nonmq/depth_test_scene/depth_test_room_0DL_0004A0" +static const ALIGN_ASSET(2) char depth_test_room_0DL_0004A0[] = ddepth_test_room_0DL_0004A0; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/depth_test/depth_test_scene.h b/soh/assets/scenes/test_levels/depth_test/depth_test_scene.h index a89c46bf6..dc0a62737 100644 --- a/soh/assets/scenes/test_levels/depth_test/depth_test_scene.h +++ b/soh/assets/scenes/test_levels/depth_test/depth_test_scene.h @@ -1,9 +1,6 @@ #pragma once -#define ddepth_test_sceneCollisionHeader_0002D4 "__OTR__scenes/nonmq/depth_test_scene/depth_test_sceneCollisionHeader_0002D4" -#ifdef _WIN32 -static const __declspec(align(2)) char depth_test_sceneCollisionHeader_0002D4[] = ddepth_test_sceneCollisionHeader_0002D4; -#else -static const char depth_test_sceneCollisionHeader_0002D4[] __attribute__((aligned (2))) = ddepth_test_sceneCollisionHeader_0002D4; -#endif - +#include "align_asset_macro.h" + +#define ddepth_test_sceneCollisionHeader_0002D4 "__OTR__scenes/nonmq/depth_test_scene/depth_test_sceneCollisionHeader_0002D4" +static const ALIGN_ASSET(2) char depth_test_sceneCollisionHeader_0002D4[] = ddepth_test_sceneCollisionHeader_0002D4; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/sasatest/sasatest_room_0.h b/soh/assets/scenes/test_levels/sasatest/sasatest_room_0.h index a045c0085..2d78fa14e 100644 --- a/soh/assets/scenes/test_levels/sasatest/sasatest_room_0.h +++ b/soh/assets/scenes/test_levels/sasatest/sasatest_room_0.h @@ -1,30 +1,15 @@ #pragma once -#define dsasatest_room_0DL_001580 "__OTR__scenes/nonmq/sasatest_scene/sasatest_room_0DL_001580" -#ifdef _WIN32 -static const __declspec(align(2)) char sasatest_room_0DL_001580[] = dsasatest_room_0DL_001580; -#else -static const char sasatest_room_0DL_001580[] __attribute__((aligned (2))) = dsasatest_room_0DL_001580; -#endif - -#define dsasatest_room_0Set_000310DL_001580 "__OTR__scenes/nonmq/sasatest_scene/sasatest_room_0Set_000310DL_001580" -#ifdef _WIN32 -static const __declspec(align(2)) char sasatest_room_0Set_000310DL_001580[] = dsasatest_room_0Set_000310DL_001580; -#else -static const char sasatest_room_0Set_000310DL_001580[] __attribute__((aligned (2))) = dsasatest_room_0Set_000310DL_001580; -#endif - -#define dsasatest_room_0Set_0001C0DL_001580 "__OTR__scenes/nonmq/sasatest_scene/sasatest_room_0Set_0001C0DL_001580" -#ifdef _WIN32 -static const __declspec(align(2)) char sasatest_room_0Set_0001C0DL_001580[] = dsasatest_room_0Set_0001C0DL_001580; -#else -static const char sasatest_room_0Set_0001C0DL_001580[] __attribute__((aligned (2))) = dsasatest_room_0Set_0001C0DL_001580; -#endif - -#define dsasatest_room_0Set_000270DL_001580 "__OTR__scenes/nonmq/sasatest_scene/sasatest_room_0Set_000270DL_001580" -#ifdef _WIN32 -static const __declspec(align(2)) char sasatest_room_0Set_000270DL_001580[] = dsasatest_room_0Set_000270DL_001580; -#else -static const char sasatest_room_0Set_000270DL_001580[] __attribute__((aligned (2))) = dsasatest_room_0Set_000270DL_001580; -#endif - +#include "align_asset_macro.h" + +#define dsasatest_room_0DL_001580 "__OTR__scenes/nonmq/sasatest_scene/sasatest_room_0DL_001580" +static const ALIGN_ASSET(2) char sasatest_room_0DL_001580[] = dsasatest_room_0DL_001580; + +#define dsasatest_room_0Set_000310DL_001580 "__OTR__scenes/nonmq/sasatest_scene/sasatest_room_0Set_000310DL_001580" +static const ALIGN_ASSET(2) char sasatest_room_0Set_000310DL_001580[] = dsasatest_room_0Set_000310DL_001580; + +#define dsasatest_room_0Set_0001C0DL_001580 "__OTR__scenes/nonmq/sasatest_scene/sasatest_room_0Set_0001C0DL_001580" +static const ALIGN_ASSET(2) char sasatest_room_0Set_0001C0DL_001580[] = dsasatest_room_0Set_0001C0DL_001580; + +#define dsasatest_room_0Set_000270DL_001580 "__OTR__scenes/nonmq/sasatest_scene/sasatest_room_0Set_000270DL_001580" +static const ALIGN_ASSET(2) char sasatest_room_0Set_000270DL_001580[] = dsasatest_room_0Set_000270DL_001580; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/sasatest/sasatest_scene.h b/soh/assets/scenes/test_levels/sasatest/sasatest_scene.h index a0d891f5c..9a07ea37b 100644 --- a/soh/assets/scenes/test_levels/sasatest/sasatest_scene.h +++ b/soh/assets/scenes/test_levels/sasatest/sasatest_scene.h @@ -1,12 +1,12 @@ #pragma once + +#include "align_asset_macro.h" + #define dsasatest_sceneCollisionHeader_002838 "__OTR__scenes/nonmq/sasatest_scene/sasatest_sceneCollisionHeader_002838" -#ifdef _WIN32 -static const __declspec(align(2)) char sasatest_sceneCollisionHeader_002838[] = dsasatest_sceneCollisionHeader_002838; -#else -static const char sasatest_sceneCollisionHeader_002838[] __attribute__((aligned (2))) = dsasatest_sceneCollisionHeader_002838; -#endif - -#define dsasatest_sceneCollisionHeader_002838 "__OTR__scenes/nonmq/sasatest_scene/sasatest_sceneCollisionHeader_002838" -#define dsasatest_sceneCollisionHeader_002838 "__OTR__scenes/nonmq/sasatest_scene/sasatest_sceneCollisionHeader_002838" +static const ALIGN_ASSET(2) char sasatest_sceneCollisionHeader_002838[] = dsasatest_sceneCollisionHeader_002838; + #define dsasatest_sceneCollisionHeader_002838 "__OTR__scenes/nonmq/sasatest_scene/sasatest_sceneCollisionHeader_002838" +#define dsasatest_sceneCollisionHeader_002838 "__OTR__scenes/nonmq/sasatest_scene/sasatest_sceneCollisionHeader_002838" + +#define dsasatest_sceneCollisionHeader_002838 "__OTR__scenes/nonmq/sasatest_scene/sasatest_sceneCollisionHeader_002838" \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/sutaru/sutaru_room_0.h b/soh/assets/scenes/test_levels/sutaru/sutaru_room_0.h index 1f615a6e5..840cb8197 100644 --- a/soh/assets/scenes/test_levels/sutaru/sutaru_room_0.h +++ b/soh/assets/scenes/test_levels/sutaru/sutaru_room_0.h @@ -1,58 +1,27 @@ #pragma once -#define dsutaru_room_0DL_001B00 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0DL_001B00" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_room_0DL_001B00[] = dsutaru_room_0DL_001B00; -#else -static const char sutaru_room_0DL_001B00[] __attribute__((aligned (2))) = dsutaru_room_0DL_001B00; -#endif - -#define dsutaru_room_0Tex_0020F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0020F0" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_room_0Tex_0020F0[] = dsutaru_room_0Tex_0020F0; -#else -static const char sutaru_room_0Tex_0020F0[] __attribute__((aligned (2))) = dsutaru_room_0Tex_0020F0; -#endif - -#define dsutaru_room_0Tex_0028F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0028F0" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_room_0Tex_0028F0[] = dsutaru_room_0Tex_0028F0; -#else -static const char sutaru_room_0Tex_0028F0[] __attribute__((aligned (2))) = dsutaru_room_0Tex_0028F0; -#endif - -#define dsutaru_room_0Tex_002AF0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_002AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_room_0Tex_002AF0[] = dsutaru_room_0Tex_002AF0; -#else -static const char sutaru_room_0Tex_002AF0[] __attribute__((aligned (2))) = dsutaru_room_0Tex_002AF0; -#endif - -#define dsutaru_room_0Tex_003AF0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_003AF0" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_room_0Tex_003AF0[] = dsutaru_room_0Tex_003AF0; -#else -static const char sutaru_room_0Tex_003AF0[] __attribute__((aligned (2))) = dsutaru_room_0Tex_003AF0; -#endif - -#define dsutaru_room_0Tex_0042F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0042F0" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_room_0Tex_0042F0[] = dsutaru_room_0Tex_0042F0; -#else -static const char sutaru_room_0Tex_0042F0[] __attribute__((aligned (2))) = dsutaru_room_0Tex_0042F0; -#endif - -#define dsutaru_room_0Tex_0052F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0052F0" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_room_0Tex_0052F0[] = dsutaru_room_0Tex_0052F0; -#else -static const char sutaru_room_0Tex_0052F0[] __attribute__((aligned (2))) = dsutaru_room_0Tex_0052F0; -#endif - -#define dsutaru_room_0Tex_0062F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0062F0" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_room_0Tex_0062F0[] = dsutaru_room_0Tex_0062F0; -#else -static const char sutaru_room_0Tex_0062F0[] __attribute__((aligned (2))) = dsutaru_room_0Tex_0062F0; -#endif - +#include "align_asset_macro.h" + +#define dsutaru_room_0DL_001B00 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0DL_001B00" +static const ALIGN_ASSET(2) char sutaru_room_0DL_001B00[] = dsutaru_room_0DL_001B00; + +#define dsutaru_room_0Tex_0020F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0020F0" +static const ALIGN_ASSET(2) char sutaru_room_0Tex_0020F0[] = dsutaru_room_0Tex_0020F0; + +#define dsutaru_room_0Tex_0028F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0028F0" +static const ALIGN_ASSET(2) char sutaru_room_0Tex_0028F0[] = dsutaru_room_0Tex_0028F0; + +#define dsutaru_room_0Tex_002AF0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_002AF0" +static const ALIGN_ASSET(2) char sutaru_room_0Tex_002AF0[] = dsutaru_room_0Tex_002AF0; + +#define dsutaru_room_0Tex_003AF0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_003AF0" +static const ALIGN_ASSET(2) char sutaru_room_0Tex_003AF0[] = dsutaru_room_0Tex_003AF0; + +#define dsutaru_room_0Tex_0042F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0042F0" +static const ALIGN_ASSET(2) char sutaru_room_0Tex_0042F0[] = dsutaru_room_0Tex_0042F0; + +#define dsutaru_room_0Tex_0052F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0052F0" +static const ALIGN_ASSET(2) char sutaru_room_0Tex_0052F0[] = dsutaru_room_0Tex_0052F0; + +#define dsutaru_room_0Tex_0062F0 "__OTR__scenes/nonmq/sutaru_scene/sutaru_room_0Tex_0062F0" +static const ALIGN_ASSET(2) char sutaru_room_0Tex_0062F0[] = dsutaru_room_0Tex_0062F0; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/sutaru/sutaru_scene.h b/soh/assets/scenes/test_levels/sutaru/sutaru_scene.h index 11974bdfd..627e94bbe 100644 --- a/soh/assets/scenes/test_levels/sutaru/sutaru_scene.h +++ b/soh/assets/scenes/test_levels/sutaru/sutaru_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dsutaru_sceneCollisionHeader_000B78 "__OTR__scenes/nonmq/sutaru_scene/sutaru_sceneCollisionHeader_000B78" -#ifdef _WIN32 -static const __declspec(align(2)) char sutaru_sceneCollisionHeader_000B78[] = dsutaru_sceneCollisionHeader_000B78; -#else -static const char sutaru_sceneCollisionHeader_000B78[] __attribute__((aligned (2))) = dsutaru_sceneCollisionHeader_000B78; -#endif - +#include "align_asset_macro.h" + +#define dsutaru_sceneCollisionHeader_000B78 "__OTR__scenes/nonmq/sutaru_scene/sutaru_sceneCollisionHeader_000B78" +static const ALIGN_ASSET(2) char sutaru_sceneCollisionHeader_000B78[] = dsutaru_sceneCollisionHeader_000B78; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/syotes/syotes_room_0.h b/soh/assets/scenes/test_levels/syotes/syotes_room_0.h index 6b9d6cd19..c0d92e9bf 100644 --- a/soh/assets/scenes/test_levels/syotes/syotes_room_0.h +++ b/soh/assets/scenes/test_levels/syotes/syotes_room_0.h @@ -1,93 +1,42 @@ #pragma once -#define dsyotes_room_0DL_0031C8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0DL_0031C8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0DL_0031C8[] = dsyotes_room_0DL_0031C8; -#else -static const char syotes_room_0DL_0031C8[] __attribute__((aligned (2))) = dsyotes_room_0DL_0031C8; -#endif - -#define dsyotes_room_0Tex_0069E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0069E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0069E8[] = dsyotes_room_0Tex_0069E8; -#else -static const char syotes_room_0Tex_0069E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0069E8; -#endif - -#define dsyotes_room_0Tex_0079E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0079E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0079E8[] = dsyotes_room_0Tex_0079E8; -#else -static const char syotes_room_0Tex_0079E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0079E8; -#endif - -#define dsyotes_room_0Tex_0089E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0089E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0089E8[] = dsyotes_room_0Tex_0089E8; -#else -static const char syotes_room_0Tex_0089E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0089E8; -#endif - -#define dsyotes_room_0Tex_0039E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0039E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0039E8[] = dsyotes_room_0Tex_0039E8; -#else -static const char syotes_room_0Tex_0039E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0039E8; -#endif - -#define dsyotes_room_0Tex_0031E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0031E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0031E8[] = dsyotes_room_0Tex_0031E8; -#else -static const char syotes_room_0Tex_0031E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0031E8; -#endif - -#define dsyotes_room_0Tex_0061E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0061E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0061E8[] = dsyotes_room_0Tex_0061E8; -#else -static const char syotes_room_0Tex_0061E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0061E8; -#endif - -#define dsyotes_room_0Tex_0041E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0041E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0041E8[] = dsyotes_room_0Tex_0041E8; -#else -static const char syotes_room_0Tex_0041E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0041E8; -#endif - -#define dsyotes_room_0Tex_0099E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0099E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0099E8[] = dsyotes_room_0Tex_0099E8; -#else -static const char syotes_room_0Tex_0099E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0099E8; -#endif - -#define dsyotes_room_0Tex_00A9E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_00A9E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_00A9E8[] = dsyotes_room_0Tex_00A9E8; -#else -static const char syotes_room_0Tex_00A9E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_00A9E8; -#endif - -#define dsyotes_room_0Tex_0051E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0051E8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_0051E8[] = dsyotes_room_0Tex_0051E8; -#else -static const char syotes_room_0Tex_0051E8[] __attribute__((aligned (2))) = dsyotes_room_0Tex_0051E8; -#endif - -#define dsyotes_room_0DL_00BF70 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0DL_00BF70" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0DL_00BF70[] = dsyotes_room_0DL_00BF70; -#else -static const char syotes_room_0DL_00BF70[] __attribute__((aligned (2))) = dsyotes_room_0DL_00BF70; -#endif - -#define dsyotes_room_0Tex_00BF80 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_00BF80" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_room_0Tex_00BF80[] = dsyotes_room_0Tex_00BF80; -#else -static const char syotes_room_0Tex_00BF80[] __attribute__((aligned (2))) = dsyotes_room_0Tex_00BF80; -#endif - +#include "align_asset_macro.h" + +#define dsyotes_room_0DL_0031C8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0DL_0031C8" +static const ALIGN_ASSET(2) char syotes_room_0DL_0031C8[] = dsyotes_room_0DL_0031C8; + +#define dsyotes_room_0Tex_0069E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0069E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0069E8[] = dsyotes_room_0Tex_0069E8; + +#define dsyotes_room_0Tex_0079E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0079E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0079E8[] = dsyotes_room_0Tex_0079E8; + +#define dsyotes_room_0Tex_0089E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0089E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0089E8[] = dsyotes_room_0Tex_0089E8; + +#define dsyotes_room_0Tex_0039E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0039E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0039E8[] = dsyotes_room_0Tex_0039E8; + +#define dsyotes_room_0Tex_0031E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0031E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0031E8[] = dsyotes_room_0Tex_0031E8; + +#define dsyotes_room_0Tex_0061E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0061E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0061E8[] = dsyotes_room_0Tex_0061E8; + +#define dsyotes_room_0Tex_0041E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0041E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0041E8[] = dsyotes_room_0Tex_0041E8; + +#define dsyotes_room_0Tex_0099E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0099E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0099E8[] = dsyotes_room_0Tex_0099E8; + +#define dsyotes_room_0Tex_00A9E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_00A9E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_00A9E8[] = dsyotes_room_0Tex_00A9E8; + +#define dsyotes_room_0Tex_0051E8 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_0051E8" +static const ALIGN_ASSET(2) char syotes_room_0Tex_0051E8[] = dsyotes_room_0Tex_0051E8; + +#define dsyotes_room_0DL_00BF70 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0DL_00BF70" +static const ALIGN_ASSET(2) char syotes_room_0DL_00BF70[] = dsyotes_room_0DL_00BF70; + +#define dsyotes_room_0Tex_00BF80 "__OTR__scenes/nonmq/syotes_scene/syotes_room_0Tex_00BF80" +static const ALIGN_ASSET(2) char syotes_room_0Tex_00BF80[] = dsyotes_room_0Tex_00BF80; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/syotes/syotes_scene.h b/soh/assets/scenes/test_levels/syotes/syotes_scene.h index c03d1bb7c..d7a047444 100644 --- a/soh/assets/scenes/test_levels/syotes/syotes_scene.h +++ b/soh/assets/scenes/test_levels/syotes/syotes_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dsyotes_sceneCollisionHeader_001BD4 "__OTR__scenes/nonmq/syotes_scene/syotes_sceneCollisionHeader_001BD4" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes_sceneCollisionHeader_001BD4[] = dsyotes_sceneCollisionHeader_001BD4; -#else -static const char syotes_sceneCollisionHeader_001BD4[] __attribute__((aligned (2))) = dsyotes_sceneCollisionHeader_001BD4; -#endif - +#include "align_asset_macro.h" + +#define dsyotes_sceneCollisionHeader_001BD4 "__OTR__scenes/nonmq/syotes_scene/syotes_sceneCollisionHeader_001BD4" +static const ALIGN_ASSET(2) char syotes_sceneCollisionHeader_001BD4[] = dsyotes_sceneCollisionHeader_001BD4; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/syotes2/syotes2_room_0.h b/soh/assets/scenes/test_levels/syotes2/syotes2_room_0.h index e1095d6bb..a58aaebd9 100644 --- a/soh/assets/scenes/test_levels/syotes2/syotes2_room_0.h +++ b/soh/assets/scenes/test_levels/syotes2/syotes2_room_0.h @@ -1,58 +1,27 @@ #pragma once -#define dsyotes2_room_0DL_0046B8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0DL_0046B8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_room_0DL_0046B8[] = dsyotes2_room_0DL_0046B8; -#else -static const char syotes2_room_0DL_0046B8[] __attribute__((aligned (2))) = dsyotes2_room_0DL_0046B8; -#endif - -#define dsyotes2_room_0Tex_006EF8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_006EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_room_0Tex_006EF8[] = dsyotes2_room_0Tex_006EF8; -#else -static const char syotes2_room_0Tex_006EF8[] __attribute__((aligned (2))) = dsyotes2_room_0Tex_006EF8; -#endif - -#define dsyotes2_room_0Tex_0056F8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_0056F8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_room_0Tex_0056F8[] = dsyotes2_room_0Tex_0056F8; -#else -static const char syotes2_room_0Tex_0056F8[] __attribute__((aligned (2))) = dsyotes2_room_0Tex_0056F8; -#endif - -#define dsyotes2_room_0Tex_004EF8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_004EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_room_0Tex_004EF8[] = dsyotes2_room_0Tex_004EF8; -#else -static const char syotes2_room_0Tex_004EF8[] __attribute__((aligned (2))) = dsyotes2_room_0Tex_004EF8; -#endif - -#define dsyotes2_room_0Tex_008EF8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_008EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_room_0Tex_008EF8[] = dsyotes2_room_0Tex_008EF8; -#else -static const char syotes2_room_0Tex_008EF8[] __attribute__((aligned (2))) = dsyotes2_room_0Tex_008EF8; -#endif - -#define dsyotes2_room_0Tex_0066F8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_0066F8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_room_0Tex_0066F8[] = dsyotes2_room_0Tex_0066F8; -#else -static const char syotes2_room_0Tex_0066F8[] __attribute__((aligned (2))) = dsyotes2_room_0Tex_0066F8; -#endif - -#define dsyotes2_room_0Tex_0046F8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_0046F8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_room_0Tex_0046F8[] = dsyotes2_room_0Tex_0046F8; -#else -static const char syotes2_room_0Tex_0046F8[] __attribute__((aligned (2))) = dsyotes2_room_0Tex_0046F8; -#endif - -#define dsyotes2_room_0Tex_007EF8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_007EF8" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_room_0Tex_007EF8[] = dsyotes2_room_0Tex_007EF8; -#else -static const char syotes2_room_0Tex_007EF8[] __attribute__((aligned (2))) = dsyotes2_room_0Tex_007EF8; -#endif - +#include "align_asset_macro.h" + +#define dsyotes2_room_0DL_0046B8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0DL_0046B8" +static const ALIGN_ASSET(2) char syotes2_room_0DL_0046B8[] = dsyotes2_room_0DL_0046B8; + +#define dsyotes2_room_0Tex_006EF8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_006EF8" +static const ALIGN_ASSET(2) char syotes2_room_0Tex_006EF8[] = dsyotes2_room_0Tex_006EF8; + +#define dsyotes2_room_0Tex_0056F8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_0056F8" +static const ALIGN_ASSET(2) char syotes2_room_0Tex_0056F8[] = dsyotes2_room_0Tex_0056F8; + +#define dsyotes2_room_0Tex_004EF8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_004EF8" +static const ALIGN_ASSET(2) char syotes2_room_0Tex_004EF8[] = dsyotes2_room_0Tex_004EF8; + +#define dsyotes2_room_0Tex_008EF8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_008EF8" +static const ALIGN_ASSET(2) char syotes2_room_0Tex_008EF8[] = dsyotes2_room_0Tex_008EF8; + +#define dsyotes2_room_0Tex_0066F8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_0066F8" +static const ALIGN_ASSET(2) char syotes2_room_0Tex_0066F8[] = dsyotes2_room_0Tex_0066F8; + +#define dsyotes2_room_0Tex_0046F8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_0046F8" +static const ALIGN_ASSET(2) char syotes2_room_0Tex_0046F8[] = dsyotes2_room_0Tex_0046F8; + +#define dsyotes2_room_0Tex_007EF8 "__OTR__scenes/nonmq/syotes2_scene/syotes2_room_0Tex_007EF8" +static const ALIGN_ASSET(2) char syotes2_room_0Tex_007EF8[] = dsyotes2_room_0Tex_007EF8; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/syotes2/syotes2_scene.h b/soh/assets/scenes/test_levels/syotes2/syotes2_scene.h index f569e5f0d..b212419ca 100644 --- a/soh/assets/scenes/test_levels/syotes2/syotes2_scene.h +++ b/soh/assets/scenes/test_levels/syotes2/syotes2_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dsyotes2_sceneCollisionHeader_002478 "__OTR__scenes/nonmq/syotes2_scene/syotes2_sceneCollisionHeader_002478" -#ifdef _WIN32 -static const __declspec(align(2)) char syotes2_sceneCollisionHeader_002478[] = dsyotes2_sceneCollisionHeader_002478; -#else -static const char syotes2_sceneCollisionHeader_002478[] __attribute__((aligned (2))) = dsyotes2_sceneCollisionHeader_002478; -#endif - +#include "align_asset_macro.h" + +#define dsyotes2_sceneCollisionHeader_002478 "__OTR__scenes/nonmq/syotes2_scene/syotes2_sceneCollisionHeader_002478" +static const ALIGN_ASSET(2) char syotes2_sceneCollisionHeader_002478[] = dsyotes2_sceneCollisionHeader_002478; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/test01/test01_room_0.h b/soh/assets/scenes/test_levels/test01/test01_room_0.h index e52944800..a03c5d526 100644 --- a/soh/assets/scenes/test_levels/test01/test01_room_0.h +++ b/soh/assets/scenes/test_levels/test01/test01_room_0.h @@ -1,51 +1,24 @@ #pragma once -#define dtest01_room_0DL_006438 "__OTR__scenes/nonmq/test01_scene/test01_room_0DL_006438" -#ifdef _WIN32 -static const __declspec(align(2)) char test01_room_0DL_006438[] = dtest01_room_0DL_006438; -#else -static const char test01_room_0DL_006438[] __attribute__((aligned (2))) = dtest01_room_0DL_006438; -#endif - -#define dtest01_room_0Tex_008490 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_008490" -#ifdef _WIN32 -static const __declspec(align(2)) char test01_room_0Tex_008490[] = dtest01_room_0Tex_008490; -#else -static const char test01_room_0Tex_008490[] __attribute__((aligned (2))) = dtest01_room_0Tex_008490; -#endif - -#define dtest01_room_0Tex_007490 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_007490" -#ifdef _WIN32 -static const __declspec(align(2)) char test01_room_0Tex_007490[] = dtest01_room_0Tex_007490; -#else -static const char test01_room_0Tex_007490[] __attribute__((aligned (2))) = dtest01_room_0Tex_007490; -#endif - -#define dtest01_room_0Tex_006C90 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_006C90" -#ifdef _WIN32 -static const __declspec(align(2)) char test01_room_0Tex_006C90[] = dtest01_room_0Tex_006C90; -#else -static const char test01_room_0Tex_006C90[] __attribute__((aligned (2))) = dtest01_room_0Tex_006C90; -#endif - -#define dtest01_room_0Tex_006490 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_006490" -#ifdef _WIN32 -static const __declspec(align(2)) char test01_room_0Tex_006490[] = dtest01_room_0Tex_006490; -#else -static const char test01_room_0Tex_006490[] __attribute__((aligned (2))) = dtest01_room_0Tex_006490; -#endif - -#define dtest01_room_0DL_0090D8 "__OTR__scenes/nonmq/test01_scene/test01_room_0DL_0090D8" -#ifdef _WIN32 -static const __declspec(align(2)) char test01_room_0DL_0090D8[] = dtest01_room_0DL_0090D8; -#else -static const char test01_room_0DL_0090D8[] __attribute__((aligned (2))) = dtest01_room_0DL_0090D8; -#endif - -#define dtest01_room_0Tex_0090E8 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_0090E8" -#ifdef _WIN32 -static const __declspec(align(2)) char test01_room_0Tex_0090E8[] = dtest01_room_0Tex_0090E8; -#else -static const char test01_room_0Tex_0090E8[] __attribute__((aligned (2))) = dtest01_room_0Tex_0090E8; -#endif - +#include "align_asset_macro.h" + +#define dtest01_room_0DL_006438 "__OTR__scenes/nonmq/test01_scene/test01_room_0DL_006438" +static const ALIGN_ASSET(2) char test01_room_0DL_006438[] = dtest01_room_0DL_006438; + +#define dtest01_room_0Tex_008490 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_008490" +static const ALIGN_ASSET(2) char test01_room_0Tex_008490[] = dtest01_room_0Tex_008490; + +#define dtest01_room_0Tex_007490 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_007490" +static const ALIGN_ASSET(2) char test01_room_0Tex_007490[] = dtest01_room_0Tex_007490; + +#define dtest01_room_0Tex_006C90 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_006C90" +static const ALIGN_ASSET(2) char test01_room_0Tex_006C90[] = dtest01_room_0Tex_006C90; + +#define dtest01_room_0Tex_006490 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_006490" +static const ALIGN_ASSET(2) char test01_room_0Tex_006490[] = dtest01_room_0Tex_006490; + +#define dtest01_room_0DL_0090D8 "__OTR__scenes/nonmq/test01_scene/test01_room_0DL_0090D8" +static const ALIGN_ASSET(2) char test01_room_0DL_0090D8[] = dtest01_room_0DL_0090D8; + +#define dtest01_room_0Tex_0090E8 "__OTR__scenes/nonmq/test01_scene/test01_room_0Tex_0090E8" +static const ALIGN_ASSET(2) char test01_room_0Tex_0090E8[] = dtest01_room_0Tex_0090E8; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/test01/test01_scene.h b/soh/assets/scenes/test_levels/test01/test01_scene.h index 9a9128862..d56b864ae 100644 --- a/soh/assets/scenes/test_levels/test01/test01_scene.h +++ b/soh/assets/scenes/test_levels/test01/test01_scene.h @@ -1,9 +1,6 @@ #pragma once -#define dtest01_sceneCollisionHeader_003DEC "__OTR__scenes/nonmq/test01_scene/test01_sceneCollisionHeader_003DEC" -#ifdef _WIN32 -static const __declspec(align(2)) char test01_sceneCollisionHeader_003DEC[] = dtest01_sceneCollisionHeader_003DEC; -#else -static const char test01_sceneCollisionHeader_003DEC[] __attribute__((aligned (2))) = dtest01_sceneCollisionHeader_003DEC; -#endif - +#include "align_asset_macro.h" + +#define dtest01_sceneCollisionHeader_003DEC "__OTR__scenes/nonmq/test01_scene/test01_sceneCollisionHeader_003DEC" +static const ALIGN_ASSET(2) char test01_sceneCollisionHeader_003DEC[] = dtest01_sceneCollisionHeader_003DEC; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/testroom/testroom_room_0.h b/soh/assets/scenes/test_levels/testroom/testroom_room_0.h index 358d40d17..01a7621f2 100644 --- a/soh/assets/scenes/test_levels/testroom/testroom_room_0.h +++ b/soh/assets/scenes/test_levels/testroom/testroom_room_0.h @@ -1,44 +1,21 @@ #pragma once -#define dtestroom_room_0DL_000A50 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0DL_000A50" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_0DL_000A50[] = dtestroom_room_0DL_000A50; -#else -static const char testroom_room_0DL_000A50[] __attribute__((aligned (2))) = dtestroom_room_0DL_000A50; -#endif - -#define dtestroom_room_0Tex_000E00 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_000E00" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_0Tex_000E00[] = dtestroom_room_0Tex_000E00; -#else -static const char testroom_room_0Tex_000E00[] __attribute__((aligned (2))) = dtestroom_room_0Tex_000E00; -#endif - -#define dtestroom_room_0Tex_001600 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_001600" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_0Tex_001600[] = dtestroom_room_0Tex_001600; -#else -static const char testroom_room_0Tex_001600[] __attribute__((aligned (2))) = dtestroom_room_0Tex_001600; -#endif - -#define dtestroom_room_0Tex_002600 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_002600" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_0Tex_002600[] = dtestroom_room_0Tex_002600; -#else -static const char testroom_room_0Tex_002600[] __attribute__((aligned (2))) = dtestroom_room_0Tex_002600; -#endif - -#define dtestroom_room_0Tex_002E00 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_002E00" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_0Tex_002E00[] = dtestroom_room_0Tex_002E00; -#else -static const char testroom_room_0Tex_002E00[] __attribute__((aligned (2))) = dtestroom_room_0Tex_002E00; -#endif - -#define dtestroom_room_0Tex_003E00 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_003E00" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_0Tex_003E00[] = dtestroom_room_0Tex_003E00; -#else -static const char testroom_room_0Tex_003E00[] __attribute__((aligned (2))) = dtestroom_room_0Tex_003E00; -#endif - +#include "align_asset_macro.h" + +#define dtestroom_room_0DL_000A50 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0DL_000A50" +static const ALIGN_ASSET(2) char testroom_room_0DL_000A50[] = dtestroom_room_0DL_000A50; + +#define dtestroom_room_0Tex_000E00 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_000E00" +static const ALIGN_ASSET(2) char testroom_room_0Tex_000E00[] = dtestroom_room_0Tex_000E00; + +#define dtestroom_room_0Tex_001600 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_001600" +static const ALIGN_ASSET(2) char testroom_room_0Tex_001600[] = dtestroom_room_0Tex_001600; + +#define dtestroom_room_0Tex_002600 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_002600" +static const ALIGN_ASSET(2) char testroom_room_0Tex_002600[] = dtestroom_room_0Tex_002600; + +#define dtestroom_room_0Tex_002E00 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_002E00" +static const ALIGN_ASSET(2) char testroom_room_0Tex_002E00[] = dtestroom_room_0Tex_002E00; + +#define dtestroom_room_0Tex_003E00 "__OTR__scenes/nonmq/testroom_scene/testroom_room_0Tex_003E00" +static const ALIGN_ASSET(2) char testroom_room_0Tex_003E00[] = dtestroom_room_0Tex_003E00; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/testroom/testroom_room_1.h b/soh/assets/scenes/test_levels/testroom/testroom_room_1.h index eac8bbfb8..533377fdc 100644 --- a/soh/assets/scenes/test_levels/testroom/testroom_room_1.h +++ b/soh/assets/scenes/test_levels/testroom/testroom_room_1.h @@ -1,30 +1,15 @@ #pragma once -#define dtestroom_room_1DL_000970 "__OTR__scenes/nonmq/testroom_scene/testroom_room_1DL_000970" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_1DL_000970[] = dtestroom_room_1DL_000970; -#else -static const char testroom_room_1DL_000970[] __attribute__((aligned (2))) = dtestroom_room_1DL_000970; -#endif - -#define dtestroom_room_1Tex_000BE8 "__OTR__scenes/nonmq/testroom_scene/testroom_room_1Tex_000BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_1Tex_000BE8[] = dtestroom_room_1Tex_000BE8; -#else -static const char testroom_room_1Tex_000BE8[] __attribute__((aligned (2))) = dtestroom_room_1Tex_000BE8; -#endif - -#define dtestroom_room_1Tex_0013E8 "__OTR__scenes/nonmq/testroom_scene/testroom_room_1Tex_0013E8" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_1Tex_0013E8[] = dtestroom_room_1Tex_0013E8; -#else -static const char testroom_room_1Tex_0013E8[] __attribute__((aligned (2))) = dtestroom_room_1Tex_0013E8; -#endif - -#define dtestroom_room_1Tex_001BE8 "__OTR__scenes/nonmq/testroom_scene/testroom_room_1Tex_001BE8" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_1Tex_001BE8[] = dtestroom_room_1Tex_001BE8; -#else -static const char testroom_room_1Tex_001BE8[] __attribute__((aligned (2))) = dtestroom_room_1Tex_001BE8; -#endif - +#include "align_asset_macro.h" + +#define dtestroom_room_1DL_000970 "__OTR__scenes/nonmq/testroom_scene/testroom_room_1DL_000970" +static const ALIGN_ASSET(2) char testroom_room_1DL_000970[] = dtestroom_room_1DL_000970; + +#define dtestroom_room_1Tex_000BE8 "__OTR__scenes/nonmq/testroom_scene/testroom_room_1Tex_000BE8" +static const ALIGN_ASSET(2) char testroom_room_1Tex_000BE8[] = dtestroom_room_1Tex_000BE8; + +#define dtestroom_room_1Tex_0013E8 "__OTR__scenes/nonmq/testroom_scene/testroom_room_1Tex_0013E8" +static const ALIGN_ASSET(2) char testroom_room_1Tex_0013E8[] = dtestroom_room_1Tex_0013E8; + +#define dtestroom_room_1Tex_001BE8 "__OTR__scenes/nonmq/testroom_scene/testroom_room_1Tex_001BE8" +static const ALIGN_ASSET(2) char testroom_room_1Tex_001BE8[] = dtestroom_room_1Tex_001BE8; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/testroom/testroom_room_2.h b/soh/assets/scenes/test_levels/testroom/testroom_room_2.h index fcfc91dda..66c138ca0 100644 --- a/soh/assets/scenes/test_levels/testroom/testroom_room_2.h +++ b/soh/assets/scenes/test_levels/testroom/testroom_room_2.h @@ -1,37 +1,18 @@ #pragma once -#define dtestroom_room_2DL_001590 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2DL_001590" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_2DL_001590[] = dtestroom_room_2DL_001590; -#else -static const char testroom_room_2DL_001590[] __attribute__((aligned (2))) = dtestroom_room_2DL_001590; -#endif - -#define dtestroom_room_2Tex_001A78 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2Tex_001A78" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_2Tex_001A78[] = dtestroom_room_2Tex_001A78; -#else -static const char testroom_room_2Tex_001A78[] __attribute__((aligned (2))) = dtestroom_room_2Tex_001A78; -#endif - -#define dtestroom_room_2TLUT_001A58 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2TLUT_001A58" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_2TLUT_001A58[] = dtestroom_room_2TLUT_001A58; -#else -static const char testroom_room_2TLUT_001A58[] __attribute__((aligned (2))) = dtestroom_room_2TLUT_001A58; -#endif - -#define dtestroom_room_2Tex_002278 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2Tex_002278" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_2Tex_002278[] = dtestroom_room_2Tex_002278; -#else -static const char testroom_room_2Tex_002278[] __attribute__((aligned (2))) = dtestroom_room_2Tex_002278; -#endif - -#define dtestroom_room_2Tex_002A78 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2Tex_002A78" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_2Tex_002A78[] = dtestroom_room_2Tex_002A78; -#else -static const char testroom_room_2Tex_002A78[] __attribute__((aligned (2))) = dtestroom_room_2Tex_002A78; -#endif - +#include "align_asset_macro.h" + +#define dtestroom_room_2DL_001590 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2DL_001590" +static const ALIGN_ASSET(2) char testroom_room_2DL_001590[] = dtestroom_room_2DL_001590; + +#define dtestroom_room_2Tex_001A78 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2Tex_001A78" +static const ALIGN_ASSET(2) char testroom_room_2Tex_001A78[] = dtestroom_room_2Tex_001A78; + +#define dtestroom_room_2TLUT_001A58 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2TLUT_001A58" +static const ALIGN_ASSET(2) char testroom_room_2TLUT_001A58[] = dtestroom_room_2TLUT_001A58; + +#define dtestroom_room_2Tex_002278 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2Tex_002278" +static const ALIGN_ASSET(2) char testroom_room_2Tex_002278[] = dtestroom_room_2Tex_002278; + +#define dtestroom_room_2Tex_002A78 "__OTR__scenes/nonmq/testroom_scene/testroom_room_2Tex_002A78" +static const ALIGN_ASSET(2) char testroom_room_2Tex_002A78[] = dtestroom_room_2Tex_002A78; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/testroom/testroom_room_3.h b/soh/assets/scenes/test_levels/testroom/testroom_room_3.h index f9e175c7e..68a8cbadc 100644 --- a/soh/assets/scenes/test_levels/testroom/testroom_room_3.h +++ b/soh/assets/scenes/test_levels/testroom/testroom_room_3.h @@ -1,37 +1,18 @@ #pragma once -#define dtestroom_room_3DL_000730 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3DL_000730" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_3DL_000730[] = dtestroom_room_3DL_000730; -#else -static const char testroom_room_3DL_000730[] __attribute__((aligned (2))) = dtestroom_room_3DL_000730; -#endif - -#define dtestroom_room_3Tex_000A18 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3Tex_000A18" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_3Tex_000A18[] = dtestroom_room_3Tex_000A18; -#else -static const char testroom_room_3Tex_000A18[] __attribute__((aligned (2))) = dtestroom_room_3Tex_000A18; -#endif - -#define dtestroom_room_3Tex_001218 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3Tex_001218" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_3Tex_001218[] = dtestroom_room_3Tex_001218; -#else -static const char testroom_room_3Tex_001218[] __attribute__((aligned (2))) = dtestroom_room_3Tex_001218; -#endif - -#define dtestroom_room_3Tex_002218 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3Tex_002218" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_3Tex_002218[] = dtestroom_room_3Tex_002218; -#else -static const char testroom_room_3Tex_002218[] __attribute__((aligned (2))) = dtestroom_room_3Tex_002218; -#endif - -#define dtestroom_room_3Tex_003218 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3Tex_003218" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_3Tex_003218[] = dtestroom_room_3Tex_003218; -#else -static const char testroom_room_3Tex_003218[] __attribute__((aligned (2))) = dtestroom_room_3Tex_003218; -#endif - +#include "align_asset_macro.h" + +#define dtestroom_room_3DL_000730 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3DL_000730" +static const ALIGN_ASSET(2) char testroom_room_3DL_000730[] = dtestroom_room_3DL_000730; + +#define dtestroom_room_3Tex_000A18 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3Tex_000A18" +static const ALIGN_ASSET(2) char testroom_room_3Tex_000A18[] = dtestroom_room_3Tex_000A18; + +#define dtestroom_room_3Tex_001218 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3Tex_001218" +static const ALIGN_ASSET(2) char testroom_room_3Tex_001218[] = dtestroom_room_3Tex_001218; + +#define dtestroom_room_3Tex_002218 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3Tex_002218" +static const ALIGN_ASSET(2) char testroom_room_3Tex_002218[] = dtestroom_room_3Tex_002218; + +#define dtestroom_room_3Tex_003218 "__OTR__scenes/nonmq/testroom_scene/testroom_room_3Tex_003218" +static const ALIGN_ASSET(2) char testroom_room_3Tex_003218[] = dtestroom_room_3Tex_003218; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/testroom/testroom_room_4.h b/soh/assets/scenes/test_levels/testroom/testroom_room_4.h index 71ce1ac21..3fd2e36cf 100644 --- a/soh/assets/scenes/test_levels/testroom/testroom_room_4.h +++ b/soh/assets/scenes/test_levels/testroom/testroom_room_4.h @@ -1,9 +1,6 @@ #pragma once -#define dtestroom_room_4DL_0001F0 "__OTR__scenes/nonmq/testroom_scene/testroom_room_4DL_0001F0" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_room_4DL_0001F0[] = dtestroom_room_4DL_0001F0; -#else -static const char testroom_room_4DL_0001F0[] __attribute__((aligned (2))) = dtestroom_room_4DL_0001F0; -#endif - +#include "align_asset_macro.h" + +#define dtestroom_room_4DL_0001F0 "__OTR__scenes/nonmq/testroom_scene/testroom_room_4DL_0001F0" +static const ALIGN_ASSET(2) char testroom_room_4DL_0001F0[] = dtestroom_room_4DL_0001F0; \ No newline at end of file diff --git a/soh/assets/scenes/test_levels/testroom/testroom_scene.h b/soh/assets/scenes/test_levels/testroom/testroom_scene.h index c3027b658..c771d59f5 100644 --- a/soh/assets/scenes/test_levels/testroom/testroom_scene.h +++ b/soh/assets/scenes/test_levels/testroom/testroom_scene.h @@ -1,30 +1,15 @@ #pragma once -#define dtestroom_sceneCollisionHeader_0021D4 "__OTR__scenes/nonmq/testroom_scene/testroom_sceneCollisionHeader_0021D4" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_sceneCollisionHeader_0021D4[] = dtestroom_sceneCollisionHeader_0021D4; -#else -static const char testroom_sceneCollisionHeader_0021D4[] __attribute__((aligned (2))) = dtestroom_sceneCollisionHeader_0021D4; -#endif - -#define dtestroom_sceneTex_002200 "__OTR__scenes/nonmq/testroom_scene/testroom_sceneTex_002200" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_sceneTex_002200[] = dtestroom_sceneTex_002200; -#else -static const char testroom_sceneTex_002200[] __attribute__((aligned (2))) = dtestroom_sceneTex_002200; -#endif - -#define dtestroom_sceneTex_002A00 "__OTR__scenes/nonmq/testroom_scene/testroom_sceneTex_002A00" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_sceneTex_002A00[] = dtestroom_sceneTex_002A00; -#else -static const char testroom_sceneTex_002A00[] __attribute__((aligned (2))) = dtestroom_sceneTex_002A00; -#endif - -#define dtestroom_sceneTex_003A00 "__OTR__scenes/nonmq/testroom_scene/testroom_sceneTex_003A00" -#ifdef _WIN32 -static const __declspec(align(2)) char testroom_sceneTex_003A00[] = dtestroom_sceneTex_003A00; -#else -static const char testroom_sceneTex_003A00[] __attribute__((aligned (2))) = dtestroom_sceneTex_003A00; -#endif - +#include "align_asset_macro.h" + +#define dtestroom_sceneCollisionHeader_0021D4 "__OTR__scenes/nonmq/testroom_scene/testroom_sceneCollisionHeader_0021D4" +static const ALIGN_ASSET(2) char testroom_sceneCollisionHeader_0021D4[] = dtestroom_sceneCollisionHeader_0021D4; + +#define dtestroom_sceneTex_002200 "__OTR__scenes/nonmq/testroom_scene/testroom_sceneTex_002200" +static const ALIGN_ASSET(2) char testroom_sceneTex_002200[] = dtestroom_sceneTex_002200; + +#define dtestroom_sceneTex_002A00 "__OTR__scenes/nonmq/testroom_scene/testroom_sceneTex_002A00" +static const ALIGN_ASSET(2) char testroom_sceneTex_002A00[] = dtestroom_sceneTex_002A00; + +#define dtestroom_sceneTex_003A00 "__OTR__scenes/nonmq/testroom_scene/testroom_sceneTex_003A00" +static const ALIGN_ASSET(2) char testroom_sceneTex_003A00[] = dtestroom_sceneTex_003A00; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_ALVR_pal_static.h b/soh/assets/textures/backgrounds/vr_ALVR_pal_static.h index f13e08f38..0bb5132c2 100644 --- a/soh/assets/textures/backgrounds/vr_ALVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_ALVR_pal_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgMarketPotionShopBgTLUT "__OTR__textures/vr_ALVR_pal_static/gMarketPotionShopBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPotionShopBgTLUT[] = dgMarketPotionShopBgTLUT; -#else -static const char gMarketPotionShopBgTLUT[] __attribute__((aligned (2))) = dgMarketPotionShopBgTLUT; -#endif - -#define dgMarketPotionShopBg2TLUT "__OTR__textures/vr_ALVR_pal_static/gMarketPotionShopBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPotionShopBg2TLUT[] = dgMarketPotionShopBg2TLUT; -#else -static const char gMarketPotionShopBg2TLUT[] __attribute__((aligned (2))) = dgMarketPotionShopBg2TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgMarketPotionShopBgTLUT "__OTR__textures/vr_ALVR_pal_static/gMarketPotionShopBgTLUT" +static const ALIGN_ASSET(2) char gMarketPotionShopBgTLUT[] = dgMarketPotionShopBgTLUT; + +#define dgMarketPotionShopBg2TLUT "__OTR__textures/vr_ALVR_pal_static/gMarketPotionShopBg2TLUT" +static const ALIGN_ASSET(2) char gMarketPotionShopBg2TLUT[] = dgMarketPotionShopBg2TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_ALVR_static.h b/soh/assets/textures/backgrounds/vr_ALVR_static.h index 464bd5183..4263dddcd 100644 --- a/soh/assets/textures/backgrounds/vr_ALVR_static.h +++ b/soh/assets/textures/backgrounds/vr_ALVR_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgMarketPotionShopBgTex "__OTR__textures/vr_ALVR_static/gMarketPotionShopBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPotionShopBgTex[] = dgMarketPotionShopBgTex; -#else -static const char gMarketPotionShopBgTex[] __attribute__((aligned (2))) = dgMarketPotionShopBgTex; -#endif - -#define dgMarketPotionShop2BgTex "__OTR__textures/vr_ALVR_static/gMarketPotionShop2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPotionShop2BgTex[] = dgMarketPotionShop2BgTex; -#else -static const char gMarketPotionShop2BgTex[] __attribute__((aligned (2))) = dgMarketPotionShop2BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgMarketPotionShopBgTex "__OTR__textures/vr_ALVR_static/gMarketPotionShopBgTex" +static const ALIGN_ASSET(2) char gMarketPotionShopBgTex[] = dgMarketPotionShopBgTex; + +#define dgMarketPotionShop2BgTex "__OTR__textures/vr_ALVR_static/gMarketPotionShop2BgTex" +static const ALIGN_ASSET(2) char gMarketPotionShop2BgTex[] = dgMarketPotionShop2BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_DGVR_pal_static.h b/soh/assets/textures/backgrounds/vr_DGVR_pal_static.h index 73dcc2f98..62d2edada 100644 --- a/soh/assets/textures/backgrounds/vr_DGVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_DGVR_pal_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgKakPotionShopBgTLUT "__OTR__textures/vr_DGVR_pal_static/gKakPotionShopBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakPotionShopBgTLUT[] = dgKakPotionShopBgTLUT; -#else -static const char gKakPotionShopBgTLUT[] __attribute__((aligned (2))) = dgKakPotionShopBgTLUT; -#endif - -#define dgKakPotionShopBg2TLUT "__OTR__textures/vr_DGVR_pal_static/gKakPotionShopBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakPotionShopBg2TLUT[] = dgKakPotionShopBg2TLUT; -#else -static const char gKakPotionShopBg2TLUT[] __attribute__((aligned (2))) = dgKakPotionShopBg2TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgKakPotionShopBgTLUT "__OTR__textures/vr_DGVR_pal_static/gKakPotionShopBgTLUT" +static const ALIGN_ASSET(2) char gKakPotionShopBgTLUT[] = dgKakPotionShopBgTLUT; + +#define dgKakPotionShopBg2TLUT "__OTR__textures/vr_DGVR_pal_static/gKakPotionShopBg2TLUT" +static const ALIGN_ASSET(2) char gKakPotionShopBg2TLUT[] = dgKakPotionShopBg2TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_DGVR_static.h b/soh/assets/textures/backgrounds/vr_DGVR_static.h index d06f7e5ef..99093826e 100644 --- a/soh/assets/textures/backgrounds/vr_DGVR_static.h +++ b/soh/assets/textures/backgrounds/vr_DGVR_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgKakPotionShopBgTex "__OTR__textures/vr_DGVR_static/gKakPotionShopBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakPotionShopBgTex[] = dgKakPotionShopBgTex; -#else -static const char gKakPotionShopBgTex[] __attribute__((aligned (2))) = dgKakPotionShopBgTex; -#endif - -#define dgKakPotionShop2BgTex "__OTR__textures/vr_DGVR_static/gKakPotionShop2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakPotionShop2BgTex[] = dgKakPotionShop2BgTex; -#else -static const char gKakPotionShop2BgTex[] __attribute__((aligned (2))) = dgKakPotionShop2BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgKakPotionShopBgTex "__OTR__textures/vr_DGVR_static/gKakPotionShopBgTex" +static const ALIGN_ASSET(2) char gKakPotionShopBgTex[] = dgKakPotionShopBgTex; + +#define dgKakPotionShop2BgTex "__OTR__textures/vr_DGVR_static/gKakPotionShop2BgTex" +static const ALIGN_ASSET(2) char gKakPotionShop2BgTex[] = dgKakPotionShop2BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_FCVR_pal_static.h b/soh/assets/textures/backgrounds/vr_FCVR_pal_static.h index 795141cd9..9b396c4f8 100644 --- a/soh/assets/textures/backgrounds/vr_FCVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_FCVR_pal_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgMaskShopBgTLUT "__OTR__textures/vr_FCVR_pal_static/gMaskShopBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMaskShopBgTLUT[] = dgMaskShopBgTLUT; -#else -static const char gMaskShopBgTLUT[] __attribute__((aligned (2))) = dgMaskShopBgTLUT; -#endif - -#define dgMaskShopBg2TLUT "__OTR__textures/vr_FCVR_pal_static/gMaskShopBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMaskShopBg2TLUT[] = dgMaskShopBg2TLUT; -#else -static const char gMaskShopBg2TLUT[] __attribute__((aligned (2))) = dgMaskShopBg2TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgMaskShopBgTLUT "__OTR__textures/vr_FCVR_pal_static/gMaskShopBgTLUT" +static const ALIGN_ASSET(2) char gMaskShopBgTLUT[] = dgMaskShopBgTLUT; + +#define dgMaskShopBg2TLUT "__OTR__textures/vr_FCVR_pal_static/gMaskShopBg2TLUT" +static const ALIGN_ASSET(2) char gMaskShopBg2TLUT[] = dgMaskShopBg2TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_FCVR_static.h b/soh/assets/textures/backgrounds/vr_FCVR_static.h index b1f938baf..149824b24 100644 --- a/soh/assets/textures/backgrounds/vr_FCVR_static.h +++ b/soh/assets/textures/backgrounds/vr_FCVR_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgMaskShopBgTex "__OTR__textures/vr_FCVR_static/gMaskShopBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMaskShopBgTex[] = dgMaskShopBgTex; -#else -static const char gMaskShopBgTex[] __attribute__((aligned (2))) = dgMaskShopBgTex; -#endif - -#define dgMaskShop2BgTex "__OTR__textures/vr_FCVR_static/gMaskShop2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMaskShop2BgTex[] = dgMaskShop2BgTex; -#else -static const char gMaskShop2BgTex[] __attribute__((aligned (2))) = dgMaskShop2BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgMaskShopBgTex "__OTR__textures/vr_FCVR_static/gMaskShopBgTex" +static const ALIGN_ASSET(2) char gMaskShopBgTex[] = dgMaskShopBgTex; + +#define dgMaskShop2BgTex "__OTR__textures/vr_FCVR_static/gMaskShop2BgTex" +static const ALIGN_ASSET(2) char gMaskShop2BgTex[] = dgMaskShop2BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_GLVR_pal_static.h b/soh/assets/textures/backgrounds/vr_GLVR_pal_static.h index 02d1b32da..94dd43eae 100644 --- a/soh/assets/textures/backgrounds/vr_GLVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_GLVR_pal_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgGoronShopBgTLUT "__OTR__textures/vr_GLVR_pal_static/gGoronShopBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronShopBgTLUT[] = dgGoronShopBgTLUT; -#else -static const char gGoronShopBgTLUT[] __attribute__((aligned (2))) = dgGoronShopBgTLUT; -#endif - -#define dgGoronShopBg2TLUT "__OTR__textures/vr_GLVR_pal_static/gGoronShopBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronShopBg2TLUT[] = dgGoronShopBg2TLUT; -#else -static const char gGoronShopBg2TLUT[] __attribute__((aligned (2))) = dgGoronShopBg2TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgGoronShopBgTLUT "__OTR__textures/vr_GLVR_pal_static/gGoronShopBgTLUT" +static const ALIGN_ASSET(2) char gGoronShopBgTLUT[] = dgGoronShopBgTLUT; + +#define dgGoronShopBg2TLUT "__OTR__textures/vr_GLVR_pal_static/gGoronShopBg2TLUT" +static const ALIGN_ASSET(2) char gGoronShopBg2TLUT[] = dgGoronShopBg2TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_GLVR_static.h b/soh/assets/textures/backgrounds/vr_GLVR_static.h index 6c576ef57..0a80a1b10 100644 --- a/soh/assets/textures/backgrounds/vr_GLVR_static.h +++ b/soh/assets/textures/backgrounds/vr_GLVR_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgGoronShopBgTex "__OTR__textures/vr_GLVR_static/gGoronShopBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronShopBgTex[] = dgGoronShopBgTex; -#else -static const char gGoronShopBgTex[] __attribute__((aligned (2))) = dgGoronShopBgTex; -#endif - -#define dgGoronShop2BgTex "__OTR__textures/vr_GLVR_static/gGoronShop2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronShop2BgTex[] = dgGoronShop2BgTex; -#else -static const char gGoronShop2BgTex[] __attribute__((aligned (2))) = dgGoronShop2BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgGoronShopBgTex "__OTR__textures/vr_GLVR_static/gGoronShopBgTex" +static const ALIGN_ASSET(2) char gGoronShopBgTex[] = dgGoronShopBgTex; + +#define dgGoronShop2BgTex "__OTR__textures/vr_GLVR_static/gGoronShop2BgTex" +static const ALIGN_ASSET(2) char gGoronShop2BgTex[] = dgGoronShop2BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_IPVR_pal_static.h b/soh/assets/textures/backgrounds/vr_IPVR_pal_static.h index b17817b59..e9327175b 100644 --- a/soh/assets/textures/backgrounds/vr_IPVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_IPVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgRichardsHouseBgTLUT "__OTR__textures/vr_IPVR_pal_static/gRichardsHouseBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRichardsHouseBgTLUT[] = dgRichardsHouseBgTLUT; -#else -static const char gRichardsHouseBgTLUT[] __attribute__((aligned (2))) = dgRichardsHouseBgTLUT; -#endif - -#define dgRichardsHouseBg2TLUT "__OTR__textures/vr_IPVR_pal_static/gRichardsHouseBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRichardsHouseBg2TLUT[] = dgRichardsHouseBg2TLUT; -#else -static const char gRichardsHouseBg2TLUT[] __attribute__((aligned (2))) = dgRichardsHouseBg2TLUT; -#endif - -#define dgRichardsHouseBg3TLUT "__OTR__textures/vr_IPVR_pal_static/gRichardsHouseBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRichardsHouseBg3TLUT[] = dgRichardsHouseBg3TLUT; -#else -static const char gRichardsHouseBg3TLUT[] __attribute__((aligned (2))) = dgRichardsHouseBg3TLUT; -#endif - -#define dgRichardsHouseBg4TLUT "__OTR__textures/vr_IPVR_pal_static/gRichardsHouseBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gRichardsHouseBg4TLUT[] = dgRichardsHouseBg4TLUT; -#else -static const char gRichardsHouseBg4TLUT[] __attribute__((aligned (2))) = dgRichardsHouseBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgRichardsHouseBgTLUT "__OTR__textures/vr_IPVR_pal_static/gRichardsHouseBgTLUT" +static const ALIGN_ASSET(2) char gRichardsHouseBgTLUT[] = dgRichardsHouseBgTLUT; + +#define dgRichardsHouseBg2TLUT "__OTR__textures/vr_IPVR_pal_static/gRichardsHouseBg2TLUT" +static const ALIGN_ASSET(2) char gRichardsHouseBg2TLUT[] = dgRichardsHouseBg2TLUT; + +#define dgRichardsHouseBg3TLUT "__OTR__textures/vr_IPVR_pal_static/gRichardsHouseBg3TLUT" +static const ALIGN_ASSET(2) char gRichardsHouseBg3TLUT[] = dgRichardsHouseBg3TLUT; + +#define dgRichardsHouseBg4TLUT "__OTR__textures/vr_IPVR_pal_static/gRichardsHouseBg4TLUT" +static const ALIGN_ASSET(2) char gRichardsHouseBg4TLUT[] = dgRichardsHouseBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_IPVR_static.h b/soh/assets/textures/backgrounds/vr_IPVR_static.h index ba23318f0..789994592 100644 --- a/soh/assets/textures/backgrounds/vr_IPVR_static.h +++ b/soh/assets/textures/backgrounds/vr_IPVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgRichardsHouseBgTex "__OTR__textures/vr_IPVR_static/gRichardsHouseBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRichardsHouseBgTex[] = dgRichardsHouseBgTex; -#else -static const char gRichardsHouseBgTex[] __attribute__((aligned (2))) = dgRichardsHouseBgTex; -#endif - -#define dgRichardsHouse2BgTex "__OTR__textures/vr_IPVR_static/gRichardsHouse2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRichardsHouse2BgTex[] = dgRichardsHouse2BgTex; -#else -static const char gRichardsHouse2BgTex[] __attribute__((aligned (2))) = dgRichardsHouse2BgTex; -#endif - -#define dgRichardsHouse3BgTex "__OTR__textures/vr_IPVR_static/gRichardsHouse3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRichardsHouse3BgTex[] = dgRichardsHouse3BgTex; -#else -static const char gRichardsHouse3BgTex[] __attribute__((aligned (2))) = dgRichardsHouse3BgTex; -#endif - -#define dgRichardsHouse4BgTex "__OTR__textures/vr_IPVR_static/gRichardsHouse4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRichardsHouse4BgTex[] = dgRichardsHouse4BgTex; -#else -static const char gRichardsHouse4BgTex[] __attribute__((aligned (2))) = dgRichardsHouse4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgRichardsHouseBgTex "__OTR__textures/vr_IPVR_static/gRichardsHouseBgTex" +static const ALIGN_ASSET(2) char gRichardsHouseBgTex[] = dgRichardsHouseBgTex; + +#define dgRichardsHouse2BgTex "__OTR__textures/vr_IPVR_static/gRichardsHouse2BgTex" +static const ALIGN_ASSET(2) char gRichardsHouse2BgTex[] = dgRichardsHouse2BgTex; + +#define dgRichardsHouse3BgTex "__OTR__textures/vr_IPVR_static/gRichardsHouse3BgTex" +static const ALIGN_ASSET(2) char gRichardsHouse3BgTex[] = dgRichardsHouse3BgTex; + +#define dgRichardsHouse4BgTex "__OTR__textures/vr_IPVR_static/gRichardsHouse4BgTex" +static const ALIGN_ASSET(2) char gRichardsHouse4BgTex[] = dgRichardsHouse4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_K3VR_pal_static.h b/soh/assets/textures/backgrounds/vr_K3VR_pal_static.h index 2dbb34470..4c79fec8d 100644 --- a/soh/assets/textures/backgrounds/vr_K3VR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_K3VR_pal_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgHouseOfTwinsBgTLUT "__OTR__textures/vr_K3VR_pal_static/gHouseOfTwinsBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfTwinsBgTLUT[] = dgHouseOfTwinsBgTLUT; -#else -static const char gHouseOfTwinsBgTLUT[] __attribute__((aligned (2))) = dgHouseOfTwinsBgTLUT; -#endif - -#define dgHouseOfTwinsBg2TLUT "__OTR__textures/vr_K3VR_pal_static/gHouseOfTwinsBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfTwinsBg2TLUT[] = dgHouseOfTwinsBg2TLUT; -#else -static const char gHouseOfTwinsBg2TLUT[] __attribute__((aligned (2))) = dgHouseOfTwinsBg2TLUT; -#endif - -#define dgHouseOfTwinsBg3TLUT "__OTR__textures/vr_K3VR_pal_static/gHouseOfTwinsBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfTwinsBg3TLUT[] = dgHouseOfTwinsBg3TLUT; -#else -static const char gHouseOfTwinsBg3TLUT[] __attribute__((aligned (2))) = dgHouseOfTwinsBg3TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgHouseOfTwinsBgTLUT "__OTR__textures/vr_K3VR_pal_static/gHouseOfTwinsBgTLUT" +static const ALIGN_ASSET(2) char gHouseOfTwinsBgTLUT[] = dgHouseOfTwinsBgTLUT; + +#define dgHouseOfTwinsBg2TLUT "__OTR__textures/vr_K3VR_pal_static/gHouseOfTwinsBg2TLUT" +static const ALIGN_ASSET(2) char gHouseOfTwinsBg2TLUT[] = dgHouseOfTwinsBg2TLUT; + +#define dgHouseOfTwinsBg3TLUT "__OTR__textures/vr_K3VR_pal_static/gHouseOfTwinsBg3TLUT" +static const ALIGN_ASSET(2) char gHouseOfTwinsBg3TLUT[] = dgHouseOfTwinsBg3TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_K3VR_static.h b/soh/assets/textures/backgrounds/vr_K3VR_static.h index 067f01887..9a192ee0f 100644 --- a/soh/assets/textures/backgrounds/vr_K3VR_static.h +++ b/soh/assets/textures/backgrounds/vr_K3VR_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgHouseOfTwinsBgTex "__OTR__textures/vr_K3VR_static/gHouseOfTwinsBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfTwinsBgTex[] = dgHouseOfTwinsBgTex; -#else -static const char gHouseOfTwinsBgTex[] __attribute__((aligned (2))) = dgHouseOfTwinsBgTex; -#endif - -#define dgHouseOfTwins2BgTex "__OTR__textures/vr_K3VR_static/gHouseOfTwins2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfTwins2BgTex[] = dgHouseOfTwins2BgTex; -#else -static const char gHouseOfTwins2BgTex[] __attribute__((aligned (2))) = dgHouseOfTwins2BgTex; -#endif - -#define dgHouseOfTwins3BgTex "__OTR__textures/vr_K3VR_static/gHouseOfTwins3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfTwins3BgTex[] = dgHouseOfTwins3BgTex; -#else -static const char gHouseOfTwins3BgTex[] __attribute__((aligned (2))) = dgHouseOfTwins3BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgHouseOfTwinsBgTex "__OTR__textures/vr_K3VR_static/gHouseOfTwinsBgTex" +static const ALIGN_ASSET(2) char gHouseOfTwinsBgTex[] = dgHouseOfTwinsBgTex; + +#define dgHouseOfTwins2BgTex "__OTR__textures/vr_K3VR_static/gHouseOfTwins2BgTex" +static const ALIGN_ASSET(2) char gHouseOfTwins2BgTex[] = dgHouseOfTwins2BgTex; + +#define dgHouseOfTwins3BgTex "__OTR__textures/vr_K3VR_static/gHouseOfTwins3BgTex" +static const ALIGN_ASSET(2) char gHouseOfTwins3BgTex[] = dgHouseOfTwins3BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_K4VR_pal_static.h b/soh/assets/textures/backgrounds/vr_K4VR_pal_static.h index 7527831b0..bfe5be5a1 100644 --- a/soh/assets/textures/backgrounds/vr_K4VR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_K4VR_pal_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgMidosHouseBgTLUT "__OTR__textures/vr_K4VR_pal_static/gMidosHouseBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidosHouseBgTLUT[] = dgMidosHouseBgTLUT; -#else -static const char gMidosHouseBgTLUT[] __attribute__((aligned (2))) = dgMidosHouseBgTLUT; -#endif - -#define dgMidosHouseBg2TLUT "__OTR__textures/vr_K4VR_pal_static/gMidosHouseBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidosHouseBg2TLUT[] = dgMidosHouseBg2TLUT; -#else -static const char gMidosHouseBg2TLUT[] __attribute__((aligned (2))) = dgMidosHouseBg2TLUT; -#endif - -#define dgMidosHouseBg3TLUT "__OTR__textures/vr_K4VR_pal_static/gMidosHouseBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidosHouseBg3TLUT[] = dgMidosHouseBg3TLUT; -#else -static const char gMidosHouseBg3TLUT[] __attribute__((aligned (2))) = dgMidosHouseBg3TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgMidosHouseBgTLUT "__OTR__textures/vr_K4VR_pal_static/gMidosHouseBgTLUT" +static const ALIGN_ASSET(2) char gMidosHouseBgTLUT[] = dgMidosHouseBgTLUT; + +#define dgMidosHouseBg2TLUT "__OTR__textures/vr_K4VR_pal_static/gMidosHouseBg2TLUT" +static const ALIGN_ASSET(2) char gMidosHouseBg2TLUT[] = dgMidosHouseBg2TLUT; + +#define dgMidosHouseBg3TLUT "__OTR__textures/vr_K4VR_pal_static/gMidosHouseBg3TLUT" +static const ALIGN_ASSET(2) char gMidosHouseBg3TLUT[] = dgMidosHouseBg3TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_K4VR_static.h b/soh/assets/textures/backgrounds/vr_K4VR_static.h index f6a9c7d55..63cebc44b 100644 --- a/soh/assets/textures/backgrounds/vr_K4VR_static.h +++ b/soh/assets/textures/backgrounds/vr_K4VR_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgMidosHouseBgTex "__OTR__textures/vr_K4VR_static/gMidosHouseBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidosHouseBgTex[] = dgMidosHouseBgTex; -#else -static const char gMidosHouseBgTex[] __attribute__((aligned (2))) = dgMidosHouseBgTex; -#endif - -#define dgMidosHouse2BgTex "__OTR__textures/vr_K4VR_static/gMidosHouse2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidosHouse2BgTex[] = dgMidosHouse2BgTex; -#else -static const char gMidosHouse2BgTex[] __attribute__((aligned (2))) = dgMidosHouse2BgTex; -#endif - -#define dgMidosHouse3BgTex "__OTR__textures/vr_K4VR_static/gMidosHouse3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMidosHouse3BgTex[] = dgMidosHouse3BgTex; -#else -static const char gMidosHouse3BgTex[] __attribute__((aligned (2))) = dgMidosHouse3BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgMidosHouseBgTex "__OTR__textures/vr_K4VR_static/gMidosHouseBgTex" +static const ALIGN_ASSET(2) char gMidosHouseBgTex[] = dgMidosHouseBgTex; + +#define dgMidosHouse2BgTex "__OTR__textures/vr_K4VR_static/gMidosHouse2BgTex" +static const ALIGN_ASSET(2) char gMidosHouse2BgTex[] = dgMidosHouse2BgTex; + +#define dgMidosHouse3BgTex "__OTR__textures/vr_K4VR_static/gMidosHouse3BgTex" +static const ALIGN_ASSET(2) char gMidosHouse3BgTex[] = dgMidosHouse3BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_K5VR_pal_static.h b/soh/assets/textures/backgrounds/vr_K5VR_pal_static.h index 24db8a434..d4b0ad416 100644 --- a/soh/assets/textures/backgrounds/vr_K5VR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_K5VR_pal_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgSariasHouseBgTLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasHouseBgTLUT[] = dgSariasHouseBgTLUT; -#else -static const char gSariasHouseBgTLUT[] __attribute__((aligned (2))) = dgSariasHouseBgTLUT; -#endif - -#define dgSariasHouseBg2TLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasHouseBg2TLUT[] = dgSariasHouseBg2TLUT; -#else -static const char gSariasHouseBg2TLUT[] __attribute__((aligned (2))) = dgSariasHouseBg2TLUT; -#endif - -#define dgSariasHouseBg3TLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasHouseBg3TLUT[] = dgSariasHouseBg3TLUT; -#else -static const char gSariasHouseBg3TLUT[] __attribute__((aligned (2))) = dgSariasHouseBg3TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgSariasHouseBgTLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBgTLUT" +static const ALIGN_ASSET(2) char gSariasHouseBgTLUT[] = dgSariasHouseBgTLUT; + +#define dgSariasHouseBg2TLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBg2TLUT" +static const ALIGN_ASSET(2) char gSariasHouseBg2TLUT[] = dgSariasHouseBg2TLUT; + +#define dgSariasHouseBg3TLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBg3TLUT" +static const ALIGN_ASSET(2) char gSariasHouseBg3TLUT[] = dgSariasHouseBg3TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_K5VR_static.h b/soh/assets/textures/backgrounds/vr_K5VR_static.h index c35d266cf..92553200a 100644 --- a/soh/assets/textures/backgrounds/vr_K5VR_static.h +++ b/soh/assets/textures/backgrounds/vr_K5VR_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgSariasHouseBgTex "__OTR__textures/vr_K5VR_static/gSariasHouseBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasHouseBgTex[] = dgSariasHouseBgTex; -#else -static const char gSariasHouseBgTex[] __attribute__((aligned (2))) = dgSariasHouseBgTex; -#endif - -#define dgSariasHouse2BgTex "__OTR__textures/vr_K5VR_static/gSariasHouse2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasHouse2BgTex[] = dgSariasHouse2BgTex; -#else -static const char gSariasHouse2BgTex[] __attribute__((aligned (2))) = dgSariasHouse2BgTex; -#endif - -#define dgSariasHouse3BgTex "__OTR__textures/vr_K5VR_static/gSariasHouse3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasHouse3BgTex[] = dgSariasHouse3BgTex; -#else -static const char gSariasHouse3BgTex[] __attribute__((aligned (2))) = dgSariasHouse3BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgSariasHouseBgTex "__OTR__textures/vr_K5VR_static/gSariasHouseBgTex" +static const ALIGN_ASSET(2) char gSariasHouseBgTex[] = dgSariasHouseBgTex; + +#define dgSariasHouse2BgTex "__OTR__textures/vr_K5VR_static/gSariasHouse2BgTex" +static const ALIGN_ASSET(2) char gSariasHouse2BgTex[] = dgSariasHouse2BgTex; + +#define dgSariasHouse3BgTex "__OTR__textures/vr_K5VR_static/gSariasHouse3BgTex" +static const ALIGN_ASSET(2) char gSariasHouse3BgTex[] = dgSariasHouse3BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_KHVR_pal_static.h b/soh/assets/textures/backgrounds/vr_KHVR_pal_static.h index 0b4308d16..5f7891db3 100644 --- a/soh/assets/textures/backgrounds/vr_KHVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_KHVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgKnowItAllBrosHouseBgTLUT "__OTR__textures/vr_KHVR_pal_static/gKnowItAllBrosHouseBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKnowItAllBrosHouseBgTLUT[] = dgKnowItAllBrosHouseBgTLUT; -#else -static const char gKnowItAllBrosHouseBgTLUT[] __attribute__((aligned (2))) = dgKnowItAllBrosHouseBgTLUT; -#endif - -#define dgKnowItAllBrosHouseBg2TLUT "__OTR__textures/vr_KHVR_pal_static/gKnowItAllBrosHouseBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKnowItAllBrosHouseBg2TLUT[] = dgKnowItAllBrosHouseBg2TLUT; -#else -static const char gKnowItAllBrosHouseBg2TLUT[] __attribute__((aligned (2))) = dgKnowItAllBrosHouseBg2TLUT; -#endif - -#define dgKnowItAllBrosHouseBg3TLUT "__OTR__textures/vr_KHVR_pal_static/gKnowItAllBrosHouseBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKnowItAllBrosHouseBg3TLUT[] = dgKnowItAllBrosHouseBg3TLUT; -#else -static const char gKnowItAllBrosHouseBg3TLUT[] __attribute__((aligned (2))) = dgKnowItAllBrosHouseBg3TLUT; -#endif - -#define dgKnowItAllBrosHouseBg4TLUT "__OTR__textures/vr_KHVR_pal_static/gKnowItAllBrosHouseBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKnowItAllBrosHouseBg4TLUT[] = dgKnowItAllBrosHouseBg4TLUT; -#else -static const char gKnowItAllBrosHouseBg4TLUT[] __attribute__((aligned (2))) = dgKnowItAllBrosHouseBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgKnowItAllBrosHouseBgTLUT "__OTR__textures/vr_KHVR_pal_static/gKnowItAllBrosHouseBgTLUT" +static const ALIGN_ASSET(2) char gKnowItAllBrosHouseBgTLUT[] = dgKnowItAllBrosHouseBgTLUT; + +#define dgKnowItAllBrosHouseBg2TLUT "__OTR__textures/vr_KHVR_pal_static/gKnowItAllBrosHouseBg2TLUT" +static const ALIGN_ASSET(2) char gKnowItAllBrosHouseBg2TLUT[] = dgKnowItAllBrosHouseBg2TLUT; + +#define dgKnowItAllBrosHouseBg3TLUT "__OTR__textures/vr_KHVR_pal_static/gKnowItAllBrosHouseBg3TLUT" +static const ALIGN_ASSET(2) char gKnowItAllBrosHouseBg3TLUT[] = dgKnowItAllBrosHouseBg3TLUT; + +#define dgKnowItAllBrosHouseBg4TLUT "__OTR__textures/vr_KHVR_pal_static/gKnowItAllBrosHouseBg4TLUT" +static const ALIGN_ASSET(2) char gKnowItAllBrosHouseBg4TLUT[] = dgKnowItAllBrosHouseBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_KHVR_static.h b/soh/assets/textures/backgrounds/vr_KHVR_static.h index c3c951d64..92e48a1d0 100644 --- a/soh/assets/textures/backgrounds/vr_KHVR_static.h +++ b/soh/assets/textures/backgrounds/vr_KHVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgKnowItAllBrosHouseBgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouseBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKnowItAllBrosHouseBgTex[] = dgKnowItAllBrosHouseBgTex; -#else -static const char gKnowItAllBrosHouseBgTex[] __attribute__((aligned (2))) = dgKnowItAllBrosHouseBgTex; -#endif - -#define dgKnowItAllBrosHouse2BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKnowItAllBrosHouse2BgTex[] = dgKnowItAllBrosHouse2BgTex; -#else -static const char gKnowItAllBrosHouse2BgTex[] __attribute__((aligned (2))) = dgKnowItAllBrosHouse2BgTex; -#endif - -#define dgKnowItAllBrosHouse3BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKnowItAllBrosHouse3BgTex[] = dgKnowItAllBrosHouse3BgTex; -#else -static const char gKnowItAllBrosHouse3BgTex[] __attribute__((aligned (2))) = dgKnowItAllBrosHouse3BgTex; -#endif - -#define dgKnowItAllBrosHouse4BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKnowItAllBrosHouse4BgTex[] = dgKnowItAllBrosHouse4BgTex; -#else -static const char gKnowItAllBrosHouse4BgTex[] __attribute__((aligned (2))) = dgKnowItAllBrosHouse4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgKnowItAllBrosHouseBgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouseBgTex" +static const ALIGN_ASSET(2) char gKnowItAllBrosHouseBgTex[] = dgKnowItAllBrosHouseBgTex; + +#define dgKnowItAllBrosHouse2BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse2BgTex" +static const ALIGN_ASSET(2) char gKnowItAllBrosHouse2BgTex[] = dgKnowItAllBrosHouse2BgTex; + +#define dgKnowItAllBrosHouse3BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse3BgTex" +static const ALIGN_ASSET(2) char gKnowItAllBrosHouse3BgTex[] = dgKnowItAllBrosHouse3BgTex; + +#define dgKnowItAllBrosHouse4BgTex "__OTR__textures/vr_KHVR_static/gKnowItAllBrosHouse4BgTex" +static const ALIGN_ASSET(2) char gKnowItAllBrosHouse4BgTex[] = dgKnowItAllBrosHouse4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_KKRVR_pal_static.h b/soh/assets/textures/backgrounds/vr_KKRVR_pal_static.h index 7f203a1ae..e49e11123 100644 --- a/soh/assets/textures/backgrounds/vr_KKRVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_KKRVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgCarpentersHouseBgTLUT "__OTR__textures/vr_KKRVR_pal_static/gCarpentersHouseBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersHouseBgTLUT[] = dgCarpentersHouseBgTLUT; -#else -static const char gCarpentersHouseBgTLUT[] __attribute__((aligned (2))) = dgCarpentersHouseBgTLUT; -#endif - -#define dgCarpentersHouseBg2TLUT "__OTR__textures/vr_KKRVR_pal_static/gCarpentersHouseBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersHouseBg2TLUT[] = dgCarpentersHouseBg2TLUT; -#else -static const char gCarpentersHouseBg2TLUT[] __attribute__((aligned (2))) = dgCarpentersHouseBg2TLUT; -#endif - -#define dgCarpentersHouseBg3TLUT "__OTR__textures/vr_KKRVR_pal_static/gCarpentersHouseBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersHouseBg3TLUT[] = dgCarpentersHouseBg3TLUT; -#else -static const char gCarpentersHouseBg3TLUT[] __attribute__((aligned (2))) = dgCarpentersHouseBg3TLUT; -#endif - -#define dgCarpentersHouseBg4TLUT "__OTR__textures/vr_KKRVR_pal_static/gCarpentersHouseBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersHouseBg4TLUT[] = dgCarpentersHouseBg4TLUT; -#else -static const char gCarpentersHouseBg4TLUT[] __attribute__((aligned (2))) = dgCarpentersHouseBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgCarpentersHouseBgTLUT "__OTR__textures/vr_KKRVR_pal_static/gCarpentersHouseBgTLUT" +static const ALIGN_ASSET(2) char gCarpentersHouseBgTLUT[] = dgCarpentersHouseBgTLUT; + +#define dgCarpentersHouseBg2TLUT "__OTR__textures/vr_KKRVR_pal_static/gCarpentersHouseBg2TLUT" +static const ALIGN_ASSET(2) char gCarpentersHouseBg2TLUT[] = dgCarpentersHouseBg2TLUT; + +#define dgCarpentersHouseBg3TLUT "__OTR__textures/vr_KKRVR_pal_static/gCarpentersHouseBg3TLUT" +static const ALIGN_ASSET(2) char gCarpentersHouseBg3TLUT[] = dgCarpentersHouseBg3TLUT; + +#define dgCarpentersHouseBg4TLUT "__OTR__textures/vr_KKRVR_pal_static/gCarpentersHouseBg4TLUT" +static const ALIGN_ASSET(2) char gCarpentersHouseBg4TLUT[] = dgCarpentersHouseBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_KKRVR_static.h b/soh/assets/textures/backgrounds/vr_KKRVR_static.h index 4aea7cc74..e328bba6d 100644 --- a/soh/assets/textures/backgrounds/vr_KKRVR_static.h +++ b/soh/assets/textures/backgrounds/vr_KKRVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgCarpentersHouseBgTex "__OTR__textures/vr_KKRVR_static/gCarpentersHouseBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersHouseBgTex[] = dgCarpentersHouseBgTex; -#else -static const char gCarpentersHouseBgTex[] __attribute__((aligned (2))) = dgCarpentersHouseBgTex; -#endif - -#define dgCarpentersHouse2BgTex "__OTR__textures/vr_KKRVR_static/gCarpentersHouse2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersHouse2BgTex[] = dgCarpentersHouse2BgTex; -#else -static const char gCarpentersHouse2BgTex[] __attribute__((aligned (2))) = dgCarpentersHouse2BgTex; -#endif - -#define dgCarpentersHouse3BgTex "__OTR__textures/vr_KKRVR_static/gCarpentersHouse3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersHouse3BgTex[] = dgCarpentersHouse3BgTex; -#else -static const char gCarpentersHouse3BgTex[] __attribute__((aligned (2))) = dgCarpentersHouse3BgTex; -#endif - -#define dgCarpentersHouse4BgTex "__OTR__textures/vr_KKRVR_static/gCarpentersHouse4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersHouse4BgTex[] = dgCarpentersHouse4BgTex; -#else -static const char gCarpentersHouse4BgTex[] __attribute__((aligned (2))) = dgCarpentersHouse4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgCarpentersHouseBgTex "__OTR__textures/vr_KKRVR_static/gCarpentersHouseBgTex" +static const ALIGN_ASSET(2) char gCarpentersHouseBgTex[] = dgCarpentersHouseBgTex; + +#define dgCarpentersHouse2BgTex "__OTR__textures/vr_KKRVR_static/gCarpentersHouse2BgTex" +static const ALIGN_ASSET(2) char gCarpentersHouse2BgTex[] = dgCarpentersHouse2BgTex; + +#define dgCarpentersHouse3BgTex "__OTR__textures/vr_KKRVR_static/gCarpentersHouse3BgTex" +static const ALIGN_ASSET(2) char gCarpentersHouse3BgTex[] = dgCarpentersHouse3BgTex; + +#define dgCarpentersHouse4BgTex "__OTR__textures/vr_KKRVR_static/gCarpentersHouse4BgTex" +static const ALIGN_ASSET(2) char gCarpentersHouse4BgTex[] = dgCarpentersHouse4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_KR3VR_pal_static.h b/soh/assets/textures/backgrounds/vr_KR3VR_pal_static.h index 4b311cf14..af8b6ad06 100644 --- a/soh/assets/textures/backgrounds/vr_KR3VR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_KR3VR_pal_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgBackAlleyHouseBgTLUT "__OTR__textures/vr_KR3VR_pal_static/gBackAlleyHouseBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyHouseBgTLUT[] = dgBackAlleyHouseBgTLUT; -#else -static const char gBackAlleyHouseBgTLUT[] __attribute__((aligned (2))) = dgBackAlleyHouseBgTLUT; -#endif - -#define dgBackAlleyHouseBg2TLUT "__OTR__textures/vr_KR3VR_pal_static/gBackAlleyHouseBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyHouseBg2TLUT[] = dgBackAlleyHouseBg2TLUT; -#else -static const char gBackAlleyHouseBg2TLUT[] __attribute__((aligned (2))) = dgBackAlleyHouseBg2TLUT; -#endif - -#define dgBackAlleyHouseBg3TLUT "__OTR__textures/vr_KR3VR_pal_static/gBackAlleyHouseBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyHouseBg3TLUT[] = dgBackAlleyHouseBg3TLUT; -#else -static const char gBackAlleyHouseBg3TLUT[] __attribute__((aligned (2))) = dgBackAlleyHouseBg3TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgBackAlleyHouseBgTLUT "__OTR__textures/vr_KR3VR_pal_static/gBackAlleyHouseBgTLUT" +static const ALIGN_ASSET(2) char gBackAlleyHouseBgTLUT[] = dgBackAlleyHouseBgTLUT; + +#define dgBackAlleyHouseBg2TLUT "__OTR__textures/vr_KR3VR_pal_static/gBackAlleyHouseBg2TLUT" +static const ALIGN_ASSET(2) char gBackAlleyHouseBg2TLUT[] = dgBackAlleyHouseBg2TLUT; + +#define dgBackAlleyHouseBg3TLUT "__OTR__textures/vr_KR3VR_pal_static/gBackAlleyHouseBg3TLUT" +static const ALIGN_ASSET(2) char gBackAlleyHouseBg3TLUT[] = dgBackAlleyHouseBg3TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_KR3VR_static.h b/soh/assets/textures/backgrounds/vr_KR3VR_static.h index 7804371a6..709767d94 100644 --- a/soh/assets/textures/backgrounds/vr_KR3VR_static.h +++ b/soh/assets/textures/backgrounds/vr_KR3VR_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgBackAlleyHouseBgTex "__OTR__textures/vr_KR3VR_static/gBackAlleyHouseBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyHouseBgTex[] = dgBackAlleyHouseBgTex; -#else -static const char gBackAlleyHouseBgTex[] __attribute__((aligned (2))) = dgBackAlleyHouseBgTex; -#endif - -#define dgBackAlleyHouse2BgTex "__OTR__textures/vr_KR3VR_static/gBackAlleyHouse2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyHouse2BgTex[] = dgBackAlleyHouse2BgTex; -#else -static const char gBackAlleyHouse2BgTex[] __attribute__((aligned (2))) = dgBackAlleyHouse2BgTex; -#endif - -#define dgBackAlleyHouse3BgTex "__OTR__textures/vr_KR3VR_static/gBackAlleyHouse3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyHouse3BgTex[] = dgBackAlleyHouse3BgTex; -#else -static const char gBackAlleyHouse3BgTex[] __attribute__((aligned (2))) = dgBackAlleyHouse3BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgBackAlleyHouseBgTex "__OTR__textures/vr_KR3VR_static/gBackAlleyHouseBgTex" +static const ALIGN_ASSET(2) char gBackAlleyHouseBgTex[] = dgBackAlleyHouseBgTex; + +#define dgBackAlleyHouse2BgTex "__OTR__textures/vr_KR3VR_static/gBackAlleyHouse2BgTex" +static const ALIGN_ASSET(2) char gBackAlleyHouse2BgTex[] = dgBackAlleyHouse2BgTex; + +#define dgBackAlleyHouse3BgTex "__OTR__textures/vr_KR3VR_static/gBackAlleyHouse3BgTex" +static const ALIGN_ASSET(2) char gBackAlleyHouse3BgTex[] = dgBackAlleyHouse3BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_KSVR_pal_static.h b/soh/assets/textures/backgrounds/vr_KSVR_pal_static.h index 8521a6345..0f9dfe5b8 100644 --- a/soh/assets/textures/backgrounds/vr_KSVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_KSVR_pal_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgKokiriShopBgTLUT "__OTR__textures/vr_KSVR_pal_static/gKokiriShopBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopBgTLUT[] = dgKokiriShopBgTLUT; -#else -static const char gKokiriShopBgTLUT[] __attribute__((aligned (2))) = dgKokiriShopBgTLUT; -#endif - -#define dgKokiriShopBg2TLUT "__OTR__textures/vr_KSVR_pal_static/gKokiriShopBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopBg2TLUT[] = dgKokiriShopBg2TLUT; -#else -static const char gKokiriShopBg2TLUT[] __attribute__((aligned (2))) = dgKokiriShopBg2TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgKokiriShopBgTLUT "__OTR__textures/vr_KSVR_pal_static/gKokiriShopBgTLUT" +static const ALIGN_ASSET(2) char gKokiriShopBgTLUT[] = dgKokiriShopBgTLUT; + +#define dgKokiriShopBg2TLUT "__OTR__textures/vr_KSVR_pal_static/gKokiriShopBg2TLUT" +static const ALIGN_ASSET(2) char gKokiriShopBg2TLUT[] = dgKokiriShopBg2TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_KSVR_static.h b/soh/assets/textures/backgrounds/vr_KSVR_static.h index fdd366a21..70c9b3491 100644 --- a/soh/assets/textures/backgrounds/vr_KSVR_static.h +++ b/soh/assets/textures/backgrounds/vr_KSVR_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgKokiriShopBgTex "__OTR__textures/vr_KSVR_static/gKokiriShopBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopBgTex[] = dgKokiriShopBgTex; -#else -static const char gKokiriShopBgTex[] __attribute__((aligned (2))) = dgKokiriShopBgTex; -#endif - -#define dgKokiriShop2BgTex "__OTR__textures/vr_KSVR_static/gKokiriShop2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShop2BgTex[] = dgKokiriShop2BgTex; -#else -static const char gKokiriShop2BgTex[] __attribute__((aligned (2))) = dgKokiriShop2BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgKokiriShopBgTex "__OTR__textures/vr_KSVR_static/gKokiriShopBgTex" +static const ALIGN_ASSET(2) char gKokiriShopBgTex[] = dgKokiriShopBgTex; + +#define dgKokiriShop2BgTex "__OTR__textures/vr_KSVR_static/gKokiriShop2BgTex" +static const ALIGN_ASSET(2) char gKokiriShop2BgTex[] = dgKokiriShop2BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_LBVR_pal_static.h b/soh/assets/textures/backgrounds/vr_LBVR_pal_static.h index 74db5c627..b2e45053c 100644 --- a/soh/assets/textures/backgrounds/vr_LBVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_LBVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgCowHouseBgTLUT "__OTR__textures/vr_LBVR_pal_static/gCowHouseBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHouseBgTLUT[] = dgCowHouseBgTLUT; -#else -static const char gCowHouseBgTLUT[] __attribute__((aligned (2))) = dgCowHouseBgTLUT; -#endif - -#define dgCowHouseBg2TLUT "__OTR__textures/vr_LBVR_pal_static/gCowHouseBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHouseBg2TLUT[] = dgCowHouseBg2TLUT; -#else -static const char gCowHouseBg2TLUT[] __attribute__((aligned (2))) = dgCowHouseBg2TLUT; -#endif - -#define dgCowHouseBg3TLUT "__OTR__textures/vr_LBVR_pal_static/gCowHouseBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHouseBg3TLUT[] = dgCowHouseBg3TLUT; -#else -static const char gCowHouseBg3TLUT[] __attribute__((aligned (2))) = dgCowHouseBg3TLUT; -#endif - -#define dgCowHouseBg4TLUT "__OTR__textures/vr_LBVR_pal_static/gCowHouseBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHouseBg4TLUT[] = dgCowHouseBg4TLUT; -#else -static const char gCowHouseBg4TLUT[] __attribute__((aligned (2))) = dgCowHouseBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgCowHouseBgTLUT "__OTR__textures/vr_LBVR_pal_static/gCowHouseBgTLUT" +static const ALIGN_ASSET(2) char gCowHouseBgTLUT[] = dgCowHouseBgTLUT; + +#define dgCowHouseBg2TLUT "__OTR__textures/vr_LBVR_pal_static/gCowHouseBg2TLUT" +static const ALIGN_ASSET(2) char gCowHouseBg2TLUT[] = dgCowHouseBg2TLUT; + +#define dgCowHouseBg3TLUT "__OTR__textures/vr_LBVR_pal_static/gCowHouseBg3TLUT" +static const ALIGN_ASSET(2) char gCowHouseBg3TLUT[] = dgCowHouseBg3TLUT; + +#define dgCowHouseBg4TLUT "__OTR__textures/vr_LBVR_pal_static/gCowHouseBg4TLUT" +static const ALIGN_ASSET(2) char gCowHouseBg4TLUT[] = dgCowHouseBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_LBVR_static.h b/soh/assets/textures/backgrounds/vr_LBVR_static.h index f0728e3c6..c5643c57e 100644 --- a/soh/assets/textures/backgrounds/vr_LBVR_static.h +++ b/soh/assets/textures/backgrounds/vr_LBVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgCowHouseBgTex "__OTR__textures/vr_LBVR_static/gCowHouseBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHouseBgTex[] = dgCowHouseBgTex; -#else -static const char gCowHouseBgTex[] __attribute__((aligned (2))) = dgCowHouseBgTex; -#endif - -#define dgCowHouse2BgTex "__OTR__textures/vr_LBVR_static/gCowHouse2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHouse2BgTex[] = dgCowHouse2BgTex; -#else -static const char gCowHouse2BgTex[] __attribute__((aligned (2))) = dgCowHouse2BgTex; -#endif - -#define dgCowHouse3BgTex "__OTR__textures/vr_LBVR_static/gCowHouse3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHouse3BgTex[] = dgCowHouse3BgTex; -#else -static const char gCowHouse3BgTex[] __attribute__((aligned (2))) = dgCowHouse3BgTex; -#endif - -#define dgCowHouse4BgTex "__OTR__textures/vr_LBVR_static/gCowHouse4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCowHouse4BgTex[] = dgCowHouse4BgTex; -#else -static const char gCowHouse4BgTex[] __attribute__((aligned (2))) = dgCowHouse4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgCowHouseBgTex "__OTR__textures/vr_LBVR_static/gCowHouseBgTex" +static const ALIGN_ASSET(2) char gCowHouseBgTex[] = dgCowHouseBgTex; + +#define dgCowHouse2BgTex "__OTR__textures/vr_LBVR_static/gCowHouse2BgTex" +static const ALIGN_ASSET(2) char gCowHouse2BgTex[] = dgCowHouse2BgTex; + +#define dgCowHouse3BgTex "__OTR__textures/vr_LBVR_static/gCowHouse3BgTex" +static const ALIGN_ASSET(2) char gCowHouse3BgTex[] = dgCowHouse3BgTex; + +#define dgCowHouse4BgTex "__OTR__textures/vr_LBVR_static/gCowHouse4BgTex" +static const ALIGN_ASSET(2) char gCowHouse4BgTex[] = dgCowHouse4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_LHVR_pal_static.h b/soh/assets/textures/backgrounds/vr_LHVR_pal_static.h index 6d81589b1..0e07a37b2 100644 --- a/soh/assets/textures/backgrounds/vr_LHVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_LHVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgLinksHouseBgTLUT "__OTR__textures/vr_LHVR_pal_static/gLinksHouseBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinksHouseBgTLUT[] = dgLinksHouseBgTLUT; -#else -static const char gLinksHouseBgTLUT[] __attribute__((aligned (2))) = dgLinksHouseBgTLUT; -#endif - -#define dgLinksHouseBg2TLUT "__OTR__textures/vr_LHVR_pal_static/gLinksHouseBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinksHouseBg2TLUT[] = dgLinksHouseBg2TLUT; -#else -static const char gLinksHouseBg2TLUT[] __attribute__((aligned (2))) = dgLinksHouseBg2TLUT; -#endif - -#define dgLinksHouseBg3TLUT "__OTR__textures/vr_LHVR_pal_static/gLinksHouseBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinksHouseBg3TLUT[] = dgLinksHouseBg3TLUT; -#else -static const char gLinksHouseBg3TLUT[] __attribute__((aligned (2))) = dgLinksHouseBg3TLUT; -#endif - -#define dgLinksHouseBg4TLUT "__OTR__textures/vr_LHVR_pal_static/gLinksHouseBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinksHouseBg4TLUT[] = dgLinksHouseBg4TLUT; -#else -static const char gLinksHouseBg4TLUT[] __attribute__((aligned (2))) = dgLinksHouseBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgLinksHouseBgTLUT "__OTR__textures/vr_LHVR_pal_static/gLinksHouseBgTLUT" +static const ALIGN_ASSET(2) char gLinksHouseBgTLUT[] = dgLinksHouseBgTLUT; + +#define dgLinksHouseBg2TLUT "__OTR__textures/vr_LHVR_pal_static/gLinksHouseBg2TLUT" +static const ALIGN_ASSET(2) char gLinksHouseBg2TLUT[] = dgLinksHouseBg2TLUT; + +#define dgLinksHouseBg3TLUT "__OTR__textures/vr_LHVR_pal_static/gLinksHouseBg3TLUT" +static const ALIGN_ASSET(2) char gLinksHouseBg3TLUT[] = dgLinksHouseBg3TLUT; + +#define dgLinksHouseBg4TLUT "__OTR__textures/vr_LHVR_pal_static/gLinksHouseBg4TLUT" +static const ALIGN_ASSET(2) char gLinksHouseBg4TLUT[] = dgLinksHouseBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_LHVR_static.h b/soh/assets/textures/backgrounds/vr_LHVR_static.h index fa2698f26..2f576fae2 100644 --- a/soh/assets/textures/backgrounds/vr_LHVR_static.h +++ b/soh/assets/textures/backgrounds/vr_LHVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgLinksHouseBgTex "__OTR__textures/vr_LHVR_static/gLinksHouseBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinksHouseBgTex[] = dgLinksHouseBgTex; -#else -static const char gLinksHouseBgTex[] __attribute__((aligned (2))) = dgLinksHouseBgTex; -#endif - -#define dgLinksHouse2BgTex "__OTR__textures/vr_LHVR_static/gLinksHouse2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinksHouse2BgTex[] = dgLinksHouse2BgTex; -#else -static const char gLinksHouse2BgTex[] __attribute__((aligned (2))) = dgLinksHouse2BgTex; -#endif - -#define dgLinksHouse3BgTex "__OTR__textures/vr_LHVR_static/gLinksHouse3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinksHouse3BgTex[] = dgLinksHouse3BgTex; -#else -static const char gLinksHouse3BgTex[] __attribute__((aligned (2))) = dgLinksHouse3BgTex; -#endif - -#define dgLinksHouse4BgTex "__OTR__textures/vr_LHVR_static/gLinksHouse4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLinksHouse4BgTex[] = dgLinksHouse4BgTex; -#else -static const char gLinksHouse4BgTex[] __attribute__((aligned (2))) = dgLinksHouse4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgLinksHouseBgTex "__OTR__textures/vr_LHVR_static/gLinksHouseBgTex" +static const ALIGN_ASSET(2) char gLinksHouseBgTex[] = dgLinksHouseBgTex; + +#define dgLinksHouse2BgTex "__OTR__textures/vr_LHVR_static/gLinksHouse2BgTex" +static const ALIGN_ASSET(2) char gLinksHouse2BgTex[] = dgLinksHouse2BgTex; + +#define dgLinksHouse3BgTex "__OTR__textures/vr_LHVR_static/gLinksHouse3BgTex" +static const ALIGN_ASSET(2) char gLinksHouse3BgTex[] = dgLinksHouse3BgTex; + +#define dgLinksHouse4BgTex "__OTR__textures/vr_LHVR_static/gLinksHouse4BgTex" +static const ALIGN_ASSET(2) char gLinksHouse4BgTex[] = dgLinksHouse4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_MDVR_pal_static.h b/soh/assets/textures/backgrounds/vr_MDVR_pal_static.h index 2fa9d1544..fa65a7bd8 100644 --- a/soh/assets/textures/backgrounds/vr_MDVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_MDVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgMarketDayBgTLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketDayBgTLUT[] = dgMarketDayBgTLUT; -#else -static const char gMarketDayBgTLUT[] __attribute__((aligned (2))) = dgMarketDayBgTLUT; -#endif - -#define dgMarketDayBg2TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketDayBg2TLUT[] = dgMarketDayBg2TLUT; -#else -static const char gMarketDayBg2TLUT[] __attribute__((aligned (2))) = dgMarketDayBg2TLUT; -#endif - -#define dgMarketDayBg3TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketDayBg3TLUT[] = dgMarketDayBg3TLUT; -#else -static const char gMarketDayBg3TLUT[] __attribute__((aligned (2))) = dgMarketDayBg3TLUT; -#endif - -#define dgMarketDayBg4TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketDayBg4TLUT[] = dgMarketDayBg4TLUT; -#else -static const char gMarketDayBg4TLUT[] __attribute__((aligned (2))) = dgMarketDayBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgMarketDayBgTLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBgTLUT" +static const ALIGN_ASSET(2) char gMarketDayBgTLUT[] = dgMarketDayBgTLUT; + +#define dgMarketDayBg2TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg2TLUT" +static const ALIGN_ASSET(2) char gMarketDayBg2TLUT[] = dgMarketDayBg2TLUT; + +#define dgMarketDayBg3TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg3TLUT" +static const ALIGN_ASSET(2) char gMarketDayBg3TLUT[] = dgMarketDayBg3TLUT; + +#define dgMarketDayBg4TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg4TLUT" +static const ALIGN_ASSET(2) char gMarketDayBg4TLUT[] = dgMarketDayBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_MDVR_static.h b/soh/assets/textures/backgrounds/vr_MDVR_static.h index 9a8642469..e8a5431ae 100644 --- a/soh/assets/textures/backgrounds/vr_MDVR_static.h +++ b/soh/assets/textures/backgrounds/vr_MDVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgMarketDayBgTex "__OTR__textures/vr_MDVR_static/gMarketDayBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketDayBgTex[] = dgMarketDayBgTex; -#else -static const char gMarketDayBgTex[] __attribute__((aligned (2))) = dgMarketDayBgTex; -#endif - -#define dgMarketDay2BgTex "__OTR__textures/vr_MDVR_static/gMarketDay2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketDay2BgTex[] = dgMarketDay2BgTex; -#else -static const char gMarketDay2BgTex[] __attribute__((aligned (2))) = dgMarketDay2BgTex; -#endif - -#define dgMarketDay3BgTex "__OTR__textures/vr_MDVR_static/gMarketDay3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketDay3BgTex[] = dgMarketDay3BgTex; -#else -static const char gMarketDay3BgTex[] __attribute__((aligned (2))) = dgMarketDay3BgTex; -#endif - -#define dgMarketDay4BgTex "__OTR__textures/vr_MDVR_static/gMarketDay4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketDay4BgTex[] = dgMarketDay4BgTex; -#else -static const char gMarketDay4BgTex[] __attribute__((aligned (2))) = dgMarketDay4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgMarketDayBgTex "__OTR__textures/vr_MDVR_static/gMarketDayBgTex" +static const ALIGN_ASSET(2) char gMarketDayBgTex[] = dgMarketDayBgTex; + +#define dgMarketDay2BgTex "__OTR__textures/vr_MDVR_static/gMarketDay2BgTex" +static const ALIGN_ASSET(2) char gMarketDay2BgTex[] = dgMarketDay2BgTex; + +#define dgMarketDay3BgTex "__OTR__textures/vr_MDVR_static/gMarketDay3BgTex" +static const ALIGN_ASSET(2) char gMarketDay3BgTex[] = dgMarketDay3BgTex; + +#define dgMarketDay4BgTex "__OTR__textures/vr_MDVR_static/gMarketDay4BgTex" +static const ALIGN_ASSET(2) char gMarketDay4BgTex[] = dgMarketDay4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_MLVR_pal_static.h b/soh/assets/textures/backgrounds/vr_MLVR_pal_static.h index 118a83e17..4a4d8a43e 100644 --- a/soh/assets/textures/backgrounds/vr_MLVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_MLVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgStableBgTLUT "__OTR__textures/vr_MLVR_pal_static/gStableBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gStableBgTLUT[] = dgStableBgTLUT; -#else -static const char gStableBgTLUT[] __attribute__((aligned (2))) = dgStableBgTLUT; -#endif - -#define dgStableBg2TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gStableBg2TLUT[] = dgStableBg2TLUT; -#else -static const char gStableBg2TLUT[] __attribute__((aligned (2))) = dgStableBg2TLUT; -#endif - -#define dgStableBg3TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gStableBg3TLUT[] = dgStableBg3TLUT; -#else -static const char gStableBg3TLUT[] __attribute__((aligned (2))) = dgStableBg3TLUT; -#endif - -#define dgStableBg4TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gStableBg4TLUT[] = dgStableBg4TLUT; -#else -static const char gStableBg4TLUT[] __attribute__((aligned (2))) = dgStableBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgStableBgTLUT "__OTR__textures/vr_MLVR_pal_static/gStableBgTLUT" +static const ALIGN_ASSET(2) char gStableBgTLUT[] = dgStableBgTLUT; + +#define dgStableBg2TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg2TLUT" +static const ALIGN_ASSET(2) char gStableBg2TLUT[] = dgStableBg2TLUT; + +#define dgStableBg3TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg3TLUT" +static const ALIGN_ASSET(2) char gStableBg3TLUT[] = dgStableBg3TLUT; + +#define dgStableBg4TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg4TLUT" +static const ALIGN_ASSET(2) char gStableBg4TLUT[] = dgStableBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_MLVR_static.h b/soh/assets/textures/backgrounds/vr_MLVR_static.h index ac02c3813..2e401c749 100644 --- a/soh/assets/textures/backgrounds/vr_MLVR_static.h +++ b/soh/assets/textures/backgrounds/vr_MLVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgStableBgTex "__OTR__textures/vr_MLVR_static/gStableBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStableBgTex[] = dgStableBgTex; -#else -static const char gStableBgTex[] __attribute__((aligned (2))) = dgStableBgTex; -#endif - -#define dgStable2BgTex "__OTR__textures/vr_MLVR_static/gStable2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStable2BgTex[] = dgStable2BgTex; -#else -static const char gStable2BgTex[] __attribute__((aligned (2))) = dgStable2BgTex; -#endif - -#define dgStable3BgTex "__OTR__textures/vr_MLVR_static/gStable3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStable3BgTex[] = dgStable3BgTex; -#else -static const char gStable3BgTex[] __attribute__((aligned (2))) = dgStable3BgTex; -#endif - -#define dgStable4BgTex "__OTR__textures/vr_MLVR_static/gStable4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStable4BgTex[] = dgStable4BgTex; -#else -static const char gStable4BgTex[] __attribute__((aligned (2))) = dgStable4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgStableBgTex "__OTR__textures/vr_MLVR_static/gStableBgTex" +static const ALIGN_ASSET(2) char gStableBgTex[] = dgStableBgTex; + +#define dgStable2BgTex "__OTR__textures/vr_MLVR_static/gStable2BgTex" +static const ALIGN_ASSET(2) char gStable2BgTex[] = dgStable2BgTex; + +#define dgStable3BgTex "__OTR__textures/vr_MLVR_static/gStable3BgTex" +static const ALIGN_ASSET(2) char gStable3BgTex[] = dgStable3BgTex; + +#define dgStable4BgTex "__OTR__textures/vr_MLVR_static/gStable4BgTex" +static const ALIGN_ASSET(2) char gStable4BgTex[] = dgStable4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_MNVR_pal_static.h b/soh/assets/textures/backgrounds/vr_MNVR_pal_static.h index ba9d82135..297b5fa35 100644 --- a/soh/assets/textures/backgrounds/vr_MNVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_MNVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgMarketNightBgTLUT "__OTR__textures/vr_MNVR_pal_static/gMarketNightBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketNightBgTLUT[] = dgMarketNightBgTLUT; -#else -static const char gMarketNightBgTLUT[] __attribute__((aligned (2))) = dgMarketNightBgTLUT; -#endif - -#define dgMarketNightBg2TLUT "__OTR__textures/vr_MNVR_pal_static/gMarketNightBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketNightBg2TLUT[] = dgMarketNightBg2TLUT; -#else -static const char gMarketNightBg2TLUT[] __attribute__((aligned (2))) = dgMarketNightBg2TLUT; -#endif - -#define dgMarketNightBg3TLUT "__OTR__textures/vr_MNVR_pal_static/gMarketNightBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketNightBg3TLUT[] = dgMarketNightBg3TLUT; -#else -static const char gMarketNightBg3TLUT[] __attribute__((aligned (2))) = dgMarketNightBg3TLUT; -#endif - -#define dgMarketNightBg4TLUT "__OTR__textures/vr_MNVR_pal_static/gMarketNightBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketNightBg4TLUT[] = dgMarketNightBg4TLUT; -#else -static const char gMarketNightBg4TLUT[] __attribute__((aligned (2))) = dgMarketNightBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgMarketNightBgTLUT "__OTR__textures/vr_MNVR_pal_static/gMarketNightBgTLUT" +static const ALIGN_ASSET(2) char gMarketNightBgTLUT[] = dgMarketNightBgTLUT; + +#define dgMarketNightBg2TLUT "__OTR__textures/vr_MNVR_pal_static/gMarketNightBg2TLUT" +static const ALIGN_ASSET(2) char gMarketNightBg2TLUT[] = dgMarketNightBg2TLUT; + +#define dgMarketNightBg3TLUT "__OTR__textures/vr_MNVR_pal_static/gMarketNightBg3TLUT" +static const ALIGN_ASSET(2) char gMarketNightBg3TLUT[] = dgMarketNightBg3TLUT; + +#define dgMarketNightBg4TLUT "__OTR__textures/vr_MNVR_pal_static/gMarketNightBg4TLUT" +static const ALIGN_ASSET(2) char gMarketNightBg4TLUT[] = dgMarketNightBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_MNVR_static.h b/soh/assets/textures/backgrounds/vr_MNVR_static.h index a908cec5a..aabf8345c 100644 --- a/soh/assets/textures/backgrounds/vr_MNVR_static.h +++ b/soh/assets/textures/backgrounds/vr_MNVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgMarketNightBgTex "__OTR__textures/vr_MNVR_static/gMarketNightBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketNightBgTex[] = dgMarketNightBgTex; -#else -static const char gMarketNightBgTex[] __attribute__((aligned (2))) = dgMarketNightBgTex; -#endif - -#define dgMarketNight2BgTex "__OTR__textures/vr_MNVR_static/gMarketNight2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketNight2BgTex[] = dgMarketNight2BgTex; -#else -static const char gMarketNight2BgTex[] __attribute__((aligned (2))) = dgMarketNight2BgTex; -#endif - -#define dgMarketNight3BgTex "__OTR__textures/vr_MNVR_static/gMarketNight3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketNight3BgTex[] = dgMarketNight3BgTex; -#else -static const char gMarketNight3BgTex[] __attribute__((aligned (2))) = dgMarketNight3BgTex; -#endif - -#define dgMarketNight4BgTex "__OTR__textures/vr_MNVR_static/gMarketNight4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketNight4BgTex[] = dgMarketNight4BgTex; -#else -static const char gMarketNight4BgTex[] __attribute__((aligned (2))) = dgMarketNight4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgMarketNightBgTex "__OTR__textures/vr_MNVR_static/gMarketNightBgTex" +static const ALIGN_ASSET(2) char gMarketNightBgTex[] = dgMarketNightBgTex; + +#define dgMarketNight2BgTex "__OTR__textures/vr_MNVR_static/gMarketNight2BgTex" +static const ALIGN_ASSET(2) char gMarketNight2BgTex[] = dgMarketNight2BgTex; + +#define dgMarketNight3BgTex "__OTR__textures/vr_MNVR_static/gMarketNight3BgTex" +static const ALIGN_ASSET(2) char gMarketNight3BgTex[] = dgMarketNight3BgTex; + +#define dgMarketNight4BgTex "__OTR__textures/vr_MNVR_static/gMarketNight4BgTex" +static const ALIGN_ASSET(2) char gMarketNight4BgTex[] = dgMarketNight4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_NSVR_pal_static.h b/soh/assets/textures/backgrounds/vr_NSVR_pal_static.h index 2413e5718..ba9217949 100644 --- a/soh/assets/textures/backgrounds/vr_NSVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_NSVR_pal_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgBombchuShopBgTLUT "__OTR__textures/vr_NSVR_pal_static/gBombchuShopBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopBgTLUT[] = dgBombchuShopBgTLUT; -#else -static const char gBombchuShopBgTLUT[] __attribute__((aligned (2))) = dgBombchuShopBgTLUT; -#endif - -#define dgBombchuShopBg2TLUT "__OTR__textures/vr_NSVR_pal_static/gBombchuShopBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopBg2TLUT[] = dgBombchuShopBg2TLUT; -#else -static const char gBombchuShopBg2TLUT[] __attribute__((aligned (2))) = dgBombchuShopBg2TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgBombchuShopBgTLUT "__OTR__textures/vr_NSVR_pal_static/gBombchuShopBgTLUT" +static const ALIGN_ASSET(2) char gBombchuShopBgTLUT[] = dgBombchuShopBgTLUT; + +#define dgBombchuShopBg2TLUT "__OTR__textures/vr_NSVR_pal_static/gBombchuShopBg2TLUT" +static const ALIGN_ASSET(2) char gBombchuShopBg2TLUT[] = dgBombchuShopBg2TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_NSVR_static.h b/soh/assets/textures/backgrounds/vr_NSVR_static.h index 08b2f2e1a..601ba7660 100644 --- a/soh/assets/textures/backgrounds/vr_NSVR_static.h +++ b/soh/assets/textures/backgrounds/vr_NSVR_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgBombchuShopBgTex "__OTR__textures/vr_NSVR_static/gBombchuShopBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopBgTex[] = dgBombchuShopBgTex; -#else -static const char gBombchuShopBgTex[] __attribute__((aligned (2))) = dgBombchuShopBgTex; -#endif - -#define dgBombchuShop2BgTex "__OTR__textures/vr_NSVR_static/gBombchuShop2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShop2BgTex[] = dgBombchuShop2BgTex; -#else -static const char gBombchuShop2BgTex[] __attribute__((aligned (2))) = dgBombchuShop2BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgBombchuShopBgTex "__OTR__textures/vr_NSVR_static/gBombchuShopBgTex" +static const ALIGN_ASSET(2) char gBombchuShopBgTex[] = dgBombchuShopBgTex; + +#define dgBombchuShop2BgTex "__OTR__textures/vr_NSVR_static/gBombchuShop2BgTex" +static const ALIGN_ASSET(2) char gBombchuShop2BgTex[] = dgBombchuShop2BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_RUVR_pal_static.h b/soh/assets/textures/backgrounds/vr_RUVR_pal_static.h index cecb5c1e5..a989bbbb7 100644 --- a/soh/assets/textures/backgrounds/vr_RUVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_RUVR_pal_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgMarketRuinsBgTLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketRuinsBgTLUT[] = dgMarketRuinsBgTLUT; -#else -static const char gMarketRuinsBgTLUT[] __attribute__((aligned (2))) = dgMarketRuinsBgTLUT; -#endif - -#define dgMarketRuinsBg2TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketRuinsBg2TLUT[] = dgMarketRuinsBg2TLUT; -#else -static const char gMarketRuinsBg2TLUT[] __attribute__((aligned (2))) = dgMarketRuinsBg2TLUT; -#endif - -#define dgMarketRuinsBg3TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketRuinsBg3TLUT[] = dgMarketRuinsBg3TLUT; -#else -static const char gMarketRuinsBg3TLUT[] __attribute__((aligned (2))) = dgMarketRuinsBg3TLUT; -#endif - -#define dgMarketRuinsBg4TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg4TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketRuinsBg4TLUT[] = dgMarketRuinsBg4TLUT; -#else -static const char gMarketRuinsBg4TLUT[] __attribute__((aligned (2))) = dgMarketRuinsBg4TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgMarketRuinsBgTLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBgTLUT" +static const ALIGN_ASSET(2) char gMarketRuinsBgTLUT[] = dgMarketRuinsBgTLUT; + +#define dgMarketRuinsBg2TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg2TLUT" +static const ALIGN_ASSET(2) char gMarketRuinsBg2TLUT[] = dgMarketRuinsBg2TLUT; + +#define dgMarketRuinsBg3TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg3TLUT" +static const ALIGN_ASSET(2) char gMarketRuinsBg3TLUT[] = dgMarketRuinsBg3TLUT; + +#define dgMarketRuinsBg4TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg4TLUT" +static const ALIGN_ASSET(2) char gMarketRuinsBg4TLUT[] = dgMarketRuinsBg4TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_RUVR_static.h b/soh/assets/textures/backgrounds/vr_RUVR_static.h index b330de873..349f39eab 100644 --- a/soh/assets/textures/backgrounds/vr_RUVR_static.h +++ b/soh/assets/textures/backgrounds/vr_RUVR_static.h @@ -1,30 +1,15 @@ #pragma once -#define dgMarketRuinsBgTex "__OTR__textures/vr_RUVR_static/gMarketRuinsBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketRuinsBgTex[] = dgMarketRuinsBgTex; -#else -static const char gMarketRuinsBgTex[] __attribute__((aligned (2))) = dgMarketRuinsBgTex; -#endif - -#define dgMarketRuins2BgTex "__OTR__textures/vr_RUVR_static/gMarketRuins2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketRuins2BgTex[] = dgMarketRuins2BgTex; -#else -static const char gMarketRuins2BgTex[] __attribute__((aligned (2))) = dgMarketRuins2BgTex; -#endif - -#define dgMarketRuins3BgTex "__OTR__textures/vr_RUVR_static/gMarketRuins3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketRuins3BgTex[] = dgMarketRuins3BgTex; -#else -static const char gMarketRuins3BgTex[] __attribute__((aligned (2))) = dgMarketRuins3BgTex; -#endif - -#define dgMarketRuins4BgTex "__OTR__textures/vr_RUVR_static/gMarketRuins4BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketRuins4BgTex[] = dgMarketRuins4BgTex; -#else -static const char gMarketRuins4BgTex[] __attribute__((aligned (2))) = dgMarketRuins4BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgMarketRuinsBgTex "__OTR__textures/vr_RUVR_static/gMarketRuinsBgTex" +static const ALIGN_ASSET(2) char gMarketRuinsBgTex[] = dgMarketRuinsBgTex; + +#define dgMarketRuins2BgTex "__OTR__textures/vr_RUVR_static/gMarketRuins2BgTex" +static const ALIGN_ASSET(2) char gMarketRuins2BgTex[] = dgMarketRuins2BgTex; + +#define dgMarketRuins3BgTex "__OTR__textures/vr_RUVR_static/gMarketRuins3BgTex" +static const ALIGN_ASSET(2) char gMarketRuins3BgTex[] = dgMarketRuins3BgTex; + +#define dgMarketRuins4BgTex "__OTR__textures/vr_RUVR_static/gMarketRuins4BgTex" +static const ALIGN_ASSET(2) char gMarketRuins4BgTex[] = dgMarketRuins4BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_SP1a_pal_static.h b/soh/assets/textures/backgrounds/vr_SP1a_pal_static.h index c964e3f13..6ea699a61 100644 --- a/soh/assets/textures/backgrounds/vr_SP1a_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_SP1a_pal_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgBazaarBgTLUT "__OTR__textures/vr_SP1a_pal_static/gBazaarBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBazaarBgTLUT[] = dgBazaarBgTLUT; -#else -static const char gBazaarBgTLUT[] __attribute__((aligned (2))) = dgBazaarBgTLUT; -#endif - -#define dgBazaarBg2TLUT "__OTR__textures/vr_SP1a_pal_static/gBazaarBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gBazaarBg2TLUT[] = dgBazaarBg2TLUT; -#else -static const char gBazaarBg2TLUT[] __attribute__((aligned (2))) = dgBazaarBg2TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgBazaarBgTLUT "__OTR__textures/vr_SP1a_pal_static/gBazaarBgTLUT" +static const ALIGN_ASSET(2) char gBazaarBgTLUT[] = dgBazaarBgTLUT; + +#define dgBazaarBg2TLUT "__OTR__textures/vr_SP1a_pal_static/gBazaarBg2TLUT" +static const ALIGN_ASSET(2) char gBazaarBg2TLUT[] = dgBazaarBg2TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_SP1a_static.h b/soh/assets/textures/backgrounds/vr_SP1a_static.h index bb33d6c0c..0906d39d3 100644 --- a/soh/assets/textures/backgrounds/vr_SP1a_static.h +++ b/soh/assets/textures/backgrounds/vr_SP1a_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgBazaarBgTex "__OTR__textures/vr_SP1a_static/gBazaarBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBazaarBgTex[] = dgBazaarBgTex; -#else -static const char gBazaarBgTex[] __attribute__((aligned (2))) = dgBazaarBgTex; -#endif - -#define dgBazaar2BgTex "__OTR__textures/vr_SP1a_static/gBazaar2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBazaar2BgTex[] = dgBazaar2BgTex; -#else -static const char gBazaar2BgTex[] __attribute__((aligned (2))) = dgBazaar2BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgBazaarBgTex "__OTR__textures/vr_SP1a_static/gBazaarBgTex" +static const ALIGN_ASSET(2) char gBazaarBgTex[] = dgBazaarBgTex; + +#define dgBazaar2BgTex "__OTR__textures/vr_SP1a_static/gBazaar2BgTex" +static const ALIGN_ASSET(2) char gBazaar2BgTex[] = dgBazaar2BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_TTVR_pal_static.h b/soh/assets/textures/backgrounds/vr_TTVR_pal_static.h index 87d48e4cf..91526ccf3 100644 --- a/soh/assets/textures/backgrounds/vr_TTVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_TTVR_pal_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgCarpentersTentBgTLUT "__OTR__textures/vr_TTVR_pal_static/gCarpentersTentBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersTentBgTLUT[] = dgCarpentersTentBgTLUT; -#else -static const char gCarpentersTentBgTLUT[] __attribute__((aligned (2))) = dgCarpentersTentBgTLUT; -#endif - -#define dgCarpentersTentBg2TLUT "__OTR__textures/vr_TTVR_pal_static/gCarpentersTentBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersTentBg2TLUT[] = dgCarpentersTentBg2TLUT; -#else -static const char gCarpentersTentBg2TLUT[] __attribute__((aligned (2))) = dgCarpentersTentBg2TLUT; -#endif - -#define dgCarpentersTentBg3TLUT "__OTR__textures/vr_TTVR_pal_static/gCarpentersTentBg3TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersTentBg3TLUT[] = dgCarpentersTentBg3TLUT; -#else -static const char gCarpentersTentBg3TLUT[] __attribute__((aligned (2))) = dgCarpentersTentBg3TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgCarpentersTentBgTLUT "__OTR__textures/vr_TTVR_pal_static/gCarpentersTentBgTLUT" +static const ALIGN_ASSET(2) char gCarpentersTentBgTLUT[] = dgCarpentersTentBgTLUT; + +#define dgCarpentersTentBg2TLUT "__OTR__textures/vr_TTVR_pal_static/gCarpentersTentBg2TLUT" +static const ALIGN_ASSET(2) char gCarpentersTentBg2TLUT[] = dgCarpentersTentBg2TLUT; + +#define dgCarpentersTentBg3TLUT "__OTR__textures/vr_TTVR_pal_static/gCarpentersTentBg3TLUT" +static const ALIGN_ASSET(2) char gCarpentersTentBg3TLUT[] = dgCarpentersTentBg3TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_TTVR_static.h b/soh/assets/textures/backgrounds/vr_TTVR_static.h index 048d27c49..50a90e814 100644 --- a/soh/assets/textures/backgrounds/vr_TTVR_static.h +++ b/soh/assets/textures/backgrounds/vr_TTVR_static.h @@ -1,23 +1,12 @@ #pragma once -#define dgCarpentersTentBgTex "__OTR__textures/vr_TTVR_static/gCarpentersTentBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersTentBgTex[] = dgCarpentersTentBgTex; -#else -static const char gCarpentersTentBgTex[] __attribute__((aligned (2))) = dgCarpentersTentBgTex; -#endif - -#define dgCarpentersTent2BgTex "__OTR__textures/vr_TTVR_static/gCarpentersTent2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersTent2BgTex[] = dgCarpentersTent2BgTex; -#else -static const char gCarpentersTent2BgTex[] __attribute__((aligned (2))) = dgCarpentersTent2BgTex; -#endif - -#define dgCarpentersTent3BgTex "__OTR__textures/vr_TTVR_static/gCarpentersTent3BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarpentersTent3BgTex[] = dgCarpentersTent3BgTex; -#else -static const char gCarpentersTent3BgTex[] __attribute__((aligned (2))) = dgCarpentersTent3BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgCarpentersTentBgTex "__OTR__textures/vr_TTVR_static/gCarpentersTentBgTex" +static const ALIGN_ASSET(2) char gCarpentersTentBgTex[] = dgCarpentersTentBgTex; + +#define dgCarpentersTent2BgTex "__OTR__textures/vr_TTVR_static/gCarpentersTent2BgTex" +static const ALIGN_ASSET(2) char gCarpentersTent2BgTex[] = dgCarpentersTent2BgTex; + +#define dgCarpentersTent3BgTex "__OTR__textures/vr_TTVR_static/gCarpentersTent3BgTex" +static const ALIGN_ASSET(2) char gCarpentersTent3BgTex[] = dgCarpentersTent3BgTex; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_ZRVR_pal_static.h b/soh/assets/textures/backgrounds/vr_ZRVR_pal_static.h index 1acf535db..97eace20a 100644 --- a/soh/assets/textures/backgrounds/vr_ZRVR_pal_static.h +++ b/soh/assets/textures/backgrounds/vr_ZRVR_pal_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgZoraShopBgTLUT "__OTR__textures/vr_ZRVR_pal_static/gZoraShopBgTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraShopBgTLUT[] = dgZoraShopBgTLUT; -#else -static const char gZoraShopBgTLUT[] __attribute__((aligned (2))) = dgZoraShopBgTLUT; -#endif - -#define dgZoraShopBg2TLUT "__OTR__textures/vr_ZRVR_pal_static/gZoraShopBg2TLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraShopBg2TLUT[] = dgZoraShopBg2TLUT; -#else -static const char gZoraShopBg2TLUT[] __attribute__((aligned (2))) = dgZoraShopBg2TLUT; -#endif - +#include "align_asset_macro.h" + +#define dgZoraShopBgTLUT "__OTR__textures/vr_ZRVR_pal_static/gZoraShopBgTLUT" +static const ALIGN_ASSET(2) char gZoraShopBgTLUT[] = dgZoraShopBgTLUT; + +#define dgZoraShopBg2TLUT "__OTR__textures/vr_ZRVR_pal_static/gZoraShopBg2TLUT" +static const ALIGN_ASSET(2) char gZoraShopBg2TLUT[] = dgZoraShopBg2TLUT; \ No newline at end of file diff --git a/soh/assets/textures/backgrounds/vr_ZRVR_static.h b/soh/assets/textures/backgrounds/vr_ZRVR_static.h index 36894dc31..2c57f9ab4 100644 --- a/soh/assets/textures/backgrounds/vr_ZRVR_static.h +++ b/soh/assets/textures/backgrounds/vr_ZRVR_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgZoraShopBgTex "__OTR__textures/vr_ZRVR_static/gZoraShopBgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraShopBgTex[] = dgZoraShopBgTex; -#else -static const char gZoraShopBgTex[] __attribute__((aligned (2))) = dgZoraShopBgTex; -#endif - -#define dgZoraShop2BgTex "__OTR__textures/vr_ZRVR_static/gZoraShop2BgTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraShop2BgTex[] = dgZoraShop2BgTex; -#else -static const char gZoraShop2BgTex[] __attribute__((aligned (2))) = dgZoraShop2BgTex; -#endif - +#include "align_asset_macro.h" + +#define dgZoraShopBgTex "__OTR__textures/vr_ZRVR_static/gZoraShopBgTex" +static const ALIGN_ASSET(2) char gZoraShopBgTex[] = dgZoraShopBgTex; + +#define dgZoraShop2BgTex "__OTR__textures/vr_ZRVR_static/gZoraShop2BgTex" +static const ALIGN_ASSET(2) char gZoraShop2BgTex[] = dgZoraShop2BgTex; \ No newline at end of file diff --git a/soh/assets/textures/do_action_static/do_action_static.h b/soh/assets/textures/do_action_static/do_action_static.h index c7c831de8..49b9b3ca9 100644 --- a/soh/assets/textures/do_action_static/do_action_static.h +++ b/soh/assets/textures/do_action_static/do_action_static.h @@ -1,611 +1,264 @@ #pragma once -#define dgAttackDoActionENGTex "__OTR__textures/do_action_static/gAttackDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAttackDoActionENGTex[] = dgAttackDoActionENGTex; -#else -static const char gAttackDoActionENGTex[] __attribute__((aligned (2))) = dgAttackDoActionENGTex; -#endif - -#define dgCheckDoActionENGTex "__OTR__textures/do_action_static/gCheckDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCheckDoActionENGTex[] = dgCheckDoActionENGTex; -#else -static const char gCheckDoActionENGTex[] __attribute__((aligned (2))) = dgCheckDoActionENGTex; -#endif - -#define dgEnterDoActionENGTex "__OTR__textures/do_action_static/gEnterDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnterDoActionENGTex[] = dgEnterDoActionENGTex; -#else -static const char gEnterDoActionENGTex[] __attribute__((aligned (2))) = dgEnterDoActionENGTex; -#endif - -#define dgReturnDoActionENGTex "__OTR__textures/do_action_static/gReturnDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gReturnDoActionENGTex[] = dgReturnDoActionENGTex; -#else -static const char gReturnDoActionENGTex[] __attribute__((aligned (2))) = dgReturnDoActionENGTex; -#endif - -#define dgOpenDoActionENGTex "__OTR__textures/do_action_static/gOpenDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOpenDoActionENGTex[] = dgOpenDoActionENGTex; -#else -static const char gOpenDoActionENGTex[] __attribute__((aligned (2))) = dgOpenDoActionENGTex; -#endif - -#define dgJumpDoActionENGTex "__OTR__textures/do_action_static/gJumpDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJumpDoActionENGTex[] = dgJumpDoActionENGTex; -#else -static const char gJumpDoActionENGTex[] __attribute__((aligned (2))) = dgJumpDoActionENGTex; -#endif - -#define dgDecideDoActionENGTex "__OTR__textures/do_action_static/gDecideDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDecideDoActionENGTex[] = dgDecideDoActionENGTex; -#else -static const char gDecideDoActionENGTex[] __attribute__((aligned (2))) = dgDecideDoActionENGTex; -#endif - -#define dgDiveDoActionENGTex "__OTR__textures/do_action_static/gDiveDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDiveDoActionENGTex[] = dgDiveDoActionENGTex; -#else -static const char gDiveDoActionENGTex[] __attribute__((aligned (2))) = dgDiveDoActionENGTex; -#endif - -#define dgFasterDoActionENGTex "__OTR__textures/do_action_static/gFasterDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFasterDoActionENGTex[] = dgFasterDoActionENGTex; -#else -static const char gFasterDoActionENGTex[] __attribute__((aligned (2))) = dgFasterDoActionENGTex; -#endif - -#define dgThrowDoActionENGTex "__OTR__textures/do_action_static/gThrowDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gThrowDoActionENGTex[] = dgThrowDoActionENGTex; -#else -static const char gThrowDoActionENGTex[] __attribute__((aligned (2))) = dgThrowDoActionENGTex; -#endif - -#define dgUnusedNaviDoActionENGTex "__OTR__textures/do_action_static/gUnusedNaviDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedNaviDoActionENGTex[] = dgUnusedNaviDoActionENGTex; -#else -static const char gUnusedNaviDoActionENGTex[] __attribute__((aligned (2))) = dgUnusedNaviDoActionENGTex; -#endif - -#define dgClimbDoActionENGTex "__OTR__textures/do_action_static/gClimbDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gClimbDoActionENGTex[] = dgClimbDoActionENGTex; -#else -static const char gClimbDoActionENGTex[] __attribute__((aligned (2))) = dgClimbDoActionENGTex; -#endif - -#define dgDropDoActionENGTex "__OTR__textures/do_action_static/gDropDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropDoActionENGTex[] = dgDropDoActionENGTex; -#else -static const char gDropDoActionENGTex[] __attribute__((aligned (2))) = dgDropDoActionENGTex; -#endif - -#define dgDownDoActionENGTex "__OTR__textures/do_action_static/gDownDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDownDoActionENGTex[] = dgDownDoActionENGTex; -#else -static const char gDownDoActionENGTex[] __attribute__((aligned (2))) = dgDownDoActionENGTex; -#endif - -#define dgSaveDoActionENGTex "__OTR__textures/do_action_static/gSaveDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSaveDoActionENGTex[] = dgSaveDoActionENGTex; -#else -static const char gSaveDoActionENGTex[] __attribute__((aligned (2))) = dgSaveDoActionENGTex; -#endif - -#define dgSpeakDoActionENGTex "__OTR__textures/do_action_static/gSpeakDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpeakDoActionENGTex[] = dgSpeakDoActionENGTex; -#else -static const char gSpeakDoActionENGTex[] __attribute__((aligned (2))) = dgSpeakDoActionENGTex; -#endif - -#define dgNextDoActionENGTex "__OTR__textures/do_action_static/gNextDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNextDoActionENGTex[] = dgNextDoActionENGTex; -#else -static const char gNextDoActionENGTex[] __attribute__((aligned (2))) = dgNextDoActionENGTex; -#endif - -#define dgGrabDoActionENGTex "__OTR__textures/do_action_static/gGrabDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGrabDoActionENGTex[] = dgGrabDoActionENGTex; -#else -static const char gGrabDoActionENGTex[] __attribute__((aligned (2))) = dgGrabDoActionENGTex; -#endif - -#define dgStopDoActionENGTex "__OTR__textures/do_action_static/gStopDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStopDoActionENGTex[] = dgStopDoActionENGTex; -#else -static const char gStopDoActionENGTex[] __attribute__((aligned (2))) = dgStopDoActionENGTex; -#endif - -#define dgPutAwayDoActionENGTex "__OTR__textures/do_action_static/gPutAwayDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPutAwayDoActionENGTex[] = dgPutAwayDoActionENGTex; -#else -static const char gPutAwayDoActionENGTex[] __attribute__((aligned (2))) = dgPutAwayDoActionENGTex; -#endif - -#define dgReelDoActionENGTex "__OTR__textures/do_action_static/gReelDoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gReelDoActionENGTex[] = dgReelDoActionENGTex; -#else -static const char gReelDoActionENGTex[] __attribute__((aligned (2))) = dgReelDoActionENGTex; -#endif - -#define dgNum1DoActionENGTex "__OTR__textures/do_action_static/gNum1DoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum1DoActionENGTex[] = dgNum1DoActionENGTex; -#else -static const char gNum1DoActionENGTex[] __attribute__((aligned (2))) = dgNum1DoActionENGTex; -#endif - -#define dgNum2DoActionENGTex "__OTR__textures/do_action_static/gNum2DoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum2DoActionENGTex[] = dgNum2DoActionENGTex; -#else -static const char gNum2DoActionENGTex[] __attribute__((aligned (2))) = dgNum2DoActionENGTex; -#endif - -#define dgNum3DoActionENGTex "__OTR__textures/do_action_static/gNum3DoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum3DoActionENGTex[] = dgNum3DoActionENGTex; -#else -static const char gNum3DoActionENGTex[] __attribute__((aligned (2))) = dgNum3DoActionENGTex; -#endif - -#define dgNum4DoActionENGTex "__OTR__textures/do_action_static/gNum4DoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum4DoActionENGTex[] = dgNum4DoActionENGTex; -#else -static const char gNum4DoActionENGTex[] __attribute__((aligned (2))) = dgNum4DoActionENGTex; -#endif - -#define dgNum5DoActionENGTex "__OTR__textures/do_action_static/gNum5DoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum5DoActionENGTex[] = dgNum5DoActionENGTex; -#else -static const char gNum5DoActionENGTex[] __attribute__((aligned (2))) = dgNum5DoActionENGTex; -#endif - -#define dgNum6DoActionENGTex "__OTR__textures/do_action_static/gNum6DoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum6DoActionENGTex[] = dgNum6DoActionENGTex; -#else -static const char gNum6DoActionENGTex[] __attribute__((aligned (2))) = dgNum6DoActionENGTex; -#endif - -#define dgNum7DoActionENGTex "__OTR__textures/do_action_static/gNum7DoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum7DoActionENGTex[] = dgNum7DoActionENGTex; -#else -static const char gNum7DoActionENGTex[] __attribute__((aligned (2))) = dgNum7DoActionENGTex; -#endif - -#define dgNum8DoActionENGTex "__OTR__textures/do_action_static/gNum8DoActionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum8DoActionENGTex[] = dgNum8DoActionENGTex; -#else -static const char gNum8DoActionENGTex[] __attribute__((aligned (2))) = dgNum8DoActionENGTex; -#endif - -#define dgAttackDoActionGERTex "__OTR__textures/do_action_static/gAttackDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAttackDoActionGERTex[] = dgAttackDoActionGERTex; -#else -static const char gAttackDoActionGERTex[] __attribute__((aligned (2))) = dgAttackDoActionGERTex; -#endif - -#define dgCheckDoActionGERTex "__OTR__textures/do_action_static/gCheckDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCheckDoActionGERTex[] = dgCheckDoActionGERTex; -#else -static const char gCheckDoActionGERTex[] __attribute__((aligned (2))) = dgCheckDoActionGERTex; -#endif - -#define dgEnterDoActionGERTex "__OTR__textures/do_action_static/gEnterDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnterDoActionGERTex[] = dgEnterDoActionGERTex; -#else -static const char gEnterDoActionGERTex[] __attribute__((aligned (2))) = dgEnterDoActionGERTex; -#endif - -#define dgReturnDoActionGERTex "__OTR__textures/do_action_static/gReturnDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gReturnDoActionGERTex[] = dgReturnDoActionGERTex; -#else -static const char gReturnDoActionGERTex[] __attribute__((aligned (2))) = dgReturnDoActionGERTex; -#endif - -#define dgOpenDoActionGERTex "__OTR__textures/do_action_static/gOpenDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOpenDoActionGERTex[] = dgOpenDoActionGERTex; -#else -static const char gOpenDoActionGERTex[] __attribute__((aligned (2))) = dgOpenDoActionGERTex; -#endif - -#define dgJumpDoActionGERTex "__OTR__textures/do_action_static/gJumpDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJumpDoActionGERTex[] = dgJumpDoActionGERTex; -#else -static const char gJumpDoActionGERTex[] __attribute__((aligned (2))) = dgJumpDoActionGERTex; -#endif - -#define dgDecideDoActionGERTex "__OTR__textures/do_action_static/gDecideDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDecideDoActionGERTex[] = dgDecideDoActionGERTex; -#else -static const char gDecideDoActionGERTex[] __attribute__((aligned (2))) = dgDecideDoActionGERTex; -#endif - -#define dgDiveDoActionGERTex "__OTR__textures/do_action_static/gDiveDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDiveDoActionGERTex[] = dgDiveDoActionGERTex; -#else -static const char gDiveDoActionGERTex[] __attribute__((aligned (2))) = dgDiveDoActionGERTex; -#endif - -#define dgFasterDoActionGERTex "__OTR__textures/do_action_static/gFasterDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFasterDoActionGERTex[] = dgFasterDoActionGERTex; -#else -static const char gFasterDoActionGERTex[] __attribute__((aligned (2))) = dgFasterDoActionGERTex; -#endif - -#define dgThrowDoActionGERTex "__OTR__textures/do_action_static/gThrowDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gThrowDoActionGERTex[] = dgThrowDoActionGERTex; -#else -static const char gThrowDoActionGERTex[] __attribute__((aligned (2))) = dgThrowDoActionGERTex; -#endif - -#define dgUnusedNaviDoActionGERTex "__OTR__textures/do_action_static/gUnusedNaviDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedNaviDoActionGERTex[] = dgUnusedNaviDoActionGERTex; -#else -static const char gUnusedNaviDoActionGERTex[] __attribute__((aligned (2))) = dgUnusedNaviDoActionGERTex; -#endif - -#define dgClimbDoActionGERTex "__OTR__textures/do_action_static/gClimbDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gClimbDoActionGERTex[] = dgClimbDoActionGERTex; -#else -static const char gClimbDoActionGERTex[] __attribute__((aligned (2))) = dgClimbDoActionGERTex; -#endif - -#define dgDropDoActionGERTex "__OTR__textures/do_action_static/gDropDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropDoActionGERTex[] = dgDropDoActionGERTex; -#else -static const char gDropDoActionGERTex[] __attribute__((aligned (2))) = dgDropDoActionGERTex; -#endif - -#define dgDownDoActionGERTex "__OTR__textures/do_action_static/gDownDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDownDoActionGERTex[] = dgDownDoActionGERTex; -#else -static const char gDownDoActionGERTex[] __attribute__((aligned (2))) = dgDownDoActionGERTex; -#endif - -#define dgSaveDoActionGERTex "__OTR__textures/do_action_static/gSaveDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSaveDoActionGERTex[] = dgSaveDoActionGERTex; -#else -static const char gSaveDoActionGERTex[] __attribute__((aligned (2))) = dgSaveDoActionGERTex; -#endif - -#define dgSpeakDoActionGERTex "__OTR__textures/do_action_static/gSpeakDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpeakDoActionGERTex[] = dgSpeakDoActionGERTex; -#else -static const char gSpeakDoActionGERTex[] __attribute__((aligned (2))) = dgSpeakDoActionGERTex; -#endif - -#define dgNextDoActionGERTex "__OTR__textures/do_action_static/gNextDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNextDoActionGERTex[] = dgNextDoActionGERTex; -#else -static const char gNextDoActionGERTex[] __attribute__((aligned (2))) = dgNextDoActionGERTex; -#endif - -#define dgGrabDoActionGERTex "__OTR__textures/do_action_static/gGrabDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGrabDoActionGERTex[] = dgGrabDoActionGERTex; -#else -static const char gGrabDoActionGERTex[] __attribute__((aligned (2))) = dgGrabDoActionGERTex; -#endif - -#define dgStopDoActionGERTex "__OTR__textures/do_action_static/gStopDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStopDoActionGERTex[] = dgStopDoActionGERTex; -#else -static const char gStopDoActionGERTex[] __attribute__((aligned (2))) = dgStopDoActionGERTex; -#endif - -#define dgPutAwayDoActionGERTex "__OTR__textures/do_action_static/gPutAwayDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPutAwayDoActionGERTex[] = dgPutAwayDoActionGERTex; -#else -static const char gPutAwayDoActionGERTex[] __attribute__((aligned (2))) = dgPutAwayDoActionGERTex; -#endif - -#define dgReelDoActionGERTex "__OTR__textures/do_action_static/gReelDoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gReelDoActionGERTex[] = dgReelDoActionGERTex; -#else -static const char gReelDoActionGERTex[] __attribute__((aligned (2))) = dgReelDoActionGERTex; -#endif - -#define dgNum1DoActionGERTex "__OTR__textures/do_action_static/gNum1DoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum1DoActionGERTex[] = dgNum1DoActionGERTex; -#else -static const char gNum1DoActionGERTex[] __attribute__((aligned (2))) = dgNum1DoActionGERTex; -#endif - -#define dgNum2DoActionGERTex "__OTR__textures/do_action_static/gNum2DoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum2DoActionGERTex[] = dgNum2DoActionGERTex; -#else -static const char gNum2DoActionGERTex[] __attribute__((aligned (2))) = dgNum2DoActionGERTex; -#endif - -#define dgNum3DoActionGERTex "__OTR__textures/do_action_static/gNum3DoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum3DoActionGERTex[] = dgNum3DoActionGERTex; -#else -static const char gNum3DoActionGERTex[] __attribute__((aligned (2))) = dgNum3DoActionGERTex; -#endif - -#define dgNum4DoActionGERTex "__OTR__textures/do_action_static/gNum4DoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum4DoActionGERTex[] = dgNum4DoActionGERTex; -#else -static const char gNum4DoActionGERTex[] __attribute__((aligned (2))) = dgNum4DoActionGERTex; -#endif - -#define dgNum5DoActionGERTex "__OTR__textures/do_action_static/gNum5DoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum5DoActionGERTex[] = dgNum5DoActionGERTex; -#else -static const char gNum5DoActionGERTex[] __attribute__((aligned (2))) = dgNum5DoActionGERTex; -#endif - -#define dgNum6DoActionGERTex "__OTR__textures/do_action_static/gNum6DoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum6DoActionGERTex[] = dgNum6DoActionGERTex; -#else -static const char gNum6DoActionGERTex[] __attribute__((aligned (2))) = dgNum6DoActionGERTex; -#endif - -#define dgNum7DoActionGERTex "__OTR__textures/do_action_static/gNum7DoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum7DoActionGERTex[] = dgNum7DoActionGERTex; -#else -static const char gNum7DoActionGERTex[] __attribute__((aligned (2))) = dgNum7DoActionGERTex; -#endif - -#define dgNum8DoActionGERTex "__OTR__textures/do_action_static/gNum8DoActionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum8DoActionGERTex[] = dgNum8DoActionGERTex; -#else -static const char gNum8DoActionGERTex[] __attribute__((aligned (2))) = dgNum8DoActionGERTex; -#endif - -#define dgAttackDoActionFRATex "__OTR__textures/do_action_static/gAttackDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAttackDoActionFRATex[] = dgAttackDoActionFRATex; -#else -static const char gAttackDoActionFRATex[] __attribute__((aligned (2))) = dgAttackDoActionFRATex; -#endif - -#define dgCheckDoActionFRATex "__OTR__textures/do_action_static/gCheckDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCheckDoActionFRATex[] = dgCheckDoActionFRATex; -#else -static const char gCheckDoActionFRATex[] __attribute__((aligned (2))) = dgCheckDoActionFRATex; -#endif - -#define dgEnterDoActionFRATex "__OTR__textures/do_action_static/gEnterDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEnterDoActionFRATex[] = dgEnterDoActionFRATex; -#else -static const char gEnterDoActionFRATex[] __attribute__((aligned (2))) = dgEnterDoActionFRATex; -#endif - -#define dgReturnDoActionFRATex "__OTR__textures/do_action_static/gReturnDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gReturnDoActionFRATex[] = dgReturnDoActionFRATex; -#else -static const char gReturnDoActionFRATex[] __attribute__((aligned (2))) = dgReturnDoActionFRATex; -#endif - -#define dgOpenDoActionFRATex "__OTR__textures/do_action_static/gOpenDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOpenDoActionFRATex[] = dgOpenDoActionFRATex; -#else -static const char gOpenDoActionFRATex[] __attribute__((aligned (2))) = dgOpenDoActionFRATex; -#endif - -#define dgJumpDoActionFRATex "__OTR__textures/do_action_static/gJumpDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJumpDoActionFRATex[] = dgJumpDoActionFRATex; -#else -static const char gJumpDoActionFRATex[] __attribute__((aligned (2))) = dgJumpDoActionFRATex; -#endif - -#define dgDecideDoActionFRATex "__OTR__textures/do_action_static/gDecideDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDecideDoActionFRATex[] = dgDecideDoActionFRATex; -#else -static const char gDecideDoActionFRATex[] __attribute__((aligned (2))) = dgDecideDoActionFRATex; -#endif - -#define dgDiveDoActionFRATex "__OTR__textures/do_action_static/gDiveDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDiveDoActionFRATex[] = dgDiveDoActionFRATex; -#else -static const char gDiveDoActionFRATex[] __attribute__((aligned (2))) = dgDiveDoActionFRATex; -#endif - -#define dgFasterDoActionFRATex "__OTR__textures/do_action_static/gFasterDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFasterDoActionFRATex[] = dgFasterDoActionFRATex; -#else -static const char gFasterDoActionFRATex[] __attribute__((aligned (2))) = dgFasterDoActionFRATex; -#endif - -#define dgThrowDoActionFRATex "__OTR__textures/do_action_static/gThrowDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gThrowDoActionFRATex[] = dgThrowDoActionFRATex; -#else -static const char gThrowDoActionFRATex[] __attribute__((aligned (2))) = dgThrowDoActionFRATex; -#endif - -#define dgUnusedNaviDoActionFRATex "__OTR__textures/do_action_static/gUnusedNaviDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedNaviDoActionFRATex[] = dgUnusedNaviDoActionFRATex; -#else -static const char gUnusedNaviDoActionFRATex[] __attribute__((aligned (2))) = dgUnusedNaviDoActionFRATex; -#endif - -#define dgClimbDoActionFRATex "__OTR__textures/do_action_static/gClimbDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gClimbDoActionFRATex[] = dgClimbDoActionFRATex; -#else -static const char gClimbDoActionFRATex[] __attribute__((aligned (2))) = dgClimbDoActionFRATex; -#endif - -#define dgDropDoActionFRATex "__OTR__textures/do_action_static/gDropDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDropDoActionFRATex[] = dgDropDoActionFRATex; -#else -static const char gDropDoActionFRATex[] __attribute__((aligned (2))) = dgDropDoActionFRATex; -#endif - -#define dgDownDoActionFRATex "__OTR__textures/do_action_static/gDownDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDownDoActionFRATex[] = dgDownDoActionFRATex; -#else -static const char gDownDoActionFRATex[] __attribute__((aligned (2))) = dgDownDoActionFRATex; -#endif - -#define dgSaveDoActionFRATex "__OTR__textures/do_action_static/gSaveDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSaveDoActionFRATex[] = dgSaveDoActionFRATex; -#else -static const char gSaveDoActionFRATex[] __attribute__((aligned (2))) = dgSaveDoActionFRATex; -#endif - -#define dgSpeakDoActionFRATex "__OTR__textures/do_action_static/gSpeakDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpeakDoActionFRATex[] = dgSpeakDoActionFRATex; -#else -static const char gSpeakDoActionFRATex[] __attribute__((aligned (2))) = dgSpeakDoActionFRATex; -#endif - -#define dgNextDoActionFRATex "__OTR__textures/do_action_static/gNextDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNextDoActionFRATex[] = dgNextDoActionFRATex; -#else -static const char gNextDoActionFRATex[] __attribute__((aligned (2))) = dgNextDoActionFRATex; -#endif - -#define dgGrabDoActionFRATex "__OTR__textures/do_action_static/gGrabDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGrabDoActionFRATex[] = dgGrabDoActionFRATex; -#else -static const char gGrabDoActionFRATex[] __attribute__((aligned (2))) = dgGrabDoActionFRATex; -#endif - -#define dgStopDoActionFRATex "__OTR__textures/do_action_static/gStopDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStopDoActionFRATex[] = dgStopDoActionFRATex; -#else -static const char gStopDoActionFRATex[] __attribute__((aligned (2))) = dgStopDoActionFRATex; -#endif - -#define dgPutAwayDoActionFRATex "__OTR__textures/do_action_static/gPutAwayDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPutAwayDoActionFRATex[] = dgPutAwayDoActionFRATex; -#else -static const char gPutAwayDoActionFRATex[] __attribute__((aligned (2))) = dgPutAwayDoActionFRATex; -#endif - -#define dgReelDoActionFRATex "__OTR__textures/do_action_static/gReelDoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gReelDoActionFRATex[] = dgReelDoActionFRATex; -#else -static const char gReelDoActionFRATex[] __attribute__((aligned (2))) = dgReelDoActionFRATex; -#endif - -#define dgNum1DoActionFRATex "__OTR__textures/do_action_static/gNum1DoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum1DoActionFRATex[] = dgNum1DoActionFRATex; -#else -static const char gNum1DoActionFRATex[] __attribute__((aligned (2))) = dgNum1DoActionFRATex; -#endif - -#define dgNum2DoActionFRATex "__OTR__textures/do_action_static/gNum2DoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum2DoActionFRATex[] = dgNum2DoActionFRATex; -#else -static const char gNum2DoActionFRATex[] __attribute__((aligned (2))) = dgNum2DoActionFRATex; -#endif - -#define dgNum3DoActionFRATex "__OTR__textures/do_action_static/gNum3DoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum3DoActionFRATex[] = dgNum3DoActionFRATex; -#else -static const char gNum3DoActionFRATex[] __attribute__((aligned (2))) = dgNum3DoActionFRATex; -#endif - -#define dgNum4DoActionFRATex "__OTR__textures/do_action_static/gNum4DoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum4DoActionFRATex[] = dgNum4DoActionFRATex; -#else -static const char gNum4DoActionFRATex[] __attribute__((aligned (2))) = dgNum4DoActionFRATex; -#endif - -#define dgNum5DoActionFRATex "__OTR__textures/do_action_static/gNum5DoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum5DoActionFRATex[] = dgNum5DoActionFRATex; -#else -static const char gNum5DoActionFRATex[] __attribute__((aligned (2))) = dgNum5DoActionFRATex; -#endif - -#define dgNum6DoActionFRATex "__OTR__textures/do_action_static/gNum6DoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum6DoActionFRATex[] = dgNum6DoActionFRATex; -#else -static const char gNum6DoActionFRATex[] __attribute__((aligned (2))) = dgNum6DoActionFRATex; -#endif - -#define dgNum7DoActionFRATex "__OTR__textures/do_action_static/gNum7DoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum7DoActionFRATex[] = dgNum7DoActionFRATex; -#else -static const char gNum7DoActionFRATex[] __attribute__((aligned (2))) = dgNum7DoActionFRATex; -#endif - -#define dgNum8DoActionFRATex "__OTR__textures/do_action_static/gNum8DoActionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNum8DoActionFRATex[] = dgNum8DoActionFRATex; -#else -static const char gNum8DoActionFRATex[] __attribute__((aligned (2))) = dgNum8DoActionFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgAttackDoActionENGTex "__OTR__textures/do_action_static/gAttackDoActionENGTex" +static const ALIGN_ASSET(2) char gAttackDoActionENGTex[] = dgAttackDoActionENGTex; + +#define dgCheckDoActionENGTex "__OTR__textures/do_action_static/gCheckDoActionENGTex" +static const ALIGN_ASSET(2) char gCheckDoActionENGTex[] = dgCheckDoActionENGTex; + +#define dgEnterDoActionENGTex "__OTR__textures/do_action_static/gEnterDoActionENGTex" +static const ALIGN_ASSET(2) char gEnterDoActionENGTex[] = dgEnterDoActionENGTex; + +#define dgReturnDoActionENGTex "__OTR__textures/do_action_static/gReturnDoActionENGTex" +static const ALIGN_ASSET(2) char gReturnDoActionENGTex[] = dgReturnDoActionENGTex; + +#define dgOpenDoActionENGTex "__OTR__textures/do_action_static/gOpenDoActionENGTex" +static const ALIGN_ASSET(2) char gOpenDoActionENGTex[] = dgOpenDoActionENGTex; + +#define dgJumpDoActionENGTex "__OTR__textures/do_action_static/gJumpDoActionENGTex" +static const ALIGN_ASSET(2) char gJumpDoActionENGTex[] = dgJumpDoActionENGTex; + +#define dgDecideDoActionENGTex "__OTR__textures/do_action_static/gDecideDoActionENGTex" +static const ALIGN_ASSET(2) char gDecideDoActionENGTex[] = dgDecideDoActionENGTex; + +#define dgDiveDoActionENGTex "__OTR__textures/do_action_static/gDiveDoActionENGTex" +static const ALIGN_ASSET(2) char gDiveDoActionENGTex[] = dgDiveDoActionENGTex; + +#define dgFasterDoActionENGTex "__OTR__textures/do_action_static/gFasterDoActionENGTex" +static const ALIGN_ASSET(2) char gFasterDoActionENGTex[] = dgFasterDoActionENGTex; + +#define dgThrowDoActionENGTex "__OTR__textures/do_action_static/gThrowDoActionENGTex" +static const ALIGN_ASSET(2) char gThrowDoActionENGTex[] = dgThrowDoActionENGTex; + +#define dgUnusedNaviDoActionENGTex "__OTR__textures/do_action_static/gUnusedNaviDoActionENGTex" +static const ALIGN_ASSET(2) char gUnusedNaviDoActionENGTex[] = dgUnusedNaviDoActionENGTex; + +#define dgClimbDoActionENGTex "__OTR__textures/do_action_static/gClimbDoActionENGTex" +static const ALIGN_ASSET(2) char gClimbDoActionENGTex[] = dgClimbDoActionENGTex; + +#define dgDropDoActionENGTex "__OTR__textures/do_action_static/gDropDoActionENGTex" +static const ALIGN_ASSET(2) char gDropDoActionENGTex[] = dgDropDoActionENGTex; + +#define dgDownDoActionENGTex "__OTR__textures/do_action_static/gDownDoActionENGTex" +static const ALIGN_ASSET(2) char gDownDoActionENGTex[] = dgDownDoActionENGTex; + +#define dgSaveDoActionENGTex "__OTR__textures/do_action_static/gSaveDoActionENGTex" +static const ALIGN_ASSET(2) char gSaveDoActionENGTex[] = dgSaveDoActionENGTex; + +#define dgSpeakDoActionENGTex "__OTR__textures/do_action_static/gSpeakDoActionENGTex" +static const ALIGN_ASSET(2) char gSpeakDoActionENGTex[] = dgSpeakDoActionENGTex; + +#define dgNextDoActionENGTex "__OTR__textures/do_action_static/gNextDoActionENGTex" +static const ALIGN_ASSET(2) char gNextDoActionENGTex[] = dgNextDoActionENGTex; + +#define dgGrabDoActionENGTex "__OTR__textures/do_action_static/gGrabDoActionENGTex" +static const ALIGN_ASSET(2) char gGrabDoActionENGTex[] = dgGrabDoActionENGTex; + +#define dgStopDoActionENGTex "__OTR__textures/do_action_static/gStopDoActionENGTex" +static const ALIGN_ASSET(2) char gStopDoActionENGTex[] = dgStopDoActionENGTex; + +#define dgPutAwayDoActionENGTex "__OTR__textures/do_action_static/gPutAwayDoActionENGTex" +static const ALIGN_ASSET(2) char gPutAwayDoActionENGTex[] = dgPutAwayDoActionENGTex; + +#define dgReelDoActionENGTex "__OTR__textures/do_action_static/gReelDoActionENGTex" +static const ALIGN_ASSET(2) char gReelDoActionENGTex[] = dgReelDoActionENGTex; + +#define dgNum1DoActionENGTex "__OTR__textures/do_action_static/gNum1DoActionENGTex" +static const ALIGN_ASSET(2) char gNum1DoActionENGTex[] = dgNum1DoActionENGTex; + +#define dgNum2DoActionENGTex "__OTR__textures/do_action_static/gNum2DoActionENGTex" +static const ALIGN_ASSET(2) char gNum2DoActionENGTex[] = dgNum2DoActionENGTex; + +#define dgNum3DoActionENGTex "__OTR__textures/do_action_static/gNum3DoActionENGTex" +static const ALIGN_ASSET(2) char gNum3DoActionENGTex[] = dgNum3DoActionENGTex; + +#define dgNum4DoActionENGTex "__OTR__textures/do_action_static/gNum4DoActionENGTex" +static const ALIGN_ASSET(2) char gNum4DoActionENGTex[] = dgNum4DoActionENGTex; + +#define dgNum5DoActionENGTex "__OTR__textures/do_action_static/gNum5DoActionENGTex" +static const ALIGN_ASSET(2) char gNum5DoActionENGTex[] = dgNum5DoActionENGTex; + +#define dgNum6DoActionENGTex "__OTR__textures/do_action_static/gNum6DoActionENGTex" +static const ALIGN_ASSET(2) char gNum6DoActionENGTex[] = dgNum6DoActionENGTex; + +#define dgNum7DoActionENGTex "__OTR__textures/do_action_static/gNum7DoActionENGTex" +static const ALIGN_ASSET(2) char gNum7DoActionENGTex[] = dgNum7DoActionENGTex; + +#define dgNum8DoActionENGTex "__OTR__textures/do_action_static/gNum8DoActionENGTex" +static const ALIGN_ASSET(2) char gNum8DoActionENGTex[] = dgNum8DoActionENGTex; + +#define dgAttackDoActionGERTex "__OTR__textures/do_action_static/gAttackDoActionGERTex" +static const ALIGN_ASSET(2) char gAttackDoActionGERTex[] = dgAttackDoActionGERTex; + +#define dgCheckDoActionGERTex "__OTR__textures/do_action_static/gCheckDoActionGERTex" +static const ALIGN_ASSET(2) char gCheckDoActionGERTex[] = dgCheckDoActionGERTex; + +#define dgEnterDoActionGERTex "__OTR__textures/do_action_static/gEnterDoActionGERTex" +static const ALIGN_ASSET(2) char gEnterDoActionGERTex[] = dgEnterDoActionGERTex; + +#define dgReturnDoActionGERTex "__OTR__textures/do_action_static/gReturnDoActionGERTex" +static const ALIGN_ASSET(2) char gReturnDoActionGERTex[] = dgReturnDoActionGERTex; + +#define dgOpenDoActionGERTex "__OTR__textures/do_action_static/gOpenDoActionGERTex" +static const ALIGN_ASSET(2) char gOpenDoActionGERTex[] = dgOpenDoActionGERTex; + +#define dgJumpDoActionGERTex "__OTR__textures/do_action_static/gJumpDoActionGERTex" +static const ALIGN_ASSET(2) char gJumpDoActionGERTex[] = dgJumpDoActionGERTex; + +#define dgDecideDoActionGERTex "__OTR__textures/do_action_static/gDecideDoActionGERTex" +static const ALIGN_ASSET(2) char gDecideDoActionGERTex[] = dgDecideDoActionGERTex; + +#define dgDiveDoActionGERTex "__OTR__textures/do_action_static/gDiveDoActionGERTex" +static const ALIGN_ASSET(2) char gDiveDoActionGERTex[] = dgDiveDoActionGERTex; + +#define dgFasterDoActionGERTex "__OTR__textures/do_action_static/gFasterDoActionGERTex" +static const ALIGN_ASSET(2) char gFasterDoActionGERTex[] = dgFasterDoActionGERTex; + +#define dgThrowDoActionGERTex "__OTR__textures/do_action_static/gThrowDoActionGERTex" +static const ALIGN_ASSET(2) char gThrowDoActionGERTex[] = dgThrowDoActionGERTex; + +#define dgUnusedNaviDoActionGERTex "__OTR__textures/do_action_static/gUnusedNaviDoActionGERTex" +static const ALIGN_ASSET(2) char gUnusedNaviDoActionGERTex[] = dgUnusedNaviDoActionGERTex; + +#define dgClimbDoActionGERTex "__OTR__textures/do_action_static/gClimbDoActionGERTex" +static const ALIGN_ASSET(2) char gClimbDoActionGERTex[] = dgClimbDoActionGERTex; + +#define dgDropDoActionGERTex "__OTR__textures/do_action_static/gDropDoActionGERTex" +static const ALIGN_ASSET(2) char gDropDoActionGERTex[] = dgDropDoActionGERTex; + +#define dgDownDoActionGERTex "__OTR__textures/do_action_static/gDownDoActionGERTex" +static const ALIGN_ASSET(2) char gDownDoActionGERTex[] = dgDownDoActionGERTex; + +#define dgSaveDoActionGERTex "__OTR__textures/do_action_static/gSaveDoActionGERTex" +static const ALIGN_ASSET(2) char gSaveDoActionGERTex[] = dgSaveDoActionGERTex; + +#define dgSpeakDoActionGERTex "__OTR__textures/do_action_static/gSpeakDoActionGERTex" +static const ALIGN_ASSET(2) char gSpeakDoActionGERTex[] = dgSpeakDoActionGERTex; + +#define dgNextDoActionGERTex "__OTR__textures/do_action_static/gNextDoActionGERTex" +static const ALIGN_ASSET(2) char gNextDoActionGERTex[] = dgNextDoActionGERTex; + +#define dgGrabDoActionGERTex "__OTR__textures/do_action_static/gGrabDoActionGERTex" +static const ALIGN_ASSET(2) char gGrabDoActionGERTex[] = dgGrabDoActionGERTex; + +#define dgStopDoActionGERTex "__OTR__textures/do_action_static/gStopDoActionGERTex" +static const ALIGN_ASSET(2) char gStopDoActionGERTex[] = dgStopDoActionGERTex; + +#define dgPutAwayDoActionGERTex "__OTR__textures/do_action_static/gPutAwayDoActionGERTex" +static const ALIGN_ASSET(2) char gPutAwayDoActionGERTex[] = dgPutAwayDoActionGERTex; + +#define dgReelDoActionGERTex "__OTR__textures/do_action_static/gReelDoActionGERTex" +static const ALIGN_ASSET(2) char gReelDoActionGERTex[] = dgReelDoActionGERTex; + +#define dgNum1DoActionGERTex "__OTR__textures/do_action_static/gNum1DoActionGERTex" +static const ALIGN_ASSET(2) char gNum1DoActionGERTex[] = dgNum1DoActionGERTex; + +#define dgNum2DoActionGERTex "__OTR__textures/do_action_static/gNum2DoActionGERTex" +static const ALIGN_ASSET(2) char gNum2DoActionGERTex[] = dgNum2DoActionGERTex; + +#define dgNum3DoActionGERTex "__OTR__textures/do_action_static/gNum3DoActionGERTex" +static const ALIGN_ASSET(2) char gNum3DoActionGERTex[] = dgNum3DoActionGERTex; + +#define dgNum4DoActionGERTex "__OTR__textures/do_action_static/gNum4DoActionGERTex" +static const ALIGN_ASSET(2) char gNum4DoActionGERTex[] = dgNum4DoActionGERTex; + +#define dgNum5DoActionGERTex "__OTR__textures/do_action_static/gNum5DoActionGERTex" +static const ALIGN_ASSET(2) char gNum5DoActionGERTex[] = dgNum5DoActionGERTex; + +#define dgNum6DoActionGERTex "__OTR__textures/do_action_static/gNum6DoActionGERTex" +static const ALIGN_ASSET(2) char gNum6DoActionGERTex[] = dgNum6DoActionGERTex; + +#define dgNum7DoActionGERTex "__OTR__textures/do_action_static/gNum7DoActionGERTex" +static const ALIGN_ASSET(2) char gNum7DoActionGERTex[] = dgNum7DoActionGERTex; + +#define dgNum8DoActionGERTex "__OTR__textures/do_action_static/gNum8DoActionGERTex" +static const ALIGN_ASSET(2) char gNum8DoActionGERTex[] = dgNum8DoActionGERTex; + +#define dgAttackDoActionFRATex "__OTR__textures/do_action_static/gAttackDoActionFRATex" +static const ALIGN_ASSET(2) char gAttackDoActionFRATex[] = dgAttackDoActionFRATex; + +#define dgCheckDoActionFRATex "__OTR__textures/do_action_static/gCheckDoActionFRATex" +static const ALIGN_ASSET(2) char gCheckDoActionFRATex[] = dgCheckDoActionFRATex; + +#define dgEnterDoActionFRATex "__OTR__textures/do_action_static/gEnterDoActionFRATex" +static const ALIGN_ASSET(2) char gEnterDoActionFRATex[] = dgEnterDoActionFRATex; + +#define dgReturnDoActionFRATex "__OTR__textures/do_action_static/gReturnDoActionFRATex" +static const ALIGN_ASSET(2) char gReturnDoActionFRATex[] = dgReturnDoActionFRATex; + +#define dgOpenDoActionFRATex "__OTR__textures/do_action_static/gOpenDoActionFRATex" +static const ALIGN_ASSET(2) char gOpenDoActionFRATex[] = dgOpenDoActionFRATex; + +#define dgJumpDoActionFRATex "__OTR__textures/do_action_static/gJumpDoActionFRATex" +static const ALIGN_ASSET(2) char gJumpDoActionFRATex[] = dgJumpDoActionFRATex; + +#define dgDecideDoActionFRATex "__OTR__textures/do_action_static/gDecideDoActionFRATex" +static const ALIGN_ASSET(2) char gDecideDoActionFRATex[] = dgDecideDoActionFRATex; + +#define dgDiveDoActionFRATex "__OTR__textures/do_action_static/gDiveDoActionFRATex" +static const ALIGN_ASSET(2) char gDiveDoActionFRATex[] = dgDiveDoActionFRATex; + +#define dgFasterDoActionFRATex "__OTR__textures/do_action_static/gFasterDoActionFRATex" +static const ALIGN_ASSET(2) char gFasterDoActionFRATex[] = dgFasterDoActionFRATex; + +#define dgThrowDoActionFRATex "__OTR__textures/do_action_static/gThrowDoActionFRATex" +static const ALIGN_ASSET(2) char gThrowDoActionFRATex[] = dgThrowDoActionFRATex; + +#define dgUnusedNaviDoActionFRATex "__OTR__textures/do_action_static/gUnusedNaviDoActionFRATex" +static const ALIGN_ASSET(2) char gUnusedNaviDoActionFRATex[] = dgUnusedNaviDoActionFRATex; + +#define dgClimbDoActionFRATex "__OTR__textures/do_action_static/gClimbDoActionFRATex" +static const ALIGN_ASSET(2) char gClimbDoActionFRATex[] = dgClimbDoActionFRATex; + +#define dgDropDoActionFRATex "__OTR__textures/do_action_static/gDropDoActionFRATex" +static const ALIGN_ASSET(2) char gDropDoActionFRATex[] = dgDropDoActionFRATex; + +#define dgDownDoActionFRATex "__OTR__textures/do_action_static/gDownDoActionFRATex" +static const ALIGN_ASSET(2) char gDownDoActionFRATex[] = dgDownDoActionFRATex; + +#define dgSaveDoActionFRATex "__OTR__textures/do_action_static/gSaveDoActionFRATex" +static const ALIGN_ASSET(2) char gSaveDoActionFRATex[] = dgSaveDoActionFRATex; + +#define dgSpeakDoActionFRATex "__OTR__textures/do_action_static/gSpeakDoActionFRATex" +static const ALIGN_ASSET(2) char gSpeakDoActionFRATex[] = dgSpeakDoActionFRATex; + +#define dgNextDoActionFRATex "__OTR__textures/do_action_static/gNextDoActionFRATex" +static const ALIGN_ASSET(2) char gNextDoActionFRATex[] = dgNextDoActionFRATex; + +#define dgGrabDoActionFRATex "__OTR__textures/do_action_static/gGrabDoActionFRATex" +static const ALIGN_ASSET(2) char gGrabDoActionFRATex[] = dgGrabDoActionFRATex; + +#define dgStopDoActionFRATex "__OTR__textures/do_action_static/gStopDoActionFRATex" +static const ALIGN_ASSET(2) char gStopDoActionFRATex[] = dgStopDoActionFRATex; + +#define dgPutAwayDoActionFRATex "__OTR__textures/do_action_static/gPutAwayDoActionFRATex" +static const ALIGN_ASSET(2) char gPutAwayDoActionFRATex[] = dgPutAwayDoActionFRATex; + +#define dgReelDoActionFRATex "__OTR__textures/do_action_static/gReelDoActionFRATex" +static const ALIGN_ASSET(2) char gReelDoActionFRATex[] = dgReelDoActionFRATex; + +#define dgNum1DoActionFRATex "__OTR__textures/do_action_static/gNum1DoActionFRATex" +static const ALIGN_ASSET(2) char gNum1DoActionFRATex[] = dgNum1DoActionFRATex; + +#define dgNum2DoActionFRATex "__OTR__textures/do_action_static/gNum2DoActionFRATex" +static const ALIGN_ASSET(2) char gNum2DoActionFRATex[] = dgNum2DoActionFRATex; + +#define dgNum3DoActionFRATex "__OTR__textures/do_action_static/gNum3DoActionFRATex" +static const ALIGN_ASSET(2) char gNum3DoActionFRATex[] = dgNum3DoActionFRATex; + +#define dgNum4DoActionFRATex "__OTR__textures/do_action_static/gNum4DoActionFRATex" +static const ALIGN_ASSET(2) char gNum4DoActionFRATex[] = dgNum4DoActionFRATex; + +#define dgNum5DoActionFRATex "__OTR__textures/do_action_static/gNum5DoActionFRATex" +static const ALIGN_ASSET(2) char gNum5DoActionFRATex[] = dgNum5DoActionFRATex; + +#define dgNum6DoActionFRATex "__OTR__textures/do_action_static/gNum6DoActionFRATex" +static const ALIGN_ASSET(2) char gNum6DoActionFRATex[] = dgNum6DoActionFRATex; + +#define dgNum7DoActionFRATex "__OTR__textures/do_action_static/gNum7DoActionFRATex" +static const ALIGN_ASSET(2) char gNum7DoActionFRATex[] = dgNum7DoActionFRATex; + +#define dgNum8DoActionFRATex "__OTR__textures/do_action_static/gNum8DoActionFRATex" +static const ALIGN_ASSET(2) char gNum8DoActionFRATex[] = dgNum8DoActionFRATex; \ No newline at end of file diff --git a/soh/assets/textures/icon_item_24_static/icon_item_24_static.h b/soh/assets/textures/icon_item_24_static/icon_item_24_static.h index 932133ead..5636bd3ea 100644 --- a/soh/assets/textures/icon_item_24_static/icon_item_24_static.h +++ b/soh/assets/textures/icon_item_24_static/icon_item_24_static.h @@ -1,142 +1,63 @@ #pragma once -#define dgForestMedallionIconTex "__OTR__textures/icon_item_24_static/gForestMedallionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestMedallionIconTex[] = dgForestMedallionIconTex; -#else -static const char gForestMedallionIconTex[] __attribute__((aligned (2))) = dgForestMedallionIconTex; -#endif - -#define dgFireMedallionIconTex "__OTR__textures/icon_item_24_static/gFireMedallionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireMedallionIconTex[] = dgFireMedallionIconTex; -#else -static const char gFireMedallionIconTex[] __attribute__((aligned (2))) = dgFireMedallionIconTex; -#endif - -#define dgWaterMedallionIconTex "__OTR__textures/icon_item_24_static/gWaterMedallionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterMedallionIconTex[] = dgWaterMedallionIconTex; -#else -static const char gWaterMedallionIconTex[] __attribute__((aligned (2))) = dgWaterMedallionIconTex; -#endif - -#define dgSpiritMedallionIconTex "__OTR__textures/icon_item_24_static/gSpiritMedallionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritMedallionIconTex[] = dgSpiritMedallionIconTex; -#else -static const char gSpiritMedallionIconTex[] __attribute__((aligned (2))) = dgSpiritMedallionIconTex; -#endif - -#define dgShadowMedallionIconTex "__OTR__textures/icon_item_24_static/gShadowMedallionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowMedallionIconTex[] = dgShadowMedallionIconTex; -#else -static const char gShadowMedallionIconTex[] __attribute__((aligned (2))) = dgShadowMedallionIconTex; -#endif - -#define dgLightMedallionIconTex "__OTR__textures/icon_item_24_static/gLightMedallionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightMedallionIconTex[] = dgLightMedallionIconTex; -#else -static const char gLightMedallionIconTex[] __attribute__((aligned (2))) = dgLightMedallionIconTex; -#endif - -#define dgKokiriEmeraldIconTex "__OTR__textures/icon_item_24_static/gKokiriEmeraldIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriEmeraldIconTex[] = dgKokiriEmeraldIconTex; -#else -static const char gKokiriEmeraldIconTex[] __attribute__((aligned (2))) = dgKokiriEmeraldIconTex; -#endif - -#define dgGoronRubyIconTex "__OTR__textures/icon_item_24_static/gGoronRubyIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronRubyIconTex[] = dgGoronRubyIconTex; -#else -static const char gGoronRubyIconTex[] __attribute__((aligned (2))) = dgGoronRubyIconTex; -#endif - -#define dgZoraSapphireIconTex "__OTR__textures/icon_item_24_static/gZoraSapphireIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraSapphireIconTex[] = dgZoraSapphireIconTex; -#else -static const char gZoraSapphireIconTex[] __attribute__((aligned (2))) = dgZoraSapphireIconTex; -#endif - -#define dgStoneOfAgonyIconTex "__OTR__textures/icon_item_24_static/gStoneOfAgonyIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStoneOfAgonyIconTex[] = dgStoneOfAgonyIconTex; -#else -static const char gStoneOfAgonyIconTex[] __attribute__((aligned (2))) = dgStoneOfAgonyIconTex; -#endif - -#define dgGerudosCardIconTex "__OTR__textures/icon_item_24_static/gGerudosCardIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosCardIconTex[] = dgGerudosCardIconTex; -#else -static const char gGerudosCardIconTex[] __attribute__((aligned (2))) = dgGerudosCardIconTex; -#endif - -#define dgGoldSkulltulaIconTex "__OTR__textures/icon_item_24_static/gGoldSkulltulaIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldSkulltulaIconTex[] = dgGoldSkulltulaIconTex; -#else -static const char gGoldSkulltulaIconTex[] __attribute__((aligned (2))) = dgGoldSkulltulaIconTex; -#endif - -#define dgHeartContainerIconTex "__OTR__textures/icon_item_24_static/gHeartContainerIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartContainerIconTex[] = dgHeartContainerIconTex; -#else -static const char gHeartContainerIconTex[] __attribute__((aligned (2))) = dgHeartContainerIconTex; -#endif - -#define dgUnusedPieceOfHeartIconTex "__OTR__textures/icon_item_24_static/gUnusedPieceOfHeartIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedPieceOfHeartIconTex[] = dgUnusedPieceOfHeartIconTex; -#else -static const char gUnusedPieceOfHeartIconTex[] __attribute__((aligned (2))) = dgUnusedPieceOfHeartIconTex; -#endif - -#define dgBossKeyIconTex "__OTR__textures/icon_item_24_static/gBossKeyIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBossKeyIconTex[] = dgBossKeyIconTex; -#else -static const char gBossKeyIconTex[] __attribute__((aligned (2))) = dgBossKeyIconTex; -#endif - -#define dgCompassIconTex "__OTR__textures/icon_item_24_static/gCompassIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCompassIconTex[] = dgCompassIconTex; -#else -static const char gCompassIconTex[] __attribute__((aligned (2))) = dgCompassIconTex; -#endif - -#define dgDungeonMapIconTex "__OTR__textures/icon_item_24_static/gDungeonMapIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapIconTex[] = dgDungeonMapIconTex; -#else -static const char gDungeonMapIconTex[] __attribute__((aligned (2))) = dgDungeonMapIconTex; -#endif - -#define dgSmallKeyIconTex "__OTR__textures/icon_item_24_static/gSmallKeyIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSmallKeyIconTex[] = dgSmallKeyIconTex; -#else -static const char gSmallKeyIconTex[] __attribute__((aligned (2))) = dgSmallKeyIconTex; -#endif - -#define dgSmallMagicJarIconTex "__OTR__textures/icon_item_24_static/gSmallMagicJarIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSmallMagicJarIconTex[] = dgSmallMagicJarIconTex; -#else -static const char gSmallMagicJarIconTex[] __attribute__((aligned (2))) = dgSmallMagicJarIconTex; -#endif - -#define dgBigMagicJarIconTex "__OTR__textures/icon_item_24_static/gBigMagicJarIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigMagicJarIconTex[] = dgBigMagicJarIconTex; -#else -static const char gBigMagicJarIconTex[] __attribute__((aligned (2))) = dgBigMagicJarIconTex; -#endif - +#include "align_asset_macro.h" + +#define dgForestMedallionIconTex "__OTR__textures/icon_item_24_static/gForestMedallionIconTex" +static const ALIGN_ASSET(2) char gForestMedallionIconTex[] = dgForestMedallionIconTex; + +#define dgFireMedallionIconTex "__OTR__textures/icon_item_24_static/gFireMedallionIconTex" +static const ALIGN_ASSET(2) char gFireMedallionIconTex[] = dgFireMedallionIconTex; + +#define dgWaterMedallionIconTex "__OTR__textures/icon_item_24_static/gWaterMedallionIconTex" +static const ALIGN_ASSET(2) char gWaterMedallionIconTex[] = dgWaterMedallionIconTex; + +#define dgSpiritMedallionIconTex "__OTR__textures/icon_item_24_static/gSpiritMedallionIconTex" +static const ALIGN_ASSET(2) char gSpiritMedallionIconTex[] = dgSpiritMedallionIconTex; + +#define dgShadowMedallionIconTex "__OTR__textures/icon_item_24_static/gShadowMedallionIconTex" +static const ALIGN_ASSET(2) char gShadowMedallionIconTex[] = dgShadowMedallionIconTex; + +#define dgLightMedallionIconTex "__OTR__textures/icon_item_24_static/gLightMedallionIconTex" +static const ALIGN_ASSET(2) char gLightMedallionIconTex[] = dgLightMedallionIconTex; + +#define dgKokiriEmeraldIconTex "__OTR__textures/icon_item_24_static/gKokiriEmeraldIconTex" +static const ALIGN_ASSET(2) char gKokiriEmeraldIconTex[] = dgKokiriEmeraldIconTex; + +#define dgGoronRubyIconTex "__OTR__textures/icon_item_24_static/gGoronRubyIconTex" +static const ALIGN_ASSET(2) char gGoronRubyIconTex[] = dgGoronRubyIconTex; + +#define dgZoraSapphireIconTex "__OTR__textures/icon_item_24_static/gZoraSapphireIconTex" +static const ALIGN_ASSET(2) char gZoraSapphireIconTex[] = dgZoraSapphireIconTex; + +#define dgStoneOfAgonyIconTex "__OTR__textures/icon_item_24_static/gStoneOfAgonyIconTex" +static const ALIGN_ASSET(2) char gStoneOfAgonyIconTex[] = dgStoneOfAgonyIconTex; + +#define dgGerudosCardIconTex "__OTR__textures/icon_item_24_static/gGerudosCardIconTex" +static const ALIGN_ASSET(2) char gGerudosCardIconTex[] = dgGerudosCardIconTex; + +#define dgGoldSkulltulaIconTex "__OTR__textures/icon_item_24_static/gGoldSkulltulaIconTex" +static const ALIGN_ASSET(2) char gGoldSkulltulaIconTex[] = dgGoldSkulltulaIconTex; + +#define dgHeartContainerIconTex "__OTR__textures/icon_item_24_static/gHeartContainerIconTex" +static const ALIGN_ASSET(2) char gHeartContainerIconTex[] = dgHeartContainerIconTex; + +#define dgUnusedPieceOfHeartIconTex "__OTR__textures/icon_item_24_static/gUnusedPieceOfHeartIconTex" +static const ALIGN_ASSET(2) char gUnusedPieceOfHeartIconTex[] = dgUnusedPieceOfHeartIconTex; + +#define dgBossKeyIconTex "__OTR__textures/icon_item_24_static/gBossKeyIconTex" +static const ALIGN_ASSET(2) char gBossKeyIconTex[] = dgBossKeyIconTex; + +#define dgCompassIconTex "__OTR__textures/icon_item_24_static/gCompassIconTex" +static const ALIGN_ASSET(2) char gCompassIconTex[] = dgCompassIconTex; + +#define dgDungeonMapIconTex "__OTR__textures/icon_item_24_static/gDungeonMapIconTex" +static const ALIGN_ASSET(2) char gDungeonMapIconTex[] = dgDungeonMapIconTex; + +#define dgSmallKeyIconTex "__OTR__textures/icon_item_24_static/gSmallKeyIconTex" +static const ALIGN_ASSET(2) char gSmallKeyIconTex[] = dgSmallKeyIconTex; + +#define dgSmallMagicJarIconTex "__OTR__textures/icon_item_24_static/gSmallMagicJarIconTex" +static const ALIGN_ASSET(2) char gSmallMagicJarIconTex[] = dgSmallMagicJarIconTex; + +#define dgBigMagicJarIconTex "__OTR__textures/icon_item_24_static/gBigMagicJarIconTex" +static const ALIGN_ASSET(2) char gBigMagicJarIconTex[] = dgBigMagicJarIconTex; \ No newline at end of file diff --git a/soh/assets/textures/icon_item_dungeon_static/icon_item_dungeon_static.h b/soh/assets/textures/icon_item_dungeon_static/icon_item_dungeon_static.h index 62ba7ec1e..8a559452d 100644 --- a/soh/assets/textures/icon_item_dungeon_static/icon_item_dungeon_static.h +++ b/soh/assets/textures/icon_item_dungeon_static/icon_item_dungeon_static.h @@ -1,135 +1,60 @@ #pragma once -#define dgDungeonMapBlankFloorButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapBlankFloorButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapBlankFloorButtonTex[] = dgDungeonMapBlankFloorButtonTex; -#else -static const char gDungeonMapBlankFloorButtonTex[] __attribute__((aligned (2))) = dgDungeonMapBlankFloorButtonTex; -#endif - -#define dgDungeonMap1FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap1FButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMap1FButtonTex[] = dgDungeonMap1FButtonTex; -#else -static const char gDungeonMap1FButtonTex[] __attribute__((aligned (2))) = dgDungeonMap1FButtonTex; -#endif - -#define dgDungeonMap2FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap2FButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMap2FButtonTex[] = dgDungeonMap2FButtonTex; -#else -static const char gDungeonMap2FButtonTex[] __attribute__((aligned (2))) = dgDungeonMap2FButtonTex; -#endif - -#define dgDungeonMap3FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap3FButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMap3FButtonTex[] = dgDungeonMap3FButtonTex; -#else -static const char gDungeonMap3FButtonTex[] __attribute__((aligned (2))) = dgDungeonMap3FButtonTex; -#endif - -#define dgDungeonMap4FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap4FButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMap4FButtonTex[] = dgDungeonMap4FButtonTex; -#else -static const char gDungeonMap4FButtonTex[] __attribute__((aligned (2))) = dgDungeonMap4FButtonTex; -#endif - -#define dgDungeonMap5FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap5FButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMap5FButtonTex[] = dgDungeonMap5FButtonTex; -#else -static const char gDungeonMap5FButtonTex[] __attribute__((aligned (2))) = dgDungeonMap5FButtonTex; -#endif - -#define dgDungeonMap6FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap6FButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMap6FButtonTex[] = dgDungeonMap6FButtonTex; -#else -static const char gDungeonMap6FButtonTex[] __attribute__((aligned (2))) = dgDungeonMap6FButtonTex; -#endif - -#define dgDungeonMap7FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap7FButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMap7FButtonTex[] = dgDungeonMap7FButtonTex; -#else -static const char gDungeonMap7FButtonTex[] __attribute__((aligned (2))) = dgDungeonMap7FButtonTex; -#endif - -#define dgDungeonMap8FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap8FButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMap8FButtonTex[] = dgDungeonMap8FButtonTex; -#else -static const char gDungeonMap8FButtonTex[] __attribute__((aligned (2))) = dgDungeonMap8FButtonTex; -#endif - -#define dgDungeonMapB1ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB1ButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapB1ButtonTex[] = dgDungeonMapB1ButtonTex; -#else -static const char gDungeonMapB1ButtonTex[] __attribute__((aligned (2))) = dgDungeonMapB1ButtonTex; -#endif - -#define dgDungeonMapB2ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB2ButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapB2ButtonTex[] = dgDungeonMapB2ButtonTex; -#else -static const char gDungeonMapB2ButtonTex[] __attribute__((aligned (2))) = dgDungeonMapB2ButtonTex; -#endif - -#define dgDungeonMapB3ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB3ButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapB3ButtonTex[] = dgDungeonMapB3ButtonTex; -#else -static const char gDungeonMapB3ButtonTex[] __attribute__((aligned (2))) = dgDungeonMapB3ButtonTex; -#endif - -#define dgDungeonMapB4ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB4ButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapB4ButtonTex[] = dgDungeonMapB4ButtonTex; -#else -static const char gDungeonMapB4ButtonTex[] __attribute__((aligned (2))) = dgDungeonMapB4ButtonTex; -#endif - -#define dgDungeonMapB5ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB5ButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapB5ButtonTex[] = dgDungeonMapB5ButtonTex; -#else -static const char gDungeonMapB5ButtonTex[] __attribute__((aligned (2))) = dgDungeonMapB5ButtonTex; -#endif - -#define dgDungeonMapB6ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB6ButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapB6ButtonTex[] = dgDungeonMapB6ButtonTex; -#else -static const char gDungeonMapB6ButtonTex[] __attribute__((aligned (2))) = dgDungeonMapB6ButtonTex; -#endif - -#define dgDungeonMapB7ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB7ButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapB7ButtonTex[] = dgDungeonMapB7ButtonTex; -#else -static const char gDungeonMapB7ButtonTex[] __attribute__((aligned (2))) = dgDungeonMapB7ButtonTex; -#endif - -#define dgDungeonMapB8ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB8ButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapB8ButtonTex[] = dgDungeonMapB8ButtonTex; -#else -static const char gDungeonMapB8ButtonTex[] __attribute__((aligned (2))) = dgDungeonMapB8ButtonTex; -#endif - -#define dgDungeonMapLinkHeadTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapLinkHeadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapLinkHeadTex[] = dgDungeonMapLinkHeadTex; -#else -static const char gDungeonMapLinkHeadTex[] __attribute__((aligned (2))) = dgDungeonMapLinkHeadTex; -#endif - -#define dgDungeonMapSkullTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapSkullTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapSkullTex[] = dgDungeonMapSkullTex; -#else -static const char gDungeonMapSkullTex[] __attribute__((aligned (2))) = dgDungeonMapSkullTex; -#endif - +#include "align_asset_macro.h" + +#define dgDungeonMapBlankFloorButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapBlankFloorButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapBlankFloorButtonTex[] = dgDungeonMapBlankFloorButtonTex; + +#define dgDungeonMap1FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap1FButtonTex" +static const ALIGN_ASSET(2) char gDungeonMap1FButtonTex[] = dgDungeonMap1FButtonTex; + +#define dgDungeonMap2FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap2FButtonTex" +static const ALIGN_ASSET(2) char gDungeonMap2FButtonTex[] = dgDungeonMap2FButtonTex; + +#define dgDungeonMap3FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap3FButtonTex" +static const ALIGN_ASSET(2) char gDungeonMap3FButtonTex[] = dgDungeonMap3FButtonTex; + +#define dgDungeonMap4FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap4FButtonTex" +static const ALIGN_ASSET(2) char gDungeonMap4FButtonTex[] = dgDungeonMap4FButtonTex; + +#define dgDungeonMap5FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap5FButtonTex" +static const ALIGN_ASSET(2) char gDungeonMap5FButtonTex[] = dgDungeonMap5FButtonTex; + +#define dgDungeonMap6FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap6FButtonTex" +static const ALIGN_ASSET(2) char gDungeonMap6FButtonTex[] = dgDungeonMap6FButtonTex; + +#define dgDungeonMap7FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap7FButtonTex" +static const ALIGN_ASSET(2) char gDungeonMap7FButtonTex[] = dgDungeonMap7FButtonTex; + +#define dgDungeonMap8FButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMap8FButtonTex" +static const ALIGN_ASSET(2) char gDungeonMap8FButtonTex[] = dgDungeonMap8FButtonTex; + +#define dgDungeonMapB1ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB1ButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapB1ButtonTex[] = dgDungeonMapB1ButtonTex; + +#define dgDungeonMapB2ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB2ButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapB2ButtonTex[] = dgDungeonMapB2ButtonTex; + +#define dgDungeonMapB3ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB3ButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapB3ButtonTex[] = dgDungeonMapB3ButtonTex; + +#define dgDungeonMapB4ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB4ButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapB4ButtonTex[] = dgDungeonMapB4ButtonTex; + +#define dgDungeonMapB5ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB5ButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapB5ButtonTex[] = dgDungeonMapB5ButtonTex; + +#define dgDungeonMapB6ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB6ButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapB6ButtonTex[] = dgDungeonMapB6ButtonTex; + +#define dgDungeonMapB7ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB7ButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapB7ButtonTex[] = dgDungeonMapB7ButtonTex; + +#define dgDungeonMapB8ButtonTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapB8ButtonTex" +static const ALIGN_ASSET(2) char gDungeonMapB8ButtonTex[] = dgDungeonMapB8ButtonTex; + +#define dgDungeonMapLinkHeadTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapLinkHeadTex" +static const ALIGN_ASSET(2) char gDungeonMapLinkHeadTex[] = dgDungeonMapLinkHeadTex; + +#define dgDungeonMapSkullTex "__OTR__textures/icon_item_dungeon_static/gDungeonMapSkullTex" +static const ALIGN_ASSET(2) char gDungeonMapSkullTex[] = dgDungeonMapSkullTex; \ No newline at end of file diff --git a/soh/assets/textures/icon_item_field_static/icon_item_field_static.h b/soh/assets/textures/icon_item_field_static/icon_item_field_static.h index b491a72d9..0061e66e1 100644 --- a/soh/assets/textures/icon_item_field_static/icon_item_field_static.h +++ b/soh/assets/textures/icon_item_field_static/icon_item_field_static.h @@ -1,198 +1,87 @@ #pragma once -#define dgWorldMapImageTex "__OTR__textures/icon_item_field_static/gWorldMapImageTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapImageTex[] = dgWorldMapImageTex; -#else -static const char gWorldMapImageTex[] __attribute__((aligned (2))) = dgWorldMapImageTex; -#endif - -#define dgWorldMapImageTLUT "__OTR__textures/icon_item_field_static/gWorldMapImageTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapImageTLUT[] = dgWorldMapImageTLUT; -#else -static const char gWorldMapImageTLUT[] __attribute__((aligned (2))) = dgWorldMapImageTLUT; -#endif - -#define dgWorldMapDotTex "__OTR__textures/icon_item_field_static/gWorldMapDotTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapDotTex[] = dgWorldMapDotTex; -#else -static const char gWorldMapDotTex[] __attribute__((aligned (2))) = dgWorldMapDotTex; -#endif - -#define dgWorldMapAreaBox1Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapAreaBox1Tex[] = dgWorldMapAreaBox1Tex; -#else -static const char gWorldMapAreaBox1Tex[] __attribute__((aligned (2))) = dgWorldMapAreaBox1Tex; -#endif - -#define dgWorldMapAreaBox2Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapAreaBox2Tex[] = dgWorldMapAreaBox2Tex; -#else -static const char gWorldMapAreaBox2Tex[] __attribute__((aligned (2))) = dgWorldMapAreaBox2Tex; -#endif - -#define dgWorldMapAreaBox3Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapAreaBox3Tex[] = dgWorldMapAreaBox3Tex; -#else -static const char gWorldMapAreaBox3Tex[] __attribute__((aligned (2))) = dgWorldMapAreaBox3Tex; -#endif - -#define dgWorldMapAreaBox4Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapAreaBox4Tex[] = dgWorldMapAreaBox4Tex; -#else -static const char gWorldMapAreaBox4Tex[] __attribute__((aligned (2))) = dgWorldMapAreaBox4Tex; -#endif - -#define dgWorldMapAreaBox5Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapAreaBox5Tex[] = dgWorldMapAreaBox5Tex; -#else -static const char gWorldMapAreaBox5Tex[] __attribute__((aligned (2))) = dgWorldMapAreaBox5Tex; -#endif - -#define dgWorldMapAreaBox6Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapAreaBox6Tex[] = dgWorldMapAreaBox6Tex; -#else -static const char gWorldMapAreaBox6Tex[] __attribute__((aligned (2))) = dgWorldMapAreaBox6Tex; -#endif - -#define dgWorldMapAreaBox7Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapAreaBox7Tex[] = dgWorldMapAreaBox7Tex; -#else -static const char gWorldMapAreaBox7Tex[] __attribute__((aligned (2))) = dgWorldMapAreaBox7Tex; -#endif - -#define dgWorldMapAreaBox8Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapAreaBox8Tex[] = dgWorldMapAreaBox8Tex; -#else -static const char gWorldMapAreaBox8Tex[] __attribute__((aligned (2))) = dgWorldMapAreaBox8Tex; -#endif - -#define dgWorldMapArrowTex "__OTR__textures/icon_item_field_static/gWorldMapArrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapArrowTex[] = dgWorldMapArrowTex; -#else -static const char gWorldMapArrowTex[] __attribute__((aligned (2))) = dgWorldMapArrowTex; -#endif - -#define dgWorldMapCloud1Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud1Tex[] = dgWorldMapCloud1Tex; -#else -static const char gWorldMapCloud1Tex[] __attribute__((aligned (2))) = dgWorldMapCloud1Tex; -#endif - -#define dgWorldMapCloud2Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud2Tex[] = dgWorldMapCloud2Tex; -#else -static const char gWorldMapCloud2Tex[] __attribute__((aligned (2))) = dgWorldMapCloud2Tex; -#endif - -#define dgWorldMapCloud3Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud3Tex[] = dgWorldMapCloud3Tex; -#else -static const char gWorldMapCloud3Tex[] __attribute__((aligned (2))) = dgWorldMapCloud3Tex; -#endif - -#define dgWorldMapCloud4Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud4Tex[] = dgWorldMapCloud4Tex; -#else -static const char gWorldMapCloud4Tex[] __attribute__((aligned (2))) = dgWorldMapCloud4Tex; -#endif - -#define dgWorldMapCloud5Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud5Tex[] = dgWorldMapCloud5Tex; -#else -static const char gWorldMapCloud5Tex[] __attribute__((aligned (2))) = dgWorldMapCloud5Tex; -#endif - -#define dgWorldMapCloud6Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud6Tex[] = dgWorldMapCloud6Tex; -#else -static const char gWorldMapCloud6Tex[] __attribute__((aligned (2))) = dgWorldMapCloud6Tex; -#endif - -#define dgWorldMapCloud7Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud7Tex[] = dgWorldMapCloud7Tex; -#else -static const char gWorldMapCloud7Tex[] __attribute__((aligned (2))) = dgWorldMapCloud7Tex; -#endif - -#define dgWorldMapCloud8Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud8Tex[] = dgWorldMapCloud8Tex; -#else -static const char gWorldMapCloud8Tex[] __attribute__((aligned (2))) = dgWorldMapCloud8Tex; -#endif - -#define dgWorldMapCloud9Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud9Tex[] = dgWorldMapCloud9Tex; -#else -static const char gWorldMapCloud9Tex[] __attribute__((aligned (2))) = dgWorldMapCloud9Tex; -#endif - -#define dgWorldMapCloud10Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud10Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud10Tex[] = dgWorldMapCloud10Tex; -#else -static const char gWorldMapCloud10Tex[] __attribute__((aligned (2))) = dgWorldMapCloud10Tex; -#endif - -#define dgWorldMapCloud11Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud11Tex[] = dgWorldMapCloud11Tex; -#else -static const char gWorldMapCloud11Tex[] __attribute__((aligned (2))) = dgWorldMapCloud11Tex; -#endif - -#define dgWorldMapCloud12Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud12Tex[] = dgWorldMapCloud12Tex; -#else -static const char gWorldMapCloud12Tex[] __attribute__((aligned (2))) = dgWorldMapCloud12Tex; -#endif - -#define dgWorldMapCloud13Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud13Tex[] = dgWorldMapCloud13Tex; -#else -static const char gWorldMapCloud13Tex[] __attribute__((aligned (2))) = dgWorldMapCloud13Tex; -#endif - -#define dgWorldMapCloud14Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud14Tex[] = dgWorldMapCloud14Tex; -#else -static const char gWorldMapCloud14Tex[] __attribute__((aligned (2))) = dgWorldMapCloud14Tex; -#endif - -#define dgWorldMapCloud15Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud15Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud15Tex[] = dgWorldMapCloud15Tex; -#else -static const char gWorldMapCloud15Tex[] __attribute__((aligned (2))) = dgWorldMapCloud15Tex; -#endif - -#define dgWorldMapCloud16Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud16Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWorldMapCloud16Tex[] = dgWorldMapCloud16Tex; -#else -static const char gWorldMapCloud16Tex[] __attribute__((aligned (2))) = dgWorldMapCloud16Tex; -#endif - +#include "align_asset_macro.h" + +#define dgWorldMapImageTex "__OTR__textures/icon_item_field_static/gWorldMapImageTex" +static const ALIGN_ASSET(2) char gWorldMapImageTex[] = dgWorldMapImageTex; + +#define dgWorldMapImageTLUT "__OTR__textures/icon_item_field_static/gWorldMapImageTLUT" +static const ALIGN_ASSET(2) char gWorldMapImageTLUT[] = dgWorldMapImageTLUT; + +#define dgWorldMapDotTex "__OTR__textures/icon_item_field_static/gWorldMapDotTex" +static const ALIGN_ASSET(2) char gWorldMapDotTex[] = dgWorldMapDotTex; + +#define dgWorldMapAreaBox1Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox1Tex" +static const ALIGN_ASSET(2) char gWorldMapAreaBox1Tex[] = dgWorldMapAreaBox1Tex; + +#define dgWorldMapAreaBox2Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox2Tex" +static const ALIGN_ASSET(2) char gWorldMapAreaBox2Tex[] = dgWorldMapAreaBox2Tex; + +#define dgWorldMapAreaBox3Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox3Tex" +static const ALIGN_ASSET(2) char gWorldMapAreaBox3Tex[] = dgWorldMapAreaBox3Tex; + +#define dgWorldMapAreaBox4Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox4Tex" +static const ALIGN_ASSET(2) char gWorldMapAreaBox4Tex[] = dgWorldMapAreaBox4Tex; + +#define dgWorldMapAreaBox5Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox5Tex" +static const ALIGN_ASSET(2) char gWorldMapAreaBox5Tex[] = dgWorldMapAreaBox5Tex; + +#define dgWorldMapAreaBox6Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox6Tex" +static const ALIGN_ASSET(2) char gWorldMapAreaBox6Tex[] = dgWorldMapAreaBox6Tex; + +#define dgWorldMapAreaBox7Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox7Tex" +static const ALIGN_ASSET(2) char gWorldMapAreaBox7Tex[] = dgWorldMapAreaBox7Tex; + +#define dgWorldMapAreaBox8Tex "__OTR__textures/icon_item_field_static/gWorldMapAreaBox8Tex" +static const ALIGN_ASSET(2) char gWorldMapAreaBox8Tex[] = dgWorldMapAreaBox8Tex; + +#define dgWorldMapArrowTex "__OTR__textures/icon_item_field_static/gWorldMapArrowTex" +static const ALIGN_ASSET(2) char gWorldMapArrowTex[] = dgWorldMapArrowTex; + +#define dgWorldMapCloud1Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud1Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud1Tex[] = dgWorldMapCloud1Tex; + +#define dgWorldMapCloud2Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud2Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud2Tex[] = dgWorldMapCloud2Tex; + +#define dgWorldMapCloud3Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud3Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud3Tex[] = dgWorldMapCloud3Tex; + +#define dgWorldMapCloud4Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud4Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud4Tex[] = dgWorldMapCloud4Tex; + +#define dgWorldMapCloud5Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud5Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud5Tex[] = dgWorldMapCloud5Tex; + +#define dgWorldMapCloud6Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud6Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud6Tex[] = dgWorldMapCloud6Tex; + +#define dgWorldMapCloud7Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud7Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud7Tex[] = dgWorldMapCloud7Tex; + +#define dgWorldMapCloud8Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud8Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud8Tex[] = dgWorldMapCloud8Tex; + +#define dgWorldMapCloud9Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud9Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud9Tex[] = dgWorldMapCloud9Tex; + +#define dgWorldMapCloud10Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud10Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud10Tex[] = dgWorldMapCloud10Tex; + +#define dgWorldMapCloud11Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud11Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud11Tex[] = dgWorldMapCloud11Tex; + +#define dgWorldMapCloud12Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud12Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud12Tex[] = dgWorldMapCloud12Tex; + +#define dgWorldMapCloud13Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud13Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud13Tex[] = dgWorldMapCloud13Tex; + +#define dgWorldMapCloud14Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud14Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud14Tex[] = dgWorldMapCloud14Tex; + +#define dgWorldMapCloud15Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud15Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud15Tex[] = dgWorldMapCloud15Tex; + +#define dgWorldMapCloud16Tex "__OTR__textures/icon_item_field_static/gWorldMapCloud16Tex" +static const ALIGN_ASSET(2) char gWorldMapCloud16Tex[] = dgWorldMapCloud16Tex; \ No newline at end of file diff --git a/soh/assets/textures/icon_item_fra_static/icon_item_fra_static.h b/soh/assets/textures/icon_item_fra_static/icon_item_fra_static.h index 903566141..c0149d5e2 100644 --- a/soh/assets/textures/icon_item_fra_static/icon_item_fra_static.h +++ b/soh/assets/textures/icon_item_fra_static/icon_item_fra_static.h @@ -1,233 +1,102 @@ #pragma once -#define dgPauseDekuTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseDekuTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseDekuTitleFRATex[] = dgPauseDekuTitleFRATex; -#else -static const char gPauseDekuTitleFRATex[] __attribute__((aligned (2))) = dgPauseDekuTitleFRATex; -#endif - -#define dgPauseDodongoTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseDodongoTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseDodongoTitleFRATex[] = dgPauseDodongoTitleFRATex; -#else -static const char gPauseDodongoTitleFRATex[] __attribute__((aligned (2))) = dgPauseDodongoTitleFRATex; -#endif - -#define dgPauseJabuTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseJabuTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseJabuTitleFRATex[] = dgPauseJabuTitleFRATex; -#else -static const char gPauseJabuTitleFRATex[] __attribute__((aligned (2))) = dgPauseJabuTitleFRATex; -#endif - -#define dgPauseForestTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseForestTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseForestTitleFRATex[] = dgPauseForestTitleFRATex; -#else -static const char gPauseForestTitleFRATex[] __attribute__((aligned (2))) = dgPauseForestTitleFRATex; -#endif - -#define dgPauseFireTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseFireTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseFireTitleFRATex[] = dgPauseFireTitleFRATex; -#else -static const char gPauseFireTitleFRATex[] __attribute__((aligned (2))) = dgPauseFireTitleFRATex; -#endif - -#define dgPauseWaterTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseWaterTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseWaterTitleFRATex[] = dgPauseWaterTitleFRATex; -#else -static const char gPauseWaterTitleFRATex[] __attribute__((aligned (2))) = dgPauseWaterTitleFRATex; -#endif - -#define dgPauseSpiritTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseSpiritTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSpiritTitleFRATex[] = dgPauseSpiritTitleFRATex; -#else -static const char gPauseSpiritTitleFRATex[] __attribute__((aligned (2))) = dgPauseSpiritTitleFRATex; -#endif - -#define dgPauseShadowTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseShadowTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseShadowTitleFRATex[] = dgPauseShadowTitleFRATex; -#else -static const char gPauseShadowTitleFRATex[] __attribute__((aligned (2))) = dgPauseShadowTitleFRATex; -#endif - -#define dgPauseBotWTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseBotWTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseBotWTitleFRATex[] = dgPauseBotWTitleFRATex; -#else -static const char gPauseBotWTitleFRATex[] __attribute__((aligned (2))) = dgPauseBotWTitleFRATex; -#endif - -#define dgPauseIceCavernTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseIceCavernTitleFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseIceCavernTitleFRATex[] = dgPauseIceCavernTitleFRATex; -#else -static const char gPauseIceCavernTitleFRATex[] __attribute__((aligned (2))) = dgPauseIceCavernTitleFRATex; -#endif - -#define dgPauseToEquipFRATex "__OTR__textures/icon_item_fra_static/gPauseToEquipFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToEquipFRATex[] = dgPauseToEquipFRATex; -#else -static const char gPauseToEquipFRATex[] __attribute__((aligned (2))) = dgPauseToEquipFRATex; -#endif - -#define dgPauseToDecideFRATex "__OTR__textures/icon_item_fra_static/gPauseToDecideFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToDecideFRATex[] = dgPauseToDecideFRATex; -#else -static const char gPauseToDecideFRATex[] __attribute__((aligned (2))) = dgPauseToDecideFRATex; -#endif - -#define dgPauseToPlayMelodyFRATex "__OTR__textures/icon_item_fra_static/gPauseToPlayMelodyFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToPlayMelodyFRATex[] = dgPauseToPlayMelodyFRATex; -#else -static const char gPauseToPlayMelodyFRATex[] __attribute__((aligned (2))) = dgPauseToPlayMelodyFRATex; -#endif - -#define dgPauseToSelectItemFRATex "__OTR__textures/icon_item_fra_static/gPauseToSelectItemFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToSelectItemFRATex[] = dgPauseToSelectItemFRATex; -#else -static const char gPauseToSelectItemFRATex[] __attribute__((aligned (2))) = dgPauseToSelectItemFRATex; -#endif - -#define dgPauseToMapFRATex "__OTR__textures/icon_item_fra_static/gPauseToMapFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToMapFRATex[] = dgPauseToMapFRATex; -#else -static const char gPauseToMapFRATex[] __attribute__((aligned (2))) = dgPauseToMapFRATex; -#endif - -#define dgPauseToQuestStatusFRATex "__OTR__textures/icon_item_fra_static/gPauseToQuestStatusFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToQuestStatusFRATex[] = dgPauseToQuestStatusFRATex; -#else -static const char gPauseToQuestStatusFRATex[] __attribute__((aligned (2))) = dgPauseToQuestStatusFRATex; -#endif - -#define dgPauseToEquipmentFRATex "__OTR__textures/icon_item_fra_static/gPauseToEquipmentFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToEquipmentFRATex[] = dgPauseToEquipmentFRATex; -#else -static const char gPauseToEquipmentFRATex[] __attribute__((aligned (2))) = dgPauseToEquipmentFRATex; -#endif - -#define dgPauseSavePromptFRATex "__OTR__textures/icon_item_fra_static/gPauseSavePromptFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSavePromptFRATex[] = dgPauseSavePromptFRATex; -#else -static const char gPauseSavePromptFRATex[] __attribute__((aligned (2))) = dgPauseSavePromptFRATex; -#endif - -#define dgPauseSaveConfirmationFRATex "__OTR__textures/icon_item_fra_static/gPauseSaveConfirmationFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSaveConfirmationFRATex[] = dgPauseSaveConfirmationFRATex; -#else -static const char gPauseSaveConfirmationFRATex[] __attribute__((aligned (2))) = dgPauseSaveConfirmationFRATex; -#endif - -#define dgPauseYesFRATex "__OTR__textures/icon_item_fra_static/gPauseYesFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseYesFRATex[] = dgPauseYesFRATex; -#else -static const char gPauseYesFRATex[] __attribute__((aligned (2))) = dgPauseYesFRATex; -#endif - -#define dgPauseNoFRATex "__OTR__textures/icon_item_fra_static/gPauseNoFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseNoFRATex[] = dgPauseNoFRATex; -#else -static const char gPauseNoFRATex[] __attribute__((aligned (2))) = dgPauseNoFRATex; -#endif - -#define dgPauseCurrentPositionFRATex "__OTR__textures/icon_item_fra_static/gPauseCurrentPositionFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseCurrentPositionFRATex[] = dgPauseCurrentPositionFRATex; -#else -static const char gPauseCurrentPositionFRATex[] __attribute__((aligned (2))) = dgPauseCurrentPositionFRATex; -#endif - -#define dgPauseEquipment00FRATex "__OTR__textures/icon_item_fra_static/gPauseEquipment00FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment00FRATex[] = dgPauseEquipment00FRATex; -#else -static const char gPauseEquipment00FRATex[] __attribute__((aligned (2))) = dgPauseEquipment00FRATex; -#endif - -#define dgPauseEquipment10FRATex "__OTR__textures/icon_item_fra_static/gPauseEquipment10FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment10FRATex[] = dgPauseEquipment10FRATex; -#else -static const char gPauseEquipment10FRATex[] __attribute__((aligned (2))) = dgPauseEquipment10FRATex; -#endif - -#define dgPauseEquipment20FRATex "__OTR__textures/icon_item_fra_static/gPauseEquipment20FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment20FRATex[] = dgPauseEquipment20FRATex; -#else -static const char gPauseEquipment20FRATex[] __attribute__((aligned (2))) = dgPauseEquipment20FRATex; -#endif - -#define dgPauseSelectItem00FRATex "__OTR__textures/icon_item_fra_static/gPauseSelectItem00FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem00FRATex[] = dgPauseSelectItem00FRATex; -#else -static const char gPauseSelectItem00FRATex[] __attribute__((aligned (2))) = dgPauseSelectItem00FRATex; -#endif - -#define dgPauseSelectItem10FRATex "__OTR__textures/icon_item_fra_static/gPauseSelectItem10FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem10FRATex[] = dgPauseSelectItem10FRATex; -#else -static const char gPauseSelectItem10FRATex[] __attribute__((aligned (2))) = dgPauseSelectItem10FRATex; -#endif - -#define dgPauseSelectItem20FRATex "__OTR__textures/icon_item_fra_static/gPauseSelectItem20FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem20FRATex[] = dgPauseSelectItem20FRATex; -#else -static const char gPauseSelectItem20FRATex[] __attribute__((aligned (2))) = dgPauseSelectItem20FRATex; -#endif - -#define dgPauseMap10FRATex "__OTR__textures/icon_item_fra_static/gPauseMap10FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap10FRATex[] = dgPauseMap10FRATex; -#else -static const char gPauseMap10FRATex[] __attribute__((aligned (2))) = dgPauseMap10FRATex; -#endif - -#define dgPauseQuestStatus10FRATex "__OTR__textures/icon_item_fra_static/gPauseQuestStatus10FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus10FRATex[] = dgPauseQuestStatus10FRATex; -#else -static const char gPauseQuestStatus10FRATex[] __attribute__((aligned (2))) = dgPauseQuestStatus10FRATex; -#endif - -#define dgPauseSave00FRATex "__OTR__textures/icon_item_fra_static/gPauseSave00FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave00FRATex[] = dgPauseSave00FRATex; -#else -static const char gPauseSave00FRATex[] __attribute__((aligned (2))) = dgPauseSave00FRATex; -#endif - -#define dgPauseSave10FRATex "__OTR__textures/icon_item_fra_static/gPauseSave10FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave10FRATex[] = dgPauseSave10FRATex; -#else -static const char gPauseSave10FRATex[] __attribute__((aligned (2))) = dgPauseSave10FRATex; -#endif - -#define dgPauseSave20FRATex "__OTR__textures/icon_item_fra_static/gPauseSave20FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave20FRATex[] = dgPauseSave20FRATex; -#else -static const char gPauseSave20FRATex[] __attribute__((aligned (2))) = dgPauseSave20FRATex; -#endif - +#include "align_asset_macro.h" + +#define dgPauseDekuTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseDekuTitleFRATex" +static const ALIGN_ASSET(2) char gPauseDekuTitleFRATex[] = dgPauseDekuTitleFRATex; + +#define dgPauseDodongoTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseDodongoTitleFRATex" +static const ALIGN_ASSET(2) char gPauseDodongoTitleFRATex[] = dgPauseDodongoTitleFRATex; + +#define dgPauseJabuTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseJabuTitleFRATex" +static const ALIGN_ASSET(2) char gPauseJabuTitleFRATex[] = dgPauseJabuTitleFRATex; + +#define dgPauseForestTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseForestTitleFRATex" +static const ALIGN_ASSET(2) char gPauseForestTitleFRATex[] = dgPauseForestTitleFRATex; + +#define dgPauseFireTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseFireTitleFRATex" +static const ALIGN_ASSET(2) char gPauseFireTitleFRATex[] = dgPauseFireTitleFRATex; + +#define dgPauseWaterTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseWaterTitleFRATex" +static const ALIGN_ASSET(2) char gPauseWaterTitleFRATex[] = dgPauseWaterTitleFRATex; + +#define dgPauseSpiritTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseSpiritTitleFRATex" +static const ALIGN_ASSET(2) char gPauseSpiritTitleFRATex[] = dgPauseSpiritTitleFRATex; + +#define dgPauseShadowTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseShadowTitleFRATex" +static const ALIGN_ASSET(2) char gPauseShadowTitleFRATex[] = dgPauseShadowTitleFRATex; + +#define dgPauseBotWTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseBotWTitleFRATex" +static const ALIGN_ASSET(2) char gPauseBotWTitleFRATex[] = dgPauseBotWTitleFRATex; + +#define dgPauseIceCavernTitleFRATex "__OTR__textures/icon_item_fra_static/gPauseIceCavernTitleFRATex" +static const ALIGN_ASSET(2) char gPauseIceCavernTitleFRATex[] = dgPauseIceCavernTitleFRATex; + +#define dgPauseToEquipFRATex "__OTR__textures/icon_item_fra_static/gPauseToEquipFRATex" +static const ALIGN_ASSET(2) char gPauseToEquipFRATex[] = dgPauseToEquipFRATex; + +#define dgPauseToDecideFRATex "__OTR__textures/icon_item_fra_static/gPauseToDecideFRATex" +static const ALIGN_ASSET(2) char gPauseToDecideFRATex[] = dgPauseToDecideFRATex; + +#define dgPauseToPlayMelodyFRATex "__OTR__textures/icon_item_fra_static/gPauseToPlayMelodyFRATex" +static const ALIGN_ASSET(2) char gPauseToPlayMelodyFRATex[] = dgPauseToPlayMelodyFRATex; + +#define dgPauseToSelectItemFRATex "__OTR__textures/icon_item_fra_static/gPauseToSelectItemFRATex" +static const ALIGN_ASSET(2) char gPauseToSelectItemFRATex[] = dgPauseToSelectItemFRATex; + +#define dgPauseToMapFRATex "__OTR__textures/icon_item_fra_static/gPauseToMapFRATex" +static const ALIGN_ASSET(2) char gPauseToMapFRATex[] = dgPauseToMapFRATex; + +#define dgPauseToQuestStatusFRATex "__OTR__textures/icon_item_fra_static/gPauseToQuestStatusFRATex" +static const ALIGN_ASSET(2) char gPauseToQuestStatusFRATex[] = dgPauseToQuestStatusFRATex; + +#define dgPauseToEquipmentFRATex "__OTR__textures/icon_item_fra_static/gPauseToEquipmentFRATex" +static const ALIGN_ASSET(2) char gPauseToEquipmentFRATex[] = dgPauseToEquipmentFRATex; + +#define dgPauseSavePromptFRATex "__OTR__textures/icon_item_fra_static/gPauseSavePromptFRATex" +static const ALIGN_ASSET(2) char gPauseSavePromptFRATex[] = dgPauseSavePromptFRATex; + +#define dgPauseSaveConfirmationFRATex "__OTR__textures/icon_item_fra_static/gPauseSaveConfirmationFRATex" +static const ALIGN_ASSET(2) char gPauseSaveConfirmationFRATex[] = dgPauseSaveConfirmationFRATex; + +#define dgPauseYesFRATex "__OTR__textures/icon_item_fra_static/gPauseYesFRATex" +static const ALIGN_ASSET(2) char gPauseYesFRATex[] = dgPauseYesFRATex; + +#define dgPauseNoFRATex "__OTR__textures/icon_item_fra_static/gPauseNoFRATex" +static const ALIGN_ASSET(2) char gPauseNoFRATex[] = dgPauseNoFRATex; + +#define dgPauseCurrentPositionFRATex "__OTR__textures/icon_item_fra_static/gPauseCurrentPositionFRATex" +static const ALIGN_ASSET(2) char gPauseCurrentPositionFRATex[] = dgPauseCurrentPositionFRATex; + +#define dgPauseEquipment00FRATex "__OTR__textures/icon_item_fra_static/gPauseEquipment00FRATex" +static const ALIGN_ASSET(2) char gPauseEquipment00FRATex[] = dgPauseEquipment00FRATex; + +#define dgPauseEquipment10FRATex "__OTR__textures/icon_item_fra_static/gPauseEquipment10FRATex" +static const ALIGN_ASSET(2) char gPauseEquipment10FRATex[] = dgPauseEquipment10FRATex; + +#define dgPauseEquipment20FRATex "__OTR__textures/icon_item_fra_static/gPauseEquipment20FRATex" +static const ALIGN_ASSET(2) char gPauseEquipment20FRATex[] = dgPauseEquipment20FRATex; + +#define dgPauseSelectItem00FRATex "__OTR__textures/icon_item_fra_static/gPauseSelectItem00FRATex" +static const ALIGN_ASSET(2) char gPauseSelectItem00FRATex[] = dgPauseSelectItem00FRATex; + +#define dgPauseSelectItem10FRATex "__OTR__textures/icon_item_fra_static/gPauseSelectItem10FRATex" +static const ALIGN_ASSET(2) char gPauseSelectItem10FRATex[] = dgPauseSelectItem10FRATex; + +#define dgPauseSelectItem20FRATex "__OTR__textures/icon_item_fra_static/gPauseSelectItem20FRATex" +static const ALIGN_ASSET(2) char gPauseSelectItem20FRATex[] = dgPauseSelectItem20FRATex; + +#define dgPauseMap10FRATex "__OTR__textures/icon_item_fra_static/gPauseMap10FRATex" +static const ALIGN_ASSET(2) char gPauseMap10FRATex[] = dgPauseMap10FRATex; + +#define dgPauseQuestStatus10FRATex "__OTR__textures/icon_item_fra_static/gPauseQuestStatus10FRATex" +static const ALIGN_ASSET(2) char gPauseQuestStatus10FRATex[] = dgPauseQuestStatus10FRATex; + +#define dgPauseSave00FRATex "__OTR__textures/icon_item_fra_static/gPauseSave00FRATex" +static const ALIGN_ASSET(2) char gPauseSave00FRATex[] = dgPauseSave00FRATex; + +#define dgPauseSave10FRATex "__OTR__textures/icon_item_fra_static/gPauseSave10FRATex" +static const ALIGN_ASSET(2) char gPauseSave10FRATex[] = dgPauseSave10FRATex; + +#define dgPauseSave20FRATex "__OTR__textures/icon_item_fra_static/gPauseSave20FRATex" +static const ALIGN_ASSET(2) char gPauseSave20FRATex[] = dgPauseSave20FRATex; \ No newline at end of file diff --git a/soh/assets/textures/icon_item_gameover_static/icon_item_gameover_static.h b/soh/assets/textures/icon_item_gameover_static/icon_item_gameover_static.h index 82a938b51..12f7def2e 100644 --- a/soh/assets/textures/icon_item_gameover_static/icon_item_gameover_static.h +++ b/soh/assets/textures/icon_item_gameover_static/icon_item_gameover_static.h @@ -1,51 +1,24 @@ #pragma once -#define dgGameOverP1Tex "__OTR__textures/icon_item_gameover_static/gGameOverP1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGameOverP1Tex[] = dgGameOverP1Tex; -#else -static const char gGameOverP1Tex[] __attribute__((aligned (2))) = dgGameOverP1Tex; -#endif - -#define dgGameOverP2Tex "__OTR__textures/icon_item_gameover_static/gGameOverP2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGameOverP2Tex[] = dgGameOverP2Tex; -#else -static const char gGameOverP2Tex[] __attribute__((aligned (2))) = dgGameOverP2Tex; -#endif - -#define dgGameOverP3Tex "__OTR__textures/icon_item_gameover_static/gGameOverP3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGameOverP3Tex[] = dgGameOverP3Tex; -#else -static const char gGameOverP3Tex[] __attribute__((aligned (2))) = dgGameOverP3Tex; -#endif - -#define dgGameOverMaskTex "__OTR__textures/icon_item_gameover_static/gGameOverMaskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGameOverMaskTex[] = dgGameOverMaskTex; -#else -static const char gGameOverMaskTex[] __attribute__((aligned (2))) = dgGameOverMaskTex; -#endif - -#define dgContinuePlayingENGTex "__OTR__textures/icon_item_gameover_static/gContinuePlayingENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gContinuePlayingENGTex[] = dgContinuePlayingENGTex; -#else -static const char gContinuePlayingENGTex[] __attribute__((aligned (2))) = dgContinuePlayingENGTex; -#endif - -#define dgContinuePlayingGERTex "__OTR__textures/icon_item_gameover_static/gContinuePlayingGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gContinuePlayingGERTex[] = dgContinuePlayingGERTex; -#else -static const char gContinuePlayingGERTex[] __attribute__((aligned (2))) = dgContinuePlayingGERTex; -#endif - -#define dgContinuePlayingFRATex "__OTR__textures/icon_item_gameover_static/gContinuePlayingFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gContinuePlayingFRATex[] = dgContinuePlayingFRATex; -#else -static const char gContinuePlayingFRATex[] __attribute__((aligned (2))) = dgContinuePlayingFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGameOverP1Tex "__OTR__textures/icon_item_gameover_static/gGameOverP1Tex" +static const ALIGN_ASSET(2) char gGameOverP1Tex[] = dgGameOverP1Tex; + +#define dgGameOverP2Tex "__OTR__textures/icon_item_gameover_static/gGameOverP2Tex" +static const ALIGN_ASSET(2) char gGameOverP2Tex[] = dgGameOverP2Tex; + +#define dgGameOverP3Tex "__OTR__textures/icon_item_gameover_static/gGameOverP3Tex" +static const ALIGN_ASSET(2) char gGameOverP3Tex[] = dgGameOverP3Tex; + +#define dgGameOverMaskTex "__OTR__textures/icon_item_gameover_static/gGameOverMaskTex" +static const ALIGN_ASSET(2) char gGameOverMaskTex[] = dgGameOverMaskTex; + +#define dgContinuePlayingENGTex "__OTR__textures/icon_item_gameover_static/gContinuePlayingENGTex" +static const ALIGN_ASSET(2) char gContinuePlayingENGTex[] = dgContinuePlayingENGTex; + +#define dgContinuePlayingGERTex "__OTR__textures/icon_item_gameover_static/gContinuePlayingGERTex" +static const ALIGN_ASSET(2) char gContinuePlayingGERTex[] = dgContinuePlayingGERTex; + +#define dgContinuePlayingFRATex "__OTR__textures/icon_item_gameover_static/gContinuePlayingFRATex" +static const ALIGN_ASSET(2) char gContinuePlayingFRATex[] = dgContinuePlayingFRATex; \ No newline at end of file diff --git a/soh/assets/textures/icon_item_ger_static/icon_item_ger_static.h b/soh/assets/textures/icon_item_ger_static/icon_item_ger_static.h index 962a43767..1867dc9b6 100644 --- a/soh/assets/textures/icon_item_ger_static/icon_item_ger_static.h +++ b/soh/assets/textures/icon_item_ger_static/icon_item_ger_static.h @@ -1,226 +1,99 @@ #pragma once -#define dgPauseDekuTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseDekuTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseDekuTitleGERTex[] = dgPauseDekuTitleGERTex; -#else -static const char gPauseDekuTitleGERTex[] __attribute__((aligned (2))) = dgPauseDekuTitleGERTex; -#endif - -#define dgPauseDodongoTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseDodongoTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseDodongoTitleGERTex[] = dgPauseDodongoTitleGERTex; -#else -static const char gPauseDodongoTitleGERTex[] __attribute__((aligned (2))) = dgPauseDodongoTitleGERTex; -#endif - -#define dgPauseJabuTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseJabuTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseJabuTitleGERTex[] = dgPauseJabuTitleGERTex; -#else -static const char gPauseJabuTitleGERTex[] __attribute__((aligned (2))) = dgPauseJabuTitleGERTex; -#endif - -#define dgPauseForestTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseForestTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseForestTitleGERTex[] = dgPauseForestTitleGERTex; -#else -static const char gPauseForestTitleGERTex[] __attribute__((aligned (2))) = dgPauseForestTitleGERTex; -#endif - -#define dgPauseFireTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseFireTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseFireTitleGERTex[] = dgPauseFireTitleGERTex; -#else -static const char gPauseFireTitleGERTex[] __attribute__((aligned (2))) = dgPauseFireTitleGERTex; -#endif - -#define dgPauseWaterTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseWaterTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseWaterTitleGERTex[] = dgPauseWaterTitleGERTex; -#else -static const char gPauseWaterTitleGERTex[] __attribute__((aligned (2))) = dgPauseWaterTitleGERTex; -#endif - -#define dgPauseSpiritTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseSpiritTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSpiritTitleGERTex[] = dgPauseSpiritTitleGERTex; -#else -static const char gPauseSpiritTitleGERTex[] __attribute__((aligned (2))) = dgPauseSpiritTitleGERTex; -#endif - -#define dgPauseShadowTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseShadowTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseShadowTitleGERTex[] = dgPauseShadowTitleGERTex; -#else -static const char gPauseShadowTitleGERTex[] __attribute__((aligned (2))) = dgPauseShadowTitleGERTex; -#endif - -#define dgPauseBotWTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseBotWTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseBotWTitleGERTex[] = dgPauseBotWTitleGERTex; -#else -static const char gPauseBotWTitleGERTex[] __attribute__((aligned (2))) = dgPauseBotWTitleGERTex; -#endif - -#define dgPauseIceCavernTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseIceCavernTitleGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseIceCavernTitleGERTex[] = dgPauseIceCavernTitleGERTex; -#else -static const char gPauseIceCavernTitleGERTex[] __attribute__((aligned (2))) = dgPauseIceCavernTitleGERTex; -#endif - -#define dgPauseToEquipGERTex "__OTR__textures/icon_item_ger_static/gPauseToEquipGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToEquipGERTex[] = dgPauseToEquipGERTex; -#else -static const char gPauseToEquipGERTex[] __attribute__((aligned (2))) = dgPauseToEquipGERTex; -#endif - -#define dgPauseToDecideGERTex "__OTR__textures/icon_item_ger_static/gPauseToDecideGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToDecideGERTex[] = dgPauseToDecideGERTex; -#else -static const char gPauseToDecideGERTex[] __attribute__((aligned (2))) = dgPauseToDecideGERTex; -#endif - -#define dgPauseToPlayMelodyGERTex "__OTR__textures/icon_item_ger_static/gPauseToPlayMelodyGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToPlayMelodyGERTex[] = dgPauseToPlayMelodyGERTex; -#else -static const char gPauseToPlayMelodyGERTex[] __attribute__((aligned (2))) = dgPauseToPlayMelodyGERTex; -#endif - -#define dgPauseToSelectItemGERTex "__OTR__textures/icon_item_ger_static/gPauseToSelectItemGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToSelectItemGERTex[] = dgPauseToSelectItemGERTex; -#else -static const char gPauseToSelectItemGERTex[] __attribute__((aligned (2))) = dgPauseToSelectItemGERTex; -#endif - -#define dgPauseToMapGERTex "__OTR__textures/icon_item_ger_static/gPauseToMapGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToMapGERTex[] = dgPauseToMapGERTex; -#else -static const char gPauseToMapGERTex[] __attribute__((aligned (2))) = dgPauseToMapGERTex; -#endif - -#define dgPauseToQuestStatusGERTex "__OTR__textures/icon_item_ger_static/gPauseToQuestStatusGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToQuestStatusGERTex[] = dgPauseToQuestStatusGERTex; -#else -static const char gPauseToQuestStatusGERTex[] __attribute__((aligned (2))) = dgPauseToQuestStatusGERTex; -#endif - -#define dgPauseToEquipmentGERTex "__OTR__textures/icon_item_ger_static/gPauseToEquipmentGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToEquipmentGERTex[] = dgPauseToEquipmentGERTex; -#else -static const char gPauseToEquipmentGERTex[] __attribute__((aligned (2))) = dgPauseToEquipmentGERTex; -#endif - -#define dgPauseSavePromptGERTex "__OTR__textures/icon_item_ger_static/gPauseSavePromptGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSavePromptGERTex[] = dgPauseSavePromptGERTex; -#else -static const char gPauseSavePromptGERTex[] __attribute__((aligned (2))) = dgPauseSavePromptGERTex; -#endif - -#define dgPauseSaveConfirmationGERTex "__OTR__textures/icon_item_ger_static/gPauseSaveConfirmationGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSaveConfirmationGERTex[] = dgPauseSaveConfirmationGERTex; -#else -static const char gPauseSaveConfirmationGERTex[] __attribute__((aligned (2))) = dgPauseSaveConfirmationGERTex; -#endif - -#define dgPauseYesGERTex "__OTR__textures/icon_item_ger_static/gPauseYesGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseYesGERTex[] = dgPauseYesGERTex; -#else -static const char gPauseYesGERTex[] __attribute__((aligned (2))) = dgPauseYesGERTex; -#endif - -#define dgPauseNoGERTex "__OTR__textures/icon_item_ger_static/gPauseNoGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseNoGERTex[] = dgPauseNoGERTex; -#else -static const char gPauseNoGERTex[] __attribute__((aligned (2))) = dgPauseNoGERTex; -#endif - -#define dgPauseCurrentPositionGERTex "__OTR__textures/icon_item_ger_static/gPauseCurrentPositionGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseCurrentPositionGERTex[] = dgPauseCurrentPositionGERTex; -#else -static const char gPauseCurrentPositionGERTex[] __attribute__((aligned (2))) = dgPauseCurrentPositionGERTex; -#endif - -#define dgPauseEquipment00GERTex "__OTR__textures/icon_item_ger_static/gPauseEquipment00GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment00GERTex[] = dgPauseEquipment00GERTex; -#else -static const char gPauseEquipment00GERTex[] __attribute__((aligned (2))) = dgPauseEquipment00GERTex; -#endif - -#define dgPauseEquipment10GERTex "__OTR__textures/icon_item_ger_static/gPauseEquipment10GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment10GERTex[] = dgPauseEquipment10GERTex; -#else -static const char gPauseEquipment10GERTex[] __attribute__((aligned (2))) = dgPauseEquipment10GERTex; -#endif - -#define dgPauseEquipment20GERTex "__OTR__textures/icon_item_ger_static/gPauseEquipment20GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment20GERTex[] = dgPauseEquipment20GERTex; -#else -static const char gPauseEquipment20GERTex[] __attribute__((aligned (2))) = dgPauseEquipment20GERTex; -#endif - -#define dgPauseSelectItem00GERTex "__OTR__textures/icon_item_ger_static/gPauseSelectItem00GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem00GERTex[] = dgPauseSelectItem00GERTex; -#else -static const char gPauseSelectItem00GERTex[] __attribute__((aligned (2))) = dgPauseSelectItem00GERTex; -#endif - -#define dgPauseSelectItem10GERTex "__OTR__textures/icon_item_ger_static/gPauseSelectItem10GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem10GERTex[] = dgPauseSelectItem10GERTex; -#else -static const char gPauseSelectItem10GERTex[] __attribute__((aligned (2))) = dgPauseSelectItem10GERTex; -#endif - -#define dgPauseSelectItem20GERTex "__OTR__textures/icon_item_ger_static/gPauseSelectItem20GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem20GERTex[] = dgPauseSelectItem20GERTex; -#else -static const char gPauseSelectItem20GERTex[] __attribute__((aligned (2))) = dgPauseSelectItem20GERTex; -#endif - -#define dgPauseMap10GERTex "__OTR__textures/icon_item_ger_static/gPauseMap10GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap10GERTex[] = dgPauseMap10GERTex; -#else -static const char gPauseMap10GERTex[] __attribute__((aligned (2))) = dgPauseMap10GERTex; -#endif - -#define dgPauseQuestStatus10GERTex "__OTR__textures/icon_item_ger_static/gPauseQuestStatus10GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus10GERTex[] = dgPauseQuestStatus10GERTex; -#else -static const char gPauseQuestStatus10GERTex[] __attribute__((aligned (2))) = dgPauseQuestStatus10GERTex; -#endif - -#define dgPauseSave10GERTex "__OTR__textures/icon_item_ger_static/gPauseSave10GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave10GERTex[] = dgPauseSave10GERTex; -#else -static const char gPauseSave10GERTex[] __attribute__((aligned (2))) = dgPauseSave10GERTex; -#endif - -#define dgPauseSave20GERTex "__OTR__textures/icon_item_ger_static/gPauseSave20GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave20GERTex[] = dgPauseSave20GERTex; -#else -static const char gPauseSave20GERTex[] __attribute__((aligned (2))) = dgPauseSave20GERTex; -#endif - +#include "align_asset_macro.h" + +#define dgPauseDekuTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseDekuTitleGERTex" +static const ALIGN_ASSET(2) char gPauseDekuTitleGERTex[] = dgPauseDekuTitleGERTex; + +#define dgPauseDodongoTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseDodongoTitleGERTex" +static const ALIGN_ASSET(2) char gPauseDodongoTitleGERTex[] = dgPauseDodongoTitleGERTex; + +#define dgPauseJabuTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseJabuTitleGERTex" +static const ALIGN_ASSET(2) char gPauseJabuTitleGERTex[] = dgPauseJabuTitleGERTex; + +#define dgPauseForestTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseForestTitleGERTex" +static const ALIGN_ASSET(2) char gPauseForestTitleGERTex[] = dgPauseForestTitleGERTex; + +#define dgPauseFireTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseFireTitleGERTex" +static const ALIGN_ASSET(2) char gPauseFireTitleGERTex[] = dgPauseFireTitleGERTex; + +#define dgPauseWaterTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseWaterTitleGERTex" +static const ALIGN_ASSET(2) char gPauseWaterTitleGERTex[] = dgPauseWaterTitleGERTex; + +#define dgPauseSpiritTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseSpiritTitleGERTex" +static const ALIGN_ASSET(2) char gPauseSpiritTitleGERTex[] = dgPauseSpiritTitleGERTex; + +#define dgPauseShadowTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseShadowTitleGERTex" +static const ALIGN_ASSET(2) char gPauseShadowTitleGERTex[] = dgPauseShadowTitleGERTex; + +#define dgPauseBotWTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseBotWTitleGERTex" +static const ALIGN_ASSET(2) char gPauseBotWTitleGERTex[] = dgPauseBotWTitleGERTex; + +#define dgPauseIceCavernTitleGERTex "__OTR__textures/icon_item_ger_static/gPauseIceCavernTitleGERTex" +static const ALIGN_ASSET(2) char gPauseIceCavernTitleGERTex[] = dgPauseIceCavernTitleGERTex; + +#define dgPauseToEquipGERTex "__OTR__textures/icon_item_ger_static/gPauseToEquipGERTex" +static const ALIGN_ASSET(2) char gPauseToEquipGERTex[] = dgPauseToEquipGERTex; + +#define dgPauseToDecideGERTex "__OTR__textures/icon_item_ger_static/gPauseToDecideGERTex" +static const ALIGN_ASSET(2) char gPauseToDecideGERTex[] = dgPauseToDecideGERTex; + +#define dgPauseToPlayMelodyGERTex "__OTR__textures/icon_item_ger_static/gPauseToPlayMelodyGERTex" +static const ALIGN_ASSET(2) char gPauseToPlayMelodyGERTex[] = dgPauseToPlayMelodyGERTex; + +#define dgPauseToSelectItemGERTex "__OTR__textures/icon_item_ger_static/gPauseToSelectItemGERTex" +static const ALIGN_ASSET(2) char gPauseToSelectItemGERTex[] = dgPauseToSelectItemGERTex; + +#define dgPauseToMapGERTex "__OTR__textures/icon_item_ger_static/gPauseToMapGERTex" +static const ALIGN_ASSET(2) char gPauseToMapGERTex[] = dgPauseToMapGERTex; + +#define dgPauseToQuestStatusGERTex "__OTR__textures/icon_item_ger_static/gPauseToQuestStatusGERTex" +static const ALIGN_ASSET(2) char gPauseToQuestStatusGERTex[] = dgPauseToQuestStatusGERTex; + +#define dgPauseToEquipmentGERTex "__OTR__textures/icon_item_ger_static/gPauseToEquipmentGERTex" +static const ALIGN_ASSET(2) char gPauseToEquipmentGERTex[] = dgPauseToEquipmentGERTex; + +#define dgPauseSavePromptGERTex "__OTR__textures/icon_item_ger_static/gPauseSavePromptGERTex" +static const ALIGN_ASSET(2) char gPauseSavePromptGERTex[] = dgPauseSavePromptGERTex; + +#define dgPauseSaveConfirmationGERTex "__OTR__textures/icon_item_ger_static/gPauseSaveConfirmationGERTex" +static const ALIGN_ASSET(2) char gPauseSaveConfirmationGERTex[] = dgPauseSaveConfirmationGERTex; + +#define dgPauseYesGERTex "__OTR__textures/icon_item_ger_static/gPauseYesGERTex" +static const ALIGN_ASSET(2) char gPauseYesGERTex[] = dgPauseYesGERTex; + +#define dgPauseNoGERTex "__OTR__textures/icon_item_ger_static/gPauseNoGERTex" +static const ALIGN_ASSET(2) char gPauseNoGERTex[] = dgPauseNoGERTex; + +#define dgPauseCurrentPositionGERTex "__OTR__textures/icon_item_ger_static/gPauseCurrentPositionGERTex" +static const ALIGN_ASSET(2) char gPauseCurrentPositionGERTex[] = dgPauseCurrentPositionGERTex; + +#define dgPauseEquipment00GERTex "__OTR__textures/icon_item_ger_static/gPauseEquipment00GERTex" +static const ALIGN_ASSET(2) char gPauseEquipment00GERTex[] = dgPauseEquipment00GERTex; + +#define dgPauseEquipment10GERTex "__OTR__textures/icon_item_ger_static/gPauseEquipment10GERTex" +static const ALIGN_ASSET(2) char gPauseEquipment10GERTex[] = dgPauseEquipment10GERTex; + +#define dgPauseEquipment20GERTex "__OTR__textures/icon_item_ger_static/gPauseEquipment20GERTex" +static const ALIGN_ASSET(2) char gPauseEquipment20GERTex[] = dgPauseEquipment20GERTex; + +#define dgPauseSelectItem00GERTex "__OTR__textures/icon_item_ger_static/gPauseSelectItem00GERTex" +static const ALIGN_ASSET(2) char gPauseSelectItem00GERTex[] = dgPauseSelectItem00GERTex; + +#define dgPauseSelectItem10GERTex "__OTR__textures/icon_item_ger_static/gPauseSelectItem10GERTex" +static const ALIGN_ASSET(2) char gPauseSelectItem10GERTex[] = dgPauseSelectItem10GERTex; + +#define dgPauseSelectItem20GERTex "__OTR__textures/icon_item_ger_static/gPauseSelectItem20GERTex" +static const ALIGN_ASSET(2) char gPauseSelectItem20GERTex[] = dgPauseSelectItem20GERTex; + +#define dgPauseMap10GERTex "__OTR__textures/icon_item_ger_static/gPauseMap10GERTex" +static const ALIGN_ASSET(2) char gPauseMap10GERTex[] = dgPauseMap10GERTex; + +#define dgPauseQuestStatus10GERTex "__OTR__textures/icon_item_ger_static/gPauseQuestStatus10GERTex" +static const ALIGN_ASSET(2) char gPauseQuestStatus10GERTex[] = dgPauseQuestStatus10GERTex; + +#define dgPauseSave10GERTex "__OTR__textures/icon_item_ger_static/gPauseSave10GERTex" +static const ALIGN_ASSET(2) char gPauseSave10GERTex[] = dgPauseSave10GERTex; + +#define dgPauseSave20GERTex "__OTR__textures/icon_item_ger_static/gPauseSave20GERTex" +static const ALIGN_ASSET(2) char gPauseSave20GERTex[] = dgPauseSave20GERTex; \ No newline at end of file diff --git a/soh/assets/textures/icon_item_nes_static/icon_item_nes_static.h b/soh/assets/textures/icon_item_nes_static/icon_item_nes_static.h index d4e99fe01..8181fa62d 100644 --- a/soh/assets/textures/icon_item_nes_static/icon_item_nes_static.h +++ b/soh/assets/textures/icon_item_nes_static/icon_item_nes_static.h @@ -1,219 +1,96 @@ #pragma once -#define dgPauseDekuTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseDekuTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseDekuTitleENGTex[] = dgPauseDekuTitleENGTex; -#else -static const char gPauseDekuTitleENGTex[] __attribute__((aligned (2))) = dgPauseDekuTitleENGTex; -#endif - -#define dgPauseDodongoTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseDodongoTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseDodongoTitleENGTex[] = dgPauseDodongoTitleENGTex; -#else -static const char gPauseDodongoTitleENGTex[] __attribute__((aligned (2))) = dgPauseDodongoTitleENGTex; -#endif - -#define dgPauseJabuTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseJabuTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseJabuTitleENGTex[] = dgPauseJabuTitleENGTex; -#else -static const char gPauseJabuTitleENGTex[] __attribute__((aligned (2))) = dgPauseJabuTitleENGTex; -#endif - -#define dgPauseForestTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseForestTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseForestTitleENGTex[] = dgPauseForestTitleENGTex; -#else -static const char gPauseForestTitleENGTex[] __attribute__((aligned (2))) = dgPauseForestTitleENGTex; -#endif - -#define dgPauseFireTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseFireTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseFireTitleENGTex[] = dgPauseFireTitleENGTex; -#else -static const char gPauseFireTitleENGTex[] __attribute__((aligned (2))) = dgPauseFireTitleENGTex; -#endif - -#define dgPauseWaterTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseWaterTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseWaterTitleENGTex[] = dgPauseWaterTitleENGTex; -#else -static const char gPauseWaterTitleENGTex[] __attribute__((aligned (2))) = dgPauseWaterTitleENGTex; -#endif - -#define dgPauseSpiritTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseSpiritTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSpiritTitleENGTex[] = dgPauseSpiritTitleENGTex; -#else -static const char gPauseSpiritTitleENGTex[] __attribute__((aligned (2))) = dgPauseSpiritTitleENGTex; -#endif - -#define dgPauseShadowTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseShadowTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseShadowTitleENGTex[] = dgPauseShadowTitleENGTex; -#else -static const char gPauseShadowTitleENGTex[] __attribute__((aligned (2))) = dgPauseShadowTitleENGTex; -#endif - -#define dgPauseBotWTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseBotWTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseBotWTitleENGTex[] = dgPauseBotWTitleENGTex; -#else -static const char gPauseBotWTitleENGTex[] __attribute__((aligned (2))) = dgPauseBotWTitleENGTex; -#endif - -#define dgPauseIceCavernTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseIceCavernTitleENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseIceCavernTitleENGTex[] = dgPauseIceCavernTitleENGTex; -#else -static const char gPauseIceCavernTitleENGTex[] __attribute__((aligned (2))) = dgPauseIceCavernTitleENGTex; -#endif - -#define dgPauseToEquipENGTex "__OTR__textures/icon_item_nes_static/gPauseToEquipENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToEquipENGTex[] = dgPauseToEquipENGTex; -#else -static const char gPauseToEquipENGTex[] __attribute__((aligned (2))) = dgPauseToEquipENGTex; -#endif - -#define dgPauseToDecideENGTex "__OTR__textures/icon_item_nes_static/gPauseToDecideENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToDecideENGTex[] = dgPauseToDecideENGTex; -#else -static const char gPauseToDecideENGTex[] __attribute__((aligned (2))) = dgPauseToDecideENGTex; -#endif - -#define dgPauseToPlayMelodyENGTex "__OTR__textures/icon_item_nes_static/gPauseToPlayMelodyENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToPlayMelodyENGTex[] = dgPauseToPlayMelodyENGTex; -#else -static const char gPauseToPlayMelodyENGTex[] __attribute__((aligned (2))) = dgPauseToPlayMelodyENGTex; -#endif - -#define dgPauseToSelectItemENGTex "__OTR__textures/icon_item_nes_static/gPauseToSelectItemENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToSelectItemENGTex[] = dgPauseToSelectItemENGTex; -#else -static const char gPauseToSelectItemENGTex[] __attribute__((aligned (2))) = dgPauseToSelectItemENGTex; -#endif - -#define dgPauseToMapENGTex "__OTR__textures/icon_item_nes_static/gPauseToMapENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToMapENGTex[] = dgPauseToMapENGTex; -#else -static const char gPauseToMapENGTex[] __attribute__((aligned (2))) = dgPauseToMapENGTex; -#endif - -#define dgPauseToQuestStatusENGTex "__OTR__textures/icon_item_nes_static/gPauseToQuestStatusENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToQuestStatusENGTex[] = dgPauseToQuestStatusENGTex; -#else -static const char gPauseToQuestStatusENGTex[] __attribute__((aligned (2))) = dgPauseToQuestStatusENGTex; -#endif - -#define dgPauseToEquipmentENGTex "__OTR__textures/icon_item_nes_static/gPauseToEquipmentENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseToEquipmentENGTex[] = dgPauseToEquipmentENGTex; -#else -static const char gPauseToEquipmentENGTex[] __attribute__((aligned (2))) = dgPauseToEquipmentENGTex; -#endif - -#define dgPauseSavePromptENGTex "__OTR__textures/icon_item_nes_static/gPauseSavePromptENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSavePromptENGTex[] = dgPauseSavePromptENGTex; -#else -static const char gPauseSavePromptENGTex[] __attribute__((aligned (2))) = dgPauseSavePromptENGTex; -#endif - -#define dgPauseSaveConfirmationENGTex "__OTR__textures/icon_item_nes_static/gPauseSaveConfirmationENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSaveConfirmationENGTex[] = dgPauseSaveConfirmationENGTex; -#else -static const char gPauseSaveConfirmationENGTex[] __attribute__((aligned (2))) = dgPauseSaveConfirmationENGTex; -#endif - -#define dgPauseYesENGTex "__OTR__textures/icon_item_nes_static/gPauseYesENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseYesENGTex[] = dgPauseYesENGTex; -#else -static const char gPauseYesENGTex[] __attribute__((aligned (2))) = dgPauseYesENGTex; -#endif - -#define dgPauseNoENGTex "__OTR__textures/icon_item_nes_static/gPauseNoENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseNoENGTex[] = dgPauseNoENGTex; -#else -static const char gPauseNoENGTex[] __attribute__((aligned (2))) = dgPauseNoENGTex; -#endif - -#define dgPauseCurrentPositionENGTex "__OTR__textures/icon_item_nes_static/gPauseCurrentPositionENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseCurrentPositionENGTex[] = dgPauseCurrentPositionENGTex; -#else -static const char gPauseCurrentPositionENGTex[] __attribute__((aligned (2))) = dgPauseCurrentPositionENGTex; -#endif - -#define dgPauseEquipment10ENGTex "__OTR__textures/icon_item_nes_static/gPauseEquipment10ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment10ENGTex[] = dgPauseEquipment10ENGTex; -#else -static const char gPauseEquipment10ENGTex[] __attribute__((aligned (2))) = dgPauseEquipment10ENGTex; -#endif - -#define dgPauseSelectItem00ENGTex "__OTR__textures/icon_item_nes_static/gPauseSelectItem00ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem00ENGTex[] = dgPauseSelectItem00ENGTex; -#else -static const char gPauseSelectItem00ENGTex[] __attribute__((aligned (2))) = dgPauseSelectItem00ENGTex; -#endif - -#define dgPauseSelectItem10ENGTex "__OTR__textures/icon_item_nes_static/gPauseSelectItem10ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem10ENGTex[] = dgPauseSelectItem10ENGTex; -#else -static const char gPauseSelectItem10ENGTex[] __attribute__((aligned (2))) = dgPauseSelectItem10ENGTex; -#endif - -#define dgPauseSelectItem20ENGTex "__OTR__textures/icon_item_nes_static/gPauseSelectItem20ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem20ENGTex[] = dgPauseSelectItem20ENGTex; -#else -static const char gPauseSelectItem20ENGTex[] __attribute__((aligned (2))) = dgPauseSelectItem20ENGTex; -#endif - -#define dgPauseMap10ENGTex "__OTR__textures/icon_item_nes_static/gPauseMap10ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap10ENGTex[] = dgPauseMap10ENGTex; -#else -static const char gPauseMap10ENGTex[] __attribute__((aligned (2))) = dgPauseMap10ENGTex; -#endif - -#define dgPauseQuestStatus00ENGTex "__OTR__textures/icon_item_nes_static/gPauseQuestStatus00ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus00ENGTex[] = dgPauseQuestStatus00ENGTex; -#else -static const char gPauseQuestStatus00ENGTex[] __attribute__((aligned (2))) = dgPauseQuestStatus00ENGTex; -#endif - -#define dgPauseQuestStatus10ENGTex "__OTR__textures/icon_item_nes_static/gPauseQuestStatus10ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus10ENGTex[] = dgPauseQuestStatus10ENGTex; -#else -static const char gPauseQuestStatus10ENGTex[] __attribute__((aligned (2))) = dgPauseQuestStatus10ENGTex; -#endif - -#define dgPauseQuestStatus20ENGTex "__OTR__textures/icon_item_nes_static/gPauseQuestStatus20ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus20ENGTex[] = dgPauseQuestStatus20ENGTex; -#else -static const char gPauseQuestStatus20ENGTex[] __attribute__((aligned (2))) = dgPauseQuestStatus20ENGTex; -#endif - -#define dgPauseSave10ENGTex "__OTR__textures/icon_item_nes_static/gPauseSave10ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave10ENGTex[] = dgPauseSave10ENGTex; -#else -static const char gPauseSave10ENGTex[] __attribute__((aligned (2))) = dgPauseSave10ENGTex; -#endif - +#include "align_asset_macro.h" + +#define dgPauseDekuTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseDekuTitleENGTex" +static const ALIGN_ASSET(2) char gPauseDekuTitleENGTex[] = dgPauseDekuTitleENGTex; + +#define dgPauseDodongoTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseDodongoTitleENGTex" +static const ALIGN_ASSET(2) char gPauseDodongoTitleENGTex[] = dgPauseDodongoTitleENGTex; + +#define dgPauseJabuTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseJabuTitleENGTex" +static const ALIGN_ASSET(2) char gPauseJabuTitleENGTex[] = dgPauseJabuTitleENGTex; + +#define dgPauseForestTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseForestTitleENGTex" +static const ALIGN_ASSET(2) char gPauseForestTitleENGTex[] = dgPauseForestTitleENGTex; + +#define dgPauseFireTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseFireTitleENGTex" +static const ALIGN_ASSET(2) char gPauseFireTitleENGTex[] = dgPauseFireTitleENGTex; + +#define dgPauseWaterTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseWaterTitleENGTex" +static const ALIGN_ASSET(2) char gPauseWaterTitleENGTex[] = dgPauseWaterTitleENGTex; + +#define dgPauseSpiritTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseSpiritTitleENGTex" +static const ALIGN_ASSET(2) char gPauseSpiritTitleENGTex[] = dgPauseSpiritTitleENGTex; + +#define dgPauseShadowTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseShadowTitleENGTex" +static const ALIGN_ASSET(2) char gPauseShadowTitleENGTex[] = dgPauseShadowTitleENGTex; + +#define dgPauseBotWTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseBotWTitleENGTex" +static const ALIGN_ASSET(2) char gPauseBotWTitleENGTex[] = dgPauseBotWTitleENGTex; + +#define dgPauseIceCavernTitleENGTex "__OTR__textures/icon_item_nes_static/gPauseIceCavernTitleENGTex" +static const ALIGN_ASSET(2) char gPauseIceCavernTitleENGTex[] = dgPauseIceCavernTitleENGTex; + +#define dgPauseToEquipENGTex "__OTR__textures/icon_item_nes_static/gPauseToEquipENGTex" +static const ALIGN_ASSET(2) char gPauseToEquipENGTex[] = dgPauseToEquipENGTex; + +#define dgPauseToDecideENGTex "__OTR__textures/icon_item_nes_static/gPauseToDecideENGTex" +static const ALIGN_ASSET(2) char gPauseToDecideENGTex[] = dgPauseToDecideENGTex; + +#define dgPauseToPlayMelodyENGTex "__OTR__textures/icon_item_nes_static/gPauseToPlayMelodyENGTex" +static const ALIGN_ASSET(2) char gPauseToPlayMelodyENGTex[] = dgPauseToPlayMelodyENGTex; + +#define dgPauseToSelectItemENGTex "__OTR__textures/icon_item_nes_static/gPauseToSelectItemENGTex" +static const ALIGN_ASSET(2) char gPauseToSelectItemENGTex[] = dgPauseToSelectItemENGTex; + +#define dgPauseToMapENGTex "__OTR__textures/icon_item_nes_static/gPauseToMapENGTex" +static const ALIGN_ASSET(2) char gPauseToMapENGTex[] = dgPauseToMapENGTex; + +#define dgPauseToQuestStatusENGTex "__OTR__textures/icon_item_nes_static/gPauseToQuestStatusENGTex" +static const ALIGN_ASSET(2) char gPauseToQuestStatusENGTex[] = dgPauseToQuestStatusENGTex; + +#define dgPauseToEquipmentENGTex "__OTR__textures/icon_item_nes_static/gPauseToEquipmentENGTex" +static const ALIGN_ASSET(2) char gPauseToEquipmentENGTex[] = dgPauseToEquipmentENGTex; + +#define dgPauseSavePromptENGTex "__OTR__textures/icon_item_nes_static/gPauseSavePromptENGTex" +static const ALIGN_ASSET(2) char gPauseSavePromptENGTex[] = dgPauseSavePromptENGTex; + +#define dgPauseSaveConfirmationENGTex "__OTR__textures/icon_item_nes_static/gPauseSaveConfirmationENGTex" +static const ALIGN_ASSET(2) char gPauseSaveConfirmationENGTex[] = dgPauseSaveConfirmationENGTex; + +#define dgPauseYesENGTex "__OTR__textures/icon_item_nes_static/gPauseYesENGTex" +static const ALIGN_ASSET(2) char gPauseYesENGTex[] = dgPauseYesENGTex; + +#define dgPauseNoENGTex "__OTR__textures/icon_item_nes_static/gPauseNoENGTex" +static const ALIGN_ASSET(2) char gPauseNoENGTex[] = dgPauseNoENGTex; + +#define dgPauseCurrentPositionENGTex "__OTR__textures/icon_item_nes_static/gPauseCurrentPositionENGTex" +static const ALIGN_ASSET(2) char gPauseCurrentPositionENGTex[] = dgPauseCurrentPositionENGTex; + +#define dgPauseEquipment10ENGTex "__OTR__textures/icon_item_nes_static/gPauseEquipment10ENGTex" +static const ALIGN_ASSET(2) char gPauseEquipment10ENGTex[] = dgPauseEquipment10ENGTex; + +#define dgPauseSelectItem00ENGTex "__OTR__textures/icon_item_nes_static/gPauseSelectItem00ENGTex" +static const ALIGN_ASSET(2) char gPauseSelectItem00ENGTex[] = dgPauseSelectItem00ENGTex; + +#define dgPauseSelectItem10ENGTex "__OTR__textures/icon_item_nes_static/gPauseSelectItem10ENGTex" +static const ALIGN_ASSET(2) char gPauseSelectItem10ENGTex[] = dgPauseSelectItem10ENGTex; + +#define dgPauseSelectItem20ENGTex "__OTR__textures/icon_item_nes_static/gPauseSelectItem20ENGTex" +static const ALIGN_ASSET(2) char gPauseSelectItem20ENGTex[] = dgPauseSelectItem20ENGTex; + +#define dgPauseMap10ENGTex "__OTR__textures/icon_item_nes_static/gPauseMap10ENGTex" +static const ALIGN_ASSET(2) char gPauseMap10ENGTex[] = dgPauseMap10ENGTex; + +#define dgPauseQuestStatus00ENGTex "__OTR__textures/icon_item_nes_static/gPauseQuestStatus00ENGTex" +static const ALIGN_ASSET(2) char gPauseQuestStatus00ENGTex[] = dgPauseQuestStatus00ENGTex; + +#define dgPauseQuestStatus10ENGTex "__OTR__textures/icon_item_nes_static/gPauseQuestStatus10ENGTex" +static const ALIGN_ASSET(2) char gPauseQuestStatus10ENGTex[] = dgPauseQuestStatus10ENGTex; + +#define dgPauseQuestStatus20ENGTex "__OTR__textures/icon_item_nes_static/gPauseQuestStatus20ENGTex" +static const ALIGN_ASSET(2) char gPauseQuestStatus20ENGTex[] = dgPauseQuestStatus20ENGTex; + +#define dgPauseSave10ENGTex "__OTR__textures/icon_item_nes_static/gPauseSave10ENGTex" +static const ALIGN_ASSET(2) char gPauseSave10ENGTex[] = dgPauseSave10ENGTex; \ No newline at end of file diff --git a/soh/assets/textures/icon_item_static/icon_item_static.h b/soh/assets/textures/icon_item_static/icon_item_static.h index 00df864b2..cc167e393 100644 --- a/soh/assets/textures/icon_item_static/icon_item_static.h +++ b/soh/assets/textures/icon_item_static/icon_item_static.h @@ -1,1304 +1,561 @@ #pragma once -#define dgDekuStickIconTex "__OTR__textures/icon_item_static/gDekuStickIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuStickIconTex[] = dgDekuStickIconTex; -#else -static const char gDekuStickIconTex[] __attribute__((aligned (2))) = dgDekuStickIconTex; -#endif - -#define dgDekuNutIconTex "__OTR__textures/icon_item_static/gDekuNutIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutIconTex[] = dgDekuNutIconTex; -#else -static const char gDekuNutIconTex[] __attribute__((aligned (2))) = dgDekuNutIconTex; -#endif - -#define dgBombIconTex "__OTR__textures/icon_item_static/gBombIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombIconTex[] = dgBombIconTex; -#else -static const char gBombIconTex[] __attribute__((aligned (2))) = dgBombIconTex; -#endif - -#define dgFairyBowIconTex "__OTR__textures/icon_item_static/gFairyBowIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyBowIconTex[] = dgFairyBowIconTex; -#else -static const char gFairyBowIconTex[] __attribute__((aligned (2))) = dgFairyBowIconTex; -#endif - -#define dgFireArrowIconTex "__OTR__textures/icon_item_static/gFireArrowIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireArrowIconTex[] = dgFireArrowIconTex; -#else -static const char gFireArrowIconTex[] __attribute__((aligned (2))) = dgFireArrowIconTex; -#endif - -#define dgDinsFireIconTex "__OTR__textures/icon_item_static/gDinsFireIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDinsFireIconTex[] = dgDinsFireIconTex; -#else -static const char gDinsFireIconTex[] __attribute__((aligned (2))) = dgDinsFireIconTex; -#endif - -#define dgFairySlingshotIconTex "__OTR__textures/icon_item_static/gFairySlingshotIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairySlingshotIconTex[] = dgFairySlingshotIconTex; -#else -static const char gFairySlingshotIconTex[] __attribute__((aligned (2))) = dgFairySlingshotIconTex; -#endif - -#define dgFairyOcarinaIconTex "__OTR__textures/icon_item_static/gFairyOcarinaIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyOcarinaIconTex[] = dgFairyOcarinaIconTex; -#else -static const char gFairyOcarinaIconTex[] __attribute__((aligned (2))) = dgFairyOcarinaIconTex; -#endif - -#define dgOcarinaofTimeIconTex "__OTR__textures/icon_item_static/gOcarinaofTimeIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaofTimeIconTex[] = dgOcarinaofTimeIconTex; -#else -static const char gOcarinaofTimeIconTex[] __attribute__((aligned (2))) = dgOcarinaofTimeIconTex; -#endif - -#define dgBombchuIconTex "__OTR__textures/icon_item_static/gBombchuIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuIconTex[] = dgBombchuIconTex; -#else -static const char gBombchuIconTex[] __attribute__((aligned (2))) = dgBombchuIconTex; -#endif - -#define dgHookshotIconTex "__OTR__textures/icon_item_static/gHookshotIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotIconTex[] = dgHookshotIconTex; -#else -static const char gHookshotIconTex[] __attribute__((aligned (2))) = dgHookshotIconTex; -#endif - -#define dgLongshotIconTex "__OTR__textures/icon_item_static/gLongshotIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLongshotIconTex[] = dgLongshotIconTex; -#else -static const char gLongshotIconTex[] __attribute__((aligned (2))) = dgLongshotIconTex; -#endif - -#define dgIceArrowIconTex "__OTR__textures/icon_item_static/gIceArrowIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceArrowIconTex[] = dgIceArrowIconTex; -#else -static const char gIceArrowIconTex[] __attribute__((aligned (2))) = dgIceArrowIconTex; -#endif - -#define dgFaroresWindIconTex "__OTR__textures/icon_item_static/gFaroresWindIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaroresWindIconTex[] = dgFaroresWindIconTex; -#else -static const char gFaroresWindIconTex[] __attribute__((aligned (2))) = dgFaroresWindIconTex; -#endif - -#define dgBoomerangIconTex "__OTR__textures/icon_item_static/gBoomerangIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoomerangIconTex[] = dgBoomerangIconTex; -#else -static const char gBoomerangIconTex[] __attribute__((aligned (2))) = dgBoomerangIconTex; -#endif - -#define dgLensofTruthIconTex "__OTR__textures/icon_item_static/gLensofTruthIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensofTruthIconTex[] = dgLensofTruthIconTex; -#else -static const char gLensofTruthIconTex[] __attribute__((aligned (2))) = dgLensofTruthIconTex; -#endif - -#define dgMagicBeansIconTex "__OTR__textures/icon_item_static/gMagicBeansIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeansIconTex[] = dgMagicBeansIconTex; -#else -static const char gMagicBeansIconTex[] __attribute__((aligned (2))) = dgMagicBeansIconTex; -#endif - -#define dgMegatonHammerIconTex "__OTR__textures/icon_item_static/gMegatonHammerIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegatonHammerIconTex[] = dgMegatonHammerIconTex; -#else -static const char gMegatonHammerIconTex[] __attribute__((aligned (2))) = dgMegatonHammerIconTex; -#endif - -#define dgLightArrowIconTex "__OTR__textures/icon_item_static/gLightArrowIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightArrowIconTex[] = dgLightArrowIconTex; -#else -static const char gLightArrowIconTex[] __attribute__((aligned (2))) = dgLightArrowIconTex; -#endif - -#define dgNayrusLoveIconTex "__OTR__textures/icon_item_static/gNayrusLoveIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNayrusLoveIconTex[] = dgNayrusLoveIconTex; -#else -static const char gNayrusLoveIconTex[] __attribute__((aligned (2))) = dgNayrusLoveIconTex; -#endif - -#define dgEmptyBottleIconTex "__OTR__textures/icon_item_static/gEmptyBottleIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEmptyBottleIconTex[] = dgEmptyBottleIconTex; -#else -static const char gEmptyBottleIconTex[] __attribute__((aligned (2))) = dgEmptyBottleIconTex; -#endif - -#define dgRedPotionIconTex "__OTR__textures/icon_item_static/gRedPotionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedPotionIconTex[] = dgRedPotionIconTex; -#else -static const char gRedPotionIconTex[] __attribute__((aligned (2))) = dgRedPotionIconTex; -#endif - -#define dgGreenPotionIconTex "__OTR__textures/icon_item_static/gGreenPotionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreenPotionIconTex[] = dgGreenPotionIconTex; -#else -static const char gGreenPotionIconTex[] __attribute__((aligned (2))) = dgGreenPotionIconTex; -#endif - -#define dgBluePotionIconTex "__OTR__textures/icon_item_static/gBluePotionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBluePotionIconTex[] = dgBluePotionIconTex; -#else -static const char gBluePotionIconTex[] __attribute__((aligned (2))) = dgBluePotionIconTex; -#endif - -#define dgBottledFairyIconTex "__OTR__textures/icon_item_static/gBottledFairyIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottledFairyIconTex[] = dgBottledFairyIconTex; -#else -static const char gBottledFairyIconTex[] __attribute__((aligned (2))) = dgBottledFairyIconTex; -#endif - -#define dgFishIconTex "__OTR__textures/icon_item_static/gFishIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishIconTex[] = dgFishIconTex; -#else -static const char gFishIconTex[] __attribute__((aligned (2))) = dgFishIconTex; -#endif - -#define dgMilkFullIconTex "__OTR__textures/icon_item_static/gMilkFullIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMilkFullIconTex[] = dgMilkFullIconTex; -#else -static const char gMilkFullIconTex[] __attribute__((aligned (2))) = dgMilkFullIconTex; -#endif - -#define dgRutosLetterIconTex "__OTR__textures/icon_item_static/gRutosLetterIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutosLetterIconTex[] = dgRutosLetterIconTex; -#else -static const char gRutosLetterIconTex[] __attribute__((aligned (2))) = dgRutosLetterIconTex; -#endif - -#define dgBlueFireIconTex "__OTR__textures/icon_item_static/gBlueFireIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlueFireIconTex[] = dgBlueFireIconTex; -#else -static const char gBlueFireIconTex[] __attribute__((aligned (2))) = dgBlueFireIconTex; -#endif - -#define dgBugIconTex "__OTR__textures/icon_item_static/gBugIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugIconTex[] = dgBugIconTex; -#else -static const char gBugIconTex[] __attribute__((aligned (2))) = dgBugIconTex; -#endif - -#define dgBigPoeIconTex "__OTR__textures/icon_item_static/gBigPoeIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigPoeIconTex[] = dgBigPoeIconTex; -#else -static const char gBigPoeIconTex[] __attribute__((aligned (2))) = dgBigPoeIconTex; -#endif - -#define dgMilkhalfIconTex "__OTR__textures/icon_item_static/gMilkhalfIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMilkhalfIconTex[] = dgMilkhalfIconTex; -#else -static const char gMilkhalfIconTex[] __attribute__((aligned (2))) = dgMilkhalfIconTex; -#endif - -#define dgPoeIconTex "__OTR__textures/icon_item_static/gPoeIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeIconTex[] = dgPoeIconTex; -#else -static const char gPoeIconTex[] __attribute__((aligned (2))) = dgPoeIconTex; -#endif - -#define dgWeirdEggIconTex "__OTR__textures/icon_item_static/gWeirdEggIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWeirdEggIconTex[] = dgWeirdEggIconTex; -#else -static const char gWeirdEggIconTex[] __attribute__((aligned (2))) = dgWeirdEggIconTex; -#endif - -#define dgCuccoIconTex "__OTR__textures/icon_item_static/gCuccoIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoIconTex[] = dgCuccoIconTex; -#else -static const char gCuccoIconTex[] __attribute__((aligned (2))) = dgCuccoIconTex; -#endif - -#define dgZeldasLetterIconTex "__OTR__textures/icon_item_static/gZeldasLetterIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasLetterIconTex[] = dgZeldasLetterIconTex; -#else -static const char gZeldasLetterIconTex[] __attribute__((aligned (2))) = dgZeldasLetterIconTex; -#endif - -#define dgKeatonMaskIconTex "__OTR__textures/icon_item_static/gKeatonMaskIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeatonMaskIconTex[] = dgKeatonMaskIconTex; -#else -static const char gKeatonMaskIconTex[] __attribute__((aligned (2))) = dgKeatonMaskIconTex; -#endif - -#define dgSkullMaskIconTex "__OTR__textures/icon_item_static/gSkullMaskIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullMaskIconTex[] = dgSkullMaskIconTex; -#else -static const char gSkullMaskIconTex[] __attribute__((aligned (2))) = dgSkullMaskIconTex; -#endif - -#define dgSpookyMaskIconTex "__OTR__textures/icon_item_static/gSpookyMaskIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpookyMaskIconTex[] = dgSpookyMaskIconTex; -#else -static const char gSpookyMaskIconTex[] __attribute__((aligned (2))) = dgSpookyMaskIconTex; -#endif - -#define dgBunnyHoodIconTex "__OTR__textures/icon_item_static/gBunnyHoodIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBunnyHoodIconTex[] = dgBunnyHoodIconTex; -#else -static const char gBunnyHoodIconTex[] __attribute__((aligned (2))) = dgBunnyHoodIconTex; -#endif - -#define dgGoronMaskIconTex "__OTR__textures/icon_item_static/gGoronMaskIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronMaskIconTex[] = dgGoronMaskIconTex; -#else -static const char gGoronMaskIconTex[] __attribute__((aligned (2))) = dgGoronMaskIconTex; -#endif - -#define dgZoraMaskIconTex "__OTR__textures/icon_item_static/gZoraMaskIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraMaskIconTex[] = dgZoraMaskIconTex; -#else -static const char gZoraMaskIconTex[] __attribute__((aligned (2))) = dgZoraMaskIconTex; -#endif - -#define dgGerudoMaskIconTex "__OTR__textures/icon_item_static/gGerudoMaskIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoMaskIconTex[] = dgGerudoMaskIconTex; -#else -static const char gGerudoMaskIconTex[] __attribute__((aligned (2))) = dgGerudoMaskIconTex; -#endif - -#define dgMaskofTruthIconTex "__OTR__textures/icon_item_static/gMaskofTruthIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMaskofTruthIconTex[] = dgMaskofTruthIconTex; -#else -static const char gMaskofTruthIconTex[] __attribute__((aligned (2))) = dgMaskofTruthIconTex; -#endif - -#define dgSoldOutIconTex "__OTR__textures/icon_item_static/gSoldOutIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSoldOutIconTex[] = dgSoldOutIconTex; -#else -static const char gSoldOutIconTex[] __attribute__((aligned (2))) = dgSoldOutIconTex; -#endif - -#define dgPocketEggIconTex "__OTR__textures/icon_item_static/gPocketEggIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPocketEggIconTex[] = dgPocketEggIconTex; -#else -static const char gPocketEggIconTex[] __attribute__((aligned (2))) = dgPocketEggIconTex; -#endif - -#define dgPocketCuccoIconTex "__OTR__textures/icon_item_static/gPocketCuccoIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPocketCuccoIconTex[] = dgPocketCuccoIconTex; -#else -static const char gPocketCuccoIconTex[] __attribute__((aligned (2))) = dgPocketCuccoIconTex; -#endif - -#define dgCojiroIconTex "__OTR__textures/icon_item_static/gCojiroIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCojiroIconTex[] = dgCojiroIconTex; -#else -static const char gCojiroIconTex[] __attribute__((aligned (2))) = dgCojiroIconTex; -#endif - -#define dgOddMushroomIconTex "__OTR__textures/icon_item_static/gOddMushroomIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOddMushroomIconTex[] = dgOddMushroomIconTex; -#else -static const char gOddMushroomIconTex[] __attribute__((aligned (2))) = dgOddMushroomIconTex; -#endif - -#define dgOddPotionIconTex "__OTR__textures/icon_item_static/gOddPotionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOddPotionIconTex[] = dgOddPotionIconTex; -#else -static const char gOddPotionIconTex[] __attribute__((aligned (2))) = dgOddPotionIconTex; -#endif - -#define dgPoachersSawIconTex "__OTR__textures/icon_item_static/gPoachersSawIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoachersSawIconTex[] = dgPoachersSawIconTex; -#else -static const char gPoachersSawIconTex[] __attribute__((aligned (2))) = dgPoachersSawIconTex; -#endif - -#define dgBrokenBiggoronSwordIconTex "__OTR__textures/icon_item_static/gBrokenBiggoronSwordIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenBiggoronSwordIconTex[] = dgBrokenBiggoronSwordIconTex; -#else -static const char gBrokenBiggoronSwordIconTex[] __attribute__((aligned (2))) = dgBrokenBiggoronSwordIconTex; -#endif - -#define dgPrescriptionIconTex "__OTR__textures/icon_item_static/gPrescriptionIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPrescriptionIconTex[] = dgPrescriptionIconTex; -#else -static const char gPrescriptionIconTex[] __attribute__((aligned (2))) = dgPrescriptionIconTex; -#endif - -#define dgEyeBallFrogIconTex "__OTR__textures/icon_item_static/gEyeBallFrogIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeBallFrogIconTex[] = dgEyeBallFrogIconTex; -#else -static const char gEyeBallFrogIconTex[] __attribute__((aligned (2))) = dgEyeBallFrogIconTex; -#endif - -#define dgEyeDropsIconTex "__OTR__textures/icon_item_static/gEyeDropsIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeDropsIconTex[] = dgEyeDropsIconTex; -#else -static const char gEyeDropsIconTex[] __attribute__((aligned (2))) = dgEyeDropsIconTex; -#endif - -#define dgClaimCheckIconTex "__OTR__textures/icon_item_static/gClaimCheckIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gClaimCheckIconTex[] = dgClaimCheckIconTex; -#else -static const char gClaimCheckIconTex[] __attribute__((aligned (2))) = dgClaimCheckIconTex; -#endif - -#define dgFairyBowFireIconTex "__OTR__textures/icon_item_static/gFairyBowFireIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyBowFireIconTex[] = dgFairyBowFireIconTex; -#else -static const char gFairyBowFireIconTex[] __attribute__((aligned (2))) = dgFairyBowFireIconTex; -#endif - -#define dgFairyBowIceIconTex "__OTR__textures/icon_item_static/gFairyBowIceIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyBowIceIconTex[] = dgFairyBowIceIconTex; -#else -static const char gFairyBowIceIconTex[] __attribute__((aligned (2))) = dgFairyBowIceIconTex; -#endif - -#define dgFairyBowLightIconTex "__OTR__textures/icon_item_static/gFairyBowLightIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyBowLightIconTex[] = dgFairyBowLightIconTex; -#else -static const char gFairyBowLightIconTex[] __attribute__((aligned (2))) = dgFairyBowLightIconTex; -#endif - -#define dgKokiriSwordIconTex "__OTR__textures/icon_item_static/gKokiriSwordIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriSwordIconTex[] = dgKokiriSwordIconTex; -#else -static const char gKokiriSwordIconTex[] __attribute__((aligned (2))) = dgKokiriSwordIconTex; -#endif - -#define dgMasterSwordIconTex "__OTR__textures/icon_item_static/gMasterSwordIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMasterSwordIconTex[] = dgMasterSwordIconTex; -#else -static const char gMasterSwordIconTex[] __attribute__((aligned (2))) = dgMasterSwordIconTex; -#endif - -#define dgBiggoronSwordIconTex "__OTR__textures/icon_item_static/gBiggoronSwordIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiggoronSwordIconTex[] = dgBiggoronSwordIconTex; -#else -static const char gBiggoronSwordIconTex[] __attribute__((aligned (2))) = dgBiggoronSwordIconTex; -#endif - -#define dgDekuShieldIconTex "__OTR__textures/icon_item_static/gDekuShieldIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuShieldIconTex[] = dgDekuShieldIconTex; -#else -static const char gDekuShieldIconTex[] __attribute__((aligned (2))) = dgDekuShieldIconTex; -#endif - -#define dgHylianShieldIconTex "__OTR__textures/icon_item_static/gHylianShieldIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHylianShieldIconTex[] = dgHylianShieldIconTex; -#else -static const char gHylianShieldIconTex[] __attribute__((aligned (2))) = dgHylianShieldIconTex; -#endif - -#define dgMirrorShieldIconTex "__OTR__textures/icon_item_static/gMirrorShieldIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMirrorShieldIconTex[] = dgMirrorShieldIconTex; -#else -static const char gMirrorShieldIconTex[] __attribute__((aligned (2))) = dgMirrorShieldIconTex; -#endif - -#define dgKokiriTunicIconTex "__OTR__textures/icon_item_static/gKokiriTunicIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriTunicIconTex[] = dgKokiriTunicIconTex; -#else -static const char gKokiriTunicIconTex[] __attribute__((aligned (2))) = dgKokiriTunicIconTex; -#endif - -#define dgGoronTunicIconTex "__OTR__textures/icon_item_static/gGoronTunicIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronTunicIconTex[] = dgGoronTunicIconTex; -#else -static const char gGoronTunicIconTex[] __attribute__((aligned (2))) = dgGoronTunicIconTex; -#endif - -#define dgZoraTunicIconTex "__OTR__textures/icon_item_static/gZoraTunicIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraTunicIconTex[] = dgZoraTunicIconTex; -#else -static const char gZoraTunicIconTex[] __attribute__((aligned (2))) = dgZoraTunicIconTex; -#endif - -#define dgKokiriBootsIconTex "__OTR__textures/icon_item_static/gKokiriBootsIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriBootsIconTex[] = dgKokiriBootsIconTex; -#else -static const char gKokiriBootsIconTex[] __attribute__((aligned (2))) = dgKokiriBootsIconTex; -#endif - -#define dgIronBootsIconTex "__OTR__textures/icon_item_static/gIronBootsIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIronBootsIconTex[] = dgIronBootsIconTex; -#else -static const char gIronBootsIconTex[] __attribute__((aligned (2))) = dgIronBootsIconTex; -#endif - -#define dgHoverBootsIconTex "__OTR__textures/icon_item_static/gHoverBootsIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoverBootsIconTex[] = dgHoverBootsIconTex; -#else -static const char gHoverBootsIconTex[] __attribute__((aligned (2))) = dgHoverBootsIconTex; -#endif - -#define dgBulletBag30IconTex "__OTR__textures/icon_item_static/gBulletBag30IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag30IconTex[] = dgBulletBag30IconTex; -#else -static const char gBulletBag30IconTex[] __attribute__((aligned (2))) = dgBulletBag30IconTex; -#endif - -#define dgBulletBag40IconTex "__OTR__textures/icon_item_static/gBulletBag40IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag40IconTex[] = dgBulletBag40IconTex; -#else -static const char gBulletBag40IconTex[] __attribute__((aligned (2))) = dgBulletBag40IconTex; -#endif - -#define dgBulletBag50IconTex "__OTR__textures/icon_item_static/gBulletBag50IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag50IconTex[] = dgBulletBag50IconTex; -#else -static const char gBulletBag50IconTex[] __attribute__((aligned (2))) = dgBulletBag50IconTex; -#endif - -#define dgQuiver30IconTex "__OTR__textures/icon_item_static/gQuiver30IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver30IconTex[] = dgQuiver30IconTex; -#else -static const char gQuiver30IconTex[] __attribute__((aligned (2))) = dgQuiver30IconTex; -#endif - -#define dgQuiver40IconTex "__OTR__textures/icon_item_static/gQuiver40IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver40IconTex[] = dgQuiver40IconTex; -#else -static const char gQuiver40IconTex[] __attribute__((aligned (2))) = dgQuiver40IconTex; -#endif - -#define dgQuiver50IconTex "__OTR__textures/icon_item_static/gQuiver50IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver50IconTex[] = dgQuiver50IconTex; -#else -static const char gQuiver50IconTex[] __attribute__((aligned (2))) = dgQuiver50IconTex; -#endif - -#define dgBombBag20IconTex "__OTR__textures/icon_item_static/gBombBag20IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag20IconTex[] = dgBombBag20IconTex; -#else -static const char gBombBag20IconTex[] __attribute__((aligned (2))) = dgBombBag20IconTex; -#endif - -#define dgBombBag30IconTex "__OTR__textures/icon_item_static/gBombBag30IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag30IconTex[] = dgBombBag30IconTex; -#else -static const char gBombBag30IconTex[] __attribute__((aligned (2))) = dgBombBag30IconTex; -#endif - -#define dgBombBag40IconTex "__OTR__textures/icon_item_static/gBombBag40IconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag40IconTex[] = dgBombBag40IconTex; -#else -static const char gBombBag40IconTex[] __attribute__((aligned (2))) = dgBombBag40IconTex; -#endif - -#define dgGoronsBraceletIconTex "__OTR__textures/icon_item_static/gGoronsBraceletIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronsBraceletIconTex[] = dgGoronsBraceletIconTex; -#else -static const char gGoronsBraceletIconTex[] __attribute__((aligned (2))) = dgGoronsBraceletIconTex; -#endif - -#define dgSilverGauntletsIconTex "__OTR__textures/icon_item_static/gSilverGauntletsIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverGauntletsIconTex[] = dgSilverGauntletsIconTex; -#else -static const char gSilverGauntletsIconTex[] __attribute__((aligned (2))) = dgSilverGauntletsIconTex; -#endif - -#define dgGoldenGauntletsIconTex "__OTR__textures/icon_item_static/gGoldenGauntletsIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGauntletsIconTex[] = dgGoldenGauntletsIconTex; -#else -static const char gGoldenGauntletsIconTex[] __attribute__((aligned (2))) = dgGoldenGauntletsIconTex; -#endif - -#define dgSilverScaleIconTex "__OTR__textures/icon_item_static/gSilverScaleIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverScaleIconTex[] = dgSilverScaleIconTex; -#else -static const char gSilverScaleIconTex[] __attribute__((aligned (2))) = dgSilverScaleIconTex; -#endif - -#define dgGoldenScaleIconTex "__OTR__textures/icon_item_static/gGoldenScaleIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenScaleIconTex[] = dgGoldenScaleIconTex; -#else -static const char gGoldenScaleIconTex[] __attribute__((aligned (2))) = dgGoldenScaleIconTex; -#endif - -#define dgBrokenGiantsKnifeIconTex "__OTR__textures/icon_item_static/gBrokenGiantsKnifeIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenGiantsKnifeIconTex[] = dgBrokenGiantsKnifeIconTex; -#else -static const char gBrokenGiantsKnifeIconTex[] __attribute__((aligned (2))) = dgBrokenGiantsKnifeIconTex; -#endif - -#define dgAdultsWalletIconTex "__OTR__textures/icon_item_static/gAdultsWalletIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAdultsWalletIconTex[] = dgAdultsWalletIconTex; -#else -static const char gAdultsWalletIconTex[] __attribute__((aligned (2))) = dgAdultsWalletIconTex; -#endif - -#define dgGiantsWalletIconTex "__OTR__textures/icon_item_static/gGiantsWalletIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiantsWalletIconTex[] = dgGiantsWalletIconTex; -#else -static const char gGiantsWalletIconTex[] __attribute__((aligned (2))) = dgGiantsWalletIconTex; -#endif - -#define dgDekuSeedsIconTex "__OTR__textures/icon_item_static/gDekuSeedsIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuSeedsIconTex[] = dgDekuSeedsIconTex; -#else -static const char gDekuSeedsIconTex[] __attribute__((aligned (2))) = dgDekuSeedsIconTex; -#endif - -#define dgFishingPoleIconTex "__OTR__textures/icon_item_static/gFishingPoleIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingPoleIconTex[] = dgFishingPoleIconTex; -#else -static const char gFishingPoleIconTex[] __attribute__((aligned (2))) = dgFishingPoleIconTex; -#endif - -#define dgHeartPieceIcon1Tex "__OTR__textures/icon_item_static/gHeartPieceIcon1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartPieceIcon1Tex[] = dgHeartPieceIcon1Tex; -#else -static const char gHeartPieceIcon1Tex[] __attribute__((aligned (2))) = dgHeartPieceIcon1Tex; -#endif - -#define dgHeartPieceIcon2Tex "__OTR__textures/icon_item_static/gHeartPieceIcon2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartPieceIcon2Tex[] = dgHeartPieceIcon2Tex; -#else -static const char gHeartPieceIcon2Tex[] __attribute__((aligned (2))) = dgHeartPieceIcon2Tex; -#endif - -#define dgHeartPieceIcon3Tex "__OTR__textures/icon_item_static/gHeartPieceIcon3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartPieceIcon3Tex[] = dgHeartPieceIcon3Tex; -#else -static const char gHeartPieceIcon3Tex[] __attribute__((aligned (2))) = dgHeartPieceIcon3Tex; -#endif - -#define dgPausePromptCursorTex "__OTR__textures/icon_item_static/gPausePromptCursorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPausePromptCursorTex[] = dgPausePromptCursorTex; -#else -static const char gPausePromptCursorTex[] __attribute__((aligned (2))) = dgPausePromptCursorTex; -#endif - -#define dgPauseUnusedCursorTex "__OTR__textures/icon_item_static/gPauseUnusedCursorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseUnusedCursorTex[] = dgPauseUnusedCursorTex; -#else -static const char gPauseUnusedCursorTex[] __attribute__((aligned (2))) = dgPauseUnusedCursorTex; -#endif - -#define dgPauseMenuCursorTopLeftTex "__OTR__textures/icon_item_static/gPauseMenuCursorTopLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMenuCursorTopLeftTex[] = dgPauseMenuCursorTopLeftTex; -#else -static const char gPauseMenuCursorTopLeftTex[] __attribute__((aligned (2))) = dgPauseMenuCursorTopLeftTex; -#endif - -#define dgPauseMenuCursorTopRightTex "__OTR__textures/icon_item_static/gPauseMenuCursorTopRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMenuCursorTopRightTex[] = dgPauseMenuCursorTopRightTex; -#else -static const char gPauseMenuCursorTopRightTex[] __attribute__((aligned (2))) = dgPauseMenuCursorTopRightTex; -#endif - -#define dgPauseMenuCursorBottomLeftTex "__OTR__textures/icon_item_static/gPauseMenuCursorBottomLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMenuCursorBottomLeftTex[] = dgPauseMenuCursorBottomLeftTex; -#else -static const char gPauseMenuCursorBottomLeftTex[] __attribute__((aligned (2))) = dgPauseMenuCursorBottomLeftTex; -#endif - -#define dgPauseMenuCursorBottomRightTex "__OTR__textures/icon_item_static/gPauseMenuCursorBottomRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMenuCursorBottomRightTex[] = dgPauseMenuCursorBottomRightTex; -#else -static const char gPauseMenuCursorBottomRightTex[] __attribute__((aligned (2))) = dgPauseMenuCursorBottomRightTex; -#endif - -#define dgPauseEquipment00Tex "__OTR__textures/icon_item_static/gPauseEquipment00Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment00Tex[] = dgPauseEquipment00Tex; -#else -static const char gPauseEquipment00Tex[] __attribute__((aligned (2))) = dgPauseEquipment00Tex; -#endif - -#define dgPauseEquipment20Tex "__OTR__textures/icon_item_static/gPauseEquipment20Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment20Tex[] = dgPauseEquipment20Tex; -#else -static const char gPauseEquipment20Tex[] __attribute__((aligned (2))) = dgPauseEquipment20Tex; -#endif - -#define dgPauseMap00Tex "__OTR__textures/icon_item_static/gPauseMap00Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap00Tex[] = dgPauseMap00Tex; -#else -static const char gPauseMap00Tex[] __attribute__((aligned (2))) = dgPauseMap00Tex; -#endif - -#define dgPauseMap20Tex "__OTR__textures/icon_item_static/gPauseMap20Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap20Tex[] = dgPauseMap20Tex; -#else -static const char gPauseMap20Tex[] __attribute__((aligned (2))) = dgPauseMap20Tex; -#endif - -#define dgPauseQuestStatus00Tex "__OTR__textures/icon_item_static/gPauseQuestStatus00Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus00Tex[] = dgPauseQuestStatus00Tex; -#else -static const char gPauseQuestStatus00Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus00Tex; -#endif - -#define dgPauseQuestStatus20Tex "__OTR__textures/icon_item_static/gPauseQuestStatus20Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus20Tex[] = dgPauseQuestStatus20Tex; -#else -static const char gPauseQuestStatus20Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus20Tex; -#endif - -#define dgPauseSave00Tex "__OTR__textures/icon_item_static/gPauseSave00Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave00Tex[] = dgPauseSave00Tex; -#else -static const char gPauseSave00Tex[] __attribute__((aligned (2))) = dgPauseSave00Tex; -#endif - -#define dgPauseSave20Tex "__OTR__textures/icon_item_static/gPauseSave20Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave20Tex[] = dgPauseSave20Tex; -#else -static const char gPauseSave20Tex[] __attribute__((aligned (2))) = dgPauseSave20Tex; -#endif - -#define dgPauseEquipment01Tex "__OTR__textures/icon_item_static/gPauseEquipment01Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment01Tex[] = dgPauseEquipment01Tex; -#else -static const char gPauseEquipment01Tex[] __attribute__((aligned (2))) = dgPauseEquipment01Tex; -#endif - -#define dgPauseEquipment11Tex "__OTR__textures/icon_item_static/gPauseEquipment11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment11Tex[] = dgPauseEquipment11Tex; -#else -static const char gPauseEquipment11Tex[] __attribute__((aligned (2))) = dgPauseEquipment11Tex; -#endif - -#define dgPauseEquipment21Tex "__OTR__textures/icon_item_static/gPauseEquipment21Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment21Tex[] = dgPauseEquipment21Tex; -#else -static const char gPauseEquipment21Tex[] __attribute__((aligned (2))) = dgPauseEquipment21Tex; -#endif - -#define dgPauseSelectItem01Tex "__OTR__textures/icon_item_static/gPauseSelectItem01Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem01Tex[] = dgPauseSelectItem01Tex; -#else -static const char gPauseSelectItem01Tex[] __attribute__((aligned (2))) = dgPauseSelectItem01Tex; -#endif - -#define dgPauseSelectItem11Tex "__OTR__textures/icon_item_static/gPauseSelectItem11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem11Tex[] = dgPauseSelectItem11Tex; -#else -static const char gPauseSelectItem11Tex[] __attribute__((aligned (2))) = dgPauseSelectItem11Tex; -#endif - -#define dgPauseSelectItem21Tex "__OTR__textures/icon_item_static/gPauseSelectItem21Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem21Tex[] = dgPauseSelectItem21Tex; -#else -static const char gPauseSelectItem21Tex[] __attribute__((aligned (2))) = dgPauseSelectItem21Tex; -#endif - -#define dgPauseMap01Tex "__OTR__textures/icon_item_static/gPauseMap01Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap01Tex[] = dgPauseMap01Tex; -#else -static const char gPauseMap01Tex[] __attribute__((aligned (2))) = dgPauseMap01Tex; -#endif - -#define dgPauseMap11Tex "__OTR__textures/icon_item_static/gPauseMap11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap11Tex[] = dgPauseMap11Tex; -#else -static const char gPauseMap11Tex[] __attribute__((aligned (2))) = dgPauseMap11Tex; -#endif - -#define dgPauseMap21Tex "__OTR__textures/icon_item_static/gPauseMap21Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap21Tex[] = dgPauseMap21Tex; -#else -static const char gPauseMap21Tex[] __attribute__((aligned (2))) = dgPauseMap21Tex; -#endif - -#define dgPauseQuestStatus01Tex "__OTR__textures/icon_item_static/gPauseQuestStatus01Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus01Tex[] = dgPauseQuestStatus01Tex; -#else -static const char gPauseQuestStatus01Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus01Tex; -#endif - -#define dgPauseQuestStatus11Tex "__OTR__textures/icon_item_static/gPauseQuestStatus11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus11Tex[] = dgPauseQuestStatus11Tex; -#else -static const char gPauseQuestStatus11Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus11Tex; -#endif - -#define dgPauseQuestStatus21Tex "__OTR__textures/icon_item_static/gPauseQuestStatus21Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus21Tex[] = dgPauseQuestStatus21Tex; -#else -static const char gPauseQuestStatus21Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus21Tex; -#endif - -#define dgPauseSave01Tex "__OTR__textures/icon_item_static/gPauseSave01Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave01Tex[] = dgPauseSave01Tex; -#else -static const char gPauseSave01Tex[] __attribute__((aligned (2))) = dgPauseSave01Tex; -#endif - -#define dgPauseSave11Tex "__OTR__textures/icon_item_static/gPauseSave11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave11Tex[] = dgPauseSave11Tex; -#else -static const char gPauseSave11Tex[] __attribute__((aligned (2))) = dgPauseSave11Tex; -#endif - -#define dgPauseSave21Tex "__OTR__textures/icon_item_static/gPauseSave21Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave21Tex[] = dgPauseSave21Tex; -#else -static const char gPauseSave21Tex[] __attribute__((aligned (2))) = dgPauseSave21Tex; -#endif - -#define dgPauseEquipment02Tex "__OTR__textures/icon_item_static/gPauseEquipment02Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment02Tex[] = dgPauseEquipment02Tex; -#else -static const char gPauseEquipment02Tex[] __attribute__((aligned (2))) = dgPauseEquipment02Tex; -#endif - -#define dgPauseEquipment12Tex "__OTR__textures/icon_item_static/gPauseEquipment12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment12Tex[] = dgPauseEquipment12Tex; -#else -static const char gPauseEquipment12Tex[] __attribute__((aligned (2))) = dgPauseEquipment12Tex; -#endif - -#define dgPauseEquipment22Tex "__OTR__textures/icon_item_static/gPauseEquipment22Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment22Tex[] = dgPauseEquipment22Tex; -#else -static const char gPauseEquipment22Tex[] __attribute__((aligned (2))) = dgPauseEquipment22Tex; -#endif - -#define dgPauseSelectItem02Tex "__OTR__textures/icon_item_static/gPauseSelectItem02Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem02Tex[] = dgPauseSelectItem02Tex; -#else -static const char gPauseSelectItem02Tex[] __attribute__((aligned (2))) = dgPauseSelectItem02Tex; -#endif - -#define dgPauseSelectItem12Tex "__OTR__textures/icon_item_static/gPauseSelectItem12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem12Tex[] = dgPauseSelectItem12Tex; -#else -static const char gPauseSelectItem12Tex[] __attribute__((aligned (2))) = dgPauseSelectItem12Tex; -#endif - -#define dgPauseSelectItem22Tex "__OTR__textures/icon_item_static/gPauseSelectItem22Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem22Tex[] = dgPauseSelectItem22Tex; -#else -static const char gPauseSelectItem22Tex[] __attribute__((aligned (2))) = dgPauseSelectItem22Tex; -#endif - -#define dgPauseMap02Tex "__OTR__textures/icon_item_static/gPauseMap02Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap02Tex[] = dgPauseMap02Tex; -#else -static const char gPauseMap02Tex[] __attribute__((aligned (2))) = dgPauseMap02Tex; -#endif - -#define dgPauseMap12Tex "__OTR__textures/icon_item_static/gPauseMap12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap12Tex[] = dgPauseMap12Tex; -#else -static const char gPauseMap12Tex[] __attribute__((aligned (2))) = dgPauseMap12Tex; -#endif - -#define dgPauseMap22Tex "__OTR__textures/icon_item_static/gPauseMap22Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap22Tex[] = dgPauseMap22Tex; -#else -static const char gPauseMap22Tex[] __attribute__((aligned (2))) = dgPauseMap22Tex; -#endif - -#define dgPauseQuestStatus02Tex "__OTR__textures/icon_item_static/gPauseQuestStatus02Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus02Tex[] = dgPauseQuestStatus02Tex; -#else -static const char gPauseQuestStatus02Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus02Tex; -#endif - -#define dgPauseQuestStatus12Tex "__OTR__textures/icon_item_static/gPauseQuestStatus12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus12Tex[] = dgPauseQuestStatus12Tex; -#else -static const char gPauseQuestStatus12Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus12Tex; -#endif - -#define dgPauseQuestStatus22Tex "__OTR__textures/icon_item_static/gPauseQuestStatus22Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus22Tex[] = dgPauseQuestStatus22Tex; -#else -static const char gPauseQuestStatus22Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus22Tex; -#endif - -#define dgPauseSave02Tex "__OTR__textures/icon_item_static/gPauseSave02Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave02Tex[] = dgPauseSave02Tex; -#else -static const char gPauseSave02Tex[] __attribute__((aligned (2))) = dgPauseSave02Tex; -#endif - -#define dgPauseSave12Tex "__OTR__textures/icon_item_static/gPauseSave12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave12Tex[] = dgPauseSave12Tex; -#else -static const char gPauseSave12Tex[] __attribute__((aligned (2))) = dgPauseSave12Tex; -#endif - -#define dgPauseSave22Tex "__OTR__textures/icon_item_static/gPauseSave22Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave22Tex[] = dgPauseSave22Tex; -#else -static const char gPauseSave22Tex[] __attribute__((aligned (2))) = dgPauseSave22Tex; -#endif - -#define dgPauseEquipment03Tex "__OTR__textures/icon_item_static/gPauseEquipment03Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment03Tex[] = dgPauseEquipment03Tex; -#else -static const char gPauseEquipment03Tex[] __attribute__((aligned (2))) = dgPauseEquipment03Tex; -#endif - -#define dgPauseEquipment13Tex "__OTR__textures/icon_item_static/gPauseEquipment13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment13Tex[] = dgPauseEquipment13Tex; -#else -static const char gPauseEquipment13Tex[] __attribute__((aligned (2))) = dgPauseEquipment13Tex; -#endif - -#define dgPauseEquipment23Tex "__OTR__textures/icon_item_static/gPauseEquipment23Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment23Tex[] = dgPauseEquipment23Tex; -#else -static const char gPauseEquipment23Tex[] __attribute__((aligned (2))) = dgPauseEquipment23Tex; -#endif - -#define dgPauseSelectItem03Tex "__OTR__textures/icon_item_static/gPauseSelectItem03Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem03Tex[] = dgPauseSelectItem03Tex; -#else -static const char gPauseSelectItem03Tex[] __attribute__((aligned (2))) = dgPauseSelectItem03Tex; -#endif - -#define dgPauseSelectItem13Tex "__OTR__textures/icon_item_static/gPauseSelectItem13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem13Tex[] = dgPauseSelectItem13Tex; -#else -static const char gPauseSelectItem13Tex[] __attribute__((aligned (2))) = dgPauseSelectItem13Tex; -#endif - -#define dgPauseSelectItem23Tex "__OTR__textures/icon_item_static/gPauseSelectItem23Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem23Tex[] = dgPauseSelectItem23Tex; -#else -static const char gPauseSelectItem23Tex[] __attribute__((aligned (2))) = dgPauseSelectItem23Tex; -#endif - -#define dgPauseMap03Tex "__OTR__textures/icon_item_static/gPauseMap03Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap03Tex[] = dgPauseMap03Tex; -#else -static const char gPauseMap03Tex[] __attribute__((aligned (2))) = dgPauseMap03Tex; -#endif - -#define dgPauseMap13Tex "__OTR__textures/icon_item_static/gPauseMap13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap13Tex[] = dgPauseMap13Tex; -#else -static const char gPauseMap13Tex[] __attribute__((aligned (2))) = dgPauseMap13Tex; -#endif - -#define dgPauseMap23Tex "__OTR__textures/icon_item_static/gPauseMap23Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap23Tex[] = dgPauseMap23Tex; -#else -static const char gPauseMap23Tex[] __attribute__((aligned (2))) = dgPauseMap23Tex; -#endif - -#define dgPauseQuestStatus03Tex "__OTR__textures/icon_item_static/gPauseQuestStatus03Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus03Tex[] = dgPauseQuestStatus03Tex; -#else -static const char gPauseQuestStatus03Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus03Tex; -#endif - -#define dgPauseQuestStatus13Tex "__OTR__textures/icon_item_static/gPauseQuestStatus13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus13Tex[] = dgPauseQuestStatus13Tex; -#else -static const char gPauseQuestStatus13Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus13Tex; -#endif - -#define dgPauseQuestStatus23Tex "__OTR__textures/icon_item_static/gPauseQuestStatus23Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus23Tex[] = dgPauseQuestStatus23Tex; -#else -static const char gPauseQuestStatus23Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus23Tex; -#endif - -#define dgPauseSave03Tex "__OTR__textures/icon_item_static/gPauseSave03Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave03Tex[] = dgPauseSave03Tex; -#else -static const char gPauseSave03Tex[] __attribute__((aligned (2))) = dgPauseSave03Tex; -#endif - -#define dgPauseSave13Tex "__OTR__textures/icon_item_static/gPauseSave13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave13Tex[] = dgPauseSave13Tex; -#else -static const char gPauseSave13Tex[] __attribute__((aligned (2))) = dgPauseSave13Tex; -#endif - -#define dgPauseSave23Tex "__OTR__textures/icon_item_static/gPauseSave23Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave23Tex[] = dgPauseSave23Tex; -#else -static const char gPauseSave23Tex[] __attribute__((aligned (2))) = dgPauseSave23Tex; -#endif - -#define dgPauseEquipment04Tex "__OTR__textures/icon_item_static/gPauseEquipment04Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment04Tex[] = dgPauseEquipment04Tex; -#else -static const char gPauseEquipment04Tex[] __attribute__((aligned (2))) = dgPauseEquipment04Tex; -#endif - -#define dgPauseEquipment14Tex "__OTR__textures/icon_item_static/gPauseEquipment14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment14Tex[] = dgPauseEquipment14Tex; -#else -static const char gPauseEquipment14Tex[] __attribute__((aligned (2))) = dgPauseEquipment14Tex; -#endif - -#define dgPauseEquipment24Tex "__OTR__textures/icon_item_static/gPauseEquipment24Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseEquipment24Tex[] = dgPauseEquipment24Tex; -#else -static const char gPauseEquipment24Tex[] __attribute__((aligned (2))) = dgPauseEquipment24Tex; -#endif - -#define dgPauseSelectItem04Tex "__OTR__textures/icon_item_static/gPauseSelectItem04Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem04Tex[] = dgPauseSelectItem04Tex; -#else -static const char gPauseSelectItem04Tex[] __attribute__((aligned (2))) = dgPauseSelectItem04Tex; -#endif - -#define dgPauseSelectItem14Tex "__OTR__textures/icon_item_static/gPauseSelectItem14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem14Tex[] = dgPauseSelectItem14Tex; -#else -static const char gPauseSelectItem14Tex[] __attribute__((aligned (2))) = dgPauseSelectItem14Tex; -#endif - -#define dgPauseSelectItem24Tex "__OTR__textures/icon_item_static/gPauseSelectItem24Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSelectItem24Tex[] = dgPauseSelectItem24Tex; -#else -static const char gPauseSelectItem24Tex[] __attribute__((aligned (2))) = dgPauseSelectItem24Tex; -#endif - -#define dgPauseMap04Tex "__OTR__textures/icon_item_static/gPauseMap04Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap04Tex[] = dgPauseMap04Tex; -#else -static const char gPauseMap04Tex[] __attribute__((aligned (2))) = dgPauseMap04Tex; -#endif - -#define dgPauseMap14Tex "__OTR__textures/icon_item_static/gPauseMap14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap14Tex[] = dgPauseMap14Tex; -#else -static const char gPauseMap14Tex[] __attribute__((aligned (2))) = dgPauseMap14Tex; -#endif - -#define dgPauseMap24Tex "__OTR__textures/icon_item_static/gPauseMap24Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseMap24Tex[] = dgPauseMap24Tex; -#else -static const char gPauseMap24Tex[] __attribute__((aligned (2))) = dgPauseMap24Tex; -#endif - -#define dgPauseQuestStatus04Tex "__OTR__textures/icon_item_static/gPauseQuestStatus04Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus04Tex[] = dgPauseQuestStatus04Tex; -#else -static const char gPauseQuestStatus04Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus04Tex; -#endif - -#define dgPauseQuestStatus14Tex "__OTR__textures/icon_item_static/gPauseQuestStatus14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus14Tex[] = dgPauseQuestStatus14Tex; -#else -static const char gPauseQuestStatus14Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus14Tex; -#endif - -#define dgPauseQuestStatus24Tex "__OTR__textures/icon_item_static/gPauseQuestStatus24Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseQuestStatus24Tex[] = dgPauseQuestStatus24Tex; -#else -static const char gPauseQuestStatus24Tex[] __attribute__((aligned (2))) = dgPauseQuestStatus24Tex; -#endif - -#define dgPauseSave04Tex "__OTR__textures/icon_item_static/gPauseSave04Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave04Tex[] = dgPauseSave04Tex; -#else -static const char gPauseSave04Tex[] __attribute__((aligned (2))) = dgPauseSave04Tex; -#endif - -#define dgPauseSave14Tex "__OTR__textures/icon_item_static/gPauseSave14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave14Tex[] = dgPauseSave14Tex; -#else -static const char gPauseSave14Tex[] __attribute__((aligned (2))) = dgPauseSave14Tex; -#endif - -#define dgPauseSave24Tex "__OTR__textures/icon_item_static/gPauseSave24Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseSave24Tex[] = dgPauseSave24Tex; -#else -static const char gPauseSave24Tex[] __attribute__((aligned (2))) = dgPauseSave24Tex; -#endif - -#define dgPauseGameOver10Tex "__OTR__textures/icon_item_static/gPauseGameOver10Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPauseGameOver10Tex[] = dgPauseGameOver10Tex; -#else -static const char gPauseGameOver10Tex[] __attribute__((aligned (2))) = dgPauseGameOver10Tex; -#endif - -#define dgABtnSymbolTex "__OTR__textures/icon_item_static/gABtnSymbolTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gABtnSymbolTex[] = dgABtnSymbolTex; -#else -static const char gABtnSymbolTex[] __attribute__((aligned (2))) = dgABtnSymbolTex; -#endif - -#define dgBBtnSymbolTex "__OTR__textures/icon_item_static/gBBtnSymbolTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBBtnSymbolTex[] = dgBBtnSymbolTex; -#else -static const char gBBtnSymbolTex[] __attribute__((aligned (2))) = dgBBtnSymbolTex; -#endif - -#define dgCBtnSymbolsTex "__OTR__textures/icon_item_static/gCBtnSymbolsTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCBtnSymbolsTex[] = dgCBtnSymbolsTex; -#else -static const char gCBtnSymbolsTex[] __attribute__((aligned (2))) = dgCBtnSymbolsTex; -#endif - -#define dgNamePanelLeftTex "__OTR__textures/icon_item_static/gNamePanelLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNamePanelLeftTex[] = dgNamePanelLeftTex; -#else -static const char gNamePanelLeftTex[] __attribute__((aligned (2))) = dgNamePanelLeftTex; -#endif - -#define dgNamePanelRightTex "__OTR__textures/icon_item_static/gNamePanelRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNamePanelRightTex[] = dgNamePanelRightTex; -#else -static const char gNamePanelRightTex[] __attribute__((aligned (2))) = dgNamePanelRightTex; -#endif - -#define dgLButtonTex "__OTR__textures/icon_item_static/gLButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLButtonTex[] = dgLButtonTex; -#else -static const char gLButtonTex[] __attribute__((aligned (2))) = dgLButtonTex; -#endif - -#define dgRButtonTex "__OTR__textures/icon_item_static/gRButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRButtonTex[] = dgRButtonTex; -#else -static const char gRButtonTex[] __attribute__((aligned (2))) = dgRButtonTex; -#endif - -#define dgUnknownJPTex "__OTR__textures/icon_item_static/gUnknownJPTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnknownJPTex[] = dgUnknownJPTex; -#else -static const char gUnknownJPTex[] __attribute__((aligned (2))) = dgUnknownJPTex; -#endif - -#define dgSongNoteTex "__OTR__textures/icon_item_static/gSongNoteTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongNoteTex[] = dgSongNoteTex; -#else -static const char gSongNoteTex[] __attribute__((aligned (2))) = dgSongNoteTex; -#endif - -#define dgMagicArrowEquipEffectTex "__OTR__textures/icon_item_static/gMagicArrowEquipEffectTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicArrowEquipEffectTex[] = dgMagicArrowEquipEffectTex; -#else -static const char gMagicArrowEquipEffectTex[] __attribute__((aligned (2))) = dgMagicArrowEquipEffectTex; -#endif - -#define dgItemNamePanelDL "__OTR__textures/icon_item_static/gItemNamePanelDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gItemNamePanelDL[] = dgItemNamePanelDL; -#else -static const char gItemNamePanelDL[] __attribute__((aligned (2))) = dgItemNamePanelDL; -#endif - -#define dgLButtonIconDL "__OTR__textures/icon_item_static/gLButtonIconDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gLButtonIconDL[] = dgLButtonIconDL; -#else -static const char gLButtonIconDL[] __attribute__((aligned (2))) = dgLButtonIconDL; -#endif - -#define dgRButtonIconDL "__OTR__textures/icon_item_static/gRButtonIconDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gRButtonIconDL[] = dgRButtonIconDL; -#else -static const char gRButtonIconDL[] __attribute__((aligned (2))) = dgRButtonIconDL; -#endif - -#define dgCButtonIconsDL "__OTR__textures/icon_item_static/gCButtonIconsDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gCButtonIconsDL[] = dgCButtonIconsDL; -#else -static const char gCButtonIconsDL[] __attribute__((aligned (2))) = dgCButtonIconsDL; -#endif - -#define dgAButtonIconDL "__OTR__textures/icon_item_static/gAButtonIconDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gAButtonIconDL[] = dgAButtonIconDL; -#else -static const char gAButtonIconDL[] __attribute__((aligned (2))) = dgAButtonIconDL; -#endif - -#define dgBButtonIconDL "__OTR__textures/icon_item_static/gBButtonIconDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gBButtonIconDL[] = dgBButtonIconDL; -#else -static const char gBButtonIconDL[] __attribute__((aligned (2))) = dgBButtonIconDL; -#endif - -#define dgPromptCursorLeftDL "__OTR__textures/icon_item_static/gPromptCursorLeftDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPromptCursorLeftDL[] = dgPromptCursorLeftDL; -#else -static const char gPromptCursorLeftDL[] __attribute__((aligned (2))) = dgPromptCursorLeftDL; -#endif - -#define dgPromptCursorRightDL "__OTR__textures/icon_item_static/gPromptCursorRightDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gPromptCursorRightDL[] = dgPromptCursorRightDL; -#else -static const char gPromptCursorRightDL[] __attribute__((aligned (2))) = dgPromptCursorRightDL; -#endif - +#include "align_asset_macro.h" + +#define dgDekuStickIconTex "__OTR__textures/icon_item_static/gDekuStickIconTex" +static const ALIGN_ASSET(2) char gDekuStickIconTex[] = dgDekuStickIconTex; + +#define dgDekuNutIconTex "__OTR__textures/icon_item_static/gDekuNutIconTex" +static const ALIGN_ASSET(2) char gDekuNutIconTex[] = dgDekuNutIconTex; + +#define dgBombIconTex "__OTR__textures/icon_item_static/gBombIconTex" +static const ALIGN_ASSET(2) char gBombIconTex[] = dgBombIconTex; + +#define dgFairyBowIconTex "__OTR__textures/icon_item_static/gFairyBowIconTex" +static const ALIGN_ASSET(2) char gFairyBowIconTex[] = dgFairyBowIconTex; + +#define dgFireArrowIconTex "__OTR__textures/icon_item_static/gFireArrowIconTex" +static const ALIGN_ASSET(2) char gFireArrowIconTex[] = dgFireArrowIconTex; + +#define dgDinsFireIconTex "__OTR__textures/icon_item_static/gDinsFireIconTex" +static const ALIGN_ASSET(2) char gDinsFireIconTex[] = dgDinsFireIconTex; + +#define dgFairySlingshotIconTex "__OTR__textures/icon_item_static/gFairySlingshotIconTex" +static const ALIGN_ASSET(2) char gFairySlingshotIconTex[] = dgFairySlingshotIconTex; + +#define dgFairyOcarinaIconTex "__OTR__textures/icon_item_static/gFairyOcarinaIconTex" +static const ALIGN_ASSET(2) char gFairyOcarinaIconTex[] = dgFairyOcarinaIconTex; + +#define dgOcarinaofTimeIconTex "__OTR__textures/icon_item_static/gOcarinaofTimeIconTex" +static const ALIGN_ASSET(2) char gOcarinaofTimeIconTex[] = dgOcarinaofTimeIconTex; + +#define dgBombchuIconTex "__OTR__textures/icon_item_static/gBombchuIconTex" +static const ALIGN_ASSET(2) char gBombchuIconTex[] = dgBombchuIconTex; + +#define dgHookshotIconTex "__OTR__textures/icon_item_static/gHookshotIconTex" +static const ALIGN_ASSET(2) char gHookshotIconTex[] = dgHookshotIconTex; + +#define dgLongshotIconTex "__OTR__textures/icon_item_static/gLongshotIconTex" +static const ALIGN_ASSET(2) char gLongshotIconTex[] = dgLongshotIconTex; + +#define dgIceArrowIconTex "__OTR__textures/icon_item_static/gIceArrowIconTex" +static const ALIGN_ASSET(2) char gIceArrowIconTex[] = dgIceArrowIconTex; + +#define dgFaroresWindIconTex "__OTR__textures/icon_item_static/gFaroresWindIconTex" +static const ALIGN_ASSET(2) char gFaroresWindIconTex[] = dgFaroresWindIconTex; + +#define dgBoomerangIconTex "__OTR__textures/icon_item_static/gBoomerangIconTex" +static const ALIGN_ASSET(2) char gBoomerangIconTex[] = dgBoomerangIconTex; + +#define dgLensofTruthIconTex "__OTR__textures/icon_item_static/gLensofTruthIconTex" +static const ALIGN_ASSET(2) char gLensofTruthIconTex[] = dgLensofTruthIconTex; + +#define dgMagicBeansIconTex "__OTR__textures/icon_item_static/gMagicBeansIconTex" +static const ALIGN_ASSET(2) char gMagicBeansIconTex[] = dgMagicBeansIconTex; + +#define dgMegatonHammerIconTex "__OTR__textures/icon_item_static/gMegatonHammerIconTex" +static const ALIGN_ASSET(2) char gMegatonHammerIconTex[] = dgMegatonHammerIconTex; + +#define dgLightArrowIconTex "__OTR__textures/icon_item_static/gLightArrowIconTex" +static const ALIGN_ASSET(2) char gLightArrowIconTex[] = dgLightArrowIconTex; + +#define dgNayrusLoveIconTex "__OTR__textures/icon_item_static/gNayrusLoveIconTex" +static const ALIGN_ASSET(2) char gNayrusLoveIconTex[] = dgNayrusLoveIconTex; + +#define dgEmptyBottleIconTex "__OTR__textures/icon_item_static/gEmptyBottleIconTex" +static const ALIGN_ASSET(2) char gEmptyBottleIconTex[] = dgEmptyBottleIconTex; + +#define dgRedPotionIconTex "__OTR__textures/icon_item_static/gRedPotionIconTex" +static const ALIGN_ASSET(2) char gRedPotionIconTex[] = dgRedPotionIconTex; + +#define dgGreenPotionIconTex "__OTR__textures/icon_item_static/gGreenPotionIconTex" +static const ALIGN_ASSET(2) char gGreenPotionIconTex[] = dgGreenPotionIconTex; + +#define dgBluePotionIconTex "__OTR__textures/icon_item_static/gBluePotionIconTex" +static const ALIGN_ASSET(2) char gBluePotionIconTex[] = dgBluePotionIconTex; + +#define dgBottledFairyIconTex "__OTR__textures/icon_item_static/gBottledFairyIconTex" +static const ALIGN_ASSET(2) char gBottledFairyIconTex[] = dgBottledFairyIconTex; + +#define dgFishIconTex "__OTR__textures/icon_item_static/gFishIconTex" +static const ALIGN_ASSET(2) char gFishIconTex[] = dgFishIconTex; + +#define dgMilkFullIconTex "__OTR__textures/icon_item_static/gMilkFullIconTex" +static const ALIGN_ASSET(2) char gMilkFullIconTex[] = dgMilkFullIconTex; + +#define dgRutosLetterIconTex "__OTR__textures/icon_item_static/gRutosLetterIconTex" +static const ALIGN_ASSET(2) char gRutosLetterIconTex[] = dgRutosLetterIconTex; + +#define dgBlueFireIconTex "__OTR__textures/icon_item_static/gBlueFireIconTex" +static const ALIGN_ASSET(2) char gBlueFireIconTex[] = dgBlueFireIconTex; + +#define dgBugIconTex "__OTR__textures/icon_item_static/gBugIconTex" +static const ALIGN_ASSET(2) char gBugIconTex[] = dgBugIconTex; + +#define dgBigPoeIconTex "__OTR__textures/icon_item_static/gBigPoeIconTex" +static const ALIGN_ASSET(2) char gBigPoeIconTex[] = dgBigPoeIconTex; + +#define dgMilkhalfIconTex "__OTR__textures/icon_item_static/gMilkhalfIconTex" +static const ALIGN_ASSET(2) char gMilkhalfIconTex[] = dgMilkhalfIconTex; + +#define dgPoeIconTex "__OTR__textures/icon_item_static/gPoeIconTex" +static const ALIGN_ASSET(2) char gPoeIconTex[] = dgPoeIconTex; + +#define dgWeirdEggIconTex "__OTR__textures/icon_item_static/gWeirdEggIconTex" +static const ALIGN_ASSET(2) char gWeirdEggIconTex[] = dgWeirdEggIconTex; + +#define dgCuccoIconTex "__OTR__textures/icon_item_static/gCuccoIconTex" +static const ALIGN_ASSET(2) char gCuccoIconTex[] = dgCuccoIconTex; + +#define dgZeldasLetterIconTex "__OTR__textures/icon_item_static/gZeldasLetterIconTex" +static const ALIGN_ASSET(2) char gZeldasLetterIconTex[] = dgZeldasLetterIconTex; + +#define dgKeatonMaskIconTex "__OTR__textures/icon_item_static/gKeatonMaskIconTex" +static const ALIGN_ASSET(2) char gKeatonMaskIconTex[] = dgKeatonMaskIconTex; + +#define dgSkullMaskIconTex "__OTR__textures/icon_item_static/gSkullMaskIconTex" +static const ALIGN_ASSET(2) char gSkullMaskIconTex[] = dgSkullMaskIconTex; + +#define dgSpookyMaskIconTex "__OTR__textures/icon_item_static/gSpookyMaskIconTex" +static const ALIGN_ASSET(2) char gSpookyMaskIconTex[] = dgSpookyMaskIconTex; + +#define dgBunnyHoodIconTex "__OTR__textures/icon_item_static/gBunnyHoodIconTex" +static const ALIGN_ASSET(2) char gBunnyHoodIconTex[] = dgBunnyHoodIconTex; + +#define dgGoronMaskIconTex "__OTR__textures/icon_item_static/gGoronMaskIconTex" +static const ALIGN_ASSET(2) char gGoronMaskIconTex[] = dgGoronMaskIconTex; + +#define dgZoraMaskIconTex "__OTR__textures/icon_item_static/gZoraMaskIconTex" +static const ALIGN_ASSET(2) char gZoraMaskIconTex[] = dgZoraMaskIconTex; + +#define dgGerudoMaskIconTex "__OTR__textures/icon_item_static/gGerudoMaskIconTex" +static const ALIGN_ASSET(2) char gGerudoMaskIconTex[] = dgGerudoMaskIconTex; + +#define dgMaskofTruthIconTex "__OTR__textures/icon_item_static/gMaskofTruthIconTex" +static const ALIGN_ASSET(2) char gMaskofTruthIconTex[] = dgMaskofTruthIconTex; + +#define dgSoldOutIconTex "__OTR__textures/icon_item_static/gSoldOutIconTex" +static const ALIGN_ASSET(2) char gSoldOutIconTex[] = dgSoldOutIconTex; + +#define dgPocketEggIconTex "__OTR__textures/icon_item_static/gPocketEggIconTex" +static const ALIGN_ASSET(2) char gPocketEggIconTex[] = dgPocketEggIconTex; + +#define dgPocketCuccoIconTex "__OTR__textures/icon_item_static/gPocketCuccoIconTex" +static const ALIGN_ASSET(2) char gPocketCuccoIconTex[] = dgPocketCuccoIconTex; + +#define dgCojiroIconTex "__OTR__textures/icon_item_static/gCojiroIconTex" +static const ALIGN_ASSET(2) char gCojiroIconTex[] = dgCojiroIconTex; + +#define dgOddMushroomIconTex "__OTR__textures/icon_item_static/gOddMushroomIconTex" +static const ALIGN_ASSET(2) char gOddMushroomIconTex[] = dgOddMushroomIconTex; + +#define dgOddPotionIconTex "__OTR__textures/icon_item_static/gOddPotionIconTex" +static const ALIGN_ASSET(2) char gOddPotionIconTex[] = dgOddPotionIconTex; + +#define dgPoachersSawIconTex "__OTR__textures/icon_item_static/gPoachersSawIconTex" +static const ALIGN_ASSET(2) char gPoachersSawIconTex[] = dgPoachersSawIconTex; + +#define dgBrokenBiggoronSwordIconTex "__OTR__textures/icon_item_static/gBrokenBiggoronSwordIconTex" +static const ALIGN_ASSET(2) char gBrokenBiggoronSwordIconTex[] = dgBrokenBiggoronSwordIconTex; + +#define dgPrescriptionIconTex "__OTR__textures/icon_item_static/gPrescriptionIconTex" +static const ALIGN_ASSET(2) char gPrescriptionIconTex[] = dgPrescriptionIconTex; + +#define dgEyeBallFrogIconTex "__OTR__textures/icon_item_static/gEyeBallFrogIconTex" +static const ALIGN_ASSET(2) char gEyeBallFrogIconTex[] = dgEyeBallFrogIconTex; + +#define dgEyeDropsIconTex "__OTR__textures/icon_item_static/gEyeDropsIconTex" +static const ALIGN_ASSET(2) char gEyeDropsIconTex[] = dgEyeDropsIconTex; + +#define dgClaimCheckIconTex "__OTR__textures/icon_item_static/gClaimCheckIconTex" +static const ALIGN_ASSET(2) char gClaimCheckIconTex[] = dgClaimCheckIconTex; + +#define dgFairyBowFireIconTex "__OTR__textures/icon_item_static/gFairyBowFireIconTex" +static const ALIGN_ASSET(2) char gFairyBowFireIconTex[] = dgFairyBowFireIconTex; + +#define dgFairyBowIceIconTex "__OTR__textures/icon_item_static/gFairyBowIceIconTex" +static const ALIGN_ASSET(2) char gFairyBowIceIconTex[] = dgFairyBowIceIconTex; + +#define dgFairyBowLightIconTex "__OTR__textures/icon_item_static/gFairyBowLightIconTex" +static const ALIGN_ASSET(2) char gFairyBowLightIconTex[] = dgFairyBowLightIconTex; + +#define dgKokiriSwordIconTex "__OTR__textures/icon_item_static/gKokiriSwordIconTex" +static const ALIGN_ASSET(2) char gKokiriSwordIconTex[] = dgKokiriSwordIconTex; + +#define dgMasterSwordIconTex "__OTR__textures/icon_item_static/gMasterSwordIconTex" +static const ALIGN_ASSET(2) char gMasterSwordIconTex[] = dgMasterSwordIconTex; + +#define dgBiggoronSwordIconTex "__OTR__textures/icon_item_static/gBiggoronSwordIconTex" +static const ALIGN_ASSET(2) char gBiggoronSwordIconTex[] = dgBiggoronSwordIconTex; + +#define dgDekuShieldIconTex "__OTR__textures/icon_item_static/gDekuShieldIconTex" +static const ALIGN_ASSET(2) char gDekuShieldIconTex[] = dgDekuShieldIconTex; + +#define dgHylianShieldIconTex "__OTR__textures/icon_item_static/gHylianShieldIconTex" +static const ALIGN_ASSET(2) char gHylianShieldIconTex[] = dgHylianShieldIconTex; + +#define dgMirrorShieldIconTex "__OTR__textures/icon_item_static/gMirrorShieldIconTex" +static const ALIGN_ASSET(2) char gMirrorShieldIconTex[] = dgMirrorShieldIconTex; + +#define dgKokiriTunicIconTex "__OTR__textures/icon_item_static/gKokiriTunicIconTex" +static const ALIGN_ASSET(2) char gKokiriTunicIconTex[] = dgKokiriTunicIconTex; + +#define dgGoronTunicIconTex "__OTR__textures/icon_item_static/gGoronTunicIconTex" +static const ALIGN_ASSET(2) char gGoronTunicIconTex[] = dgGoronTunicIconTex; + +#define dgZoraTunicIconTex "__OTR__textures/icon_item_static/gZoraTunicIconTex" +static const ALIGN_ASSET(2) char gZoraTunicIconTex[] = dgZoraTunicIconTex; + +#define dgKokiriBootsIconTex "__OTR__textures/icon_item_static/gKokiriBootsIconTex" +static const ALIGN_ASSET(2) char gKokiriBootsIconTex[] = dgKokiriBootsIconTex; + +#define dgIronBootsIconTex "__OTR__textures/icon_item_static/gIronBootsIconTex" +static const ALIGN_ASSET(2) char gIronBootsIconTex[] = dgIronBootsIconTex; + +#define dgHoverBootsIconTex "__OTR__textures/icon_item_static/gHoverBootsIconTex" +static const ALIGN_ASSET(2) char gHoverBootsIconTex[] = dgHoverBootsIconTex; + +#define dgBulletBag30IconTex "__OTR__textures/icon_item_static/gBulletBag30IconTex" +static const ALIGN_ASSET(2) char gBulletBag30IconTex[] = dgBulletBag30IconTex; + +#define dgBulletBag40IconTex "__OTR__textures/icon_item_static/gBulletBag40IconTex" +static const ALIGN_ASSET(2) char gBulletBag40IconTex[] = dgBulletBag40IconTex; + +#define dgBulletBag50IconTex "__OTR__textures/icon_item_static/gBulletBag50IconTex" +static const ALIGN_ASSET(2) char gBulletBag50IconTex[] = dgBulletBag50IconTex; + +#define dgQuiver30IconTex "__OTR__textures/icon_item_static/gQuiver30IconTex" +static const ALIGN_ASSET(2) char gQuiver30IconTex[] = dgQuiver30IconTex; + +#define dgQuiver40IconTex "__OTR__textures/icon_item_static/gQuiver40IconTex" +static const ALIGN_ASSET(2) char gQuiver40IconTex[] = dgQuiver40IconTex; + +#define dgQuiver50IconTex "__OTR__textures/icon_item_static/gQuiver50IconTex" +static const ALIGN_ASSET(2) char gQuiver50IconTex[] = dgQuiver50IconTex; + +#define dgBombBag20IconTex "__OTR__textures/icon_item_static/gBombBag20IconTex" +static const ALIGN_ASSET(2) char gBombBag20IconTex[] = dgBombBag20IconTex; + +#define dgBombBag30IconTex "__OTR__textures/icon_item_static/gBombBag30IconTex" +static const ALIGN_ASSET(2) char gBombBag30IconTex[] = dgBombBag30IconTex; + +#define dgBombBag40IconTex "__OTR__textures/icon_item_static/gBombBag40IconTex" +static const ALIGN_ASSET(2) char gBombBag40IconTex[] = dgBombBag40IconTex; + +#define dgGoronsBraceletIconTex "__OTR__textures/icon_item_static/gGoronsBraceletIconTex" +static const ALIGN_ASSET(2) char gGoronsBraceletIconTex[] = dgGoronsBraceletIconTex; + +#define dgSilverGauntletsIconTex "__OTR__textures/icon_item_static/gSilverGauntletsIconTex" +static const ALIGN_ASSET(2) char gSilverGauntletsIconTex[] = dgSilverGauntletsIconTex; + +#define dgGoldenGauntletsIconTex "__OTR__textures/icon_item_static/gGoldenGauntletsIconTex" +static const ALIGN_ASSET(2) char gGoldenGauntletsIconTex[] = dgGoldenGauntletsIconTex; + +#define dgSilverScaleIconTex "__OTR__textures/icon_item_static/gSilverScaleIconTex" +static const ALIGN_ASSET(2) char gSilverScaleIconTex[] = dgSilverScaleIconTex; + +#define dgGoldenScaleIconTex "__OTR__textures/icon_item_static/gGoldenScaleIconTex" +static const ALIGN_ASSET(2) char gGoldenScaleIconTex[] = dgGoldenScaleIconTex; + +#define dgBrokenGiantsKnifeIconTex "__OTR__textures/icon_item_static/gBrokenGiantsKnifeIconTex" +static const ALIGN_ASSET(2) char gBrokenGiantsKnifeIconTex[] = dgBrokenGiantsKnifeIconTex; + +#define dgAdultsWalletIconTex "__OTR__textures/icon_item_static/gAdultsWalletIconTex" +static const ALIGN_ASSET(2) char gAdultsWalletIconTex[] = dgAdultsWalletIconTex; + +#define dgGiantsWalletIconTex "__OTR__textures/icon_item_static/gGiantsWalletIconTex" +static const ALIGN_ASSET(2) char gGiantsWalletIconTex[] = dgGiantsWalletIconTex; + +#define dgDekuSeedsIconTex "__OTR__textures/icon_item_static/gDekuSeedsIconTex" +static const ALIGN_ASSET(2) char gDekuSeedsIconTex[] = dgDekuSeedsIconTex; + +#define dgFishingPoleIconTex "__OTR__textures/icon_item_static/gFishingPoleIconTex" +static const ALIGN_ASSET(2) char gFishingPoleIconTex[] = dgFishingPoleIconTex; + +#define dgHeartPieceIcon1Tex "__OTR__textures/icon_item_static/gHeartPieceIcon1Tex" +static const ALIGN_ASSET(2) char gHeartPieceIcon1Tex[] = dgHeartPieceIcon1Tex; + +#define dgHeartPieceIcon2Tex "__OTR__textures/icon_item_static/gHeartPieceIcon2Tex" +static const ALIGN_ASSET(2) char gHeartPieceIcon2Tex[] = dgHeartPieceIcon2Tex; + +#define dgHeartPieceIcon3Tex "__OTR__textures/icon_item_static/gHeartPieceIcon3Tex" +static const ALIGN_ASSET(2) char gHeartPieceIcon3Tex[] = dgHeartPieceIcon3Tex; + +#define dgPausePromptCursorTex "__OTR__textures/icon_item_static/gPausePromptCursorTex" +static const ALIGN_ASSET(2) char gPausePromptCursorTex[] = dgPausePromptCursorTex; + +#define dgPauseUnusedCursorTex "__OTR__textures/icon_item_static/gPauseUnusedCursorTex" +static const ALIGN_ASSET(2) char gPauseUnusedCursorTex[] = dgPauseUnusedCursorTex; + +#define dgPauseMenuCursorTopLeftTex "__OTR__textures/icon_item_static/gPauseMenuCursorTopLeftTex" +static const ALIGN_ASSET(2) char gPauseMenuCursorTopLeftTex[] = dgPauseMenuCursorTopLeftTex; + +#define dgPauseMenuCursorTopRightTex "__OTR__textures/icon_item_static/gPauseMenuCursorTopRightTex" +static const ALIGN_ASSET(2) char gPauseMenuCursorTopRightTex[] = dgPauseMenuCursorTopRightTex; + +#define dgPauseMenuCursorBottomLeftTex "__OTR__textures/icon_item_static/gPauseMenuCursorBottomLeftTex" +static const ALIGN_ASSET(2) char gPauseMenuCursorBottomLeftTex[] = dgPauseMenuCursorBottomLeftTex; + +#define dgPauseMenuCursorBottomRightTex "__OTR__textures/icon_item_static/gPauseMenuCursorBottomRightTex" +static const ALIGN_ASSET(2) char gPauseMenuCursorBottomRightTex[] = dgPauseMenuCursorBottomRightTex; + +#define dgPauseEquipment00Tex "__OTR__textures/icon_item_static/gPauseEquipment00Tex" +static const ALIGN_ASSET(2) char gPauseEquipment00Tex[] = dgPauseEquipment00Tex; + +#define dgPauseEquipment20Tex "__OTR__textures/icon_item_static/gPauseEquipment20Tex" +static const ALIGN_ASSET(2) char gPauseEquipment20Tex[] = dgPauseEquipment20Tex; + +#define dgPauseMap00Tex "__OTR__textures/icon_item_static/gPauseMap00Tex" +static const ALIGN_ASSET(2) char gPauseMap00Tex[] = dgPauseMap00Tex; + +#define dgPauseMap20Tex "__OTR__textures/icon_item_static/gPauseMap20Tex" +static const ALIGN_ASSET(2) char gPauseMap20Tex[] = dgPauseMap20Tex; + +#define dgPauseQuestStatus00Tex "__OTR__textures/icon_item_static/gPauseQuestStatus00Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus00Tex[] = dgPauseQuestStatus00Tex; + +#define dgPauseQuestStatus20Tex "__OTR__textures/icon_item_static/gPauseQuestStatus20Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus20Tex[] = dgPauseQuestStatus20Tex; + +#define dgPauseSave00Tex "__OTR__textures/icon_item_static/gPauseSave00Tex" +static const ALIGN_ASSET(2) char gPauseSave00Tex[] = dgPauseSave00Tex; + +#define dgPauseSave20Tex "__OTR__textures/icon_item_static/gPauseSave20Tex" +static const ALIGN_ASSET(2) char gPauseSave20Tex[] = dgPauseSave20Tex; + +#define dgPauseEquipment01Tex "__OTR__textures/icon_item_static/gPauseEquipment01Tex" +static const ALIGN_ASSET(2) char gPauseEquipment01Tex[] = dgPauseEquipment01Tex; + +#define dgPauseEquipment11Tex "__OTR__textures/icon_item_static/gPauseEquipment11Tex" +static const ALIGN_ASSET(2) char gPauseEquipment11Tex[] = dgPauseEquipment11Tex; + +#define dgPauseEquipment21Tex "__OTR__textures/icon_item_static/gPauseEquipment21Tex" +static const ALIGN_ASSET(2) char gPauseEquipment21Tex[] = dgPauseEquipment21Tex; + +#define dgPauseSelectItem01Tex "__OTR__textures/icon_item_static/gPauseSelectItem01Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem01Tex[] = dgPauseSelectItem01Tex; + +#define dgPauseSelectItem11Tex "__OTR__textures/icon_item_static/gPauseSelectItem11Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem11Tex[] = dgPauseSelectItem11Tex; + +#define dgPauseSelectItem21Tex "__OTR__textures/icon_item_static/gPauseSelectItem21Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem21Tex[] = dgPauseSelectItem21Tex; + +#define dgPauseMap01Tex "__OTR__textures/icon_item_static/gPauseMap01Tex" +static const ALIGN_ASSET(2) char gPauseMap01Tex[] = dgPauseMap01Tex; + +#define dgPauseMap11Tex "__OTR__textures/icon_item_static/gPauseMap11Tex" +static const ALIGN_ASSET(2) char gPauseMap11Tex[] = dgPauseMap11Tex; + +#define dgPauseMap21Tex "__OTR__textures/icon_item_static/gPauseMap21Tex" +static const ALIGN_ASSET(2) char gPauseMap21Tex[] = dgPauseMap21Tex; + +#define dgPauseQuestStatus01Tex "__OTR__textures/icon_item_static/gPauseQuestStatus01Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus01Tex[] = dgPauseQuestStatus01Tex; + +#define dgPauseQuestStatus11Tex "__OTR__textures/icon_item_static/gPauseQuestStatus11Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus11Tex[] = dgPauseQuestStatus11Tex; + +#define dgPauseQuestStatus21Tex "__OTR__textures/icon_item_static/gPauseQuestStatus21Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus21Tex[] = dgPauseQuestStatus21Tex; + +#define dgPauseSave01Tex "__OTR__textures/icon_item_static/gPauseSave01Tex" +static const ALIGN_ASSET(2) char gPauseSave01Tex[] = dgPauseSave01Tex; + +#define dgPauseSave11Tex "__OTR__textures/icon_item_static/gPauseSave11Tex" +static const ALIGN_ASSET(2) char gPauseSave11Tex[] = dgPauseSave11Tex; + +#define dgPauseSave21Tex "__OTR__textures/icon_item_static/gPauseSave21Tex" +static const ALIGN_ASSET(2) char gPauseSave21Tex[] = dgPauseSave21Tex; + +#define dgPauseEquipment02Tex "__OTR__textures/icon_item_static/gPauseEquipment02Tex" +static const ALIGN_ASSET(2) char gPauseEquipment02Tex[] = dgPauseEquipment02Tex; + +#define dgPauseEquipment12Tex "__OTR__textures/icon_item_static/gPauseEquipment12Tex" +static const ALIGN_ASSET(2) char gPauseEquipment12Tex[] = dgPauseEquipment12Tex; + +#define dgPauseEquipment22Tex "__OTR__textures/icon_item_static/gPauseEquipment22Tex" +static const ALIGN_ASSET(2) char gPauseEquipment22Tex[] = dgPauseEquipment22Tex; + +#define dgPauseSelectItem02Tex "__OTR__textures/icon_item_static/gPauseSelectItem02Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem02Tex[] = dgPauseSelectItem02Tex; + +#define dgPauseSelectItem12Tex "__OTR__textures/icon_item_static/gPauseSelectItem12Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem12Tex[] = dgPauseSelectItem12Tex; + +#define dgPauseSelectItem22Tex "__OTR__textures/icon_item_static/gPauseSelectItem22Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem22Tex[] = dgPauseSelectItem22Tex; + +#define dgPauseMap02Tex "__OTR__textures/icon_item_static/gPauseMap02Tex" +static const ALIGN_ASSET(2) char gPauseMap02Tex[] = dgPauseMap02Tex; + +#define dgPauseMap12Tex "__OTR__textures/icon_item_static/gPauseMap12Tex" +static const ALIGN_ASSET(2) char gPauseMap12Tex[] = dgPauseMap12Tex; + +#define dgPauseMap22Tex "__OTR__textures/icon_item_static/gPauseMap22Tex" +static const ALIGN_ASSET(2) char gPauseMap22Tex[] = dgPauseMap22Tex; + +#define dgPauseQuestStatus02Tex "__OTR__textures/icon_item_static/gPauseQuestStatus02Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus02Tex[] = dgPauseQuestStatus02Tex; + +#define dgPauseQuestStatus12Tex "__OTR__textures/icon_item_static/gPauseQuestStatus12Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus12Tex[] = dgPauseQuestStatus12Tex; + +#define dgPauseQuestStatus22Tex "__OTR__textures/icon_item_static/gPauseQuestStatus22Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus22Tex[] = dgPauseQuestStatus22Tex; + +#define dgPauseSave02Tex "__OTR__textures/icon_item_static/gPauseSave02Tex" +static const ALIGN_ASSET(2) char gPauseSave02Tex[] = dgPauseSave02Tex; + +#define dgPauseSave12Tex "__OTR__textures/icon_item_static/gPauseSave12Tex" +static const ALIGN_ASSET(2) char gPauseSave12Tex[] = dgPauseSave12Tex; + +#define dgPauseSave22Tex "__OTR__textures/icon_item_static/gPauseSave22Tex" +static const ALIGN_ASSET(2) char gPauseSave22Tex[] = dgPauseSave22Tex; + +#define dgPauseEquipment03Tex "__OTR__textures/icon_item_static/gPauseEquipment03Tex" +static const ALIGN_ASSET(2) char gPauseEquipment03Tex[] = dgPauseEquipment03Tex; + +#define dgPauseEquipment13Tex "__OTR__textures/icon_item_static/gPauseEquipment13Tex" +static const ALIGN_ASSET(2) char gPauseEquipment13Tex[] = dgPauseEquipment13Tex; + +#define dgPauseEquipment23Tex "__OTR__textures/icon_item_static/gPauseEquipment23Tex" +static const ALIGN_ASSET(2) char gPauseEquipment23Tex[] = dgPauseEquipment23Tex; + +#define dgPauseSelectItem03Tex "__OTR__textures/icon_item_static/gPauseSelectItem03Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem03Tex[] = dgPauseSelectItem03Tex; + +#define dgPauseSelectItem13Tex "__OTR__textures/icon_item_static/gPauseSelectItem13Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem13Tex[] = dgPauseSelectItem13Tex; + +#define dgPauseSelectItem23Tex "__OTR__textures/icon_item_static/gPauseSelectItem23Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem23Tex[] = dgPauseSelectItem23Tex; + +#define dgPauseMap03Tex "__OTR__textures/icon_item_static/gPauseMap03Tex" +static const ALIGN_ASSET(2) char gPauseMap03Tex[] = dgPauseMap03Tex; + +#define dgPauseMap13Tex "__OTR__textures/icon_item_static/gPauseMap13Tex" +static const ALIGN_ASSET(2) char gPauseMap13Tex[] = dgPauseMap13Tex; + +#define dgPauseMap23Tex "__OTR__textures/icon_item_static/gPauseMap23Tex" +static const ALIGN_ASSET(2) char gPauseMap23Tex[] = dgPauseMap23Tex; + +#define dgPauseQuestStatus03Tex "__OTR__textures/icon_item_static/gPauseQuestStatus03Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus03Tex[] = dgPauseQuestStatus03Tex; + +#define dgPauseQuestStatus13Tex "__OTR__textures/icon_item_static/gPauseQuestStatus13Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus13Tex[] = dgPauseQuestStatus13Tex; + +#define dgPauseQuestStatus23Tex "__OTR__textures/icon_item_static/gPauseQuestStatus23Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus23Tex[] = dgPauseQuestStatus23Tex; + +#define dgPauseSave03Tex "__OTR__textures/icon_item_static/gPauseSave03Tex" +static const ALIGN_ASSET(2) char gPauseSave03Tex[] = dgPauseSave03Tex; + +#define dgPauseSave13Tex "__OTR__textures/icon_item_static/gPauseSave13Tex" +static const ALIGN_ASSET(2) char gPauseSave13Tex[] = dgPauseSave13Tex; + +#define dgPauseSave23Tex "__OTR__textures/icon_item_static/gPauseSave23Tex" +static const ALIGN_ASSET(2) char gPauseSave23Tex[] = dgPauseSave23Tex; + +#define dgPauseEquipment04Tex "__OTR__textures/icon_item_static/gPauseEquipment04Tex" +static const ALIGN_ASSET(2) char gPauseEquipment04Tex[] = dgPauseEquipment04Tex; + +#define dgPauseEquipment14Tex "__OTR__textures/icon_item_static/gPauseEquipment14Tex" +static const ALIGN_ASSET(2) char gPauseEquipment14Tex[] = dgPauseEquipment14Tex; + +#define dgPauseEquipment24Tex "__OTR__textures/icon_item_static/gPauseEquipment24Tex" +static const ALIGN_ASSET(2) char gPauseEquipment24Tex[] = dgPauseEquipment24Tex; + +#define dgPauseSelectItem04Tex "__OTR__textures/icon_item_static/gPauseSelectItem04Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem04Tex[] = dgPauseSelectItem04Tex; + +#define dgPauseSelectItem14Tex "__OTR__textures/icon_item_static/gPauseSelectItem14Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem14Tex[] = dgPauseSelectItem14Tex; + +#define dgPauseSelectItem24Tex "__OTR__textures/icon_item_static/gPauseSelectItem24Tex" +static const ALIGN_ASSET(2) char gPauseSelectItem24Tex[] = dgPauseSelectItem24Tex; + +#define dgPauseMap04Tex "__OTR__textures/icon_item_static/gPauseMap04Tex" +static const ALIGN_ASSET(2) char gPauseMap04Tex[] = dgPauseMap04Tex; + +#define dgPauseMap14Tex "__OTR__textures/icon_item_static/gPauseMap14Tex" +static const ALIGN_ASSET(2) char gPauseMap14Tex[] = dgPauseMap14Tex; + +#define dgPauseMap24Tex "__OTR__textures/icon_item_static/gPauseMap24Tex" +static const ALIGN_ASSET(2) char gPauseMap24Tex[] = dgPauseMap24Tex; + +#define dgPauseQuestStatus04Tex "__OTR__textures/icon_item_static/gPauseQuestStatus04Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus04Tex[] = dgPauseQuestStatus04Tex; + +#define dgPauseQuestStatus14Tex "__OTR__textures/icon_item_static/gPauseQuestStatus14Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus14Tex[] = dgPauseQuestStatus14Tex; + +#define dgPauseQuestStatus24Tex "__OTR__textures/icon_item_static/gPauseQuestStatus24Tex" +static const ALIGN_ASSET(2) char gPauseQuestStatus24Tex[] = dgPauseQuestStatus24Tex; + +#define dgPauseSave04Tex "__OTR__textures/icon_item_static/gPauseSave04Tex" +static const ALIGN_ASSET(2) char gPauseSave04Tex[] = dgPauseSave04Tex; + +#define dgPauseSave14Tex "__OTR__textures/icon_item_static/gPauseSave14Tex" +static const ALIGN_ASSET(2) char gPauseSave14Tex[] = dgPauseSave14Tex; + +#define dgPauseSave24Tex "__OTR__textures/icon_item_static/gPauseSave24Tex" +static const ALIGN_ASSET(2) char gPauseSave24Tex[] = dgPauseSave24Tex; + +#define dgPauseGameOver10Tex "__OTR__textures/icon_item_static/gPauseGameOver10Tex" +static const ALIGN_ASSET(2) char gPauseGameOver10Tex[] = dgPauseGameOver10Tex; + +#define dgABtnSymbolTex "__OTR__textures/icon_item_static/gABtnSymbolTex" +static const ALIGN_ASSET(2) char gABtnSymbolTex[] = dgABtnSymbolTex; + +#define dgBBtnSymbolTex "__OTR__textures/icon_item_static/gBBtnSymbolTex" +static const ALIGN_ASSET(2) char gBBtnSymbolTex[] = dgBBtnSymbolTex; + +#define dgCBtnSymbolsTex "__OTR__textures/icon_item_static/gCBtnSymbolsTex" +static const ALIGN_ASSET(2) char gCBtnSymbolsTex[] = dgCBtnSymbolsTex; + +#define dgNamePanelLeftTex "__OTR__textures/icon_item_static/gNamePanelLeftTex" +static const ALIGN_ASSET(2) char gNamePanelLeftTex[] = dgNamePanelLeftTex; + +#define dgNamePanelRightTex "__OTR__textures/icon_item_static/gNamePanelRightTex" +static const ALIGN_ASSET(2) char gNamePanelRightTex[] = dgNamePanelRightTex; + +#define dgLButtonTex "__OTR__textures/icon_item_static/gLButtonTex" +static const ALIGN_ASSET(2) char gLButtonTex[] = dgLButtonTex; + +#define dgRButtonTex "__OTR__textures/icon_item_static/gRButtonTex" +static const ALIGN_ASSET(2) char gRButtonTex[] = dgRButtonTex; + +#define dgUnknownJPTex "__OTR__textures/icon_item_static/gUnknownJPTex" +static const ALIGN_ASSET(2) char gUnknownJPTex[] = dgUnknownJPTex; + +#define dgSongNoteTex "__OTR__textures/icon_item_static/gSongNoteTex" +static const ALIGN_ASSET(2) char gSongNoteTex[] = dgSongNoteTex; + +#define dgMagicArrowEquipEffectTex "__OTR__textures/icon_item_static/gMagicArrowEquipEffectTex" +static const ALIGN_ASSET(2) char gMagicArrowEquipEffectTex[] = dgMagicArrowEquipEffectTex; + +#define dgItemNamePanelDL "__OTR__textures/icon_item_static/gItemNamePanelDL" +static const ALIGN_ASSET(2) char gItemNamePanelDL[] = dgItemNamePanelDL; + +#define dgLButtonIconDL "__OTR__textures/icon_item_static/gLButtonIconDL" +static const ALIGN_ASSET(2) char gLButtonIconDL[] = dgLButtonIconDL; + +#define dgRButtonIconDL "__OTR__textures/icon_item_static/gRButtonIconDL" +static const ALIGN_ASSET(2) char gRButtonIconDL[] = dgRButtonIconDL; + +#define dgCButtonIconsDL "__OTR__textures/icon_item_static/gCButtonIconsDL" +static const ALIGN_ASSET(2) char gCButtonIconsDL[] = dgCButtonIconsDL; + +#define dgAButtonIconDL "__OTR__textures/icon_item_static/gAButtonIconDL" +static const ALIGN_ASSET(2) char gAButtonIconDL[] = dgAButtonIconDL; + +#define dgBButtonIconDL "__OTR__textures/icon_item_static/gBButtonIconDL" +static const ALIGN_ASSET(2) char gBButtonIconDL[] = dgBButtonIconDL; + +#define dgPromptCursorLeftDL "__OTR__textures/icon_item_static/gPromptCursorLeftDL" +static const ALIGN_ASSET(2) char gPromptCursorLeftDL[] = dgPromptCursorLeftDL; + +#define dgPromptCursorRightDL "__OTR__textures/icon_item_static/gPromptCursorRightDL" +static const ALIGN_ASSET(2) char gPromptCursorRightDL[] = dgPromptCursorRightDL; \ No newline at end of file diff --git a/soh/assets/textures/item_name_static/item_name_static.h b/soh/assets/textures/item_name_static/item_name_static.h index c6dadfb1e..a7a771226 100644 --- a/soh/assets/textures/item_name_static/item_name_static.h +++ b/soh/assets/textures/item_name_static/item_name_static.h @@ -1,2585 +1,1110 @@ #pragma once -#define dgDekuStickItemNameENGTex "__OTR__textures/item_name_static/gDekuStickItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuStickItemNameENGTex[] = dgDekuStickItemNameENGTex; -#else -static const char gDekuStickItemNameENGTex[] __attribute__((aligned (2))) = dgDekuStickItemNameENGTex; -#endif - -#define dgDekuNutItemNameENGTex "__OTR__textures/item_name_static/gDekuNutItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutItemNameENGTex[] = dgDekuNutItemNameENGTex; -#else -static const char gDekuNutItemNameENGTex[] __attribute__((aligned (2))) = dgDekuNutItemNameENGTex; -#endif - -#define dgBombItemNameENGTex "__OTR__textures/item_name_static/gBombItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombItemNameENGTex[] = dgBombItemNameENGTex; -#else -static const char gBombItemNameENGTex[] __attribute__((aligned (2))) = dgBombItemNameENGTex; -#endif - -#define dgFairyBowItemNameENGTex "__OTR__textures/item_name_static/gFairyBowItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyBowItemNameENGTex[] = dgFairyBowItemNameENGTex; -#else -static const char gFairyBowItemNameENGTex[] __attribute__((aligned (2))) = dgFairyBowItemNameENGTex; -#endif - -#define dgFireArrowItemNameENGTex "__OTR__textures/item_name_static/gFireArrowItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireArrowItemNameENGTex[] = dgFireArrowItemNameENGTex; -#else -static const char gFireArrowItemNameENGTex[] __attribute__((aligned (2))) = dgFireArrowItemNameENGTex; -#endif - -#define dgDinsFireItemNameENGTex "__OTR__textures/item_name_static/gDinsFireItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDinsFireItemNameENGTex[] = dgDinsFireItemNameENGTex; -#else -static const char gDinsFireItemNameENGTex[] __attribute__((aligned (2))) = dgDinsFireItemNameENGTex; -#endif - -#define dgFairySlingshotItemNameENGTex "__OTR__textures/item_name_static/gFairySlingshotItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairySlingshotItemNameENGTex[] = dgFairySlingshotItemNameENGTex; -#else -static const char gFairySlingshotItemNameENGTex[] __attribute__((aligned (2))) = dgFairySlingshotItemNameENGTex; -#endif - -#define dgFairyOcarinaItemNameENGTex "__OTR__textures/item_name_static/gFairyOcarinaItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyOcarinaItemNameENGTex[] = dgFairyOcarinaItemNameENGTex; -#else -static const char gFairyOcarinaItemNameENGTex[] __attribute__((aligned (2))) = dgFairyOcarinaItemNameENGTex; -#endif - -#define dgOcarinaOfTimeItemNameENGTex "__OTR__textures/item_name_static/gOcarinaOfTimeItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaOfTimeItemNameENGTex[] = dgOcarinaOfTimeItemNameENGTex; -#else -static const char gOcarinaOfTimeItemNameENGTex[] __attribute__((aligned (2))) = dgOcarinaOfTimeItemNameENGTex; -#endif - -#define dgBombchuItemNameENGTex "__OTR__textures/item_name_static/gBombchuItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuItemNameENGTex[] = dgBombchuItemNameENGTex; -#else -static const char gBombchuItemNameENGTex[] __attribute__((aligned (2))) = dgBombchuItemNameENGTex; -#endif - -#define dgHookshotItemNameENGTex "__OTR__textures/item_name_static/gHookshotItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotItemNameENGTex[] = dgHookshotItemNameENGTex; -#else -static const char gHookshotItemNameENGTex[] __attribute__((aligned (2))) = dgHookshotItemNameENGTex; -#endif - -#define dgLongshotItemNameENGTex "__OTR__textures/item_name_static/gLongshotItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLongshotItemNameENGTex[] = dgLongshotItemNameENGTex; -#else -static const char gLongshotItemNameENGTex[] __attribute__((aligned (2))) = dgLongshotItemNameENGTex; -#endif - -#define dgIceArrowItemNameENGTex "__OTR__textures/item_name_static/gIceArrowItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceArrowItemNameENGTex[] = dgIceArrowItemNameENGTex; -#else -static const char gIceArrowItemNameENGTex[] __attribute__((aligned (2))) = dgIceArrowItemNameENGTex; -#endif - -#define dgFaroresWindItemNameENGTex "__OTR__textures/item_name_static/gFaroresWindItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaroresWindItemNameENGTex[] = dgFaroresWindItemNameENGTex; -#else -static const char gFaroresWindItemNameENGTex[] __attribute__((aligned (2))) = dgFaroresWindItemNameENGTex; -#endif - -#define dgBoomerangItemNameENGTex "__OTR__textures/item_name_static/gBoomerangItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoomerangItemNameENGTex[] = dgBoomerangItemNameENGTex; -#else -static const char gBoomerangItemNameENGTex[] __attribute__((aligned (2))) = dgBoomerangItemNameENGTex; -#endif - -#define dgLensItemNameENGTex "__OTR__textures/item_name_static/gLensItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensItemNameENGTex[] = dgLensItemNameENGTex; -#else -static const char gLensItemNameENGTex[] __attribute__((aligned (2))) = dgLensItemNameENGTex; -#endif - -#define dgMagicBeansItemNameENGTex "__OTR__textures/item_name_static/gMagicBeansItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeansItemNameENGTex[] = dgMagicBeansItemNameENGTex; -#else -static const char gMagicBeansItemNameENGTex[] __attribute__((aligned (2))) = dgMagicBeansItemNameENGTex; -#endif - -#define dgMegatonHammerItemNameENGTex "__OTR__textures/item_name_static/gMegatonHammerItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegatonHammerItemNameENGTex[] = dgMegatonHammerItemNameENGTex; -#else -static const char gMegatonHammerItemNameENGTex[] __attribute__((aligned (2))) = dgMegatonHammerItemNameENGTex; -#endif - -#define dgLightArrowItemNameENGTex "__OTR__textures/item_name_static/gLightArrowItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightArrowItemNameENGTex[] = dgLightArrowItemNameENGTex; -#else -static const char gLightArrowItemNameENGTex[] __attribute__((aligned (2))) = dgLightArrowItemNameENGTex; -#endif - -#define dgNayrusLoveItemNameENGTex "__OTR__textures/item_name_static/gNayrusLoveItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNayrusLoveItemNameENGTex[] = dgNayrusLoveItemNameENGTex; -#else -static const char gNayrusLoveItemNameENGTex[] __attribute__((aligned (2))) = dgNayrusLoveItemNameENGTex; -#endif - -#define dgEmptyBottleItemNameENGTex "__OTR__textures/item_name_static/gEmptyBottleItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEmptyBottleItemNameENGTex[] = dgEmptyBottleItemNameENGTex; -#else -static const char gEmptyBottleItemNameENGTex[] __attribute__((aligned (2))) = dgEmptyBottleItemNameENGTex; -#endif - -#define dgRedPotionItemNameENGTex "__OTR__textures/item_name_static/gRedPotionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedPotionItemNameENGTex[] = dgRedPotionItemNameENGTex; -#else -static const char gRedPotionItemNameENGTex[] __attribute__((aligned (2))) = dgRedPotionItemNameENGTex; -#endif - -#define dgGreenPotionItemNameENGTex "__OTR__textures/item_name_static/gGreenPotionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreenPotionItemNameENGTex[] = dgGreenPotionItemNameENGTex; -#else -static const char gGreenPotionItemNameENGTex[] __attribute__((aligned (2))) = dgGreenPotionItemNameENGTex; -#endif - -#define dgBluePotionItemNameENGTex "__OTR__textures/item_name_static/gBluePotionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBluePotionItemNameENGTex[] = dgBluePotionItemNameENGTex; -#else -static const char gBluePotionItemNameENGTex[] __attribute__((aligned (2))) = dgBluePotionItemNameENGTex; -#endif - -#define dgBottledFairyItemNameENGTex "__OTR__textures/item_name_static/gBottledFairyItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottledFairyItemNameENGTex[] = dgBottledFairyItemNameENGTex; -#else -static const char gBottledFairyItemNameENGTex[] __attribute__((aligned (2))) = dgBottledFairyItemNameENGTex; -#endif - -#define dgFishItemNameENGTex "__OTR__textures/item_name_static/gFishItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishItemNameENGTex[] = dgFishItemNameENGTex; -#else -static const char gFishItemNameENGTex[] __attribute__((aligned (2))) = dgFishItemNameENGTex; -#endif - -#define dgFullMilkItemNameENGTex "__OTR__textures/item_name_static/gFullMilkItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFullMilkItemNameENGTex[] = dgFullMilkItemNameENGTex; -#else -static const char gFullMilkItemNameENGTex[] __attribute__((aligned (2))) = dgFullMilkItemNameENGTex; -#endif - -#define dgRutosLetterItemNameENGTex "__OTR__textures/item_name_static/gRutosLetterItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutosLetterItemNameENGTex[] = dgRutosLetterItemNameENGTex; -#else -static const char gRutosLetterItemNameENGTex[] __attribute__((aligned (2))) = dgRutosLetterItemNameENGTex; -#endif - -#define dgBlueFireItemNameENGTex "__OTR__textures/item_name_static/gBlueFireItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlueFireItemNameENGTex[] = dgBlueFireItemNameENGTex; -#else -static const char gBlueFireItemNameENGTex[] __attribute__((aligned (2))) = dgBlueFireItemNameENGTex; -#endif - -#define dgBugItemNameENGTex "__OTR__textures/item_name_static/gBugItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugItemNameENGTex[] = dgBugItemNameENGTex; -#else -static const char gBugItemNameENGTex[] __attribute__((aligned (2))) = dgBugItemNameENGTex; -#endif - -#define dgBigPoeItemNameENGTex "__OTR__textures/item_name_static/gBigPoeItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigPoeItemNameENGTex[] = dgBigPoeItemNameENGTex; -#else -static const char gBigPoeItemNameENGTex[] __attribute__((aligned (2))) = dgBigPoeItemNameENGTex; -#endif - -#define dgHalfMilkItemNameENGTex "__OTR__textures/item_name_static/gHalfMilkItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHalfMilkItemNameENGTex[] = dgHalfMilkItemNameENGTex; -#else -static const char gHalfMilkItemNameENGTex[] __attribute__((aligned (2))) = dgHalfMilkItemNameENGTex; -#endif - -#define dgPoeItemNameENGTex "__OTR__textures/item_name_static/gPoeItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeItemNameENGTex[] = dgPoeItemNameENGTex; -#else -static const char gPoeItemNameENGTex[] __attribute__((aligned (2))) = dgPoeItemNameENGTex; -#endif - -#define dgWeirdEggItemNameENGTex "__OTR__textures/item_name_static/gWeirdEggItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWeirdEggItemNameENGTex[] = dgWeirdEggItemNameENGTex; -#else -static const char gWeirdEggItemNameENGTex[] __attribute__((aligned (2))) = dgWeirdEggItemNameENGTex; -#endif - -#define dgCuccoItemNameENGTex "__OTR__textures/item_name_static/gCuccoItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoItemNameENGTex[] = dgCuccoItemNameENGTex; -#else -static const char gCuccoItemNameENGTex[] __attribute__((aligned (2))) = dgCuccoItemNameENGTex; -#endif - -#define dgZeldasLetterItemNameENGTex "__OTR__textures/item_name_static/gZeldasLetterItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasLetterItemNameENGTex[] = dgZeldasLetterItemNameENGTex; -#else -static const char gZeldasLetterItemNameENGTex[] __attribute__((aligned (2))) = dgZeldasLetterItemNameENGTex; -#endif - -#define dgKeatonMaskItemNameENGTex "__OTR__textures/item_name_static/gKeatonMaskItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeatonMaskItemNameENGTex[] = dgKeatonMaskItemNameENGTex; -#else -static const char gKeatonMaskItemNameENGTex[] __attribute__((aligned (2))) = dgKeatonMaskItemNameENGTex; -#endif - -#define dgSkullMaskItemNameENGTex "__OTR__textures/item_name_static/gSkullMaskItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullMaskItemNameENGTex[] = dgSkullMaskItemNameENGTex; -#else -static const char gSkullMaskItemNameENGTex[] __attribute__((aligned (2))) = dgSkullMaskItemNameENGTex; -#endif - -#define dgSpookyMaskItemNameENGTex "__OTR__textures/item_name_static/gSpookyMaskItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpookyMaskItemNameENGTex[] = dgSpookyMaskItemNameENGTex; -#else -static const char gSpookyMaskItemNameENGTex[] __attribute__((aligned (2))) = dgSpookyMaskItemNameENGTex; -#endif - -#define dgBunnyHoodItemNameENGTex "__OTR__textures/item_name_static/gBunnyHoodItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBunnyHoodItemNameENGTex[] = dgBunnyHoodItemNameENGTex; -#else -static const char gBunnyHoodItemNameENGTex[] __attribute__((aligned (2))) = dgBunnyHoodItemNameENGTex; -#endif - -#define dgGoronMaskItemNameENGTex "__OTR__textures/item_name_static/gGoronMaskItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronMaskItemNameENGTex[] = dgGoronMaskItemNameENGTex; -#else -static const char gGoronMaskItemNameENGTex[] __attribute__((aligned (2))) = dgGoronMaskItemNameENGTex; -#endif - -#define dgZoraMaskItemNameENGTex "__OTR__textures/item_name_static/gZoraMaskItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraMaskItemNameENGTex[] = dgZoraMaskItemNameENGTex; -#else -static const char gZoraMaskItemNameENGTex[] __attribute__((aligned (2))) = dgZoraMaskItemNameENGTex; -#endif - -#define dgGerudoMaskItemNameENGTex "__OTR__textures/item_name_static/gGerudoMaskItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoMaskItemNameENGTex[] = dgGerudoMaskItemNameENGTex; -#else -static const char gGerudoMaskItemNameENGTex[] __attribute__((aligned (2))) = dgGerudoMaskItemNameENGTex; -#endif - -#define dgMaskofTruthItemNameENGTex "__OTR__textures/item_name_static/gMaskofTruthItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMaskofTruthItemNameENGTex[] = dgMaskofTruthItemNameENGTex; -#else -static const char gMaskofTruthItemNameENGTex[] __attribute__((aligned (2))) = dgMaskofTruthItemNameENGTex; -#endif - -#define dgSOLDOUTItemNameENGTex "__OTR__textures/item_name_static/gSOLDOUTItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSOLDOUTItemNameENGTex[] = dgSOLDOUTItemNameENGTex; -#else -static const char gSOLDOUTItemNameENGTex[] __attribute__((aligned (2))) = dgSOLDOUTItemNameENGTex; -#endif - -#define dgPocketEggItemNameENGTex "__OTR__textures/item_name_static/gPocketEggItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPocketEggItemNameENGTex[] = dgPocketEggItemNameENGTex; -#else -static const char gPocketEggItemNameENGTex[] __attribute__((aligned (2))) = dgPocketEggItemNameENGTex; -#endif - -#define dgPocketCuccoItemNameENGTex "__OTR__textures/item_name_static/gPocketCuccoItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPocketCuccoItemNameENGTex[] = dgPocketCuccoItemNameENGTex; -#else -static const char gPocketCuccoItemNameENGTex[] __attribute__((aligned (2))) = dgPocketCuccoItemNameENGTex; -#endif - -#define dgCojiroItemNameENGTex "__OTR__textures/item_name_static/gCojiroItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCojiroItemNameENGTex[] = dgCojiroItemNameENGTex; -#else -static const char gCojiroItemNameENGTex[] __attribute__((aligned (2))) = dgCojiroItemNameENGTex; -#endif - -#define dgOddMushroomItemNameENGTex "__OTR__textures/item_name_static/gOddMushroomItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOddMushroomItemNameENGTex[] = dgOddMushroomItemNameENGTex; -#else -static const char gOddMushroomItemNameENGTex[] __attribute__((aligned (2))) = dgOddMushroomItemNameENGTex; -#endif - -#define dgOddPotionItemNameENGTex "__OTR__textures/item_name_static/gOddPotionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOddPotionItemNameENGTex[] = dgOddPotionItemNameENGTex; -#else -static const char gOddPotionItemNameENGTex[] __attribute__((aligned (2))) = dgOddPotionItemNameENGTex; -#endif - -#define dgPoachersSawItemNameENGTex "__OTR__textures/item_name_static/gPoachersSawItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoachersSawItemNameENGTex[] = dgPoachersSawItemNameENGTex; -#else -static const char gPoachersSawItemNameENGTex[] __attribute__((aligned (2))) = dgPoachersSawItemNameENGTex; -#endif - -#define dgBrokenGoronsSwordItemNameENGTex "__OTR__textures/item_name_static/gBrokenGoronsSwordItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenGoronsSwordItemNameENGTex[] = dgBrokenGoronsSwordItemNameENGTex; -#else -static const char gBrokenGoronsSwordItemNameENGTex[] __attribute__((aligned (2))) = dgBrokenGoronsSwordItemNameENGTex; -#endif - -#define dgPrescriptionItemNameENGTex "__OTR__textures/item_name_static/gPrescriptionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPrescriptionItemNameENGTex[] = dgPrescriptionItemNameENGTex; -#else -static const char gPrescriptionItemNameENGTex[] __attribute__((aligned (2))) = dgPrescriptionItemNameENGTex; -#endif - -#define dgEyeBallFrogItemNameENGTex "__OTR__textures/item_name_static/gEyeBallFrogItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeBallFrogItemNameENGTex[] = dgEyeBallFrogItemNameENGTex; -#else -static const char gEyeBallFrogItemNameENGTex[] __attribute__((aligned (2))) = dgEyeBallFrogItemNameENGTex; -#endif - -#define dgEyeDropsItemNameENGTex "__OTR__textures/item_name_static/gEyeDropsItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeDropsItemNameENGTex[] = dgEyeDropsItemNameENGTex; -#else -static const char gEyeDropsItemNameENGTex[] __attribute__((aligned (2))) = dgEyeDropsItemNameENGTex; -#endif - -#define dgClaimCheckItemNameENGTex "__OTR__textures/item_name_static/gClaimCheckItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gClaimCheckItemNameENGTex[] = dgClaimCheckItemNameENGTex; -#else -static const char gClaimCheckItemNameENGTex[] __attribute__((aligned (2))) = dgClaimCheckItemNameENGTex; -#endif - -#define dgUnusedWindMedallionItemName1JPNTex "__OTR__textures/item_name_static/gUnusedWindMedallionItemName1JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedWindMedallionItemName1JPNTex[] = dgUnusedWindMedallionItemName1JPNTex; -#else -static const char gUnusedWindMedallionItemName1JPNTex[] __attribute__((aligned (2))) = dgUnusedWindMedallionItemName1JPNTex; -#endif - -#define dgUnusedFireMedallionItemName1JPNTex "__OTR__textures/item_name_static/gUnusedFireMedallionItemName1JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedFireMedallionItemName1JPNTex[] = dgUnusedFireMedallionItemName1JPNTex; -#else -static const char gUnusedFireMedallionItemName1JPNTex[] __attribute__((aligned (2))) = dgUnusedFireMedallionItemName1JPNTex; -#endif - -#define dgUnusedIceMedallionItemName1JPNTex "__OTR__textures/item_name_static/gUnusedIceMedallionItemName1JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedIceMedallionItemName1JPNTex[] = dgUnusedIceMedallionItemName1JPNTex; -#else -static const char gUnusedIceMedallionItemName1JPNTex[] __attribute__((aligned (2))) = dgUnusedIceMedallionItemName1JPNTex; -#endif - -#define dgKokiriSwordItemNameENGTex "__OTR__textures/item_name_static/gKokiriSwordItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriSwordItemNameENGTex[] = dgKokiriSwordItemNameENGTex; -#else -static const char gKokiriSwordItemNameENGTex[] __attribute__((aligned (2))) = dgKokiriSwordItemNameENGTex; -#endif - -#define dgMasterSwordItemNameENGTex "__OTR__textures/item_name_static/gMasterSwordItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMasterSwordItemNameENGTex[] = dgMasterSwordItemNameENGTex; -#else -static const char gMasterSwordItemNameENGTex[] __attribute__((aligned (2))) = dgMasterSwordItemNameENGTex; -#endif - -#define dgGiantsKnifeItemNameENGTex "__OTR__textures/item_name_static/gGiantsKnifeItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiantsKnifeItemNameENGTex[] = dgGiantsKnifeItemNameENGTex; -#else -static const char gGiantsKnifeItemNameENGTex[] __attribute__((aligned (2))) = dgGiantsKnifeItemNameENGTex; -#endif - -#define dgDekuShieldItemNameENGTex "__OTR__textures/item_name_static/gDekuShieldItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuShieldItemNameENGTex[] = dgDekuShieldItemNameENGTex; -#else -static const char gDekuShieldItemNameENGTex[] __attribute__((aligned (2))) = dgDekuShieldItemNameENGTex; -#endif - -#define dgHylianShieldItemNameENGTex "__OTR__textures/item_name_static/gHylianShieldItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHylianShieldItemNameENGTex[] = dgHylianShieldItemNameENGTex; -#else -static const char gHylianShieldItemNameENGTex[] __attribute__((aligned (2))) = dgHylianShieldItemNameENGTex; -#endif - -#define dgMirrorShieldItemNameENGTex "__OTR__textures/item_name_static/gMirrorShieldItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMirrorShieldItemNameENGTex[] = dgMirrorShieldItemNameENGTex; -#else -static const char gMirrorShieldItemNameENGTex[] __attribute__((aligned (2))) = dgMirrorShieldItemNameENGTex; -#endif - -#define dgKokiriTunicItemNameENGTex "__OTR__textures/item_name_static/gKokiriTunicItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriTunicItemNameENGTex[] = dgKokiriTunicItemNameENGTex; -#else -static const char gKokiriTunicItemNameENGTex[] __attribute__((aligned (2))) = dgKokiriTunicItemNameENGTex; -#endif - -#define dgGoronTunicItemNameENGTex "__OTR__textures/item_name_static/gGoronTunicItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronTunicItemNameENGTex[] = dgGoronTunicItemNameENGTex; -#else -static const char gGoronTunicItemNameENGTex[] __attribute__((aligned (2))) = dgGoronTunicItemNameENGTex; -#endif - -#define dgZoraTunicItemNameENGTex "__OTR__textures/item_name_static/gZoraTunicItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraTunicItemNameENGTex[] = dgZoraTunicItemNameENGTex; -#else -static const char gZoraTunicItemNameENGTex[] __attribute__((aligned (2))) = dgZoraTunicItemNameENGTex; -#endif - -#define dgKokiriBootsItemNameENGTex "__OTR__textures/item_name_static/gKokiriBootsItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriBootsItemNameENGTex[] = dgKokiriBootsItemNameENGTex; -#else -static const char gKokiriBootsItemNameENGTex[] __attribute__((aligned (2))) = dgKokiriBootsItemNameENGTex; -#endif - -#define dgIronBootsItemNameENGTex "__OTR__textures/item_name_static/gIronBootsItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIronBootsItemNameENGTex[] = dgIronBootsItemNameENGTex; -#else -static const char gIronBootsItemNameENGTex[] __attribute__((aligned (2))) = dgIronBootsItemNameENGTex; -#endif - -#define dgHoverBootsItemNameENGTex "__OTR__textures/item_name_static/gHoverBootsItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoverBootsItemNameENGTex[] = dgHoverBootsItemNameENGTex; -#else -static const char gHoverBootsItemNameENGTex[] __attribute__((aligned (2))) = dgHoverBootsItemNameENGTex; -#endif - -#define dgBulletBag30ItemNameENGTex "__OTR__textures/item_name_static/gBulletBag30ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag30ItemNameENGTex[] = dgBulletBag30ItemNameENGTex; -#else -static const char gBulletBag30ItemNameENGTex[] __attribute__((aligned (2))) = dgBulletBag30ItemNameENGTex; -#endif - -#define dgBulletBag40ItemNameENGTex "__OTR__textures/item_name_static/gBulletBag40ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag40ItemNameENGTex[] = dgBulletBag40ItemNameENGTex; -#else -static const char gBulletBag40ItemNameENGTex[] __attribute__((aligned (2))) = dgBulletBag40ItemNameENGTex; -#endif - -#define dgBulletBag50ItemNameENGTex "__OTR__textures/item_name_static/gBulletBag50ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag50ItemNameENGTex[] = dgBulletBag50ItemNameENGTex; -#else -static const char gBulletBag50ItemNameENGTex[] __attribute__((aligned (2))) = dgBulletBag50ItemNameENGTex; -#endif - -#define dgQuiver30ItemNameENGTex "__OTR__textures/item_name_static/gQuiver30ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver30ItemNameENGTex[] = dgQuiver30ItemNameENGTex; -#else -static const char gQuiver30ItemNameENGTex[] __attribute__((aligned (2))) = dgQuiver30ItemNameENGTex; -#endif - -#define dgQuiver40ItemNameENGTex "__OTR__textures/item_name_static/gQuiver40ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver40ItemNameENGTex[] = dgQuiver40ItemNameENGTex; -#else -static const char gQuiver40ItemNameENGTex[] __attribute__((aligned (2))) = dgQuiver40ItemNameENGTex; -#endif - -#define dgQuiver50ItemNameENGTex "__OTR__textures/item_name_static/gQuiver50ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver50ItemNameENGTex[] = dgQuiver50ItemNameENGTex; -#else -static const char gQuiver50ItemNameENGTex[] __attribute__((aligned (2))) = dgQuiver50ItemNameENGTex; -#endif - -#define dgBombBag20ItemNameENGTex "__OTR__textures/item_name_static/gBombBag20ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag20ItemNameENGTex[] = dgBombBag20ItemNameENGTex; -#else -static const char gBombBag20ItemNameENGTex[] __attribute__((aligned (2))) = dgBombBag20ItemNameENGTex; -#endif - -#define dgBombBag30ItemNameENGTex "__OTR__textures/item_name_static/gBombBag30ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag30ItemNameENGTex[] = dgBombBag30ItemNameENGTex; -#else -static const char gBombBag30ItemNameENGTex[] __attribute__((aligned (2))) = dgBombBag30ItemNameENGTex; -#endif - -#define dgBombBag40ItemNameENGTex "__OTR__textures/item_name_static/gBombBag40ItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag40ItemNameENGTex[] = dgBombBag40ItemNameENGTex; -#else -static const char gBombBag40ItemNameENGTex[] __attribute__((aligned (2))) = dgBombBag40ItemNameENGTex; -#endif - -#define dgGoronsBraceletItemNameENGTex "__OTR__textures/item_name_static/gGoronsBraceletItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronsBraceletItemNameENGTex[] = dgGoronsBraceletItemNameENGTex; -#else -static const char gGoronsBraceletItemNameENGTex[] __attribute__((aligned (2))) = dgGoronsBraceletItemNameENGTex; -#endif - -#define dgSilverGauntletsItemNameENGTex "__OTR__textures/item_name_static/gSilverGauntletsItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverGauntletsItemNameENGTex[] = dgSilverGauntletsItemNameENGTex; -#else -static const char gSilverGauntletsItemNameENGTex[] __attribute__((aligned (2))) = dgSilverGauntletsItemNameENGTex; -#endif - -#define dgGoldenGauntletsItemNameENGTex "__OTR__textures/item_name_static/gGoldenGauntletsItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGauntletsItemNameENGTex[] = dgGoldenGauntletsItemNameENGTex; -#else -static const char gGoldenGauntletsItemNameENGTex[] __attribute__((aligned (2))) = dgGoldenGauntletsItemNameENGTex; -#endif - -#define dgSilverScaleItemNameENGTex "__OTR__textures/item_name_static/gSilverScaleItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverScaleItemNameENGTex[] = dgSilverScaleItemNameENGTex; -#else -static const char gSilverScaleItemNameENGTex[] __attribute__((aligned (2))) = dgSilverScaleItemNameENGTex; -#endif - -#define dgGoldenScaleItemNameENGTex "__OTR__textures/item_name_static/gGoldenScaleItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenScaleItemNameENGTex[] = dgGoldenScaleItemNameENGTex; -#else -static const char gGoldenScaleItemNameENGTex[] __attribute__((aligned (2))) = dgGoldenScaleItemNameENGTex; -#endif - -#define dgBrokenGiantsKnifeItemNameENGTex "__OTR__textures/item_name_static/gBrokenGiantsKnifeItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenGiantsKnifeItemNameENGTex[] = dgBrokenGiantsKnifeItemNameENGTex; -#else -static const char gBrokenGiantsKnifeItemNameENGTex[] __attribute__((aligned (2))) = dgBrokenGiantsKnifeItemNameENGTex; -#endif - -#define dgUnusedBossKeyItemName1JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName1JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName1JPNTex[] = dgUnusedBossKeyItemName1JPNTex; -#else -static const char gUnusedBossKeyItemName1JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName1JPNTex; -#endif - -#define dgUnusedBossKeyItemName2JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName2JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName2JPNTex[] = dgUnusedBossKeyItemName2JPNTex; -#else -static const char gUnusedBossKeyItemName2JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName2JPNTex; -#endif - -#define dgUnusedBossKeyItemName3JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName3JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName3JPNTex[] = dgUnusedBossKeyItemName3JPNTex; -#else -static const char gUnusedBossKeyItemName3JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName3JPNTex; -#endif - -#define dgUnusedBossKeyItemName4JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName4JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName4JPNTex[] = dgUnusedBossKeyItemName4JPNTex; -#else -static const char gUnusedBossKeyItemName4JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName4JPNTex; -#endif - -#define dgMinuetOfForestItemNameENGTex "__OTR__textures/item_name_static/gMinuetOfForestItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMinuetOfForestItemNameENGTex[] = dgMinuetOfForestItemNameENGTex; -#else -static const char gMinuetOfForestItemNameENGTex[] __attribute__((aligned (2))) = dgMinuetOfForestItemNameENGTex; -#endif - -#define dgBoleroOfFireItemNameENGTex "__OTR__textures/item_name_static/gBoleroOfFireItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoleroOfFireItemNameENGTex[] = dgBoleroOfFireItemNameENGTex; -#else -static const char gBoleroOfFireItemNameENGTex[] __attribute__((aligned (2))) = dgBoleroOfFireItemNameENGTex; -#endif - -#define dgSerenadeOfWaterItemNameENGTex "__OTR__textures/item_name_static/gSerenadeOfWaterItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSerenadeOfWaterItemNameENGTex[] = dgSerenadeOfWaterItemNameENGTex; -#else -static const char gSerenadeOfWaterItemNameENGTex[] __attribute__((aligned (2))) = dgSerenadeOfWaterItemNameENGTex; -#endif - -#define dgRequiemOfSpiritItemNameENGTex "__OTR__textures/item_name_static/gRequiemOfSpiritItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRequiemOfSpiritItemNameENGTex[] = dgRequiemOfSpiritItemNameENGTex; -#else -static const char gRequiemOfSpiritItemNameENGTex[] __attribute__((aligned (2))) = dgRequiemOfSpiritItemNameENGTex; -#endif - -#define dgNocturneOfShadowItemNameENGTex "__OTR__textures/item_name_static/gNocturneOfShadowItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNocturneOfShadowItemNameENGTex[] = dgNocturneOfShadowItemNameENGTex; -#else -static const char gNocturneOfShadowItemNameENGTex[] __attribute__((aligned (2))) = dgNocturneOfShadowItemNameENGTex; -#endif - -#define dgPreludeOfLightItemNameENGTex "__OTR__textures/item_name_static/gPreludeOfLightItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPreludeOfLightItemNameENGTex[] = dgPreludeOfLightItemNameENGTex; -#else -static const char gPreludeOfLightItemNameENGTex[] __attribute__((aligned (2))) = dgPreludeOfLightItemNameENGTex; -#endif - -#define dgZeldasLullabyItemNameENGTex "__OTR__textures/item_name_static/gZeldasLullabyItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasLullabyItemNameENGTex[] = dgZeldasLullabyItemNameENGTex; -#else -static const char gZeldasLullabyItemNameENGTex[] __attribute__((aligned (2))) = dgZeldasLullabyItemNameENGTex; -#endif - -#define dgEponasSongItemNameENGTex "__OTR__textures/item_name_static/gEponasSongItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponasSongItemNameENGTex[] = dgEponasSongItemNameENGTex; -#else -static const char gEponasSongItemNameENGTex[] __attribute__((aligned (2))) = dgEponasSongItemNameENGTex; -#endif - -#define dgSariasSongItemNameENGTex "__OTR__textures/item_name_static/gSariasSongItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasSongItemNameENGTex[] = dgSariasSongItemNameENGTex; -#else -static const char gSariasSongItemNameENGTex[] __attribute__((aligned (2))) = dgSariasSongItemNameENGTex; -#endif - -#define dgSunsSongItemNameENGTex "__OTR__textures/item_name_static/gSunsSongItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsSongItemNameENGTex[] = dgSunsSongItemNameENGTex; -#else -static const char gSunsSongItemNameENGTex[] __attribute__((aligned (2))) = dgSunsSongItemNameENGTex; -#endif - -#define dgSongOfTimeItemNameENGTex "__OTR__textures/item_name_static/gSongOfTimeItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfTimeItemNameENGTex[] = dgSongOfTimeItemNameENGTex; -#else -static const char gSongOfTimeItemNameENGTex[] __attribute__((aligned (2))) = dgSongOfTimeItemNameENGTex; -#endif - -#define dgSongOfStormsItemNameENGTex "__OTR__textures/item_name_static/gSongOfStormsItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfStormsItemNameENGTex[] = dgSongOfStormsItemNameENGTex; -#else -static const char gSongOfStormsItemNameENGTex[] __attribute__((aligned (2))) = dgSongOfStormsItemNameENGTex; -#endif - -#define dgForestMedallionItemNameENGTex "__OTR__textures/item_name_static/gForestMedallionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestMedallionItemNameENGTex[] = dgForestMedallionItemNameENGTex; -#else -static const char gForestMedallionItemNameENGTex[] __attribute__((aligned (2))) = dgForestMedallionItemNameENGTex; -#endif - -#define dgFireMedallionItemNameENGTex "__OTR__textures/item_name_static/gFireMedallionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireMedallionItemNameENGTex[] = dgFireMedallionItemNameENGTex; -#else -static const char gFireMedallionItemNameENGTex[] __attribute__((aligned (2))) = dgFireMedallionItemNameENGTex; -#endif - -#define dgWaterMedallionItemNameENGTex "__OTR__textures/item_name_static/gWaterMedallionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterMedallionItemNameENGTex[] = dgWaterMedallionItemNameENGTex; -#else -static const char gWaterMedallionItemNameENGTex[] __attribute__((aligned (2))) = dgWaterMedallionItemNameENGTex; -#endif - -#define dgSpiritMedallionItemNameENGTex "__OTR__textures/item_name_static/gSpiritMedallionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritMedallionItemNameENGTex[] = dgSpiritMedallionItemNameENGTex; -#else -static const char gSpiritMedallionItemNameENGTex[] __attribute__((aligned (2))) = dgSpiritMedallionItemNameENGTex; -#endif - -#define dgShadowMedallionItemNameENGTex "__OTR__textures/item_name_static/gShadowMedallionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowMedallionItemNameENGTex[] = dgShadowMedallionItemNameENGTex; -#else -static const char gShadowMedallionItemNameENGTex[] __attribute__((aligned (2))) = dgShadowMedallionItemNameENGTex; -#endif - -#define dgLightMedallionItemNameENGTex "__OTR__textures/item_name_static/gLightMedallionItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightMedallionItemNameENGTex[] = dgLightMedallionItemNameENGTex; -#else -static const char gLightMedallionItemNameENGTex[] __attribute__((aligned (2))) = dgLightMedallionItemNameENGTex; -#endif - -#define dgKokiriEmeraldItemNameENGTex "__OTR__textures/item_name_static/gKokiriEmeraldItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriEmeraldItemNameENGTex[] = dgKokiriEmeraldItemNameENGTex; -#else -static const char gKokiriEmeraldItemNameENGTex[] __attribute__((aligned (2))) = dgKokiriEmeraldItemNameENGTex; -#endif - -#define dgGoronsRubyItemNameENGTex "__OTR__textures/item_name_static/gGoronsRubyItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronsRubyItemNameENGTex[] = dgGoronsRubyItemNameENGTex; -#else -static const char gGoronsRubyItemNameENGTex[] __attribute__((aligned (2))) = dgGoronsRubyItemNameENGTex; -#endif - -#define dgZorasSapphireItemNameENGTex "__OTR__textures/item_name_static/gZorasSapphireItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasSapphireItemNameENGTex[] = dgZorasSapphireItemNameENGTex; -#else -static const char gZorasSapphireItemNameENGTex[] __attribute__((aligned (2))) = dgZorasSapphireItemNameENGTex; -#endif - -#define dgStoneofAgonyItemNameENGTex "__OTR__textures/item_name_static/gStoneofAgonyItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStoneofAgonyItemNameENGTex[] = dgStoneofAgonyItemNameENGTex; -#else -static const char gStoneofAgonyItemNameENGTex[] __attribute__((aligned (2))) = dgStoneofAgonyItemNameENGTex; -#endif - -#define dgGerudosCardItemNameENGTex "__OTR__textures/item_name_static/gGerudosCardItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosCardItemNameENGTex[] = dgGerudosCardItemNameENGTex; -#else -static const char gGerudosCardItemNameENGTex[] __attribute__((aligned (2))) = dgGerudosCardItemNameENGTex; -#endif - -#define dgGoldSkulltulaItemNameENGTex "__OTR__textures/item_name_static/gGoldSkulltulaItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldSkulltulaItemNameENGTex[] = dgGoldSkulltulaItemNameENGTex; -#else -static const char gGoldSkulltulaItemNameENGTex[] __attribute__((aligned (2))) = dgGoldSkulltulaItemNameENGTex; -#endif - -#define dgPieceOfHeartItemNameENGTex "__OTR__textures/item_name_static/gPieceOfHeartItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPieceOfHeartItemNameENGTex[] = dgPieceOfHeartItemNameENGTex; -#else -static const char gPieceOfHeartItemNameENGTex[] __attribute__((aligned (2))) = dgPieceOfHeartItemNameENGTex; -#endif - -#define dgUnusedPieceOfHeartItemName1JPNTex "__OTR__textures/item_name_static/gUnusedPieceOfHeartItemName1JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedPieceOfHeartItemName1JPNTex[] = dgUnusedPieceOfHeartItemName1JPNTex; -#else -static const char gUnusedPieceOfHeartItemName1JPNTex[] __attribute__((aligned (2))) = dgUnusedPieceOfHeartItemName1JPNTex; -#endif - -#define dgUnusedBigKeyItemNameENGTex "__OTR__textures/item_name_static/gUnusedBigKeyItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBigKeyItemNameENGTex[] = dgUnusedBigKeyItemNameENGTex; -#else -static const char gUnusedBigKeyItemNameENGTex[] __attribute__((aligned (2))) = dgUnusedBigKeyItemNameENGTex; -#endif - -#define dgCompassItemNameENGTex "__OTR__textures/item_name_static/gCompassItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCompassItemNameENGTex[] = dgCompassItemNameENGTex; -#else -static const char gCompassItemNameENGTex[] __attribute__((aligned (2))) = dgCompassItemNameENGTex; -#endif - -#define dgDungeonMapItemNameENGTex "__OTR__textures/item_name_static/gDungeonMapItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapItemNameENGTex[] = dgDungeonMapItemNameENGTex; -#else -static const char gDungeonMapItemNameENGTex[] __attribute__((aligned (2))) = dgDungeonMapItemNameENGTex; -#endif - -#define dgUnusedBossKeyItemName5JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName5JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName5JPNTex[] = dgUnusedBossKeyItemName5JPNTex; -#else -static const char gUnusedBossKeyItemName5JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName5JPNTex; -#endif - -#define dgUnusedBossKeyItemName6JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName6JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName6JPNTex[] = dgUnusedBossKeyItemName6JPNTex; -#else -static const char gUnusedBossKeyItemName6JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName6JPNTex; -#endif - -#define dgUnusedBossKeyItemName7JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName7JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName7JPNTex[] = dgUnusedBossKeyItemName7JPNTex; -#else -static const char gUnusedBossKeyItemName7JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName7JPNTex; -#endif - -#define dgBiggoronsSwordItemNameENGTex "__OTR__textures/item_name_static/gBiggoronsSwordItemNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiggoronsSwordItemNameENGTex[] = dgBiggoronsSwordItemNameENGTex; -#else -static const char gBiggoronsSwordItemNameENGTex[] __attribute__((aligned (2))) = dgBiggoronsSwordItemNameENGTex; -#endif - -#define dgDekuStickItemNameGERTex "__OTR__textures/item_name_static/gDekuStickItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuStickItemNameGERTex[] = dgDekuStickItemNameGERTex; -#else -static const char gDekuStickItemNameGERTex[] __attribute__((aligned (2))) = dgDekuStickItemNameGERTex; -#endif - -#define dgDekuNutItemNameGERTex "__OTR__textures/item_name_static/gDekuNutItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutItemNameGERTex[] = dgDekuNutItemNameGERTex; -#else -static const char gDekuNutItemNameGERTex[] __attribute__((aligned (2))) = dgDekuNutItemNameGERTex; -#endif - -#define dgBombItemNameItemNameGERTex "__OTR__textures/item_name_static/gBombItemNameItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombItemNameItemNameGERTex[] = dgBombItemNameItemNameGERTex; -#else -static const char gBombItemNameItemNameGERTex[] __attribute__((aligned (2))) = dgBombItemNameItemNameGERTex; -#endif - -#define dgFairyBowItemNameGERTex "__OTR__textures/item_name_static/gFairyBowItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyBowItemNameGERTex[] = dgFairyBowItemNameGERTex; -#else -static const char gFairyBowItemNameGERTex[] __attribute__((aligned (2))) = dgFairyBowItemNameGERTex; -#endif - -#define dgFireArrowItemNameUnk2GERTex "__OTR__textures/item_name_static/gFireArrowItemNameUnk2GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireArrowItemNameUnk2GERTex[] = dgFireArrowItemNameUnk2GERTex; -#else -static const char gFireArrowItemNameUnk2GERTex[] __attribute__((aligned (2))) = dgFireArrowItemNameUnk2GERTex; -#endif - -#define dgDinsFireItemNameGERTex "__OTR__textures/item_name_static/gDinsFireItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDinsFireItemNameGERTex[] = dgDinsFireItemNameGERTex; -#else -static const char gDinsFireItemNameGERTex[] __attribute__((aligned (2))) = dgDinsFireItemNameGERTex; -#endif - -#define dgFairySlingshotItemNameGERTex "__OTR__textures/item_name_static/gFairySlingshotItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairySlingshotItemNameGERTex[] = dgFairySlingshotItemNameGERTex; -#else -static const char gFairySlingshotItemNameGERTex[] __attribute__((aligned (2))) = dgFairySlingshotItemNameGERTex; -#endif - -#define dgFairyOcarinaItemNameGERTex "__OTR__textures/item_name_static/gFairyOcarinaItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyOcarinaItemNameGERTex[] = dgFairyOcarinaItemNameGERTex; -#else -static const char gFairyOcarinaItemNameGERTex[] __attribute__((aligned (2))) = dgFairyOcarinaItemNameGERTex; -#endif - -#define dgOcarinaOfTimeItemNameGERTex "__OTR__textures/item_name_static/gOcarinaOfTimeItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaOfTimeItemNameGERTex[] = dgOcarinaOfTimeItemNameGERTex; -#else -static const char gOcarinaOfTimeItemNameGERTex[] __attribute__((aligned (2))) = dgOcarinaOfTimeItemNameGERTex; -#endif - -#define dgBombchuItemNameGERTex "__OTR__textures/item_name_static/gBombchuItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuItemNameGERTex[] = dgBombchuItemNameGERTex; -#else -static const char gBombchuItemNameGERTex[] __attribute__((aligned (2))) = dgBombchuItemNameGERTex; -#endif - -#define dgHookshotItemNameGERTex "__OTR__textures/item_name_static/gHookshotItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotItemNameGERTex[] = dgHookshotItemNameGERTex; -#else -static const char gHookshotItemNameGERTex[] __attribute__((aligned (2))) = dgHookshotItemNameGERTex; -#endif - -#define dgLongshotItemNameGERTex "__OTR__textures/item_name_static/gLongshotItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLongshotItemNameGERTex[] = dgLongshotItemNameGERTex; -#else -static const char gLongshotItemNameGERTex[] __attribute__((aligned (2))) = dgLongshotItemNameGERTex; -#endif - -#define dgIceArrowItemNameGERTex "__OTR__textures/item_name_static/gIceArrowItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceArrowItemNameGERTex[] = dgIceArrowItemNameGERTex; -#else -static const char gIceArrowItemNameGERTex[] __attribute__((aligned (2))) = dgIceArrowItemNameGERTex; -#endif - -#define dgFaroresWindItemNameGERTex "__OTR__textures/item_name_static/gFaroresWindItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaroresWindItemNameGERTex[] = dgFaroresWindItemNameGERTex; -#else -static const char gFaroresWindItemNameGERTex[] __attribute__((aligned (2))) = dgFaroresWindItemNameGERTex; -#endif - -#define dgBoomerangItemNameGERTex "__OTR__textures/item_name_static/gBoomerangItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoomerangItemNameGERTex[] = dgBoomerangItemNameGERTex; -#else -static const char gBoomerangItemNameGERTex[] __attribute__((aligned (2))) = dgBoomerangItemNameGERTex; -#endif - -#define dgLensItemNameGERTex "__OTR__textures/item_name_static/gLensItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensItemNameGERTex[] = dgLensItemNameGERTex; -#else -static const char gLensItemNameGERTex[] __attribute__((aligned (2))) = dgLensItemNameGERTex; -#endif - -#define dgMagicBeansItemNameGERTex "__OTR__textures/item_name_static/gMagicBeansItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeansItemNameGERTex[] = dgMagicBeansItemNameGERTex; -#else -static const char gMagicBeansItemNameGERTex[] __attribute__((aligned (2))) = dgMagicBeansItemNameGERTex; -#endif - -#define dgMegatonHammerItemNameGERTex "__OTR__textures/item_name_static/gMegatonHammerItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegatonHammerItemNameGERTex[] = dgMegatonHammerItemNameGERTex; -#else -static const char gMegatonHammerItemNameGERTex[] __attribute__((aligned (2))) = dgMegatonHammerItemNameGERTex; -#endif - -#define dgLightArrowItemNameGERTex "__OTR__textures/item_name_static/gLightArrowItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightArrowItemNameGERTex[] = dgLightArrowItemNameGERTex; -#else -static const char gLightArrowItemNameGERTex[] __attribute__((aligned (2))) = dgLightArrowItemNameGERTex; -#endif - -#define dgNayrusLoveItemNameGERTex "__OTR__textures/item_name_static/gNayrusLoveItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNayrusLoveItemNameGERTex[] = dgNayrusLoveItemNameGERTex; -#else -static const char gNayrusLoveItemNameGERTex[] __attribute__((aligned (2))) = dgNayrusLoveItemNameGERTex; -#endif - -#define dgEmptyBottleItemNameGERTex "__OTR__textures/item_name_static/gEmptyBottleItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEmptyBottleItemNameGERTex[] = dgEmptyBottleItemNameGERTex; -#else -static const char gEmptyBottleItemNameGERTex[] __attribute__((aligned (2))) = dgEmptyBottleItemNameGERTex; -#endif - -#define dgRedPotionItemNameGERTex "__OTR__textures/item_name_static/gRedPotionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedPotionItemNameGERTex[] = dgRedPotionItemNameGERTex; -#else -static const char gRedPotionItemNameGERTex[] __attribute__((aligned (2))) = dgRedPotionItemNameGERTex; -#endif - -#define dgGreenPotionItemNameGERTex "__OTR__textures/item_name_static/gGreenPotionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreenPotionItemNameGERTex[] = dgGreenPotionItemNameGERTex; -#else -static const char gGreenPotionItemNameGERTex[] __attribute__((aligned (2))) = dgGreenPotionItemNameGERTex; -#endif - -#define dgBluePotionItemNameGERTex "__OTR__textures/item_name_static/gBluePotionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBluePotionItemNameGERTex[] = dgBluePotionItemNameGERTex; -#else -static const char gBluePotionItemNameGERTex[] __attribute__((aligned (2))) = dgBluePotionItemNameGERTex; -#endif - -#define dgBottledFairyItemNameGERTex "__OTR__textures/item_name_static/gBottledFairyItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottledFairyItemNameGERTex[] = dgBottledFairyItemNameGERTex; -#else -static const char gBottledFairyItemNameGERTex[] __attribute__((aligned (2))) = dgBottledFairyItemNameGERTex; -#endif - -#define dgFishItemNameGERTex "__OTR__textures/item_name_static/gFishItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishItemNameGERTex[] = dgFishItemNameGERTex; -#else -static const char gFishItemNameGERTex[] __attribute__((aligned (2))) = dgFishItemNameGERTex; -#endif - -#define dgFullMilkItemNameGERTex "__OTR__textures/item_name_static/gFullMilkItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFullMilkItemNameGERTex[] = dgFullMilkItemNameGERTex; -#else -static const char gFullMilkItemNameGERTex[] __attribute__((aligned (2))) = dgFullMilkItemNameGERTex; -#endif - -#define dgRutosLetterItemNameGERTex "__OTR__textures/item_name_static/gRutosLetterItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutosLetterItemNameGERTex[] = dgRutosLetterItemNameGERTex; -#else -static const char gRutosLetterItemNameGERTex[] __attribute__((aligned (2))) = dgRutosLetterItemNameGERTex; -#endif - -#define dgBlueFireItemNameGERTex "__OTR__textures/item_name_static/gBlueFireItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlueFireItemNameGERTex[] = dgBlueFireItemNameGERTex; -#else -static const char gBlueFireItemNameGERTex[] __attribute__((aligned (2))) = dgBlueFireItemNameGERTex; -#endif - -#define dgBugItemNameGERTex "__OTR__textures/item_name_static/gBugItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugItemNameGERTex[] = dgBugItemNameGERTex; -#else -static const char gBugItemNameGERTex[] __attribute__((aligned (2))) = dgBugItemNameGERTex; -#endif - -#define dgBigPoeItemNameGERTex "__OTR__textures/item_name_static/gBigPoeItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigPoeItemNameGERTex[] = dgBigPoeItemNameGERTex; -#else -static const char gBigPoeItemNameGERTex[] __attribute__((aligned (2))) = dgBigPoeItemNameGERTex; -#endif - -#define dgHalfMilkItemNameGERTex "__OTR__textures/item_name_static/gHalfMilkItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHalfMilkItemNameGERTex[] = dgHalfMilkItemNameGERTex; -#else -static const char gHalfMilkItemNameGERTex[] __attribute__((aligned (2))) = dgHalfMilkItemNameGERTex; -#endif - -#define dgPoeItemNameGERTex "__OTR__textures/item_name_static/gPoeItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeItemNameGERTex[] = dgPoeItemNameGERTex; -#else -static const char gPoeItemNameGERTex[] __attribute__((aligned (2))) = dgPoeItemNameGERTex; -#endif - -#define dgWeirdEggItemNameGERTex "__OTR__textures/item_name_static/gWeirdEggItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWeirdEggItemNameGERTex[] = dgWeirdEggItemNameGERTex; -#else -static const char gWeirdEggItemNameGERTex[] __attribute__((aligned (2))) = dgWeirdEggItemNameGERTex; -#endif - -#define dgCuccoItemNameGERTex "__OTR__textures/item_name_static/gCuccoItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoItemNameGERTex[] = dgCuccoItemNameGERTex; -#else -static const char gCuccoItemNameGERTex[] __attribute__((aligned (2))) = dgCuccoItemNameGERTex; -#endif - -#define dgZeldasLetterItemNameGERTex "__OTR__textures/item_name_static/gZeldasLetterItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasLetterItemNameGERTex[] = dgZeldasLetterItemNameGERTex; -#else -static const char gZeldasLetterItemNameGERTex[] __attribute__((aligned (2))) = dgZeldasLetterItemNameGERTex; -#endif - -#define dgKeatonMaskItemNameGERTex "__OTR__textures/item_name_static/gKeatonMaskItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeatonMaskItemNameGERTex[] = dgKeatonMaskItemNameGERTex; -#else -static const char gKeatonMaskItemNameGERTex[] __attribute__((aligned (2))) = dgKeatonMaskItemNameGERTex; -#endif - -#define dgSkullMaskItemNameGERTex "__OTR__textures/item_name_static/gSkullMaskItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullMaskItemNameGERTex[] = dgSkullMaskItemNameGERTex; -#else -static const char gSkullMaskItemNameGERTex[] __attribute__((aligned (2))) = dgSkullMaskItemNameGERTex; -#endif - -#define dgSpookyMaskItemNameGERTex "__OTR__textures/item_name_static/gSpookyMaskItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpookyMaskItemNameGERTex[] = dgSpookyMaskItemNameGERTex; -#else -static const char gSpookyMaskItemNameGERTex[] __attribute__((aligned (2))) = dgSpookyMaskItemNameGERTex; -#endif - -#define dgBunnyHoodItemNameGERTex "__OTR__textures/item_name_static/gBunnyHoodItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBunnyHoodItemNameGERTex[] = dgBunnyHoodItemNameGERTex; -#else -static const char gBunnyHoodItemNameGERTex[] __attribute__((aligned (2))) = dgBunnyHoodItemNameGERTex; -#endif - -#define dgGoronMaskItemNameGERTex "__OTR__textures/item_name_static/gGoronMaskItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronMaskItemNameGERTex[] = dgGoronMaskItemNameGERTex; -#else -static const char gGoronMaskItemNameGERTex[] __attribute__((aligned (2))) = dgGoronMaskItemNameGERTex; -#endif - -#define dgZoraMaskItemNameGERTex "__OTR__textures/item_name_static/gZoraMaskItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraMaskItemNameGERTex[] = dgZoraMaskItemNameGERTex; -#else -static const char gZoraMaskItemNameGERTex[] __attribute__((aligned (2))) = dgZoraMaskItemNameGERTex; -#endif - -#define dgGerudoMaskItemNameGERTex "__OTR__textures/item_name_static/gGerudoMaskItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoMaskItemNameGERTex[] = dgGerudoMaskItemNameGERTex; -#else -static const char gGerudoMaskItemNameGERTex[] __attribute__((aligned (2))) = dgGerudoMaskItemNameGERTex; -#endif - -#define dgMaskofTruthItemNameGERTex "__OTR__textures/item_name_static/gMaskofTruthItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMaskofTruthItemNameGERTex[] = dgMaskofTruthItemNameGERTex; -#else -static const char gMaskofTruthItemNameGERTex[] __attribute__((aligned (2))) = dgMaskofTruthItemNameGERTex; -#endif - -#define dgSOLDOUTItemNameGERTex "__OTR__textures/item_name_static/gSOLDOUTItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSOLDOUTItemNameGERTex[] = dgSOLDOUTItemNameGERTex; -#else -static const char gSOLDOUTItemNameGERTex[] __attribute__((aligned (2))) = dgSOLDOUTItemNameGERTex; -#endif - -#define dgPocketEggItemNameGERTex "__OTR__textures/item_name_static/gPocketEggItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPocketEggItemNameGERTex[] = dgPocketEggItemNameGERTex; -#else -static const char gPocketEggItemNameGERTex[] __attribute__((aligned (2))) = dgPocketEggItemNameGERTex; -#endif - -#define dgPocketCuccoItemNameGERTex "__OTR__textures/item_name_static/gPocketCuccoItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPocketCuccoItemNameGERTex[] = dgPocketCuccoItemNameGERTex; -#else -static const char gPocketCuccoItemNameGERTex[] __attribute__((aligned (2))) = dgPocketCuccoItemNameGERTex; -#endif - -#define dgCojiroItemNameGERTex "__OTR__textures/item_name_static/gCojiroItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCojiroItemNameGERTex[] = dgCojiroItemNameGERTex; -#else -static const char gCojiroItemNameGERTex[] __attribute__((aligned (2))) = dgCojiroItemNameGERTex; -#endif - -#define dgOddMushroomItemNameGERTex "__OTR__textures/item_name_static/gOddMushroomItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOddMushroomItemNameGERTex[] = dgOddMushroomItemNameGERTex; -#else -static const char gOddMushroomItemNameGERTex[] __attribute__((aligned (2))) = dgOddMushroomItemNameGERTex; -#endif - -#define dgOddPotionItemNameGERTex "__OTR__textures/item_name_static/gOddPotionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOddPotionItemNameGERTex[] = dgOddPotionItemNameGERTex; -#else -static const char gOddPotionItemNameGERTex[] __attribute__((aligned (2))) = dgOddPotionItemNameGERTex; -#endif - -#define dgPoachersSawItemNameGERTex "__OTR__textures/item_name_static/gPoachersSawItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoachersSawItemNameGERTex[] = dgPoachersSawItemNameGERTex; -#else -static const char gPoachersSawItemNameGERTex[] __attribute__((aligned (2))) = dgPoachersSawItemNameGERTex; -#endif - -#define dgBrokenGoronsSwordItemNameGERTex "__OTR__textures/item_name_static/gBrokenGoronsSwordItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenGoronsSwordItemNameGERTex[] = dgBrokenGoronsSwordItemNameGERTex; -#else -static const char gBrokenGoronsSwordItemNameGERTex[] __attribute__((aligned (2))) = dgBrokenGoronsSwordItemNameGERTex; -#endif - -#define dgPrescriptionItemNameGERTex "__OTR__textures/item_name_static/gPrescriptionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPrescriptionItemNameGERTex[] = dgPrescriptionItemNameGERTex; -#else -static const char gPrescriptionItemNameGERTex[] __attribute__((aligned (2))) = dgPrescriptionItemNameGERTex; -#endif - -#define dgEyeBallFrogItemNameGERTex "__OTR__textures/item_name_static/gEyeBallFrogItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeBallFrogItemNameGERTex[] = dgEyeBallFrogItemNameGERTex; -#else -static const char gEyeBallFrogItemNameGERTex[] __attribute__((aligned (2))) = dgEyeBallFrogItemNameGERTex; -#endif - -#define dgEyeDropsItemNameGERTex "__OTR__textures/item_name_static/gEyeDropsItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeDropsItemNameGERTex[] = dgEyeDropsItemNameGERTex; -#else -static const char gEyeDropsItemNameGERTex[] __attribute__((aligned (2))) = dgEyeDropsItemNameGERTex; -#endif - -#define dgClaimCheckItemNameGERTex "__OTR__textures/item_name_static/gClaimCheckItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gClaimCheckItemNameGERTex[] = dgClaimCheckItemNameGERTex; -#else -static const char gClaimCheckItemNameGERTex[] __attribute__((aligned (2))) = dgClaimCheckItemNameGERTex; -#endif - -#define dgUnusedWindMedallionItemName2JPNTex "__OTR__textures/item_name_static/gUnusedWindMedallionItemName2JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedWindMedallionItemName2JPNTex[] = dgUnusedWindMedallionItemName2JPNTex; -#else -static const char gUnusedWindMedallionItemName2JPNTex[] __attribute__((aligned (2))) = dgUnusedWindMedallionItemName2JPNTex; -#endif - -#define dgUnusedFireMedallionItemName2JPNTex "__OTR__textures/item_name_static/gUnusedFireMedallionItemName2JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedFireMedallionItemName2JPNTex[] = dgUnusedFireMedallionItemName2JPNTex; -#else -static const char gUnusedFireMedallionItemName2JPNTex[] __attribute__((aligned (2))) = dgUnusedFireMedallionItemName2JPNTex; -#endif - -#define dgUnusedIceMedallionItemName2JPNTex "__OTR__textures/item_name_static/gUnusedIceMedallionItemName2JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedIceMedallionItemName2JPNTex[] = dgUnusedIceMedallionItemName2JPNTex; -#else -static const char gUnusedIceMedallionItemName2JPNTex[] __attribute__((aligned (2))) = dgUnusedIceMedallionItemName2JPNTex; -#endif - -#define dgKokiriSwordItemNameGERTex "__OTR__textures/item_name_static/gKokiriSwordItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriSwordItemNameGERTex[] = dgKokiriSwordItemNameGERTex; -#else -static const char gKokiriSwordItemNameGERTex[] __attribute__((aligned (2))) = dgKokiriSwordItemNameGERTex; -#endif - -#define dgMasterSwordItemNameGERTex "__OTR__textures/item_name_static/gMasterSwordItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMasterSwordItemNameGERTex[] = dgMasterSwordItemNameGERTex; -#else -static const char gMasterSwordItemNameGERTex[] __attribute__((aligned (2))) = dgMasterSwordItemNameGERTex; -#endif - -#define dgGiantsKnifeItemNameGERTex "__OTR__textures/item_name_static/gGiantsKnifeItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiantsKnifeItemNameGERTex[] = dgGiantsKnifeItemNameGERTex; -#else -static const char gGiantsKnifeItemNameGERTex[] __attribute__((aligned (2))) = dgGiantsKnifeItemNameGERTex; -#endif - -#define dgDekuShieldItemNameGERTex "__OTR__textures/item_name_static/gDekuShieldItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuShieldItemNameGERTex[] = dgDekuShieldItemNameGERTex; -#else -static const char gDekuShieldItemNameGERTex[] __attribute__((aligned (2))) = dgDekuShieldItemNameGERTex; -#endif - -#define dgHylianShieldItemNameGERTex "__OTR__textures/item_name_static/gHylianShieldItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHylianShieldItemNameGERTex[] = dgHylianShieldItemNameGERTex; -#else -static const char gHylianShieldItemNameGERTex[] __attribute__((aligned (2))) = dgHylianShieldItemNameGERTex; -#endif - -#define dgMirrorShieldItemNameGERTex "__OTR__textures/item_name_static/gMirrorShieldItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMirrorShieldItemNameGERTex[] = dgMirrorShieldItemNameGERTex; -#else -static const char gMirrorShieldItemNameGERTex[] __attribute__((aligned (2))) = dgMirrorShieldItemNameGERTex; -#endif - -#define dgKokiriTunicItemNameGERTex "__OTR__textures/item_name_static/gKokiriTunicItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriTunicItemNameGERTex[] = dgKokiriTunicItemNameGERTex; -#else -static const char gKokiriTunicItemNameGERTex[] __attribute__((aligned (2))) = dgKokiriTunicItemNameGERTex; -#endif - -#define dgGoronTunicItemNameGERTex "__OTR__textures/item_name_static/gGoronTunicItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronTunicItemNameGERTex[] = dgGoronTunicItemNameGERTex; -#else -static const char gGoronTunicItemNameGERTex[] __attribute__((aligned (2))) = dgGoronTunicItemNameGERTex; -#endif - -#define dgZoraTunicItemNameGERTex "__OTR__textures/item_name_static/gZoraTunicItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraTunicItemNameGERTex[] = dgZoraTunicItemNameGERTex; -#else -static const char gZoraTunicItemNameGERTex[] __attribute__((aligned (2))) = dgZoraTunicItemNameGERTex; -#endif - -#define dgKokiriBootsItemNameGERTex "__OTR__textures/item_name_static/gKokiriBootsItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriBootsItemNameGERTex[] = dgKokiriBootsItemNameGERTex; -#else -static const char gKokiriBootsItemNameGERTex[] __attribute__((aligned (2))) = dgKokiriBootsItemNameGERTex; -#endif - -#define dgIronBootsItemNameGERTex "__OTR__textures/item_name_static/gIronBootsItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIronBootsItemNameGERTex[] = dgIronBootsItemNameGERTex; -#else -static const char gIronBootsItemNameGERTex[] __attribute__((aligned (2))) = dgIronBootsItemNameGERTex; -#endif - -#define dgHoverBootsItemNameGERTex "__OTR__textures/item_name_static/gHoverBootsItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoverBootsItemNameGERTex[] = dgHoverBootsItemNameGERTex; -#else -static const char gHoverBootsItemNameGERTex[] __attribute__((aligned (2))) = dgHoverBootsItemNameGERTex; -#endif - -#define dgBulletBag30ItemNameGERTex "__OTR__textures/item_name_static/gBulletBag30ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag30ItemNameGERTex[] = dgBulletBag30ItemNameGERTex; -#else -static const char gBulletBag30ItemNameGERTex[] __attribute__((aligned (2))) = dgBulletBag30ItemNameGERTex; -#endif - -#define dgBulletBag40ItemNameGERTex "__OTR__textures/item_name_static/gBulletBag40ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag40ItemNameGERTex[] = dgBulletBag40ItemNameGERTex; -#else -static const char gBulletBag40ItemNameGERTex[] __attribute__((aligned (2))) = dgBulletBag40ItemNameGERTex; -#endif - -#define dgBulletBag50ItemNameGERTex "__OTR__textures/item_name_static/gBulletBag50ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag50ItemNameGERTex[] = dgBulletBag50ItemNameGERTex; -#else -static const char gBulletBag50ItemNameGERTex[] __attribute__((aligned (2))) = dgBulletBag50ItemNameGERTex; -#endif - -#define dgQuiver30ItemNameGERTex "__OTR__textures/item_name_static/gQuiver30ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver30ItemNameGERTex[] = dgQuiver30ItemNameGERTex; -#else -static const char gQuiver30ItemNameGERTex[] __attribute__((aligned (2))) = dgQuiver30ItemNameGERTex; -#endif - -#define dgQuiver40ItemNameGERTex "__OTR__textures/item_name_static/gQuiver40ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver40ItemNameGERTex[] = dgQuiver40ItemNameGERTex; -#else -static const char gQuiver40ItemNameGERTex[] __attribute__((aligned (2))) = dgQuiver40ItemNameGERTex; -#endif - -#define dgQuiver50ItemNameGERTex "__OTR__textures/item_name_static/gQuiver50ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver50ItemNameGERTex[] = dgQuiver50ItemNameGERTex; -#else -static const char gQuiver50ItemNameGERTex[] __attribute__((aligned (2))) = dgQuiver50ItemNameGERTex; -#endif - -#define dgBombBag20ItemNameGERTex "__OTR__textures/item_name_static/gBombBag20ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag20ItemNameGERTex[] = dgBombBag20ItemNameGERTex; -#else -static const char gBombBag20ItemNameGERTex[] __attribute__((aligned (2))) = dgBombBag20ItemNameGERTex; -#endif - -#define dgBombBag30ItemNameGERTex "__OTR__textures/item_name_static/gBombBag30ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag30ItemNameGERTex[] = dgBombBag30ItemNameGERTex; -#else -static const char gBombBag30ItemNameGERTex[] __attribute__((aligned (2))) = dgBombBag30ItemNameGERTex; -#endif - -#define dgBombBag40ItemNameGERTex "__OTR__textures/item_name_static/gBombBag40ItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag40ItemNameGERTex[] = dgBombBag40ItemNameGERTex; -#else -static const char gBombBag40ItemNameGERTex[] __attribute__((aligned (2))) = dgBombBag40ItemNameGERTex; -#endif - -#define dgGoronsBraceletItemNameGERTex "__OTR__textures/item_name_static/gGoronsBraceletItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronsBraceletItemNameGERTex[] = dgGoronsBraceletItemNameGERTex; -#else -static const char gGoronsBraceletItemNameGERTex[] __attribute__((aligned (2))) = dgGoronsBraceletItemNameGERTex; -#endif - -#define dgSilverGauntletsItemNameGERTex "__OTR__textures/item_name_static/gSilverGauntletsItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverGauntletsItemNameGERTex[] = dgSilverGauntletsItemNameGERTex; -#else -static const char gSilverGauntletsItemNameGERTex[] __attribute__((aligned (2))) = dgSilverGauntletsItemNameGERTex; -#endif - -#define dgGoldenGauntletsItemNameGERTex "__OTR__textures/item_name_static/gGoldenGauntletsItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGauntletsItemNameGERTex[] = dgGoldenGauntletsItemNameGERTex; -#else -static const char gGoldenGauntletsItemNameGERTex[] __attribute__((aligned (2))) = dgGoldenGauntletsItemNameGERTex; -#endif - -#define dgSilverScaleItemNameGERTex "__OTR__textures/item_name_static/gSilverScaleItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverScaleItemNameGERTex[] = dgSilverScaleItemNameGERTex; -#else -static const char gSilverScaleItemNameGERTex[] __attribute__((aligned (2))) = dgSilverScaleItemNameGERTex; -#endif - -#define dgGoldenScaleItemNameGERTex "__OTR__textures/item_name_static/gGoldenScaleItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenScaleItemNameGERTex[] = dgGoldenScaleItemNameGERTex; -#else -static const char gGoldenScaleItemNameGERTex[] __attribute__((aligned (2))) = dgGoldenScaleItemNameGERTex; -#endif - -#define dgBrokenGiantsKnifeItemNameGERTex "__OTR__textures/item_name_static/gBrokenGiantsKnifeItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenGiantsKnifeItemNameGERTex[] = dgBrokenGiantsKnifeItemNameGERTex; -#else -static const char gBrokenGiantsKnifeItemNameGERTex[] __attribute__((aligned (2))) = dgBrokenGiantsKnifeItemNameGERTex; -#endif - -#define dgUnusedBossKeyItemName8JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName8JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName8JPNTex[] = dgUnusedBossKeyItemName8JPNTex; -#else -static const char gUnusedBossKeyItemName8JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName8JPNTex; -#endif - -#define dgUnusedBossKeyItemName9JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName9JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName9JPNTex[] = dgUnusedBossKeyItemName9JPNTex; -#else -static const char gUnusedBossKeyItemName9JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName9JPNTex; -#endif - -#define dgUnusedBossKeyItemName10JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName10JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName10JPNTex[] = dgUnusedBossKeyItemName10JPNTex; -#else -static const char gUnusedBossKeyItemName10JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName10JPNTex; -#endif - -#define dgUnusedBossKeyItemName11JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName11JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName11JPNTex[] = dgUnusedBossKeyItemName11JPNTex; -#else -static const char gUnusedBossKeyItemName11JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName11JPNTex; -#endif - -#define dgMinuetOfForestItemNameGERTex "__OTR__textures/item_name_static/gMinuetOfForestItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMinuetOfForestItemNameGERTex[] = dgMinuetOfForestItemNameGERTex; -#else -static const char gMinuetOfForestItemNameGERTex[] __attribute__((aligned (2))) = dgMinuetOfForestItemNameGERTex; -#endif - -#define dgBoleroOfFireItemNameGERTex "__OTR__textures/item_name_static/gBoleroOfFireItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoleroOfFireItemNameGERTex[] = dgBoleroOfFireItemNameGERTex; -#else -static const char gBoleroOfFireItemNameGERTex[] __attribute__((aligned (2))) = dgBoleroOfFireItemNameGERTex; -#endif - -#define dgSerenadeOfWaterItemNameGERTex "__OTR__textures/item_name_static/gSerenadeOfWaterItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSerenadeOfWaterItemNameGERTex[] = dgSerenadeOfWaterItemNameGERTex; -#else -static const char gSerenadeOfWaterItemNameGERTex[] __attribute__((aligned (2))) = dgSerenadeOfWaterItemNameGERTex; -#endif - -#define dgRequiemOfSpiritItemNameGERTex "__OTR__textures/item_name_static/gRequiemOfSpiritItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRequiemOfSpiritItemNameGERTex[] = dgRequiemOfSpiritItemNameGERTex; -#else -static const char gRequiemOfSpiritItemNameGERTex[] __attribute__((aligned (2))) = dgRequiemOfSpiritItemNameGERTex; -#endif - -#define dgNocturneOfShadowItemNameGERTex "__OTR__textures/item_name_static/gNocturneOfShadowItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNocturneOfShadowItemNameGERTex[] = dgNocturneOfShadowItemNameGERTex; -#else -static const char gNocturneOfShadowItemNameGERTex[] __attribute__((aligned (2))) = dgNocturneOfShadowItemNameGERTex; -#endif - -#define dgPreludeOfLightItemNameGERTex "__OTR__textures/item_name_static/gPreludeOfLightItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPreludeOfLightItemNameGERTex[] = dgPreludeOfLightItemNameGERTex; -#else -static const char gPreludeOfLightItemNameGERTex[] __attribute__((aligned (2))) = dgPreludeOfLightItemNameGERTex; -#endif - -#define dgZeldasLullabyItemNameGERTex "__OTR__textures/item_name_static/gZeldasLullabyItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasLullabyItemNameGERTex[] = dgZeldasLullabyItemNameGERTex; -#else -static const char gZeldasLullabyItemNameGERTex[] __attribute__((aligned (2))) = dgZeldasLullabyItemNameGERTex; -#endif - -#define dgEponasSongItemNameGERTex "__OTR__textures/item_name_static/gEponasSongItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponasSongItemNameGERTex[] = dgEponasSongItemNameGERTex; -#else -static const char gEponasSongItemNameGERTex[] __attribute__((aligned (2))) = dgEponasSongItemNameGERTex; -#endif - -#define dgSariasSongItemNameGERTex "__OTR__textures/item_name_static/gSariasSongItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasSongItemNameGERTex[] = dgSariasSongItemNameGERTex; -#else -static const char gSariasSongItemNameGERTex[] __attribute__((aligned (2))) = dgSariasSongItemNameGERTex; -#endif - -#define dgSunsSongItemNameGERTex "__OTR__textures/item_name_static/gSunsSongItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsSongItemNameGERTex[] = dgSunsSongItemNameGERTex; -#else -static const char gSunsSongItemNameGERTex[] __attribute__((aligned (2))) = dgSunsSongItemNameGERTex; -#endif - -#define dgSongOfTimeItemNameGERTex "__OTR__textures/item_name_static/gSongOfTimeItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfTimeItemNameGERTex[] = dgSongOfTimeItemNameGERTex; -#else -static const char gSongOfTimeItemNameGERTex[] __attribute__((aligned (2))) = dgSongOfTimeItemNameGERTex; -#endif - -#define dgSongOfStormsItemNameGERTex "__OTR__textures/item_name_static/gSongOfStormsItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfStormsItemNameGERTex[] = dgSongOfStormsItemNameGERTex; -#else -static const char gSongOfStormsItemNameGERTex[] __attribute__((aligned (2))) = dgSongOfStormsItemNameGERTex; -#endif - -#define dgForestMedallionItemNameGERTex "__OTR__textures/item_name_static/gForestMedallionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestMedallionItemNameGERTex[] = dgForestMedallionItemNameGERTex; -#else -static const char gForestMedallionItemNameGERTex[] __attribute__((aligned (2))) = dgForestMedallionItemNameGERTex; -#endif - -#define dgFireMedallionItemNameGERTex "__OTR__textures/item_name_static/gFireMedallionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireMedallionItemNameGERTex[] = dgFireMedallionItemNameGERTex; -#else -static const char gFireMedallionItemNameGERTex[] __attribute__((aligned (2))) = dgFireMedallionItemNameGERTex; -#endif - -#define dgWaterMedallionItemNameGERTex "__OTR__textures/item_name_static/gWaterMedallionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterMedallionItemNameGERTex[] = dgWaterMedallionItemNameGERTex; -#else -static const char gWaterMedallionItemNameGERTex[] __attribute__((aligned (2))) = dgWaterMedallionItemNameGERTex; -#endif - -#define dgSpiritMedallionItemNameGERTex "__OTR__textures/item_name_static/gSpiritMedallionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritMedallionItemNameGERTex[] = dgSpiritMedallionItemNameGERTex; -#else -static const char gSpiritMedallionItemNameGERTex[] __attribute__((aligned (2))) = dgSpiritMedallionItemNameGERTex; -#endif - -#define dgShadowMedallionItemNameGERTex "__OTR__textures/item_name_static/gShadowMedallionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowMedallionItemNameGERTex[] = dgShadowMedallionItemNameGERTex; -#else -static const char gShadowMedallionItemNameGERTex[] __attribute__((aligned (2))) = dgShadowMedallionItemNameGERTex; -#endif - -#define dgLightMedallionItemNameGERTex "__OTR__textures/item_name_static/gLightMedallionItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightMedallionItemNameGERTex[] = dgLightMedallionItemNameGERTex; -#else -static const char gLightMedallionItemNameGERTex[] __attribute__((aligned (2))) = dgLightMedallionItemNameGERTex; -#endif - -#define dgKokiriEmeraldItemNameGERTex "__OTR__textures/item_name_static/gKokiriEmeraldItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriEmeraldItemNameGERTex[] = dgKokiriEmeraldItemNameGERTex; -#else -static const char gKokiriEmeraldItemNameGERTex[] __attribute__((aligned (2))) = dgKokiriEmeraldItemNameGERTex; -#endif - -#define dgGoronsRubyItemNameGERTex "__OTR__textures/item_name_static/gGoronsRubyItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronsRubyItemNameGERTex[] = dgGoronsRubyItemNameGERTex; -#else -static const char gGoronsRubyItemNameGERTex[] __attribute__((aligned (2))) = dgGoronsRubyItemNameGERTex; -#endif - -#define dgZorasSapphireItemNameGERTex "__OTR__textures/item_name_static/gZorasSapphireItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasSapphireItemNameGERTex[] = dgZorasSapphireItemNameGERTex; -#else -static const char gZorasSapphireItemNameGERTex[] __attribute__((aligned (2))) = dgZorasSapphireItemNameGERTex; -#endif - -#define dgStoneofAgonyItemNameGERTex "__OTR__textures/item_name_static/gStoneofAgonyItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStoneofAgonyItemNameGERTex[] = dgStoneofAgonyItemNameGERTex; -#else -static const char gStoneofAgonyItemNameGERTex[] __attribute__((aligned (2))) = dgStoneofAgonyItemNameGERTex; -#endif - -#define dgGerudosCardItemNameGERTex "__OTR__textures/item_name_static/gGerudosCardItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosCardItemNameGERTex[] = dgGerudosCardItemNameGERTex; -#else -static const char gGerudosCardItemNameGERTex[] __attribute__((aligned (2))) = dgGerudosCardItemNameGERTex; -#endif - -#define dgGoldSkulltulaItemNameGERTex "__OTR__textures/item_name_static/gGoldSkulltulaItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldSkulltulaItemNameGERTex[] = dgGoldSkulltulaItemNameGERTex; -#else -static const char gGoldSkulltulaItemNameGERTex[] __attribute__((aligned (2))) = dgGoldSkulltulaItemNameGERTex; -#endif - -#define dgHeartContainerItemNameGERTex "__OTR__textures/item_name_static/gHeartContainerItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartContainerItemNameGERTex[] = dgHeartContainerItemNameGERTex; -#else -static const char gHeartContainerItemNameGERTex[] __attribute__((aligned (2))) = dgHeartContainerItemNameGERTex; -#endif - -#define dgUnusedPieceOfHeartItemName2JPNTex "__OTR__textures/item_name_static/gUnusedPieceOfHeartItemName2JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedPieceOfHeartItemName2JPNTex[] = dgUnusedPieceOfHeartItemName2JPNTex; -#else -static const char gUnusedPieceOfHeartItemName2JPNTex[] __attribute__((aligned (2))) = dgUnusedPieceOfHeartItemName2JPNTex; -#endif - -#define dgBigKeyItemNameGERTex "__OTR__textures/item_name_static/gBigKeyItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigKeyItemNameGERTex[] = dgBigKeyItemNameGERTex; -#else -static const char gBigKeyItemNameGERTex[] __attribute__((aligned (2))) = dgBigKeyItemNameGERTex; -#endif - -#define dgCompassItemNameGERTex "__OTR__textures/item_name_static/gCompassItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCompassItemNameGERTex[] = dgCompassItemNameGERTex; -#else -static const char gCompassItemNameGERTex[] __attribute__((aligned (2))) = dgCompassItemNameGERTex; -#endif - -#define dgDungeonMapItemNameGERTex "__OTR__textures/item_name_static/gDungeonMapItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapItemNameGERTex[] = dgDungeonMapItemNameGERTex; -#else -static const char gDungeonMapItemNameGERTex[] __attribute__((aligned (2))) = dgDungeonMapItemNameGERTex; -#endif - -#define dgUnusedBossKeyItemName12JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName12JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName12JPNTex[] = dgUnusedBossKeyItemName12JPNTex; -#else -static const char gUnusedBossKeyItemName12JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName12JPNTex; -#endif - -#define dgUnusedBossKeyItemName13JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName13JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName13JPNTex[] = dgUnusedBossKeyItemName13JPNTex; -#else -static const char gUnusedBossKeyItemName13JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName13JPNTex; -#endif - -#define dgUnusedBossKeyItemName14JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName14JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName14JPNTex[] = dgUnusedBossKeyItemName14JPNTex; -#else -static const char gUnusedBossKeyItemName14JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName14JPNTex; -#endif - -#define dgBiggoronsSwordItemNameGERTex "__OTR__textures/item_name_static/gBiggoronsSwordItemNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiggoronsSwordItemNameGERTex[] = dgBiggoronsSwordItemNameGERTex; -#else -static const char gBiggoronsSwordItemNameGERTex[] __attribute__((aligned (2))) = dgBiggoronsSwordItemNameGERTex; -#endif - -#define dgDekuStickItemNameFRATex "__OTR__textures/item_name_static/gDekuStickItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuStickItemNameFRATex[] = dgDekuStickItemNameFRATex; -#else -static const char gDekuStickItemNameFRATex[] __attribute__((aligned (2))) = dgDekuStickItemNameFRATex; -#endif - -#define dgDekuNutItemNameFRATex "__OTR__textures/item_name_static/gDekuNutItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuNutItemNameFRATex[] = dgDekuNutItemNameFRATex; -#else -static const char gDekuNutItemNameFRATex[] __attribute__((aligned (2))) = dgDekuNutItemNameFRATex; -#endif - -#define dgBombItemNameFRATex "__OTR__textures/item_name_static/gBombItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombItemNameFRATex[] = dgBombItemNameFRATex; -#else -static const char gBombItemNameFRATex[] __attribute__((aligned (2))) = dgBombItemNameFRATex; -#endif - -#define dgFairyBowItemNameFRATex "__OTR__textures/item_name_static/gFairyBowItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyBowItemNameFRATex[] = dgFairyBowItemNameFRATex; -#else -static const char gFairyBowItemNameFRATex[] __attribute__((aligned (2))) = dgFairyBowItemNameFRATex; -#endif - -#define dgFireArrowItemNameFRATex "__OTR__textures/item_name_static/gFireArrowItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireArrowItemNameFRATex[] = dgFireArrowItemNameFRATex; -#else -static const char gFireArrowItemNameFRATex[] __attribute__((aligned (2))) = dgFireArrowItemNameFRATex; -#endif - -#define dgDinsFireItemNameFRATex "__OTR__textures/item_name_static/gDinsFireItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDinsFireItemNameFRATex[] = dgDinsFireItemNameFRATex; -#else -static const char gDinsFireItemNameFRATex[] __attribute__((aligned (2))) = dgDinsFireItemNameFRATex; -#endif - -#define dgFairySlingshotItemNameFRATex "__OTR__textures/item_name_static/gFairySlingshotItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairySlingshotItemNameFRATex[] = dgFairySlingshotItemNameFRATex; -#else -static const char gFairySlingshotItemNameFRATex[] __attribute__((aligned (2))) = dgFairySlingshotItemNameFRATex; -#endif - -#define dgFairyOcarinaItemNameFRATex "__OTR__textures/item_name_static/gFairyOcarinaItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairyOcarinaItemNameFRATex[] = dgFairyOcarinaItemNameFRATex; -#else -static const char gFairyOcarinaItemNameFRATex[] __attribute__((aligned (2))) = dgFairyOcarinaItemNameFRATex; -#endif - -#define dgOcarinaOfTimeItemNameFRATex "__OTR__textures/item_name_static/gOcarinaOfTimeItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaOfTimeItemNameFRATex[] = dgOcarinaOfTimeItemNameFRATex; -#else -static const char gOcarinaOfTimeItemNameFRATex[] __attribute__((aligned (2))) = dgOcarinaOfTimeItemNameFRATex; -#endif - -#define dgBombchuItemNameFRATex "__OTR__textures/item_name_static/gBombchuItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuItemNameFRATex[] = dgBombchuItemNameFRATex; -#else -static const char gBombchuItemNameFRATex[] __attribute__((aligned (2))) = dgBombchuItemNameFRATex; -#endif - -#define dgHookshotItemNameFRATex "__OTR__textures/item_name_static/gHookshotItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHookshotItemNameFRATex[] = dgHookshotItemNameFRATex; -#else -static const char gHookshotItemNameFRATex[] __attribute__((aligned (2))) = dgHookshotItemNameFRATex; -#endif - -#define dgLongshotItemNameFRATex "__OTR__textures/item_name_static/gLongshotItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLongshotItemNameFRATex[] = dgLongshotItemNameFRATex; -#else -static const char gLongshotItemNameFRATex[] __attribute__((aligned (2))) = dgLongshotItemNameFRATex; -#endif - -#define dgIceArrowItemNameFRATex "__OTR__textures/item_name_static/gIceArrowItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceArrowItemNameFRATex[] = dgIceArrowItemNameFRATex; -#else -static const char gIceArrowItemNameFRATex[] __attribute__((aligned (2))) = dgIceArrowItemNameFRATex; -#endif - -#define dgFaroresWindItemNameFRATex "__OTR__textures/item_name_static/gFaroresWindItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFaroresWindItemNameFRATex[] = dgFaroresWindItemNameFRATex; -#else -static const char gFaroresWindItemNameFRATex[] __attribute__((aligned (2))) = dgFaroresWindItemNameFRATex; -#endif - -#define dgBoomerangItemNameFRATex "__OTR__textures/item_name_static/gBoomerangItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoomerangItemNameFRATex[] = dgBoomerangItemNameFRATex; -#else -static const char gBoomerangItemNameFRATex[] __attribute__((aligned (2))) = dgBoomerangItemNameFRATex; -#endif - -#define dgLensItemNameFRATex "__OTR__textures/item_name_static/gLensItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLensItemNameFRATex[] = dgLensItemNameFRATex; -#else -static const char gLensItemNameFRATex[] __attribute__((aligned (2))) = dgLensItemNameFRATex; -#endif - -#define dgMagicBeansItemNameFRATex "__OTR__textures/item_name_static/gMagicBeansItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicBeansItemNameFRATex[] = dgMagicBeansItemNameFRATex; -#else -static const char gMagicBeansItemNameFRATex[] __attribute__((aligned (2))) = dgMagicBeansItemNameFRATex; -#endif - -#define dgMegatonHammerItemNameFRATex "__OTR__textures/item_name_static/gMegatonHammerItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMegatonHammerItemNameFRATex[] = dgMegatonHammerItemNameFRATex; -#else -static const char gMegatonHammerItemNameFRATex[] __attribute__((aligned (2))) = dgMegatonHammerItemNameFRATex; -#endif - -#define dgLightArrowItemNameFRATex "__OTR__textures/item_name_static/gLightArrowItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightArrowItemNameFRATex[] = dgLightArrowItemNameFRATex; -#else -static const char gLightArrowItemNameFRATex[] __attribute__((aligned (2))) = dgLightArrowItemNameFRATex; -#endif - -#define dgNayrusLoveItemNameFRATex "__OTR__textures/item_name_static/gNayrusLoveItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNayrusLoveItemNameFRATex[] = dgNayrusLoveItemNameFRATex; -#else -static const char gNayrusLoveItemNameFRATex[] __attribute__((aligned (2))) = dgNayrusLoveItemNameFRATex; -#endif - -#define dgEmptyBottleItemNameFRATex "__OTR__textures/item_name_static/gEmptyBottleItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEmptyBottleItemNameFRATex[] = dgEmptyBottleItemNameFRATex; -#else -static const char gEmptyBottleItemNameFRATex[] __attribute__((aligned (2))) = dgEmptyBottleItemNameFRATex; -#endif - -#define dgRedPotionItemNameFRATex "__OTR__textures/item_name_static/gRedPotionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedPotionItemNameFRATex[] = dgRedPotionItemNameFRATex; -#else -static const char gRedPotionItemNameFRATex[] __attribute__((aligned (2))) = dgRedPotionItemNameFRATex; -#endif - -#define dgGreenPotionItemNameFRATex "__OTR__textures/item_name_static/gGreenPotionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreenPotionItemNameFRATex[] = dgGreenPotionItemNameFRATex; -#else -static const char gGreenPotionItemNameFRATex[] __attribute__((aligned (2))) = dgGreenPotionItemNameFRATex; -#endif - -#define dgBluePotionItemNameFRATex "__OTR__textures/item_name_static/gBluePotionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBluePotionItemNameFRATex[] = dgBluePotionItemNameFRATex; -#else -static const char gBluePotionItemNameFRATex[] __attribute__((aligned (2))) = dgBluePotionItemNameFRATex; -#endif - -#define dgBottledFairyItemNameFRATex "__OTR__textures/item_name_static/gBottledFairyItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottledFairyItemNameFRATex[] = dgBottledFairyItemNameFRATex; -#else -static const char gBottledFairyItemNameFRATex[] __attribute__((aligned (2))) = dgBottledFairyItemNameFRATex; -#endif - -#define dgFishItemNameFRATex "__OTR__textures/item_name_static/gFishItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishItemNameFRATex[] = dgFishItemNameFRATex; -#else -static const char gFishItemNameFRATex[] __attribute__((aligned (2))) = dgFishItemNameFRATex; -#endif - -#define dgFullMilkItemNameFRATex "__OTR__textures/item_name_static/gFullMilkItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFullMilkItemNameFRATex[] = dgFullMilkItemNameFRATex; -#else -static const char gFullMilkItemNameFRATex[] __attribute__((aligned (2))) = dgFullMilkItemNameFRATex; -#endif - -#define dgRutosLetterItemNameFRATex "__OTR__textures/item_name_static/gRutosLetterItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRutosLetterItemNameFRATex[] = dgRutosLetterItemNameFRATex; -#else -static const char gRutosLetterItemNameFRATex[] __attribute__((aligned (2))) = dgRutosLetterItemNameFRATex; -#endif - -#define dgBlueFireItemNameFRATex "__OTR__textures/item_name_static/gBlueFireItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlueFireItemNameFRATex[] = dgBlueFireItemNameFRATex; -#else -static const char gBlueFireItemNameFRATex[] __attribute__((aligned (2))) = dgBlueFireItemNameFRATex; -#endif - -#define dgBugItemNameFRATex "__OTR__textures/item_name_static/gBugItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBugItemNameFRATex[] = dgBugItemNameFRATex; -#else -static const char gBugItemNameFRATex[] __attribute__((aligned (2))) = dgBugItemNameFRATex; -#endif - -#define dgBigPoeItemNameFRATex "__OTR__textures/item_name_static/gBigPoeItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBigPoeItemNameFRATex[] = dgBigPoeItemNameFRATex; -#else -static const char gBigPoeItemNameFRATex[] __attribute__((aligned (2))) = dgBigPoeItemNameFRATex; -#endif - -#define dgHalfMilkItemNameFRATex "__OTR__textures/item_name_static/gHalfMilkItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHalfMilkItemNameFRATex[] = dgHalfMilkItemNameFRATex; -#else -static const char gHalfMilkItemNameFRATex[] __attribute__((aligned (2))) = dgHalfMilkItemNameFRATex; -#endif - -#define dgPoeItemNameFRATex "__OTR__textures/item_name_static/gPoeItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoeItemNameFRATex[] = dgPoeItemNameFRATex; -#else -static const char gPoeItemNameFRATex[] __attribute__((aligned (2))) = dgPoeItemNameFRATex; -#endif - -#define dgWeirdEggItemNameFRATex "__OTR__textures/item_name_static/gWeirdEggItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWeirdEggItemNameFRATex[] = dgWeirdEggItemNameFRATex; -#else -static const char gWeirdEggItemNameFRATex[] __attribute__((aligned (2))) = dgWeirdEggItemNameFRATex; -#endif - -#define dgCuccoItemNameFRATex "__OTR__textures/item_name_static/gCuccoItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCuccoItemNameFRATex[] = dgCuccoItemNameFRATex; -#else -static const char gCuccoItemNameFRATex[] __attribute__((aligned (2))) = dgCuccoItemNameFRATex; -#endif - -#define dgZeldasLetterItemNameFRATex "__OTR__textures/item_name_static/gZeldasLetterItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasLetterItemNameFRATex[] = dgZeldasLetterItemNameFRATex; -#else -static const char gZeldasLetterItemNameFRATex[] __attribute__((aligned (2))) = dgZeldasLetterItemNameFRATex; -#endif - -#define dgKeatonMaskItemNameFRATex "__OTR__textures/item_name_static/gKeatonMaskItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKeatonMaskItemNameFRATex[] = dgKeatonMaskItemNameFRATex; -#else -static const char gKeatonMaskItemNameFRATex[] __attribute__((aligned (2))) = dgKeatonMaskItemNameFRATex; -#endif - -#define dgSkullMaskItemNameFRATex "__OTR__textures/item_name_static/gSkullMaskItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSkullMaskItemNameFRATex[] = dgSkullMaskItemNameFRATex; -#else -static const char gSkullMaskItemNameFRATex[] __attribute__((aligned (2))) = dgSkullMaskItemNameFRATex; -#endif - -#define dgSpookyMaskItemNameFRATex "__OTR__textures/item_name_static/gSpookyMaskItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpookyMaskItemNameFRATex[] = dgSpookyMaskItemNameFRATex; -#else -static const char gSpookyMaskItemNameFRATex[] __attribute__((aligned (2))) = dgSpookyMaskItemNameFRATex; -#endif - -#define dgBunnyHoodItemNameFRATex "__OTR__textures/item_name_static/gBunnyHoodItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBunnyHoodItemNameFRATex[] = dgBunnyHoodItemNameFRATex; -#else -static const char gBunnyHoodItemNameFRATex[] __attribute__((aligned (2))) = dgBunnyHoodItemNameFRATex; -#endif - -#define dgGoronMaskItemNameFRATex "__OTR__textures/item_name_static/gGoronMaskItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronMaskItemNameFRATex[] = dgGoronMaskItemNameFRATex; -#else -static const char gGoronMaskItemNameFRATex[] __attribute__((aligned (2))) = dgGoronMaskItemNameFRATex; -#endif - -#define dgZoraMaskItemNameFRATex "__OTR__textures/item_name_static/gZoraMaskItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraMaskItemNameFRATex[] = dgZoraMaskItemNameFRATex; -#else -static const char gZoraMaskItemNameFRATex[] __attribute__((aligned (2))) = dgZoraMaskItemNameFRATex; -#endif - -#define dgGerudoMaskItemNameFRATex "__OTR__textures/item_name_static/gGerudoMaskItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoMaskItemNameFRATex[] = dgGerudoMaskItemNameFRATex; -#else -static const char gGerudoMaskItemNameFRATex[] __attribute__((aligned (2))) = dgGerudoMaskItemNameFRATex; -#endif - -#define dgMaskofTruthItemNameFRATex "__OTR__textures/item_name_static/gMaskofTruthItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMaskofTruthItemNameFRATex[] = dgMaskofTruthItemNameFRATex; -#else -static const char gMaskofTruthItemNameFRATex[] __attribute__((aligned (2))) = dgMaskofTruthItemNameFRATex; -#endif - -#define dgSOLDOUTItemNameFRATex "__OTR__textures/item_name_static/gSOLDOUTItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSOLDOUTItemNameFRATex[] = dgSOLDOUTItemNameFRATex; -#else -static const char gSOLDOUTItemNameFRATex[] __attribute__((aligned (2))) = dgSOLDOUTItemNameFRATex; -#endif - -#define dgPocketEggItemNameFRATex "__OTR__textures/item_name_static/gPocketEggItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPocketEggItemNameFRATex[] = dgPocketEggItemNameFRATex; -#else -static const char gPocketEggItemNameFRATex[] __attribute__((aligned (2))) = dgPocketEggItemNameFRATex; -#endif - -#define dgPocketCuccoItemNameFRATex "__OTR__textures/item_name_static/gPocketCuccoItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPocketCuccoItemNameFRATex[] = dgPocketCuccoItemNameFRATex; -#else -static const char gPocketCuccoItemNameFRATex[] __attribute__((aligned (2))) = dgPocketCuccoItemNameFRATex; -#endif - -#define dgCojiroItemNameFRATex "__OTR__textures/item_name_static/gCojiroItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCojiroItemNameFRATex[] = dgCojiroItemNameFRATex; -#else -static const char gCojiroItemNameFRATex[] __attribute__((aligned (2))) = dgCojiroItemNameFRATex; -#endif - -#define dgOddMushroomItemNameFRATex "__OTR__textures/item_name_static/gOddMushroomItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOddMushroomItemNameFRATex[] = dgOddMushroomItemNameFRATex; -#else -static const char gOddMushroomItemNameFRATex[] __attribute__((aligned (2))) = dgOddMushroomItemNameFRATex; -#endif - -#define dgOddPotionItemNameFRATex "__OTR__textures/item_name_static/gOddPotionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOddPotionItemNameFRATex[] = dgOddPotionItemNameFRATex; -#else -static const char gOddPotionItemNameFRATex[] __attribute__((aligned (2))) = dgOddPotionItemNameFRATex; -#endif - -#define dgPoachersSawItemNameFRATex "__OTR__textures/item_name_static/gPoachersSawItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPoachersSawItemNameFRATex[] = dgPoachersSawItemNameFRATex; -#else -static const char gPoachersSawItemNameFRATex[] __attribute__((aligned (2))) = dgPoachersSawItemNameFRATex; -#endif - -#define dgBrokenGoronsSwordItemNameFRATex "__OTR__textures/item_name_static/gBrokenGoronsSwordItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenGoronsSwordItemNameFRATex[] = dgBrokenGoronsSwordItemNameFRATex; -#else -static const char gBrokenGoronsSwordItemNameFRATex[] __attribute__((aligned (2))) = dgBrokenGoronsSwordItemNameFRATex; -#endif - -#define dgPrescriptionItemNameFRATex "__OTR__textures/item_name_static/gPrescriptionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPrescriptionItemNameFRATex[] = dgPrescriptionItemNameFRATex; -#else -static const char gPrescriptionItemNameFRATex[] __attribute__((aligned (2))) = dgPrescriptionItemNameFRATex; -#endif - -#define dgEyeBallFrogItemNameFRATex "__OTR__textures/item_name_static/gEyeBallFrogItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeBallFrogItemNameFRATex[] = dgEyeBallFrogItemNameFRATex; -#else -static const char gEyeBallFrogItemNameFRATex[] __attribute__((aligned (2))) = dgEyeBallFrogItemNameFRATex; -#endif - -#define dgEyeDropsItemNameFRATex "__OTR__textures/item_name_static/gEyeDropsItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEyeDropsItemNameFRATex[] = dgEyeDropsItemNameFRATex; -#else -static const char gEyeDropsItemNameFRATex[] __attribute__((aligned (2))) = dgEyeDropsItemNameFRATex; -#endif - -#define dgClaimCheckItemNameFRATex "__OTR__textures/item_name_static/gClaimCheckItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gClaimCheckItemNameFRATex[] = dgClaimCheckItemNameFRATex; -#else -static const char gClaimCheckItemNameFRATex[] __attribute__((aligned (2))) = dgClaimCheckItemNameFRATex; -#endif - -#define dgUnusedWindMedallionItemName3JPNTex "__OTR__textures/item_name_static/gUnusedWindMedallionItemName3JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedWindMedallionItemName3JPNTex[] = dgUnusedWindMedallionItemName3JPNTex; -#else -static const char gUnusedWindMedallionItemName3JPNTex[] __attribute__((aligned (2))) = dgUnusedWindMedallionItemName3JPNTex; -#endif - -#define dgUnusedFireMedallionItemName3JPNTex "__OTR__textures/item_name_static/gUnusedFireMedallionItemName3JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedFireMedallionItemName3JPNTex[] = dgUnusedFireMedallionItemName3JPNTex; -#else -static const char gUnusedFireMedallionItemName3JPNTex[] __attribute__((aligned (2))) = dgUnusedFireMedallionItemName3JPNTex; -#endif - -#define dgUnusedIceMedallionItemName3JPNTex "__OTR__textures/item_name_static/gUnusedIceMedallionItemName3JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedIceMedallionItemName3JPNTex[] = dgUnusedIceMedallionItemName3JPNTex; -#else -static const char gUnusedIceMedallionItemName3JPNTex[] __attribute__((aligned (2))) = dgUnusedIceMedallionItemName3JPNTex; -#endif - -#define dgKokiriSwordItemNameFRATex "__OTR__textures/item_name_static/gKokiriSwordItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriSwordItemNameFRATex[] = dgKokiriSwordItemNameFRATex; -#else -static const char gKokiriSwordItemNameFRATex[] __attribute__((aligned (2))) = dgKokiriSwordItemNameFRATex; -#endif - -#define dgMasterSwordItemNameFRATex "__OTR__textures/item_name_static/gMasterSwordItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMasterSwordItemNameFRATex[] = dgMasterSwordItemNameFRATex; -#else -static const char gMasterSwordItemNameFRATex[] __attribute__((aligned (2))) = dgMasterSwordItemNameFRATex; -#endif - -#define dgGiantsKnifeItemNameFRATex "__OTR__textures/item_name_static/gGiantsKnifeItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGiantsKnifeItemNameFRATex[] = dgGiantsKnifeItemNameFRATex; -#else -static const char gGiantsKnifeItemNameFRATex[] __attribute__((aligned (2))) = dgGiantsKnifeItemNameFRATex; -#endif - -#define dgDekuShieldItemNameFRATex "__OTR__textures/item_name_static/gDekuShieldItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuShieldItemNameFRATex[] = dgDekuShieldItemNameFRATex; -#else -static const char gDekuShieldItemNameFRATex[] __attribute__((aligned (2))) = dgDekuShieldItemNameFRATex; -#endif - -#define dgHylianShieldItemNameFRATex "__OTR__textures/item_name_static/gHylianShieldItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHylianShieldItemNameFRATex[] = dgHylianShieldItemNameFRATex; -#else -static const char gHylianShieldItemNameFRATex[] __attribute__((aligned (2))) = dgHylianShieldItemNameFRATex; -#endif - -#define dgMirrorShieldItemNameFRATex "__OTR__textures/item_name_static/gMirrorShieldItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMirrorShieldItemNameFRATex[] = dgMirrorShieldItemNameFRATex; -#else -static const char gMirrorShieldItemNameFRATex[] __attribute__((aligned (2))) = dgMirrorShieldItemNameFRATex; -#endif - -#define dgKokiriTunicItemNameFRATex "__OTR__textures/item_name_static/gKokiriTunicItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriTunicItemNameFRATex[] = dgKokiriTunicItemNameFRATex; -#else -static const char gKokiriTunicItemNameFRATex[] __attribute__((aligned (2))) = dgKokiriTunicItemNameFRATex; -#endif - -#define dgGoronTunicItemNameFRATex "__OTR__textures/item_name_static/gGoronTunicItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronTunicItemNameFRATex[] = dgGoronTunicItemNameFRATex; -#else -static const char gGoronTunicItemNameFRATex[] __attribute__((aligned (2))) = dgGoronTunicItemNameFRATex; -#endif - -#define dgZoraTunicItemNameFRATex "__OTR__textures/item_name_static/gZoraTunicItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraTunicItemNameFRATex[] = dgZoraTunicItemNameFRATex; -#else -static const char gZoraTunicItemNameFRATex[] __attribute__((aligned (2))) = dgZoraTunicItemNameFRATex; -#endif - -#define dgKokiriBootsItemNameFRATex "__OTR__textures/item_name_static/gKokiriBootsItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriBootsItemNameFRATex[] = dgKokiriBootsItemNameFRATex; -#else -static const char gKokiriBootsItemNameFRATex[] __attribute__((aligned (2))) = dgKokiriBootsItemNameFRATex; -#endif - -#define dgIronBootsItemNameFRATex "__OTR__textures/item_name_static/gIronBootsItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIronBootsItemNameFRATex[] = dgIronBootsItemNameFRATex; -#else -static const char gIronBootsItemNameFRATex[] __attribute__((aligned (2))) = dgIronBootsItemNameFRATex; -#endif - -#define dgHoverBootsItemNameFRATex "__OTR__textures/item_name_static/gHoverBootsItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoverBootsItemNameFRATex[] = dgHoverBootsItemNameFRATex; -#else -static const char gHoverBootsItemNameFRATex[] __attribute__((aligned (2))) = dgHoverBootsItemNameFRATex; -#endif - -#define dgBulletBag30ItemNameFRATex "__OTR__textures/item_name_static/gBulletBag30ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag30ItemNameFRATex[] = dgBulletBag30ItemNameFRATex; -#else -static const char gBulletBag30ItemNameFRATex[] __attribute__((aligned (2))) = dgBulletBag30ItemNameFRATex; -#endif - -#define dgBulletBag40ItemNameFRATex "__OTR__textures/item_name_static/gBulletBag40ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag40ItemNameFRATex[] = dgBulletBag40ItemNameFRATex; -#else -static const char gBulletBag40ItemNameFRATex[] __attribute__((aligned (2))) = dgBulletBag40ItemNameFRATex; -#endif - -#define dgBulletBag50ItemNameFRATex "__OTR__textures/item_name_static/gBulletBag50ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBulletBag50ItemNameFRATex[] = dgBulletBag50ItemNameFRATex; -#else -static const char gBulletBag50ItemNameFRATex[] __attribute__((aligned (2))) = dgBulletBag50ItemNameFRATex; -#endif - -#define dgQuiver30ItemNameFRATex "__OTR__textures/item_name_static/gQuiver30ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver30ItemNameFRATex[] = dgQuiver30ItemNameFRATex; -#else -static const char gQuiver30ItemNameFRATex[] __attribute__((aligned (2))) = dgQuiver30ItemNameFRATex; -#endif - -#define dgQuiver40ItemNameFRATex "__OTR__textures/item_name_static/gQuiver40ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver40ItemNameFRATex[] = dgQuiver40ItemNameFRATex; -#else -static const char gQuiver40ItemNameFRATex[] __attribute__((aligned (2))) = dgQuiver40ItemNameFRATex; -#endif - -#define dgQuiver50ItemNameFRATex "__OTR__textures/item_name_static/gQuiver50ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuiver50ItemNameFRATex[] = dgQuiver50ItemNameFRATex; -#else -static const char gQuiver50ItemNameFRATex[] __attribute__((aligned (2))) = dgQuiver50ItemNameFRATex; -#endif - -#define dgBombBag20ItemNameFRATex "__OTR__textures/item_name_static/gBombBag20ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag20ItemNameFRATex[] = dgBombBag20ItemNameFRATex; -#else -static const char gBombBag20ItemNameFRATex[] __attribute__((aligned (2))) = dgBombBag20ItemNameFRATex; -#endif - -#define dgBombBag30ItemNameFRATex "__OTR__textures/item_name_static/gBombBag30ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag30ItemNameFRATex[] = dgBombBag30ItemNameFRATex; -#else -static const char gBombBag30ItemNameFRATex[] __attribute__((aligned (2))) = dgBombBag30ItemNameFRATex; -#endif - -#define dgBombBag40ItemNameFRATex "__OTR__textures/item_name_static/gBombBag40ItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombBag40ItemNameFRATex[] = dgBombBag40ItemNameFRATex; -#else -static const char gBombBag40ItemNameFRATex[] __attribute__((aligned (2))) = dgBombBag40ItemNameFRATex; -#endif - -#define dgGoronsBraceletItemNameFRATex "__OTR__textures/item_name_static/gGoronsBraceletItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronsBraceletItemNameFRATex[] = dgGoronsBraceletItemNameFRATex; -#else -static const char gGoronsBraceletItemNameFRATex[] __attribute__((aligned (2))) = dgGoronsBraceletItemNameFRATex; -#endif - -#define dgSilverGauntletsItemNameFRATex "__OTR__textures/item_name_static/gSilverGauntletsItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverGauntletsItemNameFRATex[] = dgSilverGauntletsItemNameFRATex; -#else -static const char gSilverGauntletsItemNameFRATex[] __attribute__((aligned (2))) = dgSilverGauntletsItemNameFRATex; -#endif - -#define dgGoldenGauntletsItemNameFRATex "__OTR__textures/item_name_static/gGoldenGauntletsItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenGauntletsItemNameFRATex[] = dgGoldenGauntletsItemNameFRATex; -#else -static const char gGoldenGauntletsItemNameFRATex[] __attribute__((aligned (2))) = dgGoldenGauntletsItemNameFRATex; -#endif - -#define dgSilverScaleItemNameFRATex "__OTR__textures/item_name_static/gSilverScaleItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSilverScaleItemNameFRATex[] = dgSilverScaleItemNameFRATex; -#else -static const char gSilverScaleItemNameFRATex[] __attribute__((aligned (2))) = dgSilverScaleItemNameFRATex; -#endif - -#define dgGoldenScaleItemNameFRATex "__OTR__textures/item_name_static/gGoldenScaleItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldenScaleItemNameFRATex[] = dgGoldenScaleItemNameFRATex; -#else -static const char gGoldenScaleItemNameFRATex[] __attribute__((aligned (2))) = dgGoldenScaleItemNameFRATex; -#endif - -#define dgBrokenGiantsKnifeItemNameFRATex "__OTR__textures/item_name_static/gBrokenGiantsKnifeItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBrokenGiantsKnifeItemNameFRATex[] = dgBrokenGiantsKnifeItemNameFRATex; -#else -static const char gBrokenGiantsKnifeItemNameFRATex[] __attribute__((aligned (2))) = dgBrokenGiantsKnifeItemNameFRATex; -#endif - -#define dgUnusedBossKeyItemName15JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName15JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName15JPNTex[] = dgUnusedBossKeyItemName15JPNTex; -#else -static const char gUnusedBossKeyItemName15JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName15JPNTex; -#endif - -#define dgUnusedBossKeyItemName16JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName16JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName16JPNTex[] = dgUnusedBossKeyItemName16JPNTex; -#else -static const char gUnusedBossKeyItemName16JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName16JPNTex; -#endif - -#define dgUnusedBossKeyItemName17JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName17JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName17JPNTex[] = dgUnusedBossKeyItemName17JPNTex; -#else -static const char gUnusedBossKeyItemName17JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName17JPNTex; -#endif - -#define dgUnusedBossKeyItemName18JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName18JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName18JPNTex[] = dgUnusedBossKeyItemName18JPNTex; -#else -static const char gUnusedBossKeyItemName18JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName18JPNTex; -#endif - -#define dgMinuetOfForestItemNameFRATex "__OTR__textures/item_name_static/gMinuetOfForestItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMinuetOfForestItemNameFRATex[] = dgMinuetOfForestItemNameFRATex; -#else -static const char gMinuetOfForestItemNameFRATex[] __attribute__((aligned (2))) = dgMinuetOfForestItemNameFRATex; -#endif - -#define dgBoleroOfFireItemNameFRATex "__OTR__textures/item_name_static/gBoleroOfFireItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBoleroOfFireItemNameFRATex[] = dgBoleroOfFireItemNameFRATex; -#else -static const char gBoleroOfFireItemNameFRATex[] __attribute__((aligned (2))) = dgBoleroOfFireItemNameFRATex; -#endif - -#define dgSerenadeOfWaterItemNameFRATex "__OTR__textures/item_name_static/gSerenadeOfWaterItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSerenadeOfWaterItemNameFRATex[] = dgSerenadeOfWaterItemNameFRATex; -#else -static const char gSerenadeOfWaterItemNameFRATex[] __attribute__((aligned (2))) = dgSerenadeOfWaterItemNameFRATex; -#endif - -#define dgRequiemOfSpiritItemNameFRATex "__OTR__textures/item_name_static/gRequiemOfSpiritItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRequiemOfSpiritItemNameFRATex[] = dgRequiemOfSpiritItemNameFRATex; -#else -static const char gRequiemOfSpiritItemNameFRATex[] __attribute__((aligned (2))) = dgRequiemOfSpiritItemNameFRATex; -#endif - -#define dgNocturneOfShadowItemNameFRATex "__OTR__textures/item_name_static/gNocturneOfShadowItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNocturneOfShadowItemNameFRATex[] = dgNocturneOfShadowItemNameFRATex; -#else -static const char gNocturneOfShadowItemNameFRATex[] __attribute__((aligned (2))) = dgNocturneOfShadowItemNameFRATex; -#endif - -#define dgPreludeOfLightItemNameFRATex "__OTR__textures/item_name_static/gPreludeOfLightItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPreludeOfLightItemNameFRATex[] = dgPreludeOfLightItemNameFRATex; -#else -static const char gPreludeOfLightItemNameFRATex[] __attribute__((aligned (2))) = dgPreludeOfLightItemNameFRATex; -#endif - -#define dgZeldasLullabyItemNameFRATex "__OTR__textures/item_name_static/gZeldasLullabyItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZeldasLullabyItemNameFRATex[] = dgZeldasLullabyItemNameFRATex; -#else -static const char gZeldasLullabyItemNameFRATex[] __attribute__((aligned (2))) = dgZeldasLullabyItemNameFRATex; -#endif - -#define dgEponasSongItemNameFRATex "__OTR__textures/item_name_static/gEponasSongItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEponasSongItemNameFRATex[] = dgEponasSongItemNameFRATex; -#else -static const char gEponasSongItemNameFRATex[] __attribute__((aligned (2))) = dgEponasSongItemNameFRATex; -#endif - -#define dgSariasSongItemNameFRATex "__OTR__textures/item_name_static/gSariasSongItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSariasSongItemNameFRATex[] = dgSariasSongItemNameFRATex; -#else -static const char gSariasSongItemNameFRATex[] __attribute__((aligned (2))) = dgSariasSongItemNameFRATex; -#endif - -#define dgSunsSongItemNameFRATex "__OTR__textures/item_name_static/gSunsSongItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsSongItemNameFRATex[] = dgSunsSongItemNameFRATex; -#else -static const char gSunsSongItemNameFRATex[] __attribute__((aligned (2))) = dgSunsSongItemNameFRATex; -#endif - -#define dgSongOfTimeItemNameFRATex "__OTR__textures/item_name_static/gSongOfTimeItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfTimeItemNameFRATex[] = dgSongOfTimeItemNameFRATex; -#else -static const char gSongOfTimeItemNameFRATex[] __attribute__((aligned (2))) = dgSongOfTimeItemNameFRATex; -#endif - -#define dgSongOfStormsItemNameFRATex "__OTR__textures/item_name_static/gSongOfStormsItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSongOfStormsItemNameFRATex[] = dgSongOfStormsItemNameFRATex; -#else -static const char gSongOfStormsItemNameFRATex[] __attribute__((aligned (2))) = dgSongOfStormsItemNameFRATex; -#endif - -#define dgForestMedallionItemNameFRATex "__OTR__textures/item_name_static/gForestMedallionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestMedallionItemNameFRATex[] = dgForestMedallionItemNameFRATex; -#else -static const char gForestMedallionItemNameFRATex[] __attribute__((aligned (2))) = dgForestMedallionItemNameFRATex; -#endif - -#define dgFireMedallionItemNameFRATex "__OTR__textures/item_name_static/gFireMedallionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireMedallionItemNameFRATex[] = dgFireMedallionItemNameFRATex; -#else -static const char gFireMedallionItemNameFRATex[] __attribute__((aligned (2))) = dgFireMedallionItemNameFRATex; -#endif - -#define dgWaterMedallionItemNameFRATex "__OTR__textures/item_name_static/gWaterMedallionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterMedallionItemNameFRATex[] = dgWaterMedallionItemNameFRATex; -#else -static const char gWaterMedallionItemNameFRATex[] __attribute__((aligned (2))) = dgWaterMedallionItemNameFRATex; -#endif - -#define dgSpiritMedallionItemNameFRATex "__OTR__textures/item_name_static/gSpiritMedallionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritMedallionItemNameFRATex[] = dgSpiritMedallionItemNameFRATex; -#else -static const char gSpiritMedallionItemNameFRATex[] __attribute__((aligned (2))) = dgSpiritMedallionItemNameFRATex; -#endif - -#define dgShadowMedallionItemNameFRATex "__OTR__textures/item_name_static/gShadowMedallionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowMedallionItemNameFRATex[] = dgShadowMedallionItemNameFRATex; -#else -static const char gShadowMedallionItemNameFRATex[] __attribute__((aligned (2))) = dgShadowMedallionItemNameFRATex; -#endif - -#define dgLightMedallionItemNameFRATex "__OTR__textures/item_name_static/gLightMedallionItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLightMedallionItemNameFRATex[] = dgLightMedallionItemNameFRATex; -#else -static const char gLightMedallionItemNameFRATex[] __attribute__((aligned (2))) = dgLightMedallionItemNameFRATex; -#endif - -#define dgKokiriEmeraldItemNameFRATex "__OTR__textures/item_name_static/gKokiriEmeraldItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriEmeraldItemNameFRATex[] = dgKokiriEmeraldItemNameFRATex; -#else -static const char gKokiriEmeraldItemNameFRATex[] __attribute__((aligned (2))) = dgKokiriEmeraldItemNameFRATex; -#endif - -#define dgGoronsRubyItemNameFRATex "__OTR__textures/item_name_static/gGoronsRubyItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronsRubyItemNameFRATex[] = dgGoronsRubyItemNameFRATex; -#else -static const char gGoronsRubyItemNameFRATex[] __attribute__((aligned (2))) = dgGoronsRubyItemNameFRATex; -#endif - -#define dgZorasSapphireItemNameFRATex "__OTR__textures/item_name_static/gZorasSapphireItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasSapphireItemNameFRATex[] = dgZorasSapphireItemNameFRATex; -#else -static const char gZorasSapphireItemNameFRATex[] __attribute__((aligned (2))) = dgZorasSapphireItemNameFRATex; -#endif - -#define dgStoneofAgonyItemNameFRATex "__OTR__textures/item_name_static/gStoneofAgonyItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStoneofAgonyItemNameFRATex[] = dgStoneofAgonyItemNameFRATex; -#else -static const char gStoneofAgonyItemNameFRATex[] __attribute__((aligned (2))) = dgStoneofAgonyItemNameFRATex; -#endif - -#define dgGerudosCardItemNameFRATex "__OTR__textures/item_name_static/gGerudosCardItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosCardItemNameFRATex[] = dgGerudosCardItemNameFRATex; -#else -static const char gGerudosCardItemNameFRATex[] __attribute__((aligned (2))) = dgGerudosCardItemNameFRATex; -#endif - -#define dgGoldSkulltulaItemNameFRATex "__OTR__textures/item_name_static/gGoldSkulltulaItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoldSkulltulaItemNameFRATex[] = dgGoldSkulltulaItemNameFRATex; -#else -static const char gGoldSkulltulaItemNameFRATex[] __attribute__((aligned (2))) = dgGoldSkulltulaItemNameFRATex; -#endif - -#define dgHeartContainerItemNameFRATex "__OTR__textures/item_name_static/gHeartContainerItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartContainerItemNameFRATex[] = dgHeartContainerItemNameFRATex; -#else -static const char gHeartContainerItemNameFRATex[] __attribute__((aligned (2))) = dgHeartContainerItemNameFRATex; -#endif - -#define dgUnusedPieceOfHeartItemName3JPNTex "__OTR__textures/item_name_static/gUnusedPieceOfHeartItemName3JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedPieceOfHeartItemName3JPNTex[] = dgUnusedPieceOfHeartItemName3JPNTex; -#else -static const char gUnusedPieceOfHeartItemName3JPNTex[] __attribute__((aligned (2))) = dgUnusedPieceOfHeartItemName3JPNTex; -#endif - -#define dgBossKeyItemNameFRATex "__OTR__textures/item_name_static/gBossKeyItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBossKeyItemNameFRATex[] = dgBossKeyItemNameFRATex; -#else -static const char gBossKeyItemNameFRATex[] __attribute__((aligned (2))) = dgBossKeyItemNameFRATex; -#endif - -#define dgCompassItemNameFRATex "__OTR__textures/item_name_static/gCompassItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCompassItemNameFRATex[] = dgCompassItemNameFRATex; -#else -static const char gCompassItemNameFRATex[] __attribute__((aligned (2))) = dgCompassItemNameFRATex; -#endif - -#define dgDungeonMapItemNameFRATex "__OTR__textures/item_name_static/gDungeonMapItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDungeonMapItemNameFRATex[] = dgDungeonMapItemNameFRATex; -#else -static const char gDungeonMapItemNameFRATex[] __attribute__((aligned (2))) = dgDungeonMapItemNameFRATex; -#endif - -#define dgUnusedBossKeyItemName19JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName19JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName19JPNTex[] = dgUnusedBossKeyItemName19JPNTex; -#else -static const char gUnusedBossKeyItemName19JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName19JPNTex; -#endif - -#define dgUnusedBossKeyItemName20JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName20JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName20JPNTex[] = dgUnusedBossKeyItemName20JPNTex; -#else -static const char gUnusedBossKeyItemName20JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName20JPNTex; -#endif - -#define dgUnusedBossKeyItemName21JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName21JPNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedBossKeyItemName21JPNTex[] = dgUnusedBossKeyItemName21JPNTex; -#else -static const char gUnusedBossKeyItemName21JPNTex[] __attribute__((aligned (2))) = dgUnusedBossKeyItemName21JPNTex; -#endif - -#define dgBiggoronsSwordItemNameFRATex "__OTR__textures/item_name_static/gBiggoronsSwordItemNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBiggoronsSwordItemNameFRATex[] = dgBiggoronsSwordItemNameFRATex; -#else -static const char gBiggoronsSwordItemNameFRATex[] __attribute__((aligned (2))) = dgBiggoronsSwordItemNameFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgDekuStickItemNameENGTex "__OTR__textures/item_name_static/gDekuStickItemNameENGTex" +static const ALIGN_ASSET(2) char gDekuStickItemNameENGTex[] = dgDekuStickItemNameENGTex; + +#define dgDekuNutItemNameENGTex "__OTR__textures/item_name_static/gDekuNutItemNameENGTex" +static const ALIGN_ASSET(2) char gDekuNutItemNameENGTex[] = dgDekuNutItemNameENGTex; + +#define dgBombItemNameENGTex "__OTR__textures/item_name_static/gBombItemNameENGTex" +static const ALIGN_ASSET(2) char gBombItemNameENGTex[] = dgBombItemNameENGTex; + +#define dgFairyBowItemNameENGTex "__OTR__textures/item_name_static/gFairyBowItemNameENGTex" +static const ALIGN_ASSET(2) char gFairyBowItemNameENGTex[] = dgFairyBowItemNameENGTex; + +#define dgFireArrowItemNameENGTex "__OTR__textures/item_name_static/gFireArrowItemNameENGTex" +static const ALIGN_ASSET(2) char gFireArrowItemNameENGTex[] = dgFireArrowItemNameENGTex; + +#define dgDinsFireItemNameENGTex "__OTR__textures/item_name_static/gDinsFireItemNameENGTex" +static const ALIGN_ASSET(2) char gDinsFireItemNameENGTex[] = dgDinsFireItemNameENGTex; + +#define dgFairySlingshotItemNameENGTex "__OTR__textures/item_name_static/gFairySlingshotItemNameENGTex" +static const ALIGN_ASSET(2) char gFairySlingshotItemNameENGTex[] = dgFairySlingshotItemNameENGTex; + +#define dgFairyOcarinaItemNameENGTex "__OTR__textures/item_name_static/gFairyOcarinaItemNameENGTex" +static const ALIGN_ASSET(2) char gFairyOcarinaItemNameENGTex[] = dgFairyOcarinaItemNameENGTex; + +#define dgOcarinaOfTimeItemNameENGTex "__OTR__textures/item_name_static/gOcarinaOfTimeItemNameENGTex" +static const ALIGN_ASSET(2) char gOcarinaOfTimeItemNameENGTex[] = dgOcarinaOfTimeItemNameENGTex; + +#define dgBombchuItemNameENGTex "__OTR__textures/item_name_static/gBombchuItemNameENGTex" +static const ALIGN_ASSET(2) char gBombchuItemNameENGTex[] = dgBombchuItemNameENGTex; + +#define dgHookshotItemNameENGTex "__OTR__textures/item_name_static/gHookshotItemNameENGTex" +static const ALIGN_ASSET(2) char gHookshotItemNameENGTex[] = dgHookshotItemNameENGTex; + +#define dgLongshotItemNameENGTex "__OTR__textures/item_name_static/gLongshotItemNameENGTex" +static const ALIGN_ASSET(2) char gLongshotItemNameENGTex[] = dgLongshotItemNameENGTex; + +#define dgIceArrowItemNameENGTex "__OTR__textures/item_name_static/gIceArrowItemNameENGTex" +static const ALIGN_ASSET(2) char gIceArrowItemNameENGTex[] = dgIceArrowItemNameENGTex; + +#define dgFaroresWindItemNameENGTex "__OTR__textures/item_name_static/gFaroresWindItemNameENGTex" +static const ALIGN_ASSET(2) char gFaroresWindItemNameENGTex[] = dgFaroresWindItemNameENGTex; + +#define dgBoomerangItemNameENGTex "__OTR__textures/item_name_static/gBoomerangItemNameENGTex" +static const ALIGN_ASSET(2) char gBoomerangItemNameENGTex[] = dgBoomerangItemNameENGTex; + +#define dgLensItemNameENGTex "__OTR__textures/item_name_static/gLensItemNameENGTex" +static const ALIGN_ASSET(2) char gLensItemNameENGTex[] = dgLensItemNameENGTex; + +#define dgMagicBeansItemNameENGTex "__OTR__textures/item_name_static/gMagicBeansItemNameENGTex" +static const ALIGN_ASSET(2) char gMagicBeansItemNameENGTex[] = dgMagicBeansItemNameENGTex; + +#define dgMegatonHammerItemNameENGTex "__OTR__textures/item_name_static/gMegatonHammerItemNameENGTex" +static const ALIGN_ASSET(2) char gMegatonHammerItemNameENGTex[] = dgMegatonHammerItemNameENGTex; + +#define dgLightArrowItemNameENGTex "__OTR__textures/item_name_static/gLightArrowItemNameENGTex" +static const ALIGN_ASSET(2) char gLightArrowItemNameENGTex[] = dgLightArrowItemNameENGTex; + +#define dgNayrusLoveItemNameENGTex "__OTR__textures/item_name_static/gNayrusLoveItemNameENGTex" +static const ALIGN_ASSET(2) char gNayrusLoveItemNameENGTex[] = dgNayrusLoveItemNameENGTex; + +#define dgEmptyBottleItemNameENGTex "__OTR__textures/item_name_static/gEmptyBottleItemNameENGTex" +static const ALIGN_ASSET(2) char gEmptyBottleItemNameENGTex[] = dgEmptyBottleItemNameENGTex; + +#define dgRedPotionItemNameENGTex "__OTR__textures/item_name_static/gRedPotionItemNameENGTex" +static const ALIGN_ASSET(2) char gRedPotionItemNameENGTex[] = dgRedPotionItemNameENGTex; + +#define dgGreenPotionItemNameENGTex "__OTR__textures/item_name_static/gGreenPotionItemNameENGTex" +static const ALIGN_ASSET(2) char gGreenPotionItemNameENGTex[] = dgGreenPotionItemNameENGTex; + +#define dgBluePotionItemNameENGTex "__OTR__textures/item_name_static/gBluePotionItemNameENGTex" +static const ALIGN_ASSET(2) char gBluePotionItemNameENGTex[] = dgBluePotionItemNameENGTex; + +#define dgBottledFairyItemNameENGTex "__OTR__textures/item_name_static/gBottledFairyItemNameENGTex" +static const ALIGN_ASSET(2) char gBottledFairyItemNameENGTex[] = dgBottledFairyItemNameENGTex; + +#define dgFishItemNameENGTex "__OTR__textures/item_name_static/gFishItemNameENGTex" +static const ALIGN_ASSET(2) char gFishItemNameENGTex[] = dgFishItemNameENGTex; + +#define dgFullMilkItemNameENGTex "__OTR__textures/item_name_static/gFullMilkItemNameENGTex" +static const ALIGN_ASSET(2) char gFullMilkItemNameENGTex[] = dgFullMilkItemNameENGTex; + +#define dgRutosLetterItemNameENGTex "__OTR__textures/item_name_static/gRutosLetterItemNameENGTex" +static const ALIGN_ASSET(2) char gRutosLetterItemNameENGTex[] = dgRutosLetterItemNameENGTex; + +#define dgBlueFireItemNameENGTex "__OTR__textures/item_name_static/gBlueFireItemNameENGTex" +static const ALIGN_ASSET(2) char gBlueFireItemNameENGTex[] = dgBlueFireItemNameENGTex; + +#define dgBugItemNameENGTex "__OTR__textures/item_name_static/gBugItemNameENGTex" +static const ALIGN_ASSET(2) char gBugItemNameENGTex[] = dgBugItemNameENGTex; + +#define dgBigPoeItemNameENGTex "__OTR__textures/item_name_static/gBigPoeItemNameENGTex" +static const ALIGN_ASSET(2) char gBigPoeItemNameENGTex[] = dgBigPoeItemNameENGTex; + +#define dgHalfMilkItemNameENGTex "__OTR__textures/item_name_static/gHalfMilkItemNameENGTex" +static const ALIGN_ASSET(2) char gHalfMilkItemNameENGTex[] = dgHalfMilkItemNameENGTex; + +#define dgPoeItemNameENGTex "__OTR__textures/item_name_static/gPoeItemNameENGTex" +static const ALIGN_ASSET(2) char gPoeItemNameENGTex[] = dgPoeItemNameENGTex; + +#define dgWeirdEggItemNameENGTex "__OTR__textures/item_name_static/gWeirdEggItemNameENGTex" +static const ALIGN_ASSET(2) char gWeirdEggItemNameENGTex[] = dgWeirdEggItemNameENGTex; + +#define dgCuccoItemNameENGTex "__OTR__textures/item_name_static/gCuccoItemNameENGTex" +static const ALIGN_ASSET(2) char gCuccoItemNameENGTex[] = dgCuccoItemNameENGTex; + +#define dgZeldasLetterItemNameENGTex "__OTR__textures/item_name_static/gZeldasLetterItemNameENGTex" +static const ALIGN_ASSET(2) char gZeldasLetterItemNameENGTex[] = dgZeldasLetterItemNameENGTex; + +#define dgKeatonMaskItemNameENGTex "__OTR__textures/item_name_static/gKeatonMaskItemNameENGTex" +static const ALIGN_ASSET(2) char gKeatonMaskItemNameENGTex[] = dgKeatonMaskItemNameENGTex; + +#define dgSkullMaskItemNameENGTex "__OTR__textures/item_name_static/gSkullMaskItemNameENGTex" +static const ALIGN_ASSET(2) char gSkullMaskItemNameENGTex[] = dgSkullMaskItemNameENGTex; + +#define dgSpookyMaskItemNameENGTex "__OTR__textures/item_name_static/gSpookyMaskItemNameENGTex" +static const ALIGN_ASSET(2) char gSpookyMaskItemNameENGTex[] = dgSpookyMaskItemNameENGTex; + +#define dgBunnyHoodItemNameENGTex "__OTR__textures/item_name_static/gBunnyHoodItemNameENGTex" +static const ALIGN_ASSET(2) char gBunnyHoodItemNameENGTex[] = dgBunnyHoodItemNameENGTex; + +#define dgGoronMaskItemNameENGTex "__OTR__textures/item_name_static/gGoronMaskItemNameENGTex" +static const ALIGN_ASSET(2) char gGoronMaskItemNameENGTex[] = dgGoronMaskItemNameENGTex; + +#define dgZoraMaskItemNameENGTex "__OTR__textures/item_name_static/gZoraMaskItemNameENGTex" +static const ALIGN_ASSET(2) char gZoraMaskItemNameENGTex[] = dgZoraMaskItemNameENGTex; + +#define dgGerudoMaskItemNameENGTex "__OTR__textures/item_name_static/gGerudoMaskItemNameENGTex" +static const ALIGN_ASSET(2) char gGerudoMaskItemNameENGTex[] = dgGerudoMaskItemNameENGTex; + +#define dgMaskofTruthItemNameENGTex "__OTR__textures/item_name_static/gMaskofTruthItemNameENGTex" +static const ALIGN_ASSET(2) char gMaskofTruthItemNameENGTex[] = dgMaskofTruthItemNameENGTex; + +#define dgSOLDOUTItemNameENGTex "__OTR__textures/item_name_static/gSOLDOUTItemNameENGTex" +static const ALIGN_ASSET(2) char gSOLDOUTItemNameENGTex[] = dgSOLDOUTItemNameENGTex; + +#define dgPocketEggItemNameENGTex "__OTR__textures/item_name_static/gPocketEggItemNameENGTex" +static const ALIGN_ASSET(2) char gPocketEggItemNameENGTex[] = dgPocketEggItemNameENGTex; + +#define dgPocketCuccoItemNameENGTex "__OTR__textures/item_name_static/gPocketCuccoItemNameENGTex" +static const ALIGN_ASSET(2) char gPocketCuccoItemNameENGTex[] = dgPocketCuccoItemNameENGTex; + +#define dgCojiroItemNameENGTex "__OTR__textures/item_name_static/gCojiroItemNameENGTex" +static const ALIGN_ASSET(2) char gCojiroItemNameENGTex[] = dgCojiroItemNameENGTex; + +#define dgOddMushroomItemNameENGTex "__OTR__textures/item_name_static/gOddMushroomItemNameENGTex" +static const ALIGN_ASSET(2) char gOddMushroomItemNameENGTex[] = dgOddMushroomItemNameENGTex; + +#define dgOddPotionItemNameENGTex "__OTR__textures/item_name_static/gOddPotionItemNameENGTex" +static const ALIGN_ASSET(2) char gOddPotionItemNameENGTex[] = dgOddPotionItemNameENGTex; + +#define dgPoachersSawItemNameENGTex "__OTR__textures/item_name_static/gPoachersSawItemNameENGTex" +static const ALIGN_ASSET(2) char gPoachersSawItemNameENGTex[] = dgPoachersSawItemNameENGTex; + +#define dgBrokenGoronsSwordItemNameENGTex "__OTR__textures/item_name_static/gBrokenGoronsSwordItemNameENGTex" +static const ALIGN_ASSET(2) char gBrokenGoronsSwordItemNameENGTex[] = dgBrokenGoronsSwordItemNameENGTex; + +#define dgPrescriptionItemNameENGTex "__OTR__textures/item_name_static/gPrescriptionItemNameENGTex" +static const ALIGN_ASSET(2) char gPrescriptionItemNameENGTex[] = dgPrescriptionItemNameENGTex; + +#define dgEyeBallFrogItemNameENGTex "__OTR__textures/item_name_static/gEyeBallFrogItemNameENGTex" +static const ALIGN_ASSET(2) char gEyeBallFrogItemNameENGTex[] = dgEyeBallFrogItemNameENGTex; + +#define dgEyeDropsItemNameENGTex "__OTR__textures/item_name_static/gEyeDropsItemNameENGTex" +static const ALIGN_ASSET(2) char gEyeDropsItemNameENGTex[] = dgEyeDropsItemNameENGTex; + +#define dgClaimCheckItemNameENGTex "__OTR__textures/item_name_static/gClaimCheckItemNameENGTex" +static const ALIGN_ASSET(2) char gClaimCheckItemNameENGTex[] = dgClaimCheckItemNameENGTex; + +#define dgUnusedWindMedallionItemName1JPNTex "__OTR__textures/item_name_static/gUnusedWindMedallionItemName1JPNTex" +static const ALIGN_ASSET(2) char gUnusedWindMedallionItemName1JPNTex[] = dgUnusedWindMedallionItemName1JPNTex; + +#define dgUnusedFireMedallionItemName1JPNTex "__OTR__textures/item_name_static/gUnusedFireMedallionItemName1JPNTex" +static const ALIGN_ASSET(2) char gUnusedFireMedallionItemName1JPNTex[] = dgUnusedFireMedallionItemName1JPNTex; + +#define dgUnusedIceMedallionItemName1JPNTex "__OTR__textures/item_name_static/gUnusedIceMedallionItemName1JPNTex" +static const ALIGN_ASSET(2) char gUnusedIceMedallionItemName1JPNTex[] = dgUnusedIceMedallionItemName1JPNTex; + +#define dgKokiriSwordItemNameENGTex "__OTR__textures/item_name_static/gKokiriSwordItemNameENGTex" +static const ALIGN_ASSET(2) char gKokiriSwordItemNameENGTex[] = dgKokiriSwordItemNameENGTex; + +#define dgMasterSwordItemNameENGTex "__OTR__textures/item_name_static/gMasterSwordItemNameENGTex" +static const ALIGN_ASSET(2) char gMasterSwordItemNameENGTex[] = dgMasterSwordItemNameENGTex; + +#define dgGiantsKnifeItemNameENGTex "__OTR__textures/item_name_static/gGiantsKnifeItemNameENGTex" +static const ALIGN_ASSET(2) char gGiantsKnifeItemNameENGTex[] = dgGiantsKnifeItemNameENGTex; + +#define dgDekuShieldItemNameENGTex "__OTR__textures/item_name_static/gDekuShieldItemNameENGTex" +static const ALIGN_ASSET(2) char gDekuShieldItemNameENGTex[] = dgDekuShieldItemNameENGTex; + +#define dgHylianShieldItemNameENGTex "__OTR__textures/item_name_static/gHylianShieldItemNameENGTex" +static const ALIGN_ASSET(2) char gHylianShieldItemNameENGTex[] = dgHylianShieldItemNameENGTex; + +#define dgMirrorShieldItemNameENGTex "__OTR__textures/item_name_static/gMirrorShieldItemNameENGTex" +static const ALIGN_ASSET(2) char gMirrorShieldItemNameENGTex[] = dgMirrorShieldItemNameENGTex; + +#define dgKokiriTunicItemNameENGTex "__OTR__textures/item_name_static/gKokiriTunicItemNameENGTex" +static const ALIGN_ASSET(2) char gKokiriTunicItemNameENGTex[] = dgKokiriTunicItemNameENGTex; + +#define dgGoronTunicItemNameENGTex "__OTR__textures/item_name_static/gGoronTunicItemNameENGTex" +static const ALIGN_ASSET(2) char gGoronTunicItemNameENGTex[] = dgGoronTunicItemNameENGTex; + +#define dgZoraTunicItemNameENGTex "__OTR__textures/item_name_static/gZoraTunicItemNameENGTex" +static const ALIGN_ASSET(2) char gZoraTunicItemNameENGTex[] = dgZoraTunicItemNameENGTex; + +#define dgKokiriBootsItemNameENGTex "__OTR__textures/item_name_static/gKokiriBootsItemNameENGTex" +static const ALIGN_ASSET(2) char gKokiriBootsItemNameENGTex[] = dgKokiriBootsItemNameENGTex; + +#define dgIronBootsItemNameENGTex "__OTR__textures/item_name_static/gIronBootsItemNameENGTex" +static const ALIGN_ASSET(2) char gIronBootsItemNameENGTex[] = dgIronBootsItemNameENGTex; + +#define dgHoverBootsItemNameENGTex "__OTR__textures/item_name_static/gHoverBootsItemNameENGTex" +static const ALIGN_ASSET(2) char gHoverBootsItemNameENGTex[] = dgHoverBootsItemNameENGTex; + +#define dgBulletBag30ItemNameENGTex "__OTR__textures/item_name_static/gBulletBag30ItemNameENGTex" +static const ALIGN_ASSET(2) char gBulletBag30ItemNameENGTex[] = dgBulletBag30ItemNameENGTex; + +#define dgBulletBag40ItemNameENGTex "__OTR__textures/item_name_static/gBulletBag40ItemNameENGTex" +static const ALIGN_ASSET(2) char gBulletBag40ItemNameENGTex[] = dgBulletBag40ItemNameENGTex; + +#define dgBulletBag50ItemNameENGTex "__OTR__textures/item_name_static/gBulletBag50ItemNameENGTex" +static const ALIGN_ASSET(2) char gBulletBag50ItemNameENGTex[] = dgBulletBag50ItemNameENGTex; + +#define dgQuiver30ItemNameENGTex "__OTR__textures/item_name_static/gQuiver30ItemNameENGTex" +static const ALIGN_ASSET(2) char gQuiver30ItemNameENGTex[] = dgQuiver30ItemNameENGTex; + +#define dgQuiver40ItemNameENGTex "__OTR__textures/item_name_static/gQuiver40ItemNameENGTex" +static const ALIGN_ASSET(2) char gQuiver40ItemNameENGTex[] = dgQuiver40ItemNameENGTex; + +#define dgQuiver50ItemNameENGTex "__OTR__textures/item_name_static/gQuiver50ItemNameENGTex" +static const ALIGN_ASSET(2) char gQuiver50ItemNameENGTex[] = dgQuiver50ItemNameENGTex; + +#define dgBombBag20ItemNameENGTex "__OTR__textures/item_name_static/gBombBag20ItemNameENGTex" +static const ALIGN_ASSET(2) char gBombBag20ItemNameENGTex[] = dgBombBag20ItemNameENGTex; + +#define dgBombBag30ItemNameENGTex "__OTR__textures/item_name_static/gBombBag30ItemNameENGTex" +static const ALIGN_ASSET(2) char gBombBag30ItemNameENGTex[] = dgBombBag30ItemNameENGTex; + +#define dgBombBag40ItemNameENGTex "__OTR__textures/item_name_static/gBombBag40ItemNameENGTex" +static const ALIGN_ASSET(2) char gBombBag40ItemNameENGTex[] = dgBombBag40ItemNameENGTex; + +#define dgGoronsBraceletItemNameENGTex "__OTR__textures/item_name_static/gGoronsBraceletItemNameENGTex" +static const ALIGN_ASSET(2) char gGoronsBraceletItemNameENGTex[] = dgGoronsBraceletItemNameENGTex; + +#define dgSilverGauntletsItemNameENGTex "__OTR__textures/item_name_static/gSilverGauntletsItemNameENGTex" +static const ALIGN_ASSET(2) char gSilverGauntletsItemNameENGTex[] = dgSilverGauntletsItemNameENGTex; + +#define dgGoldenGauntletsItemNameENGTex "__OTR__textures/item_name_static/gGoldenGauntletsItemNameENGTex" +static const ALIGN_ASSET(2) char gGoldenGauntletsItemNameENGTex[] = dgGoldenGauntletsItemNameENGTex; + +#define dgSilverScaleItemNameENGTex "__OTR__textures/item_name_static/gSilverScaleItemNameENGTex" +static const ALIGN_ASSET(2) char gSilverScaleItemNameENGTex[] = dgSilverScaleItemNameENGTex; + +#define dgGoldenScaleItemNameENGTex "__OTR__textures/item_name_static/gGoldenScaleItemNameENGTex" +static const ALIGN_ASSET(2) char gGoldenScaleItemNameENGTex[] = dgGoldenScaleItemNameENGTex; + +#define dgBrokenGiantsKnifeItemNameENGTex "__OTR__textures/item_name_static/gBrokenGiantsKnifeItemNameENGTex" +static const ALIGN_ASSET(2) char gBrokenGiantsKnifeItemNameENGTex[] = dgBrokenGiantsKnifeItemNameENGTex; + +#define dgUnusedBossKeyItemName1JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName1JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName1JPNTex[] = dgUnusedBossKeyItemName1JPNTex; + +#define dgUnusedBossKeyItemName2JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName2JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName2JPNTex[] = dgUnusedBossKeyItemName2JPNTex; + +#define dgUnusedBossKeyItemName3JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName3JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName3JPNTex[] = dgUnusedBossKeyItemName3JPNTex; + +#define dgUnusedBossKeyItemName4JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName4JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName4JPNTex[] = dgUnusedBossKeyItemName4JPNTex; + +#define dgMinuetOfForestItemNameENGTex "__OTR__textures/item_name_static/gMinuetOfForestItemNameENGTex" +static const ALIGN_ASSET(2) char gMinuetOfForestItemNameENGTex[] = dgMinuetOfForestItemNameENGTex; + +#define dgBoleroOfFireItemNameENGTex "__OTR__textures/item_name_static/gBoleroOfFireItemNameENGTex" +static const ALIGN_ASSET(2) char gBoleroOfFireItemNameENGTex[] = dgBoleroOfFireItemNameENGTex; + +#define dgSerenadeOfWaterItemNameENGTex "__OTR__textures/item_name_static/gSerenadeOfWaterItemNameENGTex" +static const ALIGN_ASSET(2) char gSerenadeOfWaterItemNameENGTex[] = dgSerenadeOfWaterItemNameENGTex; + +#define dgRequiemOfSpiritItemNameENGTex "__OTR__textures/item_name_static/gRequiemOfSpiritItemNameENGTex" +static const ALIGN_ASSET(2) char gRequiemOfSpiritItemNameENGTex[] = dgRequiemOfSpiritItemNameENGTex; + +#define dgNocturneOfShadowItemNameENGTex "__OTR__textures/item_name_static/gNocturneOfShadowItemNameENGTex" +static const ALIGN_ASSET(2) char gNocturneOfShadowItemNameENGTex[] = dgNocturneOfShadowItemNameENGTex; + +#define dgPreludeOfLightItemNameENGTex "__OTR__textures/item_name_static/gPreludeOfLightItemNameENGTex" +static const ALIGN_ASSET(2) char gPreludeOfLightItemNameENGTex[] = dgPreludeOfLightItemNameENGTex; + +#define dgZeldasLullabyItemNameENGTex "__OTR__textures/item_name_static/gZeldasLullabyItemNameENGTex" +static const ALIGN_ASSET(2) char gZeldasLullabyItemNameENGTex[] = dgZeldasLullabyItemNameENGTex; + +#define dgEponasSongItemNameENGTex "__OTR__textures/item_name_static/gEponasSongItemNameENGTex" +static const ALIGN_ASSET(2) char gEponasSongItemNameENGTex[] = dgEponasSongItemNameENGTex; + +#define dgSariasSongItemNameENGTex "__OTR__textures/item_name_static/gSariasSongItemNameENGTex" +static const ALIGN_ASSET(2) char gSariasSongItemNameENGTex[] = dgSariasSongItemNameENGTex; + +#define dgSunsSongItemNameENGTex "__OTR__textures/item_name_static/gSunsSongItemNameENGTex" +static const ALIGN_ASSET(2) char gSunsSongItemNameENGTex[] = dgSunsSongItemNameENGTex; + +#define dgSongOfTimeItemNameENGTex "__OTR__textures/item_name_static/gSongOfTimeItemNameENGTex" +static const ALIGN_ASSET(2) char gSongOfTimeItemNameENGTex[] = dgSongOfTimeItemNameENGTex; + +#define dgSongOfStormsItemNameENGTex "__OTR__textures/item_name_static/gSongOfStormsItemNameENGTex" +static const ALIGN_ASSET(2) char gSongOfStormsItemNameENGTex[] = dgSongOfStormsItemNameENGTex; + +#define dgForestMedallionItemNameENGTex "__OTR__textures/item_name_static/gForestMedallionItemNameENGTex" +static const ALIGN_ASSET(2) char gForestMedallionItemNameENGTex[] = dgForestMedallionItemNameENGTex; + +#define dgFireMedallionItemNameENGTex "__OTR__textures/item_name_static/gFireMedallionItemNameENGTex" +static const ALIGN_ASSET(2) char gFireMedallionItemNameENGTex[] = dgFireMedallionItemNameENGTex; + +#define dgWaterMedallionItemNameENGTex "__OTR__textures/item_name_static/gWaterMedallionItemNameENGTex" +static const ALIGN_ASSET(2) char gWaterMedallionItemNameENGTex[] = dgWaterMedallionItemNameENGTex; + +#define dgSpiritMedallionItemNameENGTex "__OTR__textures/item_name_static/gSpiritMedallionItemNameENGTex" +static const ALIGN_ASSET(2) char gSpiritMedallionItemNameENGTex[] = dgSpiritMedallionItemNameENGTex; + +#define dgShadowMedallionItemNameENGTex "__OTR__textures/item_name_static/gShadowMedallionItemNameENGTex" +static const ALIGN_ASSET(2) char gShadowMedallionItemNameENGTex[] = dgShadowMedallionItemNameENGTex; + +#define dgLightMedallionItemNameENGTex "__OTR__textures/item_name_static/gLightMedallionItemNameENGTex" +static const ALIGN_ASSET(2) char gLightMedallionItemNameENGTex[] = dgLightMedallionItemNameENGTex; + +#define dgKokiriEmeraldItemNameENGTex "__OTR__textures/item_name_static/gKokiriEmeraldItemNameENGTex" +static const ALIGN_ASSET(2) char gKokiriEmeraldItemNameENGTex[] = dgKokiriEmeraldItemNameENGTex; + +#define dgGoronsRubyItemNameENGTex "__OTR__textures/item_name_static/gGoronsRubyItemNameENGTex" +static const ALIGN_ASSET(2) char gGoronsRubyItemNameENGTex[] = dgGoronsRubyItemNameENGTex; + +#define dgZorasSapphireItemNameENGTex "__OTR__textures/item_name_static/gZorasSapphireItemNameENGTex" +static const ALIGN_ASSET(2) char gZorasSapphireItemNameENGTex[] = dgZorasSapphireItemNameENGTex; + +#define dgStoneofAgonyItemNameENGTex "__OTR__textures/item_name_static/gStoneofAgonyItemNameENGTex" +static const ALIGN_ASSET(2) char gStoneofAgonyItemNameENGTex[] = dgStoneofAgonyItemNameENGTex; + +#define dgGerudosCardItemNameENGTex "__OTR__textures/item_name_static/gGerudosCardItemNameENGTex" +static const ALIGN_ASSET(2) char gGerudosCardItemNameENGTex[] = dgGerudosCardItemNameENGTex; + +#define dgGoldSkulltulaItemNameENGTex "__OTR__textures/item_name_static/gGoldSkulltulaItemNameENGTex" +static const ALIGN_ASSET(2) char gGoldSkulltulaItemNameENGTex[] = dgGoldSkulltulaItemNameENGTex; + +#define dgPieceOfHeartItemNameENGTex "__OTR__textures/item_name_static/gPieceOfHeartItemNameENGTex" +static const ALIGN_ASSET(2) char gPieceOfHeartItemNameENGTex[] = dgPieceOfHeartItemNameENGTex; + +#define dgUnusedPieceOfHeartItemName1JPNTex "__OTR__textures/item_name_static/gUnusedPieceOfHeartItemName1JPNTex" +static const ALIGN_ASSET(2) char gUnusedPieceOfHeartItemName1JPNTex[] = dgUnusedPieceOfHeartItemName1JPNTex; + +#define dgUnusedBigKeyItemNameENGTex "__OTR__textures/item_name_static/gUnusedBigKeyItemNameENGTex" +static const ALIGN_ASSET(2) char gUnusedBigKeyItemNameENGTex[] = dgUnusedBigKeyItemNameENGTex; + +#define dgCompassItemNameENGTex "__OTR__textures/item_name_static/gCompassItemNameENGTex" +static const ALIGN_ASSET(2) char gCompassItemNameENGTex[] = dgCompassItemNameENGTex; + +#define dgDungeonMapItemNameENGTex "__OTR__textures/item_name_static/gDungeonMapItemNameENGTex" +static const ALIGN_ASSET(2) char gDungeonMapItemNameENGTex[] = dgDungeonMapItemNameENGTex; + +#define dgUnusedBossKeyItemName5JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName5JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName5JPNTex[] = dgUnusedBossKeyItemName5JPNTex; + +#define dgUnusedBossKeyItemName6JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName6JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName6JPNTex[] = dgUnusedBossKeyItemName6JPNTex; + +#define dgUnusedBossKeyItemName7JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName7JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName7JPNTex[] = dgUnusedBossKeyItemName7JPNTex; + +#define dgBiggoronsSwordItemNameENGTex "__OTR__textures/item_name_static/gBiggoronsSwordItemNameENGTex" +static const ALIGN_ASSET(2) char gBiggoronsSwordItemNameENGTex[] = dgBiggoronsSwordItemNameENGTex; + +#define dgDekuStickItemNameGERTex "__OTR__textures/item_name_static/gDekuStickItemNameGERTex" +static const ALIGN_ASSET(2) char gDekuStickItemNameGERTex[] = dgDekuStickItemNameGERTex; + +#define dgDekuNutItemNameGERTex "__OTR__textures/item_name_static/gDekuNutItemNameGERTex" +static const ALIGN_ASSET(2) char gDekuNutItemNameGERTex[] = dgDekuNutItemNameGERTex; + +#define dgBombItemNameItemNameGERTex "__OTR__textures/item_name_static/gBombItemNameItemNameGERTex" +static const ALIGN_ASSET(2) char gBombItemNameItemNameGERTex[] = dgBombItemNameItemNameGERTex; + +#define dgFairyBowItemNameGERTex "__OTR__textures/item_name_static/gFairyBowItemNameGERTex" +static const ALIGN_ASSET(2) char gFairyBowItemNameGERTex[] = dgFairyBowItemNameGERTex; + +#define dgFireArrowItemNameUnk2GERTex "__OTR__textures/item_name_static/gFireArrowItemNameUnk2GERTex" +static const ALIGN_ASSET(2) char gFireArrowItemNameUnk2GERTex[] = dgFireArrowItemNameUnk2GERTex; + +#define dgDinsFireItemNameGERTex "__OTR__textures/item_name_static/gDinsFireItemNameGERTex" +static const ALIGN_ASSET(2) char gDinsFireItemNameGERTex[] = dgDinsFireItemNameGERTex; + +#define dgFairySlingshotItemNameGERTex "__OTR__textures/item_name_static/gFairySlingshotItemNameGERTex" +static const ALIGN_ASSET(2) char gFairySlingshotItemNameGERTex[] = dgFairySlingshotItemNameGERTex; + +#define dgFairyOcarinaItemNameGERTex "__OTR__textures/item_name_static/gFairyOcarinaItemNameGERTex" +static const ALIGN_ASSET(2) char gFairyOcarinaItemNameGERTex[] = dgFairyOcarinaItemNameGERTex; + +#define dgOcarinaOfTimeItemNameGERTex "__OTR__textures/item_name_static/gOcarinaOfTimeItemNameGERTex" +static const ALIGN_ASSET(2) char gOcarinaOfTimeItemNameGERTex[] = dgOcarinaOfTimeItemNameGERTex; + +#define dgBombchuItemNameGERTex "__OTR__textures/item_name_static/gBombchuItemNameGERTex" +static const ALIGN_ASSET(2) char gBombchuItemNameGERTex[] = dgBombchuItemNameGERTex; + +#define dgHookshotItemNameGERTex "__OTR__textures/item_name_static/gHookshotItemNameGERTex" +static const ALIGN_ASSET(2) char gHookshotItemNameGERTex[] = dgHookshotItemNameGERTex; + +#define dgLongshotItemNameGERTex "__OTR__textures/item_name_static/gLongshotItemNameGERTex" +static const ALIGN_ASSET(2) char gLongshotItemNameGERTex[] = dgLongshotItemNameGERTex; + +#define dgIceArrowItemNameGERTex "__OTR__textures/item_name_static/gIceArrowItemNameGERTex" +static const ALIGN_ASSET(2) char gIceArrowItemNameGERTex[] = dgIceArrowItemNameGERTex; + +#define dgFaroresWindItemNameGERTex "__OTR__textures/item_name_static/gFaroresWindItemNameGERTex" +static const ALIGN_ASSET(2) char gFaroresWindItemNameGERTex[] = dgFaroresWindItemNameGERTex; + +#define dgBoomerangItemNameGERTex "__OTR__textures/item_name_static/gBoomerangItemNameGERTex" +static const ALIGN_ASSET(2) char gBoomerangItemNameGERTex[] = dgBoomerangItemNameGERTex; + +#define dgLensItemNameGERTex "__OTR__textures/item_name_static/gLensItemNameGERTex" +static const ALIGN_ASSET(2) char gLensItemNameGERTex[] = dgLensItemNameGERTex; + +#define dgMagicBeansItemNameGERTex "__OTR__textures/item_name_static/gMagicBeansItemNameGERTex" +static const ALIGN_ASSET(2) char gMagicBeansItemNameGERTex[] = dgMagicBeansItemNameGERTex; + +#define dgMegatonHammerItemNameGERTex "__OTR__textures/item_name_static/gMegatonHammerItemNameGERTex" +static const ALIGN_ASSET(2) char gMegatonHammerItemNameGERTex[] = dgMegatonHammerItemNameGERTex; + +#define dgLightArrowItemNameGERTex "__OTR__textures/item_name_static/gLightArrowItemNameGERTex" +static const ALIGN_ASSET(2) char gLightArrowItemNameGERTex[] = dgLightArrowItemNameGERTex; + +#define dgNayrusLoveItemNameGERTex "__OTR__textures/item_name_static/gNayrusLoveItemNameGERTex" +static const ALIGN_ASSET(2) char gNayrusLoveItemNameGERTex[] = dgNayrusLoveItemNameGERTex; + +#define dgEmptyBottleItemNameGERTex "__OTR__textures/item_name_static/gEmptyBottleItemNameGERTex" +static const ALIGN_ASSET(2) char gEmptyBottleItemNameGERTex[] = dgEmptyBottleItemNameGERTex; + +#define dgRedPotionItemNameGERTex "__OTR__textures/item_name_static/gRedPotionItemNameGERTex" +static const ALIGN_ASSET(2) char gRedPotionItemNameGERTex[] = dgRedPotionItemNameGERTex; + +#define dgGreenPotionItemNameGERTex "__OTR__textures/item_name_static/gGreenPotionItemNameGERTex" +static const ALIGN_ASSET(2) char gGreenPotionItemNameGERTex[] = dgGreenPotionItemNameGERTex; + +#define dgBluePotionItemNameGERTex "__OTR__textures/item_name_static/gBluePotionItemNameGERTex" +static const ALIGN_ASSET(2) char gBluePotionItemNameGERTex[] = dgBluePotionItemNameGERTex; + +#define dgBottledFairyItemNameGERTex "__OTR__textures/item_name_static/gBottledFairyItemNameGERTex" +static const ALIGN_ASSET(2) char gBottledFairyItemNameGERTex[] = dgBottledFairyItemNameGERTex; + +#define dgFishItemNameGERTex "__OTR__textures/item_name_static/gFishItemNameGERTex" +static const ALIGN_ASSET(2) char gFishItemNameGERTex[] = dgFishItemNameGERTex; + +#define dgFullMilkItemNameGERTex "__OTR__textures/item_name_static/gFullMilkItemNameGERTex" +static const ALIGN_ASSET(2) char gFullMilkItemNameGERTex[] = dgFullMilkItemNameGERTex; + +#define dgRutosLetterItemNameGERTex "__OTR__textures/item_name_static/gRutosLetterItemNameGERTex" +static const ALIGN_ASSET(2) char gRutosLetterItemNameGERTex[] = dgRutosLetterItemNameGERTex; + +#define dgBlueFireItemNameGERTex "__OTR__textures/item_name_static/gBlueFireItemNameGERTex" +static const ALIGN_ASSET(2) char gBlueFireItemNameGERTex[] = dgBlueFireItemNameGERTex; + +#define dgBugItemNameGERTex "__OTR__textures/item_name_static/gBugItemNameGERTex" +static const ALIGN_ASSET(2) char gBugItemNameGERTex[] = dgBugItemNameGERTex; + +#define dgBigPoeItemNameGERTex "__OTR__textures/item_name_static/gBigPoeItemNameGERTex" +static const ALIGN_ASSET(2) char gBigPoeItemNameGERTex[] = dgBigPoeItemNameGERTex; + +#define dgHalfMilkItemNameGERTex "__OTR__textures/item_name_static/gHalfMilkItemNameGERTex" +static const ALIGN_ASSET(2) char gHalfMilkItemNameGERTex[] = dgHalfMilkItemNameGERTex; + +#define dgPoeItemNameGERTex "__OTR__textures/item_name_static/gPoeItemNameGERTex" +static const ALIGN_ASSET(2) char gPoeItemNameGERTex[] = dgPoeItemNameGERTex; + +#define dgWeirdEggItemNameGERTex "__OTR__textures/item_name_static/gWeirdEggItemNameGERTex" +static const ALIGN_ASSET(2) char gWeirdEggItemNameGERTex[] = dgWeirdEggItemNameGERTex; + +#define dgCuccoItemNameGERTex "__OTR__textures/item_name_static/gCuccoItemNameGERTex" +static const ALIGN_ASSET(2) char gCuccoItemNameGERTex[] = dgCuccoItemNameGERTex; + +#define dgZeldasLetterItemNameGERTex "__OTR__textures/item_name_static/gZeldasLetterItemNameGERTex" +static const ALIGN_ASSET(2) char gZeldasLetterItemNameGERTex[] = dgZeldasLetterItemNameGERTex; + +#define dgKeatonMaskItemNameGERTex "__OTR__textures/item_name_static/gKeatonMaskItemNameGERTex" +static const ALIGN_ASSET(2) char gKeatonMaskItemNameGERTex[] = dgKeatonMaskItemNameGERTex; + +#define dgSkullMaskItemNameGERTex "__OTR__textures/item_name_static/gSkullMaskItemNameGERTex" +static const ALIGN_ASSET(2) char gSkullMaskItemNameGERTex[] = dgSkullMaskItemNameGERTex; + +#define dgSpookyMaskItemNameGERTex "__OTR__textures/item_name_static/gSpookyMaskItemNameGERTex" +static const ALIGN_ASSET(2) char gSpookyMaskItemNameGERTex[] = dgSpookyMaskItemNameGERTex; + +#define dgBunnyHoodItemNameGERTex "__OTR__textures/item_name_static/gBunnyHoodItemNameGERTex" +static const ALIGN_ASSET(2) char gBunnyHoodItemNameGERTex[] = dgBunnyHoodItemNameGERTex; + +#define dgGoronMaskItemNameGERTex "__OTR__textures/item_name_static/gGoronMaskItemNameGERTex" +static const ALIGN_ASSET(2) char gGoronMaskItemNameGERTex[] = dgGoronMaskItemNameGERTex; + +#define dgZoraMaskItemNameGERTex "__OTR__textures/item_name_static/gZoraMaskItemNameGERTex" +static const ALIGN_ASSET(2) char gZoraMaskItemNameGERTex[] = dgZoraMaskItemNameGERTex; + +#define dgGerudoMaskItemNameGERTex "__OTR__textures/item_name_static/gGerudoMaskItemNameGERTex" +static const ALIGN_ASSET(2) char gGerudoMaskItemNameGERTex[] = dgGerudoMaskItemNameGERTex; + +#define dgMaskofTruthItemNameGERTex "__OTR__textures/item_name_static/gMaskofTruthItemNameGERTex" +static const ALIGN_ASSET(2) char gMaskofTruthItemNameGERTex[] = dgMaskofTruthItemNameGERTex; + +#define dgSOLDOUTItemNameGERTex "__OTR__textures/item_name_static/gSOLDOUTItemNameGERTex" +static const ALIGN_ASSET(2) char gSOLDOUTItemNameGERTex[] = dgSOLDOUTItemNameGERTex; + +#define dgPocketEggItemNameGERTex "__OTR__textures/item_name_static/gPocketEggItemNameGERTex" +static const ALIGN_ASSET(2) char gPocketEggItemNameGERTex[] = dgPocketEggItemNameGERTex; + +#define dgPocketCuccoItemNameGERTex "__OTR__textures/item_name_static/gPocketCuccoItemNameGERTex" +static const ALIGN_ASSET(2) char gPocketCuccoItemNameGERTex[] = dgPocketCuccoItemNameGERTex; + +#define dgCojiroItemNameGERTex "__OTR__textures/item_name_static/gCojiroItemNameGERTex" +static const ALIGN_ASSET(2) char gCojiroItemNameGERTex[] = dgCojiroItemNameGERTex; + +#define dgOddMushroomItemNameGERTex "__OTR__textures/item_name_static/gOddMushroomItemNameGERTex" +static const ALIGN_ASSET(2) char gOddMushroomItemNameGERTex[] = dgOddMushroomItemNameGERTex; + +#define dgOddPotionItemNameGERTex "__OTR__textures/item_name_static/gOddPotionItemNameGERTex" +static const ALIGN_ASSET(2) char gOddPotionItemNameGERTex[] = dgOddPotionItemNameGERTex; + +#define dgPoachersSawItemNameGERTex "__OTR__textures/item_name_static/gPoachersSawItemNameGERTex" +static const ALIGN_ASSET(2) char gPoachersSawItemNameGERTex[] = dgPoachersSawItemNameGERTex; + +#define dgBrokenGoronsSwordItemNameGERTex "__OTR__textures/item_name_static/gBrokenGoronsSwordItemNameGERTex" +static const ALIGN_ASSET(2) char gBrokenGoronsSwordItemNameGERTex[] = dgBrokenGoronsSwordItemNameGERTex; + +#define dgPrescriptionItemNameGERTex "__OTR__textures/item_name_static/gPrescriptionItemNameGERTex" +static const ALIGN_ASSET(2) char gPrescriptionItemNameGERTex[] = dgPrescriptionItemNameGERTex; + +#define dgEyeBallFrogItemNameGERTex "__OTR__textures/item_name_static/gEyeBallFrogItemNameGERTex" +static const ALIGN_ASSET(2) char gEyeBallFrogItemNameGERTex[] = dgEyeBallFrogItemNameGERTex; + +#define dgEyeDropsItemNameGERTex "__OTR__textures/item_name_static/gEyeDropsItemNameGERTex" +static const ALIGN_ASSET(2) char gEyeDropsItemNameGERTex[] = dgEyeDropsItemNameGERTex; + +#define dgClaimCheckItemNameGERTex "__OTR__textures/item_name_static/gClaimCheckItemNameGERTex" +static const ALIGN_ASSET(2) char gClaimCheckItemNameGERTex[] = dgClaimCheckItemNameGERTex; + +#define dgUnusedWindMedallionItemName2JPNTex "__OTR__textures/item_name_static/gUnusedWindMedallionItemName2JPNTex" +static const ALIGN_ASSET(2) char gUnusedWindMedallionItemName2JPNTex[] = dgUnusedWindMedallionItemName2JPNTex; + +#define dgUnusedFireMedallionItemName2JPNTex "__OTR__textures/item_name_static/gUnusedFireMedallionItemName2JPNTex" +static const ALIGN_ASSET(2) char gUnusedFireMedallionItemName2JPNTex[] = dgUnusedFireMedallionItemName2JPNTex; + +#define dgUnusedIceMedallionItemName2JPNTex "__OTR__textures/item_name_static/gUnusedIceMedallionItemName2JPNTex" +static const ALIGN_ASSET(2) char gUnusedIceMedallionItemName2JPNTex[] = dgUnusedIceMedallionItemName2JPNTex; + +#define dgKokiriSwordItemNameGERTex "__OTR__textures/item_name_static/gKokiriSwordItemNameGERTex" +static const ALIGN_ASSET(2) char gKokiriSwordItemNameGERTex[] = dgKokiriSwordItemNameGERTex; + +#define dgMasterSwordItemNameGERTex "__OTR__textures/item_name_static/gMasterSwordItemNameGERTex" +static const ALIGN_ASSET(2) char gMasterSwordItemNameGERTex[] = dgMasterSwordItemNameGERTex; + +#define dgGiantsKnifeItemNameGERTex "__OTR__textures/item_name_static/gGiantsKnifeItemNameGERTex" +static const ALIGN_ASSET(2) char gGiantsKnifeItemNameGERTex[] = dgGiantsKnifeItemNameGERTex; + +#define dgDekuShieldItemNameGERTex "__OTR__textures/item_name_static/gDekuShieldItemNameGERTex" +static const ALIGN_ASSET(2) char gDekuShieldItemNameGERTex[] = dgDekuShieldItemNameGERTex; + +#define dgHylianShieldItemNameGERTex "__OTR__textures/item_name_static/gHylianShieldItemNameGERTex" +static const ALIGN_ASSET(2) char gHylianShieldItemNameGERTex[] = dgHylianShieldItemNameGERTex; + +#define dgMirrorShieldItemNameGERTex "__OTR__textures/item_name_static/gMirrorShieldItemNameGERTex" +static const ALIGN_ASSET(2) char gMirrorShieldItemNameGERTex[] = dgMirrorShieldItemNameGERTex; + +#define dgKokiriTunicItemNameGERTex "__OTR__textures/item_name_static/gKokiriTunicItemNameGERTex" +static const ALIGN_ASSET(2) char gKokiriTunicItemNameGERTex[] = dgKokiriTunicItemNameGERTex; + +#define dgGoronTunicItemNameGERTex "__OTR__textures/item_name_static/gGoronTunicItemNameGERTex" +static const ALIGN_ASSET(2) char gGoronTunicItemNameGERTex[] = dgGoronTunicItemNameGERTex; + +#define dgZoraTunicItemNameGERTex "__OTR__textures/item_name_static/gZoraTunicItemNameGERTex" +static const ALIGN_ASSET(2) char gZoraTunicItemNameGERTex[] = dgZoraTunicItemNameGERTex; + +#define dgKokiriBootsItemNameGERTex "__OTR__textures/item_name_static/gKokiriBootsItemNameGERTex" +static const ALIGN_ASSET(2) char gKokiriBootsItemNameGERTex[] = dgKokiriBootsItemNameGERTex; + +#define dgIronBootsItemNameGERTex "__OTR__textures/item_name_static/gIronBootsItemNameGERTex" +static const ALIGN_ASSET(2) char gIronBootsItemNameGERTex[] = dgIronBootsItemNameGERTex; + +#define dgHoverBootsItemNameGERTex "__OTR__textures/item_name_static/gHoverBootsItemNameGERTex" +static const ALIGN_ASSET(2) char gHoverBootsItemNameGERTex[] = dgHoverBootsItemNameGERTex; + +#define dgBulletBag30ItemNameGERTex "__OTR__textures/item_name_static/gBulletBag30ItemNameGERTex" +static const ALIGN_ASSET(2) char gBulletBag30ItemNameGERTex[] = dgBulletBag30ItemNameGERTex; + +#define dgBulletBag40ItemNameGERTex "__OTR__textures/item_name_static/gBulletBag40ItemNameGERTex" +static const ALIGN_ASSET(2) char gBulletBag40ItemNameGERTex[] = dgBulletBag40ItemNameGERTex; + +#define dgBulletBag50ItemNameGERTex "__OTR__textures/item_name_static/gBulletBag50ItemNameGERTex" +static const ALIGN_ASSET(2) char gBulletBag50ItemNameGERTex[] = dgBulletBag50ItemNameGERTex; + +#define dgQuiver30ItemNameGERTex "__OTR__textures/item_name_static/gQuiver30ItemNameGERTex" +static const ALIGN_ASSET(2) char gQuiver30ItemNameGERTex[] = dgQuiver30ItemNameGERTex; + +#define dgQuiver40ItemNameGERTex "__OTR__textures/item_name_static/gQuiver40ItemNameGERTex" +static const ALIGN_ASSET(2) char gQuiver40ItemNameGERTex[] = dgQuiver40ItemNameGERTex; + +#define dgQuiver50ItemNameGERTex "__OTR__textures/item_name_static/gQuiver50ItemNameGERTex" +static const ALIGN_ASSET(2) char gQuiver50ItemNameGERTex[] = dgQuiver50ItemNameGERTex; + +#define dgBombBag20ItemNameGERTex "__OTR__textures/item_name_static/gBombBag20ItemNameGERTex" +static const ALIGN_ASSET(2) char gBombBag20ItemNameGERTex[] = dgBombBag20ItemNameGERTex; + +#define dgBombBag30ItemNameGERTex "__OTR__textures/item_name_static/gBombBag30ItemNameGERTex" +static const ALIGN_ASSET(2) char gBombBag30ItemNameGERTex[] = dgBombBag30ItemNameGERTex; + +#define dgBombBag40ItemNameGERTex "__OTR__textures/item_name_static/gBombBag40ItemNameGERTex" +static const ALIGN_ASSET(2) char gBombBag40ItemNameGERTex[] = dgBombBag40ItemNameGERTex; + +#define dgGoronsBraceletItemNameGERTex "__OTR__textures/item_name_static/gGoronsBraceletItemNameGERTex" +static const ALIGN_ASSET(2) char gGoronsBraceletItemNameGERTex[] = dgGoronsBraceletItemNameGERTex; + +#define dgSilverGauntletsItemNameGERTex "__OTR__textures/item_name_static/gSilverGauntletsItemNameGERTex" +static const ALIGN_ASSET(2) char gSilverGauntletsItemNameGERTex[] = dgSilverGauntletsItemNameGERTex; + +#define dgGoldenGauntletsItemNameGERTex "__OTR__textures/item_name_static/gGoldenGauntletsItemNameGERTex" +static const ALIGN_ASSET(2) char gGoldenGauntletsItemNameGERTex[] = dgGoldenGauntletsItemNameGERTex; + +#define dgSilverScaleItemNameGERTex "__OTR__textures/item_name_static/gSilverScaleItemNameGERTex" +static const ALIGN_ASSET(2) char gSilverScaleItemNameGERTex[] = dgSilverScaleItemNameGERTex; + +#define dgGoldenScaleItemNameGERTex "__OTR__textures/item_name_static/gGoldenScaleItemNameGERTex" +static const ALIGN_ASSET(2) char gGoldenScaleItemNameGERTex[] = dgGoldenScaleItemNameGERTex; + +#define dgBrokenGiantsKnifeItemNameGERTex "__OTR__textures/item_name_static/gBrokenGiantsKnifeItemNameGERTex" +static const ALIGN_ASSET(2) char gBrokenGiantsKnifeItemNameGERTex[] = dgBrokenGiantsKnifeItemNameGERTex; + +#define dgUnusedBossKeyItemName8JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName8JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName8JPNTex[] = dgUnusedBossKeyItemName8JPNTex; + +#define dgUnusedBossKeyItemName9JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName9JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName9JPNTex[] = dgUnusedBossKeyItemName9JPNTex; + +#define dgUnusedBossKeyItemName10JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName10JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName10JPNTex[] = dgUnusedBossKeyItemName10JPNTex; + +#define dgUnusedBossKeyItemName11JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName11JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName11JPNTex[] = dgUnusedBossKeyItemName11JPNTex; + +#define dgMinuetOfForestItemNameGERTex "__OTR__textures/item_name_static/gMinuetOfForestItemNameGERTex" +static const ALIGN_ASSET(2) char gMinuetOfForestItemNameGERTex[] = dgMinuetOfForestItemNameGERTex; + +#define dgBoleroOfFireItemNameGERTex "__OTR__textures/item_name_static/gBoleroOfFireItemNameGERTex" +static const ALIGN_ASSET(2) char gBoleroOfFireItemNameGERTex[] = dgBoleroOfFireItemNameGERTex; + +#define dgSerenadeOfWaterItemNameGERTex "__OTR__textures/item_name_static/gSerenadeOfWaterItemNameGERTex" +static const ALIGN_ASSET(2) char gSerenadeOfWaterItemNameGERTex[] = dgSerenadeOfWaterItemNameGERTex; + +#define dgRequiemOfSpiritItemNameGERTex "__OTR__textures/item_name_static/gRequiemOfSpiritItemNameGERTex" +static const ALIGN_ASSET(2) char gRequiemOfSpiritItemNameGERTex[] = dgRequiemOfSpiritItemNameGERTex; + +#define dgNocturneOfShadowItemNameGERTex "__OTR__textures/item_name_static/gNocturneOfShadowItemNameGERTex" +static const ALIGN_ASSET(2) char gNocturneOfShadowItemNameGERTex[] = dgNocturneOfShadowItemNameGERTex; + +#define dgPreludeOfLightItemNameGERTex "__OTR__textures/item_name_static/gPreludeOfLightItemNameGERTex" +static const ALIGN_ASSET(2) char gPreludeOfLightItemNameGERTex[] = dgPreludeOfLightItemNameGERTex; + +#define dgZeldasLullabyItemNameGERTex "__OTR__textures/item_name_static/gZeldasLullabyItemNameGERTex" +static const ALIGN_ASSET(2) char gZeldasLullabyItemNameGERTex[] = dgZeldasLullabyItemNameGERTex; + +#define dgEponasSongItemNameGERTex "__OTR__textures/item_name_static/gEponasSongItemNameGERTex" +static const ALIGN_ASSET(2) char gEponasSongItemNameGERTex[] = dgEponasSongItemNameGERTex; + +#define dgSariasSongItemNameGERTex "__OTR__textures/item_name_static/gSariasSongItemNameGERTex" +static const ALIGN_ASSET(2) char gSariasSongItemNameGERTex[] = dgSariasSongItemNameGERTex; + +#define dgSunsSongItemNameGERTex "__OTR__textures/item_name_static/gSunsSongItemNameGERTex" +static const ALIGN_ASSET(2) char gSunsSongItemNameGERTex[] = dgSunsSongItemNameGERTex; + +#define dgSongOfTimeItemNameGERTex "__OTR__textures/item_name_static/gSongOfTimeItemNameGERTex" +static const ALIGN_ASSET(2) char gSongOfTimeItemNameGERTex[] = dgSongOfTimeItemNameGERTex; + +#define dgSongOfStormsItemNameGERTex "__OTR__textures/item_name_static/gSongOfStormsItemNameGERTex" +static const ALIGN_ASSET(2) char gSongOfStormsItemNameGERTex[] = dgSongOfStormsItemNameGERTex; + +#define dgForestMedallionItemNameGERTex "__OTR__textures/item_name_static/gForestMedallionItemNameGERTex" +static const ALIGN_ASSET(2) char gForestMedallionItemNameGERTex[] = dgForestMedallionItemNameGERTex; + +#define dgFireMedallionItemNameGERTex "__OTR__textures/item_name_static/gFireMedallionItemNameGERTex" +static const ALIGN_ASSET(2) char gFireMedallionItemNameGERTex[] = dgFireMedallionItemNameGERTex; + +#define dgWaterMedallionItemNameGERTex "__OTR__textures/item_name_static/gWaterMedallionItemNameGERTex" +static const ALIGN_ASSET(2) char gWaterMedallionItemNameGERTex[] = dgWaterMedallionItemNameGERTex; + +#define dgSpiritMedallionItemNameGERTex "__OTR__textures/item_name_static/gSpiritMedallionItemNameGERTex" +static const ALIGN_ASSET(2) char gSpiritMedallionItemNameGERTex[] = dgSpiritMedallionItemNameGERTex; + +#define dgShadowMedallionItemNameGERTex "__OTR__textures/item_name_static/gShadowMedallionItemNameGERTex" +static const ALIGN_ASSET(2) char gShadowMedallionItemNameGERTex[] = dgShadowMedallionItemNameGERTex; + +#define dgLightMedallionItemNameGERTex "__OTR__textures/item_name_static/gLightMedallionItemNameGERTex" +static const ALIGN_ASSET(2) char gLightMedallionItemNameGERTex[] = dgLightMedallionItemNameGERTex; + +#define dgKokiriEmeraldItemNameGERTex "__OTR__textures/item_name_static/gKokiriEmeraldItemNameGERTex" +static const ALIGN_ASSET(2) char gKokiriEmeraldItemNameGERTex[] = dgKokiriEmeraldItemNameGERTex; + +#define dgGoronsRubyItemNameGERTex "__OTR__textures/item_name_static/gGoronsRubyItemNameGERTex" +static const ALIGN_ASSET(2) char gGoronsRubyItemNameGERTex[] = dgGoronsRubyItemNameGERTex; + +#define dgZorasSapphireItemNameGERTex "__OTR__textures/item_name_static/gZorasSapphireItemNameGERTex" +static const ALIGN_ASSET(2) char gZorasSapphireItemNameGERTex[] = dgZorasSapphireItemNameGERTex; + +#define dgStoneofAgonyItemNameGERTex "__OTR__textures/item_name_static/gStoneofAgonyItemNameGERTex" +static const ALIGN_ASSET(2) char gStoneofAgonyItemNameGERTex[] = dgStoneofAgonyItemNameGERTex; + +#define dgGerudosCardItemNameGERTex "__OTR__textures/item_name_static/gGerudosCardItemNameGERTex" +static const ALIGN_ASSET(2) char gGerudosCardItemNameGERTex[] = dgGerudosCardItemNameGERTex; + +#define dgGoldSkulltulaItemNameGERTex "__OTR__textures/item_name_static/gGoldSkulltulaItemNameGERTex" +static const ALIGN_ASSET(2) char gGoldSkulltulaItemNameGERTex[] = dgGoldSkulltulaItemNameGERTex; + +#define dgHeartContainerItemNameGERTex "__OTR__textures/item_name_static/gHeartContainerItemNameGERTex" +static const ALIGN_ASSET(2) char gHeartContainerItemNameGERTex[] = dgHeartContainerItemNameGERTex; + +#define dgUnusedPieceOfHeartItemName2JPNTex "__OTR__textures/item_name_static/gUnusedPieceOfHeartItemName2JPNTex" +static const ALIGN_ASSET(2) char gUnusedPieceOfHeartItemName2JPNTex[] = dgUnusedPieceOfHeartItemName2JPNTex; + +#define dgBigKeyItemNameGERTex "__OTR__textures/item_name_static/gBigKeyItemNameGERTex" +static const ALIGN_ASSET(2) char gBigKeyItemNameGERTex[] = dgBigKeyItemNameGERTex; + +#define dgCompassItemNameGERTex "__OTR__textures/item_name_static/gCompassItemNameGERTex" +static const ALIGN_ASSET(2) char gCompassItemNameGERTex[] = dgCompassItemNameGERTex; + +#define dgDungeonMapItemNameGERTex "__OTR__textures/item_name_static/gDungeonMapItemNameGERTex" +static const ALIGN_ASSET(2) char gDungeonMapItemNameGERTex[] = dgDungeonMapItemNameGERTex; + +#define dgUnusedBossKeyItemName12JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName12JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName12JPNTex[] = dgUnusedBossKeyItemName12JPNTex; + +#define dgUnusedBossKeyItemName13JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName13JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName13JPNTex[] = dgUnusedBossKeyItemName13JPNTex; + +#define dgUnusedBossKeyItemName14JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName14JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName14JPNTex[] = dgUnusedBossKeyItemName14JPNTex; + +#define dgBiggoronsSwordItemNameGERTex "__OTR__textures/item_name_static/gBiggoronsSwordItemNameGERTex" +static const ALIGN_ASSET(2) char gBiggoronsSwordItemNameGERTex[] = dgBiggoronsSwordItemNameGERTex; + +#define dgDekuStickItemNameFRATex "__OTR__textures/item_name_static/gDekuStickItemNameFRATex" +static const ALIGN_ASSET(2) char gDekuStickItemNameFRATex[] = dgDekuStickItemNameFRATex; + +#define dgDekuNutItemNameFRATex "__OTR__textures/item_name_static/gDekuNutItemNameFRATex" +static const ALIGN_ASSET(2) char gDekuNutItemNameFRATex[] = dgDekuNutItemNameFRATex; + +#define dgBombItemNameFRATex "__OTR__textures/item_name_static/gBombItemNameFRATex" +static const ALIGN_ASSET(2) char gBombItemNameFRATex[] = dgBombItemNameFRATex; + +#define dgFairyBowItemNameFRATex "__OTR__textures/item_name_static/gFairyBowItemNameFRATex" +static const ALIGN_ASSET(2) char gFairyBowItemNameFRATex[] = dgFairyBowItemNameFRATex; + +#define dgFireArrowItemNameFRATex "__OTR__textures/item_name_static/gFireArrowItemNameFRATex" +static const ALIGN_ASSET(2) char gFireArrowItemNameFRATex[] = dgFireArrowItemNameFRATex; + +#define dgDinsFireItemNameFRATex "__OTR__textures/item_name_static/gDinsFireItemNameFRATex" +static const ALIGN_ASSET(2) char gDinsFireItemNameFRATex[] = dgDinsFireItemNameFRATex; + +#define dgFairySlingshotItemNameFRATex "__OTR__textures/item_name_static/gFairySlingshotItemNameFRATex" +static const ALIGN_ASSET(2) char gFairySlingshotItemNameFRATex[] = dgFairySlingshotItemNameFRATex; + +#define dgFairyOcarinaItemNameFRATex "__OTR__textures/item_name_static/gFairyOcarinaItemNameFRATex" +static const ALIGN_ASSET(2) char gFairyOcarinaItemNameFRATex[] = dgFairyOcarinaItemNameFRATex; + +#define dgOcarinaOfTimeItemNameFRATex "__OTR__textures/item_name_static/gOcarinaOfTimeItemNameFRATex" +static const ALIGN_ASSET(2) char gOcarinaOfTimeItemNameFRATex[] = dgOcarinaOfTimeItemNameFRATex; + +#define dgBombchuItemNameFRATex "__OTR__textures/item_name_static/gBombchuItemNameFRATex" +static const ALIGN_ASSET(2) char gBombchuItemNameFRATex[] = dgBombchuItemNameFRATex; + +#define dgHookshotItemNameFRATex "__OTR__textures/item_name_static/gHookshotItemNameFRATex" +static const ALIGN_ASSET(2) char gHookshotItemNameFRATex[] = dgHookshotItemNameFRATex; + +#define dgLongshotItemNameFRATex "__OTR__textures/item_name_static/gLongshotItemNameFRATex" +static const ALIGN_ASSET(2) char gLongshotItemNameFRATex[] = dgLongshotItemNameFRATex; + +#define dgIceArrowItemNameFRATex "__OTR__textures/item_name_static/gIceArrowItemNameFRATex" +static const ALIGN_ASSET(2) char gIceArrowItemNameFRATex[] = dgIceArrowItemNameFRATex; + +#define dgFaroresWindItemNameFRATex "__OTR__textures/item_name_static/gFaroresWindItemNameFRATex" +static const ALIGN_ASSET(2) char gFaroresWindItemNameFRATex[] = dgFaroresWindItemNameFRATex; + +#define dgBoomerangItemNameFRATex "__OTR__textures/item_name_static/gBoomerangItemNameFRATex" +static const ALIGN_ASSET(2) char gBoomerangItemNameFRATex[] = dgBoomerangItemNameFRATex; + +#define dgLensItemNameFRATex "__OTR__textures/item_name_static/gLensItemNameFRATex" +static const ALIGN_ASSET(2) char gLensItemNameFRATex[] = dgLensItemNameFRATex; + +#define dgMagicBeansItemNameFRATex "__OTR__textures/item_name_static/gMagicBeansItemNameFRATex" +static const ALIGN_ASSET(2) char gMagicBeansItemNameFRATex[] = dgMagicBeansItemNameFRATex; + +#define dgMegatonHammerItemNameFRATex "__OTR__textures/item_name_static/gMegatonHammerItemNameFRATex" +static const ALIGN_ASSET(2) char gMegatonHammerItemNameFRATex[] = dgMegatonHammerItemNameFRATex; + +#define dgLightArrowItemNameFRATex "__OTR__textures/item_name_static/gLightArrowItemNameFRATex" +static const ALIGN_ASSET(2) char gLightArrowItemNameFRATex[] = dgLightArrowItemNameFRATex; + +#define dgNayrusLoveItemNameFRATex "__OTR__textures/item_name_static/gNayrusLoveItemNameFRATex" +static const ALIGN_ASSET(2) char gNayrusLoveItemNameFRATex[] = dgNayrusLoveItemNameFRATex; + +#define dgEmptyBottleItemNameFRATex "__OTR__textures/item_name_static/gEmptyBottleItemNameFRATex" +static const ALIGN_ASSET(2) char gEmptyBottleItemNameFRATex[] = dgEmptyBottleItemNameFRATex; + +#define dgRedPotionItemNameFRATex "__OTR__textures/item_name_static/gRedPotionItemNameFRATex" +static const ALIGN_ASSET(2) char gRedPotionItemNameFRATex[] = dgRedPotionItemNameFRATex; + +#define dgGreenPotionItemNameFRATex "__OTR__textures/item_name_static/gGreenPotionItemNameFRATex" +static const ALIGN_ASSET(2) char gGreenPotionItemNameFRATex[] = dgGreenPotionItemNameFRATex; + +#define dgBluePotionItemNameFRATex "__OTR__textures/item_name_static/gBluePotionItemNameFRATex" +static const ALIGN_ASSET(2) char gBluePotionItemNameFRATex[] = dgBluePotionItemNameFRATex; + +#define dgBottledFairyItemNameFRATex "__OTR__textures/item_name_static/gBottledFairyItemNameFRATex" +static const ALIGN_ASSET(2) char gBottledFairyItemNameFRATex[] = dgBottledFairyItemNameFRATex; + +#define dgFishItemNameFRATex "__OTR__textures/item_name_static/gFishItemNameFRATex" +static const ALIGN_ASSET(2) char gFishItemNameFRATex[] = dgFishItemNameFRATex; + +#define dgFullMilkItemNameFRATex "__OTR__textures/item_name_static/gFullMilkItemNameFRATex" +static const ALIGN_ASSET(2) char gFullMilkItemNameFRATex[] = dgFullMilkItemNameFRATex; + +#define dgRutosLetterItemNameFRATex "__OTR__textures/item_name_static/gRutosLetterItemNameFRATex" +static const ALIGN_ASSET(2) char gRutosLetterItemNameFRATex[] = dgRutosLetterItemNameFRATex; + +#define dgBlueFireItemNameFRATex "__OTR__textures/item_name_static/gBlueFireItemNameFRATex" +static const ALIGN_ASSET(2) char gBlueFireItemNameFRATex[] = dgBlueFireItemNameFRATex; + +#define dgBugItemNameFRATex "__OTR__textures/item_name_static/gBugItemNameFRATex" +static const ALIGN_ASSET(2) char gBugItemNameFRATex[] = dgBugItemNameFRATex; + +#define dgBigPoeItemNameFRATex "__OTR__textures/item_name_static/gBigPoeItemNameFRATex" +static const ALIGN_ASSET(2) char gBigPoeItemNameFRATex[] = dgBigPoeItemNameFRATex; + +#define dgHalfMilkItemNameFRATex "__OTR__textures/item_name_static/gHalfMilkItemNameFRATex" +static const ALIGN_ASSET(2) char gHalfMilkItemNameFRATex[] = dgHalfMilkItemNameFRATex; + +#define dgPoeItemNameFRATex "__OTR__textures/item_name_static/gPoeItemNameFRATex" +static const ALIGN_ASSET(2) char gPoeItemNameFRATex[] = dgPoeItemNameFRATex; + +#define dgWeirdEggItemNameFRATex "__OTR__textures/item_name_static/gWeirdEggItemNameFRATex" +static const ALIGN_ASSET(2) char gWeirdEggItemNameFRATex[] = dgWeirdEggItemNameFRATex; + +#define dgCuccoItemNameFRATex "__OTR__textures/item_name_static/gCuccoItemNameFRATex" +static const ALIGN_ASSET(2) char gCuccoItemNameFRATex[] = dgCuccoItemNameFRATex; + +#define dgZeldasLetterItemNameFRATex "__OTR__textures/item_name_static/gZeldasLetterItemNameFRATex" +static const ALIGN_ASSET(2) char gZeldasLetterItemNameFRATex[] = dgZeldasLetterItemNameFRATex; + +#define dgKeatonMaskItemNameFRATex "__OTR__textures/item_name_static/gKeatonMaskItemNameFRATex" +static const ALIGN_ASSET(2) char gKeatonMaskItemNameFRATex[] = dgKeatonMaskItemNameFRATex; + +#define dgSkullMaskItemNameFRATex "__OTR__textures/item_name_static/gSkullMaskItemNameFRATex" +static const ALIGN_ASSET(2) char gSkullMaskItemNameFRATex[] = dgSkullMaskItemNameFRATex; + +#define dgSpookyMaskItemNameFRATex "__OTR__textures/item_name_static/gSpookyMaskItemNameFRATex" +static const ALIGN_ASSET(2) char gSpookyMaskItemNameFRATex[] = dgSpookyMaskItemNameFRATex; + +#define dgBunnyHoodItemNameFRATex "__OTR__textures/item_name_static/gBunnyHoodItemNameFRATex" +static const ALIGN_ASSET(2) char gBunnyHoodItemNameFRATex[] = dgBunnyHoodItemNameFRATex; + +#define dgGoronMaskItemNameFRATex "__OTR__textures/item_name_static/gGoronMaskItemNameFRATex" +static const ALIGN_ASSET(2) char gGoronMaskItemNameFRATex[] = dgGoronMaskItemNameFRATex; + +#define dgZoraMaskItemNameFRATex "__OTR__textures/item_name_static/gZoraMaskItemNameFRATex" +static const ALIGN_ASSET(2) char gZoraMaskItemNameFRATex[] = dgZoraMaskItemNameFRATex; + +#define dgGerudoMaskItemNameFRATex "__OTR__textures/item_name_static/gGerudoMaskItemNameFRATex" +static const ALIGN_ASSET(2) char gGerudoMaskItemNameFRATex[] = dgGerudoMaskItemNameFRATex; + +#define dgMaskofTruthItemNameFRATex "__OTR__textures/item_name_static/gMaskofTruthItemNameFRATex" +static const ALIGN_ASSET(2) char gMaskofTruthItemNameFRATex[] = dgMaskofTruthItemNameFRATex; + +#define dgSOLDOUTItemNameFRATex "__OTR__textures/item_name_static/gSOLDOUTItemNameFRATex" +static const ALIGN_ASSET(2) char gSOLDOUTItemNameFRATex[] = dgSOLDOUTItemNameFRATex; + +#define dgPocketEggItemNameFRATex "__OTR__textures/item_name_static/gPocketEggItemNameFRATex" +static const ALIGN_ASSET(2) char gPocketEggItemNameFRATex[] = dgPocketEggItemNameFRATex; + +#define dgPocketCuccoItemNameFRATex "__OTR__textures/item_name_static/gPocketCuccoItemNameFRATex" +static const ALIGN_ASSET(2) char gPocketCuccoItemNameFRATex[] = dgPocketCuccoItemNameFRATex; + +#define dgCojiroItemNameFRATex "__OTR__textures/item_name_static/gCojiroItemNameFRATex" +static const ALIGN_ASSET(2) char gCojiroItemNameFRATex[] = dgCojiroItemNameFRATex; + +#define dgOddMushroomItemNameFRATex "__OTR__textures/item_name_static/gOddMushroomItemNameFRATex" +static const ALIGN_ASSET(2) char gOddMushroomItemNameFRATex[] = dgOddMushroomItemNameFRATex; + +#define dgOddPotionItemNameFRATex "__OTR__textures/item_name_static/gOddPotionItemNameFRATex" +static const ALIGN_ASSET(2) char gOddPotionItemNameFRATex[] = dgOddPotionItemNameFRATex; + +#define dgPoachersSawItemNameFRATex "__OTR__textures/item_name_static/gPoachersSawItemNameFRATex" +static const ALIGN_ASSET(2) char gPoachersSawItemNameFRATex[] = dgPoachersSawItemNameFRATex; + +#define dgBrokenGoronsSwordItemNameFRATex "__OTR__textures/item_name_static/gBrokenGoronsSwordItemNameFRATex" +static const ALIGN_ASSET(2) char gBrokenGoronsSwordItemNameFRATex[] = dgBrokenGoronsSwordItemNameFRATex; + +#define dgPrescriptionItemNameFRATex "__OTR__textures/item_name_static/gPrescriptionItemNameFRATex" +static const ALIGN_ASSET(2) char gPrescriptionItemNameFRATex[] = dgPrescriptionItemNameFRATex; + +#define dgEyeBallFrogItemNameFRATex "__OTR__textures/item_name_static/gEyeBallFrogItemNameFRATex" +static const ALIGN_ASSET(2) char gEyeBallFrogItemNameFRATex[] = dgEyeBallFrogItemNameFRATex; + +#define dgEyeDropsItemNameFRATex "__OTR__textures/item_name_static/gEyeDropsItemNameFRATex" +static const ALIGN_ASSET(2) char gEyeDropsItemNameFRATex[] = dgEyeDropsItemNameFRATex; + +#define dgClaimCheckItemNameFRATex "__OTR__textures/item_name_static/gClaimCheckItemNameFRATex" +static const ALIGN_ASSET(2) char gClaimCheckItemNameFRATex[] = dgClaimCheckItemNameFRATex; + +#define dgUnusedWindMedallionItemName3JPNTex "__OTR__textures/item_name_static/gUnusedWindMedallionItemName3JPNTex" +static const ALIGN_ASSET(2) char gUnusedWindMedallionItemName3JPNTex[] = dgUnusedWindMedallionItemName3JPNTex; + +#define dgUnusedFireMedallionItemName3JPNTex "__OTR__textures/item_name_static/gUnusedFireMedallionItemName3JPNTex" +static const ALIGN_ASSET(2) char gUnusedFireMedallionItemName3JPNTex[] = dgUnusedFireMedallionItemName3JPNTex; + +#define dgUnusedIceMedallionItemName3JPNTex "__OTR__textures/item_name_static/gUnusedIceMedallionItemName3JPNTex" +static const ALIGN_ASSET(2) char gUnusedIceMedallionItemName3JPNTex[] = dgUnusedIceMedallionItemName3JPNTex; + +#define dgKokiriSwordItemNameFRATex "__OTR__textures/item_name_static/gKokiriSwordItemNameFRATex" +static const ALIGN_ASSET(2) char gKokiriSwordItemNameFRATex[] = dgKokiriSwordItemNameFRATex; + +#define dgMasterSwordItemNameFRATex "__OTR__textures/item_name_static/gMasterSwordItemNameFRATex" +static const ALIGN_ASSET(2) char gMasterSwordItemNameFRATex[] = dgMasterSwordItemNameFRATex; + +#define dgGiantsKnifeItemNameFRATex "__OTR__textures/item_name_static/gGiantsKnifeItemNameFRATex" +static const ALIGN_ASSET(2) char gGiantsKnifeItemNameFRATex[] = dgGiantsKnifeItemNameFRATex; + +#define dgDekuShieldItemNameFRATex "__OTR__textures/item_name_static/gDekuShieldItemNameFRATex" +static const ALIGN_ASSET(2) char gDekuShieldItemNameFRATex[] = dgDekuShieldItemNameFRATex; + +#define dgHylianShieldItemNameFRATex "__OTR__textures/item_name_static/gHylianShieldItemNameFRATex" +static const ALIGN_ASSET(2) char gHylianShieldItemNameFRATex[] = dgHylianShieldItemNameFRATex; + +#define dgMirrorShieldItemNameFRATex "__OTR__textures/item_name_static/gMirrorShieldItemNameFRATex" +static const ALIGN_ASSET(2) char gMirrorShieldItemNameFRATex[] = dgMirrorShieldItemNameFRATex; + +#define dgKokiriTunicItemNameFRATex "__OTR__textures/item_name_static/gKokiriTunicItemNameFRATex" +static const ALIGN_ASSET(2) char gKokiriTunicItemNameFRATex[] = dgKokiriTunicItemNameFRATex; + +#define dgGoronTunicItemNameFRATex "__OTR__textures/item_name_static/gGoronTunicItemNameFRATex" +static const ALIGN_ASSET(2) char gGoronTunicItemNameFRATex[] = dgGoronTunicItemNameFRATex; + +#define dgZoraTunicItemNameFRATex "__OTR__textures/item_name_static/gZoraTunicItemNameFRATex" +static const ALIGN_ASSET(2) char gZoraTunicItemNameFRATex[] = dgZoraTunicItemNameFRATex; + +#define dgKokiriBootsItemNameFRATex "__OTR__textures/item_name_static/gKokiriBootsItemNameFRATex" +static const ALIGN_ASSET(2) char gKokiriBootsItemNameFRATex[] = dgKokiriBootsItemNameFRATex; + +#define dgIronBootsItemNameFRATex "__OTR__textures/item_name_static/gIronBootsItemNameFRATex" +static const ALIGN_ASSET(2) char gIronBootsItemNameFRATex[] = dgIronBootsItemNameFRATex; + +#define dgHoverBootsItemNameFRATex "__OTR__textures/item_name_static/gHoverBootsItemNameFRATex" +static const ALIGN_ASSET(2) char gHoverBootsItemNameFRATex[] = dgHoverBootsItemNameFRATex; + +#define dgBulletBag30ItemNameFRATex "__OTR__textures/item_name_static/gBulletBag30ItemNameFRATex" +static const ALIGN_ASSET(2) char gBulletBag30ItemNameFRATex[] = dgBulletBag30ItemNameFRATex; + +#define dgBulletBag40ItemNameFRATex "__OTR__textures/item_name_static/gBulletBag40ItemNameFRATex" +static const ALIGN_ASSET(2) char gBulletBag40ItemNameFRATex[] = dgBulletBag40ItemNameFRATex; + +#define dgBulletBag50ItemNameFRATex "__OTR__textures/item_name_static/gBulletBag50ItemNameFRATex" +static const ALIGN_ASSET(2) char gBulletBag50ItemNameFRATex[] = dgBulletBag50ItemNameFRATex; + +#define dgQuiver30ItemNameFRATex "__OTR__textures/item_name_static/gQuiver30ItemNameFRATex" +static const ALIGN_ASSET(2) char gQuiver30ItemNameFRATex[] = dgQuiver30ItemNameFRATex; + +#define dgQuiver40ItemNameFRATex "__OTR__textures/item_name_static/gQuiver40ItemNameFRATex" +static const ALIGN_ASSET(2) char gQuiver40ItemNameFRATex[] = dgQuiver40ItemNameFRATex; + +#define dgQuiver50ItemNameFRATex "__OTR__textures/item_name_static/gQuiver50ItemNameFRATex" +static const ALIGN_ASSET(2) char gQuiver50ItemNameFRATex[] = dgQuiver50ItemNameFRATex; + +#define dgBombBag20ItemNameFRATex "__OTR__textures/item_name_static/gBombBag20ItemNameFRATex" +static const ALIGN_ASSET(2) char gBombBag20ItemNameFRATex[] = dgBombBag20ItemNameFRATex; + +#define dgBombBag30ItemNameFRATex "__OTR__textures/item_name_static/gBombBag30ItemNameFRATex" +static const ALIGN_ASSET(2) char gBombBag30ItemNameFRATex[] = dgBombBag30ItemNameFRATex; + +#define dgBombBag40ItemNameFRATex "__OTR__textures/item_name_static/gBombBag40ItemNameFRATex" +static const ALIGN_ASSET(2) char gBombBag40ItemNameFRATex[] = dgBombBag40ItemNameFRATex; + +#define dgGoronsBraceletItemNameFRATex "__OTR__textures/item_name_static/gGoronsBraceletItemNameFRATex" +static const ALIGN_ASSET(2) char gGoronsBraceletItemNameFRATex[] = dgGoronsBraceletItemNameFRATex; + +#define dgSilverGauntletsItemNameFRATex "__OTR__textures/item_name_static/gSilverGauntletsItemNameFRATex" +static const ALIGN_ASSET(2) char gSilverGauntletsItemNameFRATex[] = dgSilverGauntletsItemNameFRATex; + +#define dgGoldenGauntletsItemNameFRATex "__OTR__textures/item_name_static/gGoldenGauntletsItemNameFRATex" +static const ALIGN_ASSET(2) char gGoldenGauntletsItemNameFRATex[] = dgGoldenGauntletsItemNameFRATex; + +#define dgSilverScaleItemNameFRATex "__OTR__textures/item_name_static/gSilverScaleItemNameFRATex" +static const ALIGN_ASSET(2) char gSilverScaleItemNameFRATex[] = dgSilverScaleItemNameFRATex; + +#define dgGoldenScaleItemNameFRATex "__OTR__textures/item_name_static/gGoldenScaleItemNameFRATex" +static const ALIGN_ASSET(2) char gGoldenScaleItemNameFRATex[] = dgGoldenScaleItemNameFRATex; + +#define dgBrokenGiantsKnifeItemNameFRATex "__OTR__textures/item_name_static/gBrokenGiantsKnifeItemNameFRATex" +static const ALIGN_ASSET(2) char gBrokenGiantsKnifeItemNameFRATex[] = dgBrokenGiantsKnifeItemNameFRATex; + +#define dgUnusedBossKeyItemName15JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName15JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName15JPNTex[] = dgUnusedBossKeyItemName15JPNTex; + +#define dgUnusedBossKeyItemName16JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName16JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName16JPNTex[] = dgUnusedBossKeyItemName16JPNTex; + +#define dgUnusedBossKeyItemName17JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName17JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName17JPNTex[] = dgUnusedBossKeyItemName17JPNTex; + +#define dgUnusedBossKeyItemName18JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName18JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName18JPNTex[] = dgUnusedBossKeyItemName18JPNTex; + +#define dgMinuetOfForestItemNameFRATex "__OTR__textures/item_name_static/gMinuetOfForestItemNameFRATex" +static const ALIGN_ASSET(2) char gMinuetOfForestItemNameFRATex[] = dgMinuetOfForestItemNameFRATex; + +#define dgBoleroOfFireItemNameFRATex "__OTR__textures/item_name_static/gBoleroOfFireItemNameFRATex" +static const ALIGN_ASSET(2) char gBoleroOfFireItemNameFRATex[] = dgBoleroOfFireItemNameFRATex; + +#define dgSerenadeOfWaterItemNameFRATex "__OTR__textures/item_name_static/gSerenadeOfWaterItemNameFRATex" +static const ALIGN_ASSET(2) char gSerenadeOfWaterItemNameFRATex[] = dgSerenadeOfWaterItemNameFRATex; + +#define dgRequiemOfSpiritItemNameFRATex "__OTR__textures/item_name_static/gRequiemOfSpiritItemNameFRATex" +static const ALIGN_ASSET(2) char gRequiemOfSpiritItemNameFRATex[] = dgRequiemOfSpiritItemNameFRATex; + +#define dgNocturneOfShadowItemNameFRATex "__OTR__textures/item_name_static/gNocturneOfShadowItemNameFRATex" +static const ALIGN_ASSET(2) char gNocturneOfShadowItemNameFRATex[] = dgNocturneOfShadowItemNameFRATex; + +#define dgPreludeOfLightItemNameFRATex "__OTR__textures/item_name_static/gPreludeOfLightItemNameFRATex" +static const ALIGN_ASSET(2) char gPreludeOfLightItemNameFRATex[] = dgPreludeOfLightItemNameFRATex; + +#define dgZeldasLullabyItemNameFRATex "__OTR__textures/item_name_static/gZeldasLullabyItemNameFRATex" +static const ALIGN_ASSET(2) char gZeldasLullabyItemNameFRATex[] = dgZeldasLullabyItemNameFRATex; + +#define dgEponasSongItemNameFRATex "__OTR__textures/item_name_static/gEponasSongItemNameFRATex" +static const ALIGN_ASSET(2) char gEponasSongItemNameFRATex[] = dgEponasSongItemNameFRATex; + +#define dgSariasSongItemNameFRATex "__OTR__textures/item_name_static/gSariasSongItemNameFRATex" +static const ALIGN_ASSET(2) char gSariasSongItemNameFRATex[] = dgSariasSongItemNameFRATex; + +#define dgSunsSongItemNameFRATex "__OTR__textures/item_name_static/gSunsSongItemNameFRATex" +static const ALIGN_ASSET(2) char gSunsSongItemNameFRATex[] = dgSunsSongItemNameFRATex; + +#define dgSongOfTimeItemNameFRATex "__OTR__textures/item_name_static/gSongOfTimeItemNameFRATex" +static const ALIGN_ASSET(2) char gSongOfTimeItemNameFRATex[] = dgSongOfTimeItemNameFRATex; + +#define dgSongOfStormsItemNameFRATex "__OTR__textures/item_name_static/gSongOfStormsItemNameFRATex" +static const ALIGN_ASSET(2) char gSongOfStormsItemNameFRATex[] = dgSongOfStormsItemNameFRATex; + +#define dgForestMedallionItemNameFRATex "__OTR__textures/item_name_static/gForestMedallionItemNameFRATex" +static const ALIGN_ASSET(2) char gForestMedallionItemNameFRATex[] = dgForestMedallionItemNameFRATex; + +#define dgFireMedallionItemNameFRATex "__OTR__textures/item_name_static/gFireMedallionItemNameFRATex" +static const ALIGN_ASSET(2) char gFireMedallionItemNameFRATex[] = dgFireMedallionItemNameFRATex; + +#define dgWaterMedallionItemNameFRATex "__OTR__textures/item_name_static/gWaterMedallionItemNameFRATex" +static const ALIGN_ASSET(2) char gWaterMedallionItemNameFRATex[] = dgWaterMedallionItemNameFRATex; + +#define dgSpiritMedallionItemNameFRATex "__OTR__textures/item_name_static/gSpiritMedallionItemNameFRATex" +static const ALIGN_ASSET(2) char gSpiritMedallionItemNameFRATex[] = dgSpiritMedallionItemNameFRATex; + +#define dgShadowMedallionItemNameFRATex "__OTR__textures/item_name_static/gShadowMedallionItemNameFRATex" +static const ALIGN_ASSET(2) char gShadowMedallionItemNameFRATex[] = dgShadowMedallionItemNameFRATex; + +#define dgLightMedallionItemNameFRATex "__OTR__textures/item_name_static/gLightMedallionItemNameFRATex" +static const ALIGN_ASSET(2) char gLightMedallionItemNameFRATex[] = dgLightMedallionItemNameFRATex; + +#define dgKokiriEmeraldItemNameFRATex "__OTR__textures/item_name_static/gKokiriEmeraldItemNameFRATex" +static const ALIGN_ASSET(2) char gKokiriEmeraldItemNameFRATex[] = dgKokiriEmeraldItemNameFRATex; + +#define dgGoronsRubyItemNameFRATex "__OTR__textures/item_name_static/gGoronsRubyItemNameFRATex" +static const ALIGN_ASSET(2) char gGoronsRubyItemNameFRATex[] = dgGoronsRubyItemNameFRATex; + +#define dgZorasSapphireItemNameFRATex "__OTR__textures/item_name_static/gZorasSapphireItemNameFRATex" +static const ALIGN_ASSET(2) char gZorasSapphireItemNameFRATex[] = dgZorasSapphireItemNameFRATex; + +#define dgStoneofAgonyItemNameFRATex "__OTR__textures/item_name_static/gStoneofAgonyItemNameFRATex" +static const ALIGN_ASSET(2) char gStoneofAgonyItemNameFRATex[] = dgStoneofAgonyItemNameFRATex; + +#define dgGerudosCardItemNameFRATex "__OTR__textures/item_name_static/gGerudosCardItemNameFRATex" +static const ALIGN_ASSET(2) char gGerudosCardItemNameFRATex[] = dgGerudosCardItemNameFRATex; + +#define dgGoldSkulltulaItemNameFRATex "__OTR__textures/item_name_static/gGoldSkulltulaItemNameFRATex" +static const ALIGN_ASSET(2) char gGoldSkulltulaItemNameFRATex[] = dgGoldSkulltulaItemNameFRATex; + +#define dgHeartContainerItemNameFRATex "__OTR__textures/item_name_static/gHeartContainerItemNameFRATex" +static const ALIGN_ASSET(2) char gHeartContainerItemNameFRATex[] = dgHeartContainerItemNameFRATex; + +#define dgUnusedPieceOfHeartItemName3JPNTex "__OTR__textures/item_name_static/gUnusedPieceOfHeartItemName3JPNTex" +static const ALIGN_ASSET(2) char gUnusedPieceOfHeartItemName3JPNTex[] = dgUnusedPieceOfHeartItemName3JPNTex; + +#define dgBossKeyItemNameFRATex "__OTR__textures/item_name_static/gBossKeyItemNameFRATex" +static const ALIGN_ASSET(2) char gBossKeyItemNameFRATex[] = dgBossKeyItemNameFRATex; + +#define dgCompassItemNameFRATex "__OTR__textures/item_name_static/gCompassItemNameFRATex" +static const ALIGN_ASSET(2) char gCompassItemNameFRATex[] = dgCompassItemNameFRATex; + +#define dgDungeonMapItemNameFRATex "__OTR__textures/item_name_static/gDungeonMapItemNameFRATex" +static const ALIGN_ASSET(2) char gDungeonMapItemNameFRATex[] = dgDungeonMapItemNameFRATex; + +#define dgUnusedBossKeyItemName19JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName19JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName19JPNTex[] = dgUnusedBossKeyItemName19JPNTex; + +#define dgUnusedBossKeyItemName20JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName20JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName20JPNTex[] = dgUnusedBossKeyItemName20JPNTex; + +#define dgUnusedBossKeyItemName21JPNTex "__OTR__textures/item_name_static/gUnusedBossKeyItemName21JPNTex" +static const ALIGN_ASSET(2) char gUnusedBossKeyItemName21JPNTex[] = dgUnusedBossKeyItemName21JPNTex; + +#define dgBiggoronsSwordItemNameFRATex "__OTR__textures/item_name_static/gBiggoronsSwordItemNameFRATex" +static const ALIGN_ASSET(2) char gBiggoronsSwordItemNameFRATex[] = dgBiggoronsSwordItemNameFRATex; \ No newline at end of file diff --git a/soh/assets/textures/map_48x85_static/map_48x85_static.h b/soh/assets/textures/map_48x85_static/map_48x85_static.h index 720529882..4e817d49f 100644 --- a/soh/assets/textures/map_48x85_static/map_48x85_static.h +++ b/soh/assets/textures/map_48x85_static/map_48x85_static.h @@ -1,478 +1,207 @@ #pragma once -#define dgDekuTreePauseScreenMapFloor3LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor3LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapFloor3LeftTex[] = dgDekuTreePauseScreenMapFloor3LeftTex; -#else -static const char gDekuTreePauseScreenMapFloor3LeftTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapFloor3LeftTex; -#endif - -#define dgDekuTreePauseScreenMapFloor3RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor3RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapFloor3RightTex[] = dgDekuTreePauseScreenMapFloor3RightTex; -#else -static const char gDekuTreePauseScreenMapFloor3RightTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapFloor3RightTex; -#endif - -#define dgDekuTreePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapFloor2LeftTex[] = dgDekuTreePauseScreenMapFloor2LeftTex; -#else -static const char gDekuTreePauseScreenMapFloor2LeftTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapFloor2LeftTex; -#endif - -#define dgDekuTreePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapFloor2RightTex[] = dgDekuTreePauseScreenMapFloor2RightTex; -#else -static const char gDekuTreePauseScreenMapFloor2RightTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapFloor2RightTex; -#endif - -#define dgDekuTreePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapFloor1LeftTex[] = dgDekuTreePauseScreenMapFloor1LeftTex; -#else -static const char gDekuTreePauseScreenMapFloor1LeftTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapFloor1LeftTex; -#endif - -#define dgDekuTreePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapFloor1RightTex[] = dgDekuTreePauseScreenMapFloor1RightTex; -#else -static const char gDekuTreePauseScreenMapFloor1RightTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapFloor1RightTex; -#endif - -#define dgDekuTreePauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapBasement1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapBasement1LeftTex[] = dgDekuTreePauseScreenMapBasement1LeftTex; -#else -static const char gDekuTreePauseScreenMapBasement1LeftTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapBasement1LeftTex; -#endif - -#define dgDekuTreePauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapBasement1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapBasement1RightTex[] = dgDekuTreePauseScreenMapBasement1RightTex; -#else -static const char gDekuTreePauseScreenMapBasement1RightTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapBasement1RightTex; -#endif - -#define dgDekuTreePauseScreenMapBasement2LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapBasement2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapBasement2LeftTex[] = dgDekuTreePauseScreenMapBasement2LeftTex; -#else -static const char gDekuTreePauseScreenMapBasement2LeftTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapBasement2LeftTex; -#endif - -#define dgDekuTreePauseScreenMapBasement2RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapBasement2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreePauseScreenMapBasement2RightTex[] = dgDekuTreePauseScreenMapBasement2RightTex; -#else -static const char gDekuTreePauseScreenMapBasement2RightTex[] __attribute__((aligned (2))) = dgDekuTreePauseScreenMapBasement2RightTex; -#endif - -#define dgDodongosCavernPauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gDodongosCavernPauseScreenMapFloor2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernPauseScreenMapFloor2LeftTex[] = dgDodongosCavernPauseScreenMapFloor2LeftTex; -#else -static const char gDodongosCavernPauseScreenMapFloor2LeftTex[] __attribute__((aligned (2))) = dgDodongosCavernPauseScreenMapFloor2LeftTex; -#endif - -#define dgDodongosCavernPauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gDodongosCavernPauseScreenMapFloor2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernPauseScreenMapFloor2RightTex[] = dgDodongosCavernPauseScreenMapFloor2RightTex; -#else -static const char gDodongosCavernPauseScreenMapFloor2RightTex[] __attribute__((aligned (2))) = dgDodongosCavernPauseScreenMapFloor2RightTex; -#endif - -#define dgDodongosCavernPauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gDodongosCavernPauseScreenMapFloor1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernPauseScreenMapFloor1LeftTex[] = dgDodongosCavernPauseScreenMapFloor1LeftTex; -#else -static const char gDodongosCavernPauseScreenMapFloor1LeftTex[] __attribute__((aligned (2))) = dgDodongosCavernPauseScreenMapFloor1LeftTex; -#endif - -#define dgDodongosCavernPauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gDodongosCavernPauseScreenMapFloor1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernPauseScreenMapFloor1RightTex[] = dgDodongosCavernPauseScreenMapFloor1RightTex; -#else -static const char gDodongosCavernPauseScreenMapFloor1RightTex[] __attribute__((aligned (2))) = dgDodongosCavernPauseScreenMapFloor1RightTex; -#endif - -#define dgJabuPauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gJabuPauseScreenMapFloor1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuPauseScreenMapFloor1LeftTex[] = dgJabuPauseScreenMapFloor1LeftTex; -#else -static const char gJabuPauseScreenMapFloor1LeftTex[] __attribute__((aligned (2))) = dgJabuPauseScreenMapFloor1LeftTex; -#endif - -#define dgJabuPauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gJabuPauseScreenMapFloor1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuPauseScreenMapFloor1RightTex[] = dgJabuPauseScreenMapFloor1RightTex; -#else -static const char gJabuPauseScreenMapFloor1RightTex[] __attribute__((aligned (2))) = dgJabuPauseScreenMapFloor1RightTex; -#endif - -#define dgJabuPauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gJabuPauseScreenMapBasement1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuPauseScreenMapBasement1LeftTex[] = dgJabuPauseScreenMapBasement1LeftTex; -#else -static const char gJabuPauseScreenMapBasement1LeftTex[] __attribute__((aligned (2))) = dgJabuPauseScreenMapBasement1LeftTex; -#endif - -#define dgJabuPauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gJabuPauseScreenMapBasement1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuPauseScreenMapBasement1RightTex[] = dgJabuPauseScreenMapBasement1RightTex; -#else -static const char gJabuPauseScreenMapBasement1RightTex[] __attribute__((aligned (2))) = dgJabuPauseScreenMapBasement1RightTex; -#endif - -#define dgForestTemplePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapFloor2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTemplePauseScreenMapFloor2LeftTex[] = dgForestTemplePauseScreenMapFloor2LeftTex; -#else -static const char gForestTemplePauseScreenMapFloor2LeftTex[] __attribute__((aligned (2))) = dgForestTemplePauseScreenMapFloor2LeftTex; -#endif - -#define dgForestTemplePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapFloor2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTemplePauseScreenMapFloor2RightTex[] = dgForestTemplePauseScreenMapFloor2RightTex; -#else -static const char gForestTemplePauseScreenMapFloor2RightTex[] __attribute__((aligned (2))) = dgForestTemplePauseScreenMapFloor2RightTex; -#endif - -#define dgForestTemplePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapFloor1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTemplePauseScreenMapFloor1LeftTex[] = dgForestTemplePauseScreenMapFloor1LeftTex; -#else -static const char gForestTemplePauseScreenMapFloor1LeftTex[] __attribute__((aligned (2))) = dgForestTemplePauseScreenMapFloor1LeftTex; -#endif - -#define dgForestTemplePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapFloor1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTemplePauseScreenMapFloor1RightTex[] = dgForestTemplePauseScreenMapFloor1RightTex; -#else -static const char gForestTemplePauseScreenMapFloor1RightTex[] __attribute__((aligned (2))) = dgForestTemplePauseScreenMapFloor1RightTex; -#endif - -#define dgForestTemplePauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapBasement1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTemplePauseScreenMapBasement1LeftTex[] = dgForestTemplePauseScreenMapBasement1LeftTex; -#else -static const char gForestTemplePauseScreenMapBasement1LeftTex[] __attribute__((aligned (2))) = dgForestTemplePauseScreenMapBasement1LeftTex; -#endif - -#define dgForestTemplePauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapBasement1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTemplePauseScreenMapBasement1RightTex[] = dgForestTemplePauseScreenMapBasement1RightTex; -#else -static const char gForestTemplePauseScreenMapBasement1RightTex[] __attribute__((aligned (2))) = dgForestTemplePauseScreenMapBasement1RightTex; -#endif - -#define dgForestTemplePauseScreenMapBasement2LeftTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapBasement2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTemplePauseScreenMapBasement2LeftTex[] = dgForestTemplePauseScreenMapBasement2LeftTex; -#else -static const char gForestTemplePauseScreenMapBasement2LeftTex[] __attribute__((aligned (2))) = dgForestTemplePauseScreenMapBasement2LeftTex; -#endif - -#define dgForestTemplePauseScreenMapBasement2RightTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapBasement2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTemplePauseScreenMapBasement2RightTex[] = dgForestTemplePauseScreenMapBasement2RightTex; -#else -static const char gForestTemplePauseScreenMapBasement2RightTex[] __attribute__((aligned (2))) = dgForestTemplePauseScreenMapBasement2RightTex; -#endif - -#define dgFireTemplePauseScreenMapFloor5LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor5LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor5LeftTex[] = dgFireTemplePauseScreenMapFloor5LeftTex; -#else -static const char gFireTemplePauseScreenMapFloor5LeftTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor5LeftTex; -#endif - -#define dgFireTemplePauseScreenMapFloor5RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor5RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor5RightTex[] = dgFireTemplePauseScreenMapFloor5RightTex; -#else -static const char gFireTemplePauseScreenMapFloor5RightTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor5RightTex; -#endif - -#define dgFireTemplePauseScreenMapFloor4LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor4LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor4LeftTex[] = dgFireTemplePauseScreenMapFloor4LeftTex; -#else -static const char gFireTemplePauseScreenMapFloor4LeftTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor4LeftTex; -#endif - -#define dgFireTemplePauseScreenMapFloor4RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor4RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor4RightTex[] = dgFireTemplePauseScreenMapFloor4RightTex; -#else -static const char gFireTemplePauseScreenMapFloor4RightTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor4RightTex; -#endif - -#define dgFireTemplePauseScreenMapFloor3LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor3LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor3LeftTex[] = dgFireTemplePauseScreenMapFloor3LeftTex; -#else -static const char gFireTemplePauseScreenMapFloor3LeftTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor3LeftTex; -#endif - -#define dgFireTemplePauseScreenMapFloor3RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor3RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor3RightTex[] = dgFireTemplePauseScreenMapFloor3RightTex; -#else -static const char gFireTemplePauseScreenMapFloor3RightTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor3RightTex; -#endif - -#define dgFireTemplePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor2LeftTex[] = dgFireTemplePauseScreenMapFloor2LeftTex; -#else -static const char gFireTemplePauseScreenMapFloor2LeftTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor2LeftTex; -#endif - -#define dgFireTemplePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor2RightTex[] = dgFireTemplePauseScreenMapFloor2RightTex; -#else -static const char gFireTemplePauseScreenMapFloor2RightTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor2RightTex; -#endif - -#define dgFireTemplePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor1LeftTex[] = dgFireTemplePauseScreenMapFloor1LeftTex; -#else -static const char gFireTemplePauseScreenMapFloor1LeftTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor1LeftTex; -#endif - -#define dgFireTemplePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTemplePauseScreenMapFloor1RightTex[] = dgFireTemplePauseScreenMapFloor1RightTex; -#else -static const char gFireTemplePauseScreenMapFloor1RightTex[] __attribute__((aligned (2))) = dgFireTemplePauseScreenMapFloor1RightTex; -#endif - -#define dgWaterTemplePauseScreenMapFloor3LeftTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor3LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTemplePauseScreenMapFloor3LeftTex[] = dgWaterTemplePauseScreenMapFloor3LeftTex; -#else -static const char gWaterTemplePauseScreenMapFloor3LeftTex[] __attribute__((aligned (2))) = dgWaterTemplePauseScreenMapFloor3LeftTex; -#endif - -#define dgWaterTemplePauseScreenMapFloor3RightTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor3RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTemplePauseScreenMapFloor3RightTex[] = dgWaterTemplePauseScreenMapFloor3RightTex; -#else -static const char gWaterTemplePauseScreenMapFloor3RightTex[] __attribute__((aligned (2))) = dgWaterTemplePauseScreenMapFloor3RightTex; -#endif - -#define dgWaterTemplePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTemplePauseScreenMapFloor2LeftTex[] = dgWaterTemplePauseScreenMapFloor2LeftTex; -#else -static const char gWaterTemplePauseScreenMapFloor2LeftTex[] __attribute__((aligned (2))) = dgWaterTemplePauseScreenMapFloor2LeftTex; -#endif - -#define dgWaterTemplePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTemplePauseScreenMapFloor2RightTex[] = dgWaterTemplePauseScreenMapFloor2RightTex; -#else -static const char gWaterTemplePauseScreenMapFloor2RightTex[] __attribute__((aligned (2))) = dgWaterTemplePauseScreenMapFloor2RightTex; -#endif - -#define dgWaterTemplePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTemplePauseScreenMapFloor1LeftTex[] = dgWaterTemplePauseScreenMapFloor1LeftTex; -#else -static const char gWaterTemplePauseScreenMapFloor1LeftTex[] __attribute__((aligned (2))) = dgWaterTemplePauseScreenMapFloor1LeftTex; -#endif - -#define dgWaterTemplePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTemplePauseScreenMapFloor1RightTex[] = dgWaterTemplePauseScreenMapFloor1RightTex; -#else -static const char gWaterTemplePauseScreenMapFloor1RightTex[] __attribute__((aligned (2))) = dgWaterTemplePauseScreenMapFloor1RightTex; -#endif - -#define dgWaterTemplePauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapBasement1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTemplePauseScreenMapBasement1LeftTex[] = dgWaterTemplePauseScreenMapBasement1LeftTex; -#else -static const char gWaterTemplePauseScreenMapBasement1LeftTex[] __attribute__((aligned (2))) = dgWaterTemplePauseScreenMapBasement1LeftTex; -#endif - -#define dgWaterTemplePauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapBasement1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTemplePauseScreenMapBasement1RightTex[] = dgWaterTemplePauseScreenMapBasement1RightTex; -#else -static const char gWaterTemplePauseScreenMapBasement1RightTex[] __attribute__((aligned (2))) = dgWaterTemplePauseScreenMapBasement1RightTex; -#endif - -#define dgSpiritTemplePauseScreenMapFloor4LeftTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor4LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTemplePauseScreenMapFloor4LeftTex[] = dgSpiritTemplePauseScreenMapFloor4LeftTex; -#else -static const char gSpiritTemplePauseScreenMapFloor4LeftTex[] __attribute__((aligned (2))) = dgSpiritTemplePauseScreenMapFloor4LeftTex; -#endif - -#define dgSpiritTemplePauseScreenMapFloor4RightTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor4RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTemplePauseScreenMapFloor4RightTex[] = dgSpiritTemplePauseScreenMapFloor4RightTex; -#else -static const char gSpiritTemplePauseScreenMapFloor4RightTex[] __attribute__((aligned (2))) = dgSpiritTemplePauseScreenMapFloor4RightTex; -#endif - -#define dgSpiritTemplePauseScreenMapFloor3LeftTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor3LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTemplePauseScreenMapFloor3LeftTex[] = dgSpiritTemplePauseScreenMapFloor3LeftTex; -#else -static const char gSpiritTemplePauseScreenMapFloor3LeftTex[] __attribute__((aligned (2))) = dgSpiritTemplePauseScreenMapFloor3LeftTex; -#endif - -#define dgSpiritTemplePauseScreenMapFloor3RightTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor3RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTemplePauseScreenMapFloor3RightTex[] = dgSpiritTemplePauseScreenMapFloor3RightTex; -#else -static const char gSpiritTemplePauseScreenMapFloor3RightTex[] __attribute__((aligned (2))) = dgSpiritTemplePauseScreenMapFloor3RightTex; -#endif - -#define dgSpiritTemplePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTemplePauseScreenMapFloor2LeftTex[] = dgSpiritTemplePauseScreenMapFloor2LeftTex; -#else -static const char gSpiritTemplePauseScreenMapFloor2LeftTex[] __attribute__((aligned (2))) = dgSpiritTemplePauseScreenMapFloor2LeftTex; -#endif - -#define dgSpiritTemplePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTemplePauseScreenMapFloor2RightTex[] = dgSpiritTemplePauseScreenMapFloor2RightTex; -#else -static const char gSpiritTemplePauseScreenMapFloor2RightTex[] __attribute__((aligned (2))) = dgSpiritTemplePauseScreenMapFloor2RightTex; -#endif - -#define dgSpiritTemplePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTemplePauseScreenMapFloor1LeftTex[] = dgSpiritTemplePauseScreenMapFloor1LeftTex; -#else -static const char gSpiritTemplePauseScreenMapFloor1LeftTex[] __attribute__((aligned (2))) = dgSpiritTemplePauseScreenMapFloor1LeftTex; -#endif - -#define dgSpiritTemplePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTemplePauseScreenMapFloor1RightTex[] = dgSpiritTemplePauseScreenMapFloor1RightTex; -#else -static const char gSpiritTemplePauseScreenMapFloor1RightTex[] __attribute__((aligned (2))) = dgSpiritTemplePauseScreenMapFloor1RightTex; -#endif - -#define dgShadowTemplePauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTemplePauseScreenMapBasement1LeftTex[] = dgShadowTemplePauseScreenMapBasement1LeftTex; -#else -static const char gShadowTemplePauseScreenMapBasement1LeftTex[] __attribute__((aligned (2))) = dgShadowTemplePauseScreenMapBasement1LeftTex; -#endif - -#define dgShadowTemplePauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTemplePauseScreenMapBasement1RightTex[] = dgShadowTemplePauseScreenMapBasement1RightTex; -#else -static const char gShadowTemplePauseScreenMapBasement1RightTex[] __attribute__((aligned (2))) = dgShadowTemplePauseScreenMapBasement1RightTex; -#endif - -#define dgShadowTemplePauseScreenMapBasement2LeftTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTemplePauseScreenMapBasement2LeftTex[] = dgShadowTemplePauseScreenMapBasement2LeftTex; -#else -static const char gShadowTemplePauseScreenMapBasement2LeftTex[] __attribute__((aligned (2))) = dgShadowTemplePauseScreenMapBasement2LeftTex; -#endif - -#define dgShadowTemplePauseScreenMapBasement2RightTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTemplePauseScreenMapBasement2RightTex[] = dgShadowTemplePauseScreenMapBasement2RightTex; -#else -static const char gShadowTemplePauseScreenMapBasement2RightTex[] __attribute__((aligned (2))) = dgShadowTemplePauseScreenMapBasement2RightTex; -#endif - -#define dgShadowTemplePauseScreenMapBasement3LeftTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement3LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTemplePauseScreenMapBasement3LeftTex[] = dgShadowTemplePauseScreenMapBasement3LeftTex; -#else -static const char gShadowTemplePauseScreenMapBasement3LeftTex[] __attribute__((aligned (2))) = dgShadowTemplePauseScreenMapBasement3LeftTex; -#endif - -#define dgShadowTemplePauseScreenMapBasement3RightTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement3RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTemplePauseScreenMapBasement3RightTex[] = dgShadowTemplePauseScreenMapBasement3RightTex; -#else -static const char gShadowTemplePauseScreenMapBasement3RightTex[] __attribute__((aligned (2))) = dgShadowTemplePauseScreenMapBasement3RightTex; -#endif - -#define dgShadowTemplePauseScreenMapBasement4LeftTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement4LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTemplePauseScreenMapBasement4LeftTex[] = dgShadowTemplePauseScreenMapBasement4LeftTex; -#else -static const char gShadowTemplePauseScreenMapBasement4LeftTex[] __attribute__((aligned (2))) = dgShadowTemplePauseScreenMapBasement4LeftTex; -#endif - -#define dgShadowTemplePauseScreenMapBasement4RightTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement4RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTemplePauseScreenMapBasement4RightTex[] = dgShadowTemplePauseScreenMapBasement4RightTex; -#else -static const char gShadowTemplePauseScreenMapBasement4RightTex[] __attribute__((aligned (2))) = dgShadowTemplePauseScreenMapBasement4RightTex; -#endif - -#define dgBottomOfTheWellPauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellPauseScreenMapBasement1LeftTex[] = dgBottomOfTheWellPauseScreenMapBasement1LeftTex; -#else -static const char gBottomOfTheWellPauseScreenMapBasement1LeftTex[] __attribute__((aligned (2))) = dgBottomOfTheWellPauseScreenMapBasement1LeftTex; -#endif - -#define dgBottomOfTheWellPauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellPauseScreenMapBasement1RightTex[] = dgBottomOfTheWellPauseScreenMapBasement1RightTex; -#else -static const char gBottomOfTheWellPauseScreenMapBasement1RightTex[] __attribute__((aligned (2))) = dgBottomOfTheWellPauseScreenMapBasement1RightTex; -#endif - -#define dgBottomOfTheWellPauseScreenMapBasement2LeftTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement2LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellPauseScreenMapBasement2LeftTex[] = dgBottomOfTheWellPauseScreenMapBasement2LeftTex; -#else -static const char gBottomOfTheWellPauseScreenMapBasement2LeftTex[] __attribute__((aligned (2))) = dgBottomOfTheWellPauseScreenMapBasement2LeftTex; -#endif - -#define dgBottomOfTheWellPauseScreenMapBasement2RightTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement2RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellPauseScreenMapBasement2RightTex[] = dgBottomOfTheWellPauseScreenMapBasement2RightTex; -#else -static const char gBottomOfTheWellPauseScreenMapBasement2RightTex[] __attribute__((aligned (2))) = dgBottomOfTheWellPauseScreenMapBasement2RightTex; -#endif - -#define dgBottomOfTheWellPauseScreenMapBasement3LeftTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement3LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellPauseScreenMapBasement3LeftTex[] = dgBottomOfTheWellPauseScreenMapBasement3LeftTex; -#else -static const char gBottomOfTheWellPauseScreenMapBasement3LeftTex[] __attribute__((aligned (2))) = dgBottomOfTheWellPauseScreenMapBasement3LeftTex; -#endif - -#define dgBottomOfTheWellPauseScreenMapBasement3RightTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement3RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellPauseScreenMapBasement3RightTex[] = dgBottomOfTheWellPauseScreenMapBasement3RightTex; -#else -static const char gBottomOfTheWellPauseScreenMapBasement3RightTex[] __attribute__((aligned (2))) = dgBottomOfTheWellPauseScreenMapBasement3RightTex; -#endif - -#define dgIceCavernPauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gIceCavernPauseScreenMapFloor1LeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernPauseScreenMapFloor1LeftTex[] = dgIceCavernPauseScreenMapFloor1LeftTex; -#else -static const char gIceCavernPauseScreenMapFloor1LeftTex[] __attribute__((aligned (2))) = dgIceCavernPauseScreenMapFloor1LeftTex; -#endif - -#define dgIceCavernPauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gIceCavernPauseScreenMapFloor1RightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernPauseScreenMapFloor1RightTex[] = dgIceCavernPauseScreenMapFloor1RightTex; -#else -static const char gIceCavernPauseScreenMapFloor1RightTex[] __attribute__((aligned (2))) = dgIceCavernPauseScreenMapFloor1RightTex; -#endif - +#include "align_asset_macro.h" + +#define dgDekuTreePauseScreenMapFloor3LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor3LeftTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapFloor3LeftTex[] = dgDekuTreePauseScreenMapFloor3LeftTex; + +#define dgDekuTreePauseScreenMapFloor3RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor3RightTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapFloor3RightTex[] = dgDekuTreePauseScreenMapFloor3RightTex; + +#define dgDekuTreePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor2LeftTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapFloor2LeftTex[] = dgDekuTreePauseScreenMapFloor2LeftTex; + +#define dgDekuTreePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor2RightTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapFloor2RightTex[] = dgDekuTreePauseScreenMapFloor2RightTex; + +#define dgDekuTreePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor1LeftTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapFloor1LeftTex[] = dgDekuTreePauseScreenMapFloor1LeftTex; + +#define dgDekuTreePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapFloor1RightTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapFloor1RightTex[] = dgDekuTreePauseScreenMapFloor1RightTex; + +#define dgDekuTreePauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapBasement1LeftTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapBasement1LeftTex[] = dgDekuTreePauseScreenMapBasement1LeftTex; + +#define dgDekuTreePauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapBasement1RightTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapBasement1RightTex[] = dgDekuTreePauseScreenMapBasement1RightTex; + +#define dgDekuTreePauseScreenMapBasement2LeftTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapBasement2LeftTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapBasement2LeftTex[] = dgDekuTreePauseScreenMapBasement2LeftTex; + +#define dgDekuTreePauseScreenMapBasement2RightTex "__OTR__textures/map_48x85_static/gDekuTreePauseScreenMapBasement2RightTex" +static const ALIGN_ASSET(2) char gDekuTreePauseScreenMapBasement2RightTex[] = dgDekuTreePauseScreenMapBasement2RightTex; + +#define dgDodongosCavernPauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gDodongosCavernPauseScreenMapFloor2LeftTex" +static const ALIGN_ASSET(2) char gDodongosCavernPauseScreenMapFloor2LeftTex[] = dgDodongosCavernPauseScreenMapFloor2LeftTex; + +#define dgDodongosCavernPauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gDodongosCavernPauseScreenMapFloor2RightTex" +static const ALIGN_ASSET(2) char gDodongosCavernPauseScreenMapFloor2RightTex[] = dgDodongosCavernPauseScreenMapFloor2RightTex; + +#define dgDodongosCavernPauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gDodongosCavernPauseScreenMapFloor1LeftTex" +static const ALIGN_ASSET(2) char gDodongosCavernPauseScreenMapFloor1LeftTex[] = dgDodongosCavernPauseScreenMapFloor1LeftTex; + +#define dgDodongosCavernPauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gDodongosCavernPauseScreenMapFloor1RightTex" +static const ALIGN_ASSET(2) char gDodongosCavernPauseScreenMapFloor1RightTex[] = dgDodongosCavernPauseScreenMapFloor1RightTex; + +#define dgJabuPauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gJabuPauseScreenMapFloor1LeftTex" +static const ALIGN_ASSET(2) char gJabuPauseScreenMapFloor1LeftTex[] = dgJabuPauseScreenMapFloor1LeftTex; + +#define dgJabuPauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gJabuPauseScreenMapFloor1RightTex" +static const ALIGN_ASSET(2) char gJabuPauseScreenMapFloor1RightTex[] = dgJabuPauseScreenMapFloor1RightTex; + +#define dgJabuPauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gJabuPauseScreenMapBasement1LeftTex" +static const ALIGN_ASSET(2) char gJabuPauseScreenMapBasement1LeftTex[] = dgJabuPauseScreenMapBasement1LeftTex; + +#define dgJabuPauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gJabuPauseScreenMapBasement1RightTex" +static const ALIGN_ASSET(2) char gJabuPauseScreenMapBasement1RightTex[] = dgJabuPauseScreenMapBasement1RightTex; + +#define dgForestTemplePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapFloor2LeftTex" +static const ALIGN_ASSET(2) char gForestTemplePauseScreenMapFloor2LeftTex[] = dgForestTemplePauseScreenMapFloor2LeftTex; + +#define dgForestTemplePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapFloor2RightTex" +static const ALIGN_ASSET(2) char gForestTemplePauseScreenMapFloor2RightTex[] = dgForestTemplePauseScreenMapFloor2RightTex; + +#define dgForestTemplePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapFloor1LeftTex" +static const ALIGN_ASSET(2) char gForestTemplePauseScreenMapFloor1LeftTex[] = dgForestTemplePauseScreenMapFloor1LeftTex; + +#define dgForestTemplePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapFloor1RightTex" +static const ALIGN_ASSET(2) char gForestTemplePauseScreenMapFloor1RightTex[] = dgForestTemplePauseScreenMapFloor1RightTex; + +#define dgForestTemplePauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapBasement1LeftTex" +static const ALIGN_ASSET(2) char gForestTemplePauseScreenMapBasement1LeftTex[] = dgForestTemplePauseScreenMapBasement1LeftTex; + +#define dgForestTemplePauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapBasement1RightTex" +static const ALIGN_ASSET(2) char gForestTemplePauseScreenMapBasement1RightTex[] = dgForestTemplePauseScreenMapBasement1RightTex; + +#define dgForestTemplePauseScreenMapBasement2LeftTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapBasement2LeftTex" +static const ALIGN_ASSET(2) char gForestTemplePauseScreenMapBasement2LeftTex[] = dgForestTemplePauseScreenMapBasement2LeftTex; + +#define dgForestTemplePauseScreenMapBasement2RightTex "__OTR__textures/map_48x85_static/gForestTemplePauseScreenMapBasement2RightTex" +static const ALIGN_ASSET(2) char gForestTemplePauseScreenMapBasement2RightTex[] = dgForestTemplePauseScreenMapBasement2RightTex; + +#define dgFireTemplePauseScreenMapFloor5LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor5LeftTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor5LeftTex[] = dgFireTemplePauseScreenMapFloor5LeftTex; + +#define dgFireTemplePauseScreenMapFloor5RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor5RightTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor5RightTex[] = dgFireTemplePauseScreenMapFloor5RightTex; + +#define dgFireTemplePauseScreenMapFloor4LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor4LeftTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor4LeftTex[] = dgFireTemplePauseScreenMapFloor4LeftTex; + +#define dgFireTemplePauseScreenMapFloor4RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor4RightTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor4RightTex[] = dgFireTemplePauseScreenMapFloor4RightTex; + +#define dgFireTemplePauseScreenMapFloor3LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor3LeftTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor3LeftTex[] = dgFireTemplePauseScreenMapFloor3LeftTex; + +#define dgFireTemplePauseScreenMapFloor3RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor3RightTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor3RightTex[] = dgFireTemplePauseScreenMapFloor3RightTex; + +#define dgFireTemplePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor2LeftTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor2LeftTex[] = dgFireTemplePauseScreenMapFloor2LeftTex; + +#define dgFireTemplePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor2RightTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor2RightTex[] = dgFireTemplePauseScreenMapFloor2RightTex; + +#define dgFireTemplePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor1LeftTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor1LeftTex[] = dgFireTemplePauseScreenMapFloor1LeftTex; + +#define dgFireTemplePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gFireTemplePauseScreenMapFloor1RightTex" +static const ALIGN_ASSET(2) char gFireTemplePauseScreenMapFloor1RightTex[] = dgFireTemplePauseScreenMapFloor1RightTex; + +#define dgWaterTemplePauseScreenMapFloor3LeftTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor3LeftTex" +static const ALIGN_ASSET(2) char gWaterTemplePauseScreenMapFloor3LeftTex[] = dgWaterTemplePauseScreenMapFloor3LeftTex; + +#define dgWaterTemplePauseScreenMapFloor3RightTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor3RightTex" +static const ALIGN_ASSET(2) char gWaterTemplePauseScreenMapFloor3RightTex[] = dgWaterTemplePauseScreenMapFloor3RightTex; + +#define dgWaterTemplePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor2LeftTex" +static const ALIGN_ASSET(2) char gWaterTemplePauseScreenMapFloor2LeftTex[] = dgWaterTemplePauseScreenMapFloor2LeftTex; + +#define dgWaterTemplePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor2RightTex" +static const ALIGN_ASSET(2) char gWaterTemplePauseScreenMapFloor2RightTex[] = dgWaterTemplePauseScreenMapFloor2RightTex; + +#define dgWaterTemplePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor1LeftTex" +static const ALIGN_ASSET(2) char gWaterTemplePauseScreenMapFloor1LeftTex[] = dgWaterTemplePauseScreenMapFloor1LeftTex; + +#define dgWaterTemplePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapFloor1RightTex" +static const ALIGN_ASSET(2) char gWaterTemplePauseScreenMapFloor1RightTex[] = dgWaterTemplePauseScreenMapFloor1RightTex; + +#define dgWaterTemplePauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapBasement1LeftTex" +static const ALIGN_ASSET(2) char gWaterTemplePauseScreenMapBasement1LeftTex[] = dgWaterTemplePauseScreenMapBasement1LeftTex; + +#define dgWaterTemplePauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gWaterTemplePauseScreenMapBasement1RightTex" +static const ALIGN_ASSET(2) char gWaterTemplePauseScreenMapBasement1RightTex[] = dgWaterTemplePauseScreenMapBasement1RightTex; + +#define dgSpiritTemplePauseScreenMapFloor4LeftTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor4LeftTex" +static const ALIGN_ASSET(2) char gSpiritTemplePauseScreenMapFloor4LeftTex[] = dgSpiritTemplePauseScreenMapFloor4LeftTex; + +#define dgSpiritTemplePauseScreenMapFloor4RightTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor4RightTex" +static const ALIGN_ASSET(2) char gSpiritTemplePauseScreenMapFloor4RightTex[] = dgSpiritTemplePauseScreenMapFloor4RightTex; + +#define dgSpiritTemplePauseScreenMapFloor3LeftTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor3LeftTex" +static const ALIGN_ASSET(2) char gSpiritTemplePauseScreenMapFloor3LeftTex[] = dgSpiritTemplePauseScreenMapFloor3LeftTex; + +#define dgSpiritTemplePauseScreenMapFloor3RightTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor3RightTex" +static const ALIGN_ASSET(2) char gSpiritTemplePauseScreenMapFloor3RightTex[] = dgSpiritTemplePauseScreenMapFloor3RightTex; + +#define dgSpiritTemplePauseScreenMapFloor2LeftTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor2LeftTex" +static const ALIGN_ASSET(2) char gSpiritTemplePauseScreenMapFloor2LeftTex[] = dgSpiritTemplePauseScreenMapFloor2LeftTex; + +#define dgSpiritTemplePauseScreenMapFloor2RightTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor2RightTex" +static const ALIGN_ASSET(2) char gSpiritTemplePauseScreenMapFloor2RightTex[] = dgSpiritTemplePauseScreenMapFloor2RightTex; + +#define dgSpiritTemplePauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor1LeftTex" +static const ALIGN_ASSET(2) char gSpiritTemplePauseScreenMapFloor1LeftTex[] = dgSpiritTemplePauseScreenMapFloor1LeftTex; + +#define dgSpiritTemplePauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gSpiritTemplePauseScreenMapFloor1RightTex" +static const ALIGN_ASSET(2) char gSpiritTemplePauseScreenMapFloor1RightTex[] = dgSpiritTemplePauseScreenMapFloor1RightTex; + +#define dgShadowTemplePauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement1LeftTex" +static const ALIGN_ASSET(2) char gShadowTemplePauseScreenMapBasement1LeftTex[] = dgShadowTemplePauseScreenMapBasement1LeftTex; + +#define dgShadowTemplePauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement1RightTex" +static const ALIGN_ASSET(2) char gShadowTemplePauseScreenMapBasement1RightTex[] = dgShadowTemplePauseScreenMapBasement1RightTex; + +#define dgShadowTemplePauseScreenMapBasement2LeftTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement2LeftTex" +static const ALIGN_ASSET(2) char gShadowTemplePauseScreenMapBasement2LeftTex[] = dgShadowTemplePauseScreenMapBasement2LeftTex; + +#define dgShadowTemplePauseScreenMapBasement2RightTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement2RightTex" +static const ALIGN_ASSET(2) char gShadowTemplePauseScreenMapBasement2RightTex[] = dgShadowTemplePauseScreenMapBasement2RightTex; + +#define dgShadowTemplePauseScreenMapBasement3LeftTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement3LeftTex" +static const ALIGN_ASSET(2) char gShadowTemplePauseScreenMapBasement3LeftTex[] = dgShadowTemplePauseScreenMapBasement3LeftTex; + +#define dgShadowTemplePauseScreenMapBasement3RightTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement3RightTex" +static const ALIGN_ASSET(2) char gShadowTemplePauseScreenMapBasement3RightTex[] = dgShadowTemplePauseScreenMapBasement3RightTex; + +#define dgShadowTemplePauseScreenMapBasement4LeftTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement4LeftTex" +static const ALIGN_ASSET(2) char gShadowTemplePauseScreenMapBasement4LeftTex[] = dgShadowTemplePauseScreenMapBasement4LeftTex; + +#define dgShadowTemplePauseScreenMapBasement4RightTex "__OTR__textures/map_48x85_static/gShadowTemplePauseScreenMapBasement4RightTex" +static const ALIGN_ASSET(2) char gShadowTemplePauseScreenMapBasement4RightTex[] = dgShadowTemplePauseScreenMapBasement4RightTex; + +#define dgBottomOfTheWellPauseScreenMapBasement1LeftTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement1LeftTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellPauseScreenMapBasement1LeftTex[] = dgBottomOfTheWellPauseScreenMapBasement1LeftTex; + +#define dgBottomOfTheWellPauseScreenMapBasement1RightTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement1RightTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellPauseScreenMapBasement1RightTex[] = dgBottomOfTheWellPauseScreenMapBasement1RightTex; + +#define dgBottomOfTheWellPauseScreenMapBasement2LeftTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement2LeftTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellPauseScreenMapBasement2LeftTex[] = dgBottomOfTheWellPauseScreenMapBasement2LeftTex; + +#define dgBottomOfTheWellPauseScreenMapBasement2RightTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement2RightTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellPauseScreenMapBasement2RightTex[] = dgBottomOfTheWellPauseScreenMapBasement2RightTex; + +#define dgBottomOfTheWellPauseScreenMapBasement3LeftTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement3LeftTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellPauseScreenMapBasement3LeftTex[] = dgBottomOfTheWellPauseScreenMapBasement3LeftTex; + +#define dgBottomOfTheWellPauseScreenMapBasement3RightTex "__OTR__textures/map_48x85_static/gBottomOfTheWellPauseScreenMapBasement3RightTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellPauseScreenMapBasement3RightTex[] = dgBottomOfTheWellPauseScreenMapBasement3RightTex; + +#define dgIceCavernPauseScreenMapFloor1LeftTex "__OTR__textures/map_48x85_static/gIceCavernPauseScreenMapFloor1LeftTex" +static const ALIGN_ASSET(2) char gIceCavernPauseScreenMapFloor1LeftTex[] = dgIceCavernPauseScreenMapFloor1LeftTex; + +#define dgIceCavernPauseScreenMapFloor1RightTex "__OTR__textures/map_48x85_static/gIceCavernPauseScreenMapFloor1RightTex" +static const ALIGN_ASSET(2) char gIceCavernPauseScreenMapFloor1RightTex[] = dgIceCavernPauseScreenMapFloor1RightTex; \ No newline at end of file diff --git a/soh/assets/textures/map_grand_static/map_grand_static.h b/soh/assets/textures/map_grand_static/map_grand_static.h index f3e1ab59a..e2921cada 100644 --- a/soh/assets/textures/map_grand_static/map_grand_static.h +++ b/soh/assets/textures/map_grand_static/map_grand_static.h @@ -1,170 +1,75 @@ #pragma once -#define dgHyruleFieldMinimapTex "__OTR__textures/map_grand_static/gHyruleFieldMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldMinimapTex[] = dgHyruleFieldMinimapTex; -#else -static const char gHyruleFieldMinimapTex[] __attribute__((aligned (2))) = dgHyruleFieldMinimapTex; -#endif - -#define dgKakarikoVillageMinimapTex "__OTR__textures/map_grand_static/gKakarikoVillageMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillageMinimapTex[] = dgKakarikoVillageMinimapTex; -#else -static const char gKakarikoVillageMinimapTex[] __attribute__((aligned (2))) = dgKakarikoVillageMinimapTex; -#endif - -#define dgGraveyardMinimapTex "__OTR__textures/map_grand_static/gGraveyardMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardMinimapTex[] = dgGraveyardMinimapTex; -#else -static const char gGraveyardMinimapTex[] __attribute__((aligned (2))) = dgGraveyardMinimapTex; -#endif - -#define dgZorasRiverMinimapTex "__OTR__textures/map_grand_static/gZorasRiverMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasRiverMinimapTex[] = dgZorasRiverMinimapTex; -#else -static const char gZorasRiverMinimapTex[] __attribute__((aligned (2))) = dgZorasRiverMinimapTex; -#endif - -#define dgKokiriForestMinimapTex "__OTR__textures/map_grand_static/gKokiriForestMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestMinimapTex[] = dgKokiriForestMinimapTex; -#else -static const char gKokiriForestMinimapTex[] __attribute__((aligned (2))) = dgKokiriForestMinimapTex; -#endif - -#define dgSacredMeadowMinimapTex "__OTR__textures/map_grand_static/gSacredMeadowMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSacredMeadowMinimapTex[] = dgSacredMeadowMinimapTex; -#else -static const char gSacredMeadowMinimapTex[] __attribute__((aligned (2))) = dgSacredMeadowMinimapTex; -#endif - -#define dgLakeHyliaMinimapTex "__OTR__textures/map_grand_static/gLakeHyliaMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaMinimapTex[] = dgLakeHyliaMinimapTex; -#else -static const char gLakeHyliaMinimapTex[] __attribute__((aligned (2))) = dgLakeHyliaMinimapTex; -#endif - -#define dgZorasDomainMinimapTex "__OTR__textures/map_grand_static/gZorasDomainMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainMinimapTex[] = dgZorasDomainMinimapTex; -#else -static const char gZorasDomainMinimapTex[] __attribute__((aligned (2))) = dgZorasDomainMinimapTex; -#endif - -#define dgZorasFountainMinimapTex "__OTR__textures/map_grand_static/gZorasFountainMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainMinimapTex[] = dgZorasFountainMinimapTex; -#else -static const char gZorasFountainMinimapTex[] __attribute__((aligned (2))) = dgZorasFountainMinimapTex; -#endif - -#define dgGerudoValleyMinimapTex "__OTR__textures/map_grand_static/gGerudoValleyMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyMinimapTex[] = dgGerudoValleyMinimapTex; -#else -static const char gGerudoValleyMinimapTex[] __attribute__((aligned (2))) = dgGerudoValleyMinimapTex; -#endif - -#define dgHauntedWastelandMinimapTex "__OTR__textures/map_grand_static/gHauntedWastelandMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandMinimapTex[] = dgHauntedWastelandMinimapTex; -#else -static const char gHauntedWastelandMinimapTex[] __attribute__((aligned (2))) = dgHauntedWastelandMinimapTex; -#endif - -#define dgDesertColossusMinimapTex "__OTR__textures/map_grand_static/gDesertColossusMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusMinimapTex[] = dgDesertColossusMinimapTex; -#else -static const char gDesertColossusMinimapTex[] __attribute__((aligned (2))) = dgDesertColossusMinimapTex; -#endif - -#define dgGerudosFortessMinimapTex "__OTR__textures/map_grand_static/gGerudosFortessMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosFortessMinimapTex[] = dgGerudosFortessMinimapTex; -#else -static const char gGerudosFortessMinimapTex[] __attribute__((aligned (2))) = dgGerudosFortessMinimapTex; -#endif - -#define dgLostWoodsMinimapTex "__OTR__textures/map_grand_static/gLostWoodsMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsMinimapTex[] = dgLostWoodsMinimapTex; -#else -static const char gLostWoodsMinimapTex[] __attribute__((aligned (2))) = dgLostWoodsMinimapTex; -#endif - -#define dgHyruleCastleAreaMinimapTex "__OTR__textures/map_grand_static/gHyruleCastleAreaMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleCastleAreaMinimapTex[] = dgHyruleCastleAreaMinimapTex; -#else -static const char gHyruleCastleAreaMinimapTex[] __attribute__((aligned (2))) = dgHyruleCastleAreaMinimapTex; -#endif - -#define dgDeathMountainTrailMinimapTex "__OTR__textures/map_grand_static/gDeathMountainTrailMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainTrailMinimapTex[] = dgDeathMountainTrailMinimapTex; -#else -static const char gDeathMountainTrailMinimapTex[] __attribute__((aligned (2))) = dgDeathMountainTrailMinimapTex; -#endif - -#define dgDeathMountainCraterMinimapTex "__OTR__textures/map_grand_static/gDeathMountainCraterMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterMinimapTex[] = dgDeathMountainCraterMinimapTex; -#else -static const char gDeathMountainCraterMinimapTex[] __attribute__((aligned (2))) = dgDeathMountainCraterMinimapTex; -#endif - -#define dgGoronCityMinimapTex "__OTR__textures/map_grand_static/gGoronCityMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityMinimapTex[] = dgGoronCityMinimapTex; -#else -static const char gGoronCityMinimapTex[] __attribute__((aligned (2))) = dgGoronCityMinimapTex; -#endif - -#define dgLonLonRanchMinimapTex "__OTR__textures/map_grand_static/gLonLonRanchMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchMinimapTex[] = dgLonLonRanchMinimapTex; -#else -static const char gLonLonRanchMinimapTex[] __attribute__((aligned (2))) = dgLonLonRanchMinimapTex; -#endif - -#define dgOutsideGanonsCastleMinimapTex "__OTR__textures/map_grand_static/gOutsideGanonsCastleMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOutsideGanonsCastleMinimapTex[] = dgOutsideGanonsCastleMinimapTex; -#else -static const char gOutsideGanonsCastleMinimapTex[] __attribute__((aligned (2))) = dgOutsideGanonsCastleMinimapTex; -#endif - -#define dgExploredShadowGraveyardMinimapTex "__OTR__textures/map_grand_static/gExploredShadowGraveyardMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gExploredShadowGraveyardMinimapTex[] = dgExploredShadowGraveyardMinimapTex; -#else -static const char gExploredShadowGraveyardMinimapTex[] __attribute__((aligned (2))) = dgExploredShadowGraveyardMinimapTex; -#endif - -#define dgDrainedLakeHyliaMinimapTex "__OTR__textures/map_grand_static/gDrainedLakeHyliaMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDrainedLakeHyliaMinimapTex[] = dgDrainedLakeHyliaMinimapTex; -#else -static const char gDrainedLakeHyliaMinimapTex[] __attribute__((aligned (2))) = dgDrainedLakeHyliaMinimapTex; -#endif - -#define dgGerudoValleyWithBrokenBridgeMinimapTex "__OTR__textures/map_grand_static/gGerudoValleyWithBrokenBridgeMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyWithBrokenBridgeMinimapTex[] = dgGerudoValleyWithBrokenBridgeMinimapTex; -#else -static const char gGerudoValleyWithBrokenBridgeMinimapTex[] __attribute__((aligned (2))) = dgGerudoValleyWithBrokenBridgeMinimapTex; -#endif - -#define dgGerudosFortressMinimapTex "__OTR__textures/map_grand_static/gGerudosFortressMinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosFortressMinimapTex[] = dgGerudosFortressMinimapTex; -#else -static const char gGerudosFortressMinimapTex[] __attribute__((aligned (2))) = dgGerudosFortressMinimapTex; -#endif - +#include "align_asset_macro.h" + +#define dgHyruleFieldMinimapTex "__OTR__textures/map_grand_static/gHyruleFieldMinimapTex" +static const ALIGN_ASSET(2) char gHyruleFieldMinimapTex[] = dgHyruleFieldMinimapTex; + +#define dgKakarikoVillageMinimapTex "__OTR__textures/map_grand_static/gKakarikoVillageMinimapTex" +static const ALIGN_ASSET(2) char gKakarikoVillageMinimapTex[] = dgKakarikoVillageMinimapTex; + +#define dgGraveyardMinimapTex "__OTR__textures/map_grand_static/gGraveyardMinimapTex" +static const ALIGN_ASSET(2) char gGraveyardMinimapTex[] = dgGraveyardMinimapTex; + +#define dgZorasRiverMinimapTex "__OTR__textures/map_grand_static/gZorasRiverMinimapTex" +static const ALIGN_ASSET(2) char gZorasRiverMinimapTex[] = dgZorasRiverMinimapTex; + +#define dgKokiriForestMinimapTex "__OTR__textures/map_grand_static/gKokiriForestMinimapTex" +static const ALIGN_ASSET(2) char gKokiriForestMinimapTex[] = dgKokiriForestMinimapTex; + +#define dgSacredMeadowMinimapTex "__OTR__textures/map_grand_static/gSacredMeadowMinimapTex" +static const ALIGN_ASSET(2) char gSacredMeadowMinimapTex[] = dgSacredMeadowMinimapTex; + +#define dgLakeHyliaMinimapTex "__OTR__textures/map_grand_static/gLakeHyliaMinimapTex" +static const ALIGN_ASSET(2) char gLakeHyliaMinimapTex[] = dgLakeHyliaMinimapTex; + +#define dgZorasDomainMinimapTex "__OTR__textures/map_grand_static/gZorasDomainMinimapTex" +static const ALIGN_ASSET(2) char gZorasDomainMinimapTex[] = dgZorasDomainMinimapTex; + +#define dgZorasFountainMinimapTex "__OTR__textures/map_grand_static/gZorasFountainMinimapTex" +static const ALIGN_ASSET(2) char gZorasFountainMinimapTex[] = dgZorasFountainMinimapTex; + +#define dgGerudoValleyMinimapTex "__OTR__textures/map_grand_static/gGerudoValleyMinimapTex" +static const ALIGN_ASSET(2) char gGerudoValleyMinimapTex[] = dgGerudoValleyMinimapTex; + +#define dgHauntedWastelandMinimapTex "__OTR__textures/map_grand_static/gHauntedWastelandMinimapTex" +static const ALIGN_ASSET(2) char gHauntedWastelandMinimapTex[] = dgHauntedWastelandMinimapTex; + +#define dgDesertColossusMinimapTex "__OTR__textures/map_grand_static/gDesertColossusMinimapTex" +static const ALIGN_ASSET(2) char gDesertColossusMinimapTex[] = dgDesertColossusMinimapTex; + +#define dgGerudosFortessMinimapTex "__OTR__textures/map_grand_static/gGerudosFortessMinimapTex" +static const ALIGN_ASSET(2) char gGerudosFortessMinimapTex[] = dgGerudosFortessMinimapTex; + +#define dgLostWoodsMinimapTex "__OTR__textures/map_grand_static/gLostWoodsMinimapTex" +static const ALIGN_ASSET(2) char gLostWoodsMinimapTex[] = dgLostWoodsMinimapTex; + +#define dgHyruleCastleAreaMinimapTex "__OTR__textures/map_grand_static/gHyruleCastleAreaMinimapTex" +static const ALIGN_ASSET(2) char gHyruleCastleAreaMinimapTex[] = dgHyruleCastleAreaMinimapTex; + +#define dgDeathMountainTrailMinimapTex "__OTR__textures/map_grand_static/gDeathMountainTrailMinimapTex" +static const ALIGN_ASSET(2) char gDeathMountainTrailMinimapTex[] = dgDeathMountainTrailMinimapTex; + +#define dgDeathMountainCraterMinimapTex "__OTR__textures/map_grand_static/gDeathMountainCraterMinimapTex" +static const ALIGN_ASSET(2) char gDeathMountainCraterMinimapTex[] = dgDeathMountainCraterMinimapTex; + +#define dgGoronCityMinimapTex "__OTR__textures/map_grand_static/gGoronCityMinimapTex" +static const ALIGN_ASSET(2) char gGoronCityMinimapTex[] = dgGoronCityMinimapTex; + +#define dgLonLonRanchMinimapTex "__OTR__textures/map_grand_static/gLonLonRanchMinimapTex" +static const ALIGN_ASSET(2) char gLonLonRanchMinimapTex[] = dgLonLonRanchMinimapTex; + +#define dgOutsideGanonsCastleMinimapTex "__OTR__textures/map_grand_static/gOutsideGanonsCastleMinimapTex" +static const ALIGN_ASSET(2) char gOutsideGanonsCastleMinimapTex[] = dgOutsideGanonsCastleMinimapTex; + +#define dgExploredShadowGraveyardMinimapTex "__OTR__textures/map_grand_static/gExploredShadowGraveyardMinimapTex" +static const ALIGN_ASSET(2) char gExploredShadowGraveyardMinimapTex[] = dgExploredShadowGraveyardMinimapTex; + +#define dgDrainedLakeHyliaMinimapTex "__OTR__textures/map_grand_static/gDrainedLakeHyliaMinimapTex" +static const ALIGN_ASSET(2) char gDrainedLakeHyliaMinimapTex[] = dgDrainedLakeHyliaMinimapTex; + +#define dgGerudoValleyWithBrokenBridgeMinimapTex "__OTR__textures/map_grand_static/gGerudoValleyWithBrokenBridgeMinimapTex" +static const ALIGN_ASSET(2) char gGerudoValleyWithBrokenBridgeMinimapTex[] = dgGerudoValleyWithBrokenBridgeMinimapTex; + +#define dgGerudosFortressMinimapTex "__OTR__textures/map_grand_static/gGerudosFortressMinimapTex" +static const ALIGN_ASSET(2) char gGerudosFortressMinimapTex[] = dgGerudosFortressMinimapTex; \ No newline at end of file diff --git a/soh/assets/textures/map_i_static/map_i_static.h b/soh/assets/textures/map_i_static/map_i_static.h index 38ee8b0fc..cf6631830 100644 --- a/soh/assets/textures/map_i_static/map_i_static.h +++ b/soh/assets/textures/map_i_static/map_i_static.h @@ -1,1675 +1,720 @@ #pragma once -#define dgDekuTreeRoom0Floor1MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom0Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom0Floor1MinimapTex[] = dgDekuTreeRoom0Floor1MinimapTex; -#else -static const char gDekuTreeRoom0Floor1MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom0Floor1MinimapTex; -#endif - -#define dgDekuTreeRoom1MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom1MinimapTex[] = dgDekuTreeRoom1MinimapTex; -#else -static const char gDekuTreeRoom1MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom1MinimapTex; -#endif - -#define dgDekuTreeRoom2MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom2MinimapTex[] = dgDekuTreeRoom2MinimapTex; -#else -static const char gDekuTreeRoom2MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom2MinimapTex; -#endif - -#define dgDekuTreeRoom3MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom3MinimapTex[] = dgDekuTreeRoom3MinimapTex; -#else -static const char gDekuTreeRoom3MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom3MinimapTex; -#endif - -#define dgDekuTreeRoom4MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom4MinimapTex[] = dgDekuTreeRoom4MinimapTex; -#else -static const char gDekuTreeRoom4MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom4MinimapTex; -#endif - -#define dgDekuTreeRoom5MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom5MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom5MinimapTex[] = dgDekuTreeRoom5MinimapTex; -#else -static const char gDekuTreeRoom5MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom5MinimapTex; -#endif - -#define dgDekuTreeRoom6MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom6MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom6MinimapTex[] = dgDekuTreeRoom6MinimapTex; -#else -static const char gDekuTreeRoom6MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom6MinimapTex; -#endif - -#define dgDekuTreeRoom7MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom7MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom7MinimapTex[] = dgDekuTreeRoom7MinimapTex; -#else -static const char gDekuTreeRoom7MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom7MinimapTex; -#endif - -#define dgDekuTreeRoom8MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom8MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom8MinimapTex[] = dgDekuTreeRoom8MinimapTex; -#else -static const char gDekuTreeRoom8MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom8MinimapTex; -#endif - -#define dgDekuTreeRoom9MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom9MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom9MinimapTex[] = dgDekuTreeRoom9MinimapTex; -#else -static const char gDekuTreeRoom9MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom9MinimapTex; -#endif - -#define dgDekuTreeRoom10MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom10MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom10MinimapTex[] = dgDekuTreeRoom10MinimapTex; -#else -static const char gDekuTreeRoom10MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom10MinimapTex; -#endif - -#define dgDekuTreeRoom0Floor2MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom0Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom0Floor2MinimapTex[] = dgDekuTreeRoom0Floor2MinimapTex; -#else -static const char gDekuTreeRoom0Floor2MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom0Floor2MinimapTex; -#endif - -#define dgDekuTreeRoom0Floor3MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom0Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeRoom0Floor3MinimapTex[] = dgDekuTreeRoom0Floor3MinimapTex; -#else -static const char gDekuTreeRoom0Floor3MinimapTex[] __attribute__((aligned (2))) = dgDekuTreeRoom0Floor3MinimapTex; -#endif - -#define dgDodongosCavernRoom0MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom0MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom0MinimapTex[] = dgDodongosCavernRoom0MinimapTex; -#else -static const char gDodongosCavernRoom0MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom0MinimapTex; -#endif - -#define dgDodongosCavernRoom1MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom1MinimapTex[] = dgDodongosCavernRoom1MinimapTex; -#else -static const char gDodongosCavernRoom1MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom1MinimapTex; -#endif - -#define dgDodongosCavernRoom2MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom2MinimapTex[] = dgDodongosCavernRoom2MinimapTex; -#else -static const char gDodongosCavernRoom2MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom2MinimapTex; -#endif - -#define dgDodongosCavernRoom3MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom3MinimapTex[] = dgDodongosCavernRoom3MinimapTex; -#else -static const char gDodongosCavernRoom3MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom3MinimapTex; -#endif - -#define dgDodongosCavernRoom4MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom4MinimapTex[] = dgDodongosCavernRoom4MinimapTex; -#else -static const char gDodongosCavernRoom4MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom4MinimapTex; -#endif - -#define dgDodongosCavernRoom5MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom5MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom5MinimapTex[] = dgDodongosCavernRoom5MinimapTex; -#else -static const char gDodongosCavernRoom5MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom5MinimapTex; -#endif - -#define dgDodongosCavernRoom6MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom6MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom6MinimapTex[] = dgDodongosCavernRoom6MinimapTex; -#else -static const char gDodongosCavernRoom6MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom6MinimapTex; -#endif - -#define dgDodongosCavernRoom7MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom7MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom7MinimapTex[] = dgDodongosCavernRoom7MinimapTex; -#else -static const char gDodongosCavernRoom7MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom7MinimapTex; -#endif - -#define dgDodongosCavernRoom8MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom8MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom8MinimapTex[] = dgDodongosCavernRoom8MinimapTex; -#else -static const char gDodongosCavernRoom8MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom8MinimapTex; -#endif - -#define dgDodongosCavernRoom9MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom9MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom9MinimapTex[] = dgDodongosCavernRoom9MinimapTex; -#else -static const char gDodongosCavernRoom9MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom9MinimapTex; -#endif - -#define dgDodongosCavernRoom10MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom10MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom10MinimapTex[] = dgDodongosCavernRoom10MinimapTex; -#else -static const char gDodongosCavernRoom10MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom10MinimapTex; -#endif - -#define dgDodongosCavernRoom11MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom11MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom11MinimapTex[] = dgDodongosCavernRoom11MinimapTex; -#else -static const char gDodongosCavernRoom11MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom11MinimapTex; -#endif - -#define dgDodongosCavernRoom12MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom12MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom12MinimapTex[] = dgDodongosCavernRoom12MinimapTex; -#else -static const char gDodongosCavernRoom12MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom12MinimapTex; -#endif - -#define dgDodongosCavernRoom13MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom13MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom13MinimapTex[] = dgDodongosCavernRoom13MinimapTex; -#else -static const char gDodongosCavernRoom13MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom13MinimapTex; -#endif - -#define dgDodongosCavernRoom14MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom14MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom14MinimapTex[] = dgDodongosCavernRoom14MinimapTex; -#else -static const char gDodongosCavernRoom14MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom14MinimapTex; -#endif - -#define dgDodongosCavernRoom15MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom15MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom15MinimapTex[] = dgDodongosCavernRoom15MinimapTex; -#else -static const char gDodongosCavernRoom15MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom15MinimapTex; -#endif - -#define dgDodongosCavernRoom0Floor3MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom0Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom0Floor3MinimapTex[] = dgDodongosCavernRoom0Floor3MinimapTex; -#else -static const char gDodongosCavernRoom0Floor3MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom0Floor3MinimapTex; -#endif - -#define dgDodongosCavernRoom2Floor3MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom2Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom2Floor3MinimapTex[] = dgDodongosCavernRoom2Floor3MinimapTex; -#else -static const char gDodongosCavernRoom2Floor3MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom2Floor3MinimapTex; -#endif - -#define dgDodongosCavernRoom3Floor3MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom3Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernRoom3Floor3MinimapTex[] = dgDodongosCavernRoom3Floor3MinimapTex; -#else -static const char gDodongosCavernRoom3Floor3MinimapTex[] __attribute__((aligned (2))) = dgDodongosCavernRoom3Floor3MinimapTex; -#endif - -#define dgJabuRoom0MinimapTex "__OTR__textures/map_i_static/gJabuRoom0MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom0MinimapTex[] = dgJabuRoom0MinimapTex; -#else -static const char gJabuRoom0MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom0MinimapTex; -#endif - -#define dgJabuRoom1MinimapTex "__OTR__textures/map_i_static/gJabuRoom1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom1MinimapTex[] = dgJabuRoom1MinimapTex; -#else -static const char gJabuRoom1MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom1MinimapTex; -#endif - -#define dgJabuRoom2MinimapTex "__OTR__textures/map_i_static/gJabuRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom2MinimapTex[] = dgJabuRoom2MinimapTex; -#else -static const char gJabuRoom2MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom2MinimapTex; -#endif - -#define dgJabuRoom3MinimapTex "__OTR__textures/map_i_static/gJabuRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom3MinimapTex[] = dgJabuRoom3MinimapTex; -#else -static const char gJabuRoom3MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom3MinimapTex; -#endif - -#define dgJabuRoom4MinimapTex "__OTR__textures/map_i_static/gJabuRoom4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom4MinimapTex[] = dgJabuRoom4MinimapTex; -#else -static const char gJabuRoom4MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom4MinimapTex; -#endif - -#define dgJabuRoom5MinimapTex "__OTR__textures/map_i_static/gJabuRoom5MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom5MinimapTex[] = dgJabuRoom5MinimapTex; -#else -static const char gJabuRoom5MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom5MinimapTex; -#endif - -#define dgJabuRoom6MinimapTex "__OTR__textures/map_i_static/gJabuRoom6MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom6MinimapTex[] = dgJabuRoom6MinimapTex; -#else -static const char gJabuRoom6MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom6MinimapTex; -#endif - -#define dgJabuRoom7MinimapTex "__OTR__textures/map_i_static/gJabuRoom7MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom7MinimapTex[] = dgJabuRoom7MinimapTex; -#else -static const char gJabuRoom7MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom7MinimapTex; -#endif - -#define dgJabuRoom8MinimapTex "__OTR__textures/map_i_static/gJabuRoom8MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom8MinimapTex[] = dgJabuRoom8MinimapTex; -#else -static const char gJabuRoom8MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom8MinimapTex; -#endif - -#define dgJabuRoom9MinimapTex "__OTR__textures/map_i_static/gJabuRoom9MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom9MinimapTex[] = dgJabuRoom9MinimapTex; -#else -static const char gJabuRoom9MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom9MinimapTex; -#endif - -#define dgJabuRoom10MinimapTex "__OTR__textures/map_i_static/gJabuRoom10MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom10MinimapTex[] = dgJabuRoom10MinimapTex; -#else -static const char gJabuRoom10MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom10MinimapTex; -#endif - -#define dgJabuRoom11MinimapTex "__OTR__textures/map_i_static/gJabuRoom11MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom11MinimapTex[] = dgJabuRoom11MinimapTex; -#else -static const char gJabuRoom11MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom11MinimapTex; -#endif - -#define dgJabuRoom12MinimapTex "__OTR__textures/map_i_static/gJabuRoom12MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom12MinimapTex[] = dgJabuRoom12MinimapTex; -#else -static const char gJabuRoom12MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom12MinimapTex; -#endif - -#define dgJabuRoom13MinimapTex "__OTR__textures/map_i_static/gJabuRoom13MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom13MinimapTex[] = dgJabuRoom13MinimapTex; -#else -static const char gJabuRoom13MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom13MinimapTex; -#endif - -#define dgJabuRoom14MinimapTex "__OTR__textures/map_i_static/gJabuRoom14MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom14MinimapTex[] = dgJabuRoom14MinimapTex; -#else -static const char gJabuRoom14MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom14MinimapTex; -#endif - -#define dgJabuRoom1Basement1MinimapTex "__OTR__textures/map_i_static/gJabuRoom1Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom1Basement1MinimapTex[] = dgJabuRoom1Basement1MinimapTex; -#else -static const char gJabuRoom1Basement1MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom1Basement1MinimapTex; -#endif - -#define dgJabuRoom6Basement1MinimapTex "__OTR__textures/map_i_static/gJabuRoom6Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuRoom6Basement1MinimapTex[] = dgJabuRoom6Basement1MinimapTex; -#else -static const char gJabuRoom6Basement1MinimapTex[] __attribute__((aligned (2))) = dgJabuRoom6Basement1MinimapTex; -#endif - -#define dgForestTempleRoom0Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom0Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom0Floor1MinimapTex[] = dgForestTempleRoom0Floor1MinimapTex; -#else -static const char gForestTempleRoom0Floor1MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom0Floor1MinimapTex; -#endif - -#define dgForestTempleRoom1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom1MinimapTex[] = dgForestTempleRoom1MinimapTex; -#else -static const char gForestTempleRoom1MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom1MinimapTex; -#endif - -#define dgForestTempleRoom2MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom2MinimapTex[] = dgForestTempleRoom2MinimapTex; -#else -static const char gForestTempleRoom2MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom2MinimapTex; -#endif - -#define dgForestTempleRoom3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom3MinimapTex[] = dgForestTempleRoom3MinimapTex; -#else -static const char gForestTempleRoom3MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom3MinimapTex; -#endif - -#define dgForestTempleRoom4MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom4MinimapTex[] = dgForestTempleRoom4MinimapTex; -#else -static const char gForestTempleRoom4MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom4MinimapTex; -#endif - -#define dgForestTempleRoom5MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom5MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom5MinimapTex[] = dgForestTempleRoom5MinimapTex; -#else -static const char gForestTempleRoom5MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom5MinimapTex; -#endif - -#define dgForestTempleRoom6Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom6Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom6Floor1MinimapTex[] = dgForestTempleRoom6Floor1MinimapTex; -#else -static const char gForestTempleRoom6Floor1MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom6Floor1MinimapTex; -#endif - -#define dgForestTempleRoom7Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom7Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom7Floor1MinimapTex[] = dgForestTempleRoom7Floor1MinimapTex; -#else -static const char gForestTempleRoom7Floor1MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom7Floor1MinimapTex; -#endif - -#define dgForestTempleRoom8Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom8Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom8Floor1MinimapTex[] = dgForestTempleRoom8Floor1MinimapTex; -#else -static const char gForestTempleRoom8Floor1MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom8Floor1MinimapTex; -#endif - -#define dgForestTempleRoom9MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom9MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom9MinimapTex[] = dgForestTempleRoom9MinimapTex; -#else -static const char gForestTempleRoom9MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom9MinimapTex; -#endif - -#define dgForestTempleRoom10MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom10MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom10MinimapTex[] = dgForestTempleRoom10MinimapTex; -#else -static const char gForestTempleRoom10MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom10MinimapTex; -#endif - -#define dgForestTempleRoom11Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom11Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom11Floor1MinimapTex[] = dgForestTempleRoom11Floor1MinimapTex; -#else -static const char gForestTempleRoom11Floor1MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom11Floor1MinimapTex; -#endif - -#define dgForestTempleRoom12MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom12MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom12MinimapTex[] = dgForestTempleRoom12MinimapTex; -#else -static const char gForestTempleRoom12MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom12MinimapTex; -#endif - -#define dgForestTempleRoom13MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom13MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom13MinimapTex[] = dgForestTempleRoom13MinimapTex; -#else -static const char gForestTempleRoom13MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom13MinimapTex; -#endif - -#define dgForestTempleRoom14MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom14MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom14MinimapTex[] = dgForestTempleRoom14MinimapTex; -#else -static const char gForestTempleRoom14MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom14MinimapTex; -#endif - -#define dgForestTempleRoom15MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom15MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom15MinimapTex[] = dgForestTempleRoom15MinimapTex; -#else -static const char gForestTempleRoom15MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom15MinimapTex; -#endif - -#define dgForestTempleRoom16MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom16MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom16MinimapTex[] = dgForestTempleRoom16MinimapTex; -#else -static const char gForestTempleRoom16MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom16MinimapTex; -#endif - -#define dgForestTempleRoom17MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom17MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom17MinimapTex[] = dgForestTempleRoom17MinimapTex; -#else -static const char gForestTempleRoom17MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom17MinimapTex; -#endif - -#define dgForestTempleRoom18MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom18MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom18MinimapTex[] = dgForestTempleRoom18MinimapTex; -#else -static const char gForestTempleRoom18MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom18MinimapTex; -#endif - -#define dgForestTempleRoom19MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom19MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom19MinimapTex[] = dgForestTempleRoom19MinimapTex; -#else -static const char gForestTempleRoom19MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom19MinimapTex; -#endif - -#define dgForestTempleRoom20MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom20MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom20MinimapTex[] = dgForestTempleRoom20MinimapTex; -#else -static const char gForestTempleRoom20MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom20MinimapTex; -#endif - -#define dgForestTempleRoom21MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom21MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom21MinimapTex[] = dgForestTempleRoom21MinimapTex; -#else -static const char gForestTempleRoom21MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom21MinimapTex; -#endif - -#define dgForestTempleRoom0Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom0Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom0Floor3MinimapTex[] = dgForestTempleRoom0Floor3MinimapTex; -#else -static const char gForestTempleRoom0Floor3MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom0Floor3MinimapTex; -#endif - -#define dgForestTempleRoom6Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom6Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom6Floor3MinimapTex[] = dgForestTempleRoom6Floor3MinimapTex; -#else -static const char gForestTempleRoom6Floor3MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom6Floor3MinimapTex; -#endif - -#define dgForestTempleRoom7Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom7Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom7Floor3MinimapTex[] = dgForestTempleRoom7Floor3MinimapTex; -#else -static const char gForestTempleRoom7Floor3MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom7Floor3MinimapTex; -#endif - -#define dgForestTempleRoom8Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom8Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom8Floor3MinimapTex[] = dgForestTempleRoom8Floor3MinimapTex; -#else -static const char gForestTempleRoom8Floor3MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom8Floor3MinimapTex; -#endif - -#define dgForestTempleRoom11Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom11Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleRoom11Floor3MinimapTex[] = dgForestTempleRoom11Floor3MinimapTex; -#else -static const char gForestTempleRoom11Floor3MinimapTex[] __attribute__((aligned (2))) = dgForestTempleRoom11Floor3MinimapTex; -#endif - -#define dgFireTempleRoom0MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom0MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom0MinimapTex[] = dgFireTempleRoom0MinimapTex; -#else -static const char gFireTempleRoom0MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom0MinimapTex; -#endif - -#define dgFireTempleRoom1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom1MinimapTex[] = dgFireTempleRoom1MinimapTex; -#else -static const char gFireTempleRoom1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom1MinimapTex; -#endif - -#define dgFireTempleRoom2MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom2MinimapTex[] = dgFireTempleRoom2MinimapTex; -#else -static const char gFireTempleRoom2MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom2MinimapTex; -#endif - -#define dgFireTempleRoom3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom3MinimapTex[] = dgFireTempleRoom3MinimapTex; -#else -static const char gFireTempleRoom3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom3MinimapTex; -#endif - -#define dgFireTempleRoom4Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom4Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom4Floor1MinimapTex[] = dgFireTempleRoom4Floor1MinimapTex; -#else -static const char gFireTempleRoom4Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom4Floor1MinimapTex; -#endif - -#define dgFireTempleRoom5Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom5Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom5Floor1MinimapTex[] = dgFireTempleRoom5Floor1MinimapTex; -#else -static const char gFireTempleRoom5Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom5Floor1MinimapTex; -#endif - -#define dgFireTempleRoom6Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom6Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom6Floor1MinimapTex[] = dgFireTempleRoom6Floor1MinimapTex; -#else -static const char gFireTempleRoom6Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom6Floor1MinimapTex; -#endif - -#define dgFireTempleRoom7Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom7Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom7Floor1MinimapTex[] = dgFireTempleRoom7Floor1MinimapTex; -#else -static const char gFireTempleRoom7Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom7Floor1MinimapTex; -#endif - -#define dgFireTempleRoom8MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom8MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom8MinimapTex[] = dgFireTempleRoom8MinimapTex; -#else -static const char gFireTempleRoom8MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom8MinimapTex; -#endif - -#define dgFireTempleRoom9MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom9MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom9MinimapTex[] = dgFireTempleRoom9MinimapTex; -#else -static const char gFireTempleRoom9MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom9MinimapTex; -#endif - -#define dgFireTempleRoom10Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom10Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom10Floor1MinimapTex[] = dgFireTempleRoom10Floor1MinimapTex; -#else -static const char gFireTempleRoom10Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom10Floor1MinimapTex; -#endif - -#define dgFireTempleRoom11Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom11Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom11Floor1MinimapTex[] = dgFireTempleRoom11Floor1MinimapTex; -#else -static const char gFireTempleRoom11Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom11Floor1MinimapTex; -#endif - -#define dgFireTempleRoom12Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom12Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom12Floor1MinimapTex[] = dgFireTempleRoom12Floor1MinimapTex; -#else -static const char gFireTempleRoom12Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom12Floor1MinimapTex; -#endif - -#define dgFireTempleRoom13Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom13Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom13Floor1MinimapTex[] = dgFireTempleRoom13Floor1MinimapTex; -#else -static const char gFireTempleRoom13Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom13Floor1MinimapTex; -#endif - -#define dgFireTempleRoom14MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom14MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom14MinimapTex[] = dgFireTempleRoom14MinimapTex; -#else -static const char gFireTempleRoom14MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom14MinimapTex; -#endif - -#define dgFireTempleRoom15MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom15MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom15MinimapTex[] = dgFireTempleRoom15MinimapTex; -#else -static const char gFireTempleRoom15MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom15MinimapTex; -#endif - -#define dgFireTempleRoom16MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom16MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom16MinimapTex[] = dgFireTempleRoom16MinimapTex; -#else -static const char gFireTempleRoom16MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom16MinimapTex; -#endif - -#define dgFireTempleRoom17MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom17MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom17MinimapTex[] = dgFireTempleRoom17MinimapTex; -#else -static const char gFireTempleRoom17MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom17MinimapTex; -#endif - -#define dgFireTempleRoom18MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom18MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom18MinimapTex[] = dgFireTempleRoom18MinimapTex; -#else -static const char gFireTempleRoom18MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom18MinimapTex; -#endif - -#define dgFireTempleRoom19MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom19MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom19MinimapTex[] = dgFireTempleRoom19MinimapTex; -#else -static const char gFireTempleRoom19MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom19MinimapTex; -#endif - -#define dgFireTempleRoom20MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom20MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom20MinimapTex[] = dgFireTempleRoom20MinimapTex; -#else -static const char gFireTempleRoom20MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom20MinimapTex; -#endif - -#define dgFireTempleRoom21Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom21Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom21Floor1MinimapTex[] = dgFireTempleRoom21Floor1MinimapTex; -#else -static const char gFireTempleRoom21Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom21Floor1MinimapTex; -#endif - -#define dgFireTempleRoom22MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom22MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom22MinimapTex[] = dgFireTempleRoom22MinimapTex; -#else -static const char gFireTempleRoom22MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom22MinimapTex; -#endif - -#define dgFireTempleRoom23MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom23MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom23MinimapTex[] = dgFireTempleRoom23MinimapTex; -#else -static const char gFireTempleRoom23MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom23MinimapTex; -#endif - -#define dgFireTempleRoom24Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom24Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom24Floor1MinimapTex[] = dgFireTempleRoom24Floor1MinimapTex; -#else -static const char gFireTempleRoom24Floor1MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom24Floor1MinimapTex; -#endif - -#define dgFireTempleRoom25MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom25MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom25MinimapTex[] = dgFireTempleRoom25MinimapTex; -#else -static const char gFireTempleRoom25MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom25MinimapTex; -#endif - -#define dgFireTempleRoom4Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom4Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom4Floor3MinimapTex[] = dgFireTempleRoom4Floor3MinimapTex; -#else -static const char gFireTempleRoom4Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom4Floor3MinimapTex; -#endif - -#define dgFireTempleRoom5Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom5Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom5Floor3MinimapTex[] = dgFireTempleRoom5Floor3MinimapTex; -#else -static const char gFireTempleRoom5Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom5Floor3MinimapTex; -#endif - -#define dgFireTempleRoom6Floor2MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom6Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom6Floor2MinimapTex[] = dgFireTempleRoom6Floor2MinimapTex; -#else -static const char gFireTempleRoom6Floor2MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom6Floor2MinimapTex; -#endif - -#define dgFireTempleRoom6Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom6Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom6Floor3MinimapTex[] = dgFireTempleRoom6Floor3MinimapTex; -#else -static const char gFireTempleRoom6Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom6Floor3MinimapTex; -#endif - -#define dgFireTempleRoom7Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom7Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom7Floor3MinimapTex[] = dgFireTempleRoom7Floor3MinimapTex; -#else -static const char gFireTempleRoom7Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom7Floor3MinimapTex; -#endif - -#define dgFireTempleRoom10Floor2MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom10Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom10Floor2MinimapTex[] = dgFireTempleRoom10Floor2MinimapTex; -#else -static const char gFireTempleRoom10Floor2MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom10Floor2MinimapTex; -#endif - -#define dgFireTempleRoom10Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom10Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom10Floor3MinimapTex[] = dgFireTempleRoom10Floor3MinimapTex; -#else -static const char gFireTempleRoom10Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom10Floor3MinimapTex; -#endif - -#define dgFireTempleRoom11Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom11Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom11Floor3MinimapTex[] = dgFireTempleRoom11Floor3MinimapTex; -#else -static const char gFireTempleRoom11Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom11Floor3MinimapTex; -#endif - -#define dgFireTempleRoom12Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom12Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom12Floor3MinimapTex[] = dgFireTempleRoom12Floor3MinimapTex; -#else -static const char gFireTempleRoom12Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom12Floor3MinimapTex; -#endif - -#define dgFireTempleRoom13Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom13Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom13Floor3MinimapTex[] = dgFireTempleRoom13Floor3MinimapTex; -#else -static const char gFireTempleRoom13Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom13Floor3MinimapTex; -#endif - -#define dgFireTempleRoom21Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom21Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom21Floor3MinimapTex[] = dgFireTempleRoom21Floor3MinimapTex; -#else -static const char gFireTempleRoom21Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom21Floor3MinimapTex; -#endif - -#define dgFireTempleRoom24Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom24Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleRoom24Floor3MinimapTex[] = dgFireTempleRoom24Floor3MinimapTex; -#else -static const char gFireTempleRoom24Floor3MinimapTex[] __attribute__((aligned (2))) = dgFireTempleRoom24Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom0Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom0Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom0Floor3MinimapTex[] = dgWaterTempleRoom0Floor3MinimapTex; -#else -static const char gWaterTempleRoom0Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom0Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom1Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom1Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom1Floor3MinimapTex[] = dgWaterTempleRoom1Floor3MinimapTex; -#else -static const char gWaterTempleRoom1Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom1Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom2MinimapTex[] = dgWaterTempleRoom2MinimapTex; -#else -static const char gWaterTempleRoom2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom2MinimapTex; -#endif - -#define dgWaterTempleRoom3Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom3Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom3Floor3MinimapTex[] = dgWaterTempleRoom3Floor3MinimapTex; -#else -static const char gWaterTempleRoom3Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom3Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom4Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom4Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom4Floor3MinimapTex[] = dgWaterTempleRoom4Floor3MinimapTex; -#else -static const char gWaterTempleRoom4Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom4Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom5Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom5Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom5Floor3MinimapTex[] = dgWaterTempleRoom5Floor3MinimapTex; -#else -static const char gWaterTempleRoom5Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom5Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom6MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom6MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom6MinimapTex[] = dgWaterTempleRoom6MinimapTex; -#else -static const char gWaterTempleRoom6MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom6MinimapTex; -#endif - -#define dgWaterTempleRoom7MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom7MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom7MinimapTex[] = dgWaterTempleRoom7MinimapTex; -#else -static const char gWaterTempleRoom7MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom7MinimapTex; -#endif - -#define dgWaterTempleRoom8Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom8Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom8Floor3MinimapTex[] = dgWaterTempleRoom8Floor3MinimapTex; -#else -static const char gWaterTempleRoom8Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom8Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom9Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom9Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom9Floor3MinimapTex[] = dgWaterTempleRoom9Floor3MinimapTex; -#else -static const char gWaterTempleRoom9Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom9Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom10Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom10Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom10Floor3MinimapTex[] = dgWaterTempleRoom10Floor3MinimapTex; -#else -static const char gWaterTempleRoom10Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom10Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom11MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom11MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom11MinimapTex[] = dgWaterTempleRoom11MinimapTex; -#else -static const char gWaterTempleRoom11MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom11MinimapTex; -#endif - -#define dgWaterTempleRoom12Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom12Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom12Floor3MinimapTex[] = dgWaterTempleRoom12Floor3MinimapTex; -#else -static const char gWaterTempleRoom12Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom12Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom13MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom13MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom13MinimapTex[] = dgWaterTempleRoom13MinimapTex; -#else -static const char gWaterTempleRoom13MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom13MinimapTex; -#endif - -#define dgWaterTempleRoom14Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom14Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom14Floor3MinimapTex[] = dgWaterTempleRoom14Floor3MinimapTex; -#else -static const char gWaterTempleRoom14Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom14Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom15Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom15Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom15Floor3MinimapTex[] = dgWaterTempleRoom15Floor3MinimapTex; -#else -static const char gWaterTempleRoom15Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom15Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom16MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom16MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom16MinimapTex[] = dgWaterTempleRoom16MinimapTex; -#else -static const char gWaterTempleRoom16MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom16MinimapTex; -#endif - -#define dgWaterTempleRoom17Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom17Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom17Floor3MinimapTex[] = dgWaterTempleRoom17Floor3MinimapTex; -#else -static const char gWaterTempleRoom17Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom17Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom18MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom18MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom18MinimapTex[] = dgWaterTempleRoom18MinimapTex; -#else -static const char gWaterTempleRoom18MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom18MinimapTex; -#endif - -#define dgWaterTempleRoom19MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom19MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom19MinimapTex[] = dgWaterTempleRoom19MinimapTex; -#else -static const char gWaterTempleRoom19MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom19MinimapTex; -#endif - -#define dgWaterTempleRoom20Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom20Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom20Floor3MinimapTex[] = dgWaterTempleRoom20Floor3MinimapTex; -#else -static const char gWaterTempleRoom20Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom20Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom21Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom21Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom21Floor3MinimapTex[] = dgWaterTempleRoom21Floor3MinimapTex; -#else -static const char gWaterTempleRoom21Floor3MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom21Floor3MinimapTex; -#endif - -#define dgWaterTempleRoom0Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom0Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom0Floor2MinimapTex[] = dgWaterTempleRoom0Floor2MinimapTex; -#else -static const char gWaterTempleRoom0Floor2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom0Floor2MinimapTex; -#endif - -#define dgWaterTempleRoom0Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom0Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom0Floor1MinimapTex[] = dgWaterTempleRoom0Floor1MinimapTex; -#else -static const char gWaterTempleRoom0Floor1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom0Floor1MinimapTex; -#endif - -#define dgWaterTempleRoom0Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom0Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom0Basement1MinimapTex[] = dgWaterTempleRoom0Basement1MinimapTex; -#else -static const char gWaterTempleRoom0Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom0Basement1MinimapTex; -#endif - -#define dgWaterTempleRoom1Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom1Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom1Floor2MinimapTex[] = dgWaterTempleRoom1Floor2MinimapTex; -#else -static const char gWaterTempleRoom1Floor2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom1Floor2MinimapTex; -#endif - -#define dgWaterTempleRoom1Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom1Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom1Floor1MinimapTex[] = dgWaterTempleRoom1Floor1MinimapTex; -#else -static const char gWaterTempleRoom1Floor1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom1Floor1MinimapTex; -#endif - -#define dgWaterTempleRoom1Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom1Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom1Basement1MinimapTex[] = dgWaterTempleRoom1Basement1MinimapTex; -#else -static const char gWaterTempleRoom1Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom1Basement1MinimapTex; -#endif - -#define dgWaterTempleRoom3Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom3Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom3Basement1MinimapTex[] = dgWaterTempleRoom3Basement1MinimapTex; -#else -static const char gWaterTempleRoom3Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom3Basement1MinimapTex; -#endif - -#define dgWaterTempleRoom4Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom4Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom4Floor2MinimapTex[] = dgWaterTempleRoom4Floor2MinimapTex; -#else -static const char gWaterTempleRoom4Floor2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom4Floor2MinimapTex; -#endif - -#define dgWaterTempleRoom5Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom5Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom5Floor2MinimapTex[] = dgWaterTempleRoom5Floor2MinimapTex; -#else -static const char gWaterTempleRoom5Floor2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom5Floor2MinimapTex; -#endif - -#define dgWaterTempleRoom5Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom5Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom5Floor1MinimapTex[] = dgWaterTempleRoom5Floor1MinimapTex; -#else -static const char gWaterTempleRoom5Floor1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom5Floor1MinimapTex; -#endif - -#define dgWaterTempleRoom6Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom6Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom6Floor2MinimapTex[] = dgWaterTempleRoom6Floor2MinimapTex; -#else -static const char gWaterTempleRoom6Floor2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom6Floor2MinimapTex; -#endif - -#define dgWaterTempleRoom8Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom8Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom8Basement1MinimapTex[] = dgWaterTempleRoom8Basement1MinimapTex; -#else -static const char gWaterTempleRoom8Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom8Basement1MinimapTex; -#endif - -#define dgWaterTempleRoom9Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom9Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom9Basement1MinimapTex[] = dgWaterTempleRoom9Basement1MinimapTex; -#else -static const char gWaterTempleRoom9Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom9Basement1MinimapTex; -#endif - -#define dgWaterTempleRoom10Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom10Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom10Floor2MinimapTex[] = dgWaterTempleRoom10Floor2MinimapTex; -#else -static const char gWaterTempleRoom10Floor2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom10Floor2MinimapTex; -#endif - -#define dgWaterTempleRoom12Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom12Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom12Basement1MinimapTex[] = dgWaterTempleRoom12Basement1MinimapTex; -#else -static const char gWaterTempleRoom12Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom12Basement1MinimapTex; -#endif - -#define dgWaterTempleRoom14Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom14Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom14Basement1MinimapTex[] = dgWaterTempleRoom14Basement1MinimapTex; -#else -static const char gWaterTempleRoom14Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom14Basement1MinimapTex; -#endif - -#define dgWaterTempleRoom15Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom15Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom15Basement1MinimapTex[] = dgWaterTempleRoom15Basement1MinimapTex; -#else -static const char gWaterTempleRoom15Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom15Basement1MinimapTex; -#endif - -#define dgWaterTempleRoom17Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom17Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom17Floor2MinimapTex[] = dgWaterTempleRoom17Floor2MinimapTex; -#else -static const char gWaterTempleRoom17Floor2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom17Floor2MinimapTex; -#endif - -#define dgWaterTempleRoom17Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom17Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom17Floor1MinimapTex[] = dgWaterTempleRoom17Floor1MinimapTex; -#else -static const char gWaterTempleRoom17Floor1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom17Floor1MinimapTex; -#endif - -#define dgWaterTempleRoom20Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom20Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom20Floor2MinimapTex[] = dgWaterTempleRoom20Floor2MinimapTex; -#else -static const char gWaterTempleRoom20Floor2MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom20Floor2MinimapTex; -#endif - -#define dgWaterTempleRoom21Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom21Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom21Floor1MinimapTex[] = dgWaterTempleRoom21Floor1MinimapTex; -#else -static const char gWaterTempleRoom21Floor1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom21Floor1MinimapTex; -#endif - -#define dgWaterTempleRoom5Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom5Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleRoom5Basement1MinimapTex[] = dgWaterTempleRoom5Basement1MinimapTex; -#else -static const char gWaterTempleRoom5Basement1MinimapTex[] __attribute__((aligned (2))) = dgWaterTempleRoom5Basement1MinimapTex; -#endif - -#define dgSpiritTempleRoom0MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom0MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom0MinimapTex[] = dgSpiritTempleRoom0MinimapTex; -#else -static const char gSpiritTempleRoom0MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom0MinimapTex; -#endif - -#define dgSpiritTempleRoom1MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom1MinimapTex[] = dgSpiritTempleRoom1MinimapTex; -#else -static const char gSpiritTempleRoom1MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom1MinimapTex; -#endif - -#define dgSpiritTempleRoom2MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom2MinimapTex[] = dgSpiritTempleRoom2MinimapTex; -#else -static const char gSpiritTempleRoom2MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom2MinimapTex; -#endif - -#define dgSpiritTempleRoom3MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom3MinimapTex[] = dgSpiritTempleRoom3MinimapTex; -#else -static const char gSpiritTempleRoom3MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom3MinimapTex; -#endif - -#define dgSpiritTempleRoom4Floor1MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom4Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom4Floor1MinimapTex[] = dgSpiritTempleRoom4Floor1MinimapTex; -#else -static const char gSpiritTempleRoom4Floor1MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom4Floor1MinimapTex; -#endif - -#define dgSpiritTempleRoom5Floor2MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom5Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom5Floor2MinimapTex[] = dgSpiritTempleRoom5Floor2MinimapTex; -#else -static const char gSpiritTempleRoom5Floor2MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom5Floor2MinimapTex; -#endif - -#define dgSpiritTempleRoom6MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom6MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom6MinimapTex[] = dgSpiritTempleRoom6MinimapTex; -#else -static const char gSpiritTempleRoom6MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom6MinimapTex; -#endif - -#define dgSpiritTempleRoom7MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom7MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom7MinimapTex[] = dgSpiritTempleRoom7MinimapTex; -#else -static const char gSpiritTempleRoom7MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom7MinimapTex; -#endif - -#define dgSpiritTempleRoom8MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom8MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom8MinimapTex[] = dgSpiritTempleRoom8MinimapTex; -#else -static const char gSpiritTempleRoom8MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom8MinimapTex; -#endif - -#define dgSpiritTempleRoom9MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom9MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom9MinimapTex[] = dgSpiritTempleRoom9MinimapTex; -#else -static const char gSpiritTempleRoom9MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom9MinimapTex; -#endif - -#define dgSpiritTempleRoom10MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom10MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom10MinimapTex[] = dgSpiritTempleRoom10MinimapTex; -#else -static const char gSpiritTempleRoom10MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom10MinimapTex; -#endif - -#define dgBlankSpiritTempleRoom11MinimapTex "__OTR__textures/map_i_static/gBlankSpiritTempleRoom11MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBlankSpiritTempleRoom11MinimapTex[] = dgBlankSpiritTempleRoom11MinimapTex; -#else -static const char gBlankSpiritTempleRoom11MinimapTex[] __attribute__((aligned (2))) = dgBlankSpiritTempleRoom11MinimapTex; -#endif - -#define dgSpiritTempleRoom12MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom12MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom12MinimapTex[] = dgSpiritTempleRoom12MinimapTex; -#else -static const char gSpiritTempleRoom12MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom12MinimapTex; -#endif - -#define dgSpiritTempleRoom13MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom13MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom13MinimapTex[] = dgSpiritTempleRoom13MinimapTex; -#else -static const char gSpiritTempleRoom13MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom13MinimapTex; -#endif - -#define dgSpiritTempleRoom14MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom14MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom14MinimapTex[] = dgSpiritTempleRoom14MinimapTex; -#else -static const char gSpiritTempleRoom14MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom14MinimapTex; -#endif - -#define dgSpiritTempleRoom15Floor1MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom15Floor1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom15Floor1MinimapTex[] = dgSpiritTempleRoom15Floor1MinimapTex; -#else -static const char gSpiritTempleRoom15Floor1MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom15Floor1MinimapTex; -#endif - -#define dgSpiritTempleRoom16MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom16MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom16MinimapTex[] = dgSpiritTempleRoom16MinimapTex; -#else -static const char gSpiritTempleRoom16MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom16MinimapTex; -#endif - -#define dgSpiritTempleRoom17MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom17MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom17MinimapTex[] = dgSpiritTempleRoom17MinimapTex; -#else -static const char gSpiritTempleRoom17MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom17MinimapTex; -#endif - -#define dgSpiritTempleRoom18MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom18MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom18MinimapTex[] = dgSpiritTempleRoom18MinimapTex; -#else -static const char gSpiritTempleRoom18MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom18MinimapTex; -#endif - -#define dgSpiritTempleRoom19MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom19MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom19MinimapTex[] = dgSpiritTempleRoom19MinimapTex; -#else -static const char gSpiritTempleRoom19MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom19MinimapTex; -#endif - -#define dgSpiritTempleRoom20MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom20MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom20MinimapTex[] = dgSpiritTempleRoom20MinimapTex; -#else -static const char gSpiritTempleRoom20MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom20MinimapTex; -#endif - -#define dgSpiritTempleRoom21MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom21MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom21MinimapTex[] = dgSpiritTempleRoom21MinimapTex; -#else -static const char gSpiritTempleRoom21MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom21MinimapTex; -#endif - -#define dgSpiritTempleRoom22MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom22MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom22MinimapTex[] = dgSpiritTempleRoom22MinimapTex; -#else -static const char gSpiritTempleRoom22MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom22MinimapTex; -#endif - -#define dgSpiritTempleRoom23Floor3MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom23Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom23Floor3MinimapTex[] = dgSpiritTempleRoom23Floor3MinimapTex; -#else -static const char gSpiritTempleRoom23Floor3MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom23Floor3MinimapTex; -#endif - -#define dgSpiritTempleRoom24MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom24MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom24MinimapTex[] = dgSpiritTempleRoom24MinimapTex; -#else -static const char gSpiritTempleRoom24MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom24MinimapTex; -#endif - -#define dgSpiritTempleRoom25MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom25MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom25MinimapTex[] = dgSpiritTempleRoom25MinimapTex; -#else -static const char gSpiritTempleRoom25MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom25MinimapTex; -#endif - -#define dgSpiritTempleRoom26MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom26MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom26MinimapTex[] = dgSpiritTempleRoom26MinimapTex; -#else -static const char gSpiritTempleRoom26MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom26MinimapTex; -#endif - -#define dgSpiritTempleRoom27MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom27MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom27MinimapTex[] = dgSpiritTempleRoom27MinimapTex; -#else -static const char gSpiritTempleRoom27MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom27MinimapTex; -#endif - -#define dgSpiritTempleRoom4Floor2MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom4Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom4Floor2MinimapTex[] = dgSpiritTempleRoom4Floor2MinimapTex; -#else -static const char gSpiritTempleRoom4Floor2MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom4Floor2MinimapTex; -#endif - -#define dgSpiritTempleRoom5Floor3MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom5Floor3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom5Floor3MinimapTex[] = dgSpiritTempleRoom5Floor3MinimapTex; -#else -static const char gSpiritTempleRoom5Floor3MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom5Floor3MinimapTex; -#endif - -#define dgSpiritTempleRoom15Floor2MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom15Floor2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom15Floor2MinimapTex[] = dgSpiritTempleRoom15Floor2MinimapTex; -#else -static const char gSpiritTempleRoom15Floor2MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom15Floor2MinimapTex; -#endif - -#define dgSpiritTempleRoom23Floor4MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom23Floor4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleRoom23Floor4MinimapTex[] = dgSpiritTempleRoom23Floor4MinimapTex; -#else -static const char gSpiritTempleRoom23Floor4MinimapTex[] __attribute__((aligned (2))) = dgSpiritTempleRoom23Floor4MinimapTex; -#endif - -#define dgShadowTempleRoom0MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom0MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom0MinimapTex[] = dgShadowTempleRoom0MinimapTex; -#else -static const char gShadowTempleRoom0MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom0MinimapTex; -#endif - -#define dgShadowTempleRoom1MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom1MinimapTex[] = dgShadowTempleRoom1MinimapTex; -#else -static const char gShadowTempleRoom1MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom1MinimapTex; -#endif - -#define dgShadowTempleRoom2MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom2MinimapTex[] = dgShadowTempleRoom2MinimapTex; -#else -static const char gShadowTempleRoom2MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom2MinimapTex; -#endif - -#define dgShadowTempleRoom3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom3MinimapTex[] = dgShadowTempleRoom3MinimapTex; -#else -static const char gShadowTempleRoom3MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom3MinimapTex; -#endif - -#define dgShadowTempleRoom4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom4MinimapTex[] = dgShadowTempleRoom4MinimapTex; -#else -static const char gShadowTempleRoom4MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom4MinimapTex; -#endif - -#define dgShadowTempleRoom5MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom5MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom5MinimapTex[] = dgShadowTempleRoom5MinimapTex; -#else -static const char gShadowTempleRoom5MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom5MinimapTex; -#endif - -#define dgShadowTempleRoom6MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom6MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom6MinimapTex[] = dgShadowTempleRoom6MinimapTex; -#else -static const char gShadowTempleRoom6MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom6MinimapTex; -#endif - -#define dgShadowTempleRoom7MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom7MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom7MinimapTex[] = dgShadowTempleRoom7MinimapTex; -#else -static const char gShadowTempleRoom7MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom7MinimapTex; -#endif - -#define dgShadowTempleRoom8Basement2MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom8Basement2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom8Basement2MinimapTex[] = dgShadowTempleRoom8Basement2MinimapTex; -#else -static const char gShadowTempleRoom8Basement2MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom8Basement2MinimapTex; -#endif - -#define dgShadowTempleRoom9Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom9Basement3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom9Basement3MinimapTex[] = dgShadowTempleRoom9Basement3MinimapTex; -#else -static const char gShadowTempleRoom9Basement3MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom9Basement3MinimapTex; -#endif - -#define dgShadowTempleRoom10MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom10MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom10MinimapTex[] = dgShadowTempleRoom10MinimapTex; -#else -static const char gShadowTempleRoom10MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom10MinimapTex; -#endif - -#define dgShadowTempleRoom11MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom11MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom11MinimapTex[] = dgShadowTempleRoom11MinimapTex; -#else -static const char gShadowTempleRoom11MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom11MinimapTex; -#endif - -#define dgShadowTempleRoom12Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom12Basement3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom12Basement3MinimapTex[] = dgShadowTempleRoom12Basement3MinimapTex; -#else -static const char gShadowTempleRoom12Basement3MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom12Basement3MinimapTex; -#endif - -#define dgShadowTempleRoom13MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom13MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom13MinimapTex[] = dgShadowTempleRoom13MinimapTex; -#else -static const char gShadowTempleRoom13MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom13MinimapTex; -#endif - -#define dgShadowTempleRoom14Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom14Basement3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom14Basement3MinimapTex[] = dgShadowTempleRoom14Basement3MinimapTex; -#else -static const char gShadowTempleRoom14Basement3MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom14Basement3MinimapTex; -#endif - -#define dgShadowTempleRoom15MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom15MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom15MinimapTex[] = dgShadowTempleRoom15MinimapTex; -#else -static const char gShadowTempleRoom15MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom15MinimapTex; -#endif - -#define dgShadowTempleRoom16MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom16MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom16MinimapTex[] = dgShadowTempleRoom16MinimapTex; -#else -static const char gShadowTempleRoom16MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom16MinimapTex; -#endif - -#define dgShadowTempleRoom17MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom17MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom17MinimapTex[] = dgShadowTempleRoom17MinimapTex; -#else -static const char gShadowTempleRoom17MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom17MinimapTex; -#endif - -#define dgShadowTempleRoom18MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom18MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom18MinimapTex[] = dgShadowTempleRoom18MinimapTex; -#else -static const char gShadowTempleRoom18MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom18MinimapTex; -#endif - -#define dgShadowTempleRoom19MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom19MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom19MinimapTex[] = dgShadowTempleRoom19MinimapTex; -#else -static const char gShadowTempleRoom19MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom19MinimapTex; -#endif - -#define dgShadowTempleRoom20MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom20MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom20MinimapTex[] = dgShadowTempleRoom20MinimapTex; -#else -static const char gShadowTempleRoom20MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom20MinimapTex; -#endif - -#define dgShadowTempleRoom21Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom21Basement3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom21Basement3MinimapTex[] = dgShadowTempleRoom21Basement3MinimapTex; -#else -static const char gShadowTempleRoom21Basement3MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom21Basement3MinimapTex; -#endif - -#define dgShadowTempleRoom8Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom8Basement3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom8Basement3MinimapTex[] = dgShadowTempleRoom8Basement3MinimapTex; -#else -static const char gShadowTempleRoom8Basement3MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom8Basement3MinimapTex; -#endif - -#define dgShadowTempleRoom9Basement4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom9Basement4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom9Basement4MinimapTex[] = dgShadowTempleRoom9Basement4MinimapTex; -#else -static const char gShadowTempleRoom9Basement4MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom9Basement4MinimapTex; -#endif - -#define dgShadowTempleRoom12Basement4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom12Basement4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom12Basement4MinimapTex[] = dgShadowTempleRoom12Basement4MinimapTex; -#else -static const char gShadowTempleRoom12Basement4MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom12Basement4MinimapTex; -#endif - -#define dgShadowTempleRoom14Basement4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom14Basement4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom14Basement4MinimapTex[] = dgShadowTempleRoom14Basement4MinimapTex; -#else -static const char gShadowTempleRoom14Basement4MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom14Basement4MinimapTex; -#endif - -#define dgShadowTempleRoom21Basement4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom21Basement4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleRoom21Basement4MinimapTex[] = dgShadowTempleRoom21Basement4MinimapTex; -#else -static const char gShadowTempleRoom21Basement4MinimapTex[] __attribute__((aligned (2))) = dgShadowTempleRoom21Basement4MinimapTex; -#endif - -#define dgBottomOfTheWellRoom0Basement1MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom0Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom0Basement1MinimapTex[] = dgBottomOfTheWellRoom0Basement1MinimapTex; -#else -static const char gBottomOfTheWellRoom0Basement1MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom0Basement1MinimapTex; -#endif - -#define dgBottomOfTheWellRoom1Basement1MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom1Basement1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom1Basement1MinimapTex[] = dgBottomOfTheWellRoom1Basement1MinimapTex; -#else -static const char gBottomOfTheWellRoom1Basement1MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom1Basement1MinimapTex; -#endif - -#define dgBottomOfTheWellRoom2MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom2MinimapTex[] = dgBottomOfTheWellRoom2MinimapTex; -#else -static const char gBottomOfTheWellRoom2MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom2MinimapTex; -#endif - -#define dgBottomOfTheWellRoom3MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom3MinimapTex[] = dgBottomOfTheWellRoom3MinimapTex; -#else -static const char gBottomOfTheWellRoom3MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom3MinimapTex; -#endif - -#define dgBottomOfTheWellRoom4MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom4MinimapTex[] = dgBottomOfTheWellRoom4MinimapTex; -#else -static const char gBottomOfTheWellRoom4MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom4MinimapTex; -#endif - -#define dgBottomOfTheWellRoom5MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom5MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom5MinimapTex[] = dgBottomOfTheWellRoom5MinimapTex; -#else -static const char gBottomOfTheWellRoom5MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom5MinimapTex; -#endif - -#define dgBottomOfTheWellRoom6MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom6MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom6MinimapTex[] = dgBottomOfTheWellRoom6MinimapTex; -#else -static const char gBottomOfTheWellRoom6MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom6MinimapTex; -#endif - -#define dgBottomOfTheWellRoom0Basement2MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom0Basement2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom0Basement2MinimapTex[] = dgBottomOfTheWellRoom0Basement2MinimapTex; -#else -static const char gBottomOfTheWellRoom0Basement2MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom0Basement2MinimapTex; -#endif - -#define dgBottomOfTheWellRoom1Basement2MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom1Basement2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom1Basement2MinimapTex[] = dgBottomOfTheWellRoom1Basement2MinimapTex; -#else -static const char gBottomOfTheWellRoom1Basement2MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom1Basement2MinimapTex; -#endif - -#define dgBottomOfTheWellRoom1Basement3MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom1Basement3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellRoom1Basement3MinimapTex[] = dgBottomOfTheWellRoom1Basement3MinimapTex; -#else -static const char gBottomOfTheWellRoom1Basement3MinimapTex[] __attribute__((aligned (2))) = dgBottomOfTheWellRoom1Basement3MinimapTex; -#endif - -#define dgIceCavernRoom0MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom0MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom0MinimapTex[] = dgIceCavernRoom0MinimapTex; -#else -static const char gIceCavernRoom0MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom0MinimapTex; -#endif - -#define dgIceCavernRoom1MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom1MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom1MinimapTex[] = dgIceCavernRoom1MinimapTex; -#else -static const char gIceCavernRoom1MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom1MinimapTex; -#endif - -#define dgIceCavernRoom2MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom2MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom2MinimapTex[] = dgIceCavernRoom2MinimapTex; -#else -static const char gIceCavernRoom2MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom2MinimapTex; -#endif - -#define dgIceCavernRoom3MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom3MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom3MinimapTex[] = dgIceCavernRoom3MinimapTex; -#else -static const char gIceCavernRoom3MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom3MinimapTex; -#endif - -#define dgIceCavernRoom4MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom4MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom4MinimapTex[] = dgIceCavernRoom4MinimapTex; -#else -static const char gIceCavernRoom4MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom4MinimapTex; -#endif - -#define dgIceCavernRoom5MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom5MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom5MinimapTex[] = dgIceCavernRoom5MinimapTex; -#else -static const char gIceCavernRoom5MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom5MinimapTex; -#endif - -#define dgIceCavernRoom6MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom6MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom6MinimapTex[] = dgIceCavernRoom6MinimapTex; -#else -static const char gIceCavernRoom6MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom6MinimapTex; -#endif - -#define dgIceCavernRoom7MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom7MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom7MinimapTex[] = dgIceCavernRoom7MinimapTex; -#else -static const char gIceCavernRoom7MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom7MinimapTex; -#endif - -#define dgIceCavernRoom8MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom8MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom8MinimapTex[] = dgIceCavernRoom8MinimapTex; -#else -static const char gIceCavernRoom8MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom8MinimapTex; -#endif - -#define dgIceCavernRoom9MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom9MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom9MinimapTex[] = dgIceCavernRoom9MinimapTex; -#else -static const char gIceCavernRoom9MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom9MinimapTex; -#endif - -#define dgIceCavernRoom10MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom10MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom10MinimapTex[] = dgIceCavernRoom10MinimapTex; -#else -static const char gIceCavernRoom10MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom10MinimapTex; -#endif - -#define dgIceCavernRoom11MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom11MinimapTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernRoom11MinimapTex[] = dgIceCavernRoom11MinimapTex; -#else -static const char gIceCavernRoom11MinimapTex[] __attribute__((aligned (2))) = dgIceCavernRoom11MinimapTex; -#endif - +#include "align_asset_macro.h" + +#define dgDekuTreeRoom0Floor1MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom0Floor1MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom0Floor1MinimapTex[] = dgDekuTreeRoom0Floor1MinimapTex; + +#define dgDekuTreeRoom1MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom1MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom1MinimapTex[] = dgDekuTreeRoom1MinimapTex; + +#define dgDekuTreeRoom2MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom2MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom2MinimapTex[] = dgDekuTreeRoom2MinimapTex; + +#define dgDekuTreeRoom3MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom3MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom3MinimapTex[] = dgDekuTreeRoom3MinimapTex; + +#define dgDekuTreeRoom4MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom4MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom4MinimapTex[] = dgDekuTreeRoom4MinimapTex; + +#define dgDekuTreeRoom5MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom5MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom5MinimapTex[] = dgDekuTreeRoom5MinimapTex; + +#define dgDekuTreeRoom6MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom6MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom6MinimapTex[] = dgDekuTreeRoom6MinimapTex; + +#define dgDekuTreeRoom7MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom7MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom7MinimapTex[] = dgDekuTreeRoom7MinimapTex; + +#define dgDekuTreeRoom8MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom8MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom8MinimapTex[] = dgDekuTreeRoom8MinimapTex; + +#define dgDekuTreeRoom9MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom9MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom9MinimapTex[] = dgDekuTreeRoom9MinimapTex; + +#define dgDekuTreeRoom10MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom10MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom10MinimapTex[] = dgDekuTreeRoom10MinimapTex; + +#define dgDekuTreeRoom0Floor2MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom0Floor2MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom0Floor2MinimapTex[] = dgDekuTreeRoom0Floor2MinimapTex; + +#define dgDekuTreeRoom0Floor3MinimapTex "__OTR__textures/map_i_static/gDekuTreeRoom0Floor3MinimapTex" +static const ALIGN_ASSET(2) char gDekuTreeRoom0Floor3MinimapTex[] = dgDekuTreeRoom0Floor3MinimapTex; + +#define dgDodongosCavernRoom0MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom0MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom0MinimapTex[] = dgDodongosCavernRoom0MinimapTex; + +#define dgDodongosCavernRoom1MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom1MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom1MinimapTex[] = dgDodongosCavernRoom1MinimapTex; + +#define dgDodongosCavernRoom2MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom2MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom2MinimapTex[] = dgDodongosCavernRoom2MinimapTex; + +#define dgDodongosCavernRoom3MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom3MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom3MinimapTex[] = dgDodongosCavernRoom3MinimapTex; + +#define dgDodongosCavernRoom4MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom4MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom4MinimapTex[] = dgDodongosCavernRoom4MinimapTex; + +#define dgDodongosCavernRoom5MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom5MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom5MinimapTex[] = dgDodongosCavernRoom5MinimapTex; + +#define dgDodongosCavernRoom6MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom6MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom6MinimapTex[] = dgDodongosCavernRoom6MinimapTex; + +#define dgDodongosCavernRoom7MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom7MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom7MinimapTex[] = dgDodongosCavernRoom7MinimapTex; + +#define dgDodongosCavernRoom8MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom8MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom8MinimapTex[] = dgDodongosCavernRoom8MinimapTex; + +#define dgDodongosCavernRoom9MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom9MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom9MinimapTex[] = dgDodongosCavernRoom9MinimapTex; + +#define dgDodongosCavernRoom10MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom10MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom10MinimapTex[] = dgDodongosCavernRoom10MinimapTex; + +#define dgDodongosCavernRoom11MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom11MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom11MinimapTex[] = dgDodongosCavernRoom11MinimapTex; + +#define dgDodongosCavernRoom12MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom12MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom12MinimapTex[] = dgDodongosCavernRoom12MinimapTex; + +#define dgDodongosCavernRoom13MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom13MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom13MinimapTex[] = dgDodongosCavernRoom13MinimapTex; + +#define dgDodongosCavernRoom14MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom14MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom14MinimapTex[] = dgDodongosCavernRoom14MinimapTex; + +#define dgDodongosCavernRoom15MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom15MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom15MinimapTex[] = dgDodongosCavernRoom15MinimapTex; + +#define dgDodongosCavernRoom0Floor3MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom0Floor3MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom0Floor3MinimapTex[] = dgDodongosCavernRoom0Floor3MinimapTex; + +#define dgDodongosCavernRoom2Floor3MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom2Floor3MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom2Floor3MinimapTex[] = dgDodongosCavernRoom2Floor3MinimapTex; + +#define dgDodongosCavernRoom3Floor3MinimapTex "__OTR__textures/map_i_static/gDodongosCavernRoom3Floor3MinimapTex" +static const ALIGN_ASSET(2) char gDodongosCavernRoom3Floor3MinimapTex[] = dgDodongosCavernRoom3Floor3MinimapTex; + +#define dgJabuRoom0MinimapTex "__OTR__textures/map_i_static/gJabuRoom0MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom0MinimapTex[] = dgJabuRoom0MinimapTex; + +#define dgJabuRoom1MinimapTex "__OTR__textures/map_i_static/gJabuRoom1MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom1MinimapTex[] = dgJabuRoom1MinimapTex; + +#define dgJabuRoom2MinimapTex "__OTR__textures/map_i_static/gJabuRoom2MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom2MinimapTex[] = dgJabuRoom2MinimapTex; + +#define dgJabuRoom3MinimapTex "__OTR__textures/map_i_static/gJabuRoom3MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom3MinimapTex[] = dgJabuRoom3MinimapTex; + +#define dgJabuRoom4MinimapTex "__OTR__textures/map_i_static/gJabuRoom4MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom4MinimapTex[] = dgJabuRoom4MinimapTex; + +#define dgJabuRoom5MinimapTex "__OTR__textures/map_i_static/gJabuRoom5MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom5MinimapTex[] = dgJabuRoom5MinimapTex; + +#define dgJabuRoom6MinimapTex "__OTR__textures/map_i_static/gJabuRoom6MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom6MinimapTex[] = dgJabuRoom6MinimapTex; + +#define dgJabuRoom7MinimapTex "__OTR__textures/map_i_static/gJabuRoom7MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom7MinimapTex[] = dgJabuRoom7MinimapTex; + +#define dgJabuRoom8MinimapTex "__OTR__textures/map_i_static/gJabuRoom8MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom8MinimapTex[] = dgJabuRoom8MinimapTex; + +#define dgJabuRoom9MinimapTex "__OTR__textures/map_i_static/gJabuRoom9MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom9MinimapTex[] = dgJabuRoom9MinimapTex; + +#define dgJabuRoom10MinimapTex "__OTR__textures/map_i_static/gJabuRoom10MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom10MinimapTex[] = dgJabuRoom10MinimapTex; + +#define dgJabuRoom11MinimapTex "__OTR__textures/map_i_static/gJabuRoom11MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom11MinimapTex[] = dgJabuRoom11MinimapTex; + +#define dgJabuRoom12MinimapTex "__OTR__textures/map_i_static/gJabuRoom12MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom12MinimapTex[] = dgJabuRoom12MinimapTex; + +#define dgJabuRoom13MinimapTex "__OTR__textures/map_i_static/gJabuRoom13MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom13MinimapTex[] = dgJabuRoom13MinimapTex; + +#define dgJabuRoom14MinimapTex "__OTR__textures/map_i_static/gJabuRoom14MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom14MinimapTex[] = dgJabuRoom14MinimapTex; + +#define dgJabuRoom1Basement1MinimapTex "__OTR__textures/map_i_static/gJabuRoom1Basement1MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom1Basement1MinimapTex[] = dgJabuRoom1Basement1MinimapTex; + +#define dgJabuRoom6Basement1MinimapTex "__OTR__textures/map_i_static/gJabuRoom6Basement1MinimapTex" +static const ALIGN_ASSET(2) char gJabuRoom6Basement1MinimapTex[] = dgJabuRoom6Basement1MinimapTex; + +#define dgForestTempleRoom0Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom0Floor1MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom0Floor1MinimapTex[] = dgForestTempleRoom0Floor1MinimapTex; + +#define dgForestTempleRoom1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom1MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom1MinimapTex[] = dgForestTempleRoom1MinimapTex; + +#define dgForestTempleRoom2MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom2MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom2MinimapTex[] = dgForestTempleRoom2MinimapTex; + +#define dgForestTempleRoom3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom3MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom3MinimapTex[] = dgForestTempleRoom3MinimapTex; + +#define dgForestTempleRoom4MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom4MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom4MinimapTex[] = dgForestTempleRoom4MinimapTex; + +#define dgForestTempleRoom5MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom5MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom5MinimapTex[] = dgForestTempleRoom5MinimapTex; + +#define dgForestTempleRoom6Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom6Floor1MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom6Floor1MinimapTex[] = dgForestTempleRoom6Floor1MinimapTex; + +#define dgForestTempleRoom7Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom7Floor1MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom7Floor1MinimapTex[] = dgForestTempleRoom7Floor1MinimapTex; + +#define dgForestTempleRoom8Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom8Floor1MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom8Floor1MinimapTex[] = dgForestTempleRoom8Floor1MinimapTex; + +#define dgForestTempleRoom9MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom9MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom9MinimapTex[] = dgForestTempleRoom9MinimapTex; + +#define dgForestTempleRoom10MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom10MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom10MinimapTex[] = dgForestTempleRoom10MinimapTex; + +#define dgForestTempleRoom11Floor1MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom11Floor1MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom11Floor1MinimapTex[] = dgForestTempleRoom11Floor1MinimapTex; + +#define dgForestTempleRoom12MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom12MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom12MinimapTex[] = dgForestTempleRoom12MinimapTex; + +#define dgForestTempleRoom13MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom13MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom13MinimapTex[] = dgForestTempleRoom13MinimapTex; + +#define dgForestTempleRoom14MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom14MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom14MinimapTex[] = dgForestTempleRoom14MinimapTex; + +#define dgForestTempleRoom15MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom15MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom15MinimapTex[] = dgForestTempleRoom15MinimapTex; + +#define dgForestTempleRoom16MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom16MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom16MinimapTex[] = dgForestTempleRoom16MinimapTex; + +#define dgForestTempleRoom17MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom17MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom17MinimapTex[] = dgForestTempleRoom17MinimapTex; + +#define dgForestTempleRoom18MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom18MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom18MinimapTex[] = dgForestTempleRoom18MinimapTex; + +#define dgForestTempleRoom19MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom19MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom19MinimapTex[] = dgForestTempleRoom19MinimapTex; + +#define dgForestTempleRoom20MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom20MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom20MinimapTex[] = dgForestTempleRoom20MinimapTex; + +#define dgForestTempleRoom21MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom21MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom21MinimapTex[] = dgForestTempleRoom21MinimapTex; + +#define dgForestTempleRoom0Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom0Floor3MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom0Floor3MinimapTex[] = dgForestTempleRoom0Floor3MinimapTex; + +#define dgForestTempleRoom6Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom6Floor3MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom6Floor3MinimapTex[] = dgForestTempleRoom6Floor3MinimapTex; + +#define dgForestTempleRoom7Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom7Floor3MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom7Floor3MinimapTex[] = dgForestTempleRoom7Floor3MinimapTex; + +#define dgForestTempleRoom8Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom8Floor3MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom8Floor3MinimapTex[] = dgForestTempleRoom8Floor3MinimapTex; + +#define dgForestTempleRoom11Floor3MinimapTex "__OTR__textures/map_i_static/gForestTempleRoom11Floor3MinimapTex" +static const ALIGN_ASSET(2) char gForestTempleRoom11Floor3MinimapTex[] = dgForestTempleRoom11Floor3MinimapTex; + +#define dgFireTempleRoom0MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom0MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom0MinimapTex[] = dgFireTempleRoom0MinimapTex; + +#define dgFireTempleRoom1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom1MinimapTex[] = dgFireTempleRoom1MinimapTex; + +#define dgFireTempleRoom2MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom2MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom2MinimapTex[] = dgFireTempleRoom2MinimapTex; + +#define dgFireTempleRoom3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom3MinimapTex[] = dgFireTempleRoom3MinimapTex; + +#define dgFireTempleRoom4Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom4Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom4Floor1MinimapTex[] = dgFireTempleRoom4Floor1MinimapTex; + +#define dgFireTempleRoom5Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom5Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom5Floor1MinimapTex[] = dgFireTempleRoom5Floor1MinimapTex; + +#define dgFireTempleRoom6Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom6Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom6Floor1MinimapTex[] = dgFireTempleRoom6Floor1MinimapTex; + +#define dgFireTempleRoom7Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom7Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom7Floor1MinimapTex[] = dgFireTempleRoom7Floor1MinimapTex; + +#define dgFireTempleRoom8MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom8MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom8MinimapTex[] = dgFireTempleRoom8MinimapTex; + +#define dgFireTempleRoom9MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom9MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom9MinimapTex[] = dgFireTempleRoom9MinimapTex; + +#define dgFireTempleRoom10Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom10Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom10Floor1MinimapTex[] = dgFireTempleRoom10Floor1MinimapTex; + +#define dgFireTempleRoom11Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom11Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom11Floor1MinimapTex[] = dgFireTempleRoom11Floor1MinimapTex; + +#define dgFireTempleRoom12Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom12Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom12Floor1MinimapTex[] = dgFireTempleRoom12Floor1MinimapTex; + +#define dgFireTempleRoom13Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom13Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom13Floor1MinimapTex[] = dgFireTempleRoom13Floor1MinimapTex; + +#define dgFireTempleRoom14MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom14MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom14MinimapTex[] = dgFireTempleRoom14MinimapTex; + +#define dgFireTempleRoom15MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom15MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom15MinimapTex[] = dgFireTempleRoom15MinimapTex; + +#define dgFireTempleRoom16MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom16MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom16MinimapTex[] = dgFireTempleRoom16MinimapTex; + +#define dgFireTempleRoom17MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom17MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom17MinimapTex[] = dgFireTempleRoom17MinimapTex; + +#define dgFireTempleRoom18MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom18MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom18MinimapTex[] = dgFireTempleRoom18MinimapTex; + +#define dgFireTempleRoom19MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom19MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom19MinimapTex[] = dgFireTempleRoom19MinimapTex; + +#define dgFireTempleRoom20MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom20MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom20MinimapTex[] = dgFireTempleRoom20MinimapTex; + +#define dgFireTempleRoom21Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom21Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom21Floor1MinimapTex[] = dgFireTempleRoom21Floor1MinimapTex; + +#define dgFireTempleRoom22MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom22MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom22MinimapTex[] = dgFireTempleRoom22MinimapTex; + +#define dgFireTempleRoom23MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom23MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom23MinimapTex[] = dgFireTempleRoom23MinimapTex; + +#define dgFireTempleRoom24Floor1MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom24Floor1MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom24Floor1MinimapTex[] = dgFireTempleRoom24Floor1MinimapTex; + +#define dgFireTempleRoom25MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom25MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom25MinimapTex[] = dgFireTempleRoom25MinimapTex; + +#define dgFireTempleRoom4Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom4Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom4Floor3MinimapTex[] = dgFireTempleRoom4Floor3MinimapTex; + +#define dgFireTempleRoom5Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom5Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom5Floor3MinimapTex[] = dgFireTempleRoom5Floor3MinimapTex; + +#define dgFireTempleRoom6Floor2MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom6Floor2MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom6Floor2MinimapTex[] = dgFireTempleRoom6Floor2MinimapTex; + +#define dgFireTempleRoom6Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom6Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom6Floor3MinimapTex[] = dgFireTempleRoom6Floor3MinimapTex; + +#define dgFireTempleRoom7Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom7Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom7Floor3MinimapTex[] = dgFireTempleRoom7Floor3MinimapTex; + +#define dgFireTempleRoom10Floor2MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom10Floor2MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom10Floor2MinimapTex[] = dgFireTempleRoom10Floor2MinimapTex; + +#define dgFireTempleRoom10Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom10Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom10Floor3MinimapTex[] = dgFireTempleRoom10Floor3MinimapTex; + +#define dgFireTempleRoom11Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom11Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom11Floor3MinimapTex[] = dgFireTempleRoom11Floor3MinimapTex; + +#define dgFireTempleRoom12Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom12Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom12Floor3MinimapTex[] = dgFireTempleRoom12Floor3MinimapTex; + +#define dgFireTempleRoom13Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom13Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom13Floor3MinimapTex[] = dgFireTempleRoom13Floor3MinimapTex; + +#define dgFireTempleRoom21Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom21Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom21Floor3MinimapTex[] = dgFireTempleRoom21Floor3MinimapTex; + +#define dgFireTempleRoom24Floor3MinimapTex "__OTR__textures/map_i_static/gFireTempleRoom24Floor3MinimapTex" +static const ALIGN_ASSET(2) char gFireTempleRoom24Floor3MinimapTex[] = dgFireTempleRoom24Floor3MinimapTex; + +#define dgWaterTempleRoom0Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom0Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom0Floor3MinimapTex[] = dgWaterTempleRoom0Floor3MinimapTex; + +#define dgWaterTempleRoom1Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom1Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom1Floor3MinimapTex[] = dgWaterTempleRoom1Floor3MinimapTex; + +#define dgWaterTempleRoom2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom2MinimapTex[] = dgWaterTempleRoom2MinimapTex; + +#define dgWaterTempleRoom3Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom3Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom3Floor3MinimapTex[] = dgWaterTempleRoom3Floor3MinimapTex; + +#define dgWaterTempleRoom4Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom4Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom4Floor3MinimapTex[] = dgWaterTempleRoom4Floor3MinimapTex; + +#define dgWaterTempleRoom5Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom5Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom5Floor3MinimapTex[] = dgWaterTempleRoom5Floor3MinimapTex; + +#define dgWaterTempleRoom6MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom6MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom6MinimapTex[] = dgWaterTempleRoom6MinimapTex; + +#define dgWaterTempleRoom7MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom7MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom7MinimapTex[] = dgWaterTempleRoom7MinimapTex; + +#define dgWaterTempleRoom8Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom8Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom8Floor3MinimapTex[] = dgWaterTempleRoom8Floor3MinimapTex; + +#define dgWaterTempleRoom9Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom9Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom9Floor3MinimapTex[] = dgWaterTempleRoom9Floor3MinimapTex; + +#define dgWaterTempleRoom10Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom10Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom10Floor3MinimapTex[] = dgWaterTempleRoom10Floor3MinimapTex; + +#define dgWaterTempleRoom11MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom11MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom11MinimapTex[] = dgWaterTempleRoom11MinimapTex; + +#define dgWaterTempleRoom12Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom12Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom12Floor3MinimapTex[] = dgWaterTempleRoom12Floor3MinimapTex; + +#define dgWaterTempleRoom13MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom13MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom13MinimapTex[] = dgWaterTempleRoom13MinimapTex; + +#define dgWaterTempleRoom14Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom14Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom14Floor3MinimapTex[] = dgWaterTempleRoom14Floor3MinimapTex; + +#define dgWaterTempleRoom15Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom15Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom15Floor3MinimapTex[] = dgWaterTempleRoom15Floor3MinimapTex; + +#define dgWaterTempleRoom16MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom16MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom16MinimapTex[] = dgWaterTempleRoom16MinimapTex; + +#define dgWaterTempleRoom17Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom17Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom17Floor3MinimapTex[] = dgWaterTempleRoom17Floor3MinimapTex; + +#define dgWaterTempleRoom18MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom18MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom18MinimapTex[] = dgWaterTempleRoom18MinimapTex; + +#define dgWaterTempleRoom19MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom19MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom19MinimapTex[] = dgWaterTempleRoom19MinimapTex; + +#define dgWaterTempleRoom20Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom20Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom20Floor3MinimapTex[] = dgWaterTempleRoom20Floor3MinimapTex; + +#define dgWaterTempleRoom21Floor3MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom21Floor3MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom21Floor3MinimapTex[] = dgWaterTempleRoom21Floor3MinimapTex; + +#define dgWaterTempleRoom0Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom0Floor2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom0Floor2MinimapTex[] = dgWaterTempleRoom0Floor2MinimapTex; + +#define dgWaterTempleRoom0Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom0Floor1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom0Floor1MinimapTex[] = dgWaterTempleRoom0Floor1MinimapTex; + +#define dgWaterTempleRoom0Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom0Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom0Basement1MinimapTex[] = dgWaterTempleRoom0Basement1MinimapTex; + +#define dgWaterTempleRoom1Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom1Floor2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom1Floor2MinimapTex[] = dgWaterTempleRoom1Floor2MinimapTex; + +#define dgWaterTempleRoom1Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom1Floor1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom1Floor1MinimapTex[] = dgWaterTempleRoom1Floor1MinimapTex; + +#define dgWaterTempleRoom1Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom1Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom1Basement1MinimapTex[] = dgWaterTempleRoom1Basement1MinimapTex; + +#define dgWaterTempleRoom3Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom3Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom3Basement1MinimapTex[] = dgWaterTempleRoom3Basement1MinimapTex; + +#define dgWaterTempleRoom4Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom4Floor2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom4Floor2MinimapTex[] = dgWaterTempleRoom4Floor2MinimapTex; + +#define dgWaterTempleRoom5Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom5Floor2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom5Floor2MinimapTex[] = dgWaterTempleRoom5Floor2MinimapTex; + +#define dgWaterTempleRoom5Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom5Floor1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom5Floor1MinimapTex[] = dgWaterTempleRoom5Floor1MinimapTex; + +#define dgWaterTempleRoom6Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom6Floor2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom6Floor2MinimapTex[] = dgWaterTempleRoom6Floor2MinimapTex; + +#define dgWaterTempleRoom8Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom8Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom8Basement1MinimapTex[] = dgWaterTempleRoom8Basement1MinimapTex; + +#define dgWaterTempleRoom9Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom9Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom9Basement1MinimapTex[] = dgWaterTempleRoom9Basement1MinimapTex; + +#define dgWaterTempleRoom10Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom10Floor2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom10Floor2MinimapTex[] = dgWaterTempleRoom10Floor2MinimapTex; + +#define dgWaterTempleRoom12Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom12Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom12Basement1MinimapTex[] = dgWaterTempleRoom12Basement1MinimapTex; + +#define dgWaterTempleRoom14Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom14Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom14Basement1MinimapTex[] = dgWaterTempleRoom14Basement1MinimapTex; + +#define dgWaterTempleRoom15Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom15Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom15Basement1MinimapTex[] = dgWaterTempleRoom15Basement1MinimapTex; + +#define dgWaterTempleRoom17Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom17Floor2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom17Floor2MinimapTex[] = dgWaterTempleRoom17Floor2MinimapTex; + +#define dgWaterTempleRoom17Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom17Floor1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom17Floor1MinimapTex[] = dgWaterTempleRoom17Floor1MinimapTex; + +#define dgWaterTempleRoom20Floor2MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom20Floor2MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom20Floor2MinimapTex[] = dgWaterTempleRoom20Floor2MinimapTex; + +#define dgWaterTempleRoom21Floor1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom21Floor1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom21Floor1MinimapTex[] = dgWaterTempleRoom21Floor1MinimapTex; + +#define dgWaterTempleRoom5Basement1MinimapTex "__OTR__textures/map_i_static/gWaterTempleRoom5Basement1MinimapTex" +static const ALIGN_ASSET(2) char gWaterTempleRoom5Basement1MinimapTex[] = dgWaterTempleRoom5Basement1MinimapTex; + +#define dgSpiritTempleRoom0MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom0MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom0MinimapTex[] = dgSpiritTempleRoom0MinimapTex; + +#define dgSpiritTempleRoom1MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom1MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom1MinimapTex[] = dgSpiritTempleRoom1MinimapTex; + +#define dgSpiritTempleRoom2MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom2MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom2MinimapTex[] = dgSpiritTempleRoom2MinimapTex; + +#define dgSpiritTempleRoom3MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom3MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom3MinimapTex[] = dgSpiritTempleRoom3MinimapTex; + +#define dgSpiritTempleRoom4Floor1MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom4Floor1MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom4Floor1MinimapTex[] = dgSpiritTempleRoom4Floor1MinimapTex; + +#define dgSpiritTempleRoom5Floor2MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom5Floor2MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom5Floor2MinimapTex[] = dgSpiritTempleRoom5Floor2MinimapTex; + +#define dgSpiritTempleRoom6MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom6MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom6MinimapTex[] = dgSpiritTempleRoom6MinimapTex; + +#define dgSpiritTempleRoom7MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom7MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom7MinimapTex[] = dgSpiritTempleRoom7MinimapTex; + +#define dgSpiritTempleRoom8MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom8MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom8MinimapTex[] = dgSpiritTempleRoom8MinimapTex; + +#define dgSpiritTempleRoom9MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom9MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom9MinimapTex[] = dgSpiritTempleRoom9MinimapTex; + +#define dgSpiritTempleRoom10MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom10MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom10MinimapTex[] = dgSpiritTempleRoom10MinimapTex; + +#define dgBlankSpiritTempleRoom11MinimapTex "__OTR__textures/map_i_static/gBlankSpiritTempleRoom11MinimapTex" +static const ALIGN_ASSET(2) char gBlankSpiritTempleRoom11MinimapTex[] = dgBlankSpiritTempleRoom11MinimapTex; + +#define dgSpiritTempleRoom12MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom12MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom12MinimapTex[] = dgSpiritTempleRoom12MinimapTex; + +#define dgSpiritTempleRoom13MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom13MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom13MinimapTex[] = dgSpiritTempleRoom13MinimapTex; + +#define dgSpiritTempleRoom14MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom14MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom14MinimapTex[] = dgSpiritTempleRoom14MinimapTex; + +#define dgSpiritTempleRoom15Floor1MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom15Floor1MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom15Floor1MinimapTex[] = dgSpiritTempleRoom15Floor1MinimapTex; + +#define dgSpiritTempleRoom16MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom16MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom16MinimapTex[] = dgSpiritTempleRoom16MinimapTex; + +#define dgSpiritTempleRoom17MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom17MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom17MinimapTex[] = dgSpiritTempleRoom17MinimapTex; + +#define dgSpiritTempleRoom18MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom18MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom18MinimapTex[] = dgSpiritTempleRoom18MinimapTex; + +#define dgSpiritTempleRoom19MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom19MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom19MinimapTex[] = dgSpiritTempleRoom19MinimapTex; + +#define dgSpiritTempleRoom20MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom20MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom20MinimapTex[] = dgSpiritTempleRoom20MinimapTex; + +#define dgSpiritTempleRoom21MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom21MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom21MinimapTex[] = dgSpiritTempleRoom21MinimapTex; + +#define dgSpiritTempleRoom22MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom22MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom22MinimapTex[] = dgSpiritTempleRoom22MinimapTex; + +#define dgSpiritTempleRoom23Floor3MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom23Floor3MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom23Floor3MinimapTex[] = dgSpiritTempleRoom23Floor3MinimapTex; + +#define dgSpiritTempleRoom24MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom24MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom24MinimapTex[] = dgSpiritTempleRoom24MinimapTex; + +#define dgSpiritTempleRoom25MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom25MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom25MinimapTex[] = dgSpiritTempleRoom25MinimapTex; + +#define dgSpiritTempleRoom26MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom26MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom26MinimapTex[] = dgSpiritTempleRoom26MinimapTex; + +#define dgSpiritTempleRoom27MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom27MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom27MinimapTex[] = dgSpiritTempleRoom27MinimapTex; + +#define dgSpiritTempleRoom4Floor2MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom4Floor2MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom4Floor2MinimapTex[] = dgSpiritTempleRoom4Floor2MinimapTex; + +#define dgSpiritTempleRoom5Floor3MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom5Floor3MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom5Floor3MinimapTex[] = dgSpiritTempleRoom5Floor3MinimapTex; + +#define dgSpiritTempleRoom15Floor2MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom15Floor2MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom15Floor2MinimapTex[] = dgSpiritTempleRoom15Floor2MinimapTex; + +#define dgSpiritTempleRoom23Floor4MinimapTex "__OTR__textures/map_i_static/gSpiritTempleRoom23Floor4MinimapTex" +static const ALIGN_ASSET(2) char gSpiritTempleRoom23Floor4MinimapTex[] = dgSpiritTempleRoom23Floor4MinimapTex; + +#define dgShadowTempleRoom0MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom0MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom0MinimapTex[] = dgShadowTempleRoom0MinimapTex; + +#define dgShadowTempleRoom1MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom1MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom1MinimapTex[] = dgShadowTempleRoom1MinimapTex; + +#define dgShadowTempleRoom2MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom2MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom2MinimapTex[] = dgShadowTempleRoom2MinimapTex; + +#define dgShadowTempleRoom3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom3MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom3MinimapTex[] = dgShadowTempleRoom3MinimapTex; + +#define dgShadowTempleRoom4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom4MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom4MinimapTex[] = dgShadowTempleRoom4MinimapTex; + +#define dgShadowTempleRoom5MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom5MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom5MinimapTex[] = dgShadowTempleRoom5MinimapTex; + +#define dgShadowTempleRoom6MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom6MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom6MinimapTex[] = dgShadowTempleRoom6MinimapTex; + +#define dgShadowTempleRoom7MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom7MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom7MinimapTex[] = dgShadowTempleRoom7MinimapTex; + +#define dgShadowTempleRoom8Basement2MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom8Basement2MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom8Basement2MinimapTex[] = dgShadowTempleRoom8Basement2MinimapTex; + +#define dgShadowTempleRoom9Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom9Basement3MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom9Basement3MinimapTex[] = dgShadowTempleRoom9Basement3MinimapTex; + +#define dgShadowTempleRoom10MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom10MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom10MinimapTex[] = dgShadowTempleRoom10MinimapTex; + +#define dgShadowTempleRoom11MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom11MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom11MinimapTex[] = dgShadowTempleRoom11MinimapTex; + +#define dgShadowTempleRoom12Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom12Basement3MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom12Basement3MinimapTex[] = dgShadowTempleRoom12Basement3MinimapTex; + +#define dgShadowTempleRoom13MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom13MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom13MinimapTex[] = dgShadowTempleRoom13MinimapTex; + +#define dgShadowTempleRoom14Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom14Basement3MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom14Basement3MinimapTex[] = dgShadowTempleRoom14Basement3MinimapTex; + +#define dgShadowTempleRoom15MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom15MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom15MinimapTex[] = dgShadowTempleRoom15MinimapTex; + +#define dgShadowTempleRoom16MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom16MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom16MinimapTex[] = dgShadowTempleRoom16MinimapTex; + +#define dgShadowTempleRoom17MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom17MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom17MinimapTex[] = dgShadowTempleRoom17MinimapTex; + +#define dgShadowTempleRoom18MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom18MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom18MinimapTex[] = dgShadowTempleRoom18MinimapTex; + +#define dgShadowTempleRoom19MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom19MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom19MinimapTex[] = dgShadowTempleRoom19MinimapTex; + +#define dgShadowTempleRoom20MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom20MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom20MinimapTex[] = dgShadowTempleRoom20MinimapTex; + +#define dgShadowTempleRoom21Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom21Basement3MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom21Basement3MinimapTex[] = dgShadowTempleRoom21Basement3MinimapTex; + +#define dgShadowTempleRoom8Basement3MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom8Basement3MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom8Basement3MinimapTex[] = dgShadowTempleRoom8Basement3MinimapTex; + +#define dgShadowTempleRoom9Basement4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom9Basement4MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom9Basement4MinimapTex[] = dgShadowTempleRoom9Basement4MinimapTex; + +#define dgShadowTempleRoom12Basement4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom12Basement4MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom12Basement4MinimapTex[] = dgShadowTempleRoom12Basement4MinimapTex; + +#define dgShadowTempleRoom14Basement4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom14Basement4MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom14Basement4MinimapTex[] = dgShadowTempleRoom14Basement4MinimapTex; + +#define dgShadowTempleRoom21Basement4MinimapTex "__OTR__textures/map_i_static/gShadowTempleRoom21Basement4MinimapTex" +static const ALIGN_ASSET(2) char gShadowTempleRoom21Basement4MinimapTex[] = dgShadowTempleRoom21Basement4MinimapTex; + +#define dgBottomOfTheWellRoom0Basement1MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom0Basement1MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom0Basement1MinimapTex[] = dgBottomOfTheWellRoom0Basement1MinimapTex; + +#define dgBottomOfTheWellRoom1Basement1MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom1Basement1MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom1Basement1MinimapTex[] = dgBottomOfTheWellRoom1Basement1MinimapTex; + +#define dgBottomOfTheWellRoom2MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom2MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom2MinimapTex[] = dgBottomOfTheWellRoom2MinimapTex; + +#define dgBottomOfTheWellRoom3MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom3MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom3MinimapTex[] = dgBottomOfTheWellRoom3MinimapTex; + +#define dgBottomOfTheWellRoom4MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom4MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom4MinimapTex[] = dgBottomOfTheWellRoom4MinimapTex; + +#define dgBottomOfTheWellRoom5MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom5MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom5MinimapTex[] = dgBottomOfTheWellRoom5MinimapTex; + +#define dgBottomOfTheWellRoom6MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom6MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom6MinimapTex[] = dgBottomOfTheWellRoom6MinimapTex; + +#define dgBottomOfTheWellRoom0Basement2MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom0Basement2MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom0Basement2MinimapTex[] = dgBottomOfTheWellRoom0Basement2MinimapTex; + +#define dgBottomOfTheWellRoom1Basement2MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom1Basement2MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom1Basement2MinimapTex[] = dgBottomOfTheWellRoom1Basement2MinimapTex; + +#define dgBottomOfTheWellRoom1Basement3MinimapTex "__OTR__textures/map_i_static/gBottomOfTheWellRoom1Basement3MinimapTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellRoom1Basement3MinimapTex[] = dgBottomOfTheWellRoom1Basement3MinimapTex; + +#define dgIceCavernRoom0MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom0MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom0MinimapTex[] = dgIceCavernRoom0MinimapTex; + +#define dgIceCavernRoom1MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom1MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom1MinimapTex[] = dgIceCavernRoom1MinimapTex; + +#define dgIceCavernRoom2MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom2MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom2MinimapTex[] = dgIceCavernRoom2MinimapTex; + +#define dgIceCavernRoom3MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom3MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom3MinimapTex[] = dgIceCavernRoom3MinimapTex; + +#define dgIceCavernRoom4MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom4MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom4MinimapTex[] = dgIceCavernRoom4MinimapTex; + +#define dgIceCavernRoom5MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom5MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom5MinimapTex[] = dgIceCavernRoom5MinimapTex; + +#define dgIceCavernRoom6MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom6MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom6MinimapTex[] = dgIceCavernRoom6MinimapTex; + +#define dgIceCavernRoom7MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom7MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom7MinimapTex[] = dgIceCavernRoom7MinimapTex; + +#define dgIceCavernRoom8MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom8MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom8MinimapTex[] = dgIceCavernRoom8MinimapTex; + +#define dgIceCavernRoom9MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom9MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom9MinimapTex[] = dgIceCavernRoom9MinimapTex; + +#define dgIceCavernRoom10MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom10MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom10MinimapTex[] = dgIceCavernRoom10MinimapTex; + +#define dgIceCavernRoom11MinimapTex "__OTR__textures/map_i_static/gIceCavernRoom11MinimapTex" +static const ALIGN_ASSET(2) char gIceCavernRoom11MinimapTex[] = dgIceCavernRoom11MinimapTex; \ No newline at end of file diff --git a/soh/assets/textures/map_name_static/map_name_static.h b/soh/assets/textures/map_name_static/map_name_static.h index c3944a60b..1eb05a2a2 100644 --- a/soh/assets/textures/map_name_static/map_name_static.h +++ b/soh/assets/textures/map_name_static/map_name_static.h @@ -1,716 +1,309 @@ #pragma once -#define dgHauntedWastelandPointNameENGTex "__OTR__textures/map_name_static/gHauntedWastelandPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandPointNameENGTex[] = dgHauntedWastelandPointNameENGTex; -#else -static const char gHauntedWastelandPointNameENGTex[] __attribute__((aligned (2))) = dgHauntedWastelandPointNameENGTex; -#endif - -#define dgGerudosFortressPointNameENGTex "__OTR__textures/map_name_static/gGerudosFortressPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosFortressPointNameENGTex[] = dgGerudosFortressPointNameENGTex; -#else -static const char gGerudosFortressPointNameENGTex[] __attribute__((aligned (2))) = dgGerudosFortressPointNameENGTex; -#endif - -#define dgGerudoValleyPointNameENGTex "__OTR__textures/map_name_static/gGerudoValleyPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyPointNameENGTex[] = dgGerudoValleyPointNameENGTex; -#else -static const char gGerudoValleyPointNameENGTex[] __attribute__((aligned (2))) = dgGerudoValleyPointNameENGTex; -#endif - -#define dgHyliaLakesidePointNameENGTex "__OTR__textures/map_name_static/gHyliaLakesidePointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyliaLakesidePointNameENGTex[] = dgHyliaLakesidePointNameENGTex; -#else -static const char gHyliaLakesidePointNameENGTex[] __attribute__((aligned (2))) = dgHyliaLakesidePointNameENGTex; -#endif - -#define dgLonLonRanchPointNameENGTex "__OTR__textures/map_name_static/gLonLonRanchPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchPointNameENGTex[] = dgLonLonRanchPointNameENGTex; -#else -static const char gLonLonRanchPointNameENGTex[] __attribute__((aligned (2))) = dgLonLonRanchPointNameENGTex; -#endif - -#define dgMarketPointNameENGTex "__OTR__textures/map_name_static/gMarketPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPointNameENGTex[] = dgMarketPointNameENGTex; -#else -static const char gMarketPointNameENGTex[] __attribute__((aligned (2))) = dgMarketPointNameENGTex; -#endif - -#define dgHyruleFieldPointNameENGTex "__OTR__textures/map_name_static/gHyruleFieldPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldPointNameENGTex[] = dgHyruleFieldPointNameENGTex; -#else -static const char gHyruleFieldPointNameENGTex[] __attribute__((aligned (2))) = dgHyruleFieldPointNameENGTex; -#endif - -#define dgDeathMountainPointNameENGTex "__OTR__textures/map_name_static/gDeathMountainPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainPointNameENGTex[] = dgDeathMountainPointNameENGTex; -#else -static const char gDeathMountainPointNameENGTex[] __attribute__((aligned (2))) = dgDeathMountainPointNameENGTex; -#endif - -#define dgKakarikoVillagePointNameENGTex "__OTR__textures/map_name_static/gKakarikoVillagePointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillagePointNameENGTex[] = dgKakarikoVillagePointNameENGTex; -#else -static const char gKakarikoVillagePointNameENGTex[] __attribute__((aligned (2))) = dgKakarikoVillagePointNameENGTex; -#endif - -#define dgLostWoodsPointNameENGTex "__OTR__textures/map_name_static/gLostWoodsPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsPointNameENGTex[] = dgLostWoodsPointNameENGTex; -#else -static const char gLostWoodsPointNameENGTex[] __attribute__((aligned (2))) = dgLostWoodsPointNameENGTex; -#endif - -#define dgKokiriForestPointNameENGTex "__OTR__textures/map_name_static/gKokiriForestPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestPointNameENGTex[] = dgKokiriForestPointNameENGTex; -#else -static const char gKokiriForestPointNameENGTex[] __attribute__((aligned (2))) = dgKokiriForestPointNameENGTex; -#endif - -#define dgZorasDomainPointNameENGTex "__OTR__textures/map_name_static/gZorasDomainPointNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainPointNameENGTex[] = dgZorasDomainPointNameENGTex; -#else -static const char gZorasDomainPointNameENGTex[] __attribute__((aligned (2))) = dgZorasDomainPointNameENGTex; -#endif - -#define dgHauntedWastelandPointNameGERTex "__OTR__textures/map_name_static/gHauntedWastelandPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandPointNameGERTex[] = dgHauntedWastelandPointNameGERTex; -#else -static const char gHauntedWastelandPointNameGERTex[] __attribute__((aligned (2))) = dgHauntedWastelandPointNameGERTex; -#endif - -#define dgGerudosFortressPointNameGERTex "__OTR__textures/map_name_static/gGerudosFortressPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosFortressPointNameGERTex[] = dgGerudosFortressPointNameGERTex; -#else -static const char gGerudosFortressPointNameGERTex[] __attribute__((aligned (2))) = dgGerudosFortressPointNameGERTex; -#endif - -#define dgGerudoValleyPointNameGERTex "__OTR__textures/map_name_static/gGerudoValleyPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyPointNameGERTex[] = dgGerudoValleyPointNameGERTex; -#else -static const char gGerudoValleyPointNameGERTex[] __attribute__((aligned (2))) = dgGerudoValleyPointNameGERTex; -#endif - -#define dgHyliaLakesidePointNameGERTex "__OTR__textures/map_name_static/gHyliaLakesidePointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyliaLakesidePointNameGERTex[] = dgHyliaLakesidePointNameGERTex; -#else -static const char gHyliaLakesidePointNameGERTex[] __attribute__((aligned (2))) = dgHyliaLakesidePointNameGERTex; -#endif - -#define dgLonLonRanchPointNameGERTex "__OTR__textures/map_name_static/gLonLonRanchPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchPointNameGERTex[] = dgLonLonRanchPointNameGERTex; -#else -static const char gLonLonRanchPointNameGERTex[] __attribute__((aligned (2))) = dgLonLonRanchPointNameGERTex; -#endif - -#define dgMarketPointNameGERTex "__OTR__textures/map_name_static/gMarketPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPointNameGERTex[] = dgMarketPointNameGERTex; -#else -static const char gMarketPointNameGERTex[] __attribute__((aligned (2))) = dgMarketPointNameGERTex; -#endif - -#define dgHyruleFieldPointNameGERTex "__OTR__textures/map_name_static/gHyruleFieldPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldPointNameGERTex[] = dgHyruleFieldPointNameGERTex; -#else -static const char gHyruleFieldPointNameGERTex[] __attribute__((aligned (2))) = dgHyruleFieldPointNameGERTex; -#endif - -#define dgDeathMountainPointNameGERTex "__OTR__textures/map_name_static/gDeathMountainPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainPointNameGERTex[] = dgDeathMountainPointNameGERTex; -#else -static const char gDeathMountainPointNameGERTex[] __attribute__((aligned (2))) = dgDeathMountainPointNameGERTex; -#endif - -#define dgKakarikoVillagePointNameGERTex "__OTR__textures/map_name_static/gKakarikoVillagePointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillagePointNameGERTex[] = dgKakarikoVillagePointNameGERTex; -#else -static const char gKakarikoVillagePointNameGERTex[] __attribute__((aligned (2))) = dgKakarikoVillagePointNameGERTex; -#endif - -#define dgLostWoodsPointNameGERTex "__OTR__textures/map_name_static/gLostWoodsPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsPointNameGERTex[] = dgLostWoodsPointNameGERTex; -#else -static const char gLostWoodsPointNameGERTex[] __attribute__((aligned (2))) = dgLostWoodsPointNameGERTex; -#endif - -#define dgKokiriForestPointNameGERTex "__OTR__textures/map_name_static/gKokiriForestPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestPointNameGERTex[] = dgKokiriForestPointNameGERTex; -#else -static const char gKokiriForestPointNameGERTex[] __attribute__((aligned (2))) = dgKokiriForestPointNameGERTex; -#endif - -#define dgZorasDomainPointNameGERTex "__OTR__textures/map_name_static/gZorasDomainPointNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainPointNameGERTex[] = dgZorasDomainPointNameGERTex; -#else -static const char gZorasDomainPointNameGERTex[] __attribute__((aligned (2))) = dgZorasDomainPointNameGERTex; -#endif - -#define dgHauntedWastelandPointNameFRATex "__OTR__textures/map_name_static/gHauntedWastelandPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandPointNameFRATex[] = dgHauntedWastelandPointNameFRATex; -#else -static const char gHauntedWastelandPointNameFRATex[] __attribute__((aligned (2))) = dgHauntedWastelandPointNameFRATex; -#endif - -#define dgGerudosFortressPointNameFRATex "__OTR__textures/map_name_static/gGerudosFortressPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosFortressPointNameFRATex[] = dgGerudosFortressPointNameFRATex; -#else -static const char gGerudosFortressPointNameFRATex[] __attribute__((aligned (2))) = dgGerudosFortressPointNameFRATex; -#endif - -#define dgGerudoValleyPointNameFRATex "__OTR__textures/map_name_static/gGerudoValleyPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyPointNameFRATex[] = dgGerudoValleyPointNameFRATex; -#else -static const char gGerudoValleyPointNameFRATex[] __attribute__((aligned (2))) = dgGerudoValleyPointNameFRATex; -#endif - -#define dgHyliaLakesidePointNameFRATex "__OTR__textures/map_name_static/gHyliaLakesidePointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyliaLakesidePointNameFRATex[] = dgHyliaLakesidePointNameFRATex; -#else -static const char gHyliaLakesidePointNameFRATex[] __attribute__((aligned (2))) = dgHyliaLakesidePointNameFRATex; -#endif - -#define dgLonLonRanchPointNameFRATex "__OTR__textures/map_name_static/gLonLonRanchPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchPointNameFRATex[] = dgLonLonRanchPointNameFRATex; -#else -static const char gLonLonRanchPointNameFRATex[] __attribute__((aligned (2))) = dgLonLonRanchPointNameFRATex; -#endif - -#define dgMarketPointNameFRATex "__OTR__textures/map_name_static/gMarketPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPointNameFRATex[] = dgMarketPointNameFRATex; -#else -static const char gMarketPointNameFRATex[] __attribute__((aligned (2))) = dgMarketPointNameFRATex; -#endif - -#define dgHyruleFieldPointNameFRATex "__OTR__textures/map_name_static/gHyruleFieldPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldPointNameFRATex[] = dgHyruleFieldPointNameFRATex; -#else -static const char gHyruleFieldPointNameFRATex[] __attribute__((aligned (2))) = dgHyruleFieldPointNameFRATex; -#endif - -#define dgDeathMountainPointNameFRATex "__OTR__textures/map_name_static/gDeathMountainPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainPointNameFRATex[] = dgDeathMountainPointNameFRATex; -#else -static const char gDeathMountainPointNameFRATex[] __attribute__((aligned (2))) = dgDeathMountainPointNameFRATex; -#endif - -#define dgKakarikoVillagePointNameFRATex "__OTR__textures/map_name_static/gKakarikoVillagePointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillagePointNameFRATex[] = dgKakarikoVillagePointNameFRATex; -#else -static const char gKakarikoVillagePointNameFRATex[] __attribute__((aligned (2))) = dgKakarikoVillagePointNameFRATex; -#endif - -#define dgLostWoodsPointNameFRATex "__OTR__textures/map_name_static/gLostWoodsPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsPointNameFRATex[] = dgLostWoodsPointNameFRATex; -#else -static const char gLostWoodsPointNameFRATex[] __attribute__((aligned (2))) = dgLostWoodsPointNameFRATex; -#endif - -#define dgKokiriForestPointNameFRATex "__OTR__textures/map_name_static/gKokiriForestPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestPointNameFRATex[] = dgKokiriForestPointNameFRATex; -#else -static const char gKokiriForestPointNameFRATex[] __attribute__((aligned (2))) = dgKokiriForestPointNameFRATex; -#endif - -#define dgZorasDomainPointNameFRATex "__OTR__textures/map_name_static/gZorasDomainPointNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainPointNameFRATex[] = dgZorasDomainPointNameFRATex; -#else -static const char gZorasDomainPointNameFRATex[] __attribute__((aligned (2))) = dgZorasDomainPointNameFRATex; -#endif - -#define dgHyruleFieldPositionNameENGTex "__OTR__textures/map_name_static/gHyruleFieldPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldPositionNameENGTex[] = dgHyruleFieldPositionNameENGTex; -#else -static const char gHyruleFieldPositionNameENGTex[] __attribute__((aligned (2))) = dgHyruleFieldPositionNameENGTex; -#endif - -#define dgKakarikoVillagePositionNameENGTex "__OTR__textures/map_name_static/gKakarikoVillagePositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillagePositionNameENGTex[] = dgKakarikoVillagePositionNameENGTex; -#else -static const char gKakarikoVillagePositionNameENGTex[] __attribute__((aligned (2))) = dgKakarikoVillagePositionNameENGTex; -#endif - -#define dgGraveyardPositionNameENGTex "__OTR__textures/map_name_static/gGraveyardPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardPositionNameENGTex[] = dgGraveyardPositionNameENGTex; -#else -static const char gGraveyardPositionNameENGTex[] __attribute__((aligned (2))) = dgGraveyardPositionNameENGTex; -#endif - -#define dgZorasRiverPositionNameENGTex "__OTR__textures/map_name_static/gZorasRiverPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasRiverPositionNameENGTex[] = dgZorasRiverPositionNameENGTex; -#else -static const char gZorasRiverPositionNameENGTex[] __attribute__((aligned (2))) = dgZorasRiverPositionNameENGTex; -#endif - -#define dgKokiriForestPositionNameENGTex "__OTR__textures/map_name_static/gKokiriForestPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestPositionNameENGTex[] = dgKokiriForestPositionNameENGTex; -#else -static const char gKokiriForestPositionNameENGTex[] __attribute__((aligned (2))) = dgKokiriForestPositionNameENGTex; -#endif - -#define dgSacredForestMeadowPositionNameENGTex "__OTR__textures/map_name_static/gSacredForestMeadowPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSacredForestMeadowPositionNameENGTex[] = dgSacredForestMeadowPositionNameENGTex; -#else -static const char gSacredForestMeadowPositionNameENGTex[] __attribute__((aligned (2))) = dgSacredForestMeadowPositionNameENGTex; -#endif - -#define dgLakeHyliaPositionNameENGTex "__OTR__textures/map_name_static/gLakeHyliaPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaPositionNameENGTex[] = dgLakeHyliaPositionNameENGTex; -#else -static const char gLakeHyliaPositionNameENGTex[] __attribute__((aligned (2))) = dgLakeHyliaPositionNameENGTex; -#endif - -#define dgZorasDomainPositionNameENGTex "__OTR__textures/map_name_static/gZorasDomainPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainPositionNameENGTex[] = dgZorasDomainPositionNameENGTex; -#else -static const char gZorasDomainPositionNameENGTex[] __attribute__((aligned (2))) = dgZorasDomainPositionNameENGTex; -#endif - -#define dgZorasFountainPositionNameENGTex "__OTR__textures/map_name_static/gZorasFountainPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainPositionNameENGTex[] = dgZorasFountainPositionNameENGTex; -#else -static const char gZorasFountainPositionNameENGTex[] __attribute__((aligned (2))) = dgZorasFountainPositionNameENGTex; -#endif - -#define dgGerudoValleyPositionNameENGTex "__OTR__textures/map_name_static/gGerudoValleyPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyPositionNameENGTex[] = dgGerudoValleyPositionNameENGTex; -#else -static const char gGerudoValleyPositionNameENGTex[] __attribute__((aligned (2))) = dgGerudoValleyPositionNameENGTex; -#endif - -#define dgLostWoodsPositionNameENGTex "__OTR__textures/map_name_static/gLostWoodsPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsPositionNameENGTex[] = dgLostWoodsPositionNameENGTex; -#else -static const char gLostWoodsPositionNameENGTex[] __attribute__((aligned (2))) = dgLostWoodsPositionNameENGTex; -#endif - -#define dgDesertColossusPositionNameENGTex "__OTR__textures/map_name_static/gDesertColossusPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusPositionNameENGTex[] = dgDesertColossusPositionNameENGTex; -#else -static const char gDesertColossusPositionNameENGTex[] __attribute__((aligned (2))) = dgDesertColossusPositionNameENGTex; -#endif - -#define dgGerudosFortressPositionNameENGTex "__OTR__textures/map_name_static/gGerudosFortressPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosFortressPositionNameENGTex[] = dgGerudosFortressPositionNameENGTex; -#else -static const char gGerudosFortressPositionNameENGTex[] __attribute__((aligned (2))) = dgGerudosFortressPositionNameENGTex; -#endif - -#define dgHauntedWastelandPositionNameENGTex "__OTR__textures/map_name_static/gHauntedWastelandPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandPositionNameENGTex[] = dgHauntedWastelandPositionNameENGTex; -#else -static const char gHauntedWastelandPositionNameENGTex[] __attribute__((aligned (2))) = dgHauntedWastelandPositionNameENGTex; -#endif - -#define dgMarketPositionNameENGTex "__OTR__textures/map_name_static/gMarketPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPositionNameENGTex[] = dgMarketPositionNameENGTex; -#else -static const char gMarketPositionNameENGTex[] __attribute__((aligned (2))) = dgMarketPositionNameENGTex; -#endif - -#define dgHyruleCastlePositionNameENGTex "__OTR__textures/map_name_static/gHyruleCastlePositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleCastlePositionNameENGTex[] = dgHyruleCastlePositionNameENGTex; -#else -static const char gHyruleCastlePositionNameENGTex[] __attribute__((aligned (2))) = dgHyruleCastlePositionNameENGTex; -#endif - -#define dgDeathMountainTrailPositionNameENGTex "__OTR__textures/map_name_static/gDeathMountainTrailPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainTrailPositionNameENGTex[] = dgDeathMountainTrailPositionNameENGTex; -#else -static const char gDeathMountainTrailPositionNameENGTex[] __attribute__((aligned (2))) = dgDeathMountainTrailPositionNameENGTex; -#endif - -#define dgDeathMountainCraterPositionNameENGTex "__OTR__textures/map_name_static/gDeathMountainCraterPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterPositionNameENGTex[] = dgDeathMountainCraterPositionNameENGTex; -#else -static const char gDeathMountainCraterPositionNameENGTex[] __attribute__((aligned (2))) = dgDeathMountainCraterPositionNameENGTex; -#endif - -#define dgGoronCityPositionNameENGTex "__OTR__textures/map_name_static/gGoronCityPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityPositionNameENGTex[] = dgGoronCityPositionNameENGTex; -#else -static const char gGoronCityPositionNameENGTex[] __attribute__((aligned (2))) = dgGoronCityPositionNameENGTex; -#endif - -#define dgLonLonRanchPositionNameENGTex "__OTR__textures/map_name_static/gLonLonRanchPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchPositionNameENGTex[] = dgLonLonRanchPositionNameENGTex; -#else -static const char gLonLonRanchPositionNameENGTex[] __attribute__((aligned (2))) = dgLonLonRanchPositionNameENGTex; -#endif - -#define dgQuestionMarkPositionNameENGTex "__OTR__textures/map_name_static/gQuestionMarkPositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuestionMarkPositionNameENGTex[] = dgQuestionMarkPositionNameENGTex; -#else -static const char gQuestionMarkPositionNameENGTex[] __attribute__((aligned (2))) = dgQuestionMarkPositionNameENGTex; -#endif - -#define dgGanonsCastlePositionNameENGTex "__OTR__textures/map_name_static/gGanonsCastlePositionNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastlePositionNameENGTex[] = dgGanonsCastlePositionNameENGTex; -#else -static const char gGanonsCastlePositionNameENGTex[] __attribute__((aligned (2))) = dgGanonsCastlePositionNameENGTex; -#endif - -#define dgHyruleFieldPositionNameGERTex "__OTR__textures/map_name_static/gHyruleFieldPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldPositionNameGERTex[] = dgHyruleFieldPositionNameGERTex; -#else -static const char gHyruleFieldPositionNameGERTex[] __attribute__((aligned (2))) = dgHyruleFieldPositionNameGERTex; -#endif - -#define dgKakarikoVillagePositionNameGERTex "__OTR__textures/map_name_static/gKakarikoVillagePositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillagePositionNameGERTex[] = dgKakarikoVillagePositionNameGERTex; -#else -static const char gKakarikoVillagePositionNameGERTex[] __attribute__((aligned (2))) = dgKakarikoVillagePositionNameGERTex; -#endif - -#define dgGraveyardPositionNameGERTex "__OTR__textures/map_name_static/gGraveyardPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardPositionNameGERTex[] = dgGraveyardPositionNameGERTex; -#else -static const char gGraveyardPositionNameGERTex[] __attribute__((aligned (2))) = dgGraveyardPositionNameGERTex; -#endif - -#define dgZorasRiverPositionNameGERTex "__OTR__textures/map_name_static/gZorasRiverPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasRiverPositionNameGERTex[] = dgZorasRiverPositionNameGERTex; -#else -static const char gZorasRiverPositionNameGERTex[] __attribute__((aligned (2))) = dgZorasRiverPositionNameGERTex; -#endif - -#define dgKokiriForestPositionNameGERTex "__OTR__textures/map_name_static/gKokiriForestPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestPositionNameGERTex[] = dgKokiriForestPositionNameGERTex; -#else -static const char gKokiriForestPositionNameGERTex[] __attribute__((aligned (2))) = dgKokiriForestPositionNameGERTex; -#endif - -#define dgSacredForestMeadowPositionNameGERTex "__OTR__textures/map_name_static/gSacredForestMeadowPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSacredForestMeadowPositionNameGERTex[] = dgSacredForestMeadowPositionNameGERTex; -#else -static const char gSacredForestMeadowPositionNameGERTex[] __attribute__((aligned (2))) = dgSacredForestMeadowPositionNameGERTex; -#endif - -#define dgLakeHyliaPositionNameGERTex "__OTR__textures/map_name_static/gLakeHyliaPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaPositionNameGERTex[] = dgLakeHyliaPositionNameGERTex; -#else -static const char gLakeHyliaPositionNameGERTex[] __attribute__((aligned (2))) = dgLakeHyliaPositionNameGERTex; -#endif - -#define dgZorasDomainPositionNameGERTex "__OTR__textures/map_name_static/gZorasDomainPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainPositionNameGERTex[] = dgZorasDomainPositionNameGERTex; -#else -static const char gZorasDomainPositionNameGERTex[] __attribute__((aligned (2))) = dgZorasDomainPositionNameGERTex; -#endif - -#define dgZorasFountainPositionNameGERTex "__OTR__textures/map_name_static/gZorasFountainPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainPositionNameGERTex[] = dgZorasFountainPositionNameGERTex; -#else -static const char gZorasFountainPositionNameGERTex[] __attribute__((aligned (2))) = dgZorasFountainPositionNameGERTex; -#endif - -#define dgGerudoValleyPositionNameGERTex "__OTR__textures/map_name_static/gGerudoValleyPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyPositionNameGERTex[] = dgGerudoValleyPositionNameGERTex; -#else -static const char gGerudoValleyPositionNameGERTex[] __attribute__((aligned (2))) = dgGerudoValleyPositionNameGERTex; -#endif - -#define dgLostWoodsPositionNameGERTex "__OTR__textures/map_name_static/gLostWoodsPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsPositionNameGERTex[] = dgLostWoodsPositionNameGERTex; -#else -static const char gLostWoodsPositionNameGERTex[] __attribute__((aligned (2))) = dgLostWoodsPositionNameGERTex; -#endif - -#define dgDesertColossusPositionNameGERTex "__OTR__textures/map_name_static/gDesertColossusPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusPositionNameGERTex[] = dgDesertColossusPositionNameGERTex; -#else -static const char gDesertColossusPositionNameGERTex[] __attribute__((aligned (2))) = dgDesertColossusPositionNameGERTex; -#endif - -#define dgGerudosFortressPositionNameGERTex "__OTR__textures/map_name_static/gGerudosFortressPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosFortressPositionNameGERTex[] = dgGerudosFortressPositionNameGERTex; -#else -static const char gGerudosFortressPositionNameGERTex[] __attribute__((aligned (2))) = dgGerudosFortressPositionNameGERTex; -#endif - -#define dgHauntedWastelandPositionNameGERTex "__OTR__textures/map_name_static/gHauntedWastelandPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandPositionNameGERTex[] = dgHauntedWastelandPositionNameGERTex; -#else -static const char gHauntedWastelandPositionNameGERTex[] __attribute__((aligned (2))) = dgHauntedWastelandPositionNameGERTex; -#endif - -#define dgMarketPositionNameGERTex "__OTR__textures/map_name_static/gMarketPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPositionNameGERTex[] = dgMarketPositionNameGERTex; -#else -static const char gMarketPositionNameGERTex[] __attribute__((aligned (2))) = dgMarketPositionNameGERTex; -#endif - -#define dgHyruleCastlePositionNameGERTex "__OTR__textures/map_name_static/gHyruleCastlePositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleCastlePositionNameGERTex[] = dgHyruleCastlePositionNameGERTex; -#else -static const char gHyruleCastlePositionNameGERTex[] __attribute__((aligned (2))) = dgHyruleCastlePositionNameGERTex; -#endif - -#define dgDeathMountainTrailPositionNameGERTex "__OTR__textures/map_name_static/gDeathMountainTrailPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainTrailPositionNameGERTex[] = dgDeathMountainTrailPositionNameGERTex; -#else -static const char gDeathMountainTrailPositionNameGERTex[] __attribute__((aligned (2))) = dgDeathMountainTrailPositionNameGERTex; -#endif - -#define dgDeathMountainCraterPositionNameGERTex "__OTR__textures/map_name_static/gDeathMountainCraterPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterPositionNameGERTex[] = dgDeathMountainCraterPositionNameGERTex; -#else -static const char gDeathMountainCraterPositionNameGERTex[] __attribute__((aligned (2))) = dgDeathMountainCraterPositionNameGERTex; -#endif - -#define dgGoronCityPositionNameGERTex "__OTR__textures/map_name_static/gGoronCityPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityPositionNameGERTex[] = dgGoronCityPositionNameGERTex; -#else -static const char gGoronCityPositionNameGERTex[] __attribute__((aligned (2))) = dgGoronCityPositionNameGERTex; -#endif - -#define dgLonLonRanchPositionNameGERTex "__OTR__textures/map_name_static/gLonLonRanchPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchPositionNameGERTex[] = dgLonLonRanchPositionNameGERTex; -#else -static const char gLonLonRanchPositionNameGERTex[] __attribute__((aligned (2))) = dgLonLonRanchPositionNameGERTex; -#endif - -#define dgQuestionMarkPositionNameGERTex "__OTR__textures/map_name_static/gQuestionMarkPositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuestionMarkPositionNameGERTex[] = dgQuestionMarkPositionNameGERTex; -#else -static const char gQuestionMarkPositionNameGERTex[] __attribute__((aligned (2))) = dgQuestionMarkPositionNameGERTex; -#endif - -#define dgGanonsCastlePositionNameGERTex "__OTR__textures/map_name_static/gGanonsCastlePositionNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastlePositionNameGERTex[] = dgGanonsCastlePositionNameGERTex; -#else -static const char gGanonsCastlePositionNameGERTex[] __attribute__((aligned (2))) = dgGanonsCastlePositionNameGERTex; -#endif - -#define dgHyruleFieldPositionNameFRATex "__OTR__textures/map_name_static/gHyruleFieldPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldPositionNameFRATex[] = dgHyruleFieldPositionNameFRATex; -#else -static const char gHyruleFieldPositionNameFRATex[] __attribute__((aligned (2))) = dgHyruleFieldPositionNameFRATex; -#endif - -#define dgKakarikoVillagePositionNameFRATex "__OTR__textures/map_name_static/gKakarikoVillagePositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillagePositionNameFRATex[] = dgKakarikoVillagePositionNameFRATex; -#else -static const char gKakarikoVillagePositionNameFRATex[] __attribute__((aligned (2))) = dgKakarikoVillagePositionNameFRATex; -#endif - -#define dgGraveyardPositionNameFRATex "__OTR__textures/map_name_static/gGraveyardPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardPositionNameFRATex[] = dgGraveyardPositionNameFRATex; -#else -static const char gGraveyardPositionNameFRATex[] __attribute__((aligned (2))) = dgGraveyardPositionNameFRATex; -#endif - -#define dgZorasRiverPositionNameFRATex "__OTR__textures/map_name_static/gZorasRiverPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasRiverPositionNameFRATex[] = dgZorasRiverPositionNameFRATex; -#else -static const char gZorasRiverPositionNameFRATex[] __attribute__((aligned (2))) = dgZorasRiverPositionNameFRATex; -#endif - -#define dgKokiriForestPositionNameFRATex "__OTR__textures/map_name_static/gKokiriForestPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestPositionNameFRATex[] = dgKokiriForestPositionNameFRATex; -#else -static const char gKokiriForestPositionNameFRATex[] __attribute__((aligned (2))) = dgKokiriForestPositionNameFRATex; -#endif - -#define dgSacredForestMeadowPositionNameFRATex "__OTR__textures/map_name_static/gSacredForestMeadowPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSacredForestMeadowPositionNameFRATex[] = dgSacredForestMeadowPositionNameFRATex; -#else -static const char gSacredForestMeadowPositionNameFRATex[] __attribute__((aligned (2))) = dgSacredForestMeadowPositionNameFRATex; -#endif - -#define dgLakeHyliaPositionNameFRATex "__OTR__textures/map_name_static/gLakeHyliaPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaPositionNameFRATex[] = dgLakeHyliaPositionNameFRATex; -#else -static const char gLakeHyliaPositionNameFRATex[] __attribute__((aligned (2))) = dgLakeHyliaPositionNameFRATex; -#endif - -#define dgZorasDomainPositionNameFRATex "__OTR__textures/map_name_static/gZorasDomainPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainPositionNameFRATex[] = dgZorasDomainPositionNameFRATex; -#else -static const char gZorasDomainPositionNameFRATex[] __attribute__((aligned (2))) = dgZorasDomainPositionNameFRATex; -#endif - -#define dgZorasFountainPositionNameFRATex "__OTR__textures/map_name_static/gZorasFountainPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainPositionNameFRATex[] = dgZorasFountainPositionNameFRATex; -#else -static const char gZorasFountainPositionNameFRATex[] __attribute__((aligned (2))) = dgZorasFountainPositionNameFRATex; -#endif - -#define dgGerudoValleyPositionNameFRATex "__OTR__textures/map_name_static/gGerudoValleyPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudoValleyPositionNameFRATex[] = dgGerudoValleyPositionNameFRATex; -#else -static const char gGerudoValleyPositionNameFRATex[] __attribute__((aligned (2))) = dgGerudoValleyPositionNameFRATex; -#endif - -#define dgLostWoodsPositionNameFRATex "__OTR__textures/map_name_static/gLostWoodsPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsPositionNameFRATex[] = dgLostWoodsPositionNameFRATex; -#else -static const char gLostWoodsPositionNameFRATex[] __attribute__((aligned (2))) = dgLostWoodsPositionNameFRATex; -#endif - -#define dgDesertColossusPositionNameFRATex "__OTR__textures/map_name_static/gDesertColossusPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusPositionNameFRATex[] = dgDesertColossusPositionNameFRATex; -#else -static const char gDesertColossusPositionNameFRATex[] __attribute__((aligned (2))) = dgDesertColossusPositionNameFRATex; -#endif - -#define dgGerudosFortressPositionNameFRATex "__OTR__textures/map_name_static/gGerudosFortressPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGerudosFortressPositionNameFRATex[] = dgGerudosFortressPositionNameFRATex; -#else -static const char gGerudosFortressPositionNameFRATex[] __attribute__((aligned (2))) = dgGerudosFortressPositionNameFRATex; -#endif - -#define dgHauntedWastelandPositionNameFRATex "__OTR__textures/map_name_static/gHauntedWastelandPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandPositionNameFRATex[] = dgHauntedWastelandPositionNameFRATex; -#else -static const char gHauntedWastelandPositionNameFRATex[] __attribute__((aligned (2))) = dgHauntedWastelandPositionNameFRATex; -#endif - -#define dgMarketPositionNameFRATex "__OTR__textures/map_name_static/gMarketPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketPositionNameFRATex[] = dgMarketPositionNameFRATex; -#else -static const char gMarketPositionNameFRATex[] __attribute__((aligned (2))) = dgMarketPositionNameFRATex; -#endif - -#define dgHyruleCastlePositionNameFRATex "__OTR__textures/map_name_static/gHyruleCastlePositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleCastlePositionNameFRATex[] = dgHyruleCastlePositionNameFRATex; -#else -static const char gHyruleCastlePositionNameFRATex[] __attribute__((aligned (2))) = dgHyruleCastlePositionNameFRATex; -#endif - -#define dgDeathMountainTrailPositionNameFRATex "__OTR__textures/map_name_static/gDeathMountainTrailPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainTrailPositionNameFRATex[] = dgDeathMountainTrailPositionNameFRATex; -#else -static const char gDeathMountainTrailPositionNameFRATex[] __attribute__((aligned (2))) = dgDeathMountainTrailPositionNameFRATex; -#endif - -#define dgDeathMountainCraterPositionNameFRATex "__OTR__textures/map_name_static/gDeathMountainCraterPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterPositionNameFRATex[] = dgDeathMountainCraterPositionNameFRATex; -#else -static const char gDeathMountainCraterPositionNameFRATex[] __attribute__((aligned (2))) = dgDeathMountainCraterPositionNameFRATex; -#endif - -#define dgGoronCityPositionNameFRATex "__OTR__textures/map_name_static/gGoronCityPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityPositionNameFRATex[] = dgGoronCityPositionNameFRATex; -#else -static const char gGoronCityPositionNameFRATex[] __attribute__((aligned (2))) = dgGoronCityPositionNameFRATex; -#endif - -#define dgLonLonRanchPositionNameFRATex "__OTR__textures/map_name_static/gLonLonRanchPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchPositionNameFRATex[] = dgLonLonRanchPositionNameFRATex; -#else -static const char gLonLonRanchPositionNameFRATex[] __attribute__((aligned (2))) = dgLonLonRanchPositionNameFRATex; -#endif - -#define dgQuestionMarkPositionNameFRATex "__OTR__textures/map_name_static/gQuestionMarkPositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuestionMarkPositionNameFRATex[] = dgQuestionMarkPositionNameFRATex; -#else -static const char gQuestionMarkPositionNameFRATex[] __attribute__((aligned (2))) = dgQuestionMarkPositionNameFRATex; -#endif - -#define dgGanonsCastlePositionNameFRATex "__OTR__textures/map_name_static/gGanonsCastlePositionNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastlePositionNameFRATex[] = dgGanonsCastlePositionNameFRATex; -#else -static const char gGanonsCastlePositionNameFRATex[] __attribute__((aligned (2))) = dgGanonsCastlePositionNameFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgHauntedWastelandPointNameENGTex "__OTR__textures/map_name_static/gHauntedWastelandPointNameENGTex" +static const ALIGN_ASSET(2) char gHauntedWastelandPointNameENGTex[] = dgHauntedWastelandPointNameENGTex; + +#define dgGerudosFortressPointNameENGTex "__OTR__textures/map_name_static/gGerudosFortressPointNameENGTex" +static const ALIGN_ASSET(2) char gGerudosFortressPointNameENGTex[] = dgGerudosFortressPointNameENGTex; + +#define dgGerudoValleyPointNameENGTex "__OTR__textures/map_name_static/gGerudoValleyPointNameENGTex" +static const ALIGN_ASSET(2) char gGerudoValleyPointNameENGTex[] = dgGerudoValleyPointNameENGTex; + +#define dgHyliaLakesidePointNameENGTex "__OTR__textures/map_name_static/gHyliaLakesidePointNameENGTex" +static const ALIGN_ASSET(2) char gHyliaLakesidePointNameENGTex[] = dgHyliaLakesidePointNameENGTex; + +#define dgLonLonRanchPointNameENGTex "__OTR__textures/map_name_static/gLonLonRanchPointNameENGTex" +static const ALIGN_ASSET(2) char gLonLonRanchPointNameENGTex[] = dgLonLonRanchPointNameENGTex; + +#define dgMarketPointNameENGTex "__OTR__textures/map_name_static/gMarketPointNameENGTex" +static const ALIGN_ASSET(2) char gMarketPointNameENGTex[] = dgMarketPointNameENGTex; + +#define dgHyruleFieldPointNameENGTex "__OTR__textures/map_name_static/gHyruleFieldPointNameENGTex" +static const ALIGN_ASSET(2) char gHyruleFieldPointNameENGTex[] = dgHyruleFieldPointNameENGTex; + +#define dgDeathMountainPointNameENGTex "__OTR__textures/map_name_static/gDeathMountainPointNameENGTex" +static const ALIGN_ASSET(2) char gDeathMountainPointNameENGTex[] = dgDeathMountainPointNameENGTex; + +#define dgKakarikoVillagePointNameENGTex "__OTR__textures/map_name_static/gKakarikoVillagePointNameENGTex" +static const ALIGN_ASSET(2) char gKakarikoVillagePointNameENGTex[] = dgKakarikoVillagePointNameENGTex; + +#define dgLostWoodsPointNameENGTex "__OTR__textures/map_name_static/gLostWoodsPointNameENGTex" +static const ALIGN_ASSET(2) char gLostWoodsPointNameENGTex[] = dgLostWoodsPointNameENGTex; + +#define dgKokiriForestPointNameENGTex "__OTR__textures/map_name_static/gKokiriForestPointNameENGTex" +static const ALIGN_ASSET(2) char gKokiriForestPointNameENGTex[] = dgKokiriForestPointNameENGTex; + +#define dgZorasDomainPointNameENGTex "__OTR__textures/map_name_static/gZorasDomainPointNameENGTex" +static const ALIGN_ASSET(2) char gZorasDomainPointNameENGTex[] = dgZorasDomainPointNameENGTex; + +#define dgHauntedWastelandPointNameGERTex "__OTR__textures/map_name_static/gHauntedWastelandPointNameGERTex" +static const ALIGN_ASSET(2) char gHauntedWastelandPointNameGERTex[] = dgHauntedWastelandPointNameGERTex; + +#define dgGerudosFortressPointNameGERTex "__OTR__textures/map_name_static/gGerudosFortressPointNameGERTex" +static const ALIGN_ASSET(2) char gGerudosFortressPointNameGERTex[] = dgGerudosFortressPointNameGERTex; + +#define dgGerudoValleyPointNameGERTex "__OTR__textures/map_name_static/gGerudoValleyPointNameGERTex" +static const ALIGN_ASSET(2) char gGerudoValleyPointNameGERTex[] = dgGerudoValleyPointNameGERTex; + +#define dgHyliaLakesidePointNameGERTex "__OTR__textures/map_name_static/gHyliaLakesidePointNameGERTex" +static const ALIGN_ASSET(2) char gHyliaLakesidePointNameGERTex[] = dgHyliaLakesidePointNameGERTex; + +#define dgLonLonRanchPointNameGERTex "__OTR__textures/map_name_static/gLonLonRanchPointNameGERTex" +static const ALIGN_ASSET(2) char gLonLonRanchPointNameGERTex[] = dgLonLonRanchPointNameGERTex; + +#define dgMarketPointNameGERTex "__OTR__textures/map_name_static/gMarketPointNameGERTex" +static const ALIGN_ASSET(2) char gMarketPointNameGERTex[] = dgMarketPointNameGERTex; + +#define dgHyruleFieldPointNameGERTex "__OTR__textures/map_name_static/gHyruleFieldPointNameGERTex" +static const ALIGN_ASSET(2) char gHyruleFieldPointNameGERTex[] = dgHyruleFieldPointNameGERTex; + +#define dgDeathMountainPointNameGERTex "__OTR__textures/map_name_static/gDeathMountainPointNameGERTex" +static const ALIGN_ASSET(2) char gDeathMountainPointNameGERTex[] = dgDeathMountainPointNameGERTex; + +#define dgKakarikoVillagePointNameGERTex "__OTR__textures/map_name_static/gKakarikoVillagePointNameGERTex" +static const ALIGN_ASSET(2) char gKakarikoVillagePointNameGERTex[] = dgKakarikoVillagePointNameGERTex; + +#define dgLostWoodsPointNameGERTex "__OTR__textures/map_name_static/gLostWoodsPointNameGERTex" +static const ALIGN_ASSET(2) char gLostWoodsPointNameGERTex[] = dgLostWoodsPointNameGERTex; + +#define dgKokiriForestPointNameGERTex "__OTR__textures/map_name_static/gKokiriForestPointNameGERTex" +static const ALIGN_ASSET(2) char gKokiriForestPointNameGERTex[] = dgKokiriForestPointNameGERTex; + +#define dgZorasDomainPointNameGERTex "__OTR__textures/map_name_static/gZorasDomainPointNameGERTex" +static const ALIGN_ASSET(2) char gZorasDomainPointNameGERTex[] = dgZorasDomainPointNameGERTex; + +#define dgHauntedWastelandPointNameFRATex "__OTR__textures/map_name_static/gHauntedWastelandPointNameFRATex" +static const ALIGN_ASSET(2) char gHauntedWastelandPointNameFRATex[] = dgHauntedWastelandPointNameFRATex; + +#define dgGerudosFortressPointNameFRATex "__OTR__textures/map_name_static/gGerudosFortressPointNameFRATex" +static const ALIGN_ASSET(2) char gGerudosFortressPointNameFRATex[] = dgGerudosFortressPointNameFRATex; + +#define dgGerudoValleyPointNameFRATex "__OTR__textures/map_name_static/gGerudoValleyPointNameFRATex" +static const ALIGN_ASSET(2) char gGerudoValleyPointNameFRATex[] = dgGerudoValleyPointNameFRATex; + +#define dgHyliaLakesidePointNameFRATex "__OTR__textures/map_name_static/gHyliaLakesidePointNameFRATex" +static const ALIGN_ASSET(2) char gHyliaLakesidePointNameFRATex[] = dgHyliaLakesidePointNameFRATex; + +#define dgLonLonRanchPointNameFRATex "__OTR__textures/map_name_static/gLonLonRanchPointNameFRATex" +static const ALIGN_ASSET(2) char gLonLonRanchPointNameFRATex[] = dgLonLonRanchPointNameFRATex; + +#define dgMarketPointNameFRATex "__OTR__textures/map_name_static/gMarketPointNameFRATex" +static const ALIGN_ASSET(2) char gMarketPointNameFRATex[] = dgMarketPointNameFRATex; + +#define dgHyruleFieldPointNameFRATex "__OTR__textures/map_name_static/gHyruleFieldPointNameFRATex" +static const ALIGN_ASSET(2) char gHyruleFieldPointNameFRATex[] = dgHyruleFieldPointNameFRATex; + +#define dgDeathMountainPointNameFRATex "__OTR__textures/map_name_static/gDeathMountainPointNameFRATex" +static const ALIGN_ASSET(2) char gDeathMountainPointNameFRATex[] = dgDeathMountainPointNameFRATex; + +#define dgKakarikoVillagePointNameFRATex "__OTR__textures/map_name_static/gKakarikoVillagePointNameFRATex" +static const ALIGN_ASSET(2) char gKakarikoVillagePointNameFRATex[] = dgKakarikoVillagePointNameFRATex; + +#define dgLostWoodsPointNameFRATex "__OTR__textures/map_name_static/gLostWoodsPointNameFRATex" +static const ALIGN_ASSET(2) char gLostWoodsPointNameFRATex[] = dgLostWoodsPointNameFRATex; + +#define dgKokiriForestPointNameFRATex "__OTR__textures/map_name_static/gKokiriForestPointNameFRATex" +static const ALIGN_ASSET(2) char gKokiriForestPointNameFRATex[] = dgKokiriForestPointNameFRATex; + +#define dgZorasDomainPointNameFRATex "__OTR__textures/map_name_static/gZorasDomainPointNameFRATex" +static const ALIGN_ASSET(2) char gZorasDomainPointNameFRATex[] = dgZorasDomainPointNameFRATex; + +#define dgHyruleFieldPositionNameENGTex "__OTR__textures/map_name_static/gHyruleFieldPositionNameENGTex" +static const ALIGN_ASSET(2) char gHyruleFieldPositionNameENGTex[] = dgHyruleFieldPositionNameENGTex; + +#define dgKakarikoVillagePositionNameENGTex "__OTR__textures/map_name_static/gKakarikoVillagePositionNameENGTex" +static const ALIGN_ASSET(2) char gKakarikoVillagePositionNameENGTex[] = dgKakarikoVillagePositionNameENGTex; + +#define dgGraveyardPositionNameENGTex "__OTR__textures/map_name_static/gGraveyardPositionNameENGTex" +static const ALIGN_ASSET(2) char gGraveyardPositionNameENGTex[] = dgGraveyardPositionNameENGTex; + +#define dgZorasRiverPositionNameENGTex "__OTR__textures/map_name_static/gZorasRiverPositionNameENGTex" +static const ALIGN_ASSET(2) char gZorasRiverPositionNameENGTex[] = dgZorasRiverPositionNameENGTex; + +#define dgKokiriForestPositionNameENGTex "__OTR__textures/map_name_static/gKokiriForestPositionNameENGTex" +static const ALIGN_ASSET(2) char gKokiriForestPositionNameENGTex[] = dgKokiriForestPositionNameENGTex; + +#define dgSacredForestMeadowPositionNameENGTex "__OTR__textures/map_name_static/gSacredForestMeadowPositionNameENGTex" +static const ALIGN_ASSET(2) char gSacredForestMeadowPositionNameENGTex[] = dgSacredForestMeadowPositionNameENGTex; + +#define dgLakeHyliaPositionNameENGTex "__OTR__textures/map_name_static/gLakeHyliaPositionNameENGTex" +static const ALIGN_ASSET(2) char gLakeHyliaPositionNameENGTex[] = dgLakeHyliaPositionNameENGTex; + +#define dgZorasDomainPositionNameENGTex "__OTR__textures/map_name_static/gZorasDomainPositionNameENGTex" +static const ALIGN_ASSET(2) char gZorasDomainPositionNameENGTex[] = dgZorasDomainPositionNameENGTex; + +#define dgZorasFountainPositionNameENGTex "__OTR__textures/map_name_static/gZorasFountainPositionNameENGTex" +static const ALIGN_ASSET(2) char gZorasFountainPositionNameENGTex[] = dgZorasFountainPositionNameENGTex; + +#define dgGerudoValleyPositionNameENGTex "__OTR__textures/map_name_static/gGerudoValleyPositionNameENGTex" +static const ALIGN_ASSET(2) char gGerudoValleyPositionNameENGTex[] = dgGerudoValleyPositionNameENGTex; + +#define dgLostWoodsPositionNameENGTex "__OTR__textures/map_name_static/gLostWoodsPositionNameENGTex" +static const ALIGN_ASSET(2) char gLostWoodsPositionNameENGTex[] = dgLostWoodsPositionNameENGTex; + +#define dgDesertColossusPositionNameENGTex "__OTR__textures/map_name_static/gDesertColossusPositionNameENGTex" +static const ALIGN_ASSET(2) char gDesertColossusPositionNameENGTex[] = dgDesertColossusPositionNameENGTex; + +#define dgGerudosFortressPositionNameENGTex "__OTR__textures/map_name_static/gGerudosFortressPositionNameENGTex" +static const ALIGN_ASSET(2) char gGerudosFortressPositionNameENGTex[] = dgGerudosFortressPositionNameENGTex; + +#define dgHauntedWastelandPositionNameENGTex "__OTR__textures/map_name_static/gHauntedWastelandPositionNameENGTex" +static const ALIGN_ASSET(2) char gHauntedWastelandPositionNameENGTex[] = dgHauntedWastelandPositionNameENGTex; + +#define dgMarketPositionNameENGTex "__OTR__textures/map_name_static/gMarketPositionNameENGTex" +static const ALIGN_ASSET(2) char gMarketPositionNameENGTex[] = dgMarketPositionNameENGTex; + +#define dgHyruleCastlePositionNameENGTex "__OTR__textures/map_name_static/gHyruleCastlePositionNameENGTex" +static const ALIGN_ASSET(2) char gHyruleCastlePositionNameENGTex[] = dgHyruleCastlePositionNameENGTex; + +#define dgDeathMountainTrailPositionNameENGTex "__OTR__textures/map_name_static/gDeathMountainTrailPositionNameENGTex" +static const ALIGN_ASSET(2) char gDeathMountainTrailPositionNameENGTex[] = dgDeathMountainTrailPositionNameENGTex; + +#define dgDeathMountainCraterPositionNameENGTex "__OTR__textures/map_name_static/gDeathMountainCraterPositionNameENGTex" +static const ALIGN_ASSET(2) char gDeathMountainCraterPositionNameENGTex[] = dgDeathMountainCraterPositionNameENGTex; + +#define dgGoronCityPositionNameENGTex "__OTR__textures/map_name_static/gGoronCityPositionNameENGTex" +static const ALIGN_ASSET(2) char gGoronCityPositionNameENGTex[] = dgGoronCityPositionNameENGTex; + +#define dgLonLonRanchPositionNameENGTex "__OTR__textures/map_name_static/gLonLonRanchPositionNameENGTex" +static const ALIGN_ASSET(2) char gLonLonRanchPositionNameENGTex[] = dgLonLonRanchPositionNameENGTex; + +#define dgQuestionMarkPositionNameENGTex "__OTR__textures/map_name_static/gQuestionMarkPositionNameENGTex" +static const ALIGN_ASSET(2) char gQuestionMarkPositionNameENGTex[] = dgQuestionMarkPositionNameENGTex; + +#define dgGanonsCastlePositionNameENGTex "__OTR__textures/map_name_static/gGanonsCastlePositionNameENGTex" +static const ALIGN_ASSET(2) char gGanonsCastlePositionNameENGTex[] = dgGanonsCastlePositionNameENGTex; + +#define dgHyruleFieldPositionNameGERTex "__OTR__textures/map_name_static/gHyruleFieldPositionNameGERTex" +static const ALIGN_ASSET(2) char gHyruleFieldPositionNameGERTex[] = dgHyruleFieldPositionNameGERTex; + +#define dgKakarikoVillagePositionNameGERTex "__OTR__textures/map_name_static/gKakarikoVillagePositionNameGERTex" +static const ALIGN_ASSET(2) char gKakarikoVillagePositionNameGERTex[] = dgKakarikoVillagePositionNameGERTex; + +#define dgGraveyardPositionNameGERTex "__OTR__textures/map_name_static/gGraveyardPositionNameGERTex" +static const ALIGN_ASSET(2) char gGraveyardPositionNameGERTex[] = dgGraveyardPositionNameGERTex; + +#define dgZorasRiverPositionNameGERTex "__OTR__textures/map_name_static/gZorasRiverPositionNameGERTex" +static const ALIGN_ASSET(2) char gZorasRiverPositionNameGERTex[] = dgZorasRiverPositionNameGERTex; + +#define dgKokiriForestPositionNameGERTex "__OTR__textures/map_name_static/gKokiriForestPositionNameGERTex" +static const ALIGN_ASSET(2) char gKokiriForestPositionNameGERTex[] = dgKokiriForestPositionNameGERTex; + +#define dgSacredForestMeadowPositionNameGERTex "__OTR__textures/map_name_static/gSacredForestMeadowPositionNameGERTex" +static const ALIGN_ASSET(2) char gSacredForestMeadowPositionNameGERTex[] = dgSacredForestMeadowPositionNameGERTex; + +#define dgLakeHyliaPositionNameGERTex "__OTR__textures/map_name_static/gLakeHyliaPositionNameGERTex" +static const ALIGN_ASSET(2) char gLakeHyliaPositionNameGERTex[] = dgLakeHyliaPositionNameGERTex; + +#define dgZorasDomainPositionNameGERTex "__OTR__textures/map_name_static/gZorasDomainPositionNameGERTex" +static const ALIGN_ASSET(2) char gZorasDomainPositionNameGERTex[] = dgZorasDomainPositionNameGERTex; + +#define dgZorasFountainPositionNameGERTex "__OTR__textures/map_name_static/gZorasFountainPositionNameGERTex" +static const ALIGN_ASSET(2) char gZorasFountainPositionNameGERTex[] = dgZorasFountainPositionNameGERTex; + +#define dgGerudoValleyPositionNameGERTex "__OTR__textures/map_name_static/gGerudoValleyPositionNameGERTex" +static const ALIGN_ASSET(2) char gGerudoValleyPositionNameGERTex[] = dgGerudoValleyPositionNameGERTex; + +#define dgLostWoodsPositionNameGERTex "__OTR__textures/map_name_static/gLostWoodsPositionNameGERTex" +static const ALIGN_ASSET(2) char gLostWoodsPositionNameGERTex[] = dgLostWoodsPositionNameGERTex; + +#define dgDesertColossusPositionNameGERTex "__OTR__textures/map_name_static/gDesertColossusPositionNameGERTex" +static const ALIGN_ASSET(2) char gDesertColossusPositionNameGERTex[] = dgDesertColossusPositionNameGERTex; + +#define dgGerudosFortressPositionNameGERTex "__OTR__textures/map_name_static/gGerudosFortressPositionNameGERTex" +static const ALIGN_ASSET(2) char gGerudosFortressPositionNameGERTex[] = dgGerudosFortressPositionNameGERTex; + +#define dgHauntedWastelandPositionNameGERTex "__OTR__textures/map_name_static/gHauntedWastelandPositionNameGERTex" +static const ALIGN_ASSET(2) char gHauntedWastelandPositionNameGERTex[] = dgHauntedWastelandPositionNameGERTex; + +#define dgMarketPositionNameGERTex "__OTR__textures/map_name_static/gMarketPositionNameGERTex" +static const ALIGN_ASSET(2) char gMarketPositionNameGERTex[] = dgMarketPositionNameGERTex; + +#define dgHyruleCastlePositionNameGERTex "__OTR__textures/map_name_static/gHyruleCastlePositionNameGERTex" +static const ALIGN_ASSET(2) char gHyruleCastlePositionNameGERTex[] = dgHyruleCastlePositionNameGERTex; + +#define dgDeathMountainTrailPositionNameGERTex "__OTR__textures/map_name_static/gDeathMountainTrailPositionNameGERTex" +static const ALIGN_ASSET(2) char gDeathMountainTrailPositionNameGERTex[] = dgDeathMountainTrailPositionNameGERTex; + +#define dgDeathMountainCraterPositionNameGERTex "__OTR__textures/map_name_static/gDeathMountainCraterPositionNameGERTex" +static const ALIGN_ASSET(2) char gDeathMountainCraterPositionNameGERTex[] = dgDeathMountainCraterPositionNameGERTex; + +#define dgGoronCityPositionNameGERTex "__OTR__textures/map_name_static/gGoronCityPositionNameGERTex" +static const ALIGN_ASSET(2) char gGoronCityPositionNameGERTex[] = dgGoronCityPositionNameGERTex; + +#define dgLonLonRanchPositionNameGERTex "__OTR__textures/map_name_static/gLonLonRanchPositionNameGERTex" +static const ALIGN_ASSET(2) char gLonLonRanchPositionNameGERTex[] = dgLonLonRanchPositionNameGERTex; + +#define dgQuestionMarkPositionNameGERTex "__OTR__textures/map_name_static/gQuestionMarkPositionNameGERTex" +static const ALIGN_ASSET(2) char gQuestionMarkPositionNameGERTex[] = dgQuestionMarkPositionNameGERTex; + +#define dgGanonsCastlePositionNameGERTex "__OTR__textures/map_name_static/gGanonsCastlePositionNameGERTex" +static const ALIGN_ASSET(2) char gGanonsCastlePositionNameGERTex[] = dgGanonsCastlePositionNameGERTex; + +#define dgHyruleFieldPositionNameFRATex "__OTR__textures/map_name_static/gHyruleFieldPositionNameFRATex" +static const ALIGN_ASSET(2) char gHyruleFieldPositionNameFRATex[] = dgHyruleFieldPositionNameFRATex; + +#define dgKakarikoVillagePositionNameFRATex "__OTR__textures/map_name_static/gKakarikoVillagePositionNameFRATex" +static const ALIGN_ASSET(2) char gKakarikoVillagePositionNameFRATex[] = dgKakarikoVillagePositionNameFRATex; + +#define dgGraveyardPositionNameFRATex "__OTR__textures/map_name_static/gGraveyardPositionNameFRATex" +static const ALIGN_ASSET(2) char gGraveyardPositionNameFRATex[] = dgGraveyardPositionNameFRATex; + +#define dgZorasRiverPositionNameFRATex "__OTR__textures/map_name_static/gZorasRiverPositionNameFRATex" +static const ALIGN_ASSET(2) char gZorasRiverPositionNameFRATex[] = dgZorasRiverPositionNameFRATex; + +#define dgKokiriForestPositionNameFRATex "__OTR__textures/map_name_static/gKokiriForestPositionNameFRATex" +static const ALIGN_ASSET(2) char gKokiriForestPositionNameFRATex[] = dgKokiriForestPositionNameFRATex; + +#define dgSacredForestMeadowPositionNameFRATex "__OTR__textures/map_name_static/gSacredForestMeadowPositionNameFRATex" +static const ALIGN_ASSET(2) char gSacredForestMeadowPositionNameFRATex[] = dgSacredForestMeadowPositionNameFRATex; + +#define dgLakeHyliaPositionNameFRATex "__OTR__textures/map_name_static/gLakeHyliaPositionNameFRATex" +static const ALIGN_ASSET(2) char gLakeHyliaPositionNameFRATex[] = dgLakeHyliaPositionNameFRATex; + +#define dgZorasDomainPositionNameFRATex "__OTR__textures/map_name_static/gZorasDomainPositionNameFRATex" +static const ALIGN_ASSET(2) char gZorasDomainPositionNameFRATex[] = dgZorasDomainPositionNameFRATex; + +#define dgZorasFountainPositionNameFRATex "__OTR__textures/map_name_static/gZorasFountainPositionNameFRATex" +static const ALIGN_ASSET(2) char gZorasFountainPositionNameFRATex[] = dgZorasFountainPositionNameFRATex; + +#define dgGerudoValleyPositionNameFRATex "__OTR__textures/map_name_static/gGerudoValleyPositionNameFRATex" +static const ALIGN_ASSET(2) char gGerudoValleyPositionNameFRATex[] = dgGerudoValleyPositionNameFRATex; + +#define dgLostWoodsPositionNameFRATex "__OTR__textures/map_name_static/gLostWoodsPositionNameFRATex" +static const ALIGN_ASSET(2) char gLostWoodsPositionNameFRATex[] = dgLostWoodsPositionNameFRATex; + +#define dgDesertColossusPositionNameFRATex "__OTR__textures/map_name_static/gDesertColossusPositionNameFRATex" +static const ALIGN_ASSET(2) char gDesertColossusPositionNameFRATex[] = dgDesertColossusPositionNameFRATex; + +#define dgGerudosFortressPositionNameFRATex "__OTR__textures/map_name_static/gGerudosFortressPositionNameFRATex" +static const ALIGN_ASSET(2) char gGerudosFortressPositionNameFRATex[] = dgGerudosFortressPositionNameFRATex; + +#define dgHauntedWastelandPositionNameFRATex "__OTR__textures/map_name_static/gHauntedWastelandPositionNameFRATex" +static const ALIGN_ASSET(2) char gHauntedWastelandPositionNameFRATex[] = dgHauntedWastelandPositionNameFRATex; + +#define dgMarketPositionNameFRATex "__OTR__textures/map_name_static/gMarketPositionNameFRATex" +static const ALIGN_ASSET(2) char gMarketPositionNameFRATex[] = dgMarketPositionNameFRATex; + +#define dgHyruleCastlePositionNameFRATex "__OTR__textures/map_name_static/gHyruleCastlePositionNameFRATex" +static const ALIGN_ASSET(2) char gHyruleCastlePositionNameFRATex[] = dgHyruleCastlePositionNameFRATex; + +#define dgDeathMountainTrailPositionNameFRATex "__OTR__textures/map_name_static/gDeathMountainTrailPositionNameFRATex" +static const ALIGN_ASSET(2) char gDeathMountainTrailPositionNameFRATex[] = dgDeathMountainTrailPositionNameFRATex; + +#define dgDeathMountainCraterPositionNameFRATex "__OTR__textures/map_name_static/gDeathMountainCraterPositionNameFRATex" +static const ALIGN_ASSET(2) char gDeathMountainCraterPositionNameFRATex[] = dgDeathMountainCraterPositionNameFRATex; + +#define dgGoronCityPositionNameFRATex "__OTR__textures/map_name_static/gGoronCityPositionNameFRATex" +static const ALIGN_ASSET(2) char gGoronCityPositionNameFRATex[] = dgGoronCityPositionNameFRATex; + +#define dgLonLonRanchPositionNameFRATex "__OTR__textures/map_name_static/gLonLonRanchPositionNameFRATex" +static const ALIGN_ASSET(2) char gLonLonRanchPositionNameFRATex[] = dgLonLonRanchPositionNameFRATex; + +#define dgQuestionMarkPositionNameFRATex "__OTR__textures/map_name_static/gQuestionMarkPositionNameFRATex" +static const ALIGN_ASSET(2) char gQuestionMarkPositionNameFRATex[] = dgQuestionMarkPositionNameFRATex; + +#define dgGanonsCastlePositionNameFRATex "__OTR__textures/map_name_static/gGanonsCastlePositionNameFRATex" +static const ALIGN_ASSET(2) char gGanonsCastlePositionNameFRATex[] = dgGanonsCastlePositionNameFRATex; \ No newline at end of file diff --git a/soh/assets/textures/message_static/message_static.h b/soh/assets/textures/message_static/message_static.h index 20bcf5c3b..0f8034768 100644 --- a/soh/assets/textures/message_static/message_static.h +++ b/soh/assets/textures/message_static/message_static.h @@ -1,51 +1,24 @@ #pragma once -#define dgDefaultMessageBackgroundTex "__OTR__textures/message_static/gDefaultMessageBackgroundTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDefaultMessageBackgroundTex[] = dgDefaultMessageBackgroundTex; -#else -static const char gDefaultMessageBackgroundTex[] __attribute__((aligned (2))) = dgDefaultMessageBackgroundTex; -#endif - -#define dgSignMessageBackgroundTex "__OTR__textures/message_static/gSignMessageBackgroundTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSignMessageBackgroundTex[] = dgSignMessageBackgroundTex; -#else -static const char gSignMessageBackgroundTex[] __attribute__((aligned (2))) = dgSignMessageBackgroundTex; -#endif - -#define dgNoteStaffMessageBackgroundTex "__OTR__textures/message_static/gNoteStaffMessageBackgroundTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNoteStaffMessageBackgroundTex[] = dgNoteStaffMessageBackgroundTex; -#else -static const char gNoteStaffMessageBackgroundTex[] __attribute__((aligned (2))) = dgNoteStaffMessageBackgroundTex; -#endif - -#define dgFadingMessageBackgroundTex "__OTR__textures/message_static/gFadingMessageBackgroundTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFadingMessageBackgroundTex[] = dgFadingMessageBackgroundTex; -#else -static const char gFadingMessageBackgroundTex[] __attribute__((aligned (2))) = dgFadingMessageBackgroundTex; -#endif - -#define dgMessageContinueTriangleTex "__OTR__textures/message_static/gMessageContinueTriangleTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMessageContinueTriangleTex[] = dgMessageContinueTriangleTex; -#else -static const char gMessageContinueTriangleTex[] __attribute__((aligned (2))) = dgMessageContinueTriangleTex; -#endif - -#define dgMessageEndSquareTex "__OTR__textures/message_static/gMessageEndSquareTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMessageEndSquareTex[] = dgMessageEndSquareTex; -#else -static const char gMessageEndSquareTex[] __attribute__((aligned (2))) = dgMessageEndSquareTex; -#endif - -#define dgMessageArrowTex "__OTR__textures/message_static/gMessageArrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMessageArrowTex[] = dgMessageArrowTex; -#else -static const char gMessageArrowTex[] __attribute__((aligned (2))) = dgMessageArrowTex; -#endif - +#include "align_asset_macro.h" + +#define dgDefaultMessageBackgroundTex "__OTR__textures/message_static/gDefaultMessageBackgroundTex" +static const ALIGN_ASSET(2) char gDefaultMessageBackgroundTex[] = dgDefaultMessageBackgroundTex; + +#define dgSignMessageBackgroundTex "__OTR__textures/message_static/gSignMessageBackgroundTex" +static const ALIGN_ASSET(2) char gSignMessageBackgroundTex[] = dgSignMessageBackgroundTex; + +#define dgNoteStaffMessageBackgroundTex "__OTR__textures/message_static/gNoteStaffMessageBackgroundTex" +static const ALIGN_ASSET(2) char gNoteStaffMessageBackgroundTex[] = dgNoteStaffMessageBackgroundTex; + +#define dgFadingMessageBackgroundTex "__OTR__textures/message_static/gFadingMessageBackgroundTex" +static const ALIGN_ASSET(2) char gFadingMessageBackgroundTex[] = dgFadingMessageBackgroundTex; + +#define dgMessageContinueTriangleTex "__OTR__textures/message_static/gMessageContinueTriangleTex" +static const ALIGN_ASSET(2) char gMessageContinueTriangleTex[] = dgMessageContinueTriangleTex; + +#define dgMessageEndSquareTex "__OTR__textures/message_static/gMessageEndSquareTex" +static const ALIGN_ASSET(2) char gMessageEndSquareTex[] = dgMessageEndSquareTex; + +#define dgMessageArrowTex "__OTR__textures/message_static/gMessageArrowTex" +static const ALIGN_ASSET(2) char gMessageArrowTex[] = dgMessageArrowTex; \ No newline at end of file diff --git a/soh/assets/textures/message_texture_static/message_texture_static.h b/soh/assets/textures/message_texture_static/message_texture_static.h index 005fc507a..43f2a54b5 100644 --- a/soh/assets/textures/message_texture_static/message_texture_static.h +++ b/soh/assets/textures/message_texture_static/message_texture_static.h @@ -1,16 +1,9 @@ #pragma once -#define dgRedMessageXLeftTex "__OTR__textures/message_texture_static/gRedMessageXLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedMessageXLeftTex[] = dgRedMessageXLeftTex; -#else -static const char gRedMessageXLeftTex[] __attribute__((aligned (2))) = dgRedMessageXLeftTex; -#endif - -#define dgRedMessageXRightTex "__OTR__textures/message_texture_static/gRedMessageXRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRedMessageXRightTex[] = dgRedMessageXRightTex; -#else -static const char gRedMessageXRightTex[] __attribute__((aligned (2))) = dgRedMessageXRightTex; -#endif - +#include "align_asset_macro.h" + +#define dgRedMessageXLeftTex "__OTR__textures/message_texture_static/gRedMessageXLeftTex" +static const ALIGN_ASSET(2) char gRedMessageXLeftTex[] = dgRedMessageXLeftTex; + +#define dgRedMessageXRightTex "__OTR__textures/message_texture_static/gRedMessageXRightTex" +static const ALIGN_ASSET(2) char gRedMessageXRightTex[] = dgRedMessageXRightTex; \ No newline at end of file diff --git a/soh/assets/textures/nes_font_static/nes_font_static.h b/soh/assets/textures/nes_font_static/nes_font_static.h index f802773be..04b285f08 100644 --- a/soh/assets/textures/nes_font_static/nes_font_static.h +++ b/soh/assets/textures/nes_font_static/nes_font_static.h @@ -1,982 +1,423 @@ #pragma once -#define dgMsgChar20SpaceTex "__OTR__textures/nes_font_static/gMsgChar20SpaceTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar20SpaceTex[] = dgMsgChar20SpaceTex; -#else -static const char gMsgChar20SpaceTex[] __attribute__((aligned (2))) = dgMsgChar20SpaceTex; -#endif - -#define dgMsgChar21ExclamationMarkTex "__OTR__textures/nes_font_static/gMsgChar21ExclamationMarkTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar21ExclamationMarkTex[] = dgMsgChar21ExclamationMarkTex; -#else -static const char gMsgChar21ExclamationMarkTex[] __attribute__((aligned (2))) = dgMsgChar21ExclamationMarkTex; -#endif - -#define dgMsgChar22QuotationMarkTex "__OTR__textures/nes_font_static/gMsgChar22QuotationMarkTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar22QuotationMarkTex[] = dgMsgChar22QuotationMarkTex; -#else -static const char gMsgChar22QuotationMarkTex[] __attribute__((aligned (2))) = dgMsgChar22QuotationMarkTex; -#endif - -#define dgMsgChar23NumberSignTex "__OTR__textures/nes_font_static/gMsgChar23NumberSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar23NumberSignTex[] = dgMsgChar23NumberSignTex; -#else -static const char gMsgChar23NumberSignTex[] __attribute__((aligned (2))) = dgMsgChar23NumberSignTex; -#endif - -#define dgMsgChar24DollarSignTex "__OTR__textures/nes_font_static/gMsgChar24DollarSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar24DollarSignTex[] = dgMsgChar24DollarSignTex; -#else -static const char gMsgChar24DollarSignTex[] __attribute__((aligned (2))) = dgMsgChar24DollarSignTex; -#endif - -#define dgMsgChar25PercentSignTex "__OTR__textures/nes_font_static/gMsgChar25PercentSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar25PercentSignTex[] = dgMsgChar25PercentSignTex; -#else -static const char gMsgChar25PercentSignTex[] __attribute__((aligned (2))) = dgMsgChar25PercentSignTex; -#endif - -#define dgMsgChar26AmpersandTex "__OTR__textures/nes_font_static/gMsgChar26AmpersandTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar26AmpersandTex[] = dgMsgChar26AmpersandTex; -#else -static const char gMsgChar26AmpersandTex[] __attribute__((aligned (2))) = dgMsgChar26AmpersandTex; -#endif - -#define dgMsgChar27ApostropheTex "__OTR__textures/nes_font_static/gMsgChar27ApostropheTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar27ApostropheTex[] = dgMsgChar27ApostropheTex; -#else -static const char gMsgChar27ApostropheTex[] __attribute__((aligned (2))) = dgMsgChar27ApostropheTex; -#endif - -#define dgMsgChar28LeftParenthesesTex "__OTR__textures/nes_font_static/gMsgChar28LeftParenthesesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar28LeftParenthesesTex[] = dgMsgChar28LeftParenthesesTex; -#else -static const char gMsgChar28LeftParenthesesTex[] __attribute__((aligned (2))) = dgMsgChar28LeftParenthesesTex; -#endif - -#define dgMsgChar29RightParenthesesTex "__OTR__textures/nes_font_static/gMsgChar29RightParenthesesTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar29RightParenthesesTex[] = dgMsgChar29RightParenthesesTex; -#else -static const char gMsgChar29RightParenthesesTex[] __attribute__((aligned (2))) = dgMsgChar29RightParenthesesTex; -#endif - -#define dgMsgChar2AAsteriskTex "__OTR__textures/nes_font_static/gMsgChar2AAsteriskTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar2AAsteriskTex[] = dgMsgChar2AAsteriskTex; -#else -static const char gMsgChar2AAsteriskTex[] __attribute__((aligned (2))) = dgMsgChar2AAsteriskTex; -#endif - -#define dgMsgChar2BPlusSignTex "__OTR__textures/nes_font_static/gMsgChar2BPlusSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar2BPlusSignTex[] = dgMsgChar2BPlusSignTex; -#else -static const char gMsgChar2BPlusSignTex[] __attribute__((aligned (2))) = dgMsgChar2BPlusSignTex; -#endif - -#define dgMsgChar2CCommaTex "__OTR__textures/nes_font_static/gMsgChar2CCommaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar2CCommaTex[] = dgMsgChar2CCommaTex; -#else -static const char gMsgChar2CCommaTex[] __attribute__((aligned (2))) = dgMsgChar2CCommaTex; -#endif - -#define dgMsgChar2DHyphenMinusTex "__OTR__textures/nes_font_static/gMsgChar2DHyphenMinusTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar2DHyphenMinusTex[] = dgMsgChar2DHyphenMinusTex; -#else -static const char gMsgChar2DHyphenMinusTex[] __attribute__((aligned (2))) = dgMsgChar2DHyphenMinusTex; -#endif - -#define dgMsgChar2EFullStopTex "__OTR__textures/nes_font_static/gMsgChar2EFullStopTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar2EFullStopTex[] = dgMsgChar2EFullStopTex; -#else -static const char gMsgChar2EFullStopTex[] __attribute__((aligned (2))) = dgMsgChar2EFullStopTex; -#endif - -#define dgMsgChar2FSolidusTex "__OTR__textures/nes_font_static/gMsgChar2FSolidusTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar2FSolidusTex[] = dgMsgChar2FSolidusTex; -#else -static const char gMsgChar2FSolidusTex[] __attribute__((aligned (2))) = dgMsgChar2FSolidusTex; -#endif - -#define dgMsgChar30Digit0Tex "__OTR__textures/nes_font_static/gMsgChar30Digit0Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar30Digit0Tex[] = dgMsgChar30Digit0Tex; -#else -static const char gMsgChar30Digit0Tex[] __attribute__((aligned (2))) = dgMsgChar30Digit0Tex; -#endif - -#define dgMsgChar31Digit1Tex "__OTR__textures/nes_font_static/gMsgChar31Digit1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar31Digit1Tex[] = dgMsgChar31Digit1Tex; -#else -static const char gMsgChar31Digit1Tex[] __attribute__((aligned (2))) = dgMsgChar31Digit1Tex; -#endif - -#define dgMsgChar32Digit2Tex "__OTR__textures/nes_font_static/gMsgChar32Digit2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar32Digit2Tex[] = dgMsgChar32Digit2Tex; -#else -static const char gMsgChar32Digit2Tex[] __attribute__((aligned (2))) = dgMsgChar32Digit2Tex; -#endif - -#define dgMsgChar33Digit3Tex "__OTR__textures/nes_font_static/gMsgChar33Digit3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar33Digit3Tex[] = dgMsgChar33Digit3Tex; -#else -static const char gMsgChar33Digit3Tex[] __attribute__((aligned (2))) = dgMsgChar33Digit3Tex; -#endif - -#define dgMsgChar34Digit4Tex "__OTR__textures/nes_font_static/gMsgChar34Digit4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar34Digit4Tex[] = dgMsgChar34Digit4Tex; -#else -static const char gMsgChar34Digit4Tex[] __attribute__((aligned (2))) = dgMsgChar34Digit4Tex; -#endif - -#define dgMsgChar35Digit5Tex "__OTR__textures/nes_font_static/gMsgChar35Digit5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar35Digit5Tex[] = dgMsgChar35Digit5Tex; -#else -static const char gMsgChar35Digit5Tex[] __attribute__((aligned (2))) = dgMsgChar35Digit5Tex; -#endif - -#define dgMsgChar36Digit6Tex "__OTR__textures/nes_font_static/gMsgChar36Digit6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar36Digit6Tex[] = dgMsgChar36Digit6Tex; -#else -static const char gMsgChar36Digit6Tex[] __attribute__((aligned (2))) = dgMsgChar36Digit6Tex; -#endif - -#define dgMsgChar37Digit7Tex "__OTR__textures/nes_font_static/gMsgChar37Digit7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar37Digit7Tex[] = dgMsgChar37Digit7Tex; -#else -static const char gMsgChar37Digit7Tex[] __attribute__((aligned (2))) = dgMsgChar37Digit7Tex; -#endif - -#define dgMsgChar38Digit8Tex "__OTR__textures/nes_font_static/gMsgChar38Digit8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar38Digit8Tex[] = dgMsgChar38Digit8Tex; -#else -static const char gMsgChar38Digit8Tex[] __attribute__((aligned (2))) = dgMsgChar38Digit8Tex; -#endif - -#define dgMsgChar39Digit9Tex "__OTR__textures/nes_font_static/gMsgChar39Digit9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar39Digit9Tex[] = dgMsgChar39Digit9Tex; -#else -static const char gMsgChar39Digit9Tex[] __attribute__((aligned (2))) = dgMsgChar39Digit9Tex; -#endif - -#define dgMsgChar3AColonTex "__OTR__textures/nes_font_static/gMsgChar3AColonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar3AColonTex[] = dgMsgChar3AColonTex; -#else -static const char gMsgChar3AColonTex[] __attribute__((aligned (2))) = dgMsgChar3AColonTex; -#endif - -#define dgMsgChar3BSemicolonTex "__OTR__textures/nes_font_static/gMsgChar3BSemicolonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar3BSemicolonTex[] = dgMsgChar3BSemicolonTex; -#else -static const char gMsgChar3BSemicolonTex[] __attribute__((aligned (2))) = dgMsgChar3BSemicolonTex; -#endif - -#define dgMsgChar3CLessThanSignTex "__OTR__textures/nes_font_static/gMsgChar3CLessThanSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar3CLessThanSignTex[] = dgMsgChar3CLessThanSignTex; -#else -static const char gMsgChar3CLessThanSignTex[] __attribute__((aligned (2))) = dgMsgChar3CLessThanSignTex; -#endif - -#define dgMsgChar3DEqualsSignTex "__OTR__textures/nes_font_static/gMsgChar3DEqualsSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar3DEqualsSignTex[] = dgMsgChar3DEqualsSignTex; -#else -static const char gMsgChar3DEqualsSignTex[] __attribute__((aligned (2))) = dgMsgChar3DEqualsSignTex; -#endif - -#define dgMsgChar3EGreaterThanSignTex "__OTR__textures/nes_font_static/gMsgChar3EGreaterThanSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar3EGreaterThanSignTex[] = dgMsgChar3EGreaterThanSignTex; -#else -static const char gMsgChar3EGreaterThanSignTex[] __attribute__((aligned (2))) = dgMsgChar3EGreaterThanSignTex; -#endif - -#define dgMsgChar3FQuestionMarkTex "__OTR__textures/nes_font_static/gMsgChar3FQuestionMarkTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar3FQuestionMarkTex[] = dgMsgChar3FQuestionMarkTex; -#else -static const char gMsgChar3FQuestionMarkTex[] __attribute__((aligned (2))) = dgMsgChar3FQuestionMarkTex; -#endif - -#define dgMsgChar40CommercialAtTex "__OTR__textures/nes_font_static/gMsgChar40CommercialAtTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar40CommercialAtTex[] = dgMsgChar40CommercialAtTex; -#else -static const char gMsgChar40CommercialAtTex[] __attribute__((aligned (2))) = dgMsgChar40CommercialAtTex; -#endif - -#define dgMsgChar41LatinCapitalLetterATex "__OTR__textures/nes_font_static/gMsgChar41LatinCapitalLetterATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar41LatinCapitalLetterATex[] = dgMsgChar41LatinCapitalLetterATex; -#else -static const char gMsgChar41LatinCapitalLetterATex[] __attribute__((aligned (2))) = dgMsgChar41LatinCapitalLetterATex; -#endif - -#define dgMsgChar42LatinCapitalLetterBTex "__OTR__textures/nes_font_static/gMsgChar42LatinCapitalLetterBTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar42LatinCapitalLetterBTex[] = dgMsgChar42LatinCapitalLetterBTex; -#else -static const char gMsgChar42LatinCapitalLetterBTex[] __attribute__((aligned (2))) = dgMsgChar42LatinCapitalLetterBTex; -#endif - -#define dgMsgChar43LatinCapitalLetterCTex "__OTR__textures/nes_font_static/gMsgChar43LatinCapitalLetterCTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar43LatinCapitalLetterCTex[] = dgMsgChar43LatinCapitalLetterCTex; -#else -static const char gMsgChar43LatinCapitalLetterCTex[] __attribute__((aligned (2))) = dgMsgChar43LatinCapitalLetterCTex; -#endif - -#define dgMsgChar44LatinCapitalLetterDTex "__OTR__textures/nes_font_static/gMsgChar44LatinCapitalLetterDTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar44LatinCapitalLetterDTex[] = dgMsgChar44LatinCapitalLetterDTex; -#else -static const char gMsgChar44LatinCapitalLetterDTex[] __attribute__((aligned (2))) = dgMsgChar44LatinCapitalLetterDTex; -#endif - -#define dgMsgChar45LatinCapitalLetterETex "__OTR__textures/nes_font_static/gMsgChar45LatinCapitalLetterETex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar45LatinCapitalLetterETex[] = dgMsgChar45LatinCapitalLetterETex; -#else -static const char gMsgChar45LatinCapitalLetterETex[] __attribute__((aligned (2))) = dgMsgChar45LatinCapitalLetterETex; -#endif - -#define dgMsgChar46LatinCapitalLetterFTex "__OTR__textures/nes_font_static/gMsgChar46LatinCapitalLetterFTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar46LatinCapitalLetterFTex[] = dgMsgChar46LatinCapitalLetterFTex; -#else -static const char gMsgChar46LatinCapitalLetterFTex[] __attribute__((aligned (2))) = dgMsgChar46LatinCapitalLetterFTex; -#endif - -#define dgMsgChar47LatinCapitalLetterGTex "__OTR__textures/nes_font_static/gMsgChar47LatinCapitalLetterGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar47LatinCapitalLetterGTex[] = dgMsgChar47LatinCapitalLetterGTex; -#else -static const char gMsgChar47LatinCapitalLetterGTex[] __attribute__((aligned (2))) = dgMsgChar47LatinCapitalLetterGTex; -#endif - -#define dgMsgChar48LatinCapitalLetterHTex "__OTR__textures/nes_font_static/gMsgChar48LatinCapitalLetterHTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar48LatinCapitalLetterHTex[] = dgMsgChar48LatinCapitalLetterHTex; -#else -static const char gMsgChar48LatinCapitalLetterHTex[] __attribute__((aligned (2))) = dgMsgChar48LatinCapitalLetterHTex; -#endif - -#define dgMsgChar49LatinCapitalLetterITex "__OTR__textures/nes_font_static/gMsgChar49LatinCapitalLetterITex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar49LatinCapitalLetterITex[] = dgMsgChar49LatinCapitalLetterITex; -#else -static const char gMsgChar49LatinCapitalLetterITex[] __attribute__((aligned (2))) = dgMsgChar49LatinCapitalLetterITex; -#endif - -#define dgMsgChar4ALatinCapitalLetterJTex "__OTR__textures/nes_font_static/gMsgChar4ALatinCapitalLetterJTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar4ALatinCapitalLetterJTex[] = dgMsgChar4ALatinCapitalLetterJTex; -#else -static const char gMsgChar4ALatinCapitalLetterJTex[] __attribute__((aligned (2))) = dgMsgChar4ALatinCapitalLetterJTex; -#endif - -#define dgMsgChar4BLatinCapitalLetterKTex "__OTR__textures/nes_font_static/gMsgChar4BLatinCapitalLetterKTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar4BLatinCapitalLetterKTex[] = dgMsgChar4BLatinCapitalLetterKTex; -#else -static const char gMsgChar4BLatinCapitalLetterKTex[] __attribute__((aligned (2))) = dgMsgChar4BLatinCapitalLetterKTex; -#endif - -#define dgMsgChar4CLatinCapitalLetterLTex "__OTR__textures/nes_font_static/gMsgChar4CLatinCapitalLetterLTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar4CLatinCapitalLetterLTex[] = dgMsgChar4CLatinCapitalLetterLTex; -#else -static const char gMsgChar4CLatinCapitalLetterLTex[] __attribute__((aligned (2))) = dgMsgChar4CLatinCapitalLetterLTex; -#endif - -#define dgMsgChar4DLatinCapitalLetterMTex "__OTR__textures/nes_font_static/gMsgChar4DLatinCapitalLetterMTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar4DLatinCapitalLetterMTex[] = dgMsgChar4DLatinCapitalLetterMTex; -#else -static const char gMsgChar4DLatinCapitalLetterMTex[] __attribute__((aligned (2))) = dgMsgChar4DLatinCapitalLetterMTex; -#endif - -#define dgMsgChar4ELatinCapitalLetterNTex "__OTR__textures/nes_font_static/gMsgChar4ELatinCapitalLetterNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar4ELatinCapitalLetterNTex[] = dgMsgChar4ELatinCapitalLetterNTex; -#else -static const char gMsgChar4ELatinCapitalLetterNTex[] __attribute__((aligned (2))) = dgMsgChar4ELatinCapitalLetterNTex; -#endif - -#define dgMsgChar4FLatinCapitalLetterOTex "__OTR__textures/nes_font_static/gMsgChar4FLatinCapitalLetterOTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar4FLatinCapitalLetterOTex[] = dgMsgChar4FLatinCapitalLetterOTex; -#else -static const char gMsgChar4FLatinCapitalLetterOTex[] __attribute__((aligned (2))) = dgMsgChar4FLatinCapitalLetterOTex; -#endif - -#define dgMsgChar50LatinCapitalLetterPTex "__OTR__textures/nes_font_static/gMsgChar50LatinCapitalLetterPTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar50LatinCapitalLetterPTex[] = dgMsgChar50LatinCapitalLetterPTex; -#else -static const char gMsgChar50LatinCapitalLetterPTex[] __attribute__((aligned (2))) = dgMsgChar50LatinCapitalLetterPTex; -#endif - -#define dgMsgChar51LatinCapitalLetterQTex "__OTR__textures/nes_font_static/gMsgChar51LatinCapitalLetterQTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar51LatinCapitalLetterQTex[] = dgMsgChar51LatinCapitalLetterQTex; -#else -static const char gMsgChar51LatinCapitalLetterQTex[] __attribute__((aligned (2))) = dgMsgChar51LatinCapitalLetterQTex; -#endif - -#define dgMsgChar52LatinCapitalLetterRTex "__OTR__textures/nes_font_static/gMsgChar52LatinCapitalLetterRTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar52LatinCapitalLetterRTex[] = dgMsgChar52LatinCapitalLetterRTex; -#else -static const char gMsgChar52LatinCapitalLetterRTex[] __attribute__((aligned (2))) = dgMsgChar52LatinCapitalLetterRTex; -#endif - -#define dgMsgChar53LatinCapitalLetterSTex "__OTR__textures/nes_font_static/gMsgChar53LatinCapitalLetterSTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar53LatinCapitalLetterSTex[] = dgMsgChar53LatinCapitalLetterSTex; -#else -static const char gMsgChar53LatinCapitalLetterSTex[] __attribute__((aligned (2))) = dgMsgChar53LatinCapitalLetterSTex; -#endif - -#define dgMsgChar54LatinCapitalLetterTTex "__OTR__textures/nes_font_static/gMsgChar54LatinCapitalLetterTTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar54LatinCapitalLetterTTex[] = dgMsgChar54LatinCapitalLetterTTex; -#else -static const char gMsgChar54LatinCapitalLetterTTex[] __attribute__((aligned (2))) = dgMsgChar54LatinCapitalLetterTTex; -#endif - -#define dgMsgChar55LatinCapitalLetterUTex "__OTR__textures/nes_font_static/gMsgChar55LatinCapitalLetterUTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar55LatinCapitalLetterUTex[] = dgMsgChar55LatinCapitalLetterUTex; -#else -static const char gMsgChar55LatinCapitalLetterUTex[] __attribute__((aligned (2))) = dgMsgChar55LatinCapitalLetterUTex; -#endif - -#define dgMsgChar56LatinCapitalLetterVTex "__OTR__textures/nes_font_static/gMsgChar56LatinCapitalLetterVTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar56LatinCapitalLetterVTex[] = dgMsgChar56LatinCapitalLetterVTex; -#else -static const char gMsgChar56LatinCapitalLetterVTex[] __attribute__((aligned (2))) = dgMsgChar56LatinCapitalLetterVTex; -#endif - -#define dgMsgChar57LatinCapitalLetterWTex "__OTR__textures/nes_font_static/gMsgChar57LatinCapitalLetterWTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar57LatinCapitalLetterWTex[] = dgMsgChar57LatinCapitalLetterWTex; -#else -static const char gMsgChar57LatinCapitalLetterWTex[] __attribute__((aligned (2))) = dgMsgChar57LatinCapitalLetterWTex; -#endif - -#define dgMsgChar58LatinCapitalLetterXTex "__OTR__textures/nes_font_static/gMsgChar58LatinCapitalLetterXTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar58LatinCapitalLetterXTex[] = dgMsgChar58LatinCapitalLetterXTex; -#else -static const char gMsgChar58LatinCapitalLetterXTex[] __attribute__((aligned (2))) = dgMsgChar58LatinCapitalLetterXTex; -#endif - -#define dgMsgChar59LatinCapitalLetterYTex "__OTR__textures/nes_font_static/gMsgChar59LatinCapitalLetterYTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar59LatinCapitalLetterYTex[] = dgMsgChar59LatinCapitalLetterYTex; -#else -static const char gMsgChar59LatinCapitalLetterYTex[] __attribute__((aligned (2))) = dgMsgChar59LatinCapitalLetterYTex; -#endif - -#define dgMsgChar5ALatinCapitalLetterZTex "__OTR__textures/nes_font_static/gMsgChar5ALatinCapitalLetterZTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar5ALatinCapitalLetterZTex[] = dgMsgChar5ALatinCapitalLetterZTex; -#else -static const char gMsgChar5ALatinCapitalLetterZTex[] __attribute__((aligned (2))) = dgMsgChar5ALatinCapitalLetterZTex; -#endif - -#define dgMsgChar5BLeftSquareBracketTex "__OTR__textures/nes_font_static/gMsgChar5BLeftSquareBracketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar5BLeftSquareBracketTex[] = dgMsgChar5BLeftSquareBracketTex; -#else -static const char gMsgChar5BLeftSquareBracketTex[] __attribute__((aligned (2))) = dgMsgChar5BLeftSquareBracketTex; -#endif - -#define dgMsgChar5CYenSignTex "__OTR__textures/nes_font_static/gMsgChar5CYenSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar5CYenSignTex[] = dgMsgChar5CYenSignTex; -#else -static const char gMsgChar5CYenSignTex[] __attribute__((aligned (2))) = dgMsgChar5CYenSignTex; -#endif - -#define dgMsgChar5DRightSquareBracketTex "__OTR__textures/nes_font_static/gMsgChar5DRightSquareBracketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar5DRightSquareBracketTex[] = dgMsgChar5DRightSquareBracketTex; -#else -static const char gMsgChar5DRightSquareBracketTex[] __attribute__((aligned (2))) = dgMsgChar5DRightSquareBracketTex; -#endif - -#define dgMsgChar5ECircumflexAccentTex "__OTR__textures/nes_font_static/gMsgChar5ECircumflexAccentTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar5ECircumflexAccentTex[] = dgMsgChar5ECircumflexAccentTex; -#else -static const char gMsgChar5ECircumflexAccentTex[] __attribute__((aligned (2))) = dgMsgChar5ECircumflexAccentTex; -#endif - -#define dgMsgChar5FLowLineTex "__OTR__textures/nes_font_static/gMsgChar5FLowLineTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar5FLowLineTex[] = dgMsgChar5FLowLineTex; -#else -static const char gMsgChar5FLowLineTex[] __attribute__((aligned (2))) = dgMsgChar5FLowLineTex; -#endif - -#define dgMsgChar60GraveAccentTex "__OTR__textures/nes_font_static/gMsgChar60GraveAccentTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar60GraveAccentTex[] = dgMsgChar60GraveAccentTex; -#else -static const char gMsgChar60GraveAccentTex[] __attribute__((aligned (2))) = dgMsgChar60GraveAccentTex; -#endif - -#define dgMsgChar61LatinSmallLetterATex "__OTR__textures/nes_font_static/gMsgChar61LatinSmallLetterATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar61LatinSmallLetterATex[] = dgMsgChar61LatinSmallLetterATex; -#else -static const char gMsgChar61LatinSmallLetterATex[] __attribute__((aligned (2))) = dgMsgChar61LatinSmallLetterATex; -#endif - -#define dgMsgChar62LatinSmallLetterBTex "__OTR__textures/nes_font_static/gMsgChar62LatinSmallLetterBTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar62LatinSmallLetterBTex[] = dgMsgChar62LatinSmallLetterBTex; -#else -static const char gMsgChar62LatinSmallLetterBTex[] __attribute__((aligned (2))) = dgMsgChar62LatinSmallLetterBTex; -#endif - -#define dgMsgChar63LatinSmallLetterCTex "__OTR__textures/nes_font_static/gMsgChar63LatinSmallLetterCTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar63LatinSmallLetterCTex[] = dgMsgChar63LatinSmallLetterCTex; -#else -static const char gMsgChar63LatinSmallLetterCTex[] __attribute__((aligned (2))) = dgMsgChar63LatinSmallLetterCTex; -#endif - -#define dgMsgChar64LatinSmallLetterDTex "__OTR__textures/nes_font_static/gMsgChar64LatinSmallLetterDTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar64LatinSmallLetterDTex[] = dgMsgChar64LatinSmallLetterDTex; -#else -static const char gMsgChar64LatinSmallLetterDTex[] __attribute__((aligned (2))) = dgMsgChar64LatinSmallLetterDTex; -#endif - -#define dgMsgChar65LatinSmallLetterETex "__OTR__textures/nes_font_static/gMsgChar65LatinSmallLetterETex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar65LatinSmallLetterETex[] = dgMsgChar65LatinSmallLetterETex; -#else -static const char gMsgChar65LatinSmallLetterETex[] __attribute__((aligned (2))) = dgMsgChar65LatinSmallLetterETex; -#endif - -#define dgMsgChar66LatinSmallLetterFTex "__OTR__textures/nes_font_static/gMsgChar66LatinSmallLetterFTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar66LatinSmallLetterFTex[] = dgMsgChar66LatinSmallLetterFTex; -#else -static const char gMsgChar66LatinSmallLetterFTex[] __attribute__((aligned (2))) = dgMsgChar66LatinSmallLetterFTex; -#endif - -#define dgMsgChar67LatinSmallLetterGTex "__OTR__textures/nes_font_static/gMsgChar67LatinSmallLetterGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar67LatinSmallLetterGTex[] = dgMsgChar67LatinSmallLetterGTex; -#else -static const char gMsgChar67LatinSmallLetterGTex[] __attribute__((aligned (2))) = dgMsgChar67LatinSmallLetterGTex; -#endif - -#define dgMsgChar68LatinSmallLetterHTex "__OTR__textures/nes_font_static/gMsgChar68LatinSmallLetterHTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar68LatinSmallLetterHTex[] = dgMsgChar68LatinSmallLetterHTex; -#else -static const char gMsgChar68LatinSmallLetterHTex[] __attribute__((aligned (2))) = dgMsgChar68LatinSmallLetterHTex; -#endif - -#define dgMsgChar69LatinSmallLetterITex "__OTR__textures/nes_font_static/gMsgChar69LatinSmallLetterITex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar69LatinSmallLetterITex[] = dgMsgChar69LatinSmallLetterITex; -#else -static const char gMsgChar69LatinSmallLetterITex[] __attribute__((aligned (2))) = dgMsgChar69LatinSmallLetterITex; -#endif - -#define dgMsgChar6ALatinSmallLetterJTex "__OTR__textures/nes_font_static/gMsgChar6ALatinSmallLetterJTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar6ALatinSmallLetterJTex[] = dgMsgChar6ALatinSmallLetterJTex; -#else -static const char gMsgChar6ALatinSmallLetterJTex[] __attribute__((aligned (2))) = dgMsgChar6ALatinSmallLetterJTex; -#endif - -#define dgMsgChar6BLatinSmallLetterKTex "__OTR__textures/nes_font_static/gMsgChar6BLatinSmallLetterKTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar6BLatinSmallLetterKTex[] = dgMsgChar6BLatinSmallLetterKTex; -#else -static const char gMsgChar6BLatinSmallLetterKTex[] __attribute__((aligned (2))) = dgMsgChar6BLatinSmallLetterKTex; -#endif - -#define dgMsgChar6CLatinSmallLetterLTex "__OTR__textures/nes_font_static/gMsgChar6CLatinSmallLetterLTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar6CLatinSmallLetterLTex[] = dgMsgChar6CLatinSmallLetterLTex; -#else -static const char gMsgChar6CLatinSmallLetterLTex[] __attribute__((aligned (2))) = dgMsgChar6CLatinSmallLetterLTex; -#endif - -#define dgMsgChar6DLatinSmallLetterMTex "__OTR__textures/nes_font_static/gMsgChar6DLatinSmallLetterMTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar6DLatinSmallLetterMTex[] = dgMsgChar6DLatinSmallLetterMTex; -#else -static const char gMsgChar6DLatinSmallLetterMTex[] __attribute__((aligned (2))) = dgMsgChar6DLatinSmallLetterMTex; -#endif - -#define dgMsgChar6ELatinSmallLetterNTex "__OTR__textures/nes_font_static/gMsgChar6ELatinSmallLetterNTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar6ELatinSmallLetterNTex[] = dgMsgChar6ELatinSmallLetterNTex; -#else -static const char gMsgChar6ELatinSmallLetterNTex[] __attribute__((aligned (2))) = dgMsgChar6ELatinSmallLetterNTex; -#endif - -#define dgMsgChar6FLatinSmallLetterOTex "__OTR__textures/nes_font_static/gMsgChar6FLatinSmallLetterOTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar6FLatinSmallLetterOTex[] = dgMsgChar6FLatinSmallLetterOTex; -#else -static const char gMsgChar6FLatinSmallLetterOTex[] __attribute__((aligned (2))) = dgMsgChar6FLatinSmallLetterOTex; -#endif - -#define dgMsgChar70LatinSmallLetterPTex "__OTR__textures/nes_font_static/gMsgChar70LatinSmallLetterPTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar70LatinSmallLetterPTex[] = dgMsgChar70LatinSmallLetterPTex; -#else -static const char gMsgChar70LatinSmallLetterPTex[] __attribute__((aligned (2))) = dgMsgChar70LatinSmallLetterPTex; -#endif - -#define dgMsgChar71LatinSmallLetterQTex "__OTR__textures/nes_font_static/gMsgChar71LatinSmallLetterQTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar71LatinSmallLetterQTex[] = dgMsgChar71LatinSmallLetterQTex; -#else -static const char gMsgChar71LatinSmallLetterQTex[] __attribute__((aligned (2))) = dgMsgChar71LatinSmallLetterQTex; -#endif - -#define dgMsgChar72LatinSmallLetterRTex "__OTR__textures/nes_font_static/gMsgChar72LatinSmallLetterRTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar72LatinSmallLetterRTex[] = dgMsgChar72LatinSmallLetterRTex; -#else -static const char gMsgChar72LatinSmallLetterRTex[] __attribute__((aligned (2))) = dgMsgChar72LatinSmallLetterRTex; -#endif - -#define dgMsgChar73LatinSmallLetterSTex "__OTR__textures/nes_font_static/gMsgChar73LatinSmallLetterSTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar73LatinSmallLetterSTex[] = dgMsgChar73LatinSmallLetterSTex; -#else -static const char gMsgChar73LatinSmallLetterSTex[] __attribute__((aligned (2))) = dgMsgChar73LatinSmallLetterSTex; -#endif - -#define dgMsgChar74LatinSmallLetterTTex "__OTR__textures/nes_font_static/gMsgChar74LatinSmallLetterTTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar74LatinSmallLetterTTex[] = dgMsgChar74LatinSmallLetterTTex; -#else -static const char gMsgChar74LatinSmallLetterTTex[] __attribute__((aligned (2))) = dgMsgChar74LatinSmallLetterTTex; -#endif - -#define dgMsgChar75LatinSmallLetterUTex "__OTR__textures/nes_font_static/gMsgChar75LatinSmallLetterUTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar75LatinSmallLetterUTex[] = dgMsgChar75LatinSmallLetterUTex; -#else -static const char gMsgChar75LatinSmallLetterUTex[] __attribute__((aligned (2))) = dgMsgChar75LatinSmallLetterUTex; -#endif - -#define dgMsgChar76LatinSmallLetterVTex "__OTR__textures/nes_font_static/gMsgChar76LatinSmallLetterVTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar76LatinSmallLetterVTex[] = dgMsgChar76LatinSmallLetterVTex; -#else -static const char gMsgChar76LatinSmallLetterVTex[] __attribute__((aligned (2))) = dgMsgChar76LatinSmallLetterVTex; -#endif - -#define dgMsgChar77LatinSmallLetterWTex "__OTR__textures/nes_font_static/gMsgChar77LatinSmallLetterWTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar77LatinSmallLetterWTex[] = dgMsgChar77LatinSmallLetterWTex; -#else -static const char gMsgChar77LatinSmallLetterWTex[] __attribute__((aligned (2))) = dgMsgChar77LatinSmallLetterWTex; -#endif - -#define dgMsgChar78LatinSmallLetterXTex "__OTR__textures/nes_font_static/gMsgChar78LatinSmallLetterXTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar78LatinSmallLetterXTex[] = dgMsgChar78LatinSmallLetterXTex; -#else -static const char gMsgChar78LatinSmallLetterXTex[] __attribute__((aligned (2))) = dgMsgChar78LatinSmallLetterXTex; -#endif - -#define dgMsgChar79LatinSmallLetterYTex "__OTR__textures/nes_font_static/gMsgChar79LatinSmallLetterYTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar79LatinSmallLetterYTex[] = dgMsgChar79LatinSmallLetterYTex; -#else -static const char gMsgChar79LatinSmallLetterYTex[] __attribute__((aligned (2))) = dgMsgChar79LatinSmallLetterYTex; -#endif - -#define dgMsgChar7ALatinSmallLetterZTex "__OTR__textures/nes_font_static/gMsgChar7ALatinSmallLetterZTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar7ALatinSmallLetterZTex[] = dgMsgChar7ALatinSmallLetterZTex; -#else -static const char gMsgChar7ALatinSmallLetterZTex[] __attribute__((aligned (2))) = dgMsgChar7ALatinSmallLetterZTex; -#endif - -#define dgMsgChar7BLeftCurlyBracketTex "__OTR__textures/nes_font_static/gMsgChar7BLeftCurlyBracketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar7BLeftCurlyBracketTex[] = dgMsgChar7BLeftCurlyBracketTex; -#else -static const char gMsgChar7BLeftCurlyBracketTex[] __attribute__((aligned (2))) = dgMsgChar7BLeftCurlyBracketTex; -#endif - -#define dgMsgChar7CVerticalLineTex "__OTR__textures/nes_font_static/gMsgChar7CVerticalLineTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar7CVerticalLineTex[] = dgMsgChar7CVerticalLineTex; -#else -static const char gMsgChar7CVerticalLineTex[] __attribute__((aligned (2))) = dgMsgChar7CVerticalLineTex; -#endif - -#define dgMsgChar7DRightCurlyBracketTex "__OTR__textures/nes_font_static/gMsgChar7DRightCurlyBracketTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar7DRightCurlyBracketTex[] = dgMsgChar7DRightCurlyBracketTex; -#else -static const char gMsgChar7DRightCurlyBracketTex[] __attribute__((aligned (2))) = dgMsgChar7DRightCurlyBracketTex; -#endif - -#define dgMsgChar7ETildeTex "__OTR__textures/nes_font_static/gMsgChar7ETildeTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar7ETildeTex[] = dgMsgChar7ETildeTex; -#else -static const char gMsgChar7ETildeTex[] __attribute__((aligned (2))) = dgMsgChar7ETildeTex; -#endif - -#define dgMsgChar7FBlankTex "__OTR__textures/nes_font_static/gMsgChar7FBlankTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar7FBlankTex[] = dgMsgChar7FBlankTex; -#else -static const char gMsgChar7FBlankTex[] __attribute__((aligned (2))) = dgMsgChar7FBlankTex; -#endif - -#define dgMsgChar80LatinCapitalLetterAWithGraveTex "__OTR__textures/nes_font_static/gMsgChar80LatinCapitalLetterAWithGraveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar80LatinCapitalLetterAWithGraveTex[] = dgMsgChar80LatinCapitalLetterAWithGraveTex; -#else -static const char gMsgChar80LatinCapitalLetterAWithGraveTex[] __attribute__((aligned (2))) = dgMsgChar80LatinCapitalLetterAWithGraveTex; -#endif - -#define dgMsgChar81LatinCapitalLetterIWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar81LatinCapitalLetterIWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar81LatinCapitalLetterIWithCircumflexTex[] = dgMsgChar81LatinCapitalLetterIWithCircumflexTex; -#else -static const char gMsgChar81LatinCapitalLetterIWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar81LatinCapitalLetterIWithCircumflexTex; -#endif - -#define dgMsgChar82LatinCapitalLetterAWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar82LatinCapitalLetterAWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar82LatinCapitalLetterAWithCircumflexTex[] = dgMsgChar82LatinCapitalLetterAWithCircumflexTex; -#else -static const char gMsgChar82LatinCapitalLetterAWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar82LatinCapitalLetterAWithCircumflexTex; -#endif - -#define dgMsgChar83LatinCapitalLetterAWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar83LatinCapitalLetterAWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar83LatinCapitalLetterAWithDiaeresisTex[] = dgMsgChar83LatinCapitalLetterAWithDiaeresisTex; -#else -static const char gMsgChar83LatinCapitalLetterAWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar83LatinCapitalLetterAWithDiaeresisTex; -#endif - -#define dgMsgChar84LatinCapitalLetterCWithCedillaTex "__OTR__textures/nes_font_static/gMsgChar84LatinCapitalLetterCWithCedillaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar84LatinCapitalLetterCWithCedillaTex[] = dgMsgChar84LatinCapitalLetterCWithCedillaTex; -#else -static const char gMsgChar84LatinCapitalLetterCWithCedillaTex[] __attribute__((aligned (2))) = dgMsgChar84LatinCapitalLetterCWithCedillaTex; -#endif - -#define dgMsgChar85LatinCapitalLetterEWithGraveTex "__OTR__textures/nes_font_static/gMsgChar85LatinCapitalLetterEWithGraveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar85LatinCapitalLetterEWithGraveTex[] = dgMsgChar85LatinCapitalLetterEWithGraveTex; -#else -static const char gMsgChar85LatinCapitalLetterEWithGraveTex[] __attribute__((aligned (2))) = dgMsgChar85LatinCapitalLetterEWithGraveTex; -#endif - -#define dgMsgChar86LatinCapitalLetterEWithAcuteTex "__OTR__textures/nes_font_static/gMsgChar86LatinCapitalLetterEWithAcuteTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar86LatinCapitalLetterEWithAcuteTex[] = dgMsgChar86LatinCapitalLetterEWithAcuteTex; -#else -static const char gMsgChar86LatinCapitalLetterEWithAcuteTex[] __attribute__((aligned (2))) = dgMsgChar86LatinCapitalLetterEWithAcuteTex; -#endif - -#define dgMsgChar87LatinCapitalLetterEWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar87LatinCapitalLetterEWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar87LatinCapitalLetterEWithCircumflexTex[] = dgMsgChar87LatinCapitalLetterEWithCircumflexTex; -#else -static const char gMsgChar87LatinCapitalLetterEWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar87LatinCapitalLetterEWithCircumflexTex; -#endif - -#define dgMsgChar88LatinCapitalLetterEWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar88LatinCapitalLetterEWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar88LatinCapitalLetterEWithDiaeresisTex[] = dgMsgChar88LatinCapitalLetterEWithDiaeresisTex; -#else -static const char gMsgChar88LatinCapitalLetterEWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar88LatinCapitalLetterEWithDiaeresisTex; -#endif - -#define dgMsgChar89LatinCapitalLetterIWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar89LatinCapitalLetterIWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar89LatinCapitalLetterIWithDiaeresisTex[] = dgMsgChar89LatinCapitalLetterIWithDiaeresisTex; -#else -static const char gMsgChar89LatinCapitalLetterIWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar89LatinCapitalLetterIWithDiaeresisTex; -#endif - -#define dgMsgChar8ALatinCapitalLetterOWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar8ALatinCapitalLetterOWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar8ALatinCapitalLetterOWithCircumflexTex[] = dgMsgChar8ALatinCapitalLetterOWithCircumflexTex; -#else -static const char gMsgChar8ALatinCapitalLetterOWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar8ALatinCapitalLetterOWithCircumflexTex; -#endif - -#define dgMsgChar8BLatinCapitalLetterOWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar8BLatinCapitalLetterOWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar8BLatinCapitalLetterOWithDiaeresisTex[] = dgMsgChar8BLatinCapitalLetterOWithDiaeresisTex; -#else -static const char gMsgChar8BLatinCapitalLetterOWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar8BLatinCapitalLetterOWithDiaeresisTex; -#endif - -#define dgMsgChar8CLatinCapitalLetterUWithGraveTex "__OTR__textures/nes_font_static/gMsgChar8CLatinCapitalLetterUWithGraveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar8CLatinCapitalLetterUWithGraveTex[] = dgMsgChar8CLatinCapitalLetterUWithGraveTex; -#else -static const char gMsgChar8CLatinCapitalLetterUWithGraveTex[] __attribute__((aligned (2))) = dgMsgChar8CLatinCapitalLetterUWithGraveTex; -#endif - -#define dgMsgChar8DLatinCapitalLetterUWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar8DLatinCapitalLetterUWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar8DLatinCapitalLetterUWithCircumflexTex[] = dgMsgChar8DLatinCapitalLetterUWithCircumflexTex; -#else -static const char gMsgChar8DLatinCapitalLetterUWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar8DLatinCapitalLetterUWithCircumflexTex; -#endif - -#define dgMsgChar8ELatinCapitalLetterUWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar8ELatinCapitalLetterUWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar8ELatinCapitalLetterUWithDiaeresisTex[] = dgMsgChar8ELatinCapitalLetterUWithDiaeresisTex; -#else -static const char gMsgChar8ELatinCapitalLetterUWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar8ELatinCapitalLetterUWithDiaeresisTex; -#endif - -#define dgMsgChar8FLatinSmallLetterSharpSTex "__OTR__textures/nes_font_static/gMsgChar8FLatinSmallLetterSharpSTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar8FLatinSmallLetterSharpSTex[] = dgMsgChar8FLatinSmallLetterSharpSTex; -#else -static const char gMsgChar8FLatinSmallLetterSharpSTex[] __attribute__((aligned (2))) = dgMsgChar8FLatinSmallLetterSharpSTex; -#endif - -#define dgMsgChar90LatinSmallLetterAWithGraveTex "__OTR__textures/nes_font_static/gMsgChar90LatinSmallLetterAWithGraveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar90LatinSmallLetterAWithGraveTex[] = dgMsgChar90LatinSmallLetterAWithGraveTex; -#else -static const char gMsgChar90LatinSmallLetterAWithGraveTex[] __attribute__((aligned (2))) = dgMsgChar90LatinSmallLetterAWithGraveTex; -#endif - -#define dgMsgChar91LatinSmallLetterAWithAcuteTex "__OTR__textures/nes_font_static/gMsgChar91LatinSmallLetterAWithAcuteTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar91LatinSmallLetterAWithAcuteTex[] = dgMsgChar91LatinSmallLetterAWithAcuteTex; -#else -static const char gMsgChar91LatinSmallLetterAWithAcuteTex[] __attribute__((aligned (2))) = dgMsgChar91LatinSmallLetterAWithAcuteTex; -#endif - -#define dgMsgChar92LatinSmallLetterAWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar92LatinSmallLetterAWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar92LatinSmallLetterAWithCircumflexTex[] = dgMsgChar92LatinSmallLetterAWithCircumflexTex; -#else -static const char gMsgChar92LatinSmallLetterAWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar92LatinSmallLetterAWithCircumflexTex; -#endif - -#define dgMsgChar93LatinSmallLetterAWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar93LatinSmallLetterAWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar93LatinSmallLetterAWithDiaeresisTex[] = dgMsgChar93LatinSmallLetterAWithDiaeresisTex; -#else -static const char gMsgChar93LatinSmallLetterAWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar93LatinSmallLetterAWithDiaeresisTex; -#endif - -#define dgMsgChar94LatinSmallLetterCWithCedillaTex "__OTR__textures/nes_font_static/gMsgChar94LatinSmallLetterCWithCedillaTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar94LatinSmallLetterCWithCedillaTex[] = dgMsgChar94LatinSmallLetterCWithCedillaTex; -#else -static const char gMsgChar94LatinSmallLetterCWithCedillaTex[] __attribute__((aligned (2))) = dgMsgChar94LatinSmallLetterCWithCedillaTex; -#endif - -#define dgMsgChar95LatinSmallLetterEWithGraveTex "__OTR__textures/nes_font_static/gMsgChar95LatinSmallLetterEWithGraveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar95LatinSmallLetterEWithGraveTex[] = dgMsgChar95LatinSmallLetterEWithGraveTex; -#else -static const char gMsgChar95LatinSmallLetterEWithGraveTex[] __attribute__((aligned (2))) = dgMsgChar95LatinSmallLetterEWithGraveTex; -#endif - -#define dgMsgChar96LatinSmallLetterEWithAcuteTex "__OTR__textures/nes_font_static/gMsgChar96LatinSmallLetterEWithAcuteTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar96LatinSmallLetterEWithAcuteTex[] = dgMsgChar96LatinSmallLetterEWithAcuteTex; -#else -static const char gMsgChar96LatinSmallLetterEWithAcuteTex[] __attribute__((aligned (2))) = dgMsgChar96LatinSmallLetterEWithAcuteTex; -#endif - -#define dgMsgChar97LatinSmallLetterEWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar97LatinSmallLetterEWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar97LatinSmallLetterEWithCircumflexTex[] = dgMsgChar97LatinSmallLetterEWithCircumflexTex; -#else -static const char gMsgChar97LatinSmallLetterEWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar97LatinSmallLetterEWithCircumflexTex; -#endif - -#define dgMsgChar98LatinSmallLetterEWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar98LatinSmallLetterEWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar98LatinSmallLetterEWithDiaeresisTex[] = dgMsgChar98LatinSmallLetterEWithDiaeresisTex; -#else -static const char gMsgChar98LatinSmallLetterEWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar98LatinSmallLetterEWithDiaeresisTex; -#endif - -#define dgMsgChar99LatinSmallLetterIWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar99LatinSmallLetterIWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar99LatinSmallLetterIWithDiaeresisTex[] = dgMsgChar99LatinSmallLetterIWithDiaeresisTex; -#else -static const char gMsgChar99LatinSmallLetterIWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar99LatinSmallLetterIWithDiaeresisTex; -#endif - -#define dgMsgChar9ALatinSmallLetterOWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar9ALatinSmallLetterOWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar9ALatinSmallLetterOWithCircumflexTex[] = dgMsgChar9ALatinSmallLetterOWithCircumflexTex; -#else -static const char gMsgChar9ALatinSmallLetterOWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar9ALatinSmallLetterOWithCircumflexTex; -#endif - -#define dgMsgChar9BLatinSmallLetterOWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar9BLatinSmallLetterOWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar9BLatinSmallLetterOWithDiaeresisTex[] = dgMsgChar9BLatinSmallLetterOWithDiaeresisTex; -#else -static const char gMsgChar9BLatinSmallLetterOWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar9BLatinSmallLetterOWithDiaeresisTex; -#endif - -#define dgMsgChar9CLatinSmallLetterUWithGraveTex "__OTR__textures/nes_font_static/gMsgChar9CLatinSmallLetterUWithGraveTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar9CLatinSmallLetterUWithGraveTex[] = dgMsgChar9CLatinSmallLetterUWithGraveTex; -#else -static const char gMsgChar9CLatinSmallLetterUWithGraveTex[] __attribute__((aligned (2))) = dgMsgChar9CLatinSmallLetterUWithGraveTex; -#endif - -#define dgMsgChar9DLatinSmallLetterUWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar9DLatinSmallLetterUWithCircumflexTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar9DLatinSmallLetterUWithCircumflexTex[] = dgMsgChar9DLatinSmallLetterUWithCircumflexTex; -#else -static const char gMsgChar9DLatinSmallLetterUWithCircumflexTex[] __attribute__((aligned (2))) = dgMsgChar9DLatinSmallLetterUWithCircumflexTex; -#endif - -#define dgMsgChar9ELatinSmallLetterUWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar9ELatinSmallLetterUWithDiaeresisTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar9ELatinSmallLetterUWithDiaeresisTex[] = dgMsgChar9ELatinSmallLetterUWithDiaeresisTex; -#else -static const char gMsgChar9ELatinSmallLetterUWithDiaeresisTex[] __attribute__((aligned (2))) = dgMsgChar9ELatinSmallLetterUWithDiaeresisTex; -#endif - -#define dgMsgChar9FButtonATex "__OTR__textures/nes_font_static/gMsgChar9FButtonATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgChar9FButtonATex[] = dgMsgChar9FButtonATex; -#else -static const char gMsgChar9FButtonATex[] __attribute__((aligned (2))) = dgMsgChar9FButtonATex; -#endif - -#define dgMsgCharA0ButtonBTex "__OTR__textures/nes_font_static/gMsgCharA0ButtonBTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA0ButtonBTex[] = dgMsgCharA0ButtonBTex; -#else -static const char gMsgCharA0ButtonBTex[] __attribute__((aligned (2))) = dgMsgCharA0ButtonBTex; -#endif - -#define dgMsgCharA1ButtonCTex "__OTR__textures/nes_font_static/gMsgCharA1ButtonCTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA1ButtonCTex[] = dgMsgCharA1ButtonCTex; -#else -static const char gMsgCharA1ButtonCTex[] __attribute__((aligned (2))) = dgMsgCharA1ButtonCTex; -#endif - -#define dgMsgCharA2ButtonLTex "__OTR__textures/nes_font_static/gMsgCharA2ButtonLTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA2ButtonLTex[] = dgMsgCharA2ButtonLTex; -#else -static const char gMsgCharA2ButtonLTex[] __attribute__((aligned (2))) = dgMsgCharA2ButtonLTex; -#endif - -#define dgMsgCharA3ButtonRTex "__OTR__textures/nes_font_static/gMsgCharA3ButtonRTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA3ButtonRTex[] = dgMsgCharA3ButtonRTex; -#else -static const char gMsgCharA3ButtonRTex[] __attribute__((aligned (2))) = dgMsgCharA3ButtonRTex; -#endif - -#define dgMsgCharA4ButtonZTex "__OTR__textures/nes_font_static/gMsgCharA4ButtonZTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA4ButtonZTex[] = dgMsgCharA4ButtonZTex; -#else -static const char gMsgCharA4ButtonZTex[] __attribute__((aligned (2))) = dgMsgCharA4ButtonZTex; -#endif - -#define dgMsgCharA5ButtonCUpTex "__OTR__textures/nes_font_static/gMsgCharA5ButtonCUpTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA5ButtonCUpTex[] = dgMsgCharA5ButtonCUpTex; -#else -static const char gMsgCharA5ButtonCUpTex[] __attribute__((aligned (2))) = dgMsgCharA5ButtonCUpTex; -#endif - -#define dgMsgCharA6ButtonCDownTex "__OTR__textures/nes_font_static/gMsgCharA6ButtonCDownTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA6ButtonCDownTex[] = dgMsgCharA6ButtonCDownTex; -#else -static const char gMsgCharA6ButtonCDownTex[] __attribute__((aligned (2))) = dgMsgCharA6ButtonCDownTex; -#endif - -#define dgMsgCharA7ButtonCLeftTex "__OTR__textures/nes_font_static/gMsgCharA7ButtonCLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA7ButtonCLeftTex[] = dgMsgCharA7ButtonCLeftTex; -#else -static const char gMsgCharA7ButtonCLeftTex[] __attribute__((aligned (2))) = dgMsgCharA7ButtonCLeftTex; -#endif - -#define dgMsgCharA8ButtonCRightTex "__OTR__textures/nes_font_static/gMsgCharA8ButtonCRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA8ButtonCRightTex[] = dgMsgCharA8ButtonCRightTex; -#else -static const char gMsgCharA8ButtonCRightTex[] __attribute__((aligned (2))) = dgMsgCharA8ButtonCRightTex; -#endif - -#define dgMsgCharA9ZTargetSignTex "__OTR__textures/nes_font_static/gMsgCharA9ZTargetSignTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharA9ZTargetSignTex[] = dgMsgCharA9ZTargetSignTex; -#else -static const char gMsgCharA9ZTargetSignTex[] __attribute__((aligned (2))) = dgMsgCharA9ZTargetSignTex; -#endif - -#define dgMsgCharAAControlStickTex "__OTR__textures/nes_font_static/gMsgCharAAControlStickTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharAAControlStickTex[] = dgMsgCharAAControlStickTex; -#else -static const char gMsgCharAAControlStickTex[] __attribute__((aligned (2))) = dgMsgCharAAControlStickTex; -#endif - -#define dgMsgCharABControlPadTex "__OTR__textures/nes_font_static/gMsgCharABControlPadTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMsgCharABControlPadTex[] = dgMsgCharABControlPadTex; -#else -static const char gMsgCharABControlPadTex[] __attribute__((aligned (2))) = dgMsgCharABControlPadTex; -#endif - +#include "align_asset_macro.h" + +#define dgMsgChar20SpaceTex "__OTR__textures/nes_font_static/gMsgChar20SpaceTex" +static const ALIGN_ASSET(2) char gMsgChar20SpaceTex[] = dgMsgChar20SpaceTex; + +#define dgMsgChar21ExclamationMarkTex "__OTR__textures/nes_font_static/gMsgChar21ExclamationMarkTex" +static const ALIGN_ASSET(2) char gMsgChar21ExclamationMarkTex[] = dgMsgChar21ExclamationMarkTex; + +#define dgMsgChar22QuotationMarkTex "__OTR__textures/nes_font_static/gMsgChar22QuotationMarkTex" +static const ALIGN_ASSET(2) char gMsgChar22QuotationMarkTex[] = dgMsgChar22QuotationMarkTex; + +#define dgMsgChar23NumberSignTex "__OTR__textures/nes_font_static/gMsgChar23NumberSignTex" +static const ALIGN_ASSET(2) char gMsgChar23NumberSignTex[] = dgMsgChar23NumberSignTex; + +#define dgMsgChar24DollarSignTex "__OTR__textures/nes_font_static/gMsgChar24DollarSignTex" +static const ALIGN_ASSET(2) char gMsgChar24DollarSignTex[] = dgMsgChar24DollarSignTex; + +#define dgMsgChar25PercentSignTex "__OTR__textures/nes_font_static/gMsgChar25PercentSignTex" +static const ALIGN_ASSET(2) char gMsgChar25PercentSignTex[] = dgMsgChar25PercentSignTex; + +#define dgMsgChar26AmpersandTex "__OTR__textures/nes_font_static/gMsgChar26AmpersandTex" +static const ALIGN_ASSET(2) char gMsgChar26AmpersandTex[] = dgMsgChar26AmpersandTex; + +#define dgMsgChar27ApostropheTex "__OTR__textures/nes_font_static/gMsgChar27ApostropheTex" +static const ALIGN_ASSET(2) char gMsgChar27ApostropheTex[] = dgMsgChar27ApostropheTex; + +#define dgMsgChar28LeftParenthesesTex "__OTR__textures/nes_font_static/gMsgChar28LeftParenthesesTex" +static const ALIGN_ASSET(2) char gMsgChar28LeftParenthesesTex[] = dgMsgChar28LeftParenthesesTex; + +#define dgMsgChar29RightParenthesesTex "__OTR__textures/nes_font_static/gMsgChar29RightParenthesesTex" +static const ALIGN_ASSET(2) char gMsgChar29RightParenthesesTex[] = dgMsgChar29RightParenthesesTex; + +#define dgMsgChar2AAsteriskTex "__OTR__textures/nes_font_static/gMsgChar2AAsteriskTex" +static const ALIGN_ASSET(2) char gMsgChar2AAsteriskTex[] = dgMsgChar2AAsteriskTex; + +#define dgMsgChar2BPlusSignTex "__OTR__textures/nes_font_static/gMsgChar2BPlusSignTex" +static const ALIGN_ASSET(2) char gMsgChar2BPlusSignTex[] = dgMsgChar2BPlusSignTex; + +#define dgMsgChar2CCommaTex "__OTR__textures/nes_font_static/gMsgChar2CCommaTex" +static const ALIGN_ASSET(2) char gMsgChar2CCommaTex[] = dgMsgChar2CCommaTex; + +#define dgMsgChar2DHyphenMinusTex "__OTR__textures/nes_font_static/gMsgChar2DHyphenMinusTex" +static const ALIGN_ASSET(2) char gMsgChar2DHyphenMinusTex[] = dgMsgChar2DHyphenMinusTex; + +#define dgMsgChar2EFullStopTex "__OTR__textures/nes_font_static/gMsgChar2EFullStopTex" +static const ALIGN_ASSET(2) char gMsgChar2EFullStopTex[] = dgMsgChar2EFullStopTex; + +#define dgMsgChar2FSolidusTex "__OTR__textures/nes_font_static/gMsgChar2FSolidusTex" +static const ALIGN_ASSET(2) char gMsgChar2FSolidusTex[] = dgMsgChar2FSolidusTex; + +#define dgMsgChar30Digit0Tex "__OTR__textures/nes_font_static/gMsgChar30Digit0Tex" +static const ALIGN_ASSET(2) char gMsgChar30Digit0Tex[] = dgMsgChar30Digit0Tex; + +#define dgMsgChar31Digit1Tex "__OTR__textures/nes_font_static/gMsgChar31Digit1Tex" +static const ALIGN_ASSET(2) char gMsgChar31Digit1Tex[] = dgMsgChar31Digit1Tex; + +#define dgMsgChar32Digit2Tex "__OTR__textures/nes_font_static/gMsgChar32Digit2Tex" +static const ALIGN_ASSET(2) char gMsgChar32Digit2Tex[] = dgMsgChar32Digit2Tex; + +#define dgMsgChar33Digit3Tex "__OTR__textures/nes_font_static/gMsgChar33Digit3Tex" +static const ALIGN_ASSET(2) char gMsgChar33Digit3Tex[] = dgMsgChar33Digit3Tex; + +#define dgMsgChar34Digit4Tex "__OTR__textures/nes_font_static/gMsgChar34Digit4Tex" +static const ALIGN_ASSET(2) char gMsgChar34Digit4Tex[] = dgMsgChar34Digit4Tex; + +#define dgMsgChar35Digit5Tex "__OTR__textures/nes_font_static/gMsgChar35Digit5Tex" +static const ALIGN_ASSET(2) char gMsgChar35Digit5Tex[] = dgMsgChar35Digit5Tex; + +#define dgMsgChar36Digit6Tex "__OTR__textures/nes_font_static/gMsgChar36Digit6Tex" +static const ALIGN_ASSET(2) char gMsgChar36Digit6Tex[] = dgMsgChar36Digit6Tex; + +#define dgMsgChar37Digit7Tex "__OTR__textures/nes_font_static/gMsgChar37Digit7Tex" +static const ALIGN_ASSET(2) char gMsgChar37Digit7Tex[] = dgMsgChar37Digit7Tex; + +#define dgMsgChar38Digit8Tex "__OTR__textures/nes_font_static/gMsgChar38Digit8Tex" +static const ALIGN_ASSET(2) char gMsgChar38Digit8Tex[] = dgMsgChar38Digit8Tex; + +#define dgMsgChar39Digit9Tex "__OTR__textures/nes_font_static/gMsgChar39Digit9Tex" +static const ALIGN_ASSET(2) char gMsgChar39Digit9Tex[] = dgMsgChar39Digit9Tex; + +#define dgMsgChar3AColonTex "__OTR__textures/nes_font_static/gMsgChar3AColonTex" +static const ALIGN_ASSET(2) char gMsgChar3AColonTex[] = dgMsgChar3AColonTex; + +#define dgMsgChar3BSemicolonTex "__OTR__textures/nes_font_static/gMsgChar3BSemicolonTex" +static const ALIGN_ASSET(2) char gMsgChar3BSemicolonTex[] = dgMsgChar3BSemicolonTex; + +#define dgMsgChar3CLessThanSignTex "__OTR__textures/nes_font_static/gMsgChar3CLessThanSignTex" +static const ALIGN_ASSET(2) char gMsgChar3CLessThanSignTex[] = dgMsgChar3CLessThanSignTex; + +#define dgMsgChar3DEqualsSignTex "__OTR__textures/nes_font_static/gMsgChar3DEqualsSignTex" +static const ALIGN_ASSET(2) char gMsgChar3DEqualsSignTex[] = dgMsgChar3DEqualsSignTex; + +#define dgMsgChar3EGreaterThanSignTex "__OTR__textures/nes_font_static/gMsgChar3EGreaterThanSignTex" +static const ALIGN_ASSET(2) char gMsgChar3EGreaterThanSignTex[] = dgMsgChar3EGreaterThanSignTex; + +#define dgMsgChar3FQuestionMarkTex "__OTR__textures/nes_font_static/gMsgChar3FQuestionMarkTex" +static const ALIGN_ASSET(2) char gMsgChar3FQuestionMarkTex[] = dgMsgChar3FQuestionMarkTex; + +#define dgMsgChar40CommercialAtTex "__OTR__textures/nes_font_static/gMsgChar40CommercialAtTex" +static const ALIGN_ASSET(2) char gMsgChar40CommercialAtTex[] = dgMsgChar40CommercialAtTex; + +#define dgMsgChar41LatinCapitalLetterATex "__OTR__textures/nes_font_static/gMsgChar41LatinCapitalLetterATex" +static const ALIGN_ASSET(2) char gMsgChar41LatinCapitalLetterATex[] = dgMsgChar41LatinCapitalLetterATex; + +#define dgMsgChar42LatinCapitalLetterBTex "__OTR__textures/nes_font_static/gMsgChar42LatinCapitalLetterBTex" +static const ALIGN_ASSET(2) char gMsgChar42LatinCapitalLetterBTex[] = dgMsgChar42LatinCapitalLetterBTex; + +#define dgMsgChar43LatinCapitalLetterCTex "__OTR__textures/nes_font_static/gMsgChar43LatinCapitalLetterCTex" +static const ALIGN_ASSET(2) char gMsgChar43LatinCapitalLetterCTex[] = dgMsgChar43LatinCapitalLetterCTex; + +#define dgMsgChar44LatinCapitalLetterDTex "__OTR__textures/nes_font_static/gMsgChar44LatinCapitalLetterDTex" +static const ALIGN_ASSET(2) char gMsgChar44LatinCapitalLetterDTex[] = dgMsgChar44LatinCapitalLetterDTex; + +#define dgMsgChar45LatinCapitalLetterETex "__OTR__textures/nes_font_static/gMsgChar45LatinCapitalLetterETex" +static const ALIGN_ASSET(2) char gMsgChar45LatinCapitalLetterETex[] = dgMsgChar45LatinCapitalLetterETex; + +#define dgMsgChar46LatinCapitalLetterFTex "__OTR__textures/nes_font_static/gMsgChar46LatinCapitalLetterFTex" +static const ALIGN_ASSET(2) char gMsgChar46LatinCapitalLetterFTex[] = dgMsgChar46LatinCapitalLetterFTex; + +#define dgMsgChar47LatinCapitalLetterGTex "__OTR__textures/nes_font_static/gMsgChar47LatinCapitalLetterGTex" +static const ALIGN_ASSET(2) char gMsgChar47LatinCapitalLetterGTex[] = dgMsgChar47LatinCapitalLetterGTex; + +#define dgMsgChar48LatinCapitalLetterHTex "__OTR__textures/nes_font_static/gMsgChar48LatinCapitalLetterHTex" +static const ALIGN_ASSET(2) char gMsgChar48LatinCapitalLetterHTex[] = dgMsgChar48LatinCapitalLetterHTex; + +#define dgMsgChar49LatinCapitalLetterITex "__OTR__textures/nes_font_static/gMsgChar49LatinCapitalLetterITex" +static const ALIGN_ASSET(2) char gMsgChar49LatinCapitalLetterITex[] = dgMsgChar49LatinCapitalLetterITex; + +#define dgMsgChar4ALatinCapitalLetterJTex "__OTR__textures/nes_font_static/gMsgChar4ALatinCapitalLetterJTex" +static const ALIGN_ASSET(2) char gMsgChar4ALatinCapitalLetterJTex[] = dgMsgChar4ALatinCapitalLetterJTex; + +#define dgMsgChar4BLatinCapitalLetterKTex "__OTR__textures/nes_font_static/gMsgChar4BLatinCapitalLetterKTex" +static const ALIGN_ASSET(2) char gMsgChar4BLatinCapitalLetterKTex[] = dgMsgChar4BLatinCapitalLetterKTex; + +#define dgMsgChar4CLatinCapitalLetterLTex "__OTR__textures/nes_font_static/gMsgChar4CLatinCapitalLetterLTex" +static const ALIGN_ASSET(2) char gMsgChar4CLatinCapitalLetterLTex[] = dgMsgChar4CLatinCapitalLetterLTex; + +#define dgMsgChar4DLatinCapitalLetterMTex "__OTR__textures/nes_font_static/gMsgChar4DLatinCapitalLetterMTex" +static const ALIGN_ASSET(2) char gMsgChar4DLatinCapitalLetterMTex[] = dgMsgChar4DLatinCapitalLetterMTex; + +#define dgMsgChar4ELatinCapitalLetterNTex "__OTR__textures/nes_font_static/gMsgChar4ELatinCapitalLetterNTex" +static const ALIGN_ASSET(2) char gMsgChar4ELatinCapitalLetterNTex[] = dgMsgChar4ELatinCapitalLetterNTex; + +#define dgMsgChar4FLatinCapitalLetterOTex "__OTR__textures/nes_font_static/gMsgChar4FLatinCapitalLetterOTex" +static const ALIGN_ASSET(2) char gMsgChar4FLatinCapitalLetterOTex[] = dgMsgChar4FLatinCapitalLetterOTex; + +#define dgMsgChar50LatinCapitalLetterPTex "__OTR__textures/nes_font_static/gMsgChar50LatinCapitalLetterPTex" +static const ALIGN_ASSET(2) char gMsgChar50LatinCapitalLetterPTex[] = dgMsgChar50LatinCapitalLetterPTex; + +#define dgMsgChar51LatinCapitalLetterQTex "__OTR__textures/nes_font_static/gMsgChar51LatinCapitalLetterQTex" +static const ALIGN_ASSET(2) char gMsgChar51LatinCapitalLetterQTex[] = dgMsgChar51LatinCapitalLetterQTex; + +#define dgMsgChar52LatinCapitalLetterRTex "__OTR__textures/nes_font_static/gMsgChar52LatinCapitalLetterRTex" +static const ALIGN_ASSET(2) char gMsgChar52LatinCapitalLetterRTex[] = dgMsgChar52LatinCapitalLetterRTex; + +#define dgMsgChar53LatinCapitalLetterSTex "__OTR__textures/nes_font_static/gMsgChar53LatinCapitalLetterSTex" +static const ALIGN_ASSET(2) char gMsgChar53LatinCapitalLetterSTex[] = dgMsgChar53LatinCapitalLetterSTex; + +#define dgMsgChar54LatinCapitalLetterTTex "__OTR__textures/nes_font_static/gMsgChar54LatinCapitalLetterTTex" +static const ALIGN_ASSET(2) char gMsgChar54LatinCapitalLetterTTex[] = dgMsgChar54LatinCapitalLetterTTex; + +#define dgMsgChar55LatinCapitalLetterUTex "__OTR__textures/nes_font_static/gMsgChar55LatinCapitalLetterUTex" +static const ALIGN_ASSET(2) char gMsgChar55LatinCapitalLetterUTex[] = dgMsgChar55LatinCapitalLetterUTex; + +#define dgMsgChar56LatinCapitalLetterVTex "__OTR__textures/nes_font_static/gMsgChar56LatinCapitalLetterVTex" +static const ALIGN_ASSET(2) char gMsgChar56LatinCapitalLetterVTex[] = dgMsgChar56LatinCapitalLetterVTex; + +#define dgMsgChar57LatinCapitalLetterWTex "__OTR__textures/nes_font_static/gMsgChar57LatinCapitalLetterWTex" +static const ALIGN_ASSET(2) char gMsgChar57LatinCapitalLetterWTex[] = dgMsgChar57LatinCapitalLetterWTex; + +#define dgMsgChar58LatinCapitalLetterXTex "__OTR__textures/nes_font_static/gMsgChar58LatinCapitalLetterXTex" +static const ALIGN_ASSET(2) char gMsgChar58LatinCapitalLetterXTex[] = dgMsgChar58LatinCapitalLetterXTex; + +#define dgMsgChar59LatinCapitalLetterYTex "__OTR__textures/nes_font_static/gMsgChar59LatinCapitalLetterYTex" +static const ALIGN_ASSET(2) char gMsgChar59LatinCapitalLetterYTex[] = dgMsgChar59LatinCapitalLetterYTex; + +#define dgMsgChar5ALatinCapitalLetterZTex "__OTR__textures/nes_font_static/gMsgChar5ALatinCapitalLetterZTex" +static const ALIGN_ASSET(2) char gMsgChar5ALatinCapitalLetterZTex[] = dgMsgChar5ALatinCapitalLetterZTex; + +#define dgMsgChar5BLeftSquareBracketTex "__OTR__textures/nes_font_static/gMsgChar5BLeftSquareBracketTex" +static const ALIGN_ASSET(2) char gMsgChar5BLeftSquareBracketTex[] = dgMsgChar5BLeftSquareBracketTex; + +#define dgMsgChar5CYenSignTex "__OTR__textures/nes_font_static/gMsgChar5CYenSignTex" +static const ALIGN_ASSET(2) char gMsgChar5CYenSignTex[] = dgMsgChar5CYenSignTex; + +#define dgMsgChar5DRightSquareBracketTex "__OTR__textures/nes_font_static/gMsgChar5DRightSquareBracketTex" +static const ALIGN_ASSET(2) char gMsgChar5DRightSquareBracketTex[] = dgMsgChar5DRightSquareBracketTex; + +#define dgMsgChar5ECircumflexAccentTex "__OTR__textures/nes_font_static/gMsgChar5ECircumflexAccentTex" +static const ALIGN_ASSET(2) char gMsgChar5ECircumflexAccentTex[] = dgMsgChar5ECircumflexAccentTex; + +#define dgMsgChar5FLowLineTex "__OTR__textures/nes_font_static/gMsgChar5FLowLineTex" +static const ALIGN_ASSET(2) char gMsgChar5FLowLineTex[] = dgMsgChar5FLowLineTex; + +#define dgMsgChar60GraveAccentTex "__OTR__textures/nes_font_static/gMsgChar60GraveAccentTex" +static const ALIGN_ASSET(2) char gMsgChar60GraveAccentTex[] = dgMsgChar60GraveAccentTex; + +#define dgMsgChar61LatinSmallLetterATex "__OTR__textures/nes_font_static/gMsgChar61LatinSmallLetterATex" +static const ALIGN_ASSET(2) char gMsgChar61LatinSmallLetterATex[] = dgMsgChar61LatinSmallLetterATex; + +#define dgMsgChar62LatinSmallLetterBTex "__OTR__textures/nes_font_static/gMsgChar62LatinSmallLetterBTex" +static const ALIGN_ASSET(2) char gMsgChar62LatinSmallLetterBTex[] = dgMsgChar62LatinSmallLetterBTex; + +#define dgMsgChar63LatinSmallLetterCTex "__OTR__textures/nes_font_static/gMsgChar63LatinSmallLetterCTex" +static const ALIGN_ASSET(2) char gMsgChar63LatinSmallLetterCTex[] = dgMsgChar63LatinSmallLetterCTex; + +#define dgMsgChar64LatinSmallLetterDTex "__OTR__textures/nes_font_static/gMsgChar64LatinSmallLetterDTex" +static const ALIGN_ASSET(2) char gMsgChar64LatinSmallLetterDTex[] = dgMsgChar64LatinSmallLetterDTex; + +#define dgMsgChar65LatinSmallLetterETex "__OTR__textures/nes_font_static/gMsgChar65LatinSmallLetterETex" +static const ALIGN_ASSET(2) char gMsgChar65LatinSmallLetterETex[] = dgMsgChar65LatinSmallLetterETex; + +#define dgMsgChar66LatinSmallLetterFTex "__OTR__textures/nes_font_static/gMsgChar66LatinSmallLetterFTex" +static const ALIGN_ASSET(2) char gMsgChar66LatinSmallLetterFTex[] = dgMsgChar66LatinSmallLetterFTex; + +#define dgMsgChar67LatinSmallLetterGTex "__OTR__textures/nes_font_static/gMsgChar67LatinSmallLetterGTex" +static const ALIGN_ASSET(2) char gMsgChar67LatinSmallLetterGTex[] = dgMsgChar67LatinSmallLetterGTex; + +#define dgMsgChar68LatinSmallLetterHTex "__OTR__textures/nes_font_static/gMsgChar68LatinSmallLetterHTex" +static const ALIGN_ASSET(2) char gMsgChar68LatinSmallLetterHTex[] = dgMsgChar68LatinSmallLetterHTex; + +#define dgMsgChar69LatinSmallLetterITex "__OTR__textures/nes_font_static/gMsgChar69LatinSmallLetterITex" +static const ALIGN_ASSET(2) char gMsgChar69LatinSmallLetterITex[] = dgMsgChar69LatinSmallLetterITex; + +#define dgMsgChar6ALatinSmallLetterJTex "__OTR__textures/nes_font_static/gMsgChar6ALatinSmallLetterJTex" +static const ALIGN_ASSET(2) char gMsgChar6ALatinSmallLetterJTex[] = dgMsgChar6ALatinSmallLetterJTex; + +#define dgMsgChar6BLatinSmallLetterKTex "__OTR__textures/nes_font_static/gMsgChar6BLatinSmallLetterKTex" +static const ALIGN_ASSET(2) char gMsgChar6BLatinSmallLetterKTex[] = dgMsgChar6BLatinSmallLetterKTex; + +#define dgMsgChar6CLatinSmallLetterLTex "__OTR__textures/nes_font_static/gMsgChar6CLatinSmallLetterLTex" +static const ALIGN_ASSET(2) char gMsgChar6CLatinSmallLetterLTex[] = dgMsgChar6CLatinSmallLetterLTex; + +#define dgMsgChar6DLatinSmallLetterMTex "__OTR__textures/nes_font_static/gMsgChar6DLatinSmallLetterMTex" +static const ALIGN_ASSET(2) char gMsgChar6DLatinSmallLetterMTex[] = dgMsgChar6DLatinSmallLetterMTex; + +#define dgMsgChar6ELatinSmallLetterNTex "__OTR__textures/nes_font_static/gMsgChar6ELatinSmallLetterNTex" +static const ALIGN_ASSET(2) char gMsgChar6ELatinSmallLetterNTex[] = dgMsgChar6ELatinSmallLetterNTex; + +#define dgMsgChar6FLatinSmallLetterOTex "__OTR__textures/nes_font_static/gMsgChar6FLatinSmallLetterOTex" +static const ALIGN_ASSET(2) char gMsgChar6FLatinSmallLetterOTex[] = dgMsgChar6FLatinSmallLetterOTex; + +#define dgMsgChar70LatinSmallLetterPTex "__OTR__textures/nes_font_static/gMsgChar70LatinSmallLetterPTex" +static const ALIGN_ASSET(2) char gMsgChar70LatinSmallLetterPTex[] = dgMsgChar70LatinSmallLetterPTex; + +#define dgMsgChar71LatinSmallLetterQTex "__OTR__textures/nes_font_static/gMsgChar71LatinSmallLetterQTex" +static const ALIGN_ASSET(2) char gMsgChar71LatinSmallLetterQTex[] = dgMsgChar71LatinSmallLetterQTex; + +#define dgMsgChar72LatinSmallLetterRTex "__OTR__textures/nes_font_static/gMsgChar72LatinSmallLetterRTex" +static const ALIGN_ASSET(2) char gMsgChar72LatinSmallLetterRTex[] = dgMsgChar72LatinSmallLetterRTex; + +#define dgMsgChar73LatinSmallLetterSTex "__OTR__textures/nes_font_static/gMsgChar73LatinSmallLetterSTex" +static const ALIGN_ASSET(2) char gMsgChar73LatinSmallLetterSTex[] = dgMsgChar73LatinSmallLetterSTex; + +#define dgMsgChar74LatinSmallLetterTTex "__OTR__textures/nes_font_static/gMsgChar74LatinSmallLetterTTex" +static const ALIGN_ASSET(2) char gMsgChar74LatinSmallLetterTTex[] = dgMsgChar74LatinSmallLetterTTex; + +#define dgMsgChar75LatinSmallLetterUTex "__OTR__textures/nes_font_static/gMsgChar75LatinSmallLetterUTex" +static const ALIGN_ASSET(2) char gMsgChar75LatinSmallLetterUTex[] = dgMsgChar75LatinSmallLetterUTex; + +#define dgMsgChar76LatinSmallLetterVTex "__OTR__textures/nes_font_static/gMsgChar76LatinSmallLetterVTex" +static const ALIGN_ASSET(2) char gMsgChar76LatinSmallLetterVTex[] = dgMsgChar76LatinSmallLetterVTex; + +#define dgMsgChar77LatinSmallLetterWTex "__OTR__textures/nes_font_static/gMsgChar77LatinSmallLetterWTex" +static const ALIGN_ASSET(2) char gMsgChar77LatinSmallLetterWTex[] = dgMsgChar77LatinSmallLetterWTex; + +#define dgMsgChar78LatinSmallLetterXTex "__OTR__textures/nes_font_static/gMsgChar78LatinSmallLetterXTex" +static const ALIGN_ASSET(2) char gMsgChar78LatinSmallLetterXTex[] = dgMsgChar78LatinSmallLetterXTex; + +#define dgMsgChar79LatinSmallLetterYTex "__OTR__textures/nes_font_static/gMsgChar79LatinSmallLetterYTex" +static const ALIGN_ASSET(2) char gMsgChar79LatinSmallLetterYTex[] = dgMsgChar79LatinSmallLetterYTex; + +#define dgMsgChar7ALatinSmallLetterZTex "__OTR__textures/nes_font_static/gMsgChar7ALatinSmallLetterZTex" +static const ALIGN_ASSET(2) char gMsgChar7ALatinSmallLetterZTex[] = dgMsgChar7ALatinSmallLetterZTex; + +#define dgMsgChar7BLeftCurlyBracketTex "__OTR__textures/nes_font_static/gMsgChar7BLeftCurlyBracketTex" +static const ALIGN_ASSET(2) char gMsgChar7BLeftCurlyBracketTex[] = dgMsgChar7BLeftCurlyBracketTex; + +#define dgMsgChar7CVerticalLineTex "__OTR__textures/nes_font_static/gMsgChar7CVerticalLineTex" +static const ALIGN_ASSET(2) char gMsgChar7CVerticalLineTex[] = dgMsgChar7CVerticalLineTex; + +#define dgMsgChar7DRightCurlyBracketTex "__OTR__textures/nes_font_static/gMsgChar7DRightCurlyBracketTex" +static const ALIGN_ASSET(2) char gMsgChar7DRightCurlyBracketTex[] = dgMsgChar7DRightCurlyBracketTex; + +#define dgMsgChar7ETildeTex "__OTR__textures/nes_font_static/gMsgChar7ETildeTex" +static const ALIGN_ASSET(2) char gMsgChar7ETildeTex[] = dgMsgChar7ETildeTex; + +#define dgMsgChar7FBlankTex "__OTR__textures/nes_font_static/gMsgChar7FBlankTex" +static const ALIGN_ASSET(2) char gMsgChar7FBlankTex[] = dgMsgChar7FBlankTex; + +#define dgMsgChar80LatinCapitalLetterAWithGraveTex "__OTR__textures/nes_font_static/gMsgChar80LatinCapitalLetterAWithGraveTex" +static const ALIGN_ASSET(2) char gMsgChar80LatinCapitalLetterAWithGraveTex[] = dgMsgChar80LatinCapitalLetterAWithGraveTex; + +#define dgMsgChar81LatinCapitalLetterIWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar81LatinCapitalLetterIWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar81LatinCapitalLetterIWithCircumflexTex[] = dgMsgChar81LatinCapitalLetterIWithCircumflexTex; + +#define dgMsgChar82LatinCapitalLetterAWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar82LatinCapitalLetterAWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar82LatinCapitalLetterAWithCircumflexTex[] = dgMsgChar82LatinCapitalLetterAWithCircumflexTex; + +#define dgMsgChar83LatinCapitalLetterAWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar83LatinCapitalLetterAWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar83LatinCapitalLetterAWithDiaeresisTex[] = dgMsgChar83LatinCapitalLetterAWithDiaeresisTex; + +#define dgMsgChar84LatinCapitalLetterCWithCedillaTex "__OTR__textures/nes_font_static/gMsgChar84LatinCapitalLetterCWithCedillaTex" +static const ALIGN_ASSET(2) char gMsgChar84LatinCapitalLetterCWithCedillaTex[] = dgMsgChar84LatinCapitalLetterCWithCedillaTex; + +#define dgMsgChar85LatinCapitalLetterEWithGraveTex "__OTR__textures/nes_font_static/gMsgChar85LatinCapitalLetterEWithGraveTex" +static const ALIGN_ASSET(2) char gMsgChar85LatinCapitalLetterEWithGraveTex[] = dgMsgChar85LatinCapitalLetterEWithGraveTex; + +#define dgMsgChar86LatinCapitalLetterEWithAcuteTex "__OTR__textures/nes_font_static/gMsgChar86LatinCapitalLetterEWithAcuteTex" +static const ALIGN_ASSET(2) char gMsgChar86LatinCapitalLetterEWithAcuteTex[] = dgMsgChar86LatinCapitalLetterEWithAcuteTex; + +#define dgMsgChar87LatinCapitalLetterEWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar87LatinCapitalLetterEWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar87LatinCapitalLetterEWithCircumflexTex[] = dgMsgChar87LatinCapitalLetterEWithCircumflexTex; + +#define dgMsgChar88LatinCapitalLetterEWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar88LatinCapitalLetterEWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar88LatinCapitalLetterEWithDiaeresisTex[] = dgMsgChar88LatinCapitalLetterEWithDiaeresisTex; + +#define dgMsgChar89LatinCapitalLetterIWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar89LatinCapitalLetterIWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar89LatinCapitalLetterIWithDiaeresisTex[] = dgMsgChar89LatinCapitalLetterIWithDiaeresisTex; + +#define dgMsgChar8ALatinCapitalLetterOWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar8ALatinCapitalLetterOWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar8ALatinCapitalLetterOWithCircumflexTex[] = dgMsgChar8ALatinCapitalLetterOWithCircumflexTex; + +#define dgMsgChar8BLatinCapitalLetterOWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar8BLatinCapitalLetterOWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar8BLatinCapitalLetterOWithDiaeresisTex[] = dgMsgChar8BLatinCapitalLetterOWithDiaeresisTex; + +#define dgMsgChar8CLatinCapitalLetterUWithGraveTex "__OTR__textures/nes_font_static/gMsgChar8CLatinCapitalLetterUWithGraveTex" +static const ALIGN_ASSET(2) char gMsgChar8CLatinCapitalLetterUWithGraveTex[] = dgMsgChar8CLatinCapitalLetterUWithGraveTex; + +#define dgMsgChar8DLatinCapitalLetterUWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar8DLatinCapitalLetterUWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar8DLatinCapitalLetterUWithCircumflexTex[] = dgMsgChar8DLatinCapitalLetterUWithCircumflexTex; + +#define dgMsgChar8ELatinCapitalLetterUWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar8ELatinCapitalLetterUWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar8ELatinCapitalLetterUWithDiaeresisTex[] = dgMsgChar8ELatinCapitalLetterUWithDiaeresisTex; + +#define dgMsgChar8FLatinSmallLetterSharpSTex "__OTR__textures/nes_font_static/gMsgChar8FLatinSmallLetterSharpSTex" +static const ALIGN_ASSET(2) char gMsgChar8FLatinSmallLetterSharpSTex[] = dgMsgChar8FLatinSmallLetterSharpSTex; + +#define dgMsgChar90LatinSmallLetterAWithGraveTex "__OTR__textures/nes_font_static/gMsgChar90LatinSmallLetterAWithGraveTex" +static const ALIGN_ASSET(2) char gMsgChar90LatinSmallLetterAWithGraveTex[] = dgMsgChar90LatinSmallLetterAWithGraveTex; + +#define dgMsgChar91LatinSmallLetterAWithAcuteTex "__OTR__textures/nes_font_static/gMsgChar91LatinSmallLetterAWithAcuteTex" +static const ALIGN_ASSET(2) char gMsgChar91LatinSmallLetterAWithAcuteTex[] = dgMsgChar91LatinSmallLetterAWithAcuteTex; + +#define dgMsgChar92LatinSmallLetterAWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar92LatinSmallLetterAWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar92LatinSmallLetterAWithCircumflexTex[] = dgMsgChar92LatinSmallLetterAWithCircumflexTex; + +#define dgMsgChar93LatinSmallLetterAWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar93LatinSmallLetterAWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar93LatinSmallLetterAWithDiaeresisTex[] = dgMsgChar93LatinSmallLetterAWithDiaeresisTex; + +#define dgMsgChar94LatinSmallLetterCWithCedillaTex "__OTR__textures/nes_font_static/gMsgChar94LatinSmallLetterCWithCedillaTex" +static const ALIGN_ASSET(2) char gMsgChar94LatinSmallLetterCWithCedillaTex[] = dgMsgChar94LatinSmallLetterCWithCedillaTex; + +#define dgMsgChar95LatinSmallLetterEWithGraveTex "__OTR__textures/nes_font_static/gMsgChar95LatinSmallLetterEWithGraveTex" +static const ALIGN_ASSET(2) char gMsgChar95LatinSmallLetterEWithGraveTex[] = dgMsgChar95LatinSmallLetterEWithGraveTex; + +#define dgMsgChar96LatinSmallLetterEWithAcuteTex "__OTR__textures/nes_font_static/gMsgChar96LatinSmallLetterEWithAcuteTex" +static const ALIGN_ASSET(2) char gMsgChar96LatinSmallLetterEWithAcuteTex[] = dgMsgChar96LatinSmallLetterEWithAcuteTex; + +#define dgMsgChar97LatinSmallLetterEWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar97LatinSmallLetterEWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar97LatinSmallLetterEWithCircumflexTex[] = dgMsgChar97LatinSmallLetterEWithCircumflexTex; + +#define dgMsgChar98LatinSmallLetterEWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar98LatinSmallLetterEWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar98LatinSmallLetterEWithDiaeresisTex[] = dgMsgChar98LatinSmallLetterEWithDiaeresisTex; + +#define dgMsgChar99LatinSmallLetterIWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar99LatinSmallLetterIWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar99LatinSmallLetterIWithDiaeresisTex[] = dgMsgChar99LatinSmallLetterIWithDiaeresisTex; + +#define dgMsgChar9ALatinSmallLetterOWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar9ALatinSmallLetterOWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar9ALatinSmallLetterOWithCircumflexTex[] = dgMsgChar9ALatinSmallLetterOWithCircumflexTex; + +#define dgMsgChar9BLatinSmallLetterOWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar9BLatinSmallLetterOWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar9BLatinSmallLetterOWithDiaeresisTex[] = dgMsgChar9BLatinSmallLetterOWithDiaeresisTex; + +#define dgMsgChar9CLatinSmallLetterUWithGraveTex "__OTR__textures/nes_font_static/gMsgChar9CLatinSmallLetterUWithGraveTex" +static const ALIGN_ASSET(2) char gMsgChar9CLatinSmallLetterUWithGraveTex[] = dgMsgChar9CLatinSmallLetterUWithGraveTex; + +#define dgMsgChar9DLatinSmallLetterUWithCircumflexTex "__OTR__textures/nes_font_static/gMsgChar9DLatinSmallLetterUWithCircumflexTex" +static const ALIGN_ASSET(2) char gMsgChar9DLatinSmallLetterUWithCircumflexTex[] = dgMsgChar9DLatinSmallLetterUWithCircumflexTex; + +#define dgMsgChar9ELatinSmallLetterUWithDiaeresisTex "__OTR__textures/nes_font_static/gMsgChar9ELatinSmallLetterUWithDiaeresisTex" +static const ALIGN_ASSET(2) char gMsgChar9ELatinSmallLetterUWithDiaeresisTex[] = dgMsgChar9ELatinSmallLetterUWithDiaeresisTex; + +#define dgMsgChar9FButtonATex "__OTR__textures/nes_font_static/gMsgChar9FButtonATex" +static const ALIGN_ASSET(2) char gMsgChar9FButtonATex[] = dgMsgChar9FButtonATex; + +#define dgMsgCharA0ButtonBTex "__OTR__textures/nes_font_static/gMsgCharA0ButtonBTex" +static const ALIGN_ASSET(2) char gMsgCharA0ButtonBTex[] = dgMsgCharA0ButtonBTex; + +#define dgMsgCharA1ButtonCTex "__OTR__textures/nes_font_static/gMsgCharA1ButtonCTex" +static const ALIGN_ASSET(2) char gMsgCharA1ButtonCTex[] = dgMsgCharA1ButtonCTex; + +#define dgMsgCharA2ButtonLTex "__OTR__textures/nes_font_static/gMsgCharA2ButtonLTex" +static const ALIGN_ASSET(2) char gMsgCharA2ButtonLTex[] = dgMsgCharA2ButtonLTex; + +#define dgMsgCharA3ButtonRTex "__OTR__textures/nes_font_static/gMsgCharA3ButtonRTex" +static const ALIGN_ASSET(2) char gMsgCharA3ButtonRTex[] = dgMsgCharA3ButtonRTex; + +#define dgMsgCharA4ButtonZTex "__OTR__textures/nes_font_static/gMsgCharA4ButtonZTex" +static const ALIGN_ASSET(2) char gMsgCharA4ButtonZTex[] = dgMsgCharA4ButtonZTex; + +#define dgMsgCharA5ButtonCUpTex "__OTR__textures/nes_font_static/gMsgCharA5ButtonCUpTex" +static const ALIGN_ASSET(2) char gMsgCharA5ButtonCUpTex[] = dgMsgCharA5ButtonCUpTex; + +#define dgMsgCharA6ButtonCDownTex "__OTR__textures/nes_font_static/gMsgCharA6ButtonCDownTex" +static const ALIGN_ASSET(2) char gMsgCharA6ButtonCDownTex[] = dgMsgCharA6ButtonCDownTex; + +#define dgMsgCharA7ButtonCLeftTex "__OTR__textures/nes_font_static/gMsgCharA7ButtonCLeftTex" +static const ALIGN_ASSET(2) char gMsgCharA7ButtonCLeftTex[] = dgMsgCharA7ButtonCLeftTex; + +#define dgMsgCharA8ButtonCRightTex "__OTR__textures/nes_font_static/gMsgCharA8ButtonCRightTex" +static const ALIGN_ASSET(2) char gMsgCharA8ButtonCRightTex[] = dgMsgCharA8ButtonCRightTex; + +#define dgMsgCharA9ZTargetSignTex "__OTR__textures/nes_font_static/gMsgCharA9ZTargetSignTex" +static const ALIGN_ASSET(2) char gMsgCharA9ZTargetSignTex[] = dgMsgCharA9ZTargetSignTex; + +#define dgMsgCharAAControlStickTex "__OTR__textures/nes_font_static/gMsgCharAAControlStickTex" +static const ALIGN_ASSET(2) char gMsgCharAAControlStickTex[] = dgMsgCharAAControlStickTex; + +#define dgMsgCharABControlPadTex "__OTR__textures/nes_font_static/gMsgCharABControlPadTex" +static const ALIGN_ASSET(2) char gMsgCharABControlPadTex[] = dgMsgCharABControlPadTex; \ No newline at end of file diff --git a/soh/assets/textures/nintendo_rogo_static/nintendo_rogo_static.h b/soh/assets/textures/nintendo_rogo_static/nintendo_rogo_static.h index 61dda9495..8b3ad0816 100644 --- a/soh/assets/textures/nintendo_rogo_static/nintendo_rogo_static.h +++ b/soh/assets/textures/nintendo_rogo_static/nintendo_rogo_static.h @@ -1,30 +1,15 @@ #pragma once -#define dnintendo_rogo_static_Tex_000000 "__OTR__textures/nintendo_rogo_static/nintendo_rogo_static_Tex_000000" -#ifdef _WIN32 -static const __declspec(align(2)) char nintendo_rogo_static_Tex_000000[] = dnintendo_rogo_static_Tex_000000; -#else -static const char nintendo_rogo_static_Tex_000000[] __attribute__((aligned (2))) = dnintendo_rogo_static_Tex_000000; -#endif - -#define dnintendo_rogo_static_Tex_001800 "__OTR__textures/nintendo_rogo_static/nintendo_rogo_static_Tex_001800" -#ifdef _WIN32 -static const __declspec(align(2)) char nintendo_rogo_static_Tex_001800[] = dnintendo_rogo_static_Tex_001800; -#else -static const char nintendo_rogo_static_Tex_001800[] __attribute__((aligned (2))) = dnintendo_rogo_static_Tex_001800; -#endif - -#define dgNintendo64LogoDL "__OTR__textures/nintendo_rogo_static/gNintendo64LogoDL" -#ifdef _WIN32 -static const __declspec(align(2)) char gNintendo64LogoDL[] = dgNintendo64LogoDL; -#else -static const char gNintendo64LogoDL[] __attribute__((aligned (2))) = dgNintendo64LogoDL; -#endif - -#define dnintendo_rogo_staticTex_0029C0 "__OTR__textures/nintendo_rogo_static/nintendo_rogo_staticTex_0029C0" -#ifdef _WIN32 -static const __declspec(align(2)) char nintendo_rogo_staticTex_0029C0[] = dnintendo_rogo_staticTex_0029C0; -#else -static const char nintendo_rogo_staticTex_0029C0[] __attribute__((aligned (2))) = dnintendo_rogo_staticTex_0029C0; -#endif - +#include "align_asset_macro.h" + +#define dnintendo_rogo_static_Tex_000000 "__OTR__textures/nintendo_rogo_static/nintendo_rogo_static_Tex_000000" +static const ALIGN_ASSET(2) char nintendo_rogo_static_Tex_000000[] = dnintendo_rogo_static_Tex_000000; + +#define dnintendo_rogo_static_Tex_001800 "__OTR__textures/nintendo_rogo_static/nintendo_rogo_static_Tex_001800" +static const ALIGN_ASSET(2) char nintendo_rogo_static_Tex_001800[] = dnintendo_rogo_static_Tex_001800; + +#define dgNintendo64LogoDL "__OTR__textures/nintendo_rogo_static/gNintendo64LogoDL" +static const ALIGN_ASSET(2) char gNintendo64LogoDL[] = dgNintendo64LogoDL; + +#define dnintendo_rogo_staticTex_0029C0 "__OTR__textures/nintendo_rogo_static/nintendo_rogo_staticTex_0029C0" +static const ALIGN_ASSET(2) char nintendo_rogo_staticTex_0029C0[] = dnintendo_rogo_staticTex_0029C0; \ No newline at end of file diff --git a/soh/assets/textures/parameter_static/parameter_static.h b/soh/assets/textures/parameter_static/parameter_static.h index a20796296..c825f03a0 100644 --- a/soh/assets/textures/parameter_static/parameter_static.h +++ b/soh/assets/textures/parameter_static/parameter_static.h @@ -1,394 +1,171 @@ #pragma once -#define dgHeartEmptyTex "__OTR__textures/parameter_static/gHeartEmptyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartEmptyTex[] = dgHeartEmptyTex; -#else -static const char gHeartEmptyTex[] __attribute__((aligned (2))) = dgHeartEmptyTex; -#endif - -#define dgHeartQuarterTex "__OTR__textures/parameter_static/gHeartQuarterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartQuarterTex[] = dgHeartQuarterTex; -#else -static const char gHeartQuarterTex[] __attribute__((aligned (2))) = dgHeartQuarterTex; -#endif - -#define dgHeartHalfTex "__OTR__textures/parameter_static/gHeartHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartHalfTex[] = dgHeartHalfTex; -#else -static const char gHeartHalfTex[] __attribute__((aligned (2))) = dgHeartHalfTex; -#endif - -#define dgHeartThreeQuarterTex "__OTR__textures/parameter_static/gHeartThreeQuarterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartThreeQuarterTex[] = dgHeartThreeQuarterTex; -#else -static const char gHeartThreeQuarterTex[] __attribute__((aligned (2))) = dgHeartThreeQuarterTex; -#endif - -#define dgHeartFullTex "__OTR__textures/parameter_static/gHeartFullTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHeartFullTex[] = dgHeartFullTex; -#else -static const char gHeartFullTex[] __attribute__((aligned (2))) = dgHeartFullTex; -#endif - -#define dgDefenseHeartEmptyTex "__OTR__textures/parameter_static/gDefenseHeartEmptyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDefenseHeartEmptyTex[] = dgDefenseHeartEmptyTex; -#else -static const char gDefenseHeartEmptyTex[] __attribute__((aligned (2))) = dgDefenseHeartEmptyTex; -#endif - -#define dgDefenseHeartQuarterTex "__OTR__textures/parameter_static/gDefenseHeartQuarterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDefenseHeartQuarterTex[] = dgDefenseHeartQuarterTex; -#else -static const char gDefenseHeartQuarterTex[] __attribute__((aligned (2))) = dgDefenseHeartQuarterTex; -#endif - -#define dgDefenseHeartHalfTex "__OTR__textures/parameter_static/gDefenseHeartHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDefenseHeartHalfTex[] = dgDefenseHeartHalfTex; -#else -static const char gDefenseHeartHalfTex[] __attribute__((aligned (2))) = dgDefenseHeartHalfTex; -#endif - -#define dgDefenseHeartThreeQuarterTex "__OTR__textures/parameter_static/gDefenseHeartThreeQuarterTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDefenseHeartThreeQuarterTex[] = dgDefenseHeartThreeQuarterTex; -#else -static const char gDefenseHeartThreeQuarterTex[] __attribute__((aligned (2))) = dgDefenseHeartThreeQuarterTex; -#endif - -#define dgDefenseHeartFullTex "__OTR__textures/parameter_static/gDefenseHeartFullTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDefenseHeartFullTex[] = dgDefenseHeartFullTex; -#else -static const char gDefenseHeartFullTex[] __attribute__((aligned (2))) = dgDefenseHeartFullTex; -#endif - -#define dgButtonBackgroundTex "__OTR__textures/parameter_static/gButtonBackgroundTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gButtonBackgroundTex[] = dgButtonBackgroundTex; -#else -static const char gButtonBackgroundTex[] __attribute__((aligned (2))) = dgButtonBackgroundTex; -#endif - -#define dgEquippedItemOutlineTex "__OTR__textures/parameter_static/gEquippedItemOutlineTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEquippedItemOutlineTex[] = dgEquippedItemOutlineTex; -#else -static const char gEquippedItemOutlineTex[] __attribute__((aligned (2))) = dgEquippedItemOutlineTex; -#endif - -#define dgEmptyCLeftArrowTex "__OTR__textures/parameter_static/gEmptyCLeftArrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEmptyCLeftArrowTex[] = dgEmptyCLeftArrowTex; -#else -static const char gEmptyCLeftArrowTex[] __attribute__((aligned (2))) = dgEmptyCLeftArrowTex; -#endif - -#define dgEmptyCDownArrowTex "__OTR__textures/parameter_static/gEmptyCDownArrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEmptyCDownArrowTex[] = dgEmptyCDownArrowTex; -#else -static const char gEmptyCDownArrowTex[] __attribute__((aligned (2))) = dgEmptyCDownArrowTex; -#endif - -#define dgEmptyCRightArrowTex "__OTR__textures/parameter_static/gEmptyCRightArrowTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gEmptyCRightArrowTex[] = dgEmptyCRightArrowTex; -#else -static const char gEmptyCRightArrowTex[] __attribute__((aligned (2))) = dgEmptyCRightArrowTex; -#endif - -#define dgSmallKeyCounterIconTex "__OTR__textures/parameter_static/gSmallKeyCounterIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSmallKeyCounterIconTex[] = dgSmallKeyCounterIconTex; -#else -static const char gSmallKeyCounterIconTex[] __attribute__((aligned (2))) = dgSmallKeyCounterIconTex; -#endif - -#define dgRupeeCounterIconTex "__OTR__textures/parameter_static/gRupeeCounterIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRupeeCounterIconTex[] = dgRupeeCounterIconTex; -#else -static const char gRupeeCounterIconTex[] __attribute__((aligned (2))) = dgRupeeCounterIconTex; -#endif - -#define dgClockIconTex "__OTR__textures/parameter_static/gClockIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gClockIconTex[] = dgClockIconTex; -#else -static const char gClockIconTex[] __attribute__((aligned (2))) = dgClockIconTex; -#endif - -#define dgCarrotIconTex "__OTR__textures/parameter_static/gCarrotIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCarrotIconTex[] = dgCarrotIconTex; -#else -static const char gCarrotIconTex[] __attribute__((aligned (2))) = dgCarrotIconTex; -#endif - -#define dgMapDungeonEntranceIconTex "__OTR__textures/parameter_static/gMapDungeonEntranceIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMapDungeonEntranceIconTex[] = dgMapDungeonEntranceIconTex; -#else -static const char gMapDungeonEntranceIconTex[] __attribute__((aligned (2))) = dgMapDungeonEntranceIconTex; -#endif - -#define dgMapChestIconTex "__OTR__textures/parameter_static/gMapChestIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMapChestIconTex[] = dgMapChestIconTex; -#else -static const char gMapChestIconTex[] __attribute__((aligned (2))) = dgMapChestIconTex; -#endif - -#define dgArcheryScoreIconTex "__OTR__textures/parameter_static/gArcheryScoreIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gArcheryScoreIconTex[] = dgArcheryScoreIconTex; -#else -static const char gArcheryScoreIconTex[] __attribute__((aligned (2))) = dgArcheryScoreIconTex; -#endif - -#define dgMapBossIconTex "__OTR__textures/parameter_static/gMapBossIconTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMapBossIconTex[] = dgMapBossIconTex; -#else -static const char gMapBossIconTex[] __attribute__((aligned (2))) = dgMapBossIconTex; -#endif - -#define dgOcarinaATex "__OTR__textures/parameter_static/gOcarinaATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaATex[] = dgOcarinaATex; -#else -static const char gOcarinaATex[] __attribute__((aligned (2))) = dgOcarinaATex; -#endif - -#define dgOcarinaCDownTex "__OTR__textures/parameter_static/gOcarinaCDownTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaCDownTex[] = dgOcarinaCDownTex; -#else -static const char gOcarinaCDownTex[] __attribute__((aligned (2))) = dgOcarinaCDownTex; -#endif - -#define dgOcarinaCRightTex "__OTR__textures/parameter_static/gOcarinaCRightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaCRightTex[] = dgOcarinaCRightTex; -#else -static const char gOcarinaCRightTex[] __attribute__((aligned (2))) = dgOcarinaCRightTex; -#endif - -#define dgOcarinaCLeftTex "__OTR__textures/parameter_static/gOcarinaCLeftTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaCLeftTex[] = dgOcarinaCLeftTex; -#else -static const char gOcarinaCLeftTex[] __attribute__((aligned (2))) = dgOcarinaCLeftTex; -#endif - -#define dgOcarinaCUpTex "__OTR__textures/parameter_static/gOcarinaCUpTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaCUpTex[] = dgOcarinaCUpTex; -#else -static const char gOcarinaCUpTex[] __attribute__((aligned (2))) = dgOcarinaCUpTex; -#endif - -#define dgOcarinaTrebleClefTex "__OTR__textures/parameter_static/gOcarinaTrebleClefTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gOcarinaTrebleClefTex[] = dgOcarinaTrebleClefTex; -#else -static const char gOcarinaTrebleClefTex[] __attribute__((aligned (2))) = dgOcarinaTrebleClefTex; -#endif - -#define dgNaviCUpJPTex "__OTR__textures/parameter_static/gNaviCUpJPTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNaviCUpJPTex[] = dgNaviCUpJPTex; -#else -static const char gNaviCUpJPTex[] __attribute__((aligned (2))) = dgNaviCUpJPTex; -#endif - -#define dgNaviCUpENGTex "__OTR__textures/parameter_static/gNaviCUpENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNaviCUpENGTex[] = dgNaviCUpENGTex; -#else -static const char gNaviCUpENGTex[] __attribute__((aligned (2))) = dgNaviCUpENGTex; -#endif - -#define dgCounterDigit0Tex "__OTR__textures/parameter_static/gCounterDigit0Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit0Tex[] = dgCounterDigit0Tex; -#else -static const char gCounterDigit0Tex[] __attribute__((aligned (2))) = dgCounterDigit0Tex; -#endif - -#define dgCounterDigit1Tex "__OTR__textures/parameter_static/gCounterDigit1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit1Tex[] = dgCounterDigit1Tex; -#else -static const char gCounterDigit1Tex[] __attribute__((aligned (2))) = dgCounterDigit1Tex; -#endif - -#define dgCounterDigit2Tex "__OTR__textures/parameter_static/gCounterDigit2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit2Tex[] = dgCounterDigit2Tex; -#else -static const char gCounterDigit2Tex[] __attribute__((aligned (2))) = dgCounterDigit2Tex; -#endif - -#define dgCounterDigit3Tex "__OTR__textures/parameter_static/gCounterDigit3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit3Tex[] = dgCounterDigit3Tex; -#else -static const char gCounterDigit3Tex[] __attribute__((aligned (2))) = dgCounterDigit3Tex; -#endif - -#define dgCounterDigit4Tex "__OTR__textures/parameter_static/gCounterDigit4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit4Tex[] = dgCounterDigit4Tex; -#else -static const char gCounterDigit4Tex[] __attribute__((aligned (2))) = dgCounterDigit4Tex; -#endif - -#define dgCounterDigit5Tex "__OTR__textures/parameter_static/gCounterDigit5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit5Tex[] = dgCounterDigit5Tex; -#else -static const char gCounterDigit5Tex[] __attribute__((aligned (2))) = dgCounterDigit5Tex; -#endif - -#define dgCounterDigit6Tex "__OTR__textures/parameter_static/gCounterDigit6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit6Tex[] = dgCounterDigit6Tex; -#else -static const char gCounterDigit6Tex[] __attribute__((aligned (2))) = dgCounterDigit6Tex; -#endif - -#define dgCounterDigit7Tex "__OTR__textures/parameter_static/gCounterDigit7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit7Tex[] = dgCounterDigit7Tex; -#else -static const char gCounterDigit7Tex[] __attribute__((aligned (2))) = dgCounterDigit7Tex; -#endif - -#define dgCounterDigit8Tex "__OTR__textures/parameter_static/gCounterDigit8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit8Tex[] = dgCounterDigit8Tex; -#else -static const char gCounterDigit8Tex[] __attribute__((aligned (2))) = dgCounterDigit8Tex; -#endif - -#define dgCounterDigit9Tex "__OTR__textures/parameter_static/gCounterDigit9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterDigit9Tex[] = dgCounterDigit9Tex; -#else -static const char gCounterDigit9Tex[] __attribute__((aligned (2))) = dgCounterDigit9Tex; -#endif - -#define dgCounterColonTex "__OTR__textures/parameter_static/gCounterColonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCounterColonTex[] = dgCounterColonTex; -#else -static const char gCounterColonTex[] __attribute__((aligned (2))) = dgCounterColonTex; -#endif - -#define dgAmmoDigit0Tex "__OTR__textures/parameter_static/gAmmoDigit0Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit0Tex[] = dgAmmoDigit0Tex; -#else -static const char gAmmoDigit0Tex[] __attribute__((aligned (2))) = dgAmmoDigit0Tex; -#endif - -#define dgAmmoDigit1Tex "__OTR__textures/parameter_static/gAmmoDigit1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit1Tex[] = dgAmmoDigit1Tex; -#else -static const char gAmmoDigit1Tex[] __attribute__((aligned (2))) = dgAmmoDigit1Tex; -#endif - -#define dgAmmoDigit2Tex "__OTR__textures/parameter_static/gAmmoDigit2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit2Tex[] = dgAmmoDigit2Tex; -#else -static const char gAmmoDigit2Tex[] __attribute__((aligned (2))) = dgAmmoDigit2Tex; -#endif - -#define dgAmmoDigit3Tex "__OTR__textures/parameter_static/gAmmoDigit3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit3Tex[] = dgAmmoDigit3Tex; -#else -static const char gAmmoDigit3Tex[] __attribute__((aligned (2))) = dgAmmoDigit3Tex; -#endif - -#define dgAmmoDigit4Tex "__OTR__textures/parameter_static/gAmmoDigit4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit4Tex[] = dgAmmoDigit4Tex; -#else -static const char gAmmoDigit4Tex[] __attribute__((aligned (2))) = dgAmmoDigit4Tex; -#endif - -#define dgAmmoDigit5Tex "__OTR__textures/parameter_static/gAmmoDigit5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit5Tex[] = dgAmmoDigit5Tex; -#else -static const char gAmmoDigit5Tex[] __attribute__((aligned (2))) = dgAmmoDigit5Tex; -#endif - -#define dgAmmoDigit6Tex "__OTR__textures/parameter_static/gAmmoDigit6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit6Tex[] = dgAmmoDigit6Tex; -#else -static const char gAmmoDigit6Tex[] __attribute__((aligned (2))) = dgAmmoDigit6Tex; -#endif - -#define dgAmmoDigit7Tex "__OTR__textures/parameter_static/gAmmoDigit7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit7Tex[] = dgAmmoDigit7Tex; -#else -static const char gAmmoDigit7Tex[] __attribute__((aligned (2))) = dgAmmoDigit7Tex; -#endif - -#define dgAmmoDigit8Tex "__OTR__textures/parameter_static/gAmmoDigit8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit8Tex[] = dgAmmoDigit8Tex; -#else -static const char gAmmoDigit8Tex[] __attribute__((aligned (2))) = dgAmmoDigit8Tex; -#endif - -#define dgAmmoDigit9Tex "__OTR__textures/parameter_static/gAmmoDigit9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gAmmoDigit9Tex[] = dgAmmoDigit9Tex; -#else -static const char gAmmoDigit9Tex[] __attribute__((aligned (2))) = dgAmmoDigit9Tex; -#endif - -#define dgUnusedAmmoDigitHalfTex "__OTR__textures/parameter_static/gUnusedAmmoDigitHalfTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gUnusedAmmoDigitHalfTex[] = dgUnusedAmmoDigitHalfTex; -#else -static const char gUnusedAmmoDigitHalfTex[] __attribute__((aligned (2))) = dgUnusedAmmoDigitHalfTex; -#endif - -#define dgMagicMeterEndTex "__OTR__textures/parameter_static/gMagicMeterEndTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicMeterEndTex[] = dgMagicMeterEndTex; -#else -static const char gMagicMeterEndTex[] __attribute__((aligned (2))) = dgMagicMeterEndTex; -#endif - -#define dgMagicMeterMidTex "__OTR__textures/parameter_static/gMagicMeterMidTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicMeterMidTex[] = dgMagicMeterMidTex; -#else -static const char gMagicMeterMidTex[] __attribute__((aligned (2))) = dgMagicMeterMidTex; -#endif - -#define dgMagicMeterFillTex "__OTR__textures/parameter_static/gMagicMeterFillTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMagicMeterFillTex[] = dgMagicMeterFillTex; -#else -static const char gMagicMeterFillTex[] __attribute__((aligned (2))) = dgMagicMeterFillTex; -#endif - +#include "align_asset_macro.h" + +#define dgHeartEmptyTex "__OTR__textures/parameter_static/gHeartEmptyTex" +static const ALIGN_ASSET(2) char gHeartEmptyTex[] = dgHeartEmptyTex; + +#define dgHeartQuarterTex "__OTR__textures/parameter_static/gHeartQuarterTex" +static const ALIGN_ASSET(2) char gHeartQuarterTex[] = dgHeartQuarterTex; + +#define dgHeartHalfTex "__OTR__textures/parameter_static/gHeartHalfTex" +static const ALIGN_ASSET(2) char gHeartHalfTex[] = dgHeartHalfTex; + +#define dgHeartThreeQuarterTex "__OTR__textures/parameter_static/gHeartThreeQuarterTex" +static const ALIGN_ASSET(2) char gHeartThreeQuarterTex[] = dgHeartThreeQuarterTex; + +#define dgHeartFullTex "__OTR__textures/parameter_static/gHeartFullTex" +static const ALIGN_ASSET(2) char gHeartFullTex[] = dgHeartFullTex; + +#define dgDefenseHeartEmptyTex "__OTR__textures/parameter_static/gDefenseHeartEmptyTex" +static const ALIGN_ASSET(2) char gDefenseHeartEmptyTex[] = dgDefenseHeartEmptyTex; + +#define dgDefenseHeartQuarterTex "__OTR__textures/parameter_static/gDefenseHeartQuarterTex" +static const ALIGN_ASSET(2) char gDefenseHeartQuarterTex[] = dgDefenseHeartQuarterTex; + +#define dgDefenseHeartHalfTex "__OTR__textures/parameter_static/gDefenseHeartHalfTex" +static const ALIGN_ASSET(2) char gDefenseHeartHalfTex[] = dgDefenseHeartHalfTex; + +#define dgDefenseHeartThreeQuarterTex "__OTR__textures/parameter_static/gDefenseHeartThreeQuarterTex" +static const ALIGN_ASSET(2) char gDefenseHeartThreeQuarterTex[] = dgDefenseHeartThreeQuarterTex; + +#define dgDefenseHeartFullTex "__OTR__textures/parameter_static/gDefenseHeartFullTex" +static const ALIGN_ASSET(2) char gDefenseHeartFullTex[] = dgDefenseHeartFullTex; + +#define dgButtonBackgroundTex "__OTR__textures/parameter_static/gButtonBackgroundTex" +static const ALIGN_ASSET(2) char gButtonBackgroundTex[] = dgButtonBackgroundTex; + +#define dgEquippedItemOutlineTex "__OTR__textures/parameter_static/gEquippedItemOutlineTex" +static const ALIGN_ASSET(2) char gEquippedItemOutlineTex[] = dgEquippedItemOutlineTex; + +#define dgEmptyCLeftArrowTex "__OTR__textures/parameter_static/gEmptyCLeftArrowTex" +static const ALIGN_ASSET(2) char gEmptyCLeftArrowTex[] = dgEmptyCLeftArrowTex; + +#define dgEmptyCDownArrowTex "__OTR__textures/parameter_static/gEmptyCDownArrowTex" +static const ALIGN_ASSET(2) char gEmptyCDownArrowTex[] = dgEmptyCDownArrowTex; + +#define dgEmptyCRightArrowTex "__OTR__textures/parameter_static/gEmptyCRightArrowTex" +static const ALIGN_ASSET(2) char gEmptyCRightArrowTex[] = dgEmptyCRightArrowTex; + +#define dgSmallKeyCounterIconTex "__OTR__textures/parameter_static/gSmallKeyCounterIconTex" +static const ALIGN_ASSET(2) char gSmallKeyCounterIconTex[] = dgSmallKeyCounterIconTex; + +#define dgRupeeCounterIconTex "__OTR__textures/parameter_static/gRupeeCounterIconTex" +static const ALIGN_ASSET(2) char gRupeeCounterIconTex[] = dgRupeeCounterIconTex; + +#define dgClockIconTex "__OTR__textures/parameter_static/gClockIconTex" +static const ALIGN_ASSET(2) char gClockIconTex[] = dgClockIconTex; + +#define dgCarrotIconTex "__OTR__textures/parameter_static/gCarrotIconTex" +static const ALIGN_ASSET(2) char gCarrotIconTex[] = dgCarrotIconTex; + +#define dgMapDungeonEntranceIconTex "__OTR__textures/parameter_static/gMapDungeonEntranceIconTex" +static const ALIGN_ASSET(2) char gMapDungeonEntranceIconTex[] = dgMapDungeonEntranceIconTex; + +#define dgMapChestIconTex "__OTR__textures/parameter_static/gMapChestIconTex" +static const ALIGN_ASSET(2) char gMapChestIconTex[] = dgMapChestIconTex; + +#define dgArcheryScoreIconTex "__OTR__textures/parameter_static/gArcheryScoreIconTex" +static const ALIGN_ASSET(2) char gArcheryScoreIconTex[] = dgArcheryScoreIconTex; + +#define dgMapBossIconTex "__OTR__textures/parameter_static/gMapBossIconTex" +static const ALIGN_ASSET(2) char gMapBossIconTex[] = dgMapBossIconTex; + +#define dgOcarinaATex "__OTR__textures/parameter_static/gOcarinaATex" +static const ALIGN_ASSET(2) char gOcarinaATex[] = dgOcarinaATex; + +#define dgOcarinaCDownTex "__OTR__textures/parameter_static/gOcarinaCDownTex" +static const ALIGN_ASSET(2) char gOcarinaCDownTex[] = dgOcarinaCDownTex; + +#define dgOcarinaCRightTex "__OTR__textures/parameter_static/gOcarinaCRightTex" +static const ALIGN_ASSET(2) char gOcarinaCRightTex[] = dgOcarinaCRightTex; + +#define dgOcarinaCLeftTex "__OTR__textures/parameter_static/gOcarinaCLeftTex" +static const ALIGN_ASSET(2) char gOcarinaCLeftTex[] = dgOcarinaCLeftTex; + +#define dgOcarinaCUpTex "__OTR__textures/parameter_static/gOcarinaCUpTex" +static const ALIGN_ASSET(2) char gOcarinaCUpTex[] = dgOcarinaCUpTex; + +#define dgOcarinaTrebleClefTex "__OTR__textures/parameter_static/gOcarinaTrebleClefTex" +static const ALIGN_ASSET(2) char gOcarinaTrebleClefTex[] = dgOcarinaTrebleClefTex; + +#define dgNaviCUpJPTex "__OTR__textures/parameter_static/gNaviCUpJPTex" +static const ALIGN_ASSET(2) char gNaviCUpJPTex[] = dgNaviCUpJPTex; + +#define dgNaviCUpENGTex "__OTR__textures/parameter_static/gNaviCUpENGTex" +static const ALIGN_ASSET(2) char gNaviCUpENGTex[] = dgNaviCUpENGTex; + +#define dgCounterDigit0Tex "__OTR__textures/parameter_static/gCounterDigit0Tex" +static const ALIGN_ASSET(2) char gCounterDigit0Tex[] = dgCounterDigit0Tex; + +#define dgCounterDigit1Tex "__OTR__textures/parameter_static/gCounterDigit1Tex" +static const ALIGN_ASSET(2) char gCounterDigit1Tex[] = dgCounterDigit1Tex; + +#define dgCounterDigit2Tex "__OTR__textures/parameter_static/gCounterDigit2Tex" +static const ALIGN_ASSET(2) char gCounterDigit2Tex[] = dgCounterDigit2Tex; + +#define dgCounterDigit3Tex "__OTR__textures/parameter_static/gCounterDigit3Tex" +static const ALIGN_ASSET(2) char gCounterDigit3Tex[] = dgCounterDigit3Tex; + +#define dgCounterDigit4Tex "__OTR__textures/parameter_static/gCounterDigit4Tex" +static const ALIGN_ASSET(2) char gCounterDigit4Tex[] = dgCounterDigit4Tex; + +#define dgCounterDigit5Tex "__OTR__textures/parameter_static/gCounterDigit5Tex" +static const ALIGN_ASSET(2) char gCounterDigit5Tex[] = dgCounterDigit5Tex; + +#define dgCounterDigit6Tex "__OTR__textures/parameter_static/gCounterDigit6Tex" +static const ALIGN_ASSET(2) char gCounterDigit6Tex[] = dgCounterDigit6Tex; + +#define dgCounterDigit7Tex "__OTR__textures/parameter_static/gCounterDigit7Tex" +static const ALIGN_ASSET(2) char gCounterDigit7Tex[] = dgCounterDigit7Tex; + +#define dgCounterDigit8Tex "__OTR__textures/parameter_static/gCounterDigit8Tex" +static const ALIGN_ASSET(2) char gCounterDigit8Tex[] = dgCounterDigit8Tex; + +#define dgCounterDigit9Tex "__OTR__textures/parameter_static/gCounterDigit9Tex" +static const ALIGN_ASSET(2) char gCounterDigit9Tex[] = dgCounterDigit9Tex; + +#define dgCounterColonTex "__OTR__textures/parameter_static/gCounterColonTex" +static const ALIGN_ASSET(2) char gCounterColonTex[] = dgCounterColonTex; + +#define dgAmmoDigit0Tex "__OTR__textures/parameter_static/gAmmoDigit0Tex" +static const ALIGN_ASSET(2) char gAmmoDigit0Tex[] = dgAmmoDigit0Tex; + +#define dgAmmoDigit1Tex "__OTR__textures/parameter_static/gAmmoDigit1Tex" +static const ALIGN_ASSET(2) char gAmmoDigit1Tex[] = dgAmmoDigit1Tex; + +#define dgAmmoDigit2Tex "__OTR__textures/parameter_static/gAmmoDigit2Tex" +static const ALIGN_ASSET(2) char gAmmoDigit2Tex[] = dgAmmoDigit2Tex; + +#define dgAmmoDigit3Tex "__OTR__textures/parameter_static/gAmmoDigit3Tex" +static const ALIGN_ASSET(2) char gAmmoDigit3Tex[] = dgAmmoDigit3Tex; + +#define dgAmmoDigit4Tex "__OTR__textures/parameter_static/gAmmoDigit4Tex" +static const ALIGN_ASSET(2) char gAmmoDigit4Tex[] = dgAmmoDigit4Tex; + +#define dgAmmoDigit5Tex "__OTR__textures/parameter_static/gAmmoDigit5Tex" +static const ALIGN_ASSET(2) char gAmmoDigit5Tex[] = dgAmmoDigit5Tex; + +#define dgAmmoDigit6Tex "__OTR__textures/parameter_static/gAmmoDigit6Tex" +static const ALIGN_ASSET(2) char gAmmoDigit6Tex[] = dgAmmoDigit6Tex; + +#define dgAmmoDigit7Tex "__OTR__textures/parameter_static/gAmmoDigit7Tex" +static const ALIGN_ASSET(2) char gAmmoDigit7Tex[] = dgAmmoDigit7Tex; + +#define dgAmmoDigit8Tex "__OTR__textures/parameter_static/gAmmoDigit8Tex" +static const ALIGN_ASSET(2) char gAmmoDigit8Tex[] = dgAmmoDigit8Tex; + +#define dgAmmoDigit9Tex "__OTR__textures/parameter_static/gAmmoDigit9Tex" +static const ALIGN_ASSET(2) char gAmmoDigit9Tex[] = dgAmmoDigit9Tex; + +#define dgUnusedAmmoDigitHalfTex "__OTR__textures/parameter_static/gUnusedAmmoDigitHalfTex" +static const ALIGN_ASSET(2) char gUnusedAmmoDigitHalfTex[] = dgUnusedAmmoDigitHalfTex; + +#define dgMagicMeterEndTex "__OTR__textures/parameter_static/gMagicMeterEndTex" +static const ALIGN_ASSET(2) char gMagicMeterEndTex[] = dgMagicMeterEndTex; + +#define dgMagicMeterMidTex "__OTR__textures/parameter_static/gMagicMeterMidTex" +static const ALIGN_ASSET(2) char gMagicMeterMidTex[] = dgMagicMeterMidTex; + +#define dgMagicMeterFillTex "__OTR__textures/parameter_static/gMagicMeterFillTex" +static const ALIGN_ASSET(2) char gMagicMeterFillTex[] = dgMagicMeterFillTex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_01.h b/soh/assets/textures/place_title_cards/g_pn_01.h index edbb51422..6c05796d0 100644 --- a/soh/assets/textures/place_title_cards/g_pn_01.h +++ b/soh/assets/textures/place_title_cards/g_pn_01.h @@ -1,23 +1,12 @@ #pragma once -#define dgForestTempleTitleCardENGTex "__OTR__textures/g_pn_01/gForestTempleTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleTitleCardENGTex[] = dgForestTempleTitleCardENGTex; -#else -static const char gForestTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgForestTempleTitleCardENGTex; -#endif - -#define dgForestTempleTitleCardGERTex "__OTR__textures/g_pn_01/gForestTempleTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleTitleCardGERTex[] = dgForestTempleTitleCardGERTex; -#else -static const char gForestTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgForestTempleTitleCardGERTex; -#endif - -#define dgForestTempleTitleCardFRATex "__OTR__textures/g_pn_01/gForestTempleTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gForestTempleTitleCardFRATex[] = dgForestTempleTitleCardFRATex; -#else -static const char gForestTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgForestTempleTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgForestTempleTitleCardENGTex "__OTR__textures/g_pn_01/gForestTempleTitleCardENGTex" +static const ALIGN_ASSET(2) char gForestTempleTitleCardENGTex[] = dgForestTempleTitleCardENGTex; + +#define dgForestTempleTitleCardGERTex "__OTR__textures/g_pn_01/gForestTempleTitleCardGERTex" +static const ALIGN_ASSET(2) char gForestTempleTitleCardGERTex[] = dgForestTempleTitleCardGERTex; + +#define dgForestTempleTitleCardFRATex "__OTR__textures/g_pn_01/gForestTempleTitleCardFRATex" +static const ALIGN_ASSET(2) char gForestTempleTitleCardFRATex[] = dgForestTempleTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_02.h b/soh/assets/textures/place_title_cards/g_pn_02.h index b0a21336d..87d4d061f 100644 --- a/soh/assets/textures/place_title_cards/g_pn_02.h +++ b/soh/assets/textures/place_title_cards/g_pn_02.h @@ -1,23 +1,12 @@ #pragma once -#define dgShadowTempleTitleCardENGTex "__OTR__textures/g_pn_02/gShadowTempleTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleTitleCardENGTex[] = dgShadowTempleTitleCardENGTex; -#else -static const char gShadowTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgShadowTempleTitleCardENGTex; -#endif - -#define dgShadowTempleTitleCardGERTex "__OTR__textures/g_pn_02/gShadowTempleTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleTitleCardGERTex[] = dgShadowTempleTitleCardGERTex; -#else -static const char gShadowTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgShadowTempleTitleCardGERTex; -#endif - -#define dgShadowTempleTitleCardFRATex "__OTR__textures/g_pn_02/gShadowTempleTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShadowTempleTitleCardFRATex[] = dgShadowTempleTitleCardFRATex; -#else -static const char gShadowTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgShadowTempleTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgShadowTempleTitleCardENGTex "__OTR__textures/g_pn_02/gShadowTempleTitleCardENGTex" +static const ALIGN_ASSET(2) char gShadowTempleTitleCardENGTex[] = dgShadowTempleTitleCardENGTex; + +#define dgShadowTempleTitleCardGERTex "__OTR__textures/g_pn_02/gShadowTempleTitleCardGERTex" +static const ALIGN_ASSET(2) char gShadowTempleTitleCardGERTex[] = dgShadowTempleTitleCardGERTex; + +#define dgShadowTempleTitleCardFRATex "__OTR__textures/g_pn_02/gShadowTempleTitleCardFRATex" +static const ALIGN_ASSET(2) char gShadowTempleTitleCardFRATex[] = dgShadowTempleTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_03.h b/soh/assets/textures/place_title_cards/g_pn_03.h index 47aff1bbc..8e9f39ada 100644 --- a/soh/assets/textures/place_title_cards/g_pn_03.h +++ b/soh/assets/textures/place_title_cards/g_pn_03.h @@ -1,23 +1,12 @@ #pragma once -#define dgFireTempleTitleCardENGTex "__OTR__textures/g_pn_03/gFireTempleTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleTitleCardENGTex[] = dgFireTempleTitleCardENGTex; -#else -static const char gFireTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgFireTempleTitleCardENGTex; -#endif - -#define dgFireTempleTitleCardGERTex "__OTR__textures/g_pn_03/gFireTempleTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleTitleCardGERTex[] = dgFireTempleTitleCardGERTex; -#else -static const char gFireTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgFireTempleTitleCardGERTex; -#endif - -#define dgFireTempleTitleCardFRATex "__OTR__textures/g_pn_03/gFireTempleTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFireTempleTitleCardFRATex[] = dgFireTempleTitleCardFRATex; -#else -static const char gFireTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgFireTempleTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgFireTempleTitleCardENGTex "__OTR__textures/g_pn_03/gFireTempleTitleCardENGTex" +static const ALIGN_ASSET(2) char gFireTempleTitleCardENGTex[] = dgFireTempleTitleCardENGTex; + +#define dgFireTempleTitleCardGERTex "__OTR__textures/g_pn_03/gFireTempleTitleCardGERTex" +static const ALIGN_ASSET(2) char gFireTempleTitleCardGERTex[] = dgFireTempleTitleCardGERTex; + +#define dgFireTempleTitleCardFRATex "__OTR__textures/g_pn_03/gFireTempleTitleCardFRATex" +static const ALIGN_ASSET(2) char gFireTempleTitleCardFRATex[] = dgFireTempleTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_04.h b/soh/assets/textures/place_title_cards/g_pn_04.h index c28e610c7..f5652b8ed 100644 --- a/soh/assets/textures/place_title_cards/g_pn_04.h +++ b/soh/assets/textures/place_title_cards/g_pn_04.h @@ -1,23 +1,12 @@ #pragma once -#define dgWaterTempleTitleCardENGTex "__OTR__textures/g_pn_04/gWaterTempleTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleTitleCardENGTex[] = dgWaterTempleTitleCardENGTex; -#else -static const char gWaterTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgWaterTempleTitleCardENGTex; -#endif - -#define dgWaterTempleTitleCardGERTex "__OTR__textures/g_pn_04/gWaterTempleTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleTitleCardGERTex[] = dgWaterTempleTitleCardGERTex; -#else -static const char gWaterTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgWaterTempleTitleCardGERTex; -#endif - -#define dgWaterTempleTitleCardFRATex "__OTR__textures/g_pn_04/gWaterTempleTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gWaterTempleTitleCardFRATex[] = dgWaterTempleTitleCardFRATex; -#else -static const char gWaterTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgWaterTempleTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgWaterTempleTitleCardENGTex "__OTR__textures/g_pn_04/gWaterTempleTitleCardENGTex" +static const ALIGN_ASSET(2) char gWaterTempleTitleCardENGTex[] = dgWaterTempleTitleCardENGTex; + +#define dgWaterTempleTitleCardGERTex "__OTR__textures/g_pn_04/gWaterTempleTitleCardGERTex" +static const ALIGN_ASSET(2) char gWaterTempleTitleCardGERTex[] = dgWaterTempleTitleCardGERTex; + +#define dgWaterTempleTitleCardFRATex "__OTR__textures/g_pn_04/gWaterTempleTitleCardFRATex" +static const ALIGN_ASSET(2) char gWaterTempleTitleCardFRATex[] = dgWaterTempleTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_05.h b/soh/assets/textures/place_title_cards/g_pn_05.h index e1977fa6e..a4e7d31b1 100644 --- a/soh/assets/textures/place_title_cards/g_pn_05.h +++ b/soh/assets/textures/place_title_cards/g_pn_05.h @@ -1,23 +1,12 @@ #pragma once -#define dgSpiritTempleTitleCardENGTex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleTitleCardENGTex[] = dgSpiritTempleTitleCardENGTex; -#else -static const char gSpiritTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgSpiritTempleTitleCardENGTex; -#endif - -#define dgSpiritTempleTitleCardGERTex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleTitleCardGERTex[] = dgSpiritTempleTitleCardGERTex; -#else -static const char gSpiritTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgSpiritTempleTitleCardGERTex; -#endif - -#define dgSpiritTempleTitleCardFRATex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSpiritTempleTitleCardFRATex[] = dgSpiritTempleTitleCardFRATex; -#else -static const char gSpiritTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgSpiritTempleTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgSpiritTempleTitleCardENGTex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardENGTex" +static const ALIGN_ASSET(2) char gSpiritTempleTitleCardENGTex[] = dgSpiritTempleTitleCardENGTex; + +#define dgSpiritTempleTitleCardGERTex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardGERTex" +static const ALIGN_ASSET(2) char gSpiritTempleTitleCardGERTex[] = dgSpiritTempleTitleCardGERTex; + +#define dgSpiritTempleTitleCardFRATex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardFRATex" +static const ALIGN_ASSET(2) char gSpiritTempleTitleCardFRATex[] = dgSpiritTempleTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_06.h b/soh/assets/textures/place_title_cards/g_pn_06.h index 874fa2610..68155125f 100644 --- a/soh/assets/textures/place_title_cards/g_pn_06.h +++ b/soh/assets/textures/place_title_cards/g_pn_06.h @@ -1,23 +1,12 @@ #pragma once -#define dgDekuTreeTitleCardENGTex "__OTR__textures/g_pn_06/gDekuTreeTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeTitleCardENGTex[] = dgDekuTreeTitleCardENGTex; -#else -static const char gDekuTreeTitleCardENGTex[] __attribute__((aligned (2))) = dgDekuTreeTitleCardENGTex; -#endif - -#define dgDekuTreeTitleCardGERTex "__OTR__textures/g_pn_06/gDekuTreeTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeTitleCardGERTex[] = dgDekuTreeTitleCardGERTex; -#else -static const char gDekuTreeTitleCardGERTex[] __attribute__((aligned (2))) = dgDekuTreeTitleCardGERTex; -#endif - -#define dgDekuTreeTitleCardFRATex "__OTR__textures/g_pn_06/gDekuTreeTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDekuTreeTitleCardFRATex[] = dgDekuTreeTitleCardFRATex; -#else -static const char gDekuTreeTitleCardFRATex[] __attribute__((aligned (2))) = dgDekuTreeTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgDekuTreeTitleCardENGTex "__OTR__textures/g_pn_06/gDekuTreeTitleCardENGTex" +static const ALIGN_ASSET(2) char gDekuTreeTitleCardENGTex[] = dgDekuTreeTitleCardENGTex; + +#define dgDekuTreeTitleCardGERTex "__OTR__textures/g_pn_06/gDekuTreeTitleCardGERTex" +static const ALIGN_ASSET(2) char gDekuTreeTitleCardGERTex[] = dgDekuTreeTitleCardGERTex; + +#define dgDekuTreeTitleCardFRATex "__OTR__textures/g_pn_06/gDekuTreeTitleCardFRATex" +static const ALIGN_ASSET(2) char gDekuTreeTitleCardFRATex[] = dgDekuTreeTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_07.h b/soh/assets/textures/place_title_cards/g_pn_07.h index b7e0ef19c..70fdf6c51 100644 --- a/soh/assets/textures/place_title_cards/g_pn_07.h +++ b/soh/assets/textures/place_title_cards/g_pn_07.h @@ -1,23 +1,12 @@ #pragma once -#define dgJabuJabuTitleCardENGTex "__OTR__textures/g_pn_07/gJabuJabuTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuTitleCardENGTex[] = dgJabuJabuTitleCardENGTex; -#else -static const char gJabuJabuTitleCardENGTex[] __attribute__((aligned (2))) = dgJabuJabuTitleCardENGTex; -#endif - -#define dgJabuJabuTitleCardGERTex "__OTR__textures/g_pn_07/gJabuJabuTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuTitleCardGERTex[] = dgJabuJabuTitleCardGERTex; -#else -static const char gJabuJabuTitleCardGERTex[] __attribute__((aligned (2))) = dgJabuJabuTitleCardGERTex; -#endif - -#define dgJabuJabuTitleCardFRATex "__OTR__textures/g_pn_07/gJabuJabuTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gJabuJabuTitleCardFRATex[] = dgJabuJabuTitleCardFRATex; -#else -static const char gJabuJabuTitleCardFRATex[] __attribute__((aligned (2))) = dgJabuJabuTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgJabuJabuTitleCardENGTex "__OTR__textures/g_pn_07/gJabuJabuTitleCardENGTex" +static const ALIGN_ASSET(2) char gJabuJabuTitleCardENGTex[] = dgJabuJabuTitleCardENGTex; + +#define dgJabuJabuTitleCardGERTex "__OTR__textures/g_pn_07/gJabuJabuTitleCardGERTex" +static const ALIGN_ASSET(2) char gJabuJabuTitleCardGERTex[] = dgJabuJabuTitleCardGERTex; + +#define dgJabuJabuTitleCardFRATex "__OTR__textures/g_pn_07/gJabuJabuTitleCardFRATex" +static const ALIGN_ASSET(2) char gJabuJabuTitleCardFRATex[] = dgJabuJabuTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_08.h b/soh/assets/textures/place_title_cards/g_pn_08.h index 3ddadfc8d..b649c3f1a 100644 --- a/soh/assets/textures/place_title_cards/g_pn_08.h +++ b/soh/assets/textures/place_title_cards/g_pn_08.h @@ -1,23 +1,12 @@ #pragma once -#define dgDodongosCavernTitleCardENGTex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernTitleCardENGTex[] = dgDodongosCavernTitleCardENGTex; -#else -static const char gDodongosCavernTitleCardENGTex[] __attribute__((aligned (2))) = dgDodongosCavernTitleCardENGTex; -#endif - -#define dgDodongosCavernTitleCardGERTex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernTitleCardGERTex[] = dgDodongosCavernTitleCardGERTex; -#else -static const char gDodongosCavernTitleCardGERTex[] __attribute__((aligned (2))) = dgDodongosCavernTitleCardGERTex; -#endif - -#define dgDodongosCavernTitleCardFRATex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDodongosCavernTitleCardFRATex[] = dgDodongosCavernTitleCardFRATex; -#else -static const char gDodongosCavernTitleCardFRATex[] __attribute__((aligned (2))) = dgDodongosCavernTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgDodongosCavernTitleCardENGTex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardENGTex" +static const ALIGN_ASSET(2) char gDodongosCavernTitleCardENGTex[] = dgDodongosCavernTitleCardENGTex; + +#define dgDodongosCavernTitleCardGERTex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardGERTex" +static const ALIGN_ASSET(2) char gDodongosCavernTitleCardGERTex[] = dgDodongosCavernTitleCardGERTex; + +#define dgDodongosCavernTitleCardFRATex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardFRATex" +static const ALIGN_ASSET(2) char gDodongosCavernTitleCardFRATex[] = dgDodongosCavernTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_09.h b/soh/assets/textures/place_title_cards/g_pn_09.h index 5ff41971a..b166b6b14 100644 --- a/soh/assets/textures/place_title_cards/g_pn_09.h +++ b/soh/assets/textures/place_title_cards/g_pn_09.h @@ -1,23 +1,12 @@ #pragma once -#define dgInsideGanonsCastleTitleCardENGTex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gInsideGanonsCastleTitleCardENGTex[] = dgInsideGanonsCastleTitleCardENGTex; -#else -static const char gInsideGanonsCastleTitleCardENGTex[] __attribute__((aligned (2))) = dgInsideGanonsCastleTitleCardENGTex; -#endif - -#define dgInsideGanonsCastleTitleCardGERTex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gInsideGanonsCastleTitleCardGERTex[] = dgInsideGanonsCastleTitleCardGERTex; -#else -static const char gInsideGanonsCastleTitleCardGERTex[] __attribute__((aligned (2))) = dgInsideGanonsCastleTitleCardGERTex; -#endif - -#define dgInsideGanonsCastleTitleCardFRATex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gInsideGanonsCastleTitleCardFRATex[] = dgInsideGanonsCastleTitleCardFRATex; -#else -static const char gInsideGanonsCastleTitleCardFRATex[] __attribute__((aligned (2))) = dgInsideGanonsCastleTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgInsideGanonsCastleTitleCardENGTex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardENGTex" +static const ALIGN_ASSET(2) char gInsideGanonsCastleTitleCardENGTex[] = dgInsideGanonsCastleTitleCardENGTex; + +#define dgInsideGanonsCastleTitleCardGERTex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardGERTex" +static const ALIGN_ASSET(2) char gInsideGanonsCastleTitleCardGERTex[] = dgInsideGanonsCastleTitleCardGERTex; + +#define dgInsideGanonsCastleTitleCardFRATex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardFRATex" +static const ALIGN_ASSET(2) char gInsideGanonsCastleTitleCardFRATex[] = dgInsideGanonsCastleTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_10.h b/soh/assets/textures/place_title_cards/g_pn_10.h index 0a8fa2541..077104377 100644 --- a/soh/assets/textures/place_title_cards/g_pn_10.h +++ b/soh/assets/textures/place_title_cards/g_pn_10.h @@ -1,23 +1,12 @@ #pragma once -#define dgIceCavernTitleCardENGTex "__OTR__textures/g_pn_10/gIceCavernTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernTitleCardENGTex[] = dgIceCavernTitleCardENGTex; -#else -static const char gIceCavernTitleCardENGTex[] __attribute__((aligned (2))) = dgIceCavernTitleCardENGTex; -#endif - -#define dgIceCavernTitleCardGERTex "__OTR__textures/g_pn_10/gIceCavernTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernTitleCardGERTex[] = dgIceCavernTitleCardGERTex; -#else -static const char gIceCavernTitleCardGERTex[] __attribute__((aligned (2))) = dgIceCavernTitleCardGERTex; -#endif - -#define dgIceCavernTitleCardFRATex "__OTR__textures/g_pn_10/gIceCavernTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gIceCavernTitleCardFRATex[] = dgIceCavernTitleCardFRATex; -#else -static const char gIceCavernTitleCardFRATex[] __attribute__((aligned (2))) = dgIceCavernTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgIceCavernTitleCardENGTex "__OTR__textures/g_pn_10/gIceCavernTitleCardENGTex" +static const ALIGN_ASSET(2) char gIceCavernTitleCardENGTex[] = dgIceCavernTitleCardENGTex; + +#define dgIceCavernTitleCardGERTex "__OTR__textures/g_pn_10/gIceCavernTitleCardGERTex" +static const ALIGN_ASSET(2) char gIceCavernTitleCardGERTex[] = dgIceCavernTitleCardGERTex; + +#define dgIceCavernTitleCardFRATex "__OTR__textures/g_pn_10/gIceCavernTitleCardFRATex" +static const ALIGN_ASSET(2) char gIceCavernTitleCardFRATex[] = dgIceCavernTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_11.h b/soh/assets/textures/place_title_cards/g_pn_11.h index 682696155..2bc0021e7 100644 --- a/soh/assets/textures/place_title_cards/g_pn_11.h +++ b/soh/assets/textures/place_title_cards/g_pn_11.h @@ -1,23 +1,12 @@ #pragma once -#define dgGERudoTrainingGroundTitleCardENGTex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudoTrainingGroundTitleCardENGTex[] = dgGERudoTrainingGroundTitleCardENGTex; -#else -static const char gGERudoTrainingGroundTitleCardENGTex[] __attribute__((aligned (2))) = dgGERudoTrainingGroundTitleCardENGTex; -#endif - -#define dgGERudoTrainingGroundTitleCardGERTex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudoTrainingGroundTitleCardGERTex[] = dgGERudoTrainingGroundTitleCardGERTex; -#else -static const char gGERudoTrainingGroundTitleCardGERTex[] __attribute__((aligned (2))) = dgGERudoTrainingGroundTitleCardGERTex; -#endif - -#define dgGERudoTrainingGroundTitleCardFRATex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudoTrainingGroundTitleCardFRATex[] = dgGERudoTrainingGroundTitleCardFRATex; -#else -static const char gGERudoTrainingGroundTitleCardFRATex[] __attribute__((aligned (2))) = dgGERudoTrainingGroundTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGERudoTrainingGroundTitleCardENGTex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardENGTex" +static const ALIGN_ASSET(2) char gGERudoTrainingGroundTitleCardENGTex[] = dgGERudoTrainingGroundTitleCardENGTex; + +#define dgGERudoTrainingGroundTitleCardGERTex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardGERTex" +static const ALIGN_ASSET(2) char gGERudoTrainingGroundTitleCardGERTex[] = dgGERudoTrainingGroundTitleCardGERTex; + +#define dgGERudoTrainingGroundTitleCardFRATex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardFRATex" +static const ALIGN_ASSET(2) char gGERudoTrainingGroundTitleCardFRATex[] = dgGERudoTrainingGroundTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_12.h b/soh/assets/textures/place_title_cards/g_pn_12.h index 1e5ededa5..93bae4cad 100644 --- a/soh/assets/textures/place_title_cards/g_pn_12.h +++ b/soh/assets/textures/place_title_cards/g_pn_12.h @@ -1,23 +1,12 @@ #pragma once -#define dgCastleCourtyardTitleCardENGTex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCastleCourtyardTitleCardENGTex[] = dgCastleCourtyardTitleCardENGTex; -#else -static const char gCastleCourtyardTitleCardENGTex[] __attribute__((aligned (2))) = dgCastleCourtyardTitleCardENGTex; -#endif - -#define dgCastleCourtyardTitleCardGERTex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCastleCourtyardTitleCardGERTex[] = dgCastleCourtyardTitleCardGERTex; -#else -static const char gCastleCourtyardTitleCardGERTex[] __attribute__((aligned (2))) = dgCastleCourtyardTitleCardGERTex; -#endif - -#define dgCastleCourtyardTitleCardFRATex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gCastleCourtyardTitleCardFRATex[] = dgCastleCourtyardTitleCardFRATex; -#else -static const char gCastleCourtyardTitleCardFRATex[] __attribute__((aligned (2))) = dgCastleCourtyardTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgCastleCourtyardTitleCardENGTex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardENGTex" +static const ALIGN_ASSET(2) char gCastleCourtyardTitleCardENGTex[] = dgCastleCourtyardTitleCardENGTex; + +#define dgCastleCourtyardTitleCardGERTex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardGERTex" +static const ALIGN_ASSET(2) char gCastleCourtyardTitleCardGERTex[] = dgCastleCourtyardTitleCardGERTex; + +#define dgCastleCourtyardTitleCardFRATex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardFRATex" +static const ALIGN_ASSET(2) char gCastleCourtyardTitleCardFRATex[] = dgCastleCourtyardTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_13.h b/soh/assets/textures/place_title_cards/g_pn_13.h index ae6f8bde9..428154db0 100644 --- a/soh/assets/textures/place_title_cards/g_pn_13.h +++ b/soh/assets/textures/place_title_cards/g_pn_13.h @@ -1,23 +1,12 @@ #pragma once -#define dgGreatFairysFountainTitleCardENGTex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairysFountainTitleCardENGTex[] = dgGreatFairysFountainTitleCardENGTex; -#else -static const char gGreatFairysFountainTitleCardENGTex[] __attribute__((aligned (2))) = dgGreatFairysFountainTitleCardENGTex; -#endif - -#define dgGreatFairysFountainTitleCardGERTex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairysFountainTitleCardGERTex[] = dgGreatFairysFountainTitleCardGERTex; -#else -static const char gGreatFairysFountainTitleCardGERTex[] __attribute__((aligned (2))) = dgGreatFairysFountainTitleCardGERTex; -#endif - -#define dgGreatFairysFountainTitleCardFRATex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGreatFairysFountainTitleCardFRATex[] = dgGreatFairysFountainTitleCardFRATex; -#else -static const char gGreatFairysFountainTitleCardFRATex[] __attribute__((aligned (2))) = dgGreatFairysFountainTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGreatFairysFountainTitleCardENGTex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardENGTex" +static const ALIGN_ASSET(2) char gGreatFairysFountainTitleCardENGTex[] = dgGreatFairysFountainTitleCardENGTex; + +#define dgGreatFairysFountainTitleCardGERTex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardGERTex" +static const ALIGN_ASSET(2) char gGreatFairysFountainTitleCardGERTex[] = dgGreatFairysFountainTitleCardGERTex; + +#define dgGreatFairysFountainTitleCardFRATex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardFRATex" +static const ALIGN_ASSET(2) char gGreatFairysFountainTitleCardFRATex[] = dgGreatFairysFountainTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_14.h b/soh/assets/textures/place_title_cards/g_pn_14.h index 3412da3a4..b8f7392ee 100644 --- a/soh/assets/textures/place_title_cards/g_pn_14.h +++ b/soh/assets/textures/place_title_cards/g_pn_14.h @@ -1,23 +1,12 @@ #pragma once -#define dgChamberOfTheSagesTitleCardENGTex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChamberOfTheSagesTitleCardENGTex[] = dgChamberOfTheSagesTitleCardENGTex; -#else -static const char gChamberOfTheSagesTitleCardENGTex[] __attribute__((aligned (2))) = dgChamberOfTheSagesTitleCardENGTex; -#endif - -#define dgChamberOfTheSagesTitleCardGERTex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChamberOfTheSagesTitleCardGERTex[] = dgChamberOfTheSagesTitleCardGERTex; -#else -static const char gChamberOfTheSagesTitleCardGERTex[] __attribute__((aligned (2))) = dgChamberOfTheSagesTitleCardGERTex; -#endif - -#define dgChamberOfTheSagesTitleCardFRATex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gChamberOfTheSagesTitleCardFRATex[] = dgChamberOfTheSagesTitleCardFRATex; -#else -static const char gChamberOfTheSagesTitleCardFRATex[] __attribute__((aligned (2))) = dgChamberOfTheSagesTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgChamberOfTheSagesTitleCardENGTex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardENGTex" +static const ALIGN_ASSET(2) char gChamberOfTheSagesTitleCardENGTex[] = dgChamberOfTheSagesTitleCardENGTex; + +#define dgChamberOfTheSagesTitleCardGERTex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardGERTex" +static const ALIGN_ASSET(2) char gChamberOfTheSagesTitleCardGERTex[] = dgChamberOfTheSagesTitleCardGERTex; + +#define dgChamberOfTheSagesTitleCardFRATex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardFRATex" +static const ALIGN_ASSET(2) char gChamberOfTheSagesTitleCardFRATex[] = dgChamberOfTheSagesTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_15.h b/soh/assets/textures/place_title_cards/g_pn_15.h index 23452a851..f145ed98d 100644 --- a/soh/assets/textures/place_title_cards/g_pn_15.h +++ b/soh/assets/textures/place_title_cards/g_pn_15.h @@ -1,23 +1,12 @@ #pragma once -#define dgShootingGalleryTitleCardENGTex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShootingGalleryTitleCardENGTex[] = dgShootingGalleryTitleCardENGTex; -#else -static const char gShootingGalleryTitleCardENGTex[] __attribute__((aligned (2))) = dgShootingGalleryTitleCardENGTex; -#endif - -#define dgShootingGalleryTitleCardGERTex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShootingGalleryTitleCardGERTex[] = dgShootingGalleryTitleCardGERTex; -#else -static const char gShootingGalleryTitleCardGERTex[] __attribute__((aligned (2))) = dgShootingGalleryTitleCardGERTex; -#endif - -#define dgShootingGalleryTitleCardFRATex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gShootingGalleryTitleCardFRATex[] = dgShootingGalleryTitleCardFRATex; -#else -static const char gShootingGalleryTitleCardFRATex[] __attribute__((aligned (2))) = dgShootingGalleryTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgShootingGalleryTitleCardENGTex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardENGTex" +static const ALIGN_ASSET(2) char gShootingGalleryTitleCardENGTex[] = dgShootingGalleryTitleCardENGTex; + +#define dgShootingGalleryTitleCardGERTex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardGERTex" +static const ALIGN_ASSET(2) char gShootingGalleryTitleCardGERTex[] = dgShootingGalleryTitleCardGERTex; + +#define dgShootingGalleryTitleCardFRATex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardFRATex" +static const ALIGN_ASSET(2) char gShootingGalleryTitleCardFRATex[] = dgShootingGalleryTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_16.h b/soh/assets/textures/place_title_cards/g_pn_16.h index edddef9b6..24919ba74 100644 --- a/soh/assets/textures/place_title_cards/g_pn_16.h +++ b/soh/assets/textures/place_title_cards/g_pn_16.h @@ -1,23 +1,12 @@ #pragma once -#define dgTempleOfTimeTitleCardENGTex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTempleOfTimeTitleCardENGTex[] = dgTempleOfTimeTitleCardENGTex; -#else -static const char gTempleOfTimeTitleCardENGTex[] __attribute__((aligned (2))) = dgTempleOfTimeTitleCardENGTex; -#endif - -#define dgTempleOfTimeTitleCardGERTex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTempleOfTimeTitleCardGERTex[] = dgTempleOfTimeTitleCardGERTex; -#else -static const char gTempleOfTimeTitleCardGERTex[] __attribute__((aligned (2))) = dgTempleOfTimeTitleCardGERTex; -#endif - -#define dgTempleOfTimeTitleCardFRATex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTempleOfTimeTitleCardFRATex[] = dgTempleOfTimeTitleCardFRATex; -#else -static const char gTempleOfTimeTitleCardFRATex[] __attribute__((aligned (2))) = dgTempleOfTimeTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgTempleOfTimeTitleCardENGTex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardENGTex" +static const ALIGN_ASSET(2) char gTempleOfTimeTitleCardENGTex[] = dgTempleOfTimeTitleCardENGTex; + +#define dgTempleOfTimeTitleCardGERTex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardGERTex" +static const ALIGN_ASSET(2) char gTempleOfTimeTitleCardGERTex[] = dgTempleOfTimeTitleCardGERTex; + +#define dgTempleOfTimeTitleCardFRATex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardFRATex" +static const ALIGN_ASSET(2) char gTempleOfTimeTitleCardFRATex[] = dgTempleOfTimeTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_17.h b/soh/assets/textures/place_title_cards/g_pn_17.h index c9ec76f96..e0d296397 100644 --- a/soh/assets/textures/place_title_cards/g_pn_17.h +++ b/soh/assets/textures/place_title_cards/g_pn_17.h @@ -1,23 +1,12 @@ #pragma once -#define dgMarketTitleCardENGTex "__OTR__textures/g_pn_17/gMarketTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketTitleCardENGTex[] = dgMarketTitleCardENGTex; -#else -static const char gMarketTitleCardENGTex[] __attribute__((aligned (2))) = dgMarketTitleCardENGTex; -#endif - -#define dgMarketTitleCardGERTex "__OTR__textures/g_pn_17/gMarketTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketTitleCardGERTex[] = dgMarketTitleCardGERTex; -#else -static const char gMarketTitleCardGERTex[] __attribute__((aligned (2))) = dgMarketTitleCardGERTex; -#endif - -#define dgMarketTitleCardFRATex "__OTR__textures/g_pn_17/gMarketTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gMarketTitleCardFRATex[] = dgMarketTitleCardFRATex; -#else -static const char gMarketTitleCardFRATex[] __attribute__((aligned (2))) = dgMarketTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgMarketTitleCardENGTex "__OTR__textures/g_pn_17/gMarketTitleCardENGTex" +static const ALIGN_ASSET(2) char gMarketTitleCardENGTex[] = dgMarketTitleCardENGTex; + +#define dgMarketTitleCardGERTex "__OTR__textures/g_pn_17/gMarketTitleCardGERTex" +static const ALIGN_ASSET(2) char gMarketTitleCardGERTex[] = dgMarketTitleCardGERTex; + +#define dgMarketTitleCardFRATex "__OTR__textures/g_pn_17/gMarketTitleCardFRATex" +static const ALIGN_ASSET(2) char gMarketTitleCardFRATex[] = dgMarketTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_18.h b/soh/assets/textures/place_title_cards/g_pn_18.h index 6dba29547..67e1f2a07 100644 --- a/soh/assets/textures/place_title_cards/g_pn_18.h +++ b/soh/assets/textures/place_title_cards/g_pn_18.h @@ -1,23 +1,12 @@ #pragma once -#define dgBackAlleyTitleCardENGTex "__OTR__textures/g_pn_18/gBackAlleyTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyTitleCardENGTex[] = dgBackAlleyTitleCardENGTex; -#else -static const char gBackAlleyTitleCardENGTex[] __attribute__((aligned (2))) = dgBackAlleyTitleCardENGTex; -#endif - -#define dgBackAlleyTitleCardGERTex "__OTR__textures/g_pn_18/gBackAlleyTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyTitleCardGERTex[] = dgBackAlleyTitleCardGERTex; -#else -static const char gBackAlleyTitleCardGERTex[] __attribute__((aligned (2))) = dgBackAlleyTitleCardGERTex; -#endif - -#define dgBackAlleyTitleCardFRATex "__OTR__textures/g_pn_18/gBackAlleyTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBackAlleyTitleCardFRATex[] = dgBackAlleyTitleCardFRATex; -#else -static const char gBackAlleyTitleCardFRATex[] __attribute__((aligned (2))) = dgBackAlleyTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgBackAlleyTitleCardENGTex "__OTR__textures/g_pn_18/gBackAlleyTitleCardENGTex" +static const ALIGN_ASSET(2) char gBackAlleyTitleCardENGTex[] = dgBackAlleyTitleCardENGTex; + +#define dgBackAlleyTitleCardGERTex "__OTR__textures/g_pn_18/gBackAlleyTitleCardGERTex" +static const ALIGN_ASSET(2) char gBackAlleyTitleCardGERTex[] = dgBackAlleyTitleCardGERTex; + +#define dgBackAlleyTitleCardFRATex "__OTR__textures/g_pn_18/gBackAlleyTitleCardFRATex" +static const ALIGN_ASSET(2) char gBackAlleyTitleCardFRATex[] = dgBackAlleyTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_19.h b/soh/assets/textures/place_title_cards/g_pn_19.h index edae59b6f..0d8d51207 100644 --- a/soh/assets/textures/place_title_cards/g_pn_19.h +++ b/soh/assets/textures/place_title_cards/g_pn_19.h @@ -1,23 +1,12 @@ #pragma once -#define dgKokiriShopTitleCardENGTex "__OTR__textures/g_pn_19/gKokiriShopTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopTitleCardENGTex[] = dgKokiriShopTitleCardENGTex; -#else -static const char gKokiriShopTitleCardENGTex[] __attribute__((aligned (2))) = dgKokiriShopTitleCardENGTex; -#endif - -#define dgKokiriShopTitleCardGERTex "__OTR__textures/g_pn_19/gKokiriShopTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopTitleCardGERTex[] = dgKokiriShopTitleCardGERTex; -#else -static const char gKokiriShopTitleCardGERTex[] __attribute__((aligned (2))) = dgKokiriShopTitleCardGERTex; -#endif - -#define dgKokiriShopTitleCardFRATex "__OTR__textures/g_pn_19/gKokiriShopTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriShopTitleCardFRATex[] = dgKokiriShopTitleCardFRATex; -#else -static const char gKokiriShopTitleCardFRATex[] __attribute__((aligned (2))) = dgKokiriShopTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgKokiriShopTitleCardENGTex "__OTR__textures/g_pn_19/gKokiriShopTitleCardENGTex" +static const ALIGN_ASSET(2) char gKokiriShopTitleCardENGTex[] = dgKokiriShopTitleCardENGTex; + +#define dgKokiriShopTitleCardGERTex "__OTR__textures/g_pn_19/gKokiriShopTitleCardGERTex" +static const ALIGN_ASSET(2) char gKokiriShopTitleCardGERTex[] = dgKokiriShopTitleCardGERTex; + +#define dgKokiriShopTitleCardFRATex "__OTR__textures/g_pn_19/gKokiriShopTitleCardFRATex" +static const ALIGN_ASSET(2) char gKokiriShopTitleCardFRATex[] = dgKokiriShopTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_20.h b/soh/assets/textures/place_title_cards/g_pn_20.h index 310d21a9b..be49815de 100644 --- a/soh/assets/textures/place_title_cards/g_pn_20.h +++ b/soh/assets/textures/place_title_cards/g_pn_20.h @@ -1,23 +1,12 @@ #pragma once -#define dgGoronShopTitleCardENGTex "__OTR__textures/g_pn_20/gGoronShopTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronShopTitleCardENGTex[] = dgGoronShopTitleCardENGTex; -#else -static const char gGoronShopTitleCardENGTex[] __attribute__((aligned (2))) = dgGoronShopTitleCardENGTex; -#endif - -#define dgGoronShopTitleCardGERTex "__OTR__textures/g_pn_20/gGoronShopTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronShopTitleCardGERTex[] = dgGoronShopTitleCardGERTex; -#else -static const char gGoronShopTitleCardGERTex[] __attribute__((aligned (2))) = dgGoronShopTitleCardGERTex; -#endif - -#define dgGoronShopTitleCardFRATex "__OTR__textures/g_pn_20/gGoronShopTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronShopTitleCardFRATex[] = dgGoronShopTitleCardFRATex; -#else -static const char gGoronShopTitleCardFRATex[] __attribute__((aligned (2))) = dgGoronShopTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGoronShopTitleCardENGTex "__OTR__textures/g_pn_20/gGoronShopTitleCardENGTex" +static const ALIGN_ASSET(2) char gGoronShopTitleCardENGTex[] = dgGoronShopTitleCardENGTex; + +#define dgGoronShopTitleCardGERTex "__OTR__textures/g_pn_20/gGoronShopTitleCardGERTex" +static const ALIGN_ASSET(2) char gGoronShopTitleCardGERTex[] = dgGoronShopTitleCardGERTex; + +#define dgGoronShopTitleCardFRATex "__OTR__textures/g_pn_20/gGoronShopTitleCardFRATex" +static const ALIGN_ASSET(2) char gGoronShopTitleCardFRATex[] = dgGoronShopTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_21.h b/soh/assets/textures/place_title_cards/g_pn_21.h index bd89ec4a8..4d6eb0cf5 100644 --- a/soh/assets/textures/place_title_cards/g_pn_21.h +++ b/soh/assets/textures/place_title_cards/g_pn_21.h @@ -1,23 +1,12 @@ #pragma once -#define dgZoraShopTitleCardENGTex "__OTR__textures/g_pn_21/gZoraShopTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraShopTitleCardENGTex[] = dgZoraShopTitleCardENGTex; -#else -static const char gZoraShopTitleCardENGTex[] __attribute__((aligned (2))) = dgZoraShopTitleCardENGTex; -#endif - -#define dgZoraShopTitleCardGERTex "__OTR__textures/g_pn_21/gZoraShopTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraShopTitleCardGERTex[] = dgZoraShopTitleCardGERTex; -#else -static const char gZoraShopTitleCardGERTex[] __attribute__((aligned (2))) = dgZoraShopTitleCardGERTex; -#endif - -#define dgZoraShopTitleCardFRATex "__OTR__textures/g_pn_21/gZoraShopTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZoraShopTitleCardFRATex[] = dgZoraShopTitleCardFRATex; -#else -static const char gZoraShopTitleCardFRATex[] __attribute__((aligned (2))) = dgZoraShopTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgZoraShopTitleCardENGTex "__OTR__textures/g_pn_21/gZoraShopTitleCardENGTex" +static const ALIGN_ASSET(2) char gZoraShopTitleCardENGTex[] = dgZoraShopTitleCardENGTex; + +#define dgZoraShopTitleCardGERTex "__OTR__textures/g_pn_21/gZoraShopTitleCardGERTex" +static const ALIGN_ASSET(2) char gZoraShopTitleCardGERTex[] = dgZoraShopTitleCardGERTex; + +#define dgZoraShopTitleCardFRATex "__OTR__textures/g_pn_21/gZoraShopTitleCardFRATex" +static const ALIGN_ASSET(2) char gZoraShopTitleCardFRATex[] = dgZoraShopTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_22.h b/soh/assets/textures/place_title_cards/g_pn_22.h index 25d4bf106..7a68835e8 100644 --- a/soh/assets/textures/place_title_cards/g_pn_22.h +++ b/soh/assets/textures/place_title_cards/g_pn_22.h @@ -1,23 +1,12 @@ #pragma once -#define dgHouseOfSkulltulaTitleCardENGTex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfSkulltulaTitleCardENGTex[] = dgHouseOfSkulltulaTitleCardENGTex; -#else -static const char gHouseOfSkulltulaTitleCardENGTex[] __attribute__((aligned (2))) = dgHouseOfSkulltulaTitleCardENGTex; -#endif - -#define dgHouseOfSkulltulaTitleCardGERTex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfSkulltulaTitleCardGERTex[] = dgHouseOfSkulltulaTitleCardGERTex; -#else -static const char gHouseOfSkulltulaTitleCardGERTex[] __attribute__((aligned (2))) = dgHouseOfSkulltulaTitleCardGERTex; -#endif - -#define dgHouseOfSkulltulaTitleCardFRATex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHouseOfSkulltulaTitleCardFRATex[] = dgHouseOfSkulltulaTitleCardFRATex; -#else -static const char gHouseOfSkulltulaTitleCardFRATex[] __attribute__((aligned (2))) = dgHouseOfSkulltulaTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgHouseOfSkulltulaTitleCardENGTex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardENGTex" +static const ALIGN_ASSET(2) char gHouseOfSkulltulaTitleCardENGTex[] = dgHouseOfSkulltulaTitleCardENGTex; + +#define dgHouseOfSkulltulaTitleCardGERTex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardGERTex" +static const ALIGN_ASSET(2) char gHouseOfSkulltulaTitleCardGERTex[] = dgHouseOfSkulltulaTitleCardGERTex; + +#define dgHouseOfSkulltulaTitleCardFRATex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardFRATex" +static const ALIGN_ASSET(2) char gHouseOfSkulltulaTitleCardFRATex[] = dgHouseOfSkulltulaTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_23.h b/soh/assets/textures/place_title_cards/g_pn_23.h index 5ec289c43..f91cc59bb 100644 --- a/soh/assets/textures/place_title_cards/g_pn_23.h +++ b/soh/assets/textures/place_title_cards/g_pn_23.h @@ -1,23 +1,12 @@ #pragma once -#define dgBazaarTitleCardENGTex "__OTR__textures/g_pn_23/gBazaarTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBazaarTitleCardENGTex[] = dgBazaarTitleCardENGTex; -#else -static const char gBazaarTitleCardENGTex[] __attribute__((aligned (2))) = dgBazaarTitleCardENGTex; -#endif - -#define dgBazaarTitleCardGERTex "__OTR__textures/g_pn_23/gBazaarTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBazaarTitleCardGERTex[] = dgBazaarTitleCardGERTex; -#else -static const char gBazaarTitleCardGERTex[] __attribute__((aligned (2))) = dgBazaarTitleCardGERTex; -#endif - -#define dgBazaarTitleCardFRATex "__OTR__textures/g_pn_23/gBazaarTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBazaarTitleCardFRATex[] = dgBazaarTitleCardFRATex; -#else -static const char gBazaarTitleCardFRATex[] __attribute__((aligned (2))) = dgBazaarTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgBazaarTitleCardENGTex "__OTR__textures/g_pn_23/gBazaarTitleCardENGTex" +static const ALIGN_ASSET(2) char gBazaarTitleCardENGTex[] = dgBazaarTitleCardENGTex; + +#define dgBazaarTitleCardGERTex "__OTR__textures/g_pn_23/gBazaarTitleCardGERTex" +static const ALIGN_ASSET(2) char gBazaarTitleCardGERTex[] = dgBazaarTitleCardGERTex; + +#define dgBazaarTitleCardFRATex "__OTR__textures/g_pn_23/gBazaarTitleCardFRATex" +static const ALIGN_ASSET(2) char gBazaarTitleCardFRATex[] = dgBazaarTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_24.h b/soh/assets/textures/place_title_cards/g_pn_24.h index 9f5426c10..ffede7dc9 100644 --- a/soh/assets/textures/place_title_cards/g_pn_24.h +++ b/soh/assets/textures/place_title_cards/g_pn_24.h @@ -1,23 +1,12 @@ #pragma once -#define dgPotionShopTitleCardENGTex "__OTR__textures/g_pn_24/gPotionShopTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopTitleCardENGTex[] = dgPotionShopTitleCardENGTex; -#else -static const char gPotionShopTitleCardENGTex[] __attribute__((aligned (2))) = dgPotionShopTitleCardENGTex; -#endif - -#define dgPotionShopTitleCardGERTex "__OTR__textures/g_pn_24/gPotionShopTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopTitleCardGERTex[] = dgPotionShopTitleCardGERTex; -#else -static const char gPotionShopTitleCardGERTex[] __attribute__((aligned (2))) = dgPotionShopTitleCardGERTex; -#endif - -#define dgPotionShopTitleCardFRATex "__OTR__textures/g_pn_24/gPotionShopTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gPotionShopTitleCardFRATex[] = dgPotionShopTitleCardFRATex; -#else -static const char gPotionShopTitleCardFRATex[] __attribute__((aligned (2))) = dgPotionShopTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgPotionShopTitleCardENGTex "__OTR__textures/g_pn_24/gPotionShopTitleCardENGTex" +static const ALIGN_ASSET(2) char gPotionShopTitleCardENGTex[] = dgPotionShopTitleCardENGTex; + +#define dgPotionShopTitleCardGERTex "__OTR__textures/g_pn_24/gPotionShopTitleCardGERTex" +static const ALIGN_ASSET(2) char gPotionShopTitleCardGERTex[] = dgPotionShopTitleCardGERTex; + +#define dgPotionShopTitleCardFRATex "__OTR__textures/g_pn_24/gPotionShopTitleCardFRATex" +static const ALIGN_ASSET(2) char gPotionShopTitleCardFRATex[] = dgPotionShopTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_25.h b/soh/assets/textures/place_title_cards/g_pn_25.h index 5784bc248..08b9ddb3d 100644 --- a/soh/assets/textures/place_title_cards/g_pn_25.h +++ b/soh/assets/textures/place_title_cards/g_pn_25.h @@ -1,23 +1,12 @@ #pragma once -#define dgGravekeepersHutTitleCardENGTex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravekeepersHutTitleCardENGTex[] = dgGravekeepersHutTitleCardENGTex; -#else -static const char gGravekeepersHutTitleCardENGTex[] __attribute__((aligned (2))) = dgGravekeepersHutTitleCardENGTex; -#endif - -#define dgGravekeepersHutTitleCardGERTex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravekeepersHutTitleCardGERTex[] = dgGravekeepersHutTitleCardGERTex; -#else -static const char gGravekeepersHutTitleCardGERTex[] __attribute__((aligned (2))) = dgGravekeepersHutTitleCardGERTex; -#endif - -#define dgGravekeepersHutTitleCardFRATex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGravekeepersHutTitleCardFRATex[] = dgGravekeepersHutTitleCardFRATex; -#else -static const char gGravekeepersHutTitleCardFRATex[] __attribute__((aligned (2))) = dgGravekeepersHutTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGravekeepersHutTitleCardENGTex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardENGTex" +static const ALIGN_ASSET(2) char gGravekeepersHutTitleCardENGTex[] = dgGravekeepersHutTitleCardENGTex; + +#define dgGravekeepersHutTitleCardGERTex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardGERTex" +static const ALIGN_ASSET(2) char gGravekeepersHutTitleCardGERTex[] = dgGravekeepersHutTitleCardGERTex; + +#define dgGravekeepersHutTitleCardFRATex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardFRATex" +static const ALIGN_ASSET(2) char gGravekeepersHutTitleCardFRATex[] = dgGravekeepersHutTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_26.h b/soh/assets/textures/place_title_cards/g_pn_26.h index c33ec558a..6c274a2a1 100644 --- a/soh/assets/textures/place_title_cards/g_pn_26.h +++ b/soh/assets/textures/place_title_cards/g_pn_26.h @@ -1,23 +1,12 @@ #pragma once -#define dgLakesideLaboratoryTitleCardENGTex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakesideLaboratoryTitleCardENGTex[] = dgLakesideLaboratoryTitleCardENGTex; -#else -static const char gLakesideLaboratoryTitleCardENGTex[] __attribute__((aligned (2))) = dgLakesideLaboratoryTitleCardENGTex; -#endif - -#define dgLakesideLaboratoryTitleCardGERTex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakesideLaboratoryTitleCardGERTex[] = dgLakesideLaboratoryTitleCardGERTex; -#else -static const char gLakesideLaboratoryTitleCardGERTex[] __attribute__((aligned (2))) = dgLakesideLaboratoryTitleCardGERTex; -#endif - -#define dgLakesideLaboratoryTitleCardFRATex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakesideLaboratoryTitleCardFRATex[] = dgLakesideLaboratoryTitleCardFRATex; -#else -static const char gLakesideLaboratoryTitleCardFRATex[] __attribute__((aligned (2))) = dgLakesideLaboratoryTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgLakesideLaboratoryTitleCardENGTex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardENGTex" +static const ALIGN_ASSET(2) char gLakesideLaboratoryTitleCardENGTex[] = dgLakesideLaboratoryTitleCardENGTex; + +#define dgLakesideLaboratoryTitleCardGERTex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardGERTex" +static const ALIGN_ASSET(2) char gLakesideLaboratoryTitleCardGERTex[] = dgLakesideLaboratoryTitleCardGERTex; + +#define dgLakesideLaboratoryTitleCardFRATex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardFRATex" +static const ALIGN_ASSET(2) char gLakesideLaboratoryTitleCardFRATex[] = dgLakesideLaboratoryTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_27.h b/soh/assets/textures/place_title_cards/g_pn_27.h index 6f529f410..fda1bd4e5 100644 --- a/soh/assets/textures/place_title_cards/g_pn_27.h +++ b/soh/assets/textures/place_title_cards/g_pn_27.h @@ -1,23 +1,12 @@ #pragma once -#define dgHyruleFieldTitleCardENGTex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldTitleCardENGTex[] = dgHyruleFieldTitleCardENGTex; -#else -static const char gHyruleFieldTitleCardENGTex[] __attribute__((aligned (2))) = dgHyruleFieldTitleCardENGTex; -#endif - -#define dgHyruleFieldTitleCardGERTex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldTitleCardGERTex[] = dgHyruleFieldTitleCardGERTex; -#else -static const char gHyruleFieldTitleCardGERTex[] __attribute__((aligned (2))) = dgHyruleFieldTitleCardGERTex; -#endif - -#define dgHyruleFieldTitleCardFRATex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleFieldTitleCardFRATex[] = dgHyruleFieldTitleCardFRATex; -#else -static const char gHyruleFieldTitleCardFRATex[] __attribute__((aligned (2))) = dgHyruleFieldTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgHyruleFieldTitleCardENGTex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardENGTex" +static const ALIGN_ASSET(2) char gHyruleFieldTitleCardENGTex[] = dgHyruleFieldTitleCardENGTex; + +#define dgHyruleFieldTitleCardGERTex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardGERTex" +static const ALIGN_ASSET(2) char gHyruleFieldTitleCardGERTex[] = dgHyruleFieldTitleCardGERTex; + +#define dgHyruleFieldTitleCardFRATex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardFRATex" +static const ALIGN_ASSET(2) char gHyruleFieldTitleCardFRATex[] = dgHyruleFieldTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_28.h b/soh/assets/textures/place_title_cards/g_pn_28.h index 5b9e6da49..85f4ebd27 100644 --- a/soh/assets/textures/place_title_cards/g_pn_28.h +++ b/soh/assets/textures/place_title_cards/g_pn_28.h @@ -1,23 +1,12 @@ #pragma once -#define dgKakarikoVillageTitleCardENGTex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillageTitleCardENGTex[] = dgKakarikoVillageTitleCardENGTex; -#else -static const char gKakarikoVillageTitleCardENGTex[] __attribute__((aligned (2))) = dgKakarikoVillageTitleCardENGTex; -#endif - -#define dgKakarikoVillageTitleCardGERTex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillageTitleCardGERTex[] = dgKakarikoVillageTitleCardGERTex; -#else -static const char gKakarikoVillageTitleCardGERTex[] __attribute__((aligned (2))) = dgKakarikoVillageTitleCardGERTex; -#endif - -#define dgKakarikoVillageTitleCardFRATex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKakarikoVillageTitleCardFRATex[] = dgKakarikoVillageTitleCardFRATex; -#else -static const char gKakarikoVillageTitleCardFRATex[] __attribute__((aligned (2))) = dgKakarikoVillageTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgKakarikoVillageTitleCardENGTex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardENGTex" +static const ALIGN_ASSET(2) char gKakarikoVillageTitleCardENGTex[] = dgKakarikoVillageTitleCardENGTex; + +#define dgKakarikoVillageTitleCardGERTex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardGERTex" +static const ALIGN_ASSET(2) char gKakarikoVillageTitleCardGERTex[] = dgKakarikoVillageTitleCardGERTex; + +#define dgKakarikoVillageTitleCardFRATex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardFRATex" +static const ALIGN_ASSET(2) char gKakarikoVillageTitleCardFRATex[] = dgKakarikoVillageTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_29.h b/soh/assets/textures/place_title_cards/g_pn_29.h index 742de48e7..0f80a0bf4 100644 --- a/soh/assets/textures/place_title_cards/g_pn_29.h +++ b/soh/assets/textures/place_title_cards/g_pn_29.h @@ -1,23 +1,12 @@ #pragma once -#define dgGraveyardTitleCardENGTex "__OTR__textures/g_pn_29/gGraveyardTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardTitleCardENGTex[] = dgGraveyardTitleCardENGTex; -#else -static const char gGraveyardTitleCardENGTex[] __attribute__((aligned (2))) = dgGraveyardTitleCardENGTex; -#endif - -#define dgGraveyardTitleCardGERTex "__OTR__textures/g_pn_29/gGraveyardTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardTitleCardGERTex[] = dgGraveyardTitleCardGERTex; -#else -static const char gGraveyardTitleCardGERTex[] __attribute__((aligned (2))) = dgGraveyardTitleCardGERTex; -#endif - -#define dgGraveyardTitleCardFRATex "__OTR__textures/g_pn_29/gGraveyardTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGraveyardTitleCardFRATex[] = dgGraveyardTitleCardFRATex; -#else -static const char gGraveyardTitleCardFRATex[] __attribute__((aligned (2))) = dgGraveyardTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGraveyardTitleCardENGTex "__OTR__textures/g_pn_29/gGraveyardTitleCardENGTex" +static const ALIGN_ASSET(2) char gGraveyardTitleCardENGTex[] = dgGraveyardTitleCardENGTex; + +#define dgGraveyardTitleCardGERTex "__OTR__textures/g_pn_29/gGraveyardTitleCardGERTex" +static const ALIGN_ASSET(2) char gGraveyardTitleCardGERTex[] = dgGraveyardTitleCardGERTex; + +#define dgGraveyardTitleCardFRATex "__OTR__textures/g_pn_29/gGraveyardTitleCardFRATex" +static const ALIGN_ASSET(2) char gGraveyardTitleCardFRATex[] = dgGraveyardTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_30.h b/soh/assets/textures/place_title_cards/g_pn_30.h index 2d7673629..abb6e6450 100644 --- a/soh/assets/textures/place_title_cards/g_pn_30.h +++ b/soh/assets/textures/place_title_cards/g_pn_30.h @@ -1,23 +1,12 @@ #pragma once -#define dgZorasRiverTitleCardENGTex "__OTR__textures/g_pn_30/gZorasRiverTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasRiverTitleCardENGTex[] = dgZorasRiverTitleCardENGTex; -#else -static const char gZorasRiverTitleCardENGTex[] __attribute__((aligned (2))) = dgZorasRiverTitleCardENGTex; -#endif - -#define dgZorasRiverTitleCardGERTex "__OTR__textures/g_pn_30/gZorasRiverTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasRiverTitleCardGERTex[] = dgZorasRiverTitleCardGERTex; -#else -static const char gZorasRiverTitleCardGERTex[] __attribute__((aligned (2))) = dgZorasRiverTitleCardGERTex; -#endif - -#define dgZorasRiverTitleCardFRATex "__OTR__textures/g_pn_30/gZorasRiverTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasRiverTitleCardFRATex[] = dgZorasRiverTitleCardFRATex; -#else -static const char gZorasRiverTitleCardFRATex[] __attribute__((aligned (2))) = dgZorasRiverTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgZorasRiverTitleCardENGTex "__OTR__textures/g_pn_30/gZorasRiverTitleCardENGTex" +static const ALIGN_ASSET(2) char gZorasRiverTitleCardENGTex[] = dgZorasRiverTitleCardENGTex; + +#define dgZorasRiverTitleCardGERTex "__OTR__textures/g_pn_30/gZorasRiverTitleCardGERTex" +static const ALIGN_ASSET(2) char gZorasRiverTitleCardGERTex[] = dgZorasRiverTitleCardGERTex; + +#define dgZorasRiverTitleCardFRATex "__OTR__textures/g_pn_30/gZorasRiverTitleCardFRATex" +static const ALIGN_ASSET(2) char gZorasRiverTitleCardFRATex[] = dgZorasRiverTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_31.h b/soh/assets/textures/place_title_cards/g_pn_31.h index 09f6b3b73..1905e0103 100644 --- a/soh/assets/textures/place_title_cards/g_pn_31.h +++ b/soh/assets/textures/place_title_cards/g_pn_31.h @@ -1,23 +1,12 @@ #pragma once -#define dgKokiriForestTitleCardENGTex "__OTR__textures/g_pn_31/gKokiriForestTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestTitleCardENGTex[] = dgKokiriForestTitleCardENGTex; -#else -static const char gKokiriForestTitleCardENGTex[] __attribute__((aligned (2))) = dgKokiriForestTitleCardENGTex; -#endif - -#define dgKokiriForestTitleCardGERTex "__OTR__textures/g_pn_31/gKokiriForestTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestTitleCardGERTex[] = dgKokiriForestTitleCardGERTex; -#else -static const char gKokiriForestTitleCardGERTex[] __attribute__((aligned (2))) = dgKokiriForestTitleCardGERTex; -#endif - -#define dgKokiriForestTitleCardFRATex "__OTR__textures/g_pn_31/gKokiriForestTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gKokiriForestTitleCardFRATex[] = dgKokiriForestTitleCardFRATex; -#else -static const char gKokiriForestTitleCardFRATex[] __attribute__((aligned (2))) = dgKokiriForestTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgKokiriForestTitleCardENGTex "__OTR__textures/g_pn_31/gKokiriForestTitleCardENGTex" +static const ALIGN_ASSET(2) char gKokiriForestTitleCardENGTex[] = dgKokiriForestTitleCardENGTex; + +#define dgKokiriForestTitleCardGERTex "__OTR__textures/g_pn_31/gKokiriForestTitleCardGERTex" +static const ALIGN_ASSET(2) char gKokiriForestTitleCardGERTex[] = dgKokiriForestTitleCardGERTex; + +#define dgKokiriForestTitleCardFRATex "__OTR__textures/g_pn_31/gKokiriForestTitleCardFRATex" +static const ALIGN_ASSET(2) char gKokiriForestTitleCardFRATex[] = dgKokiriForestTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_32.h b/soh/assets/textures/place_title_cards/g_pn_32.h index f5492b6e5..f971171f8 100644 --- a/soh/assets/textures/place_title_cards/g_pn_32.h +++ b/soh/assets/textures/place_title_cards/g_pn_32.h @@ -1,23 +1,12 @@ #pragma once -#define dgLakeHyliaTitleCardENGTex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaTitleCardENGTex[] = dgLakeHyliaTitleCardENGTex; -#else -static const char gLakeHyliaTitleCardENGTex[] __attribute__((aligned (2))) = dgLakeHyliaTitleCardENGTex; -#endif - -#define dgLakeHyliaTitleCardGERTex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaTitleCardGERTex[] = dgLakeHyliaTitleCardGERTex; -#else -static const char gLakeHyliaTitleCardGERTex[] __attribute__((aligned (2))) = dgLakeHyliaTitleCardGERTex; -#endif - -#define dgLakeHyliaTitleCardFRATex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLakeHyliaTitleCardFRATex[] = dgLakeHyliaTitleCardFRATex; -#else -static const char gLakeHyliaTitleCardFRATex[] __attribute__((aligned (2))) = dgLakeHyliaTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgLakeHyliaTitleCardENGTex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardENGTex" +static const ALIGN_ASSET(2) char gLakeHyliaTitleCardENGTex[] = dgLakeHyliaTitleCardENGTex; + +#define dgLakeHyliaTitleCardGERTex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardGERTex" +static const ALIGN_ASSET(2) char gLakeHyliaTitleCardGERTex[] = dgLakeHyliaTitleCardGERTex; + +#define dgLakeHyliaTitleCardFRATex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardFRATex" +static const ALIGN_ASSET(2) char gLakeHyliaTitleCardFRATex[] = dgLakeHyliaTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_33.h b/soh/assets/textures/place_title_cards/g_pn_33.h index f20a860b2..0298fdc06 100644 --- a/soh/assets/textures/place_title_cards/g_pn_33.h +++ b/soh/assets/textures/place_title_cards/g_pn_33.h @@ -1,23 +1,12 @@ #pragma once -#define dgZorasDomainTitleCardENGTex "__OTR__textures/g_pn_33/gZorasDomainTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainTitleCardENGTex[] = dgZorasDomainTitleCardENGTex; -#else -static const char gZorasDomainTitleCardENGTex[] __attribute__((aligned (2))) = dgZorasDomainTitleCardENGTex; -#endif - -#define dgZorasDomainTitleCardGERTex "__OTR__textures/g_pn_33/gZorasDomainTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainTitleCardGERTex[] = dgZorasDomainTitleCardGERTex; -#else -static const char gZorasDomainTitleCardGERTex[] __attribute__((aligned (2))) = dgZorasDomainTitleCardGERTex; -#endif - -#define dgZorasDomainTitleCardFRATex "__OTR__textures/g_pn_33/gZorasDomainTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasDomainTitleCardFRATex[] = dgZorasDomainTitleCardFRATex; -#else -static const char gZorasDomainTitleCardFRATex[] __attribute__((aligned (2))) = dgZorasDomainTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgZorasDomainTitleCardENGTex "__OTR__textures/g_pn_33/gZorasDomainTitleCardENGTex" +static const ALIGN_ASSET(2) char gZorasDomainTitleCardENGTex[] = dgZorasDomainTitleCardENGTex; + +#define dgZorasDomainTitleCardGERTex "__OTR__textures/g_pn_33/gZorasDomainTitleCardGERTex" +static const ALIGN_ASSET(2) char gZorasDomainTitleCardGERTex[] = dgZorasDomainTitleCardGERTex; + +#define dgZorasDomainTitleCardFRATex "__OTR__textures/g_pn_33/gZorasDomainTitleCardFRATex" +static const ALIGN_ASSET(2) char gZorasDomainTitleCardFRATex[] = dgZorasDomainTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_34.h b/soh/assets/textures/place_title_cards/g_pn_34.h index 02c2f5dd6..ddadc9157 100644 --- a/soh/assets/textures/place_title_cards/g_pn_34.h +++ b/soh/assets/textures/place_title_cards/g_pn_34.h @@ -1,23 +1,12 @@ #pragma once -#define dgZorasFountainTitleCardENGTex "__OTR__textures/g_pn_34/gZorasFountainTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainTitleCardENGTex[] = dgZorasFountainTitleCardENGTex; -#else -static const char gZorasFountainTitleCardENGTex[] __attribute__((aligned (2))) = dgZorasFountainTitleCardENGTex; -#endif - -#define dgZorasFountainTitleCardGERTex "__OTR__textures/g_pn_34/gZorasFountainTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainTitleCardGERTex[] = dgZorasFountainTitleCardGERTex; -#else -static const char gZorasFountainTitleCardGERTex[] __attribute__((aligned (2))) = dgZorasFountainTitleCardGERTex; -#endif - -#define dgZorasFountainTitleCardFRATex "__OTR__textures/g_pn_34/gZorasFountainTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gZorasFountainTitleCardFRATex[] = dgZorasFountainTitleCardFRATex; -#else -static const char gZorasFountainTitleCardFRATex[] __attribute__((aligned (2))) = dgZorasFountainTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgZorasFountainTitleCardENGTex "__OTR__textures/g_pn_34/gZorasFountainTitleCardENGTex" +static const ALIGN_ASSET(2) char gZorasFountainTitleCardENGTex[] = dgZorasFountainTitleCardENGTex; + +#define dgZorasFountainTitleCardGERTex "__OTR__textures/g_pn_34/gZorasFountainTitleCardGERTex" +static const ALIGN_ASSET(2) char gZorasFountainTitleCardGERTex[] = dgZorasFountainTitleCardGERTex; + +#define dgZorasFountainTitleCardFRATex "__OTR__textures/g_pn_34/gZorasFountainTitleCardFRATex" +static const ALIGN_ASSET(2) char gZorasFountainTitleCardFRATex[] = dgZorasFountainTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_35.h b/soh/assets/textures/place_title_cards/g_pn_35.h index b9859d59c..b1b0c202c 100644 --- a/soh/assets/textures/place_title_cards/g_pn_35.h +++ b/soh/assets/textures/place_title_cards/g_pn_35.h @@ -1,23 +1,12 @@ #pragma once -#define dgGERudoValleyTitleCardENGTex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudoValleyTitleCardENGTex[] = dgGERudoValleyTitleCardENGTex; -#else -static const char gGERudoValleyTitleCardENGTex[] __attribute__((aligned (2))) = dgGERudoValleyTitleCardENGTex; -#endif - -#define dgGERudoValleyTitleCardGERTex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudoValleyTitleCardGERTex[] = dgGERudoValleyTitleCardGERTex; -#else -static const char gGERudoValleyTitleCardGERTex[] __attribute__((aligned (2))) = dgGERudoValleyTitleCardGERTex; -#endif - -#define dgGERudoValleyTitleCardFRATex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudoValleyTitleCardFRATex[] = dgGERudoValleyTitleCardFRATex; -#else -static const char gGERudoValleyTitleCardFRATex[] __attribute__((aligned (2))) = dgGERudoValleyTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGERudoValleyTitleCardENGTex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardENGTex" +static const ALIGN_ASSET(2) char gGERudoValleyTitleCardENGTex[] = dgGERudoValleyTitleCardENGTex; + +#define dgGERudoValleyTitleCardGERTex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardGERTex" +static const ALIGN_ASSET(2) char gGERudoValleyTitleCardGERTex[] = dgGERudoValleyTitleCardGERTex; + +#define dgGERudoValleyTitleCardFRATex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardFRATex" +static const ALIGN_ASSET(2) char gGERudoValleyTitleCardFRATex[] = dgGERudoValleyTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_36.h b/soh/assets/textures/place_title_cards/g_pn_36.h index c960b3ea1..ea3b843bc 100644 --- a/soh/assets/textures/place_title_cards/g_pn_36.h +++ b/soh/assets/textures/place_title_cards/g_pn_36.h @@ -1,23 +1,12 @@ #pragma once -#define dgLostWoodsTitleCardENGTex "__OTR__textures/g_pn_36/gLostWoodsTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsTitleCardENGTex[] = dgLostWoodsTitleCardENGTex; -#else -static const char gLostWoodsTitleCardENGTex[] __attribute__((aligned (2))) = dgLostWoodsTitleCardENGTex; -#endif - -#define dgLostWoodsTitleCardGERTex "__OTR__textures/g_pn_36/gLostWoodsTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsTitleCardGERTex[] = dgLostWoodsTitleCardGERTex; -#else -static const char gLostWoodsTitleCardGERTex[] __attribute__((aligned (2))) = dgLostWoodsTitleCardGERTex; -#endif - -#define dgLostWoodsTitleCardFRATex "__OTR__textures/g_pn_36/gLostWoodsTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLostWoodsTitleCardFRATex[] = dgLostWoodsTitleCardFRATex; -#else -static const char gLostWoodsTitleCardFRATex[] __attribute__((aligned (2))) = dgLostWoodsTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgLostWoodsTitleCardENGTex "__OTR__textures/g_pn_36/gLostWoodsTitleCardENGTex" +static const ALIGN_ASSET(2) char gLostWoodsTitleCardENGTex[] = dgLostWoodsTitleCardENGTex; + +#define dgLostWoodsTitleCardGERTex "__OTR__textures/g_pn_36/gLostWoodsTitleCardGERTex" +static const ALIGN_ASSET(2) char gLostWoodsTitleCardGERTex[] = dgLostWoodsTitleCardGERTex; + +#define dgLostWoodsTitleCardFRATex "__OTR__textures/g_pn_36/gLostWoodsTitleCardFRATex" +static const ALIGN_ASSET(2) char gLostWoodsTitleCardFRATex[] = dgLostWoodsTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_37.h b/soh/assets/textures/place_title_cards/g_pn_37.h index b467907e2..41d8f2d14 100644 --- a/soh/assets/textures/place_title_cards/g_pn_37.h +++ b/soh/assets/textures/place_title_cards/g_pn_37.h @@ -1,23 +1,12 @@ #pragma once -#define dgHauntedWastelandTitleCardENGTex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandTitleCardENGTex[] = dgHauntedWastelandTitleCardENGTex; -#else -static const char gHauntedWastelandTitleCardENGTex[] __attribute__((aligned (2))) = dgHauntedWastelandTitleCardENGTex; -#endif - -#define dgHauntedWastelandTitleCardGERTex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandTitleCardGERTex[] = dgHauntedWastelandTitleCardGERTex; -#else -static const char gHauntedWastelandTitleCardGERTex[] __attribute__((aligned (2))) = dgHauntedWastelandTitleCardGERTex; -#endif - -#define dgHauntedWastelandTitleCardFRATex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHauntedWastelandTitleCardFRATex[] = dgHauntedWastelandTitleCardFRATex; -#else -static const char gHauntedWastelandTitleCardFRATex[] __attribute__((aligned (2))) = dgHauntedWastelandTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgHauntedWastelandTitleCardENGTex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardENGTex" +static const ALIGN_ASSET(2) char gHauntedWastelandTitleCardENGTex[] = dgHauntedWastelandTitleCardENGTex; + +#define dgHauntedWastelandTitleCardGERTex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardGERTex" +static const ALIGN_ASSET(2) char gHauntedWastelandTitleCardGERTex[] = dgHauntedWastelandTitleCardGERTex; + +#define dgHauntedWastelandTitleCardFRATex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardFRATex" +static const ALIGN_ASSET(2) char gHauntedWastelandTitleCardFRATex[] = dgHauntedWastelandTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_38.h b/soh/assets/textures/place_title_cards/g_pn_38.h index b18249cd4..fdc80d217 100644 --- a/soh/assets/textures/place_title_cards/g_pn_38.h +++ b/soh/assets/textures/place_title_cards/g_pn_38.h @@ -1,23 +1,12 @@ #pragma once -#define dgHyruleCastleTitleCardENGTex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleCastleTitleCardENGTex[] = dgHyruleCastleTitleCardENGTex; -#else -static const char gHyruleCastleTitleCardENGTex[] __attribute__((aligned (2))) = dgHyruleCastleTitleCardENGTex; -#endif - -#define dgHyruleCastleTitleCardGERTex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleCastleTitleCardGERTex[] = dgHyruleCastleTitleCardGERTex; -#else -static const char gHyruleCastleTitleCardGERTex[] __attribute__((aligned (2))) = dgHyruleCastleTitleCardGERTex; -#endif - -#define dgHyruleCastleTitleCardFRATex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHyruleCastleTitleCardFRATex[] = dgHyruleCastleTitleCardFRATex; -#else -static const char gHyruleCastleTitleCardFRATex[] __attribute__((aligned (2))) = dgHyruleCastleTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgHyruleCastleTitleCardENGTex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardENGTex" +static const ALIGN_ASSET(2) char gHyruleCastleTitleCardENGTex[] = dgHyruleCastleTitleCardENGTex; + +#define dgHyruleCastleTitleCardGERTex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardGERTex" +static const ALIGN_ASSET(2) char gHyruleCastleTitleCardGERTex[] = dgHyruleCastleTitleCardGERTex; + +#define dgHyruleCastleTitleCardFRATex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardFRATex" +static const ALIGN_ASSET(2) char gHyruleCastleTitleCardFRATex[] = dgHyruleCastleTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_39.h b/soh/assets/textures/place_title_cards/g_pn_39.h index 3d4474dfd..601b533f1 100644 --- a/soh/assets/textures/place_title_cards/g_pn_39.h +++ b/soh/assets/textures/place_title_cards/g_pn_39.h @@ -1,23 +1,12 @@ #pragma once -#define dgDeathMountainTrailTitleCardENGTex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainTrailTitleCardENGTex[] = dgDeathMountainTrailTitleCardENGTex; -#else -static const char gDeathMountainTrailTitleCardENGTex[] __attribute__((aligned (2))) = dgDeathMountainTrailTitleCardENGTex; -#endif - -#define dgDeathMountainTrailTitleCardGERTex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainTrailTitleCardGERTex[] = dgDeathMountainTrailTitleCardGERTex; -#else -static const char gDeathMountainTrailTitleCardGERTex[] __attribute__((aligned (2))) = dgDeathMountainTrailTitleCardGERTex; -#endif - -#define dgDeathMountainTrailTitleCardFRATex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainTrailTitleCardFRATex[] = dgDeathMountainTrailTitleCardFRATex; -#else -static const char gDeathMountainTrailTitleCardFRATex[] __attribute__((aligned (2))) = dgDeathMountainTrailTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgDeathMountainTrailTitleCardENGTex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardENGTex" +static const ALIGN_ASSET(2) char gDeathMountainTrailTitleCardENGTex[] = dgDeathMountainTrailTitleCardENGTex; + +#define dgDeathMountainTrailTitleCardGERTex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardGERTex" +static const ALIGN_ASSET(2) char gDeathMountainTrailTitleCardGERTex[] = dgDeathMountainTrailTitleCardGERTex; + +#define dgDeathMountainTrailTitleCardFRATex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardFRATex" +static const ALIGN_ASSET(2) char gDeathMountainTrailTitleCardFRATex[] = dgDeathMountainTrailTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_40.h b/soh/assets/textures/place_title_cards/g_pn_40.h index 5e8aba6c0..660e9a49d 100644 --- a/soh/assets/textures/place_title_cards/g_pn_40.h +++ b/soh/assets/textures/place_title_cards/g_pn_40.h @@ -1,23 +1,12 @@ #pragma once -#define dgDeathMountainCraterTitleCardENGTex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterTitleCardENGTex[] = dgDeathMountainCraterTitleCardENGTex; -#else -static const char gDeathMountainCraterTitleCardENGTex[] __attribute__((aligned (2))) = dgDeathMountainCraterTitleCardENGTex; -#endif - -#define dgDeathMountainCraterTitleCardGERTex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterTitleCardGERTex[] = dgDeathMountainCraterTitleCardGERTex; -#else -static const char gDeathMountainCraterTitleCardGERTex[] __attribute__((aligned (2))) = dgDeathMountainCraterTitleCardGERTex; -#endif - -#define dgDeathMountainCraterTitleCardFRATex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDeathMountainCraterTitleCardFRATex[] = dgDeathMountainCraterTitleCardFRATex; -#else -static const char gDeathMountainCraterTitleCardFRATex[] __attribute__((aligned (2))) = dgDeathMountainCraterTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgDeathMountainCraterTitleCardENGTex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardENGTex" +static const ALIGN_ASSET(2) char gDeathMountainCraterTitleCardENGTex[] = dgDeathMountainCraterTitleCardENGTex; + +#define dgDeathMountainCraterTitleCardGERTex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardGERTex" +static const ALIGN_ASSET(2) char gDeathMountainCraterTitleCardGERTex[] = dgDeathMountainCraterTitleCardGERTex; + +#define dgDeathMountainCraterTitleCardFRATex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardFRATex" +static const ALIGN_ASSET(2) char gDeathMountainCraterTitleCardFRATex[] = dgDeathMountainCraterTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_41.h b/soh/assets/textures/place_title_cards/g_pn_41.h index 0125cfd16..0e943a366 100644 --- a/soh/assets/textures/place_title_cards/g_pn_41.h +++ b/soh/assets/textures/place_title_cards/g_pn_41.h @@ -1,23 +1,12 @@ #pragma once -#define dgGoronCityTitleCardENGTex "__OTR__textures/g_pn_41/gGoronCityTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityTitleCardENGTex[] = dgGoronCityTitleCardENGTex; -#else -static const char gGoronCityTitleCardENGTex[] __attribute__((aligned (2))) = dgGoronCityTitleCardENGTex; -#endif - -#define dgGoronCityTitleCardGERTex "__OTR__textures/g_pn_41/gGoronCityTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityTitleCardGERTex[] = dgGoronCityTitleCardGERTex; -#else -static const char gGoronCityTitleCardGERTex[] __attribute__((aligned (2))) = dgGoronCityTitleCardGERTex; -#endif - -#define dgGoronCityTitleCardFRATex "__OTR__textures/g_pn_41/gGoronCityTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGoronCityTitleCardFRATex[] = dgGoronCityTitleCardFRATex; -#else -static const char gGoronCityTitleCardFRATex[] __attribute__((aligned (2))) = dgGoronCityTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGoronCityTitleCardENGTex "__OTR__textures/g_pn_41/gGoronCityTitleCardENGTex" +static const ALIGN_ASSET(2) char gGoronCityTitleCardENGTex[] = dgGoronCityTitleCardENGTex; + +#define dgGoronCityTitleCardGERTex "__OTR__textures/g_pn_41/gGoronCityTitleCardGERTex" +static const ALIGN_ASSET(2) char gGoronCityTitleCardGERTex[] = dgGoronCityTitleCardGERTex; + +#define dgGoronCityTitleCardFRATex "__OTR__textures/g_pn_41/gGoronCityTitleCardFRATex" +static const ALIGN_ASSET(2) char gGoronCityTitleCardFRATex[] = dgGoronCityTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_42.h b/soh/assets/textures/place_title_cards/g_pn_42.h index ec3b36c05..3cea7c67c 100644 --- a/soh/assets/textures/place_title_cards/g_pn_42.h +++ b/soh/assets/textures/place_title_cards/g_pn_42.h @@ -1,23 +1,12 @@ #pragma once -#define dgLonLonRanchTitleCardENGTex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchTitleCardENGTex[] = dgLonLonRanchTitleCardENGTex; -#else -static const char gLonLonRanchTitleCardENGTex[] __attribute__((aligned (2))) = dgLonLonRanchTitleCardENGTex; -#endif - -#define dgLonLonRanchTitleCardGERTex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchTitleCardGERTex[] = dgLonLonRanchTitleCardGERTex; -#else -static const char gLonLonRanchTitleCardGERTex[] __attribute__((aligned (2))) = dgLonLonRanchTitleCardGERTex; -#endif - -#define dgLonLonRanchTitleCardFRATex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gLonLonRanchTitleCardFRATex[] = dgLonLonRanchTitleCardFRATex; -#else -static const char gLonLonRanchTitleCardFRATex[] __attribute__((aligned (2))) = dgLonLonRanchTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgLonLonRanchTitleCardENGTex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardENGTex" +static const ALIGN_ASSET(2) char gLonLonRanchTitleCardENGTex[] = dgLonLonRanchTitleCardENGTex; + +#define dgLonLonRanchTitleCardGERTex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardGERTex" +static const ALIGN_ASSET(2) char gLonLonRanchTitleCardGERTex[] = dgLonLonRanchTitleCardGERTex; + +#define dgLonLonRanchTitleCardFRATex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardFRATex" +static const ALIGN_ASSET(2) char gLonLonRanchTitleCardFRATex[] = dgLonLonRanchTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_43.h b/soh/assets/textures/place_title_cards/g_pn_43.h index 3e028c642..8fccd6c70 100644 --- a/soh/assets/textures/place_title_cards/g_pn_43.h +++ b/soh/assets/textures/place_title_cards/g_pn_43.h @@ -1,23 +1,12 @@ #pragma once -#define dgGanonsCastleTitleCardENGTex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleTitleCardENGTex[] = dgGanonsCastleTitleCardENGTex; -#else -static const char gGanonsCastleTitleCardENGTex[] __attribute__((aligned (2))) = dgGanonsCastleTitleCardENGTex; -#endif - -#define dgGanonsCastleTitleCardGERTex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleTitleCardGERTex[] = dgGanonsCastleTitleCardGERTex; -#else -static const char gGanonsCastleTitleCardGERTex[] __attribute__((aligned (2))) = dgGanonsCastleTitleCardGERTex; -#endif - -#define dgGanonsCastleTitleCardFRATex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGanonsCastleTitleCardFRATex[] = dgGanonsCastleTitleCardFRATex; -#else -static const char gGanonsCastleTitleCardFRATex[] __attribute__((aligned (2))) = dgGanonsCastleTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGanonsCastleTitleCardENGTex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardENGTex" +static const ALIGN_ASSET(2) char gGanonsCastleTitleCardENGTex[] = dgGanonsCastleTitleCardENGTex; + +#define dgGanonsCastleTitleCardGERTex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardGERTex" +static const ALIGN_ASSET(2) char gGanonsCastleTitleCardGERTex[] = dgGanonsCastleTitleCardGERTex; + +#define dgGanonsCastleTitleCardFRATex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardFRATex" +static const ALIGN_ASSET(2) char gGanonsCastleTitleCardFRATex[] = dgGanonsCastleTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_44.h b/soh/assets/textures/place_title_cards/g_pn_44.h index 1adbb575b..f1d36d254 100644 --- a/soh/assets/textures/place_title_cards/g_pn_44.h +++ b/soh/assets/textures/place_title_cards/g_pn_44.h @@ -1,23 +1,12 @@ #pragma once -#define dgRoyalFamilysTombTitleCardENGTex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoyalFamilysTombTitleCardENGTex[] = dgRoyalFamilysTombTitleCardENGTex; -#else -static const char gRoyalFamilysTombTitleCardENGTex[] __attribute__((aligned (2))) = dgRoyalFamilysTombTitleCardENGTex; -#endif - -#define dgRoyalFamilysTombTitleCardGERTex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoyalFamilysTombTitleCardGERTex[] = dgRoyalFamilysTombTitleCardGERTex; -#else -static const char gRoyalFamilysTombTitleCardGERTex[] __attribute__((aligned (2))) = dgRoyalFamilysTombTitleCardGERTex; -#endif - -#define dgRoyalFamilysTombTitleCardFRATex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gRoyalFamilysTombTitleCardFRATex[] = dgRoyalFamilysTombTitleCardFRATex; -#else -static const char gRoyalFamilysTombTitleCardFRATex[] __attribute__((aligned (2))) = dgRoyalFamilysTombTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgRoyalFamilysTombTitleCardENGTex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardENGTex" +static const ALIGN_ASSET(2) char gRoyalFamilysTombTitleCardENGTex[] = dgRoyalFamilysTombTitleCardENGTex; + +#define dgRoyalFamilysTombTitleCardGERTex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardGERTex" +static const ALIGN_ASSET(2) char gRoyalFamilysTombTitleCardGERTex[] = dgRoyalFamilysTombTitleCardGERTex; + +#define dgRoyalFamilysTombTitleCardFRATex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardFRATex" +static const ALIGN_ASSET(2) char gRoyalFamilysTombTitleCardFRATex[] = dgRoyalFamilysTombTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_45.h b/soh/assets/textures/place_title_cards/g_pn_45.h index d497c5d8d..636dd2851 100644 --- a/soh/assets/textures/place_title_cards/g_pn_45.h +++ b/soh/assets/textures/place_title_cards/g_pn_45.h @@ -1,23 +1,12 @@ #pragma once -#define dgFairysFountainTitleCardENGTex "__OTR__textures/g_pn_45/gFairysFountainTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairysFountainTitleCardENGTex[] = dgFairysFountainTitleCardENGTex; -#else -static const char gFairysFountainTitleCardENGTex[] __attribute__((aligned (2))) = dgFairysFountainTitleCardENGTex; -#endif - -#define dgFairysFountainTitleCardGERTex "__OTR__textures/g_pn_45/gFairysFountainTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairysFountainTitleCardGERTex[] = dgFairysFountainTitleCardGERTex; -#else -static const char gFairysFountainTitleCardGERTex[] __attribute__((aligned (2))) = dgFairysFountainTitleCardGERTex; -#endif - -#define dgFairysFountainTitleCardFRATex "__OTR__textures/g_pn_45/gFairysFountainTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFairysFountainTitleCardFRATex[] = dgFairysFountainTitleCardFRATex; -#else -static const char gFairysFountainTitleCardFRATex[] __attribute__((aligned (2))) = dgFairysFountainTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgFairysFountainTitleCardENGTex "__OTR__textures/g_pn_45/gFairysFountainTitleCardENGTex" +static const ALIGN_ASSET(2) char gFairysFountainTitleCardENGTex[] = dgFairysFountainTitleCardENGTex; + +#define dgFairysFountainTitleCardGERTex "__OTR__textures/g_pn_45/gFairysFountainTitleCardGERTex" +static const ALIGN_ASSET(2) char gFairysFountainTitleCardGERTex[] = dgFairysFountainTitleCardGERTex; + +#define dgFairysFountainTitleCardFRATex "__OTR__textures/g_pn_45/gFairysFountainTitleCardFRATex" +static const ALIGN_ASSET(2) char gFairysFountainTitleCardFRATex[] = dgFairysFountainTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_46.h b/soh/assets/textures/place_title_cards/g_pn_46.h index 1ee32b4a0..4cfba7984 100644 --- a/soh/assets/textures/place_title_cards/g_pn_46.h +++ b/soh/assets/textures/place_title_cards/g_pn_46.h @@ -1,23 +1,12 @@ #pragma once -#define dgFishingPondTitleCardENGTex "__OTR__textures/g_pn_46/gFishingPondTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingPondTitleCardENGTex[] = dgFishingPondTitleCardENGTex; -#else -static const char gFishingPondTitleCardENGTex[] __attribute__((aligned (2))) = dgFishingPondTitleCardENGTex; -#endif - -#define dgFishingPondTitleCardGERTex "__OTR__textures/g_pn_46/gFishingPondTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingPondTitleCardGERTex[] = dgFishingPondTitleCardGERTex; -#else -static const char gFishingPondTitleCardGERTex[] __attribute__((aligned (2))) = dgFishingPondTitleCardGERTex; -#endif - -#define dgFishingPondTitleCardFRATex "__OTR__textures/g_pn_46/gFishingPondTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFishingPondTitleCardFRATex[] = dgFishingPondTitleCardFRATex; -#else -static const char gFishingPondTitleCardFRATex[] __attribute__((aligned (2))) = dgFishingPondTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgFishingPondTitleCardENGTex "__OTR__textures/g_pn_46/gFishingPondTitleCardENGTex" +static const ALIGN_ASSET(2) char gFishingPondTitleCardENGTex[] = dgFishingPondTitleCardENGTex; + +#define dgFishingPondTitleCardGERTex "__OTR__textures/g_pn_46/gFishingPondTitleCardGERTex" +static const ALIGN_ASSET(2) char gFishingPondTitleCardGERTex[] = dgFishingPondTitleCardGERTex; + +#define dgFishingPondTitleCardFRATex "__OTR__textures/g_pn_46/gFishingPondTitleCardFRATex" +static const ALIGN_ASSET(2) char gFishingPondTitleCardFRATex[] = dgFishingPondTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_47.h b/soh/assets/textures/place_title_cards/g_pn_47.h index 0c6a7a4a4..c7d781aab 100644 --- a/soh/assets/textures/place_title_cards/g_pn_47.h +++ b/soh/assets/textures/place_title_cards/g_pn_47.h @@ -1,23 +1,12 @@ #pragma once -#define dgBombchuBowlingAlleyCardENGTex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuBowlingAlleyCardENGTex[] = dgBombchuBowlingAlleyCardENGTex; -#else -static const char gBombchuBowlingAlleyCardENGTex[] __attribute__((aligned (2))) = dgBombchuBowlingAlleyCardENGTex; -#endif - -#define dgBombchuBowlingAlleyCardGERTex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuBowlingAlleyCardGERTex[] = dgBombchuBowlingAlleyCardGERTex; -#else -static const char gBombchuBowlingAlleyCardGERTex[] __attribute__((aligned (2))) = dgBombchuBowlingAlleyCardGERTex; -#endif - -#define dgBombchuBowlingAlleyCardFRATex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuBowlingAlleyCardFRATex[] = dgBombchuBowlingAlleyCardFRATex; -#else -static const char gBombchuBowlingAlleyCardFRATex[] __attribute__((aligned (2))) = dgBombchuBowlingAlleyCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgBombchuBowlingAlleyCardENGTex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardENGTex" +static const ALIGN_ASSET(2) char gBombchuBowlingAlleyCardENGTex[] = dgBombchuBowlingAlleyCardENGTex; + +#define dgBombchuBowlingAlleyCardGERTex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardGERTex" +static const ALIGN_ASSET(2) char gBombchuBowlingAlleyCardGERTex[] = dgBombchuBowlingAlleyCardGERTex; + +#define dgBombchuBowlingAlleyCardFRATex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardFRATex" +static const ALIGN_ASSET(2) char gBombchuBowlingAlleyCardFRATex[] = dgBombchuBowlingAlleyCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_48.h b/soh/assets/textures/place_title_cards/g_pn_48.h index 5e726d239..bc9614832 100644 --- a/soh/assets/textures/place_title_cards/g_pn_48.h +++ b/soh/assets/textures/place_title_cards/g_pn_48.h @@ -1,23 +1,12 @@ #pragma once -#define dgStableTitleCardENGTex "__OTR__textures/g_pn_48/gStableTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStableTitleCardENGTex[] = dgStableTitleCardENGTex; -#else -static const char gStableTitleCardENGTex[] __attribute__((aligned (2))) = dgStableTitleCardENGTex; -#endif - -#define dgStableTitleCardGERTex "__OTR__textures/g_pn_48/gStableTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStableTitleCardGERTex[] = dgStableTitleCardGERTex; -#else -static const char gStableTitleCardGERTex[] __attribute__((aligned (2))) = dgStableTitleCardGERTex; -#endif - -#define dgStableTitleCardFRATex "__OTR__textures/g_pn_48/gStableTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gStableTitleCardFRATex[] = dgStableTitleCardFRATex; -#else -static const char gStableTitleCardFRATex[] __attribute__((aligned (2))) = dgStableTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgStableTitleCardENGTex "__OTR__textures/g_pn_48/gStableTitleCardENGTex" +static const ALIGN_ASSET(2) char gStableTitleCardENGTex[] = dgStableTitleCardENGTex; + +#define dgStableTitleCardGERTex "__OTR__textures/g_pn_48/gStableTitleCardGERTex" +static const ALIGN_ASSET(2) char gStableTitleCardGERTex[] = dgStableTitleCardGERTex; + +#define dgStableTitleCardFRATex "__OTR__textures/g_pn_48/gStableTitleCardFRATex" +static const ALIGN_ASSET(2) char gStableTitleCardFRATex[] = dgStableTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_49.h b/soh/assets/textures/place_title_cards/g_pn_49.h index bf50981f2..c4971c070 100644 --- a/soh/assets/textures/place_title_cards/g_pn_49.h +++ b/soh/assets/textures/place_title_cards/g_pn_49.h @@ -1,23 +1,12 @@ #pragma once -#define dgThievesHideoutTitleCardENGTex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gThievesHideoutTitleCardENGTex[] = dgThievesHideoutTitleCardENGTex; -#else -static const char gThievesHideoutTitleCardENGTex[] __attribute__((aligned (2))) = dgThievesHideoutTitleCardENGTex; -#endif - -#define dgThievesHideoutTitleCardGERTex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gThievesHideoutTitleCardGERTex[] = dgThievesHideoutTitleCardGERTex; -#else -static const char gThievesHideoutTitleCardGERTex[] __attribute__((aligned (2))) = dgThievesHideoutTitleCardGERTex; -#endif - -#define dgThievesHideoutTitleCardFRATex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gThievesHideoutTitleCardFRATex[] = dgThievesHideoutTitleCardFRATex; -#else -static const char gThievesHideoutTitleCardFRATex[] __attribute__((aligned (2))) = dgThievesHideoutTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgThievesHideoutTitleCardENGTex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardENGTex" +static const ALIGN_ASSET(2) char gThievesHideoutTitleCardENGTex[] = dgThievesHideoutTitleCardENGTex; + +#define dgThievesHideoutTitleCardGERTex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardGERTex" +static const ALIGN_ASSET(2) char gThievesHideoutTitleCardGERTex[] = dgThievesHideoutTitleCardGERTex; + +#define dgThievesHideoutTitleCardFRATex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardFRATex" +static const ALIGN_ASSET(2) char gThievesHideoutTitleCardFRATex[] = dgThievesHideoutTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_50.h b/soh/assets/textures/place_title_cards/g_pn_50.h index f26ab9afd..3ea3e8415 100644 --- a/soh/assets/textures/place_title_cards/g_pn_50.h +++ b/soh/assets/textures/place_title_cards/g_pn_50.h @@ -1,23 +1,12 @@ #pragma once -#define dgHappyMaskShopTitleCardENGTex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHappyMaskShopTitleCardENGTex[] = dgHappyMaskShopTitleCardENGTex; -#else -static const char gHappyMaskShopTitleCardENGTex[] __attribute__((aligned (2))) = dgHappyMaskShopTitleCardENGTex; -#endif - -#define dgHappyMaskShopTitleCardGERTex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHappyMaskShopTitleCardGERTex[] = dgHappyMaskShopTitleCardGERTex; -#else -static const char gHappyMaskShopTitleCardGERTex[] __attribute__((aligned (2))) = dgHappyMaskShopTitleCardGERTex; -#endif - -#define dgHappyMaskShopTitleCardFRATex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHappyMaskShopTitleCardFRATex[] = dgHappyMaskShopTitleCardFRATex; -#else -static const char gHappyMaskShopTitleCardFRATex[] __attribute__((aligned (2))) = dgHappyMaskShopTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgHappyMaskShopTitleCardENGTex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardENGTex" +static const ALIGN_ASSET(2) char gHappyMaskShopTitleCardENGTex[] = dgHappyMaskShopTitleCardENGTex; + +#define dgHappyMaskShopTitleCardGERTex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardGERTex" +static const ALIGN_ASSET(2) char gHappyMaskShopTitleCardGERTex[] = dgHappyMaskShopTitleCardGERTex; + +#define dgHappyMaskShopTitleCardFRATex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardFRATex" +static const ALIGN_ASSET(2) char gHappyMaskShopTitleCardFRATex[] = dgHappyMaskShopTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_51.h b/soh/assets/textures/place_title_cards/g_pn_51.h index dab25b5e8..c6eff745e 100644 --- a/soh/assets/textures/place_title_cards/g_pn_51.h +++ b/soh/assets/textures/place_title_cards/g_pn_51.h @@ -1,23 +1,12 @@ #pragma once -#define dgTreasureBoxShopTitleCardENGTex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureBoxShopTitleCardENGTex[] = dgTreasureBoxShopTitleCardENGTex; -#else -static const char gTreasureBoxShopTitleCardENGTex[] __attribute__((aligned (2))) = dgTreasureBoxShopTitleCardENGTex; -#endif - -#define dgTreasureBoxShopTitleCardGERTex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureBoxShopTitleCardGERTex[] = dgTreasureBoxShopTitleCardGERTex; -#else -static const char gTreasureBoxShopTitleCardGERTex[] __attribute__((aligned (2))) = dgTreasureBoxShopTitleCardGERTex; -#endif - -#define dgTreasureBoxShopTitleCardFRATex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gTreasureBoxShopTitleCardFRATex[] = dgTreasureBoxShopTitleCardFRATex; -#else -static const char gTreasureBoxShopTitleCardFRATex[] __attribute__((aligned (2))) = dgTreasureBoxShopTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgTreasureBoxShopTitleCardENGTex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardENGTex" +static const ALIGN_ASSET(2) char gTreasureBoxShopTitleCardENGTex[] = dgTreasureBoxShopTitleCardENGTex; + +#define dgTreasureBoxShopTitleCardGERTex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardGERTex" +static const ALIGN_ASSET(2) char gTreasureBoxShopTitleCardGERTex[] = dgTreasureBoxShopTitleCardGERTex; + +#define dgTreasureBoxShopTitleCardFRATex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardFRATex" +static const ALIGN_ASSET(2) char gTreasureBoxShopTitleCardFRATex[] = dgTreasureBoxShopTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_52.h b/soh/assets/textures/place_title_cards/g_pn_52.h index 1040000cb..37f408931 100644 --- a/soh/assets/textures/place_title_cards/g_pn_52.h +++ b/soh/assets/textures/place_title_cards/g_pn_52.h @@ -1,23 +1,12 @@ #pragma once -#define dgSacredForestMeadowTitleCardENGTex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSacredForestMeadowTitleCardENGTex[] = dgSacredForestMeadowTitleCardENGTex; -#else -static const char gSacredForestMeadowTitleCardENGTex[] __attribute__((aligned (2))) = dgSacredForestMeadowTitleCardENGTex; -#endif - -#define dgSacredForestMeadowTitleCardGERTex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSacredForestMeadowTitleCardGERTex[] = dgSacredForestMeadowTitleCardGERTex; -#else -static const char gSacredForestMeadowTitleCardGERTex[] __attribute__((aligned (2))) = dgSacredForestMeadowTitleCardGERTex; -#endif - -#define dgSacredForestMeadowTitleCardFRATex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSacredForestMeadowTitleCardFRATex[] = dgSacredForestMeadowTitleCardFRATex; -#else -static const char gSacredForestMeadowTitleCardFRATex[] __attribute__((aligned (2))) = dgSacredForestMeadowTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgSacredForestMeadowTitleCardENGTex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardENGTex" +static const ALIGN_ASSET(2) char gSacredForestMeadowTitleCardENGTex[] = dgSacredForestMeadowTitleCardENGTex; + +#define dgSacredForestMeadowTitleCardGERTex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardGERTex" +static const ALIGN_ASSET(2) char gSacredForestMeadowTitleCardGERTex[] = dgSacredForestMeadowTitleCardGERTex; + +#define dgSacredForestMeadowTitleCardFRATex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardFRATex" +static const ALIGN_ASSET(2) char gSacredForestMeadowTitleCardFRATex[] = dgSacredForestMeadowTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_53.h b/soh/assets/textures/place_title_cards/g_pn_53.h index 21bbab0e7..e3e187cba 100644 --- a/soh/assets/textures/place_title_cards/g_pn_53.h +++ b/soh/assets/textures/place_title_cards/g_pn_53.h @@ -1,23 +1,12 @@ #pragma once -#define dgGERudosFortressTitleCardENGTex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudosFortressTitleCardENGTex[] = dgGERudosFortressTitleCardENGTex; -#else -static const char gGERudosFortressTitleCardENGTex[] __attribute__((aligned (2))) = dgGERudosFortressTitleCardENGTex; -#endif - -#define dgGERudosFortressTitleCardGERTex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudosFortressTitleCardGERTex[] = dgGERudosFortressTitleCardGERTex; -#else -static const char gGERudosFortressTitleCardGERTex[] __attribute__((aligned (2))) = dgGERudosFortressTitleCardGERTex; -#endif - -#define dgGERudosFortressTitleCardFRATex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gGERudosFortressTitleCardFRATex[] = dgGERudosFortressTitleCardFRATex; -#else -static const char gGERudosFortressTitleCardFRATex[] __attribute__((aligned (2))) = dgGERudosFortressTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgGERudosFortressTitleCardENGTex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardENGTex" +static const ALIGN_ASSET(2) char gGERudosFortressTitleCardENGTex[] = dgGERudosFortressTitleCardENGTex; + +#define dgGERudosFortressTitleCardGERTex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardGERTex" +static const ALIGN_ASSET(2) char gGERudosFortressTitleCardGERTex[] = dgGERudosFortressTitleCardGERTex; + +#define dgGERudosFortressTitleCardFRATex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardFRATex" +static const ALIGN_ASSET(2) char gGERudosFortressTitleCardFRATex[] = dgGERudosFortressTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_54.h b/soh/assets/textures/place_title_cards/g_pn_54.h index f2ecc76b4..a4359a0b8 100644 --- a/soh/assets/textures/place_title_cards/g_pn_54.h +++ b/soh/assets/textures/place_title_cards/g_pn_54.h @@ -1,23 +1,12 @@ #pragma once -#define dgBottomOfTheWellTitleCardENGTex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellTitleCardENGTex[] = dgBottomOfTheWellTitleCardENGTex; -#else -static const char gBottomOfTheWellTitleCardENGTex[] __attribute__((aligned (2))) = dgBottomOfTheWellTitleCardENGTex; -#endif - -#define dgBottomOfTheWellTitleCardGERTex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellTitleCardGERTex[] = dgBottomOfTheWellTitleCardGERTex; -#else -static const char gBottomOfTheWellTitleCardGERTex[] __attribute__((aligned (2))) = dgBottomOfTheWellTitleCardGERTex; -#endif - -#define dgBottomOfTheWellTitleCardFRATex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBottomOfTheWellTitleCardFRATex[] = dgBottomOfTheWellTitleCardFRATex; -#else -static const char gBottomOfTheWellTitleCardFRATex[] __attribute__((aligned (2))) = dgBottomOfTheWellTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgBottomOfTheWellTitleCardENGTex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardENGTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellTitleCardENGTex[] = dgBottomOfTheWellTitleCardENGTex; + +#define dgBottomOfTheWellTitleCardGERTex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardGERTex" +static const ALIGN_ASSET(2) char gBottomOfTheWellTitleCardGERTex[] = dgBottomOfTheWellTitleCardGERTex; + +#define dgBottomOfTheWellTitleCardFRATex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardFRATex" +static const ALIGN_ASSET(2) char gBottomOfTheWellTitleCardFRATex[] = dgBottomOfTheWellTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_55.h b/soh/assets/textures/place_title_cards/g_pn_55.h index 0506878fc..373f7035e 100644 --- a/soh/assets/textures/place_title_cards/g_pn_55.h +++ b/soh/assets/textures/place_title_cards/g_pn_55.h @@ -1,23 +1,12 @@ #pragma once -#define dgDesertColossusTitleCardENGTex "__OTR__textures/g_pn_55/gDesertColossusTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusTitleCardENGTex[] = dgDesertColossusTitleCardENGTex; -#else -static const char gDesertColossusTitleCardENGTex[] __attribute__((aligned (2))) = dgDesertColossusTitleCardENGTex; -#endif - -#define dgDesertColossusTitleCardGERTex "__OTR__textures/g_pn_55/gDesertColossusTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusTitleCardGERTex[] = dgDesertColossusTitleCardGERTex; -#else -static const char gDesertColossusTitleCardGERTex[] __attribute__((aligned (2))) = dgDesertColossusTitleCardGERTex; -#endif - -#define dgDesertColossusTitleCardFRATex "__OTR__textures/g_pn_55/gDesertColossusTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDesertColossusTitleCardFRATex[] = dgDesertColossusTitleCardFRATex; -#else -static const char gDesertColossusTitleCardFRATex[] __attribute__((aligned (2))) = dgDesertColossusTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgDesertColossusTitleCardENGTex "__OTR__textures/g_pn_55/gDesertColossusTitleCardENGTex" +static const ALIGN_ASSET(2) char gDesertColossusTitleCardENGTex[] = dgDesertColossusTitleCardENGTex; + +#define dgDesertColossusTitleCardGERTex "__OTR__textures/g_pn_55/gDesertColossusTitleCardGERTex" +static const ALIGN_ASSET(2) char gDesertColossusTitleCardGERTex[] = dgDesertColossusTitleCardGERTex; + +#define dgDesertColossusTitleCardFRATex "__OTR__textures/g_pn_55/gDesertColossusTitleCardFRATex" +static const ALIGN_ASSET(2) char gDesertColossusTitleCardFRATex[] = dgDesertColossusTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_56.h b/soh/assets/textures/place_title_cards/g_pn_56.h index d861afe00..63461bdee 100644 --- a/soh/assets/textures/place_title_cards/g_pn_56.h +++ b/soh/assets/textures/place_title_cards/g_pn_56.h @@ -1,23 +1,12 @@ #pragma once -#define dgBombchuShopTitleCardENGTex "__OTR__textures/g_pn_56/gBombchuShopTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopTitleCardENGTex[] = dgBombchuShopTitleCardENGTex; -#else -static const char gBombchuShopTitleCardENGTex[] __attribute__((aligned (2))) = dgBombchuShopTitleCardENGTex; -#endif - -#define dgBombchuShopTitleCardGERTex "__OTR__textures/g_pn_56/gBombchuShopTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopTitleCardGERTex[] = dgBombchuShopTitleCardGERTex; -#else -static const char gBombchuShopTitleCardGERTex[] __attribute__((aligned (2))) = dgBombchuShopTitleCardGERTex; -#endif - -#define dgBombchuShopTitleCardFRATex "__OTR__textures/g_pn_56/gBombchuShopTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gBombchuShopTitleCardFRATex[] = dgBombchuShopTitleCardFRATex; -#else -static const char gBombchuShopTitleCardFRATex[] __attribute__((aligned (2))) = dgBombchuShopTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgBombchuShopTitleCardENGTex "__OTR__textures/g_pn_56/gBombchuShopTitleCardENGTex" +static const ALIGN_ASSET(2) char gBombchuShopTitleCardENGTex[] = dgBombchuShopTitleCardENGTex; + +#define dgBombchuShopTitleCardGERTex "__OTR__textures/g_pn_56/gBombchuShopTitleCardGERTex" +static const ALIGN_ASSET(2) char gBombchuShopTitleCardGERTex[] = dgBombchuShopTitleCardGERTex; + +#define dgBombchuShopTitleCardFRATex "__OTR__textures/g_pn_56/gBombchuShopTitleCardFRATex" +static const ALIGN_ASSET(2) char gBombchuShopTitleCardFRATex[] = dgBombchuShopTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/place_title_cards/g_pn_57.h b/soh/assets/textures/place_title_cards/g_pn_57.h index ce1fdc2db..dfaee5233 100644 --- a/soh/assets/textures/place_title_cards/g_pn_57.h +++ b/soh/assets/textures/place_title_cards/g_pn_57.h @@ -1,23 +1,12 @@ #pragma once -#define dgQuestionMarkTitleCardENGTex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuestionMarkTitleCardENGTex[] = dgQuestionMarkTitleCardENGTex; -#else -static const char gQuestionMarkTitleCardENGTex[] __attribute__((aligned (2))) = dgQuestionMarkTitleCardENGTex; -#endif - -#define dgQuestionMarkTitleCardGERTex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuestionMarkTitleCardGERTex[] = dgQuestionMarkTitleCardGERTex; -#else -static const char gQuestionMarkTitleCardGERTex[] __attribute__((aligned (2))) = dgQuestionMarkTitleCardGERTex; -#endif - -#define dgQuestionMarkTitleCardFRATex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gQuestionMarkTitleCardFRATex[] = dgQuestionMarkTitleCardFRATex; -#else -static const char gQuestionMarkTitleCardFRATex[] __attribute__((aligned (2))) = dgQuestionMarkTitleCardFRATex; -#endif - +#include "align_asset_macro.h" + +#define dgQuestionMarkTitleCardENGTex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardENGTex" +static const ALIGN_ASSET(2) char gQuestionMarkTitleCardENGTex[] = dgQuestionMarkTitleCardENGTex; + +#define dgQuestionMarkTitleCardGERTex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardGERTex" +static const ALIGN_ASSET(2) char gQuestionMarkTitleCardGERTex[] = dgQuestionMarkTitleCardGERTex; + +#define dgQuestionMarkTitleCardFRATex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardFRATex" +static const ALIGN_ASSET(2) char gQuestionMarkTitleCardFRATex[] = dgQuestionMarkTitleCardFRATex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_cloud0_pal_static.h b/soh/assets/textures/skyboxes/vr_cloud0_pal_static.h index c2a3723d1..286933b9f 100644 --- a/soh/assets/textures/skyboxes/vr_cloud0_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_cloud0_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgSunriseOvercastSkyboxTLUT "__OTR__textures/vr_cloud0_pal_static/gSunriseOvercastSkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseOvercastSkyboxTLUT[] = dgSunriseOvercastSkyboxTLUT; -#else -static const char gSunriseOvercastSkyboxTLUT[] __attribute__((aligned (2))) = dgSunriseOvercastSkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgSunriseOvercastSkyboxTLUT "__OTR__textures/vr_cloud0_pal_static/gSunriseOvercastSkyboxTLUT" +static const ALIGN_ASSET(2) char gSunriseOvercastSkyboxTLUT[] = dgSunriseOvercastSkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_cloud0_static.h b/soh/assets/textures/skyboxes/vr_cloud0_static.h index 3f163f166..59a31a7f6 100644 --- a/soh/assets/textures/skyboxes/vr_cloud0_static.h +++ b/soh/assets/textures/skyboxes/vr_cloud0_static.h @@ -1,37 +1,18 @@ #pragma once -#define dgSunriseOvercastSkybox1Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseOvercastSkybox1Tex[] = dgSunriseOvercastSkybox1Tex; -#else -static const char gSunriseOvercastSkybox1Tex[] __attribute__((aligned (2))) = dgSunriseOvercastSkybox1Tex; -#endif - -#define dgSunriseOvercastSkybox2Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseOvercastSkybox2Tex[] = dgSunriseOvercastSkybox2Tex; -#else -static const char gSunriseOvercastSkybox2Tex[] __attribute__((aligned (2))) = dgSunriseOvercastSkybox2Tex; -#endif - -#define dgSunriseOvercastSkybox3Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseOvercastSkybox3Tex[] = dgSunriseOvercastSkybox3Tex; -#else -static const char gSunriseOvercastSkybox3Tex[] __attribute__((aligned (2))) = dgSunriseOvercastSkybox3Tex; -#endif - -#define dgSunriseOvercastSkybox4Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseOvercastSkybox4Tex[] = dgSunriseOvercastSkybox4Tex; -#else -static const char gSunriseOvercastSkybox4Tex[] __attribute__((aligned (2))) = dgSunriseOvercastSkybox4Tex; -#endif - -#define dgSunriseOvercastSkybox5Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseOvercastSkybox5Tex[] = dgSunriseOvercastSkybox5Tex; -#else -static const char gSunriseOvercastSkybox5Tex[] __attribute__((aligned (2))) = dgSunriseOvercastSkybox5Tex; -#endif - +#include "align_asset_macro.h" + +#define dgSunriseOvercastSkybox1Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox1Tex" +static const ALIGN_ASSET(2) char gSunriseOvercastSkybox1Tex[] = dgSunriseOvercastSkybox1Tex; + +#define dgSunriseOvercastSkybox2Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox2Tex" +static const ALIGN_ASSET(2) char gSunriseOvercastSkybox2Tex[] = dgSunriseOvercastSkybox2Tex; + +#define dgSunriseOvercastSkybox3Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox3Tex" +static const ALIGN_ASSET(2) char gSunriseOvercastSkybox3Tex[] = dgSunriseOvercastSkybox3Tex; + +#define dgSunriseOvercastSkybox4Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox4Tex" +static const ALIGN_ASSET(2) char gSunriseOvercastSkybox4Tex[] = dgSunriseOvercastSkybox4Tex; + +#define dgSunriseOvercastSkybox5Tex "__OTR__textures/vr_cloud0_static/gSunriseOvercastSkybox5Tex" +static const ALIGN_ASSET(2) char gSunriseOvercastSkybox5Tex[] = dgSunriseOvercastSkybox5Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_cloud1_pal_static.h b/soh/assets/textures/skyboxes/vr_cloud1_pal_static.h index 8fba1239c..3456690e7 100644 --- a/soh/assets/textures/skyboxes/vr_cloud1_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_cloud1_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgDayOvercastSkyboxTLUT "__OTR__textures/vr_cloud1_pal_static/gDayOvercastSkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gDayOvercastSkyboxTLUT[] = dgDayOvercastSkyboxTLUT; -#else -static const char gDayOvercastSkyboxTLUT[] __attribute__((aligned (2))) = dgDayOvercastSkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgDayOvercastSkyboxTLUT "__OTR__textures/vr_cloud1_pal_static/gDayOvercastSkyboxTLUT" +static const ALIGN_ASSET(2) char gDayOvercastSkyboxTLUT[] = dgDayOvercastSkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_cloud1_static.h b/soh/assets/textures/skyboxes/vr_cloud1_static.h index 8ae69d51f..5b8064785 100644 --- a/soh/assets/textures/skyboxes/vr_cloud1_static.h +++ b/soh/assets/textures/skyboxes/vr_cloud1_static.h @@ -1,37 +1,18 @@ #pragma once -#define dgDayOvercastSkybox1Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDayOvercastSkybox1Tex[] = dgDayOvercastSkybox1Tex; -#else -static const char gDayOvercastSkybox1Tex[] __attribute__((aligned (2))) = dgDayOvercastSkybox1Tex; -#endif - -#define dgDayOvercastSkybox2Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDayOvercastSkybox2Tex[] = dgDayOvercastSkybox2Tex; -#else -static const char gDayOvercastSkybox2Tex[] __attribute__((aligned (2))) = dgDayOvercastSkybox2Tex; -#endif - -#define dgDayOvercastSkybox3Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDayOvercastSkybox3Tex[] = dgDayOvercastSkybox3Tex; -#else -static const char gDayOvercastSkybox3Tex[] __attribute__((aligned (2))) = dgDayOvercastSkybox3Tex; -#endif - -#define dgDayOvercastSkybox4Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDayOvercastSkybox4Tex[] = dgDayOvercastSkybox4Tex; -#else -static const char gDayOvercastSkybox4Tex[] __attribute__((aligned (2))) = dgDayOvercastSkybox4Tex; -#endif - -#define dgDayOvercastSkybox5Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDayOvercastSkybox5Tex[] = dgDayOvercastSkybox5Tex; -#else -static const char gDayOvercastSkybox5Tex[] __attribute__((aligned (2))) = dgDayOvercastSkybox5Tex; -#endif - +#include "align_asset_macro.h" + +#define dgDayOvercastSkybox1Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox1Tex" +static const ALIGN_ASSET(2) char gDayOvercastSkybox1Tex[] = dgDayOvercastSkybox1Tex; + +#define dgDayOvercastSkybox2Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox2Tex" +static const ALIGN_ASSET(2) char gDayOvercastSkybox2Tex[] = dgDayOvercastSkybox2Tex; + +#define dgDayOvercastSkybox3Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox3Tex" +static const ALIGN_ASSET(2) char gDayOvercastSkybox3Tex[] = dgDayOvercastSkybox3Tex; + +#define dgDayOvercastSkybox4Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox4Tex" +static const ALIGN_ASSET(2) char gDayOvercastSkybox4Tex[] = dgDayOvercastSkybox4Tex; + +#define dgDayOvercastSkybox5Tex "__OTR__textures/vr_cloud1_static/gDayOvercastSkybox5Tex" +static const ALIGN_ASSET(2) char gDayOvercastSkybox5Tex[] = dgDayOvercastSkybox5Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_cloud2_pal_static.h b/soh/assets/textures/skyboxes/vr_cloud2_pal_static.h index 2c86a1679..322c42034 100644 --- a/soh/assets/textures/skyboxes/vr_cloud2_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_cloud2_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgSunsetOvercastSkyboxTLUT "__OTR__textures/vr_cloud2_pal_static/gSunsetOvercastSkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetOvercastSkyboxTLUT[] = dgSunsetOvercastSkyboxTLUT; -#else -static const char gSunsetOvercastSkyboxTLUT[] __attribute__((aligned (2))) = dgSunsetOvercastSkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgSunsetOvercastSkyboxTLUT "__OTR__textures/vr_cloud2_pal_static/gSunsetOvercastSkyboxTLUT" +static const ALIGN_ASSET(2) char gSunsetOvercastSkyboxTLUT[] = dgSunsetOvercastSkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_cloud2_static.h b/soh/assets/textures/skyboxes/vr_cloud2_static.h index 2d3f56517..20925a95a 100644 --- a/soh/assets/textures/skyboxes/vr_cloud2_static.h +++ b/soh/assets/textures/skyboxes/vr_cloud2_static.h @@ -1,37 +1,18 @@ #pragma once -#define dgSunsetOvercastSkybox1Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetOvercastSkybox1Tex[] = dgSunsetOvercastSkybox1Tex; -#else -static const char gSunsetOvercastSkybox1Tex[] __attribute__((aligned (2))) = dgSunsetOvercastSkybox1Tex; -#endif - -#define dgSunsetOvercastSkybox2Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetOvercastSkybox2Tex[] = dgSunsetOvercastSkybox2Tex; -#else -static const char gSunsetOvercastSkybox2Tex[] __attribute__((aligned (2))) = dgSunsetOvercastSkybox2Tex; -#endif - -#define dgSunsetOvercastSkybox3Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetOvercastSkybox3Tex[] = dgSunsetOvercastSkybox3Tex; -#else -static const char gSunsetOvercastSkybox3Tex[] __attribute__((aligned (2))) = dgSunsetOvercastSkybox3Tex; -#endif - -#define dgSunsetOvercastSkybox4Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetOvercastSkybox4Tex[] = dgSunsetOvercastSkybox4Tex; -#else -static const char gSunsetOvercastSkybox4Tex[] __attribute__((aligned (2))) = dgSunsetOvercastSkybox4Tex; -#endif - -#define dgSunsetOvercastSkybox5Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetOvercastSkybox5Tex[] = dgSunsetOvercastSkybox5Tex; -#else -static const char gSunsetOvercastSkybox5Tex[] __attribute__((aligned (2))) = dgSunsetOvercastSkybox5Tex; -#endif - +#include "align_asset_macro.h" + +#define dgSunsetOvercastSkybox1Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox1Tex" +static const ALIGN_ASSET(2) char gSunsetOvercastSkybox1Tex[] = dgSunsetOvercastSkybox1Tex; + +#define dgSunsetOvercastSkybox2Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox2Tex" +static const ALIGN_ASSET(2) char gSunsetOvercastSkybox2Tex[] = dgSunsetOvercastSkybox2Tex; + +#define dgSunsetOvercastSkybox3Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox3Tex" +static const ALIGN_ASSET(2) char gSunsetOvercastSkybox3Tex[] = dgSunsetOvercastSkybox3Tex; + +#define dgSunsetOvercastSkybox4Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox4Tex" +static const ALIGN_ASSET(2) char gSunsetOvercastSkybox4Tex[] = dgSunsetOvercastSkybox4Tex; + +#define dgSunsetOvercastSkybox5Tex "__OTR__textures/vr_cloud2_static/gSunsetOvercastSkybox5Tex" +static const ALIGN_ASSET(2) char gSunsetOvercastSkybox5Tex[] = dgSunsetOvercastSkybox5Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_cloud3_pal_static.h b/soh/assets/textures/skyboxes/vr_cloud3_pal_static.h index 99d76c5c0..4b765a997 100644 --- a/soh/assets/textures/skyboxes/vr_cloud3_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_cloud3_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgNightOvercastSkyboxTLUT "__OTR__textures/vr_cloud3_pal_static/gNightOvercastSkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightOvercastSkyboxTLUT[] = dgNightOvercastSkyboxTLUT; -#else -static const char gNightOvercastSkyboxTLUT[] __attribute__((aligned (2))) = dgNightOvercastSkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgNightOvercastSkyboxTLUT "__OTR__textures/vr_cloud3_pal_static/gNightOvercastSkyboxTLUT" +static const ALIGN_ASSET(2) char gNightOvercastSkyboxTLUT[] = dgNightOvercastSkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_cloud3_static.h b/soh/assets/textures/skyboxes/vr_cloud3_static.h index 231f01fda..a6e5eff64 100644 --- a/soh/assets/textures/skyboxes/vr_cloud3_static.h +++ b/soh/assets/textures/skyboxes/vr_cloud3_static.h @@ -1,37 +1,18 @@ #pragma once -#define dgNightOvercastSkybox1Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightOvercastSkybox1Tex[] = dgNightOvercastSkybox1Tex; -#else -static const char gNightOvercastSkybox1Tex[] __attribute__((aligned (2))) = dgNightOvercastSkybox1Tex; -#endif - -#define dgNightOvercastSkybox2Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightOvercastSkybox2Tex[] = dgNightOvercastSkybox2Tex; -#else -static const char gNightOvercastSkybox2Tex[] __attribute__((aligned (2))) = dgNightOvercastSkybox2Tex; -#endif - -#define dgNightOvercastSkybox3Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightOvercastSkybox3Tex[] = dgNightOvercastSkybox3Tex; -#else -static const char gNightOvercastSkybox3Tex[] __attribute__((aligned (2))) = dgNightOvercastSkybox3Tex; -#endif - -#define dgNightOvercastSkybox4Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightOvercastSkybox4Tex[] = dgNightOvercastSkybox4Tex; -#else -static const char gNightOvercastSkybox4Tex[] __attribute__((aligned (2))) = dgNightOvercastSkybox4Tex; -#endif - -#define dgNightOvercastSkybox5Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightOvercastSkybox5Tex[] = dgNightOvercastSkybox5Tex; -#else -static const char gNightOvercastSkybox5Tex[] __attribute__((aligned (2))) = dgNightOvercastSkybox5Tex; -#endif - +#include "align_asset_macro.h" + +#define dgNightOvercastSkybox1Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox1Tex" +static const ALIGN_ASSET(2) char gNightOvercastSkybox1Tex[] = dgNightOvercastSkybox1Tex; + +#define dgNightOvercastSkybox2Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox2Tex" +static const ALIGN_ASSET(2) char gNightOvercastSkybox2Tex[] = dgNightOvercastSkybox2Tex; + +#define dgNightOvercastSkybox3Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox3Tex" +static const ALIGN_ASSET(2) char gNightOvercastSkybox3Tex[] = dgNightOvercastSkybox3Tex; + +#define dgNightOvercastSkybox4Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox4Tex" +static const ALIGN_ASSET(2) char gNightOvercastSkybox4Tex[] = dgNightOvercastSkybox4Tex; + +#define dgNightOvercastSkybox5Tex "__OTR__textures/vr_cloud3_static/gNightOvercastSkybox5Tex" +static const ALIGN_ASSET(2) char gNightOvercastSkybox5Tex[] = dgNightOvercastSkybox5Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_fine0_pal_static.h b/soh/assets/textures/skyboxes/vr_fine0_pal_static.h index dcfdbc085..4f1f3dc9b 100644 --- a/soh/assets/textures/skyboxes/vr_fine0_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_fine0_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgSunriseSkyboxTLUT "__OTR__textures/vr_fine0_pal_static/gSunriseSkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseSkyboxTLUT[] = dgSunriseSkyboxTLUT; -#else -static const char gSunriseSkyboxTLUT[] __attribute__((aligned (2))) = dgSunriseSkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgSunriseSkyboxTLUT "__OTR__textures/vr_fine0_pal_static/gSunriseSkyboxTLUT" +static const ALIGN_ASSET(2) char gSunriseSkyboxTLUT[] = dgSunriseSkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_fine0_static.h b/soh/assets/textures/skyboxes/vr_fine0_static.h index 10efecf5c..b91350dab 100644 --- a/soh/assets/textures/skyboxes/vr_fine0_static.h +++ b/soh/assets/textures/skyboxes/vr_fine0_static.h @@ -1,37 +1,18 @@ #pragma once -#define dgSunriseSkybox1Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseSkybox1Tex[] = dgSunriseSkybox1Tex; -#else -static const char gSunriseSkybox1Tex[] __attribute__((aligned (2))) = dgSunriseSkybox1Tex; -#endif - -#define dgSunriseSkybox2Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseSkybox2Tex[] = dgSunriseSkybox2Tex; -#else -static const char gSunriseSkybox2Tex[] __attribute__((aligned (2))) = dgSunriseSkybox2Tex; -#endif - -#define dgSunriseSkybox3Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseSkybox3Tex[] = dgSunriseSkybox3Tex; -#else -static const char gSunriseSkybox3Tex[] __attribute__((aligned (2))) = dgSunriseSkybox3Tex; -#endif - -#define dgSunriseSkybox4Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseSkybox4Tex[] = dgSunriseSkybox4Tex; -#else -static const char gSunriseSkybox4Tex[] __attribute__((aligned (2))) = dgSunriseSkybox4Tex; -#endif - -#define dgSunriseSkybox5Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunriseSkybox5Tex[] = dgSunriseSkybox5Tex; -#else -static const char gSunriseSkybox5Tex[] __attribute__((aligned (2))) = dgSunriseSkybox5Tex; -#endif - +#include "align_asset_macro.h" + +#define dgSunriseSkybox1Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox1Tex" +static const ALIGN_ASSET(2) char gSunriseSkybox1Tex[] = dgSunriseSkybox1Tex; + +#define dgSunriseSkybox2Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox2Tex" +static const ALIGN_ASSET(2) char gSunriseSkybox2Tex[] = dgSunriseSkybox2Tex; + +#define dgSunriseSkybox3Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox3Tex" +static const ALIGN_ASSET(2) char gSunriseSkybox3Tex[] = dgSunriseSkybox3Tex; + +#define dgSunriseSkybox4Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox4Tex" +static const ALIGN_ASSET(2) char gSunriseSkybox4Tex[] = dgSunriseSkybox4Tex; + +#define dgSunriseSkybox5Tex "__OTR__textures/vr_fine0_static/gSunriseSkybox5Tex" +static const ALIGN_ASSET(2) char gSunriseSkybox5Tex[] = dgSunriseSkybox5Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_fine1_pal_static.h b/soh/assets/textures/skyboxes/vr_fine1_pal_static.h index 5fbe27b0f..bba21d387 100644 --- a/soh/assets/textures/skyboxes/vr_fine1_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_fine1_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgDaySkyboxTLUT "__OTR__textures/vr_fine1_pal_static/gDaySkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaySkyboxTLUT[] = dgDaySkyboxTLUT; -#else -static const char gDaySkyboxTLUT[] __attribute__((aligned (2))) = dgDaySkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgDaySkyboxTLUT "__OTR__textures/vr_fine1_pal_static/gDaySkyboxTLUT" +static const ALIGN_ASSET(2) char gDaySkyboxTLUT[] = dgDaySkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_fine1_static.h b/soh/assets/textures/skyboxes/vr_fine1_static.h index 4c5dd6f8c..70dc20064 100644 --- a/soh/assets/textures/skyboxes/vr_fine1_static.h +++ b/soh/assets/textures/skyboxes/vr_fine1_static.h @@ -1,37 +1,18 @@ #pragma once -#define dgDaySkybox1Tex "__OTR__textures/vr_fine1_static/gDaySkybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaySkybox1Tex[] = dgDaySkybox1Tex; -#else -static const char gDaySkybox1Tex[] __attribute__((aligned (2))) = dgDaySkybox1Tex; -#endif - -#define dgDaySkybox2Tex "__OTR__textures/vr_fine1_static/gDaySkybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaySkybox2Tex[] = dgDaySkybox2Tex; -#else -static const char gDaySkybox2Tex[] __attribute__((aligned (2))) = dgDaySkybox2Tex; -#endif - -#define dgDaySkybox3Tex "__OTR__textures/vr_fine1_static/gDaySkybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaySkybox3Tex[] = dgDaySkybox3Tex; -#else -static const char gDaySkybox3Tex[] __attribute__((aligned (2))) = dgDaySkybox3Tex; -#endif - -#define dgDaySkybox4Tex "__OTR__textures/vr_fine1_static/gDaySkybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaySkybox4Tex[] = dgDaySkybox4Tex; -#else -static const char gDaySkybox4Tex[] __attribute__((aligned (2))) = dgDaySkybox4Tex; -#endif - -#define dgDaySkybox5Tex "__OTR__textures/vr_fine1_static/gDaySkybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gDaySkybox5Tex[] = dgDaySkybox5Tex; -#else -static const char gDaySkybox5Tex[] __attribute__((aligned (2))) = dgDaySkybox5Tex; -#endif - +#include "align_asset_macro.h" + +#define dgDaySkybox1Tex "__OTR__textures/vr_fine1_static/gDaySkybox1Tex" +static const ALIGN_ASSET(2) char gDaySkybox1Tex[] = dgDaySkybox1Tex; + +#define dgDaySkybox2Tex "__OTR__textures/vr_fine1_static/gDaySkybox2Tex" +static const ALIGN_ASSET(2) char gDaySkybox2Tex[] = dgDaySkybox2Tex; + +#define dgDaySkybox3Tex "__OTR__textures/vr_fine1_static/gDaySkybox3Tex" +static const ALIGN_ASSET(2) char gDaySkybox3Tex[] = dgDaySkybox3Tex; + +#define dgDaySkybox4Tex "__OTR__textures/vr_fine1_static/gDaySkybox4Tex" +static const ALIGN_ASSET(2) char gDaySkybox4Tex[] = dgDaySkybox4Tex; + +#define dgDaySkybox5Tex "__OTR__textures/vr_fine1_static/gDaySkybox5Tex" +static const ALIGN_ASSET(2) char gDaySkybox5Tex[] = dgDaySkybox5Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_fine2_pal_static.h b/soh/assets/textures/skyboxes/vr_fine2_pal_static.h index 705a9baa3..2f69da6b1 100644 --- a/soh/assets/textures/skyboxes/vr_fine2_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_fine2_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgSunsetSkyboxTLUT "__OTR__textures/vr_fine2_pal_static/gSunsetSkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetSkyboxTLUT[] = dgSunsetSkyboxTLUT; -#else -static const char gSunsetSkyboxTLUT[] __attribute__((aligned (2))) = dgSunsetSkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgSunsetSkyboxTLUT "__OTR__textures/vr_fine2_pal_static/gSunsetSkyboxTLUT" +static const ALIGN_ASSET(2) char gSunsetSkyboxTLUT[] = dgSunsetSkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_fine2_static.h b/soh/assets/textures/skyboxes/vr_fine2_static.h index 62e6f2269..5c1bbefcd 100644 --- a/soh/assets/textures/skyboxes/vr_fine2_static.h +++ b/soh/assets/textures/skyboxes/vr_fine2_static.h @@ -1,37 +1,18 @@ #pragma once -#define dgSunsetSkybox1Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetSkybox1Tex[] = dgSunsetSkybox1Tex; -#else -static const char gSunsetSkybox1Tex[] __attribute__((aligned (2))) = dgSunsetSkybox1Tex; -#endif - -#define dgSunsetSkybox2Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetSkybox2Tex[] = dgSunsetSkybox2Tex; -#else -static const char gSunsetSkybox2Tex[] __attribute__((aligned (2))) = dgSunsetSkybox2Tex; -#endif - -#define dgSunsetSkybox3Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetSkybox3Tex[] = dgSunsetSkybox3Tex; -#else -static const char gSunsetSkybox3Tex[] __attribute__((aligned (2))) = dgSunsetSkybox3Tex; -#endif - -#define dgSunsetSkybox4Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetSkybox4Tex[] = dgSunsetSkybox4Tex; -#else -static const char gSunsetSkybox4Tex[] __attribute__((aligned (2))) = dgSunsetSkybox4Tex; -#endif - -#define dgSunsetSkybox5Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gSunsetSkybox5Tex[] = dgSunsetSkybox5Tex; -#else -static const char gSunsetSkybox5Tex[] __attribute__((aligned (2))) = dgSunsetSkybox5Tex; -#endif - +#include "align_asset_macro.h" + +#define dgSunsetSkybox1Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox1Tex" +static const ALIGN_ASSET(2) char gSunsetSkybox1Tex[] = dgSunsetSkybox1Tex; + +#define dgSunsetSkybox2Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox2Tex" +static const ALIGN_ASSET(2) char gSunsetSkybox2Tex[] = dgSunsetSkybox2Tex; + +#define dgSunsetSkybox3Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox3Tex" +static const ALIGN_ASSET(2) char gSunsetSkybox3Tex[] = dgSunsetSkybox3Tex; + +#define dgSunsetSkybox4Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox4Tex" +static const ALIGN_ASSET(2) char gSunsetSkybox4Tex[] = dgSunsetSkybox4Tex; + +#define dgSunsetSkybox5Tex "__OTR__textures/vr_fine2_static/gSunsetSkybox5Tex" +static const ALIGN_ASSET(2) char gSunsetSkybox5Tex[] = dgSunsetSkybox5Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_fine3_pal_static.h b/soh/assets/textures/skyboxes/vr_fine3_pal_static.h index 6319a764d..a6abc1794 100644 --- a/soh/assets/textures/skyboxes/vr_fine3_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_fine3_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgNightSkyboxTLUT "__OTR__textures/vr_fine3_pal_static/gNightSkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightSkyboxTLUT[] = dgNightSkyboxTLUT; -#else -static const char gNightSkyboxTLUT[] __attribute__((aligned (2))) = dgNightSkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgNightSkyboxTLUT "__OTR__textures/vr_fine3_pal_static/gNightSkyboxTLUT" +static const ALIGN_ASSET(2) char gNightSkyboxTLUT[] = dgNightSkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_fine3_static.h b/soh/assets/textures/skyboxes/vr_fine3_static.h index 4a93aa099..8e78406e4 100644 --- a/soh/assets/textures/skyboxes/vr_fine3_static.h +++ b/soh/assets/textures/skyboxes/vr_fine3_static.h @@ -1,37 +1,18 @@ #pragma once -#define dgNightSkybox1Tex "__OTR__textures/vr_fine3_static/gNightSkybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightSkybox1Tex[] = dgNightSkybox1Tex; -#else -static const char gNightSkybox1Tex[] __attribute__((aligned (2))) = dgNightSkybox1Tex; -#endif - -#define dgNightSkybox2Tex "__OTR__textures/vr_fine3_static/gNightSkybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightSkybox2Tex[] = dgNightSkybox2Tex; -#else -static const char gNightSkybox2Tex[] __attribute__((aligned (2))) = dgNightSkybox2Tex; -#endif - -#define dgNightSkybox3Tex "__OTR__textures/vr_fine3_static/gNightSkybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightSkybox3Tex[] = dgNightSkybox3Tex; -#else -static const char gNightSkybox3Tex[] __attribute__((aligned (2))) = dgNightSkybox3Tex; -#endif - -#define dgNightSkybox4Tex "__OTR__textures/vr_fine3_static/gNightSkybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightSkybox4Tex[] = dgNightSkybox4Tex; -#else -static const char gNightSkybox4Tex[] __attribute__((aligned (2))) = dgNightSkybox4Tex; -#endif - -#define dgNightSkybox5Tex "__OTR__textures/vr_fine3_static/gNightSkybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gNightSkybox5Tex[] = dgNightSkybox5Tex; -#else -static const char gNightSkybox5Tex[] __attribute__((aligned (2))) = dgNightSkybox5Tex; -#endif - +#include "align_asset_macro.h" + +#define dgNightSkybox1Tex "__OTR__textures/vr_fine3_static/gNightSkybox1Tex" +static const ALIGN_ASSET(2) char gNightSkybox1Tex[] = dgNightSkybox1Tex; + +#define dgNightSkybox2Tex "__OTR__textures/vr_fine3_static/gNightSkybox2Tex" +static const ALIGN_ASSET(2) char gNightSkybox2Tex[] = dgNightSkybox2Tex; + +#define dgNightSkybox3Tex "__OTR__textures/vr_fine3_static/gNightSkybox3Tex" +static const ALIGN_ASSET(2) char gNightSkybox3Tex[] = dgNightSkybox3Tex; + +#define dgNightSkybox4Tex "__OTR__textures/vr_fine3_static/gNightSkybox4Tex" +static const ALIGN_ASSET(2) char gNightSkybox4Tex[] = dgNightSkybox4Tex; + +#define dgNightSkybox5Tex "__OTR__textures/vr_fine3_static/gNightSkybox5Tex" +static const ALIGN_ASSET(2) char gNightSkybox5Tex[] = dgNightSkybox5Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_holy0_pal_static.h b/soh/assets/textures/skyboxes/vr_holy0_pal_static.h index 8b0dc11cb..f7f061630 100644 --- a/soh/assets/textures/skyboxes/vr_holy0_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_holy0_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgHoly0SkyboxTLUT "__OTR__textures/vr_holy0_pal_static/gHoly0SkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly0SkyboxTLUT[] = dgHoly0SkyboxTLUT; -#else -static const char gHoly0SkyboxTLUT[] __attribute__((aligned (2))) = dgHoly0SkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgHoly0SkyboxTLUT "__OTR__textures/vr_holy0_pal_static/gHoly0SkyboxTLUT" +static const ALIGN_ASSET(2) char gHoly0SkyboxTLUT[] = dgHoly0SkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_holy0_static.h b/soh/assets/textures/skyboxes/vr_holy0_static.h index d095d95dd..9d6c83406 100644 --- a/soh/assets/textures/skyboxes/vr_holy0_static.h +++ b/soh/assets/textures/skyboxes/vr_holy0_static.h @@ -1,44 +1,21 @@ #pragma once -#define dgHoly0Skybox1Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly0Skybox1Tex[] = dgHoly0Skybox1Tex; -#else -static const char gHoly0Skybox1Tex[] __attribute__((aligned (2))) = dgHoly0Skybox1Tex; -#endif - -#define dgHoly0Skybox2Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly0Skybox2Tex[] = dgHoly0Skybox2Tex; -#else -static const char gHoly0Skybox2Tex[] __attribute__((aligned (2))) = dgHoly0Skybox2Tex; -#endif - -#define dgHoly0Skybox3Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly0Skybox3Tex[] = dgHoly0Skybox3Tex; -#else -static const char gHoly0Skybox3Tex[] __attribute__((aligned (2))) = dgHoly0Skybox3Tex; -#endif - -#define dgHoly0Skybox4Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly0Skybox4Tex[] = dgHoly0Skybox4Tex; -#else -static const char gHoly0Skybox4Tex[] __attribute__((aligned (2))) = dgHoly0Skybox4Tex; -#endif - -#define dgHoly0Skybox5Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly0Skybox5Tex[] = dgHoly0Skybox5Tex; -#else -static const char gHoly0Skybox5Tex[] __attribute__((aligned (2))) = dgHoly0Skybox5Tex; -#endif - -#define dgHoly0Skybox6Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly0Skybox6Tex[] = dgHoly0Skybox6Tex; -#else -static const char gHoly0Skybox6Tex[] __attribute__((aligned (2))) = dgHoly0Skybox6Tex; -#endif - +#include "align_asset_macro.h" + +#define dgHoly0Skybox1Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox1Tex" +static const ALIGN_ASSET(2) char gHoly0Skybox1Tex[] = dgHoly0Skybox1Tex; + +#define dgHoly0Skybox2Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox2Tex" +static const ALIGN_ASSET(2) char gHoly0Skybox2Tex[] = dgHoly0Skybox2Tex; + +#define dgHoly0Skybox3Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox3Tex" +static const ALIGN_ASSET(2) char gHoly0Skybox3Tex[] = dgHoly0Skybox3Tex; + +#define dgHoly0Skybox4Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox4Tex" +static const ALIGN_ASSET(2) char gHoly0Skybox4Tex[] = dgHoly0Skybox4Tex; + +#define dgHoly0Skybox5Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox5Tex" +static const ALIGN_ASSET(2) char gHoly0Skybox5Tex[] = dgHoly0Skybox5Tex; + +#define dgHoly0Skybox6Tex "__OTR__textures/vr_holy0_static/gHoly0Skybox6Tex" +static const ALIGN_ASSET(2) char gHoly0Skybox6Tex[] = dgHoly0Skybox6Tex; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_holy1_pal_static.h b/soh/assets/textures/skyboxes/vr_holy1_pal_static.h index 7ba21d585..80ae2edd1 100644 --- a/soh/assets/textures/skyboxes/vr_holy1_pal_static.h +++ b/soh/assets/textures/skyboxes/vr_holy1_pal_static.h @@ -1,9 +1,6 @@ #pragma once -#define dgHoly1SkyboxTLUT "__OTR__textures/vr_holy1_pal_static/gHoly1SkyboxTLUT" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly1SkyboxTLUT[] = dgHoly1SkyboxTLUT; -#else -static const char gHoly1SkyboxTLUT[] __attribute__((aligned (2))) = dgHoly1SkyboxTLUT; -#endif - +#include "align_asset_macro.h" + +#define dgHoly1SkyboxTLUT "__OTR__textures/vr_holy1_pal_static/gHoly1SkyboxTLUT" +static const ALIGN_ASSET(2) char gHoly1SkyboxTLUT[] = dgHoly1SkyboxTLUT; \ No newline at end of file diff --git a/soh/assets/textures/skyboxes/vr_holy1_static.h b/soh/assets/textures/skyboxes/vr_holy1_static.h index 31aead477..61321ac25 100644 --- a/soh/assets/textures/skyboxes/vr_holy1_static.h +++ b/soh/assets/textures/skyboxes/vr_holy1_static.h @@ -1,44 +1,21 @@ #pragma once -#define dgHoly1Skybox1Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly1Skybox1Tex[] = dgHoly1Skybox1Tex; -#else -static const char gHoly1Skybox1Tex[] __attribute__((aligned (2))) = dgHoly1Skybox1Tex; -#endif - -#define dgHoly1Skybox2Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly1Skybox2Tex[] = dgHoly1Skybox2Tex; -#else -static const char gHoly1Skybox2Tex[] __attribute__((aligned (2))) = dgHoly1Skybox2Tex; -#endif - -#define dgHoly1Skybox3Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly1Skybox3Tex[] = dgHoly1Skybox3Tex; -#else -static const char gHoly1Skybox3Tex[] __attribute__((aligned (2))) = dgHoly1Skybox3Tex; -#endif - -#define dgHoly1Skybox4Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly1Skybox4Tex[] = dgHoly1Skybox4Tex; -#else -static const char gHoly1Skybox4Tex[] __attribute__((aligned (2))) = dgHoly1Skybox4Tex; -#endif - -#define dgHoly1Skybox5Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly1Skybox5Tex[] = dgHoly1Skybox5Tex; -#else -static const char gHoly1Skybox5Tex[] __attribute__((aligned (2))) = dgHoly1Skybox5Tex; -#endif - -#define dgHoly1Skybox6Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gHoly1Skybox6Tex[] = dgHoly1Skybox6Tex; -#else -static const char gHoly1Skybox6Tex[] __attribute__((aligned (2))) = dgHoly1Skybox6Tex; -#endif - +#include "align_asset_macro.h" + +#define dgHoly1Skybox1Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox1Tex" +static const ALIGN_ASSET(2) char gHoly1Skybox1Tex[] = dgHoly1Skybox1Tex; + +#define dgHoly1Skybox2Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox2Tex" +static const ALIGN_ASSET(2) char gHoly1Skybox2Tex[] = dgHoly1Skybox2Tex; + +#define dgHoly1Skybox3Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox3Tex" +static const ALIGN_ASSET(2) char gHoly1Skybox3Tex[] = dgHoly1Skybox3Tex; + +#define dgHoly1Skybox4Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox4Tex" +static const ALIGN_ASSET(2) char gHoly1Skybox4Tex[] = dgHoly1Skybox4Tex; + +#define dgHoly1Skybox5Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox5Tex" +static const ALIGN_ASSET(2) char gHoly1Skybox5Tex[] = dgHoly1Skybox5Tex; + +#define dgHoly1Skybox6Tex "__OTR__textures/vr_holy1_static/gHoly1Skybox6Tex" +static const ALIGN_ASSET(2) char gHoly1Skybox6Tex[] = dgHoly1Skybox6Tex; \ No newline at end of file diff --git a/soh/assets/textures/title_static/title_static.h b/soh/assets/textures/title_static/title_static.h index 5ab8cff73..6cccc5744 100644 --- a/soh/assets/textures/title_static/title_static.h +++ b/soh/assets/textures/title_static/title_static.h @@ -1,1038 +1,447 @@ #pragma once -#define dgFileSelConnectorTex "__OTR__textures/title_static/gFileSelConnectorTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelConnectorTex[] = dgFileSelConnectorTex; -#else -static const char gFileSelConnectorTex[] __attribute__((aligned (2))) = dgFileSelConnectorTex; -#endif - -#define dgFileSelForestMedallionTex "__OTR__textures/title_static/gFileSelForestMedallionTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelForestMedallionTex[] = dgFileSelForestMedallionTex; -#else -static const char gFileSelForestMedallionTex[] __attribute__((aligned (2))) = dgFileSelForestMedallionTex; -#endif - -#define dgFileSelFireMedallionTex "__OTR__textures/title_static/gFileSelFireMedallionTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFireMedallionTex[] = dgFileSelFireMedallionTex; -#else -static const char gFileSelFireMedallionTex[] __attribute__((aligned (2))) = dgFileSelFireMedallionTex; -#endif - -#define dgFileSelWaterMedallionTex "__OTR__textures/title_static/gFileSelWaterMedallionTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWaterMedallionTex[] = dgFileSelWaterMedallionTex; -#else -static const char gFileSelWaterMedallionTex[] __attribute__((aligned (2))) = dgFileSelWaterMedallionTex; -#endif - -#define dgFileSelSpiritMedallionTex "__OTR__textures/title_static/gFileSelSpiritMedallionTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSpiritMedallionTex[] = dgFileSelSpiritMedallionTex; -#else -static const char gFileSelSpiritMedallionTex[] __attribute__((aligned (2))) = dgFileSelSpiritMedallionTex; -#endif - -#define dgFileSelShadowMedallionTex "__OTR__textures/title_static/gFileSelShadowMedallionTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelShadowMedallionTex[] = dgFileSelShadowMedallionTex; -#else -static const char gFileSelShadowMedallionTex[] __attribute__((aligned (2))) = dgFileSelShadowMedallionTex; -#endif - -#define dgFileSelLightMedallionTex "__OTR__textures/title_static/gFileSelLightMedallionTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelLightMedallionTex[] = dgFileSelLightMedallionTex; -#else -static const char gFileSelLightMedallionTex[] __attribute__((aligned (2))) = dgFileSelLightMedallionTex; -#endif - -#define dgFileSelWindow1Tex "__OTR__textures/title_static/gFileSelWindow1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow1Tex[] = dgFileSelWindow1Tex; -#else -static const char gFileSelWindow1Tex[] __attribute__((aligned (2))) = dgFileSelWindow1Tex; -#endif - -#define dgFileSelWindow2Tex "__OTR__textures/title_static/gFileSelWindow2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow2Tex[] = dgFileSelWindow2Tex; -#else -static const char gFileSelWindow2Tex[] __attribute__((aligned (2))) = dgFileSelWindow2Tex; -#endif - -#define dgFileSelWindow3Tex "__OTR__textures/title_static/gFileSelWindow3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow3Tex[] = dgFileSelWindow3Tex; -#else -static const char gFileSelWindow3Tex[] __attribute__((aligned (2))) = dgFileSelWindow3Tex; -#endif - -#define dgFileSelWindow4Tex "__OTR__textures/title_static/gFileSelWindow4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow4Tex[] = dgFileSelWindow4Tex; -#else -static const char gFileSelWindow4Tex[] __attribute__((aligned (2))) = dgFileSelWindow4Tex; -#endif - -#define dgFileSelWindow5Tex "__OTR__textures/title_static/gFileSelWindow5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow5Tex[] = dgFileSelWindow5Tex; -#else -static const char gFileSelWindow5Tex[] __attribute__((aligned (2))) = dgFileSelWindow5Tex; -#endif - -#define dgFileSelWindow6Tex "__OTR__textures/title_static/gFileSelWindow6Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow6Tex[] = dgFileSelWindow6Tex; -#else -static const char gFileSelWindow6Tex[] __attribute__((aligned (2))) = dgFileSelWindow6Tex; -#endif - -#define dgFileSelWindow7Tex "__OTR__textures/title_static/gFileSelWindow7Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow7Tex[] = dgFileSelWindow7Tex; -#else -static const char gFileSelWindow7Tex[] __attribute__((aligned (2))) = dgFileSelWindow7Tex; -#endif - -#define dgFileSelWindow8Tex "__OTR__textures/title_static/gFileSelWindow8Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow8Tex[] = dgFileSelWindow8Tex; -#else -static const char gFileSelWindow8Tex[] __attribute__((aligned (2))) = dgFileSelWindow8Tex; -#endif - -#define dgFileSelWindow9Tex "__OTR__textures/title_static/gFileSelWindow9Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow9Tex[] = dgFileSelWindow9Tex; -#else -static const char gFileSelWindow9Tex[] __attribute__((aligned (2))) = dgFileSelWindow9Tex; -#endif - -#define dgFileSelWindow10Tex "__OTR__textures/title_static/gFileSelWindow10Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow10Tex[] = dgFileSelWindow10Tex; -#else -static const char gFileSelWindow10Tex[] __attribute__((aligned (2))) = dgFileSelWindow10Tex; -#endif - -#define dgFileSelWindow11Tex "__OTR__textures/title_static/gFileSelWindow11Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow11Tex[] = dgFileSelWindow11Tex; -#else -static const char gFileSelWindow11Tex[] __attribute__((aligned (2))) = dgFileSelWindow11Tex; -#endif - -#define dgFileSelWindow12Tex "__OTR__textures/title_static/gFileSelWindow12Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow12Tex[] = dgFileSelWindow12Tex; -#else -static const char gFileSelWindow12Tex[] __attribute__((aligned (2))) = dgFileSelWindow12Tex; -#endif - -#define dgFileSelWindow13Tex "__OTR__textures/title_static/gFileSelWindow13Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow13Tex[] = dgFileSelWindow13Tex; -#else -static const char gFileSelWindow13Tex[] __attribute__((aligned (2))) = dgFileSelWindow13Tex; -#endif - -#define dgFileSelWindow14Tex "__OTR__textures/title_static/gFileSelWindow14Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow14Tex[] = dgFileSelWindow14Tex; -#else -static const char gFileSelWindow14Tex[] __attribute__((aligned (2))) = dgFileSelWindow14Tex; -#endif - -#define dgFileSelWindow15Tex "__OTR__textures/title_static/gFileSelWindow15Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow15Tex[] = dgFileSelWindow15Tex; -#else -static const char gFileSelWindow15Tex[] __attribute__((aligned (2))) = dgFileSelWindow15Tex; -#endif - -#define dgFileSelWindow16Tex "__OTR__textures/title_static/gFileSelWindow16Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow16Tex[] = dgFileSelWindow16Tex; -#else -static const char gFileSelWindow16Tex[] __attribute__((aligned (2))) = dgFileSelWindow16Tex; -#endif - -#define dgFileSelWindow17Tex "__OTR__textures/title_static/gFileSelWindow17Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow17Tex[] = dgFileSelWindow17Tex; -#else -static const char gFileSelWindow17Tex[] __attribute__((aligned (2))) = dgFileSelWindow17Tex; -#endif - -#define dgFileSelWindow18Tex "__OTR__textures/title_static/gFileSelWindow18Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow18Tex[] = dgFileSelWindow18Tex; -#else -static const char gFileSelWindow18Tex[] __attribute__((aligned (2))) = dgFileSelWindow18Tex; -#endif - -#define dgFileSelWindow19Tex "__OTR__textures/title_static/gFileSelWindow19Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow19Tex[] = dgFileSelWindow19Tex; -#else -static const char gFileSelWindow19Tex[] __attribute__((aligned (2))) = dgFileSelWindow19Tex; -#endif - -#define dgFileSelWindow20Tex "__OTR__textures/title_static/gFileSelWindow20Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow20Tex[] = dgFileSelWindow20Tex; -#else -static const char gFileSelWindow20Tex[] __attribute__((aligned (2))) = dgFileSelWindow20Tex; -#endif - -#define dgFileSelKanjiButtonTex "__OTR__textures/title_static/gFileSelKanjiButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelKanjiButtonTex[] = dgFileSelKanjiButtonTex; -#else -static const char gFileSelKanjiButtonTex[] __attribute__((aligned (2))) = dgFileSelKanjiButtonTex; -#endif - -#define dgFileSelHiraganaButtonTex "__OTR__textures/title_static/gFileSelHiraganaButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelHiraganaButtonTex[] = dgFileSelHiraganaButtonTex; -#else -static const char gFileSelHiraganaButtonTex[] __attribute__((aligned (2))) = dgFileSelHiraganaButtonTex; -#endif - -#define dgFileSelKatakanaButtonTex "__OTR__textures/title_static/gFileSelKatakanaButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelKatakanaButtonTex[] = dgFileSelKatakanaButtonTex; -#else -static const char gFileSelKatakanaButtonTex[] __attribute__((aligned (2))) = dgFileSelKatakanaButtonTex; -#endif - -#define dgFileSelENDButtonENGTex "__OTR__textures/title_static/gFileSelENDButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelENDButtonENGTex[] = dgFileSelENDButtonENGTex; -#else -static const char gFileSelENDButtonENGTex[] __attribute__((aligned (2))) = dgFileSelENDButtonENGTex; -#endif - -#define dgFileSelENDButtonGERTex "__OTR__textures/title_static/gFileSelENDButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelENDButtonGERTex[] = dgFileSelENDButtonGERTex; -#else -static const char gFileSelENDButtonGERTex[] __attribute__((aligned (2))) = dgFileSelENDButtonGERTex; -#endif - -#define dgFileSelENDButtonFRATex "__OTR__textures/title_static/gFileSelENDButtonFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelENDButtonFRATex[] = dgFileSelENDButtonFRATex; -#else -static const char gFileSelENDButtonFRATex[] __attribute__((aligned (2))) = dgFileSelENDButtonFRATex; -#endif - -#define dgFileSelBackspaceButtonTex "__OTR__textures/title_static/gFileSelBackspaceButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelBackspaceButtonTex[] = dgFileSelBackspaceButtonTex; -#else -static const char gFileSelBackspaceButtonTex[] __attribute__((aligned (2))) = dgFileSelBackspaceButtonTex; -#endif - -#define dgFileSelNameBoxTex "__OTR__textures/title_static/gFileSelNameBoxTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNameBoxTex[] = dgFileSelNameBoxTex; -#else -static const char gFileSelNameBoxTex[] __attribute__((aligned (2))) = dgFileSelNameBoxTex; -#endif - -#define dgFileSelFileInfoBox1Tex "__OTR__textures/title_static/gFileSelFileInfoBox1Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileInfoBox1Tex[] = dgFileSelFileInfoBox1Tex; -#else -static const char gFileSelFileInfoBox1Tex[] __attribute__((aligned (2))) = dgFileSelFileInfoBox1Tex; -#endif - -#define dgFileSelFileInfoBox2Tex "__OTR__textures/title_static/gFileSelFileInfoBox2Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileInfoBox2Tex[] = dgFileSelFileInfoBox2Tex; -#else -static const char gFileSelFileInfoBox2Tex[] __attribute__((aligned (2))) = dgFileSelFileInfoBox2Tex; -#endif - -#define dgFileSelFileInfoBox3Tex "__OTR__textures/title_static/gFileSelFileInfoBox3Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileInfoBox3Tex[] = dgFileSelFileInfoBox3Tex; -#else -static const char gFileSelFileInfoBox3Tex[] __attribute__((aligned (2))) = dgFileSelFileInfoBox3Tex; -#endif - -#define dgFileSelFileInfoBox4Tex "__OTR__textures/title_static/gFileSelFileInfoBox4Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileInfoBox4Tex[] = dgFileSelFileInfoBox4Tex; -#else -static const char gFileSelFileInfoBox4Tex[] __attribute__((aligned (2))) = dgFileSelFileInfoBox4Tex; -#endif - -#define dgFileSelFileInfoBox5Tex "__OTR__textures/title_static/gFileSelFileInfoBox5Tex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileInfoBox5Tex[] = dgFileSelFileInfoBox5Tex; -#else -static const char gFileSelFileInfoBox5Tex[] __attribute__((aligned (2))) = dgFileSelFileInfoBox5Tex; -#endif - -#define dgFileSelDISKButtonTex "__OTR__textures/title_static/gFileSelDISKButtonTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelDISKButtonTex[] = dgFileSelDISKButtonTex; -#else -static const char gFileSelDISKButtonTex[] __attribute__((aligned (2))) = dgFileSelDISKButtonTex; -#endif - -#define dgFileSelOptionsDividerTex "__OTR__textures/title_static/gFileSelOptionsDividerTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelOptionsDividerTex[] = dgFileSelOptionsDividerTex; -#else -static const char gFileSelOptionsDividerTex[] __attribute__((aligned (2))) = dgFileSelOptionsDividerTex; -#endif - -#define dgFileSelBrightnessCheckTex "__OTR__textures/title_static/gFileSelBrightnessCheckTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelBrightnessCheckTex[] = dgFileSelBrightnessCheckTex; -#else -static const char gFileSelBrightnessCheckTex[] __attribute__((aligned (2))) = dgFileSelBrightnessCheckTex; -#endif - -#define dgFileSelBigButtonHighlightTex "__OTR__textures/title_static/gFileSelBigButtonHighlightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelBigButtonHighlightTex[] = dgFileSelBigButtonHighlightTex; -#else -static const char gFileSelBigButtonHighlightTex[] __attribute__((aligned (2))) = dgFileSelBigButtonHighlightTex; -#endif - -#define dgFileSelCharHighlightTex "__OTR__textures/title_static/gFileSelCharHighlightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCharHighlightTex[] = dgFileSelCharHighlightTex; -#else -static const char gFileSelCharHighlightTex[] __attribute__((aligned (2))) = dgFileSelCharHighlightTex; -#endif - -#define dgFileSelMediumButtonHighlightTex "__OTR__textures/title_static/gFileSelMediumButtonHighlightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelMediumButtonHighlightTex[] = dgFileSelMediumButtonHighlightTex; -#else -static const char gFileSelMediumButtonHighlightTex[] __attribute__((aligned (2))) = dgFileSelMediumButtonHighlightTex; -#endif - -#define dgFileSelSmallButtonHighlightTex "__OTR__textures/title_static/gFileSelSmallButtonHighlightTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSmallButtonHighlightTex[] = dgFileSelSmallButtonHighlightTex; -#else -static const char gFileSelSmallButtonHighlightTex[] __attribute__((aligned (2))) = dgFileSelSmallButtonHighlightTex; -#endif - -#define dgFileSelKokiriEmeraldTex "__OTR__textures/title_static/gFileSelKokiriEmeraldTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelKokiriEmeraldTex[] = dgFileSelKokiriEmeraldTex; -#else -static const char gFileSelKokiriEmeraldTex[] __attribute__((aligned (2))) = dgFileSelKokiriEmeraldTex; -#endif - -#define dgFileSelGoronRubyTex "__OTR__textures/title_static/gFileSelGoronRubyTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelGoronRubyTex[] = dgFileSelGoronRubyTex; -#else -static const char gFileSelGoronRubyTex[] __attribute__((aligned (2))) = dgFileSelGoronRubyTex; -#endif - -#define dgFileSelZoraSapphireTex "__OTR__textures/title_static/gFileSelZoraSapphireTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelZoraSapphireTex[] = dgFileSelZoraSapphireTex; -#else -static const char gFileSelZoraSapphireTex[] __attribute__((aligned (2))) = dgFileSelZoraSapphireTex; -#endif - -#define dgFileSelNoFileToCopyENGTex "__OTR__textures/title_static/gFileSelNoFileToCopyENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoFileToCopyENGTex[] = dgFileSelNoFileToCopyENGTex; -#else -static const char gFileSelNoFileToCopyENGTex[] __attribute__((aligned (2))) = dgFileSelNoFileToCopyENGTex; -#endif - -#define dgFileSelNoFileToEraseENGTex "__OTR__textures/title_static/gFileSelNoFileToEraseENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoFileToEraseENGTex[] = dgFileSelNoFileToEraseENGTex; -#else -static const char gFileSelNoFileToEraseENGTex[] __attribute__((aligned (2))) = dgFileSelNoFileToEraseENGTex; -#endif - -#define dgFileSelNoEmptyFileENGTex "__OTR__textures/title_static/gFileSelNoEmptyFileENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoEmptyFileENGTex[] = dgFileSelNoEmptyFileENGTex; -#else -static const char gFileSelNoEmptyFileENGTex[] __attribute__((aligned (2))) = dgFileSelNoEmptyFileENGTex; -#endif - -#define dgFileSelFileEmptyENGTex "__OTR__textures/title_static/gFileSelFileEmptyENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileEmptyENGTex[] = dgFileSelFileEmptyENGTex; -#else -static const char gFileSelFileEmptyENGTex[] __attribute__((aligned (2))) = dgFileSelFileEmptyENGTex; -#endif - -#define dgFileSelFileInUseENGTex "__OTR__textures/title_static/gFileSelFileInUseENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileInUseENGTex[] = dgFileSelFileInUseENGTex; -#else -static const char gFileSelFileInUseENGTex[] __attribute__((aligned (2))) = dgFileSelFileInUseENGTex; -#endif - -#define dgFileSelNoFileToCopyGERTex "__OTR__textures/title_static/gFileSelNoFileToCopyGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoFileToCopyGERTex[] = dgFileSelNoFileToCopyGERTex; -#else -static const char gFileSelNoFileToCopyGERTex[] __attribute__((aligned (2))) = dgFileSelNoFileToCopyGERTex; -#endif - -#define dgFileSelNoFileToEraseGERTex "__OTR__textures/title_static/gFileSelNoFileToEraseGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoFileToEraseGERTex[] = dgFileSelNoFileToEraseGERTex; -#else -static const char gFileSelNoFileToEraseGERTex[] __attribute__((aligned (2))) = dgFileSelNoFileToEraseGERTex; -#endif - -#define dgFileSelNoEmptyFileGERTex "__OTR__textures/title_static/gFileSelNoEmptyFileGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoEmptyFileGERTex[] = dgFileSelNoEmptyFileGERTex; -#else -static const char gFileSelNoEmptyFileGERTex[] __attribute__((aligned (2))) = dgFileSelNoEmptyFileGERTex; -#endif - -#define dgFileSelFileEmptyGERTex "__OTR__textures/title_static/gFileSelFileEmptyGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileEmptyGERTex[] = dgFileSelFileEmptyGERTex; -#else -static const char gFileSelFileEmptyGERTex[] __attribute__((aligned (2))) = dgFileSelFileEmptyGERTex; -#endif - -#define dgFileSelFileInUseGERTex "__OTR__textures/title_static/gFileSelFileInUseGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileInUseGERTex[] = dgFileSelFileInUseGERTex; -#else -static const char gFileSelFileInUseGERTex[] __attribute__((aligned (2))) = dgFileSelFileInUseGERTex; -#endif - -#define dgFileSelNoFileToCopyFRATex "__OTR__textures/title_static/gFileSelNoFileToCopyFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoFileToCopyFRATex[] = dgFileSelNoFileToCopyFRATex; -#else -static const char gFileSelNoFileToCopyFRATex[] __attribute__((aligned (2))) = dgFileSelNoFileToCopyFRATex; -#endif - -#define dgFileSelNoFileToEraseFRATex "__OTR__textures/title_static/gFileSelNoFileToEraseFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoFileToEraseFRATex[] = dgFileSelNoFileToEraseFRATex; -#else -static const char gFileSelNoFileToEraseFRATex[] __attribute__((aligned (2))) = dgFileSelNoFileToEraseFRATex; -#endif - -#define dgFileSelNoEmptyFileFRATex "__OTR__textures/title_static/gFileSelNoEmptyFileFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNoEmptyFileFRATex[] = dgFileSelNoEmptyFileFRATex; -#else -static const char gFileSelNoEmptyFileFRATex[] __attribute__((aligned (2))) = dgFileSelNoEmptyFileFRATex; -#endif - -#define dgFileSelFileEmptyFRATex "__OTR__textures/title_static/gFileSelFileEmptyFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileEmptyFRATex[] = dgFileSelFileEmptyFRATex; -#else -static const char gFileSelFileEmptyFRATex[] __attribute__((aligned (2))) = dgFileSelFileEmptyFRATex; -#endif - -#define dgFileSelFileInUseFRATex "__OTR__textures/title_static/gFileSelFileInUseFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileInUseFRATex[] = dgFileSelFileInUseFRATex; -#else -static const char gFileSelFileInUseFRATex[] __attribute__((aligned (2))) = dgFileSelFileInUseFRATex; -#endif - -#define dgFileSelCopyWhichFileENGTex "__OTR__textures/title_static/gFileSelCopyWhichFileENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCopyWhichFileENGTex[] = dgFileSelCopyWhichFileENGTex; -#else -static const char gFileSelCopyWhichFileENGTex[] __attribute__((aligned (2))) = dgFileSelCopyWhichFileENGTex; -#endif - -#define dgFileSelCopyToWhichFileENGTex "__OTR__textures/title_static/gFileSelCopyToWhichFileENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCopyToWhichFileENGTex[] = dgFileSelCopyToWhichFileENGTex; -#else -static const char gFileSelCopyToWhichFileENGTex[] __attribute__((aligned (2))) = dgFileSelCopyToWhichFileENGTex; -#endif - -#define dgFileSelAreYouSureENGTex "__OTR__textures/title_static/gFileSelAreYouSureENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelAreYouSureENGTex[] = dgFileSelAreYouSureENGTex; -#else -static const char gFileSelAreYouSureENGTex[] __attribute__((aligned (2))) = dgFileSelAreYouSureENGTex; -#endif - -#define dgFileSelFileCopiedENGTex "__OTR__textures/title_static/gFileSelFileCopiedENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileCopiedENGTex[] = dgFileSelFileCopiedENGTex; -#else -static const char gFileSelFileCopiedENGTex[] __attribute__((aligned (2))) = dgFileSelFileCopiedENGTex; -#endif - -#define dgFileSelWhichFile1GERTex "__OTR__textures/title_static/gFileSelWhichFile1GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWhichFile1GERTex[] = dgFileSelWhichFile1GERTex; -#else -static const char gFileSelWhichFile1GERTex[] __attribute__((aligned (2))) = dgFileSelWhichFile1GERTex; -#endif - -#define dgFileSelCopyToWhichFileGERTex "__OTR__textures/title_static/gFileSelCopyToWhichFileGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCopyToWhichFileGERTex[] = dgFileSelCopyToWhichFileGERTex; -#else -static const char gFileSelCopyToWhichFileGERTex[] __attribute__((aligned (2))) = dgFileSelCopyToWhichFileGERTex; -#endif - -#define dgFileSelAreYouSureGERTex "__OTR__textures/title_static/gFileSelAreYouSureGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelAreYouSureGERTex[] = dgFileSelAreYouSureGERTex; -#else -static const char gFileSelAreYouSureGERTex[] __attribute__((aligned (2))) = dgFileSelAreYouSureGERTex; -#endif - -#define dgFileSelFileCopiedGERTex "__OTR__textures/title_static/gFileSelFileCopiedGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileCopiedGERTex[] = dgFileSelFileCopiedGERTex; -#else -static const char gFileSelFileCopiedGERTex[] __attribute__((aligned (2))) = dgFileSelFileCopiedGERTex; -#endif - -#define dgFileSelCopyWhichFileFRATex "__OTR__textures/title_static/gFileSelCopyWhichFileFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCopyWhichFileFRATex[] = dgFileSelCopyWhichFileFRATex; -#else -static const char gFileSelCopyWhichFileFRATex[] __attribute__((aligned (2))) = dgFileSelCopyWhichFileFRATex; -#endif - -#define dgFileSelCopyToWhichFileFRATex "__OTR__textures/title_static/gFileSelCopyToWhichFileFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCopyToWhichFileFRATex[] = dgFileSelCopyToWhichFileFRATex; -#else -static const char gFileSelCopyToWhichFileFRATex[] __attribute__((aligned (2))) = dgFileSelCopyToWhichFileFRATex; -#endif - -#define dgFileSelAreYouSureFRATex "__OTR__textures/title_static/gFileSelAreYouSureFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelAreYouSureFRATex[] = dgFileSelAreYouSureFRATex; -#else -static const char gFileSelAreYouSureFRATex[] __attribute__((aligned (2))) = dgFileSelAreYouSureFRATex; -#endif - -#define dgFileSelFileCopiedFRATex "__OTR__textures/title_static/gFileSelFileCopiedFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileCopiedFRATex[] = dgFileSelFileCopiedFRATex; -#else -static const char gFileSelFileCopiedFRATex[] __attribute__((aligned (2))) = dgFileSelFileCopiedFRATex; -#endif - -#define dgFileSelPleaseSelectAFileENGTex "__OTR__textures/title_static/gFileSelPleaseSelectAFileENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelPleaseSelectAFileENGTex[] = dgFileSelPleaseSelectAFileENGTex; -#else -static const char gFileSelPleaseSelectAFileENGTex[] __attribute__((aligned (2))) = dgFileSelPleaseSelectAFileENGTex; -#endif - -#define dgFileSelOpenThisFileENGTex "__OTR__textures/title_static/gFileSelOpenThisFileENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelOpenThisFileENGTex[] = dgFileSelOpenThisFileENGTex; -#else -static const char gFileSelOpenThisFileENGTex[] __attribute__((aligned (2))) = dgFileSelOpenThisFileENGTex; -#endif - -#define dgFileSelPleaseSelectAFileGERTex "__OTR__textures/title_static/gFileSelPleaseSelectAFileGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelPleaseSelectAFileGERTex[] = dgFileSelPleaseSelectAFileGERTex; -#else -static const char gFileSelPleaseSelectAFileGERTex[] __attribute__((aligned (2))) = dgFileSelPleaseSelectAFileGERTex; -#endif - -#define dgFileSelOpenThisFileGERTex "__OTR__textures/title_static/gFileSelOpenThisFileGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelOpenThisFileGERTex[] = dgFileSelOpenThisFileGERTex; -#else -static const char gFileSelOpenThisFileGERTex[] __attribute__((aligned (2))) = dgFileSelOpenThisFileGERTex; -#endif - -#define dgFileSelPleaseSelectAFileFRATex "__OTR__textures/title_static/gFileSelPleaseSelectAFileFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelPleaseSelectAFileFRATex[] = dgFileSelPleaseSelectAFileFRATex; -#else -static const char gFileSelPleaseSelectAFileFRATex[] __attribute__((aligned (2))) = dgFileSelPleaseSelectAFileFRATex; -#endif - -#define dgFileSelOpenThisFileFRATex "__OTR__textures/title_static/gFileSelOpenThisFileFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelOpenThisFileFRATex[] = dgFileSelOpenThisFileFRATex; -#else -static const char gFileSelOpenThisFileFRATex[] __attribute__((aligned (2))) = dgFileSelOpenThisFileFRATex; -#endif - -#define dgFileSelEraseWhichFileENGTex "__OTR__textures/title_static/gFileSelEraseWhichFileENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelEraseWhichFileENGTex[] = dgFileSelEraseWhichFileENGTex; -#else -static const char gFileSelEraseWhichFileENGTex[] __attribute__((aligned (2))) = dgFileSelEraseWhichFileENGTex; -#endif - -#define dgFileSelAreYouSure2ENGTex "__OTR__textures/title_static/gFileSelAreYouSure2ENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelAreYouSure2ENGTex[] = dgFileSelAreYouSure2ENGTex; -#else -static const char gFileSelAreYouSure2ENGTex[] __attribute__((aligned (2))) = dgFileSelAreYouSure2ENGTex; -#endif - -#define dgFileSelFileErasedENGTex "__OTR__textures/title_static/gFileSelFileErasedENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileErasedENGTex[] = dgFileSelFileErasedENGTex; -#else -static const char gFileSelFileErasedENGTex[] __attribute__((aligned (2))) = dgFileSelFileErasedENGTex; -#endif - -#define dgFileSelWhichFile2GERTex "__OTR__textures/title_static/gFileSelWhichFile2GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWhichFile2GERTex[] = dgFileSelWhichFile2GERTex; -#else -static const char gFileSelWhichFile2GERTex[] __attribute__((aligned (2))) = dgFileSelWhichFile2GERTex; -#endif - -#define dgFileSelAreYouSure2GERTex "__OTR__textures/title_static/gFileSelAreYouSure2GERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelAreYouSure2GERTex[] = dgFileSelAreYouSure2GERTex; -#else -static const char gFileSelAreYouSure2GERTex[] __attribute__((aligned (2))) = dgFileSelAreYouSure2GERTex; -#endif - -#define dgFileSelFileErasedGERTex "__OTR__textures/title_static/gFileSelFileErasedGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileErasedGERTex[] = dgFileSelFileErasedGERTex; -#else -static const char gFileSelFileErasedGERTex[] __attribute__((aligned (2))) = dgFileSelFileErasedGERTex; -#endif - -#define dgFileSelEraseWhichFileFRATex "__OTR__textures/title_static/gFileSelEraseWhichFileFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelEraseWhichFileFRATex[] = dgFileSelEraseWhichFileFRATex; -#else -static const char gFileSelEraseWhichFileFRATex[] __attribute__((aligned (2))) = dgFileSelEraseWhichFileFRATex; -#endif - -#define dgFileSelAreYouSure2FRATex "__OTR__textures/title_static/gFileSelAreYouSure2FRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelAreYouSure2FRATex[] = dgFileSelAreYouSure2FRATex; -#else -static const char gFileSelAreYouSure2FRATex[] __attribute__((aligned (2))) = dgFileSelAreYouSure2FRATex; -#endif - -#define dgFileSelFileErasedFRATex "__OTR__textures/title_static/gFileSelFileErasedFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFileErasedFRATex[] = dgFileSelFileErasedFRATex; -#else -static const char gFileSelFileErasedFRATex[] __attribute__((aligned (2))) = dgFileSelFileErasedFRATex; -#endif - -#define dgFileSelOptionsENGTex "__OTR__textures/title_static/gFileSelOptionsENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelOptionsENGTex[] = dgFileSelOptionsENGTex; -#else -static const char gFileSelOptionsENGTex[] __attribute__((aligned (2))) = dgFileSelOptionsENGTex; -#endif - -#define dgFileSelOptionsGERTex "__OTR__textures/title_static/gFileSelOptionsGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelOptionsGERTex[] = dgFileSelOptionsGERTex; -#else -static const char gFileSelOptionsGERTex[] __attribute__((aligned (2))) = dgFileSelOptionsGERTex; -#endif - -#define dgFileSelNameENGTex "__OTR__textures/title_static/gFileSelNameENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNameENGTex[] = dgFileSelNameENGTex; -#else -static const char gFileSelNameENGTex[] __attribute__((aligned (2))) = dgFileSelNameENGTex; -#endif - -#define dgFileSelNameGERTex "__OTR__textures/title_static/gFileSelNameGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNameGERTex[] = dgFileSelNameGERTex; -#else -static const char gFileSelNameGERTex[] __attribute__((aligned (2))) = dgFileSelNameGERTex; -#endif - -#define dgFileSelNameFRATex "__OTR__textures/title_static/gFileSelNameFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelNameFRATex[] = dgFileSelNameFRATex; -#else -static const char gFileSelNameFRATex[] __attribute__((aligned (2))) = dgFileSelNameFRATex; -#endif - -#define dgFileSelControlsENGTex "__OTR__textures/title_static/gFileSelControlsENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelControlsENGTex[] = dgFileSelControlsENGTex; -#else -static const char gFileSelControlsENGTex[] __attribute__((aligned (2))) = dgFileSelControlsENGTex; -#endif - -#define dgFileSelControlsGERTex "__OTR__textures/title_static/gFileSelControlsGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelControlsGERTex[] = dgFileSelControlsGERTex; -#else -static const char gFileSelControlsGERTex[] __attribute__((aligned (2))) = dgFileSelControlsGERTex; -#endif - -#define dgFileSelControlsFRATex "__OTR__textures/title_static/gFileSelControlsFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelControlsFRATex[] = dgFileSelControlsFRATex; -#else -static const char gFileSelControlsFRATex[] __attribute__((aligned (2))) = dgFileSelControlsFRATex; -#endif - -#define dgFileSelCopyButtonENGTex "__OTR__textures/title_static/gFileSelCopyButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCopyButtonENGTex[] = dgFileSelCopyButtonENGTex; -#else -static const char gFileSelCopyButtonENGTex[] __attribute__((aligned (2))) = dgFileSelCopyButtonENGTex; -#endif - -#define dgFileSelCopyButtonGERTex "__OTR__textures/title_static/gFileSelCopyButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCopyButtonGERTex[] = dgFileSelCopyButtonGERTex; -#else -static const char gFileSelCopyButtonGERTex[] __attribute__((aligned (2))) = dgFileSelCopyButtonGERTex; -#endif - -#define dgFileSelCopyButtonFRATex "__OTR__textures/title_static/gFileSelCopyButtonFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCopyButtonFRATex[] = dgFileSelCopyButtonFRATex; -#else -static const char gFileSelCopyButtonFRATex[] __attribute__((aligned (2))) = dgFileSelCopyButtonFRATex; -#endif - -#define dgFileSelFile1ButtonENGTex "__OTR__textures/title_static/gFileSelFile1ButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile1ButtonENGTex[] = dgFileSelFile1ButtonENGTex; -#else -static const char gFileSelFile1ButtonENGTex[] __attribute__((aligned (2))) = dgFileSelFile1ButtonENGTex; -#endif - -#define dgFileSelFile2ButtonENGTex "__OTR__textures/title_static/gFileSelFile2ButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile2ButtonENGTex[] = dgFileSelFile2ButtonENGTex; -#else -static const char gFileSelFile2ButtonENGTex[] __attribute__((aligned (2))) = dgFileSelFile2ButtonENGTex; -#endif - -#define dgFileSelFile3ButtonENGTex "__OTR__textures/title_static/gFileSelFile3ButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile3ButtonENGTex[] = dgFileSelFile3ButtonENGTex; -#else -static const char gFileSelFile3ButtonENGTex[] __attribute__((aligned (2))) = dgFileSelFile3ButtonENGTex; -#endif - -#define dgFileSelFile1ButtonGERTex "__OTR__textures/title_static/gFileSelFile1ButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile1ButtonGERTex[] = dgFileSelFile1ButtonGERTex; -#else -static const char gFileSelFile1ButtonGERTex[] __attribute__((aligned (2))) = dgFileSelFile1ButtonGERTex; -#endif - -#define dgFileSelFile2ButtonGERTex "__OTR__textures/title_static/gFileSelFile2ButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile2ButtonGERTex[] = dgFileSelFile2ButtonGERTex; -#else -static const char gFileSelFile2ButtonGERTex[] __attribute__((aligned (2))) = dgFileSelFile2ButtonGERTex; -#endif - -#define dgFileSelFile3ButtonGERTex "__OTR__textures/title_static/gFileSelFile3ButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile3ButtonGERTex[] = dgFileSelFile3ButtonGERTex; -#else -static const char gFileSelFile3ButtonGERTex[] __attribute__((aligned (2))) = dgFileSelFile3ButtonGERTex; -#endif - -#define dgFileSelFile1ButtonFRATex "__OTR__textures/title_static/gFileSelFile1ButtonFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile1ButtonFRATex[] = dgFileSelFile1ButtonFRATex; -#else -static const char gFileSelFile1ButtonFRATex[] __attribute__((aligned (2))) = dgFileSelFile1ButtonFRATex; -#endif - -#define dgFileSelFile2ButtonFRATex "__OTR__textures/title_static/gFileSelFile2ButtonFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile2ButtonFRATex[] = dgFileSelFile2ButtonFRATex; -#else -static const char gFileSelFile2ButtonFRATex[] __attribute__((aligned (2))) = dgFileSelFile2ButtonFRATex; -#endif - -#define dgFileSelFile3ButtonFRATex "__OTR__textures/title_static/gFileSelFile3ButtonFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelFile3ButtonFRATex[] = dgFileSelFile3ButtonFRATex; -#else -static const char gFileSelFile3ButtonFRATex[] __attribute__((aligned (2))) = dgFileSelFile3ButtonFRATex; -#endif - -#define dgFileSelYesButtonENGTex "__OTR__textures/title_static/gFileSelYesButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelYesButtonENGTex[] = dgFileSelYesButtonENGTex; -#else -static const char gFileSelYesButtonENGTex[] __attribute__((aligned (2))) = dgFileSelYesButtonENGTex; -#endif - -#define dgFileSelYesButtonGERTex "__OTR__textures/title_static/gFileSelYesButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelYesButtonGERTex[] = dgFileSelYesButtonGERTex; -#else -static const char gFileSelYesButtonGERTex[] __attribute__((aligned (2))) = dgFileSelYesButtonGERTex; -#endif - -#define dgFileSelYesButtonFRATex "__OTR__textures/title_static/gFileSelYesButtonFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelYesButtonFRATex[] = dgFileSelYesButtonFRATex; -#else -static const char gFileSelYesButtonFRATex[] __attribute__((aligned (2))) = dgFileSelYesButtonFRATex; -#endif - -#define dgFileSelEraseButtonENGTex "__OTR__textures/title_static/gFileSelEraseButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelEraseButtonENGTex[] = dgFileSelEraseButtonENGTex; -#else -static const char gFileSelEraseButtonENGTex[] __attribute__((aligned (2))) = dgFileSelEraseButtonENGTex; -#endif - -#define dgFileSelEraseButtonGERTex "__OTR__textures/title_static/gFileSelEraseButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelEraseButtonGERTex[] = dgFileSelEraseButtonGERTex; -#else -static const char gFileSelEraseButtonGERTex[] __attribute__((aligned (2))) = dgFileSelEraseButtonGERTex; -#endif - -#define dgFileSelEraseButtonFRATex "__OTR__textures/title_static/gFileSelEraseButtonFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelEraseButtonFRATex[] = dgFileSelEraseButtonFRATex; -#else -static const char gFileSelEraseButtonFRATex[] __attribute__((aligned (2))) = dgFileSelEraseButtonFRATex; -#endif - -#define dgFileSelQuitButtonENGTex "__OTR__textures/title_static/gFileSelQuitButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelQuitButtonENGTex[] = dgFileSelQuitButtonENGTex; -#else -static const char gFileSelQuitButtonENGTex[] __attribute__((aligned (2))) = dgFileSelQuitButtonENGTex; -#endif - -#define dgFileSelQuitButtonGERTex "__OTR__textures/title_static/gFileSelQuitButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelQuitButtonGERTex[] = dgFileSelQuitButtonGERTex; -#else -static const char gFileSelQuitButtonGERTex[] __attribute__((aligned (2))) = dgFileSelQuitButtonGERTex; -#endif - -#define dgFileSelQuitButtonFRATex "__OTR__textures/title_static/gFileSelQuitButtonFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelQuitButtonFRATex[] = dgFileSelQuitButtonFRATex; -#else -static const char gFileSelQuitButtonFRATex[] __attribute__((aligned (2))) = dgFileSelQuitButtonFRATex; -#endif - -#define dgFileSelSurroundENGTex "__OTR__textures/title_static/gFileSelSurroundENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSurroundENGTex[] = dgFileSelSurroundENGTex; -#else -static const char gFileSelSurroundENGTex[] __attribute__((aligned (2))) = dgFileSelSurroundENGTex; -#endif - -#define dgFileSelHeadsetENGTex "__OTR__textures/title_static/gFileSelHeadsetENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelHeadsetENGTex[] = dgFileSelHeadsetENGTex; -#else -static const char gFileSelHeadsetENGTex[] __attribute__((aligned (2))) = dgFileSelHeadsetENGTex; -#endif - -#define dgFileSelHeadsetGERTex "__OTR__textures/title_static/gFileSelHeadsetGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelHeadsetGERTex[] = dgFileSelHeadsetGERTex; -#else -static const char gFileSelHeadsetGERTex[] __attribute__((aligned (2))) = dgFileSelHeadsetGERTex; -#endif - -#define dgFileSelHeadsetFRATex "__OTR__textures/title_static/gFileSelHeadsetFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelHeadsetFRATex[] = dgFileSelHeadsetFRATex; -#else -static const char gFileSelHeadsetFRATex[] __attribute__((aligned (2))) = dgFileSelHeadsetFRATex; -#endif - -#define dgFileSelMonoENGTex "__OTR__textures/title_static/gFileSelMonoENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelMonoENGTex[] = dgFileSelMonoENGTex; -#else -static const char gFileSelMonoENGTex[] __attribute__((aligned (2))) = dgFileSelMonoENGTex; -#endif - -#define dgFileSelSOUNDENGTex "__OTR__textures/title_static/gFileSelSOUNDENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSOUNDENGTex[] = dgFileSelSOUNDENGTex; -#else -static const char gFileSelSOUNDENGTex[] __attribute__((aligned (2))) = dgFileSelSOUNDENGTex; -#endif - -#define dgFileSelSOUNDFRATex "__OTR__textures/title_static/gFileSelSOUNDFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSOUNDFRATex[] = dgFileSelSOUNDFRATex; -#else -static const char gFileSelSOUNDFRATex[] __attribute__((aligned (2))) = dgFileSelSOUNDFRATex; -#endif - -#define dgFileSelStereoENGTex "__OTR__textures/title_static/gFileSelStereoENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelStereoENGTex[] = dgFileSelStereoENGTex; -#else -static const char gFileSelStereoENGTex[] __attribute__((aligned (2))) = dgFileSelStereoENGTex; -#endif - -#define dgFileSelStereoFRATex "__OTR__textures/title_static/gFileSelStereoFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelStereoFRATex[] = dgFileSelStereoFRATex; -#else -static const char gFileSelStereoFRATex[] __attribute__((aligned (2))) = dgFileSelStereoFRATex; -#endif - -#define dgFileSelLTargetingENGTex "__OTR__textures/title_static/gFileSelLTargetingENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelLTargetingENGTex[] = dgFileSelLTargetingENGTex; -#else -static const char gFileSelLTargetingENGTex[] __attribute__((aligned (2))) = dgFileSelLTargetingENGTex; -#endif - -#define dgFileSelLTargetingGERTex "__OTR__textures/title_static/gFileSelLTargetingGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelLTargetingGERTex[] = dgFileSelLTargetingGERTex; -#else -static const char gFileSelLTargetingGERTex[] __attribute__((aligned (2))) = dgFileSelLTargetingGERTex; -#endif - -#define dgFileSelLTargetingFRATex "__OTR__textures/title_static/gFileSelLTargetingFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelLTargetingFRATex[] = dgFileSelLTargetingFRATex; -#else -static const char gFileSelLTargetingFRATex[] __attribute__((aligned (2))) = dgFileSelLTargetingFRATex; -#endif - -#define dgFileSelSwitchENGTex "__OTR__textures/title_static/gFileSelSwitchENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSwitchENGTex[] = dgFileSelSwitchENGTex; -#else -static const char gFileSelSwitchENGTex[] __attribute__((aligned (2))) = dgFileSelSwitchENGTex; -#endif - -#define dgFileSelSwitchGERTex "__OTR__textures/title_static/gFileSelSwitchGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSwitchGERTex[] = dgFileSelSwitchGERTex; -#else -static const char gFileSelSwitchGERTex[] __attribute__((aligned (2))) = dgFileSelSwitchGERTex; -#endif - -#define dgFileSelSwitchFRATex "__OTR__textures/title_static/gFileSelSwitchFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSwitchFRATex[] = dgFileSelSwitchFRATex; -#else -static const char gFileSelSwitchFRATex[] __attribute__((aligned (2))) = dgFileSelSwitchFRATex; -#endif - -#define dgFileSelHoldENGTex "__OTR__textures/title_static/gFileSelHoldENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelHoldENGTex[] = dgFileSelHoldENGTex; -#else -static const char gFileSelHoldENGTex[] __attribute__((aligned (2))) = dgFileSelHoldENGTex; -#endif - -#define dgFileSelHoldGERTex "__OTR__textures/title_static/gFileSelHoldGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelHoldGERTex[] = dgFileSelHoldGERTex; -#else -static const char gFileSelHoldGERTex[] __attribute__((aligned (2))) = dgFileSelHoldGERTex; -#endif - -#define dgFileSelHoldFRATex "__OTR__textures/title_static/gFileSelHoldFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelHoldFRATex[] = dgFileSelHoldFRATex; -#else -static const char gFileSelHoldFRATex[] __attribute__((aligned (2))) = dgFileSelHoldFRATex; -#endif - -#define dgFileSelCheckBrightnessENGTex "__OTR__textures/title_static/gFileSelCheckBrightnessENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCheckBrightnessENGTex[] = dgFileSelCheckBrightnessENGTex; -#else -static const char gFileSelCheckBrightnessENGTex[] __attribute__((aligned (2))) = dgFileSelCheckBrightnessENGTex; -#endif - -#define dgFileSelCheckBrightnessGERTex "__OTR__textures/title_static/gFileSelCheckBrightnessGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCheckBrightnessGERTex[] = dgFileSelCheckBrightnessGERTex; -#else -static const char gFileSelCheckBrightnessGERTex[] __attribute__((aligned (2))) = dgFileSelCheckBrightnessGERTex; -#endif - -#define dgFileSelCheckBrightnessFRATex "__OTR__textures/title_static/gFileSelCheckBrightnessFRATex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelCheckBrightnessFRATex[] = dgFileSelCheckBrightnessFRATex; -#else -static const char gFileSelCheckBrightnessFRATex[] __attribute__((aligned (2))) = dgFileSelCheckBrightnessFRATex; -#endif - -#define dgFileSelOptionsButtonENGTex "__OTR__textures/title_static/gFileSelOptionsButtonENGTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelOptionsButtonENGTex[] = dgFileSelOptionsButtonENGTex; -#else -static const char gFileSelOptionsButtonENGTex[] __attribute__((aligned (2))) = dgFileSelOptionsButtonENGTex; -#endif - -#define dgFileSelOptionsButtonGERTex "__OTR__textures/title_static/gFileSelOptionsButtonGERTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelOptionsButtonGERTex[] = dgFileSelOptionsButtonGERTex; -#else -static const char gFileSelOptionsButtonGERTex[] __attribute__((aligned (2))) = dgFileSelOptionsButtonGERTex; -#endif - -#define dgFileSelSaveXTex "__OTR__textures/title_static/gFileSelSaveXTex" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelSaveXTex[] = dgFileSelSaveXTex; -#else -static const char gFileSelSaveXTex[] __attribute__((aligned (2))) = dgFileSelSaveXTex; -#endif - -#define dgFileSelWindow1DL "__OTR__textures/title_static/gFileSelWindow1DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow1DL[] = dgFileSelWindow1DL; -#else -static const char gFileSelWindow1DL[] __attribute__((aligned (2))) = dgFileSelWindow1DL; -#endif - -#define dgFileSelWindow2DL "__OTR__textures/title_static/gFileSelWindow2DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow2DL[] = dgFileSelWindow2DL; -#else -static const char gFileSelWindow2DL[] __attribute__((aligned (2))) = dgFileSelWindow2DL; -#endif - -#define dgFileSelWindow3DL "__OTR__textures/title_static/gFileSelWindow3DL" -#ifdef _WIN32 -static const __declspec(align(2)) char gFileSelWindow3DL[] = dgFileSelWindow3DL; -#else -static const char gFileSelWindow3DL[] __attribute__((aligned (2))) = dgFileSelWindow3DL; -#endif - +#include "align_asset_macro.h" + +#define dgFileSelConnectorTex "__OTR__textures/title_static/gFileSelConnectorTex" +static const ALIGN_ASSET(2) char gFileSelConnectorTex[] = dgFileSelConnectorTex; + +#define dgFileSelForestMedallionTex "__OTR__textures/title_static/gFileSelForestMedallionTex" +static const ALIGN_ASSET(2) char gFileSelForestMedallionTex[] = dgFileSelForestMedallionTex; + +#define dgFileSelFireMedallionTex "__OTR__textures/title_static/gFileSelFireMedallionTex" +static const ALIGN_ASSET(2) char gFileSelFireMedallionTex[] = dgFileSelFireMedallionTex; + +#define dgFileSelWaterMedallionTex "__OTR__textures/title_static/gFileSelWaterMedallionTex" +static const ALIGN_ASSET(2) char gFileSelWaterMedallionTex[] = dgFileSelWaterMedallionTex; + +#define dgFileSelSpiritMedallionTex "__OTR__textures/title_static/gFileSelSpiritMedallionTex" +static const ALIGN_ASSET(2) char gFileSelSpiritMedallionTex[] = dgFileSelSpiritMedallionTex; + +#define dgFileSelShadowMedallionTex "__OTR__textures/title_static/gFileSelShadowMedallionTex" +static const ALIGN_ASSET(2) char gFileSelShadowMedallionTex[] = dgFileSelShadowMedallionTex; + +#define dgFileSelLightMedallionTex "__OTR__textures/title_static/gFileSelLightMedallionTex" +static const ALIGN_ASSET(2) char gFileSelLightMedallionTex[] = dgFileSelLightMedallionTex; + +#define dgFileSelWindow1Tex "__OTR__textures/title_static/gFileSelWindow1Tex" +static const ALIGN_ASSET(2) char gFileSelWindow1Tex[] = dgFileSelWindow1Tex; + +#define dgFileSelWindow2Tex "__OTR__textures/title_static/gFileSelWindow2Tex" +static const ALIGN_ASSET(2) char gFileSelWindow2Tex[] = dgFileSelWindow2Tex; + +#define dgFileSelWindow3Tex "__OTR__textures/title_static/gFileSelWindow3Tex" +static const ALIGN_ASSET(2) char gFileSelWindow3Tex[] = dgFileSelWindow3Tex; + +#define dgFileSelWindow4Tex "__OTR__textures/title_static/gFileSelWindow4Tex" +static const ALIGN_ASSET(2) char gFileSelWindow4Tex[] = dgFileSelWindow4Tex; + +#define dgFileSelWindow5Tex "__OTR__textures/title_static/gFileSelWindow5Tex" +static const ALIGN_ASSET(2) char gFileSelWindow5Tex[] = dgFileSelWindow5Tex; + +#define dgFileSelWindow6Tex "__OTR__textures/title_static/gFileSelWindow6Tex" +static const ALIGN_ASSET(2) char gFileSelWindow6Tex[] = dgFileSelWindow6Tex; + +#define dgFileSelWindow7Tex "__OTR__textures/title_static/gFileSelWindow7Tex" +static const ALIGN_ASSET(2) char gFileSelWindow7Tex[] = dgFileSelWindow7Tex; + +#define dgFileSelWindow8Tex "__OTR__textures/title_static/gFileSelWindow8Tex" +static const ALIGN_ASSET(2) char gFileSelWindow8Tex[] = dgFileSelWindow8Tex; + +#define dgFileSelWindow9Tex "__OTR__textures/title_static/gFileSelWindow9Tex" +static const ALIGN_ASSET(2) char gFileSelWindow9Tex[] = dgFileSelWindow9Tex; + +#define dgFileSelWindow10Tex "__OTR__textures/title_static/gFileSelWindow10Tex" +static const ALIGN_ASSET(2) char gFileSelWindow10Tex[] = dgFileSelWindow10Tex; + +#define dgFileSelWindow11Tex "__OTR__textures/title_static/gFileSelWindow11Tex" +static const ALIGN_ASSET(2) char gFileSelWindow11Tex[] = dgFileSelWindow11Tex; + +#define dgFileSelWindow12Tex "__OTR__textures/title_static/gFileSelWindow12Tex" +static const ALIGN_ASSET(2) char gFileSelWindow12Tex[] = dgFileSelWindow12Tex; + +#define dgFileSelWindow13Tex "__OTR__textures/title_static/gFileSelWindow13Tex" +static const ALIGN_ASSET(2) char gFileSelWindow13Tex[] = dgFileSelWindow13Tex; + +#define dgFileSelWindow14Tex "__OTR__textures/title_static/gFileSelWindow14Tex" +static const ALIGN_ASSET(2) char gFileSelWindow14Tex[] = dgFileSelWindow14Tex; + +#define dgFileSelWindow15Tex "__OTR__textures/title_static/gFileSelWindow15Tex" +static const ALIGN_ASSET(2) char gFileSelWindow15Tex[] = dgFileSelWindow15Tex; + +#define dgFileSelWindow16Tex "__OTR__textures/title_static/gFileSelWindow16Tex" +static const ALIGN_ASSET(2) char gFileSelWindow16Tex[] = dgFileSelWindow16Tex; + +#define dgFileSelWindow17Tex "__OTR__textures/title_static/gFileSelWindow17Tex" +static const ALIGN_ASSET(2) char gFileSelWindow17Tex[] = dgFileSelWindow17Tex; + +#define dgFileSelWindow18Tex "__OTR__textures/title_static/gFileSelWindow18Tex" +static const ALIGN_ASSET(2) char gFileSelWindow18Tex[] = dgFileSelWindow18Tex; + +#define dgFileSelWindow19Tex "__OTR__textures/title_static/gFileSelWindow19Tex" +static const ALIGN_ASSET(2) char gFileSelWindow19Tex[] = dgFileSelWindow19Tex; + +#define dgFileSelWindow20Tex "__OTR__textures/title_static/gFileSelWindow20Tex" +static const ALIGN_ASSET(2) char gFileSelWindow20Tex[] = dgFileSelWindow20Tex; + +#define dgFileSelKanjiButtonTex "__OTR__textures/title_static/gFileSelKanjiButtonTex" +static const ALIGN_ASSET(2) char gFileSelKanjiButtonTex[] = dgFileSelKanjiButtonTex; + +#define dgFileSelHiraganaButtonTex "__OTR__textures/title_static/gFileSelHiraganaButtonTex" +static const ALIGN_ASSET(2) char gFileSelHiraganaButtonTex[] = dgFileSelHiraganaButtonTex; + +#define dgFileSelKatakanaButtonTex "__OTR__textures/title_static/gFileSelKatakanaButtonTex" +static const ALIGN_ASSET(2) char gFileSelKatakanaButtonTex[] = dgFileSelKatakanaButtonTex; + +#define dgFileSelENDButtonENGTex "__OTR__textures/title_static/gFileSelENDButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelENDButtonENGTex[] = dgFileSelENDButtonENGTex; + +#define dgFileSelENDButtonGERTex "__OTR__textures/title_static/gFileSelENDButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelENDButtonGERTex[] = dgFileSelENDButtonGERTex; + +#define dgFileSelENDButtonFRATex "__OTR__textures/title_static/gFileSelENDButtonFRATex" +static const ALIGN_ASSET(2) char gFileSelENDButtonFRATex[] = dgFileSelENDButtonFRATex; + +#define dgFileSelBackspaceButtonTex "__OTR__textures/title_static/gFileSelBackspaceButtonTex" +static const ALIGN_ASSET(2) char gFileSelBackspaceButtonTex[] = dgFileSelBackspaceButtonTex; + +#define dgFileSelNameBoxTex "__OTR__textures/title_static/gFileSelNameBoxTex" +static const ALIGN_ASSET(2) char gFileSelNameBoxTex[] = dgFileSelNameBoxTex; + +#define dgFileSelFileInfoBox1Tex "__OTR__textures/title_static/gFileSelFileInfoBox1Tex" +static const ALIGN_ASSET(2) char gFileSelFileInfoBox1Tex[] = dgFileSelFileInfoBox1Tex; + +#define dgFileSelFileInfoBox2Tex "__OTR__textures/title_static/gFileSelFileInfoBox2Tex" +static const ALIGN_ASSET(2) char gFileSelFileInfoBox2Tex[] = dgFileSelFileInfoBox2Tex; + +#define dgFileSelFileInfoBox3Tex "__OTR__textures/title_static/gFileSelFileInfoBox3Tex" +static const ALIGN_ASSET(2) char gFileSelFileInfoBox3Tex[] = dgFileSelFileInfoBox3Tex; + +#define dgFileSelFileInfoBox4Tex "__OTR__textures/title_static/gFileSelFileInfoBox4Tex" +static const ALIGN_ASSET(2) char gFileSelFileInfoBox4Tex[] = dgFileSelFileInfoBox4Tex; + +#define dgFileSelFileInfoBox5Tex "__OTR__textures/title_static/gFileSelFileInfoBox5Tex" +static const ALIGN_ASSET(2) char gFileSelFileInfoBox5Tex[] = dgFileSelFileInfoBox5Tex; + +#define dgFileSelDISKButtonTex "__OTR__textures/title_static/gFileSelDISKButtonTex" +static const ALIGN_ASSET(2) char gFileSelDISKButtonTex[] = dgFileSelDISKButtonTex; + +#define dgFileSelOptionsDividerTex "__OTR__textures/title_static/gFileSelOptionsDividerTex" +static const ALIGN_ASSET(2) char gFileSelOptionsDividerTex[] = dgFileSelOptionsDividerTex; + +#define dgFileSelBrightnessCheckTex "__OTR__textures/title_static/gFileSelBrightnessCheckTex" +static const ALIGN_ASSET(2) char gFileSelBrightnessCheckTex[] = dgFileSelBrightnessCheckTex; + +#define dgFileSelBigButtonHighlightTex "__OTR__textures/title_static/gFileSelBigButtonHighlightTex" +static const ALIGN_ASSET(2) char gFileSelBigButtonHighlightTex[] = dgFileSelBigButtonHighlightTex; + +#define dgFileSelCharHighlightTex "__OTR__textures/title_static/gFileSelCharHighlightTex" +static const ALIGN_ASSET(2) char gFileSelCharHighlightTex[] = dgFileSelCharHighlightTex; + +#define dgFileSelMediumButtonHighlightTex "__OTR__textures/title_static/gFileSelMediumButtonHighlightTex" +static const ALIGN_ASSET(2) char gFileSelMediumButtonHighlightTex[] = dgFileSelMediumButtonHighlightTex; + +#define dgFileSelSmallButtonHighlightTex "__OTR__textures/title_static/gFileSelSmallButtonHighlightTex" +static const ALIGN_ASSET(2) char gFileSelSmallButtonHighlightTex[] = dgFileSelSmallButtonHighlightTex; + +#define dgFileSelKokiriEmeraldTex "__OTR__textures/title_static/gFileSelKokiriEmeraldTex" +static const ALIGN_ASSET(2) char gFileSelKokiriEmeraldTex[] = dgFileSelKokiriEmeraldTex; + +#define dgFileSelGoronRubyTex "__OTR__textures/title_static/gFileSelGoronRubyTex" +static const ALIGN_ASSET(2) char gFileSelGoronRubyTex[] = dgFileSelGoronRubyTex; + +#define dgFileSelZoraSapphireTex "__OTR__textures/title_static/gFileSelZoraSapphireTex" +static const ALIGN_ASSET(2) char gFileSelZoraSapphireTex[] = dgFileSelZoraSapphireTex; + +#define dgFileSelNoFileToCopyENGTex "__OTR__textures/title_static/gFileSelNoFileToCopyENGTex" +static const ALIGN_ASSET(2) char gFileSelNoFileToCopyENGTex[] = dgFileSelNoFileToCopyENGTex; + +#define dgFileSelNoFileToEraseENGTex "__OTR__textures/title_static/gFileSelNoFileToEraseENGTex" +static const ALIGN_ASSET(2) char gFileSelNoFileToEraseENGTex[] = dgFileSelNoFileToEraseENGTex; + +#define dgFileSelNoEmptyFileENGTex "__OTR__textures/title_static/gFileSelNoEmptyFileENGTex" +static const ALIGN_ASSET(2) char gFileSelNoEmptyFileENGTex[] = dgFileSelNoEmptyFileENGTex; + +#define dgFileSelFileEmptyENGTex "__OTR__textures/title_static/gFileSelFileEmptyENGTex" +static const ALIGN_ASSET(2) char gFileSelFileEmptyENGTex[] = dgFileSelFileEmptyENGTex; + +#define dgFileSelFileInUseENGTex "__OTR__textures/title_static/gFileSelFileInUseENGTex" +static const ALIGN_ASSET(2) char gFileSelFileInUseENGTex[] = dgFileSelFileInUseENGTex; + +#define dgFileSelNoFileToCopyGERTex "__OTR__textures/title_static/gFileSelNoFileToCopyGERTex" +static const ALIGN_ASSET(2) char gFileSelNoFileToCopyGERTex[] = dgFileSelNoFileToCopyGERTex; + +#define dgFileSelNoFileToEraseGERTex "__OTR__textures/title_static/gFileSelNoFileToEraseGERTex" +static const ALIGN_ASSET(2) char gFileSelNoFileToEraseGERTex[] = dgFileSelNoFileToEraseGERTex; + +#define dgFileSelNoEmptyFileGERTex "__OTR__textures/title_static/gFileSelNoEmptyFileGERTex" +static const ALIGN_ASSET(2) char gFileSelNoEmptyFileGERTex[] = dgFileSelNoEmptyFileGERTex; + +#define dgFileSelFileEmptyGERTex "__OTR__textures/title_static/gFileSelFileEmptyGERTex" +static const ALIGN_ASSET(2) char gFileSelFileEmptyGERTex[] = dgFileSelFileEmptyGERTex; + +#define dgFileSelFileInUseGERTex "__OTR__textures/title_static/gFileSelFileInUseGERTex" +static const ALIGN_ASSET(2) char gFileSelFileInUseGERTex[] = dgFileSelFileInUseGERTex; + +#define dgFileSelNoFileToCopyFRATex "__OTR__textures/title_static/gFileSelNoFileToCopyFRATex" +static const ALIGN_ASSET(2) char gFileSelNoFileToCopyFRATex[] = dgFileSelNoFileToCopyFRATex; + +#define dgFileSelNoFileToEraseFRATex "__OTR__textures/title_static/gFileSelNoFileToEraseFRATex" +static const ALIGN_ASSET(2) char gFileSelNoFileToEraseFRATex[] = dgFileSelNoFileToEraseFRATex; + +#define dgFileSelNoEmptyFileFRATex "__OTR__textures/title_static/gFileSelNoEmptyFileFRATex" +static const ALIGN_ASSET(2) char gFileSelNoEmptyFileFRATex[] = dgFileSelNoEmptyFileFRATex; + +#define dgFileSelFileEmptyFRATex "__OTR__textures/title_static/gFileSelFileEmptyFRATex" +static const ALIGN_ASSET(2) char gFileSelFileEmptyFRATex[] = dgFileSelFileEmptyFRATex; + +#define dgFileSelFileInUseFRATex "__OTR__textures/title_static/gFileSelFileInUseFRATex" +static const ALIGN_ASSET(2) char gFileSelFileInUseFRATex[] = dgFileSelFileInUseFRATex; + +#define dgFileSelCopyWhichFileENGTex "__OTR__textures/title_static/gFileSelCopyWhichFileENGTex" +static const ALIGN_ASSET(2) char gFileSelCopyWhichFileENGTex[] = dgFileSelCopyWhichFileENGTex; + +#define dgFileSelCopyToWhichFileENGTex "__OTR__textures/title_static/gFileSelCopyToWhichFileENGTex" +static const ALIGN_ASSET(2) char gFileSelCopyToWhichFileENGTex[] = dgFileSelCopyToWhichFileENGTex; + +#define dgFileSelAreYouSureENGTex "__OTR__textures/title_static/gFileSelAreYouSureENGTex" +static const ALIGN_ASSET(2) char gFileSelAreYouSureENGTex[] = dgFileSelAreYouSureENGTex; + +#define dgFileSelFileCopiedENGTex "__OTR__textures/title_static/gFileSelFileCopiedENGTex" +static const ALIGN_ASSET(2) char gFileSelFileCopiedENGTex[] = dgFileSelFileCopiedENGTex; + +#define dgFileSelWhichFile1GERTex "__OTR__textures/title_static/gFileSelWhichFile1GERTex" +static const ALIGN_ASSET(2) char gFileSelWhichFile1GERTex[] = dgFileSelWhichFile1GERTex; + +#define dgFileSelCopyToWhichFileGERTex "__OTR__textures/title_static/gFileSelCopyToWhichFileGERTex" +static const ALIGN_ASSET(2) char gFileSelCopyToWhichFileGERTex[] = dgFileSelCopyToWhichFileGERTex; + +#define dgFileSelAreYouSureGERTex "__OTR__textures/title_static/gFileSelAreYouSureGERTex" +static const ALIGN_ASSET(2) char gFileSelAreYouSureGERTex[] = dgFileSelAreYouSureGERTex; + +#define dgFileSelFileCopiedGERTex "__OTR__textures/title_static/gFileSelFileCopiedGERTex" +static const ALIGN_ASSET(2) char gFileSelFileCopiedGERTex[] = dgFileSelFileCopiedGERTex; + +#define dgFileSelCopyWhichFileFRATex "__OTR__textures/title_static/gFileSelCopyWhichFileFRATex" +static const ALIGN_ASSET(2) char gFileSelCopyWhichFileFRATex[] = dgFileSelCopyWhichFileFRATex; + +#define dgFileSelCopyToWhichFileFRATex "__OTR__textures/title_static/gFileSelCopyToWhichFileFRATex" +static const ALIGN_ASSET(2) char gFileSelCopyToWhichFileFRATex[] = dgFileSelCopyToWhichFileFRATex; + +#define dgFileSelAreYouSureFRATex "__OTR__textures/title_static/gFileSelAreYouSureFRATex" +static const ALIGN_ASSET(2) char gFileSelAreYouSureFRATex[] = dgFileSelAreYouSureFRATex; + +#define dgFileSelFileCopiedFRATex "__OTR__textures/title_static/gFileSelFileCopiedFRATex" +static const ALIGN_ASSET(2) char gFileSelFileCopiedFRATex[] = dgFileSelFileCopiedFRATex; + +#define dgFileSelPleaseSelectAFileENGTex "__OTR__textures/title_static/gFileSelPleaseSelectAFileENGTex" +static const ALIGN_ASSET(2) char gFileSelPleaseSelectAFileENGTex[] = dgFileSelPleaseSelectAFileENGTex; + +#define dgFileSelOpenThisFileENGTex "__OTR__textures/title_static/gFileSelOpenThisFileENGTex" +static const ALIGN_ASSET(2) char gFileSelOpenThisFileENGTex[] = dgFileSelOpenThisFileENGTex; + +#define dgFileSelPleaseSelectAFileGERTex "__OTR__textures/title_static/gFileSelPleaseSelectAFileGERTex" +static const ALIGN_ASSET(2) char gFileSelPleaseSelectAFileGERTex[] = dgFileSelPleaseSelectAFileGERTex; + +#define dgFileSelOpenThisFileGERTex "__OTR__textures/title_static/gFileSelOpenThisFileGERTex" +static const ALIGN_ASSET(2) char gFileSelOpenThisFileGERTex[] = dgFileSelOpenThisFileGERTex; + +#define dgFileSelPleaseSelectAFileFRATex "__OTR__textures/title_static/gFileSelPleaseSelectAFileFRATex" +static const ALIGN_ASSET(2) char gFileSelPleaseSelectAFileFRATex[] = dgFileSelPleaseSelectAFileFRATex; + +#define dgFileSelOpenThisFileFRATex "__OTR__textures/title_static/gFileSelOpenThisFileFRATex" +static const ALIGN_ASSET(2) char gFileSelOpenThisFileFRATex[] = dgFileSelOpenThisFileFRATex; + +#define dgFileSelEraseWhichFileENGTex "__OTR__textures/title_static/gFileSelEraseWhichFileENGTex" +static const ALIGN_ASSET(2) char gFileSelEraseWhichFileENGTex[] = dgFileSelEraseWhichFileENGTex; + +#define dgFileSelAreYouSure2ENGTex "__OTR__textures/title_static/gFileSelAreYouSure2ENGTex" +static const ALIGN_ASSET(2) char gFileSelAreYouSure2ENGTex[] = dgFileSelAreYouSure2ENGTex; + +#define dgFileSelFileErasedENGTex "__OTR__textures/title_static/gFileSelFileErasedENGTex" +static const ALIGN_ASSET(2) char gFileSelFileErasedENGTex[] = dgFileSelFileErasedENGTex; + +#define dgFileSelWhichFile2GERTex "__OTR__textures/title_static/gFileSelWhichFile2GERTex" +static const ALIGN_ASSET(2) char gFileSelWhichFile2GERTex[] = dgFileSelWhichFile2GERTex; + +#define dgFileSelAreYouSure2GERTex "__OTR__textures/title_static/gFileSelAreYouSure2GERTex" +static const ALIGN_ASSET(2) char gFileSelAreYouSure2GERTex[] = dgFileSelAreYouSure2GERTex; + +#define dgFileSelFileErasedGERTex "__OTR__textures/title_static/gFileSelFileErasedGERTex" +static const ALIGN_ASSET(2) char gFileSelFileErasedGERTex[] = dgFileSelFileErasedGERTex; + +#define dgFileSelEraseWhichFileFRATex "__OTR__textures/title_static/gFileSelEraseWhichFileFRATex" +static const ALIGN_ASSET(2) char gFileSelEraseWhichFileFRATex[] = dgFileSelEraseWhichFileFRATex; + +#define dgFileSelAreYouSure2FRATex "__OTR__textures/title_static/gFileSelAreYouSure2FRATex" +static const ALIGN_ASSET(2) char gFileSelAreYouSure2FRATex[] = dgFileSelAreYouSure2FRATex; + +#define dgFileSelFileErasedFRATex "__OTR__textures/title_static/gFileSelFileErasedFRATex" +static const ALIGN_ASSET(2) char gFileSelFileErasedFRATex[] = dgFileSelFileErasedFRATex; + +#define dgFileSelOptionsENGTex "__OTR__textures/title_static/gFileSelOptionsENGTex" +static const ALIGN_ASSET(2) char gFileSelOptionsENGTex[] = dgFileSelOptionsENGTex; + +#define dgFileSelOptionsGERTex "__OTR__textures/title_static/gFileSelOptionsGERTex" +static const ALIGN_ASSET(2) char gFileSelOptionsGERTex[] = dgFileSelOptionsGERTex; + +#define dgFileSelNameENGTex "__OTR__textures/title_static/gFileSelNameENGTex" +static const ALIGN_ASSET(2) char gFileSelNameENGTex[] = dgFileSelNameENGTex; + +#define dgFileSelNameGERTex "__OTR__textures/title_static/gFileSelNameGERTex" +static const ALIGN_ASSET(2) char gFileSelNameGERTex[] = dgFileSelNameGERTex; + +#define dgFileSelNameFRATex "__OTR__textures/title_static/gFileSelNameFRATex" +static const ALIGN_ASSET(2) char gFileSelNameFRATex[] = dgFileSelNameFRATex; + +#define dgFileSelControlsENGTex "__OTR__textures/title_static/gFileSelControlsENGTex" +static const ALIGN_ASSET(2) char gFileSelControlsENGTex[] = dgFileSelControlsENGTex; + +#define dgFileSelControlsGERTex "__OTR__textures/title_static/gFileSelControlsGERTex" +static const ALIGN_ASSET(2) char gFileSelControlsGERTex[] = dgFileSelControlsGERTex; + +#define dgFileSelControlsFRATex "__OTR__textures/title_static/gFileSelControlsFRATex" +static const ALIGN_ASSET(2) char gFileSelControlsFRATex[] = dgFileSelControlsFRATex; + +#define dgFileSelCopyButtonENGTex "__OTR__textures/title_static/gFileSelCopyButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelCopyButtonENGTex[] = dgFileSelCopyButtonENGTex; + +#define dgFileSelCopyButtonGERTex "__OTR__textures/title_static/gFileSelCopyButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelCopyButtonGERTex[] = dgFileSelCopyButtonGERTex; + +#define dgFileSelCopyButtonFRATex "__OTR__textures/title_static/gFileSelCopyButtonFRATex" +static const ALIGN_ASSET(2) char gFileSelCopyButtonFRATex[] = dgFileSelCopyButtonFRATex; + +#define dgFileSelFile1ButtonENGTex "__OTR__textures/title_static/gFileSelFile1ButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelFile1ButtonENGTex[] = dgFileSelFile1ButtonENGTex; + +#define dgFileSelFile2ButtonENGTex "__OTR__textures/title_static/gFileSelFile2ButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelFile2ButtonENGTex[] = dgFileSelFile2ButtonENGTex; + +#define dgFileSelFile3ButtonENGTex "__OTR__textures/title_static/gFileSelFile3ButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelFile3ButtonENGTex[] = dgFileSelFile3ButtonENGTex; + +#define dgFileSelFile1ButtonGERTex "__OTR__textures/title_static/gFileSelFile1ButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelFile1ButtonGERTex[] = dgFileSelFile1ButtonGERTex; + +#define dgFileSelFile2ButtonGERTex "__OTR__textures/title_static/gFileSelFile2ButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelFile2ButtonGERTex[] = dgFileSelFile2ButtonGERTex; + +#define dgFileSelFile3ButtonGERTex "__OTR__textures/title_static/gFileSelFile3ButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelFile3ButtonGERTex[] = dgFileSelFile3ButtonGERTex; + +#define dgFileSelFile1ButtonFRATex "__OTR__textures/title_static/gFileSelFile1ButtonFRATex" +static const ALIGN_ASSET(2) char gFileSelFile1ButtonFRATex[] = dgFileSelFile1ButtonFRATex; + +#define dgFileSelFile2ButtonFRATex "__OTR__textures/title_static/gFileSelFile2ButtonFRATex" +static const ALIGN_ASSET(2) char gFileSelFile2ButtonFRATex[] = dgFileSelFile2ButtonFRATex; + +#define dgFileSelFile3ButtonFRATex "__OTR__textures/title_static/gFileSelFile3ButtonFRATex" +static const ALIGN_ASSET(2) char gFileSelFile3ButtonFRATex[] = dgFileSelFile3ButtonFRATex; + +#define dgFileSelYesButtonENGTex "__OTR__textures/title_static/gFileSelYesButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelYesButtonENGTex[] = dgFileSelYesButtonENGTex; + +#define dgFileSelYesButtonGERTex "__OTR__textures/title_static/gFileSelYesButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelYesButtonGERTex[] = dgFileSelYesButtonGERTex; + +#define dgFileSelYesButtonFRATex "__OTR__textures/title_static/gFileSelYesButtonFRATex" +static const ALIGN_ASSET(2) char gFileSelYesButtonFRATex[] = dgFileSelYesButtonFRATex; + +#define dgFileSelEraseButtonENGTex "__OTR__textures/title_static/gFileSelEraseButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelEraseButtonENGTex[] = dgFileSelEraseButtonENGTex; + +#define dgFileSelEraseButtonGERTex "__OTR__textures/title_static/gFileSelEraseButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelEraseButtonGERTex[] = dgFileSelEraseButtonGERTex; + +#define dgFileSelEraseButtonFRATex "__OTR__textures/title_static/gFileSelEraseButtonFRATex" +static const ALIGN_ASSET(2) char gFileSelEraseButtonFRATex[] = dgFileSelEraseButtonFRATex; + +#define dgFileSelQuitButtonENGTex "__OTR__textures/title_static/gFileSelQuitButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelQuitButtonENGTex[] = dgFileSelQuitButtonENGTex; + +#define dgFileSelQuitButtonGERTex "__OTR__textures/title_static/gFileSelQuitButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelQuitButtonGERTex[] = dgFileSelQuitButtonGERTex; + +#define dgFileSelQuitButtonFRATex "__OTR__textures/title_static/gFileSelQuitButtonFRATex" +static const ALIGN_ASSET(2) char gFileSelQuitButtonFRATex[] = dgFileSelQuitButtonFRATex; + +#define dgFileSelSurroundENGTex "__OTR__textures/title_static/gFileSelSurroundENGTex" +static const ALIGN_ASSET(2) char gFileSelSurroundENGTex[] = dgFileSelSurroundENGTex; + +#define dgFileSelHeadsetENGTex "__OTR__textures/title_static/gFileSelHeadsetENGTex" +static const ALIGN_ASSET(2) char gFileSelHeadsetENGTex[] = dgFileSelHeadsetENGTex; + +#define dgFileSelHeadsetGERTex "__OTR__textures/title_static/gFileSelHeadsetGERTex" +static const ALIGN_ASSET(2) char gFileSelHeadsetGERTex[] = dgFileSelHeadsetGERTex; + +#define dgFileSelHeadsetFRATex "__OTR__textures/title_static/gFileSelHeadsetFRATex" +static const ALIGN_ASSET(2) char gFileSelHeadsetFRATex[] = dgFileSelHeadsetFRATex; + +#define dgFileSelMonoENGTex "__OTR__textures/title_static/gFileSelMonoENGTex" +static const ALIGN_ASSET(2) char gFileSelMonoENGTex[] = dgFileSelMonoENGTex; + +#define dgFileSelSOUNDENGTex "__OTR__textures/title_static/gFileSelSOUNDENGTex" +static const ALIGN_ASSET(2) char gFileSelSOUNDENGTex[] = dgFileSelSOUNDENGTex; + +#define dgFileSelSOUNDFRATex "__OTR__textures/title_static/gFileSelSOUNDFRATex" +static const ALIGN_ASSET(2) char gFileSelSOUNDFRATex[] = dgFileSelSOUNDFRATex; + +#define dgFileSelStereoENGTex "__OTR__textures/title_static/gFileSelStereoENGTex" +static const ALIGN_ASSET(2) char gFileSelStereoENGTex[] = dgFileSelStereoENGTex; + +#define dgFileSelStereoFRATex "__OTR__textures/title_static/gFileSelStereoFRATex" +static const ALIGN_ASSET(2) char gFileSelStereoFRATex[] = dgFileSelStereoFRATex; + +#define dgFileSelLTargetingENGTex "__OTR__textures/title_static/gFileSelLTargetingENGTex" +static const ALIGN_ASSET(2) char gFileSelLTargetingENGTex[] = dgFileSelLTargetingENGTex; + +#define dgFileSelLTargetingGERTex "__OTR__textures/title_static/gFileSelLTargetingGERTex" +static const ALIGN_ASSET(2) char gFileSelLTargetingGERTex[] = dgFileSelLTargetingGERTex; + +#define dgFileSelLTargetingFRATex "__OTR__textures/title_static/gFileSelLTargetingFRATex" +static const ALIGN_ASSET(2) char gFileSelLTargetingFRATex[] = dgFileSelLTargetingFRATex; + +#define dgFileSelSwitchENGTex "__OTR__textures/title_static/gFileSelSwitchENGTex" +static const ALIGN_ASSET(2) char gFileSelSwitchENGTex[] = dgFileSelSwitchENGTex; + +#define dgFileSelSwitchGERTex "__OTR__textures/title_static/gFileSelSwitchGERTex" +static const ALIGN_ASSET(2) char gFileSelSwitchGERTex[] = dgFileSelSwitchGERTex; + +#define dgFileSelSwitchFRATex "__OTR__textures/title_static/gFileSelSwitchFRATex" +static const ALIGN_ASSET(2) char gFileSelSwitchFRATex[] = dgFileSelSwitchFRATex; + +#define dgFileSelHoldENGTex "__OTR__textures/title_static/gFileSelHoldENGTex" +static const ALIGN_ASSET(2) char gFileSelHoldENGTex[] = dgFileSelHoldENGTex; + +#define dgFileSelHoldGERTex "__OTR__textures/title_static/gFileSelHoldGERTex" +static const ALIGN_ASSET(2) char gFileSelHoldGERTex[] = dgFileSelHoldGERTex; + +#define dgFileSelHoldFRATex "__OTR__textures/title_static/gFileSelHoldFRATex" +static const ALIGN_ASSET(2) char gFileSelHoldFRATex[] = dgFileSelHoldFRATex; + +#define dgFileSelCheckBrightnessENGTex "__OTR__textures/title_static/gFileSelCheckBrightnessENGTex" +static const ALIGN_ASSET(2) char gFileSelCheckBrightnessENGTex[] = dgFileSelCheckBrightnessENGTex; + +#define dgFileSelCheckBrightnessGERTex "__OTR__textures/title_static/gFileSelCheckBrightnessGERTex" +static const ALIGN_ASSET(2) char gFileSelCheckBrightnessGERTex[] = dgFileSelCheckBrightnessGERTex; + +#define dgFileSelCheckBrightnessFRATex "__OTR__textures/title_static/gFileSelCheckBrightnessFRATex" +static const ALIGN_ASSET(2) char gFileSelCheckBrightnessFRATex[] = dgFileSelCheckBrightnessFRATex; + +#define dgFileSelOptionsButtonENGTex "__OTR__textures/title_static/gFileSelOptionsButtonENGTex" +static const ALIGN_ASSET(2) char gFileSelOptionsButtonENGTex[] = dgFileSelOptionsButtonENGTex; + +#define dgFileSelOptionsButtonGERTex "__OTR__textures/title_static/gFileSelOptionsButtonGERTex" +static const ALIGN_ASSET(2) char gFileSelOptionsButtonGERTex[] = dgFileSelOptionsButtonGERTex; + +#define dgFileSelSaveXTex "__OTR__textures/title_static/gFileSelSaveXTex" +static const ALIGN_ASSET(2) char gFileSelSaveXTex[] = dgFileSelSaveXTex; + +#define dgFileSelWindow1DL "__OTR__textures/title_static/gFileSelWindow1DL" +static const ALIGN_ASSET(2) char gFileSelWindow1DL[] = dgFileSelWindow1DL; + +#define dgFileSelWindow2DL "__OTR__textures/title_static/gFileSelWindow2DL" +static const ALIGN_ASSET(2) char gFileSelWindow2DL[] = dgFileSelWindow2DL; + +#define dgFileSelWindow3DL "__OTR__textures/title_static/gFileSelWindow3DL" +static const ALIGN_ASSET(2) char gFileSelWindow3DL[] = dgFileSelWindow3DL; \ No newline at end of file diff --git a/soh/include/align_asset_macro.h b/soh/include/align_asset_macro.h new file mode 100644 index 000000000..8ab8ef7d5 --- /dev/null +++ b/soh/include/align_asset_macro.h @@ -0,0 +1,10 @@ +#ifndef ALIGN_ASSET_MACRO_H +#define ALIGN_ASSET_MACRO_H + +#if defined(_WIN32) + #define ALIGN_ASSET(x) __declspec(align(x)) +#else + #define ALIGN_ASSET(x) __attribute__((aligned (x))) +#endif + +#endif